commit 29321792b8a39bf6fd96173af2573cf7643554ac Author: zhanli <719901725@qq.com> Date: Mon Dec 11 11:17:13 2023 +0800 上传PIBot ROS相关代码 diff --git a/Code/RK3588/PIBot_ROS/.gitignore b/Code/RK3588/PIBot_ROS/.gitignore new file mode 100644 index 0000000..1a7ebaa --- /dev/null +++ b/Code/RK3588/PIBot_ROS/.gitignore @@ -0,0 +1,9 @@ +.vscode +*.pyc +ros_ws/build +ros_ws/devel +ros_ws/install +ros_package/* +!ros_package/*.tar.gz +cartographer +ros_ws/src/CMakeLists.txt \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/.pibot_init_env.sh.swp b/Code/RK3588/PIBot_ROS/.pibot_init_env.sh.swp new file mode 100644 index 0000000..413442d Binary files /dev/null and b/Code/RK3588/PIBot_ROS/.pibot_init_env.sh.swp differ diff --git a/Code/RK3588/PIBot_ROS/README.md b/Code/RK3588/PIBot_ROS/README.md new file mode 100644 index 0000000..8c58a8c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/README.md @@ -0,0 +1,31 @@ +# PIBOT ROS Workspace v2.0 + +## 安装ROS +```shell +cd ~/pibot_ros/ +./pibot_install_ros.sh +source ~/.bashrc +``` + +## init environment +for master +```shell +cd ~/pibot_ros/ +./pibot_init_env.sh # select board lidar 3dsensor +source ~/.bashrc +``` + +for salve +```shell +cd ~/pibot_ros/ +./pibot_init_env.sh # select board lidar 3dsensor +source ~/.bashrc +``` + +## run example +``` +roslaunch pibot_bringup bringup.launch +roslaunch pibot keyboard_teleop.launch +``` + +then you can control your robot diff --git a/Code/RK3588/PIBot_ROS/pibot_add_upstart.sh b/Code/RK3588/PIBot_ROS/pibot_add_upstart.sh new file mode 100644 index 0000000..334ecf3 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pibot_add_upstart.sh @@ -0,0 +1,15 @@ +#!/bin/bash +if [ ! -z "$PIBOT_HOME" ]; then + PIBOT_HOME_DIR=$PIBOT_HOME +else + PIBOT_HOME_DIR=~/pibot_ros +fi + +sudo ln -sf $PIBOT_HOME_DIR/pibot_upstart/pibotenv /etc/pibotenv +sudo ln -sf $PIBOT_HOME_DIR/pibot_upstart/pibot_start.sh /usr/bin/pibot_start +sudo ln -sf $PIBOT_HOME_DIR/pibot_upstart/pibot_stop.sh /usr/bin/pibot_stop +sudo ln -sf $PIBOT_HOME_DIR/pibot_upstart/pibot_restart.sh /usr/bin/pibot_restart +sudo cp $PIBOT_HOME_DIR/pibot_upstart/pibot.service /etc/systemd/system/ +sudo systemctl daemon-reload +sudo systemctl enable pibot +sudo systemctl is-enabled pibot diff --git a/Code/RK3588/PIBot_ROS/pibot_ap.sh b/Code/RK3588/PIBot_ROS/pibot_ap.sh new file mode 100644 index 0000000..9928e42 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pibot_ap.sh @@ -0,0 +1,46 @@ +#!/bin/bash + +# put this cmd to startup scritps +# create pibot ap +# if [ -f /home/pibot/.pibot_ap ]; then +# create_ap wlan0 eth0 pibot_ap pibot_ap& +# else +# create_ap --fix-unmanaged +# ifconfig eth0 up +# ifconfig wlan0 up +# fi + +function start() { + echo "start ap mode" + touch ~/.pibot_ap + # sudo nmcli c | awk -F' ' '{cmd="sudo nmcli c del "$1; if(NR>=2) system(cmd)}' + sudo nmcli --fields UUID con | awk '{print $1}' | while read line; do sudo nmcli con delete uuid $line; done + sudo systemctl restart create_ap + sudo systemctl enable create_ap +} + +function stop() { + echo "stop ap mode" + if [ -f ~/.pibot_ap ]; then + rm ~/.pibot_ap + fi + sudo systemctl stop create_ap + sudo systemctl disable create_ap +} + +case "$1" in + start ) + echo "****************" + start + echo "****************" + ;; + stop ) + echo "****************" + stop + echo "****************" + ;; + * ) + echo "****************" + echo "$0 start/stop" + echo "****************" +esac diff --git a/Code/RK3588/PIBot_ROS/pibot_clear_rosproc.sh b/Code/RK3588/PIBot_ROS/pibot_clear_rosproc.sh new file mode 100644 index 0000000..34f80dd --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pibot_clear_rosproc.sh @@ -0,0 +1,4 @@ +#!/bin/bash +# kill all ros&pibot process +ps -aux | grep "/opt/ros" | grep -v "grep" | awk '{print $2}' | xargs kill -9 +ps -aux | grep "/pibot_ros/ros_ws" | grep -v "grep" | awk '{print $2}' | xargs kill -9 \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/pibot_create_swap.sh b/Code/RK3588/PIBot_ROS/pibot_create_swap.sh new file mode 100644 index 0000000..010061f --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pibot_create_swap.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +sudo mkdir /opt/image +cd /opt/image/ +sudo touch swap +sudo dd if=/dev/zero of=/opt/image/swap bs=1024 count=2048000 +sudo mkswap /opt/image/swap +sudo swapon /opt/image/swap + +echo "add \"/opt/image/swap /swap swap defaults 0 0\" to \"/etc/fstab\" to make swap effecive" diff --git a/Code/RK3588/PIBot_ROS/pibot_init_env.sh b/Code/RK3588/PIBot_ROS/pibot_init_env.sh new file mode 100644 index 0000000..8a24086 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pibot_init_env.sh @@ -0,0 +1,362 @@ +#!/bin/bash +PIBOT_MODEL= +PIBOT_BOARD= +PIBOT_LIDAR= +PIBOT_3DSENSOR= +PIBOT_ADDRESS= + +while getopts "m:b:l:c:a:" opt; do + case $opt in + m) + PIBOT_MODEL=$OPTARG + echo $PIBOT_MODEL;; + b) + PIBOT_BOARD=$OPTARG + echo $PIBOT_BOARD;; + l) + PIBOT_LIDAR=$OPTARG + echo $PIBOT_LIDAR;; + c) + PIBOT_3DSENSOR=$OPTARG + echo $PIBOT_3DSENSOR;; + a) + PIBOT_ADDRESS=$OPTARG + echo $PIBOT_ADDRESS;; + \?) + echo "usage: "$0 "-m {MODLE} -b {BOARD_TYPE} -L {LIDAR} -c {CAMERA} -a {ROS_iP}" + echo -e "\033[1;32m for example 1: $0 -m apollo -b stm32f1 -l rplidar -c none -a localhost\033[0m" + echo -e "\033[1;32m for example 1: $0 -m hades -b stm32f4 -l rplidar -c none -a localhost\033[0m" + exit 0 ;; + esac +done + +if [ ! -z "$PIBOT_HOME" ]; then + PIBOT_HOME_DIR=$PIBOT_HOME +else + PIBOT_HOME_DIR=~/pibot_ros +fi + +echo -e "\033[1;32mpibot home dir:$PIBOT_HOME_DIR" + +sudo ln -sf $PIBOT_HOME_DIR/pibot_init_env.sh /usr/bin/pibot_init_env +sudo ln -sf $PIBOT_HOME_DIR/pibot_view_env.sh /usr/bin/pibot_view_env +sudo ln -sf $PIBOT_HOME_DIR/pibot_install_ros.sh /usr/bin/pibot_install_ros + +if ! [ $PIBOT_ENV_INITIALIZED ]; then + echo "export PIBOT_ENV_INITIALIZED=1" >> ~/.bashrc + echo "source ~/.pibotrc" >> ~/.bashrc +fi + +#rules +echo -e "\033[1;32msetup pibot modules" +echo " " +sudo rm -rf /etc/udev/rules.d/pibot.rules +sudo rm -rf /etc/udev/rules.d/rplidar.rules +sudo rm -rf /etc/udev/rules.d/ydlidar.rules + +sudo cp $PIBOT_HOME_DIR/rules/98-pibot-usb.rules /etc/udev/rules.d +sudo cp $PIBOT_HOME_DIR/rules/56-orbbec-usb.rules /etc/udev/rules.d +echo " " +echo "Restarting udev" +echo "" + +sudo udevadm control --reload-rules +sudo udevadm trigger +#sudo service udev reload +#sudo service udev restart + +code_name=$(lsb_release -sc) + +if [ "$code_name" = "trusty" ]; then + ROS_DISTRO="indigo" +elif [ "$code_name" = "xenial" ]; then + ROS_DISTRO="kinetic" +elif [ "$code_name" = "bionic" ] || [ "$code_name" = "stretch" ]; then + ROS_DISTRO="melodic" +elif [ "$code_name" = "focal" ] || [ "$code_name" = "buster" ]; then + ROS_DISTRO="noetic" +else + echo -e "\033[1;31m PIBOT not support "$code_name"\033[0m" + exit +fi + + +content="#source ros +if [ ! -f /opt/ros/${ROS_DISTRO}/setup.bash ]; then + echo \"please run cd $PIBOT_HOME_DIR && ./pibot_install_ros.sh to install ros sdk\" +else + source /opt/ros/${ROS_DISTRO}/setup.bash +fi +" +echo "${content}" > ~/.pibotrc + +#LOCAL_IP=`ifconfig eth0|grep "inet addr:"|awk -F":" '{print $2}'|awk '{print $1}'` +#LOCAL_IP=`ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print $2}' | awk -F"/" '{print $1}'` + +#if [ ! ${LOCAL_IP} ]; then +# echo "please check network" +# exit +#fi + +LOCAL_IP=`ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print $2}' | awk -F"/" '{print $1}'` +echo "LOCAL_IP=\`ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print \$2}' | awk -F"/" '{print \$1}'\`" >> ~/.pibotrc + +if [ ! ${LOCAL_IP} ]; then + echo -e "\033[1;31muse 127.0.0.1 as local ip\033[0m" + LOCAL_IP=127.0.0.1 +fi + +if [ "$PIBOT_MODEL" == "" ]; then + echo -e "\033[1;34mplease specify pibot model:\033[1;32m + (0: apollo(2wd-diff), + 1: apolloX(2wd-diff), + 2: zeus(3wd-omni), + 3: hera(4wd-diff), + 4: hades(4wd-mecanum), + 5: hadesX(4wd-mecanum), + other: user defined)\033[1;33m" + read -p "" PIBOT_INPUT + + PIBOT_MODEL_TYPE="diff" + + if [ "$PIBOT_INPUT" = "0" ]; then + PIBOT_MODEL='apollo' + elif [ "$PIBOT_INPUT" = "1" ]; then + PIBOT_MODEL='apolloX' + elif [ "$PIBOT_INPUT" = "2" ]; then + PIBOT_MODEL='zeus' + PIBOT_MODEL_TYPE="omni" + elif [ "$PIBOT_INPUT" = "3" ]; then + PIBOT_MODEL='hera' + elif [ "$PIBOT_INPUT" = "4" ]; then + PIBOT_MODEL='hades' + PIBOT_MODEL_TYPE="omni" + elif [ "$PIBOT_INPUT" = "5" ]; then + PIBOT_MODEL='hadesX' + PIBOT_MODEL_TYPE="omni" + else + PIBOT_MODEL=$PIBOT_INPUT + fi +fi + +if [ $PIBOT_MODEL == 'apollo' ] || [ $PIBOT_MODEL == 'apolloX' ] || [ $PIBOT_MODEL == 'hera' ]; then + PIBOT_MODEL_TYPE="diff" +else + PIBOT_MODEL_TYPE="omni" +fi + +if [ "$PIBOT_BOARD" == "" ]; then + echo -e "\033[1;34mplease specify pibot driver board type:\033[1;32m + (0: arduino(mega2560), + 1: stm32f103, + 2: stm32f407, + other: user defined)\033[1;33m" + read -p "" PIBOT_INPUT + + if [ "$PIBOT_INPUT" = "0" ]; then + PIBOT_BOARD='arduino' + elif [ "$PIBOT_INPUT" = "1" ]; then + PIBOT_BOARD='stm32f1' + elif [ "$PIBOT_INPUT" = "2" ]; then + PIBOT_BOARD='stm32f4' + else + PIBOT_BOARD=$PIBOT_INPUT + fi +fi + +if [ $PIBOT_BOARD == 'arduino' ] || [ $PIBOT_BOARD == 'stm32f1' ]; then + PIBOT_DRIVER_BAUDRATE=115200 +else + PIBOT_DRIVER_BAUDRATE=921600 +fi + +PIBOT_FAKE_LIDAR=0 +if [ "$PIBOT_LIDAR" == "" ]; then + echo -e "\033[1;34mplease specify your pibot lidar:\033[1;32m + (0: not config, + 1: rplidar(a1,a2), + 2: rplidar(a3), + 3: eai(x4), + 4: eai(g4), + 5: eai(tg15/tg30/tg50), + 6: xtion, + 7: astra, + 8: kinectV1, + 9: kinectV2, + 10: rplidar(s1), + other: user defined)\033[1;33m" + read -p "" PIBOT_INPUT + + if [ "$PIBOT_INPUT" = "0" ]; then + PIBOT_LIDAR='none' + elif [ "$PIBOT_INPUT" = "1" ]; then + PIBOT_LIDAR='rplidar' + elif [ "$PIBOT_INPUT" = "2" ]; then + PIBOT_LIDAR='rplidar-a3' + elif [ "$PIBOT_INPUT" = "3" ]; then + PIBOT_LIDAR='eai-x4' + elif [ "$PIBOT_INPUT" = "4" ]; then + PIBOT_LIDAR='eai-g4' + elif [ "$PIBOT_INPUT" = "5" ]; then + PIBOT_LIDAR='eai-tgx' + elif [ "$PIBOT_INPUT" = "6" ]; then + PIBOT_LIDAR='xtion' + PIBOT_FAKE_LIDAR=1 + elif [ "$PIBOT_INPUT" = "7" ]; then + PIBOT_LIDAR='astra' + PIBOT_FAKE_LIDAR=1 + elif [ "$PIBOT_INPUT" = "8" ]; then + PIBOT_LIDAR='kinectV1' + PIBOT_FAKE_LIDAR=1 + elif [ "$PIBOT_INPUT" = "9" ]; then + PIBOT_LIDAR='kinectV2' + PIBOT_FAKE_LIDAR=1 + elif [ "$PIBOT_INPUT" = "10" ]; then + PIBOT_LIDAR='rplidar-s1' + else + PIBOT_LIDAR=$PIBOT_INPUT + fi +fi + +if [ "$PIBOT_LIDAR" = "xtion" ]; then + PIBOT_FAKE_LIDAR=1 +elif [ "$PIBOT_LIDAR" = "astra" ]; then + PIBOT_FAKE_LIDAR=1 +elif [ "$PIBOT_LIDAR" = "kinectV1" ]; then + PIBOT_FAKE_LIDAR=1 +elif [ "$PIBOT_LIDAR" = "kinectV2" ]; then + PIBOT_FAKE_LIDAR=1 + ln -s $PWD/third_party/iai_kinect2 $PWD/ros_ws/src/ +else + if [ -f $PWD/ros_ws/src/iai_kinect2 ]; then + rm $PWD/ros_ws/src/iai_kinect2 + fi +fi + +if [ $PIBOT_FAKE_LIDAR = 1 ]; then + echo "fake lidar: $PIBOT_LIDAR" + PIBOT_3DSENSOR='none' +else + if [ "$PIBOT_3DSENSOR" == "" ]; then + echo -e "\033[1;34mplease specify your pibot 3dsensor:\033[1;32m + (0: not config, + 1: xtion, + 2: astra, + 3: kinectV1, + 4: kinectV2, + 5: d435i, + other: user defined)\033[1;33m" + read -p "" PIBOT_INPUT + + if [ "$PIBOT_INPUT" = "0" ]; then + PIBOT_3DSENSOR='none' + elif [ "$PIBOT_INPUT" = "1" ]; then + PIBOT_3DSENSOR='xtion' + elif [ "$PIBOT_INPUT" = "2" ]; then + PIBOT_3DSENSOR='astra' + elif [ "$PIBOT_INPUT" = "3" ]; then + PIBOT_3DSENSOR='kinectV1' + elif [ "$PIBOT_INPUT" = "4" ]; then + PIBOT_3DSENSOR='kinectV2' + elif [ "$PIBOT_INPUT" = "5" ]; then + PIBOT_3DSENSOR='d435i' + else + PIBOT_3DSENSOR=$PIBOT_INPUT + fi + fi +fi + +echo "export PIBOT_HOME=${PIBOT_HOME_DIR}" >> ~/.pibotrc +echo "export ROS_IP=\`echo \$LOCAL_IP\`" >> ~/.pibotrc +echo "export ROS_HOSTNAME=\`echo \$LOCAL_IP\`" >> ~/.pibotrc +echo "export PIBOT_MODEL=${PIBOT_MODEL}" >> ~/.pibotrc +echo "export PIBOT_MODEL_TYPE=${PIBOT_MODEL_TYPE}" >> ~/.pibotrc +echo "export PIBOT_LIDAR=${PIBOT_LIDAR}" >> ~/.pibotrc +echo "export PIBOT_3DSENSOR=${PIBOT_3DSENSOR}" >> ~/.pibotrc +echo "export PIBOT_BOARD=${PIBOT_BOARD}" >> ~/.pibotrc +echo "export PIBOT_DRIVER_BAUDRATE=${PIBOT_DRIVER_BAUDRATE}" >> ~/.pibotrc +echo "export PIBOT_MAPS_DIR=~/maps" >> ~/.pibotrc +echo "export PIBOT_ASTRA_PID=0x\`lsusb | grep "2bc5:05" | awk '{print \$6}' | awk -F":" '{print \$2}'\`" >> ~/.pibotrc + +if [ "$PIBOT_ADDRESS" == "" ]; then + echo -e "\033[1;34mplease specify the current machine(ip:$LOCAL_IP) type:\033[1;32m + (0: pibot board, + \033[31m1: control PC or Virtual PC\033[1;34m)\033[1;33m" + read PIBOT_INPUT +elif [ $PIBOT_ADDRESS == $LOCAL_IP ] || [ $PIBOT_ADDRESS == "localhost" ]; then + PIBOT_INPUT="0" +else + PIBOT_INPUT=$PIBOT_ADDRESS +fi + +if [ "$PIBOT_INPUT" == "0" ]; then + ROS_MASTER_IP_STR="\`echo \$LOCAL_IP\`" + ROS_MASTER_IP=`echo $LOCAL_IP` +else + if [ "$PIBOT_ADDRESS" != "$LOCAL_IP" ]; then + echo -e "\033[1;34mplase specify the pibot board ip for commnication(e.g. 192.168.12.1):" + read -p "" PIBOT_INPUT + else + PIBOT_INPUT=$PIBOT_ADDRESS + fi + ROS_MASTER_IP_STR=`echo $PIBOT_INPUT` + ROS_MASTER_IP=`echo $PIBOT_INPUT` +fi + +echo "export ROS_MASTER_URI=`echo http://${ROS_MASTER_IP_STR}:11311`" >> ~/.pibotrc + +echo -e "\033[1;35m*****************************************************************" +echo "model: " $PIBOT_MODEL +echo "lidar: " $PIBOT_LIDAR +echo "local_ip: " ${LOCAL_IP} +echo "onboard_ip: " ${ROS_MASTER_IP} +echo "" +echo -e "please execute \033[1;36;4msource ~/.bashrc\033[1;35m to make the configure effective\033[0m" +echo -e "\033[1;35m*****************************************************************\033[0m" + +#echo "source $PIBOT_HOME_DIR/ros_ws/devel/setup.bash" >> ~/.pibotrc +content="#source pibot +if [ ! -f $PIBOT_HOME_DIR/ros_ws/devel/setup.bash ]; then + echo -e \"please run \033[1;36;4mcd $PIBOT_HOME_DIR/ros_ws && catkin_make\033[0m to compile pibot sdk\" +else + source $PIBOT_HOME_DIR/ros_ws/devel/setup.bash +fi +" +echo "${content}" >> ~/.pibotrc + +#alias +echo "alias pibot_bringup='roslaunch pibot_bringup bringup.launch'" >> ~/.pibotrc +echo "alias pibot_bringup_with_imu='roslaunch pibot_bringup bringup_with_imu.launch'" >> ~/.pibotrc +echo "alias pibot_lidar='roslaunch pibot_lidar ${PIBOT_LIDAR}.launch'" >> ~/.pibotrc +echo "alias pibot_base='roslaunch pibot_bringup robot.launch'" >> ~/.pibotrc +echo "alias pibot_base_with_imu='roslaunch pibot_bringup robot.launch use_imu:=true'" >> ~/.pibotrc +echo "alias pibot_control='roslaunch pibot_bringup keyboard_teleop.launch'" >> ~/.pibotrc +echo "alias pibot_joystick='roslaunch pibot_bringup joystick.launch'" >> ~/.pibotrc +echo "alias pibot_holonomic_joystick='roslaunch pibot_bringup joystick.launch holonomic:=true'" >> ~/.pibotrc + +echo "alias pibot_configure='rosrun rqt_reconfigure rqt_reconfigure'" >> ~/.pibotrc +echo "alias pibot_simulator='roslaunch pibot_simulator nav.launch'" >> ~/.pibotrc + +echo "alias pibot_gmapping='roslaunch pibot_navigation gmapping.launch'" >> ~/.pibotrc +echo "alias pibot_gmapping_with_imu='roslaunch pibot_navigation gmapping.launch use_imu:=true'" >> ~/.pibotrc +echo "alias pibot_save_map='roslaunch pibot_navigation save_map.launch'" >> ~/.pibotrc + +echo "alias pibot_naviagtion='roslaunch pibot_navigation nav.launch'" >> ~/.pibotrc +echo "alias pibot_naviagtion_with_imu='roslaunch pibot_navigation nav.launch use_imu:=true'" >> ~/.pibotrc +echo "alias pibot_view='roslaunch pibot_navigation view_nav.launch'" >> ~/.pibotrc + +echo "alias pibot_cartographer='roslaunch pibot_navigation cartographer.launch'" >> ~/.pibotrc +echo "alias pibot_cartographer_with_odom='roslaunch pibot_navigation cartographer_with_odom.launch'" >> ~/.pibotrc +echo "alias pibot_view_cartographer='roslaunch pibot_navigation view_cartographer.launch'" >> ~/.pibotrc + +echo "alias pibot_hector_mapping='roslaunch pibot_navigation hector_mapping.launch'" >> ~/.pibotrc +echo "alias pibot_hector_mapping_without_imu='roslaunch pibot_navigation hector_mapping_without_odom.launch'" >> ~/.pibotrc + +echo "alias pibot_karto_slam='roslaunch pibot_navigation karto_slam.launch'" >> ~/.pibotrc + +echo "alias pibot_3d_mapping='roslaunch pibot_slam_3d rtabmap.launch use_imu:=false localization:=false'" >> ~/.pibotrc +echo "alias pibot_3d_mapping_with_imu='roslaunch pibot_slam_3d rtabmap.launch use_imu:=true localization:=false'" >> ~/.pibotrc +echo "alias pibot_3d_nav='roslaunch pibot_slam_3d rtabmap.launch use_imu:=false localization:=true'" >> ~/.pibotrc +echo "alias pibot_3d_nav_with_imu='roslaunch pibot_slam_3d rtabmap.launch use_imu:=true localization:=true'" >> ~/.pibotrc +echo "alias pibot_3d_view_mapping='roslaunch pibot_slam_3d view.launch localization:=true'" >> ~/.pibotrc +echo "alias pibot_3d_view_nav='roslaunch pibot_slam_3d view.launch localization:=false'" >> ~/.pibotrc diff --git a/Code/RK3588/PIBot_ROS/pibot_install_ros.sh b/Code/RK3588/PIBot_ROS/pibot_install_ros.sh new file mode 100644 index 0000000..64ab34e --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pibot_install_ros.sh @@ -0,0 +1,141 @@ +#!/bin/bash +if [ ! -z "$PIBOT_HOME" ]; then + PIBOT_HOME_DIR=$PIBOT_HOME +else + PIBOT_HOME_DIR=~/pibot_ros +fi + +echo -e "\033[1;32mpibot home dir:$PIBOT_HOME_DIR" + +# http://wiki.ros.org/ROS/Installation/UbuntuMirrors +sudo sh -c 'echo "deb http://mirrors.tuna.tsinghua.edu.cn/ros/ubuntu/ `lsb_release -cs` main" > /etc/apt/sources.list.d/ros-latest.list' +sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" >> /etc/apt/sources.list.d/ros-latest.list' +sudo apt-key adv --keyserver 'hkp://keyserver.ubuntu.com:80' --recv-key C1CF6E31E6BADE8868B172B4F42ED6FBAB17C654 +sudo apt-get update + +code_name=$(lsb_release -sc) + +if [ "$code_name" = "trusty" ]; then + ROS_DISTRO="indigo" +elif [ "$code_name" = "xenial" ]; then + ROS_DISTRO="kinetic" +elif [ "$code_name" = "bionic" ] || [ "$code_name" = "stretch" ]; then + ROS_DISTRO="melodic" +elif [ "$code_name" = "focal" ] || [ "$code_name" = "buster" ]; then + ROS_DISTRO="noetic" +else + echo "PIBOT not support "$code_name + exit +fi + +echo "ros distro:" $ROS_DISTRO + +sudo apt-get install -y git cmake unzip vim build-essential udev inetutils-ping iproute2 hostapd + +sudo apt-get -y --allow-unauthenticated install ros-${ROS_DISTRO}-ros-base ros-${ROS_DISTRO}-slam-gmapping ros-${ROS_DISTRO}-navigation \ + ros-${ROS_DISTRO}-xacro ros-${ROS_DISTRO}-robot-state-publisher \ + ros-${ROS_DISTRO}-joint-state-publisher ros-${ROS_DISTRO}-teleop-twist-* ros-${ROS_DISTRO}-control-msgs \ + ros-${ROS_DISTRO}-kdl-parser-py ros-${ROS_DISTRO}-tf2-geometry-msgs ros-${ROS_DISTRO}-hector-mapping \ + ros-${ROS_DISTRO}-robot-pose-ekf ros-${ROS_DISTRO}-slam-karto ros-${ROS_DISTRO}-hector-geotiff ros-${ROS_DISTRO}-hector-trajectory-server \ + ros-${ROS_DISTRO}-usb-cam ros-${ROS_DISTRO}-image-transport ros-${ROS_DISTRO}-image-transport-plugins \ + ros-${ROS_DISTRO}-depthimage-to-laserscan ros-${ROS_DISTRO}-openni2* \ + ros-${ROS_DISTRO}-robot-upstart ros-${ROS_DISTRO}-tf-conversions \ + ros-${ROS_DISTRO}-realsense2-camera ros-${ROS_DISTRO}-libuvc* \ + ros-${ROS_DISTRO}-camera-calibration ros-${ROS_DISTRO}-rtabmap* \ + ros-${ROS_DISTRO}-web-video-server ros-${ROS_DISTRO}-roslint ros-${ROS_DISTRO}-laser-filters + +if [ "$ROS_DISTRO" = "noetic" ]; then + sudo ln -sf /usr/bin/python3 /usr/bin/python + + # third + cd $PIBOT_HOME_DIR/third_party/libuvc && mkdir -p build && cd build && cmake .. && sudo make install + + cd $PIBOT_HOME_DIR + if [ ! -d $PWD/ros_package ]; then + mkdir ros_package + fi + cd ros_package + + # astra ros package + if [ -f $PWD/astra.tar.gz ]; then + tar xzvf $PWD/astra.tar.gz + else + git clone https://github.com/orbbec/ros_astra_launch.git + git clone https://github.com/orbbec/ros_astra_camera.git + fi + + # frontier_exploration ros package + # if [ -f $PWD/frontier_exploration.tar.gz ]; then + # tar xzvf $PWD/frontier_exploration.tar.gz + # else + # git clone -b $ROS_DISTRO-devel https://github.com/paulbovbel/frontier_exploration.git + # fi + + # camera_umd + # if [ -f $PWD/camera_umd.tar.gz ]; then + # tar xzvf $PWD/camera_umd.tar.gz + # else + # git clone https://github.com/ros-drivers/camera_umd.git + # fi + + cd .. + echo "ln -sf $PWD/ros_package ros_ws/src/ros_package" + if [ -f ros_ws/src/ros_package ]; then + rm ros_ws/src/ros_package + fi + + ln -snf $PWD/ros_package ros_ws/src/ros_package + sudo apt-get -y --allow-unauthenticated install python3-pip python3-serial +elif [ "$ROS_DISTRO" = "melodic" ]; then + # third + cd $PIBOT_HOME_DIR/third_party/libuvc && mkdir -p build && cd build && cmake .. && sudo make install + + cd $PIBOT_HOME_DIR + if [ ! -d $PWD/ros_package ]; then + mkdir ros_package + fi + cd ros_package + + # astra ros package + if [ -f $PWD/astra.tar.gz ]; then + tar xzvf $PWD/astra.tar.gz + else + git clone https://github.com/orbbec/ros_astra_launch.git + git clone https://github.com/orbbec/ros_astra_camera.git + fi + + # frontier_exploration ros package + # if [ -f $PWD/frontier_exploration.tar.gz ]; then + # tar xzvf $PWD/frontier_exploration.tar.gz + # else + # git clone -b $ROS_DISTRO-devel https://github.com/paulbovbel/frontier_exploration.git + # fi + cd .. + + echo "ln -sf $PWD/ros_package ros_ws/src/ros_package" + if [ -f ros_ws/src/ros_package ]; then + rm ros_ws/src/ros_package + fi + + ln -snf $PWD/ros_package ros_ws/src/ros_package + + sudo apt-get -y --allow-unauthenticated install python-pip python-serial \ + ros-${ROS_DISTRO}-freenect-* ros-${ROS_DISTRO}-orocos-kdl ros-${ROS_DISTRO}-camera-umd ros-${ROS_DISTRO}-cartographer-ros +else + sudo apt-get -y --allow-unauthenticated install python-pip python-serial \ + ros-${ROS_DISTRO}-freenect-* ros-${ROS_DISTRO}-orocos-kdl ros-${ROS_DISTRO}-camera-umd ros-${ROS_DISTRO}-cartographer-ros\ + ros-${ROS_DISTRO}-astra-launch ros-${ROS_DISTRO}-astra-camera ros-${ROS_DISTRO}-frontier-exploration +fi + +read -s -n1 -p "install ros gui tools?(y/N)" + +if [ "$REPLY" = "y" -o "$REPLY" = "Y" ]; then + sudo apt-get -y --allow-unauthenticated install ros-${ROS_DISTRO}-rviz ros-${ROS_DISTRO}-rqt-reconfigure ros-${ROS_DISTRO}-rqt-tf-tree \ + ros-${ROS_DISTRO}-image-view + + if [ "$ROS_DISTRO" = "noetic" ]; then + echo "please run ros_package/make_cartographer.sh to compile cartographer" + else + sudo apt-get -y --allow-unauthenticated install ros-${ROS_DISTRO}-cartographer-rviz + fi +fi diff --git a/Code/RK3588/PIBot_ROS/pibot_remove_upstart.sh b/Code/RK3588/PIBot_ROS/pibot_remove_upstart.sh new file mode 100644 index 0000000..3f14700 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pibot_remove_upstart.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +sudo systemctl disable pibot +sudo systemctl is-enabled pibot diff --git a/Code/RK3588/PIBot_ROS/pibot_upstart/pibot.service b/Code/RK3588/PIBot_ROS/pibot_upstart/pibot.service new file mode 100644 index 0000000..dfe87d1 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pibot_upstart/pibot.service @@ -0,0 +1,11 @@ +[Unit] +Description=this is pibot service + +[Service] +Type=simple +ExecStart=/usr/bin/pibot_start +ExecStop=/usr/bin/pibot_stop +ExecRestart=/usr/bin/pibot_restart + +[Install] +WantedBy=multi-user.target diff --git a/Code/RK3588/PIBot_ROS/pibot_upstart/pibot_restart.sh b/Code/RK3588/PIBot_ROS/pibot_upstart/pibot_restart.sh new file mode 100644 index 0000000..3d4690c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pibot_upstart/pibot_restart.sh @@ -0,0 +1,4 @@ +#!/bin/bash +/usr/bin/pibot-stop +sleep 2 +/usr/bin/pibot-start diff --git a/Code/RK3588/PIBot_ROS/pibot_upstart/pibot_start.sh b/Code/RK3588/PIBot_ROS/pibot_upstart/pibot_start.sh new file mode 100644 index 0000000..a1a45dd --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pibot_upstart/pibot_start.sh @@ -0,0 +1,33 @@ +#!/bin/bash + +log_file=/tmp/pibot-upstart.log +echo "$DATE: pibot-start" >> $log_file +pibotenv=/etc/pibotenv +. $pibotenv + +code_name=$(lsb_release -sc) + +if [ "$code_name" = "trusty" ]; then + ROS_DISTRO="indigo" +elif [ "$code_name" = "xenial" ]; then + ROS_DISTRO="kinetic" +elif [ "$code_name" = "bionic" ] || [ "$code_name" = "stretch" ]; then + ROS_DISTRO="melodic" +elif [ "$code_name" = "focal" ] || [ "$code_name" = "buster" ]; then + ROS_DISTRO="noetic" +else + echo "PIBOT not support $code_name" >> $log_file + exit +fi + +echo "SYS_DIST: $code_name" >> $log_file +echo "ROS_DIST: $ROS_DISTRO" >> $log_file +echo "LOCAL_IP: $LOCAL_IP" >> $log_file +echo "ROS_MASTER_URI: $ROS_MASTER_URI" >> $log_file +echo "ROS_IP: $ROS_IP" >> $log_file +echo "HOSTNAME: $ROS_HOSTNAME" >> $log_file +echo "PIBOT_MODEL: $PIBOT_MODEL" >> $log_file +echo "PIBOT_LIDAR: $PIBOT_LIDAR" >> $log_file +echo "PIBOT_BOARD: $PIBOT_BOARD" >> $log_file + +roslaunch pibot_navigation gmapping.launch diff --git a/Code/RK3588/PIBot_ROS/pibot_upstart/pibot_stop.sh b/Code/RK3588/PIBot_ROS/pibot_upstart/pibot_stop.sh new file mode 100644 index 0000000..f8492d0 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pibot_upstart/pibot_stop.sh @@ -0,0 +1,38 @@ +#!/bin/bash +log_file=/tmp/pibot-upstart.log +echo "$DATE: pibot-stop" >> $log_file +pibotenv=/etc/pibotenv +. $pibotenv + +code_name=$(lsb_release -sc) + +if [ "$code_name" = "trusty" ]; then + ROS_DISTRO="indigo" +elif [ "$code_name" = "xenial" ]; then + ROS_DISTRO="kinetic" +elif [ "$code_name" = "bionic" ] || [ "$code_name" = "stretch" ]; then + ROS_DISTRO="melodic" +elif [ "$code_name" = "focal" ] || [ "$code_name" = "buster" ]; then + ROS_DISTRO="noetic" +else + echo "PIBOT not support $code_name" >> $log_file + exit +fi + +LOCAL_IP=`ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print $2}' | awk -F"/" '{print $1}'` +echo $LOCAL_IP +echo "SYS_DIST: $code_name" >> $log_file +echo "ROS_DIST: $ROS_DISTRO" >> $log_file +echo "LOCAL_IP: $LOCAL_IP" >> $log_file +echo "ROS_MASTER_URI: $ROS_MASTER_URI" >> $log_file +echo "ROS_IP: $ROS_IP" >> $log_file +echo "HOSTNAME: $ROS_HOSTNAME" >> $log_file +echo "PIBOT_MODEL: $PIBOT_MODEL" >> $log_file +echo "PIBOT_LIDAR: $PIBOT_LIDAR" >> $log_file +echo "PIBOT_BOARD: $PIBOT_BOARD" >> $log_file + +for i in $( rosnode list ); do + rosnode kill $i; +done + +killall roslaunch diff --git a/Code/RK3588/PIBot_ROS/pibot_upstart/pibotenv b/Code/RK3588/PIBot_ROS/pibot_upstart/pibotenv new file mode 100644 index 0000000..24c8f11 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pibot_upstart/pibotenv @@ -0,0 +1,22 @@ +#source ros +source /opt/ros/kinetic/setup.bash + +if [ ! -z "$PIBOT_HOME" ]; then + PIBOT_HOME_DIR=$PIBOT_HOME +else + PIBOT_HOME_DIR=/home/pibot/pibot_ros +fi + +LOCAL_IP=192.168.12.1 +export ROS_IP=$LOCAL_IP +export ROS_HOSTNAME=$LOCAL_IP +export PIBOT_MODEL=hades +export PIBOT_LIDAR=rplidar +export PIBOT_3DSENSOR=none +export PIBOT_BOARD=stm32f4 +export PIBOT_DRIVER_BAUDRATE=921600 +export ROS_MASTER_URI=http://$LOCAL_IP:11311 + +#source pibot +source $PIBOT_HOME_DIR/ros_ws/devel/setup.bash + diff --git a/Code/RK3588/PIBot_ROS/pibot_view_env.sh b/Code/RK3588/PIBot_ROS/pibot_view_env.sh new file mode 100644 index 0000000..4cb82a0 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pibot_view_env.sh @@ -0,0 +1,31 @@ +#!/bin/bash + +code_name=$(lsb_release -sc) + +if [ "$code_name" = "trusty" ]; then + ROS_DISTRO="indigo" +elif [ "$code_name" = "xenial" ]; then + ROS_DISTRO="kinetic" +elif [ "$code_name" = "bionic" ] || [ "$code_name" = "stretch" ]; then + ROS_DISTRO="melodic" +elif [ "$code_name" = "focal" ] || [ "$code_name" = "buster" ]; then + ROS_DISTRO="noetic" +else + echo -e "\033[1;31m PIBOT not support "$code_name"\033[0m" + exit +fi + +LOCAL_IP=`ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print $2}' | awk -F"/" '{print $1}'` + +echo -e "\033[1;33mPIBOT_ENV_INITIALIZED: "$PIBOT_ENV_INITIALIZED +echo -e "\033[1;34mSYS_DIST: "$code_name +echo -e "\033[1;33mROS_DIST: "$ROS_DISTRO +echo -e "\033[1;34mLOCAL_IP: "$LOCAL_IP +echo -e "\033[1;33mROS_MASTER_URI: "$ROS_MASTER_URI +echo -e "\033[1;34mROS_IP: "$ROS_IP +echo -e "\033[1;33mROS_HOSTNAME: "$ROS_HOSTNAME +echo -e "\033[1;34mPIBOT_MODEL: "$PIBOT_MODEL +echo -e "\033[1;33mPIBOT_LIDAR: "$PIBOT_LIDAR +echo -e "\033[1;34mPIBOT_BOARD: "$PIBOT_BOARD +echo -e "\033[1;33mPIBOT_3DSENSOR: "$PIBOT_3DSENSOR +echo -e "\033[1;35m*****************************************************************\033[0m" diff --git a/Code/RK3588/PIBot_ROS/pypibot/pypibot/__init__.py b/Code/RK3588/PIBot_ROS/pypibot/pypibot/__init__.py new file mode 100644 index 0000000..aa21836 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pypibot/pypibot/__init__.py @@ -0,0 +1,17 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +import pypibot.assistant +import pypibot.log as Logger +import pypibot.err +log=Logger.log +import sys +def createNamedLog(name): + return Logger.NamedLog(name) +class Object(): + pass +isDebug="-d" in sys.argv + +import platform +isWindows=False +if platform.system()=='Windows': + isWindows=True diff --git a/Code/RK3588/PIBot_ROS/pypibot/pypibot/assistant.py b/Code/RK3588/PIBot_ROS/pypibot/pypibot/assistant.py new file mode 100644 index 0000000..94683b0 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pypibot/pypibot/assistant.py @@ -0,0 +1,234 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +import os, sys, inspect +import datetime +import signal +import threading +import time +# function: get directory of current script, if script is built +# into an executable file, get directory of the excutable file +def current_file_directory(): + path = os.path.realpath(sys.path[0]) # interpreter starter's path + if os.path.isfile(path): # starter is excutable file + path = os.path.dirname(path) + path = os.path.abspath(path) # return excutable file's directory + else: # starter is python script + caller_file = inspect.stack()[0][1] # function caller's filename + path = os.path.abspath(os.path.dirname(caller_file))# return function caller's file's directory + if path[-1]!=os.path.sep:path+=os.path.sep + return path + +"""格式化字符串""" +def formatString(string,*argv): + string=string%argv + if string.find('$(scriptpath)')>=0: + string=string.replace('$(scriptpath)',current_file_directory()) + if string.find('$(filenumber2)')>=0: + i=0 + path="" + while True: + path=string.replace('$(scriptpath)',"%02d"%i) + if not os.path.lexists(path):break + i+=1 + string=path + #8位日期(20140404) + if string.find('$(Date8)')>=0: + now=datetime.datetime.now() + string=string.replace('$(Date8)', now.strftime("%Y%m%d")) + #6位日期(140404) + if string.find('$(Date6)')>=0: + now=datetime.datetime.now() + string=string.replace('$(Date6)', now.strftime("%y%m%d")) + #6位时间(121212) + if string.find('$(Time6)')>=0: + now=datetime.datetime.now() + string=string.replace('$(Time6)', now.strftime("%H%M%S")) + #4位时间(1212) + if string.find('$(Time4)')>=0: + now=datetime.datetime.now() + string=string.replace('$(Time4)', now.strftime("%H%M")) + #文件编号2位(必须在最后) + if string.find('$(filenumber2)')>=0: + i=0 + path="" + while True: + path=string.replace('$(filenumber2)',"%02d"%i) + if not os.path.lexists(path):break + i+=1 + string=path + #文件编号3位(必须在最后) + if string.find('$(filenumber3)')>=0: + i=0 + path="" + while True: + path=string.replace('$(filenumber3)',"%03d"%i) + if not os.path.lexists(path):break + i+=1 + string=path + return string + +""" + 取得进程列表 + 格式:(PID,cmd) +""" +def getProcessList(): + processList = [] + try: + for line in os.popen("ps xa"): + fields = line.split() + # spid = fields[0] + pid = 0 + try:pid = int(fields[0]) + except:None + cmd = line[27:-1] + # print "PS:%d,%s"%(npid,process) + if pid != 0 and len(cmd) > 0: + processList.append((pid, cmd)) + except Exception as e: + print("getProcessList except:%s" % (e)) + return processList +def killCommand(cmd): + try: + processList = getProcessList() + for p in processList: + if p[1].find(cmd) != -1: + pid = p[0] + os.kill(pid, signal.SIGKILL) + except Exception as e: + print("killCommand ‘%s’ except:%s" % (cmd,e)) + +def check_pid(pid): + """ Check For the existence of a unix pid. """ + if pid == 0:return False + try: + os.kill(pid, 0) + except OSError: + return False + else: + return True + +SF=formatString + +#全局异常捕获 +def excepthook(excType, excValue, tb): + '''''write the unhandle exception to log''' + from log import log + import traceback + log.e('Unhandled Error: %s',''.join(traceback.format_exception(excType, excValue, tb))) + sys.exit(-1) + #sys.__excepthook__(type, value, trace) + #sys.__excepthook__(excType, excValue, tb) + +_defaultGlobalExcept=sys.excepthook + +def enableGlobalExcept(enable=True): + if enable: + sys.excepthook = excepthook + else: + sys.excepthook=_defaultGlobalExcept +# 默认启动全局异常处理 +enableGlobalExcept() +#创建线程 +def createThread(name,target,args=(),autoRun=True,daemon=True): + from log import log + def threadProc(): + log.i("thread %s started!",name) + try: + target(*args) + log.i("thread %s ended!",name) + except Exception as e: + log.e("thread %s crash!err=%s",name,e) + thd=threading.Thread(name=name,target=threadProc) + thd.setDaemon(daemon) + if autoRun:thd.start() + return thd + + +#定时器 +class Timer(): + def __init__(self, timer_proc, args=(),first=0,period=0,name="Timer"): + self.name=name + self.first=first + self.period=period + self.args=args + self.timer_proc=timer_proc + self.thdWork=None + self.stopFlag=False + from log import NamedLog + self.log=NamedLog(name) + def run(self): + if self.first>0: + time.sleep(self.first) + try: + self.timer_proc(*self.args) + except Exception as e: + self.log.error("timer proc crash!err=%s",e) + while self.period>0 and not self.stopFlag: + time.sleep(self.period) + try: + self.timer_proc(*self.args) + except Exception as e: + self.log.error("timer proc crash!err=%s",e) + def start(self): + if self.isAlive(): + self.log.d("already running!") + return True + self.stopFlag=False + self.thdWork=threading.Thread(name=self.name,target=self.run) + self.thdWork.setDaemon(True) + self.thdWork.start() + def stop(self,timeout=3): + if self.isAlive(): + self.stopFlag=True + try: + self.thdWork.join(timeout) + except Exception as e: + self.log.e("stop timeout!") + + def isAlive(self): + return self.thdWork and self.thdWork.isAlive() +#计时器 +class Ticker(): + def __init__(self): + self.reset() + # 片段,可以判断时长是否在一个特定毫秒段内 + self.section=[] + def reset(self): + self.tick=time.time() + self.end=0 + def stop(self): + self.end=time.time() + @property + def ticker(self): + if self.end==0: + return int((time.time()-self.tick)*1000) + else: + return int((self.end-self.tick)*1000) + def addSection(self,a,b): + a,b=int(a),int(b) + assert a=a and tick<=b: + return True + return False + def __call__(self): + return self.ticker +def waitExit(): + import log + log.log.i("start waiting to exit...") + try: + while(True): + time.sleep(1) + except Exception as e: + log.log.w("recv exit sign!") + +def is_python3(): + return sys.hexversion > 0x03000000 diff --git a/Code/RK3588/PIBot_ROS/pypibot/pypibot/configer.py b/Code/RK3588/PIBot_ROS/pypibot/pypibot/configer.py new file mode 100644 index 0000000..7bb3b9f --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pypibot/pypibot/configer.py @@ -0,0 +1,56 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +import ConfigParser +from log import PLOG +import os +def getdefaultfilename(): + pass +def openconfiger(filename): + return configer(filename) +class configer: + def __init__(self,fullfilepath): + self._filepath=fullfilepath + if not os.path.isdir(os.path.dirname(fullfilepath)): + os.makedirs(os.path.dirname(fullfilepath)) + self._conf=ConfigParser.ConfigParser() + if os.path.isfile(fullfilepath): + try: + self._conf.readfp(open(fullfilepath,"r")) + except Exception,e: + PLOG.error("配置文件'%s'打开失败,err=%s"%(self._filepath,e)) + def save(self): + try: + self._conf.write(open(self._filepath,"w")) + except Exception,e: + PLOG.error("配置文件'%s'保存失败,err=%s"%(self._filepath,e)) + + def changeConfValue(self,section,option,value): + if self._conf.has_section(section): + self._conf.set(section,option,value) + else: + self._conf.add_section(section) + self._conf.set(section,option,value) + + def _readvalue(self,fn,section,option,default): + result=default + if self._conf.has_section(section): + if self._conf.has_option(section,option): + result=fn(section,option) + PLOG.debug("Option[%s][%s]=%s"%(section,option,str(result))) + else: + self._conf.set(section,option,str(default)) + result=default + else: + self._conf.add_section(section) + self._conf.set(section,option,str(default)) + result=default + return result + def getstr(self,section,option,default=""): + return self._readvalue(self._conf.get, section, option, default) + def getint(self,section,option,default=0): + return self._readvalue(self._conf.getint, section, option, default) + def getfloat(self,section,option,default=0.0): + return self._readvalue(self._conf.getfloat, section, option, default) + def getboolean(self,section,option,default=False): + return self._readvalue(self._conf.getboolean, section, option, default) diff --git a/Code/RK3588/PIBot_ROS/pypibot/pypibot/daemon.py b/Code/RK3588/PIBot_ROS/pypibot/pypibot/daemon.py new file mode 100644 index 0000000..1ff78dc --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pypibot/pypibot/daemon.py @@ -0,0 +1,140 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +import sys, os, time, atexit +from signal import SIGTERM + +def check_pid(pid): + """ Check For the existence of a unix pid. """ + if pid == 0:return False + try: + os.kill(pid, 0) + except OSError: + return False + else: + return True + +class daemon: + """ + A generic daemon class. + + Usage: subclass the Daemon class and override the run() method + """ + def __init__(self, pidfile, stdin='/dev/null', stdout='/dev/null', stderr='/dev/null'): + self.stdin = stdin + self.stdout = stdout + self.stderr = stderr + self.pidfile = pidfile + + def daemonize(self): + """ + do the UNIX double-fork magic, see Stevens' "Advanced + Programming in the UNIX Environment" for details (ISBN 0201563177) + http://www.erlenstar.demon.co.uk/unix/faq_2.html#SEC16 + """ + try: + pid = os.fork() + if pid > 0: + # exit first parent + sys.exit(0) + except OSError, e: + sys.stderr.write("fork #1 failed: %d (%s)\n" % (e.errno, e.strerror)) + sys.exit(1) + + # decouple from parent environment + os.chdir("/") + os.setsid() + os.umask(0) + + # do second fork + try: + pid = os.fork() + if pid > 0: + # exit from second parent + sys.exit(0) + except OSError, e: + sys.stderr.write("fork #2 failed: %d (%s)\n" % (e.errno, e.strerror)) + sys.exit(1) + + # redirect standard file descriptors + sys.stdout.flush() + sys.stderr.flush() + si = file(self.stdin, 'r') + so = file(self.stdout, 'a+') + se = file(self.stderr, 'a+', 0) + os.dup2(si.fileno(), sys.stdin.fileno()) + os.dup2(so.fileno(), sys.stdout.fileno()) + os.dup2(se.fileno(), sys.stderr.fileno()) + + # write pidfile + atexit.register(self.delpid) + pid = str(os.getpid()) + file(self.pidfile, 'w+').write("%s\n" % pid) + + def delpid(self): + os.remove(self.pidfile) + + def start(self): + """ + Start the daemon + """ + # Check for a pidfile to see if the daemon already runs + try: + pf = file(self.pidfile, 'r') + pid = int(pf.read().strip()) + pf.close() + except IOError: + pid = None + + if pid and check_pid(pid): + message = "pidfile %s already exist. Daemon already running?\n" + sys.stderr.write(message % self.pidfile) + sys.exit(1) + print("daemon start...") + # Start the daemon + self.daemonize() + self.run() + + def stop(self): + """ + Stop the daemon + """ + # Get the pid from the pidfile + try: + pf = file(self.pidfile, 'r') + pid = int(pf.read().strip()) + pf.close() + except IOError: + pid = None + + if not pid: + message = "pidfile %s does not exist. Daemon not running?\n" + sys.stderr.write(message % self.pidfile) + return # not an error in a restart + + # Try killing the daemon process + try: + while 1: + os.kill(pid, SIGTERM) + time.sleep(0.1) + except OSError, err: + err = str(err) + if err.find("No such process") > 0: + if os.path.exists(self.pidfile): + os.remove(self.pidfile) + else: + print(str(err)) + sys.exit(1) + + def restart(self): + """ + Restart the daemon + """ + self.stop() + self.start() + + def run(self): + """ + You should override this method when you subclass Daemon. It will be called after the process has been + daemonized by start() or restart(). + """ diff --git a/Code/RK3588/PIBot_ROS/pypibot/pypibot/err.py b/Code/RK3588/PIBot_ROS/pypibot/pypibot/err.py new file mode 100644 index 0000000..d812de9 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pypibot/pypibot/err.py @@ -0,0 +1,58 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + +# 异常类 +class PibotError(Exception): + def __init__(self, errcode, errmsg): + self.errcode = errcode + self.errmsg = errmsg + #Exception.__init__(self,self.__str__()) + + def msg(self, msg): + if not msg is None:return PibotError(self.errcode, msg) + return PibotError(8,"unknow error") + def __str__(self): + return "PibotError:%s(%d)"%(self.errmsg,self.errcode) + @property + def message(self): + return str(self) +# 声明 +# 成功 +success=PibotError(0,"null") +# 通用失败 +fail=PibotError(1,"fail") +# 参数无效 +invalidParameter=PibotError(2,"invalid parameter") +# 不支持 +noSupport=PibotError(3,"no support") +# 不存在 +noExist=PibotError(4,"no exist") +# 超时 +timeout=PibotError(5,"timeout") +# 繁忙 +busy=PibotError(6,"busy") +# 缺少参数 +missParameter=PibotError(7,"miss parameter") +# 系统错误(通用错误) +systemError=PibotError(8,"system error") +# 密码错误 +invalidPassword=PibotError(9,"invalid password") +# 编码失败 +encodeFailed=PibotError(10,"encode failed") +# 数据库操作失败 +dbOpertationFailed=PibotError(11,"db error") +# 已占用 +occupied=PibotError(12,"occupied") +# session不存在 +noSession = PibotError(13,'cannot find session') +#没有找到 +noFound = PibotError(14, "no found") +#已经存在 +existed = PibotError(15, "existed") +#已经锁定 +locked = PibotError(16, "locked") +#已经过期 +expired = PibotError(17, "is expired") +#无效的参数 +invalidParameter = PibotError(18, "invalid parameter") + diff --git a/Code/RK3588/PIBot_ROS/pypibot/pypibot/log.py b/Code/RK3588/PIBot_ROS/pypibot/pypibot/log.py new file mode 100644 index 0000000..c031d4a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pypibot/pypibot/log.py @@ -0,0 +1,259 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +import sys,os +import datetime +import threading +import pypibot.assistant as assistant +import platform +if assistant.is_python3(): + import _thread +else: + import thread +import traceback +""" +%a Locale’s abbreviated weekday name. +%A Locale’s full weekday name. +%b Locale’s abbreviated month name. +%B Locale’s full month name. +%c Locale’s appropriate date and time representation. +%d Day of the month as a decimal number [01,31]. +%H Hour (24-hour clock) as a decimal number [00,23]. +%I Hour (12-hour clock) as a decimal number [01,12]. +%j Day of the year as a decimal number [001,366]. +%m Month as a decimal number [01,12]. +%M Minute as a decimal number [00,59]. +%p Locale’s equivalent of either AM or PM. (1) +%S Second as a decimal number [00,61]. (2) +%U Week number of the year (Sunday as the first day of the week) as a decimal number [00,53]. All days in a new year preceding the first Sunday are considered to be in week 0. (3) +%w Weekday as a decimal number [0(Sunday),6]. +%W Week number of the year (Monday as the first day of the week) as a decimal number [00,53]. All days in a new year preceding the first Monday are considered to be in week 0. (3) +%x Locale’s appropriate date representation. +%X Locale’s appropriate time representation. +%y Year without century as a decimal number [00,99]. +%Y Year with century as a decimal number. +%Z Time zone name (no characters if no time zone exists). +%% A literal '%' character. + +""" +isWindows=False +if platform.system()=='Windows': + isWindows=True +defaultEncodeing="utf8" +if "-utf8" in sys.argv: + defaultEncodeing="utf-8" +if "-gbk" in sys.argv: + defaultEncodeing="gbk" + +TRACE=5 +DEBUG=4 +INFORMATION=3 +WARNING=2 +ERROR=1 +NONE=0 + +MAX_MSG_SIZE = 4096 + +def getLevelFromString(level): + level=level.lower() + if level=='t' or level=='trace':return 5 + elif level=='d' or level=='debug':return 4 + elif level=='i' or level=='info':return 3 + elif level=='w' or level=='wran':return 2 + elif level=='e' or level=='error':return 1 + else :return 0 +def getLevelString(level): + if level==TRACE:return "T" + elif level==DEBUG:return "D" + elif level==INFORMATION:return "I" + elif level==WARNING:return "W" + elif level==ERROR:return "E" + else:return "N" +class PibotLog: + def __init__(self): + self.isEnableControlLog=True + self.fileTemple=None + self.filePath="" + self.level=5 + self._lock=threading.RLock() + self.fd=None + self.fd_day=-1 + def setLevel(self,level): + self.level=getLevelFromString(level) + def enableControllog(self,enable): + self.isEnableControlLog=enable + def enableFileLog(self,fileName): + self.fileTemple=fileName + self.updateFilelog() + def updateFilelog(self): + fn=assistant.SF(self.fileTemple) + if fn!=self.filePath: + self.i("new log file:%s",fn) + if self.fd: + self.fd.close() + self.fd=None + self.fd_day=-1 + self.filePath="" + try: + path=os.path.dirname(fn) + if path!="" and not os.path.isdir(path):os.makedirs(path) + self.fd=open(fn,mode="w") + try: + linkfn = fn.split(".log.", 1)[0] + ".INFO" + if os.path.exists(linkfn): + os.remove(linkfn) + (filepath, tempfilename) = os.path.split(fn) + os.symlink(tempfilename, linkfn) + except: + pass + self.fd_day=datetime.datetime.now().day + self.filePath=fn + except Exception as e: + print("open file fail!file=%s,err=%s"%(fn,e)) + def _output(self,level,msg,args): + if self.level0: + t=[] + for arg in args: + if isinstance(arg,Exception): + t.append(traceback.format_exc(arg).decode('utf-8')) + elif isinstance(arg,bytes) : + t.append(arg.decode('utf-8')) + else: + t.append(arg) + args=tuple(t) + try: + msg=msg%args + except: + try: + for arg in args: + msg=msg+str(arg)+" " + except Exception as e: + msg=msg+"==LOG ERROR==>%s"%(e) + if len(msg)>MAX_MSG_SIZE:msg=msg[0:MAX_MSG_SIZE] + now=datetime.datetime.now() + msg=msg+"\r\n" + if assistant.is_python3(): + id = _thread.get_ident() + else: + id = thread.get_ident() + s="[%s] %04d-%02d-%02d %02d:%02d:%02d.%03d (0x%04X):%s"%(getLevelString(level),now.year,now.month,now.day,now.hour,now.minute,now.second,now.microsecond/1000,(id>>8)&0xffff,msg) + prefix='' + suffix='' + if not isWindows: + suffix='\033[0m' + if level==TRACE: + prefix='\033[0;37m' + elif level==DEBUG: + prefix='\033[1m' + elif level==INFORMATION: + prefix='\033[0;32m' + elif level==WARNING: + prefix='\033[0;33m' + elif level==ERROR: + prefix='\033[0;31m' + else: + pass + self._lock.acquire() + try: + if self.isEnableControlLog: + sys.stdout.write((prefix+s+suffix)) + if self.fd: + if self.fd_day!=now.day: + self.updateFilelog() + if assistant.is_python3(): + self.fd.write(s) + else: + self.fd.write(s.encode('utf-8')) + self.fd.flush() + finally: + self._lock.release() + except Exception as e: + if assistant.is_python3(): + print(e) + else: + print("PibotLog._output crash!err=%s"%traceback.format_exc(e)) + + def trace(self,msg,*args): + self._output(TRACE,msg,args) + def t(self,msg,*args): + self._output(TRACE,msg,args) + def debug(self,msg,*args): + self._output(DEBUG, msg,args) + def d(self,msg,*args): + self._output(DEBUG, msg,args) + def info(self,msg,*args): + self._output(INFORMATION, msg,args) + def i(self,msg,*args): + self._output(INFORMATION, msg,args) + def warn(self,msg,*args): + self._output(WARNING, msg,args) + def w(self,msg,*args): + self._output(WARNING, msg,args) + def error(self,msg,*args): + self._output(ERROR, msg,args) + def e(self,msg,*args): + self._output(ERROR, msg,args) + def _log(self,level,msg,args): + self._output(level, msg,args) + def createNamedLog(self,name): + return NamedLog(name) +log=PibotLog() +class NamedLog: + def __init__(self,name=None): + global log + self.name='' + if name: + self.name='['+name+']' + self.log=log + def trace(self,msg,*args): + msg=self.name+msg + self.log._log(TRACE,msg,args) + def t(self,msg,*args): + msg=self.name+msg + self.log._log(TRACE,msg,args) + def debug(self,msg,*args): + msg=self.name+msg + self.log._log(DEBUG, msg,args) + def d(self,msg,*args): + msg=self.name+msg + self.log._log(DEBUG, msg,args) + def info(self,msg,*args): + msg=self.name+msg + self.log._log(INFORMATION, msg,args) + def i(self,msg,*args): + msg=self.name+msg + self.log._log(INFORMATION, msg,args) + def warn(self,msg,*args): + msg=self.name+msg + self.log._log(WARNING, msg,args) + def w(self,msg,*args): + msg=self.name+msg + self.log._log(WARNING, msg,args) + def error(self,msg,*args): + msg=self.name+msg + self.log._log(ERROR, msg,args) + def e(self,msg,*args): + msg=self.name+msg + self.log._log(ERROR, msg,args) + +if __name__ == "__main__": + log.trace("1%s","hello") + log.debug("2%d",12) + try: + raise Exception("EXC") + except Exception as e: + log.info("3%s",e) + log.warn("1") + log.error("1") + #log.enableFileLog("$(scriptpath)test_$(Date8)_$(filenumber2).log") + log.trace("1") + log.debug("1") + log.info("1") + log.warn("1") + log.error("1") + log=NamedLog("test") + log.d("1") + log.i("1") + log.warn("1") + log.error("1=%d,%s",100,e) diff --git a/Code/RK3588/PIBot_ROS/pypibot/pypibot/mapconvert.py b/Code/RK3588/PIBot_ROS/pypibot/pypibot/mapconvert.py new file mode 100644 index 0000000..0d27ec4 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pypibot/pypibot/mapconvert.py @@ -0,0 +1,35 @@ +import cv2 +import numpy as np + +def map_server_to_cv2(data): + # print(data.info.height, data.info.width) + data = np.reshape(data.data, (data.info.height, data.info.width)) + data = np.flipud(data) + + # -1 --> 205 + # 0 --> 255 + # 100--> 0 + image = np.where(data == -1, 205, 255 - (255.0 * data / 100)).astype(np.uint8) + + #cv2.imshow("cv2_map", data) + return image + + +def cv2_to_map_server(image): + image = np.flipud(image) + + # 205 --> -1 + # 255 --> 0 + # 0 --> 100 + data = np.where(image == 205, -1, (255 - image) * 100.0 / 255).astype(np.int8).flatten() + + return list(data) + # pub_data = OccupancyGrid() + # pub_data.header.frame_id = "map" + # pub_data.header.stamp = rospy.Time.now() + # pub_data.info = map_data.info + # pub_data.data = list(data) + + # print(len(pub_data.data), pub_data.info.height * pub_data.info.width) + + # map_publisher.publish(pub_data) \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/pypibot/pypibot/proxy.py b/Code/RK3588/PIBot_ROS/pypibot/pypibot/proxy.py new file mode 100644 index 0000000..5187c22 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pypibot/pypibot/proxy.py @@ -0,0 +1,38 @@ +from pypibot import log + +import threading +import zmq + +class MqProxy: + def __init__(self, sub_addr, pub_addr): + self.thd = None + self.sub_addr = sub_addr + self.pub_addr = pub_addr + + def _run(self): + context = zmq.Context() + + frontend = context.socket(zmq.XSUB) + frontend.bind(self.sub_addr) + # frontend.bind("tcp://*:5556") + backend = context.socket(zmq.XPUB) + backend.bind(self.pub_addr) + # backend.bind("tcp://*:5557") + try: + zmq.proxy(frontend, backend) + except KeyboardInterrupt: + pass + + frontend.close() + backend.close() + context.term() + + def start(self): + if self.thd is None: + log.i("mq proxy starting...") + self.thd=threading.Thread(target=self._run, name="proxy") + self.thd.setDaemon(True) + self.thd.start() + + def stop(self): + pass diff --git a/Code/RK3588/PIBot_ROS/pypibot/transport/dataholder.py b/Code/RK3588/PIBot_ROS/pypibot/transport/dataholder.py new file mode 100644 index 0000000..51796a2 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pypibot/transport/dataholder.py @@ -0,0 +1,240 @@ +import struct + +params_size=29 + +# main board +class MessageID: + ID_GET_VERSION = 0 + ID_SET_ROBOT_PARAMETER = 1 + ID_GET_ROBOT_PARAMETER = 2 + ID_INIT_ODOM = 3 + ID_SET_VEL = 4 + ID_GET_ODOM = 5 + ID_GET_PID_DEBUG = 6 + ID_GET_IMU = 7 + ID_GET_ENCODER_COUNT = 8 + ID_SET_MOTOR_PWM = 9 + +class RobotMessage: + def pack(self): + return b'' + + def unpack(self): + return True + +class RobotFirmwareInfo(RobotMessage): + def __init__(self): + self.version = '' + self.build_time = '' + + def unpack(self, data): + try: + upk = struct.unpack('16s16s', bytes(data)) + except: + return False + [self.version, self.build_time] = upk + return True + +class RobotImuType: + IMU_TYPE_GY65 = 49 + IMU_TYPE_GY85 = 69 + IMU_TYPE_GY87 = 71 + +class RobotModelType: + MODEL_TYPE_2WD_DIFF = 1 + MODEL_TYPE_4WD_DIFF = 2 + MODEL_TYPE_3WD_OMNI = 101 + MODEL_TYPE_4WD_OMNI = 102 + MODEL_TYPE_4WD_MECANUM = 201 + +class RobotParameters(): + def __init__(self, wheel_diameter=0, \ + wheel_track=0, \ + encoder_resolution=0, \ + do_pid_interval=0, \ + kp=0, \ + ki=0, \ + kd=0, \ + ko=0, \ + cmd_last_time=0, \ + max_v_liner_x=0, \ + max_v_liner_y=0, \ + max_v_angular_z=0, \ + imu_type=0, \ + motor_ratio=0, \ + model_type=0, \ + motor_nonexchange_flag=255, \ + encoder_nonexchange_flag=255, \ + ): + self.wheel_diameter = wheel_diameter + self.wheel_track = wheel_track + self.encoder_resolution = encoder_resolution + self.do_pid_interval = do_pid_interval + self.kp = kp + self.ki = ki + self.kd = kd + self.ko = ko + self.cmd_last_time = cmd_last_time + self.max_v_liner_x = max_v_liner_x + self.max_v_liner_y = max_v_liner_y + self.max_v_angular_z = max_v_angular_z + self.imu_type = imu_type + self.motor_ratio = motor_ratio + self.model_type = model_type + self.motor_nonexchange_flag = motor_nonexchange_flag + self.encoder_nonexchange_flag = encoder_nonexchange_flag + reserve=b'\xff' + self.reserve=b'' + for i in range(64-params_size): + self.reserve+=reserve +robotParam = RobotParameters() + +class GetRobotParameters(RobotMessage): + def __init__(self): + self.param = robotParam + + def unpack(self, data): + #print(bytes(data), len(bytes(data))) + upk = struct.unpack('<3H1B8H1B1H3B%ds'%(64-params_size), bytes(data)) + + [self.param.wheel_diameter, + self.param.wheel_track, + self.param.encoder_resolution, + self.param.do_pid_interval, + self.param.kp, + self.param.ki, + self.param.kd, + self.param.ko, + self.param.cmd_last_time, + self.param.max_v_liner_x, + self.param.max_v_liner_y, + self.param.max_v_angular_z, + self.param.imu_type, + self.param.motor_ratio, + self.param.model_type, + self.param.motor_nonexchange_flag, + self.param.encoder_nonexchange_flag, + self.param.reserve] = upk + return True + +class SetRobotParameters(RobotMessage): + def __init__(self): + self.param = robotParam + + def pack(self): + data = [self.param.wheel_diameter, + self.param.wheel_track, + self.param.encoder_resolution, + self.param.do_pid_interval, + self.param.kp, + self.param.ki, + self.param.kd, + self.param.ko, + self.param.cmd_last_time, + self.param.max_v_liner_x, + self.param.max_v_liner_y, + self.param.max_v_angular_z, + self.param.imu_type, + self.param.motor_ratio, + self.param.model_type, + self.param.motor_nonexchange_flag, + self.param.encoder_nonexchange_flag, + self.param.reserve] + + print(data) + pk = struct.pack('<3H1B8H1B1H3B%ds'%(64-(3*2+1+8*2+1+2+3)), *data) + return pk + + def unpack(self, data): + return True + +class RobotVel(RobotMessage): + def __init__(self): + self.v_liner_x = 0 + self.v_liner_y = 0 + self.v_angular_z = 0 + + def pack(self): + data = [self.v_liner_x, + self.v_liner_y, + self.v_angular_z] + pk = struct.pack('3h', *data) + return pk + + def unpack(self, data): + return True + +#todo the rest of the message classes +class RobotOdom(RobotMessage): + def __init__(self): + self.v_liner_x = 0 + self.v_liner_y = 0 + self.v_angular_z = 0 + self.x = 0 + self.y = 0 + self.yaw = 0 + + def unpack(self, data): + try: + upk = struct.unpack('<3H2l1H', bytes(data)) + except: + return False + [self.v_liner_x, + self.v_liner_y, + self.v_angular_z, + self.x, + self.y, + self.yaw] = upk + return True + +class RobotPIDData(RobotMessage): + pass + +class RobotIMU(RobotMessage): + def __init__(self): + self.imu = [0]*9 + + def unpack(self, data): + try: + upk = struct.unpack('<9f', bytes(data)) + except: + return False + + self.imu = upk + return True + +class RobotEncoderCount(RobotMessage): + def __init__(self): + self.encoder = [0]*4 + + def unpack(self, data): + try: + upk = struct.unpack('<4f', bytes(data)) + except: + return False + + self.encoder = upk + return True + +class RobotMotorPWM(RobotMessage): + def __init__(self): + self.pwm = [0]*4 + + def pack(self): + pk = struct.pack('4h', *self.pwm) + return pk + + def unpack(self, data): + return True + +BoardDataDict = {MessageID.ID_GET_VERSION:RobotFirmwareInfo(), + MessageID.ID_GET_ROBOT_PARAMETER:GetRobotParameters(), + MessageID.ID_SET_ROBOT_PARAMETER:SetRobotParameters(), + MessageID.ID_SET_VEL:RobotVel(), + MessageID.ID_GET_ODOM:RobotOdom(), + MessageID.ID_GET_PID_DEBUG: RobotPIDData(), + MessageID.ID_GET_IMU: RobotIMU(), + MessageID.ID_GET_ENCODER_COUNT: RobotEncoderCount(), + MessageID.ID_SET_MOTOR_PWM: RobotMotorPWM(), + } + diff --git a/Code/RK3588/PIBot_ROS/pypibot/transport/main.py b/Code/RK3588/PIBot_ROS/pypibot/transport/main.py new file mode 100644 index 0000000..6bd5515 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pypibot/transport/main.py @@ -0,0 +1,115 @@ +import platform +import sys +sys.path.append("..") +import pypibot +from pypibot import log +from transport import Transport +from dataholder import MessageID +import params +import time +import signal + +#for linux +port="/dev/pibot" + +#for windows +#port="com3" + +pypibot.assistant.enableGlobalExcept() +#log.enableFileLog(log_dir + "ros_$(Date8)_$(filenumber2).log") +log.setLevel("i") + +run_flag = True + +def exit(signum, frame): + global run_flag + run_flag = False + +if __name__ == '__main__': + signal.signal(signal.SIGINT, exit) + + mboard = Transport(port, params.pibotBaud) + if not mboard.start(): + log.error("can not open %s"%port) + sys.exit() + + DataHolder = mboard.getDataHolder() + + for num in range(0,3): + log.info("****************get robot version*****************") + boardVersion = DataHolder[MessageID.ID_GET_VERSION] + p = mboard.request(MessageID.ID_GET_VERSION) + if p: + log.info("firmware version:%s buildtime:%s\r\n"%(boardVersion.version.decode(), boardVersion.build_time.decode())) + break + else: + log.error('read firmware version err\r\n') + import time + time.sleep(1) + if num == 2: + log.error('please check connection or baudrate\r\n') + sys.exit() + + # get robot parameter + robotParam = DataHolder[MessageID.ID_GET_ROBOT_PARAMETER] + p = mboard.request(MessageID.ID_GET_ROBOT_PARAMETER) + if p: + log.info("model_type:%d wheel_diameter:%d wheel_track:%d encoder_resolution:%d" \ + %(robotParam.param.model_type, \ + robotParam.param.wheel_diameter, \ + robotParam.param.wheel_track, \ + robotParam.param.encoder_resolution + )) + + log.info("do_pid_interval:%d kp:%d ki:%d kd:%d ko:%d" \ + %(robotParam.param.do_pid_interval, \ + robotParam.param.kp, \ + robotParam.param.ki, \ + robotParam.param.kd, \ + robotParam.param.ko)) + + log.info("cmd_last_time:%d imu_type:%d" \ + %(robotParam.param.cmd_last_time,\ + robotParam.param.imu_type + )) + + log.info("max_v:%d %d %d\r\n" \ + %(robotParam.param.max_v_liner_x,\ + robotParam.param.max_v_liner_y, \ + robotParam.param.max_v_angular_z + )) + + log.info("motor flag:%d encoder flag: %d\r\n" \ + %(robotParam.param.motor_nonexchange_flag,\ + robotParam.param.encoder_nonexchange_flag + )) + else: + log.error('get params err\r\n') + quit(1) + + log.info("****************get odom&imu*****************") + while run_flag: + robotOdom = DataHolder[MessageID.ID_GET_ODOM] + p = mboard.request(MessageID.ID_GET_ODOM) + if p: + log.info('request get odom success, vx=%d vy=%d vangular=%d, x=%d y=%d yaw=%d'%(robotOdom.v_liner_x, \ + robotOdom.v_liner_y, \ + robotOdom.v_angular_z, \ + robotOdom.x, \ + robotOdom.y, \ + robotOdom.yaw)) + else: + log.error('get odom err') + quit(1) + + robotIMU = DataHolder[MessageID.ID_GET_IMU].imu + p = mboard.request(MessageID.ID_GET_IMU) + if p: + log.info('get imu success, imu=[%f %f %f %f %f %f %f %f %f]'%(robotIMU[0], robotIMU[1], robotIMU[2], \ + robotIMU[3], robotIMU[4], robotIMU[5], \ + robotIMU[6], robotIMU[7], robotIMU[8])) + else: + log.error('get imu err') + quit(1) + + time.sleep(0.1) diff --git a/Code/RK3588/PIBot_ROS/pypibot/transport/params.py b/Code/RK3588/PIBot_ROS/pypibot/transport/params.py new file mode 100644 index 0000000..d87367f --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pypibot/transport/params.py @@ -0,0 +1,75 @@ +import dataholder +import os +from dataholder import RobotImuType +from dataholder import RobotModelType + +pibotModel = os.environ['PIBOT_MODEL'] +boardType = os.environ['PIBOT_BOARD'] +pibotBaud = os.environ['PIBOT_DRIVER_BAUDRATE'] + +print(pibotModel) +print(boardType) +print(pibotBaud) + +pibotParam = dataholder.RobotParameters() + +if pibotModel == "apollo" and boardType == "arduino": + pibotParam = dataholder.RobotParameters(65, 175, 44, 10, \ + 75, 2500, 0, 10, \ + 250, 40, 0, 200, \ + RobotImuType.IMU_TYPE_GY85, 90, \ + RobotModelType.MODEL_TYPE_2WD_DIFF) +elif pibotModel == "apollo" and boardType == "stm32f1": + pibotParam = dataholder.RobotParameters(65, 175, 44, 10, \ + 320, 2700, 0, 10, \ + 250, 50, 0, 200, \ + RobotImuType.IMU_TYPE_GY87, 90, \ + RobotModelType.MODEL_TYPE_2WD_DIFF) +elif pibotModel == "apollo" and boardType == "stm32f4": + pibotParam = dataholder.RobotParameters(65, 175, 44, 10, \ + 320, 2700, 0, 10, \ + 250, 40, 0, 200, \ + RobotImuType.IMU_TYPE_GY87, 90, \ + RobotModelType.MODEL_TYPE_2WD_DIFF) +elif pibotModel == "zeus" and boardType == "stm32f4": + pibotParam = dataholder.RobotParameters(58, 230, 44, 10, \ + 320, 2700, 0, 10, \ + 250, 50, 50, 250, \ + RobotImuType.IMU_TYPE_GY87, 90, \ + RobotModelType.MODEL_TYPE_3WD_OMNI) +elif pibotModel == "hades" and boardType == "stm32f4": + pibotParam = dataholder.RobotParameters(76, 470, 44, 10, \ + 320, 2700, 0, 10, \ + 250, 50, 50, 250, \ + RobotImuType.IMU_TYPE_GY87, 90, \ + RobotModelType.MODEL_TYPE_4WD_MECANUM) +elif pibotModel == "hadesX" and boardType == "stm32f4": + pibotParam = dataholder.RobotParameters(150, 565, 44, 10, \ + 250, 2750, 0, 10, \ + 250, 50, 50, 250, \ + RobotImuType.IMU_TYPE_GY87, 72, \ + RobotModelType.MODEL_TYPE_4WD_MECANUM) +elif pibotModel == "hera" and boardType == "stm32f4": + pibotParam = dataholder.RobotParameters(82, 338, 44, 10, \ + 320, 2700, 0, 10, \ + 250, 50, 50, 250, \ + RobotImuType.IMU_TYPE_GY87, 90, \ + RobotModelType.MODEL_TYPE_4WD_DIFF) +elif pibotModel == "apolloX" and boardType == "arduino": + pibotParam = dataholder.RobotParameters(96, 350, 68, 10, \ + 75, 2500, 0, 10, \ + 250, 40, 0, 200, \ + RobotImuType.IMU_TYPE_GY85, 90, \ + RobotModelType.MODEL_TYPE_2WD_DIFF) +elif pibotModel == "apolloX" and boardType == "stm32f1": + pibotParam = dataholder.RobotParameters(96, 350, 68, 10, \ + 250, 1200, 0, 10, \ + 250, 50, 0, 200, \ + RobotImuType.IMU_TYPE_GY87, 90, \ + RobotModelType.MODEL_TYPE_2WD_DIFF) +elif pibotModel == "apolloX" and boardType == "stm32f4": + pibotParam = dataholder.RobotParameters(96, 350, 68, 10, \ + 250, 1200, 0, 10, \ + 250, 50, 0, 200, \ + RobotImuType.IMU_TYPE_GY87, 90, \ + RobotModelType.MODEL_TYPE_2WD_DIFF) \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/pypibot/transport/set_default_params.py b/Code/RK3588/PIBot_ROS/pypibot/transport/set_default_params.py new file mode 100644 index 0000000..096b17c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pypibot/transport/set_default_params.py @@ -0,0 +1,90 @@ +import platform +import sys +sys.path.append("..") +import pypibot +from pypibot import log +from transport import Transport +from dataholder import MessageID +import params + +#for linux +port="/dev/pibot" + +#for windows +#port="com3" + +pypibot.assistant.enableGlobalExcept() +#log.enableFileLog(log_dir + "ros_$(Date8)_$(filenumber2).log") +log.setLevel("i") + +if __name__ == '__main__': + mboard = Transport(port, params.pibotBaud) + if not mboard.start(): + log.error("can not open %s"%port) + sys.exit() + + DataHolder = mboard.getDataHolder() + + for num in range(0,3): + log.info("****************get robot version*****************") + boardVersion = DataHolder[MessageID.ID_GET_VERSION] + p = mboard.request(MessageID.ID_GET_VERSION) + if p: + log.info("firmware version:%s buildtime:%s\r\n"%(boardVersion.version.decode(), boardVersion.build_time.decode())) + break + else: + log.error('read firmware version err\r\n') + import time + time.sleep(1) + if num == 2: + log.error('please check connection or baudrate\r\n') + sys.exit() + + # set robot parameter + log.info("****************set robot parameter*****************") + + DataHolder[MessageID.ID_SET_ROBOT_PARAMETER].param = params.pibotParam + + p = mboard.request(MessageID.ID_SET_ROBOT_PARAMETER) + if p: + log.info('set parameter success') + else: + log.error('set parameter err') + quit(1) + + # get robot parameter + robotParam = DataHolder[MessageID.ID_GET_ROBOT_PARAMETER] + p = mboard.request(MessageID.ID_GET_ROBOT_PARAMETER) + if p: + log.info("model_type:%d wheel_diameter:%d wheel_track:%d encoder_resolution:%d" \ + %(robotParam.param.model_type, \ + robotParam.param.wheel_diameter, \ + robotParam.param.wheel_track, \ + robotParam.param.encoder_resolution + )) + + log.info("do_pid_interval:%d kp:%d ki:%d kd:%d ko:%d" \ + %(robotParam.param.do_pid_interval, \ + robotParam.param.kp, \ + robotParam.param.ki, \ + robotParam.param.kd, \ + robotParam.param.ko)) + + log.info("cmd_last_time:%d imu_type:%d" \ + %(robotParam.param.cmd_last_time,\ + robotParam.param.imu_type + )) + + log.info("max_v:%d %d %d\r\n" \ + %(robotParam.param.max_v_liner_x,\ + robotParam.param.max_v_liner_y, \ + robotParam.param.max_v_angular_z + )) + + log.info("motor flag:%d encoder flag: %d\r\n" \ + %(robotParam.param.motor_nonexchange_flag,\ + robotParam.param.encoder_nonexchange_flag + )) + else: + log.error('get param err\r\n') + quit(1) \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/pypibot/transport/test_motors.py b/Code/RK3588/PIBot_ROS/pypibot/transport/test_motors.py new file mode 100644 index 0000000..d5e0daa --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pypibot/transport/test_motors.py @@ -0,0 +1,122 @@ +import platform +import sys +sys.path.append("..") +import pypibot +from pypibot import log +from transport import Transport +from dataholder import MessageID +import params +import signal + +#for linux +port="/dev/pibot" + +#for windows +#port="com3" + +pypibot.assistant.enableGlobalExcept() +#log.enableFileLog(log_dir + "ros_$(Date8)_$(filenumber2).log") +log.setLevel("i") + +run_flag = True + +def exit(signum, frame): + global run_flag + run_flag = False + +if __name__ == '__main__': + signal.signal(signal.SIGINT, exit) + + mboard = Transport(port, params.pibotBaud) + if not mboard.start(): + log.error("can not open %s"%port) + sys.exit() + + pwm=[0]*4 + for i in range(len(sys.argv)-1): + pwm[i] = int(sys.argv[i+1]) + + DataHolder = mboard.getDataHolder() + + for num in range(0,3): + log.info("****************get robot version*****************") + boardVersion = DataHolder[MessageID.ID_GET_VERSION] + p = mboard.request(MessageID.ID_GET_VERSION) + if p: + log.info("firmware version:%s buildtime:%s\r\n"%(boardVersion.version.decode(), boardVersion.build_time.decode())) + break + else: + log.error('read firmware version err\r\n') + import time + time.sleep(1) + if num == 2: + log.error('please check connection or baudrate\r\n') + sys.exit() + + # get robot parameter + robotParam = DataHolder[MessageID.ID_GET_ROBOT_PARAMETER] + p = mboard.request(MessageID.ID_GET_ROBOT_PARAMETER) + if p: + log.info("model_type:%d wheel_diameter:%d wheel_track:%d encoder_resolution:%d" \ + %(robotParam.param.model_type, \ + robotParam.param.wheel_diameter, \ + robotParam.param.wheel_track, \ + robotParam.param.encoder_resolution + )) + + log.info("do_pid_interval:%d kp:%d ki:%d kd:%d ko:%d" \ + %(robotParam.param.do_pid_interval, \ + robotParam.param.kp, \ + robotParam.param.ki, \ + robotParam.param.kd, \ + robotParam.param.ko)) + + log.info("cmd_last_time:%d imu_type:%d" \ + %(robotParam.param.cmd_last_time,\ + robotParam.param.imu_type + )) + + log.info("max_v:%d %d %d\r\n" \ + %(robotParam.param.max_v_liner_x,\ + robotParam.param.max_v_liner_y, \ + robotParam.param.max_v_angular_z + )) + + log.info("motor flag:%d encoder flag: %d\r\n" \ + %(robotParam.param.motor_nonexchange_flag,\ + robotParam.param.encoder_nonexchange_flag + )) + else: + log.error('get params err\r\n') + quit(1) + + DataHolder[MessageID.ID_SET_MOTOR_PWM].pwm = pwm + + p = mboard.request(MessageID.ID_SET_MOTOR_PWM) + if p: + log.info('set pwm success') + else: + log.error('set pwm err') + quit(1) + + log.info("****************get encoder count*****************") + while run_flag: + robotEncoder = DataHolder[MessageID.ID_GET_ENCODER_COUNT].encoder + p = mboard.request(MessageID.ID_GET_ENCODER_COUNT) + if p: + log.info('encoder count: %s'%(('\t\t').join([str(x) for x in robotEncoder]))) + else: + log.error('get encoder count err') + quit(1) + + import time + time.sleep(0.5) + + DataHolder[MessageID.ID_SET_MOTOR_PWM].pwm = [0]*4 + + p = mboard.request(MessageID.ID_SET_MOTOR_PWM) + if p: + log.info('set pwm success') + else: + log.error('set pwm err') + quit(1) \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/pypibot/transport/transport.py b/Code/RK3588/PIBot_ROS/pypibot/transport/transport.py new file mode 100644 index 0000000..4d9a8e3 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/pypibot/transport/transport.py @@ -0,0 +1,197 @@ +import sys +sys.path.append("..") +import pypibot +from pypibot import log +from pypibot import assistant + +import serial +import threading +import struct +import time +from dataholder import MessageID, BoardDataDict +FIX_HEAD = 0x5a + +class Recstate(): + WAITING_HD = 0 + WAITING_MSG_ID = 1 + RECEIVE_LEN = 2 + RECEIVE_PACKAGE = 3 + RECEIVE_CHECK = 4 + +def checksum(d): + sum = 0 + if assistant.is_python3(): + for i in d: + sum += i + sum = sum&0xff + else: + for i in d: + sum += ord(i) + sum = sum&0xff + return sum + + +class Transport: + def __init__(self, port, baudrate=921600): + self._Port = port + self._Baudrate = baudrate + self._KeepRunning = False + self.receive_state = Recstate.WAITING_HD + self.rev_msg = [] + self.rev_data = [] + self.wait_event = threading.Event() + + def getDataHolder(self): + return BoardDataDict + + def start(self): + try: + self._Serial = serial.Serial(port=self._Port, baudrate=self._Baudrate, timeout=0.2) + self._KeepRunning = True + self._ReceiverThread = threading.Thread(target=self._Listen) + self._ReceiverThread.setDaemon(True) + self._ReceiverThread.start() + return True + except: + return False + + def Stop(self): + self._KeepRunning = False + time.sleep(0.1) + self._Serial.close() + + def _Listen(self): + while self._KeepRunning: + if self.receiveFiniteStates(self._Serial.read()): + self.packageAnalysis() + + def receiveFiniteStates(self, s): + if len(s) == 0: + return False + val = s[0] + val_int = val + if not assistant.is_python3(): + val_int = ord(val) + + if self.receive_state == Recstate.WAITING_HD: + if val_int == FIX_HEAD: + log.trace('got head') + self.rev_msg = [] + self.rev_data =[] + self.rev_msg.append(val) + self.receive_state = Recstate.WAITING_MSG_ID + elif self.receive_state == Recstate.WAITING_MSG_ID: + log.trace('got msg id') + self.rev_msg.append(val) + self.receive_state = Recstate.RECEIVE_LEN + elif self.receive_state == Recstate.RECEIVE_LEN: + log.trace('got len:%d', val_int) + self.rev_msg.append(val) + if val_int == 0: + self.receive_state = Recstate.RECEIVE_CHECK + else: + self.receive_state = Recstate.RECEIVE_PACKAGE + elif self.receive_state == Recstate.RECEIVE_PACKAGE: + # if assistant.is_python3(): + # self.rev_data.append((chr(val)).encode('latin1')) + # else: + self.rev_data.append(val) + r = False + if assistant.is_python3(): + r = len(self.rev_data) == int(self.rev_msg[-1]) + else: + r = len(self.rev_data) == ord(self.rev_msg[-1]) + + if r: + self.rev_msg.extend(self.rev_data) + self.receive_state = Recstate.RECEIVE_CHECK + elif self.receive_state == Recstate.RECEIVE_CHECK: + log.trace('got check') + self.receive_state = Recstate.WAITING_HD + if val_int == checksum(self.rev_msg): + log.trace('got a complete message') + return True + else: + self.receive_state = Recstate.WAITING_HD + + # continue receiving + return False + + def packageAnalysis(self): + if assistant.is_python3(): + in_msg_id = int(self.rev_msg[1]) + else: + in_msg_id = ord(self.rev_msg[1]) + if assistant.is_python3(): + log.debug("recv body:" + " ".join("{:02x}".format(c) for c in self.rev_data)) + r = BoardDataDict[in_msg_id].unpack(bytes(self.rev_data)) + else: + log.debug("recv body:" + " ".join("{:02x}".format(ord(c)) for c in self.rev_data)) + r = BoardDataDict[in_msg_id].unpack(''.join(self.rev_data)) + if r: + self.res_id = in_msg_id + if in_msg_id<100: + self.set_response() + else:#notify + log.debug('msg %d'%self.rev_msg[4],'data incoming') + pass + else: + log.debug ('error unpacking pkg') + + def request(self, id, timeout=0.5): + if not self.write(id): + log.debug ('Serial send error!') + return False + if self.wait_for_response(timeout): + if id == self.res_id: + log.trace ('OK') + else: + log.error ('Got unmatched response!') + else: + log.error ('Request got no response!') + return False + # clear response + self.res_id = None + return True + + def write(self, id): + cmd = self.make_command(id) + if assistant.is_python3(): + log.d("write:" + " ".join("{:02x}".format(c) for c in cmd)) + else: + log.d("write:" + " ".join("{:02x}".format(ord(c)) for c in cmd)) + self._Serial.write(cmd) + return True + + def wait_for_response(self, timeout): + self.wait_event.clear() + return self.wait_event.wait(timeout) + + def set_response(self): + self.wait_event.set() + + def make_command(self, id): + #print(DataDict[id]) + data = BoardDataDict[id].pack() + l = [FIX_HEAD, id, len(data)] + head = struct.pack("3B", *l) + body = head + data + + if assistant.is_python3(): + return body + chr(checksum(body)).encode('latin1') + else: + return body + chr(checksum(body)) + + +if __name__ == '__main__': + + mboard = Transport('com10') + if not mboard.start(): + import sys + sys.exit() + + p = mboard.request(MessageID.ID_GET_VERSION) + log.i("result=%s"%p) + print('Version =[',mboard.getDataHolder()[MessageID.ID_GET_VERSION].version.decode(), mboard.getDataHolder()[MessageID.ID_GET_VERSION].build_time.decode(),"]\r\n") + + diff --git a/Code/RK3588/PIBot_ROS/ros_package/abseil-cpp.tar.gz b/Code/RK3588/PIBot_ROS/ros_package/abseil-cpp.tar.gz new file mode 100644 index 0000000..cec7e01 Binary files /dev/null and b/Code/RK3588/PIBot_ROS/ros_package/abseil-cpp.tar.gz differ diff --git a/Code/RK3588/PIBot_ROS/ros_package/astra.tar.gz b/Code/RK3588/PIBot_ROS/ros_package/astra.tar.gz new file mode 100644 index 0000000..94f54e1 Binary files /dev/null and b/Code/RK3588/PIBot_ROS/ros_package/astra.tar.gz differ diff --git a/Code/RK3588/PIBot_ROS/ros_package/cartographer.tar.gz b/Code/RK3588/PIBot_ROS/ros_package/cartographer.tar.gz new file mode 100644 index 0000000..229cfbb Binary files /dev/null and b/Code/RK3588/PIBot_ROS/ros_package/cartographer.tar.gz differ diff --git a/Code/RK3588/PIBot_ROS/ros_package/cartographer_ros.tar.gz b/Code/RK3588/PIBot_ROS/ros_package/cartographer_ros.tar.gz new file mode 100644 index 0000000..beef208 Binary files /dev/null and b/Code/RK3588/PIBot_ROS/ros_package/cartographer_ros.tar.gz differ diff --git a/Code/RK3588/PIBot_ROS/ros_package/ceres-solver.tar.gz b/Code/RK3588/PIBot_ROS/ros_package/ceres-solver.tar.gz new file mode 100644 index 0000000..6687de3 Binary files /dev/null and b/Code/RK3588/PIBot_ROS/ros_package/ceres-solver.tar.gz differ diff --git a/Code/RK3588/PIBot_ROS/ros_package/frontier_exploration.tar.gz b/Code/RK3588/PIBot_ROS/ros_package/frontier_exploration.tar.gz new file mode 100644 index 0000000..5bb1075 Binary files /dev/null and b/Code/RK3588/PIBot_ROS/ros_package/frontier_exploration.tar.gz differ diff --git a/Code/RK3588/PIBot_ROS/ros_package/protobuf.tar.gz b/Code/RK3588/PIBot_ROS/ros_package/protobuf.tar.gz new file mode 100644 index 0000000..ba7deb4 Binary files /dev/null and b/Code/RK3588/PIBot_ROS/ros_package/protobuf.tar.gz differ diff --git a/Code/RK3588/PIBot_ROS/ros_ws/.catkin_workspace b/Code/RK3588/PIBot_ROS/ros_ws/.catkin_workspace new file mode 100644 index 0000000..52fd97e --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/.catkin_workspace @@ -0,0 +1 @@ +# This file currently only serves to mark the location of a catkin workspace for tool integration diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/.gitignore b/Code/RK3588/PIBot_ROS/ros_ws/src/.gitignore new file mode 100644 index 0000000..f02bc4e --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/.gitignore @@ -0,0 +1 @@ +ros_package \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/.gitignore b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/.gitignore new file mode 100644 index 0000000..db8eded --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/.gitignore @@ -0,0 +1,5 @@ +*.pyc +.project +.cproject +.pydevproject +.vscode diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/LICENSE b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/LICENSE new file mode 100644 index 0000000..a775076 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/LICENSE @@ -0,0 +1,25 @@ +Copyright (c) 2008-2011 Vanadium Labs LLC. +All right reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Vanadium Labs LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, +OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE +OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/README.md b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/README.md new file mode 100644 index 0000000..b818f1a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/README.md @@ -0,0 +1,3 @@ +## Arbotix Drivers + +This repository contains the Arbotix ROS drivers, catkinized, and ready for ROS Noetic. diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix/CHANGELOG.rst b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix/CHANGELOG.rst new file mode 100644 index 0000000..7b67397 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix/CHANGELOG.rst @@ -0,0 +1,30 @@ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Changelog for package arbotix +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +0.11.0 (2020-12-29) +------------------- + +0.10.0 (2014-07-14) +------------------- + +0.9.2 (2014-02-12) +------------------ + +0.9.1 (2014-01-28) +------------------ + +0.9.0 (2013-08-22) +------------------ + +0.8.2 (2013-03-28) +------------------ +* update metapackage + +0.8.1 (2013-03-09) +------------------ + +0.8.0 (2013-02-21) +------------------ +* fix package.xml +* add metapackage for arbotix diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix/CMakeLists.txt new file mode 100644 index 0000000..802c7ac --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix/CMakeLists.txt @@ -0,0 +1,4 @@ +cmake_minimum_required(VERSION 3.0.2) +project(arbotix) +find_package(catkin REQUIRED) +catkin_metapackage() diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix/package.xml new file mode 100644 index 0000000..b8bab7f --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix/package.xml @@ -0,0 +1,23 @@ + + arbotix + 0.11.0 + ArbotiX Drivers + Michael Ferguson + Michael Ferguson + BSD + http://ros.org/wiki/arbotix + + catkin + + arbotix_msgs + arbotix_python + arbotix_sensors + arbotix_controllers + arbotix_firmware + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/CHANGELOG.rst b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/CHANGELOG.rst new file mode 100644 index 0000000..fd7b8bd --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/CHANGELOG.rst @@ -0,0 +1,42 @@ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Changelog for package arbotix_controllers +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +0.11.0 (2020-12-29) +------------------- +* Update all python shebangs to python3 + rosdep dependency (`#48 `_) + Co-authored-by: Murat Calis +* Merge pull request `#22 `_ from corot/indigo-devel + roslib.load_manifest should not be used on catkin packages +* roslib.load_manifest should not be used on catkin packages according to http://wiki.ros.org/PyStyleGuide +* Contributors: Jorge Santos, Michael Ferguson, calismurat + +0.10.0 (2014-07-14) +------------------- +* Set queue_size=5 on all publishers +* Check if command exceeds opening limits +* Contributors: Jorge Santos + +0.9.2 (2014-02-12) +------------------ +* cleanup gripper controllers, mark deprecations +* Contributors: Michael Ferguson + +0.9.1 (2014-01-28) +------------------ + +0.9.0 (2013-08-22) +------------------ +* fix joint_states subscriber +* fix name of singlesided model +* add new gripper action controller + +0.8.2 (2013-03-28) +------------------ + +0.8.1 (2013-03-09) +------------------ + +0.8.0 (2013-02-21) +------------------ +* import drivers and catkinize diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/CMakeLists.txt new file mode 100644 index 0000000..f431303 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/CMakeLists.txt @@ -0,0 +1,14 @@ +cmake_minimum_required(VERSION 3.0.2) +project(arbotix_controllers) + +find_package(catkin REQUIRED) +catkin_package() + +install( + PROGRAMS + bin/gripper_controller + bin/one_side_gripper_controller.py + bin/parallel_gripper_controller.py + bin/parallel_single_servo_controller.py + DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +) diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/bin/gripper_controller b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/bin/gripper_controller new file mode 100644 index 0000000..2081df9 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/bin/gripper_controller @@ -0,0 +1,211 @@ +#!/usr/bin/env python + +""" + gripper_controller - action based controller for grippers. + Copyright (c) 2011-2014 Vanadium Labs LLC. All right reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Vanadium Labs LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +""" + +import rospy, actionlib +import thread + +from control_msgs.msg import GripperCommandAction +from sensor_msgs.msg import JointState +from std_msgs.msg import Float64 +from math import asin + +class TrapezoidGripperModel: + """ A simple gripper with two opposing servos to open/close non-parallel jaws. """ + + def __init__(self): + # trapezoid model: base width connecting each gripper's rotation point + # + length of gripper fingers to computation point + # = compute angles based on a desired width at comp. point + self.pad_width = rospy.get_param('~pad_width', 0.01) + self.finger_length = rospy.get_param('~finger_length', 0.02) + self.min_opening = rospy.get_param('~min_opening', 0.0) + self.max_opening = rospy.get_param('~max_opening', 0.09) + self.center_l = rospy.get_param('~center_left', 0.0) + self.center_r = rospy.get_param('~center_right', 0.0) + self.invert_l = rospy.get_param('~invert_left', False) + self.invert_r = rospy.get_param('~invert_right', False) + + self.left_joint = rospy.get_param('~joint_left', 'l_gripper_joint') + self.right_joint = rospy.get_param('~joint_right', 'r_gripper_joint') + + # publishers + self.l_pub = rospy.Publisher(self.left_joint+'/command', Float64, queue_size=5) + self.r_pub = rospy.Publisher(self.right_joint+'/command', Float64, queue_size=5) + + def setCommand(self, command): + # check limits + if command.position > self.max_opening or command.position < self.min_opening: + rospy.logerr("Command (%f) exceeds opening limits (%f, %f)", + command.position, self.max_opening, self.min_opening) + return False + # compute angles + angle = asin((command.position - self.pad_width)/(2*self.finger_length)) + if self.invert_l: + l = -angle + self.center_l + else: + l = angle + self.center_l + if self.invert_r: + r = angle + self.center_r + else: + r = -angle + self.center_r + # publish msgs + lmsg = Float64(l) + rmsg = Float64(r) + self.l_pub.publish(lmsg) + self.r_pub.publish(rmsg) + return True + + def getPosition(self, js): + left = right = 0 + for i in range(len(js.name)): + if js.name[i] == self.left_joint: + left = js.position[i] + elif js.name[i] == self.right_joint: + right = js.position[i] + # TODO + + return 0.0 + + def getEffort(self, joint_states): + return 1.0 + +class ParallelGripperModel: + """ One servo to open/close parallel jaws, typically via linkage. """ + + def __init__(self): + self.center = rospy.get_param('~center', 0.0) + self.scale = rospy.get_param('~scale', 1.0) + self.joint = rospy.get_param('~joint', 'gripper_joint') + + # publishers + self.pub = rospy.Publisher(self.joint+'/command', Float64, queue_size=5) + + def setCommand(self, command): + self.pub.publish((command.position * self.scale) + self.center) + + def getPosition(self, joint_states): + return 0.0 + + def getEffort(self, joint_states): + return 1.0 + + +class OneSideGripperModel: + """ Simplest of grippers, one servo opens or closes to achieve a particular size opening. """ + + def __init__(self): + self.pad_width = rospy.get_param('~pad_width', 0.01) + self.finger_length = rospy.get_param('~finger_length', 0.02) + self.min_opening = rospy.get_param('~min_opening', 0.0) + self.max_opening = rospy.get_param('~max_opening', 0.09) + self.center = rospy.get_param('~center', 0.0) + self.invert = rospy.get_param('~invert', False) + self.joint = rospy.get_param('~joint', 'gripper_joint') + + # publishers + self.pub = rospy.Publisher(self.joint+'/command', Float64, queue_size=5) + + def setCommand(self, command): + """ Take an input command of width to open gripper. """ + # check limits + if command.position > self.max_opening or command.position < self.min_opening: + rospy.logerr("Command (%f) exceeds opening limits (%f, %f)", + command.position, self.max_opening, self.min_opening) + return False + # compute angle + angle = asin((command.position - self.pad_width)/(2*self.finger_length)) + # publish message + if self.invert: + self.pub.publish(-angle + self.center) + else: + self.pub.publish(angle + self.center) + + def getPosition(self, joint_states): + # TODO + return 0.0 + + def getEffort(self, joint_states): + # TODO + return 1.0 + + +class GripperActionController: + """ The actual action callbacks. """ + def __init__(self): + rospy.init_node('gripper_controller') + + # setup model + try: + model = rospy.get_param('~model') + except: + rospy.logerr('no model specified, exiting') + exit() + if model == 'dualservo': + self.model = TrapezoidGripperModel() + elif model == 'parallel': + self.model = ParallelGripperModel() + elif model == 'singlesided': + self.model = OneSideGripperModel() + else: + rospy.logerr('unknown model specified, exiting') + exit() + + # subscribe to joint_states + rospy.Subscriber('joint_states', JointState, self.stateCb) + + # subscribe to command and then spin + self.server = actionlib.SimpleActionServer('~gripper_action', GripperCommandAction, execute_cb=self.actionCb, auto_start=False) + self.server.start() + rospy.spin() + + def actionCb(self, goal): + """ Take an input command of width to open gripper. """ + rospy.loginfo('Gripper controller action goal recieved:%f' % goal.command.position) + # send command to gripper + self.model.setCommand(goal.command) + # publish feedback + while True: + if self.server.is_preempt_requested(): + self.server.set_preemtped() + rospy.loginfo('Gripper Controller: Preempted.') + return + # TODO: get joint position, break when we have reached goal + break + self.server.set_succeeded() + rospy.loginfo('Gripper Controller: Succeeded.') + + def stateCb(self, msg): + self.state = msg + +if __name__=='__main__': + try: + GripperActionController() + except rospy.ROSInterruptException: + rospy.loginfo('Hasta la Vista...') + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/bin/gripper_controller.py b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/bin/gripper_controller.py new file mode 100644 index 0000000..725c612 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/bin/gripper_controller.py @@ -0,0 +1,212 @@ +#!/usr/bin/env python + +""" + gripper_controller - action based controller for grippers. + Copyright (c) 2011-2014 Vanadium Labs LLC. All right reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Vanadium Labs LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +""" + +import rospy, actionlib +import thread + +from control_msgs.msg import GripperCommandAction +from sensor_msgs.msg import JointState +from std_msgs.msg import Float64 +from math import asin + +class TrapezoidGripperModel: + """ A simple gripper with two opposing servos to open/close non-parallel jaws. """ + + def __init__(self): + # trapezoid model: base width connecting each gripper's rotation point + # + length of gripper fingers to computation point + # = compute angles based on a desired width at comp. point + self.pad_width = rospy.get_param('~pad_width', 0.01) + self.finger_length = rospy.get_param('~finger_length', 0.02) + self.min_opening = rospy.get_param('~min_opening', 0.0) + self.max_opening = rospy.get_param('~max_opening', 0.09) + self.center_l = rospy.get_param('~center_left', 0.0) + self.center_r = rospy.get_param('~center_right', 0.0) + self.invert_l = rospy.get_param('~invert_left', False) + self.invert_r = rospy.get_param('~invert_right', False) + + self.left_joint = rospy.get_param('~joint_left', 'l_gripper_joint') + self.right_joint = rospy.get_param('~joint_right', 'r_gripper_joint') + + # publishers + self.l_pub = rospy.Publisher(self.left_joint+'/command', Float64, queue_size=5) + self.r_pub = rospy.Publisher(self.right_joint+'/command', Float64, queue_size=5) + + def setCommand(self, command): + # check limits + if command.position > self.max_opening or command.position < self.min_opening: + rospy.logerr("Command (%f) exceeds opening limits (%f, %f)", + command.position, self.max_opening, self.min_opening) + return False + # compute angles + angle = asin((command.position - self.pad_width)/(2*self.finger_length)) + if self.invert_l: + l = -angle + self.center_l + else: + l = angle + self.center_l + if self.invert_r: + r = angle + self.center_r + else: + r = -angle + self.center_r + # publish msgs + lmsg = Float64(l) + rmsg = Float64(r) + self.l_pub.publish(lmsg) + self.r_pub.publish(rmsg) + return True + + def getPosition(self, js): + left = right = 0 + for i in range(len(js.name)): + if js.name[i] == self.left_joint: + left = js.position[i] + elif js.name[i] == self.right_joint: + right = js.position[i] + # TODO + + return 0.0 + + def getEffort(self, joint_states): + return 1.0 + +class ParallelGripperModel: + """ One servo to open/close parallel jaws, typically via linkage. """ + + def __init__(self): + self.center = rospy.get_param('~center', 0.0) + self.scale = rospy.get_param('~scale', 1.0) + self.joint = rospy.get_param('~joint', 'gripper_joint') + + # publishers + self.pub = rospy.Publisher(self.joint+'/command', Float64, queue_size=5) + + def setCommand(self, command): + self.pub.publish((command.position * self.scale) + self.center) + + def getPosition(self, joint_states): + return 0.0 + + def getEffort(self, joint_states): + return 1.0 + + +class OneSideGripperModel: + """ Simplest of grippers, one servo opens or closes to achieve a particular size opening. """ + + def __init__(self): + self.pad_width = rospy.get_param('~pad_width', 0.01) + self.finger_length = rospy.get_param('~finger_length', 0.02) + self.min_opening = rospy.get_param('~min_opening', 0.0) + self.max_opening = rospy.get_param('~max_opening', 0.09) + self.center = rospy.get_param('~center', 0.0) + self.invert = rospy.get_param('~invert', False) + self.joint = rospy.get_param('~joint', 'gripper_joint') + + # publishers + self.pub = rospy.Publisher(self.joint+'/command', Float64, queue_size=5) + + def setCommand(self, command): + """ Take an input command of width to open gripper. """ + # check limits + if command.position > self.max_opening or command.position < self.min_opening: + rospy.logerr("Command (%f) exceeds opening limits (%f, %f)", + command.position, self.max_opening, self.min_opening) + return False + # compute angle + angle = asin((command.position - self.pad_width)/(2*self.finger_length)) + # publish message + if self.invert: + self.pub.publish(-angle + self.center) + else: + self.pub.publish(angle + self.center) + + def getPosition(self, joint_states): + # TODO + return 0.0 + + def getEffort(self, joint_states): + # TODO + return 1.0 + + +class GripperActionController: + """ The actual action callbacks. """ + def __init__(self): + rospy.init_node('gripper_controller') + + # setup model + try: + model = rospy.get_param('~model') + except: + rospy.logerr('no model specified, exiting') + exit() + if model == 'dualservo': + self.model = TrapezoidGripperModel() + elif model == 'parallel': + self.model = ParallelGripperModel() + elif model == 'singlesided': + self.model = OneSideGripperModel() + else: + rospy.logerr('unknown model specified, exiting') + exit() + + # subscribe to joint_states + rospy.Subscriber('joint_states', JointState, self.stateCb) + + # subscribe to command and then spin + self.server = actionlib.SimpleActionServer('~gripper_action', GripperCommandAction, execute_cb=self.actionCb, auto_start=False) + self.server.start() + rospy.spin() + + def actionCb(self, goal): + """ Take an input command of width to open gripper. """ + rospy.loginfo('Gripper controller action goal recieved:%f' % goal.command.position) + # send command to gripper + self.model.setCommand(goal.command) + # publish feedback + while True: + if self.server.is_preempt_requested(): + self.server.set_preemtped() + rospy.loginfo('Gripper Controller: Preempted.') + return + # TODO: get joint position, break when we have reached goal + break + self.server.set_succeeded() + rospy.loginfo('Gripper Controller: Succeeded.') + + def stateCb(self, msg): + self.state = msg + +if __name__=='__main__': + try: + rospy.logwarn("Please use gripper_controller (no .py)") + GripperActionController() + except rospy.ROSInterruptException: + rospy.loginfo('Hasta la Vista...') + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/bin/one_side_gripper_controller.py b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/bin/one_side_gripper_controller.py new file mode 100644 index 0000000..ccba46a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/bin/one_side_gripper_controller.py @@ -0,0 +1,74 @@ +#!/usr/bin/env python + +""" + one_side_gripper_controller.py - controls a gripper built with one servo + Copyright (c) 2011 Vanadium Labs LLC. All right reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Vanadium Labs LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +""" + +import rospy +import thread + +from std_msgs.msg import Float64 +from math import asin + +class OneSideGripperController: + """ A simple controller that operates a servos to + open/close to a particular size opening. """ + def __init__(self): + rospy.init_node("one_side_gripper_controller") + rospy.logwarn("one_side_gripper_controller.py is deprecated and will be removed in ROS Indigo, please use gripper_controller") + + self.pad_width = rospy.get_param("~pad_width", 0.01) + self.finger_length = rospy.get_param("~finger_length", 0.02) + self.center = rospy.get_param("~center", 0.0) + self.invert = rospy.get_param("~invert", False) + + # publishers + self.pub = rospy.Publisher("gripper_joint/command", Float64, queue_size=5) + + # subscribe to command and then spin + rospy.Subscriber("~command", Float64, self.commandCb) + rospy.spin() + + def commandCb(self, msg): + """ Take an input command of width to open gripper. """ + # check limits + #if msg.data > self.max_opening or msg.data < self.min_opening: + # rospy.logerr("Command exceeds limits.") + # return + # compute angle + angle = asin((msg.data - self.pad_width)/(2*self.finger_length)) + # publish message + if self.invert: + self.pub.publish(-angle + self.center) + else: + self.pub.publish(angle + self.center) + +if __name__=="__main__": + try: + OneSideGripperController() + except rospy.ROSInterruptException: + rospy.loginfo("Hasta la Vista...") + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/bin/parallel_gripper_action_controller.py b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/bin/parallel_gripper_action_controller.py new file mode 100644 index 0000000..8959016 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/bin/parallel_gripper_action_controller.py @@ -0,0 +1,99 @@ +#!/usr/bin/env python + +""" + parallel_gripper_controller.py - controls a gripper built of two servos + Copyright (c) 2011 Vanadium Labs LLC. All right reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Vanadium Labs LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS' AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +""" + +import rospy, actionlib +import thread + +from control_msgs.msg import GripperCommandAction +from std_msgs.msg import Float64 +from math import asin + +class ParallelGripperActionController: + """ A simple controller that operates two opposing servos to + open/close to a particular size opening. """ + def __init__(self): + rospy.init_node('gripper_controller') + rospy.logwarn("parallel_gripper_action_controller.py is deprecated and will be removed in ROS Indigo, please use gripper_controller") + + # trapezoid model: base width connecting each gripper's rotation point + # + length of gripper fingers to computation point + # = compute angles based on a desired width at comp. point + self.pad_width = rospy.get_param('~pad_width', 0.01) + self.finger_length = rospy.get_param('~finger_length', 0.02) + self.min_opening = rospy.get_param('~min', 0.0) + self.max_opening = rospy.get_param('~max', 2*self.finger_length) + + self.center_l = rospy.get_param('~center_left', 0.0) + self.center_r = rospy.get_param('~center_right', 0.0) + self.invert_l = rospy.get_param('~invert_left', False) + self.invert_r = rospy.get_param('~invert_right', False) + + # publishers + self.l_pub = rospy.Publisher('l_gripper_joint/command', Float64, queue_size=5) + self.r_pub = rospy.Publisher('r_gripper_joint/command', Float64, queue_size=5) + + # subscribe to command and then spin + self.server = actionlib.SimpleActionServer('~gripper_action', GripperCommandAction, execute_cb=self.actionCb, auto_start=False) + self.server.start() + rospy.spin() + + def actionCb(self, goal): + """ Take an input command of width to open gripper. """ + rospy.loginfo('Gripper controller action goal recieved:%f' % goal.command.position) + command = goal.command.position + # check limits + if command > self.max_opening: + command = self.max_opening + if command < self.min_opening: + command = self.min_opening + # compute angles + angle = asin((command - self.pad_width)/(2*self.finger_length)) + if self.invert_l: + l = -angle + self.center_l + else: + l = angle + self.center_l + if self.invert_r: + r = angle + self.center_r + else: + r = -angle + self.center_r + # publish msgs + lmsg = Float64(l) + rmsg = Float64(r) + self.l_pub.publish(lmsg) + self.r_pub.publish(rmsg) + rospy.sleep(5.0) + self.server.set_succeeded() + rospy.loginfo('Gripper Controller: Done.') + +if __name__=='__main__': + try: + ParallelGripperActionController() + except rospy.ROSInterruptException: + rospy.loginfo('Hasta la Vista...') + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/bin/parallel_gripper_controller.py b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/bin/parallel_gripper_controller.py new file mode 100644 index 0000000..9d0632a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/bin/parallel_gripper_controller.py @@ -0,0 +1,91 @@ +#!/usr/bin/env python + +""" + parallel_gripper_controller.py - controls a gripper built of two servos + Copyright (c) 2011 Vanadium Labs LLC. All right reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Vanadium Labs LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +""" + +import rospy +import thread + +from std_msgs.msg import Float64 +from math import asin + +class ParallelGripperController: + """ A simple controller that operates two opposing servos to + open/close to a particular size opening. """ + def __init__(self): + rospy.init_node("parallel_gripper_controller") + rospy.logwarn("parallel_gripper_controller.py is deprecated and will be removed in ROS Indigo, please use gripper_controller") + + # trapezoid model: base width connecting each gripper's rotation point + # + length of gripper fingers to computation point + # = compute angles based on a desired width at comp. point + self.pad_width = rospy.get_param("~pad_width", 0.01) + self.finger_length = rospy.get_param("~finger_length", 0.02) + self.min_opening = rospy.get_param("~min", 0.0) + self.max_opening = rospy.get_param("~max", 2*self.finger_length) + + self.center_l = rospy.get_param("~center_left", 0.0) + self.center_r = rospy.get_param("~center_right", 0.0) + self.invert_l = rospy.get_param("~invert_left", False) + self.invert_r = rospy.get_param("~invert_right", False) + + # publishers + self.l_pub = rospy.Publisher("l_gripper_joint/command", Float64, queue_size=5) + self.r_pub = rospy.Publisher("r_gripper_joint/command", Float64, queue_size=5) + + # subscribe to command and then spin + rospy.Subscriber("~command", Float64, self.commandCb) + rospy.spin() + + def commandCb(self, msg): + """ Take an input command of width to open gripper. """ + # check limits + if msg.data > self.max_opening or msg.data < self.min_opening: + rospy.logerr("Command exceeds limits.") + return + # compute angles + angle = asin((msg.data - self.pad_width)/(2*self.finger_length)) + if self.invert_l: + l = -angle + self.center_l + else: + l = angle + self.center_l + if self.invert_r: + r = angle + self.center_r + else: + r = -angle + self.center_r + # publish msgs + lmsg = Float64(l) + rmsg = Float64(r) + self.l_pub.publish(lmsg) + self.r_pub.publish(rmsg) + +if __name__=="__main__": + try: + ParallelGripperController() + except rospy.ROSInterruptException: + rospy.loginfo("Hasta la Vista...") + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/bin/parallel_single_servo_controller.py b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/bin/parallel_single_servo_controller.py new file mode 100644 index 0000000..12528cb --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/bin/parallel_single_servo_controller.py @@ -0,0 +1,133 @@ +#!/usr/bin/env python + +""" + parallel_single_servo_controller.py - controls a single-servo parallel-jaw gripper + Copyright (c) 2011 Vanadium Labs LLC. All right reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Vanadium Labs LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +""" + +import rospy, tf +import thread + +from std_msgs.msg import Float64 +from sensor_msgs.msg import JointState +from math import asin + +class ParallelGripperController: + """ A simple controller that operates a single servo parallel jaw gripper. """ + def __init__(self): + rospy.init_node("gripper_controller") + + # TODO: load calibration data. Form: opening->servo angle + self.calib = { 0.0000 : 1.8097, 0.0159: 1.2167, 0.0254 : 0.8997, 0.0381 : 0.4499, 0.042 : 0.1943 } + #self.calib = { 0.0000 : 866, 0.0159: 750, 0.0254 : 688, 0.0381 : 600, 0.042 : 550 } + + # parameters + self.min = rospy.get_param("~min", 0.0) + self.max = rospy.get_param("~max", 0.042) + self.center = rospy.get_param("~center", 512) + self.invert = rospy.get_param("~invert", False) + + # publishers + self.commandPub = rospy.Publisher("gripper_joint/command", Float64, queue_size=5) + self.br = tf.TransformBroadcaster() + + # current width of gripper + self.width = 0.0 + + # subscribe to command and then spin + rospy.Subscriber("~command", Float64, self.commandCb) + rospy.Subscriber("joint_states", JointState, self.stateCb) + + r = rospy.Rate(15) + while not rospy.is_shutdown(): + # output tf + self.br.sendTransform((0, -self.width/2.0, 0), + tf.transformations.quaternion_from_euler(0, 0, 0), + rospy.Time.now(), + "gripper_left_link", + "gripper_link") + self.br.sendTransform((0, self.width/2.0, 0), + tf.transformations.quaternion_from_euler(0, 0, 0), + rospy.Time.now(), + "gripper_right_link", + "gripper_link") + r.sleep() + + def getCommand(self, width): + """ Get servo command for an opening width. """ + keys = self.calib.keys(); keys.sort() + # find end points of segment + low = keys[0]; + high = keys[-1] + for w in keys[1:-1]: + if w > low and w < width: + low = w + if w < high and w > width: + high = w + # linear interpolation + scale = (width-low)/(high-low) + return ((self.calib[high]-self.calib[low])*scale) + self.calib[low] + + def getWidth(self, command): + """ Get opening width for a particular servo command. """ + reverse_calib = dict() + for k, v in self.calib.items(): + reverse_calib[v] = k + keys = reverse_calib.keys(); keys.sort() + # find end points of segment + low = keys[0] + high = keys[-1] + for c in keys[1:-1]: + if c > low and c < command: + low = c + if c < high and c > command: + high = c + # linear interpolation + scale = (command-low)/(high-low) + return ((reverse_calib[high]-reverse_calib[low])*scale) + reverse_calib[low] + + def commandCb(self, msg): + """ Take an input command of width to open gripper. """ + # check limits + if msg.data > self.max or msg.data < self.min: + rospy.logerr("Command exceeds limits.") + return + # compute angle + self.commandPub.publish( Float64( self.getCommand(msg.data) ) ) + + def stateCb(self, msg): + """ The callback that listens for joint_states. """ + try: + index = msg.name.index("gripper_joint") + except ValueError: + return + self.width = self.getWidth(msg.position[index]) + +if __name__=="__main__": + try: + ParallelGripperController() + except rospy.ROSInterruptException: + rospy.loginfo("Hasta la Vista...") + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/package.xml new file mode 100644 index 0000000..c24480e --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_controllers/package.xml @@ -0,0 +1,17 @@ + + arbotix_controllers + 0.11.0 + + Extends the arbotix_python package with a number of more sophisticated ROS wrappers for common devices. + + Michael Ferguson + Michael Ferguson + BSD + http://ros.org/wiki/arbotix_controllers + + catkin + + arbotix_python + trajectory_msgs + tf + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_firmware/CHANGELOG.rst b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_firmware/CHANGELOG.rst new file mode 100644 index 0000000..92eb8bb --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_firmware/CHANGELOG.rst @@ -0,0 +1,28 @@ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Changelog for package arbotix_firmware +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +0.11.0 (2020-12-29) +------------------- + +0.10.0 (2014-07-14) +------------------- + +0.9.2 (2014-02-12) +------------------ + +0.9.1 (2014-01-28) +------------------ + +0.9.0 (2013-08-22) +------------------ + +0.8.2 (2013-03-28) +------------------ + +0.8.1 (2013-03-09) +------------------ + +0.8.0 (2013-02-21) +------------------ +* import drivers and catkinize diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_firmware/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_firmware/CMakeLists.txt new file mode 100644 index 0000000..bfadd94 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_firmware/CMakeLists.txt @@ -0,0 +1,5 @@ +cmake_minimum_required(VERSION 3.0.2) +project(arbotix_firmware) + +find_package(catkin REQUIRED) +catkin_package() diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_firmware/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_firmware/package.xml new file mode 100644 index 0000000..de74e08 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_firmware/package.xml @@ -0,0 +1,13 @@ + + arbotix_firmware + 0.11.0 + + Firmware source code for ArbotiX ROS bindings. + + Michael Ferguson + Michael Ferguson + BSD + http://ros.org/wiki/arbotix_firmware + + catkin + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_firmware/src/diff_controller.h b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_firmware/src/diff_controller.h new file mode 100644 index 0000000..4b58bdf --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_firmware/src/diff_controller.h @@ -0,0 +1,148 @@ +/* + ArbotiX Firmware for ROS driver + Copyright (c) 2009-2011 Vanadium Labs LLC. All right reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Vanadium Labs LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include +#include + +/* Register Storage */ +int left_pwm; +int right_pwm; +int left_speed; +int right_speed; + +/* PID Parameters */ +int Kp; +int Kd; +int Ki; +int Ko; // output scale +int maxAccel; // maximum acceleration per frame (ticks) + +/* PID modes */ +unsigned int PIDmode; +#define PID_NONE 0 +#define PID_SPEED 1 + +#define FRAME_RATE 33 // frame rate in millis (30Hz) +#define FRAMES 30 +unsigned long f_time; // last frame + +unsigned char moving = 0; // base in motion +unsigned char paused = 0; // base was in motion, can resume +#define MAXOUTPUT 255 // motor PWM + +/* Setpoint Info For a Motor */ +typedef struct{ + int Velocity; // desired actual speed (count/frame) + long Encoder; // actual reading + long PrevEnc; // last reading + int PrevErr; + int Ierror; + int output; // last motor setting +} SetPointInfo; + +SetPointInfo left, right; + +/* Initialize PID parameters to something known */ +void setupPID(){ + // Default values for the PR-MINI + Kp = 25; + Kd = 30; + Ki = 0; + Ko = 100; + maxAccel = 50; + f_time = 0; +} + +/* PID control of motor speed */ +void DoPid(SetPointInfo * p){ + long Perror; + long output; + + Perror = p->Velocity - (p->Encoder-p->PrevEnc); + + // Derivative error is the delta Perror + output = (Kp*Perror + Kd*(Perror - p->PrevErr) + Ki*p->Ierror)/Ko; + p->PrevErr = Perror; + p->PrevEnc = p->Encoder; + + output += p->output; + // Accumulate Integral error *or* Limit output. + // Stop accumulating when output saturates + if (output >= MAXOUTPUT) + output = MAXOUTPUT; + else if (output <= -MAXOUTPUT) + output = -MAXOUTPUT; + else + p->Ierror += Perror; + + p->output = output; +} + +/* Clear accumulators */ +void ClearPID(){ + PIDmode = 0; moving = 0; + left.PrevErr = 0; + left.Ierror = 0; + left.output = 0; + right.PrevErr = 0; + right.Ierror = 0; + right.output = 0; +} + +/* This is called by the main loop, does a X HZ PID loop. */ +void updatePID(){ + if((moving > 0) && (PIDmode > 0)){ // otherwise, just return + unsigned long j = millis(); + if(j > f_time){ + // update encoders + left.Encoder = Encoders.left; + right.Encoder = Encoders.right; + // do PID update on PWM + DoPid(&left); + DoPid(&right); + // set updated motor outputs + if(PIDmode > 0){ + drive.set(left.output, right.output); + } + // update timing + f_time = j + FRAME_RATE; + } + } +} + +void clearAll(){ + PIDmode = 0; + left.Encoder = 0; + right.Encoder = 0; + left.PrevEnc = 0; + right.PrevEnc = 0; + left.output = 0; + right.output = 0; + Encoders.Reset(); +} + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_firmware/src/ros.h b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_firmware/src/ros.h new file mode 100644 index 0000000..e52f5d2 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_firmware/src/ros.h @@ -0,0 +1,76 @@ +/* + Common Definitions for ROS driver ArbotiX Firmware + Copyright (c) 2008-2012 Vanadium Labs LLC. All right reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Vanadium Labs LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/* ArbotiX (id:253) Instruction Definitions */ +#define ARB_SIZE_POSE 7 // pose size: a single param for size of pose +#define ARB_LOAD_POSE 8 // load pose: index, then pose positions (# of params = 2*pose_size) +#define ARB_LOAD_SEQ 9 // seq size: a single param for the size of the seq +#define ARB_PLAY_SEQ 10 // load seq: index/times (# of params = 3*seq_size) +#define ARB_LOOP_SEQ 11 // play seq: no params +//#define ARB_TEST 25 // hardware test: no params +#define ARB_CONTROL_SETUP 26 // write ids: id of controller, params (usually ids of servos, # of params = pose_size + 1) +#define ARB_CONTROL_WRITE 27 // write positions: positions in order of servos (# of params = 2*pose_size) +#define ARB_CONTROL_STAT 28 // retrieve status: id of controller +#define ARB_SYNC_READ 0x84 + +/* ArbotiX (id:253) Register Table Definitions */ +#define REG_MODEL_NUMBER_L 0 +#define REG_MODEL_NUMBER_H 1 +#define REG_VERSION 2 +#define REG_ID 3 +#define REG_BAUD_RATE 4 + +#define REG_DIGITAL_IN0 5 // First block of digital pins to read +#define REG_DIGITAL_IN1 6 +#define REG_DIGITAL_IN2 7 +#define REG_DIGITAL_IN3 8 + +#define REG_RESCAN 15 +#define REG_RETURN_LEVEL 16 +#define REG_ALARM_LED 17 +#define REG_ANA_BASE 18 // First Analog Port +#define REG_SERVO_BASE 26 // Up to 10 servos, each uses 2 bytes (L, then H), pulse width (0, 1000-2000ms) +#define REG_MOVING 46 + +#define REG_DIGITAL_OUT0 47 // First digital pin to write + // base + index, bit 1 = value (0,1), bit 0 = direction (0,1) + +#define REG_RESERVED 79 // 79 -- 99 are reserved for future use +#define REG_USER 100 // + +/* Packet Decoding */ +int mode = 0; // where we are in the frame + +unsigned char id = 0; // id of this frame +unsigned char length = 0; // length of this frame +unsigned char ins = 0; // instruction of this frame + +unsigned char params[143]; // parameters (match RX-64 buffer size) +unsigned char index = 0; // index in param buffer + +int checksum; // checksum diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_firmware/src/ros.ino b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_firmware/src/ros.ino new file mode 100644 index 0000000..95d4593 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_firmware/src/ros.ino @@ -0,0 +1,548 @@ +/* + ArbotiX Firmware for ROS driver + Copyright (c) 2008-2012 Vanadium Labs LLC. All right reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Vanadium Labs LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/* Build Configuration */ +#define USE_BASE // Enable support for a mobile base +#define USE_HW_SERVOS // Enable only 2/8 servos, but using hardware control + +#define CONTROLLER_COUNT 5 +/* Hardware Constructs */ +#include +#include +BioloidController controllers[CONTROLLER_COUNT]; + +#include "ros.h" + +#ifdef USE_HW_SERVOS + #include + HServo servos[2]; + int servo_vals[2]; // in millis +#else + #include + Servo servos[10]; + int servo_vals[10]; // in millis +#endif + +#ifdef USE_BASE + #include + Motors2 drive = Motors2(); + #include + #include "diff_controller.h" +#endif + +/* Register Storage */ +unsigned char baud = 7; // ? +unsigned char ret_level = 1; // ? +unsigned char alarm_led = 0; // ? + +/* Pose & Sequence Structures */ +typedef struct{ + unsigned char pose; // index of pose to transition to + int time; // time for transition +} sp_trans_t; +int poses[30][AX12_MAX_SERVOS]; // poses [index][servo_id-1] +sp_trans_t sequence[50]; // sequence +int seqPos; // step in current sequence + +#include "user_hooks.h" + +/* + * Setup Functions + */ +void scan(){ +#if defined(AX_RX_SWITCHED) + // do a search for devices on the RX bus, default to AX if not found + int i; + for(i=0;i 0){ + if(addr < REG_BAUD_RATE){ + return ERR_INSTRUCTION; + }else if(addr == REG_BAUD_RATE){ + UBRR1L = params[k]; + }else if(addr < REG_RESCAN){ + return ERR_INSTRUCTION; // can't write digital inputs + }else if(addr == REG_RESCAN){ + scan(); + }else if(addr == REG_RETURN_LEVEL){ + ret_level = params[k]; + }else if(addr == REG_ALARM_LED){ + // TODO: + }else if(addr < REG_SERVO_BASE){ + return ERR_INSTRUCTION; // error - analog are read only + }else if(addr < REG_MOVING){ + // write servo + int s = addr - REG_SERVO_BASE; + #ifdef USE_HW_SERVO + if( s >= 4 ){ + #else + if( s >= 20){ + #endif + return ERR_INSTRUCTION; + }else{ + if( s%2 == 0 ){ // low byte + s = s/2; + servo_vals[s] = params[k]; + }else{ // high byte + s = s/2; + servo_vals[s] += (params[k]<<8); + if(servo_vals[s] > 500 && servo_vals[s] < 2500){ + servos[s].writeMicroseconds(servo_vals[s]); + if(!servos[s].attached()) + servos[s].attach(s); + }else if(servo_vals[s] == 0){ + servos[s].detach(); + } + } + } + }else if(addr == REG_MOVING){ + return ERR_INSTRUCTION; + }else if(addr < REG_RESERVED){ + // write digital pin + int pin = addr - REG_DIGITAL_OUT0; + #ifdef SERVO_STIK + if(pin < 8) + pin = pin+24; + else + pin = pin+5; // servo stick 8 = D13... + #endif + if(params[k] & 0x02) // high + digitalWrite(pin, HIGH); + else + digitalWrite(pin, LOW); + if(params[k] & 0x01) // output + pinMode(pin, OUTPUT); + else + pinMode(pin, INPUT); + }else{ + int ret = userWrite(addr, params[k]); + if(ret > ERR_NONE) return ret; + } + addr++;k++;bytes--; + } + return ERR_NONE; +} + + +/* + * Handle a read from ArbotiX registers. + */ +int handleRead(){ + int checksum = 0; + int addr = params[0]; + int bytes = params[1]; + + unsigned char v; + while(bytes > 0){ + if(addr == REG_MODEL_NUMBER_L){ + v = 44; + }else if(addr == REG_MODEL_NUMBER_H){ + v = 1; // 300 + }else if(addr == REG_VERSION){ + v = 0; + }else if(addr == REG_ID){ + v = 253; + }else if(addr == REG_BAUD_RATE){ + v = 34; // 56700 + }else if(addr == REG_DIGITAL_IN0){ + // digital 0-7 + #ifdef SERVO_STIK + v = PINA; + #else + v = PINB; + #endif + }else if(addr == REG_DIGITAL_IN1){ + // digital 8-15 + #ifdef SERVO_STIK + v = (PINB>>1); + #else + v = PIND; + #endif + }else if(addr == REG_DIGITAL_IN2){ + // digital 16-23 + v = PINC; + }else if(addr == REG_DIGITAL_IN3){ + // digital 24-31 + v = PINA; + }else if(addr == REG_RETURN_LEVEL){ + v = ret_level; + }else if(addr == REG_ALARM_LED){ + // TODO + }else if(addr < REG_SERVO_BASE){ + // send analog reading + int x = analogRead(addr-REG_ANA_BASE)>>2; + x += analogRead(addr-REG_ANA_BASE)>>2; + x += analogRead(addr-REG_ANA_BASE)>>2; + x += analogRead(addr-REG_ANA_BASE)>>2; + v = x/4; + }else if(addr < REG_MOVING){ + // send servo position + v = 0; + }else{ + v = userRead(addr); + } + checksum += v; + Serial.write(v); + addr++;bytes--; + } + + return checksum; +} + +int doPlaySeq(){ + seqPos = 0; int i; + while(sequence[seqPos].pose != 0xff){ + int p = sequence[seqPos].pose; + // are we HALT? + if(Serial.read() == 'H') return 1; + // load pose + for(i=0; i 0){ + // We need to 0xFF at start of packet + if(mode == 0){ // start of new packet + if(Serial.read() == 0xff){ + mode = 2; + digitalWrite(0,HIGH-digitalRead(0)); + } + //}else if(mode == 1){ // another start byte + // if(Serial.read() == 0xff) + // mode = 2; + // else + // mode = 0; + }else if(mode == 2){ // next byte is index of servo + id = Serial.read(); + if(id != 0xff) + mode = 3; + }else if(mode == 3){ // next byte is length + length = Serial.read(); + checksum = id + length; + mode = 4; + }else if(mode == 4){ // next byte is instruction + ins = Serial.read(); + checksum += ins; + index = 0; + mode = 5; + }else if(mode == 5){ // read data in + params[index] = Serial.read(); + checksum += (int) params[index]; + index++; + if(index + 1 == length){ // we've read params & checksum + mode = 0; + if((checksum%256) != 255){ + // return an error packet: FF FF id Len Err=bad checksum, params=None check + statusPacket(id, ERR_CHECKSUM); + }else if(id == 253){ // ID = 253, ArbotiX instruction + switch(ins){ + case AX_WRITE_DATA: + // send return packet + statusPacket(id,handleWrite()); + break; + + case AX_READ_DATA: + checksum = id + params[1] + 2; + Serial.write(0xff); + Serial.write(0xff); + Serial.write(id); + Serial.write((unsigned char)2+params[1]); + Serial.write((unsigned char)0); + // send actual data + checksum += handleRead(); + Serial.write(255-((checksum)%256)); + break; + + case ARB_SIZE_POSE: // Pose Size = 7, followed by single param: size of pose + statusPacket(id,0); + if(controllers[0].poseSize == 0) + controllers[0].setup(18); + controllers[0].poseSize = params[0]; + controllers[0].readPose(); + break; + + case ARB_LOAD_POSE: // Load Pose = 8, followed by index, then pose positions (# of param = 2*pose_size) + statusPacket(id,0); + for(i=0; i 0); + break; + + // ARB_TEST is deprecated and removed + + case ARB_CONTROL_SETUP: // Setup a controller + statusPacket(id,0); + if(params[0] < CONTROLLER_COUNT){ + controllers[params[0]].setup(length-3); + for(int i=0; i>0)%256; + Serial.write((unsigned char)v); + checksum += v; + v = ((unsigned long)Encoders.left>>8)%256; + Serial.write((unsigned char)v); + checksum += v; + v = ((unsigned long)Encoders.left>>16)%256; + Serial.write((unsigned char)v); + checksum += v; + v = ((unsigned long)Encoders.left>>24)%256; + Serial.write((unsigned char)v); + checksum += v; + v = ((unsigned long)Encoders.right>>0)%256; + Serial.write((unsigned char)v); + checksum += v; + v = ((unsigned long)Encoders.right>>8)%256; + Serial.write((unsigned char)v); + checksum += v; + v = ((unsigned long)Encoders.right>>16)%256; + Serial.write((unsigned char)v); + checksum += v; + v = ((unsigned long)Encoders.right>>24)%256; + Serial.write((unsigned char)v); + checksum += v; + Serial.write((unsigned char)255-((checksum)%256)); +#endif + } + break; + } + }else if(id == 0xFE){ + // sync read or write + if(ins == ARB_SYNC_READ){ + int start = params[0]; // address to read in control table + int bytes = params[1]; // # of bytes to read from each servo + int k = 2; + checksum = id + (bytes*(length-4)) + 2; + Serial.write((unsigned char)0xff); + Serial.write((unsigned char)0xff); + Serial.write((unsigned char)id); + Serial.write((unsigned char)2+(bytes*(length-4))); + Serial.write((unsigned char)0); // error code + // send actual data + for(k=2; k= 0){ + for(i=0;i 0){ + for(i=0;i`_ from corot/indigo-devel + Implement issue https://github.com/vanadiumlabs/arbotix_ros/issues/24: +* Implement issue https://github.com/vanadiumlabs/arbotix_ros/issues/24: + Allow 16 bit values on arbotix_msgs/Analog messages, but assume 8 bits + by default +* Contributors: Michael Ferguson, corot + +0.10.0 (2014-07-14) +------------------- + +0.9.2 (2014-02-12) +------------------ + +0.9.1 (2014-01-28) +------------------ +* Added set_speed service to servo controller + +0.9.0 (2013-08-22) +------------------ +* add new enable service + +0.8.2 (2013-03-28) +------------------ +* updates to cmakelists.txt and package.xml, fixes `#2 `_ + +0.8.1 (2013-03-09) +------------------ + +0.8.0 (2013-02-21) +------------------ +* import drivers and catkinize diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/CMakeLists.txt new file mode 100644 index 0000000..58f87bb --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/CMakeLists.txt @@ -0,0 +1,20 @@ +cmake_minimum_required(VERSION 3.0.2) +project(arbotix_msgs) + +find_package(catkin REQUIRED COMPONENTS message_generation std_msgs) + +add_message_files(FILES + Analog.msg + Digital.msg + ) + +add_service_files(FILES + Enable.srv + Relax.srv + SetupChannel.srv + SetSpeed.srv + ) + +generate_messages(DEPENDENCIES std_msgs) + +catkin_package(CATKIN_DEPENDS message_runtime std_msgs) diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/msg/Analog.msg b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/msg/Analog.msg new file mode 100644 index 0000000..f87b268 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/msg/Analog.msg @@ -0,0 +1,3 @@ +# Reading from a single analog IO pin. +Header header +uint16 value diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/msg/Digital.msg b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/msg/Digital.msg new file mode 100644 index 0000000..e893bd6 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/msg/Digital.msg @@ -0,0 +1,14 @@ +# Reading or command to a single digital IO pin. +Header header + +# value of pin +uint8 LOW=0 +uint8 HIGH=255 + +uint8 value + +# direction of pin +uint8 INPUT=0 +uint8 OUTPUT=255 + +uint8 direction diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/package.xml new file mode 100644 index 0000000..46d3c3a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/package.xml @@ -0,0 +1,21 @@ + + arbotix_msgs + 0.11.0 + + Messages and Services definitions for the ArbotiX. + + Michael Ferguson + Michael Ferguson + BSD + http://ros.org/wiki/arbotix_msgs + + catkin + + std_msgs + message_generation + + std_msgs + message_runtime + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/srv/Enable.srv b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/srv/Enable.srv new file mode 100644 index 0000000..40aed77 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/srv/Enable.srv @@ -0,0 +1,3 @@ +bool enable +--- +bool state diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/srv/Relax.srv b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/srv/Relax.srv new file mode 100644 index 0000000..5075d75 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/srv/Relax.srv @@ -0,0 +1,3 @@ + +--- + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/srv/SetSpeed.srv b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/srv/SetSpeed.srv new file mode 100644 index 0000000..77526c4 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/srv/SetSpeed.srv @@ -0,0 +1,2 @@ +float64 speed +--- diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/srv/SetupChannel.srv b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/srv/SetupChannel.srv new file mode 100644 index 0000000..dbaf471 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_msgs/srv/SetupChannel.srv @@ -0,0 +1,7 @@ +# message to setup an IO channel +string topic_name +uint8 pin +uint8 value +uint8 rate +--- + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/CHANGELOG.rst b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/CHANGELOG.rst new file mode 100644 index 0000000..3a60800 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/CHANGELOG.rst @@ -0,0 +1,65 @@ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Changelog for package arbotix_python +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +0.11.0 (2020-12-29) +------------------- +* Update all python shebangs to python3 + rosdep dependency (`#48 `_) + Co-authored-by: Murat Calis +* arbotix_python for ROS Noetic (`#46 `_) + Migrated arbotix_python to work with ROS Noetic + Co-authored-by: Murat Calis +* Merge pull request `#31 `_ from corot/serial_reconnect + Allow runtime connection/disconnection to/from ArbotiX board +* Merge pull request `#29 `_ from croesmann/indigo-devel + Allow cancelling the FollowJointTrajectoryAction during execution +* Merge pull request `#33 `_ from corot/issue_26 + Issue `#26 `_ implementation: enable/relax services on ServoController class +* Issue `#26 `_ implementation: enable/relax services to the ServoController + class, so you don't need to call service on each servo +* Close serial port only if not fake +* Allow runtime connection/disconnection to/from ArbotiX board +* Minor formatting fix +* Fixed formatting issues +* the follow joint trajectory action can now be canceled during execution +* Fix syntax +* Merge pull request `#25 `_ from corot/indigo-devel + Implement issue https://github.com/vanadiumlabs/arbotix_ros/issues/24: +* leng -> length +* Implement issue https://github.com/vanadiumlabs/arbotix_ros/issues/24: + Allow 16 bit values on arbotix_msgs/Analog messages, but assume 8 bits + by default +* Contributors: Christoph Rösmann, Jorge Santos Simón, Michael Ferguson, calismurat, corot + +0.10.0 (2014-07-14) +------------------- +* Set queue_size=5 on all publishers +* Contributors: Jorge Santos + +0.9.2 (2014-02-12) +------------------ + +0.9.1 (2014-01-28) +------------------ +* set velocity when in sim/fake mode +* Added set_speed service to servo controller +* Added 'set spd' option to arbotix_terminal + +0.9.0 (2013-08-22) +------------------ +* Add new enable service +* remove roslib manifest loading +* remove old dynamixels block, closes `#6 `_ +* Warn of extra joints in joint trajectory, but only fail when missing a joint we control + +0.8.2 (2013-03-28) +------------------ + +0.8.1 (2013-03-09) +------------------ +* fix depend for proper release + +0.8.0 (2013-02-21) +------------------ +* fix follow controller issues with zeros in header timestamps, cleanup logging a bit +* import drivers and catkinize diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/CMakeLists.txt new file mode 100644 index 0000000..5c3600c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/CMakeLists.txt @@ -0,0 +1,15 @@ +cmake_minimum_required(VERSION 3.0.2) +project(arbotix_python) + +find_package(catkin REQUIRED) +catkin_package() + +catkin_python_setup() + +install(DIRECTORY demos + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +) + +install(PROGRAMS bin/arbotix_driver + DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +) diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/bin/arbotix_driver b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/bin/arbotix_driver new file mode 100644 index 0000000..68b3e36 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/bin/arbotix_driver @@ -0,0 +1,202 @@ +#!/usr/bin/env python + +""" + ArbotiX Node: serial connection to an ArbotiX board w/ PyPose/NUKE/ROS + Copyright (c) 2008-2011 Michael E. Ferguson. All right reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Vanadium Labs LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +""" + +import rospy +import sys + +from arbotix_msgs.msg import * +from arbotix_msgs.srv import * + +from arbotix_python.arbotix import ArbotiX, ArbotiXException +from arbotix_python.diff_controller import DiffController +from arbotix_python.follow_controller import FollowController +from arbotix_python.servo_controller import * +from arbotix_python.linear_controller import * +from arbotix_python.publishers import * +from arbotix_python.io import * + +# name: [ControllerClass, pause] +controller_types = { "follow_controller" : FollowController, + "diff_controller" : DiffController, +# "omni_controller" : OmniController, + "linear_controller" : LinearControllerAbsolute, + "linear_controller_i" : LinearControllerIncremental } + +############################################################################### +# Main ROS interface +class ArbotixROS(ArbotiX): + + def __init__(self): + pause = False + + # load configurations + port = rospy.get_param("~port", "/dev/ttyUSB0") + baud = int(rospy.get_param("~baud", "115200")) + timeout = float(rospy.get_param("~timeout", "0.1")) + + self.rate = rospy.get_param("~rate", 100.0) + self.fake = rospy.get_param("~sim", False) + + self.use_sync_read = rospy.get_param("~sync_read",True) # use sync read? + self.use_sync_write = rospy.get_param("~sync_write",True) # use sync write? + + # setup publishers + self.diagnostics = DiagnosticsPublisher() + self.joint_state_publisher = JointStatePublisher() + + # start an arbotix driver; differ port opening to properly handle connection failures + if not self.fake: + ArbotiX.__init__(self, port, baud, timeout, open_port=True) + self.connectArbotiX() + else: + rospy.loginfo("ArbotiX being simulated.") + + # setup joints + self.joints = dict() + for name in rospy.get_param("~joints", dict()).keys(): + joint_type = rospy.get_param("~joints/"+name+"/type", "dynamixel") + if joint_type == "dynamixel": + self.joints[name] = DynamixelServo(self, name) + elif joint_type == "hobby_servo": + self.joints[name] = HobbyServo(self, name) + elif joint_type == "calibrated_linear": + self.joints[name] = LinearJoint(self, name) + + # setup controller + self.controllers = [ServoController(self, "servos"), ] + controllers = rospy.get_param("~controllers", dict()) + for name, params in controllers.items(): + try: + controller = controller_types[params["type"]](self, name) + self.controllers.append( controller ) + pause = pause or controller.pause + except Exception as e: + if type(e) == KeyError: + rospy.logerr("Unrecognized controller: " + params["type"]) + else: + rospy.logerr(str(type(e)) + str(e)) + + # wait for arbotix to start up (especially after reset) + if not self.fake: + if rospy.has_param("~digital_servos") or rospy.has_param("~digital_sensors") or rospy.has_param("~analog_sensors"): + pause = True + if pause: + while self.getDigital(1) == -1 and not rospy.is_shutdown(): + rospy.loginfo("ArbotiX: waiting for response...") + rospy.sleep(0.25) + rospy.loginfo("ArbotiX connected.") + + for controller in self.controllers: + controller.startup() + + # services for io + rospy.Service('~SetupAnalogIn',SetupChannel, self.analogInCb) + rospy.Service('~SetupDigitalIn',SetupChannel, self.digitalInCb) + rospy.Service('~SetupDigitalOut',SetupChannel, self.digitalOutCb) + # initialize digital/analog IO streams + self.io = dict() + if not self.fake: + for v,t in {"digital_servos":DigitalServo,"digital_sensors":DigitalSensor,"analog_sensors":AnalogSensor}.items(): + temp = rospy.get_param("~"+v,dict()) + for name in temp.keys(): + pin = rospy.get_param('~'+v+'/'+name+'/pin',1) + value = rospy.get_param('~'+v+'/'+name+'/value',0) + rate = rospy.get_param('~'+v+'/'+name+'/rate',10) + leng = rospy.get_param('~'+v+'/'+name+'/length',1) # just for analog sensors + if(v != "analog_sensors"): + self.io[name] = t(name, pin, value, rate, self) + else: + self.io[name] = t(name, pin, value, rate, leng, self) + + r = rospy.Rate(self.rate) + + # main loop -- do all the read/write here + while not rospy.is_shutdown(): + try: + # update controllers + for controller in self.controllers: + controller.update() + + # update io + for io in self.io.values(): + io.update() + + # publish feedback + self.joint_state_publisher.update(self.joints.values(), self.controllers) + self.diagnostics.update(self.joints.values(), self.controllers) + except ArbotiXException as e: + # We assume this is a serial connection error (as is the only use of + # ArbotiXException by now...); try to reconnect to solve the issue + rospy.logerr("ArbotiX error: %s", e) + self.connectArbotiX() + + r.sleep() + + # do shutdown + for controller in self.controllers: + controller.shutdown() + + # disconnect from the ArbotiX + if not self.fake: + self.closePort() + + def analogInCb(self, req): + # TODO: Add check, only 1 service per pin + if not self.fake: + self.io[req.topic_name] = AnalogSensor(req.topic_name, req.pin, req.value, req.rate, req.leng, self) + return SetupChannelResponse() + + def digitalInCb(self, req): + if not self.fake: + self.io[req.topic_name] = DigitalSensor(req.topic_name, req.pin, req.value, req.rate, self) + return SetupChannelResponse() + + def digitalOutCb(self, req): + if not self.fake: + self.io[req.topic_name] = DigitalServo(req.topic_name, req.pin, req.value, req.rate, self) + return SetupChannelResponse() + + def connectArbotiX(self): + iter = 0 + while True: + try: + self.openPort() + rospy.loginfo("Started ArbotiX connection on port " + self._ser.port + ".") + return + except ArbotiXException as e: + if iter%4 == 0: + rospy.logerr("Unable to connect to ArbotiX: %s.", e) + rospy.sleep(0.5) + iter += 1 + + +if __name__ == "__main__": + rospy.init_node('arbotix') + a = ArbotixROS() + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/bin/arbotix_gui b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/bin/arbotix_gui new file mode 100644 index 0000000..58228c4 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/bin/arbotix_gui @@ -0,0 +1,206 @@ +#!/usr/bin/env python + +""" + A simple Controller GUI to drive robots and pose heads. + Copyright (c) 2008-2011 Michael E. Ferguson. All right reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Vanadium Labs LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +""" + +import rospy +import wx + +from math import radians + +from geometry_msgs.msg import Twist +from sensor_msgs.msg import JointState +from std_msgs.msg import Float64 +from arbotix_msgs.srv import Relax +from arbotix_python.joints import * + +width = 325 + +class servoSlider(): + def __init__(self, parent, min_angle, max_angle, name, i): + self.name = name + if name.find("_joint") > 0: # remove _joint for display name + name = name[0:-6] + self.position = wx.Slider(parent, -1, 0, int(min_angle*100), int(max_angle*100), wx.DefaultPosition, (150, -1), wx.SL_HORIZONTAL) + self.enabled = wx.CheckBox(parent, i, name+":") + self.enabled.SetValue(False) + self.position.Disable() + + def setPosition(self, angle): + self.position.SetValue(int(angle*100)) + + def getPosition(self): + return self.position.GetValue()/100.0 + +class controllerGUI(wx.Frame): + TIMER_ID = 100 + + def __init__(self, parent, debug = False): + wx.Frame.__init__(self, parent, -1, "ArbotiX Controller GUI", style = wx.DEFAULT_FRAME_STYLE & ~ (wx.RESIZE_BORDER | wx.MAXIMIZE_BOX)) + sizer = wx.GridBagSizer(5,5) + + # Move Base + drive = wx.StaticBox(self, -1, 'Move Base') + drive.SetFont(wx.Font(10, wx.DEFAULT, wx.NORMAL, wx.BOLD)) + driveBox = wx.StaticBoxSizer(drive,orient=wx.VERTICAL) + self.movebase = wx.Panel(self,size=(width,width-20)) + self.movebase.SetBackgroundColour('WHITE') + self.movebase.Bind(wx.EVT_MOTION, self.onMove) + wx.StaticLine(self.movebase, -1, (width/2, 0), (1,width), style=wx.LI_VERTICAL) + wx.StaticLine(self.movebase, -1, (0, width/2), (width,1)) + driveBox.Add(self.movebase) + sizer.Add(driveBox,(0,0),wx.GBSpan(1,1),wx.EXPAND|wx.TOP|wx.BOTTOM|wx.LEFT,5) + self.forward = 0 + self.turn = 0 + self.X = 0 + self.Y = 0 + self.cmd_vel = rospy.Publisher('cmd_vel', Twist, queue_size=5) + + # Move Servos + servo = wx.StaticBox(self, -1, 'Move Servos') + servo.SetFont(wx.Font(10, wx.DEFAULT, wx.NORMAL, wx.BOLD)) + servoBox = wx.StaticBoxSizer(servo,orient=wx.VERTICAL) + servoSizer = wx.GridBagSizer(5,5) + + joint_defaults = getJointsFromURDF() + + i = 0 + dynamixels = rospy.get_param('/arbotix/dynamixels', dict()) + self.servos = list() + self.publishers = list() + self.relaxers = list() + + joints = rospy.get_param('/arbotix/joints', dict()) + # create sliders and publishers + for name in sorted(joints.keys()): + # pull angles + min_angle, max_angle = getJointLimits(name, joint_defaults) + # create publisher + self.publishers.append(rospy.Publisher(name+'/command', Float64, queue_size=5)) + if rospy.get_param('/arbotix/joints/'+name+'/type','dynamixel') == 'dynamixel': + self.relaxers.append(rospy.ServiceProxy(name+'/relax', Relax)) + else: + self.relaxers.append(None) + # create slider + s = servoSlider(self, min_angle, max_angle, name, i) + servoSizer.Add(s.enabled,(i,0), wx.GBSpan(1,1),wx.ALIGN_CENTER_VERTICAL) + servoSizer.Add(s.position,(i,1), wx.GBSpan(1,1),wx.ALIGN_CENTER_VERTICAL) + self.servos.append(s) + i += 1 + + # add everything + servoBox.Add(servoSizer) + sizer.Add(servoBox, (0,1), wx.GBSpan(1,1), wx.EXPAND|wx.TOP|wx.BOTTOM|wx.RIGHT,5) + self.Bind(wx.EVT_CHECKBOX, self.enableSliders) + # now we can subscribe + rospy.Subscriber('joint_states', JointState, self.stateCb) + + # timer for output + self.timer = wx.Timer(self, self.TIMER_ID) + self.timer.Start(50) + wx.EVT_CLOSE(self, self.onClose) + wx.EVT_TIMER(self, self.TIMER_ID, self.onTimer) + + # bind the panel to the paint event + wx.EVT_PAINT(self, self.onPaint) + self.dirty = 1 + self.onPaint() + + self.SetSizerAndFit(sizer) + self.Show(True) + + def onClose(self, event): + self.timer.Stop() + self.Destroy() + + def enableSliders(self, event): + servo = event.GetId() + if event.IsChecked(): + self.servos[servo].position.Enable() + else: + self.servos[servo].position.Disable() + if self.relaxers[servo]: + self.relaxers[servo]() + + def stateCb(self, msg): + for servo in self.servos: + if not servo.enabled.IsChecked(): + try: + idx = msg.name.index(servo.name) + servo.setPosition(msg.position[idx]) + except: + pass + + def onPaint(self, event=None): + # this is the wx drawing surface/canvas + dc = wx.PaintDC(self.movebase) + dc.Clear() + # draw crosshairs + dc.SetPen(wx.Pen("black",1)) + dc.DrawLine(width/2, 0, width/2, width) + dc.DrawLine(0, width/2, width, width/2) + dc.SetPen(wx.Pen("red",2)) + dc.SetBrush(wx.Brush('red', wx.SOLID)) + dc.SetPen(wx.Pen("black",2)) + dc.DrawCircle((width/2) + self.X*(width/2), (width/2) - self.Y*(width/2), 5) + + def onMove(self, event=None): + if event.LeftIsDown(): + pt = event.GetPosition() + if pt[0] > 0 and pt[0] < width and pt[1] > 0 and pt[1] < width: + self.forward = ((width/2)-pt[1])/2 + self.turn = (pt[0]-(width/2))/2 + self.X = (pt[0]-(width/2.0))/(width/2.0) + self.Y = ((width/2.0)-pt[1])/(width/2.0) + else: + self.forward = 0; self.Y = 0 + self.turn = 0; self.X = 0 + self.onPaint() + + def onTimer(self, event=None): + # send joint updates + for s,p in zip(self.servos,self.publishers): + if s.enabled.IsChecked(): + d = Float64() + d.data = s.getPosition() + p.publish(d) + # send base updates + t = Twist() + t.linear.x = self.forward/150.0; t.linear.y = 0; t.linear.z = 0 + if self.forward > 0: + t.angular.x = 0; t.angular.y = 0; t.angular.z = -self.turn/50.0 + else: + t.angular.x = 0; t.angular.y = 0; t.angular.z = self.turn/50.0 + self.cmd_vel.publish(t) + +if __name__ == '__main__': + # initialize GUI + rospy.init_node('controllerGUI') + app = wx.PySimpleApp() + frame = controllerGUI(None, True) + app.MainLoop() + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/bin/arbotix_terminal b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/bin/arbotix_terminal new file mode 100644 index 0000000..abdd1b3 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/bin/arbotix_terminal @@ -0,0 +1,188 @@ +#!/usr/bin/env python + +""" + ArbotiX Terminal - command line terminal to interact with an ArbotiX + Copyright (c) 2008-2011 Vanadium Labs LLC. All right reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Vanadium Labs LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +""" + +import sys + +from arbotix_python.arbotix import ArbotiX # does this look ridiculous to anyone else? +from arbotix_python.ax12 import * + +# help phrases +help = ["ArbotiX Terminal V0.1", +"", +"valid commands:", +" ls [i b]- list the servos found on the bus. Optional parameters: i - highest ID to query, b - baudrate to query at.", +" mv id id2 - rename any servo with ID=id, to id2", +" baud b - set baud rate of bus to b", +" get param id - get a parameter value from a servo", +" set param id val - set parameter on servo ID=id to val", +"", +"valid parameters", +" pos - current position of a servo, 0-1023", +" spd - current goal speed of a servo, 0-1023", +" baud - baud rate", +" temp - current temperature, degrees C, READ ONLY"] + + +class Terminal(ArbotiX): + OKBLUE = '\033[94m' + OKGREEN = '\033[92m' + WARNING = '\033[93m' + FAIL = '\033[91m' + ENDC = '\033[0m' + + def __init__(self, port = "/dev/ttyUSB0", baud = 115200): + # start + ArbotiX.__init__(self, port, baud) + print("ArbotiX Terminal --- Version 0.1") + print("Copyright 2011 Vanadium Labs LLC") + + # loop + while True: + kmd = input(f">> ").split(" ") + try: + if kmd[0] == "help": # display help data + if len(kmd) > 1: # for a particular command + if kmd[1] == "ls": + print(help[3]) + elif kmd[1] == "mv": + print(help[4]) + elif kmd[1] == "baud": + print(help[5]) + elif kmd[1] == "get": + print(help[6]) + elif kmd[1] == "set": + print(help[7]) + else: + print("help: unrecognized command") + else: + for h in help: + print(h) + + elif kmd[0] == "ls": # list servos + self._ser.timeout = 0.25 + if len(kmd) > 2: + self.write(253, P_BAUD_RATE, [self.convertBaud(int(kmd[1]))]) + self.query() + self.query() + + elif kmd[0] == "mv": # rename a servo + if self.write( int(kmd[1]), P_ID, [int(kmd[2]),] ) == 0: + print(self.OKBLUE+"OK"+self.ENDC) + + elif kmd[0] == "baud": # set bus baud rate + self.write(253, P_BAUD_RATE, [self.convertBaud(int(kmd[1]))]) + print(self.OKBLUE+"OK"+self.ENDC) + + elif kmd[0] == "set": + if kmd[1] == "baud": + self.write( int(kmd[2]), P_BAUD_RATE, [self.convertBaud(int(kmd[3]))] ) + print(self.OKBLUE+"OK"+self.ENDC) + elif kmd[1] == "pos" or kmd[1] == "position": + self.setPosition( int(kmd[2]), int(kmd[3]) ) + print(self.OKBLUE+"OK"+self.ENDC) + elif kmd[1] == "spd" or kmd[1] == "speed": + self.setSpeed( int(kmd[2]), int(kmd[3]) ) + print(self.OKBLUE+"OK"+self.ENDC) + + elif kmd[0] == "get": + if kmd[1] == "temp": + value = self.getTemperature(int(kmd[2])) + if value >= 60 or value < 0: + print(self.FAIL+str(value)+self.ENDC) + elif value > 40: + print(self.WARNING+str(value)+self.ENDC) + else: + print(self.OKGREEN+str(value)+self.ENDC) + elif kmd[1] == "pos" or kmd[1] == "position": + value = self.getPosition(int(kmd[2])) + if value >= 0: + print(self.OKGREEN+str(value)+self.ENDC) + else: + print(self.FAIL+str(value)+self.ENDC) + elif kmd[1] == "spd" or kmd[1] == "speed": + value = self.getGoalSpeed(int(kmd[2])) + if value >= 0: + print(self.OKGREEN+str(value)+self.ENDC) + else: + print(self.FAIL+str(value)+self.ENDC) + + except Exception as e: + print("error...", e) + + def query(self, max_id = 18, baud = 1000000): + k = 0 # how many id's have we printed + for i in range(max_id): + if self.getPosition(i+1) != -1: + if k > 8: + k = 0 + print("") + print(repr(i+1).rjust(4), end="\t"), + k = k + 1 + else: + if k > 8: + k = 0 + print("") + print(" ....", end="\t") + k = k + 1 + sys.stdout.flush() + print("") + + def convertBaud(self, b): + if b == 500000: + return 3 + elif b == 400000: + return 4 + elif b == 250000: + return 7 + elif b == 200000: + return 9 + elif b == 115200: + return 16 + elif b == 57600: + return 34 + elif b == 19200: + return 103 + elif b == 9600: + return 207 + else: + return 1 # default to 1Mbps + + +if __name__ == "__main__": + try: + if len(sys.argv) > 2: + t = Terminal(sys.argv[1], int(sys.argv[2])) + elif len(sys.argv) > 1: + t = Terminal(sys.argv[1]) + else: + t = Terminal() + except KeyboardInterrupt: + print("\nExiting...") + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/demos/diagnostics.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/demos/diagnostics.yaml new file mode 100644 index 0000000..721ec8a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/demos/diagnostics.yaml @@ -0,0 +1,13 @@ +pub_rate: 1.0 # Optional +base_path: '' # Optional, prepended to all diagnostic output +analyzers: + joints: + type: GenericAnalyzer + path: 'Joints' + timeout: 5.0 + contains: '_joint' + encoders: + type: GenericAnalyzer + path: 'Controllers' + timeout: 5.0 + contains: '_controller' diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/mainpage.dox b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/mainpage.dox new file mode 100644 index 0000000..df3c4f5 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/mainpage.dox @@ -0,0 +1,11 @@ +/** +\mainpage +\htmlinclude manifest.html + +In addition to the ROS API offered by the driver.py node, arbotix_python offers a Python API for interacting with the ArbotiX or other Dynamixel-like devices. + +\section ArbotixPythonAPI ArbotiX Python API +- \link arbotix_python::arbotix::ArbotiX ArbotiX Class API \endlink +- \link arbotix_python::ax12 Dynamixel register table defintions \endlink + +*/ diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/package.xml new file mode 100644 index 0000000..9e71169 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/package.xml @@ -0,0 +1,24 @@ + + arbotix_python + 0.11.0 + + Bindings and low-level controllers for ArbotiX-powered robots. + + Michael Ferguson + Michael Ferguson + BSD + http://ros.org/wiki/arbotix_python + + catkin + + rospy + tf + arbotix_msgs + sensor_msgs + geometry_msgs + diagnostic_msgs + control_msgs + nav_msgs + actionlib + python3-serial + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/setup.py b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/setup.py new file mode 100644 index 0000000..ee2c54c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/setup.py @@ -0,0 +1,12 @@ +#!/usr/bin/env python + +from setuptools import setup +from catkin_pkg.python_setup import generate_distutils_setup + +d = generate_distutils_setup( + scripts=['bin/arbotix_gui', 'bin/arbotix_terminal'], + packages=['arbotix_python'], + package_dir={'': 'src'}, + ) + +setup(**d) diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/__init__.py b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/arbotix.py b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/arbotix.py new file mode 100644 index 0000000..9e87af0 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/arbotix.py @@ -0,0 +1,539 @@ +#!/usr/bin/env python + +# Copyright (c) 2008-2011 Vanadium Labs LLC. +# All right reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# * Neither the name of Vanadium Labs LLC nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, +# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE +# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +# Author: Michael Ferguson + +## @file arbotix.py Low-level code to control an ArbotiX. + +import serial, time, sys, threading +from arbotix_python.ax12 import * +from struct import unpack, pack + +## @brief ArbotiX errors. Used by now to handle broken serial connections. +class ArbotiXException(Exception): + pass + +## @brief This class controls an ArbotiX, USBDynamixel, or similar board through a serial connection. +class ArbotiX: + + ## @brief Constructs an ArbotiX instance, optionally opening the serial connection. + ## + ## @param port The name of the serial port to open. + ## + ## @param baud The baud rate to run the port at. + ## + ## @param timeout The timeout to use for the port. When operating over a wireless link, you may need to + ## increase this. + ## + ## @param open Whether to open immediately the serial port. + def __init__(self, port="/dev/ttyUSB0", baud=115200, timeout=0.1, open_port=True): + self._mutex = threading._allocate_lock() + self._ser = serial.Serial() + + self._ser.port = port + self._ser.baudrate = baud + self._ser.timeout = timeout + + if open_port: + self._ser.open() + + ## The last error level read back + self.error = 0 + + def __write__(self, msg): + try: + self._ser.write(msg) + except serial.SerialException as e: + self._mutex.release() + raise ArbotiXException(e) + + def openPort(self): + self._ser.close() + try: + self._ser.open() + except serial.SerialException as e: + raise ArbotiXException(e) + + def closePort(self): + self._ser.close() + + ## @brief Read a dynamixel return packet in an iterative attempt. + ## + ## @param mode This should be 0 to start reading packet. + ## + ## @return The error level returned by the device. + def getPacket(self, mode, id=-1, leng=-1, error=-1, params = None): + try: + d = self._ser.read() + except Exception as e: + print(e) + return None + # need a positive byte + if not d or d == '': + return None + + # now process our byte + if mode == 0: # get our first 0xFF + if d == b'\xff': + return self.getPacket(1) + else: + return self.getPacket(0) + elif mode == 1: # get our second 0xFF + if d == b'\xff': + return self.getPacket(2) + else: + return self.getPacket(0) + elif mode == 2: # get id + if d != b'\xff': + return self.getPacket(3, ord(d)) + else: + return self.getPacket(0) + elif mode == 3: # get length + return self.getPacket(4, id, ord(d)) + elif mode == 4: # read error + self.error = d + if leng == 2: + return self.getPacket(6, id, leng, ord(d), list()) + else: + return self.getPacket(5, id, leng, ord(d), list()) + elif mode == 5: # read params + params.append(ord(d)) + if len(params) + 2 == leng: + return self.getPacket(6, id, leng, error, params) + else: + return self.getPacket(5, id, leng, error, params) + elif mode == 6: # read checksum + checksum = id + leng + error + sum(params) + ord(d) + if checksum % 256 != 255: + return None + return params + # fail + return None + + ## @brief Send an instruction to the device. + ## + ## @param index The ID of the servo to write. + ## + ## @param ins The instruction to send. + ## + ## @param params A list of the params to send. + ## + ## @param ret Whether to read a return packet. + ## + ## @return The return packet, if read. + def execute(self, index, ins, params, ret=True): + values = None + self._mutex.acquire() + try: + self._ser.flushInput() + except Exception as e: + print(e) + length = 2 + len(params) + checksum = 255 - ((index + length + ins + sum(params))%256) + packet = bytearray() + packet.append(0xFF) + packet.append(0xFF) + packet.append(index) + packet.append(length) + packet.append(ins) + self.__write__(packet) + for val in params: + self.__write__(bytes([val])) + self.__write__(bytes([checksum])) + if ret: + values = self.getPacket(0) + self._mutex.release() + return values + + ## @brief Read values of registers. + ## + ## @param index The ID of the servo. + ## + ## @param start The starting register address to begin the read at. + ## + ## @param length The number of bytes to read. + ## + ## @return A list of the bytes read, or -1 if failure. + def read(self, index, start, length): + values = self.execute(index, AX_READ_DATA, [start, length]) + if values == None: + return -1 + else: + return values + + ## @brief Write values to registers. + ## + ## @param index The ID of the servo. + ## + ## @param start The starting register address to begin writing to. + ## + ## @param values The data to write, in a list. + ## + ## @return The error level. + def write(self, index, start, values): + self.execute(index, AX_WRITE_DATA, [start] + values) + return self.error + + ## @brief Write values to registers on many servos. + ## + ## @param start The starting register address to begin writing to. + ## + ## @param values The data to write, in a list of lists. Format should be + ## [(id1, val1, val2), (id2, val1, val2)] + def syncWrite(self, start, values): + output = list() + for i in values: + output = output + i + length = len(output) + 4 # length of overall packet + lbytes = len(values[0])-1 # length of bytes to write to a servo + self._mutex.acquire() + try: + self._ser.flushInput() + except: + pass + packet = bytearray() + packet.append(0xFF) + packet.append(0xFF) + packet.append(254) + packet.append(length) + packet.append(AX_SYNC_WRITE) + self.__write__(packet) + self.__write__(bytes([start])) # start address + self.__write__(bytes([lbytes])) # bytes to write each servo + for i in output: + self.__write__(bytes([i])) + checksum = 255 - ((254 + length + AX_SYNC_WRITE + start + lbytes + sum(output))%256) + self.__write__(bytes([checksum])) + self._mutex.release() + + ## @brief Read values of registers on many servos. + ## + ## @param servos A list of the servo IDs to read from. + ## + ## @param start The starting register address to begin reading at. + ## + ## @param length The number of bytes to read from each servo. + ## + ## @return A list of bytes read. + def syncRead(self, servos, start, length): + return self.execute(0xFE, AX_SYNC_READ, [start, length] + servos ) + + ## @brief Set baud rate of a device. + ## + ## @param index The ID of the device to write (Note: ArbotiX is 253). + ## + ## @param baud The baud rate. + ## + ## @return The error level. + def setBaud(self, index, baud): + return self.write(index, P_BAUD_RATE, [baud, ]) + + ## @brief Get the return level of a device. + ## + ## @param index The ID of the device to read. + ## + ## @return The return level, . + def getReturnLevel(self, index): + try: + return int(self.read(index, P_RETURN_LEVEL, 1)[0]) + except: + return -1 + + ## @brief Set the return level of a device. + ## + ## @param index The ID of the device to write. + ## + ## @param value The return level. + ## + ## @return The error level. + def setReturnLevel(self, index, value): + return self.write(index, P_RETURN_LEVEL, [value]) + + ## @brief Turn on the torque of a servo. + ## + ## @param index The ID of the device to enable. + ## + ## @return The error level. + def enableTorque(self, index): + return self.write(index, P_TORQUE_ENABLE, [1]) + + ## @brief Turn on the torque of a servo. + ## + ## @param index The ID of the device to disable. + ## + ## @return The error level. + def disableTorque(self, index): + return self.write(index, P_TORQUE_ENABLE, [0]) + + ## @brief Set the status of the LED on a servo. + ## + ## @param index The ID of the device to write. + ## + ## @param value 0 to turn the LED off, >0 to turn it on + ## + ## @return The error level. + def setLed(self, index, value): + return self.write(index, P_LED, [value]) + + ## @brief Set the position of a servo. + ## + ## @param index The ID of the device to write. + ## + ## @param value The position to go to in, in servo ticks. + ## + ## @return The error level. + def setPosition(self, index, value): + return self.write(index, P_GOAL_POSITION_L, [value%256, value>>8]) + + ## @brief Set the speed of a servo. + ## + ## @param index The ID of the device to write. + ## + ## @param value The speed to write. + ## + ## @return The error level. + def setSpeed(self, index, value): + return self.write(index, P_GOAL_SPEED_L, [value%256, value>>8]) + + ## @brief Get the position of a servo. + ## + ## @param index The ID of the device to read. + ## + ## @return The servo position. + def getPosition(self, index): + values = self.read(index, P_PRESENT_POSITION_L, 2) + try: + return int(values[0]) + (int(values[1])<<8) + except: + return -1 + + ## @brief Get the speed of a servo. + ## + ## @param index The ID of the device to read. + ## + ## @return The servo speed. + def getSpeed(self, index): + values = self.read(index, P_PRESENT_SPEED_L, 2) + try: + return int(values[0]) + (int(values[1])<<8) + except: + return -1 + + ## @brief Get the goal speed of a servo. + ## + ## @param index The ID of the device to read. + ## + ## @return The servo goal speed. + def getGoalSpeed(self, index): + values = self.read(index, P_GOAL_SPEED_L, 2) + try: + return int(values[0]) + (int(values[1])<<8) + except: + return -1 + + ## @brief Get the voltage of a device. + ## + ## @param index The ID of the device to read. + ## + ## @return The voltage, in Volts. + def getVoltage(self, index): + try: + return int(self.read(index, P_PRESENT_VOLTAGE, 1)[0])/10.0 + except: + return -1 + + ## @brief Get the temperature of a device. + ## + ## @param index The ID of the device to read. + ## + ## @return The temperature, in degrees C. + def getTemperature(self, index): + try: + return int(self.read(index, P_PRESENT_TEMPERATURE, 1)[0]) + except: + return -1 + + ## @brief Determine if a device is moving. + ## + ## @param index The ID of the device to read. + ## + ## @return True if servo is moving. + def isMoving(self, index): + try: + d = self.read(index, P_MOVING, 1)[0] + except: + return True + return d != 0 + + ## @brief Put a servo into wheel mode (continuous rotation). + ## + ## @param index The ID of the device to write. + def enableWheelMode(self, index): + self.write(index, P_CCW_ANGLE_LIMIT_L, [0,0]) + + ## @brief Put a servo into servo mode. + ## + ## @param index The ID of the device to write. + ## + ## @param resolution The resolution of the encoder on the servo. NOTE: if using + ## 12-bit resolution servos (EX-106, MX-28, etc), you must pass resolution = 12. + ## + ## @return + def disableWheelMode(self, index, resolution=10): + resolution = (2 ** resolution) - 1 + self.write(index, P_CCW_ANGLE_LIMIT_L, [resolution%256,resolution>>8]) + + ## Direction definition for setWheelSpeed + FORWARD = 0 + ## Direction definition for setWheelSpeed + BACKWARD = 1 + + ## @brief Set the speed and direction of a servo which is in wheel mode (continuous rotation). + ## + ## @param index The ID of the device to write. + ## + ## @param direction The direction of rotation, either FORWARD or BACKWARD + ## + ## @param speed The speed to move at (0-1023). + ## + ## @return + def setWheelSpeed(self, index, direction, speed): + if speed > 1023: + speed = 1023 + if direction == self.FORWARD: + # 0~1023 is forward, it is stopped by setting to 0 while rotating to CCW direction. + self.write(index, P_GOAL_SPEED_L, [speed%256, speed>>8]) + else: + # 1024~2047 is backward, it is stopped by setting to 1024 while rotating to CW direction. + speed += 1024 + self.write(index, P_GOAL_SPEED_L, [speed%256, speed>>8]) + + ########################################################################### + # Extended ArbotiX Driver + + ## Helper definition for analog and digital access. + LOW = 0 + ## Helper definition for analog and digital access. + HIGH = 0xff + ## Helper definition for analog and digital access. + INPUT = 0 + ## Helper definition for analog and digital access. + OUTPUT = 0xff + + # ArbotiX-specific register table + # We do Model, Version, ID, Baud, just like the AX-12 + ## Register base address for reading digital ports + REG_DIGITAL_IN0 = 5 + REG_DIGITAL_IN1 = 6 + REG_DIGITAL_IN2 = 7 + REG_DIGITAL_IN3 = 8 + ## Register address for triggering rescan + REG_RESCAN = 15 + # 16, 17 = RETURN, ALARM + ## Register address of first analog port (read only). + ## Each additional port is BASE + index. + ANA_BASE = 18 + ## Register address of analog servos. Up to 10 servos, each + ## uses 2 bytes (L, then H), pulse width (0, 1000-2000ms) (Write only) + SERVO_BASE = 26 + # Address 46 is Moving, just like an AX-12 + REG_DIGITAL_OUT0 = 47 + + ## @brief Force the ArbotiX2 to rescan the Dynamixel busses. + def rescan(self): + self.write(253, self.REG_RESCAN, [1,]) + + ## @brief Get the value of an analog input pin. + ## + ## @param index The ID of the pin to read (0 to 7). + ## + ## @param leng The number of bytes to read (1 or 2). + ## + ## @return 8-bit/16-bit analog value of the pin, -1 if error. + def getAnalog(self, index, leng=1): + try: + val = self.read(253, self.ANA_BASE+int(index), leng) + return sum(val[i] << (i * 8) for i in range(leng)) + except: + return -1 + + ## @brief Get the value of an digital input pin. + ## + ## @param index The ID of the pin to read (0 to 31). + ## + ## @return 0 for low, 255 for high, -1 if error. + def getDigital(self, index): + try: + if index < 32: + x = self.read(253, self.REG_DIGITAL_IN0 + int(index/8), 1)[0] + else: + return -1 + except: + return -1 + if x & (2**(index%8)): + return 255 + else: + return 0 + + ## @brief Get the value of an digital input pin. + ## + ## @param index The ID of the pin to write (0 to 31). + ## + ## @param value The value of the port, >0 is high. + ## + ## @param direction The direction of the port, >0 is output. + ## + ## @return -1 if error. + def setDigital(self, index, value, direction=0xff): + if index > 31: return -1 + if value == 0 and direction > 0: + self.write(253, self.REG_DIGITAL_OUT0 + int(index), [1]) + elif value > 0 and direction > 0: + self.write(253, self.REG_DIGITAL_OUT0 + int(index), [3]) + elif value > 0 and direction == 0: + self.write(253, self.REG_DIGITAL_OUT0 + int(index), [2]) + else: + self.write(253, self.REG_DIGITAL_OUT0 + int(index), [0]) + return 0 + + ## @brief Set the position of a hobby servo. + ## + ## @param index The ID of the servo to write (0 to 7). + ## + ## @param value The position of the servo in milliseconds (1500-2500). + ## A value of 0 disables servo output. + ## + ## @return -1 if error. + def setServo(self, index, value): + if index > 7: return -1 + if value != 0 and (value < 500 or value > 2500): + print("ArbotiX Error: Servo value out of range:", value) + else: + self.write(253, self._SERVO_BASE + 2*index, [value%256, value>>8]) + return 0 + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/ax12.py b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/ax12.py new file mode 100644 index 0000000..de6c9b4 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/ax12.py @@ -0,0 +1,104 @@ +#!/usr/bin/env python + +# Copyright (c) 2008-2011 Vanadium Labs LLC. +# All right reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# * Neither the name of Vanadium Labs LLC nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, +# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE +# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +# Author: Michael Ferguson + +## @file ax12.py Definitions of AX-12 control table. + +# Control Table Symbolic Constants - EEPROM AREA +P_MODEL_NUMBER_L = 0 +P_MODEL_NUMBER_H = 1 +P_VERSION = 2 +P_ID = 3 +P_BAUD_RATE = 4 +P_RETURN_DELAY_TIME = 5 +P_CW_ANGLE_LIMIT_L = 6 +P_CW_ANGLE_LIMIT_H = 7 +P_CCW_ANGLE_LIMIT_L = 8 +P_CCW_ANGLE_LIMIT_H = 9 +P_SYSTEM_DATA2 = 10 +P_LIMIT_TEMPERATURE = 11 +P_DOWN_LIMIT_VOLTAGE = 12 +P_UP_LIMIT_VOLTAGE = 13 +P_MAX_TORQUE_L = 14 +P_MAX_TORQUE_H = 15 +P_RETURN_LEVEL = 16 +P_ALARM_LED = 17 +P_ALARM_SHUTDOWN = 18 +P_OPERATING_MODE = 19 +P_DOWN_CALIBRATION_L = 20 +P_DOWN_CALIBRATION_H = 21 +P_UP_CALIBRATION_L = 22 +P_UP_CALIBRATION_H = 23 +# Control Table Symbolic Constants - RAM AREA +P_TORQUE_ENABLE = 24 +P_LED = 25 +P_CW_COMPLIANCE_MARGIN = 26 +P_CCW_COMPLIANCE_MARGIN = 27 +P_CW_COMPLIANCE_SLOPE = 28 +P_CCW_COMPLIANCE_SLOPE = 29 +P_GOAL_POSITION_L = 30 +P_GOAL_POSITION_H = 31 +P_GOAL_SPEED_L = 32 +P_GOAL_SPEED_H = 33 +P_TORQUE_LIMIT_L = 34 +P_TORQUE_LIMIT_H = 35 +P_PRESENT_POSITION_L = 36 +P_PRESENT_POSITION_H = 37 +P_PRESENT_SPEED_L = 38 +P_PRESENT_SPEED_H = 39 +P_PRESENT_LOAD_L = 40 +P_PRESENT_LOAD_H = 41 +P_PRESENT_VOLTAGE = 42 +P_PRESENT_TEMPERATURE = 43 +P_REGISTERED_INSTRUCTION = 44 +P_PAUSE_TIME = 45 +P_MOVING = 46 +P_LOCK = 47 +P_PUNCH_L = 48 +P_PUNCH_H = 49 + +# Status Return Levels +AX_RETURN_NONE = 0 +AX_RETURN_READ = 1 +AX_RETURN_ALL = 2 + +# Instruction Set +AX_PING = 1 +AX_READ_DATA = 2 +AX_WRITE_DATA = 3 +AX_REG_WRITE = 4 +AX_ACTION = 5 +AX_RESET = 6 +AX_SYNC_WRITE = 131 +AX_SYNC_READ = 132 + +AX_CONTROL_SETUP = 26 +AX_CONTROL_WRITE = 27 +AX_CONTROL_STAT = 28 + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/controllers.py b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/controllers.py new file mode 100644 index 0000000..8d6a645 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/controllers.py @@ -0,0 +1,75 @@ +#!/usr/bin/env python + +# Copyright (c) 2010-2011 Vanadium Labs LLC. +# All right reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# * Neither the name of Vanadium Labs LLC nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, +# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE +# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +## @file controllers.py Base class and support functions for a controllers. + +## @brief Controllers interact with ArbotiX hardware. +class Controller: + + ## @brief Constructs a Controller instance. + ## + ## @param device The arbotix instance. + ## + ## @param name The controller name. + def __init__(self, device, name): + self.name = name + self.device = device + self.fake = device.fake + self.pause = False + + # output for joint states publisher + self.joint_names = list() + self.joint_positions = list() + self.joint_velocities = list() + + ## @brief Start the controller, do any hardware setup needed. + def startup(self): + pass + + ## @brief Do any read/writes to device. + def update(self): + pass + + ## @brief Stop the controller, do any hardware shutdown needed. + def shutdown(self): + pass + + ## @brief Is the controller actively sending commands to joints? + def active(self): + return False + + ## @brief Get a diagnostics message for this joint. + ## + ## @return Diagnostics message. + def getDiagnostics(self): + msg = DiagnosticStatus() + msg.name = self.name + msg.level = DiagnosticStatus.OK + msg.message = "OK" + return msg + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/diff_controller.py b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/diff_controller.py new file mode 100644 index 0000000..b21d271 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/diff_controller.py @@ -0,0 +1,261 @@ +#!/usr/bin/env python + +""" + diff_controller.py - controller for a differential drive + Copyright (c) 2010-2011 Vanadium Labs LLC. All right reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Vanadium Labs LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +""" + +import rospy + +from math import sin,cos,pi + +from geometry_msgs.msg import Quaternion +from geometry_msgs.msg import Twist +from nav_msgs.msg import Odometry +from diagnostic_msgs.msg import * +from tf.broadcaster import TransformBroadcaster + +from arbotix_python.ax12 import * +from arbotix_python.controllers import * +from struct import unpack + +class DiffController(Controller): + """ Controller to handle movement & odometry feedback for a differential + drive mobile base. """ + def __init__(self, device, name): + Controller.__init__(self, device, name) + self.pause = True + self.last_cmd = rospy.Time.now() + + # parameters: rates and geometry + self.rate = rospy.get_param('~controllers/'+name+'/rate',10.0) + self.timeout = rospy.get_param('~controllers/'+name+'/timeout',1.0) + self.t_delta = rospy.Duration(1.0/self.rate) + self.t_next = rospy.Time.now() + self.t_delta + self.ticks_meter = float(rospy.get_param('~controllers/'+name+'/ticks_meter')) + self.base_width = float(rospy.get_param('~controllers/'+name+'/base_width')) + + self.base_frame_id = rospy.get_param('~controllers/'+name+'/base_frame_id', 'base_link') + self.odom_frame_id = rospy.get_param('~controllers/'+name+'/odom_frame_id', 'odom') + + # parameters: PID + self.Kp = rospy.get_param('~controllers/'+name+'/Kp', 5) + self.Kd = rospy.get_param('~controllers/'+name+'/Kd', 1) + self.Ki = rospy.get_param('~controllers/'+name+'/Ki', 0) + self.Ko = rospy.get_param('~controllers/'+name+'/Ko', 50) + + # parameters: acceleration + self.accel_limit = rospy.get_param('~controllers/'+name+'/accel_limit', 0.1) + self.max_accel = int(self.accel_limit*self.ticks_meter/self.rate) + + # output for joint states publisher + self.joint_names = ["base_l_wheel_joint","base_r_wheel_joint"] + self.joint_positions = [0,0] + self.joint_velocities = [0,0] + + # internal data + self.v_left = 0 # current setpoint velocity + self.v_right = 0 + self.v_des_left = 0 # cmd_vel setpoint + self.v_des_right = 0 + self.enc_left = None # encoder readings + self.enc_right = None + self.x = 0 # position in xy plane + self.y = 0 + self.th = 0 + self.dx = 0 # speeds in x/rotation + self.dr = 0 + self.then = rospy.Time.now() # time for determining dx/dy + + # subscriptions + rospy.Subscriber("cmd_vel", Twist, self.cmdVelCb) + self.odomPub = rospy.Publisher("odom", Odometry, queue_size=5) + self.odomBroadcaster = TransformBroadcaster() + + rospy.loginfo("Started DiffController ("+name+"). Geometry: " + str(self.base_width) + "m wide, " + str(self.ticks_meter) + " ticks/m.") + + def startup(self): + if not self.fake: + self.setup(self.Kp,self.Kd,self.Ki,self.Ko) + + def update(self): + now = rospy.Time.now() + if now > self.t_next: + elapsed = now - self.then + self.then = now + elapsed = elapsed.to_sec() + + if self.fake: + x = cos(self.th)*self.dx*elapsed + y = -sin(self.th)*self.dx*elapsed + self.x += cos(self.th)*self.dx*elapsed + self.y += sin(self.th)*self.dx*elapsed + self.th += self.dr*elapsed + else: + # read encoders + try: + left, right = self.status() + except Exception as e: + rospy.logerr("Could not update encoders: " + str(e)) + return + rospy.logdebug("Encoders: " + str(left) +","+ str(right)) + + # calculate odometry + if self.enc_left == None: + d_left = 0 + d_right = 0 + else: + d_left = (left - self.enc_left)/self.ticks_meter + d_right = (right - self.enc_right)/self.ticks_meter + self.enc_left = left + self.enc_right = right + + d = (d_left+d_right)/2 + th = (d_right-d_left)/self.base_width + self.dx = d / elapsed + self.dr = th / elapsed + + if (d != 0): + x = cos(th)*d + y = -sin(th)*d + self.x = self.x + (cos(self.th)*x - sin(self.th)*y) + self.y = self.y + (sin(self.th)*x + cos(self.th)*y) + if (th != 0): + self.th = self.th + th + + # publish or perish + quaternion = Quaternion() + quaternion.x = 0.0 + quaternion.y = 0.0 + quaternion.z = sin(self.th/2) + quaternion.w = cos(self.th/2) + self.odomBroadcaster.sendTransform( + (self.x, self.y, 0), + (quaternion.x, quaternion.y, quaternion.z, quaternion.w), + rospy.Time.now(), + self.base_frame_id, + self.odom_frame_id + ) + + odom = Odometry() + odom.header.stamp = now + odom.header.frame_id = self.odom_frame_id + odom.pose.pose.position.x = self.x + odom.pose.pose.position.y = self.y + odom.pose.pose.position.z = 0 + odom.pose.pose.orientation = quaternion + odom.child_frame_id = self.base_frame_id + odom.twist.twist.linear.x = self.dx + odom.twist.twist.linear.y = 0 + odom.twist.twist.angular.z = self.dr + self.odomPub.publish(odom) + + if now > (self.last_cmd + rospy.Duration(self.timeout)): + self.v_des_left = 0 + self.v_des_right = 0 + + # update motors + if not self.fake: + if self.v_left < self.v_des_left: + self.v_left += self.max_accel + if self.v_left > self.v_des_left: + self.v_left = self.v_des_left + else: + self.v_left -= self.max_accel + if self.v_left < self.v_des_left: + self.v_left = self.v_des_left + + if self.v_right < self.v_des_right: + self.v_right += self.max_accel + if self.v_right > self.v_des_right: + self.v_right = self.v_des_right + else: + self.v_right -= self.max_accel + if self.v_right < self.v_des_right: + self.v_right = self.v_des_right + self.write(self.v_left, self.v_right) + + self.t_next = now + self.t_delta + + def shutdown(self): + if not self.fake: + self.write(0,0) + + def cmdVelCb(self,req): + """ Handle movement requests. """ + self.last_cmd = rospy.Time.now() + if self.fake: + self.dx = req.linear.x # m/s + self.dr = req.angular.z # rad/s + else: + # set motor speeds in ticks per 1/30s + self.v_des_left = int( ((req.linear.x - (req.angular.z * self.base_width/2.0)) * self.ticks_meter) / 30.0) + self.v_des_right = int( ((req.linear.x + (req.angular.z * self.base_width/2.0)) * self.ticks_meter) / 30.0) + + def getDiagnostics(self): + """ Get a diagnostics status. """ + msg = DiagnosticStatus() + msg.name = self.name + msg.level = DiagnosticStatus.OK + msg.message = "OK" + if not self.fake: + msg.values.append(KeyValue("Left", str(self.enc_left))) + msg.values.append(KeyValue("Right", str(self.enc_right))) + msg.values.append(KeyValue("dX", str(self.dx))) + msg.values.append(KeyValue("dR", str(self.dr))) + return msg + + ### + ### Controller Specification: + ### + ### setup: Kp, Kd, Ki, Ko (all unsigned char) + ### + ### write: left_speed, right_speed (2-byte signed, ticks per frame) + ### + ### status: left_enc, right_enc (4-byte signed) + ### + + def setup(self, kp, kd, ki, ko): + success = self.device.execute(253, AX_CONTROL_SETUP, [10, kp, kd, ki, ko]) + + def write(self, left, right): + """ Send a closed-loop speed. Base PID loop runs at 30Hz, these values + are therefore in ticks per 1/30 second. """ + left = left&0xffff + right = right&0xffff + success = self.device.execute(253, AX_CONTROL_WRITE, [10, left%256, left>>8, right%256, right>>8]) + + def status(self): + """ read 32-bit (signed) encoder values. """ + values = self.device.execute(253, AX_CONTROL_STAT, [10]) + left_values = "".join([chr(k) for k in values[0:4] ]) + right_values = "".join([chr(k) for k in values[4:] ]) + try: + left = unpack('=l',left_values)[0] + right = unpack('=l',right_values)[0] + return [left, right] + except: + return None + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/follow_controller.py b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/follow_controller.py new file mode 100644 index 0000000..7ddcb34 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/follow_controller.py @@ -0,0 +1,176 @@ +#!/usr/bin/env python + +""" + follow_controller.py - controller for a kinematic chain + Copyright (c) 2011 Vanadium Labs LLC. All right reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Vanadium Labs LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +""" + +import rospy, actionlib + +from control_msgs.msg import FollowJointTrajectoryAction +from trajectory_msgs.msg import JointTrajectory +from diagnostic_msgs.msg import * + +from arbotix_python.ax12 import * +from arbotix_python.controllers import * + +class FollowController(Controller): + """ A controller for joint chains, exposing a FollowJointTrajectory action. """ + + def __init__(self, device, name): + Controller.__init__(self, device, name) + self.interpolating = 0 + + # parameters: rates and joints + self.rate = rospy.get_param('~controllers/'+name+'/rate',50.0) + self.joints = rospy.get_param('~controllers/'+name+'/joints') + self.index = rospy.get_param('~controllers/'+name+'/index', len(device.controllers)) + for joint in self.joints: + self.device.joints[joint].controller = self + + # action server + name = rospy.get_param('~controllers/'+name+'/action_name','follow_joint_trajectory') + self.server = actionlib.SimpleActionServer(name, FollowJointTrajectoryAction, execute_cb=self.actionCb, auto_start=False) + + # good old trajectory + rospy.Subscriber(self.name+'/command', JointTrajectory, self.commandCb) + self.executing = False + + rospy.loginfo("Started FollowController ("+self.name+"). Joints: " + str(self.joints) + " on C" + str(self.index)) + + def startup(self): + self.server.start() + + def actionCb(self, goal): + rospy.loginfo(self.name + ": Action goal recieved.") + traj = goal.trajectory + + if set(self.joints) != set(traj.joint_names): + for j in self.joints: + if j not in traj.joint_names: + msg = "Trajectory joint names does not match action controlled joints." + str(traj.joint_names) + rospy.logerr(msg) + self.server.set_aborted(text=msg) + return + rospy.logwarn("Extra joints in trajectory") + + if not traj.points: + msg = "Trajectory empy." + rospy.logerr(msg) + self.server.set_aborted(text=msg) + return + + try: + indexes = [traj.joint_names.index(joint) for joint in self.joints] + except ValueError as val: + msg = "Trajectory invalid." + rospy.logerr(msg) + self.server.set_aborted(text=msg) + return + + retval = self.executeTrajectory(traj) # retval: 1: successful, 0: canceled, -1: failed + if retval == 1: + self.server.set_succeeded() + rospy.loginfo(self.name + ": Done.") + elif retval == 0: + self.server.set_preempted(text="Goal canceled.") + rospy.loginfo(self.name + ": Goal canceled.") + else: + self.server.set_aborted(text="Execution failed.") + rospy.loginfo(self.name + ": Execution failed.") + + + def commandCb(self, msg): + # don't execute if executing an action + if self.server.is_active(): + rospy.loginfo(self.name+": Received trajectory, but action is active") + return + self.executing = True + self.executeTrajectory(msg) + self.executing = False + + def executeTrajectory(self, traj): + rospy.loginfo("Executing trajectory") + rospy.logdebug(traj) + # carry out trajectory + try: + indexes = [traj.joint_names.index(joint) for joint in self.joints] + except ValueError as val: + rospy.logerr("Invalid joint in trajectory.") + return -1 + + # get starting timestamp, MoveIt uses 0, need to fill in + start = traj.header.stamp + if start.secs == 0 and start.nsecs == 0: + start = rospy.Time.now() + + r = rospy.Rate(self.rate) + last = [ self.device.joints[joint].position for joint in self.joints ] + for point in traj.points: + while rospy.Time.now() + rospy.Duration(0.01) < start: + if self.server.is_preempt_requested(): + return 0 + rospy.sleep(0.01) + desired = [ point.positions[k] for k in indexes ] + endtime = start + point.time_from_start + while rospy.Time.now() + rospy.Duration(0.01) < endtime: + # check that preempt has not been requested by the client + if self.server.is_preempt_requested(): + return 0 + + err = [ (d-c) for d,c in zip(desired,last) ] + velocity = [ abs(x / (self.rate * (endtime - rospy.Time.now()).to_sec())) for x in err ] + rospy.logdebug(err) + for i in range(len(self.joints)): + if err[i] > 0.001 or err[i] < -0.001: + cmd = err[i] + top = velocity[i] + if cmd > top: + cmd = top + elif cmd < -top: + cmd = -top + last[i] += cmd + self.device.joints[self.joints[i]].setControlOutput(last[i]) + else: + velocity[i] = 0 + r.sleep() + return 1 + + def active(self): + """ Is controller overriding servo internal control? """ + return self.server.is_active() or self.executing + + def getDiagnostics(self): + """ Get a diagnostics status. """ + msg = DiagnosticStatus() + msg.name = self.name + msg.level = DiagnosticStatus.OK + msg.message = "OK" + if self.active(): + msg.values.append(KeyValue("State", "Active")) + else: + msg.values.append(KeyValue("State", "Not Active")) + return msg + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/io.py b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/io.py new file mode 100644 index 0000000..7f1fa5a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/io.py @@ -0,0 +1,87 @@ +#!/usr/bin/env python + +""" + io.py - ROS wrappers for ArbotiX I/O + Copyright (c) 2010-2011 Vanadium Labs LLC. All right reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Vanadium Labs LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +""" + +import rospy +from arbotix_msgs.msg import * + +class DigitalServo: + """ Class for a digital output. """ + def __init__(self, name, pin, value, rate, device): + self.device = device + self.value = value + self.direction = 0 + self.pin = pin + self.device.setDigital(self.pin, self.value, self.direction) + rospy.Subscriber('~'+name, Digital, self.stateCb) + self.t_delta = rospy.Duration(1.0/rate) + self.t_next = rospy.Time.now() + self.t_delta + def stateCb(self, msg): + self.value = msg.value + self.direction = msg.direction + def update(self): + if rospy.Time.now() > self.t_next: + self.device.setDigital(self.pin, self.value, self.direction) + self.t_next = rospy.Time.now() + self.t_delta + +class DigitalSensor: + """ Class for a digital input. """ + def __init__(self, name, pin, value, rate, device): + self.device = device + self.pin = pin + self.device.setDigital(pin, value, 0) + self.pub = rospy.Publisher('~'+name, Digital, queue_size=5) + self.t_delta = rospy.Duration(1.0/rate) + self.t_next = rospy.Time.now() + self.t_delta + def update(self): + if rospy.Time.now() > self.t_next: + msg = Digital() + msg.header.stamp = rospy.Time.now() + msg.value = self.device.getDigital(self.pin) + self.pub.publish(msg) + self.t_next = rospy.Time.now() + self.t_delta + +class AnalogSensor: + """ Class for an analog input. """ + def __init__(self, name, pin, value, rate, leng, device): + self.device = device + self.pin = pin + self.device.setDigital(pin, value, 0) + self.pub = rospy.Publisher('~'+name, Analog, queue_size=5) + self.t_delta = rospy.Duration(1.0/rate) + self.t_next = rospy.Time.now() + self.t_delta + self.leng = leng + def update(self): + if rospy.Time.now() > self.t_next: + msg = Analog() + msg.header.stamp = rospy.Time.now() + msg.value = self.device.getAnalog(self.pin, self.leng) + if msg.value >= 0: + self.pub.publish(msg) + self.t_next = rospy.Time.now() + self.t_delta + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/joints.py b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/joints.py new file mode 100644 index 0000000..6c5cd60 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/joints.py @@ -0,0 +1,160 @@ +#!/usr/bin/env python + +# Copyright (c) 2010-2011 Vanadium Labs LLC. +# All right reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# * Neither the name of Vanadium Labs LLC nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, +# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE +# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +## @file joints.py Base class and support functions for joints. + +## @brief Joints hold current values. +class Joint: + + ## @brief Constructs a Joint instance. + ## + ## @param device The arbotix instance. + ## + ## @param name The joint name. + def __init__(self, device, name): + self.device = device + self.name = name + self.controller = None + + self.position = 0.0 + self.velocity = 0.0 + self.last = rospy.Time.now() + + ## @brief Get new output, in raw data format. + ## + ## @param frame The frame length in seconds to interpolate forward. + ## + ## @return The new output, in raw data format. + def interpolate(self, frame): + return None + + ## @brief Set the current position from feedback data. + ## + ## @param raw_data The current feedback. + ## + ## @return The current position, in radians/meters. + def setCurrentFeedback(self, raw_data): + return None + + ## @brief Set the goal position. + ## + ## @param position The goal position, in radians/meters. + ## + ## @return The output position, in raw data format. + def setControlOutput(self, position): + return None + + ## @brief Get a diagnostics message for this joint. + ## + ## @return Diagnostics message. + def getDiagnostics(self): + return None + + +import rospy +import xml.dom.minidom + +from math import pi, radians + +## @brief Get joint parameters from URDF +def getJointsFromURDF(): + try: + description = rospy.get_param("robot_description") + robot = xml.dom.minidom.parseString(description).getElementsByTagName('robot')[0] + joints = {} + # Find all non-fixed joints + for child in robot.childNodes: + if child.nodeType is child.TEXT_NODE: + continue + if child.localName == 'joint': + jtype = child.getAttribute('type') + if jtype == 'fixed': + continue + name = child.getAttribute('name') + if jtype == 'continuous': + minval = -pi + maxval = pi + else: + limit = child.getElementsByTagName('limit')[0] + minval = float(limit.getAttribute('lower')) + maxval = float(limit.getAttribute('upper')) + + if minval > 0 or maxval < 0: + zeroval = (maxval + minval)/2 + else: + zeroval = 0 + + joint = {'min':minval, 'max':maxval, 'zero':zeroval, 'value':zeroval } + joints[name] = joint + return joints + except: + rospy.loginfo('No URDF defined, proceeding with defaults') + return dict() + + +## @brief Get limits of servo, from YAML, then URDF, then defaults if neither is defined. +def getJointLimits(name, joint_defaults, default_min=-150, default_max=150): + min_angle = radians(default_min) + max_angle = radians(default_max) + + try: + min_angle = joint_defaults[name]['min'] + except: + pass + try: + min_angle = radians(rospy.get_param("/arbotix/dynamixels/"+name+"/min_angle")) + except: + pass + try: + min_angle = radians(rospy.get_param("/arbotix/joints/"+name+"/min_angle")) + except: + pass + try: + min_angle = rospy.get_param("/arbotix/joints/"+name+"/min_position") + except: + pass + + try: + max_angle = joint_defaults[name]['max'] + except: + pass + try: + max_angle = radians(rospy.get_param("/arbotix/dynamixels/"+name+"/max_angle")) + except: + pass + try: + max_angle = radians(rospy.get_param("/arbotix/joints/"+name+"/max_angle")) + except: + pass + try: + max_angle = rospy.get_param("/arbotix/joints/"+name+"/max_position") + except: + pass + + return (min_angle, max_angle) + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/linear_controller.py b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/linear_controller.py new file mode 100644 index 0000000..e994260 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/linear_controller.py @@ -0,0 +1,285 @@ +#!/usr/bin/env python + +""" + linear_controller.py - controller for a linear actuator with analog feedback + Copyright (c) 2011 Vanadium Labs LLC. All right reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Vanadium Labs LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +""" + +import rospy, actionlib + +from arbotix_python.joints import * +from arbotix_python.controllers import * +from std_msgs.msg import Float64 +from diagnostic_msgs.msg import * +from std_srvs.srv import * + +from struct import unpack + +class LinearJoint(Joint): + def __init__(self, device, name): + Joint.__init__(self, device, name) + + self.dirty = False + self.position = 0.0 # current position, as returned by feedback (meters) + self.desired = 0.0 # desired position (meters) + self.velocity = 0.0 # moving speed + self.last = rospy.Time.now() + + # TODO: load these from URDF + self.min = rospy.get_param('~joints/'+name+'/min_position',0.0) + self.max = rospy.get_param('~joints/'+name+'/max_position',0.5) + self.max_speed = rospy.get_param('~joints/'+name+'/max_speed',0.0508) + + # calibration data {reading: position} + self.cal = { -1: -1, 1: 1 } + self.cal_raw = rospy.get_param('~joints/'+name+'/calibration_data', self.cal) + self.cal = dict() + for key, value in self.cal_raw.items(): + self.cal[int(key)] = value + self.keys = sorted(self.cal.keys()) + + rospy.Subscriber(name+'/command', Float64, self.commandCb) + + def interpolate(self, frame): + """ Get new output: 1 = increase position, -1 is decrease position. """ + if self.dirty: + cmd = self.desired - self.position + if self.device.fake: + self.position = self.desired + self.dirty = False + return None + if cmd > 0.01: + return 1 + elif cmd < -0.01: + return -1 + else: + self.dirty = False + return 0 + else: + return None + + def setCurrentFeedback(self, reading): + if reading >= self.keys[0] and reading <= self.keys[-1]: + last_angle = self.position + self.position = self.readingToPosition(reading) + # update velocity estimate + t = rospy.Time.now() + self.velocity = (self.position - last_angle)/((t - self.last).to_nsec()/1000000000.0) + self.last = t + else: + rospy.logerr(self.name + ": feedback reading out of range") + + def setControlOutput(self, position): + """ Set the position that controller is moving to. + Returns output value in raw_data format. """ + if position <= self.max and position >= self.min: + self.desired = position + self.dirty = True + else: + rospy.logerr(self.name + ": requested position is out of range: " + str(position)) + return None # TODO + + def getDiagnostics(self): + """ Get a diagnostics status. """ + msg = DiagnosticStatus() + msg.name = self.name + msg.level = DiagnosticStatus.OK + if self.dirty: + msg.message = "Moving" + else: + msg.message = "OK" + msg.values.append(KeyValue("Position", str(self.position))) + return msg + + def commandCb(self, req): + """ Float64 style command input. """ + if self.device.fake: + self.position = req.data + else: + if req.data <= self.max and req.data >= self.min: + self.desired = req.data + self.dirty = True + else: + rospy.logerr(self.name + ": requested position is out of range: " + str(req)) + + def readingToPosition(self, reading): + low = 0 + while reading > self.keys[low+1]: + low += 1 + high = len(self.keys) - 1 + while reading < self.keys[high-1]: + high += -1 + x = self.keys[high] - self.keys[low] + y = self.cal[self.keys[high]] - self.cal[self.keys[low]] + x1 = reading - self.keys[low] + y1 = y * ( float(x1)/float(x) ) + return self.cal[self.keys[low]] + y1 + + +class LinearControllerAbsolute(Controller): + """ A controller for a linear actuator, with absolute positional feedback. """ + + def __init__(self, device, name): + Controller.__init__(self, device, name) + + self.a = rospy.get_param('~controllers/'+name+'/motor_a',29) + self.b = rospy.get_param('~controllers/'+name+'/motor_b',30) + self.p = rospy.get_param('~controllers/'+name+'/motor_pwm',31) + self.analog = rospy.get_param('~controllers/'+name+'/feedback',0) + self.last = 0 + self.last_reading = 0 + + self.delta = rospy.Duration(1.0/rospy.get_param('~controllers/'+name+'/rate', 10.0)) + self.next = rospy.Time.now() + self.delta + + self.joint = device.joints[rospy.get_param('~controllers/'+name+'/joint')] + + rospy.loginfo("Started LinearController ("+self.name+").") + + def startup(self): + if not self.fake: + self.joint.setCurrentFeedback(self.device.getAnalog(self.analog)) + + def update(self): + now = rospy.Time.now() + if now > self.next: + # read current position + if self.joint.dirty: + if not self.fake: + try: + self.last_reading = self.getPosition() + self.joint.setCurrentFeedback(self.last_reading) + except Exception as e: + print("linear error: ", e) + # update movement + output = self.joint.interpolate(1.0/self.delta.to_sec()) + if self.last != output and not self.fake: + self.setSpeed(output) + self.last = output + self.next = now + self.delta + + def setSpeed(self, speed): + """ Set speed of actuator. """ + if speed > 0: + self.device.setDigital(self.a, 0); self.device.setDigital(self.b, 1); # up + self.device.setDigital(self.p, 1) + elif speed < 0: + self.device.setDigital(self.a, 1); self.device.setDigital(self.b, 0); # down + self.device.setDigital(self.p, 1) + else: + self.device.setDigital(self.p, 0) + + def getPosition(self): + return self.device.getAnalog(self.analog) + + def shutdown(self): + if not self.fake: + self.device.setDigital(self.p, 0) + + def getDiagnostics(self): + """ Get a diagnostics status. """ + msg = DiagnosticStatus() + msg.name = self.name + + msg.level = DiagnosticStatus.OK + msg.message = "OK" + if not self.fake: + msg.values.append(KeyValue("Encoder Reading", str(self.last_reading))) + + return msg + + +class LinearControllerIncremental(LinearControllerAbsolute): + """ A controller for a linear actuator, without absolute encoder. """ + POSITION_L = 100 + POSITION_H = 101 + DIRECTION = 102 + + def __init__(self, device, name): + Controller.__init__(self, device, name) + self.pause = True + + self.a = rospy.get_param('~controllers/'+name+'/motor_a',29) + self.b = rospy.get_param('~controllers/'+name+'/motor_b',30) + self.p = rospy.get_param('~controllers/'+name+'/motor_pwm',31) + self.last = 0 + self.last_reading = 0 + + self.delta = rospy.Duration(1.0/rospy.get_param('~controllers/'+name+'/rate', 10.0)) + self.next = rospy.Time.now() + self.delta + + self.joint = device.joints[rospy.get_param('~controllers/'+name+'/joint')] + + rospy.Service(name+'/zero', Empty, self.zeroCb) + rospy.loginfo("Started LinearControllerIncremental ("+self.name+").") + + def startup(self): + if not self.fake: + self.zeroEncoder() + + def setSpeed(self, speed): + """ Set speed of actuator. We need to set direction for encoder. """ + if speed > 0: + self.device.write(253, self.DIRECTION, [1]) + self.device.setDigital(self.a, 0); self.device.setDigital(self.b, 1); # up + self.device.setDigital(self.p, 1) + elif speed < 0: + self.device.write(253, self.DIRECTION, [0]) + self.device.setDigital(self.a, 1); self.device.setDigital(self.b, 0); # down + self.device.setDigital(self.p, 1) + else: + self.device.setDigital(self.p, 0) + + def getPosition(self): + return unpack('=h', "".join([chr(k) for k in self.device.read(253, self.POSITION_L, 2)]) )[0] + + def zeroEncoder(self, timeout=15.0): + rospy.loginfo(self.name + ': zeroing encoder') + self.setSpeed(1) + last_pos = None + for i in range(int(timeout)): + if rospy.is_shutdown(): + return + try: + new_pos = self.getPosition() + except: + pass + if last_pos == new_pos: + break + last_pos = new_pos + rospy.sleep(1) + self.setSpeed(0) + self.device.write(253, self.POSITION_L, [0, 0]) + self.joint.setCurrentFeedback(0) + + def zeroCb(self, msg): + if not self.fake: + self.zeroEncoder(15.0) + return EmptyResponse() + + def shutdown(self): + if not self.fake: + self.setSpeed(0) + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/publishers.py b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/publishers.py new file mode 100644 index 0000000..68953a0 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/publishers.py @@ -0,0 +1,92 @@ +#!/usr/bin/env python + +""" + diagnostics.py - diagnostic output code + Copyright (c) 2011 Vanadium Labs LLC. All right reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Vanadium Labs LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +""" + +import rospy +from diagnostic_msgs.msg import DiagnosticArray +from sensor_msgs.msg import JointState + +class DiagnosticsPublisher: + """ Class to handle publications of joint_states message. """ + + def __init__(self): + self.t_delta = rospy.Duration(1.0/rospy.get_param("~diagnostic_rate", 1.0)) + self.t_next = rospy.Time.now() + self.t_delta + self.pub = rospy.Publisher('diagnostics', DiagnosticArray, queue_size=5) + + def update(self, joints, controllers): + """ Publish diagnostics. """ + now = rospy.Time.now() + if now > self.t_next: + # create message + msg = DiagnosticArray() + msg.header.stamp = now + for controller in controllers: + d = controller.getDiagnostics() + if d: + msg.status.append(d) + for joint in joints: + d = joint.getDiagnostics() + if d: + msg.status.append(d) + # publish and update stats + self.pub.publish(msg) + self.t_next = now + self.t_delta + + +class JointStatePublisher: + """ Class to handle publications of joint_states message. """ + + def __init__(self): + # parameters: throttle rate and geometry + self.rate = rospy.get_param("~read_rate", 10.0) + self.t_delta = rospy.Duration(1.0/self.rate) + self.t_next = rospy.Time.now() + self.t_delta + + # subscriber + self.pub = rospy.Publisher('joint_states', JointState, queue_size=5) + + def update(self, joints, controllers): + """ publish joint states. """ + if rospy.Time.now() > self.t_next: + msg = JointState() + msg.header.stamp = rospy.Time.now() + msg.name = list() + msg.position = list() + msg.velocity = list() + for joint in joints: + msg.name.append(joint.name) + msg.position.append(joint.position) + msg.velocity.append(joint.velocity) + for controller in controllers: + msg.name += controller.joint_names + msg.position += controller.joint_positions + msg.velocity += controller.joint_velocities + self.pub.publish(msg) + self.t_next = rospy.Time.now() + self.t_delta + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/servo_controller.py b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/servo_controller.py new file mode 100644 index 0000000..03bcedd --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_python/src/arbotix_python/servo_controller.py @@ -0,0 +1,470 @@ +#!/usr/bin/env python + +""" + servo_controller.py: classes for servo interaction + Copyright (c) 2011-2013 Vanadium Labs LLC. All right reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Vanadium Labs LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +""" + +import rospy + +from math import radians + +from std_msgs.msg import Float64 +from arbotix_msgs.srv import * +from diagnostic_msgs.msg import * + +from arbotix_python.ax12 import * +from arbotix_python.joints import * + +class DynamixelServo(Joint): + + def __init__(self, device, name, ns="~joints"): + Joint.__init__(self, device, name) + n = ns+"/"+name+"/" + + self.id = int(rospy.get_param(n+"id")) + self.ticks = rospy.get_param(n+"ticks", 1024) + self.neutral = rospy.get_param(n+"neutral", self.ticks/2) + if self.ticks == 4096: + self.range = 360.0 + else: + self.range = 300.0 + self.range = rospy.get_param(n+"range", self.range) + self.rad_per_tick = radians(self.range)/self.ticks + + # TODO: load these from URDF + self.max_angle = radians(rospy.get_param(n+"max_angle",self.range/2.0)) + self.min_angle = radians(rospy.get_param(n+"min_angle",-self.range/2.0)) + self.max_speed = radians(rospy.get_param(n+"max_speed",684.0)) + # max speed = 114 rpm - 684 deg/s + self.invert = rospy.get_param(n+"invert",False) + self.readable = rospy.get_param(n+"readable",True) + + self.status = "OK" + self.level = DiagnosticStatus.OK + + self.dirty = False # newly updated position? + self.position = 0.0 # current position, as returned by servo (radians) + self.desired = 0.0 # desired position (radians) + self.last_cmd = 0.0 # last position sent (radians) + self.velocity = 0.0 # moving speed + self.enabled = True # can we take commands? + self.active = False # are we under torque control? + self.last = rospy.Time.now() + + self.reads = 0.0 # number of reads + self.errors = 0 # number of failed reads + self.total_reads = 0.0 + self.total_errors = [0.0] + + self.voltage = 0.0 + self.temperature = 0.0 + + # ROS interfaces + rospy.Subscriber(name+'/command', Float64, self.commandCb) + rospy.Service(name+'/relax', Relax, self.relaxCb) + rospy.Service(name+'/enable', Enable, self.enableCb) + rospy.Service(name+'/set_speed', SetSpeed, self.setSpeedCb) + + def interpolate(self, frame): + """ Get the new position to move to, in ticks. """ + if self.enabled and self.active and self.dirty: + # compute command, limit velocity + cmd = self.desired - self.last_cmd + if cmd > self.max_speed/frame: + cmd = self.max_speed/frame + elif cmd < -self.max_speed/frame: + cmd = -self.max_speed/frame + # compute angle, apply limits + ticks = self.angleToTicks(self.last_cmd + cmd) + self.last_cmd = self.ticksToAngle(ticks) + self.speed = cmd*frame + # cap movement + if self.last_cmd == self.desired: + self.dirty = False + # when fake, need to set position/velocity here + if self.device.fake: + last_angle = self.position + self.position = self.last_cmd + t = rospy.Time.now() + self.velocity = (self.position - last_angle)/((t - self.last).to_nsec()/1000000000.0) + self.last = t + return None + return int(ticks) + else: + # when fake, need to reset velocity to 0 here. + if self.device.fake: + self.velocity = 0.0 + self.last = rospy.Time.now() + return None + + def setCurrentFeedback(self, reading): + """ Update angle in radians by reading from servo, or by + using position passed in from a sync read (in ticks). """ + if reading > -1 and reading < self.ticks: # check validity + self.reads += 1 + self.total_reads += 1 + last_angle = self.position + self.position = self.ticksToAngle(reading) + # update velocity estimate + t = rospy.Time.now() + self.velocity = (self.position - last_angle)/((t - self.last).to_nsec()/1000000000.0) + self.last = t + else: + rospy.logdebug("Invalid read of servo: id " + str(self.id) + ", value " + str(reading)) + self.errors += 1 + self.total_reads += 1 + return + if not self.active: + self.last_cmd = self.position + + def setControlOutput(self, position): + """ Set the position that controller is moving to. + Returns output value in ticks. """ + if self.enabled: + ticks = self.angleToTicks(position) + self.desired = position + self.dirty = True + self.active = True + return int(ticks) + return -1 + + def getDiagnostics(self): + """ Get a diagnostics status. """ + msg = DiagnosticStatus() + msg.name = self.name + if self.temperature > 60: # TODO: read this value from eeprom + self.status = "OVERHEATED, SHUTDOWN" + self.level = DiagnosticStatus.ERROR + elif self.temperature > 50 and self.status != "OVERHEATED, SHUTDOWN": + self.status = "OVERHEATING" + self.level = DiagnosticStatus.WARN + elif self.status != "OVERHEATED, SHUTDOWN": + self.status = "OK" + self.level = DiagnosticStatus.OK + msg.level = self.level + msg.message = self.status + msg.values.append(KeyValue("Position", str(self.position))) + msg.values.append(KeyValue("Temperature", str(self.temperature))) + msg.values.append(KeyValue("Voltage", str(self.voltage))) + if self.reads + self.errors > 100: + self.total_errors.append((self.errors*100.0)/(self.reads+self.errors)) + if len(self.total_errors) > 10: + self.total_errors = self.total_errors[-10:] + self.reads = 0 + self.errors = 0 + msg.values.append(KeyValue("Reads", str(self.total_reads))) + msg.values.append(KeyValue("Error Rate", str(sum(self.total_errors)/len(self.total_errors))+"%" )) + if self.active: + msg.values.append(KeyValue("Torque", "ON")) + else: + msg.values.append(KeyValue("Torque", "OFF")) + return msg + + def angleToTicks(self, angle): + """ Convert an angle to ticks, applying limits. """ + ticks = self.neutral + (angle/self.rad_per_tick) + if self.invert: + ticks = self.neutral - (angle/self.rad_per_tick) + if ticks >= self.ticks: + return self.ticks-1.0 + if ticks < 0: + return 0 + return ticks + + def ticksToAngle(self, ticks): + """ Convert an ticks to angle, applying limits. """ + angle = (ticks - self.neutral) * self.rad_per_tick + if self.invert: + angle = -1.0 * angle + return angle + + def speedToTicks(self, rads_per_sec): + """ Convert speed in radians per second to ticks, applying limits. """ + ticks = self.ticks * rads_per_sec / self.max_speed + if ticks >= self.ticks: + return self.ticks-1.0 + if ticks < 0: + return 0 + return ticks + + def enableCb(self, req): + """ Turn on/off servo torque, so that it is pose-able. """ + if req.enable: + self.enabled = True + else: + if not self.device.fake: + self.device.disableTorque(self.id) + self.dirty = False + self.enabled = False + self.active = False + return EnableResponse(self.enabled) + + def relaxCb(self, req): + """ Turn off servo torque, so that it is pose-able. """ + if not self.device.fake: + self.device.disableTorque(self.id) + self.dirty = False + self.active = False + return RelaxResponse() + + def commandCb(self, req): + """ Float64 style command input. """ + if self.enabled: + if self.controller and self.controller.active(): + # Under and action control, do not interfere + return + elif self.desired != req.data or not self.active: + self.dirty = True + self.active = True + self.desired = req.data + + def setSpeedCb(self, req): + """ Set servo speed. Requested speed is in radians per second. + Don't allow 0 which means "max speed" to a Dynamixel in joint mode. """ + if not self.device.fake: + ticks_per_sec = max(1, int(self.speedToTicks(req.speed))) + self.device.setSpeed(self.id, ticks_per_sec) + return SetSpeedResponse() + +class HobbyServo(Joint): + + def __init__(self, device, name, ns="~joints"): + Joint.__init__(self, device, name) + n = ns+"/"+name+"/" + + self.id = int(rospy.get_param(n+"id")) + self.ticks = rospy.get_param(n+"ticks", 2000) + self.neutral = rospy.get_param(n+"neutral", 1500) + self.range = rospy.get_param(n+"range", 180) + self.rad_per_tick = radians(self.range)/self.ticks + + # TODO: load these from URDF + self.max_angle = radians(rospy.get_param(n+"max_angle",self.range/2.0)) + self.min_angle = radians(rospy.get_param(n+"min_angle",-self.range/2.0)) + self.max_speed = radians(rospy.get_param(n+"max_speed",90.0)) + + self.invert = rospy.get_param(n+"invert",False) + + self.dirty = False # newly updated position? + self.position = 0.0 # current position, as returned by servo (radians) + self.desired = 0.0 # desired position (radians) + self.last_cmd = 0.0 # last position sent (radians) + self.velocity = 0.0 # moving speed + self.last = rospy.Time.now() + + # ROS interfaces + rospy.Subscriber(name+'/command', Float64, self.commandCb) + + def interpolate(self, frame): + """ Get the new position to move to, in ticks. """ + if self.dirty: + # compute command, limit velocity + cmd = self.desired - self.last_cmd + if cmd > self.max_speed/frame: + cmd = self.max_speed/frame + elif cmd < -self.max_speed/frame: + cmd = -self.max_speed/frame + # compute angle, apply limits + ticks = self.angleToTicks(self.last_cmd + cmd) + self.last_cmd = self.ticksToAngle(ticks) + self.speed = cmd*frame + # cap movement + if self.last_cmd == self.desired: + self.dirty = False + if self.device.fake: + self.position = self.last_cmd + return None + return int(ticks) + else: + return None + + def setCurrentFeedback(self, raw_data): + """ Update angle in radians by reading from servo, or by + using position passed in from a sync read (in ticks). """ + return None + + def setControlOutput(self, position): + """ Set the position that controller is moving to. + Returns output value in ticks. """ + ticks = self.angleToTicks(position) + self.desired = position + self.dirty = True + return int(ticks) + + def getDiagnostics(self): + """ Get a diagnostics status. """ + msg = DiagnosticStatus() + msg.name = self.name + msg.level = DiagnosticStatus.OK + msg.message = "OK" + msg.values.append(KeyValue("Position", str(self.position))) + return msg + + def angleToTicks(self, angle): + """ Convert an angle to ticks, applying limits. """ + ticks = self.neutral + (angle/self.rad_per_tick) + if self.invert: + ticks = self.neutral - (angle/self.rad_per_tick) + if ticks >= self.ticks: + return self.ticks-1.0 + if ticks < 0: + return 0 + return ticks + + def ticksToAngle(self, ticks): + """ Convert an ticks to angle, applying limits. """ + angle = (ticks - self.neutral) * self.rad_per_tick + if self.invert: + angle = -1.0 * angle + return angle + + def commandCb(self, req): + """ Float64 style command input. """ + if self.controller and self.controller.active(): + # Under and action control, do not interfere + return + else: + self.dirty = True + self.desired = req.data + + +from arbotix_python.controllers import * + +class ServoController(Controller): + + def __init__(self, device, name): + Controller.__init__(self, device, name) + self.dynamixels = list() + self.hobbyservos = list() + self.iter = 0 + + # steal some servos + for joint in device.joints.values(): + if isinstance(joint, DynamixelServo): + self.dynamixels.append(joint) + elif isinstance(joint, HobbyServo): + self.hobbyservos.append(joint) + + self.w_delta = rospy.Duration(1.0/rospy.get_param("~write_rate", 10.0)) + self.w_next = rospy.Time.now() + self.w_delta + + self.r_delta = rospy.Duration(1.0/rospy.get_param("~read_rate", 10.0)) + self.r_next = rospy.Time.now() + self.r_delta + + rospy.Service(name + '/relax_all', Relax, self.relaxCb) + rospy.Service(name + '/enable_all', Enable, self.enableCb) + + def update(self): + """ Read servo positions, update them. """ + if rospy.Time.now() > self.r_next and not self.fake: + if self.device.use_sync_read: + # arbotix/servostik/wifi board sync_read + synclist = list() + for joint in self.dynamixels: + if joint.readable: + synclist.append(joint.id) + if len(synclist) > 0: + val = self.device.syncRead(synclist, P_PRESENT_POSITION_L, 2) + if val: + for joint in self.dynamixels: + try: + i = synclist.index(joint.id)*2 + joint.setCurrentFeedback(val[i]+(val[i+1]<<8)) + except: + # not a readable servo + continue + else: + # direct connection, or other hardware with no sync_read capability + for joint in self.dynamixels: + joint.setCurrentFeedback(self.device.getPosition(joint.id)) + self.r_next = rospy.Time.now() + self.r_delta + + if rospy.Time.now() > self.w_next: + if self.device.use_sync_write and not self.fake: + syncpkt = list() + for joint in self.dynamixels: + v = joint.interpolate(1.0/self.w_delta.to_sec()) + if v != None: # if was dirty + syncpkt.append([joint.id,int(v)%256,int(v)>>8]) + if len(syncpkt) > 0: + self.device.syncWrite(P_GOAL_POSITION_L,syncpkt) + else: + for joint in self.dynamixels: + v = joint.interpolate(1.0/self.w_delta.to_sec()) + if v != None: # if was dirty + self.device.setPosition(joint.id, int(v)) + for joint in self.hobbyservos: + v = joint.interpolate(1.0/self.w_delta.to_sec()) + if v != None: # if it was dirty + self.device.setServo(joint.id, v) + self.w_next = rospy.Time.now() + self.w_delta + + def getDiagnostics(self): + """ Update status of servos (voltages, temperatures). """ + if self.iter % 5 == 0 and not self.fake: + if self.device.use_sync_read: + # arbotix/servostik/wifi board sync_read + synclist = list() + for joint in self.dynamixels: + if joint.readable: + synclist.append(joint.id) + if len(synclist) > 0: + val = self.device.syncRead(synclist, P_PRESENT_VOLTAGE, 2) + if val: + for joint in self.dynamixels: + try: + i = synclist.index(joint.id)*2 + if val[i] < 250: + joint.voltage = val[i]/10.0 + if val[i+1] < 100: + joint.temperature = val[i+1] + except: + # not a readable servo + continue + else: + # direct connection, or other hardware with no sync_read capability + for joint in self.dynamixels: + if joint.readable: + val = self.device.read(joint.id, P_PRESENT_VOLTAGE, 2) + try: + joint.voltage = val[0] + joint.temperature = val[1] + except: + continue + self.iter += 1 + return None + + def enableCb(self, req): + """ Turn on/off all servos torque, so that they are pose-able. """ + for joint in self.dynamixels: + resp = joint.enableCb(req) + return resp + + def relaxCb(self, req): + """ Turn off all servos torque, so that they are pose-able. """ + for joint in self.dynamixels: + resp = joint.relaxCb(req) + return resp diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/CHANGELOG.rst b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/CHANGELOG.rst new file mode 100644 index 0000000..4e786b3 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/CHANGELOG.rst @@ -0,0 +1,36 @@ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Changelog for package arbotix_sensors +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +0.11.0 (2020-12-29) +------------------- +* Update all python shebangs to python3 + rosdep dependency (`#48 `_) + Co-authored-by: Murat Calis +* Merge pull request `#22 `_ from corot/indigo-devel + roslib.load_manifest should not be used on catkin packages +* roslib.load_manifest should not be used on catkin packages according to http://wiki.ros.org/PyStyleGuide +* Contributors: Jorge Santos, Michael Ferguson, calismurat + +0.10.0 (2014-07-14) +------------------- +* Set queue_size=5 on all publishers +* Contributors: Jorge Santos + +0.9.2 (2014-02-12) +------------------ + +0.9.1 (2014-01-28) +------------------ + +0.9.0 (2013-08-22) +------------------ + +0.8.2 (2013-03-28) +------------------ + +0.8.1 (2013-03-09) +------------------ + +0.8.0 (2013-02-21) +------------------ +* import drivers and catkinize diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/CMakeLists.txt new file mode 100644 index 0000000..59dc372 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/CMakeLists.txt @@ -0,0 +1,10 @@ +cmake_minimum_required(VERSION 3.0.2) +project(arbotix_sensors) + +find_package(catkin REQUIRED) +catkin_package() +catkin_python_setup() + +install(PROGRAMS bin/ir_ranger.py bin/max_sonar.py + DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +) diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/bin/ir_ranger.py b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/bin/ir_ranger.py new file mode 100644 index 0000000..381d97e --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/bin/ir_ranger.py @@ -0,0 +1,82 @@ +#!/usr/bin/env python + +""" + ir_ranger.py - convert analog stream into range measurements + Copyright (c) 2011 Vanadium Labs LLC. All right reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Vanadium Labs LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +""" + +import rospy + +from sensor_msgs.msg import Range +from arbotix_msgs.msg import Analog +from arbotix_msgs.srv import SetupChannel, SetupChannelRequest + +from arbotix_python.sensors import * + +class ir_ranger: + def __init__(self): + rospy.init_node("ir_ranger") + + # sensor type: choices are A710YK (40-216"), A02YK (8-60"), A21YK (4-30") + self.sensor_t = rospy.get_param("~type","GP2D12") + if self.sensor_t == "A710YK" or self.sensor_t == "ultralong": + self.sensor = gpA710YK() + elif self.sensor_t == "A02YK" or self.sensor_t == "long": + self.sensor = gpA02YK() + else: + self.sensor = gp2d12() + + # start channel broadcast using SetupAnalogIn + rospy.wait_for_service('arbotix/SetupAnalogIn') + analog_srv = rospy.ServiceProxy('arbotix/SetupAnalogIn', SetupChannel) + + req = SetupChannelRequest() + req.topic_name = rospy.get_param("~name") + req.pin = rospy.get_param("~pin") + req.rate = int(rospy.get_param("~rate",10)) + analog_srv(req) + + # setup a range message to use + self.msg = Range() + self.msg.radiation_type = self.sensor.radiation_type + self.msg.field_of_view = self.sensor.field_of_view + self.msg.min_range = self.sensor.min_range + self.msg.max_range = self.sensor.max_range + + # publish/subscribe + self.pub = rospy.Publisher("ir_range", Range, queue_size=5) + rospy.Subscriber("arbotix/"+req.topic_name, Analog, self.readingCb) + + rospy.spin() + + def readingCb(self, msg): + # convert msg.value into range.range + self.msg.header.stamp = rospy.Time.now() + self.msg.range = self.sensor.convert(msg.value<<2) + self.pub.publish(self.msg) + +if __name__=="__main__": + ir_ranger() + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/bin/max_sonar.py b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/bin/max_sonar.py new file mode 100644 index 0000000..c50298f --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/bin/max_sonar.py @@ -0,0 +1,75 @@ +#!/usr/bin/env python + +""" + max_sonar.py - convert analog stream into range measurements + Copyright (c) 2011 Vanadium Labs LLC. All right reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Vanadium Labs LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +""" + +import rospy + +from sensor_msgs.msg import Range +from arbotix_msgs.msg import Analog +from arbotix_msgs.srv import SetupChannel, SetupChannelRequest + +from arbotix_python.sensors import * + +class max_sonar: + def __init__(self): + rospy.init_node("max_sonar") + + self.sensor = maxSonar() + + # start channel broadcast using SetupAnalogIn + rospy.wait_for_service('arbotix/SetupAnalogIn') + analog_srv = rospy.ServiceProxy('arbotix/SetupAnalogIn', SetupChannel) + + req = SetupChannelRequest() + req.topic_name = rospy.get_param("~name") + req.pin = rospy.get_param("~pin") + req.rate = int(rospy.get_param("~rate",10)) + analog_srv(req) + + # setup a range message to use + self.msg = Range() + self.msg.radiation_type = self.sensor.radiation_type + self.msg.field_of_view = self.sensor.field_of_view + self.msg.min_range = self.sensor.min_range + self.msg.max_range = self.sensor.max_range + + # publish/subscribe + self.pub = rospy.Publisher("sonar_range", Range, queue_size=5) + rospy.Subscriber("arbotix/"+req.topic_name, Analog, self.readingCb) + + rospy.spin() + + def readingCb(self, msg): + # convert msg.value into range.range + self.msg.header.stamp = rospy.Time.now() + self.msg.range = self.sensor.convert(msg.value<<2) + self.pub.publish(self.msg) + +if __name__=="__main__": + max_sonar() + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/package.xml new file mode 100644 index 0000000..d35c11f --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/package.xml @@ -0,0 +1,15 @@ + + arbotix_sensors + 0.11.0 + + Extends the arbotix_node package with a number of more sophisticated ROS wrappers for common devices. + + Michael Ferguson + Michael Ferguson + BSD + http://ros.org/wiki/arbotix_sensors + + catkin + + arbotix_python + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/setup.py b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/setup.py new file mode 100644 index 0000000..16ef241 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/setup.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python + +from distutils.core import setup +from catkin_pkg.python_setup import generate_distutils_setup + +d = generate_distutils_setup( + packages=['arbotix_sensors'], + package_dir={'': 'src'}, + ) + +setup(**d) diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/src/arbotix_sensors/__init__.py b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/src/arbotix_sensors/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/src/arbotix_sensors/sensors.py b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/src/arbotix_sensors/sensors.py new file mode 100644 index 0000000..429f2e5 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/arbotix_ros/arbotix_sensors/src/arbotix_sensors/sensors.py @@ -0,0 +1,86 @@ +#!/usr/bin/env python + +""" + sensors.py - various conversions from raw analog to sensor range + Copyright (c) 2011 Vanadium Labs LLC. All right reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Vanadium Labs LLC nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL VANADIUM LABS BE LIABLE FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, + OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +""" + +from sensor_msgs.msg import Range + +class SharpIR: + radiation_type = Range.INFRARED + field_of_view = 0.001 + min_range = 0.0 + max_range = 1.0 + + def convert(self, raw): + """ Convert raw analog (10-bit) to distance. """ + return raw + +class gpA710YK(SharpIR): + """ Ultra long-range Sharp IR sensor. """ + min_range = 0.75 + max_range = 5.50 + + def convert(self, raw): + """ Convert raw analog (10-bit) to distance. """ + if raw > 100: + return (497.0/(raw-56)) + else: + return self.max_range+0.1 + +class gpA02YK(SharpIR): + min_range = 0.20 + max_range = 1.50 + + def convert(self, raw): + """ Convert raw analog (10-bit) to distance. """ + if raw > 80: + return (115.0/(raw-12)) + else: + return self.max_range+0.1 + +class gp2d12(SharpIR): + """ The typical GP2D12 IR ranger. """ + min_range = 0.10 + max_range = 0.80 + + def convert(self, raw): + """ Convert raw analog (10-bit) to distance. """ + if raw > 40: + return (52.0/(raw-12)) + else: + return self.max_range+0.1 + +class maxSonar(): + radiation_type = Range.ULTRASOUND + field_of_view = 0.785398163 + min_range = 0.0 + max_range = 6.4516 + + def convert(self, raw): + """ Convert raw analog (10-bit) to distance. """ + return 12.7 * (raw/1024.0) + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/common_utils/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/common_utils/CMakeLists.txt new file mode 100644 index 0000000..c9e5c3a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/common_utils/CMakeLists.txt @@ -0,0 +1,66 @@ +cmake_minimum_required(VERSION 3.0.2) +project(common_utils) + +set(ROS_DISTRO $ENV{ROS_DISTRO}) +if (${ROS_DISTRO} STREQUAL "kinetic") + add_compile_options(-std=c++11) +endif() + +## 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 + tf +) + +## System dependencies are found with CMake's conventions +find_package(Boost REQUIRED COMPONENTS system thread) +find_package(OpenCV) + +catkin_package( + INCLUDE_DIRS include +# LIBRARIES common_utils + # CATKIN_DEPENDS roscpp + # 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} + ${OpenCV_INCLUDE_DIRES} + ${Boost_INCLUDE_DIRES} +) + +# Declare a C++ library +add_library(${PROJECT_NAME} + src/common_utils.cpp +) + +# Specify libraries to link a library or executable target against +target_link_libraries(${PROJECT_NAME} + ${catkin_LIBRARIES} + ${OpenCV_LIBRARIES} + ${Boost_LIBRARIES} +) + +############# +## Install ## +############# + +# 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} +) + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/common_utils/include/common_utils/common_utils.h b/Code/RK3588/PIBot_ROS/ros_ws/src/common_utils/include/common_utils/common_utils.h new file mode 100644 index 0000000..ae00534 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/common_utils/include/common_utils/common_utils.h @@ -0,0 +1,78 @@ +#ifndef _COMMON_UTILS_H_ +#define _COMMON_UTILS_H_ + +// ros// +#include +#include +#include +#include +// std// +#include +#include +#include +#include +#include +#include +#include +#include +// opencv// +#include + +#include +#include + +using namespace ros; +using namespace std; +using namespace cv; + +#define DEGREE_TO_RADIAN(X) X* CV_PI / 180.0f +#define RADIAN_TO_DEGREE(X) X * 180.0f / CV_PI + +#define ANGLE_THRESHOLD 180.0f + +#define SPARSE_PATH 1 + +enum LDSDirection { LDS_FRONT = 0, + LDS_LEFT, + LDS_BACK, + LDS_RIGHT }; + +enum RotateDirection { + CLOCKWISE, //角度减小// + ANTICLOCKWISE +}; + +// Regions// +struct CleanRegion { + CleanRegion(string name) { + regionName = name; + floorType = 0; + sweepType = 0; + regionPoints.clear(); + } + + string regionName; + int floorType; + int sweepType; + vector regionPoints; +}; + +// utils methods// +float calcDistance(const Point& p1, const Point& p2); +float calcDistance(const Point2f& p1, const Point2f& p2); + +//两个点位之间角度// +float calcDegreeAngle(const Point& startPoint, const Point& endPoint); +float calcRadianAngle(const Point& startPoint, const Point& endPoint); + +float calcDegreeAngle(const Point2f& startPoint, const Point2f& endPoint); + +//计算两个角度差// +float calcAngleDiff(float angle1, float angle2); + +//沿着路径的点,计算角度// +float calcPathAngle(const vector& pathPoints, int index); + +RotateDirection calcRotateDirection(float robot_angle, float path_angle); + +#endif diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/common_utils/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/common_utils/package.xml new file mode 100644 index 0000000..6b84ddd --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/common_utils/package.xml @@ -0,0 +1,66 @@ + + + common_utils + 0.0.0 + The common_utils package + + + + + pibot + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + roscpp + tf + + roscpp + + roscpp + tf + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/common_utils/src/common_utils.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/common_utils/src/common_utils.cpp new file mode 100644 index 0000000..97c7e22 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/common_utils/src/common_utils.cpp @@ -0,0 +1,82 @@ +#include "common_utils/common_utils.h" + +float calcDistance(const Point& p1, const Point& p2) { + float distance = + sqrtf((p1.x - p2.x) * (p1.x - p2.x) + (p1.y - p2.y) * (p1.y - p2.y)); + return distance; +} + +float calcDistance(const Point2f& p1, const Point2f& p2) { + float distance = + sqrtf((p1.x - p2.x) * (p1.x - p2.x) + (p1.y - p2.y) * (p1.y - p2.y)); + return distance; +} + +float calcDegreeAngle(const Point& startPoint, const Point& endPoint) { + float angle = atan2((endPoint.y - startPoint.y), (endPoint.x - startPoint.x)); + angle = RADIAN_TO_DEGREE(angle); + + return angle; +} + +float calcDegreeAngle(const Point2f& startPoint, const Point2f& endPoint) { + float angle = atan2((endPoint.y - startPoint.y), (endPoint.x - startPoint.x)); + angle = RADIAN_TO_DEGREE(angle); + + return angle; +} + +float calcRadianAngle(const Point& startPoint, const Point& endPoint) { + float angle = atan2((endPoint.y - startPoint.y), (endPoint.x - startPoint.x)); + + return angle; +} + +float calcPathAngle(const vector& pathPoints, int index) { + if (index > pathPoints.size() - 2) { + return 0; + } + + float angle = calcDegreeAngle(pathPoints[index], pathPoints[index + 1]); + + return angle; +} + +float calcAngleDiff(float angle1, float angle2) { + // degree差值// + if (angle1 < 0) { + angle1 += 360.0f; + } + + if (angle2 < 0) { + angle2 += 360.0f; + } + + float diff = abs(angle1 - angle2); + if (diff > 180.0f) { + diff = 360.0f - diff; + } + + return diff; +} + +RotateDirection calcRotateDirection(float robot_angle, float path_angle) { + RotateDirection rotateDirection; + + if (robot_angle < 0) { + robot_angle += 360.0f; + } + + if (path_angle < 0) { + path_angle += 360.0f; + } + + if (robot_angle > path_angle) { + rotateDirection = + (robot_angle - path_angle) > 180.0f ? ANTICLOCKWISE : CLOCKWISE; + } else { + rotateDirection = + (path_angle - robot_angle) > 180.0f ? CLOCKWISE : ANTICLOCKWISE; + } + return rotateDirection; +} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/CHANGELOG.rst b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/CHANGELOG.rst new file mode 100644 index 0000000..6c9ff85 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/CHANGELOG.rst @@ -0,0 +1,85 @@ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Changelog for package imu_complementary_filter +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +1.1.7 (2019-05-06) +------------------ +* Remove junk xml (`#93 `_) +* Fix C++14 builds (`#89 `_) +* Contributors: David V. Lu!!, Paul Bovbel + +1.1.6 (2018-05-25) +------------------ +* Add std dev parameter to orientation estimate from filter (`#85 `_) + Similar to `#41 `_, but not using dynamic_reconfigure as not implemented for complementary filter +* Contributors: Stefan Kohlbrecher + +1.1.4 (2017-05-22) +------------------ + +1.1.3 (2017-03-10) +------------------ +* complementary_filter: move const initializations out of header + Initialization of static consts other than int (here: float) inside the + class declaration is not permitted in C++. It works in gcc (due to a + non-standard extension), but throws an error in C++11. +* Contributors: Martin Guenther + +1.1.2 (2016-09-07) +------------------ + +1.1.1 (2016-09-07) +------------------ + +1.1.0 (2016-04-25) +------------------ + +1.0.11 (2016-04-22) +------------------- + +1.0.10 (2016-04-22) +------------------- +* Remove Eigen dependency + Eigen is not actually used anywhere. Thanks @asimay! +* Removed main function from shared library +* Contributors: Martin Guenther, Matthias Nieuwenhuisen + +1.0.9 (2015-10-16) +------------------ +* complementary: Add Eigen dependency + Fixes `#54 `_. +* Contributors: Martin Günther + +1.0.8 (2015-10-07) +------------------ + +1.0.7 (2015-10-07) +------------------ +* Allow remapping imu namespace +* Publish RPY as Vector3Stamped +* Add params: constant_dt, publish_tf, reverse_tf, publish_debug_topics +* Use MagneticField instead of Vector3 +* Contributors: Martin Günther + +1.0.6 (2015-10-06) +------------------ +* Add new package: imu_complementary_filter +* Contributors: Roberto G. Valentini, Martin Günther, Michael Görner + +1.0.5 (2015-06-24) +------------------ + +1.0.4 (2015-05-06) +------------------ + +1.0.3 (2015-01-29) +------------------ + +1.0.2 (2015-01-27) +------------------ + +1.0.1 (2014-12-10) +------------------ + +1.0.0 (2014-11-28) +------------------ diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/CMakeLists.txt new file mode 100644 index 0000000..c1619aa --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/CMakeLists.txt @@ -0,0 +1,59 @@ +cmake_minimum_required(VERSION 2.8.3) +project(imu_complementary_filter) + +find_package(Boost REQUIRED COMPONENTS thread) + +find_package(catkin REQUIRED COMPONENTS + cmake_modules + message_filters + roscpp + sensor_msgs + std_msgs + tf +) + +catkin_package( + INCLUDE_DIRS include + LIBRARIES complementary_filter + CATKIN_DEPENDS message_filters roscpp sensor_msgs std_msgs tf +) + +include_directories( + include + ${catkin_INCLUDE_DIRS} + ${Boost_INCLUDE_DIRS} +) + +## Declare a cpp library +add_library(complementary_filter + src/complementary_filter.cpp + src/complementary_filter_ros.cpp + include/imu_complementary_filter/complementary_filter.h + include/imu_complementary_filter/complementary_filter_ros.h +) +target_link_libraries(complementary_filter ${catkin_LIBRARIES} ${Boost_LIBRARIES}) + + +# create complementary_filter_node executable +add_executable(complementary_filter_node + src/complementary_filter_node.cpp) +target_link_libraries(complementary_filter_node complementary_filter ${catkin_LIBRARIES}) + +install(TARGETS complementary_filter + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +) + +install(TARGETS complementary_filter_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 +) diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/include/imu_complementary_filter/complementary_filter.h b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/include/imu_complementary_filter/complementary_filter.h new file mode 100644 index 0000000..69156a5 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/include/imu_complementary_filter/complementary_filter.h @@ -0,0 +1,180 @@ +/* + @author Roberto G. Valenti + + @section LICENSE + Copyright (c) 2015, City University of New York + CCNY Robotics Lab + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Neither the name of the City College of New York nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL the CCNY ROBOTICS LAB BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef IMU_TOOLS_COMPLEMENTARY_FILTER_H +#define IMU_TOOLS_COMPLEMENTARY_FILTER_H + +namespace imu_tools { + +class ComplementaryFilter +{ + public: + ComplementaryFilter(); + virtual ~ComplementaryFilter(); + + bool setGainAcc(double gain); + bool setGainMag(double gain); + double getGainAcc() const; + double getGainMag() const; + + bool setBiasAlpha(double bias_alpha); + double getBiasAlpha() const; + + // When the filter is in the steady state, bias estimation will occur (if the + // parameter is enabled). + bool getSteadyState() const; + + void setDoBiasEstimation(bool do_bias_estimation); + bool getDoBiasEstimation() const; + + void setDoAdaptiveGain(bool do_adaptive_gain); + bool getDoAdaptiveGain() const; + + double getAngularVelocityBiasX() const; + double getAngularVelocityBiasY() const; + double getAngularVelocityBiasZ() const; + + // Set the orientation, as a Hamilton Quaternion, of the body frame wrt the + // fixed frame. + void setOrientation(double q0, double q1, double q2, double q3); + + // Get the orientation, as a Hamilton Quaternion, of the body frame wrt the + // fixed frame. + void getOrientation(double& q0, double& q1, double& q2, double& q3) const; + + // Update from accelerometer and gyroscope data. + // [ax, ay, az]: Normalized gravity vector. + // [wx, wy, wz]: Angular veloctiy, in rad / s. + // dt: time delta, in seconds. + void update(double ax, double ay, double az, + double wx, double wy, double wz, + double dt); + + // Update from accelerometer, gyroscope, and magnetometer data. + // [ax, ay, az]: Normalized gravity vector. + // [wx, wy, wz]: Angular veloctiy, in rad / s. + // [mx, my, mz]: Magnetic field, units irrelevant. + // dt: time delta, in seconds. + void update(double ax, double ay, double az, + double wx, double wy, double wz, + double mx, double my, double mz, + double dt); + + private: + static const double kGravity; + static const double gamma_; + // Bias estimation steady state thresholds + static const double kAngularVelocityThreshold; + static const double kAccelerationThreshold; + static const double kDeltaAngularVelocityThreshold; + + // Gain parameter for the complementary filter, belongs in [0, 1]. + double gain_acc_; + double gain_mag_; + + // Bias estimation gain parameter, belongs in [0, 1]. + double bias_alpha_; + + // Parameter whether to do bias estimation or not. + bool do_bias_estimation_; + + // Parameter whether to do adaptive gain or not. + bool do_adaptive_gain_; + + bool initialized_; + bool steady_state_; + + // The orientation as a Hamilton quaternion (q0 is the scalar). Represents + // the orientation of the fixed frame wrt the body frame. + double q0_, q1_, q2_, q3_; + + // Bias in angular velocities; + double wx_prev_, wy_prev_, wz_prev_; + + // Bias in angular velocities; + double wx_bias_, wy_bias_, wz_bias_; + + void updateBiases(double ax, double ay, double az, + double wx, double wy, double wz); + + bool checkState(double ax, double ay, double az, + double wx, double wy, double wz) const; + + void getPrediction( + double wx, double wy, double wz, double dt, + double& q0_pred, double& q1_pred, double& q2_pred, double& q3_pred) const; + + void getMeasurement( + double ax, double ay, double az, + double& q0_meas, double& q1_meas, double& q2_meas, double& q3_meas); + + void getMeasurement( + double ax, double ay, double az, + double mx, double my, double mz, + double& q0_meas, double& q1_meas, double& q2_meas, double& q3_meas); + + void getAccCorrection( + double ax, double ay, double az, + double p0, double p1, double p2, double p3, + double& dq0, double& dq1, double& dq2, double& dq3); + + void getMagCorrection( + double mx, double my, double mz, + double p0, double p1, double p2, double p3, + double& dq0, double& dq1, double& dq2, double& dq3); + + double getAdaptiveGain(double alpha, double ax, double ay, double az); +}; + +// Utility math functions: + +void normalizeVector(double& x, double& y, double& z); + +void normalizeQuaternion(double& q0, double& q1, double& q2, double& q3); + +void scaleQuaternion(double gain, + double& dq0, double& dq1, double& dq2, double& dq3); + +void invertQuaternion( + double q0, double q1, double q2, double q3, + double& q0_inv, double& q1_inv, double& q2_inv, double& q3_inv); + +void quaternionMultiplication(double p0, double p1, double p2, double p3, + double q0, double q1, double q2, double q3, + double& r0, double& r1, double& r2, double& r3); + +void rotateVectorByQuaternion(double x, double y, double z, + double q0, double q1, double q2, double q3, + double& vx, double& vy, double& vz); + +} // namespace imu + +#endif // IMU_TOOLS_COMPLEMENTARY_FILTER_H diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/include/imu_complementary_filter/complementary_filter_ros.h b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/include/imu_complementary_filter/complementary_filter_ros.h new file mode 100644 index 0000000..500440e --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/include/imu_complementary_filter/complementary_filter_ros.h @@ -0,0 +1,108 @@ +/* + @author Roberto G. Valenti + + @section LICENSE + Copyright (c) 2015, City University of New York + CCNY Robotics Lab + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Neither the name of the City College of New York nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL the CCNY ROBOTICS LAB BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef IMU_TOOLS_COMPLEMENTARY_FILTER_ROS_H +#define IMU_TOOLS_COMPLEMENTARY_FILTER_ROS_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "imu_complementary_filter/complementary_filter.h" + +namespace imu_tools { + +class ComplementaryFilterROS +{ + public: + ComplementaryFilterROS(const ros::NodeHandle& nh, + const ros::NodeHandle& nh_private); + virtual ~ComplementaryFilterROS(); + + private: + + // Convenience typedefs + typedef sensor_msgs::Imu ImuMsg; + typedef sensor_msgs::MagneticField MagMsg; + typedef message_filters::sync_policies::ApproximateTime MySyncPolicy; + typedef message_filters::sync_policies::ApproximateTime + SyncPolicy; + typedef message_filters::Synchronizer Synchronizer; + typedef message_filters::Subscriber ImuSubscriber; + typedef message_filters::Subscriber MagSubscriber; + + // ROS-related variables. + ros::NodeHandle nh_; + ros::NodeHandle nh_private_; + + boost::shared_ptr sync_; + boost::shared_ptr imu_subscriber_; + boost::shared_ptr mag_subscriber_; + + ros::Publisher imu_publisher_; + ros::Publisher rpy_publisher_; + ros::Publisher state_publisher_; + tf::TransformBroadcaster tf_broadcaster_; + + // Parameters: + bool use_mag_; + bool publish_tf_; + bool reverse_tf_; + double constant_dt_; + bool publish_debug_topics_; + std::string fixed_frame_; + double orientation_variance_; + + // State variables: + ComplementaryFilter filter_; + ros::Time time_prev_; + bool initialized_filter_; + + void initializeParams(); + void imuCallback(const ImuMsg::ConstPtr& imu_msg_raw); + void imuMagCallback(const ImuMsg::ConstPtr& imu_msg_raw, + const MagMsg::ConstPtr& mav_msg); + void publish(const sensor_msgs::Imu::ConstPtr& imu_msg_raw); + + tf::Quaternion hamiltonToTFQuaternion( + double q0, double q1, double q2, double q3) const; +}; + +} // namespace imu_tools + +#endif // IMU_TOOLS_COMPLEMENTARY_FILTER_ROS_H diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/launch/complementary_filter.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/launch/complementary_filter.launch new file mode 100644 index 0000000..de7ff80 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/launch/complementary_filter.launch @@ -0,0 +1,34 @@ + + + #### Nodelet manager ###################################################### + + + + #### IMU Driver ########################################################### + + + + # supported data rates: 4 8 16 24 32 40 ... 1000 (in ms) + + + + + #### Complementary filter + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/package.xml new file mode 100644 index 0000000..43c55e8 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/package.xml @@ -0,0 +1,25 @@ + + + imu_complementary_filter + 1.1.7 + Filter which fuses angular velocities, accelerations, and (optionally) magnetic readings from a generic IMU device into a quaternion to represent the orientation of the device wrt the global frame. Based on the algorithm by Roberto G. Valenti etal. described in the paper "Keeping a Good Attitude: A Quaternion-Based Orientation Filter for IMUs and MARGs" available at http://www.mdpi.com/1424-8220/15/8/19302 . + + Roberto G. Valenti + BSD + + http://www.mdpi.com/1424-8220/15/8/19302 + Roberto G. Valenti + + catkin + cmake_modules + message_filters + roscpp + sensor_msgs + std_msgs + tf + message_filters + roscpp + sensor_msgs + std_msgs + tf + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/src/complementary_filter.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/src/complementary_filter.cpp new file mode 100644 index 0000000..ba5ae2b --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/src/complementary_filter.cpp @@ -0,0 +1,551 @@ +/* + @author Roberto G. Valenti + + @section LICENSE + Copyright (c) 2015, City University of New York + CCNY Robotics Lab + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Neither the name of the City College of New York nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL the CCNY ROBOTICS LAB BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include "imu_complementary_filter/complementary_filter.h" + +#include +#include +#include + +namespace imu_tools { + +const double ComplementaryFilter::kGravity = 9.81; +const double ComplementaryFilter::gamma_ = 0.01; +// Bias estimation steady state thresholds +const double ComplementaryFilter::kAngularVelocityThreshold = 0.2; +const double ComplementaryFilter::kAccelerationThreshold = 0.1; +const double ComplementaryFilter::kDeltaAngularVelocityThreshold = 0.01; + +ComplementaryFilter::ComplementaryFilter() : + gain_acc_(0.01), + gain_mag_(0.01), + bias_alpha_(0.01), + do_bias_estimation_(true), + do_adaptive_gain_(false), + initialized_(false), + steady_state_(false), + q0_(1), q1_(0), q2_(0), q3_(0), + wx_prev_(0), wy_prev_(0), wz_prev_(0), + wx_bias_(0), wy_bias_(0), wz_bias_(0) { } + +ComplementaryFilter::~ComplementaryFilter() { } + +void ComplementaryFilter::setDoBiasEstimation(bool do_bias_estimation) +{ + do_bias_estimation_ = do_bias_estimation; +} + +bool ComplementaryFilter::getDoBiasEstimation() const +{ + return do_bias_estimation_; +} + +void ComplementaryFilter::setDoAdaptiveGain(bool do_adaptive_gain) +{ + do_adaptive_gain_ = do_adaptive_gain; +} + +bool ComplementaryFilter::getDoAdaptiveGain() const +{ + return do_adaptive_gain_; +} + +bool ComplementaryFilter::setGainAcc(double gain) +{ + if (gain >= 0 && gain <= 1.0) + { + gain_acc_ = gain; + return true; + } + else + return false; +} +bool ComplementaryFilter::setGainMag(double gain) +{ + if (gain >= 0 && gain <= 1.0) + { + gain_mag_ = gain; + return true; + } + else + return false; +} + +double ComplementaryFilter::getGainAcc() const +{ + return gain_acc_; +} + +double ComplementaryFilter::getGainMag() const +{ + return gain_mag_; +} + +bool ComplementaryFilter::getSteadyState() const +{ + return steady_state_; +} + +bool ComplementaryFilter::setBiasAlpha(double bias_alpha) +{ + if (bias_alpha >= 0 && bias_alpha <= 1.0) + { + bias_alpha_ = bias_alpha; + return true; + } + else + return false; +} + +double ComplementaryFilter::getBiasAlpha() const +{ + return bias_alpha_; +} + +void ComplementaryFilter::setOrientation( + double q0, double q1, double q2, double q3) +{ + // Set the state to inverse (state is fixed wrt body). + invertQuaternion(q0, q1, q2, q3, q0_, q1_, q2_, q3_); +} + + +double ComplementaryFilter::getAngularVelocityBiasX() const +{ + return wx_bias_; +} + +double ComplementaryFilter::getAngularVelocityBiasY() const +{ + return wy_bias_; +} + +double ComplementaryFilter::getAngularVelocityBiasZ() const +{ + return wz_bias_; +} + +void ComplementaryFilter::update(double ax, double ay, double az, + double wx, double wy, double wz, + double dt) +{ + if (!initialized_) + { + // First time - ignore prediction: + getMeasurement(ax, ay, az, + q0_, q1_, q2_, q3_); + initialized_ = true; + return; + } + + // Bias estimation. + if (do_bias_estimation_) + updateBiases(ax, ay, az, wx, wy, wz); + + // Prediction. + double q0_pred, q1_pred, q2_pred, q3_pred; + getPrediction(wx, wy, wz, dt, + q0_pred, q1_pred, q2_pred, q3_pred); + + // Correction (from acc): + // q_ = q_pred * [(1-gain) * qI + gain * dq_acc] + // where qI = identity quaternion + double dq0_acc, dq1_acc, dq2_acc, dq3_acc; + getAccCorrection(ax, ay, az, + q0_pred, q1_pred, q2_pred, q3_pred, + dq0_acc, dq1_acc, dq2_acc, dq3_acc); + + double gain; + if (do_adaptive_gain_) + { + gain = getAdaptiveGain(gain_acc_, ax, ay, az); + + } + else + { + gain = gain_acc_; + + } + + scaleQuaternion(gain, dq0_acc, dq1_acc, dq2_acc, dq3_acc); + + quaternionMultiplication(q0_pred, q1_pred, q2_pred, q3_pred, + dq0_acc, dq1_acc, dq2_acc, dq3_acc, + q0_, q1_, q2_, q3_); + + normalizeQuaternion(q0_, q1_, q2_, q3_); +} + +void ComplementaryFilter::update(double ax, double ay, double az, + double wx, double wy, double wz, + double mx, double my, double mz, + double dt) +{ + if (!initialized_) + { + // First time - ignore prediction: + getMeasurement(ax, ay, az, + mx, my, mz, + q0_, q1_, q2_, q3_); + initialized_ = true; + return; + } + + // Bias estimation. + if (do_bias_estimation_) + updateBiases(ax, ay, az, wx, wy, wz); + + // Prediction. + double q0_pred, q1_pred, q2_pred, q3_pred; + getPrediction(wx, wy, wz, dt, + q0_pred, q1_pred, q2_pred, q3_pred); + + // Correction (from acc): + // q_temp = q_pred * [(1-gain) * qI + gain * dq_acc] + // where qI = identity quaternion + double dq0_acc, dq1_acc, dq2_acc, dq3_acc; + getAccCorrection(ax, ay, az, + q0_pred, q1_pred, q2_pred, q3_pred, + dq0_acc, dq1_acc, dq2_acc, dq3_acc); + double alpha = gain_acc_; + if (do_adaptive_gain_) + alpha = getAdaptiveGain(gain_acc_, ax, ay, az); + scaleQuaternion(alpha, dq0_acc, dq1_acc, dq2_acc, dq3_acc); + + double q0_temp, q1_temp, q2_temp, q3_temp; + quaternionMultiplication(q0_pred, q1_pred, q2_pred, q3_pred, + dq0_acc, dq1_acc, dq2_acc, dq3_acc, + q0_temp, q1_temp, q2_temp, q3_temp); + + // Correction (from mag): + // q_ = q_temp * [(1-gain) * qI + gain * dq_mag] + // where qI = identity quaternion + double dq0_mag, dq1_mag, dq2_mag, dq3_mag; + getMagCorrection(mx, my, mz, + q0_temp, q1_temp, q2_temp, q3_temp, + dq0_mag, dq1_mag, dq2_mag, dq3_mag); + + scaleQuaternion(gain_mag_, dq0_mag, dq1_mag, dq2_mag, dq3_mag); + + quaternionMultiplication(q0_temp, q1_temp, q2_temp, q3_temp, + dq0_mag, dq1_mag, dq2_mag, dq3_mag, + q0_, q1_, q2_, q3_); + + normalizeQuaternion(q0_, q1_, q2_, q3_); +} + +bool ComplementaryFilter::checkState(double ax, double ay, double az, + double wx, double wy, double wz) const +{ + double acc_magnitude = sqrt(ax*ax + ay*ay + az*az); + if (fabs(acc_magnitude - kGravity) > kAccelerationThreshold) + return false; + + if (fabs(wx - wx_prev_) > kDeltaAngularVelocityThreshold || + fabs(wy - wy_prev_) > kDeltaAngularVelocityThreshold || + fabs(wz - wz_prev_) > kDeltaAngularVelocityThreshold) + return false; + + if (fabs(wx - wx_bias_) > kAngularVelocityThreshold || + fabs(wy - wy_bias_) > kAngularVelocityThreshold || + fabs(wz - wz_bias_) > kAngularVelocityThreshold) + return false; + + return true; +} + +void ComplementaryFilter::updateBiases(double ax, double ay, double az, + double wx, double wy, double wz) +{ + steady_state_ = checkState(ax, ay, az, wx, wy, wz); + + if (steady_state_) + { + wx_bias_ += bias_alpha_ * (wx - wx_bias_); + wy_bias_ += bias_alpha_ * (wy - wy_bias_); + wz_bias_ += bias_alpha_ * (wz - wz_bias_); + } + + wx_prev_ = wx; + wy_prev_ = wy; + wz_prev_ = wz; +} + +void ComplementaryFilter::getPrediction( + double wx, double wy, double wz, double dt, + double& q0_pred, double& q1_pred, double& q2_pred, double& q3_pred) const +{ + double wx_unb = wx - wx_bias_; + double wy_unb = wy - wy_bias_; + double wz_unb = wz - wz_bias_; + + q0_pred = q0_ + 0.5*dt*( wx_unb*q1_ + wy_unb*q2_ + wz_unb*q3_); + q1_pred = q1_ + 0.5*dt*(-wx_unb*q0_ - wy_unb*q3_ + wz_unb*q2_); + q2_pred = q2_ + 0.5*dt*( wx_unb*q3_ - wy_unb*q0_ - wz_unb*q1_); + q3_pred = q3_ + 0.5*dt*(-wx_unb*q2_ + wy_unb*q1_ - wz_unb*q0_); + + normalizeQuaternion(q0_pred, q1_pred, q2_pred, q3_pred); +} + +void ComplementaryFilter::getMeasurement( + double ax, double ay, double az, + double mx, double my, double mz, + double& q0_meas, double& q1_meas, double& q2_meas, double& q3_meas) +{ + // q_acc is the quaternion obtained from the acceleration vector representing + // the orientation of the Global frame wrt the Local frame with arbitrary yaw + // (intermediary frame). q3_acc is defined as 0. + double q0_acc, q1_acc, q2_acc, q3_acc; + + // Normalize acceleration vector. + normalizeVector(ax, ay, az); + if (az >=0) + { + q0_acc = sqrt((az + 1) * 0.5); + q1_acc = -ay/(2.0 * q0_acc); + q2_acc = ax/(2.0 * q0_acc); + q3_acc = 0; + } + else + { + double X = sqrt((1 - az) * 0.5); + q0_acc = -ay/(2.0 * X); + q1_acc = X; + q2_acc = 0; + q3_acc = ax/(2.0 * X); + } + + // [lx, ly, lz] is the magnetic field reading, rotated into the intermediary + // frame by the inverse of q_acc. + // l = R(q_acc)^-1 m + double lx = (q0_acc*q0_acc + q1_acc*q1_acc - q2_acc*q2_acc)*mx + + 2.0 * (q1_acc*q2_acc)*my - 2.0 * (q0_acc*q2_acc)*mz; + double ly = 2.0 * (q1_acc*q2_acc)*mx + (q0_acc*q0_acc - q1_acc*q1_acc + + q2_acc*q2_acc)*my + 2.0 * (q0_acc*q1_acc)*mz; + + // q_mag is the quaternion that rotates the Global frame (North West Up) into + // the intermediary frame. q1_mag and q2_mag are defined as 0. + double gamma = lx*lx + ly*ly; + double beta = sqrt(gamma + lx*sqrt(gamma)); + double q0_mag = beta / (sqrt(2.0 * gamma)); + double q3_mag = ly / (sqrt(2.0) * beta); + + // The quaternion multiplication between q_acc and q_mag represents the + // quaternion, orientation of the Global frame wrt the local frame. + // q = q_acc times q_mag + quaternionMultiplication(q0_acc, q1_acc, q2_acc, q3_acc, + q0_mag, 0, 0, q3_mag, + q0_meas, q1_meas, q2_meas, q3_meas ); + //q0_meas = q0_acc*q0_mag; + //q1_meas = q1_acc*q0_mag + q2_acc*q3_mag; + //q2_meas = q2_acc*q0_mag - q1_acc*q3_mag; + //q3_meas = q0_acc*q3_mag; +} + + +void ComplementaryFilter::getMeasurement( + double ax, double ay, double az, + double& q0_meas, double& q1_meas, double& q2_meas, double& q3_meas) +{ + // q_acc is the quaternion obtained from the acceleration vector representing + // the orientation of the Global frame wrt the Local frame with arbitrary yaw + // (intermediary frame). q3_acc is defined as 0. + + // Normalize acceleration vector. + normalizeVector(ax, ay, az); + + if (az >=0) + { + q0_meas = sqrt((az + 1) * 0.5); + q1_meas = -ay/(2.0 * q0_meas); + q2_meas = ax/(2.0 * q0_meas); + q3_meas = 0; + } + else + { + double X = sqrt((1 - az) * 0.5); + q0_meas = -ay/(2.0 * X); + q1_meas = X; + q2_meas = 0; + q3_meas = ax/(2.0 * X); + } +} + +void ComplementaryFilter::getAccCorrection( + double ax, double ay, double az, + double p0, double p1, double p2, double p3, + double& dq0, double& dq1, double& dq2, double& dq3) +{ + // Normalize acceleration vector. + normalizeVector(ax, ay, az); + + // Acceleration reading rotated into the world frame by the inverse predicted + // quaternion (predicted gravity): + double gx, gy, gz; + rotateVectorByQuaternion(ax, ay, az, + p0, -p1, -p2, -p3, + gx, gy, gz); + + // Delta quaternion that rotates the predicted gravity into the real gravity: + dq0 = sqrt((gz + 1) * 0.5); + dq1 = -gy/(2.0 * dq0); + dq2 = gx/(2.0 * dq0); + dq3 = 0.0; +} + +void ComplementaryFilter::getMagCorrection( + double mx, double my, double mz, + double p0, double p1, double p2, double p3, + double& dq0, double& dq1, double& dq2, double& dq3) +{ + // Magnetic reading rotated into the world frame by the inverse predicted + // quaternion: + double lx, ly, lz; + rotateVectorByQuaternion(mx, my, mz, + p0, -p1, -p2, -p3, + lx, ly, lz); + + // Delta quaternion that rotates the l so that it lies in the xz-plane + // (points north): + double gamma = lx*lx + ly*ly; + double beta = sqrt(gamma + lx*sqrt(gamma)); + dq0 = beta / (sqrt(2.0 * gamma)); + dq1 = 0.0; + dq2 = 0.0; + dq3 = ly / (sqrt(2.0) * beta); +} + +void ComplementaryFilter::getOrientation( + double& q0, double& q1, double& q2, double& q3) const +{ + // Return the inverse of the state (state is fixed wrt body). + invertQuaternion(q0_, q1_, q2_, q3_, q0, q1, q2, q3); +} + +double ComplementaryFilter::getAdaptiveGain(double alpha, double ax, double ay, double az) +{ + double a_mag = sqrt(ax*ax + ay*ay + az*az); + double error = fabs(a_mag - kGravity)/kGravity; + double factor; + double error1 = 0.1; + double error2 = 0.2; + double m = 1.0/(error1 - error2); + double b = 1.0 - m*error1; + if (error < error1) + factor = 1.0; + else if (error < error2) + factor = m*error + b; + else + factor = 0.0; + //printf("FACTOR: %f \n", factor); + return factor*alpha; +} + +void normalizeVector(double& x, double& y, double& z) +{ + double norm = sqrt(x*x + y*y + z*z); + + x /= norm; + y /= norm; + z /= norm; +} + +void normalizeQuaternion(double& q0, double& q1, double& q2, double& q3) +{ + double norm = sqrt(q0*q0 + q1*q1 + q2*q2 + q3*q3); + q0 /= norm; + q1 /= norm; + q2 /= norm; + q3 /= norm; +} + +void invertQuaternion( + double q0, double q1, double q2, double q3, + double& q0_inv, double& q1_inv, double& q2_inv, double& q3_inv) +{ + // Assumes quaternion is normalized. + q0_inv = q0; + q1_inv = -q1; + q2_inv = -q2; + q3_inv = -q3; +} + +void scaleQuaternion( + double gain, + double& dq0, double& dq1, double& dq2, double& dq3) +{ + if (dq0 < 0.0)//0.9 + { + // Slerp (Spherical linear interpolation): + double angle = acos(dq0); + double A = sin(angle*(1.0 - gain))/sin(angle); + double B = sin(angle * gain)/sin(angle); + dq0 = A + B * dq0; + dq1 = B * dq1; + dq2 = B * dq2; + dq3 = B * dq3; + } + else + { + // Lerp (Linear interpolation): + dq0 = (1.0 - gain) + gain * dq0; + dq1 = gain * dq1; + dq2 = gain * dq2; + dq3 = gain * dq3; + } + + normalizeQuaternion(dq0, dq1, dq2, dq3); +} + +void quaternionMultiplication( + double p0, double p1, double p2, double p3, + double q0, double q1, double q2, double q3, + double& r0, double& r1, double& r2, double& r3) +{ + // r = p q + r0 = p0*q0 - p1*q1 - p2*q2 - p3*q3; + r1 = p0*q1 + p1*q0 + p2*q3 - p3*q2; + r2 = p0*q2 - p1*q3 + p2*q0 + p3*q1; + r3 = p0*q3 + p1*q2 - p2*q1 + p3*q0; +} + +void rotateVectorByQuaternion( + double x, double y, double z, + double q0, double q1, double q2, double q3, + double& vx, double& vy, double& vz) +{ + vx = (q0*q0 + q1*q1 - q2*q2 - q3*q3)*x + 2*(q1*q2 - q0*q3)*y + 2*(q1*q3 + q0*q2)*z; + vy = 2*(q1*q2 + q0*q3)*x + (q0*q0 - q1*q1 + q2*q2 - q3*q3)*y + 2*(q2*q3 - q0*q1)*z; + vz = 2*(q1*q3 - q0*q2)*x + 2*(q2*q3 + q0*q1)*y + (q0*q0 - q1*q1 - q2*q2 + q3*q3)*z; +} + + +} // namespace imu_tools diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/src/complementary_filter_node.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/src/complementary_filter_node.cpp new file mode 100644 index 0000000..db2e5f2 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/src/complementary_filter_node.cpp @@ -0,0 +1,42 @@ +/* + @author Roberto G. Valenti + + @section LICENSE + Copyright (c) 2015, City University of New York + CCNY Robotics Lab + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Neither the name of the City College of New York nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL the CCNY ROBOTICS LAB BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include "imu_complementary_filter/complementary_filter_ros.h" + +int main (int argc, char **argv) +{ + ros::init (argc, argv, "ComplementaryFilterROS"); + ros::NodeHandle nh; + ros::NodeHandle nh_private("~"); + imu_tools::ComplementaryFilterROS filter(nh, nh_private); + ros::spin(); + return 0; +} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/src/complementary_filter_ros.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/src/complementary_filter_ros.cpp new file mode 100644 index 0000000..efff5ef --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_complementary_filter/src/complementary_filter_ros.cpp @@ -0,0 +1,305 @@ +/* + @author Roberto G. Valenti + + @section LICENSE + Copyright (c) 2015, City University of New York + CCNY Robotics Lab + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Neither the name of the City College of New York nor the + names of its contributors may be used to endorse or promote products + derived from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL the CCNY ROBOTICS LAB BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#include "imu_complementary_filter/complementary_filter_ros.h" + +#include +#include + +namespace imu_tools { + +ComplementaryFilterROS::ComplementaryFilterROS( + const ros::NodeHandle& nh, + const ros::NodeHandle& nh_private): + nh_(nh), + nh_private_(nh_private), + initialized_filter_(false) +{ + ROS_INFO("Starting ComplementaryFilterROS"); + initializeParams(); + + int queue_size = 5; + + // Register publishers: + imu_publisher_ = nh_.advertise(ros::names::resolve("imu") + "/data", queue_size); + + if (publish_debug_topics_) + { + rpy_publisher_ = nh_.advertise( + ros::names::resolve("imu") + "/rpy/filtered", queue_size); + + if (filter_.getDoBiasEstimation()) + { + state_publisher_ = nh_.advertise( + ros::names::resolve("imu") + "/steady_state", queue_size); + } + } + + // Register IMU raw data subscriber. + imu_subscriber_.reset(new ImuSubscriber(nh_, ros::names::resolve("imu") + "/data_raw", queue_size)); + + // Register magnetic data subscriber. + if (use_mag_) + { + mag_subscriber_.reset(new MagSubscriber(nh_, ros::names::resolve("imu") + "/mag", queue_size)); + + sync_.reset(new Synchronizer( + SyncPolicy(queue_size), *imu_subscriber_, *mag_subscriber_)); + sync_->registerCallback( + boost::bind(&ComplementaryFilterROS::imuMagCallback, this, _1, _2)); + } + else + { + imu_subscriber_->registerCallback( + &ComplementaryFilterROS::imuCallback, this); + } +} + +ComplementaryFilterROS::~ComplementaryFilterROS() +{ + ROS_INFO("Destroying ComplementaryFilterROS"); +} + +void ComplementaryFilterROS::initializeParams() +{ + double gain_acc; + double gain_mag; + bool do_bias_estimation; + double bias_alpha; + bool do_adaptive_gain; + + if (!nh_private_.getParam ("fixed_frame", fixed_frame_)) + fixed_frame_ = "odom"; + if (!nh_private_.getParam ("use_mag", use_mag_)) + use_mag_ = false; + if (!nh_private_.getParam ("publish_tf", publish_tf_)) + publish_tf_ = false; + if (!nh_private_.getParam ("reverse_tf", reverse_tf_)) + reverse_tf_ = false; + if (!nh_private_.getParam ("constant_dt", constant_dt_)) + constant_dt_ = 0.0; + if (!nh_private_.getParam ("publish_debug_topics", publish_debug_topics_)) + publish_debug_topics_ = false; + if (!nh_private_.getParam ("gain_acc", gain_acc)) + gain_acc = 0.01; + if (!nh_private_.getParam ("gain_mag", gain_mag)) + gain_mag = 0.01; + if (!nh_private_.getParam ("do_bias_estimation", do_bias_estimation)) + do_bias_estimation = true; + if (!nh_private_.getParam ("bias_alpha", bias_alpha)) + bias_alpha = 0.01; + if (!nh_private_.getParam ("do_adaptive_gain", do_adaptive_gain)) + do_adaptive_gain = true; + + double orientation_stddev; + if (!nh_private_.getParam ("orientation_stddev", orientation_stddev)) + orientation_stddev = 0.0; + + orientation_variance_ = orientation_stddev * orientation_stddev; + + filter_.setDoBiasEstimation(do_bias_estimation); + filter_.setDoAdaptiveGain(do_adaptive_gain); + + if(!filter_.setGainAcc(gain_acc)) + ROS_WARN("Invalid gain_acc passed to ComplementaryFilter."); + if (use_mag_) + { + if(!filter_.setGainMag(gain_mag)) + ROS_WARN("Invalid gain_mag passed to ComplementaryFilter."); + } + if (do_bias_estimation) + { + if(!filter_.setBiasAlpha(bias_alpha)) + ROS_WARN("Invalid bias_alpha passed to ComplementaryFilter."); + } + + // check for illegal constant_dt values + if (constant_dt_ < 0.0) + { + // if constant_dt_ is 0.0 (default), use IMU timestamp to determine dt + // otherwise, it will be constant + ROS_WARN("constant_dt parameter is %f, must be >= 0.0. Setting to 0.0", constant_dt_); + constant_dt_ = 0.0; + } +} + +void ComplementaryFilterROS::imuCallback(const ImuMsg::ConstPtr& imu_msg_raw) +{ + const geometry_msgs::Vector3& a = imu_msg_raw->linear_acceleration; + const geometry_msgs::Vector3& w = imu_msg_raw->angular_velocity; + const ros::Time& time = imu_msg_raw->header.stamp; + + // Initialize. + if (!initialized_filter_) + { + time_prev_ = time; + initialized_filter_ = true; + return; + } + + // determine dt: either constant, or from IMU timestamp + double dt; + if (constant_dt_ > 0.0) + dt = constant_dt_; + else + dt = (time - time_prev_).toSec(); + + time_prev_ = time; + + // Update the filter. + filter_.update(a.x, a.y, a.z, w.x, w.y, w.z, dt); + + // Publish state. + publish(imu_msg_raw); +} + +void ComplementaryFilterROS::imuMagCallback(const ImuMsg::ConstPtr& imu_msg_raw, + const MagMsg::ConstPtr& mag_msg) +{ + const geometry_msgs::Vector3& a = imu_msg_raw->linear_acceleration; + const geometry_msgs::Vector3& w = imu_msg_raw->angular_velocity; + const geometry_msgs::Vector3& m = mag_msg->magnetic_field; + const ros::Time& time = imu_msg_raw->header.stamp; + + // Initialize. + if (!initialized_filter_) + { + time_prev_ = time; + initialized_filter_ = true; + return; + } + + // Calculate dt. + double dt = (time - time_prev_).toSec(); + time_prev_ = time; + //ros::Time t_in, t_out; + //t_in = ros::Time::now(); + // Update the filter. + if (std::isnan(m.x) || std::isnan(m.y) || std::isnan(m.z)) + filter_.update(a.x, a.y, a.z, w.x, w.y, w.z, dt); + else + filter_.update(a.x, a.y, a.z, w.x, w.y, w.z, m.x, m.y, m.z, dt); + + //t_out = ros::Time::now(); + //float dt_tot = (t_out - t_in).toSec() * 1000.0; // In msec. + //printf("%.6f\n", dt_tot); + // Publish state. + publish(imu_msg_raw); +} + +tf::Quaternion ComplementaryFilterROS::hamiltonToTFQuaternion( + double q0, double q1, double q2, double q3) const +{ + // ROS uses the Hamilton quaternion convention (q0 is the scalar). However, + // the ROS quaternion is in the form [x, y, z, w], with w as the scalar. + return tf::Quaternion(q1, q2, q3, q0); +} + +void ComplementaryFilterROS::publish( + const sensor_msgs::Imu::ConstPtr& imu_msg_raw) +{ + // Get the orientation: + double q0, q1, q2, q3; + filter_.getOrientation(q0, q1, q2, q3); + tf::Quaternion q = hamiltonToTFQuaternion(q0, q1, q2, q3); + + // Create and publish fitlered IMU message. + boost::shared_ptr imu_msg = + boost::make_shared(*imu_msg_raw); + tf::quaternionTFToMsg(q, imu_msg->orientation); + + imu_msg->orientation_covariance[0] = orientation_variance_; + imu_msg->orientation_covariance[1] = 0.0; + imu_msg->orientation_covariance[2] = 0.0; + imu_msg->orientation_covariance[3] = 0.0; + imu_msg->orientation_covariance[4] = orientation_variance_; + imu_msg->orientation_covariance[5] = 0.0; + imu_msg->orientation_covariance[6] = 0.0; + imu_msg->orientation_covariance[7] = 0.0; + imu_msg->orientation_covariance[8] = orientation_variance_; + + // Account for biases. + if (filter_.getDoBiasEstimation()) + { + imu_msg->angular_velocity.x -= filter_.getAngularVelocityBiasX(); + imu_msg->angular_velocity.y -= filter_.getAngularVelocityBiasY(); + imu_msg->angular_velocity.z -= filter_.getAngularVelocityBiasZ(); + } + + imu_publisher_.publish(imu_msg); + + if (publish_debug_topics_) + { + // Create and publish roll, pitch, yaw angles + geometry_msgs::Vector3Stamped rpy; + rpy.header = imu_msg_raw->header; + + tf::Matrix3x3 M; + M.setRotation(q); + M.getRPY(rpy.vector.x, rpy.vector.y, rpy.vector.z); + rpy_publisher_.publish(rpy); + + // Publish whether we are in the steady state, when doing bias estimation + if (filter_.getDoBiasEstimation()) + { + std_msgs::Bool state_msg; + state_msg.data = filter_.getSteadyState(); + state_publisher_.publish(state_msg); + } + } + + if (publish_tf_) + { + // Create and publish the ROS tf. + tf::Transform transform; + transform.setOrigin(tf::Vector3(0.0, 0.0, 0.0)); + transform.setRotation(q); + + if (reverse_tf_) + { + tf_broadcaster_.sendTransform( + tf::StampedTransform(transform.inverse(), + imu_msg_raw->header.stamp, + imu_msg_raw->header.frame_id, + fixed_frame_)); + } + else + { + tf_broadcaster_.sendTransform( + tf::StampedTransform(transform, + imu_msg_raw->header.stamp, + fixed_frame_, + imu_msg_raw->header.frame_id)); + } + } +} + +} // namespace imu_tools diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/CMakeLists.txt new file mode 100644 index 0000000..6b42822 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/CMakeLists.txt @@ -0,0 +1,51 @@ +cmake_minimum_required(VERSION 2.8.3) +project(filter) + +## 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 + sensor_msgs geometry_msgs tf dynamic_reconfigure +) + +generate_dynamic_reconfigure_options( + cfg/MyStuff.cfg + cfg/MyStuff2.cfg +) + + +catkin_package( +# INCLUDE_DIRS include +# LIBRARIES temp +# CATKIN_DEPENDS roscpp +# DEPENDS system_lib +) + +include_directories( +# include + ${catkin_INCLUDE_DIRS} +) + + + + +add_executable(Mahony_filter src/Mahony_filter.cpp) +add_dependencies(Mahony_filter ${PROJECT_NAME}_gencfg) +target_link_libraries(Mahony_filter ${catkin_LIBRARIES} ) + + +add_executable(Madgwick_filter src/Madgwick_filter.cpp) +add_dependencies(Madgwick_filter ${PROJECT_NAME}_gencfg) +target_link_libraries(Madgwick_filter ${catkin_LIBRARIES} ) + +add_executable(bias_calculator src/bias_calculator.cpp) +add_dependencies(bias_calculator ${PROJECT_NAME}_gencfg) +target_link_libraries(bias_calculator ${catkin_LIBRARIES} ) + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/README.md b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/README.md new file mode 100644 index 0000000..5c09603 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/README.md @@ -0,0 +1,34 @@ +# imu_filter + +This is a project that uses IMU filter algorithm in ROS(Robot Operating System). The IMU I use is ICM 20602, consisting of a tri-axis gyroscope and a tri-axis accelerometer. + +## ROS API +### Subscribed Topics +Message containing raw IMU data, including angular velocities and linear accelerations.
+`imu0`(sensor_msgs/Imu) +### Published Topics +The fused pose representation.
+`quaternion`(geometry_msg/QuaternionStamped)
+`ypr`(geometry_msgs/Vector3Stamped) +## Parameters +### Dynamically Reconfigurable Parameters
+(Mahony_filter) `twoKp` `twoKi`
+(Madgwick_filter) `beta`
+To tune the dynamic parameters after runnig the node, input + + rosrun rqt_configure rqt_reconfigure +According to Madgwick's thesis, the suggested beta = sqrt(3.0f / 4.0f) * gyroMeasError. ICM20602's gyroscope +sensitivity erroris ±1%. Thus the default beta is setting to 0.1088. As the specific application, the value +can be tuned accoring to response and requriments. +### Non-dynamically Reconfigurable Parameters
+`sampleFreq`(float, default: 400.0)
+You can change its value at the beginning, Such as: + + rosrun filter Madgwick_filter _sampleFreq:=200 +## provied tf Transforms +odom -> imu +So you can open rviz and set the fixed frame "odom", add TF then you can use it to verify the effect directly. +![Alt Text](https://github.com/marooncn/imu_filter/blob/master/Screenshot%20from%202017-07-29%2010-49-16.png) +## Result +The Madgwick_filter node's effect is acceptable, but the Mahony_filter is disappointing. + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/cfg/MyStuff.cfg b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/cfg/MyStuff.cfg new file mode 100644 index 0000000..5fbc0de --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/cfg/MyStuff.cfg @@ -0,0 +1,14 @@ +#! /usr/bin/env python + +PACKAGE = 'filter' + + +from dynamic_reconfigure.parameter_generator_catkin import * + +gen = ParameterGenerator() + +gen.add("twoKp", 'double', 0, "2* accelerometer proportional gain", 0.01, 0, 0.1); +gen.add("twoKi", 'double', 0, "2* integral gain", 0.002, 0, 0.01); + +exit(gen.generate(PACKAGE, "filter", "MyStuff")) + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/cfg/MyStuff2.cfg b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/cfg/MyStuff2.cfg new file mode 100644 index 0000000..48fb8f8 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/cfg/MyStuff2.cfg @@ -0,0 +1,14 @@ +#! /usr/bin/env python + +PACKAGE = 'filter' + + +from dynamic_reconfigure.parameter_generator_catkin import * + +gen = ParameterGenerator() + +gen.add("beta", 'double', 0, "2* accelerometer proportional gain", 0.1088, 0, 0.5); + + +exit(gen.generate(PACKAGE, "filter", "MyStuff2")) + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/package.xml new file mode 100644 index 0000000..402d134 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/package.xml @@ -0,0 +1,62 @@ + + + filter + 0.0.0 + The filter package + + + + + maroon + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + roscpp + rospy + sensor_msgs + geometry_msgs + tf + dynamic_reconfigure + roscpp + rospy + sensor_msgs + geometry_msgs + tf + dynamic_reconfigure + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/src/Madgwick_filter.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/src/Madgwick_filter.cpp new file mode 100644 index 0000000..ec79c21 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/src/Madgwick_filter.cpp @@ -0,0 +1,259 @@ +#include "ros/ros.h" +#include "std_msgs/Float64.h" +#include "std_msgs/Header.h" +#include "geometry_msgs/Quaternion.h" +#include "geometry_msgs/QuaternionStamped.h" +#include "geometry_msgs/Vector3Stamped.h" +#include "geometry_msgs/TransformStamped.h" +#include "sensor_msgs/Imu.h" +#include "tf/transform_broadcaster.h" +#include "tf/transform_datatypes.h" +#include "tf/transform_listener.h" +#include "math.h" +#include "ros/console.h" +#include "dynamic_reconfigure/server.h" +#include "filter/MyStuff2Config.h" + + +using namespace std_msgs; + +geometry_msgs::QuaternionStamped q; +geometry_msgs::Vector3Stamped v; +geometry_msgs::TransformStamped q_trans; +float sampleFreq; +double beta; +float q0=1.0, q1=0.0, q2=0.0, q3=0.0; +Header header; +float ax, ay, az, gx, gy, gz; +ros::Duration dtime; +float dt; + +float invSqrt(float ); +void qua2Euler(geometry_msgs::QuaternionStamped ); +void MadgwickAHRSupdateIMU(float gx, float gy, float gz, float ax, float ay, float az); + +void callback(filter::MyStuff2Config &config, uint32_t level) { + beta = config.beta; + +} + + +void filter_function(const sensor_msgs::Imu& msg) +{ +// ros::Time start_time = ros::Time::now(); + + + header = msg.header; +// q.linear_acceleration = msg.linear_acceleration; +// q.angular_velocity = msg.angular_velocity; + ax = msg.linear_acceleration.x; + ay = msg.linear_acceleration.y; + az = msg.linear_acceleration.z; + gx = msg.angular_velocity.x; + gy = msg.angular_velocity.y; + gz = msg.angular_velocity.z; + + /* ros::Time this_time = header.stamp; + static ros::Time last_time = header.stamp; + dtime = this_time - last_time; + dt = dtime.toNSec(); + ROS_INFO(" this_time = %f", this_time.toSec()); + ROS_INFO(" last_time = %f", last_time.toSec()); + dt = dt/1.0e9; + // dt = 0.0025; + ROS_INFO(" dt = %f", dt); + last_time = this_time; */ + + // since we are using 1000 degrees/seconds range and the register is 16 bits + // -1000 maps to a raw value of -32768 + // +1000 maps to a raw value of 32767 + gx = gx*1000.0/32768.0; + gy = gy*1000.0/32768.0; + gz = gz*1000.0/32768.0; + + //change Gyroscope units to radians/second, accelerometer units are irrelevant as the vector is normalised. + // Convert gyroscope degrees/sec to radians/sec + gx *= 0.0174533f; + gy *= 0.0174533f; + gz *= 0.0174533f; + + ROS_INFO("The original gx=%f, gy=%f, gz=%f ", gx, gy, gz); + ROS_INFO("beta=%f", beta); + + MadgwickAHRSupdateIMU(gx, gy, gz, ax, ay, az) ; + + q.header = header; + q.quaternion.w = q0; + q.quaternion.x = q1; + q.quaternion.y = q2; + q.quaternion.z = q3; + + ROS_INFO(" q0=%f, q1=%f, q2=%f, q3=%f ", q0, q1, q2, q3); + qua2Euler(q); +// ros::Time end_time = ros::Time::now(); +// double interval_time = (end_time - start_time).toNSec(); + // ROS_INFO("the interval time is %lf ns" , interval_time); +} + + +int main(int argc, char **argv) +{ + ros::init(argc, argv, "Mahony_filter"); + ros::NodeHandle n; + ros::Publisher pub1 = n.advertise("quaternion", 1); + ros::Publisher pub2 = n.advertise("ypr", 1); + tf::TransformBroadcaster q_broadcaster; + ros::Subscriber sub = n.subscribe("/imu/data_raw", 10, filter_function); + if(!n.getParam("sampleFreq", sampleFreq)) + sampleFreq = 400.0; + dynamic_reconfigure::Server server; + dynamic_reconfigure::Server::CallbackType f; + f = boost::bind(&callback, _1, _2); + server.setCallback(f); + + ros::Rate r(sampleFreq); + while(ros::ok()) + { + pub1.publish(q); + pub2.publish(v); + ros::spinOnce(); + + q_trans.header.stamp = header.stamp; + q_trans.header.frame_id = "/odom"; + q_trans.child_frame_id = "/imu"; +/* q_trans.transform.rotation.w = q.quaternion.w; + q_trans.transform.rotation.x = q.quaternion.x; + q_trans.transform.rotation.y = q.quaternion.y; + q_trans.transform.rotation.z = q.quaternion.z; */ + q_trans.transform.rotation = tf::createQuaternionMsgFromRollPitchYaw(v.vector.z ,v.vector.y, v.vector.x); + + q_broadcaster.sendTransform(q_trans); + r.sleep(); + } + return 0; +} + +//Fast inverse square root +//reference: https://en.wikipedia.org/wiki/Fast_inverse_square_root +float invSqrt(float x) +{ + float xhalf = 0.5f * x; + union + { + float x; + int i; + } u; + u.x = x; + u.i = 0x5f3759df - (u.i >> 1); + /* The next line can be repeated any number of times to increase accuracy */ + u.x = u.x * (1.5f - xhalf * u.x * u.x); + return u.x; +} + +//reference: https://en.wikipedia.org/wiki/Conversion_between_quaternions_and_Euler_angles +void qua2Euler(geometry_msgs::QuaternionStamped q) { + + float x,y,z,w; + + x = q.quaternion.x; + y = q.quaternion.y; + z = q.quaternion.z; + w = q.quaternion.w; + + v.header = q.header; + +//yaw (z-axis rotation) + float t0 = 2.0*(w*z+x*y); + float t1 = 1.0-2.0*(y*y+z*z); + v.vector.x = atan2(t0,t1); //the unit is radians +//pitch (y-axis rotation) + float t2 = 2.0*(w*y-z*x); + t2 = (t2 > 1.0) ? 1.0 : t2; + t2 = (t2 < -1.0)? -1.0 : t2; + v.vector.y = asin(t2); +//roll (x-axis rotation) + float t3 = 2.0*(w*x+y*z); + float t4 = 1.0-2.0*(x*x+y*y); + v.vector.z = atan2(t3, t4); +} + + +//Implementation of Madgwick's IMU and AHRS algorithms. +//reference: An efficient orientation filter for inertial and inertial/magnetic sensor arrays. (This thesis's appendix has more detailed code and illutration) +//reference: http://x-io.co.uk/open-source-imu-and-ahrs-algorithms/ + +void MadgwickAHRSupdateIMU(float gx, float gy, float gz, float ax, float ay, float az) { + float recipNorm; + float s0, s1, s2, s3; // estimated direction of the gyroscope error + float qDot1, qDot2, qDot3, qDot4; // quaternion derrivative from gyroscopes elements + float _2q0, _2q1, _2q2, _2q3, _4q0, _4q1, _4q2 ,_8q1, _8q2, q0q0, q1q1, q2q2, q3q3; //Axulirary variables to avoid reapeated calcualtions + + // Rate of change of quaternion from gyroscope + qDot1 = 0.5f * (-q1 * gx - q2 * gy - q3 * gz); + qDot2 = 0.5f * (q0 * gx + q2 * gz - q3 * gy); + qDot3 = 0.5f * (q0 * gy - q1 * gz + q3 * gx); + qDot4 = 0.5f * (q0 * gz + q1 * gy - q2 * gx); + + // Compute feedback only if accelerometer measurement valid (avoids NaN in accelerometer normalisation) + if(!((ax == 0.0f) && (ay == 0.0f) && (az == 0.0f))) { + + // Normalise accelerometer measurement + recipNorm = invSqrt(ax * ax + ay * ay + az * az); + ax *= recipNorm; + ay *= recipNorm; + az *= recipNorm; + + // Auxiliary variables to avoid repeated arithmetic + _2q0 = 2.0f * q0; + _2q1 = 2.0f * q1; + _2q2 = 2.0f * q2; + _2q3 = 2.0f * q3; + _4q0 = 4.0f * q0; + _4q1 = 4.0f * q1; + _4q2 = 4.0f * q2; + _8q1 = 8.0f * q1; + _8q2 = 8.0f * q2; + q0q0 = q0 * q0; + q1q1 = q1 * q1; + q2q2 = q2 * q2; + q3q3 = q3 * q3; + + // Gradient decent algorithm corrective step + s0 = _4q0 * q2q2 + _2q2 * ax + _4q0 * q1q1 - _2q1 * ay; + s1 = _4q1 * q3q3 - _2q3 * ax + 4.0f * q0q0 * q1 - _2q0 * ay - _4q1 + _8q1 * q1q1 + _8q1 * q2q2 + _4q1 * az; + s2 = 4.0f * q0q0 * q2 + _2q0 * ax + _4q2 * q3q3 - _2q3 * ay - _4q2 + _8q2 * q1q1 + _8q2 * q2q2 + _4q2 * az; + s3 = 4.0f * q1q1 * q3 - _2q1 * ax + 4.0f * q2q2 * q3 - _2q2 * ay; + + recipNorm = invSqrt(s0 * s0 + s1 * s1 + s2 * s2 + s3 * s3); // Normalise the gradient + s0 *= recipNorm; + s1 *= recipNorm; + s2 *= recipNorm; + s3 *= recipNorm; + + + // Apply feedback step + qDot1 -= beta * s0; + qDot2 -= beta * s1; + qDot3 -= beta * s2; + qDot4 -= beta * s3; + } + + // Integrate rate of change of quaternion to yield quaternion + q0 += qDot1 * (1.0f / sampleFreq); + q1 += qDot2 * (1.0f / sampleFreq); + q2 += qDot3 * (1.0f / sampleFreq); + q3 += qDot4 * (1.0f / sampleFreq); + + // Normalise quaternion + recipNorm = invSqrt(q0 * q0 + q1 * q1 + q2 * q2 + q3 * q3); + q0 *= recipNorm; + q1 *= recipNorm; + q2 *= recipNorm; + q3 *= recipNorm; +} + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/src/Mahony_filter.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/src/Mahony_filter.cpp new file mode 100644 index 0000000..e46c08f --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/src/Mahony_filter.cpp @@ -0,0 +1,278 @@ +#include "ros/ros.h" +#include "std_msgs/Float64.h" +#include "std_msgs/Header.h" +//#include "std_msgs/Float64MultiArray.h" +#include "geometry_msgs/Quaternion.h" +#include "geometry_msgs/QuaternionStamped.h" +#include "geometry_msgs/Vector3Stamped.h" +#include "geometry_msgs/TransformStamped.h" +#include "sensor_msgs/Imu.h" +#include "tf/transform_broadcaster.h" +#include "tf/transform_datatypes.h" +#include "tf/transform_listener.h" +#include "math.h" +#include "ros/console.h" +#include "dynamic_reconfigure/server.h" +#include "filter/MyStuffConfig.h" + + +using namespace std_msgs; + +geometry_msgs::QuaternionStamped q; +geometry_msgs::Vector3Stamped v; +geometry_msgs::TransformStamped q_trans; +double twoKp; //2* accelerometer proportional gain +double twoKi; //2* integral gain +float sampleFreq; +float q0=1.0, q1=0.0, q2=0.0, q3=0.0; +float ex_int=0.0, ey_int=0.0, ez_int=0.0; +Header header; +float ax, ay, az, gx, gy, gz; +ros::Duration dtime; +float dt; + + +float invSqrt(float ); +void qua2Euler(geometry_msgs::QuaternionStamped ); +void MahonyAHRSupdateIMU(float gx, float gy, float gz, float ax, float ay, float az); + +void callback(filter::MyStuffConfig &config, uint32_t level) { + twoKp = config.twoKp; + twoKi = config.twoKi; + ROS_INFO("twoKi=%f, twoKp=%f", twoKi, twoKp); +} + + +//Implementation of Mahony&Madgwick's IMU and AHRS algorithms. +//reference: http://x-io.co.uk/open-source-imu-and-ahrs-algorithms/ +void filter_function(const sensor_msgs::Imu& msg) +{ + // ros::Time start_time = ros::Time::now(); + + header = msg.header; +// q.linear_acceleration = msg.linear_acceleration; +// q.angular_velocity = msg.angular_velocity; + ax = msg.linear_acceleration.x; + ay = msg.linear_acceleration.y; + az = msg.linear_acceleration.z; + gx = msg.angular_velocity.x; + gy = msg.angular_velocity.y; + gz = msg.angular_velocity.z; + +/* ros::Time this_time = header.stamp; + static ros::Time last_time = header.stamp; + dtime = this_time - last_time; + dt = dtime.toNSec(); + ROS_INFO(" this_time = %f", this_time.toSec()); + ROS_INFO(" last_time = %f", last_time.toSec()); + dt = dt/1.0e9; + // dt = 0.0025; + ROS_INFO(" dt = %f", dt); + last_time = this_time; */ + + // since we are using 1000 degrees/seconds range and the register is 16 bits + // -1000 maps to a raw value of -32768 + // +1000 maps to a raw value of 32767 + gx = gx*1000.0/32768.0; + gy = gy*1000.0/32768.0; + gz = gz*1000.0/32768.0; + + //change Gyroscope units to radians/second, accelerometer units are irrelevant as the vector is normalised. + // Convert gyroscope degrees/sec to radians/sec + gx *= 0.0174533f; + gy *= 0.0174533f; + gz *= 0.0174533f; + + ROS_INFO("The original gx=%f, gy=%f, gz=%f ", gx, gy, gz); + + MahonyAHRSupdateIMU(gx, gy, gz, ax, ay, az); + + q.header = header; + q.quaternion.w = q0; + q.quaternion.x = q1; + q.quaternion.y = q2; + q.quaternion.z = q3; + + ROS_INFO(" q0=%f, q1=%f, q2=%f, q3=%f ", q0, q1, q2, q3); + qua2Euler(q); + // ros::Time end_time = ros::Time::now(); +// double interval_time = (end_time - start_time).toNSec(); + // ROS_INFO("the interval time is %lf ns" , interval_time); +} + + +int main(int argc, char **argv) +{ + ros::init(argc, argv, "Mahony_filter"); + ros::NodeHandle n; + ros::Publisher pub1 = n.advertise("quaternion", 1); + ros::Publisher pub2 = n.advertise("ypr", 1); + // ros::Publisher odom_pub = n.advertise("odom", 50); + tf::TransformBroadcaster q_broadcaster; + //ros::Publisher pub3 = n.advertise("DCM",20); + //setFullSacleGyroRange(ICM20602_GYRO_RANGE_1000); + ros::Subscriber sub = n.subscribe("/imu/data_raw", 10, filter_function); + if(!n.getParam("sampleFreq", sampleFreq)) + sampleFreq = 400.0; + dt = 1.0/sampleFreq; + + dynamic_reconfigure::Server server; + dynamic_reconfigure::Server::CallbackType f; + f = boost::bind(&callback, _1, _2); + server.setCallback(f); + + ros::Rate r(sampleFreq); + while(ros::ok()) + { + pub1.publish(q); + pub2.publish(v); + ros::spinOnce(); + + q_trans.header.stamp = header.stamp; + q_trans.header.frame_id = "/odom"; + q_trans.child_frame_id = "/imu"; +/* q_trans.transform.rotation.w = q.quaternion.w; + q_trans.transform.rotation.x = q.quaternion.x; + q_trans.transform.rotation.y = q.quaternion.y; + q_trans.transform.rotation.z = q.quaternion.z; */ + q_trans.transform.rotation = tf::createQuaternionMsgFromRollPitchYaw(v.vector.z ,v.vector.y, v.vector.x); + + q_broadcaster.sendTransform(q_trans); + r.sleep(); + } + return 0; +} + +//Fast inverse square root +//reference: https://en.wikipedia.org/wiki/Fast_inverse_square_root +float invSqrt(float x) +{ + float xhalf = 0.5f * x; + union + { + float x; + int i; + } u; + u.x = x; + u.i = 0x5f3759df - (u.i >> 1); + /* The next line can be repeated any number of times to increase accuracy */ + u.x = u.x * (1.5f - xhalf * u.x * u.x); + return u.x; +} + +//reference: https://en.wikipedia.org/wiki/Conversion_between_quaternions_and_Euler_angles +void qua2Euler(geometry_msgs::QuaternionStamped q) { + + float x,y,z,w; + + x = q.quaternion.x; + y = q.quaternion.y; + z = q.quaternion.z; + w = q.quaternion.w; + + v.header = q.header; + +//yaw (z-axis rotation) + float t0 = 2.0*(w*z+x*y); + float t1 = 1.0-2.0*(y*y+z*z); + v.vector.x = atan2(t0,t1)*57.29578; //the unit is degree +//pitch (y-axis rotation) + float t2 = 2.0*(w*y-z*x); + t2 = (t2 > 1.0) ? 1.0 : t2; + t2 = (t2 < -1.0)? -1.0 : t2; + v.vector.y = asin(t2)*57.29578; +//roll (x-axis rotation) + float t3 = 2.0*(w*x+y*z); + float t4 = 1.0-2.0*(x*x+y*y); + v.vector.z = atan2(t3, t4)*57.29578; + +} + +void MahonyAHRSupdateIMU(float gx, float gy, float gz, float ax, float ay, float az) { + + float recipNorm; + float halfvx, halfvy, halfvz; + float halfex, halfey, halfez; + float thetax, thetay, thetaz; + float dq0, dq1, dq2, dq3; + + // Compute feedback only if accelerometer measurement valid (avoids NaN in accelerometer normalisation) +if(!((ax == 0.0f) && (ay == 0.0f) && (az == 0.0f))) { + //normalize the accelerometer vector + recipNorm = invSqrt(ax*ax+ay*ay+az*az); + ax *= recipNorm; + ay *= recipNorm; + az *= recipNorm; + + ROS_INFO(" ax=%f, ay=%f, az=%f ", ax, ay, az); + + //calculate the direction of gravity according to quaternion + halfvx = q1*q3 - q0*q2; + halfvy = q0*q1 + q2*q3; +// vz = q0*q0 - q1*q1 - q2*q2 + q3*q3; + halfvz = q0*q0 -0.5f + q3*q3; + + ROS_INFO("The halfvx=%f, halfvy=%f, halfvz=%f", halfvx, halfvy, halfvz); + + + + //calculate the error which is cross product between estimated and measured direction of gravity + halfex = ay*halfvz - az*halfvy; + halfey = az*halfvx - ax*halfvz; + halfez = ax*halfvy - ay*halfvx; + + ROS_INFO("The halfex=%f, halfey=%f, halfez=%f", halfex, halfey, halfez); + + if (twoKi > 0.0f) { + //integral the error + ex_int += twoKi*halfex*dt; + ey_int += twoKi*halfey*dt; + ez_int += twoKi*halfez*dt; + + ROS_INFO("The ex_int=%f, ey_int=%f, ez_int=%f", ex_int, ey_int, ez_int); + + //apply the integral feedback + gx += ex_int; + gy += ey_int; + gz += ez_int; } + + else { + ex_int = 0.0f; + ey_int = 0.0f; + ez_int = 0.0f; + } + + //apply the proportional feedback + gx += twoKp*halfex; + gy += twoKp*halfey; + gz += twoKp*halfez; + + ROS_INFO("The revised gx=%f, gy=%f, gz=%f ", gx, gy, gz); } + + //calculate the rotary angle + thetax = 0.5*gx*dt; + thetay = 0.5*gy*dt; + thetaz = 0.5*gz*dt; + + //update quaternion using Runge Kutta algorithms. + //explanation: http://blog.csdn.net/aasdsadad/article/details/73080832 + dq0 = -q1*thetax-q2*thetay-q3*thetaz; + dq1 = q0*thetax+q2*thetaz-q3*thetay; + dq2 = q0*thetay-q1*thetaz+q3*thetax; + dq3 = q0*thetaz+q1*thetay-q2*thetax; + + q0 += dq0; + q1 += dq1; + q2 += dq2; + q3 += dq3; + + //normalize quaternion + recipNorm = invSqrt(q0*q0+q1*q1+q2*q2+q3*q3); + q0 *= recipNorm; + q1 *= recipNorm; + q2 *= recipNorm; + q3 *= recipNorm; + +} + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/src/bias_calculator.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/src/bias_calculator.cpp new file mode 100644 index 0000000..d462be4 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter/src/bias_calculator.cpp @@ -0,0 +1,40 @@ +#include "ros/ros.h" +#include "geometry_msgs/Vector3.h" +#include "sensor_msgs/Imu.h" + +double x = 0, y = 0, z = 0; +double count = 0.0; +geometry_msgs::Vector3 v; + +void calculator(sensor_msgs::Imu imu_msg) { + x += imu_msg.angular_velocity.x; + y += imu_msg.angular_velocity.y; + z += imu_msg.angular_velocity.z; + count++; +} + +int main(int argc, char** argv) { + ros::init(argc, argv, "bias_calculator"); + ROS_INFO("Please keep your IMU still for 10 secs"); + ros::NodeHandle n; + ros::Subscriber sub = n.subscribe("imu", 1000, calculator); + ros::Publisher pub = n.advertise< geometry_msgs::Vector3>("bias", 1); + + while(ros::ok()) { + for(int i=0; i<10; i++) + {ros::Duration(1).sleep(); + ROS_INFO("%ds left", 10-i); + ros::spinOnce(); } + if(count == 0) + { ROS_WARN("can't receive imu0 data. Please try again."); + break; } + v.x = x /count; + v.y = y /count; + v.z = z /count; + pub.publish(v); + ROS_INFO("Calculate ends."); + ROS_INFO("gyro's initial data offest is %f, y is %f, z is %f", v.x, v.y, v.z); + break; + } +} + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/CHANGELOG.rst b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/CHANGELOG.rst new file mode 100644 index 0000000..438ca4e --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/CHANGELOG.rst @@ -0,0 +1,192 @@ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Changelog for package imu_filter_madgwick +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +1.1.7 (2019-05-06) +------------------ +* Skip messages and warn if computeOrientation fails +* Contributors: Martin Günther + +1.1.6 (2018-05-25) +------------------ +* Remove outdated Makefile +* update to use non deprecated pluginlib macro (`#77 `_) +* Add warning when IMU time stamp is zero + Closes `#82 `_. +* Contributors: Martin Günther, Mikael Arguedas + +1.1.4 (2017-05-22) +------------------ +* Print warning if waiting for topic + Closes `#61 `_. +* Fix boost::lock_error on shutdown +* Contributors: Martin Günther + +1.1.3 (2017-03-10) +------------------ +* Return precisely normalized quaternions + Fixes `#67 `_ : TF_DENORMALIZED_QUATERNION warning added in TF2 0.5.14. +* Tests: Check that output quaternions are normalized +* Fixed lock so it stays in scope until end of method. +* Contributors: Jason Mercer, Martin Guenther, Martin Günther + +1.1.2 (2016-09-07) +------------------ +* Add missing dependency on tf2_geometry_msgs +* Contributors: Martin Guenther + +1.1.1 (2016-09-07) +------------------ +* Add parameter "world_frame": optionally use ENU or NED instead of NWU + convention (from `#60 `_; + closes `#36 `_) +* Add parameter "stateless" for debugging purposes: don't do any stateful + filtering, but instead publish the orientation directly computed from the + latest accelerometer (+ optionally magnetometer) readings alone +* Replace the (buggy) Euler-angle-based initialization routine + (ImuFilterRos::computeRPY) by a correct transformation + matrix based one (StatelessOrientation::computeOrientation) and make it + available as a library function +* Refactor madgwickAHRSupdate() (pull out some functions, remove micro + optimizations to improve readability) +* Add unit tests +* Contributors: Martin Guenther, Michael Stoll + +1.1.0 (2016-04-25) +------------------ + +1.0.11 (2016-04-22) +------------------- +* Jade: Change default: use_magnetic_field_msg = true +* Contributors: Martin Guenther + +1.0.10 (2016-04-22) +------------------- + +1.0.9 (2015-10-16) +------------------ + +1.0.8 (2015-10-07) +------------------ + +1.0.7 (2015-10-07) +------------------ + +1.0.6 (2015-10-06) +------------------ +* Split ImuFilter class into ImuFilter and ImuFilterRos in order to + have a C++ API to the Madgwick algorithm +* Properly install header files. +* Contributors: Martin Günther, Michael Stoll + +1.0.5 (2015-06-24) +------------------ +* Add "~use_magnetic_field_msg" param. + This allows the user to subscribe to the /imu/mag topic as a + sensor_msgs/MagneticField rather than a geometry_msgs/Vector3Stamped. + The default for now is false, which preserves the legacy behaviour via a + separate subscriber which converts Vector3Stamped to MagneticField and + republishes. +* Contributors: Mike Purvis, Martin Günther + +1.0.4 (2015-05-06) +------------------ +* update dynamic reconfigure param descriptions +* only advertise debug topics if they are used +* allow remapping of the whole imu namespace + with this change, all topics can be remapped at once, like this: + rosrun imu_filter_madgwick imu_filter_node imu:=my_imu +* Contributors: Martin Günther + +1.0.3 (2015-01-29) +------------------ +* Add std dev parameter to orientation estimate covariance matrix +* Port imu_filter_madgwick to tf2 +* Switch to smart pointer +* Contributors: Paul Bovbel, Martin Günther + +1.0.2 (2015-01-27) +------------------ +* fix tf publishing (switch parent + child frames) + The orientation is between a fixed inertial frame (``fixed_frame_``) and + the frame that the IMU is mounted in (``imu_frame_``). Also, + ``imu_msg.header.frame`` should be ``imu_frame_``, but the corresponding TF + goes from ``fixed_frame_`` to ``imu_frame_``. This commit fixes that; for + the ``reverse_tf`` case, it was already correct. + Also see http://answers.ros.org/question/50870/what-frame-is-sensor_msgsimuorientation-relative-to/. + Note that tf publishing should be enabled for debug purposes only, since we can only + provide the orientation, not the translation. +* Add ~reverse_tf parameter for the robots which does not have IMU on root-link +* Log mag bias on startup to assist with debugging. +* add boost depends to CMakeLists + All non-catkin things that we expose in our headers should be added to + the DEPENDS, so that packages which depend on our package will also + automatically link against it. +* Contributors: Martin Günther, Mike Purvis, Ryohei Ueda + +1.0.1 (2014-12-10) +------------------ +* add me as maintainer to package.xml +* turn mag_bias into a dynamic reconfigure param + Also rename mag_bias/x --> mag_bias_x etc., since dynamic reconfigure + doesn't allow slashes. +* gain and zeta already set via dynamic_reconfigure + Reading the params explicitly is not necessary. Instead, + dynamic_reconfigure will read them and set them as soon as we call + config_server->setCallback(). +* reconfigure server: use proper namespace + Before, the reconfigure server used the private namespace of the nodelet + *manager* instead of the nodelet, so the params on the parameter server + and the ones from dynamic_reconfigure were out of sync. +* check for NaNs in magnetometer message + Some magnetometer drivers (e.g. phidgets_drivers) output NaNs, which + is a valid way of saying that this measurement is invalid. During + initialization, we simply wait for the first valid message, assuming + there will be one soon. +* magnetometer msg check: isnan() -> !isfinite() + This catches both inf and NaN. Not sure whether sending inf in a Vector3 + message is valid (Nan is), but this doesn't hurt and is just good + defensive programming. +* Initialize yaw from calibrated magnetometer data + * Add magnetometer biases (mag_bias/x and mag_bias/y) for hard-iron compensation. + * Initialize yaw orientation from magnetometer reading. + * Add imu/rpy/raw and imu/rpy/filtered as debug topics. imu/rpy/raw can be used for computing magnetometer biases. imu/rpy/filtered topic is for user readability only. +* Contributors: Martin Günther, Shokoofeh Pourmehr + +1.0.0 (2014-09-03) +------------------ +* First public release +* Remove setting imu message frame to fixed/odom +* CMakeLists: remove unnecessary link_directories, LIBRARY_OUTPUT_PATH +* add missing build dependency on generated config + This removes a racing condition from the build process. +* install nodelet xml file + Otherwise the nodelet can't be found +* fix implementation of invSqrt() + The old invSqrt() implementation causes the estimate to diverge under + constant input. The problem was the line `long i = (long)&y;`, where 64 + bits are read from a 32 bit number. Thanks to @tomas-c for spotting this + and pointing out the solution. +* catkinization of imu_tools metapackage +* fix typo: zeta -> ``zeta_`` +* fix initialization of initial rotation +* gyro drift correction function added in MARG implementation +* set "zeta" as a parameter for dynamic reconfigure in the .cfg file +* add new test bag: phidgets_imu_upside_down +* add parameter publish_tf + When the imu is used together with other packages, such as + robot_pose_ekf, publishing the transform often interferes with those + packages. This parameter allows to disable tf publishing. +* add some sample imu data +* more informative constant_dt message. Reverts to 0.0 on illegal param value +* imu_filter_madgwick manifest now correctly lists the package as GPL license. +* orientation is initialized from acceleration vector on first message received +* added dynamic reconfigure for gain parameter. Added better messages about constant_dt param at startup +* the tf published is now timestamped as the imu msg, and not as now(). Also added constant dt option for the imu+mag callback +* fix the transform publish -- from the fixed frame to the frame of the imu +* add a tf broadcaster with the orientation +* as per PaulKemppi: added option to set constant dt +* walchko: Needed to add namespace: std::isnan() and needed to add rosbuild_link_boost(imu_filter signals) to CMakeLists.txt +* added sebastian's name and link to the manifest +* renamed imu_filter to imu_filter_madgwick +* Contributors: Ivan Dryanovski, Martin Günther, Mike Purvis, Sameer Parekh, TUG-DESTOP, Francisco Vina, Michael Görner, Paul Kemppi, Tomas Cerskus, Kevin Walchko diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/CMakeLists.txt new file mode 100644 index 0000000..f507cd4 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/CMakeLists.txt @@ -0,0 +1,76 @@ +cmake_minimum_required(VERSION 2.8.3) +project(imu_filter_madgwick) + +find_package(catkin REQUIRED COMPONENTS roscpp sensor_msgs geometry_msgs tf2 tf2_geometry_msgs tf2_ros nodelet pluginlib message_filters dynamic_reconfigure) + +find_package(Boost REQUIRED COMPONENTS system thread +# signals) +) + +# Generate dynamic parameters +generate_dynamic_reconfigure_options(cfg/ImuFilterMadgwick.cfg) + + +catkin_package( + DEPENDS Boost + CATKIN_DEPENDS roscpp sensor_msgs geometry_msgs tf2_ros tf2_geometry_msgs nodelet pluginlib message_filters dynamic_reconfigure + INCLUDE_DIRS + LIBRARIES imu_filter imu_filter_nodelet +) + +include_directories( + include + ${catkin_INCLUDE_DIRS} + ${Boost_INCLUDE_DIRS} +) + + +# create imu_filter library +add_library (imu_filter src/imu_filter.cpp src/imu_filter_ros.cpp src/stateless_orientation.cpp) +add_dependencies(imu_filter ${PROJECT_NAME}_gencfg) +target_link_libraries(imu_filter ${catkin_LIBRARIES} ${Boost_LIBRARIES}) + +# create imu_filter_nodelet library +add_library (imu_filter_nodelet src/imu_filter_nodelet.cpp) +add_dependencies(imu_filter_nodelet ${PROJECT_NAME}_gencfg) +target_link_libraries(imu_filter_nodelet imu_filter ${catkin_LIBRARIES} ${Boost_LIBRARIES}) + +# create imu_filter_node executable +add_executable(imu_filter_node src/imu_filter_node.cpp) +add_dependencies(imu_filter_node ${PROJECT_NAME}_gencfg) +target_link_libraries(imu_filter_node imu_filter ${catkin_LIBRARIES} ${Boost_LIBRARIES}) + + +install(TARGETS imu_filter_node + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +) + +install(TARGETS imu_filter imu_filter_nodelet + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_GLOBAL_BIN_DESTINATION} +) + +install(DIRECTORY include/${PROJECT_NAME}/ + DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION} + FILES_MATCHING PATTERN "*.h" +) + +install(FILES imu_filter_nodelet.xml + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} +) + + + +if(CATKIN_ENABLE_TESTING) + catkin_add_gtest(${PROJECT_NAME}-madgwick_test + test/stateless_orientation_test.cpp + test/madgwick_test.cpp + ) + target_link_libraries(${PROJECT_NAME}-madgwick_test + imu_filter + ${catkin_LIBRARIES} + ) +endif() diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/COPYING b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/COPYING new file mode 100644 index 0000000..02bbb60 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/COPYING @@ -0,0 +1,165 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/Makefile b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/Makefile new file mode 100644 index 0000000..b75b928 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/Makefile @@ -0,0 +1 @@ +include $(shell rospack find mk)/cmake.mk \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/cfg/ImuFilterMadgwick.cfg b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/cfg/ImuFilterMadgwick.cfg new file mode 100644 index 0000000..a421dcf --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/cfg/ImuFilterMadgwick.cfg @@ -0,0 +1,18 @@ +#! /usr/bin/env python +# IMU Filter dynamic reconfigure + +PACKAGE='imu_filter_madgwick' + +from dynamic_reconfigure.parameter_generator_catkin import * + +gen = ParameterGenerator() + +gen.add("gain", double_t, 0, "Gain of the filter. Higher values lead to faster convergence but more noise. Lower values lead to slower convergence but smoother signal.", 0.1, 0.0, 1.0) +gen.add("zeta", double_t, 0, "Gyro drift gain (approx. rad/s).", 0, -1.0, 1.0) +gen.add("mag_bias_x", double_t, 0, "Magnetometer bias (hard iron correction), x component.", 0, -10.0, 10.0) +gen.add("mag_bias_y", double_t, 0, "Magnetometer bias (hard iron correction), y component.", 0, -10.0, 10.0) +gen.add("mag_bias_z", double_t, 0, "Magnetometer bias (hard iron correction), z component.", 0, -10.0, 10.0) +gen.add("orientation_stddev", double_t, 0, "Standard deviation of the orientation estimate.", 0, 0, 1.0) + +exit(gen.generate(PACKAGE, "dynamic_reconfigure_node", "ImuFilterMadgwick")) + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/imu_filter_nodelet.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/imu_filter_nodelet.xml new file mode 100644 index 0000000..0306487 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/imu_filter_nodelet.xml @@ -0,0 +1,9 @@ + + + + + Imu Filter nodelet publisher. + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/include/imu_filter_madgwick/imu_filter.h b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/include/imu_filter_madgwick/imu_filter.h new file mode 100644 index 0000000..4cf55f5 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/include/imu_filter_madgwick/imu_filter.h @@ -0,0 +1,107 @@ +/* + * Copyright (C) 2010, CCNY Robotics Lab + * Ivan Dryanovski + * + * http://robotics.ccny.cuny.edu + * + * Based on implementation of Madgwick's IMU and AHRS algorithms. + * http://www.x-io.co.uk/node/8#open_source_ahrs_and_imu_algorithms + * + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef IMU_FILTER_MADWICK_IMU_FILTER_H +#define IMU_FILTER_MADWICK_IMU_FILTER_H + +#include +#include +#include + +class ImuFilter +{ + public: + + ImuFilter(); + virtual ~ImuFilter(); + + private: + // **** paramaters + double gain_; // algorithm gain + double zeta_; // gyro drift bias gain + WorldFrame::WorldFrame world_frame_; // NWU, ENU, NED + + // **** state variables + double q0, q1, q2, q3; // quaternion + float w_bx_, w_by_, w_bz_; // + +public: + void setAlgorithmGain(double gain) + { + gain_ = gain; + } + + void setDriftBiasGain(double zeta) + { + zeta_ = zeta; + } + + void setWorldFrame(WorldFrame::WorldFrame frame) + { + world_frame_ = frame; + } + + void getOrientation(double& q0, double& q1, double& q2, double& q3) + { + q0 = this->q0; + q1 = this->q1; + q2 = this->q2; + q3 = this->q3; + + // perform precise normalization of the output, using 1/sqrt() + // instead of the fast invSqrt() approximation. Without this, + // TF2 complains that the quaternion is not normalized. + double recipNorm = 1 / sqrt(q0 * q0 + q1 * q1 + q2 * q2 + q3 * q3); + q0 *= recipNorm; + q1 *= recipNorm; + q2 *= recipNorm; + q3 *= recipNorm; + } + + void setOrientation(double q0, double q1, double q2, double q3) + { + this->q0 = q0; + this->q1 = q1; + this->q2 = q2; + this->q3 = q3; + + w_bx_ = 0; + w_by_ = 0; + w_bz_ = 0; + } + + void madgwickAHRSupdate(float gx, float gy, float gz, + float ax, float ay, float az, + float mx, float my, float mz, + float dt); + + void madgwickAHRSupdateIMU(float gx, float gy, float gz, + float ax, float ay, float az, + float dt); + + void getGravity(float& rx, float& ry, float& rz, + float gravity = 9.80665); +}; + +#endif // IMU_FILTER_IMU_MADWICK_FILTER_H diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/include/imu_filter_madgwick/imu_filter_nodelet.h b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/include/imu_filter_madgwick/imu_filter_nodelet.h new file mode 100644 index 0000000..00c01c3 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/include/imu_filter_madgwick/imu_filter_nodelet.h @@ -0,0 +1,41 @@ +/* + * Copyright (C) 2010, CCNY Robotics Lab + * Ivan Dryanovski + * + * http://robotics.ccny.cuny.edu + * + * Based on implementation of Madgwick's IMU and AHRS algorithms. + * http://www.x-io.co.uk/node/8#open_source_ahrs_and_imu_algorithms + * + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef IMU_FILTER_MADGWICK_IMU_FILTER_NODELET_H +#define IMU_FILTER_MADGWICK_IMU_FILTER_NODELET_H + +#include + +#include "imu_filter_madgwick/imu_filter_ros.h" + +class ImuFilterNodelet : public nodelet::Nodelet +{ + public: + virtual void onInit(); + + private: + boost::shared_ptr filter_; +}; + +#endif // IMU_FILTER_MADGWICK_IMU_FILTER_NODELET_H diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/include/imu_filter_madgwick/imu_filter_ros.h b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/include/imu_filter_madgwick/imu_filter_ros.h new file mode 100644 index 0000000..90bbca6 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/include/imu_filter_madgwick/imu_filter_ros.h @@ -0,0 +1,125 @@ +/* + * Copyright (C) 2010, CCNY Robotics Lab + * Ivan Dryanovski + * + * http://robotics.ccny.cuny.edu + * + * Based on implementation of Madgwick's IMU and AHRS algorithms. + * http://www.x-io.co.uk/node/8#open_source_ahrs_and_imu_algorithms + * + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef IMU_FILTER_MADWICK_IMU_FILTER_ROS_H +#define IMU_FILTER_MADWICK_IMU_FILTER_ROS_H + +#include +#include +#include +#include +#include "tf2_ros/transform_broadcaster.h" +#include +#include +#include +#include + +#include "imu_filter_madgwick/imu_filter.h" +#include "imu_filter_madgwick/ImuFilterMadgwickConfig.h" + +class ImuFilterRos +{ + typedef sensor_msgs::Imu ImuMsg; + typedef sensor_msgs::MagneticField MagMsg; + typedef geometry_msgs::Vector3Stamped MagVectorMsg; + + typedef message_filters::sync_policies::ApproximateTime SyncPolicy; + typedef message_filters::Synchronizer Synchronizer; + typedef message_filters::Subscriber ImuSubscriber; + typedef message_filters::Subscriber MagSubscriber; + typedef message_filters::Subscriber MagVectorSubscriber; + + typedef imu_filter_madgwick::ImuFilterMadgwickConfig FilterConfig; + typedef dynamic_reconfigure::Server FilterConfigServer; + + public: + + ImuFilterRos(ros::NodeHandle nh, ros::NodeHandle nh_private); + virtual ~ImuFilterRos(); + + private: + + // **** ROS-related + + ros::NodeHandle nh_; + ros::NodeHandle nh_private_; + + boost::shared_ptr imu_subscriber_; + boost::shared_ptr mag_subscriber_; + boost::shared_ptr sync_; + + // Adapter to support the use_magnetic_field_msg param. + boost::shared_ptr vector_mag_subscriber_; + ros::Publisher mag_republisher_; + + ros::Publisher rpy_filtered_debug_publisher_; + ros::Publisher rpy_raw_debug_publisher_; + ros::Publisher imu_publisher_; + tf2_ros::TransformBroadcaster tf_broadcaster_; + + boost::shared_ptr config_server_; + ros::Timer check_topics_timer_; + + // **** paramaters + WorldFrame::WorldFrame world_frame_; + bool use_mag_; + bool use_magnetic_field_msg_; + bool stateless_; + bool publish_tf_; + bool reverse_tf_; + std::string fixed_frame_; + std::string imu_frame_; + double constant_dt_; + bool publish_debug_topics_; + bool remove_gravity_vector_; + geometry_msgs::Vector3 mag_bias_; + double orientation_variance_; + + // **** state variables + boost::mutex mutex_; + bool initialized_; + ros::Time last_time_; + + // **** filter implementation + ImuFilter filter_; + + // **** member functions + void imuMagCallback(const ImuMsg::ConstPtr& imu_msg_raw, + const MagMsg::ConstPtr& mav_msg); + + void imuCallback(const ImuMsg::ConstPtr& imu_msg_raw); + + void imuMagVectorCallback(const MagVectorMsg::ConstPtr& mag_vector_msg); + + void publishFilteredMsg(const ImuMsg::ConstPtr& imu_msg_raw); + void publishTransform(const ImuMsg::ConstPtr& imu_msg_raw); + + void publishRawMsg(const ros::Time& t, + float roll, float pitch, float yaw); + + void reconfigCallback(FilterConfig& config, uint32_t level); + void checkTopicsTimerCallback(const ros::TimerEvent&); +}; + +#endif // IMU_FILTER_IMU_MADWICK_FILTER_ROS_H diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/include/imu_filter_madgwick/stateless_orientation.h b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/include/imu_filter_madgwick/stateless_orientation.h new file mode 100644 index 0000000..ed0f7e3 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/include/imu_filter_madgwick/stateless_orientation.h @@ -0,0 +1,48 @@ +/* + * Copyright (C) 2010, CCNY Robotics Lab + * Ivan Dryanovski + * + * http://robotics.ccny.cuny.edu + * + * Based on implementation of Madgwick's IMU and AHRS algorithms. + * http://www.x-io.co.uk/node/8#open_source_ahrs_and_imu_algorithms + * + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef IMU_FILTER_MADWICK_STATELESS_ORIENTATION_H +#define IMU_FILTER_MADWICK_STATELESS_ORIENTATION_H + +#include +#include +#include + +class StatelessOrientation +{ +public: + static bool computeOrientation( + WorldFrame::WorldFrame frame, + geometry_msgs::Vector3 acceleration, + geometry_msgs::Vector3 magneticField, + geometry_msgs::Quaternion& orientation); + + static bool computeOrientation( + WorldFrame::WorldFrame frame, + geometry_msgs::Vector3 acceleration, + geometry_msgs::Quaternion& orientation); + +}; + +#endif // IMU_FILTER_MADWICK_STATELESS_ORIENTATION_H diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/include/imu_filter_madgwick/world_frame.h b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/include/imu_filter_madgwick/world_frame.h new file mode 100644 index 0000000..8f585d7 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/include/imu_filter_madgwick/world_frame.h @@ -0,0 +1,8 @@ +#ifndef IMU_FILTER_MADGWICK_WORLD_FRAME_H_ +#define IMU_FILTER_MADGWICK_WORLD_FRAME_H_ + +namespace WorldFrame { + enum WorldFrame { ENU, NED, NWU }; +} + +#endif diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/package.xml new file mode 100644 index 0000000..7746949 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/package.xml @@ -0,0 +1,45 @@ + + imu_filter_madgwick + 1.1.7 + + Filter which fuses angular velocities, accelerations, and (optionally) magnetic readings from a generic IMU device into an orientation. Based on code by Sebastian Madgwick, http://www.x-io.co.uk/node/8#open_source_ahrs_and_imu_algorithms. + + GPL + http://ros.org/wiki/imu_filter_madgwick + Ivan Dryanovski + Martin Günther + Ivan Dryanovski + + catkin + + roscpp + sensor_msgs + geometry_msgs + tf2 + tf2_geometry_msgs + tf2_ros + nodelet + pluginlib + message_filters + dynamic_reconfigure + + roscpp + sensor_msgs + geometry_msgs + tf2 + tf2_geometry_msgs + tf2_ros + nodelet + pluginlib + message_filters + dynamic_reconfigure + + rosunit + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/sample/ardrone_imu.bag b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/sample/ardrone_imu.bag new file mode 100644 index 0000000..393a9af Binary files /dev/null and b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/sample/ardrone_imu.bag differ diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/sample/phidgets_imu_upside_down.bag b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/sample/phidgets_imu_upside_down.bag new file mode 100644 index 0000000..f22b800 Binary files /dev/null and b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/sample/phidgets_imu_upside_down.bag differ diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/sample/sparkfun_razor.bag b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/sample/sparkfun_razor.bag new file mode 100644 index 0000000..9667064 Binary files /dev/null and b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/sample/sparkfun_razor.bag differ diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/src/imu_filter.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/src/imu_filter.cpp new file mode 100644 index 0000000..03b868d --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/src/imu_filter.cpp @@ -0,0 +1,339 @@ +/* + * Copyright (C) 2010, CCNY Robotics Lab + * Ivan Dryanovski + * + * http://robotics.ccny.cuny.edu + * + * Based on implementation of Madgwick's IMU and AHRS algorithms. + * http://www.x-io.co.uk/node/8#open_source_ahrs_and_imu_algorithms + * + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include "imu_filter_madgwick/imu_filter.h" + +// Fast inverse square-root +// See: http://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Reciprocal_of_the_square_root +static float invSqrt(float x) +{ + float xhalf = 0.5f * x; + union + { + float x; + int i; + } u; + u.x = x; + u.i = 0x5f3759df - (u.i >> 1); + /* The next line can be repeated any number of times to increase accuracy */ + u.x = u.x * (1.5f - xhalf * u.x * u.x); + return u.x; +} + +template +static inline void normalizeVector(T& vx, T& vy, T& vz) +{ + T recipNorm = invSqrt (vx * vx + vy * vy + vz * vz); + vx *= recipNorm; + vy *= recipNorm; + vz *= recipNorm; +} + +template +static inline void normalizeQuaternion(T& q0, T& q1, T& q2, T& q3) +{ + T recipNorm = invSqrt (q0 * q0 + q1 * q1 + q2 * q2 + q3 * q3); + q0 *= recipNorm; + q1 *= recipNorm; + q2 *= recipNorm; + q3 *= recipNorm; +} + +static inline void rotateAndScaleVector( + float q0, float q1, float q2, float q3, + float _2dx, float _2dy, float _2dz, + float& rx, float& ry, float& rz) { + + // result is half as long as input + rx = _2dx * (0.5f - q2 * q2 - q3 * q3) + + _2dy * (q0 * q3 + q1 * q2) + + _2dz * (q1 * q3 - q0 * q2); + ry = _2dx * (q1 * q2 - q0 * q3) + + _2dy * (0.5f - q1 * q1 - q3 * q3) + + _2dz * (q0 * q1 + q2 * q3); + rz = _2dx * (q0 * q2 + q1 * q3) + + _2dy * (q2 * q3 - q0 * q1) + + _2dz * (0.5f - q1 * q1 - q2 * q2); +} + + +static inline void compensateGyroDrift( + float q0, float q1, float q2, float q3, + float s0, float s1, float s2, float s3, + float dt, float zeta, + float& w_bx, float& w_by, float& w_bz, + float& gx, float& gy, float& gz) +{ + // w_err = 2 q x s + float w_err_x = 2.0f * q0 * s1 - 2.0f * q1 * s0 - 2.0f * q2 * s3 + 2.0f * q3 * s2; + float w_err_y = 2.0f * q0 * s2 + 2.0f * q1 * s3 - 2.0f * q2 * s0 - 2.0f * q3 * s1; + float w_err_z = 2.0f * q0 * s3 - 2.0f * q1 * s2 + 2.0f * q2 * s1 - 2.0f * q3 * s0; + + w_bx += w_err_x * dt * zeta; + w_by += w_err_y * dt * zeta; + w_bz += w_err_z * dt * zeta; + + gx -= w_bx; + gy -= w_by; + gz -= w_bz; +} + +static inline void orientationChangeFromGyro( + float q0, float q1, float q2, float q3, + float gx, float gy, float gz, + float& qDot1, float& qDot2, float& qDot3, float& qDot4) +{ + // Rate of change of quaternion from gyroscope + // See EQ 12 + qDot1 = 0.5f * (-q1 * gx - q2 * gy - q3 * gz); + qDot2 = 0.5f * (q0 * gx + q2 * gz - q3 * gy); + qDot3 = 0.5f * (q0 * gy - q1 * gz + q3 * gx); + qDot4 = 0.5f * (q0 * gz + q1 * gy - q2 * gx); +} + +static inline void addGradientDescentStep( + float q0, float q1, float q2, float q3, + float _2dx, float _2dy, float _2dz, + float mx, float my, float mz, + float& s0, float& s1, float& s2, float& s3) +{ + float f0, f1, f2; + + // Gradient decent algorithm corrective step + // EQ 15, 21 + rotateAndScaleVector(q0,q1,q2,q3, _2dx, _2dy, _2dz, f0, f1, f2); + + f0 -= mx; + f1 -= my; + f2 -= mz; + + + // EQ 22, 34 + // Jt * f + s0 += (_2dy * q3 - _2dz * q2) * f0 + + (-_2dx * q3 + _2dz * q1) * f1 + + (_2dx * q2 - _2dy * q1) * f2; + s1 += (_2dy * q2 + _2dz * q3) * f0 + + (_2dx * q2 - 2.0f * _2dy * q1 + _2dz * q0) * f1 + + (_2dx * q3 - _2dy * q0 - 2.0f * _2dz * q1) * f2; + s2 += (-2.0f * _2dx * q2 + _2dy * q1 - _2dz * q0) * f0 + + (_2dx * q1 + _2dz * q3) * f1 + + (_2dx * q0 + _2dy * q3 - 2.0f * _2dz * q2) * f2; + s3 += (-2.0f * _2dx * q3 + _2dy * q0 + _2dz * q1) * f0 + + (-_2dx * q0 - 2.0f * _2dy * q3 + _2dz * q2) * f1 + + (_2dx * q1 + _2dy * q2) * f2; +} + +static inline void compensateMagneticDistortion( + float q0, float q1, float q2, float q3, + float mx, float my, float mz, + float& _2bxy, float& _2bz) +{ + float hx, hy, hz; + // Reference direction of Earth's magnetic field (See EQ 46) + rotateAndScaleVector(q0, -q1, -q2, -q3, mx, my, mz, hx, hy, hz); + + _2bxy = 4.0f * sqrt (hx * hx + hy * hy); + _2bz = 4.0f * hz; + +} + + +ImuFilter::ImuFilter() : + q0(1.0), q1(0.0), q2(0.0), q3(0.0), + w_bx_(0.0), w_by_(0.0), w_bz_(0.0), + zeta_ (0.0), gain_ (0.0), world_frame_(WorldFrame::ENU) +{ +} + +ImuFilter::~ImuFilter() +{ +} + +void ImuFilter::madgwickAHRSupdate( + float gx, float gy, float gz, + float ax, float ay, float az, + float mx, float my, float mz, + float dt) +{ + float s0, s1, s2, s3; + float qDot1, qDot2, qDot3, qDot4; + float _2bz, _2bxy; + + // Use IMU algorithm if magnetometer measurement invalid (avoids NaN in magnetometer normalisation) + if (!std::isfinite(mx) || !std::isfinite(my) || !std::isfinite(mz)) + { + madgwickAHRSupdateIMU(gx, gy, gz, ax, ay, az, dt); + return; + } + + // Compute feedback only if accelerometer measurement valid (avoids NaN in accelerometer normalisation) + if (!((ax == 0.0f) && (ay == 0.0f) && (az == 0.0f))) + { + // Normalise accelerometer measurement + normalizeVector(ax, ay, az); + + // Normalise magnetometer measurement + normalizeVector(mx, my, mz); + + // Compensate for magnetic distortion + compensateMagneticDistortion(q0, q1, q2, q3, mx, my, mz, _2bxy, _2bz); + + // Gradient decent algorithm corrective step + s0 = 0.0; s1 = 0.0; s2 = 0.0; s3 = 0.0; + switch (world_frame_) { + case WorldFrame::NED: + // Gravity: [0, 0, -1] + addGradientDescentStep(q0, q1, q2, q3, 0.0, 0.0, -2.0, ax, ay, az, s0, s1, s2, s3); + + // Earth magnetic field: = [bxy, 0, bz] + addGradientDescentStep(q0,q1,q2,q3, _2bxy, 0.0, _2bz, mx, my, mz, s0, s1, s2, s3); + break; + case WorldFrame::NWU: + // Gravity: [0, 0, 1] + addGradientDescentStep(q0, q1, q2, q3, 0.0, 0.0, 2.0, ax, ay, az, s0, s1, s2, s3); + + // Earth magnetic field: = [bxy, 0, bz] + addGradientDescentStep(q0,q1,q2,q3, _2bxy, 0.0, _2bz, mx, my, mz, s0, s1, s2, s3); + break; + default: + case WorldFrame::ENU: + // Gravity: [0, 0, 1] + addGradientDescentStep(q0, q1, q2, q3, 0.0, 0.0, 2.0, ax, ay, az, s0, s1, s2, s3); + + // Earth magnetic field: = [0, bxy, bz] + addGradientDescentStep(q0, q1, q2, q3, 0.0, _2bxy, _2bz, mx, my, mz, s0, s1, s2, s3); + break; + } + normalizeQuaternion(s0, s1, s2, s3); + + // compute gyro drift bias + compensateGyroDrift(q0, q1, q2, q3, s0, s1, s2, s3, dt, zeta_, w_bx_, w_by_, w_bz_, gx, gy, gz); + + orientationChangeFromGyro(q0, q1, q2, q3, gx, gy, gz, qDot1, qDot2, qDot3, qDot4); + + // Apply feedback step + qDot1 -= gain_ * s0; + qDot2 -= gain_ * s1; + qDot3 -= gain_ * s2; + qDot4 -= gain_ * s3; + } + else + { + orientationChangeFromGyro(q0, q1, q2, q3, gx, gy, gz, qDot1, qDot2, qDot3, qDot4); + } + + // Integrate rate of change of quaternion to yield quaternion + q0 += qDot1 * dt; + q1 += qDot2 * dt; + q2 += qDot3 * dt; + q3 += qDot4 * dt; + + // Normalise quaternion + normalizeQuaternion(q0, q1, q2, q3); +} + +void ImuFilter::madgwickAHRSupdateIMU( + float gx, float gy, float gz, + float ax, float ay, float az, + float dt) +{ + float recipNorm; + float s0, s1, s2, s3; + float qDot1, qDot2, qDot3, qDot4; + + // Rate of change of quaternion from gyroscope + orientationChangeFromGyro (q0, q1, q2, q3, gx, gy, gz, qDot1, qDot2, qDot3, qDot4); + + // Compute feedback only if accelerometer measurement valid (avoids NaN in accelerometer normalisation) + if (!((ax == 0.0f) && (ay == 0.0f) && (az == 0.0f))) + { + // Normalise accelerometer measurement + normalizeVector(ax, ay, az); + + // Gradient decent algorithm corrective step + s0 = 0.0; s1 = 0.0; s2 = 0.0; s3 = 0.0; + switch (world_frame_) { + case WorldFrame::NED: + // Gravity: [0, 0, -1] + addGradientDescentStep(q0, q1, q2, q3, 0.0, 0.0, -2.0, ax, ay, az, s0, s1, s2, s3); + break; + case WorldFrame::NWU: + // Gravity: [0, 0, 1] + addGradientDescentStep(q0, q1, q2, q3, 0.0, 0.0, 2.0, ax, ay, az, s0, s1, s2, s3); + break; + default: + case WorldFrame::ENU: + // Gravity: [0, 0, 1] + addGradientDescentStep(q0, q1, q2, q3, 0.0, 0.0, 2.0, ax, ay, az, s0, s1, s2, s3); + break; + } + + normalizeQuaternion(s0, s1, s2, s3); + + // Apply feedback step + qDot1 -= gain_ * s0; + qDot2 -= gain_ * s1; + qDot3 -= gain_ * s2; + qDot4 -= gain_ * s3; + } + + // Integrate rate of change of quaternion to yield quaternion + q0 += qDot1 * dt; + q1 += qDot2 * dt; + q2 += qDot3 * dt; + q3 += qDot4 * dt; + + // Normalise quaternion + normalizeQuaternion (q0, q1, q2, q3); +} + + +void ImuFilter::getGravity(float& rx, float& ry, float& rz, + float gravity) +{ + // Estimate gravity vector from current orientation + switch (world_frame_) { + case WorldFrame::NED: + // Gravity: [0, 0, -1] + rotateAndScaleVector(q0, q1, q2, q3, + 0.0, 0.0, -2.0*gravity, + rx, ry, rz); + break; + case WorldFrame::NWU: + // Gravity: [0, 0, 1] + rotateAndScaleVector(q0, q1, q2, q3, + 0.0, 0.0, 2.0*gravity, + rx, ry, rz); + break; + default: + case WorldFrame::ENU: + // Gravity: [0, 0, 1] + rotateAndScaleVector(q0, q1, q2, q3, + 0.0, 0.0, 2.0*gravity, + rx, ry, rz); + break; + } +} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/src/imu_filter_node.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/src/imu_filter_node.cpp new file mode 100644 index 0000000..0d16a0b --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/src/imu_filter_node.cpp @@ -0,0 +1,35 @@ +/* + * Copyright (C) 2010, CCNY Robotics Lab + * Ivan Dryanovski + * + * http://robotics.ccny.cuny.edu + * + * Based on implementation of Madgwick's IMU and AHRS algorithms. + * http://www.x-io.co.uk/node/8#open_source_ahrs_and_imu_algorithms + * + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "imu_filter_madgwick/imu_filter_ros.h" + +int main (int argc, char **argv) +{ + ros::init (argc, argv, "ImuFilter"); + ros::NodeHandle nh; + ros::NodeHandle nh_private("~"); + ImuFilterRos imu_filter(nh, nh_private); + ros::spin(); + return 0; +} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/src/imu_filter_nodelet.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/src/imu_filter_nodelet.cpp new file mode 100644 index 0000000..e3fc69e --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/src/imu_filter_nodelet.cpp @@ -0,0 +1,39 @@ +/* + * Copyright (C) 2010, CCNY Robotics Lab + * Ivan Dryanovski + * + * http://robotics.ccny.cuny.edu + * + * Based on implementation of Madgwick's IMU and AHRS algorithms. + * http://www.x-io.co.uk/node/8#open_source_ahrs_and_imu_algorithms + * + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "imu_filter_madgwick/imu_filter_nodelet.h" +#include + +void ImuFilterNodelet::onInit() +{ + NODELET_INFO("Initializing IMU Filter Nodelet"); + + // TODO: Do we want the single threaded or multithreaded NH? + ros::NodeHandle nh = getMTNodeHandle(); + ros::NodeHandle nh_private = getMTPrivateNodeHandle(); + + filter_.reset(new ImuFilterRos(nh, nh_private)); +} + +PLUGINLIB_EXPORT_CLASS(ImuFilterNodelet, nodelet::Nodelet) diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/src/imu_filter_ros.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/src/imu_filter_ros.cpp new file mode 100644 index 0000000..5352949 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/src/imu_filter_ros.cpp @@ -0,0 +1,424 @@ +/* + * Copyright (C) 2010, CCNY Robotics Lab + * Ivan Dryanovski + * + * http://robotics.ccny.cuny.edu + * + * Based on implementation of Madgwick's IMU and AHRS algorithms. + * http://www.x-io.co.uk/node/8#open_source_ahrs_and_imu_algorithms + * + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "imu_filter_madgwick/imu_filter_ros.h" +#include "imu_filter_madgwick/stateless_orientation.h" +#include "geometry_msgs/TransformStamped.h" +#include +#include + +ImuFilterRos::ImuFilterRos(ros::NodeHandle nh, ros::NodeHandle nh_private): + nh_(nh), + nh_private_(nh_private), + initialized_(false) +{ + ROS_INFO ("Starting ImuFilter"); + + // **** get paramters + if (!nh_private_.getParam ("stateless", stateless_)) + stateless_ = false; + if (!nh_private_.getParam ("use_mag", use_mag_)) + use_mag_ = true; + if (!nh_private_.getParam ("publish_tf", publish_tf_)) + publish_tf_ = true; + if (!nh_private_.getParam ("reverse_tf", reverse_tf_)) + reverse_tf_ = false; + if (!nh_private_.getParam ("fixed_frame", fixed_frame_)) + fixed_frame_ = "odom"; + if (!nh_private_.getParam ("constant_dt", constant_dt_)) + constant_dt_ = 0.0; + if (!nh_private_.getParam ("remove_gravity_vector", remove_gravity_vector_)) + remove_gravity_vector_= false; + if (!nh_private_.getParam ("publish_debug_topics", publish_debug_topics_)) + publish_debug_topics_= false; + if (!nh_private_.getParam ("use_magnetic_field_msg", use_magnetic_field_msg_)) + use_magnetic_field_msg_ = true; + + std::string world_frame; + // Default should become false for next release + if (!nh_private_.getParam ("world_frame", world_frame)) { + world_frame = "nwu"; + ROS_WARN("Deprecation Warning: The parameter world_frame was not set, default is 'nwu'."); + ROS_WARN("Starting with ROS Lunar, world_frame will default to 'enu'!"); + } + + if (world_frame == "ned") { + world_frame_ = WorldFrame::NED; + } else if (world_frame == "nwu"){ + world_frame_ = WorldFrame::NWU; + } else if (world_frame == "enu"){ + world_frame_ = WorldFrame::ENU; + } else { + ROS_ERROR("The parameter world_frame was set to invalid value '%s'.", world_frame.c_str()); + ROS_ERROR("Valid values are 'enu', 'ned' and 'nwu'. Setting to 'enu'."); + world_frame_ = WorldFrame::ENU; + } + filter_.setWorldFrame(world_frame_); + + // check for illegal constant_dt values + if (constant_dt_ < 0.0) + { + ROS_FATAL("constant_dt parameter is %f, must be >= 0.0. Setting to 0.0", constant_dt_); + constant_dt_ = 0.0; + } + + // if constant_dt_ is 0.0 (default), use IMU timestamp to determine dt + // otherwise, it will be constant + if (constant_dt_ == 0.0) + ROS_INFO("Using dt computed from message headers"); + else + ROS_INFO("Using constant dt of %f sec", constant_dt_); + + if (remove_gravity_vector_) + ROS_INFO("The gravity vector will be removed from the acceleration"); + else + ROS_INFO("The gravity vector is kept in the IMU message."); + + // **** register dynamic reconfigure + config_server_.reset(new FilterConfigServer(nh_private_)); + FilterConfigServer::CallbackType f = boost::bind(&ImuFilterRos::reconfigCallback, this, _1, _2); + config_server_->setCallback(f); + + // **** register publishers + imu_publisher_ = nh_.advertise( + ros::names::resolve("imu") + "/data", 5); + + if (publish_debug_topics_) + { + rpy_filtered_debug_publisher_ = nh_.advertise( + ros::names::resolve("imu") + "/rpy/filtered", 5); + + rpy_raw_debug_publisher_ = nh_.advertise( + ros::names::resolve("imu") + "/rpy/raw", 5); + } + + // **** register subscribers + // Synchronize inputs. Topic subscriptions happen on demand in the connection callback. + int queue_size = 5; + + imu_subscriber_.reset(new ImuSubscriber( + nh_, ros::names::resolve("imu") + "/data_raw", queue_size)); + + if (use_mag_) + { + if (use_magnetic_field_msg_) + { + mag_subscriber_.reset(new MagSubscriber( + nh_, ros::names::resolve("imu") + "/mag", queue_size)); + } + else + { + mag_subscriber_.reset(new MagSubscriber( + nh_, ros::names::resolve("imu") + "/magnetic_field", queue_size)); + + // Initialize the shim to support republishing Vector3Stamped messages from /mag as MagneticField + // messages on the /magnetic_field topic. + mag_republisher_ = nh_.advertise( + ros::names::resolve("imu") + "/magnetic_field", 5); + vector_mag_subscriber_.reset(new MagVectorSubscriber( + nh_, ros::names::resolve("imu") + "/mag", queue_size)); + vector_mag_subscriber_->registerCallback(&ImuFilterRos::imuMagVectorCallback, this); + } + + sync_.reset(new Synchronizer( + SyncPolicy(queue_size), *imu_subscriber_, *mag_subscriber_)); + sync_->registerCallback(boost::bind(&ImuFilterRos::imuMagCallback, this, _1, _2)); + } + else + { + imu_subscriber_->registerCallback(&ImuFilterRos::imuCallback, this); + } + + check_topics_timer_ = nh_.createTimer(ros::Duration(10.0), &ImuFilterRos::checkTopicsTimerCallback, this); +} + +ImuFilterRos::~ImuFilterRos() +{ + ROS_INFO ("Destroying ImuFilter"); + + // Explicitly stop callbacks; they could execute after we're destroyed + check_topics_timer_.stop(); +} + +void ImuFilterRos::imuCallback(const ImuMsg::ConstPtr& imu_msg_raw) +{ + boost::mutex::scoped_lock lock(mutex_); + + const geometry_msgs::Vector3& ang_vel = imu_msg_raw->angular_velocity; + const geometry_msgs::Vector3& lin_acc = imu_msg_raw->linear_acceleration; + + ros::Time time = imu_msg_raw->header.stamp; + imu_frame_ = imu_msg_raw->header.frame_id; + + if (!initialized_ || stateless_) + { + geometry_msgs::Quaternion init_q; + if (!StatelessOrientation::computeOrientation(world_frame_, lin_acc, init_q)) + { + ROS_WARN_THROTTLE(5.0, "The IMU seems to be in free fall, cannot determine gravity direction!"); + return; + } + filter_.setOrientation(init_q.w, init_q.x, init_q.y, init_q.z); + } + + if (!initialized_) + { + ROS_INFO("First IMU message received."); + check_topics_timer_.stop(); + + // initialize time + last_time_ = time; + initialized_ = true; + } + + // determine dt: either constant, or from IMU timestamp + float dt; + if (constant_dt_ > 0.0) + dt = constant_dt_; + else + { + dt = (time - last_time_).toSec(); + if (time.isZero()) + ROS_WARN_STREAM_THROTTLE(5.0, "The IMU message time stamp is zero, and the parameter constant_dt is not set!" << + " The filter will not update the orientation."); + } + + last_time_ = time; + + if (!stateless_) + filter_.madgwickAHRSupdateIMU( + ang_vel.x, ang_vel.y, ang_vel.z, + lin_acc.x, lin_acc.y, lin_acc.z, + dt); + + publishFilteredMsg(imu_msg_raw); + if (publish_tf_) + publishTransform(imu_msg_raw); +} + +void ImuFilterRos::imuMagCallback( + const ImuMsg::ConstPtr& imu_msg_raw, + const MagMsg::ConstPtr& mag_msg) +{ + boost::mutex::scoped_lock lock(mutex_); + + const geometry_msgs::Vector3& ang_vel = imu_msg_raw->angular_velocity; + const geometry_msgs::Vector3& lin_acc = imu_msg_raw->linear_acceleration; + const geometry_msgs::Vector3& mag_fld = mag_msg->magnetic_field; + + ros::Time time = imu_msg_raw->header.stamp; + imu_frame_ = imu_msg_raw->header.frame_id; + + /*** Compensate for hard iron ***/ + geometry_msgs::Vector3 mag_compensated; + mag_compensated.x = mag_fld.x - mag_bias_.x; + mag_compensated.y = mag_fld.y - mag_bias_.y; + mag_compensated.z = mag_fld.z - mag_bias_.z; + + double roll = 0.0; + double pitch = 0.0; + double yaw = 0.0; + + if (!initialized_ || stateless_) + { + // wait for mag message without NaN / inf + if(!std::isfinite(mag_fld.x) || !std::isfinite(mag_fld.y) || !std::isfinite(mag_fld.z)) + { + return; + } + + geometry_msgs::Quaternion init_q; + if (!StatelessOrientation::computeOrientation(world_frame_, lin_acc, mag_compensated, init_q)) + { + ROS_WARN_THROTTLE(5.0, "The IMU seems to be in free fall or close to magnetic north pole, cannot determine gravity direction!"); + return; + } + filter_.setOrientation(init_q.w, init_q.x, init_q.y, init_q.z); + } + + if (!initialized_) + { + ROS_INFO("First pair of IMU and magnetometer messages received."); + check_topics_timer_.stop(); + + // initialize time + last_time_ = time; + initialized_ = true; + } + + // determine dt: either constant, or from IMU timestamp + float dt; + if (constant_dt_ > 0.0) + dt = constant_dt_; + else + { + dt = (time - last_time_).toSec(); + if (time.isZero()) + ROS_WARN_STREAM_THROTTLE(5.0, "The IMU message time stamp is zero, and the parameter constant_dt is not set!" << + " The filter will not update the orientation."); + } + + last_time_ = time; + + if (!stateless_) + filter_.madgwickAHRSupdate( + ang_vel.x, ang_vel.y, ang_vel.z, + lin_acc.x, lin_acc.y, lin_acc.z, + mag_compensated.x, mag_compensated.y, mag_compensated.z, + dt); + + publishFilteredMsg(imu_msg_raw); + if (publish_tf_) + publishTransform(imu_msg_raw); + + if(publish_debug_topics_) + { + geometry_msgs::Quaternion orientation; + if (StatelessOrientation::computeOrientation(world_frame_, lin_acc, mag_compensated, orientation)) + { + tf2::Matrix3x3(tf2::Quaternion(orientation.x, orientation.y, orientation.z, orientation.w)).getRPY(roll, pitch, yaw, 0); + publishRawMsg(time, roll, pitch, yaw); + } + } +} + +void ImuFilterRos::publishTransform(const ImuMsg::ConstPtr& imu_msg_raw) +{ + double q0,q1,q2,q3; + filter_.getOrientation(q0,q1,q2,q3); + geometry_msgs::TransformStamped transform; + transform.header.stamp = imu_msg_raw->header.stamp; + if (reverse_tf_) + { + transform.header.frame_id = imu_frame_; + transform.child_frame_id = fixed_frame_; + transform.transform.rotation.w = q0; + transform.transform.rotation.x = -q1; + transform.transform.rotation.y = -q2; + transform.transform.rotation.z = -q3; + } + else { + transform.header.frame_id = fixed_frame_; + transform.child_frame_id = imu_frame_; + transform.transform.rotation.w = q0; + transform.transform.rotation.x = q1; + transform.transform.rotation.y = q2; + transform.transform.rotation.z = q3; + } + tf_broadcaster_.sendTransform(transform); + +} + +void ImuFilterRos::publishFilteredMsg(const ImuMsg::ConstPtr& imu_msg_raw) +{ + double q0,q1,q2,q3; + filter_.getOrientation(q0,q1,q2,q3); + + // create and publish filtered IMU message + boost::shared_ptr imu_msg = + boost::make_shared(*imu_msg_raw); + + imu_msg->orientation.w = q0; + imu_msg->orientation.x = q1; + imu_msg->orientation.y = q2; + imu_msg->orientation.z = q3; + + imu_msg->orientation_covariance[0] = orientation_variance_; + imu_msg->orientation_covariance[1] = 0.0; + imu_msg->orientation_covariance[2] = 0.0; + imu_msg->orientation_covariance[3] = 0.0; + imu_msg->orientation_covariance[4] = orientation_variance_; + imu_msg->orientation_covariance[5] = 0.0; + imu_msg->orientation_covariance[6] = 0.0; + imu_msg->orientation_covariance[7] = 0.0; + imu_msg->orientation_covariance[8] = orientation_variance_; + + + if(remove_gravity_vector_) { + float gx, gy, gz; + filter_.getGravity(gx, gy, gz); + imu_msg->linear_acceleration.x -= gx; + imu_msg->linear_acceleration.y -= gy; + imu_msg->linear_acceleration.z -= gz; + } + + imu_publisher_.publish(imu_msg); + + if(publish_debug_topics_) + { + geometry_msgs::Vector3Stamped rpy; + tf2::Matrix3x3(tf2::Quaternion(q1,q2,q3,q0)).getRPY(rpy.vector.x, rpy.vector.y, rpy.vector.z); + + rpy.header = imu_msg_raw->header; + rpy_filtered_debug_publisher_.publish(rpy); + } +} + +void ImuFilterRos::publishRawMsg(const ros::Time& t, + float roll, float pitch, float yaw) +{ + geometry_msgs::Vector3Stamped rpy; + rpy.vector.x = roll; + rpy.vector.y = pitch; + rpy.vector.z = yaw ; + rpy.header.stamp = t; + rpy.header.frame_id = imu_frame_; + rpy_raw_debug_publisher_.publish(rpy); +} + + +void ImuFilterRos::reconfigCallback(FilterConfig& config, uint32_t level) +{ + double gain, zeta; + boost::mutex::scoped_lock lock(mutex_); + gain = config.gain; + zeta = config.zeta; + filter_.setAlgorithmGain(gain); + filter_.setDriftBiasGain(zeta); + ROS_INFO("Imu filter gain set to %f", gain); + ROS_INFO("Gyro drift bias set to %f", zeta); + mag_bias_.x = config.mag_bias_x; + mag_bias_.y = config.mag_bias_y; + mag_bias_.z = config.mag_bias_z; + orientation_variance_ = config.orientation_stddev * config.orientation_stddev; + ROS_INFO("Magnetometer bias values: %f %f %f", mag_bias_.x, mag_bias_.y, mag_bias_.z); +} + +void ImuFilterRos::imuMagVectorCallback(const MagVectorMsg::ConstPtr& mag_vector_msg) +{ + MagMsg mag_msg; + mag_msg.header = mag_vector_msg->header; + mag_msg.magnetic_field = mag_vector_msg->vector; + // leaving mag_msg.magnetic_field_covariance set to all zeros (= "covariance unknown") + mag_republisher_.publish(mag_msg); +} + +void ImuFilterRos::checkTopicsTimerCallback(const ros::TimerEvent&) +{ + if (use_mag_) + ROS_WARN_STREAM("Still waiting for data on topics " << ros::names::resolve("imu") << "/data_raw" + << " and " << ros::names::resolve("imu") << "/mag" << "..."); + else + ROS_WARN_STREAM("Still waiting for data on topic " << ros::names::resolve("imu") << "/data_raw" << "..."); +} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/src/stateless_orientation.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/src/stateless_orientation.cpp new file mode 100644 index 0000000..920c105 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/src/stateless_orientation.cpp @@ -0,0 +1,172 @@ +/* + * Copyright (C) 2010, CCNY Robotics Lab + * Ivan Dryanovski + * + * http://robotics.ccny.cuny.edu + * + * Based on implementation of Madgwick's IMU and AHRS algorithms. + * http://www.x-io.co.uk/node/8#open_source_ahrs_and_imu_algorithms + * + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "imu_filter_madgwick/stateless_orientation.h" +#include +#include +#include + +template +static inline void crossProduct( + T ax, T ay, T az, + T bx, T by, T bz, + T& rx, T& ry, T& rz) { + rx = ay*bz - az*by; + ry = az*bx - ax*bz; + rz = ax*by - ay*bx; +} + + +template +static inline T normalizeVector(T& vx, T& vy, T& vz) { + T norm = sqrt(vx*vx + vy*vy + vz*vz); + T inv = 1.0 / norm; + vx *= inv; + vy *= inv; + vz *= inv; + return norm; + +} + + +bool StatelessOrientation::computeOrientation( + WorldFrame::WorldFrame frame, + geometry_msgs::Vector3 A, + geometry_msgs::Vector3 E, + geometry_msgs::Quaternion& orientation) { + + float Hx, Hy, Hz; + float Mx, My, Mz; + float normH, invH, invA; + + // A: pointing up + float Ax = A.x, Ay = A.y, Az = A.z; + + // E: pointing down/north + float Ex = E.x, Ey = E.y, Ez = E.z; + + // H: vector horizontal, pointing east + // H = E x A + crossProduct(Ex, Ey, Ez, Ax, Ay, Az, Hx, Hy, Hz); + + // normalize H + normH = normalizeVector(Hx, Hy, Hz); + if (normH < 1E-7) { + // device is close to free fall (or in space?), or close to + // magnetic north pole. + // mag in T => Threshold 1E-7, typical values are > 1E-5. + return false; + } + + // normalize A + normalizeVector(Ax, Ay, Az); + + // M: vector horizontal, pointing north + // M = A x H + crossProduct(Ax, Ay, Az, Hx, Hy, Hz, Mx, My, Mz); + + // Create matrix for basis transformation + tf2::Matrix3x3 R; + switch (frame) { + case WorldFrame::NED: + // vector space world W: + // Basis: bwx (1,0,0) north, bwy (0,1,0) east, bwz (0,0,1) down + // vector space local L: + // Basis: M ,H, -A + // W(1,0,0) => L(M) + // W(0,1,0) => L(H) + // W(0,0,1) => L(-A) + + // R: Transform Matrix local => world equals basis of L, because basis of W is I + R[0][0] = Mx; R[0][1] = Hx; R[0][2] = -Ax; + R[1][0] = My; R[1][1] = Hy; R[1][2] = -Ay; + R[2][0] = Mz; R[2][1] = Hz; R[2][2] = -Az; + break; + + case WorldFrame::NWU: + // vector space world W: + // Basis: bwx (1,0,0) north, bwy (0,1,0) west, bwz (0,0,1) up + // vector space local L: + // Basis: M ,H, -A + // W(1,0,0) => L(M) + // W(0,1,0) => L(-H) + // W(0,0,1) => L(A) + + // R: Transform Matrix local => world equals basis of L, because basis of W is I + R[0][0] = Mx; R[0][1] = -Hx; R[0][2] = Ax; + R[1][0] = My; R[1][1] = -Hy; R[1][2] = Ay; + R[2][0] = Mz; R[2][1] = -Hz; R[2][2] = Az; + break; + + default: + case WorldFrame::ENU: + // vector space world W: + // Basis: bwx (1,0,0) east, bwy (0,1,0) north, bwz (0,0,1) up + // vector space local L: + // Basis: H, M , A + // W(1,0,0) => L(H) + // W(0,1,0) => L(M) + // W(0,0,1) => L(A) + + // R: Transform Matrix local => world equals basis of L, because basis of W is I + R[0][0] = Hx; R[0][1] = Mx; R[0][2] = Ax; + R[1][0] = Hy; R[1][1] = My; R[1][2] = Ay; + R[2][0] = Hz; R[2][1] = Mz; R[2][2] = Az; + break; + } + + // Matrix.getRotation assumes vector rotation, but we're using + // coordinate systems. Thus negate rotation angle (inverse). + tf2::Quaternion q; + R.getRotation(q); + tf2::convert(q.inverse(), orientation); + return true; +} + + +bool StatelessOrientation::computeOrientation( + WorldFrame::WorldFrame frame, + geometry_msgs::Vector3 A, + geometry_msgs::Quaternion& orientation) { + + // This implementation could be optimized regarding speed. + + // magnetic Field E must not be parallel to A, + // choose an arbitrary orthogonal vector + geometry_msgs::Vector3 E; + if (fabs(A.x) > 0.1 || fabs(A.y) > 0.1) { + E.x = A.y; + E.y = A.x; + E.z = 0.0; + } else if (fabs(A.z) > 0.1) { + E.x = 0.0; + E.y = A.z; + E.z = A.y; + } else { + // free fall + return false; + } + + return computeOrientation(frame, A, E, orientation); +} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/test/madgwick_test.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/test/madgwick_test.cpp new file mode 100644 index 0000000..1c6ac1d --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/test/madgwick_test.cpp @@ -0,0 +1,121 @@ +#include +#include +#include "test_helpers.h" + +#define FILTER_ITERATIONS 10000 + + +template +void filterStationary( + float Ax, float Ay, float Az, + float Mx, float My, float Mz, + double& q0, double& q1, double& q2, double& q3) { + float dt = 0.1; + float Gx = 0.0, Gy = 0.0, Gz = 0.0; // Stationary state => Gyro = (0,0,0) + + ImuFilter filter; + filter.setDriftBiasGain(0.0); + filter.setAlgorithmGain(0.1); + + // initialize with some orientation + filter.setOrientation(q0,q1,q2,q3); + filter.setWorldFrame(FRAME); + + for (int i = 0; i < FILTER_ITERATIONS; i++) { + filter.madgwickAHRSupdate(Gx, Gy, Gz, Ax, Ay, Az, Mx, My, Mz, dt); + } + + filter.getOrientation(q0,q1,q2,q3); +} + + +template +void filterStationary( + float Ax, float Ay, float Az, + double& q0, double& q1, double& q2, double& q3) { + float dt = 0.1; + float Gx = 0.0, Gy = 0.0, Gz = 0.0; // Stationary state => Gyro = (0,0,0) + + ImuFilter filter; + filter.setDriftBiasGain(0.0); + filter.setAlgorithmGain(0.1); + + // initialize with some orientation + filter.setOrientation(q0,q1,q2,q3); + filter.setWorldFrame(FRAME); + + for (int i = 0; i < FILTER_ITERATIONS; i++) { + filter.madgwickAHRSupdateIMU(Gx, Gy, Gz, Ax, Ay, Az, dt); + } + + filter.getOrientation(q0,q1,q2,q3); +} + + +#define TEST_STATIONARY_ENU(in_am, exp_result) \ + TEST(MadgwickTest, Stationary_ENU_ ## in_am){ \ + double q0 = .5, q1 = .5, q2 = .5, q3 = .5; \ + filterStationary(in_am, q0, q1, q2, q3); \ + ASSERT_IS_NORMALIZED(q0, q1, q2, q3); \ + ASSERT_QUAT_EQUAL(q0, q1, q2, q3, exp_result); } \ + TEST(MadgwickTest, Stationary_ENU_NM_ ## in_am){ \ + double q0 = .5, q1 = .5, q2 = .5, q3 = .5; \ + filterStationary(ACCEL_ONLY(in_am), q0, q1, q2, q3); \ + ASSERT_IS_NORMALIZED(q0, q1, q2, q3); \ + ASSERT_QUAT_EQUAL_EX_Z(q0, q1, q2, q3, exp_result); } + +#define TEST_STATIONARY_NED(in_am, exp_result) \ + TEST(MadgwickTest, Stationary_NED_ ## in_am){ \ + double q0 = .5, q1 = .5, q2 = .5, q3 = .5; \ + filterStationary(in_am, q0, q1, q2, q3); \ + ASSERT_IS_NORMALIZED(q0, q1, q2, q3); \ + ASSERT_QUAT_EQUAL(q0, q1, q2, q3, exp_result); } \ + TEST(MadgwickTest, Stationary_NED_NM_ ## in_am){ \ + double q0 = .5, q1 = .5, q2 = .5, q3 = .5; \ + filterStationary(ACCEL_ONLY(in_am), q0, q1, q2, q3); \ + ASSERT_IS_NORMALIZED(q0, q1, q2, q3); \ + ASSERT_QUAT_EQUAL_EX_Z(q0, q1, q2, q3, exp_result); } + +#define TEST_STATIONARY_NWU(in_am, exp_result) \ + TEST(MadgwickTest, Stationary_NWU_ ## in_am){ \ + double q0 = .5, q1 = .5, q2 = .5, q3 = .5; \ + filterStationary(in_am, q0, q1, q2, q3); \ + ASSERT_IS_NORMALIZED(q0, q1, q2, q3); \ + ASSERT_QUAT_EQUAL(q0, q1, q2, q3, exp_result); } \ + TEST(MadgwickTest, Stationary_NWU_NM_ ## in_am){ \ + double q0 = .5, q1 = .5, q2 = .5, q3 = .5; \ + filterStationary(ACCEL_ONLY(in_am), q0, q1, q2, q3); \ + ASSERT_IS_NORMALIZED(q0, q1, q2, q3); \ + ASSERT_QUAT_EQUAL_EX_Z(q0, q1, q2, q3, exp_result); } + +TEST_STATIONARY_NWU(AM_NORTH_EAST_DOWN, QUAT_X_180) +TEST_STATIONARY_NWU(AM_NORTH_WEST_UP, QUAT_IDENTITY) +TEST_STATIONARY_NWU(AM_WEST_NORTH_DOWN_RSD, QUAT_WEST_NORTH_DOWN_RSD_NWU) +TEST_STATIONARY_NWU(AM_NE_NW_UP_RSD, QUAT_NE_NW_UP_RSD_NWU) + +TEST_STATIONARY_ENU(AM_EAST_NORTH_UP, QUAT_IDENTITY) +TEST_STATIONARY_ENU(AM_SOUTH_UP_WEST, QUAT_XMYMZ_120) +TEST_STATIONARY_ENU(AM_SOUTH_EAST_UP, QUAT_MZ_90) +TEST_STATIONARY_ENU(AM_WEST_NORTH_DOWN_RSD, QUAT_WEST_NORTH_DOWN_RSD_ENU) +TEST_STATIONARY_ENU(AM_NE_NW_UP_RSD, QUAT_NE_NW_UP_RSD_ENU) + +TEST_STATIONARY_NED(AM_NORTH_EAST_DOWN, QUAT_IDENTITY) +TEST_STATIONARY_NED(AM_NORTH_WEST_UP, QUAT_X_180) +TEST_STATIONARY_NED(AM_WEST_NORTH_DOWN_RSD, QUAT_WEST_NORTH_DOWN_RSD_NED) +TEST_STATIONARY_NED(AM_NE_NW_UP_RSD, QUAT_NE_NW_UP_RSD_NED) + + + +TEST(MadgwickTest, TestQuatEqNoZ) { + + ASSERT_TRUE(quat_eq_ex_z(QUAT_IDENTITY, QUAT_MZ_90)); + ASSERT_FALSE(quat_eq_ex_z(QUAT_IDENTITY, QUAT_X_180)); + +} + + + +int main(int argc, char **argv){ + testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/test/stateless_orientation_test.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/test/stateless_orientation_test.cpp new file mode 100644 index 0000000..cb7a47c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/test/stateless_orientation_test.cpp @@ -0,0 +1,117 @@ +#include +#include "test_helpers.h" + + +template +bool computeOrientation( + float Ax, float Ay, float Az, + float Mx, float My, float Mz, + double& q0, double& q1, double& q2, double& q3) { + + geometry_msgs::Vector3 A, M; + geometry_msgs::Quaternion orientation; + A.x = Ax; A.y = Ay; A.z = Az; + M.x = Mx; M.y = My; M.z = Mz; + + bool res = StatelessOrientation::computeOrientation(FRAME, A, M, orientation); + + q0 = orientation.w; + q1 = orientation.x; + q2 = orientation.y; + q3 = orientation.z; + + return res; +} + +template +bool computeOrientation( + float Ax, float Ay, float Az, + double& q0, double& q1, double& q2, double& q3) { + + geometry_msgs::Vector3 A; + geometry_msgs::Quaternion orientation; + A.x = Ax; A.y = Ay; A.z = Az; + + bool res = StatelessOrientation::computeOrientation(FRAME, A, orientation); + + q0 = orientation.w; + q1 = orientation.x; + q2 = orientation.y; + q3 = orientation.z; + + return res; +} + + +#define TEST_STATELESS_ENU(in_am, exp_result) \ + TEST(StatelessOrientationTest, Stationary_ENU_ ## in_am){ \ + double q0, q1, q2, q3; \ + ASSERT_TRUE(computeOrientation(in_am, q0, q1, q2, q3)); \ + ASSERT_IS_NORMALIZED(q0, q1, q2, q3); \ + ASSERT_QUAT_EQUAL(q0, q1, q2, q3, exp_result); } \ + TEST(StatelessOrientationTest, Stationary_ENU_NM_ ## in_am){ \ + double q0, q1, q2, q3; \ + ASSERT_TRUE(computeOrientation(ACCEL_ONLY(in_am), q0, q1, q2, q3)); \ + ASSERT_IS_NORMALIZED(q0, q1, q2, q3); \ + ASSERT_QUAT_EQUAL_EX_Z(q0, q1, q2, q3, exp_result); } + +#define TEST_STATELESS_NED(in_am, exp_result) \ + TEST(StatelessOrientationTest, Stationary_NED_ ## in_am){ \ + double q0, q1, q2, q3; \ + ASSERT_TRUE(computeOrientation(in_am, q0, q1, q2, q3)); \ + ASSERT_IS_NORMALIZED(q0, q1, q2, q3); \ + ASSERT_QUAT_EQUAL(q0, q1, q2, q3, exp_result); } \ + TEST(StatelessOrientationTest, Stationary_NED_NM_ ## in_am){ \ + double q0, q1, q2, q3; \ + ASSERT_TRUE(computeOrientation(ACCEL_ONLY(in_am), q0, q1, q2, q3)); \ + ASSERT_IS_NORMALIZED(q0, q1, q2, q3); \ + ASSERT_QUAT_EQUAL_EX_Z(q0, q1, q2, q3, exp_result); } + +#define TEST_STATELESS_NWU(in_am, exp_result) \ + TEST(StatelessOrientationTest, Stationary_NWU_ ## in_am){ \ + double q0, q1, q2, q3; \ + ASSERT_TRUE(computeOrientation(in_am, q0, q1, q2, q3)); \ + ASSERT_IS_NORMALIZED(q0, q1, q2, q3); \ + ASSERT_QUAT_EQUAL(q0, q1, q2, q3, exp_result); } \ + TEST(StatelessOrientationTest, Stationary_NWU_NM_ ## in_am){ \ + double q0, q1, q2, q3; \ + ASSERT_TRUE(computeOrientation(ACCEL_ONLY(in_am), q0, q1, q2, q3)); \ + ASSERT_IS_NORMALIZED(q0, q1, q2, q3); \ + ASSERT_QUAT_EQUAL_EX_Z(q0, q1, q2, q3, exp_result); } + +TEST_STATELESS_ENU(AM_EAST_NORTH_UP, QUAT_IDENTITY) +TEST_STATELESS_ENU(AM_SOUTH_UP_WEST, QUAT_XMYMZ_120) +TEST_STATELESS_ENU(AM_SOUTH_EAST_UP, QUAT_MZ_90) +TEST_STATELESS_ENU(AM_WEST_NORTH_DOWN_RSD, QUAT_WEST_NORTH_DOWN_RSD_ENU) +TEST_STATELESS_ENU(AM_NE_NW_UP_RSD, QUAT_NE_NW_UP_RSD_ENU) + + +TEST_STATELESS_NED(AM_NORTH_EAST_DOWN, QUAT_IDENTITY) +TEST_STATELESS_NED(AM_WEST_NORTH_DOWN, QUAT_MZ_90) +TEST_STATELESS_NED(AM_WEST_NORTH_DOWN_RSD, QUAT_WEST_NORTH_DOWN_RSD_NED) +TEST_STATELESS_NED(AM_NE_NW_UP_RSD, QUAT_NE_NW_UP_RSD_NED) + + +TEST_STATELESS_NWU(AM_NORTH_EAST_DOWN, QUAT_X_180) +TEST_STATELESS_NWU(AM_NORTH_WEST_UP, QUAT_IDENTITY) +TEST_STATELESS_NWU(AM_WEST_NORTH_DOWN_RSD, QUAT_WEST_NORTH_DOWN_RSD_NWU) +TEST_STATELESS_NWU(AM_NE_NW_UP_RSD, QUAT_NE_NW_UP_RSD_NWU) + + +TEST(StatelessOrientationTest, Check_NoAccel){ + double q0, q1, q2, q3; + ASSERT_FALSE(computeOrientation( + 0.0, 0.0, 0.0, + 0.0, 0.0005, -0.0005, + q0, q1, q2, q3)); +} + +TEST(StatelessOrientationTest, Check_NoMag){ + double q0, q1, q2, q3; + ASSERT_FALSE(computeOrientation( + 0.0, 0.0, 9.81, + 0.0, 0.0, 0.0, + q0, q1, q2, q3)); +} + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/test/test_helpers.h b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/test/test_helpers.h new file mode 100644 index 0000000..bdbbd0c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/imu_filter_madgwick/test/test_helpers.h @@ -0,0 +1,102 @@ + +#ifndef TEST_TEST_HELPERS_H_ +#define TEST_TEST_HELPERS_H_ + +#include +#include + +#define MAX_DIFF 0.05 + +template +static inline void normalize_quaternion(T& q0, T& q1, T& q2, T& q3) { + T invNorm = 1 / sqrt(q0*q0 + q1*q1 + q2*q2 + q3*q3); + T max = q0; + if (fabs(max) < fabs(q1)) max = q1; + if (fabs(max) < fabs(q2)) max = q2; + if (fabs(max) < fabs(q3)) max = q3; + if (max < 0) invNorm *= -1.0; + + q0 *= invNorm; + q1 *= invNorm; + q2 *= invNorm; + q3 *= invNorm; +} + +// Tests for normalization in the same way as tf2: +// https://github.com/ros/geometry2/blob/bd490515b1434caeff521ea14901dfe04063ca27/tf2/src/buffer_core.cpp#L244-L247 +template +static inline bool is_normalized(T q0, T q1, T q2, T q3) { + return std::abs((q0 * q0 + q1 * q1 + q2 * q2 + q3 * q3) - 1.0f) < 10e-6; +} + +template +static inline bool quat_equal(T q0, T q1, T q2, T q3, T qr0, T qr1, T qr2, T qr3) { + normalize_quaternion(q0, q1, q2, q3); + normalize_quaternion(qr0, qr1, qr2, qr3); + + return (fabs(q0 - qr0) < MAX_DIFF) && + (fabs(q1 - qr1) < MAX_DIFF) && + (fabs(q2 - qr2) < MAX_DIFF) && + (fabs(q3 - qr3) < MAX_DIFF); +} + +template +static inline bool quat_eq_ex_z(T q0, T q1, T q2, T q3, T qr0, T qr1, T qr2, T qr3) { + // assert q == qr * qz + tf2::Quaternion q(q1, q2, q3, q0); + tf2::Quaternion qr(qr1, qr2, qr3, qr0); + tf2::Quaternion qz = q * qr.inverse(); + + // remove x and y components. + qz.setX(0.0); + qz.setY(0.0); + + tf2::Quaternion qr_ = qz * qr; + + return quat_equal(q0, q1, q2, q3, + qr_.getW(), + qr_.getX(), + qr_.getY(), + qr_.getZ()); +} + +#define ASSERT_IS_NORMALIZED_(q0, q1, q2, q3) ASSERT_TRUE(is_normalized(q0, q1, q2, q3)) << "q0: " << q0 << ", q1: " << q1 << ", q2: " << q2 << ", q3: " << q3; +#define ASSERT_IS_NORMALIZED(...) ASSERT_IS_NORMALIZED_(__VA_ARGS__) + +#define ASSERT_QUAT_EQUAL_(q0, q1, q2, q3, qr0, qr1, qr2, qr3) ASSERT_TRUE(quat_equal(q0, q1, q2, q3, qr0, qr1, qr2, qr3)) << "q0: " << q0 << ", q1: " << q1 << ", q2: " << q2 << ", q3: " << q3; +#define ASSERT_QUAT_EQUAL(...) ASSERT_QUAT_EQUAL_(__VA_ARGS__) + +#define ASSERT_QUAT_EQUAL_EX_Z_(q0, q1, q2, q3, qr0, qr1, qr2, qr3) ASSERT_TRUE(quat_eq_ex_z(q0, q1, q2, q3, qr0, qr1, qr2, qr3)) << "q0: " << q0 << ", q1: " << q1 << ", q2: " << q2 << ", q3: " << q3; +#define ASSERT_QUAT_EQUAL_EX_Z(...) ASSERT_QUAT_EQUAL_EX_Z_(__VA_ARGS__) + +// Well known states +// scheme: AM_x_y_z +#define AM_EAST_NORTH_UP /* Acceleration */ 0.0, 0.0, 9.81, /* Magnetic */ 0.0, 0.0005, -0.0005 +#define AM_NORTH_EAST_DOWN /* Acceleration */ 0.0, 0.0, -9.81, /* Magnetic */ 0.0005, 0.0, 0.0005 +#define AM_NORTH_WEST_UP /* Acceleration */ 0.0, 0.0, 9.81, /* Magnetic */ 0.0005, 0.0, -0.0005 +#define AM_SOUTH_UP_WEST /* Acceleration */ 0.0, 9.81, 0.0, /* Magnetic */ -0.0005, -0.0005, 0.0 +#define AM_SOUTH_EAST_UP /* Acceleration */ 0.0, 0.0, 9.81, /* Magnetic */ -0.0005, 0.0, -0.0005 +#define AM_WEST_NORTH_DOWN /* Acceleration */ 0.0, 0.0, -9.81, /* Magnetic */ 0.0, 0.0005, 0.0005 + +// Real sensor data +#define AM_WEST_NORTH_DOWN_RSD /* Acceleration */ 0.12, 0.29, -9.83, /* Magnetic */ 6.363e-06, 1.0908e-05, 4.2723e-05 +#define AM_NE_NW_UP_RSD /* Acceleration */ 0.20, 0.55, 9.779, /* Magnetic */ 8.484e-06, 8.181e-06, -4.3329e-05 + +// Strip accelration from am +#define ACCEL_ONLY(ax,ay,az, mx,my,mz) ax, ay, az + +// Well known quaternion +// scheme: QUAT_axis_angle +#define QUAT_IDENTITY 1.0, 0.0, 0.0, 0.0 +#define QUAT_MZ_90 0.707107, 0.0, 0.0, -0.707107 +#define QUAT_X_180 0.0, 1.0, 0.0, 0.0 +#define QUAT_XMYMZ_120 0.5, 0.5, -0.5, -0.5 +#define QUAT_WEST_NORTH_DOWN_RSD_NWU 0.01, 0.86, 0.50, 0.012 /* axis: (0.864401, 0.502559, 0.0120614) | angle: 178.848deg */ +#define QUAT_WEST_NORTH_DOWN_RSD_ENU 0.0, -0.25, -0.97, -0.02/* Axis: (-0.2, -0.96, 0.02), Angle: 180deg */ +#define QUAT_WEST_NORTH_DOWN_RSD_NED 0.86, -0.01, 0.01, -0.50 /* Axis: -Z, Angle: 60deg */ +#define QUAT_NE_NW_UP_RSD_NWU 0.91, 0.03, -0.02, -0.41 /* axis: (0.0300376, -0.020025, -0.410513) | angle: 48.6734deg */ +#define QUAT_NE_NW_UP_RSD_ENU 0.93, 0.03, 0.0, 0.35 /* Axis: Z, Angle: 41deg */ +#define QUAT_NE_NW_UP_RSD_NED 0.021, -0.91, -0.41, 0.02 /* Axis: (0.9, 0.4, 0.0), Angle: 180deg */ + + +#endif /* TEST_TEST_HELPERS_H_ */ diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ipa_coverage_planning/.catkin_workspace b/Code/RK3588/PIBot_ROS/ros_ws/src/ipa_coverage_planning/.catkin_workspace new file mode 100644 index 0000000..52fd97e --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ipa_coverage_planning/.catkin_workspace @@ -0,0 +1 @@ +# This file currently only serves to mark the location of a catkin workspace for tool integration diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ipa_coverage_planning/src/ipa_coverage_planning b/Code/RK3588/PIBot_ROS/ros_ws/src/ipa_coverage_planning/src/ipa_coverage_planning new file mode 160000 index 0000000..d2e9227 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ipa_coverage_planning/src/ipa_coverage_planning @@ -0,0 +1 @@ +Subproject commit d2e922718991210048848b6ca06a1c118c96be2e diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/laserscan_to_pointcloud/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/laserscan_to_pointcloud/CMakeLists.txt new file mode 100644 index 0000000..3b2d712 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/laserscan_to_pointcloud/CMakeLists.txt @@ -0,0 +1,202 @@ +cmake_minimum_required(VERSION 3.0.2) +project(laserscan_to_pointcloud) + +## 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 laser_geometry laser_filters tf) + +## 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 laserscan_to_pointcloud +# 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}/laserscan_to_pointcloud.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/laserscan_to_pointcloud.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_laserscan_to_pointcloud.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/Code/RK3588/PIBot_ROS/ros_ws/src/laserscan_to_pointcloud/config/default_scan_shadow_filter.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/laserscan_to_pointcloud/config/default_scan_shadow_filter.yaml new file mode 100644 index 0000000..f759644 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/laserscan_to_pointcloud/config/default_scan_shadow_filter.yaml @@ -0,0 +1,8 @@ +scan_filter_chain: +- name: shadows + type: laser_filters/ScanShadowsFilter + params: + min_angle: 5 + max_angle: 175 + neighbors: 3 + window: 1 diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/laserscan_to_pointcloud/launch/laserscan_to_pointcloud_shadow_filtered.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/laserscan_to_pointcloud/launch/laserscan_to_pointcloud_shadow_filtered.launch new file mode 100644 index 0000000..03da1ce --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/laserscan_to_pointcloud/launch/laserscan_to_pointcloud_shadow_filtered.launch @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/laserscan_to_pointcloud/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/laserscan_to_pointcloud/package.xml new file mode 100644 index 0000000..5043c1f --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/laserscan_to_pointcloud/package.xml @@ -0,0 +1,59 @@ + + + laserscan_to_pointcloud + 0.0.0 + The laserscan_to_pointcloud package + + + + + david + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/laserscan_to_pointcloud/src/laserscan_to_pointcloud.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/laserscan_to_pointcloud/src/laserscan_to_pointcloud.cpp new file mode 100644 index 0000000..0bd70f1 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/laserscan_to_pointcloud/src/laserscan_to_pointcloud.cpp @@ -0,0 +1,128 @@ + +#include +#include +#include + +#include + +class LaserscanToPointcloud { + public: + LaserscanToPointcloud() : filter_chain_("sensor_msgs::LaserScan") { + ros::NodeHandle nh_; + + scan_sub_ = + nh_.subscribe("scan", 10, &LaserscanToPointcloud::scanCallback, this); + point_cloud2_pub_ = + nh_.advertise("scan_cloud", 10, false); + + ros::NodeHandle pnh_("~"); + pnh_.param("max_range", p_max_range_, 29.0); + pnh_.param("min_range", p_min_range_, 0.0); + + filter_chain_.configure("scan_filter_chain", pnh_); + + pnh_.param("use_high_fidelity_projection", p_use_high_fidelity_projection_, + false); + + if (p_use_high_fidelity_projection_) { + pnh_.param("target_frame", p_target_frame_, + std::string("NO_TARGET_FRAME_SPECIFIED")); + + if (p_target_frame_ == "NO_TARGET_FRAME_SPECIFIED") { + ROS_ERROR( + "No target frame specified! Needs to be set for high fidelity " + "projection to work"); + p_use_high_fidelity_projection_ = false; + return; + } + + tfl_.reset(new tf::TransformListener()); + wait_duration_ = ros::Duration(0.5); + } + } + + void scanCallback(const sensor_msgs::LaserScan::ConstPtr& scan_in) { + filter_chain_.update(*scan_in, scan_filtered_); + + cloud2_.data.clear(); + + const sensor_msgs::LaserScan* scan_to_convert = &scan_filtered_; + + if (p_min_range_ > 0.0) { + scan_min_range_ = scan_filtered_; + + size_t num_scans = scan_min_range_.ranges.size(); + + std::vector& ranges_vec = scan_min_range_.ranges; + + float min_range = static_cast(p_min_range_); + + for (size_t i = 0; i < num_scans; ++i) { + if (ranges_vec[i] < min_range) { + ranges_vec[i] = -INFINITY; + } + } + + scan_to_convert = &scan_min_range_; + } + + if (p_use_high_fidelity_projection_) { + ros::Time end_time = scan_in->header.stamp + + ros::Duration().fromSec(scan_in->ranges.size() * + scan_in->time_increment); + + if (tfl_->waitForTransform(p_target_frame_, scan_in->header.frame_id, + scan_in->header.stamp, wait_duration_) && + tfl_->waitForTransform(p_target_frame_, scan_in->header.frame_id, + end_time, wait_duration_)) { + projector_.transformLaserScanToPointCloud( + p_target_frame_, *scan_to_convert, cloud2_, *tfl_, p_max_range_, + laser_geometry::channel_option::Intensity); + } else { + ROS_WARN( + "Timed out waiting for transform between %s and %s for %f seconds. " + "Unable to transform laser scan.", + p_target_frame_.c_str(), scan_in->header.frame_id.c_str(), + wait_duration_.toSec()); + return; + } + + } else { + projector_.projectLaser(*scan_to_convert, cloud2_, p_max_range_, + laser_geometry::channel_option::Intensity); + } + + if (cloud2_.data.size() > 0) { + point_cloud2_pub_.publish(cloud2_); + } + } + + protected: + ros::Subscriber scan_sub_; + ros::Publisher point_cloud2_pub_; + + boost::shared_ptr tfl_; + ros::Duration wait_duration_; + + double p_max_range_; + double p_min_range_; + bool p_use_high_fidelity_projection_; + std::string p_target_frame_; + + laser_geometry::LaserProjection projector_; + + sensor_msgs::PointCloud2 cloud2_; + sensor_msgs::LaserScan scan_min_range_; + + sensor_msgs::LaserScan scan_filtered_; + + filters::FilterChain filter_chain_; +}; + +int main(int argc, char** argv) { + ros::init(argc, argv, "hector_laserscan_to_pointcloud_node"); + + LaserscanToPointcloud ls; + + ros::spin(); +} \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/CMakeLists.txt new file mode 100644 index 0000000..bbc3ef5 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/CMakeLists.txt @@ -0,0 +1,213 @@ +cmake_minimum_required(VERSION 2.8.3) +project(pibot) + +set(ROS_DISTRO $ENV{ROS_DISTRO}) +if (${ROS_DISTRO} STREQUAL "kinetic") + add_compile_options(-std=c++11) +endif() + +## 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 + dynamic_reconfigure + message_generation + roscpp + tf + nav_msgs + pibot_msgs + common_utils +) + +find_package(jsoncpp) +find_package(PkgConfig REQUIRED) +pkg_check_modules(YAMLCPP yaml-cpp REQUIRED) +find_package(PCL REQUIRED) + +link_directories(${YAMLCPP_LIBRARY_DIRS}) + +## 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_options( + cfg/CalibrateAngular.cfg + cfg/CalibrateLinear.cfg +) +## 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 pibot +# 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} + ${PCL_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(pibot +# src/${PROJECT_NAME}/pibot.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(pibot ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +add_executable(pibot_facade src/pibot_facade.cpp + src/main.cpp) + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(pibot_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +target_link_libraries(pibot_facade + ${catkin_LIBRARIES} + ${YAMLCPP_LIBRARIES} + common_utils + ${PCL_LIBRARIES} + jsoncpp +) + +############# +## 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 pibot pibot_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_pibot.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/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/cfg/CalibrateAngular.cfg b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/cfg/CalibrateAngular.cfg new file mode 100644 index 0000000..986994d --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/cfg/CalibrateAngular.cfg @@ -0,0 +1,20 @@ +#!/usr/bin/env python + +PACKAGE = "pibot" + +from dynamic_reconfigure.parameter_generator_catkin import * + +gen = ParameterGenerator() + +gen.add("test_angle", double_t, 0, "Test Angle", 360.0, 0.0, 360.0) + +gen.add("speed", double_t, 0, "Angular speed in radians per second", 0.5, -1.5, 1.5) + +gen.add("tolerance", double_t, 0, "Error tolerance to goal angle in degrees", 1.0, 1.0, 10.0) + +gen.add("odom_angular_scale_correction", double_t, 0, "Angular correction factor", 1.0, 0.0, 3.0) + +gen.add("start_test", bool_t, 0, "Check to start the test", False) + + +exit(gen.generate(PACKAGE, "calibrate_angular", "CalibrateAngular")) diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/cfg/CalibrateLinear.cfg b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/cfg/CalibrateLinear.cfg new file mode 100644 index 0000000..ab0a44f --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/cfg/CalibrateLinear.cfg @@ -0,0 +1,20 @@ +#! /usr/bin/env python + +PACKAGE = "pibot" + +from dynamic_reconfigure.parameter_generator_catkin import * + +gen = ParameterGenerator() + +gen.add("test_distance", double_t, 0, "Test distance in meters", 1.0, 0.0, 2.0) + +gen.add("speed", double_t, 0, "Robot speed in meters per second", 0.15, 0.0, 0.3) + +gen.add("tolerance", double_t, 0, "Error tolerance to goal distance in meters", 0.01, 0.0, 0.1) + +gen.add("odom_linear_scale_correction", double_t, 0, "Linear correction factor", 1.0, 0.0, 3.0) + +gen.add("start_test", bool_t, 0, "Check to start the test", False) + + +exit(gen.generate(PACKAGE, "calibrate_linear", "CalibrateLinear")) diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/include/pibot/msg_definition.h b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/include/pibot/msg_definition.h new file mode 100644 index 0000000..4e2dd90 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/include/pibot/msg_definition.h @@ -0,0 +1,47 @@ +#ifndef _MSG_DEFINITION_H_ +#define _MSG_DEFINITION_H_ + +#include + +// msgs +// 地图坐标系(opencv坐标系) +// 地图左上角为原点 +// ----------------------> x +// | +// | +// | +// | +// | +// | +// Y + +// topic names +static const std::string LaserPointsTopic = "laser_points"; // 激光雷达的激光点(地图坐标系) +static const std::string RobotStateTopic = "robot_state"; // j运行状态 位置 速度 等 +static const std::string PathPointsTopic = "path_points"; // 导航规划的路径点(地图坐标系) +static const std::string NaviStateTopic = "navi_state"; // 导航状态 + +// advice service +static const std::string MappingService = "mapping"; // 开始/停止/取消 建图 +static const std::string SetLocationModeService = "set_location_mode"; // 设置定位模式,定位模式下可以进行导航 +static const std::string NaviService = "navi"; // 启动/取消 导航到目的地 +static const std::string SetPoseService = + "set_pose"; // 设置当前定位(应用于辅助定位) +static const std::string RelocationService = "relocation"; // 重定位 + +static const std::string StaicMapService = "/static_map"; + +// call service +static const std::string AmclSetPoseTopic = "/initialpose"; // 设置当前定位(应用于辅助定位) +static const std::string CartoSetPoseService = "set_pose"; // 设置当前定位(应用于辅助定位) +static const std::string SetMapService = "/set_map"; +static const std::string CartoMappingService = "/map_build_trans"; + +// sub topic +static const std::string MappingTopic = "/map"; + +static const std::string CartoPoseTopic = "/tracked_pose"; +static const std::string AmclPoseTopic = "/amcl_pose"; +static const std::string planTopic = "/move_base/NavfnROS/plan"; // movebase path + +#endif diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/include/pibot/pibot_facade.h b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/include/pibot/pibot_facade.h new file mode 100644 index 0000000..5f96c41 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/include/pibot/pibot_facade.h @@ -0,0 +1,185 @@ +#ifndef _PIBOT_FACADE_H_ +#define _PIBOT_FACADE_H_ + +#include +#include "nav_msgs/Odometry.h" + +#include "tf/tf.h" +#include "tf/transform_listener.h" + +#include "pibot/utils.h" + +#include +#include + +#include +#include +#include + +#include +#include +#include +#include +#include + +typedef actionlib::SimpleActionClient MoveBaseClient; + +#ifndef SCAN_PC_TYPE +#define SCAN_PC_TYPE 2 +#endif + +class PibotManager { + //状态基 + enum RobotState { + RS_WAIT, + RS_MAPPING, + RS_LOCALIZATION, + RS_NAVIGATION, + RS_RELOCATION + }; + + public: + PibotManager(); + ~PibotManager(); + + void PublishMessages(); + + private: + // callback method + bool MappingCB(pibot_msgs::MappingParams::Request& req, pibot_msgs::MappingParams::Response& res); + bool SetLocationModeCB(pibot_msgs::ActionParams::Request& req, pibot_msgs::ActionParams::Response& res); + bool NaviCB(pibot_msgs::NaviParams::Request& req, pibot_msgs::NaviParams::Response& res); + bool SetPoseCB(pibot_msgs::SetPoseParams::Request& req, pibot_msgs::SetPoseParams::Response& res); + bool RelocationCB(pibot_msgs::ActionParams::Request& req, pibot_msgs::ActionParams::Response& res); + + bool StaticMapCB(nav_msgs::GetMap::Request& req, nav_msgs::GetMap::Response& res); + + // subscribe method + void onReceiveCartoPose(const geometry_msgs::PoseStamped::ConstPtr msg); + void onReceiveAmclPose(const geometry_msgs::PoseWithCovarianceStamped::ConstPtr msg); + +#if SCAN_PC_TYPE == 1 + void onReceiveLDS(const sensor_msgs::PointCloud::ConstPtr msg); +#else + void onReceiveLDS2(const sensor_msgs::PointCloud2::ConstPtr msg); +#endif + + void onReceiveMap(const nav_msgs::OccupancyGrid::ConstPtr msg); + void onReceivePath(const nav_msgs::Path::ConstPtr msg); + void onReceiveOdom(const nav_msgs::Odometry& msg); + void onReceiveRelocationResult(const pibot_msgs::RelocateResult::ConstPtr& msg); + + // load map config + int LoadConfigFile(); + int LoadMapInfo(); + int LoadYamlFile(string fileName); + + int WorldToMap(const geometry_msgs::Point& world_point, pibot_msgs::Pose& map_pose); + int WorldToMap(const geometry_msgs::Pose& world_pose, pibot_msgs::Pose& map_pose); + + int MapToWorld(const pibot_msgs::Pose& map_pose, geometry_msgs::Pose& world_pose); + + int MapToWorld(const Point& mapPoint, Point2f& worldPoint); + + // publish the map + int PublishMap(const Mat& image); + + private: + // movebase action callback + void MoveBaseActionDoneCallback(const actionlib::SimpleClientGoalState& state, + const move_base_msgs::MoveBaseResultConstPtr& result); + void MoveBaseActionActiveCallback(); + void MoveBaseActionFeedbackCallback(const move_base_msgs::MoveBaseFeedbackConstPtr& feedback); + + bool SendGoal(const Point& point, float angle, bool normal = true); + bool CancelGoal(); + + private: + MoveBaseClient move_base_action_client_; + boost::thread* pub_thread_ = nullptr; + ros::NodeHandle nodeHandle; + + // params + bool inner_mapping_func_; // true 内部建图命令 false 调用子进程启动相关launch + std::string start_mapping_cmd_; + std::string stop_mapping_cmd_; + std::string cancel_mapping_cmd_; + + std::string map_mapping_topic_; + std::string map_dir_; + + std::string laser_frame_; + + bool inner_location_func_; // true 内部定位命令 false 调用子进程启动相关launch + std::string location_type_; // amcl or other + std::string odom_topic_; + std::string scan_pcl_topic_; + std::string start_location_cmd_; + std::string cancel_location_cmd_; + + // suply ros service server for client + ros::ServiceServer mapping_srv_; // start/stop/cancel mapping + ros::ServiceServer set_mode_srv_; // enable/disable location mode(for navi) + ros::ServiceServer navi_srv_; // start/cancel navi gaols + ros::ServiceServer set_pose_srv_; // estimate robot position for a giving pose + ros::ServiceServer relocation_srv_; // auto relocation + ros::ServiceServer static_map_srv_; + + // publisher + ros::Publisher robot_status_pub_; // robot status used of image coordinate; + ros::Publisher laser_ponits_pub_; // out pub laser points used of image coordinate + ros::Publisher path_points_pub_; // send out path points used of image coordinate + // ros::Publisher goal_pub_; // pub goal used of image + // coordinate; + ros::Publisher navi_state_pub_; // navi state + + ros::Publisher map_meta_data_pub_; + ros::Publisher grid_map_pub_; + + ros::Publisher amcl_initialpose_pub_; + + // subscribe + ros::Subscriber planner_path_sub_; + ros::Subscriber robot_pose_sub_; + ros::Subscriber odom_sub_; + ros::Subscriber lds_sub_; + + ros::Subscriber mapping_map_sub_; + + ros::Subscriber relocation_result_sub_; + + // tf + tf::TransformListener laser_listener_; + tf::TransformListener base_listener_; + + private: + // map coordinates + pibot_msgs::Pose robot_pose_in_img_; + + // world coordinates + Point2f origin_world_point_; + float origin_world_angle_; + + nav_msgs::OccupancyGrid occupancy_grid_map_msg_; + std::mutex map_mutex_; + + // active map info + int map_img_width_; + int map_img_height_; + float map_resolution_; + string map_name_; + string pb_name_; + string map_config_file_; + int negate_; + double occ_th_, free_th_; + vector> _virtual_wall_list_; + + RobotState now_robot_state_; // robot state + + bool relocation_result_ = false; // last relocation result + + double odom_vx_, odom_vy_, odom_w_; + ros::Time last_pub_scan_time_; +}; + +#endif diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/include/pibot/utils.h b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/include/pibot/utils.h new file mode 100644 index 0000000..f98591a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/include/pibot/utils.h @@ -0,0 +1,50 @@ +#ifndef _PIBOT_UTILS_H_ +#define _PIBOT_UTILS_H_ + +#include +#include + +// msgs +#include "pibot_msgs/PointArray.h" +#include "pibot_msgs/Pose.h" +#include "pibot_msgs/RobotState.h" + +// srvs +#include "pibot_msgs/Action.h" +#include "pibot_msgs/ActionParams.h" +#include "pibot_msgs/ManualLocation.h" +#include "pibot_msgs/MappingParams.h" +#include "pibot_msgs/NaviParams.h" +#include "pibot_msgs/NaviStatus.h" +#include "pibot_msgs/RelocateResult.h" +#include "pibot_msgs/Relocation.h" +#include "pibot_msgs/SetMapParams.h" +#include "pibot_msgs/SetPoseParams.h" + +#include +#include +#include +#include + +#include +#include + +#include +#include + +#include "nav_msgs/OccupancyGrid.h" +#include "nav_msgs/Path.h" + +#include +#include + +#include + +#include "pibot/msg_definition.h" + +template +void operator>>(const YAML::Node& node, T& i) { + i = node.as(); +} + +#endif diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/navigation_multi_demo.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/navigation_multi_demo.launch new file mode 100644 index 0000000..5a34e99 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/navigation_multi_demo.launch @@ -0,0 +1,7 @@ + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/start_amcl.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/start_amcl.launch new file mode 100644 index 0000000..e85c3e2 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/start_amcl.launch @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/start_carto.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/start_carto.launch new file mode 100644 index 0000000..99d56ea --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/start_carto.launch @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/start_carto_without_odom.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/start_carto_without_odom.launch new file mode 100644 index 0000000..bcd8158 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/start_carto_without_odom.launch @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/start_gmapping.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/start_gmapping.launch new file mode 100644 index 0000000..53070a2 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/start_gmapping.launch @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/stop_carto.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/stop_carto.launch new file mode 100644 index 0000000..d59a89a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/stop_carto.launch @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/stop_gmapping.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/stop_gmapping.launch new file mode 100644 index 0000000..d59a89a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/stop_gmapping.launch @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/t_cartographer.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/t_cartographer.launch new file mode 100644 index 0000000..d795053 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/t_cartographer.launch @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/t_cartographer_without_odom.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/t_cartographer_without_odom.launch new file mode 100644 index 0000000..6b451d4 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/t_cartographer_without_odom.launch @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/t_gmapping.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/t_gmapping.launch new file mode 100644 index 0000000..3667de4 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/launch/t_gmapping.launch @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/package.xml new file mode 100644 index 0000000..95597ab --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/package.xml @@ -0,0 +1,55 @@ + + + pibot + 0.0.0 + The pibot package + + + + + pibotek + + + + + + TODO + + + + + + + + + + + + + + + + + + + message_generation + roscpp + std_msgs + geometry_msgs + tf + pibot_msgs + + + + + + + catkin + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/calibrate_angular.py b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/calibrate_angular.py new file mode 100644 index 0000000..837e41f --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/calibrate_angular.py @@ -0,0 +1,163 @@ +#!/usr/bin/env python + +""" calibrate_angular.py - Version 1.1 2013-12-20 + + Rotate the robot 360 degrees to check the odometry parameters of the base controller. + + Created for the Pi Robot Project: http://www.pirobot.org + Copyright (c) 2012 Patrick Goebel. All rights reserved. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version.5 + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details at: + + http://www.gnu.org/licenses/gpl.html + +""" + +import rospy +from geometry_msgs.msg import Twist, Quaternion +from nav_msgs.msg import Odometry +from dynamic_reconfigure.server import Server +import dynamic_reconfigure.client +from pibot.cfg import CalibrateAngularConfig +import tf +from math import radians, copysign +from transform_utils import quat_to_angle, normalize_angle + +class CalibrateAngular(): + def __init__(self): + # Give the node a name + rospy.init_node('calibrate_angular', anonymous=False) + + # Set rospy to execute a shutdown function when terminating the script + rospy.on_shutdown(self.shutdown) + + # How fast will we check the odometry values? + self.rate = rospy.get_param('~rate', 20) + r = rospy.Rate(self.rate) + + # The test angle is 360 degrees + self.test_angle = radians(rospy.get_param('~test_angle', 360.0)) + + self.speed = rospy.get_param('~speed', 1.0) # radians per second + self.tolerance = radians(rospy.get_param('tolerance', 1)) # degrees converted to radians + self.odom_angular_scale_correction = rospy.get_param('~odom_angular_scale_correction', 1.0) + self.start_test = rospy.get_param('~start_test', True) + + # Publisher to control the robot's speed + self.cmd_vel = rospy.Publisher('/cmd_vel', Twist, queue_size=5) + + # Fire up the dynamic_reconfigure server + dyn_server = Server(CalibrateAngularConfig, self.dynamic_reconfigure_callback) + + # Connect to the dynamic_reconfigure server + dyn_client = dynamic_reconfigure.client.Client("calibrate_angular", timeout=60) + + # The base frame is usually base_link or base_footprint + self.base_frame = rospy.get_param('~base_frame', '/base_link') + + # The odom frame is usually just /odom + self.odom_frame = rospy.get_param('~odom_frame', '/odom') + + # Initialize the tf listener + self.tf_listener = tf.TransformListener() + + # Give tf some time to fill its buffer + rospy.sleep(2) + + # Make sure we see the odom and base frames + self.tf_listener.waitForTransform(self.odom_frame, self.base_frame, rospy.Time(), rospy.Duration(60.0)) + + rospy.loginfo("Bring up rqt_reconfigure to control the test.") + + reverse = 1 + + while not rospy.is_shutdown(): + if self.start_test: + # Get the current rotation angle from tf + self.odom_angle = self.get_odom_angle() + + last_angle = self.odom_angle + turn_angle = 0 + self.test_angle *= reverse + error = self.test_angle - turn_angle + + # Alternate directions between tests + reverse = -reverse + + while abs(error) > self.tolerance and self.start_test: + if rospy.is_shutdown(): + return + + # Rotate the robot to reduce the error + move_cmd = Twist() + move_cmd.angular.z = copysign(self.speed, error) + self.cmd_vel.publish(move_cmd) + r.sleep() + + # Get the current rotation angle from tf + self.odom_angle = self.get_odom_angle() + + # Compute how far we have gone since the last measurement + delta_angle = self.odom_angular_scale_correction * normalize_angle(self.odom_angle - last_angle) + + # Add to our total angle so far + turn_angle += delta_angle + + # Compute the new error + error = self.test_angle - turn_angle + + # Store the current angle for the next comparison + last_angle = self.odom_angle + + # Stop the robot + self.cmd_vel.publish(Twist()) + + # Update the status flag + self.start_test = False + params = {'start_test': False} + dyn_client.update_configuration(params) + + rospy.sleep(0.5) + + # Stop the robot + self.cmd_vel.publish(Twist()) + + def get_odom_angle(self): + # Get the current transform between the odom and base frames + try: + (trans, rot) = self.tf_listener.lookupTransform(self.odom_frame, self.base_frame, rospy.Time(0)) + except (tf.Exception, tf.ConnectivityException, tf.LookupException): + rospy.loginfo("TF Exception") + return + + # Convert the rotation from a quaternion to an Euler angle + return quat_to_angle(Quaternion(*rot)) + + def dynamic_reconfigure_callback(self, config, level): + self.test_angle = radians(config['test_angle']) + self.speed = config['speed'] + self.tolerance = radians(config['tolerance']) + self.odom_angular_scale_correction = config['odom_angular_scale_correction'] + self.start_test = config['start_test'] + + return config + + def shutdown(self): + # Always stop the robot when shutting down the node + rospy.loginfo("Stopping the robot...") + self.cmd_vel.publish(Twist()) + rospy.sleep(1) + +if __name__ == '__main__': + try: + CalibrateAngular() + except: + rospy.loginfo("Calibration terminated.") diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/calibrate_linear.py b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/calibrate_linear.py new file mode 100644 index 0000000..6d0b917 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/calibrate_linear.py @@ -0,0 +1,155 @@ +#!/usr/bin/env python + +""" calibrate_linear.py - Version 1.1 2013-12-20 + + Move the robot 1.0 meter to check on the PID parameters of the base controller. + + Created for the Pi Robot Project: http://www.pirobot.org + Copyright (c) 2012 Patrick Goebel. All rights reserved. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version.5 + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details at: + + http://www.gnu.org/licenses/gpl.html + +""" + +import rospy +from geometry_msgs.msg import Twist, Point +from math import copysign, sqrt, pow +from dynamic_reconfigure.server import Server +import dynamic_reconfigure.client +from pibot.cfg import CalibrateLinearConfig +import tf + +class CalibrateLinear(): + def __init__(self): + # Give the node a name + rospy.init_node('calibrate_linear', anonymous=False) + + # Set rospy to execute a shutdown function when terminating the script + rospy.on_shutdown(self.shutdown) + + # How fast will we check the odometry values? + self.rate = rospy.get_param('~rate', 20) + r = rospy.Rate(self.rate) + + # Set the distance to travel + self.test_distance = rospy.get_param('~test_distance', 1.0) # meters + self.speed = rospy.get_param('~speed', 0.15) # meters per second + self.tolerance = rospy.get_param('~tolerance', 0.01) # meters + self.odom_linear_scale_correction = rospy.get_param('~odom_linear_scale_correction', 1.0) + self.start_test = rospy.get_param('~start_test', True) + + # Publisher to control the robot's speed + self.cmd_vel = rospy.Publisher('/cmd_vel', Twist, queue_size=5) + + # Fire up the dynamic_reconfigure server + dyn_server = Server(CalibrateLinearConfig, self.dynamic_reconfigure_callback) + + # Connect to the dynamic_reconfigure server + dyn_client = dynamic_reconfigure.client.Client("calibrate_linear", timeout=60) + + # The base frame is base_footprint for the TurtleBot but base_link for Pi Robot + self.base_frame = rospy.get_param('~base_frame', '/base_link') + + # The odom frame is usually just /odom + self.odom_frame = rospy.get_param('~odom_frame', '/odom') + + # Initialize the tf listener + self.tf_listener = tf.TransformListener() + + # Give tf some time to fill its buffer + rospy.sleep(2) + + # Make sure we see the odom and base frames + self.tf_listener.waitForTransform(self.odom_frame, self.base_frame, rospy.Time(), rospy.Duration(60.0)) + + rospy.loginfo("Bring up rqt_reconfigure to control the test.") + + self.position = Point() + + # Get the starting position from the tf transform between the odom and base frames + self.position = self.get_position() + + x_start = self.position.x + y_start = self.position.y + + move_cmd = Twist() + + while not rospy.is_shutdown(): + # Stop the robot by default + move_cmd = Twist() + + if self.start_test: + # Get the current position from the tf transform between the odom and base frames + self.position = self.get_position() + + # Compute the Euclidean distance from the target point + distance = sqrt(pow((self.position.x - x_start), 2) + + pow((self.position.y - y_start), 2)) + + # Correct the estimated distance by the correction factor + distance *= self.odom_linear_scale_correction + + # How close are we? + error = distance - self.test_distance + + # Are we close enough? + if not self.start_test or abs(error) < self.tolerance: + self.start_test = False + params = {'start_test': False} + rospy.loginfo(params) + dyn_client.update_configuration(params) + else: + # If not, move in the appropriate direction + move_cmd.linear.x = copysign(self.speed, -1 * error) + else: + self.position = self.get_position() + x_start = self.position.x + y_start = self.position.y + + self.cmd_vel.publish(move_cmd) + r.sleep() + + # Stop the robot + self.cmd_vel.publish(Twist()) + + def dynamic_reconfigure_callback(self, config, level): + self.test_distance = config['test_distance'] + self.speed = config['speed'] + self.tolerance = config['tolerance'] + self.odom_linear_scale_correction = config['odom_linear_scale_correction'] + self.start_test = config['start_test'] + + return config + + def get_position(self): + # Get the current transform between the odom and base frames + try: + (trans, rot) = self.tf_listener.lookupTransform(self.odom_frame, self.base_frame, rospy.Time(0)) + except (tf.Exception, tf.ConnectivityException, tf.LookupException): + rospy.loginfo("TF Exception") + return + + return Point(*trans) + + def shutdown(self): + # Always stop the robot when shutting down the node + rospy.loginfo("Stopping the robot...") + self.cmd_vel.publish(Twist()) + rospy.sleep(1) + +if __name__ == '__main__': + try: + CalibrateLinear() + rospy.spin() + except: + rospy.loginfo("Calibration terminated.") diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/get_pos_demo.py b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/get_pos_demo.py new file mode 100644 index 0000000..c50aefa --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/get_pos_demo.py @@ -0,0 +1,37 @@ +#!/usr/bin/env python +import rospy + +from tf_conversions import transformations +from math import pi +import tf + +class Robot: + def __init__(self): + self.tf_listener = tf.TransformListener() + try: + self.tf_listener.waitForTransform('/map', '/base_link', rospy.Time(), rospy.Duration(1.0)) + except (tf.Exception, tf.ConnectivityException, tf.LookupException): + return + + def get_pos(self): + try: + (trans, rot) = self.tf_listener.lookupTransform('/map', '/base_link', rospy.Time(0)) + except (tf.LookupException, tf.ConnectivityException, tf.ExtrapolationException): + rospy.loginfo("tf Error") + return None + euler = transformations.euler_from_quaternion(rot) + #print euler[2] / pi * 180 + + x = trans[0] + y = trans[1] + th = euler[2] / pi * 180 + return (x, y, th) + +if __name__ == "__main__": + rospy.init_node('get_pos_demo',anonymous=True) + robot = Robot() + r = rospy.Rate(100) + r.sleep() + while not rospy.is_shutdown(): + print(robot.get_pos()) + r.sleep() \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/killall_carto.sh b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/killall_carto.sh new file mode 100644 index 0000000..98d96af --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/killall_carto.sh @@ -0,0 +1,3 @@ +#!/bin/bash +rosnode kill cartographer_node +rosnode kill cartographer_occupancy_grid_node diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/killall_hector_mapping.sh b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/killall_hector_mapping.sh new file mode 100644 index 0000000..550382d --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/killall_hector_mapping.sh @@ -0,0 +1,5 @@ +#!/bin/bash +rosnode kill hector_mapping +rosnode kill hector_geotiff_node +rosnode kill hector_trajectory_server +rosnode kill imu_attitude_to_tf_node diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/launch_demo.py b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/launch_demo.py new file mode 100644 index 0000000..a7696be --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/launch_demo.py @@ -0,0 +1,39 @@ +import subprocess +import rospy +import rosnode + +class launch_demo: + def __init__(self, cmd=None): + self.cmd = cmd + + def launch(self): + self.child = subprocess.Popen(self.cmd) + return True + + def shutdown(self): + self.child.terminate() + self.child.wait() + return True + +if __name__ == "__main__": + rospy.init_node('launch_demo',anonymous=True) + + launch_nav = launch_demo(["roslaunch", "pibot_simulator", "nav.launch"]) + + launch_nav.launch() + + r = rospy.Rate(0.2) + r.sleep() + + rospy.loginfo("switch map...") + r = rospy.Rate(1) + r.sleep() + + rosnode.kill_nodes(['map_server']) + + map_name = "/home/pibot/pibot_ros/ros_ws/src/pibot_simulator/maps/blank_map_with_obstacle.yaml" + + map_node = subprocess.Popen(["rosrun", "map_server", "map_server", map_name, "__name:=map_server"]) + + while not rospy.is_shutdown(): + r.sleep() \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/marker_server.py b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/marker_server.py new file mode 100644 index 0000000..ba0c6e1 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/marker_server.py @@ -0,0 +1,55 @@ +#!/usr/bin/env python +import rospy +from geometry_msgs.msg import Twist, Pose +from interactive_markers.interactive_marker_server import * +from visualization_msgs.msg import * +import tf +from tf.transformations import euler_from_quaternion +import copy + +def processFeedback(feedback): + _,_,yaw = euler_from_quaternion((feedback.pose.orientation.x, feedback.pose.orientation.y, feedback.pose.orientation.z, feedback.pose.orientation.w)) + + twist = Twist() + twist.angular.z = 2.2 * yaw + twist.linear.x = 1.0 * feedback.pose.position.x + + vel_pub.publish(twist) + + server.setPose("pibot_marker", Pose()) + server.applyChanges() + +if __name__ == "__main__": + rospy.init_node("interactive_marker_server") + server = InteractiveMarkerServer("pibot_marker_server") + vel_pub = rospy.Publisher("cmd_vel", Twist, queue_size = 5) + int_marker = InteractiveMarker() + int_marker.header.frame_id = "base_link" + int_marker.name = "pibot_marker" + + + control = InteractiveMarkerControl() + control.orientation_mode = InteractiveMarkerControl.FIXED + control.orientation.w = 1 + control.orientation.x = 1 + control.orientation.y = 0 + control.orientation.z = 0 + control.name = "move_x" + control.interaction_mode = InteractiveMarkerControl.MOVE_AXIS + control.always_visible = True + int_marker.controls.append(copy.deepcopy(control)) + + control.orientation.w = 1 + control.orientation.x = 0 + control.orientation.y = 1 + control.orientation.z = 0 + control.name = "rotate_z" + + control.interaction_mode = InteractiveMarkerControl.MOVE_ROTATE + int_marker.controls.append(copy.deepcopy(control)) + + server.insert(int_marker, processFeedback) + + server.applyChanges() + + rospy.spin() diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/navigation_goal.py b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/navigation_goal.py new file mode 100644 index 0000000..bab03a1 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/navigation_goal.py @@ -0,0 +1,90 @@ +#!/usr/bin/env python +from launch_demo import launch_demo +import rospy + +import actionlib +from actionlib_msgs.msg import * +from move_base_msgs.msg import MoveBaseAction, MoveBaseGoal +from nav_msgs.msg import Path +from geometry_msgs.msg import PoseWithCovarianceStamped +from tf_conversions import transformations +from math import pi + +class navigation_demo: + def __init__(self): + self.set_pose_pub = rospy.Publisher('/initialpose', PoseWithCovarianceStamped, queue_size=5) + + self.move_base = actionlib.SimpleActionClient("move_base", MoveBaseAction) + self.move_base.wait_for_server(rospy.Duration(60)) + + def set_pose(self, p): + if self.move_base is None: + return False + + x, y, th = p + + pose = PoseWithCovarianceStamped() + pose.header.stamp = rospy.Time.now() + pose.header.frame_id = 'map' + pose.pose.pose.position.x = x + pose.pose.pose.position.y = y + q = transformations.quaternion_from_euler(0.0, 0.0, th/180.0*pi) + pose.pose.pose.orientation.x = q[0] + pose.pose.pose.orientation.y = q[1] + pose.pose.pose.orientation.z = q[2] + pose.pose.pose.orientation.w = q[3] + + self.set_pose_pub.publish(pose) + return True + + def _done_cb(self, status, result): + rospy.loginfo("navigation done! status:%d result:%s"%(status, result)) + + def _active_cb(self): + rospy.loginfo("[Navi] navigation has be actived") + + def _feedback_cb(self, feedback): + rospy.loginfo("[Navi] navigation feedback\r\n%s"%feedback) + + def goto(self, p): + goal = MoveBaseGoal() + + goal.target_pose.header.frame_id = 'map' + goal.target_pose.header.stamp = rospy.Time.now() + goal.target_pose.pose.position.x = p[0] + goal.target_pose.pose.position.y = p[1] + q = transformations.quaternion_from_euler(0.0, 0.0, p[2]/180.0*pi) + goal.target_pose.pose.orientation.x = q[0] + goal.target_pose.pose.orientation.y = q[1] + goal.target_pose.pose.orientation.z = q[2] + goal.target_pose.pose.orientation.w = q[3] + + self.move_base.send_goal(goal, self._done_cb, self._active_cb, self._feedback_cb) + return True + + def cancel(self): + self.move_base.cancel_all_goals() + return True + +if __name__ == "__main__": + rospy.init_node('navigation_demo',anonymous=True) + + launch_nav = launch_demo(["roslaunch", "pibot_simulator", "nav.launch"]) + launch_nav.launch() + + r = rospy.Rate(0.2) + r.sleep() + + rospy.loginfo("set pose...") + r = rospy.Rate(1) + r.sleep() + navi = navigation_demo() + navi.set_pose([-0.7,-0.4,0]) + + rospy.loginfo("goto goal...") + r = rospy.Rate(1) + r.sleep() + navi.goto([0.25,4, 90]) + + while not rospy.is_shutdown(): + r.sleep() \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/navigation_multi_goals.py b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/navigation_multi_goals.py new file mode 100644 index 0000000..25c8de1 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/navigation_multi_goals.py @@ -0,0 +1,97 @@ +#!/usr/bin/env python +from launch_demo import launch_demo +import rospy + + +import actionlib +from actionlib_msgs.msg import * +from move_base_msgs.msg import MoveBaseAction, MoveBaseGoal +from nav_msgs.msg import Path +from geometry_msgs.msg import PoseWithCovarianceStamped +from tf_conversions import transformations +from math import pi + +class navigation_demo: + def __init__(self): + self.set_pose_pub = rospy.Publisher('/initialpose', PoseWithCovarianceStamped, queue_size=5) + + self.move_base = actionlib.SimpleActionClient("move_base", MoveBaseAction) + self.move_base.wait_for_server(rospy.Duration(60)) + + def set_pose(self, p): + if self.move_base is None: + return False + + x, y, th = p + + pose = PoseWithCovarianceStamped() + pose.header.stamp = rospy.Time.now() + pose.header.frame_id = 'map' + pose.pose.pose.position.x = x + pose.pose.pose.position.y = y + q = transformations.quaternion_from_euler(0.0, 0.0, th/180.0*pi) + pose.pose.pose.orientation.x = q[0] + pose.pose.pose.orientation.y = q[1] + pose.pose.pose.orientation.z = q[2] + pose.pose.pose.orientation.w = q[3] + + self.set_pose_pub.publish(pose) + return True + + def _done_cb(self, status, result): + rospy.loginfo("navigation done! status:%d result:%s"%(status, result)) + + def _active_cb(self): + rospy.loginfo("[Navi] navigation has be actived") + + def _feedback_cb(self, feedback): + rospy.loginfo("[Navi] navigation feedback\r\n%s"%feedback) + + def goto(self, p): + rospy.loginfo("[Navi] goto %s"%p) + + goal = MoveBaseGoal() + + goal.target_pose.header.frame_id = 'map' + goal.target_pose.header.stamp = rospy.Time.now() + goal.target_pose.pose.position.x = p[0] + goal.target_pose.pose.position.y = p[1] + q = transformations.quaternion_from_euler(0.0, 0.0, p[2]/180.0*pi) + goal.target_pose.pose.orientation.x = q[0] + goal.target_pose.pose.orientation.y = q[1] + goal.target_pose.pose.orientation.z = q[2] + goal.target_pose.pose.orientation.w = q[3] + + self.move_base.send_goal(goal, self._done_cb, self._active_cb, self._feedback_cb) + result = self.move_base.wait_for_result(rospy.Duration(60)) + if not result: + self.move_base.cancel_goal() + rospy.loginfo("Timed out achieving goal") + else: + state = self.move_base.get_state() + if state == GoalStatus.SUCCEEDED: + rospy.loginfo("reach goal %s succeeded!"%p) + return True + + def cancel(self): + self.move_base.cancel_all_goals() + return True + +if __name__ == "__main__": + rospy.init_node('navigation_demo',anonymous=True) + + goalListX = rospy.get_param('~goalListX', '2.0, 2.0') + goalListY = rospy.get_param('~goalListY', '2.0, 4.0') + goalListYaw = rospy.get_param('~goalListYaw', '0, 90.0') + + goals = [[float(x), float(y), float(yaw)] for (x, y, yaw) in zip(goalListX.split(","),goalListY.split(","),goalListYaw.split(","))] + navi = navigation_demo() + + r = rospy.Rate(1) + r.sleep() + + for goal in goals: + navi.goto(goal) + + while not rospy.is_shutdown(): + r.sleep() \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/teleop_twist_keyboard.py b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/teleop_twist_keyboard.py new file mode 100644 index 0000000..cb1eb66 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/teleop_twist_keyboard.py @@ -0,0 +1,126 @@ +#!/usr/bin/env python +import roslib; roslib.load_manifest('teleop_twist_keyboard') +import rospy + +from geometry_msgs.msg import Twist + +import sys, select, termios, tty + +msg = """ +Reading from the keyboard and Publishing to Twist! +--------------------------- +Moving around: + u i o + j k l + m , . +For Holonomic mode (strafing), hold down the shift key: +--------------------------- + U I O + J K L + M < > +t : up (+z) +b : down (-z) +anything else : stop +q/z : increase/decrease max speeds by 10% +w/x : increase/decrease only linear speed by 10% +e/c : increase/decrease only angular speed by 10% +CTRL-C to quit +""" + +moveBindings = { + 'i':(1,0,0,0), + 'o':(1,0,0,-1), + 'j':(0,0,0,1), + 'l':(0,0,0,-1), + 'u':(1,0,0,1), + ',':(-1,0,0,0), + '.':(-1,0,0,1), + 'm':(-1,0,0,-1), + 'O':(1,-1,0,0), + 'I':(1,0,0,0), + 'J':(0,1,0,0), + 'L':(0,-1,0,0), + 'U':(1,1,0,0), + '<':(-1,0,0,0), + '>':(-1,-1,0,0), + 'M':(-1,1,0,0), + 't':(0,0,1,0), + 'b':(0,0,-1,0), + } + +speedBindings={ + 'q':(1.1,1.1), + 'z':(.9,.9), + 'w':(1.1,1), + 'x':(.9,1), + 'e':(1,1.1), + 'c':(1,.9), + } + +def getKey(): + tty.setraw(sys.stdin.fileno()) + select.select([sys.stdin], [], [], 0) + key = sys.stdin.read(1) + termios.tcsetattr(sys.stdin, termios.TCSADRAIN, settings) + return key + + +def vels(speed,turn): + return "currently:\tspeed %s\tturn %s " % (speed,turn) + +if __name__=="__main__": + settings = termios.tcgetattr(sys.stdin) + + pub = rospy.Publisher('cmd_vel', Twist, queue_size = 1) + rospy.init_node('teleop_twist_keyboard') + + speed = rospy.get_param("~speed", 0.3) + turn = rospy.get_param("~turn", 1.0) + x = 0 + y = 0 + z = 0 + th = 0 + status = 0 + + try: + print(msg) + print(vels(speed,turn)) + while(1): + key = getKey() + if key in moveBindings.keys(): + x = moveBindings[key][0] + y = moveBindings[key][1] + z = moveBindings[key][2] + th = moveBindings[key][3] + elif key in speedBindings.keys(): + speed = speed * speedBindings[key][0] + turn = turn * speedBindings[key][1] + + print(vels(speed,turn)) + if (status == 14): + print(msg) + status = (status + 1) % 15 + else: + x = 0 + y = 0 + z = 0 + th = 0 + if (key == '\x03'): + break + + twist = Twist() + twist.linear.x = x*speed; twist.linear.y = y*speed; twist.linear.z = z*speed; + twist.angular.x = 0; twist.angular.y = 0; twist.angular.z = th*turn + pub.publish(twist) + + except: + print(e) + + finally: + twist = Twist() + twist.linear.x = 0; twist.linear.y = 0; twist.linear.z = 0 + twist.angular.x = 0; twist.angular.y = 0; twist.angular.z = 0 + pub.publish(twist) + + termios.tcsetattr(sys.stdin, termios.TCSADRAIN, settings) + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/transform_utils.py b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/transform_utils.py new file mode 100644 index 0000000..42df31a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/scripts/transform_utils.py @@ -0,0 +1,23 @@ +#!/usr/bin/env python + +""" A couple of handy conversion utilities taken from the turtlebot_node.py script found in the + turtlebot_node ROS package at: + + http://www.ros.org/wiki/turtlebot_node + +""" + +import PyKDL +from math import pi + +def quat_to_angle(quat): + rot = PyKDL.Rotation.Quaternion(quat.x, quat.y, quat.z, quat.w) + return rot.GetRPY()[2] + +def normalize_angle(angle): + res = angle + while res > pi: + res -= 2.0 * pi + while res < -pi: + res += 2.0 * pi + return res \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/src/main.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/src/main.cpp new file mode 100644 index 0000000..c49d84d --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/src/main.cpp @@ -0,0 +1,12 @@ +#include "pibot/pibot_facade.h" + +int main(int argc, char** argv) { + ros::init(argc, argv, "pibot_facade"); + + PibotManager* manager = new PibotManager(); + + MultiThreadedSpinner s; + spin(s); + + return 0; +} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/src/pibot_facade.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/src/pibot_facade.cpp new file mode 100644 index 0000000..29cc043 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot/src/pibot_facade.cpp @@ -0,0 +1,974 @@ +#include "pibot/pibot_facade.h" + +#define STATE_PUB_RATE 100 +#define LDS_PUB_INTERVAL 1000 + +PibotManager::PibotManager() + : move_base_action_client_("move_base", true), + odom_vx_(0.0f), + odom_vy_(0.0f), + odom_w_(0.0f) { + ros::NodeHandle private_nh("~"); + // params + private_nh.param("location_type", location_type_, std::string("amcl")); + private_nh.param("odom_topic", odom_topic_, std::string("/odom")); + private_nh.param("scan_pcl_topic", scan_pcl_topic_, std::string("/scan_cloud")); + private_nh.param("mapping_topic", map_mapping_topic_, MappingTopic); + + private_nh.param("laser_frame", laser_frame_, std::string("/laser_link")); + + char* dir = getenv("PIBOT_MAPS_DIR"); + if (dir == NULL) { + map_dir_ = "~/maps"; + } else { + map_dir_ = dir; + } + + // mapping cmd + private_nh.param("inner_mapping_func", inner_mapping_func_, false); + private_nh.param("start_mapping_cmd", start_mapping_cmd_, + std::string("roslaunch pibot start_mapping.launch")); + start_mapping_cmd_ += "&"; + private_nh.param("stop_mapping_cmd", stop_mapping_cmd_, std::string("roslaunch pibot stop_mapping.launch")); + private_nh.param("cancel_mapping_cmd", cancel_mapping_cmd_, std::string("rosnode kill slam_gmapping")); + + // location cmd + private_nh.param("inner_location_func", inner_location_func_, false); + private_nh.param("start_location_cmd", start_location_cmd_, std::string("roslaunch pibot start_location.launch")); + start_location_cmd_ += "&"; + private_nh.param("cancel_location_cmd", cancel_location_cmd_, std::string("rosnode kill amcl")); + + ROS_INFO("mapping func: %d, location func : %d", inner_mapping_func_, inner_location_func_); + + // advertise service + mapping_srv_ = private_nh.advertiseService(MappingService, &PibotManager::MappingCB, this); + set_mode_srv_ = private_nh.advertiseService(SetLocationModeService, &PibotManager::SetLocationModeCB, this); + navi_srv_ = private_nh.advertiseService(NaviService, &PibotManager::NaviCB, this); + set_pose_srv_ = private_nh.advertiseService(SetPoseService, &PibotManager::SetPoseCB, this); + relocation_srv_ = private_nh.advertiseService(RelocationService, &PibotManager::RelocationCB, this); + + // pub + robot_status_pub_ = private_nh.advertise(RobotStateTopic.c_str(), 1); // robot status used of image coordinate; + laser_ponits_pub_ = private_nh.advertise(LaserPointsTopic.c_str(), 1); // out pub laser points used of image coordinate; + last_pub_scan_time_ = ros::Time::now(); + path_points_pub_ = private_nh.advertise(PathPointsTopic.c_str(), 1); // send out path points + navi_state_pub_ = private_nh.advertise(NaviStateTopic.c_str(), 1); + + mapping_map_sub_ = nodeHandle.subscribe(map_mapping_topic_, 100, &PibotManager::onReceiveMap, this); + if (inner_location_func_) { + robot_pose_sub_ = nodeHandle.subscribe(CartoPoseTopic, 100, &PibotManager::onReceiveCartoPose, + this); // pose from carto + } else { + if (location_type_ == "amcl") { + robot_pose_sub_ = nodeHandle.subscribe(AmclPoseTopic, 100, &PibotManager::onReceiveAmclPose, this); // pose from amcl + amcl_initialpose_pub_ = nodeHandle.advertise(AmclSetPoseTopic, 1); // set pose by amcl + static_map_srv_ = nodeHandle.advertiseService(StaicMapService, &PibotManager::StaticMapCB, this); + } else { + ROS_WARN("unknown location type"); + } + } + + odom_sub_ = nodeHandle.subscribe(odom_topic_, 10, &PibotManager::onReceiveOdom, this); // odom + +#if SCAN_PC_TYPE == 1 + lds_sub_ = nodeHandle.subscribe(scan_pcl_topic_, 100, &PibotManager::onReceiveLDS, this); // laser point cloud +#else + lds_sub_ = nodeHandle.subscribe(scan_pcl_topic_, 100, &PibotManager::onReceiveLDS2, this); // laser point cloud +#endif + + planner_path_sub_ = nodeHandle.subscribe(planTopic, 100, &PibotManager::onReceivePath, this); // path from planner + + relocation_result_sub_ = nodeHandle.subscribe("/relocation_result", 100, &PibotManager::onReceiveRelocationResult, this); + + // wait for service + ROS_INFO("waitForTransform..."); + laser_listener_.waitForTransform("map", laser_frame_, ros::Time(0), ros::Duration(1.0)); + + map_name_ = ""; + + now_robot_state_ = RS_WAIT; + pub_thread_ = new boost::thread(boost::bind(&PibotManager::PublishMessages, this)); + + ROS_INFO("Pibot Manager Inited!"); +} + +PibotManager::~PibotManager() { + pub_thread_->interrupt(); + pub_thread_->join(); + delete pub_thread_; +} + +void PibotManager::onReceiveOdom(const nav_msgs::Odometry& msg) { + odom_vx_ = msg.twist.twist.linear.x; + odom_vy_ = msg.twist.twist.linear.y; + odom_w_ = msg.twist.twist.angular.z; + + if (!inner_mapping_func_ && (now_robot_state_ == RS_MAPPING)) { + tf::StampedTransform tf_transform; + + tf::Vector3 origin; + tf::Quaternion rotation; + tf::Vector3 axis; + int seq = 0; + + try { + base_listener_.lookupTransform("map", "base_link", ros::Time(0), tf_transform); + } catch (tf::TransformException& exception) { + ROS_ERROR("%s", exception.what()); + } + + geometry_msgs::Pose robot_map_pose; + + robot_map_pose.position.x = tf_transform.getOrigin().getX(); + robot_map_pose.position.y = tf_transform.getOrigin().getY(); + robot_map_pose.position.z = tf_transform.getOrigin().getZ(); + robot_map_pose.orientation.x = tf_transform.getRotation().getX(); + robot_map_pose.orientation.y = tf_transform.getRotation().getY(); + robot_map_pose.orientation.z = tf_transform.getRotation().getZ(); + robot_map_pose.orientation.w = tf_transform.getRotation().getW(); + + if (WorldToMap(robot_map_pose, robot_pose_in_img_) == 0) { + // ROS_INFO("===%0.3f %0.3f %0.3f", robot_pose_in_img_.x, + // robot_pose_in_img_.y, robot_pose_in_img_.theta); + } + } +} + +void PibotManager::PublishMessages() { + ros::Rate rate(STATE_PUB_RATE); + ros::NodeHandle nh; + while (nh.ok()) { + { + pibot_msgs::RobotState robot_state_msg; + robot_state_msg.vlinear_x = odom_vx_; + robot_state_msg.vlinear_y = odom_vy_; + robot_state_msg.vangular = odom_w_; + if (map_img_height_ != 0 && map_img_width_ != 0) { + robot_state_msg.pose.x = robot_pose_in_img_.x; + robot_state_msg.pose.y = robot_pose_in_img_.y; + robot_state_msg.pose.theta = robot_pose_in_img_.theta; + } else { + robot_state_msg.pose.x = 0; + robot_state_msg.pose.y = 0; + robot_state_msg.pose.theta = 0; + } + + if (now_robot_state_ == RS_WAIT) { + robot_state_msg.state = 0; + } else if (now_robot_state_ == RS_MAPPING) { + robot_state_msg.state = 1; + } else if (now_robot_state_ == RS_LOCALIZATION) { + robot_state_msg.state = 2; + } else { + robot_state_msg.state = 3; + } + + if (now_robot_state_ == RS_LOCALIZATION) { + // TODO relocation + } + + robot_status_pub_.publish(robot_state_msg); + } + rate.sleep(); + } +} + +int PibotManager::LoadMapInfo() { + ifstream ifs(map_config_file_); + if (!ifs) { + ROS_ERROR("NO JSON FILE, ErrorCode=%d", -1); + return -1; + } + + Json::Value jsonroot; + Json::Reader jsonreader; + + if (!jsonreader.parse(ifs, jsonroot)) { + ROS_ERROR("FAIL TO LOAD JSON, ErrorCode=%d", -2); + return -2; + } + + // virtual wall + _virtual_wall_list_.clear(); + Json::Value vwalls = jsonroot["vwalls"]; + + for (int i = 0; i < vwalls.size(); i++) { + Json::Value points = vwalls[i]["points"]; + vector vwallPoints; + + for (int j = 0; j < points.size(); j++) { + vwallPoints.push_back(Point(points[j]["x"].asInt(), points[j]["y"].asInt())); + } + _virtual_wall_list_.push_back(vwallPoints); + } + + return 0; +} + +int PibotManager::LoadConfigFile() { + string config_path = map_dir_ + "/config.json"; + + cout << config_path << endl; + ifstream ifs(config_path.c_str()); + + if (!ifs) { + ROS_ERROR("%s not found", config_path.c_str()); + return -1; + } + + Json::Value jsonroot; + Json::Reader jsonreader; + + if (!jsonreader.parse(ifs, jsonroot)) { + ROS_ERROR("fail to load %s", config_path.c_str()); + return -2; + } + + string mapID = jsonroot["default_map"].asString(); + string yaml_file = map_dir_ + "/" + mapID + "/map.yaml"; + + int state = LoadYamlFile(yaml_file); + if (state != 0) { + return state; + } + + pb_name_ = map_dir_ + "/" + mapID + "/map.pbstream"; + + map_config_file_ = map_dir_ + "/" + mapID + "/map.json"; + + Mat mMatLoad = imread(map_name_); + if (mMatLoad.empty()) { + ROS_ERROR("fail to read image %s", map_name_.c_str()); + return -4; + } + + LoadMapInfo(); + + map_img_width_ = mMatLoad.cols; + map_img_height_ = mMatLoad.rows; + + PublishMap(mMatLoad); + + return 0; +} + +int PibotManager::LoadYamlFile(string path) { + ifstream ifs2(path.c_str()); + if (!ifs2) { + ROS_ERROR("%s not found", path.c_str()); + return -3; + } + + YAML::Node doc = YAML::Load(ifs2); + + doc["image"] >> map_name_; + + doc["origin"][0] >> origin_world_point_.x; + doc["origin"][1] >> origin_world_point_.y; + doc["origin"][2] >> origin_world_angle_; + + doc["resolution"] >> map_resolution_; + + // other infomation + doc["negate"] >> negate_; + doc["occupied_thresh"] >> occ_th_; + doc["free_thresh"] >> free_th_; + + return 0; +} + +bool PibotManager::MappingCB(pibot_msgs::MappingParams::Request& req, pibot_msgs::MappingParams::Response& res) { + bool valid = false; + + // 状态判断 + if (req.action.type == pibot_msgs::Action::ACTION_START) { // start mapping + ROS_INFO("start mapping"); + if (now_robot_state_ != RS_WAIT) { + res.result = 1; + ROS_INFO("NOT AVAILABLE,CANT START MAPPING, ErrorCode=%d", res.result); + return true; + } + valid = true; + } else { + ROS_INFO("finish mapping"); + if (now_robot_state_ == RS_MAPPING) { + valid = true; + } + } + + if (!valid) { + res.result = 2; + ROS_WARN("nowstate is wrong"); + return true; + } + + if (inner_mapping_func_) { // 内部service client 启动相关建图应用 + ros::ServiceClient client_map_build = nodeHandle.serviceClient(CartoMappingService); + + pibot_msgs::MappingParams map_build_request; + map_build_request.request = req; + + client_map_build.call(map_build_request); + + res = map_build_request.response; + + if (res.result == 0) { + if (now_robot_state_ == RS_WAIT) { + now_robot_state_ = RS_MAPPING; + } else if (now_robot_state_ == RS_MAPPING) { + now_robot_state_ = RS_WAIT; + } + res.result = 0; + } else { + res.result = 1; + ROS_ERROR("mapbuild call failed: %d", map_build_request.response.result); + } + } else { // 使用子进程的方式加载建图应用 + res.result = 0; + if (req.action.type == pibot_msgs::Action::ACTION_START) { + if (!start_mapping_cmd_.empty()) { + ROS_INFO("launch map cmd: %s", start_mapping_cmd_.c_str()); + FILE* fp = popen(start_mapping_cmd_.c_str(), "r"); + + fclose(fp); + + ROS_WARN("wait for tf of map to base_link"); + base_listener_.waitForTransform("map", "base_link", ros::Time(0), + ros::Duration(5.0)); + } else { + ROS_WARN("null start_mapping_cmd"); + res.result = -1; + } + } else { + if (req.action.type == pibot_msgs::Action::ACTION_STOP) { + std::string map_dir = map_dir_; + map_dir += "/" + req.id; + + if (access(map_dir.c_str(), F_OK) == -1) { + if (mkdir(map_dir.c_str(), 0777) != 0) { + ROS_WARN("create failed"); + return true; + } + } + + std::string save_mapping_cmd = stop_mapping_cmd_ + " map_name:=" + map_dir + "/map"; + + ROS_INFO("save_map cmd: %s", save_mapping_cmd.c_str()); + FILE* fp = popen(save_mapping_cmd.c_str(), "r"); + + fclose(fp); + } + + if (!cancel_mapping_cmd_.empty()) { + ROS_INFO("kill mappping cmd: %s", cancel_mapping_cmd_.c_str()); + FILE* fp = popen(cancel_mapping_cmd_.c_str(), "r"); + fclose(fp); + } else { + ROS_WARN("null cancel_mapping_cmd"); + res.result = -1; + } + } + + if (res.result == 0) { + if (now_robot_state_ == RS_WAIT) { + now_robot_state_ = RS_MAPPING; + } else if (now_robot_state_ == RS_MAPPING) { + now_robot_state_ = RS_WAIT; + } + } + } + + return true; +} + +bool PibotManager::SetLocationModeCB(pibot_msgs::ActionParams::Request& req, pibot_msgs::ActionParams::Response& res) { + if (req.action.type == pibot_msgs::Action::ACTION_START) { // set to localization mode for navi + if (now_robot_state_ != RS_WAIT) { + ROS_ERROR("NOT AVAILABLE,CANT START LOCALIZATION, ErrorCode is %d", + res.result); + res.result = 1; + return true; + } + + int result = LoadConfigFile(); + if (0 != result) { + res.result = 2; + ROS_ERROR("load Default JsonFile is failed, ErrorCode is %d", res.result); + return true; + } + + if (inner_location_func_) { // 内部service client 启动相关建图应用 + ros::ServiceClient client_set_map = nodeHandle.serviceClient(SetMapService); + + pibot_msgs::SetMapParams set_map_params; + set_map_params.request.id = pb_name_; + + client_set_map.call(set_map_params); + + if (set_map_params.response.result != 0) { + res.result = 3; + ROS_ERROR("set_map request is fail, ErrorCode is %d", res.result); + return true; + } + } else { + if (location_type_ == "amcl") { + ROS_INFO("launch location cmd: %s", start_location_cmd_.c_str()); + FILE* fp = popen(start_location_cmd_.c_str(), "r"); + + fclose(fp); + } + + // wait for move_base + while (!move_base_action_client_.waitForServer(ros::Duration(5.0))) { + ROS_INFO("Waiting for move_base action server startup"); + } + } + + // 启动重定位 + if (inner_location_func_) { // 内部service client 启动相关建图应用 + // ROS_INFO("start_location(inner)"); + // now_robot_state_ = RS_RELOCATION; + // ros::ServiceClient start_location_client = nodeHandle.serviceClient("start_location"); + + // pibot_msgs::start_location start_location_req; + // start_location_req.request.filename = pb_name_; + // start_location_req.request.action_mode = 0; + // start_location_req.request.to_trajectory_id = 0; + + // start_location_client.call(start_location_req); + + // now_robot_state_ = RS_LOCALIZATION; + + // if (relocation_result_ != 0) { + // ROS_ERROR("start_location Service return fail, ErrorCode is %d", + // res.result); + // res.result = start_location_req.response.result; + // return true; + // } + } else { + if (location_type_ == "amcl") { + ROS_INFO("start_location for amcl"); + ros::ServiceClient global_localization_client = nodeHandle.serviceClient("global_localization"); + std_srvs::Empty params; + if (global_localization_client.call(params)) { + } + } + + now_robot_state_ = RS_LOCALIZATION; + } + } else { // set free mode + if (now_robot_state_ == RS_LOCALIZATION) { + map_meta_data_pub_.shutdown(); + grid_map_pub_.shutdown(); + + if (inner_location_func_) { // 内部service client 启动相关建图应用 + // ROS_INFO("start_finish_location"); + // ros::ServiceClient start_location_client = nodeHandle.serviceClient("start_location"); + + // pibot_msgs::start_location start_location_req; + // start_location_req.request.filename = pb_name_; + // start_location_req.request.action_mode = 1; + // start_location_req.request.to_trajectory_id = 0; + + // start_location_client.call(start_location_req); + // res.result = start_location_req.response.result; + + // if (res.result == 0) { + // now_robot_state_ = RS_WAIT; + // } + } else { + if (location_type_ == "amcl") { + std::unique_lock lock(map_mutex_); + occupancy_grid_map_msg_.data.clear(); + } + + ROS_INFO("cancel location cmd: %s", cancel_location_cmd_.c_str()); + FILE* fp = popen(cancel_location_cmd_.c_str(), "r"); + + fclose(fp); + now_robot_state_ = RS_WAIT; + } + } else { + ROS_INFO("now_robot_state_ is already [WAIT],res.result = %d", 2); + res.result = 2; + return true; + } + } + + res.result = 0; + + return true; +} + +bool PibotManager::NaviCB(pibot_msgs::NaviParams::Request& req, pibot_msgs::NaviParams::Response& res) { + ROS_INFO("Navi, action: %d, goal: [%f , %f, %f]", req.action.type, req.goal.x, + req.goal.y, req.goal.theta); + + if (now_robot_state_ != RS_LOCALIZATION) { + ROS_INFO("NO LOCALIZATION INFO,CANT NAVIGATION"); + res.result = 1; + return true; + } + + if (map_img_width_ == 0 || map_img_height_ == 0) { + ROS_ERROR("size of image map is exception"); + res.result = 2; + return true; + } + + if (req.action.type == pibot_msgs::Action::ACTION_START) { + ros::ServiceClient clear_costmaps_client = nodeHandle.serviceClient("/move_base/clear_costmaps"); + std_srvs::Empty params; + if (clear_costmaps_client.call(params)) { + } + + bool ret = SendGoal(Point(req.goal.x, req.goal.y), req.goal.theta); + if (!ret) { + res.result = 3; + return true; + } + } else { + CancelGoal(); + } + + res.result = 0; + return true; +} + +bool PibotManager::SetPoseCB(pibot_msgs::SetPoseParams::Request& req, pibot_msgs::SetPoseParams::Response& res) { + ROS_INFO("Set Pose CB: %f, %f, %f", req.pose.x, req.pose.y, req.pose.theta); + + if (map_img_width_ == 0 || map_img_height_ == 0) { + ROS_ERROR("size of image map is exception"); + res.result = 2; + return true; + } + + geometry_msgs::PoseWithCovarianceStamped estimate_pose_msg; + estimate_pose_msg.header.stamp = ros::Time::now(); + estimate_pose_msg.header.frame_id = "map"; + + if (MapToWorld(req.pose, estimate_pose_msg.pose.pose) != 0) { + ROS_WARN("err req pose"); + res.result = 3; + return true; + } + + if (inner_location_func_) { + ros::service::waitForService("manual_location_trans"); + ros::ServiceClient manual_relocation_client = nodeHandle.serviceClient<::pibot_msgs::ManualLocation>( + "manual_location_trans"); + + pibot_msgs::ManualLocation relocation_req; + relocation_req.request.pose = estimate_pose_msg.pose.pose; + relocation_req.request.filename = pb_name_; + manual_relocation_client.call(relocation_req); + + if (relocation_req.response.result != 0) { + ROS_ERROR("response of manual manualReLocationCallback is fail!"); + res.result = 1; + return true; + } + ROS_INFO("Service [manual_location_trans] return"); + res.result = 0; + } else { + if (location_type_ == "amcl") { + amcl_initialpose_pub_.publish(estimate_pose_msg); + } + } + + return true; +} + +bool PibotManager::RelocationCB(pibot_msgs::ActionParams::Request& req, pibot_msgs::ActionParams::Response& res) { + ROS_INFO("Auto Location"); + + if (map_img_width_ == 0 || map_img_height_ == 0) { + ROS_ERROR("size of image map is exception"); + res.result = 2; + return true; + } + + if (location_type_ == "amcl") { + ros::ServiceClient global_localization_client = nodeHandle.serviceClient("global_localization"); + std_srvs::Empty params; + if (global_localization_client.call(params)) { + } + } else { + } + + return true; +} + +void PibotManager::onReceiveRelocationResult(const pibot_msgs::RelocateResult::ConstPtr& msg) { + relocation_result_ = msg->relocate_result; + + ROS_ERROR("onReceiveRelocationResult: %d", (int)msg->relocate_result); +} + +void PibotManager::onReceiveCartoPose(const geometry_msgs::PoseStamped::ConstPtr msg) { + WorldToMap(msg->pose, robot_pose_in_img_); +} + +void PibotManager::onReceiveAmclPose(const geometry_msgs::PoseWithCovarianceStamped::ConstPtr msg) { + WorldToMap(msg->pose.pose, robot_pose_in_img_); +} + +#if SCAN_PC_TYPE == 1 +void PibotManager::onReceiveLDS(const sensor_msgs::PointCloud::ConstPtr msg) { + if (map_img_width_ == 0 || map_img_height_ == 0) { + return; + } + + // upload freq + ros::Time current_scan_time = ros::Time::now(); + if ((current_scan_time - last_pub_scan_time_).toSec() * 1000 < LDS_PUB_INTERVAL) { + return; + } + + last_pub_scan_time_ = ros::Time::now(); + + tf::StampedTransform transform; + + try { + laser_listener_.lookupTransform("map", laser_frame_, ros::Time(0), transform); + + pibot_msgs::PointArray laser_points_msg; + laser_points_msg.header.stamp = ros::Time::now(); + + if (0 != msg->points.size()) { + laser_points_msg.points.resize(msg->points.size()); + } + + for (int i = 0; i < msg->points.size(); i++) { + geometry_msgs::PointStamped local_point; + local_point.header.frame_id = laser_frame_; + local_point.point.x = msg->points[i].x; + local_point.point.y = msg->points[i].y; + local_point.point.z = msg->points[i].z; + + geometry_msgs::PointStamped world_point; + world_point.header.frame_id = "map"; + laser_listener_.transformPoint("map", local_point, world_point); // laser link转换为world坐标 + + pibot_msgs::Pose laser_pose; + WorldToMap(world_point.point, laser_pose); // 转换得到地图像素坐标 + + laser_points_msg.points[i].x = laser_pose.x; + laser_points_msg.points[i].y = laser_pose.y; + } + + if (0 != msg->points.size()) { + laser_ponits_pub_.publish(laser_points_msg); + } + } catch (tf::TransformException& ex) { + } +} +#else +void PibotManager::onReceiveLDS2(const sensor_msgs::PointCloud2::ConstPtr msg) { + if (map_img_width_ == 0 || map_img_height_ == 0) { + return; + } + + // upload freq + ros::Time current_scan_time = ros::Time::now(); + if ((current_scan_time - last_pub_scan_time_).toSec() * 1000 < LDS_PUB_INTERVAL) { + return; + } + + pcl::PCLPointCloud2 pcl_pc2; + pcl_conversions::toPCL(*msg, pcl_pc2); + pcl::PointCloud::Ptr temp_cloud(new pcl::PointCloud); + pcl::fromPCLPointCloud2(pcl_pc2, *temp_cloud); + + last_pub_scan_time_ = ros::Time::now(); + + tf::StampedTransform transform; + + try { + laser_listener_.lookupTransform("map", laser_frame_, ros::Time(0), transform); + + pibot_msgs::PointArray laser_points_msg; + laser_points_msg.header.stamp = ros::Time::now(); + + if (0 != temp_cloud->size()) { + laser_points_msg.points.resize(temp_cloud->size()); + } + + for (int i = 0; i < temp_cloud->size(); i++) { + geometry_msgs::PointStamped local_point; + local_point.header.frame_id = laser_frame_; + local_point.point.x = (*temp_cloud)[i].x; + local_point.point.y = (*temp_cloud)[i].y; + local_point.point.z = (*temp_cloud)[i].z; + + geometry_msgs::PointStamped world_point; + world_point.header.frame_id = "map"; + laser_listener_.transformPoint("map", local_point, world_point); // laser link转换为world坐标 + + pibot_msgs::Pose laser_pose; + WorldToMap(world_point.point, laser_pose); // 转换得到地图像素坐标 + + laser_points_msg.points[i].x = laser_pose.x; + laser_points_msg.points[i].y = laser_pose.y; + } + + if (0 != temp_cloud->size()) { + laser_ponits_pub_.publish(laser_points_msg); + } + } catch (tf::TransformException& ex) { + } +} +#endif + +void PibotManager::onReceiveMap(const nav_msgs::OccupancyGrid::ConstPtr msg) { + if (now_robot_state_ != RS_MAPPING) { + return; + } + + map_img_width_ = msg->info.width; + map_img_height_ = msg->info.height; + map_resolution_ = msg->info.resolution; + + origin_world_point_ = Point2f(msg->info.origin.position.x, msg->info.origin.position.y); +} + +void PibotManager::onReceivePath(const nav_msgs::Path::ConstPtr msg) { + if (map_img_width_ == 0 || map_img_height_ == 0) { + return; + } + + pibot_msgs::PointArray path_msg; + path_msg.header.stamp = ros::Time::now(); + int num = msg->poses.size(); + + if (num > 0) { + path_msg.points.resize(num); + for (int i = 0; i < num; i++) { + pibot_msgs::Pose path_pose; + WorldToMap(msg->poses[i].pose.position, path_pose); + + path_msg.points[i].x = path_pose.x; + path_msg.points[i].y = path_pose.y; + } + } + path_points_pub_.publish(path_msg); +} + +int PibotManager::WorldToMap(const geometry_msgs::Point& world_point, pibot_msgs::Pose& map_pose) { + if (map_resolution_ == 0.0f || map_img_width_ == 0 || map_img_height_ == 0 || + origin_world_point_ == Point2f()) { + return -1; + } + + map_pose.x = (world_point.x - origin_world_point_.x) / map_resolution_; + map_pose.y = map_img_height_ - 1 - (world_point.y - origin_world_point_.y) / map_resolution_; + + if (map_pose.x < 0 || map_pose.x > map_img_width_ - 1 || map_pose.y < 0 || + map_pose.y > map_img_height_ - 1) { + return -2; + } + + return 0; +} + +int PibotManager::WorldToMap(const geometry_msgs::Pose& world_pose, pibot_msgs::Pose& map_pose) { + if (map_resolution_ == 0.0f || map_img_width_ == 0 || map_img_height_ == 0 || + origin_world_point_ == Point2f()) { + return -1; + } + + map_pose.x = (world_pose.position.x - origin_world_point_.x) / map_resolution_; + map_pose.y = map_img_height_ - 1 - (world_pose.position.y - origin_world_point_.y) / map_resolution_; + map_pose.theta = RADIAN_TO_DEGREE(-tf::getYaw(world_pose.orientation)); + + if (map_pose.x < 0 || map_pose.x > map_img_width_ - 1 || map_pose.y < 0 || + map_pose.y > map_img_height_ - 1) { + return -2; + } + + return 0; +} + +int PibotManager::MapToWorld(const pibot_msgs::Pose& map_pose, geometry_msgs::Pose& world_pose) { + if (map_resolution_ == 0.0f || map_img_width_ == 0 || map_img_height_ == 0 || + origin_world_point_ == Point2f()) { + return -1; + } + + if (map_pose.x < 0 || map_pose.x > map_img_width_ - 1 || map_pose.y < 0 || + map_pose.y > map_img_height_ - 1) { + return -2; + } + + world_pose.position.x = map_pose.x * map_resolution_ + origin_world_point_.x; + world_pose.position.y = (map_img_height_ - 1 - map_pose.y) * map_resolution_ + origin_world_point_.y; + world_pose.orientation = tf::createQuaternionMsgFromYaw(DEGREE_TO_RADIAN(-map_pose.theta)); + + return 0; +} + +int PibotManager::MapToWorld(const Point& mapPoint, Point2f& worldPoint) { + if (map_resolution_ == 0.0f || map_img_width_ == 0 || map_img_height_ == 0 || origin_world_point_ == Point2f()) { + return -1; + } + + if (mapPoint.x < 0 || mapPoint.x > map_img_width_ - 1 || mapPoint.y < 0 || mapPoint.y > map_img_height_ - 1) { + return -2; + } + + worldPoint.x = mapPoint.x * map_resolution_ + origin_world_point_.x; + worldPoint.y = mapPoint.y * map_resolution_ + origin_world_point_.y; + + return 0; +} + +int PibotManager::PublishMap(const Mat& image) { + if (image.empty()) { + return -1; + } + + Mat mMat = image.clone(); + Mat mMatClone = imread(map_name_, CV_8UC1); + // add map infomation// + for (int i = 0; i < _virtual_wall_list_.size(); i++) { + // dont link the last and first point + for (int j = 0; j < _virtual_wall_list_[i].size() - 1; j++) { + int start = j; + int end = j + 1; // getIndex(j + 1,_virtual_wall_list_[i].size()); + + line(mMat, Point(_virtual_wall_list_[i][start]), + Point(_virtual_wall_list_[i][end]), Scalar(0, 0, 0), 1, 8, 0); + line(mMatClone, Point(_virtual_wall_list_[i][start]), + Point(_virtual_wall_list_[i][end]), Scalar(0, 0, 0), 1, 8, 0); + } + } + + std::unique_lock lock(map_mutex_); + + // Copy the image data into the map structure + occupancy_grid_map_msg_.info.width = mMat.cols; + occupancy_grid_map_msg_.info.height = mMat.rows; + occupancy_grid_map_msg_.info.resolution = map_resolution_; + occupancy_grid_map_msg_.info.origin.position.x = origin_world_point_.x; + occupancy_grid_map_msg_.info.origin.position.y = origin_world_point_.y; + occupancy_grid_map_msg_.info.origin.position.z = 0.0; + occupancy_grid_map_msg_.info.origin.orientation = tf::createQuaternionMsgFromYaw(origin_world_angle_); + occupancy_grid_map_msg_.data.resize(occupancy_grid_map_msg_.info.width * occupancy_grid_map_msg_.info.height); + + for (int row = 0; row < mMat.rows; row++) { + for (int col = 0; col < mMat.cols; col++) { + double color = mMat.at(row, col)[0]; + if (negate_) { + color = 255 - color; + } + + double occ = (255 - color) / 255.0; + unsigned char value; + + if (occ > occ_th_) { + value = 100; // black + } else if (occ < free_th_) { + value = 0; // white + } else { + value = -1; // gray + } + + int index = col + (mMat.rows - 1 - row) * mMat.cols; + occupancy_grid_map_msg_.data[index] = value; + } + } + + occupancy_grid_map_msg_.info.map_load_time = ros::Time::now(); + occupancy_grid_map_msg_.header.frame_id = "map"; + occupancy_grid_map_msg_.header.stamp = ros::Time::now(); + + map_mutex_.unlock(); + + nav_msgs::MapMetaData map_meta_data_msg = occupancy_grid_map_msg_.info; + + map_meta_data_pub_ = nodeHandle.advertise("map_metadata", 1, true); + grid_map_pub_ = nodeHandle.advertise("map", 1, true); + + map_meta_data_pub_.publish(map_meta_data_msg); + grid_map_pub_.publish(occupancy_grid_map_msg_); + + return 0; +} + +bool PibotManager::StaticMapCB(nav_msgs::GetMap::Request& req, nav_msgs::GetMap::Response& res) { + std::unique_lock lock(map_mutex_); + + if (occupancy_grid_map_msg_.data.empty()) { + return false; + } + + res.map = occupancy_grid_map_msg_; + + return true; +} + +void PibotManager::MoveBaseActionDoneCallback(const actionlib::SimpleClientGoalState& state, const move_base_msgs::MoveBaseResultConstPtr& result) { + ROS_INFO("Goal Plan Complete, state: %d-%s", state.state_, state.toString().c_str()); + pibot_msgs::NaviStatus navi_msg; + navi_msg.status = state.state_; + navi_state_pub_.publish(navi_msg); +} + +void PibotManager::MoveBaseActionActiveCallback() { + ROS_INFO("Planning Goal Active"); +} + +void PibotManager::MoveBaseActionFeedbackCallback(const move_base_msgs::MoveBaseFeedbackConstPtr& feedback) { + if (feedback->base_position.header.frame_id == "map") { + pibot_msgs::Pose map_pose; + WorldToMap(feedback->base_position.pose, map_pose); + + // output pose in map + ROS_INFO("MoveBase Feedback [%.2f %.2f %.2f]", map_pose.x, map_pose.y, map_pose.theta); + } +} + +bool PibotManager::SendGoal(const Point& point, float angle, bool normal) { + Point2f worldPoint; + + Point mapPoint = Point(point.x, map_img_height_ - 1 - point.y); + int result = MapToWorld(mapPoint, worldPoint); + if (0 != result) { + return false; + } + +#if 0 + geometry_msgs::PoseStamped goal; + goal.header.stamp = ros::Time::now(); + goal.header.frame_id = "map"; + goal.pose.position.x = worldPoint.x; + goal.pose.position.y = worldPoint.y; + goal.pose.position.z = normal ? 0 : -1; + goal.pose.orientation = tf::createQuaternionMsgFromYaw(-DEGREE_TO_RADIAN(angle)); + goal_pub_.publish(goal); +#else + move_base_msgs::MoveBaseGoal goal; + + goal.target_pose.header.frame_id = "map"; + goal.target_pose.header.stamp = ros::Time::now(); + + goal.target_pose.pose.position.x = worldPoint.x; + goal.target_pose.pose.position.y = worldPoint.y; + goal.target_pose.pose.position.z = 0; + goal.target_pose.pose.orientation = tf::createQuaternionMsgFromYaw(-DEGREE_TO_RADIAN(angle)); + + // move_base_action_client_.sendGoal(goal); + move_base_action_client_.sendGoal(goal, + boost::bind(&PibotManager::MoveBaseActionDoneCallback, this, _1, _2), + boost::bind(&PibotManager::MoveBaseActionActiveCallback, this), + boost::bind(&PibotManager::MoveBaseActionFeedbackCallback, this, _1)); +#endif + + return true; +} + +bool PibotManager::CancelGoal() { + move_base_action_client_.cancelAllGoals(); + return true; +} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/.gitignore b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/.gitignore new file mode 100644 index 0000000..5c79431 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/.gitignore @@ -0,0 +1,3 @@ +camera_umd +ros_astra_camera +ros_astra_launch diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/CMakeLists.txt new file mode 100644 index 0000000..e02b94c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/CMakeLists.txt @@ -0,0 +1,202 @@ +cmake_minimum_required(VERSION 3.0.2) +project(pibot_3dsensor) + +## 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 pibot_3dsensor +# 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}/pibot_3dsensor.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/pibot_3dsensor_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_pibot_3dsensor.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/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/calibration/depth_PS1080_PrimeSense.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/calibration/depth_PS1080_PrimeSense.yaml new file mode 100644 index 0000000..ca5ad63 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/calibration/depth_PS1080_PrimeSense.yaml @@ -0,0 +1,20 @@ +image_width: 640 +image_height: 480 +camera_name: depth_PS1080_PrimeSense +camera_matrix: + rows: 3 + cols: 3 + data: [546.0500834384593, 0.0, 318.26543549764034, 0.0, 545.7495208147751, 235.530988776277, 0.0, 0.0, 1.0] +distortion_model: plumb_bob +distortion_coefficients: + rows: 1 + cols: 5 + data: [-0.02445400737474688, 0.015558351939314555, 0.0010451121492915797, -0.004270544037870965, 0.0] +rectification_matrix: + rows: 3 + cols: 3 + data: [1, 0, 0, 0, 1, 0, 0, 0, 1] +projection_matrix: + rows: 3 + cols: 4 + data: [579.1331176757812, 0.0, 314.36071062675546, 0.0, 0.0, 580.1824340820312, 251.67534864987465, 0.0, 0.0, 0.0, 1.0, 0.0] \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/calibration/rgb_PS1080_PrimeSense.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/calibration/rgb_PS1080_PrimeSense.yaml new file mode 100644 index 0000000..ed07bfc --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/calibration/rgb_PS1080_PrimeSense.yaml @@ -0,0 +1,20 @@ +image_width: 640 +image_height: 480 +camera_name: rgb_PS1080_PrimeSense +camera_matrix: + rows: 3 + cols: 3 + data: [546.0500834384593, 0.0, 318.26543549764034, 0.0, 545.7495208147751, 235.530988776277, 0.0, 0.0, 1.0] +distortion_model: plumb_bob +distortion_coefficients: + rows: 1 + cols: 5 + data: [0.07270573116068803, -0.18543929362134534, -0.0011832045804703304, -0.0034080201993029564, 0.0] +rectification_matrix: + rows: 3 + cols: 3 + data: [1, 0, 0, 0, 1, 0, 0, 0, 1] +projection_matrix: + rows: 3 + cols: 4 + data: [546.8461303710938, 0.0, 315.7269048503658, 0.0, 0.0, 549.0361938476562, 234.61483550908815, 0.0, 0.0, 0.0, 1.0, 0.0] diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/config/astra_camera.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/config/astra_camera.yaml new file mode 100644 index 0000000..1ec970f --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/config/astra_camera.yaml @@ -0,0 +1,27 @@ +image_width: 640 +image_height: 480 +camera_name: camera +camera_matrix: + rows: 3 + cols: 3 + data: [577.54679, 0. , 310.24326, + 0. , 578.63325, 253.65539, + 0. , 0. , 1. ] +camera_model: plumb_bob +distortion_model: plumb_bob +distortion_coefficients: + rows: 1 + cols: 5 + data: [0.125197, -0.196591, 0.006816, -0.006225, 0.000000] +rectification_matrix: + rows: 3 + cols: 3 + data: [1., 0., 0., + 0., 1., 0., + 0., 0., 1.] +projection_matrix: + rows: 3 + cols: 4 + data: [590.55457, 0. , 306.57339, 0. , + 0. , 592.83978, 256.43008, 0. , + 0. , 0. , 1. , 0. ] diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/config/astra_depth.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/config/astra_depth.yaml new file mode 100644 index 0000000..9ff93fb --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/config/astra_depth.yaml @@ -0,0 +1,20 @@ +image_width: 640 +image_height: 480 +camera_name: depth_Astra_Orbbec +camera_matrix: + rows: 3 + cols: 3 + data: [582.795354, 0.000000, 326.415982, 0.000000, 584.395006, 249.989410, 0.000000, 0.000000, 1.000000] +distortion_model: plumb_bob +distortion_coefficients: + rows: 1 + cols: 5 + data: [-0.068613, 0.174404, 0.001015, 0.006240, 0.000000] +rectification_matrix: + rows: 3 + cols: 3 + data: [1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000] +projection_matrix: + rows: 3 + cols: 4 + data: [586.186035, 0.000000, 329.702427, 0.000000, 0.000000, 590.631409, 250.167765, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000] diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/launch/astra.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/launch/astra.launch new file mode 100644 index 0000000..0cbbf1a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/launch/astra.launch @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/launch/d435i.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/launch/d435i.launch new file mode 100644 index 0000000..7c538be --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/launch/d435i.launch @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/launch/kinectV1.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/launch/kinectV1.launch new file mode 100644 index 0000000..f1f4b8c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/launch/kinectV1.launch @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/launch/xtion.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/launch/xtion.launch new file mode 100644 index 0000000..deed30c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/launch/xtion.launch @@ -0,0 +1,14 @@ + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/package.xml new file mode 100644 index 0000000..22005f6 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_3dsensor/package.xml @@ -0,0 +1,59 @@ + + + pibot_3dsensor + 0.0.0 + The pibot_3dsensor package + + + + + david + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/CMakeLists.txt new file mode 100644 index 0000000..da55901 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/CMakeLists.txt @@ -0,0 +1,216 @@ +cmake_minimum_required(VERSION 2.8.3) +project(pibot_bringup) + +## 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 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 + roscpp + tf + dynamic_reconfigure +) +## * 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/pibot_parameter.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 pibot_bringup +# 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} + include ${catkin_INCLUDE_DIRS} + include include/pibot_bringup/ +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/pibot_bringup.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/pibot_bringup_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 +# install(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables and/or libraries for installation +# install(TARGETS ${PROJECT_NAME} ${PROJECT_NAME}_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_pibot_bringup.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) + +# add_definitions(-DUSE_BOOST_SERIAL_TRANSPORT) + +add_executable(pibot_driver + src/main.cpp + src/base_driver_config.cpp + src/base_driver.cpp + src/data_holder.cpp + src/simple_dataframe_master.cpp + # src/serial_transport.cpp + src/serial_transport2.cpp + +) +add_dependencies(pibot_driver ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) +target_link_libraries(pibot_driver + ${catkin_LIBRARIES} +) diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/cfg/pibot_parameter.cfg b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/cfg/pibot_parameter.cfg new file mode 100644 index 0000000..6669100 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/cfg/pibot_parameter.cfg @@ -0,0 +1,54 @@ +#!/usr/bin/env python + +PACKAGE = 'pibot_bringup' + +from dynamic_reconfigure.parameter_generator_catkin import ParameterGenerator, str_t, double_t, bool_t, int_t + +gen = ParameterGenerator() + +model_type_enum = gen.enum([ gen.const("2WD_Diff", int_t, 1, "Two-wheel Diff Drive"), + gen.const("4WD_Diff", int_t, 2, "Four-wheel Diff Drive"), + gen.const("3WD_Omni", int_t, 101, "Three-wheel Omni Drvie"), + # gen.const("4WD_Omni", int_t, 102, "Four-wheel Omni Drvie"), + gen.const("4WD_Mecanum", int_t, 201, "Four-wheel Mecanum Drvie"), + gen.const("UNKNOWN", int_t, 255, "unknown model")], + "pibot dirver list") + +gen.add("model_type", int_t, 0, "model type", 1, 1, 255, edit_method = model_type_enum) + +gen.add("motor1_exchange_flag", bool_t, 0, "exchange motor1 wire", False) +gen.add("motor2_exchange_flag", bool_t, 0, "exchange motor2 wire", False) +gen.add("motor3_exchange_flag", bool_t, 0, "exchange motor3 wire", False) +gen.add("motor4_exchange_flag", bool_t, 0, "exchange motor4 wire", False) + +gen.add("encoder1_exchange_flag", bool_t, 0, "exchange encoder1 wire", False) +gen.add("encoder2_exchange_flag", bool_t, 0, "exchange encoder2 wire", False) +gen.add("encoder3_exchange_flag", bool_t, 0, "exchange encoder3 wire", False) +gen.add("encoder4_exchange_flag", bool_t, 0, "exchange encoder4 wire", False) + +gen.add("wheel_diameter", int_t, 0, "The diameter of the wheel", 30, 10, 500) +gen.add("wheel_track", int_t, 0, "The track of the wheel", 300, 50, 1000) +gen.add("encoder_resolution", int_t, 0, "The resolution of the encoder", 1560, 1 , 32000) +gen.add("motor_ratio", int_t, 0, "The ratio of the motor", 1, 1, 1000) + +gen.add("do_pid_interval", int_t, 0, "The interval of do pid", 10, 1, 80) +gen.add("kp", int_t, 0, "Kp value", 20, 0, 10000) +gen.add("ki", int_t, 0, "Ki value", 20, 0, 32000) +gen.add("kd", int_t, 0, "Kd value", 20, 0, 1000) +gen.add("ko", int_t, 0, "Ko value", 20, 0, 1000) + +gen.add("cmd_last_time", int_t, 0, "cmd_last_time value", 200, 0, 1000) + +gen.add("max_v_liner_x", int_t, 0, "liner x", 60, 0, 500) +gen.add("max_v_liner_y", int_t, 0, "liner y", 0, 0, 500) +gen.add("max_v_angular_z", int_t, 0, "angular z", 120, 0, 2000) + +imu_type_enum = gen.enum([ gen.const("GY65", int_t, 49, "mpu6050"), + gen.const("GY85", int_t, 69, "adxl345_it43200_hmc5883l"), + gen.const("GY87", int_t, 71, "mpu6050_hmc5883l"), + gen.const("nonimu", int_t, 255, "disable imu")], + "imu type list") + +gen.add("imu_type", int_t, 0, "imu type", 69, 1, 255, edit_method = imu_type_enum) + +exit(gen.generate(PACKAGE, "pibot_bringup", "pibot_parameter")) diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/config/joystick-holonomic.config.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/config/joystick-holonomic.config.yaml new file mode 100644 index 0000000..a25dab3 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/config/joystick-holonomic.config.yaml @@ -0,0 +1,15 @@ +axis_linear: + x: 1 # 遥感索引1的值表示控制linear的x方向(前进后退) + y: 0 # 遥感索引0的值表示控制linear的y方向(左右平移) +scale_linear: + x: 0.50 # 低速运动linear x最大值 + y: 0.50 # 低速运动linear y最大值 + +axis_angular: + yaw: 3 # 遥感索引3的值表示控制angular(旋转) +scale_angular: + yaw: 1.2 # 低速运动angular最大值 + +enable_button: 0 # 实现低速运动使能键 +enable_turbo_button: -1 # 实现高速度运动使能键 + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/config/joystick.config.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/config/joystick.config.yaml new file mode 100644 index 0000000..2ab4262 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/config/joystick.config.yaml @@ -0,0 +1,10 @@ +axis_linear: 1 # 遥感索引1的值表示控制linear 索引rostopic echo joy可以看出axes数字 +scale_linear: 0.5 # 低速运动linear最大值 +scale_linear_turbo: 1.5 # 高度速运动linear最大值 + +axis_angular: 0 # 遥感索引0的表示angular方向 +scale_angular: 1.2 # 低速运动angular最大值 +scale_angular_turbo: 2.0 # 高度速运动angular最大值 + +enable_button: 0 # 实现低速运动使能键 +enable_turbo_button: 1 # 实现高速度运动使能键 diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/base_driver.h b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/base_driver.h new file mode 100644 index 0000000..4838177 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/base_driver.h @@ -0,0 +1,88 @@ +#include + +#include +#include "base_driver_config.h" + + +#include +#include +#include +#include +#include +#include "pibot_bringup/transport.h" +#include "pibot_bringup/dataframe.h" +#include + +class BaseDriver +{ +private: + BaseDriver(); + +public: + static BaseDriver* Instance() + { + if (instance == NULL) + instance = new BaseDriver(); + + return instance; + } + ~BaseDriver(); + void work_loop(); + +private: + void cmd_vel_callback(const geometry_msgs::Twist& vel_cmd); + void init_cmd_odom(); + void init_pid_debug(); + void init_imu(); + void read_param(); + + void update_param(); + void update_odom(); + void update_speed(); + void update_pid_debug(); + void update_imu(); + +public: + + BaseDriverConfig& getBaseDriverConfig() { + return bdg; + } + + ros::NodeHandle* getNodeHandle(){ + return &nh; + } + + ros::NodeHandle* getPrivateNodeHandle() { + return &pn; + } +private: + static BaseDriver* instance; + + BaseDriverConfig bdg; + boost::shared_ptr trans; + boost::shared_ptr frame; + + ros::Subscriber cmd_vel_sub; + + ros::Publisher odom_pub; + + nav_msgs::Odometry odom; + geometry_msgs::TransformStamped odom_trans; + tf::TransformBroadcaster odom_broadcaster; + + ros::NodeHandle nh; + ros::NodeHandle pn; + + #define MAX_MOTOR_COUNT 4 + ros::Publisher pid_debug_pub_input[MAX_MOTOR_COUNT]; + ros::Publisher pid_debug_pub_output[MAX_MOTOR_COUNT]; + + std_msgs::Int32 pid_debug_msg_input[MAX_MOTOR_COUNT]; + std_msgs::Int32 pid_debug_msg_output[MAX_MOTOR_COUNT]; + + bool need_update_speed; + + pibot_msgs::RawImu raw_imu_msgs; + + ros::Publisher raw_imu_pub; +}; \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/base_driver_config.h b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/base_driver_config.h new file mode 100644 index 0000000..817ba20 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/base_driver_config.h @@ -0,0 +1,60 @@ +#ifndef BASE_DRIVER_CONFIG_ +#define BASE_DRIVER_CONFIG_ + +#include + +#define USE_DYNAMIC_RECONFIG +#ifdef USE_DYNAMIC_RECONFIG +#include +#include "pibot_bringup/pibot_parameterConfig.h" +#endif + +class Robot_parameter; +class BaseDriverConfig +{ +public: + BaseDriverConfig(ros::NodeHandle &p); + ~BaseDriverConfig(); + + void init(Robot_parameter* r); + void SetRobotParameters(); + +#ifdef USE_DYNAMIC_RECONFIG + + void dynamic_callback(pibot_bringup::pibot_parameterConfig &config, uint32_t level); + bool get_param_update_flag(); + + private: + dynamic_reconfigure::Server server; + dynamic_reconfigure::Server::CallbackType f; +#endif +public: + Robot_parameter* rp; + + std::string port; + int32_t baudrate; + + std::string base_frame; + std::string odom_frame; + + bool publish_tf; + + //double ticks_per_meter; + + std::string cmd_vel_topic; + std::string odom_topic; + + int32_t freq; + + bool out_pid_debug_enable; + private: +#ifdef USE_DYNAMIC_RECONFIG + bool param_update_flag; +#endif + ros::NodeHandle& pn; + ros::ServiceClient client; + + bool set_flag; +}; + +#endif diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/data_holder.h b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/data_holder.h new file mode 100644 index 0000000..a52ce6c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/data_holder.h @@ -0,0 +1,144 @@ +#ifndef DATA_HOLDER_H_ +#define DATA_HOLDER_H_ + +#include + +#pragma pack(1) + +typedef int int32; +typedef short int16; +typedef unsigned short uint16; + +struct Robot_firmware +{ + char version[16]; //固件版本 + char time[16]; //构建时间 +}; + +enum IMU_TYPE +{ + IMU_TYPE_GY65 = 49, + IMU_TYPE_GY85 = 69, + IMU_TYPE_GY87 = 71 +}; + +enum MODEL_TYPE +{ + MODEL_TYPE_2WD_DIFF = 1, + MODEL_TYPE_4WD_DIFF = 2, + MODEL_TYPE_3WD_OMNI = 101, + MODEL_TYPE_4WD_OMNI = 102, + MODEL_TYPE_4WD_MECANUM = 201, +}; + +#define MOTOR_ENCODER_1_FLAG 0x01 +#define MOTOR_ENCODER_2_FLAG 0x02 +#define MOTOR_ENCODER_3_FLAG 0x04 +#define MOTOR_ENCODER_4_FLAG 0x08 + +struct Robot_parameter +{ + union + { + char buff[64]; + struct + { + unsigned short wheel_diameter; //轮子直径 mm + unsigned short wheel_track; //差分:轮距, 三全向轮:直径,四全向:前后轮距+左右轮距 mm + unsigned short encoder_resolution; //编码器分辨率 + unsigned char do_pid_interval; //pid间隔 (ms) + unsigned short kp; + unsigned short ki; + unsigned short kd; + unsigned short ko; //pid参数比例 + unsigned short cmd_last_time; //命令持久时间ms 超过该时间会自动停止运动 + unsigned short max_v_liner_x; // 最大x线速度 + unsigned short max_v_liner_y; // 最大y线速度 + unsigned short max_v_angular_z; // 最大角速度 + unsigned char imu_type; // imu类型 参见IMU_TYPE + unsigned short motor_ratio; // 电机减速比 + unsigned char model_type; // 运动模型类型 参见MODEL_TYPE + unsigned char motor_nonexchange_flag; // 电机标志参数 1 正接 0 反接(相当于电机线交换) + unsigned char encoder_nonexchange_flag; // 编码器标志参数 1 正接 0 反接(相当于编码器ab相交换) + }; + }; +}; + +struct Robot_velocity +{ + short v_liner_x; //线速度 前>0 cm/s + short v_liner_y; //差分轮 为0 cm/s + short v_angular_z; //角速度 左>0 0.01rad/s 100 means 1 rad/s +}; + +struct Robot_odom +{ + short v_liner_x; //线速度 前>0 后<0 cm/s + short v_liner_y; //差分轮 为0 cm/s + short v_angular_z; //角速度 左>0 右<0 0.01rad/s 100 means 1 rad/s + int32 x; //里程计坐标x cm (这里long为4字节,下同) + int32 y; //里程计坐标y cm + short yaw; //里程计航角 0.01rad 100 means 1 rad +}; + +struct Robot_pid_data +{ + int32 input[4]; //各轮子驱动输入值 + int32 output[4]; //个轮子输出值 +}; + +struct Robot_imu +{ + union { + float imu_data[9]; + + struct + { + float ax; // 加速度x m2/s + float ay; // 加速度y m2/s + float az; // 加速度z m2/s + float gx; // 角速度x rad/s + float gy; // 角速度y rad/s + float gz; // 角速度z rad/s + float mx; // 磁力x mGA + float my; // 磁力y mGA + float mz; // 磁力z mGA + } imu; + }; +}; + + +#pragma pack(0) + +class Data_holder +{ +public: + static Data_holder* get() { + static Data_holder dh; + return &dh; + } + + void load_parameter(); + + void save_parameter(); + + static void dump_params(struct Robot_parameter* params); +private: + Data_holder() { + memset(&firmware_info, 0, sizeof(struct Robot_firmware)); + memset(¶meter, 0, sizeof(struct Robot_parameter)); + memset(&velocity, 0, sizeof(struct Robot_velocity)); + memset(&odom, 0, sizeof(struct Robot_odom)); + memset(&pid_data, 0, sizeof(struct Robot_pid_data)); + memset(&imu_data, 0, sizeof(imu_data)); + } +public: + struct Robot_firmware firmware_info; + struct Robot_parameter parameter; + struct Robot_velocity velocity; + struct Robot_odom odom; + struct Robot_pid_data pid_data; + + float imu_data[9]; +}; +#endif \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/dataframe.h b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/dataframe.h new file mode 100644 index 0000000..1294ab2 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/dataframe.h @@ -0,0 +1,34 @@ +#ifndef PIBOT_DATA_FRAME_H_ +#define PIBOT_DATA_FRAME_H_ + +enum MESSAGE_ID +{ + ID_GET_VERSION = 0, + ID_SET_ROBOT_PARAMTER = 1, + ID_GET_ROBOT_PARAMTER = 2, + ID_INIT_ODOM = 3, + ID_SET_VELOCITY = 4, + ID_GET_ODOM = 5, + ID_GET_PID_DATA = 6, + ID_GET_IMU_DATA = 7, + ID_MESSGAE_MAX +}; + +class Notify +{ +public: + virtual void update(const MESSAGE_ID id, void* data) = 0; +}; + + +class Dataframe +{ +public: + virtual bool init()=0; + virtual void register_notify(const MESSAGE_ID id, Notify* _nf) = 0; + virtual bool data_recv(unsigned char c)=0; + virtual bool data_parse()=0; + virtual bool interact(const MESSAGE_ID id)=0; +}; + +#endif \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/queue.h b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/queue.h new file mode 100644 index 0000000..7d51625 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/queue.h @@ -0,0 +1,14 @@ +#ifndef PIBOT_QUEUE_H_ +#define PIBOT_QUEUE_H_ + +class Queue +{ +public: + virtual bool put(unsigned char ch)=0; + virtual bool get(unsigned char& ch)=0; + + virtual unsigned short size()=0; + virtual unsigned short max_size()=0; +}; + +#endif \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/serial_transport.h b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/serial_transport.h new file mode 100644 index 0000000..97bb152 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/serial_transport.h @@ -0,0 +1,76 @@ +#ifndef TRANSPORT_SERIAL_H_ +#define TRANSPORT_SERIAL_H_ + +#include "transport.h" + +class SerialParams +{ +public: + std::string serialPort; + unsigned int baudRate; + unsigned int flowControl; + unsigned int parity; + unsigned int stopBits; + SerialParams() : + serialPort(), baudRate(921600), flowControl(0), parity(0), stopBits(0) + { + } + SerialParams( + std::string _serialPort, + unsigned int _baudRate, + unsigned int _flowControl, + unsigned int _parity, + unsigned int _stopBits + ) : + serialPort(_serialPort), + baudRate(_baudRate), + flowControl(_flowControl), + parity(_parity), + stopBits(_stopBits) + { + } +}; + +class Serial_transport : public Transport +{ +public: + Serial_transport (std::string url, int32_t baudrate); + + bool init(); + void set_timeout(int t); + bool is_timeout(); + Buffer read(); + + void write(Buffer &data); + +private: + boost::shared_ptr port_; + SerialParams params_; + // for async read + Buffer temp_read_buf_; + + boost::thread thread_; + // locks + boost::mutex port_mutex_; + boost::mutex write_mutex_; + boost::mutex read_mutex_; + + bool initializeSerial(); + void mainRun(); + + void start_a_read(); + void start_a_write(); + void readHandler(const boost::system::error_code &ec, size_t bytesTransferred); + void writeHandler(const boost::system::error_code &ec); + + std::queue write_buffer_; + std::queue read_buffer_; + + // for boost asio service + boost::shared_ptr ios_; + + boost::shared_ptr timer_; +}; + + +#endif /* TRANSPORT_SERIAL_H_ */ diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/serial_transport2.h b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/serial_transport2.h new file mode 100644 index 0000000..7ffd590 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/serial_transport2.h @@ -0,0 +1,30 @@ +#ifndef TRANSPORT_SERIAL2_H_ +#define TRANSPORT_SERIAL2_H_ + +#include "transport.h" + +class Serial_transport2 : public Transport +{ +public: + Serial_transport2 (std::string url, int32_t baudrate); + ~Serial_transport2(); + bool init(); + Buffer read(); + + void write(Buffer &data); + + void set_timeout(int t); + bool is_timeout(); +private: + void mainRun(); + + unsigned long m_timeout_us; + + bool m_timeoutFlag; + int m_fd; + std::string m_port; + int32_t m_baudrate; +}; + + +#endif /* TRANSPORT_SERIAL_H_ */ diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/simple_dataframe.h b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/simple_dataframe.h new file mode 100644 index 0000000..978ec93 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/simple_dataframe.h @@ -0,0 +1,55 @@ +#ifndef PIBOT_SIMPLE_DATAFRAME_H_ +#define PIBOT_SIMPLE_DATAFRAME_H_ + +#include "dataframe.h" +#include + +static const unsigned short MESSAGE_BUFFER_SIZE = 255; + +#define FIX_HEAD 0x5A + +struct Head +{ + unsigned char flag;// 头部标记,固定值:0X5A + unsigned char msg_id;// 消息ID,表示消息具体作用,决定消息体具体格式 + unsigned char length;// 消息体长度 +}; + + +struct Message +{ + struct Head head; + unsigned char data[MESSAGE_BUFFER_SIZE]; + unsigned char check; + unsigned char recv_count;//已经接收的字节数 + + Message(){} + Message(unsigned char msg_id, unsigned char* data=0,unsigned char len=0) { + head.flag = FIX_HEAD; + head.msg_id = msg_id; + head.length = recv_count = len; + check = 0; + + if (data != 0 && len !=0) + memcpy(this->data, data, len); + + unsigned char* _send_buffer = (unsigned char*)this; + + unsigned int i = 0; + for (i = 0; i < sizeof(head)+head.length; i++) + check += _send_buffer[i]; + + _send_buffer[sizeof(head)+head.length] = check; + } +}; + +enum RECEIVE_STATE +{ + STATE_RECV_FIX=0, + STATE_RECV_ID, + STATE_RECV_LEN, + STATE_RECV_DATA, + STATE_RECV_CHECK +}; + +#endif \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/simple_dataframe_master.h b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/simple_dataframe_master.h new file mode 100644 index 0000000..60e935d --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/simple_dataframe_master.h @@ -0,0 +1,32 @@ +#ifndef PIBOT_SIMPLE_DATAFRAME_MASTER_H_ +#define PIBOT_SIMPLE_DATAFRAME_MASTER_H_ + +#include "simple_dataframe.h" +#include + +class Transport; +class Simple_dataframe : public Dataframe +{ +public: + Simple_dataframe(Transport* trans=0); + ~Simple_dataframe(); + void register_notify(const MESSAGE_ID id, Notify* _nf) { + } + + bool data_recv(unsigned char c); + bool data_parse(); + bool init(); + bool interact(const MESSAGE_ID id); +private: + bool recv_proc(); +private: + bool send_message(const MESSAGE_ID id); + bool send_message(const MESSAGE_ID id, unsigned char* data, unsigned char len); + bool send_message(Message* msg); +private: + Message active_rx_msg; + + RECEIVE_STATE recv_state; + Transport* trans; +}; +#endif \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/transport.h b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/transport.h new file mode 100644 index 0000000..495fd2e --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/transport.h @@ -0,0 +1,30 @@ +#ifndef TRANSPORT_H_ +#define TRANSPORT_H_ + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +typedef std::vector Buffer; + +class Transport +{ +public: + virtual ~Transport(){} + virtual bool init()=0; + virtual void set_timeout(int t)=0; + virtual bool is_timeout()=0; + virtual Buffer read() = 0; + + virtual void write(Buffer &data) = 0; +}; + + + +#endif /* TRANSPORT_BASE_H_ */ diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/variable_queue.h b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/variable_queue.h new file mode 100644 index 0000000..9c6a4a6 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/include/pibot_bringup/variable_queue.h @@ -0,0 +1,72 @@ +#ifndef PIBOT_VARIABLE_QUEUE_H_ +#define PIBOT_VARIABLE_QUEUE_H_ + +#include +#include +template +class VQueue : public Queue +{ +public: + VQueue(); + bool put(unsigned char ch); + bool get(unsigned char& ch); + + unsigned short size(); + unsigned short max_size(); +private: + unsigned char _buffer[MAX_SIZE]; + unsigned short _max_size; + unsigned short _head; + unsigned short _tail; +}; + +template +VQueue::VQueue() +{ + _max_size = MAX_SIZE; + memset(_buffer, 0, MAX_SIZE); + _head = 0; + _tail = 0; +} + +template +unsigned short VQueue::size() +{ + return (_tail+_max_size-_head)%_max_size; +} + +template +unsigned short VQueue::max_size() +{ + return _max_size; +} + +template +bool VQueue::put(unsigned char ch) +{ + if (_tail+1 == _head) + return false; + + _buffer[_tail++] = ch; + + if (_tail >= MAX_SIZE) + _tail = 0; + + return true; +} + +template +bool VQueue::get(unsigned char& ch) +{ + if (_head == _tail) + return false; + + ch = _buffer[_head++]; + + if (_head >= MAX_SIZE) + _head = 0; + + return true; +} + +#endif \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/apollo_bringup_smoother.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/apollo_bringup_smoother.launch new file mode 100644 index 0000000..e894004 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/apollo_bringup_smoother.launch @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/bringup.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/bringup.launch new file mode 100644 index 0000000..4667726 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/bringup.launch @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/bringup_with_imu.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/bringup_with_imu.launch new file mode 100644 index 0000000..37001bb --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/bringup_with_imu.launch @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + imu/accelerometer_bias: {x: 0.005436, y: 0.014684, z: -0.395418} + imu/gyroscope_bias: {x: -0.035592, y: 0.080670, z: 0.001216} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/joystick.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/joystick.launch new file mode 100644 index 0000000..5536e46 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/joystick.launch @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/keyboard_teleop.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/keyboard_teleop.launch new file mode 100644 index 0000000..b1b5c1f --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/keyboard_teleop.launch @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/model.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/model.launch new file mode 100644 index 0000000..c38414c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/model.launch @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/robot.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/robot.launch new file mode 100644 index 0000000..9d8872b --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/robot.launch @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/usb_camera.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/usb_camera.launch new file mode 100644 index 0000000..49f6df6 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/usb_camera.launch @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/usb_camera_old.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/usb_camera_old.launch new file mode 100644 index 0000000..ac96a6b --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/usb_camera_old.launch @@ -0,0 +1,15 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/view_model.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/view_model.launch new file mode 100644 index 0000000..916352f --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/launch/view_model.launch @@ -0,0 +1,7 @@ + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/package.xml new file mode 100644 index 0000000..8690654 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/package.xml @@ -0,0 +1,60 @@ + + + pibot_bringup + 0.0.0 + The pibot_bringup package + + + + + robot + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + pibot_msgs + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/scripts/odom_ekf.py b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/scripts/odom_ekf.py new file mode 100644 index 0000000..9db038d --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/scripts/odom_ekf.py @@ -0,0 +1,88 @@ +#!/usr/bin/env python + +""" odom_ekf.py - Version 1.1 2013-12-20 + + Republish the /robot_pose_ekf/odom_combined topic which is of type + geometry_msgs/PoseWithCovarianceStamped as an equivalent message of + type nav_msgs/Odometry so we can view it in RViz. + + Created for the Pi Robot Project: http://www.pirobot.org + Copyright (c) 2012 Patrick Goebel. All rights reserved. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version.5 + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details at: + + http://www.gnu.org/licenses/gpl.html + +""" + +import rospy + +from geometry_msgs.msg import PoseWithCovarianceStamped +from geometry_msgs.msg import TwistWithCovariance + +from nav_msgs.msg import Odometry + +ODOM_TWIST_COVARIANCE = [1e-3, 0, 0, 0, 0, 0, + 0, 1e-3, 0, 0, 0, 0, + 0, 0, 1e6, 0, 0, 0, + 0, 0, 0, 1e6, 0, 0, + 0, 0, 0, 0, 1e6, 0, + 0, 0, 0, 0, 0, 1e3] + +class OdomEKF(): + def __init__(self): + self.use_wheel_odom = rospy.get_param('~use_wheel_odom', True) + self.wheel_odom_topic = rospy.get_param('~wheel_odom_topic', 'wheel_odom') + self.twist = TwistWithCovariance() + self.twist.covariance = ODOM_TWIST_COVARIANCE + + # Give the node a name + rospy.init_node('odom_ekf', anonymous=False) + + # Publisher of type nav_msgs/Odometry + self.ekf_pub = rospy.Publisher('output', Odometry, queue_size=5) + + # Wait for the /odom_combined topic to become available + rospy.wait_for_message('input', PoseWithCovarianceStamped) + + if self.use_wheel_odom: + rospy.wait_for_message(self.wheel_odom_topic, Odometry) + # Subscribe to the /wheel_odom topic + rospy.Subscriber(self.wheel_odom_topic, Odometry, self._wheel_odom) + + + # Subscribe to the /odom_combined topic + rospy.Subscriber('input', PoseWithCovarianceStamped, self.pub_ekf_odom) + + rospy.loginfo("Publishing combined odometry on") + + def pub_ekf_odom(self, msg): + odom = Odometry() + odom.header = msg.header + odom.header.frame_id = '/odom' + odom.child_frame_id = 'base_link' + odom.pose = msg.pose + odom.twist = self.twist + self.ekf_pub.publish(odom) + + def _wheel_odom(self, msg): + self.twist = msg.twist + +if __name__ == '__main__': + try: + OdomEKF() + rospy.spin() + except: + pass + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/src/base_driver.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/src/base_driver.cpp new file mode 100644 index 0000000..4bbce0a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/src/base_driver.cpp @@ -0,0 +1,260 @@ +#include "base_driver.h" +#include "data_holder.h" + +#include +#ifdef USE_BOOST_SERIAL_TRANSPORT +#include "serial_transport.h" +#else +#include "serial_transport2.h" +#endif +#include "simple_dataframe_master.h" +#include + +BaseDriver* BaseDriver::instance = NULL; + +BaseDriver::BaseDriver() : pn("~"), bdg(pn) +{ + //init config + bdg.init(&Data_holder::get()->parameter); + +#ifdef USE_BOOST_SERIAL_TRANSPORT + trans = boost::make_shared(bdg.port, bdg.baudrate); +#else + trans = boost::make_shared(bdg.port, bdg.baudrate); +#endif + + frame = boost::make_shared(trans.get()); + + + ROS_INFO("BaseDriver startup..."); + if (trans->init()) { + ROS_INFO("connected to main board"); + } else { + ROS_ERROR("oops!!! can't connect to main board, please check the usb connection or baudrate!"); + return; + } + + + frame->init(); + + for (int i=0;i<3;i++) { + if (frame->interact(ID_GET_VERSION)) + break; + ros::Duration(1).sleep(); //wait for device + } + + ROS_INFO("robot version:%s build time:%s", Data_holder::get()->firmware_info.version, + Data_holder::get()->firmware_info.time); + + init_cmd_odom(); + + init_pid_debug(); + + read_param(); + + init_imu(); +} + +BaseDriver::~BaseDriver() +{ + if (instance != NULL) + delete instance; +} + +void BaseDriver::init_cmd_odom() +{ + frame->interact(ID_INIT_ODOM); + + ROS_INFO_STREAM("subscribe cmd topic on [" << bdg.cmd_vel_topic << "]"); + cmd_vel_sub = nh.subscribe(bdg.cmd_vel_topic, 1000, &BaseDriver::cmd_vel_callback, this); + + ROS_INFO_STREAM("advertise odom topic on [" << bdg.odom_topic << "]"); + odom_pub = nh.advertise(bdg.odom_topic, 50); + + //init odom_trans + odom_trans.header.frame_id = bdg.odom_frame; + odom_trans.child_frame_id = bdg.base_frame; + + odom_trans.transform.translation.z = 0; + + //init odom + odom.header.frame_id = bdg.odom_frame; + odom.pose.pose.position.z = 0.0; + odom.child_frame_id = bdg.base_frame; + odom.twist.twist.linear.y = 0; + + if (!bdg.publish_tf) { + odom.pose.covariance = boost::assign::list_of(1e-3) (0) (0) (0) (0) (0) + (0) (1e-3) (0) (0) (0) (0) + (0) (0) (1e6) (0) (0) (0) + (0) (0) (0) (1e6) (0) (0) + (0) (0) (0) (0) (1e6) (0) + (0) (0) (0) (0) (0) (1e3) ; + + odom.twist.covariance = boost::assign::list_of(1e-3) (0) (0) (0) (0) (0) + (0) (1e-3) (0) (0) (0) (0) + (0) (0) (1e6) (0) (0) (0) + (0) (0) (0) (1e6) (0) (0) + (0) (0) (0) (0) (1e6) (0) + (0) (0) (0) (0) (0) (1e3) ; + } + + need_update_speed = false; +} + +void BaseDriver::init_pid_debug() +{ + if (bdg.out_pid_debug_enable) { + const char* input_topic_name[MAX_MOTOR_COUNT]={"motor1_input", "motor2_input", "motor3_input", "motor4_input"}; + const char* output_topic_name[MAX_MOTOR_COUNT]={"motor1_output", "motor2_output", "motor3_output", "motor4_output"}; + for (size_t i = 0; i < MAX_MOTOR_COUNT; i++) { + pid_debug_pub_input[i] = nh.advertise(input_topic_name[i], 1000); + pid_debug_pub_output[i] = nh.advertise(output_topic_name[i], 1000); + } + } +} + +void BaseDriver::init_imu() +{ + raw_imu_pub = nh.advertise("raw_imu", 50); + raw_imu_msgs.header.frame_id = "imu_link"; + raw_imu_msgs.accelerometer = true; + raw_imu_msgs.gyroscope = true; + raw_imu_msgs.magnetometer = true; +} + +void BaseDriver::read_param() +{ + Robot_parameter* param = &Data_holder::get()->parameter; + memset(param,0, sizeof(Robot_parameter)); + + frame->interact(ID_GET_ROBOT_PARAMTER); + + Data_holder::dump_params(param); + + bdg.SetRobotParameters(); +} + +void BaseDriver::cmd_vel_callback(const geometry_msgs::Twist& vel_cmd) +{ + ROS_INFO_STREAM("cmd_vel:[" << vel_cmd.linear.x << " " << vel_cmd.linear.y << " " << vel_cmd.angular.z << "]"); + + Data_holder::get()->velocity.v_liner_x = vel_cmd.linear.x*100; + Data_holder::get()->velocity.v_liner_y = vel_cmd.linear.y*100; + Data_holder::get()->velocity.v_angular_z = vel_cmd.angular.z*100; + + need_update_speed = true; +} + +void BaseDriver::work_loop() +{ + ros::Rate loop(bdg.freq); + while (ros::ok()) { + //boost::posix_time::ptime my_posix_time = ros::Time::now().toBoost(); + update_param(); + + update_odom(); + + update_pid_debug(); + + update_speed(); + + if (Data_holder::get()->parameter.imu_type == IMU_TYPE_GY65 + || Data_holder::get()->parameter.imu_type == IMU_TYPE_GY85 + || Data_holder::get()->parameter.imu_type == IMU_TYPE_GY87) { + update_imu(); + } + + loop.sleep(); + + ros::spinOnce(); + } +} + +void BaseDriver::update_param() +{ +#ifdef USE_DYNAMIC_RECONFIG + if (bdg.get_param_update_flag()) { + frame->interact(ID_SET_ROBOT_PARAMTER); + ros::Rate loop(5); + loop.sleep(); + } +#endif +} + +void BaseDriver::update_odom() +{ + frame->interact(ID_GET_ODOM); + + ros::Time current_time = ros::Time::now(); + + float x = Data_holder::get()->odom.x*0.01; + float y = Data_holder::get()->odom.y*0.01; + float th = Data_holder::get()->odom.yaw*0.01; + + float vxy = Data_holder::get()->odom.v_liner_x*0.01; + float vth = Data_holder::get()->odom.v_angular_z*0.01; + + //ROS_INFO("odom: x=%.2f y=%.2f th=%.2f vxy=%.2f vth=%.2f", x, y ,th, vxy,vth); + + geometry_msgs::Quaternion odom_quat = tf::createQuaternionMsgFromYaw(th); + + //publish_tf + if (bdg.publish_tf) { + odom_trans.header.stamp = current_time; + odom_trans.transform.translation.x = x; + odom_trans.transform.translation.y = y; + odom_trans.transform.rotation = odom_quat; + odom_broadcaster.sendTransform(odom_trans); + } + + //publish the message + odom.header.stamp = current_time; + odom.pose.pose.position.x = x; + odom.pose.pose.position.y = y; + odom.pose.pose.orientation = odom_quat; + odom.twist.twist.linear.x = vxy; + odom.twist.twist.angular.z = vth; + + odom_pub.publish(odom); +} + +void BaseDriver::update_speed() +{ + if (need_update_speed) { + ROS_INFO_STREAM("update_speed"); + need_update_speed = !(frame->interact(ID_SET_VELOCITY)); + } +} + +void BaseDriver::update_pid_debug() +{ + if (bdg.out_pid_debug_enable) { + frame->interact(ID_GET_PID_DATA); + + for (size_t i = 0; i < MAX_MOTOR_COUNT; i++) { + pid_debug_msg_input[i].data = Data_holder::get()->pid_data.input[i]; + pid_debug_msg_output[i].data = Data_holder::get()->pid_data.output[i]; + + pid_debug_pub_input[i].publish(pid_debug_msg_input[i]); + pid_debug_pub_output[i].publish(pid_debug_msg_output[i]); + } + } +} + +void BaseDriver::update_imu() +{ + frame->interact(ID_GET_IMU_DATA); + raw_imu_msgs.header.stamp = ros::Time::now(); + raw_imu_msgs.raw_linear_acceleration.x = Data_holder::get()->imu_data[0]; + raw_imu_msgs.raw_linear_acceleration.y = Data_holder::get()->imu_data[1]; + raw_imu_msgs.raw_linear_acceleration.z= Data_holder::get()->imu_data[2]; + raw_imu_msgs.raw_angular_velocity.x = Data_holder::get()->imu_data[3]; + raw_imu_msgs.raw_angular_velocity.y = Data_holder::get()->imu_data[4]; + raw_imu_msgs.raw_angular_velocity.z = Data_holder::get()->imu_data[5]; + raw_imu_msgs.raw_magnetic_field.x = Data_holder::get()->imu_data[6]; + raw_imu_msgs.raw_magnetic_field.y = Data_holder::get()->imu_data[7]; + raw_imu_msgs.raw_magnetic_field.z = Data_holder::get()->imu_data[8]; + + raw_imu_pub.publish(raw_imu_msgs); +} \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/src/base_driver_config.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/src/base_driver_config.cpp new file mode 100644 index 0000000..87667c4 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/src/base_driver_config.cpp @@ -0,0 +1,126 @@ +#include "base_driver_config.h" + +#include "data_holder.h" +#define PI 3.1415926f + +BaseDriverConfig::BaseDriverConfig(ros::NodeHandle &p) : pn(p) +{ +#ifdef USE_DYNAMIC_RECONFIG + param_update_flag = false; +#endif + + set_flag = true; +} + +BaseDriverConfig::~BaseDriverConfig() +{ + +} + +void BaseDriverConfig::init(Robot_parameter* r) +{ + rp = r; + + //comm param + pn.param("port", port, "/dev/ttyACM0"); + pn.param("baudrate", baudrate, 115200); + + ROS_INFO("port:%s baudrate:%d", port.c_str(), baudrate); + + pn.param("base_frame", base_frame, "base_link"); + pn.param("odom_frame", odom_frame, "odom"); + pn.param("publish_tf", publish_tf, true); + + pn.param("out_pid_debug_enable", out_pid_debug_enable, false); + ROS_INFO("out_pid_debug_enable:%d", out_pid_debug_enable); + + //topic name param + pn.param("cmd_vel_topic", cmd_vel_topic, "cmd_vel"); + pn.param("odom_topic", odom_topic, "odom"); + + pn.param("freq", freq, 1000); +} + +void BaseDriverConfig::SetRobotParameters() +{ +#ifdef USE_DYNAMIC_RECONFIG + static bool flag=true; + if (flag) { + flag = false; + f = boost::bind(&BaseDriverConfig::dynamic_callback, this, _1, _2); + server.setCallback(f); + } +#endif +} + +#ifdef USE_DYNAMIC_RECONFIG +void BaseDriverConfig::dynamic_callback(pibot_bringup::pibot_parameterConfig &config, uint32_t level) +{ + if (set_flag) { + set_flag = false; + config.wheel_diameter = rp->wheel_diameter; + config.wheel_track = rp->wheel_track; + config.do_pid_interval = rp->do_pid_interval; + config.encoder_resolution = rp->encoder_resolution; + config.kp = rp->kp; + config.ki = rp->ki; + config.kd = rp->kd; + config.ko = rp->ko; + config.cmd_last_time = rp->cmd_last_time; + config.max_v_liner_x = rp->max_v_liner_x; + config.max_v_liner_y = rp->max_v_liner_y; + config.max_v_angular_z = rp->max_v_angular_z; + config.imu_type = rp->imu_type; + config.motor_ratio = rp->motor_ratio; + config.model_type = rp->model_type; + + config.motor1_exchange_flag = (~rp->motor_nonexchange_flag & MOTOR_ENCODER_1_FLAG); + config.motor2_exchange_flag = (~rp->motor_nonexchange_flag & MOTOR_ENCODER_2_FLAG)>>1; + config.motor3_exchange_flag = (~rp->motor_nonexchange_flag & MOTOR_ENCODER_3_FLAG)>>2; + config.motor4_exchange_flag = (~rp->motor_nonexchange_flag & MOTOR_ENCODER_4_FLAG)>>3; + + config.encoder1_exchange_flag = (~rp->encoder_nonexchange_flag & MOTOR_ENCODER_1_FLAG); + config.encoder2_exchange_flag = (~rp->encoder_nonexchange_flag & MOTOR_ENCODER_2_FLAG)>>1; + config.encoder3_exchange_flag = (~rp->encoder_nonexchange_flag & MOTOR_ENCODER_3_FLAG)>>2; + config.encoder4_exchange_flag = (~rp->encoder_nonexchange_flag & MOTOR_ENCODER_4_FLAG)>>3; + + return; + } + + rp->wheel_diameter = config.wheel_diameter; + rp->wheel_track = config.wheel_track; + rp->do_pid_interval = config.do_pid_interval; + rp->encoder_resolution = config.encoder_resolution; + rp->kp = config.kp; + rp->ki = config.ki; + rp->kd = config.kd; + rp->ko = config.ko; + rp->cmd_last_time = config.cmd_last_time; + rp->max_v_liner_x = config.max_v_liner_x; + rp->max_v_liner_y = config.max_v_liner_y; + rp->max_v_angular_z = config.max_v_angular_z; + rp->imu_type = config.imu_type; + rp->motor_ratio = config.motor_ratio; + rp->model_type = config.model_type; + + rp->motor_nonexchange_flag = (!config.motor4_exchange_flag << 3) | + (!config.motor3_exchange_flag << 2) | + (!config.motor2_exchange_flag << 1) | + (!config.motor1_exchange_flag); + rp->encoder_nonexchange_flag = (!config.encoder4_exchange_flag << 3) | + (!config.encoder3_exchange_flag << 2) | + (!config.encoder2_exchange_flag << 1) | + (!config.encoder1_exchange_flag); + Data_holder::dump_params(rp); + + param_update_flag = true; +} + +bool BaseDriverConfig::get_param_update_flag() +{ + bool tmp=param_update_flag; + param_update_flag = false; + + return tmp; +} +#endif diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/src/data_holder.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/src/data_holder.cpp new file mode 100644 index 0000000..9b35349 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/src/data_holder.cpp @@ -0,0 +1,72 @@ +#include "pibot_bringup/data_holder.h" + +#if _DATAHOLDER_IN_DEVICES +#include "board.h" + +void Data_holder::load_parameter() +{ + Board::get()->get_config((unsigned char*)¶meter, sizeof(parameter)); +} + +void Data_holder::save_parameter() +{ + Board::get()->set_config((unsigned char*)¶meter, sizeof(parameter)); +} +#else +#include +#endif + +void Data_holder::dump_params(struct Robot_parameter* params) +{ +#if _DATAHOLDER_IN_DEVICES +#else + std::string model_name = "UNKNOWN"; + if (params->model_type == MODEL_TYPE_2WD_DIFF) { + model_name = "2WD_DIFF"; + } else if (params->model_type == MODEL_TYPE_4WD_DIFF) { + model_name = "4WD_DIFF"; + } else if (params->model_type == MODEL_TYPE_3WD_OMNI) { + model_name = "3WD_OMNI"; + } else if (params->model_type == MODEL_TYPE_4WD_OMNI) { + model_name = "4WD_OMNI"; + } else if (params->model_type == MODEL_TYPE_4WD_MECANUM) { + model_name = "4WD_MECANUM"; + } + std::string imu_name = "UNKNOWN"; + if (params->imu_type == IMU_TYPE_GY65) { + imu_name = "GY65"; + } else if (params->imu_type == IMU_TYPE_GY85) { + imu_name = "GY85"; + } else if (params->imu_type == IMU_TYPE_GY87) { + imu_name = "GY87"; + } + + ROS_INFO("RobotParameters:\n \ + \t\tmodel: %s(%d)\n \ + \t\twheel_diameter: %dmm\n \ + \t\twheel_track: %dmm\n \ + \t\tencoder_resolution: 4*%d\n \ + \t\tmotor_ratio: 1:%d\n\ + \t\tmotor_exchange_flag: %d\n\ + \t\tencoder_exchange_flag: %d\n\ + \t\tpid interval: %dms\n\ + \t\tkp: %d/%d ki: %d/%d kd: %d/%d\n\ + \t\tcmd hold time: %dms\n\ + \t\tvelocity limit, x: %0.2fm/s y: %0.2fm/s a: %0.2frad/s\n\ + \t\timu: %s(%d)\n \ + " + , model_name.c_str(), params->model_type + , params->wheel_diameter + , params->wheel_track + , params->encoder_resolution/4 + , params->motor_ratio + , params->motor_nonexchange_flag + , params->encoder_nonexchange_flag + , params->do_pid_interval + , params->kp, params->ko, params->ki, params->ko, params->kd, params->ko + , params->cmd_last_time + , params->max_v_liner_x/100., params->max_v_liner_y/100., params->max_v_angular_z/100. + , imu_name.c_str(), params->imu_type + ); +#endif +} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/src/main.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/src/main.cpp new file mode 100644 index 0000000..b069086 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/src/main.cpp @@ -0,0 +1,13 @@ +#include +#include "pibot_bringup/base_driver.h" + +int main(int argc, char *argv[]) +{ + ros::init(argc, argv, "pibot_driver"); + + BaseDriver::Instance()->work_loop(); + + ros::spin(); + + return 0; +} \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/src/serial_transport.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/src/serial_transport.cpp new file mode 100644 index 0000000..1f32119 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/src/serial_transport.cpp @@ -0,0 +1,131 @@ +#include "serial_transport.h" + +Serial_transport::Serial_transport(std::string port, int32_t baudrate) : + write_buffer_(), + read_buffer_() +{ + params_.serialPort = port; + params_.baudRate = baudrate; + + ios_ = boost::make_shared(); +} + +void Serial_transport::mainRun() +{ + std::cout << "Transport main read/write started" <run(); +} + +void Serial_transport::start_a_read() +{ + boost::mutex::scoped_lock lock(port_mutex_); + + port_->async_read_some(boost::asio::buffer(temp_read_buf_), + boost::bind(&Serial_transport::readHandler, + this, + boost::asio::placeholders::error, + boost::asio::placeholders::bytes_transferred + )); +} + +void Serial_transport::readHandler(const boost::system::error_code &ec, size_t bytesTransferred) +{ + if (ec) { + std::cerr << "Transport Serial read Error "<< std::endl; + return; + } + + boost::mutex::scoped_lock lock(read_mutex_); + Buffer data(temp_read_buf_.begin(), temp_read_buf_.begin() + bytesTransferred); + read_buffer_.push(data); + start_a_read(); +} + +void Serial_transport::start_a_write() +{ + boost::mutex::scoped_lock lock(port_mutex_); + + if (!write_buffer_.empty()) { + boost::asio::async_write(*port_, boost::asio::buffer((write_buffer_.front())), + boost::bind(&Serial_transport::writeHandler, this, boost::asio::placeholders::error)); + write_buffer_.pop(); + } +} + +void Serial_transport::writeHandler(const boost::system::error_code &ec) +{ + if (ec) { + std::cerr << "Transport Serial write Error "<< std::endl; + return; + } + + boost::mutex::scoped_lock lock(write_mutex_); + + if (!write_buffer_.empty()) start_a_write(); +} + +Buffer Serial_transport::read() +{ + boost::mutex::scoped_lock lock(read_mutex_); + + if (!read_buffer_.empty()) { + Buffer data(read_buffer_.front()); + read_buffer_.pop(); + return data; + } + Buffer data; + return data; +} + +void Serial_transport::write(Buffer &data) +{ + boost::mutex::scoped_lock lock(write_mutex_); + + write_buffer_.push(data); + start_a_write(); +} + +bool Serial_transport::init() +{ + try + { + port_ = boost::make_shared(boost::ref(*ios_), params_.serialPort); + port_->set_option(boost::asio::serial_port::baud_rate(params_.baudRate)); + port_->set_option(boost::asio::serial_port::flow_control((boost::asio::serial_port::flow_control::type)params_.flowControl)); + port_->set_option(boost::asio::serial_port::parity((boost::asio::serial_port::parity::type)params_.parity)); + port_->set_option(boost::asio::serial_port::stop_bits((boost::asio::serial_port::stop_bits::type)params_.stopBits)); + port_->set_option(boost::asio::serial_port::character_size(8)); + } + catch(std::exception &e) + { + std::cerr << "Failed to open the serial port " << std::endl; + std::cerr << "Error info is "<< e.what() << std::endl; + return false; + } + + temp_read_buf_.resize(1024, 0); + try + { + thread_ = boost::thread(boost::bind(&Serial_transport::mainRun, this)); + } + catch(std::exception &e) + { + std::cerr << "Transport Serial thread create failed " << std::endl; + std::cerr << "Error Info: " << e.what() <(boost::ref(*ios_), boost::posix_time::seconds(10)); + + return true; +} + +void Serial_transport::set_timeout(int t) +{ + timer_->expires_from_now(boost::posix_time::millisec(t)); +} + +bool Serial_transport::is_timeout() +{ + return timer_->expires_from_now().is_negative(); +} \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/src/serial_transport2.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/src/serial_transport2.cpp new file mode 100644 index 0000000..104e3e8 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_bringup/src/serial_transport2.cpp @@ -0,0 +1,143 @@ +#include "serial_transport2.h" +#include + +Serial_transport2::Serial_transport2(std::string port, int32_t baudrate) : m_port(port), m_baudrate(baudrate), m_timeout_us(150*1000) +{ + m_timeoutFlag = false; +} + +Serial_transport2::~Serial_transport2() +{ + if (m_fd) + close(m_fd); +} + +bool Serial_transport2::init() +{ + ROS_INFO("open %s %d", m_port.c_str(), m_baudrate); + m_fd = ::open(m_port.c_str(), O_RDWR | O_NDELAY); + if (m_fd < 0) { + ROS_ERROR("open %s err", m_port.c_str()); + return false; + } + + tcflush(m_fd, TCIOFLUSH); + + int n = fcntl(m_fd, F_GETFL, 0); + fcntl(m_fd, F_SETFL, n & ~O_NDELAY); + + struct termios opt; + tcgetattr(m_fd, &opt); + + if (m_baudrate == 921600) { + cfsetispeed(&opt, B921600); + cfsetospeed(&opt, B921600); + } else if (m_baudrate == 1500000) { + cfsetispeed(&opt, B1500000); + cfsetospeed(&opt, B1500000); + } else { //if (m_baudrate == 115200) + cfsetispeed(&opt, B115200); + cfsetospeed(&opt, B115200); + } + + opt.c_cflag &= ~CSIZE | CS8; + opt.c_cflag |= (CLOCAL | CREAD); + + opt.c_cflag &= ~(PARENB|PARODD); + opt.c_cflag &= ~CSTOPB; + + opt.c_cflag &= ~CRTSCTS; + + opt.c_iflag = IGNBRK; + opt.c_iflag &= ~(IXON | IXOFF | IXANY); + + opt.c_lflag = 0; + opt.c_oflag = 0; + + opt.c_cc[VMIN] = 0; + opt.c_cc[VTIME] = 0; + + if((tcsetattr(m_fd, TCSANOW, &opt)) != 0) + return false; + + int mcs = 0; + ioctl(m_fd, TIOCMGET, &mcs); + mcs |= TIOCM_RTS; + ioctl(m_fd, TIOCMGET, &mcs); + + if (tcgetattr(m_fd, &opt)!=0) { + ROS_ERROR("tcsetattr failed"); + } + + opt.c_cflag &= ~CRTSCTS; + + if (tcsetattr(m_fd, TCSANOW, &opt)!=0) { + ROS_ERROR("tcsetattr failed"); + } + + return true; +} + +Buffer Serial_transport2::read() +{ + Buffer data; + + fd_set rfds; + FD_ZERO(&rfds); + FD_SET(m_fd, &rfds); + struct timeval tm; + tm.tv_sec = 0; + tm.tv_usec=m_timeout_us; + + int retval = select(m_fd + 1, &rfds, NULL, NULL, &tm); + if (retval == -1 && errno == EINTR){ + ROS_ERROR("select failure"); + return data; + } + if (retval < 0) { + ROS_ERROR("select failure"); + return data; + } + + if (!FD_ISSET(m_fd, &rfds)) { + m_timeoutFlag = true; + return data; + } + + char buffer[256] = {0}; + int len = ::read(m_fd, buffer, sizeof(buffer)); + if (len > 0){ + // printf("recv: "); + for (int i=0;i +#include + +#include "transport.h" + +Simple_dataframe::Simple_dataframe(Transport* _trans): trans(_trans) +{ + recv_state = STATE_RECV_FIX; +} + +Simple_dataframe::~Simple_dataframe() +{ +} + +bool Simple_dataframe::init() +{ + trans->set_timeout(500); + return true; +} + +bool Simple_dataframe::data_recv(unsigned char c) +{ + //printf("%02x ", c); + switch (recv_state) { + case STATE_RECV_FIX: + if (c == FIX_HEAD) { + memset(&active_rx_msg,0, sizeof(active_rx_msg)); + active_rx_msg.head.flag = c; + active_rx_msg.check += c; + + recv_state = STATE_RECV_ID; + } + else + recv_state = STATE_RECV_FIX; + break; + case STATE_RECV_ID: + if (c < ID_MESSGAE_MAX) { + active_rx_msg.head.msg_id = c; + active_rx_msg.check += c; + recv_state = STATE_RECV_LEN; + } + else + recv_state = STATE_RECV_FIX; + break; + case STATE_RECV_LEN: + active_rx_msg.head.length =c; + active_rx_msg.check += c; + if (active_rx_msg.head.length==0) + recv_state = STATE_RECV_CHECK; + else + recv_state = STATE_RECV_DATA; + break; + case STATE_RECV_DATA: + active_rx_msg.data[active_rx_msg.recv_count++] = c; + active_rx_msg.check += c; + if (active_rx_msg.recv_count >=active_rx_msg.head.length) + recv_state = STATE_RECV_CHECK; + break; + case STATE_RECV_CHECK: + recv_state = STATE_RECV_FIX; + if (active_rx_msg.check == c){ + //printf("\r\n"); + return true; + } + break; + default: + recv_state = STATE_RECV_FIX; + } + + return false; +} + +bool Simple_dataframe::data_parse() +{ + MESSAGE_ID id = (MESSAGE_ID)active_rx_msg.head.msg_id; + + //printf("data_parse:id=%d\r\n", id); + + Data_holder* dh = Data_holder::get(); + switch (id) { + case ID_GET_VERSION: + memcpy(&dh->firmware_info, active_rx_msg.data, sizeof(dh->firmware_info)); + break; + case ID_SET_ROBOT_PARAMTER: + break; + case ID_GET_ROBOT_PARAMTER: + memcpy(&dh->parameter, active_rx_msg.data, sizeof(dh->parameter)); + break; + case ID_INIT_ODOM: + break; + case ID_SET_VELOCITY: + break; + case ID_GET_ODOM: + memcpy(&dh->odom, active_rx_msg.data, sizeof(dh->odom)); + break; + case ID_GET_PID_DATA: + memcpy(&dh->pid_data, active_rx_msg.data, sizeof(dh->pid_data)); + break; + case ID_GET_IMU_DATA: + memcpy(&dh->imu_data, active_rx_msg.data, sizeof(dh->imu_data)); + break; + default: + break; + } + + return true; +} + +bool Simple_dataframe::send_message(const MESSAGE_ID id) +{ + Message msg(id); + + send_message(&msg); + + return true; +} + +bool Simple_dataframe::send_message(const MESSAGE_ID id, unsigned char* data, unsigned char len) +{ + Message msg(id, data, len); + + send_message(&msg); + + return true; +} + +bool Simple_dataframe::send_message(Message* msg) +{ + if (trans == 0) + return true; + + Buffer data((unsigned char*)msg, (unsigned char*)msg+sizeof(msg->head)+msg->head.length+1); + trans->write(data); + + return true; +} + +bool Simple_dataframe::interact(const MESSAGE_ID id) +{ + //printf("make command:id=%d\r\n", id); + + Data_holder* dh = Data_holder::get(); + switch (id) { + case ID_GET_VERSION: + send_message(id); + break; + case ID_SET_ROBOT_PARAMTER: + send_message(id, (unsigned char*)&dh->parameter, sizeof(dh->parameter)); + break; + case ID_GET_ROBOT_PARAMTER: + send_message(id); + break; + case ID_INIT_ODOM: + send_message(id); + break; + case ID_SET_VELOCITY: + send_message(id, (unsigned char*)&dh->velocity, sizeof(dh->velocity)); + break; + case ID_GET_ODOM: + send_message(id); + break; + case ID_GET_PID_DATA: + send_message(id); + break; + case ID_GET_IMU_DATA: + send_message(id); + default: + break; + } + + if (!recv_proc()) + return false; + + return true; +} + +bool Simple_dataframe::recv_proc() +{ + int i=0; + trans->set_timeout(150); + bool got=false; + while(true) { + Buffer data = trans->read(); + + for (int i=0;iis_timeout()) { + ROS_WARN("timeout"); + return false; + } + +#ifdef USE_BOOST_SERIAL_TRANSPORT + usleep(1000); +#endif + } + + if (!data_parse()) + return false; + + return true; +} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/CMakeLists.txt new file mode 100644 index 0000000..0cf1b5c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/CMakeLists.txt @@ -0,0 +1,195 @@ +cmake_minimum_required(VERSION 2.8.3) +project(pibot_description) + +## 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 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 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 pibot_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 +# ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/pibot_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(${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/pibot_description.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 +# install(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables and/or libraries for installation +# install(TARGETS ${PROJECT_NAME} ${PROJECT_NAME}_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_pibot_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/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/launch/demo_urdf.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/launch/demo_urdf.launch new file mode 100644 index 0000000..b7d1528 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/launch/demo_urdf.launch @@ -0,0 +1,5 @@ + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/launch/gazebo.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/launch/gazebo.launch new file mode 100644 index 0000000..89fbc55 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/launch/gazebo.launch @@ -0,0 +1,20 @@ + + + + + + \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/manifest.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/manifest.xml new file mode 100644 index 0000000..4c16984 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/manifest.xml @@ -0,0 +1,6 @@ + + pi_bot.SLDASM + + me + BSD + \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/base/apolloX_base.stl b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/base/apolloX_base.stl new file mode 100644 index 0000000..46a3718 Binary files /dev/null and b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/base/apolloX_base.stl differ diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/base/apollo_base.stl b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/base/apollo_base.stl new file mode 100644 index 0000000..e469a00 Binary files /dev/null and b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/base/apollo_base.stl differ diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/base/hades_base.stl b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/base/hades_base.stl new file mode 100644 index 0000000..2088593 Binary files /dev/null and b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/base/hades_base.stl differ diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/base/hera_base.stl b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/base/hera_base.stl new file mode 100644 index 0000000..2088593 Binary files /dev/null and b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/base/hera_base.stl differ diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/base/zeus_base.stl b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/base/zeus_base.stl new file mode 100644 index 0000000..c7f74f6 Binary files /dev/null and b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/base/zeus_base.stl differ diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/sensor/astra.dae b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/sensor/astra.dae new file mode 100644 index 0000000..f0eb549 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/sensor/astra.dae @@ -0,0 +1,168 @@ + + + + + Blender User + Blender 2.90.1 commit date:2020-09-23, commit time:06:43, hash:3e85bb34d0d7 + + 2020-11-26T08:57:10 + 2020-11-26T08:57:10 + + Z_UP + + + + + + + 39.59775 + 1.777778 + 0.1 + 100 + + + + + + 0 + 0 + 10 + + + + + + + + + 1000 1000 1000 + 1 + 0 + 0.00111109 + + + + + 0 + 0 + 1 + 1 + 1 + 1 + 1 + 0 + 0 + 0 + 1000 + 29.99998 + 75 + 0.15 + 0 + 1 + 2 + 0.04999995 + 30.002 + 1 + 3 + 2880 + 3 + 1 + 1 + 0.1 + 0.1 + 1 + + + + + + + + + + + 0 0 0 1 + + + 0.1 0.1 0.1 1 + + + 0.1 0.1 0.1 1 + + + 0.1 0.1 0.1 1 + + + 1.45 + + + + + + + + + + + + + + + + + -0.02999997 -0.02685284 0.007029891 -0.02999997 -0.02099996 0.007040441 -0.02999997 -0.02783882 0.005868256 -0.02999997 -0.02099996 4.06757e-7 -0.02999997 -0.02259588 2.02074e-4 -0.02999997 -0.02460211 0.00104171 -0.02999997 -0.02625387 0.002455651 -0.02999997 -0.02739202 0.004307568 -0.02999997 -0.0278266 0.006249129 -0.02999997 -0.0277006 0.006558299 -0.02999997 -0.02747756 0.006809353 -0.02999997 -0.02784496 0.005911827 -0.02999997 -0.02718394 0.00697273 0.01295745 -0.02968978 0.005864381 0.01295709 -0.02969926 0.006104707 0.01295852 -0.02966588 0.006292939 0.0129612 -0.02960497 0.006457328 0.01296716 -0.02946597 0.006672978 0.01297008 -0.02939951 0.006744027 0.01298379 -0.02908086 0.006952404 0.01299995 -0.02870577 0.007026612 0.01407372 -0.02970463 0.005679905 0.01690357 -0.02895033 0.003596127 0.0165385 -0.02887332 0.003292918 0.01720988 -0.02837783 0.002719104 0.01681822 -0.02827733 0.002462625 0.01734602 -0.02766072 0.001925945 0.01690274 -0.02790033 0.002050399 0.01695781 -0.02740967 0.001602768 0.01697582 -0.02687615 0.001202702 0.01744019 -0.02827972 0.004270315 0.01741123 -0.02807933 0.004382252 0.01686805 -0.02862852 0.005153656 0.01709711 -0.0282936 0.004894077 0.01790511 -0.02729004 0.002405822 0.01795113 -0.02715277 0.002560913 0.01779031 -0.02778035 0.003377616 0.01769602 -0.02671796 0.00143665 0.01791191 -0.0265432 0.001695215 0.01769095 -0.02752113 0.002125501 0.0178256 -0.02748805 0.003338396 0.01786845 -0.02736842 0.003168821 0.01795256 -0.02700901 0.002716898 0.01407426 -0.02915018 0.006812512 0.0150215 -0.0294829 0.006183564 0.01593184 -0.02939265 0.005582094 0.01601314 -0.02923595 0.005727708 0.01668703 -0.02917367 0.004782855 0.01678657 -0.02902179 0.004927098 0.01723426 -0.02878612 0.003867447 0.01734733 -0.02864456 0.004009604 0.01755684 -0.02822417 0.002950131 0.01767873 -0.02809846 0.003088593 0.01775747 -0.0279479 0.003233492 0.01741683 -0.02847254 0.004146218 0.01684767 -0.02883654 0.005052745 0.01608604 -0.02883327 0.005927205 0.01606523 -0.02904593 0.005844533 0.01512086 -0.02913588 0.006442785 0.01459765 -0.0287224 0.006765007 0.01513969 -0.02870339 0.006544828 0.01392996 -0.02969217 0.006175875 0.01401507 -0.02949398 0.006553709 0.01466977 -0.029675 0.005414724 0.01524627 -0.02959728 0.005025625 0.0156998 -0.02957642 0.005236029 0.01541811 -0.02955937 0.004878818 0.01639592 -0.02934771 0.004470169 0.01577889 -0.0294454 0.004510283 0.01593148 -0.02937781 0.00432384 0.0160371 -0.02932184 0.004181802 0.01649522 -0.02893096 0.003389716 0.01799994 -0.02631622 0.002030849 0.0171554 -0.02686935 0.001212775 0.01736557 -0.02683728 0.001260161 0.01760959 -0.02676022 0.001374125 0.01486033 -0.02967518 0.00581634 0.01582539 -0.02950811 0.005415141 0.01655423 -0.02928423 0.004627645 0.01708346 -0.02888977 0.003727018 0.0173977 -0.02831882 0.002824842 0.01653593 -0.02850967 0.005562901 0.01601392 -0.02861827 0.006016433 0.0178492 0.02751189 0.003346204 0.01782399 0.02757477 0.00344187 0.01299995 0.02871823 0.007129669 0.0137571 0.02873754 0.007070779 0.01408797 0.028741 0.007008135 0.01431894 0.02874124 0.006950736 0.01525807 0.02871716 0.0065912 0.01587647 0.02866411 0.006217658 0.01653426 0.02854585 0.005663871 0.0173729 0.02816849 0.004554569 0.01709568 0.02834326 0.004997074 0.01799994 0.02645224 0.002125561 0.01795226 0.02712464 0.002824544 0.01427143 0.02972221 0.005724489 0.01295739 0.0297085 0.005984604 0.01295715 0.02971285 0.00623399 0.01567971 0.02961015 0.005365669 0.01540189 0.02959942 0.005010128 0.01484465 0.0296961 0.005942285 0.01392203 0.02970689 0.006290793 0.01295864 0.02967816 0.006409406 0.01590919 0.02942287 0.005707263 0.01599019 0.02926558 0.005850076 0.01676583 0.02907204 0.005055904 0.0151031 0.0291537 0.006558477 0.01500368 0.02950054 0.0063048 0.01406532 0.02916216 0.00691694 0.01400649 0.02950567 0.006662845 0.01298469 0.02907341 0.007064759 0.0129711 0.0293889 0.006872057 0.01296734 0.02947521 0.006784021 0.01296162 0.02960908 0.006584703 0.01781767 0.02754205 0.002373874 0.01791954 0.02667814 0.00181055 0.01769769 0.02686929 0.001544058 0.01666659 0.02922517 0.004914462 0.01733088 0.02871996 0.004150152 0.01721799 0.02886337 0.004010856 0.01766961 0.02819991 0.003223419 0.01754772 0.02832812 0.003087639 0.01769113 0.02765148 0.00224334 0.01736557 0.0269944 0.001369535 0.01795119 0.02727246 0.002671241 0.01790535 0.02741366 0.002518773 0.01774853 0.02804636 0.003364801 0.01778173 0.02787566 0.003504753 0.0174008 0.02854597 0.004282891 0.01742511 0.02835118 0.004402399 0.01682722 0.02888602 0.005178511 0.01684838 0.02867752 0.005276381 0.01604264 0.02907568 0.0059641 0.01606452 0.0288636 0.006044209 0.01697486 0.02703481 0.001313209 0.01734566 0.02779525 0.002047419 0.01696151 0.02748495 0.001663327 0.01692074 0.02790224 0.002049267 0.0168333 0.02832037 0.002511143 0.01720154 0.02848541 0.002858817 0.01679629 0.02843886 0.002660036 0.01688915 0.02903103 0.003741681 0.01648378 0.02901428 0.003531992 0.01631247 0.02918732 0.003866255 0.01637756 0.02940267 0.004605531 0.01602208 0.02938145 0.004317522 0.01544433 0.02958965 0.004971146 0.01580375 0.0295397 0.005542755 0.01653468 0.02933728 0.004761457 0.0170679 0.02896887 0.003872156 0.01738888 0.02842485 0.002964019 -0.02999997 0.02771365 0.006657779 -0.02999997 0.02748978 0.006908059 -0.02999997 0.02719557 0.007070302 -0.02999997 0.02686429 0.007126331 -0.02999997 0.02784079 0.006349325 -0.02999997 0.02785634 0.00598073 -0.02999997 0.02261543 2.06911e-4 -0.02999997 0.02099996 4.06757e-7 -0.02999997 0.02099996 0.007115781 -0.02999997 0.02742922 0.004398584 -0.02999997 0.02630054 0.002510905 -0.02999997 0.02464139 0.001066148 -0.03899997 -0.02099996 1.5326e-5 -0.03899997 -0.02099996 0.007040441 -0.03899997 -0.0205366 0 -0.03899997 0.02099996 0.007115781 -0.03899997 0.0205366 0 -0.03899997 0.02099996 1.5326e-5 0.01699995 0.02295035 0 0.01698058 0.02610284 7.50695e-4 0.01698678 0.02509486 3.38977e-4 0.01699328 0.02403575 8.60814e-5 0.01697713 0.02666604 0.001066446 0.01799994 0.02295035 9.99998e-4 0.01793819 0.02295035 6.5388e-4 0.01792144 0.02394032 6.95012e-4 0.01799994 0.02498447 0.001354515 0.01792013 0.02582693 0.001298427 0.01799994 0.02592384 0.001786589 0.01769977 0.02597415 0.001006186 0.01792079 0.02490675 9.24187e-4 0.01799994 0.02398198 0.001088738 0.01770693 0.02295035 2.93068e-4 0.01734608 0.02295035 6.18071e-5 0.0177043 0.02399075 3.73325e-4 0.01737838 0.02402418 1.59922e-4 0.01737385 0.02507257 4.08322e-4 0.01770198 0.02500665 6.135e-4 0.01736956 0.02607089 8.14127e-4 0.01799994 -0.02541244 0.001527011 0.018 -0.02443319 0.001185595 0.01799994 -0.02295035 9.99998e-4 0.01799994 -0.02341288 0.00101757 0.01792019 -0.02570819 0.001240074 0.01792144 -0.02389681 6.88179e-4 0.01770007 -0.02584922 9.4499e-4 0.0173701 -0.02594202 7.50861e-4 0.01697796 -0.02652961 9.83166e-4 0.01698827 -0.02484929 2.64464e-4 0.01737427 -0.02498143 3.79401e-4 0.01770216 -0.02491831 5.85529e-4 0.01770693 -0.02295035 2.93068e-4 0.01793819 -0.02295035 6.5388e-4 0.01792085 -0.02482271 8.97516e-4 0.01770442 -0.02394503 3.6618e-4 0.01737856 -0.02397698 1.52519e-4 0.01734608 -0.02295035 6.18071e-5 0.01699995 -0.02295035 0 0.002499997 0 0 0.002499997 0 0.004999995 0.002165019 0.001249969 0 0.002165019 0.001249969 0.004999995 0.001249969 0.002165019 0 0.001249969 0.002165019 0.004999995 0 0.002499997 0 0 0.002499997 0.004999995 -0.001249969 0.002165019 0 -0.001249969 0.002165019 0.004999995 -0.002165019 0.001249969 0 -0.002165019 0.001249969 0.004999995 -0.002499997 0 0 -0.002499997 0 0.004999995 -0.002165019 -0.001249969 0 -0.002165019 -0.001249969 0.004999995 -0.001249969 -0.002165019 0 -0.001249969 -0.002165019 0.004999995 0 -0.002499997 0 0 -0.002499997 0.004999995 0.001249969 -0.002165019 0 0.001249969 -0.002165019 0.004999995 0.002165019 -0.001249969 0 0.002165019 -0.001249969 0.004999995 -0.03370094 -0.02099996 0.002779364 -0.03349995 -0.02099996 0.003529369 -0.03370094 -0.02099996 0.004279315 -0.03424996 -0.02099996 0.002230286 -0.03499996 -0.02099996 0.002029359 -0.03574997 -0.02099996 0.002230286 -0.03629899 -0.02099996 0.002779364 -0.03649997 -0.02099996 0.00352931 -0.03629899 -0.02099996 0.004279315 -0.03574997 -0.02099996 0.004828393 -0.03499996 -0.02099996 0.00502932 -0.03424996 -0.02099996 0.004828393 -0.03499996 0.02099996 0.00502932 -0.03424996 0.02099996 0.004828393 -0.03574997 0.02099996 0.004828393 -0.03629899 0.02099996 0.004279315 -0.03649997 0.02099996 0.00352931 -0.03629899 0.02099996 0.002779364 -0.03424996 0.02099996 0.002230286 -0.03499996 0.02099996 0.002029359 -0.03574997 0.02099996 0.002230286 -0.03370094 0.02099996 0.002779364 -0.03349995 0.02099996 0.003529369 -0.03370094 0.02099996 0.004279315 -0.02167892 -3.32344e-4 0.03621536 -0.02164101 -7.85276e-4 0.03452545 -0.02067917 -3.32344e-4 0.03623777 -0.02064126 -7.85276e-4 0.03454786 -0.02070462 -0.00361365 0.03737556 -0.02071481 -0.001923322 0.03782838 -0.02068305 -0.003214061 0.0364111 -0.02069216 -0.001340985 0.03681999 -0.0206502 -0.001749992 0.03494733 -0.02171456 -0.001923322 0.03780597 -0.02170437 -0.00361365 0.03735315 -0.02171456 0.002423286 0.03780597 -0.02170437 0.004113674 0.03735315 -0.02071481 0.002423286 0.03782838 -0.02070462 0.004113674 0.03737556 -0.02069216 0.001840949 0.03681999 -0.02068305 0.003714084 0.0364111 -0.02067917 8.32342e-4 0.03623777 -0.0206502 0.002249956 0.03494733 -0.02064126 0.001285254 0.03454786 -0.02167892 8.32342e-4 0.03621536 -0.02164101 0.001285254 0.03452545 -0.02177631 8.32342e-4 0.04056096 -0.02181416 0.001285254 0.04225093 -0.02077656 8.32342e-4 0.04058337 -0.02081441 0.001285254 0.04227328 -0.02076351 0.001840949 0.04000115 -0.02080547 0.002249956 0.04187381 -0.02074086 0.002423286 0.03899276 -0.02077263 0.003714084 0.0404101 -0.02075105 0.004113674 0.03944557 -0.02174061 0.002423286 0.03897035 -0.0217508 0.004113674 0.03942316 -0.02174061 -0.001923322 0.03897035 -0.0217508 -0.00361365 0.03942316 -0.02074086 -0.001923322 0.03899276 -0.02075105 -0.00361365 0.03944557 -0.02081441 -7.85276e-4 0.04227328 -0.02077656 -3.32344e-4 0.04058337 -0.02080547 -0.001749992 0.04187381 -0.02076351 -0.001340985 0.04000115 -0.02077263 -0.003214061 0.0404101 -0.02177631 -3.32344e-4 0.04056096 -0.02181416 -7.85276e-4 0.04225093 -0.0143311 -0.06725001 0.02077448 -0.01333135 -0.06725001 0.02079689 -0.01334613 -0.07142174 0.02145743 -0.01434588 -0.07142174 0.02143502 -0.01338911 -0.07518506 0.02337449 -0.01438885 -0.07518506 0.02335208 -0.01345604 -0.07817173 0.02636039 -0.01445579 -0.07817173 0.02633798 -0.01354032 -0.08008927 0.03012281 -0.01454007 -0.08008927 0.0301004 -0.01363378 -0.08074998 0.03429347 -0.01463353 -0.08074998 0.03427106 -0.0137273 -0.08008927 0.03846418 -0.01472705 -0.08008927 0.03844177 -0.01381158 -0.07817173 0.04222661 -0.01481133 -0.07817173 0.0422042 -0.01387852 -0.07518506 0.0452125 -0.01487827 -0.07518506 0.04519009 -0.01392149 -0.07142174 0.04712951 -0.01492124 -0.07142174 0.0471071 -0.01393628 -0.06725001 0.04779011 -0.01493602 -0.06725001 0.04776769 -0.0143311 0.06774997 0.02077448 -0.01333135 0.06774997 0.02079689 -0.01493602 0.06774997 0.04776769 -0.01393628 0.06774997 0.04779011 -0.01392149 0.0719217 0.04712951 -0.01492124 0.0719217 0.0471071 -0.01387852 0.07568508 0.0452125 -0.01487827 0.07568508 0.04519009 -0.01381158 0.07867169 0.04222661 -0.01481133 0.07867169 0.0422042 -0.0137273 0.08058923 0.03846418 -0.01472705 0.08058923 0.03844177 -0.01363378 0.08124995 0.03429347 -0.01463353 0.08124995 0.03427106 -0.01354032 0.08058923 0.03012281 -0.01454007 0.08058923 0.0301004 -0.01345604 0.07867169 0.02636039 -0.01445579 0.07867169 0.02633798 -0.01338911 0.07568508 0.02337449 -0.01438885 0.07568508 0.02335208 -0.01334613 0.0719217 0.02145743 -0.01434588 0.0719217 0.02143502 -0.01491767 -0.06839126 0.04694867 -0.01490283 -0.07145512 0.04628562 -0.01487165 -0.07426404 0.04489421 -0.01482605 -0.07664775 0.04285889 -0.01476871 -0.07846176 0.04030287 -0.01470327 -0.0795961 0.03738123 -0.01463353 -0.07998204 0.03427106 -0.01456385 -0.0795961 0.03116089 -0.01449835 -0.07846176 0.0282393 -0.01444107 -0.07664775 0.02568328 -0.01439547 -0.07426404 0.0236479 -0.0143643 -0.07145512 0.02225655 -0.01444107 0.07714772 0.02568328 -0.01449835 0.07896178 0.0282393 -0.01456385 0.08009612 0.03116089 -0.01463353 0.080482 0.03427106 -0.01470327 0.08009612 0.03738123 -0.01476871 0.07896178 0.04030287 -0.01482605 0.07714772 0.04285889 -0.01487165 0.07476401 0.04489421 -0.01490283 0.07195508 0.04628562 -0.01434946 0.06889128 0.02159345 -0.0143643 0.07195508 0.02225655 -0.01439547 0.07476401 0.0236479 -0.01491767 0.06889128 0.04694867 -0.01491886 0.06774997 0.04699993 -0.01491886 -0.06725001 0.04699993 -0.01434946 -0.06839126 0.02159345 -0.01434826 -0.06725001 0.02154225 -0.01434826 0.06774997 0.02154225 -0.01412856 0.06774997 0.04592812 -0.01414018 0.06774997 0.04594111 -0.01413917 0.06879484 0.0458942 -0.01386886 0.06881362 0.02246701 -0.01361894 0.06879484 0.02268177 -0.01363253 0.07159972 0.02328878 -0.01388275 0.0716691 0.02308493 -0.01366108 0.07417124 0.02456259 -0.01391178 0.07428693 0.02438169 -0.01370286 0.07635354 0.02642595 -0.01395434 0.07650852 0.02627861 -0.01375526 0.07801425 0.02876591 -0.01400768 0.07819914 0.02866077 -0.01381522 0.07905274 0.03144067 -0.01406872 0.07925635 0.03138369 -0.01387906 0.07940602 0.03428798 -0.01413369 0.07961601 0.03428226 -0.01394283 0.07905274 0.0371353 -0.01419866 0.07925635 0.0371809 -0.01400279 0.07801425 0.03981006 -0.01425969 0.07819914 0.03990381 -0.01405525 0.07635354 0.04215002 -0.01431304 0.07650852 0.04228591 -0.01409703 0.07417124 0.04401338 -0.01435559 0.07428693 0.04418289 -0.01412552 0.07159972 0.04528719 -0.01438462 0.0716691 0.04547959 -0.01439851 0.06881362 0.04609757 -0.01439958 0.06774997 0.04614531 -0.01394206 0.06774997 0.04561501 -0.01394826 0.06774997 0.04563128 -0.01394104 0.06876522 0.04556941 -0.01387929 0.06873601 0.04524648 -0.01388025 0.06774997 0.0452907 -0.01392781 0.07149058 0.04497963 -0.01386642 0.07138305 0.04467362 -0.01390004 0.07398921 0.04374194 -0.01383948 0.07380986 0.04347151 -0.01385951 0.07610958 0.04193139 -0.01380008 0.07586926 0.04171299 -0.01380854 0.0777232 0.03965777 -0.01375061 0.0774365 0.03950476 -0.01375031 0.07873225 0.03705888 -0.01369404 0.07841658 0.03698056 -0.01368826 0.07907557 0.03429228 -0.01363378 0.07874995 0.03429347 -0.01362627 0.07873225 0.03152567 -0.01357358 0.07841658 0.03160643 -0.01356804 0.0777232 0.02892678 -0.01351702 0.0774365 0.02908223 -0.01351708 0.07610958 0.02665317 -0.01346755 0.07586926 0.026874 -0.01347649 0.07398921 0.02484261 -0.01342809 0.07380986 0.02511548 -0.01344877 0.07149058 0.02360492 -0.01340115 0.07138305 0.02391338 -0.01343554 0.06876522 0.02301514 -0.01338833 0.06873601 0.02334052 -0.01343452 0.06774997 0.02296954 -0.01338732 0.06774997 0.02329623 -0.01386779 0.06774997 0.02241927 -0.01361787 0.06774997 0.02263486 -0.0135101 0.06774997 0.02279335 -0.01388025 -0.06725001 0.0452907 -0.01394206 -0.06725001 0.04561501 -0.01394826 -0.06725001 0.04563128 -0.01412856 -0.06725001 0.04592812 -0.01414018 -0.06725001 0.04594111 -0.01439958 -0.06725001 0.04614531 -0.01394104 -0.06826519 0.04556941 -0.0135101 -0.06725001 0.02279335 -0.01361787 -0.06725001 0.02263486 -0.01361894 -0.06829482 0.02268177 -0.01439851 -0.06831365 0.04609757 -0.01413917 -0.06829482 0.0458942 -0.01412552 -0.07109975 0.04528719 -0.01438462 -0.07116907 0.04547959 -0.01409703 -0.07367128 0.04401338 -0.01435559 -0.07378691 0.04418289 -0.01405525 -0.07585352 0.04215002 -0.01431304 -0.07600849 0.04228591 -0.01400279 -0.07751423 0.03981006 -0.01425969 -0.07769912 0.03990381 -0.01394283 -0.07855272 0.0371353 -0.01419866 -0.07875633 0.0371809 -0.01387906 -0.07890605 0.03428798 -0.01413369 -0.07911598 0.03428226 -0.01381522 -0.07855272 0.03144067 -0.01406872 -0.07875633 0.03138369 -0.01375526 -0.07751423 0.02876591 -0.01400768 -0.07769912 0.02866077 -0.01370286 -0.07585352 0.02642595 -0.01395434 -0.07600849 0.02627861 -0.01366108 -0.07367128 0.02456259 -0.01391178 -0.07378691 0.02438169 -0.01363253 -0.07109975 0.02328878 -0.01388275 -0.07116907 0.02308493 -0.01386886 -0.06831365 0.02246701 -0.01386779 -0.06725001 0.02241927 -0.01343554 -0.06826519 0.02301514 -0.01343452 -0.06725001 0.02296954 -0.01338833 -0.06823599 0.02334052 -0.01338732 -0.06725001 0.02329623 -0.01344877 -0.07099056 0.02360492 -0.01340115 -0.07088303 0.02391338 -0.01347649 -0.07348918 0.02484261 -0.01342809 -0.07330983 0.02511548 -0.01351708 -0.07560962 0.02665317 -0.01346755 -0.07536929 0.026874 -0.01356804 -0.07722324 0.02892678 -0.01351702 -0.07693654 0.02908223 -0.01362627 -0.07823228 0.03152567 -0.01357358 -0.07791656 0.03160643 -0.01368826 -0.07857555 0.03429228 -0.01363378 -0.07824999 0.03429347 -0.01375031 -0.07823228 0.03705888 -0.01369404 -0.07791656 0.03698056 -0.01380854 -0.07722324 0.03965777 -0.01375061 -0.07693654 0.03950476 -0.01385951 -0.07560962 0.04193139 -0.01380008 -0.07536929 0.04171299 -0.01390004 -0.07348918 0.04374194 -0.01383948 -0.07330983 0.04347151 -0.01392781 -0.07099056 0.04497963 -0.01386642 -0.07088303 0.04467362 -0.01387929 -0.06823599 0.04524648 -0.01477366 -0.06725001 0.04650306 -0.01465892 -0.06725001 0.04634952 -0.01465779 -0.06833249 0.04630094 -0.01485705 -0.06725001 0.04667568 -0.01485598 -0.06836211 0.04662573 -0.01484149 -0.07134759 0.04597961 -0.01481109 -0.07408469 0.04462385 -0.01476663 -0.07640743 0.0426405 -0.01471084 -0.07817506 0.04014986 -0.014647 -0.07928043 0.03730297 -0.01457911 -0.07965648 0.03427231 -0.01451116 -0.07928043 0.03124165 -0.01444739 -0.07817506 0.02839475 -0.01439154 -0.07640743 0.02590411 -0.01434707 -0.07408469 0.02392077 -0.01431673 -0.07134759 0.02256494 -0.01430225 -0.06836211 0.02191889 -0.01430112 -0.06725001 0.02186894 -0.01429563 -0.06725001 0.02188551 -0.0141288 -0.06725001 0.02219009 -0.01411777 -0.06725001 0.02220362 -0.01411885 -0.06833249 0.0222522 -0.01413291 -0.07123845 0.02288109 -0.01416254 -0.0739026 0.02420079 -0.01420581 -0.07616353 0.02613133 -0.01426011 -0.07788407 0.02855557 -0.01432222 -0.07895994 0.03132665 -0.01438832 -0.07932597 0.0342766 -0.01445442 -0.07895994 0.03722649 -0.01451653 -0.07788407 0.03999757 -0.01457089 -0.07616353 0.04242187 -0.01461416 -0.0739026 0.04435235 -0.01464372 -0.07123845 0.04567205 -0.01485705 0.06774997 0.04667568 -0.01477366 0.06774997 0.04650306 -0.01465892 0.06774997 0.04634952 -0.01465779 0.06883245 0.04630094 -0.01464372 0.07173842 0.04567205 -0.01461416 0.07440263 0.04435235 -0.01457089 0.07666349 0.04242187 -0.01451653 0.07838404 0.03999757 -0.01445442 0.07945996 0.03722649 -0.01438832 0.07982599 0.0342766 -0.01432222 0.07945996 0.03132665 -0.01426011 0.07838404 0.02855557 -0.01420581 0.07666349 0.02613133 -0.01416254 0.07440263 0.02420079 -0.01413291 0.07173842 0.02288109 -0.01411885 0.06883245 0.0222522 -0.01411777 0.06774997 0.02220362 -0.0141288 0.06774997 0.02219009 -0.01429563 0.06774997 0.02188551 -0.01430112 0.06774997 0.02186894 -0.01430225 0.06886208 0.02191889 -0.01431673 0.07184755 0.02256494 -0.01434707 0.07458466 0.02392077 -0.01439154 0.07690745 0.02590411 -0.01444739 0.07867509 0.02839475 -0.01451116 0.07978039 0.03124165 -0.01457911 0.08015644 0.03427231 -0.014647 0.07978039 0.03730297 -0.01471084 0.07867509 0.04014986 -0.01476663 0.07690745 0.0426405 -0.01481109 0.07458466 0.04462385 -0.01484149 0.07184755 0.04597961 -0.01485598 0.06886208 0.04662573 -0.01363492 0.00227499 0.03434348 -0.01353496 0.00227499 0.03434574 -0.01364761 0.004387497 0.03490936 -0.01354765 0.004387497 0.03491163 -0.01368224 0.00593394 0.03645545 -0.01358228 0.00593394 0.03645771 -0.01372957 0.006499946 0.03856742 -0.01362961 0.006499946 0.03856968 -0.01377695 0.00593394 0.04067939 -0.01367694 0.00593394 0.0406816 -0.01381158 0.004387497 0.04222548 -0.01371163 0.004387497 0.04222768 -0.01382428 0.00227499 0.04279136 -0.01372426 0.00227499 0.04279357 -0.01367163 -0.07517284 0.03598058 -0.01369929 -0.07393747 0.03721559 -0.01370942 -0.07225 0.03766763 -0.01369929 -0.07056248 0.03721559 -0.01356834 -0.07393747 0.03137141 -0.01359599 -0.07517284 0.03260642 -0.01363378 -0.075625 0.03429347 -0.01359599 0.0756728 0.03260642 -0.01363378 0.07612496 0.03429347 -0.01382428 -0.001774966 0.04279136 -0.01364761 -0.003887474 0.03490936 -0.01356834 -0.07056248 0.03137141 -0.01359599 -0.06932717 0.03260642 -0.01363378 -0.06887495 0.03429347 -0.01368224 -0.005433917 0.03645545 -0.01372957 -0.005999982 0.03856742 -0.01359599 0.06982713 0.03260642 -0.01356834 0.0710625 0.03137141 -0.01367163 0.0756728 0.03598058 -0.01369929 0.07443749 0.03721559 -0.01381158 -0.003887474 0.04222548 -0.01377695 -0.005433917 0.04067939 -0.01367163 -0.06932717 0.03598058 -0.01363492 -0.001774966 0.03434348 -0.0135582 0.07274997 0.03091931 -0.01356834 0.07443749 0.03137141 -0.0135582 -0.07225 0.03091931 -0.01370942 0.07274997 0.03766763 -0.01369929 0.0710625 0.03721559 -0.01367163 0.06982713 0.03598058 -0.01363378 0.06937497 0.03429347 -0.01372426 -0.001774966 0.04279357 -0.01371163 -0.003887474 0.04222768 -0.01367694 -0.005433917 0.0406816 -0.01362961 -0.005999982 0.03856968 -0.01358228 -0.005433917 0.03645771 -0.01354765 -0.003887474 0.03491163 -0.01353496 -0.001774966 0.03434574 -0.01358479 0.003714084 0.03657019 -0.01355201 0.002249956 0.03510642 -0.01354002 2.49999e-4 0.03457069 -0.01355201 -0.001749992 0.03510642 -0.01358479 -0.003214061 0.03657019 -0.01367443 -0.003214061 0.04056918 -0.01370722 -0.001749992 0.04203289 -0.01371926 2.49999e-4 0.04256868 -0.01370722 0.002249956 0.04203289 -0.01367443 0.003714084 0.04056918 -0.01362961 -0.003749966 0.03856968 -0.01362961 0.004249989 0.03856968 -0.02312725 -0.003749966 0.03835678 -0.02310729 -0.003649652 0.03746694 -0.02168279 -0.003214061 0.03638869 -0.02308243 -0.003214061 0.03635728 -0.02307134 -0.002877295 0.03586345 -0.02164995 -0.001749992 0.03492492 -0.02303761 2.49999e-4 0.03435778 -0.02304649 -0.001485526 0.03475385 -0.02304965 -0.001749992 0.03489357 -0.02304649 0.00198549 0.03475385 -0.02164995 0.002249956 0.03492492 -0.02304965 0.002249956 0.03489357 -0.02307134 0.003377318 0.03586345 -0.02168279 0.003714084 0.03638869 -0.02308243 0.003714084 0.03635728 -0.02310729 0.004149675 0.03746694 -0.02312725 0.004249989 0.03835678 -0.02314716 0.004149675 0.03924667 -0.02177238 0.003714084 0.04038769 -0.02317208 0.003714084 0.04035627 -0.0231831 0.003377318 0.04085016 -0.02180522 0.002249956 0.0418514 -0.02321684 2.49999e-4 0.04235577 -0.02320796 0.00198549 0.04195976 -0.02320486 0.002249956 0.04182004 -0.02320796 -0.001485526 0.04195976 -0.02180522 -0.001749992 0.0418514 -0.02320486 -0.001749992 0.04182004 -0.0231831 -0.002877295 0.04085016 -0.02177238 -0.003214061 0.04038769 -0.02317208 -0.003214061 0.04035627 -0.02314716 -0.003649652 0.03924667 -0.02367854 2.49999e-4 0.04201841 -0.02369779 -0.001268565 0.04149818 -0.02367037 -0.001343667 0.04165476 -0.02367603 -0.002486407 0.04052728 -0.02364754 -0.00262171 0.04063582 -0.02364456 -0.003162205 0.03912425 -0.02361452 -0.003330945 0.03916341 -0.02360963 -0.003162205 0.03756695 -0.02357792 -0.003330945 0.03752917 -0.02357822 -0.002486407 0.03616392 -0.0235449 -0.00262171 0.03605675 -0.02355647 -0.001268565 0.03519302 -0.02352207 -0.001343667 0.03503781 -0.02354872 2.49999e-4 0.03484648 -0.02351391 2.49999e-4 0.03467416 -0.02355647 0.001768589 0.03519302 -0.02352207 0.001843631 0.03503781 -0.02357822 0.002986371 0.03616392 -0.0235449 0.003121674 0.03605675 -0.02360963 0.003662228 0.03756695 -0.02357792 0.003830909 0.03752917 -0.02364456 0.003662228 0.03912425 -0.02361452 0.003830909 0.03916341 -0.02367603 0.002986371 0.04052728 -0.02364754 0.003121674 0.04063582 -0.02369779 0.001768589 0.04149818 -0.02367037 0.001843631 0.04165476 -0.02370554 2.49999e-4 0.04184472 -0.02338039 -0.001472115 0.04192805 -0.02335572 -0.002853155 0.04082697 -0.02332001 -0.003619551 0.03923588 -0.02328044 -0.003619551 0.03746992 -0.02324479 -0.002853155 0.03587883 -0.02322012 -0.001472115 0.03477782 -0.0232113 2.49999e-4 0.03438484 -0.02322012 0.001972079 0.03477782 -0.02324479 0.003353118 0.03587883 -0.02332001 0.004119575 0.03923588 -0.02328044 0.004119575 0.03746992 -0.02335572 0.003353118 0.04082697 -0.02338916 2.49999e-4 0.04232102 -0.02338039 0.001972079 0.04192805 -0.02356708 2.49999e-4 0.04220145 -0.02355849 -0.001421988 0.04181993 -0.02353453 -0.002762794 0.04075092 -0.0234999 -0.003506898 0.03920614 -0.02346152 -0.003506898 0.03749161 -0.02342689 -0.002762794 0.03594684 -0.02340292 -0.001421988 0.03487783 -0.02339434 2.49999e-4 0.0344963 -0.02340292 0.001921951 0.03487783 -0.02342689 0.003262817 0.03594684 -0.02346152 0.004006922 0.03749161 -0.0234999 0.004006922 0.03920614 -0.02353453 0.003262817 0.04075092 -0.02355849 0.001921951 0.04181993 -0.05364477 -0.001698553 0.03879815 -0.05366325 -8.74999e-4 0.03962147 -0.05361956 2.49999e-4 0.03767341 -0.05366998 2.49999e-4 0.03992283 -0.05366325 0.001374959 0.03962147 -0.05357593 -8.74999e-4 0.03572535 -0.05359435 -0.001698553 0.03654867 -0.05361956 -0.001999974 0.03767341 -0.05359435 0.002198517 0.03654867 -0.05357593 0.001374959 0.03572535 -0.05356919 2.49999e-4 0.03542399 -0.05364477 0.002198517 0.03879815 -0.05361956 0.002499997 0.03767341 -0.02367079 0.001374959 0.04029369 -0.02365231 0.002198517 0.03947031 -0.0236271 0.002499997 0.03834557 -0.02360188 0.002198517 0.03722089 -0.02358347 0.001374959 0.03639751 -0.02357667 2.49999e-4 0.03609615 -0.02358347 -8.74999e-4 0.03639751 -0.02360188 -0.001698553 0.03722089 -0.0236271 -0.001999974 0.03834557 -0.02365231 -0.001698553 0.03947031 -0.02367079 -8.74999e-4 0.04029369 -0.02367752 2.49999e-4 0.04059505 0.02466481 0.06774997 0.02382344 0.02460306 0.06774997 0.02414768 0.02460306 0.05274999 0.02414768 0.0247482 0.06774997 0.02365082 0.02460306 0.02374994 0.02414768 0.02460306 -0.008374989 0.02414768 0.02460306 -0.05224996 0.02414768 0.02460306 -0.06725001 0.02414768 0.02466481 -0.06725001 0.02382344 0.02460306 -0.02637499 0.02414768 0.02512234 -0.06725001 0.02329307 0.02512234 0.06774997 0.02329307 0.024863 -0.06725001 0.02349728 0.024863 0.06774997 0.02349728 0.0247482 -0.06725001 0.02365082 0.02423286 -0.06725001 0.04664504 0.02434068 -0.06725001 0.04680353 0.0243417 -0.06829482 0.04675662 0.02512127 -0.06831365 0.02334082 0.02486193 -0.06829482 0.02354419 0.02484834 -0.07109975 0.0241512 0.02510744 -0.07116907 0.0239588 0.02481979 -0.07367128 0.02542501 0.02507835 -0.07378691 0.02525556 0.024778 -0.07585352 0.02728837 0.02503585 -0.07600849 0.02715247 0.02472555 -0.07751423 0.02962839 0.02498245 -0.07769912 0.02953457 0.02466565 -0.07855272 0.03230309 0.02492141 -0.07875633 0.03225749 0.02460181 -0.07890605 0.0351504 0.02485644 -0.07911598 0.03515613 0.02453804 -0.07855272 0.03799772 0.02479153 -0.07875633 0.03805476 0.02447807 -0.07751423 0.04067248 0.0247305 -0.07769912 0.04077768 0.02442562 -0.07585352 0.04301244 0.02467709 -0.07600849 0.04315978 0.02438384 -0.07367128 0.0448758 0.02463459 -0.07378691 0.0450567 0.02435529 -0.07109975 0.04614961 0.02460551 -0.07116907 0.04635345 0.02459168 -0.06831365 0.04697144 0.02459061 -0.06725001 0.04701918 0.02415829 -0.06826519 0.04642331 0.02415728 -0.06725001 0.04646885 0.02411115 -0.06823599 0.04609787 0.02411013 -0.06725001 0.04614216 0.02417153 -0.07099056 0.04583346 0.02412396 -0.07088303 0.04552501 0.0241993 -0.07348918 0.04459577 0.0241509 -0.07330983 0.0443229 0.02423983 -0.07560962 0.04278522 0.0241903 -0.07536929 0.04256445 0.0242908 -0.07722324 0.0405116 0.02423977 -0.07693654 0.04035615 0.02434903 -0.07823228 0.03791272 0.0242964 -0.07791656 0.03783202 0.02441108 -0.07857555 0.03514617 0.0243566 -0.07824999 0.03514492 0.02447307 -0.07823228 0.03237956 0.0244168 -0.07791656 0.03245782 0.0245313 -0.07722324 0.02978068 0.02447336 -0.07693654 0.02993369 0.02458226 -0.07560962 0.02750706 0.0245229 -0.07536929 0.02772539 0.02462285 -0.07348918 0.02569651 0.02456229 -0.07330983 0.02596694 0.02465057 -0.07099056 0.02445882 0.02458924 -0.07088303 0.02476483 0.0246638 -0.06826519 0.02386897 0.02460205 -0.06823599 0.02419197 -0.01432883 0.06774997 0.02067452 -0.01332908 0.06774997 0.02069693 -0.01434373 0.07195264 0.02133995 -0.01334398 0.07195264 0.02136236 -0.01438701 0.07574385 0.0232712 -0.01338726 0.07574385 0.02329361 -0.01445442 0.07875263 0.02627921 -0.01345467 0.07875263 0.02630162 -0.01453942 0.08068436 0.03006953 -0.01353967 0.08068436 0.03009194 -0.01463353 0.08134996 0.03427106 -0.01363378 0.08134996 0.03429347 -0.01472771 0.08068436 0.03847265 -0.01372796 0.08068436 0.03849506 -0.01481264 0.07875263 0.04226297 -0.01381289 0.07875263 0.04228538 -0.01488006 0.07574385 0.04527097 -0.01388031 0.07574385 0.04529339 -0.01492339 0.07195264 0.04720222 -0.01392364 0.07195264 0.04722464 -0.01493829 0.06774997 0.04786765 -0.01393854 0.06774997 0.04789006 -0.01393854 -0.06725001 0.04789006 -0.01493829 -0.06725001 0.04786765 -0.01492339 -0.07145261 0.04720222 -0.01392364 -0.07145261 0.04722464 -0.01488006 -0.07524389 0.04527097 -0.01388031 -0.07524389 0.04529339 -0.01481264 -0.07825261 0.04226297 -0.01381289 -0.07825261 0.04228538 -0.01472771 -0.08018434 0.03847265 -0.01372796 -0.08018434 0.03849506 -0.01463353 -0.08085 0.03427106 -0.01363378 -0.08085 0.03429347 -0.01453942 -0.08018434 0.03006953 -0.01353967 -0.08018434 0.03009194 -0.01445442 -0.07825261 0.02627921 -0.01345467 -0.07825261 0.02630162 -0.01438701 -0.07524389 0.0232712 -0.01338726 -0.07524389 0.02329361 -0.01434373 -0.07145261 0.02133995 -0.01334398 -0.07145261 0.02136236 -0.01432883 -0.06725001 0.02067452 -0.01332908 -0.06725001 0.02069693 -0.01459997 -0.08174997 0.03277146 -0.01466715 -0.08174997 0.03577071 -0.01459997 0.0826748 0.03277146 -0.01459997 0.08224999 0.03277146 -0.01466715 0.08224999 0.03577071 -0.01466715 -0.08217477 0.03577071 -0.01450443 0.08159899 0.02851021 -0.01442003 0.07933372 0.02474373 -0.01435399 0.07607358 0.02179551 -0.0143119 0.07209855 0.01991885 -0.01429748 0.06774997 0.01927483 -0.01429748 -0.06725001 0.01927483 -0.0143119 -0.07159852 0.01991885 -0.01435399 -0.07557362 0.02179551 -0.01442003 -0.07883375 0.02474373 -0.01450443 -0.08109903 0.02851021 -0.01459997 -0.08217477 0.03277146 -0.01466715 0.0826748 0.03577071 -0.01476269 0.08159899 0.04003196 -0.01484709 0.07933372 0.04379844 -0.01491314 0.07607358 0.04674661 -0.01495522 0.07209855 0.04862332 -0.01496964 0.06774997 0.04926729 -0.01496964 -0.06725001 0.04926729 -0.01495522 -0.07159852 0.04862332 -0.01491314 -0.07557362 0.04674661 -0.01484709 -0.07883375 0.04379844 -0.01476269 -0.08109903 0.04003196 0.02538996 0.08224999 0.03366768 0.02532273 0.08224999 0.03666692 0.02532273 0.0826748 0.03666692 0.02502024 0.06774997 0.05016356 0.02503466 0.07209855 0.04951953 0.02507674 0.07607358 0.04764288 0.02514284 0.07933372 0.04469472 0.02522724 0.08159899 0.04092824 0.02502024 -0.06725001 0.05016356 0.02532273 -0.08217477 0.03666692 0.02522724 -0.08109903 0.04092824 0.02514284 -0.07883375 0.04469472 0.02507674 -0.07557362 0.04764288 0.02503466 -0.07159852 0.04951953 0.02532273 -0.08174997 0.03666692 0.02538996 -0.08174997 0.03366768 0.02538996 -0.08217477 0.03366768 0.02569246 -0.06725001 0.0201711 0.02567797 -0.07159852 0.02081507 0.02563595 -0.07557362 0.02269178 0.02556985 -0.07883375 0.02563995 0.02548545 -0.08109903 0.02940642 0.01069617 0.01274996 0.01983499 0.01339137 0.01274996 0.01713323 0.0107634 0.01274996 0.01683574 0.01326864 0.01274996 0.01663035 0.01119887 0.01274996 0.01534515 0.01341378 0.01274996 0.01613348 0.01232123 0.01274996 0.01427197 0.01378792 0.01274996 0.01577574 0.01382988 0.01274996 0.01390373 0.0142908 0.01274996 0.01565301 0.01482963 0.01274996 0.01392614 0.01478767 0.01274996 0.01579815 0.015123 0.01274996 0.01717203 0.01769447 0.01274996 0.01999187 0.01526814 0.01274996 0.01667517 0.01776164 0.01274996 0.01699262 0.01514542 0.01274996 0.01617228 0.01739346 0.01274996 0.01548397 0.01632022 0.01274996 0.01436156 0.01474887 0.01274996 0.01752978 0.01424598 0.01274996 0.01765251 0.01374912 0.01274996 0.01750737 0.01776164 -0.01224994 0.01699262 0.01769447 -0.01224994 0.01999187 0.01326864 -0.01224994 0.01663035 0.01339137 -0.01224994 0.01713323 0.01069617 -0.01224994 0.01983499 0.01374912 -0.01224994 0.01750737 0.01424598 -0.01224994 0.01765251 0.0107634 -0.01224994 0.01683574 0.01101744 -0.01224994 0.01569312 0.01341378 -0.01224994 0.01613348 0.01168942 -0.01224994 0.01473468 0.01378792 -0.01224994 0.01577574 0.01474887 -0.01224994 0.01752978 0.015123 -0.01224994 0.01717203 0.01526814 -0.01224994 0.01667517 0.01739346 -0.01224994 0.01548397 0.01514542 -0.01224994 0.01617228 0.01632022 -0.01224994 0.01436156 0.01478767 -0.01224994 0.01579815 0.01482963 -0.01224994 0.01392614 0.0142908 -0.01224994 0.01565301 0.01382988 -0.01224994 0.01390373 0.01267701 -0.01224994 0.01410633 0.02569246 0.06774997 0.0201711 0.02538996 0.0826748 0.03366768 0.02548545 0.08159899 0.02940642 0.02556985 0.07933372 0.02563995 0.02563595 0.07607358 0.02269178 0.02567797 0.07209855 0.02081507 0.02550756 0.0794413 0.02841901 0.02520513 0.0794413 0.04191565 0.02530384 0.08104491 0.03751099 0.02540886 0.08104491 0.03282368 0.02520513 -0.07894134 0.04191565 0.02550756 -0.07894134 0.02841901 0.02540886 -0.08054488 0.03282368 0.02530384 -0.08054488 0.03751099 0.02558803 -0.07592761 0.02482831 0.0256406 -0.07186722 0.02248466 0.02565884 -0.06725001 0.02167069 0.02565884 0.06774997 0.02167069 0.0256406 0.07236725 0.02248466 0.02558803 0.07642763 0.02482831 0.0251246 0.07642763 0.04550635 0.02507209 0.07236725 0.04785001 0.02505385 0.06774997 0.04866391 0.02505385 -0.06725001 0.04866391 0.02507209 -0.07186722 0.04785001 0.0251246 -0.07592761 0.04550635 0.02405411 0.06774997 0.04864156 0.02407234 0.07236725 0.0478276 0.02412486 0.07642763 0.04548394 0.02420532 0.0794413 0.04189324 0.02430409 0.08104491 0.03748857 0.02440911 0.08104491 0.03280127 0.02450782 0.0794413 0.0283966 0.02458828 0.07642763 0.0248059 0.02464085 0.07236725 0.02246224 0.02465909 0.06774997 0.02164828 0.02465909 -0.06725001 0.02164828 0.02464085 -0.07186722 0.02246224 0.02458828 -0.07592761 0.0248059 0.02450782 -0.07894134 0.0283966 0.02440911 -0.08054488 0.03280127 0.02430409 -0.08054488 0.03748857 0.02420532 -0.07894134 0.04189324 0.02412486 -0.07592761 0.04548394 0.02407234 -0.07186722 0.0478276 0.02405411 -0.06725001 0.04864156 0.02564162 0.06774997 0.02243846 0.02564162 -0.06725001 0.02243846 0.02464187 0.06774997 0.02241605 0.02464187 -0.06725001 0.02241605 0.02539074 0.0803892 0.03363305 0.02540588 0.08028858 0.03295701 0.02440613 0.08028858 0.0329346 0.02556985 0.07619291 0.02563965 0.02557486 0.07593399 0.02541649 0.02457511 0.07593399 0.02539408 0.02563333 0.07079696 0.02280837 0.02462464 0.07210457 0.0231837 0.02562439 0.07210457 0.02320611 0.02560895 0.07366687 0.02389651 0.02551841 0.07822823 0.02793651 0.02449923 0.07877624 0.02878051 0.02549898 0.07877624 0.02880293 0.0254575 0.07965463 0.03065359 0.02532196 0.0803892 0.03670161 0.02430707 0.08028858 0.03735524 0.02530682 0.08028858 0.03737765 0.0252552 0.07965463 0.03968101 0.02421396 0.07877624 0.04150933 0.02521371 0.07877624 0.04153174 0.02413809 0.07593399 0.04489576 0.02513784 0.07593399 0.04491817 0.02514278 0.07619291 0.04469501 0.02519428 0.07822823 0.04239815 0.02510374 0.07366687 0.04643815 0.0240885 0.07210457 0.04710614 0.02508825 0.07210457 0.04712855 0.02407133 0.06774997 0.04787379 0.02507108 0.06774997 0.0478962 0.02507936 0.07079696 0.04752629 0.02507108 -0.06725001 0.0478962 0.02407133 -0.06725001 0.04787379 0.0240885 -0.0716046 0.04710614 0.02413809 -0.07543396 0.04489576 0.02421396 -0.07827627 0.04150933 0.02430707 -0.07978862 0.03735524 0.02440613 -0.07978862 0.0329346 0.02449923 -0.07827627 0.02878051 0.02457511 -0.07543396 0.02539408 0.02462464 -0.0716046 0.0231837 0.02514278 -0.07569289 0.04469501 0.02513784 -0.07543396 0.04491817 0.02507936 -0.07029694 0.04752629 0.02508825 -0.0716046 0.04712855 0.02510374 -0.07316684 0.04643815 0.02519428 -0.07772827 0.04239815 0.02521371 -0.07827627 0.04153174 0.02540588 -0.07978862 0.03295701 0.02539074 -0.07988917 0.03363305 0.02532196 -0.07988917 0.03670161 0.02530682 -0.07978862 0.03737765 0.0252552 -0.07915467 0.03968101 0.0254575 -0.07915467 0.03065359 0.02549898 -0.07827627 0.02880293 0.02557486 -0.07543396 0.02541649 0.02556985 -0.07569289 0.02563965 0.02551841 -0.07772827 0.02793651 0.02560895 -0.07316684 0.02389651 0.02562439 -0.0716046 0.02320611 0.02563333 -0.07029694 0.02280837 0.02538543 -0.07014316 0.02342706 0.02515512 -0.07925111 0.03370523 0.02485942 -0.07014316 0.04689711 0.02488261 -0.07286816 0.04586392 0.02491968 -0.07526665 0.04420876 0.02496856 -0.07719928 0.04202783 0.0250898 -0.07925111 0.03661894 0.02502638 -0.07855361 0.0394479 0.02521848 -0.07855361 0.03087627 0.0252763 -0.07719928 0.02829635 0.02532517 -0.07526665 0.02611541 0.02536231 -0.07286816 0.02446025 0.0253933 -0.06725001 0.02307587 0.0250265 -0.0702151 0.04719293 0.02505022 -0.07300794 0.04613405 0.02508825 -0.07546609 0.0444377 0.02513837 -0.07744675 0.04220253 0.02519762 -0.07883489 0.03955847 0.02526259 -0.07954967 0.03665906 0.02532953 -0.07954967 0.03367292 0.02539449 -0.07883489 0.03077352 0.02545374 -0.07744675 0.02812939 0.02556562 -0.0702151 0.02313899 0.02554184 -0.07300794 0.02419793 0.02550387 -0.07546609 0.02589422 0.02501845 -0.06725001 0.04755288 0.02485156 -0.06725001 0.0472483 0.02557367 -0.06725001 0.02277904 0.0253933 0.06774997 0.02307587 0.02557367 0.06774997 0.02277904 0.02459168 0.06881362 0.04697144 0.02460551 0.0716691 0.04635345 0.02485942 0.07064312 0.04689711 0.02479153 0.07925635 0.03805476 0.02485644 0.07961601 0.03515613 0.0250898 0.07975107 0.03661894 0.02512127 0.06881362 0.02334082 0.02538543 0.07064312 0.02342706 0.02510744 0.0716691 0.0239588 0.02536231 0.07336813 0.02446025 0.02507835 0.07428693 0.02525556 0.02532517 0.07576662 0.02611541 0.02503585 0.07650852 0.02715247 0.0252763 0.07769924 0.02829635 0.02498245 0.07819914 0.02953457 0.02515512 0.07975107 0.03370523 0.02492141 0.07925635 0.03225749 0.02521848 0.07905364 0.03087627 0.02502638 0.07905364 0.0394479 0.02496856 0.07769924 0.04202783 0.0247305 0.07819914 0.04077768 0.02467709 0.07650852 0.04315978 0.02491968 0.07576662 0.04420876 0.02463459 0.07428693 0.0450567 0.02488261 0.07336813 0.04586392 0.02485156 0.06774997 0.0472483 0.02459061 0.06774997 0.04701918 0.02556562 0.07071512 0.02313899 0.02554184 0.0735079 0.02419793 0.02550387 0.07596611 0.02589422 0.02545374 0.07794678 0.02812939 0.02539449 0.07933485 0.03077352 0.02532953 0.08004969 0.03367292 0.02526259 0.08004969 0.03665906 0.02519762 0.07933485 0.03955847 0.02513837 0.07794678 0.04220253 0.0250265 0.07071512 0.04719293 0.02505022 0.0735079 0.04613405 0.02508825 0.07596611 0.0444377 0.02501845 0.06774997 0.04755288 0.02411013 -0.05224996 0.04614216 0.02411013 -0.02637499 0.04614216 0.02411013 -0.008374989 0.04614216 0.02411013 0.02374994 0.04614216 0.02415728 0.06774997 0.04646885 0.02411013 0.05274999 0.04614216 0.02411013 0.06774997 0.04614216 0.02423286 0.06774997 0.04664504 0.02434068 0.06774997 0.04680353 0.02486193 0.06879484 0.02354419 0.0243417 0.06879484 0.04675662 0.02435529 0.07159972 0.04614961 0.02438384 0.07417124 0.0448758 0.02442562 0.07635354 0.04301244 0.02447807 0.07801425 0.04067248 0.02453804 0.07905274 0.03799772 0.02460181 0.07940602 0.0351504 0.02466565 0.07905274 0.03230309 0.02472555 0.07801425 0.02962839 0.024778 0.07635354 0.02728837 0.02481979 0.07417124 0.02542501 0.02484834 0.07159972 0.0241512 0.0246638 0.06876522 0.02386897 0.02460205 0.06873601 0.02419197 0.02465057 0.07149058 0.02445882 0.02458924 0.07138305 0.02476483 0.02462285 0.07398921 0.02569651 0.02456229 0.07380986 0.02596694 0.02458226 0.07610958 0.02750706 0.0245229 0.07586926 0.02772539 0.0245313 0.0777232 0.02978068 0.02447336 0.0774365 0.02993369 0.02447307 0.07873225 0.03237956 0.0244168 0.07841658 0.03245782 0.02441108 0.07907557 0.03514617 0.0243566 0.07874995 0.03514492 0.02434903 0.07873225 0.03791272 0.0242964 0.07841658 0.03783202 0.0242908 0.0777232 0.0405116 0.02423977 0.0774365 0.04035615 0.02423983 0.07610958 0.04278522 0.0241903 0.07586926 0.04256445 0.0241993 0.07398921 0.04459577 0.0241509 0.07380986 0.0443229 0.02417153 0.07149058 0.04583346 0.02412396 0.07138305 0.04552501 0.02415829 0.06876522 0.04642331 0.02411115 0.06873601 0.04609787 0.02370548 -0.02174997 0.04188203 0.01920658 -0.02174997 0.04178118 0.02371072 -0.02087497 0.04164761 0.01921188 -0.02087497 0.04154682 0.02372509 -0.0202344 0.04100722 0.01922619 -0.0202344 0.04090642 0.0237447 -0.01999998 0.04013246 0.0192458 -0.01999998 0.04003161 0.02376431 -0.0202344 0.0392577 0.01926541 -0.0202344 0.03915685 0.02377867 -0.02087497 0.03861731 0.01927977 -0.02087497 0.03851646 0.02378392 -0.02174997 0.03838288 0.01928502 -0.02174997 0.03828209 0.02377867 -0.02262496 0.03861731 0.01927977 -0.02262496 0.03851646 0.02376431 -0.02326554 0.0392577 0.01926541 -0.02326554 0.03915685 0.0237447 -0.02349996 0.04013246 0.0192458 -0.02349996 0.04003161 0.02372509 -0.02326554 0.04100722 0.01922619 -0.02326554 0.04090642 0.02371072 -0.02262496 0.04164761 0.01921188 -0.02262496 0.04154682 0.02428823 -0.02062499 0.03819561 0.02426975 -0.01980143 0.03901892 0.02424454 -0.01949995 0.04014366 0.02421933 -0.01980143 0.0412684 0.02420091 -0.02062499 0.04209172 0.02419418 -0.02174997 0.04239308 0.02420091 -0.02287495 0.04209172 0.02421933 -0.0236985 0.0412684 0.02424454 -0.02399998 0.04014366 0.02426975 -0.0236985 0.03901892 0.02428823 -0.02287495 0.03819561 0.02429497 -0.02174997 0.03789424 0.02133494 0.012232 0.03607743 0.02131855 0.0115 0.03680932 0.02135735 0.01049995 0.03507769 0.02131253 0.01049995 0.03707718 0.02131855 0.009499967 0.03680932 0.02139616 0.0115 0.03334611 0.02137976 0.012232 0.03407794 0.02135735 0.01249998 0.03507769 0.02137976 0.008767902 0.03407794 0.02139616 0.009499967 0.03334611 0.02140218 0.01049995 0.03307819 0.02133494 0.008767902 0.03607743 0.02135735 0.008499979 0.03507769 0.02181243 0.01049995 0.03708839 0.02181839 0.0115 0.03682053 0.02183479 0.012232 0.03608864 0.0218572 0.01249998 0.03508889 0.02187961 0.012232 0.03408914 0.021896 0.0115 0.03335732 0.02190202 0.01049995 0.03308939 0.021896 0.009499967 0.03335732 0.02187961 0.008767902 0.03408914 0.0218572 0.008499979 0.03508889 0.02183479 0.008767902 0.03608864 0.02181839 0.009499967 0.03682053 0.0218572 0.01424998 0.03508889 0.02181524 0.01374757 0.03696346 0.02178448 0.01237499 0.03833568 0.02177321 0.01049995 0.03883796 0.02178448 0.00862497 0.03833568 0.02181524 0.007252395 0.03696346 0.0218572 0.006749987 0.03508889 0.02189922 0.007252395 0.03321439 0.02192997 0.00862497 0.03184211 0.02194124 0.01049995 0.03133982 0.02192997 0.01237499 0.03184211 0.02189922 0.01374757 0.03321439 0.02227306 0.01049995 0.03884917 0.02228432 0.01237499 0.03834688 0.02231508 0.01374757 0.03697466 0.0223571 0.01424998 0.0351001 0.02239912 0.01374757 0.03322559 0.02242988 0.01237499 0.03185331 0.02244114 0.01049995 0.03135102 0.02242988 0.00862497 0.03185331 0.02239912 0.007252395 0.03322559 0.0223571 0.006749987 0.0351001 0.02231508 0.007252395 0.03697466 0.02228432 0.00862497 0.03834688 0.02226495 0.01287496 0.0392127 0.02225065 0.01049995 0.03984892 0.02226495 0.008124947 0.0392127 0.02230387 0.006386339 0.03747451 0.0223571 0.00574994 0.0351001 0.02241033 0.006386339 0.03272569 0.02244925 0.008124947 0.0309875 0.0224635 0.01049995 0.03035128 0.02244925 0.01287496 0.0309875 0.02241033 0.01461356 0.03272569 0.0223571 0.01524996 0.0351001 0.02230387 0.01461356 0.03747451 0.02275055 0.01049995 0.03986012 0.0227648 0.01287496 0.0392239 0.02280378 0.01461356 0.03748571 0.02285695 0.01524996 0.0351113 0.02291017 0.01461356 0.03273689 0.02294915 0.01287496 0.0309987 0.0229634 0.01049995 0.03036248 0.02294915 0.008124947 0.0309987 0.02291017 0.006386339 0.03273689 0.02285695 0.00574994 0.0351113 0.02280378 0.006386339 0.03748571 0.0227648 0.008124947 0.0392239 0.02285695 0.01624995 0.0351113 0.02279257 0.01547962 0.03798562 0.02274537 0.01337498 0.04008972 0.02272814 0.01049995 0.04085987 0.02274537 0.007624983 0.04008972 0.02279257 0.005520343 0.03798562 0.02285695 0.004749953 0.0351113 0.02292138 0.005520343 0.03223705 0.02296853 0.007624983 0.03013294 0.02298581 0.01049995 0.02936273 0.02296853 0.01337498 0.03013294 0.02292138 0.01547962 0.03223705 0.02322798 0.01049995 0.04087108 0.02324527 0.01337498 0.04010093 0.02329242 0.01547962 0.03799676 0.02335685 0.01624995 0.03512251 0.02342128 0.01547962 0.03224825 0.02346843 0.01337498 0.03014409 0.02348566 0.01049995 0.02937394 0.02346843 0.007624983 0.03014409 0.02342128 0.005520343 0.03224825 0.02335685 0.004749953 0.03512251 0.02329242 0.005520343 0.03799676 0.02324527 0.007624983 0.04010093 0.02332317 0.01708072 0.03662413 0.02326256 0.01577734 0.03933 0.02322059 0.01342868 0.04120254 0.02320557 0.01049995 0.04187083 0.02322059 0.00757128 0.04120254 0.02326256 0.005222618 0.03933 0.02332317 0.003919184 0.03662413 0.02339053 0.003919184 0.03362089 0.02345114 0.005222618 0.03091502 0.02349311 0.00757128 0.02904248 0.02350807 0.01049995 0.02837419 0.02349311 0.01342868 0.02904248 0.02345114 0.01577734 0.03091502 0.02339053 0.01708072 0.03362089 0.02451306 0.01386255 0.02816414 0.02446484 0.01655918 0.03031408 0.02439522 0.01805567 0.0334208 0.02431797 0.01805567 0.03686904 0.0242483 0.01655918 0.03997576 0.02420014 0.01386255 0.0421257 0.02418297 0.01049995 0.04289299 0.02420014 0.007137358 0.0421257 0.0242483 0.004440784 0.03997576 0.02431797 0.00294429 0.03686904 0.02439522 0.00294429 0.0334208 0.02446484 0.004440784 0.03031408 0.02451306 0.007137358 0.02816414 0.02453023 0.01049995 0.02739685 0.02434599 -0.06050938 0.03561729 0.02234649 -0.06050938 0.03557246 0.02234989 -0.06068187 0.03542244 0.02434939 -0.06068187 0.03546726 0.02235454 -0.06077671 0.03521442 0.02435404 -0.06077671 0.03525924 0.02235966 -0.06077671 0.03498578 0.02435916 -0.06077671 0.0350306 0.02236431 -0.06068187 0.03477776 0.02436381 -0.06068187 0.03482258 0.02236765 -0.06050938 0.03462773 0.02436721 -0.06050938 0.03467255 0.0243712 -0.06032246 0.03449356 0.0223717 -0.06032246 0.03444874 0.02437674 -0.0602501 0.03424513 0.02237725 -0.0602501 0.03420031 0.02438241 -0.06031167 0.03399384 0.02238291 -0.06031167 0.03394901 0.02438658 -0.06049072 0.03380697 0.02238708 -0.06049072 0.03376215 0.02438819 -0.06073921 0.03373461 0.02238869 -0.06073921 0.03368979 0.02438682 -0.06099057 0.03379619 0.02238732 -0.06099057 0.03375136 0.02437722 -0.06148326 0.03422456 0.02237772 -0.06148326 0.03417974 0.02436393 -0.06175392 0.03481853 0.02236443 -0.06175392 0.03477376 0.02434927 -0.06175392 0.03547132 0.02234977 -0.06175392 0.03542649 0.02433598 -0.06148326 0.03606528 0.02233648 -0.06148326 0.03602051 0.02432638 -0.06099057 0.03649365 0.02232688 -0.06099057 0.03644883 0.02432501 -0.06073921 0.03655523 0.02232551 -0.06073921 0.0365104 0.02432662 -0.06049072 0.03648287 0.02232712 -0.06049072 0.03643804 0.02433079 -0.06031167 0.03629601 0.02233129 -0.06031167 0.03625118 0.02433645 -0.0602501 0.03604471 0.02233695 -0.0602501 0.03599989 0.024342 -0.06032246 0.03579628 0.0223425 -0.06032246 0.03575146 0.02238732 0.06149059 0.03375136 0.02438682 0.06149059 0.03379619 0.02237772 0.06198322 0.03417974 0.02437722 0.06198322 0.03422456 0.02236443 0.06225395 0.03477376 0.02436393 0.06225395 0.03481853 0.02234977 0.06225395 0.03542649 0.02434927 0.06225395 0.03547132 0.02233648 0.06198322 0.03602051 0.02433598 0.06198322 0.03606528 0.02232688 0.06149059 0.03644883 0.02432638 0.06149059 0.03649365 0.02236765 0.06100934 0.03462773 0.02436721 0.06100934 0.03467255 0.02237099 0.06084299 0.03447997 0.02437049 0.06084299 0.03452479 0.02237558 0.06075727 0.03427469 0.02437508 0.06075727 0.03431951 0.02238059 0.06076914 0.03405255 0.02438008 0.06076914 0.03409737 0.02238494 0.06087619 0.03385752 0.02438443 0.06087619 0.03390234 0.02238786 0.06105732 0.0337283 0.02438735 0.06105732 0.03377312 0.02238869 0.06127661 0.03369039 0.02438819 0.06127661 0.03373521 0.02234649 0.06100934 0.03557246 0.02434599 0.06100934 0.03561729 0.02434939 0.0611819 0.03546726 0.02234989 0.0611819 0.03542244 0.02435404 0.06127667 0.03525924 0.02235454 0.06127667 0.03521442 0.02435916 0.06127667 0.0350306 0.02235966 0.06127667 0.03498578 0.02436381 0.0611819 0.03482258 0.02236431 0.0611819 0.03477776 0.02232551 0.06127661 0.03650981 0.02432501 0.06127661 0.03655463 0.02232635 0.06105732 0.03647196 0.02432584 0.06105732 0.03651672 0.02232927 0.06087619 0.03634268 0.02432876 0.06087619 0.0363875 0.02233362 0.06076914 0.03614765 0.02433311 0.06076914 0.03619247 0.02233862 0.06075727 0.0359255 0.02433812 0.06075727 0.03597033 0.02234321 0.06084299 0.03572022 0.02434271 0.06084299 0.03576505 0.02133494 0.03873205 0.03607743 0.02131855 0.03799998 0.03680932 0.02135735 0.037 0.03507769 0.02131253 0.037 0.03707718 0.02131855 0.03599995 0.03680932 0.02139616 0.03799998 0.03334611 0.02137976 0.03873205 0.03407794 0.02135735 0.03899997 0.03507769 0.02137976 0.03526794 0.03407794 0.02139616 0.03599995 0.03334611 0.02140218 0.037 0.03307819 0.02133494 0.03526794 0.03607743 0.02135735 0.03499996 0.03507769 0.02181243 0.037 0.03708839 0.02181839 0.03799998 0.03682053 0.02183479 0.03873205 0.03608864 0.0218572 0.03899997 0.03508889 0.02187961 0.03873205 0.03408914 0.021896 0.03799998 0.03335732 0.02190202 0.037 0.03308939 0.021896 0.03599995 0.03335732 0.02187961 0.03526794 0.03408914 0.0218572 0.03499996 0.03508889 0.02183479 0.03526794 0.03608864 0.02181839 0.03599995 0.03682053 0.0218572 0.04074996 0.03508889 0.02181524 0.04024755 0.03696346 0.02178448 0.03887498 0.03833568 0.02177321 0.037 0.03883796 0.02178448 0.03512495 0.03833568 0.02181524 0.03375238 0.03696346 0.0218572 0.03324997 0.03508889 0.02189922 0.03375238 0.03321439 0.02192997 0.03512495 0.03184211 0.02194124 0.037 0.03133982 0.02192997 0.03887498 0.03184211 0.02189922 0.04024755 0.03321439 0.02227306 0.037 0.03884917 0.02228432 0.03887498 0.03834688 0.02231508 0.04024755 0.03697466 0.0223571 0.04074996 0.0351001 0.02239912 0.04024755 0.03322559 0.02242988 0.03887498 0.03185331 0.02244114 0.037 0.03135102 0.02242988 0.03512495 0.03185331 0.02239912 0.03375238 0.03322559 0.0223571 0.03324997 0.0351001 0.02231508 0.03375238 0.03697466 0.02228432 0.03512495 0.03834688 0.02225065 0.037 0.03984892 0.02226495 0.03462499 0.0392127 0.02230387 0.03288632 0.03747451 0.0223571 0.03224998 0.0351001 0.02241033 0.03288632 0.03272569 0.02244925 0.03462499 0.0309875 0.0224635 0.037 0.03035128 0.02244925 0.03937494 0.0309875 0.02241033 0.04111361 0.03272569 0.0223571 0.04174995 0.0351001 0.02230387 0.04111361 0.03747451 0.02226495 0.03937494 0.0392127 0.02275055 0.037 0.03986012 0.0227648 0.03937494 0.0392239 0.02280378 0.04111361 0.03748571 0.02285695 0.04174995 0.0351113 0.02291017 0.04111361 0.03273689 0.02294915 0.03937494 0.0309987 0.0229634 0.037 0.03036248 0.02294915 0.03462499 0.0309987 0.02291017 0.03288632 0.03273689 0.02285695 0.03224998 0.0351113 0.02280378 0.03288632 0.03748571 0.0227648 0.03462499 0.0392239 0.02296853 0.03987497 0.03013294 0.02292138 0.04197961 0.03223705 0.02285695 0.04275 0.0351113 0.02279257 0.04197961 0.03798562 0.02274537 0.03987497 0.04008972 0.02272814 0.037 0.04085987 0.02274537 0.03412497 0.04008972 0.02279257 0.03202033 0.03798562 0.02285695 0.03125 0.0351113 0.02292138 0.03202033 0.03223705 0.02296853 0.03412497 0.03013294 0.02298581 0.037 0.02936273 0.02322798 0.037 0.04087108 0.02324527 0.03987497 0.04010093 0.02329242 0.04197961 0.03799676 0.02335685 0.04275 0.03512251 0.02342128 0.04197961 0.03224825 0.02346843 0.03987497 0.03014409 0.02348566 0.037 0.02937394 0.02346843 0.03412497 0.03014409 0.02342128 0.03202033 0.03224825 0.02335685 0.03125 0.03512251 0.02329242 0.03202033 0.03799676 0.02324527 0.03412497 0.04010093 0.02332317 0.04358071 0.03662413 0.02326256 0.04227733 0.03933 0.02322059 0.03992867 0.04120254 0.02320557 0.037 0.04187083 0.02322059 0.03407126 0.04120254 0.02326256 0.0317226 0.03933 0.02332317 0.03041923 0.03662413 0.02339053 0.03041923 0.03362089 0.02345114 0.0317226 0.03091502 0.02349311 0.03407126 0.02904248 0.02350807 0.037 0.02837419 0.02349311 0.03992867 0.02904248 0.02345114 0.04227733 0.03091502 0.02339053 0.04358071 0.03362089 0.02451306 0.04036259 0.02816414 0.02446484 0.04305917 0.03031408 0.02439522 0.04455566 0.0334208 0.02431797 0.04455566 0.03686904 0.0242483 0.04305917 0.03997576 0.02420014 0.04036259 0.0421257 0.02418297 0.037 0.04289299 0.02420014 0.0336374 0.0421257 0.0242483 0.03094077 0.03997576 0.02431797 0.02944427 0.03686904 0.02439522 0.02944427 0.0334208 0.02446484 0.03094077 0.03031408 0.02451306 0.0336374 0.02816414 0.02453023 0.037 0.02739685 0.02392953 -0.02174997 0.03188455 0.01943069 -0.02174997 0.03178369 0.02393478 -0.02087497 0.03165012 0.01943594 -0.02087497 0.03154933 0.02394914 -0.0202344 0.03100973 0.0194503 -0.0202344 0.03090894 0.02396875 -0.01999998 0.03013497 0.01946985 -0.01999998 0.03003412 0.02398836 -0.0202344 0.02926021 0.01948946 -0.0202344 0.02915936 0.02400273 -0.02087497 0.02861982 0.01950383 -0.02087497 0.02851897 0.02400797 -0.02174997 0.0283854 0.01950907 -0.02174997 0.0282846 0.02400273 -0.02262496 0.02861982 0.01950383 -0.02262496 0.02851897 0.02398836 -0.02326554 0.02926021 0.01948946 -0.02326554 0.02915936 0.02396875 -0.02349996 0.03013497 0.01946985 -0.02349996 0.03003412 0.02394914 -0.02326554 0.03100973 0.0194503 -0.02326554 0.03090894 0.02393478 -0.02262496 0.03165012 0.01943594 -0.02262496 0.03154933 0.02451229 -0.02062499 0.02819812 0.02449381 -0.01980143 0.02902144 0.0244686 -0.01949995 0.03014618 0.02444344 -0.01980143 0.03127092 0.02442497 -0.02062499 0.03209424 0.02441823 -0.02174997 0.0323956 0.02442497 -0.02287495 0.03209424 0.02444344 -0.0236985 0.03127092 0.0244686 -0.02399998 0.03014618 0.02449381 -0.0236985 0.02902144 0.02451229 -0.02287495 0.02819812 0.02451902 -0.02174997 0.02789676 0.02440321 -0.02637499 0.03306508 0.02440321 -0.008374989 0.03306508 0.02430999 -0.008374989 0.03722476 0.02420014 -0.03986257 0.0421257 0.02418297 -0.03649997 0.04289299 0.02418857 -0.05224996 0.04264307 0.02440321 -0.05224996 0.03306508 0.02430999 -0.05224996 0.03722476 0.02418857 0.05274999 0.04264307 0.02430999 0.05274999 0.03722476 0.02440321 0.05274999 0.03306508 0.02418857 -0.008374989 0.04264307 0.02430999 0.02374994 0.03722476 0.02440321 0.02374994 0.03306508 0.02418857 0.02374994 0.04264307 0.02451306 -0.03313738 0.02816414 0.02453023 -0.03649997 0.02739685 0.02420014 -0.03313738 0.0421257 0.02418857 -0.02637499 0.04264307 0.0242483 -0.0304408 0.03997576 0.02430999 -0.02637499 0.03722476 0.02431797 -0.02894431 0.03686904 0.02439522 -0.02894431 0.0334208 0.02431797 -0.04405564 0.03686904 0.0242483 -0.04255914 0.03997576 0.02451306 -0.03986257 0.02816414 0.02446484 -0.04255914 0.03031408 0.02439522 -0.04405564 0.0334208 0.02446484 -0.0304408 0.03031408 0.02349311 -0.03357124 0.02904248 0.02345114 -0.03122264 0.03091502 0.02339053 -0.0299192 0.03362089 0.02332317 -0.0299192 0.03662413 0.02326256 -0.03122264 0.03933 0.02322059 -0.03357124 0.04120254 0.02320557 -0.03649997 0.04187083 0.02322059 -0.03942871 0.04120254 0.02326256 -0.04177731 0.03933 0.02332317 -0.04308074 0.03662413 0.02339053 -0.04308074 0.03362089 0.02345114 -0.04177731 0.03091502 0.02349311 -0.03942871 0.02904248 0.02350807 -0.03649997 0.02837419 0.02335685 -0.04224997 0.03512251 0.02342128 -0.04147964 0.03224825 0.02346843 -0.03937494 0.03014409 0.02348566 -0.03649997 0.02937394 0.02346843 -0.03362494 0.03014409 0.02342128 -0.0315203 0.03224825 0.02335685 -0.03074997 0.03512251 0.02329242 -0.0315203 0.03799676 0.02324527 -0.03362494 0.04010093 0.02322798 -0.03649997 0.04087108 0.02324527 -0.03937494 0.04010093 0.02329242 -0.04147964 0.03799676 0.02272814 -0.03649997 0.04085987 0.02274537 -0.03362494 0.04008972 0.02279257 -0.0315203 0.03798562 0.02285695 -0.03074997 0.0351113 0.02292138 -0.0315203 0.03223705 0.02296853 -0.03362494 0.03013294 0.02298581 -0.03649997 0.02936273 0.02296853 -0.03937494 0.03013294 0.02292138 -0.04147964 0.03223705 0.02285695 -0.04224997 0.0351113 0.02279257 -0.04147964 0.03798562 0.02274537 -0.03937494 0.04008972 0.02280378 -0.03238636 0.03748571 0.0227648 -0.03412497 0.0392239 0.02275055 -0.03649997 0.03986012 0.0227648 -0.03887498 0.0392239 0.02280378 -0.04061359 0.03748571 0.02285695 -0.04124999 0.0351113 0.02291017 -0.04061359 0.03273689 0.02294915 -0.03887498 0.0309987 0.0229634 -0.03649997 0.03036248 0.02294915 -0.03412497 0.0309987 0.02291017 -0.03238636 0.03273689 0.02285695 -0.03174996 0.0351113 0.02225065 -0.03649997 0.03984892 0.02226495 -0.03412497 0.0392127 0.02230387 -0.03238636 0.03747451 0.0223571 -0.03174996 0.0351001 0.02241033 -0.03238636 0.03272569 0.02244925 -0.03412497 0.0309875 0.0224635 -0.03649997 0.03035128 0.02244925 -0.03887498 0.0309875 0.02241033 -0.04061359 0.03272569 0.0223571 -0.04124999 0.0351001 0.02230387 -0.04061359 0.03747451 0.02226495 -0.03887498 0.0392127 0.02227306 -0.03649997 0.03884917 0.02228432 -0.03837496 0.03834688 0.02231508 -0.03974759 0.03697466 0.0223571 -0.04025 0.0351001 0.02239912 -0.03974759 0.03322559 0.02242988 -0.03837496 0.03185331 0.02244114 -0.03649997 0.03135102 0.02242988 -0.03462499 0.03185331 0.02239912 -0.03325235 0.03322559 0.0223571 -0.03274995 0.0351001 0.02231508 -0.03325235 0.03697466 0.02228432 -0.03462499 0.03834688 0.02129399 -0.03649997 0.03790539 0.02129882 -0.03758233 0.03769016 0.02141857 -0.03576791 0.03234636 0.02131253 -0.03849995 0.03707718 0.02140218 -0.03849995 0.03307819 0.02141857 -0.03723204 0.03234636 0.02140218 -0.0345 0.03307819 0.02131253 -0.0345 0.03707718 0.02129882 -0.03541755 0.03769016 0.02190202 -0.0345 0.03308939 0.02191841 -0.03576791 0.03235751 0.02191841 -0.03723204 0.03235751 0.02190202 -0.03849995 0.03308939 0.02181243 -0.03849995 0.03708839 0.02179867 -0.03758233 0.03770136 0.02179384 -0.03649997 0.0379166 0.02179867 -0.03541755 0.03770136 0.02181243 -0.0345 0.03708839 0.02189922 -0.03974759 0.03321439 0.02192997 -0.03837496 0.03184211 0.02194124 -0.03649997 0.03133982 0.02192997 -0.03462499 0.03184211 0.02189922 -0.03325235 0.03321439 0.0218572 -0.03274995 0.03508889 0.02181524 -0.03325235 0.03696346 0.02178448 -0.03462499 0.03833568 0.02177321 -0.03649997 0.03883796 0.02178448 -0.03837496 0.03833568 0.02181524 -0.03974759 0.03696346 0.0218572 -0.04025 0.03508889 0.02325683 -0.02187681 0.03958624 0.02325707 -0.0218138 0.03957509 0.02324479 -0.02174997 0.04012125 0.02325713 -0.02174997 0.0395714 0.02325707 -0.02168613 0.03957509 0.0232551 -0.02205222 0.03966188 0.02325582 -0.02199679 0.03962987 0.02325642 -0.02193808 0.03960454 0.02325218 -0.02219116 0.03979289 0.02325326 -0.02215003 0.0397439 0.02325427 -0.02210348 0.03970003 0.02324837 -0.02227687 0.03996354 0.02324968 -0.022255 0.03990346 0.02325099 -0.02222627 0.03984636 0.02324408 -0.02229905 0.0401532 0.02324551 -0.02229905 0.0400893 0.02324694 -0.0222916 0.04002577 0.02323991 -0.022255 0.04033905 0.02324128 -0.02227687 0.04027897 0.02324265 -0.0222916 0.04021674 0.02323633 -0.02215003 0.04049861 0.02323746 -0.02219116 0.04044961 0.02323865 -0.02222627 0.04039621 0.02323383 -0.02199679 0.04061263 0.02323454 -0.02205222 0.04058068 0.02323538 -0.02210348 0.04054248 0.02323257 -0.0218138 0.04066741 0.02323281 -0.02187681 0.04065632 0.02323323 -0.02193808 0.04063796 0.02323281 -0.02162313 0.04065632 0.02323257 -0.02168613 0.04066741 0.02323251 -0.02174997 0.04067111 0.02323454 -0.02144777 0.04058068 0.02323383 -0.02150315 0.04061263 0.02323323 -0.02156186 0.04063796 0.02323746 -0.02130883 0.04044961 0.02323633 -0.0213499 0.04049861 0.02323538 -0.02139645 0.04054248 0.02324128 -0.02122306 0.04027897 0.02323991 -0.02124494 0.04033905 0.02323865 -0.02127367 0.04039621 0.02324551 -0.02120089 0.0400893 0.02324408 -0.02120089 0.0401532 0.02324265 -0.02120834 0.04021674 0.02324968 -0.02124494 0.03990346 0.02324837 -0.02122306 0.03996354 0.02324694 -0.02120834 0.04002577 0.02325326 -0.0213499 0.0397439 0.02325218 -0.02130883 0.03979289 0.02325099 -0.02127367 0.03984636 0.02325582 -0.02150315 0.03962987 0.0232551 -0.02144777 0.03966188 0.02325427 -0.02139645 0.03970003 0.02325683 -0.02162313 0.03958624 0.02325642 -0.02156186 0.03960454 0.02325004 -0.02166962 0.03943359 0.02324974 -0.02159029 0.03944754 0.0232492 -0.02151316 0.03947061 0.02324849 -0.02143925 0.0395025 0.02324759 -0.02136951 0.03954273 0.02324652 -0.02130496 0.03959083 0.02324527 -0.02124643 0.03964602 0.0232439 -0.02119463 0.03970772 0.02324241 -0.02115041 0.03977495 0.0232408 -0.02111428 0.03984689 0.02323907 -0.02108675 0.03992253 0.02323734 -0.02106815 0.04000085 0.02323555 -0.02105885 0.04008078 0.02323371 -0.02105885 0.04016125 0.02323192 -0.02106815 0.04024124 0.02323019 -0.02108675 0.04031956 0.02322852 -0.02111428 0.0403952 0.02322685 -0.02115041 0.04046708 0.02322536 -0.02119463 0.04053437 0.02322399 -0.02124643 0.040596 0.02322274 -0.02130496 0.04065126 0.02322167 -0.02136951 0.0406993 0.02322077 -0.02143925 0.04073953 0.02322006 -0.02151316 0.04077142 0.02321952 -0.02159029 0.04079449 0.02321922 -0.02166962 0.04080849 0.0232191 -0.02174997 0.04081314 0.02321922 -0.02183037 0.04080849 0.02321952 -0.02190965 0.04079449 0.02322006 -0.02198678 0.04077142 0.02322077 -0.02206069 0.04073953 0.02322167 -0.02213042 0.0406993 0.02322274 -0.02219498 0.04065126 0.02322399 -0.02225357 0.040596 0.02322536 -0.0223053 0.04053437 0.02322685 -0.02234953 0.04046708 0.02322852 -0.02238565 0.0403952 0.02323019 -0.02241319 0.04031956 0.02323192 -0.02243179 0.04024124 0.02323371 -0.02244114 0.04016125 0.02323555 -0.02244114 0.04008078 0.02323734 -0.02243179 0.04000085 0.02323907 -0.02241319 0.03992253 0.0232408 -0.02238565 0.03984689 0.02324241 -0.02234953 0.03977495 0.0232439 -0.0223053 0.03970772 0.02324527 -0.02225357 0.03964602 0.02324652 -0.02219498 0.03959083 0.02324759 -0.02213042 0.03954273 0.02324849 -0.02206069 0.0395025 0.0232492 -0.02198678 0.03947061 0.02324974 -0.02190965 0.03944754 0.02325004 -0.02183037 0.03943359 0.02325016 -0.02174997 0.03942888 0.0232228 -0.02165341 0.03929448 0.02322244 -0.02155816 0.03931123 0.02322185 -0.02146548 0.039339 0.02322095 -0.02137666 0.03937727 0.02321988 -0.02129292 0.03942561 0.02321857 -0.02121537 0.03948336 0.02321708 -0.02114498 0.0395497 0.02321547 -0.02108281 0.03962379 0.02321362 -0.02102965 0.03970462 0.02321171 -0.02098625 0.03979098 0.02320969 -0.02095317 0.03988188 0.02320754 -0.02093088 0.03997594 0.02320539 -0.02091968 0.04007202 0.02320325 -0.02091968 0.0401687 0.0232011 -0.02093088 0.04026472 0.02319896 -0.02095317 0.04035884 0.02319693 -0.02098625 0.04044967 0.02319502 -0.02102965 0.0405361 0.02319318 -0.02108281 0.04061692 0.02319151 -0.02114498 0.04069095 0.02319002 -0.02121537 0.04075735 0.02318876 -0.02129292 0.04081505 0.02318769 -0.02137666 0.04086345 0.0231868 -0.02146548 0.04090172 0.0231862 -0.02155816 0.04092949 0.02318578 -0.02165341 0.04094624 0.02318567 -0.02174997 0.0409519 0.02318578 -0.02184653 0.04094624 0.0231862 -0.02194178 0.04092949 0.0231868 -0.02203446 0.04090172 0.02318769 -0.02212327 0.04086345 0.02318876 -0.02220702 0.04081505 0.02319002 -0.02228462 0.04075735 0.02319151 -0.02235496 0.04069095 0.02319318 -0.02241712 0.04061692 0.02319502 -0.02247029 0.0405361 0.02319693 -0.02251368 0.04044967 0.02319896 -0.02254676 0.04035884 0.0232011 -0.02256906 0.04026472 0.02320325 -0.02258032 0.0401687 0.02320539 -0.02258032 0.04007202 0.02320754 -0.02256906 0.03997594 0.02320969 -0.02254676 0.03988188 0.02321171 -0.02251368 0.03979098 0.02321362 -0.02247029 0.03970462 0.02321547 -0.02241712 0.03962379 0.02321708 -0.02235496 0.0395497 0.02321857 -0.02228462 0.03948336 0.02321988 -0.02220702 0.03942561 0.02322095 -0.02212327 0.03937727 0.02322185 -0.02203446 0.039339 0.02322244 -0.02194178 0.03931123 0.0232228 -0.02184653 0.03929448 0.02322298 -0.02174997 0.03928881 0.02317595 -0.02163791 0.0391606 0.02317553 -0.02152734 0.03918009 0.02317482 -0.02141976 0.03921228 0.0231738 -0.0213167 0.03925675 0.02317255 -0.02121949 0.03931283 0.02317106 -0.02112942 0.03937989 0.02316933 -0.02104777 0.0394569 0.02316737 -0.02097558 0.03954285 0.02316528 -0.02091389 0.03963667 0.02316302 -0.02086353 0.03973692 0.02316069 -0.02082514 0.03984242 0.02315825 -0.02079921 0.03995162 0.02315574 -0.02078622 0.04006314 0.02315318 -0.02078622 0.04017537 0.02315074 -0.02079921 0.04028683 0.02314829 -0.02082514 0.04039603 0.02314591 -0.02086353 0.04050153 0.02314364 -0.02091389 0.04060184 0.02314156 -0.02097558 0.0406956 0.02313965 -0.02104777 0.04078155 0.02313792 -0.02112942 0.04085862 0.02313637 -0.02121949 0.04092562 0.02313512 -0.0213167 0.04098176 0.02313417 -0.02141976 0.04102623 0.02313339 -0.02152734 0.04105842 0.02313297 -0.02163791 0.04107791 0.02313286 -0.02174997 0.0410844 0.02313297 -0.02186203 0.04107791 0.02313339 -0.02197259 0.04105842 0.02313417 -0.02208018 0.04102623 0.02313512 -0.02218323 0.04098176 0.02313637 -0.02228045 0.04092562 0.02313792 -0.02237051 0.04085862 0.02313965 -0.02245217 0.04078155 0.02314156 -0.02252435 0.0406956 0.02314364 -0.02258604 0.04060184 0.02314591 -0.02263641 0.04050153 0.02314829 -0.02267485 0.04039603 0.02315074 -0.02270072 0.04028683 0.02315318 -0.02271378 0.04017537 0.02315574 -0.02271378 0.04006314 0.02315825 -0.02270072 0.03995162 0.02316069 -0.02267485 0.03984242 0.02316302 -0.02263641 0.03973692 0.02316528 -0.02258604 0.03963667 0.02316737 -0.02252435 0.03954285 0.02316933 -0.02245217 0.0394569 0.02317106 -0.02237051 0.03937989 0.02317255 -0.02228045 0.03931283 0.0231738 -0.02218323 0.03925675 0.02317482 -0.02208018 0.03921228 0.02317553 -0.02197259 0.03918009 0.02317595 -0.02186203 0.0391606 0.02317613 -0.02174997 0.03915405 0.02311038 -0.02162337 0.03903472 0.02310991 -0.02149844 0.03905671 0.02310907 -0.02137696 0.03909307 0.02310794 -0.02126049 0.03914332 0.02310651 -0.02115064 0.03920674 0.02310484 -0.0210489 0.03928244 0.02310287 -0.02095669 0.03936946 0.02310073 -0.02087515 0.03946655 0.02309834 -0.02080547 0.03957253 0.02309578 -0.02074855 0.03968584 0.0230931 -0.02070516 0.03980499 0.02309036 -0.02067589 0.03992837 0.02308756 -0.02066117 0.04005432 0.0230847 -0.02066117 0.0401811 0.02308183 -0.02067589 0.04030704 0.02307909 -0.02070516 0.04043042 0.02307641 -0.02074855 0.04054957 0.02307391 -0.02080547 0.04066288 0.02307152 -0.02087515 0.0407688 0.02306932 -0.02095669 0.04086595 0.02306741 -0.0210489 0.04095298 0.02306568 -0.02115064 0.04102867 0.02306425 -0.02126049 0.04109209 0.02306312 -0.02137696 0.04114234 0.02306234 -0.02149844 0.0411787 0.02306181 -0.02162337 0.04120069 0.02306169 -0.02174997 0.04120808 0.02306181 -0.02187657 0.04120069 0.02306234 -0.0220015 0.0411787 0.02306312 -0.02212297 0.04114234 0.02306425 -0.02223944 0.04109209 0.02306568 -0.02234929 0.04102867 0.02306741 -0.02245104 0.04095298 0.02306932 -0.02254331 0.04086595 0.02307152 -0.02262479 0.0407688 0.02307391 -0.02269452 0.04066288 0.02307641 -0.02275145 0.04054957 0.02307909 -0.02279478 0.04043042 0.02308183 -0.02282404 0.04030704 0.0230847 -0.02283877 0.0401811 0.02308756 -0.02283877 0.04005432 0.02309036 -0.02282404 0.03992837 0.0230931 -0.02279478 0.03980499 0.02309578 -0.02275145 0.03968584 0.02309834 -0.02269452 0.03957253 0.02310073 -0.02262479 0.03946655 0.02310287 -0.02254331 0.03936946 0.02310484 -0.02245104 0.03928244 0.02310651 -0.02234929 0.03920674 0.02310794 -0.02223944 0.03914332 0.02310907 -0.02212297 0.03909307 0.02310991 -0.0220015 0.03905671 0.02311038 -0.02187657 0.03903472 0.02311056 -0.02174997 0.03902733 0.02302742 -0.02161008 0.03891938 0.02302688 -0.02147209 0.0389437 0.02302598 -0.02133786 0.03898388 0.02302473 -0.02120923 0.03903937 0.02302318 -0.02108788 0.0391094 0.02302128 -0.02097553 0.03919303 0.02301913 -0.0208736 0.03928917 0.02301675 -0.02078354 0.03939646 0.02301412 -0.02070653 0.03951352 0.02301132 -0.02064365 0.03963869 0.02300834 -0.02059572 0.0397703 0.0230053 -0.02056342 0.03990662 0.0230022 -0.02054715 0.04004573 0.02299904 -0.02054715 0.0401858 0.02299594 -0.02056342 0.04032498 0.0229929 -0.02059572 0.04046124 0.02298992 -0.02064365 0.0405929 0.02298712 -0.02070653 0.04071807 0.0229845 -0.02078354 0.04083508 0.02298212 -0.0208736 0.04094243 0.02297997 -0.02097553 0.04103851 0.02297806 -0.02108788 0.04112219 0.02297651 -0.02120923 0.04119223 0.02297526 -0.02133786 0.04124772 0.02297437 -0.02147209 0.04128789 0.02297383 -0.02161008 0.04131221 0.02297365 -0.02174997 0.04132032 0.02297383 -0.02188986 0.04131221 0.02297437 -0.02202785 0.04128789 0.02297526 -0.02216207 0.04124772 0.02297651 -0.0222907 0.04119223 0.02297806 -0.02241206 0.04112219 0.02297997 -0.02252447 0.04103851 0.02298212 -0.02262634 0.04094243 0.0229845 -0.0227164 0.04083508 0.02298712 -0.02279341 0.04071807 0.02298992 -0.02285629 0.0405929 0.0229929 -0.02290421 0.04046124 0.02299594 -0.02293652 0.04032498 0.02299904 -0.02295279 0.0401858 0.0230022 -0.02295279 0.04004573 0.0230053 -0.02293652 0.03990662 0.02300834 -0.02290421 0.0397703 0.02301132 -0.02285629 0.03963869 0.02301412 -0.02279341 0.03951352 0.02301675 -0.0227164 0.03939646 0.02301913 -0.02262634 0.03928917 0.02302128 -0.02252447 0.03919303 0.02302318 -0.02241206 0.0391094 0.02302473 -0.0222907 0.03903937 0.02302598 -0.02216207 0.03898388 0.02302688 -0.02202785 0.0389437 0.02302742 -0.02188986 0.03891938 0.02302759 -0.02174997 0.03891122 0.02292883 -0.02159839 0.03881692 0.02292823 -0.02144885 0.03884327 0.02292728 -0.02130341 0.03888684 0.02292591 -0.02116394 0.03894698 0.02292418 -0.02103245 0.03902286 0.02292215 -0.02091068 0.03911352 0.02291983 -0.02080023 0.03921771 0.02291721 -0.0207026 0.03933399 0.0229144 -0.02061915 0.03946083 0.02291136 -0.02055102 0.03959649 0.02290815 -0.02049911 0.03973913 0.02290487 -0.02046406 0.03988683 0.02290147 -0.02044641 0.04003763 0.02289807 -0.02044641 0.04018944 0.02289468 -0.02046406 0.04034018 0.0228914 -0.02049911 0.04048794 0.02288818 -0.02055102 0.04063057 0.02288514 -0.02061915 0.04076623 0.02288228 -0.0207026 0.04089307 0.02287966 -0.02080023 0.04100936 0.02287733 -0.02091068 0.04111355 0.0228753 -0.02103245 0.04120421 0.02287364 -0.02116394 0.04128009 0.02287226 -0.02130341 0.04134023 0.02287131 -0.02144885 0.04138374 0.02287071 -0.02159839 0.04141014 0.02287048 -0.02174997 0.04141896 0.02287071 -0.02190154 0.04141014 0.02287131 -0.02205109 0.04138374 0.02287226 -0.02219659 0.04134023 0.02287364 -0.022336 0.04128009 0.0228753 -0.02246749 0.04120421 0.02287733 -0.02258932 0.04111355 0.02287966 -0.02269977 0.04100936 0.02288228 -0.02279734 0.04089307 0.02288514 -0.02288079 0.04076623 0.02288818 -0.02294892 0.04063057 0.0228914 -0.02300089 0.04048794 0.02289468 -0.02303588 0.04034018 0.02289807 -0.02305352 0.04018944 0.02290147 -0.02305352 0.04003763 0.02290487 -0.02303588 0.03988683 0.02290815 -0.02300089 0.03973913 0.02291136 -0.02294892 0.03959649 0.0229144 -0.02288079 0.03946083 0.02291721 -0.02279734 0.03933399 0.02291983 -0.02269977 0.03921771 0.02292215 -0.02258932 0.03911352 0.02292418 -0.02246749 0.03902286 0.02292591 -0.022336 0.03894698 0.02292728 -0.02219659 0.03888684 0.02292823 -0.02205109 0.03884327 0.02292883 -0.02190154 0.03881692 0.02292901 -0.02174997 0.0388081 0.02281653 -0.02158844 0.03872948 0.02281588 -0.02142912 0.03875756 0.02281486 -0.02127414 0.03880393 0.02281343 -0.02112555 0.03886801 0.02281159 -0.02098548 0.03894889 0.02280944 -0.02085572 0.03904545 0.02280694 -0.020738 0.03915649 0.0228042 -0.02063399 0.03928035 0.02280116 -0.02054512 0.03941553 0.02279794 -0.02047252 0.03956007 0.02279448 -0.02041715 0.03971207 0.02279096 -0.02037984 0.03986942 0.02278739 -0.02036106 0.04003012 0.02278375 -0.02036106 0.04019182 0.02278017 -0.02037984 0.04035252 0.02277666 -0.02041715 0.04050987 0.0227732 -0.02047252 0.04066187 0.02276998 -0.02054512 0.04080641 0.02276694 -0.02063399 0.04094153 0.0227642 -0.020738 0.04106545 0.0227617 -0.02085572 0.04117643 0.02275955 -0.02098548 0.04127305 0.0227577 -0.02112555 0.04135394 0.02275627 -0.02127414 0.04141801 0.02275526 -0.02142912 0.04146438 0.0227546 -0.02158844 0.04149246 0.02275443 -0.02174997 0.04150187 0.0227546 -0.0219115 0.04149246 0.02275526 -0.02207082 0.04146438 0.02275627 -0.02222579 0.04141801 0.0227577 -0.02237439 0.04135394 0.02275955 -0.02251446 0.04127305 0.0227617 -0.02264428 0.04117643 0.0227642 -0.02276194 0.04106545 0.02276694 -0.02286595 0.04094153 0.02276998 -0.02295482 0.04080641 0.0227732 -0.02302742 0.04066187 0.02277666 -0.02308279 0.04050987 0.02278017 -0.0231201 0.04035252 0.02278375 -0.02313888 0.04019182 0.02278739 -0.02313888 0.04003012 0.02279096 -0.0231201 0.03986942 0.02279448 -0.02308279 0.03971207 0.02279794 -0.02302742 0.03956007 0.02280116 -0.02295482 0.03941553 0.0228042 -0.02286595 0.03928035 0.02280694 -0.02276194 0.03915649 0.02280944 -0.02264428 0.03904545 0.02281159 -0.02251446 0.03894889 0.02281343 -0.02237439 0.03886801 0.02281486 -0.02222579 0.03880393 0.02281588 -0.02207082 0.03875756 0.02281653 -0.0219115 0.03872948 0.02281671 -0.02174997 0.03872007 0.02269285 -0.02158051 0.03865873 0.0226922 -0.02141338 0.03868824 0.02269113 -0.02125078 0.03873687 0.02268958 -0.02109491 0.03880411 0.02268773 -0.02094787 0.03888899 0.0226854 -0.02081173 0.03899031 0.02268284 -0.02068829 0.03910672 0.02267992 -0.02057915 0.03923672 0.0226767 -0.02048587 0.03937852 0.0226733 -0.0204097 0.03953015 0.02266973 -0.02035164 0.03968966 0.02266603 -0.02031254 0.03985476 0.02266228 -0.02029281 0.04002332 0.02265846 -0.02029281 0.04019302 0.02265471 -0.02031254 0.04036158 0.02265101 -0.02035164 0.04052668 0.02264744 -0.0204097 0.04068613 0.02264404 -0.02048587 0.04083782 0.02264082 -0.02057915 0.04097956 0.02263796 -0.02068829 0.04110956 0.02263534 -0.02081173 0.04122602 0.02263307 -0.02094787 0.04132735 0.02263116 -0.02109491 0.04141223 0.02262961 -0.02125078 0.0414794 0.02262854 -0.02141338 0.0415281 0.02262789 -0.02158051 0.04155755 0.02262765 -0.02174997 0.04156744 0.02262789 -0.02191942 0.04155755 0.02262854 -0.02208662 0.0415281 0.02262961 -0.02224922 0.0414794 0.02263116 -0.02240508 0.04141223 0.02263307 -0.02255207 0.04132735 0.02263534 -0.02268821 0.04122602 0.02263796 -0.02281165 0.04110956 0.02264082 -0.02292078 0.04097956 0.02264404 -0.02301406 0.04083782 0.02264744 -0.02309024 0.04068613 0.02265101 -0.02314829 0.04052668 0.02265471 -0.02318745 0.04036158 0.02265846 -0.02320712 0.04019302 0.02266228 -0.02320712 0.04002332 0.02266603 -0.02318745 0.03985476 0.02266973 -0.02314829 0.03968966 0.0226733 -0.02309024 0.03953015 0.0226767 -0.02301406 0.03937852 0.02267992 -0.02292078 0.03923672 0.02268284 -0.02281165 0.03910672 0.0226854 -0.02268821 0.03899031 0.02268773 -0.02255207 0.03888899 0.02268958 -0.02240508 0.03880411 0.02269113 -0.02224922 0.03873687 0.0226922 -0.02208662 0.03868824 0.02269285 -0.02191942 0.03865873 0.02269309 -0.02174997 0.0386489 0.02256029 -0.02157473 0.03860628 0.02255964 -0.02140188 0.03863674 0.02255851 -0.02123367 0.03868705 0.02255696 -0.0210725 0.03875654 0.02255499 -0.02092051 0.03884434 0.02255266 -0.02077966 0.03894913 0.02254992 -0.02065199 0.03906953 0.02254694 -0.02053916 0.039204 0.02254366 -0.02044272 0.03935062 0.02254015 -0.02036392 0.03950744 0.02253645 -0.0203039 0.03967237 0.02253258 -0.02026343 0.03984314 0.0225287 -0.02024304 0.04001742 0.02252477 -0.02024304 0.0401929 0.02252084 -0.02026343 0.04036724 0.02251702 -0.0203039 0.04053801 0.02251332 -0.02036392 0.04070287 0.02250981 -0.02044272 0.04085969 0.02250653 -0.02053916 0.04100632 0.02250349 -0.02065199 0.04114079 0.02250081 -0.02077966 0.04126119 0.02249848 -0.02092051 0.04136604 0.02249652 -0.0210725 0.04145377 0.02249497 -0.02123367 0.04152327 0.02249383 -0.02140188 0.04157358 0.02249312 -0.02157473 0.0416041 0.02249288 -0.02174997 0.04161429 0.02249312 -0.02192521 0.0416041 0.02249383 -0.02209806 0.04157358 0.02249497 -0.02226626 0.04152327 0.02249652 -0.02242743 0.04145377 0.02249848 -0.02257943 0.04136604 0.02250081 -0.02272027 0.04126119 0.02250349 -0.02284795 0.04114079 0.02250653 -0.02296078 0.04100632 0.02250981 -0.02305722 0.04085969 0.02251332 -0.02313601 0.04070287 0.02251702 -0.02319604 0.04053801 0.02252084 -0.02323651 0.04036724 0.02252477 -0.02325689 0.0401929 0.0225287 -0.02325689 0.04001742 0.02253258 -0.02323651 0.03984314 0.02253645 -0.02319604 0.03967237 0.02254015 -0.02313601 0.03950744 0.02254366 -0.02305722 0.03935062 0.02254694 -0.02296078 0.039204 0.02254992 -0.02284795 0.03906953 0.02255266 -0.02272027 0.03894913 0.02255499 -0.02257943 0.03884434 0.02255696 -0.02242743 0.03875654 0.02255851 -0.02226626 0.03868705 0.02255964 -0.02209806 0.03863674 0.02256029 -0.02192521 0.03860628 0.02256053 -0.02174997 0.03859603 0.02242159 -0.02157121 0.03857302 0.02242094 -0.02139484 0.03860408 0.02241975 -0.0212233 0.03865545 0.0224182 -0.02105891 0.03872632 0.02241617 -0.02090382 0.03881585 0.02241379 -0.02076017 0.03892278 0.02241104 -0.02062994 0.03904563 0.02240794 -0.02051484 0.03918278 0.02240461 -0.02041643 0.03933233 0.02240103 -0.02033609 0.0394923 0.02239722 -0.02027481 0.03966051 0.02239334 -0.02023357 0.03983473 0.02238935 -0.02021276 0.04001253 0.02238535 -0.02021276 0.04019153 0.02238136 -0.02023357 0.04036939 0.02237743 -0.02027481 0.04054355 0.02237367 -0.02033609 0.04071176 0.0223701 -0.02041643 0.04087173 0.02236676 -0.02051484 0.04102134 0.02236366 -0.02062994 0.04115849 0.02236092 -0.02076017 0.04128134 0.02235853 -0.02090382 0.04138821 0.02235651 -0.02105891 0.04147773 0.0223549 -0.0212233 0.04154866 0.02235376 -0.02139484 0.04159998 0.02235305 -0.02157121 0.04163104 0.02235287 -0.02174997 0.04164147 0.02235305 -0.02192872 0.04163104 0.02235376 -0.02210509 0.04159998 0.0223549 -0.02227663 0.04154866 0.02235651 -0.02244102 0.04147773 0.02235853 -0.02259612 0.04138821 0.02236092 -0.02273976 0.04128134 0.02236366 -0.02287 0.04115849 0.02236676 -0.0229851 0.04102134 0.0223701 -0.0230835 0.04087173 0.02237367 -0.02316385 0.04071176 0.02237743 -0.02322512 0.04054355 0.02238136 -0.02326643 0.04036939 0.02238535 -0.02328717 0.04019153 0.02238935 -0.02328717 0.04001253 0.02239334 -0.02326643 0.03983473 0.02239722 -0.02322512 0.03966051 0.02240103 -0.02316385 0.0394923 0.02240461 -0.0230835 0.03933233 0.02240794 -0.0229851 0.03918278 0.02241104 -0.02287 0.03904563 0.02241379 -0.02273976 0.03892278 0.02241617 -0.02259612 0.03881585 0.0224182 -0.02244102 0.03872632 0.02241975 -0.02227663 0.03865545 0.02242094 -0.02210509 0.03860408 0.02242159 -0.02192872 0.03857302 0.02242183 -0.02174997 0.03856259 0.02227956 -0.02157002 0.03855973 0.02227884 -0.02139252 0.03859102 0.02227771 -0.02121984 0.0386427 0.0222761 -0.02105432 0.03871405 0.02227407 -0.02089822 0.03880417 0.02227169 -0.02075368 0.03891175 0.02226889 -0.02062255 0.03903543 0.02226579 -0.02050668 0.03917348 0.02226245 -0.02040761 0.03932404 0.02225881 -0.02032673 0.03948509 0.022255 -0.0202651 0.03965443 0.02225112 -0.02022349 0.03982979 0.02224707 -0.02020257 0.04000878 0.02224302 -0.02020257 0.04018896 0.02223902 -0.02022349 0.04036796 0.02223509 -0.0202651 0.04054331 0.02223134 -0.02032673 0.04071265 0.0222277 -0.02040761 0.04087364 0.0222243 -0.02050668 0.0410242 0.0222212 -0.02062255 0.04116225 0.02221846 -0.02075368 0.04128593 0.02221608 -0.02089822 0.04139351 0.02221405 -0.02105432 0.04148364 0.02221244 -0.02121984 0.04155498 0.02221125 -0.02139252 0.04160672 0.02221059 -0.02157002 0.04163801 0.02221035 -0.02174997 0.04164844 0.02221059 -0.02192991 0.04163801 0.02221125 -0.02210742 0.04160672 0.02221244 -0.02228009 0.04155498 0.02221405 -0.02244561 0.04148364 0.02221608 -0.02260172 0.04139351 0.02221846 -0.02274632 0.04128593 0.0222212 -0.02287739 0.04116225 0.0222243 -0.02299326 0.0410242 0.0222277 -0.02309232 0.04087364 0.02223134 -0.02317321 0.04071265 0.02223509 -0.02323484 0.04054331 0.02223902 -0.02327644 0.04036796 0.02224302 -0.02329736 0.04018896 0.02224707 -0.02329736 0.04000878 0.02225112 -0.02327644 0.03982979 0.022255 -0.02323484 0.03965443 0.02225881 -0.02317321 0.03948509 0.02226245 -0.02309232 0.03932404 0.02226579 -0.02299326 0.03917348 0.02226889 -0.02287739 0.03903543 0.02227169 -0.02274632 0.03891175 0.02227407 -0.02260172 0.03880417 0.0222761 -0.02244561 0.03871405 0.02227771 -0.02228009 0.0386427 0.02227884 -0.02210742 0.03859102 0.02227956 -0.02192991 0.03855973 0.02227979 -0.02174997 0.03854924 -0.0135672 -0.07001197 0.03176814 -0.01355987 -0.07044613 0.03144192 -0.01355928 -0.07069122 0.03141415 -0.01355427 -0.07092708 0.03118956 -0.01355439 -0.0711866 0.03119695 -0.0135504 -0.0714423 0.0310176 -0.01355141 -0.07171094 0.03106421 -0.01354843 -0.07197839 0.03093051 -0.01355046 -0.07225 0.03101956 -0.01354843 -0.07252156 0.03093051 -0.01355141 -0.07278901 0.03106421 -0.0135504 -0.07305765 0.0310176 -0.01355439 -0.07331335 0.03119695 -0.01355427 -0.07357287 0.03118956 -0.01355928 -0.07380872 0.03141415 -0.01355987 -0.07405382 0.03144192 -0.01356589 -0.07426154 0.0317099 -0.0135672 -0.07448804 0.03176814 -0.01357412 -0.07465946 0.03207617 -0.01357597 -0.07486426 0.03215974 -0.01358366 -0.0749917 0.03250288 -0.01358598 -0.07517284 0.03260666 -0.01359432 -0.07524913 0.03297847 -0.01359701 -0.07540565 0.0330972 -0.01360577 -0.07542479 0.03348994 -0.01360869 -0.07555675 0.0336188 -0.01361775 -0.07551378 0.03402334 -0.01362079 -0.07562226 0.03415787 -0.01362985 -0.07551378 0.03456407 -0.01363295 -0.07560038 0.03470045 -0.01364183 -0.07542479 0.03509747 -0.01364487 -0.07549172 0.03523248 -0.01365327 -0.07524913 0.03560894 -0.01365625 -0.07529914 0.03574019 -0.01366394 -0.0749917 0.03608453 -0.01366674 -0.07502752 0.03621047 -0.01367354 -0.07465946 0.03651124 -0.01367622 -0.07468402 0.03663104 -0.0136817 -0.07426154 0.03687751 -0.01368427 -0.07427746 0.03699117 -0.01368832 -0.07380872 0.03717327 -0.01369076 -0.07381844 0.03728139 -0.01369321 -0.07331335 0.03739047 -0.01369553 -0.07331871 0.03749424 -0.01369619 -0.07278901 0.03752326 -0.01369845 -0.07279139 0.03762418 -0.0136972 -0.07225 0.03756791 -0.01369941 -0.07225 0.03766787 -0.01369619 -0.07171094 0.03752326 -0.01369845 -0.07170861 0.03762418 -0.01369321 -0.0711866 0.03739047 -0.01369553 -0.07118123 0.03749424 -0.01368832 -0.07069122 0.03717327 -0.01369076 -0.07068157 0.03728139 -0.0136817 -0.07023841 0.03687751 -0.01368427 -0.07022249 0.03699117 -0.01367354 -0.06984049 0.03651124 -0.01367622 -0.06981593 0.03663104 -0.01366394 -0.06950825 0.03608453 -0.01366674 -0.06947243 0.03621047 -0.01365327 -0.06925082 0.03560894 -0.01365625 -0.06920081 0.03574019 -0.01364183 -0.06907522 0.03509747 -0.01364487 -0.06900823 0.03523248 -0.01362985 -0.06898617 0.03456407 -0.01363295 -0.06889957 0.03470045 -0.01361775 -0.06898617 0.03402334 -0.01362079 -0.06887769 0.03415787 -0.01360577 -0.06907522 0.03348994 -0.01360869 -0.0689432 0.0336188 -0.01359432 -0.06925082 0.03297847 -0.01359701 -0.0690943 0.0330972 -0.01358366 -0.06950825 0.03250288 -0.01358598 -0.06932717 0.03260666 -0.01357412 -0.06984049 0.03207617 -0.01357597 -0.06963568 0.03215974 -0.01356589 -0.07023841 0.0317099 -0.01370722 -0.07225 0.03756767 -0.0137062 -0.07171094 0.03752303 -0.01370322 -0.0711866 0.03739029 -0.01369833 -0.07069122 0.03717303 -0.01369172 -0.07023841 0.03687727 -0.01368349 -0.06984049 0.03651106 -0.01367396 -0.06950825 0.03608429 -0.01366329 -0.06925082 0.0356087 -0.01365184 -0.06907522 0.03509724 -0.01363986 -0.06898617 0.03456389 -0.01362776 -0.06898617 0.0340231 -0.01361578 -0.06907522 0.0334897 -0.01360434 -0.06925082 0.03297829 -0.01359367 -0.06950825 0.03250271 -0.01358413 -0.06984049 0.03207594 -0.01357591 -0.07023841 0.03170973 -0.01356929 -0.07069122 0.03141391 -0.0135644 -0.0711866 0.03119671 -0.01356142 -0.07171094 0.03106397 -0.01356041 -0.07225 0.03101933 -0.01356142 -0.07278901 0.03106397 -0.0135644 -0.07331335 0.03119671 -0.01356929 -0.07380872 0.03141391 -0.01357591 -0.07426154 0.03170973 -0.01358413 -0.07465946 0.03207594 -0.01359367 -0.0749917 0.03250271 -0.01360434 -0.07524913 0.03297829 -0.01361578 -0.07542479 0.0334897 -0.01362776 -0.07551378 0.0340231 -0.01363986 -0.07551378 0.03456389 -0.01365184 -0.07542479 0.03509724 -0.01366329 -0.07524913 0.0356087 -0.01367396 -0.0749917 0.03608429 -0.01368349 -0.07465946 0.03651106 -0.01369172 -0.07426154 0.03687727 -0.01369833 -0.07380872 0.03717303 -0.01370322 -0.07331335 0.03739029 -0.0137062 -0.07278901 0.03752303 -0.01363378 -0.07225 0.03429347 -0.01356041 0.07274997 0.03101933 -0.01356142 0.0722109 0.03106397 -0.01363378 0.07274997 0.03429347 -0.01356142 0.07328903 0.03106397 -0.01357591 0.0747615 0.03170973 -0.01356929 0.07430869 0.03141391 -0.0135644 0.07381337 0.03119671 -0.01360434 0.07574915 0.03297829 -0.01359367 0.07549172 0.03250271 -0.01358413 0.07515949 0.03207594 -0.01363986 0.0760138 0.03456389 -0.01362776 0.0760138 0.0340231 -0.01361578 0.07592475 0.0334897 -0.01367396 0.07549172 0.03608429 -0.01366329 0.07574915 0.0356087 -0.01365184 0.07592475 0.03509724 -0.01369833 0.07430869 0.03717303 -0.01369172 0.0747615 0.03687727 -0.01368349 0.07515949 0.03651106 -0.01370722 0.07274997 0.03756767 -0.0137062 0.07328903 0.03752303 -0.01370322 0.07381337 0.03739029 -0.01369833 0.07119125 0.03717303 -0.01370322 0.07168656 0.03739029 -0.0137062 0.0722109 0.03752303 -0.01367396 0.07000827 0.03608429 -0.01368349 0.07034051 0.03651106 -0.01369172 0.07073843 0.03687727 -0.01363986 0.06948614 0.03456389 -0.01365184 0.06957519 0.03509724 -0.01366329 0.06975084 0.0356087 -0.01360434 0.06975084 0.03297829 -0.01361578 0.06957519 0.0334897 -0.01362776 0.06948614 0.0340231 -0.01357591 0.07073843 0.03170973 -0.01358413 0.07034051 0.03207594 -0.01359367 0.07000827 0.03250271 -0.0135644 0.07168656 0.03119671 -0.01356929 0.07119125 0.03141391 -0.01355046 0.07274997 0.03101956 -0.01355141 0.07328903 0.03106421 -0.01355439 0.07381337 0.03119695 -0.01355928 0.07430869 0.03141415 -0.01356589 0.0747615 0.0317099 -0.01357412 0.07515949 0.03207617 -0.01358366 0.07549172 0.03250288 -0.01359432 0.07574915 0.03297847 -0.01360577 0.07592475 0.03348994 -0.01361775 0.0760138 0.03402334 -0.01362985 0.0760138 0.03456407 -0.01364183 0.07592475 0.03509747 -0.01365327 0.07574915 0.03560894 -0.01366394 0.07549172 0.03608453 -0.01367354 0.07515949 0.03651124 -0.0136817 0.0747615 0.03687751 -0.01368832 0.07430869 0.03717327 -0.01369321 0.07381337 0.03739047 -0.01369619 0.07328903 0.03752326 -0.0136972 0.07274997 0.03756791 -0.01369619 0.0722109 0.03752326 -0.01369321 0.07168656 0.03739047 -0.01368832 0.07119125 0.03717327 -0.0136817 0.07073843 0.03687751 -0.01367354 0.07034051 0.03651124 -0.01366394 0.07000827 0.03608453 -0.01365327 0.06975084 0.03560894 -0.01364183 0.06957519 0.03509747 -0.01362985 0.06948614 0.03456407 -0.01361775 0.06948614 0.03402334 -0.01360577 0.06957519 0.03348994 -0.01359432 0.06975084 0.03297847 -0.01358366 0.07000827 0.03250288 -0.01357412 0.07034051 0.03207617 -0.01356589 0.07073843 0.0317099 -0.01355928 0.07119125 0.03141415 -0.01355439 0.07168656 0.03119695 -0.01355141 0.0722109 0.03106421 -0.01368039 0.07051193 0.03681927 -0.01368772 0.07094615 0.03714549 -0.01369339 0.0714271 0.03739786 -0.01369726 0.07194226 0.03756982 -0.01369917 0.07247841 0.0376569 -0.01369917 0.07302153 0.0376569 -0.01369726 0.07355767 0.03756982 -0.01369339 0.07407289 0.03739786 -0.01368772 0.07455378 0.03714549 -0.01368039 0.074988 0.03681927 -0.01367163 0.07536429 0.03642767 -0.01366162 0.0756728 0.03598082 -0.01365065 0.07590568 0.03549021 -0.01363891 0.07605677 0.03496861 -0.01362687 0.07612222 0.0344296 -0.01361471 0.07610034 0.03388702 -0.01360279 0.07599174 0.03335499 -0.0135914 0.0757991 0.03284722 -0.01358085 0.07552754 0.032377 -0.01357144 0.07518404 0.03195637 -0.01356333 0.07477748 0.0315963 -0.01355683 0.0743184 0.03130602 -0.01355206 0.07381874 0.03109323 -0.01354914 0.07329136 0.03096324 -0.01354819 0.07274997 0.03091955 -0.01354914 0.07220858 0.03096324 -0.01355206 0.0716812 0.03109323 -0.01355683 0.07118153 0.03130602 -0.01356333 0.07072246 0.0315963 -0.01357144 0.07031589 0.03195637 -0.01358085 0.06997239 0.032377 -0.0135914 0.06970083 0.03284722 -0.01360279 0.06950825 0.03335499 -0.01361471 0.06939959 0.03388702 -0.01362687 0.06937772 0.0344296 -0.01363891 0.06944316 0.03496861 -0.01365065 0.06959432 0.03549021 -0.01366162 0.06982713 0.03598082 -0.01367163 0.07013571 0.03642767 0.02348089 -0.02187681 0.02958875 0.02348113 -0.0218138 0.02957761 0.02346885 -0.02174997 0.03012377 0.02348119 -0.02174997 0.02957391 0.02348113 -0.02168613 0.02957761 0.02347916 -0.02205222 0.02966439 0.02347987 -0.02199679 0.02963238 0.02348047 -0.02193808 0.02960705 0.02347624 -0.02219116 0.0297954 0.02347731 -0.02215003 0.02974641 0.02347832 -0.02210348 0.02970254 0.02347242 -0.02227687 0.02996605 0.02347373 -0.022255 0.02990597 0.02347505 -0.02222627 0.02984881 0.02346813 -0.02229905 0.03015571 0.02346956 -0.02229905 0.03009182 0.02347099 -0.0222916 0.03002828 0.02346402 -0.022255 0.03034156 0.02346533 -0.02227687 0.03028148 0.02346676 -0.0222916 0.03021925 0.02346044 -0.02215003 0.03050112 0.02346152 -0.02219116 0.03045213 0.02346271 -0.02222627 0.03039872 0.02345788 -0.02199679 0.03061515 0.0234586 -0.02205222 0.0305832 0.02345943 -0.02210348 0.03054499 0.02345663 -0.0218138 0.03066992 0.02345687 -0.02187681 0.03065884 0.02345728 -0.02193808 0.03064048 0.02345687 -0.02162313 0.03065884 0.02345663 -0.02168613 0.03066992 0.02345657 -0.02174997 0.03067362 0.0234586 -0.02144777 0.0305832 0.02345788 -0.02150315 0.03061515 0.02345728 -0.02156186 0.03064048 0.02346152 -0.02130883 0.03045213 0.02346044 -0.0213499 0.03050112 0.02345943 -0.02139645 0.03054499 0.02346533 -0.02122306 0.03028148 0.02346402 -0.02124494 0.03034156 0.02346271 -0.02127367 0.03039872 0.02346956 -0.02120089 0.03009182 0.02346813 -0.02120089 0.03015571 0.02346676 -0.02120834 0.03021925 0.02347373 -0.02124494 0.02990597 0.02347242 -0.02122306 0.02996605 0.02347099 -0.02120834 0.03002828 0.02347731 -0.0213499 0.02974641 0.02347624 -0.02130883 0.0297954 0.02347505 -0.02127367 0.02984881 0.02347987 -0.02150315 0.02963238 0.02347916 -0.02144777 0.02966439 0.02347832 -0.02139645 0.02970254 0.02348089 -0.02162313 0.02958875 0.02348047 -0.02156186 0.02960705 0.02347409 -0.02166962 0.02943611 0.02347379 -0.02159029 0.02945005 0.02347326 -0.02151316 0.02947312 0.02347254 -0.02143925 0.02950501 0.02347165 -0.02136951 0.02954524 0.02347058 -0.02130496 0.02959334 0.02346932 -0.02124643 0.0296486 0.02346795 -0.02119463 0.02971023 0.02346646 -0.02115041 0.02977746 0.02346485 -0.02111428 0.02984941 0.02346312 -0.02108675 0.02992504 0.0234614 -0.02106815 0.03000336 0.02345961 -0.02105885 0.03008329 0.02345782 -0.02105885 0.03016376 0.02345603 -0.02106815 0.03024375 0.02345424 -0.02108675 0.03032207 0.02345257 -0.02111428 0.03039771 0.02345097 -0.02115041 0.03046959 0.02344942 -0.02119463 0.03053689 0.02344805 -0.02124643 0.03059852 0.02344679 -0.02130496 0.03065377 0.02344572 -0.02136951 0.03070181 0.02344483 -0.02143925 0.03074204 0.02344411 -0.02151316 0.03077393 0.02344363 -0.02159029 0.030797 0.02344328 -0.02166962 0.03081101 0.02344316 -0.02174997 0.03081566 0.02344328 -0.02183037 0.03081101 0.02344363 -0.02190965 0.030797 0.02344411 -0.02198678 0.03077393 0.02344483 -0.02206069 0.03074204 0.02344572 -0.02213042 0.03070181 0.02344679 -0.02219498 0.03065377 0.02344805 -0.02225357 0.03059852 0.02344942 -0.0223053 0.03053689 0.02345097 -0.02234953 0.03046959 0.02345257 -0.02238565 0.03039771 0.02345424 -0.02241319 0.03032207 0.02345603 -0.02243179 0.03024375 0.02345782 -0.02244114 0.03016376 0.02345961 -0.02244114 0.03008329 0.0234614 -0.02243179 0.03000336 0.02346312 -0.02241319 0.02992504 0.02346485 -0.02238565 0.02984941 0.02346646 -0.02234953 0.02977746 0.02346795 -0.0223053 0.02971023 0.02346932 -0.02225357 0.0296486 0.02347058 -0.02219498 0.02959334 0.02347165 -0.02213042 0.02954524 0.02347254 -0.02206069 0.02950501 0.02347326 -0.02198678 0.02947312 0.02347379 -0.02190965 0.02945005 0.02347409 -0.02183037 0.02943611 0.02347421 -0.02174997 0.0294314 0.02344691 -0.02165341 0.02929699 0.0234465 -0.02155816 0.02931374 0.0234459 -0.02146548 0.02934151 0.02344501 -0.02137666 0.02937978 0.02344393 -0.02129292 0.02942812 0.02344268 -0.02121537 0.02948588 0.02344119 -0.02114498 0.02955222 0.02343952 -0.02108281 0.0296263 0.02343767 -0.02102965 0.02970713 0.02343577 -0.02098625 0.0297935 0.02343374 -0.02095317 0.02988439 0.02343159 -0.02093088 0.02997845 0.02342945 -0.02091968 0.03007453 0.0234273 -0.02091968 0.03017121 0.02342516 -0.02093088 0.03026723 0.02342301 -0.02095317 0.03036135 0.02342098 -0.02098625 0.03045219 0.02341908 -0.02102965 0.03053861 0.02341723 -0.02108281 0.03061944 0.02341556 -0.02114498 0.03069347 0.02341413 -0.02121537 0.03075987 0.02341282 -0.02129292 0.03081756 0.02341175 -0.02137666 0.03086596 0.02341085 -0.02146548 0.03090423 0.02341026 -0.02155816 0.03093194 0.02340984 -0.02165341 0.03094875 0.02340972 -0.02174997 0.03095442 0.02340984 -0.02184653 0.03094875 0.02341026 -0.02194178 0.03093194 0.02341085 -0.02203446 0.03090423 0.02341175 -0.02212327 0.03086596 0.02341282 -0.02220702 0.03081756 0.02341413 -0.02228462 0.03075987 0.02341556 -0.02235496 0.03069347 0.02341723 -0.02241712 0.03061944 0.02341908 -0.02247029 0.03053861 0.02342098 -0.02251368 0.03045219 0.02342301 -0.02254676 0.03036135 0.02342516 -0.02256906 0.03026723 0.0234273 -0.02258032 0.03017121 0.02342945 -0.02258032 0.03007453 0.02343159 -0.02256906 0.02997845 0.02343374 -0.02254676 0.02988439 0.02343577 -0.02251368 0.0297935 0.02343767 -0.02247029 0.02970713 0.02343952 -0.02241712 0.0296263 0.02344119 -0.02235496 0.02955222 0.02344268 -0.02228462 0.02948588 0.02344393 -0.02220702 0.02942812 0.02344501 -0.02212327 0.02937978 0.0234459 -0.02203446 0.02934151 0.0234465 -0.02194178 0.02931374 0.02344691 -0.02184653 0.02929699 0.02344703 -0.02174997 0.02929133 0.0234 -0.02163791 0.02916312 0.02339959 -0.02152734 0.02918261 0.02339887 -0.02141976 0.02921479 0.02339786 -0.0213167 0.02925926 0.02339661 -0.02121949 0.02931535 0.02339512 -0.02112942 0.0293824 0.02339339 -0.02104777 0.02945941 0.02339142 -0.02097558 0.02954536 0.02338933 -0.02091389 0.02963918 0.02338707 -0.02086353 0.02973943 0.02338474 -0.02082514 0.02984493 0.0233823 -0.02079921 0.02995413 0.0233798 -0.02078622 0.03006565 0.02337729 -0.02078622 0.03017789 0.02337479 -0.02079921 0.03028935 0.02337235 -0.02082514 0.03039854 0.02336996 -0.02086353 0.03050404 0.0233677 -0.02091389 0.03060436 0.02336561 -0.02097558 0.03069812 0.0233637 -0.02104777 0.03078407 0.02336198 -0.02112942 0.03086113 0.02336049 -0.02121949 0.03092813 0.02335917 -0.0213167 0.03098428 0.02335822 -0.02141976 0.03102868 0.02335751 -0.02152734 0.03106093 0.02335703 -0.02163791 0.03108042 0.02335691 -0.02174997 0.03108692 0.02335703 -0.02186203 0.03108042 0.02335751 -0.02197259 0.03106093 0.02335822 -0.02208018 0.03102868 0.02335917 -0.02218323 0.03098428 0.02336049 -0.02228045 0.03092813 0.02336198 -0.02237051 0.03086113 0.0233637 -0.02245217 0.03078407 0.02336561 -0.02252435 0.03069812 0.0233677 -0.02258604 0.03060436 0.02336996 -0.02263641 0.03050404 0.02337235 -0.02267485 0.03039854 0.02337479 -0.02270072 0.03028935 0.02337729 -0.02271378 0.03017789 0.0233798 -0.02271378 0.03006565 0.0233823 -0.02270072 0.02995413 0.02338474 -0.02267485 0.02984493 0.02338707 -0.02263641 0.02973943 0.02338933 -0.02258604 0.02963918 0.02339142 -0.02252435 0.02954536 0.02339339 -0.02245217 0.02945941 0.02339512 -0.02237051 0.0293824 0.02339661 -0.02228045 0.02931535 0.02339786 -0.02218323 0.02925926 0.02339887 -0.02208018 0.02921479 0.02339959 -0.02197259 0.02918261 0.0234 -0.02186203 0.02916312 0.02340018 -0.02174997 0.02915656 0.02333444 -0.02162337 0.02903723 0.02333396 -0.02149844 0.02905923 0.02333313 -0.02137696 0.02909559 0.02333199 -0.02126049 0.02914583 0.02333056 -0.02115064 0.02920925 0.0233289 -0.0210489 0.02928495 0.02332693 -0.02095669 0.02937197 0.02332478 -0.02087515 0.02946907 0.0233224 -0.02080547 0.02957504 0.02331984 -0.02074855 0.02968835 0.02331715 -0.02070516 0.0298075 0.02331441 -0.02067589 0.02993088 0.02331161 -0.02066117 0.03005683 0.02330875 -0.02066117 0.03018361 0.02330595 -0.02067589 0.03030955 0.02330315 -0.02070516 0.03043293 0.02330046 -0.02074855 0.03055208 0.02329796 -0.02080547 0.03066539 0.02329558 -0.02087515 0.03077131 0.02329337 -0.02095669 0.03086847 0.02329146 -0.0210489 0.03095549 0.02328974 -0.02115064 0.03103119 0.0232883 -0.02126049 0.03109461 0.02328723 -0.02137696 0.03114479 0.0232864 -0.02149844 0.03118121 0.02328592 -0.02162337 0.03120321 0.02328574 -0.02174997 0.0312106 0.02328592 -0.02187657 0.03120321 0.0232864 -0.0220015 0.03118121 0.02328723 -0.02212297 0.03114479 0.0232883 -0.02223944 0.03109461 0.02328974 -0.02234929 0.03103119 0.02329146 -0.02245104 0.03095549 0.02329337 -0.02254331 0.03086847 0.02329558 -0.02262479 0.03077131 0.02329796 -0.02269452 0.03066539 0.02330046 -0.02275145 0.03055208 0.02330315 -0.02279478 0.03043293 0.02330595 -0.02282404 0.03030955 0.02330875 -0.02283877 0.03018361 0.02331161 -0.02283877 0.03005683 0.02331441 -0.02282404 0.02993088 0.02331715 -0.02279478 0.0298075 0.02331984 -0.02275145 0.02968835 0.0233224 -0.02269452 0.02957504 0.02332478 -0.02262479 0.02946907 0.02332693 -0.02254331 0.02937197 0.0233289 -0.02245104 0.02928495 0.02333056 -0.02234929 0.02920925 0.02333199 -0.02223944 0.02914583 0.02333313 -0.02212297 0.02909559 0.02333396 -0.0220015 0.02905923 0.02333444 -0.02187657 0.02903723 0.02333462 -0.02174997 0.02902984 0.02325153 -0.02161008 0.0289219 0.02325093 -0.02147209 0.02894622 0.02325004 -0.02133786 0.02898639 0.02324879 -0.02120923 0.02904188 0.02324724 -0.02108788 0.02911192 0.02324539 -0.02097553 0.02919554 0.02324318 -0.0208736 0.02929168 0.0232408 -0.02078354 0.02939897 0.02323818 -0.02070653 0.02951604 0.02323538 -0.02064365 0.02964121 0.02323246 -0.02059572 0.02977281 0.02322936 -0.02056342 0.02990913 0.02322626 -0.02054715 0.03004825 0.0232231 -0.02054715 0.03018832 0.02322 -0.02056342 0.03032749 0.02321696 -0.02059572 0.03046375 0.02321398 -0.02064365 0.03059542 0.02321118 -0.02070653 0.03072059 0.02320855 -0.02078354 0.03083759 0.02320617 -0.0208736 0.03094494 0.02320402 -0.02097553 0.03104102 0.02320212 -0.02108788 0.03112471 0.02320057 -0.02120923 0.03119474 0.02319931 -0.02133786 0.03125023 0.02319842 -0.02147209 0.03129041 0.02319788 -0.02161008 0.03131473 0.02319771 -0.02174997 0.03132283 0.02319788 -0.02188986 0.03131473 0.02319842 -0.02202785 0.03129041 0.02319931 -0.02216207 0.03125023 0.02320057 -0.0222907 0.03119474 0.02320212 -0.02241206 0.03112471 0.02320402 -0.02252447 0.03104102 0.02320617 -0.02262634 0.03094494 0.02320855 -0.0227164 0.03083759 0.02321118 -0.02279341 0.03072059 0.02321398 -0.02285629 0.03059542 0.02321696 -0.02290421 0.03046375 0.02322 -0.02293652 0.03032749 0.0232231 -0.02295279 0.03018832 0.02322626 -0.02295279 0.03004825 0.02322936 -0.02293652 0.02990913 0.02323246 -0.02290421 0.02977281 0.02323538 -0.02285629 0.02964121 0.02323818 -0.02279341 0.02951604 0.0232408 -0.0227164 0.02939897 0.02324318 -0.02262634 0.02929168 0.02324539 -0.02252447 0.02919554 0.02324724 -0.02241206 0.02911192 0.02324879 -0.0222907 0.02904188 0.02325004 -0.02216207 0.02898639 0.02325093 -0.02202785 0.02894622 0.02325153 -0.02188986 0.0289219 0.02325171 -0.02174997 0.02891373 0.02315288 -0.02159839 0.02881944 0.02315229 -0.02144885 0.02884578 0.02315133 -0.02130341 0.02888935 0.02314996 -0.02116394 0.02894949 0.02314829 -0.02103245 0.02902537 0.02314621 -0.02091068 0.02911603 0.02314388 -0.02080023 0.02922022 0.02314132 -0.0207026 0.02933651 0.02313846 -0.02061915 0.02946335 0.02313542 -0.02055102 0.02959901 0.0231322 -0.02049911 0.02974164 0.02312892 -0.02046406 0.02988934 0.02312552 -0.02044641 0.03004014 0.02312213 -0.02044641 0.03019195 0.02311873 -0.02046406 0.03034269 0.02311545 -0.02049911 0.03049045 0.02311223 -0.02055102 0.03063309 0.02310919 -0.02061915 0.03076875 0.02310633 -0.0207026 0.03089559 0.02310377 -0.02080023 0.03101187 0.02310138 -0.02091068 0.03111606 0.02309936 -0.02103245 0.03120672 0.02309769 -0.02116394 0.0312826 0.02309632 -0.02130341 0.03134274 0.02309536 -0.02144885 0.03138625 0.02309477 -0.02159839 0.03141266 0.02309459 -0.02174997 0.03142148 0.02309477 -0.02190154 0.03141266 0.02309536 -0.02205109 0.03138625 0.02309632 -0.02219659 0.03134274 0.02309769 -0.022336 0.0312826 0.02309936 -0.02246749 0.03120672 0.02310138 -0.02258932 0.03111606 0.02310377 -0.02269977 0.03101187 0.02310633 -0.02279734 0.03089559 0.02310919 -0.02288079 0.03076875 0.02311223 -0.02294892 0.03063309 0.02311545 -0.02300089 0.03049045 0.02311873 -0.02303588 0.03034269 0.02312213 -0.02305352 0.03019195 0.02312552 -0.02305352 0.03004014 0.02312892 -0.02303588 0.02988934 0.0231322 -0.02300089 0.02974164 0.02313542 -0.02294892 0.02959901 0.02313846 -0.02288079 0.02946335 0.02314132 -0.02279734 0.02933651 0.02314388 -0.02269977 0.02922022 0.02314621 -0.02258932 0.02911603 0.02314829 -0.02246749 0.02902537 0.02314996 -0.022336 0.02894949 0.02315133 -0.02219659 0.02888935 0.02315229 -0.02205109 0.02884578 0.02315288 -0.02190154 0.02881944 0.02315306 -0.02174997 0.02881062 0.02304059 -0.02158844 0.028732 0.02303999 -0.02142912 0.02876007 0.02303892 -0.02127414 0.02880644 0.02303749 -0.02112555 0.02887052 0.0230357 -0.02098548 0.0289514 0.02303349 -0.02085572 0.02904796 0.02303105 -0.020738 0.029159 0.02302825 -0.02063399 0.02928286 0.02302521 -0.02054512 0.02941805 0.02302199 -0.02047252 0.02956259 0.02301859 -0.02041715 0.02971458 0.02301502 -0.02037984 0.02987194 0.02301144 -0.02036106 0.03003263 0.02300781 -0.02036106 0.03019434 0.02300423 -0.02037984 0.03035503 0.02300071 -0.02041715 0.03051239 0.02299726 -0.02047252 0.03066438 0.02299404 -0.02054512 0.03080892 0.022991 -0.02063399 0.03094404 0.02298825 -0.020738 0.03106796 0.02298575 -0.02085572 0.03117895 0.02298361 -0.02098548 0.03127557 0.02298176 -0.02112555 0.03135645 0.02298033 -0.02127414 0.03142052 0.02297931 -0.02142912 0.0314669 0.02297866 -0.02158844 0.03149497 0.02297848 -0.02174997 0.03150439 0.02297866 -0.0219115 0.03149497 0.02297931 -0.02207082 0.0314669 0.02298033 -0.02222579 0.03142052 0.02298176 -0.02237439 0.03135645 0.02298361 -0.02251446 0.03127557 0.02298575 -0.02264428 0.03117895 0.02298825 -0.02276194 0.03106796 0.022991 -0.02286595 0.03094404 0.02299404 -0.02295482 0.03080892 0.02299726 -0.02302742 0.03066438 0.02300071 -0.02308279 0.03051239 0.02300423 -0.0231201 0.03035503 0.02300781 -0.02313888 0.03019434 0.02301144 -0.02313888 0.03003263 0.02301502 -0.0231201 0.02987194 0.02301859 -0.02308279 0.02971458 0.02302199 -0.02302742 0.02956259 0.02302521 -0.02295482 0.02941805 0.02302825 -0.02286595 0.02928286 0.02303105 -0.02276194 0.029159 0.02303349 -0.02264428 0.02904796 0.0230357 -0.02251446 0.0289514 0.02303749 -0.02237439 0.02887052 0.02303892 -0.02222579 0.02880644 0.02303999 -0.02207082 0.02876007 0.02304059 -0.0219115 0.028732 0.02304083 -0.02174997 0.02872258 0.02291691 -0.02158051 0.02866125 0.02291625 -0.02141338 0.02869075 0.02291518 -0.02125078 0.02873939 0.02291369 -0.02109491 0.02880662 0.02291178 -0.02094787 0.0288915 0.02290952 -0.02081173 0.02899283 0.02290689 -0.02068829 0.02910923 0.02290397 -0.02057915 0.02923923 0.02290081 -0.02048587 0.02938103 0.02289742 -0.0204097 0.02953267 0.02289384 -0.02035164 0.02969217 0.02289009 -0.02031254 0.02985727 0.02288633 -0.02029281 0.03002583 0.02288252 -0.02029281 0.03019553 0.02287876 -0.02031254 0.03036409 0.02287507 -0.02035164 0.0305292 0.02287149 -0.0204097 0.03068864 0.02286809 -0.02048587 0.03084033 0.02286493 -0.02057915 0.03098207 0.02286201 -0.02068829 0.03111207 0.02285939 -0.02081173 0.03122854 0.02285712 -0.02094787 0.03132987 0.02285522 -0.02109491 0.03141474 0.02285373 -0.02125078 0.03148192 0.02285259 -0.02141338 0.03153061 0.02285194 -0.02158051 0.03156006 0.02285176 -0.02174997 0.03156995 0.02285194 -0.02191942 0.03156006 0.02285259 -0.02208662 0.03153061 0.02285373 -0.02224922 0.03148192 0.02285522 -0.02240508 0.03141474 0.02285712 -0.02255207 0.03132987 0.02285939 -0.02268821 0.03122854 0.02286201 -0.02281165 0.03111207 0.02286493 -0.02292078 0.03098207 0.02286809 -0.02301406 0.03084033 0.02287149 -0.02309024 0.03068864 0.02287507 -0.02314829 0.0305292 0.02287876 -0.02318745 0.03036409 0.02288252 -0.02320712 0.03019553 0.02288633 -0.02320712 0.03002583 0.02289009 -0.02318745 0.02985727 0.02289384 -0.02314829 0.02969217 0.02289742 -0.02309024 0.02953267 0.02290081 -0.02301406 0.02938103 0.02290397 -0.02292078 0.02923923 0.02290689 -0.02281165 0.02910923 0.02290952 -0.02268821 0.02899283 0.02291178 -0.02255207 0.0288915 0.02291369 -0.02240508 0.02880662 0.02291518 -0.02224922 0.02873939 0.02291625 -0.02208662 0.02869075 0.02291691 -0.02191942 0.02866125 0.02291715 -0.02174997 0.02865141 0.02278441 -0.02157473 0.02860879 0.02278369 -0.02140188 0.02863925 0.02278256 -0.02123367 0.02868956 0.02278101 -0.0210725 0.02875906 0.02277904 -0.02092051 0.02884685 0.02277672 -0.02077966 0.02895164 0.02277398 -0.02065199 0.02907204 0.022771 -0.02053916 0.02920651 0.02276772 -0.02044272 0.02935314 0.0227642 -0.02036392 0.02950996 0.02276051 -0.0203039 0.02967488 0.02275663 -0.02026343 0.02984565 0.02275276 -0.02024304 0.03001993 0.02274882 -0.02024304 0.03019541 0.02274489 -0.02026343 0.03036975 0.02274107 -0.0203039 0.03054052 0.02273738 -0.02036392 0.03070539 0.02273386 -0.02044272 0.03086221 0.02273058 -0.02053916 0.03100883 0.0227276 -0.02065199 0.0311433 0.02272486 -0.02077966 0.0312637 0.02272254 -0.02092051 0.03136855 0.02272057 -0.0210725 0.03145629 0.02271902 -0.02123367 0.03152579 0.02271789 -0.02140188 0.03157609 0.02271717 -0.02157473 0.03160661 0.02271699 -0.02174997 0.0316168 0.02271717 -0.02192521 0.03160661 0.02271789 -0.02209806 0.03157609 0.02271902 -0.02226626 0.03152579 0.02272057 -0.02242743 0.03145629 0.02272254 -0.02257943 0.03136855 0.02272486 -0.02272027 0.0312637 0.0227276 -0.02284795 0.0311433 0.02273058 -0.02296078 0.03100883 0.02273386 -0.02305722 0.03086221 0.02273738 -0.02313601 0.03070539 0.02274107 -0.02319604 0.03054052 0.02274489 -0.02323651 0.03036975 0.02274882 -0.02325689 0.03019541 0.02275276 -0.02325689 0.03001993 0.02275663 -0.02323651 0.02984565 0.02276051 -0.02319604 0.02967488 0.0227642 -0.02313601 0.02950996 0.02276772 -0.02305722 0.02935314 0.022771 -0.02296078 0.02920651 0.02277398 -0.02284795 0.02907204 0.02277672 -0.02272027 0.02895164 0.02277904 -0.02257943 0.02884685 0.02278101 -0.02242743 0.02875906 0.02278256 -0.02226626 0.02868956 0.02278369 -0.02209806 0.02863925 0.02278441 -0.02192521 0.02860879 0.02278459 -0.02174997 0.02859854 0.02264565 -0.02157121 0.02857553 0.02264499 -0.02139484 0.02860659 0.0226438 -0.0212233 0.02865797 0.02264225 -0.02105891 0.02872884 0.02264022 -0.02090382 0.02881836 0.02263784 -0.02076017 0.02892529 0.0226351 -0.02062994 0.02904814 0.022632 -0.02051484 0.02918529 0.02262866 -0.02041643 0.02933484 0.02262508 -0.02033609 0.02949482 0.02262133 -0.02027481 0.02966302 0.02261739 -0.02023357 0.02983725 0.0226134 -0.02021276 0.03001505 0.02260941 -0.02021276 0.03019404 0.02260541 -0.02023357 0.0303719 0.02260148 -0.02027481 0.03054606 0.02259773 -0.02033609 0.03071427 0.02259415 -0.02041643 0.03087425 0.02259081 -0.02051484 0.03102385 0.02258771 -0.02062994 0.03116101 0.02258497 -0.02076017 0.03128385 0.02258259 -0.02090382 0.03139072 0.02258056 -0.02105891 0.03148025 0.02257901 -0.0212233 0.03155112 0.02257782 -0.02139484 0.0316025 0.02257716 -0.02157121 0.03163355 0.02257692 -0.02174997 0.03164398 0.02257716 -0.02192872 0.03163355 0.02257782 -0.02210509 0.0316025 0.02257901 -0.02227663 0.03155112 0.02258056 -0.02244102 0.03148025 0.02258259 -0.02259612 0.03139072 0.02258497 -0.02273976 0.03128385 0.02258771 -0.02287 0.03116101 0.02259081 -0.0229851 0.03102385 0.02259415 -0.0230835 0.03087425 0.02259773 -0.02316385 0.03071427 0.02260148 -0.02322512 0.03054606 0.02260541 -0.02326643 0.0303719 0.02260941 -0.02328717 0.03019404 0.0226134 -0.02328717 0.03001505 0.02261739 -0.02326643 0.02983725 0.02262133 -0.02322512 0.02966302 0.02262508 -0.02316385 0.02949482 0.02262866 -0.0230835 0.02933484 0.022632 -0.0229851 0.02918529 0.0226351 -0.02287 0.02904814 0.02263784 -0.02273976 0.02892529 0.02264022 -0.02259612 0.02881836 0.02264225 -0.02244102 0.02872884 0.0226438 -0.02227663 0.02865797 0.02264499 -0.02210509 0.02860659 0.02264565 -0.02192872 0.02857553 0.02264589 -0.02174997 0.0285651 0.02250361 -0.02157002 0.02856224 0.02250289 -0.02139252 0.02859354 0.02250176 -0.02121984 0.02864521 0.02250015 -0.02105432 0.02871656 0.02249813 -0.02089822 0.02880668 0.02249574 -0.02075368 0.02891427 0.02249294 -0.02062255 0.02903795 0.02248984 -0.02050668 0.02917599 0.0224865 -0.02040761 0.02932655 0.02248287 -0.02032673 0.0294876 0.02247911 -0.0202651 0.02965694 0.02247518 -0.02022349 0.0298323 0.02247112 -0.02020257 0.03001123 0.02246713 -0.02020257 0.03019148 0.02246308 -0.02022349 0.03037047 0.02245914 -0.0202651 0.03054583 0.02245539 -0.02032673 0.03071516 0.02245175 -0.02040761 0.03087615 0.02244842 -0.02050668 0.03102672 0.02244532 -0.02062255 0.03116476 0.02244251 -0.02075368 0.03128844 0.02244013 -0.02089822 0.03139603 0.0224381 -0.02105432 0.03148615 0.02243649 -0.02121984 0.0315575 0.02243536 -0.02139252 0.03160917 0.02243465 -0.02157002 0.03164047 0.02243441 -0.02174997 0.03165096 0.02243465 -0.02192991 0.03164047 0.02243536 -0.02210742 0.03160917 0.02243649 -0.02228009 0.0315575 0.0224381 -0.02244561 0.03148615 0.02244013 -0.02260172 0.03139603 0.02244251 -0.02274632 0.03128844 0.02244532 -0.02287739 0.03116476 0.02244842 -0.02299326 0.03102672 0.02245175 -0.02309232 0.03087615 0.02245539 -0.02317321 0.03071516 0.02245914 -0.02323484 0.03054583 0.02246308 -0.02327644 0.03037047 0.02246713 -0.02329736 0.03019148 0.02247112 -0.02329736 0.03001123 0.02247518 -0.02327644 0.0298323 0.02247911 -0.02323484 0.02965694 0.02248287 -0.02317321 0.0294876 0.0224865 -0.02309232 0.02932655 0.02248984 -0.02299326 0.02917599 0.02249294 -0.02287739 0.02903795 0.02249574 -0.02274632 0.02891427 0.02249813 -0.02260172 0.02880668 0.02250015 -0.02244561 0.02871656 0.02250176 -0.02228009 0.02864521 0.02250289 -0.02210742 0.02859354 0.02250361 -0.02192991 0.02856224 0.02250385 -0.02174997 0.02855175 0.01899999 -0.02375656 7.39039e-4 0.01899999 -0.02266055 6.52861e-4 0.02100002 -0.02274388 6.52887e-4 0.02100002 -0.02383989 7.39066e-4 0.02100002 -0.02592462 0.001415789 0.01899999 -0.02584123 0.001415789 0.02099996 -0.02769792 0.00270313 0.01899999 -0.02761459 0.00270307 0.02099996 -0.02898633 0.004474937 0.01899999 -0.028903 0.004474878 0.02099996 -0.02966374 0.006557822 0.01899993 -0.02958041 0.006557762 0.01899993 -0.02966666 0.007652819 0.0209999 -0.02966374 0.008747875 -0.03100001 -0.0275833 0.007652223 -0.03851199 -0.02431678 0.001938164 -0.03099995 -0.02375793 0.001415193 -0.03851503 -0.02533698 0.002832233 -0.03099995 -0.02553129 0.002702474 -0.03851753 -0.02617168 0.003903269 -0.03099995 -0.0268197 0.004474282 -0.03851848 -0.02650183 0.004476487 -0.03850466 -0.02185004 8.31365e-4 -0.03099995 -0.0216732 7.38428e-4 -0.03850847 -0.0231412 0.001261532 -0.03850942 -0.02344876 0.001408576 -0.0385006 -0.0205 6.56099e-4 -0.03285413 -0.0205 6.52222e-4 -0.03099995 -0.02057725 6.52242e-4 0.0209999 -0.02898633 0.01083081 -0.0385192 -0.02670127 0.01041275 -0.03852039 -0.02711427 0.009118854 -0.03852057 -0.02718394 0.00874722 -0.03852081 -0.02727121 0.007767558 -0.03100001 -0.02749705 0.006557166 -0.03852051 -0.02716428 0.006413459 -0.03851938 -0.02679079 0.005110561 0.02099984 -0.02769792 0.01260262 -0.03851723 -0.02604883 0.01160204 -0.0385186 -0.02650594 0.0108298 -0.03850954 -0.02344506 0.01388931 -0.03851151 -0.02412015 0.01349633 0.02099984 -0.02592462 0.0138899 -0.03851467 -0.02517771 0.01264256 -0.03851479 -0.0252183 0.01260209 -0.03850799 -0.02291822 0.01413053 0.02099984 -0.02383989 0.01456665 -0.03850412 -0.02161675 0.01451987 0.02099984 -0.02274388 0.01465284 -0.03850013 -0.02026474 0.01465213 -0.03899997 -0.02575039 0.004171073 -0.03896433 -0.02590554 0.004072427 -0.0389645 -0.02649641 0.005225419 -0.03898763 -0.0205 0.00104779 -0.03892612 -0.0205 8.95604e-4 -0.03896307 -0.02177923 0.001136422 -0.03896343 -0.02301239 0.001548171 -0.03899991 -0.0229361 0.001717984 -0.03899991 -0.02173697 0.001318514 -0.03899997 -0.02402782 0.002346277 -0.03896379 -0.02413493 0.00219506 -0.0388593 -0.02422875 0.002062499 -0.03899997 -0.0263254 0.005292117 -0.03896462 -0.02685284 0.006469488 -0.03899997 -0.02667224 0.006501972 -0.03896468 -0.02695488 0.007762372 -0.03900003 -0.0267716 0.007759332 -0.03900003 -0.02662581 0.00901407 -0.03896462 -0.02680504 0.009052515 -0.03886222 -0.02696269 0.00908631 -0.03896439 -0.0257883 0.01142382 -0.03896415 -0.02495682 0.01241779 -0.03900003 -0.02563637 0.01131993 -0.03900009 -0.02482736 0.01228612 -0.03896385 -0.02394717 0.01323366 -0.03900009 -0.02384519 0.01307886 -0.03900009 -0.02272897 0.01366776 -0.03896355 -0.02279943 0.01384007 -0.03885799 -0.02286112 0.01399087 -0.03896921 -0.02026474 0.0143252 -0.03900009 -0.02026474 0.0141521 -0.03900009 -0.02152031 0.01402932 -0.03899997 -0.02497529 0.00317651 -0.03896409 -0.02510887 0.003049373 -0.03886038 -0.02522605 0.002937793 -0.03870266 -0.02530574 0.002861976 -0.0388624 -0.02711606 0.007765054 -0.03886228 -0.02701163 0.006440937 -0.03886187 -0.02664673 0.005166769 -0.03886121 -0.0260418 0.003985762 -0.03900003 -0.02624225 0.01021558 -0.03896456 -0.02641093 0.010288 -0.03886181 -0.02655923 0.01035171 -0.03870552 -0.02666062 0.01039522 -0.03885924 -0.02403646 0.01336932 -0.03886032 -0.02507036 0.01253336 -0.03886121 -0.02592176 0.01151514 -0.03896319 -0.02155637 0.01421284 -0.03885668 -0.0215879 0.01437312 -0.03869521 -0.021609 0.01448041 -0.03881371 -0.0205 7.67105e-4 -0.0386666 -0.0205 6.853e-4 -0.03885674 -0.02181613 9.77366e-4 -0.03869551 -0.02184092 8.70774e-4 -0.03869813 -0.02312421 0.00129944 -0.0387063 -0.02707064 0.009109437 -0.03870666 -0.0272265 0.007766842 -0.03870642 -0.02712035 0.006421387 -0.03870564 -0.02674949 0.005126655 -0.03870433 -0.02613472 0.003926694 -0.03869783 -0.0229026 0.01409232 -0.03870028 -0.0240969 0.01346105 -0.03870242 -0.02514755 0.01261186 -0.03870421 -0.02601277 0.0115773 -0.03885805 -0.02307921 0.001399576 -0.03870058 -0.02429234 0.001972794 -0.03899991 -0.0205 0.001156389 -0.03885364 -0.02026474 0.01450562 -0.03867316 -0.02026474 0.01462119 -0.03850013 0.0207647 0.01465213 -0.03867316 0.0207647 0.01462119 -0.03885364 0.0207647 0.01450562 -0.03896921 0.0207647 0.0143252 -0.03900009 0.0207647 0.0141521 0.01126843 -0.01824998 0.01465272 0.01126843 -0.01224994 0.01465272 0.01726841 -0.01224994 0.01465278 0.01726841 -0.01824998 0.01465278 0.02099984 0.0232439 0.01465284 0.01726841 0.01274996 0.01465278 0.01126843 0.01274996 0.01465272 0.01126843 0.01874995 0.01465272 0.01726841 0.01874995 0.01465278 0.0205 -0.02274388 0.002018868 0.0205 0.0232439 0.002018868 0.02049988 0.0232439 0.01328682 0.0205 0.02434366 0.002126991 0.02049988 0.02434366 0.0131787 0.0205 0.02540129 0.002447307 0.02049988 0.02540129 0.01285839 0.02049988 -0.02274388 0.01328682 0.02049988 -0.02384364 0.0131787 0.0205 -0.02384364 0.002126991 0.02049988 -0.02490127 0.01285839 0.0205 -0.02490127 0.002447307 0.02049988 0.02637618 0.0123381 0.0205 0.02637618 0.002967596 0.02049988 0.02723091 0.01163774 0.0205 0.02723091 0.00366795 0.02049988 0.02793264 0.01078408 0.02049994 0.02793264 0.004521608 0.02049988 0.02845424 0.009809851 0.02049994 0.02845424 0.005495846 0.02049994 0.02877545 0.008752584 0.02049994 0.02877545 0.006553173 0.02049994 0.02888393 0.007652819 0.0205 -0.02587616 0.002967596 0.02049988 -0.02587616 0.0123381 0.0205 -0.02673095 0.00366795 0.02049988 -0.02673095 0.01163774 0.02049994 -0.02743268 0.004521608 0.02049988 -0.02743268 0.01078408 0.02049994 -0.02795422 0.005495846 0.02049988 -0.02795422 0.009809851 0.02049994 -0.02827548 0.006553173 0.02049994 -0.02827548 0.008752584 0.02049994 -0.02838397 0.007652819 0.02052724 -0.02274388 0.001856088 0.02051782 -0.02386879 0.002000451 0.02051782 -0.02495056 0.002328097 0.02051782 -0.0259478 0.002860248 0.02051776 -0.02682209 0.003576636 0.02051776 -0.02753984 0.004449844 0.02051776 -0.02807337 0.005446374 0.02051776 -0.02840197 0.00652796 0.02051776 -0.02851295 0.007652878 0.0205177 -0.02840197 0.008777737 0.0205177 -0.02807337 0.009859323 0.0205177 -0.02753984 0.01085585 0.0205177 -0.02682209 0.01172906 0.0205177 -0.0259478 0.01244544 0.02051764 -0.02495056 0.0129776 0.02051764 -0.02386879 0.01330524 0.02052712 -0.02274388 0.0134496 0.02056765 -0.02274388 0.001769244 0.02056831 -0.02389222 0.001882553 0.02056831 -0.02499651 0.002216994 0.02056831 -0.0260145 0.002760291 0.02056831 -0.02690702 0.00349158 0.02056831 -0.0276398 0.004382967 0.02056825 -0.02818441 0.0054003 0.02056825 -0.02851986 0.006504416 0.02056825 -0.02863317 0.007652819 0.02056825 -0.02851986 0.008801221 0.02056825 -0.02818441 0.009905397 0.02056819 -0.0276398 0.01092272 0.02056819 -0.02690702 0.01181411 0.02056819 -0.0260145 0.01254546 0.02056819 -0.02499651 0.0130887 0.02056819 -0.02389222 0.01342314 0.02056753 -0.02274388 0.01353645 0.02062267 -0.02274388 0.001690864 0.02064716 -0.02391242 0.001780688 0.02064716 -0.02503621 0.002121031 0.02064716 -0.02607214 0.002673864 0.02064716 -0.0269804 0.003418087 0.02064716 -0.02772611 0.004325211 0.0206471 -0.02828031 0.005360543 0.0206471 -0.02862173 0.00648415 0.0206471 -0.028737 0.007652878 0.0206471 -0.02862173 0.008821547 0.02064704 -0.02828031 0.009945154 0.02064704 -0.02772611 0.01098048 0.02064704 -0.0269804 0.0118876 0.02064704 -0.02607214 0.01263183 0.02064704 -0.02503621 0.01318466 0.02064704 -0.02391242 0.013525 0.02062249 -0.02274388 0.01361483 0.02074998 -0.02274388 0.001585841 0.02074998 -0.02392822 0.001702368 0.02074998 -0.02506715 0.002047359 0.02074998 -0.02611696 0.002607703 0.02074998 -0.02703732 0.003361999 0.02074998 -0.02779287 0.004281282 0.02074998 -0.02835434 0.005330324 0.02074992 -0.02870017 0.006468772 0.02074992 -0.02881693 0.007652878 0.02074992 -0.02870017 0.008836925 0.02074992 -0.02835434 0.009975373 0.02074986 -0.02779287 0.01102441 0.02074986 -0.02703732 0.01194369 0.02074986 -0.02611696 0.01269799 0.02074986 -0.02506715 0.01325833 0.02074986 -0.02392822 0.01360338 0.02074986 -0.02274388 0.01371985 0.02052712 0.0232439 0.0134496 0.02056753 0.0232439 0.01353645 0.02062249 0.0232439 0.01361483 0.02074986 0.0232439 0.01371985 0.02051764 0.02436876 0.01330524 0.02051764 0.02545058 0.0129776 0.0205177 0.02644777 0.01244544 0.0205177 0.02732211 0.01172906 0.0205177 0.02803987 0.01085585 0.0205177 0.02857339 0.009859323 0.0205177 0.02890199 0.008777737 0.02051776 0.02901297 0.007652878 0.02051776 0.02890199 0.00652796 0.02051776 0.02857339 0.005446374 0.02051776 0.02803987 0.004449844 0.02051776 0.02732211 0.003576636 0.02051782 0.02644777 0.002860248 0.02051782 0.02545058 0.002328097 0.02051782 0.02436876 0.002000451 0.02052724 0.0232439 0.001856088 0.02056819 0.02439218 0.01342314 0.02056819 0.02549648 0.0130887 0.02056819 0.02651447 0.01254546 0.02056819 0.02740705 0.01181411 0.02056819 0.02813977 0.01092272 0.02056825 0.02868443 0.009905397 0.02056825 0.02901989 0.008801221 0.02056825 0.0291332 0.007652819 0.02056825 0.02901989 0.006504416 0.02056825 0.02868443 0.0054003 0.02056831 0.02813977 0.004382967 0.02056831 0.02740705 0.00349158 0.02056831 0.02651447 0.002760291 0.02056831 0.02549648 0.002216994 0.02056831 0.02439218 0.001882553 0.02056765 0.0232439 0.001769244 0.02064704 0.02441245 0.013525 0.02064704 0.02553617 0.01318466 0.02064704 0.0265721 0.01263183 0.02064704 0.02748042 0.0118876 0.02064704 0.02822607 0.01098048 0.02064704 0.02878034 0.009945154 0.0206471 0.02912175 0.008821547 0.0206471 0.02923703 0.007652878 0.0206471 0.02912175 0.00648415 0.0206471 0.02878034 0.005360543 0.02064716 0.02822607 0.004325211 0.02064716 0.02748042 0.003418087 0.02064716 0.0265721 0.002673864 0.02064716 0.02553617 0.002121031 0.02064716 0.02441245 0.001780688 0.02062267 0.0232439 0.001690864 0.02074986 0.02442824 0.01360338 0.02074986 0.02556717 0.01325833 0.02074986 0.02661699 0.01269799 0.02074986 0.02753734 0.01194369 0.02074986 0.02829283 0.01102441 0.02074992 0.02885437 0.009975373 0.02074992 0.02920019 0.008836925 0.02074992 0.02931696 0.007652878 0.02074992 0.02920019 0.006468772 0.02074998 0.02885437 0.005330324 0.02074998 0.02829283 0.004281282 0.02074998 0.02753734 0.003361999 0.02074998 0.02661699 0.002607703 0.02074998 0.02556717 0.002047359 0.02074998 0.02442824 0.001702368 0.02074998 0.0232439 0.001585841 0.02085328 0.0232439 0.00150609 0.02085328 -0.02274388 0.00150609 0.02087736 0.0232439 0.001480877 0.02087736 -0.02274388 0.001480877 0.02097278 -0.02274388 0.001315653 0.02097278 0.0232439 0.001315653 0.02100002 -0.02274388 0.001152873 0.02100002 0.0232439 0.001152873 0.02098202 0.02448749 0.01390153 0.0209726 0.0232439 0.0139901 0.02087724 0.0232439 0.01382482 0.0208531 0.0232439 0.0137996 0.02085268 0.0244438 0.01368176 0.02085268 0.02559769 0.01333218 0.02085268 0.02666133 0.01276451 0.02085268 0.02759385 0.01200026 0.02085274 0.02835929 0.01106888 0.02085274 0.02892816 0.01000601 0.02085274 0.02927857 0.008852541 0.02085274 0.02939689 0.007652878 0.0208528 0.02927857 0.006453156 0.0208528 0.02892816 0.005299687 0.0208528 0.02835929 0.004236817 0.0208528 0.02759385 0.003305435 0.0208528 0.02666133 0.002541244 0.0208528 0.02559769 0.001973509 0.02085286 0.0244438 0.001623928 0.02093154 0.02446407 0.01378363 0.02093154 0.02563738 0.01342815 0.02093154 0.02671897 0.01285088 0.02093154 0.02766722 0.01207375 0.0209316 0.0284456 0.01112663 0.0209316 0.02902412 0.01004582 0.0209316 0.02938044 0.008872807 0.0209316 0.02950072 0.007652878 0.0209316 0.02938044 0.00643289 0.02093166 0.02902412 0.005259931 0.02093166 0.0284456 0.00417906 0.02093166 0.02766722 0.003231942 0.02093166 0.02671897 0.002454817 0.02093166 0.02563738 0.001877546 0.02093166 0.02446407 0.001522123 0.0209822 0.02448749 0.001404166 0.0209822 0.02568334 0.001766443 0.0209822 0.02678573 0.00235486 0.0209822 0.02775216 0.003146886 0.02098214 0.02854549 0.004112243 0.02098214 0.02913516 0.005213856 0.02098214 0.02949833 0.006409406 0.02098214 0.02962094 0.007652878 0.02098208 0.02949833 0.008896291 0.02098208 0.02913516 0.01009184 0.02098208 0.02854549 0.01119351 0.02098208 0.02775216 0.01215881 0.02098208 0.02678573 0.01295089 0.02098202 0.02568334 0.01353925 0.02099984 0.0232439 0.01415288 0.02099984 0.02451258 0.01402807 0.02099984 0.02573269 0.01365846 0.02099984 0.02685731 0.01305818 0.02099984 0.02784329 0.01225012 0.0209999 0.02865272 0.01126521 0.0209999 0.02925431 0.01014131 0.0209999 0.02962487 0.008921504 0.0209999 0.02974998 0.007652878 0.02099996 0.02962487 0.006384193 0.02099996 0.02925431 0.005164444 0.02099996 0.02865272 0.004040479 0.02099996 0.02784329 0.003055572 0.02100002 0.02685731 0.002247512 0.02100002 0.02573269 0.001647233 0.02100002 0.02451258 0.001277625 0.0208531 -0.02274388 0.0137996 0.02087724 -0.02274388 0.01382482 0.0209726 -0.02274388 0.0139901 0.02099984 -0.02274388 0.01415288 0.0209822 -0.02398747 0.001404166 0.02085286 -0.02394384 0.001623928 0.0208528 -0.02509772 0.001973509 0.0208528 -0.02616137 0.002541244 0.0208528 -0.02709382 0.003305435 0.0208528 -0.02785927 0.004236817 0.0208528 -0.02842819 0.005299687 0.0208528 -0.02877855 0.006453156 0.02085274 -0.02889686 0.007652878 0.02085274 -0.02877855 0.008852541 0.02085274 -0.02842819 0.01000601 0.02085274 -0.02785927 0.01106888 0.02085268 -0.02709382 0.01200026 0.02085268 -0.02616137 0.01276451 0.02085268 -0.02509772 0.01333218 0.02085268 -0.02394384 0.01368176 0.02093166 -0.02396404 0.001522123 0.02093166 -0.02513742 0.001877546 0.02093166 -0.02621901 0.002454817 0.02093166 -0.0271672 0.003231942 0.02093166 -0.02794557 0.00417906 0.02093166 -0.0285241 0.005259931 0.0209316 -0.02888041 0.00643289 0.0209316 -0.02900075 0.007652878 0.0209316 -0.02888041 0.008872807 0.0209316 -0.0285241 0.01004582 0.0209316 -0.02794557 0.01112663 0.02093154 -0.0271672 0.01207375 0.02093154 -0.02621901 0.01285088 0.02093154 -0.02513742 0.01342815 0.02093154 -0.02396404 0.01378363 0.02098202 -0.02398747 0.01390153 0.02098202 -0.02518337 0.01353925 0.02098208 -0.0262857 0.01295089 0.02098208 -0.02725213 0.01215881 0.02098208 -0.02804547 0.01119351 0.02098208 -0.02863514 0.01009184 0.02098208 -0.02899831 0.008896291 0.02098214 -0.02912098 0.007652878 0.02098214 -0.02899831 0.006409406 0.02098214 -0.02863514 0.005213856 0.02098214 -0.02804547 0.004112243 0.0209822 -0.02725213 0.003146886 0.0209822 -0.0262857 0.00235486 0.0209822 -0.02518337 0.001766443 0.02100002 -0.02401262 0.001277625 0.02100002 -0.02523267 0.001647233 0.02100002 -0.02635729 0.002247512 0.02099996 -0.02734333 0.003055572 0.02099996 -0.0281527 0.004040479 0.02099996 -0.02875429 0.005164444 0.02099996 -0.02912485 0.006384193 0.0209999 -0.02924996 0.007652878 0.0209999 -0.02912485 0.008921504 0.0209999 -0.02875429 0.01014131 0.0209999 -0.0281527 0.01126521 0.02099984 -0.02734333 0.01225012 0.02099984 -0.02635729 0.01305818 0.02099984 -0.02523267 0.01365846 0.02099984 -0.02401262 0.01402807 0.0209999 0.0301637 0.008747875 0.02099996 0.0301637 0.006557822 0.02099996 0.02948635 0.004474937 0.02099996 0.02819794 0.00270313 0.02100002 0.02642458 0.001415789 0.0209999 0.02948635 0.01083081 0.02100002 0.02433991 7.39066e-4 0.02100002 0.0232439 6.52887e-4 0.02099984 0.02642458 0.0138899 0.02099984 0.02819794 0.01260262 0.02099984 0.02433991 0.01456665 0.01899999 0.02316057 6.52861e-4 0.01899999 0.02425658 7.39039e-4 0.01899993 0.02466189 0.007652819 0.01899993 -0.02416187 0.007652819 0.01899999 0.02634125 0.001415789 0.01899993 0.03016662 0.007652819 0.01899993 0.03008037 0.006557762 0.01899993 0.02466189 0.008652806 0.01899993 -0.02416187 0.008652806 0.01899999 0.02940303 0.004474878 0.01899999 0.02811461 0.00270307 -0.03100001 -0.02207851 0.007652223 -0.03099995 -0.0205 6.52242e-4 -0.03100001 -0.0205 0.00865221 -0.03100001 -0.02207851 0.00865221 -0.03370094 -0.0205 0.002779364 -0.03349995 -0.0205 0.003529369 -0.03900003 -0.0205 0.009652137 -0.03100001 -0.0205 0.009652197 -0.03499996 -0.0205 0.00502932 -0.03574997 -0.0205 0.004828393 -0.03629899 -0.0205 0.004279315 -0.03370094 -0.0205 0.004279375 -0.03424996 -0.0205 0.004828393 -0.03424996 -0.0205 0.002230286 -0.03499996 -0.0205 0.002029359 -0.03574997 -0.0205 0.002230286 -0.03649997 -0.0205 0.00352931 -0.03629899 -0.0205 0.002779304 -0.03100001 0.02099996 0.009652197 -0.03900003 0.02099996 0.009652137 -0.03285413 0.02099996 6.52222e-4 -0.03099995 0.02099996 6.52242e-4 -0.03370094 0.02099996 0.002779364 -0.03574997 0.02099996 0.004828393 -0.03499996 0.02099996 0.00502932 -0.03424996 0.02099996 0.004828393 -0.03100001 0.02099996 0.00865221 -0.03370094 0.02099996 0.004279375 -0.03349995 0.02099996 0.003529369 -0.03424996 0.02099996 0.002230286 -0.03499996 0.02099996 0.002029359 -0.0385006 0.02099996 6.56099e-4 -0.03574997 0.02099996 0.002230286 -0.03860855 0.02099996 6.68409e-4 -0.03629899 0.02099996 0.002779304 -0.03869163 0.02099996 6.94968e-4 -0.03876072 0.02099996 7.30043e-4 -0.03888916 0.02099996 8.42694e-4 -0.03897094 0.02099996 9.90122e-4 -0.03899991 0.02099996 0.001156389 -0.03649997 0.02099996 0.00352931 -0.03629899 0.02099996 0.004279315 -0.03899997 0.02452504 0.002348423 -0.03899991 0.02342993 0.001722753 -0.03899991 0.02223408 0.001320779 -0.03900009 0.02202045 0.0140292 -0.03900009 0.02532649 0.01228678 -0.03900009 0.02613604 0.01132017 -0.03900003 0.02674311 0.01021486 -0.03900003 0.02712619 0.009013712 -0.03900003 0.02726924 0.00776112 -0.03900003 0.02716892 0.006504476 -0.03899997 0.02682632 0.005291283 -0.03900009 0.02322918 0.01366764 -0.03900009 0.02434486 0.0130791 -0.03899997 0.02625626 0.004166424 -0.03899997 0.02547937 0.003173232 -0.0385186 0.0270062 0.01082998 -0.0385192 0.02720218 0.01041203 -0.03870445 0.02716195 0.01039475 -0.03886026 0.02706164 0.01035165 -0.03896325 0.02691477 0.01028859 -0.03896307 0.02629065 0.01142591 -0.03896319 0.02700036 0.005223393 -0.03896301 0.02641421 0.00406599 -0.03885507 0.02231353 9.78065e-4 -0.03896176 0.02227699 0.001135528 -0.03869444 0.02233797 8.72691e-4 -0.03850466 0.02234691 8.33773e-4 -0.03896182 0.02205717 0.01421594 -0.03896254 0.02444857 0.01323664 -0.03896284 0.02545815 0.01242077 -0.03896278 0.02561539 0.00304383 -0.03896212 0.02350741 0.001550078 -0.03896224 0.02330088 0.01384294 -0.03885638 0.02336192 0.01399224 -0.03885763 0.02453702 0.01337099 -0.03896337 0.02730858 0.009052872 -0.03886067 0.02746474 0.00908631 -0.03870528 0.02757155 0.009109199 -0.03885769 0.0247268 0.002063333 -0.03885877 0.02573156 0.002933263 -0.0388596 0.02654933 0.0039801 -0.03886026 0.02714926 0.005165338 -0.03885644 0.02357345 0.001402974 -0.03896248 0.02463394 0.002194583 -0.03870135 0.02564692 0.01261287 -0.0386992 0.02459681 0.0134617 -0.03869676 0.02340298 0.01409256 -0.03869706 0.02361786 0.00130403 -0.0386995 0.02478963 0.001974642 -0.03870159 0.02581048 0.002858221 -0.03870332 0.02664136 0.003921627 -0.03870457 0.02725094 0.005125641 -0.03869414 0.02210927 0.01448076 -0.03885501 0.02208834 0.01437467 -0.03850412 0.02211689 0.01451975 -0.03850799 0.02341842 0.01413035 -0.03850954 0.02394509 0.01388925 -0.03851157 0.02461975 0.01349657 -0.03851467 0.02567678 0.01264327 -0.03851479 0.02571833 0.01260197 -0.03885871 0.02557063 0.01253527 -0.03870314 0.0265128 0.01157784 -0.03851723 0.0265485 0.01160234 -0.0388596 0.02642279 0.01151633 -0.03852039 0.02761465 0.009118497 -0.03852057 0.02768367 0.00874716 -0.03870558 0.0277245 0.00776875 -0.03886079 0.02761524 0.007766962 -0.03896337 0.02745562 0.007764279 -0.03852081 0.02776873 0.007769525 -0.03870534 0.02761727 0.006424009 -0.03886067 0.02750974 0.006443321 -0.03896331 0.02735257 0.006471514 -0.03852051 0.02766072 0.006416201 -0.03851938 0.02729183 0.005109727 -0.03851854 0.0270065 0.004474103 -0.03851753 0.02667796 0.003898262 -0.03851503 0.02584141 0.002828717 -0.03851199 0.02481383 0.001940429 -0.03850936 0.02394503 0.001415073 -0.03850847 0.02363461 0.001266658 -0.03100001 0.02808332 0.007652223 -0.03099995 0.02731966 0.004474282 -0.03100001 0.02799707 0.006557166 -0.03099995 0.02603125 0.002702474 -0.03099995 0.02425789 0.001415193 -0.03099995 0.02107721 6.52242e-4 -0.03099995 0.02217322 7.38428e-4 -0.03100001 0.02257853 0.007652223 -0.03100001 0.02257853 0.00865221 + + + + + + + + + + -1 1.07175e-6 -8.11549e-7 -1 0 5.29158e-7 -1 1.44946e-6 1.13921e-6 -1 0 2.05089e-7 -1 9.73516e-7 -1.82224e-6 -1 0 1.36066e-6 -1 -7.31217e-5 4.59752e-5 -1 -1.45188e-4 7.32926e-5 -1 1.73739e-5 -1.74321e-5 -1 0 1.19843e-5 -1 3.38475e-5 -9.60058e-7 -0.04264372 -0.9893645 -0.1390668 -0.04278314 -0.9976046 0.05435782 -0.04365086 -0.9982733 -0.03931051 -0.04229652 -0.9837118 0.1747065 -0.04000216 -0.9253076 0.3771017 -0.04070544 -0.9367169 0.3477137 -0.03594243 -0.8395668 0.5420662 -0.03247326 -0.7472326 0.6637688 -0.03157377 -0.7291558 0.683619 -0.02316987 -0.546485 0.8371484 -0.02103638 -0.4860233 0.8736926 -0.008081376 -0.1936099 0.9810453 -0.007260799 -0.1702722 0.9853703 -0.01976764 -0.9990319 -0.03930014 0.2183897 -0.8503379 -0.4787812 0.1445364 -0.8262711 -0.544413 0.2237281 -0.7417594 -0.6322489 0.2232969 -0.7416487 -0.6325312 0.1627258 -0.6748716 -0.7197699 0.2611158 -0.5848056 -0.767998 0.8558938 -0.1525093 0.4941526 0.867123 -0.2675653 0.4201269 0.9577921 -0.2857791 -0.03105914 0.8204088 -0.3752402 -0.4314213 0.8606623 -0.3550848 -0.364932 0.9789794 -0.09385818 0.1810803 0.9859617 -0.1450988 0.08261913 0.9891275 -0.1126325 0.09455639 0.07206517 -0.5480894 0.8333096 0.4286413 -0.7242432 0.5401282 0.6144069 -0.6840681 0.3931351 0.580213 -0.7276531 0.3658881 0.7426606 -0.6478199 0.1696605 0.7002065 -0.7000595 0.1400983 0.8122094 -0.579241 -0.06925278 0.7669447 -0.6338912 -0.09988963 0.9454494 -0.2494563 0.2095167 0.8413096 -0.3609348 0.4023981 0.8587299 -0.2892553 0.4229829 0.7012234 -0.365564 0.6120856 0.7156367 -0.3129536 0.6244391 0.5244994 -0.3527155 0.7749143 0.1563762 -0.1980471 0.9676383 0.1245086 -0.04219228 0.9913211 0.3631938 -0.3483112 0.8641583 0.01643788 -0.9376599 0.3471655 -0.005624711 -0.9846286 0.174571 0.03907883 -0.8404227 0.5405207 0.08164924 -0.9936442 -0.07749068 0.1059024 -0.9857686 -0.1305572 0.1443352 -0.9764381 -0.1604251 0.144211 -0.9764112 -0.1607 0.1369798 -0.9618963 -0.2366266 0.1459853 -0.9525424 -0.2671169 0.1860801 -0.9306556 -0.3150468 0.1435237 -0.9179134 -0.3699135 0.1817132 -0.8785203 -0.4417945 0.05205363 -0.8891205 0.4547035 0.1672578 -0.8880767 0.4281876 0.2755953 -0.6246433 0.7306628 0.4508311 -0.6134092 0.6484448 0.4834961 -0.5506696 0.680437 0.6830799 -0.5090385 0.5237191 0.659033 -0.5587074 0.5035095 0.822858 -0.4787903 0.3060468 0.7923558 -0.5421189 0.2797849 0.9029625 -0.4233167 0.07390493 0.8687909 -0.4935102 0.04062151 0.9761289 -0.1543148 -0.1528379 0.9763419 -0.1535154 -0.1522812 0.9987829 -0.04059022 0.02802062 0.0672605 -0.6589254 -0.7491952 0.2615587 -0.6106072 -0.7474932 0.4894652 -0.5552791 -0.6723756 0.04087978 -0.9989674 -0.01982522 0.08793419 -0.9952345 -0.04214072 0.2441099 -0.9506759 0.1913782 0.3878817 -0.9183802 0.07826721 0.3349624 -0.9412754 0.04243654 0.4719423 -0.8730369 -0.1227891 0.412282 -0.8984177 -0.1512256 0.5113581 -0.7903928 -0.3373312 0.4569282 -0.814895 -0.356599 0.5103275 -0.6796634 -0.5269 0.5595949 -0.6530581 -0.5102634 0.5742678 -0.5433373 -0.6123734 0.6550058 -0.4943412 -0.5714842 0.7710722 -0.03472304 0.6358003 0.644693 -0.4132149 0.6431365 0.7093183 -0.05356687 0.70285 0.5218117 -0.1715961 0.8356239 0.5121542 -0.218349 0.8306756 0.3269493 -0.2305364 0.9164919 0.2717991 -0.6082493 0.7457602 0.08855348 -0.6087833 0.788379 0.05801165 -0.7300818 0.6808931 0.005310893 -0.9996308 0.02665126 0.03150558 -0.9989174 0.03422743 0.1700911 -0.901726 0.3974409 0.2952707 -0.8935449 0.3382202 0.3368445 -0.8611856 0.380651 0.5138242 -0.8231882 0.2415493 0.4697952 -0.8576955 0.2089278 0.6230707 -0.7818057 0.02372628 0.5707033 -0.8211306 -0.006510198 0.6787524 -0.7039574 -0.2091388 0.6267628 -0.7429966 -0.2347864 0.6819296 -0.6076282 -0.4071364 0.8252069 -0.4889944 -0.2826977 0.8462281 -0.4616513 -0.2660378 0.9233034 -0.3634403 -0.1241856 0.9790521 -0.2031857 0.01314437 0.9260486 -0.3334883 0.1766903 0.9412742 -0.0692684 0.3304614 0.9383505 -0.05513572 0.3412601 0.9668321 -4.51389e-4 0.2554131 0.07756501 -0.001789629 0.9969858 0.161554 -0.002888917 0.9868597 0.1861563 -0.002505898 0.982517 0.2410778 -0.001967906 0.9705038 0.3575188 -0.001284837 0.9339051 0.3763671 -0.00152409 0.9264694 0.5169428 -0.001756966 0.8560183 0.517412 -0.001764595 0.8557347 0.6559698 -0.001077473 0.7547864 0.6438533 -0.001335918 0.7651478 0.7662169 -0.0011155 0.6425812 0.9295766 -6.65147e-4 0.3686287 0.9266441 -5.19821e-4 0.3759397 0.8524827 -0.001020014 0.5227544 0.8472812 -9.44171e-4 0.531144 0.7648154 -0.001151978 0.6442485 0.9976308 -1.23471e-4 0.06879657 0.9696265 -4.50916e-4 0.2445904 0.9831418 -2.46746e-4 0.1828452 0.9809979 -3.7972e-4 0.1940181 0.9976682 -1.2951e-4 0.0682528 -0.0138868 0.9997506 -0.01749163 0.05317586 0.9960209 -0.07151716 0.06893271 0.9956889 -0.06206291 0.02853226 0.9985965 0.04462218 0.004429042 0.999547 0.02976936 -0.005370199 0.980947 0.1942014 0.5972921 0.6854748 0.4163731 0.2613078 0.6175082 0.7418908 0.2726071 0.6019129 0.7505908 0.2350822 0.2176997 0.947282 0.07332283 0.5221314 0.8497074 0.09226971 0.602331 0.7928957 0.06044298 0.7138952 0.6976392 0.04055327 0.8300524 0.556209 0.3168364 0.2640465 0.9109853 0.3550655 0.1945732 0.9143686 0.516609 0.2448876 0.8204544 0.8269141 0.3723244 -0.4214114 0.5807874 0.7227515 0.3745881 0.7279975 0.6560271 0.1991184 0.7014876 0.6969228 0.1490427 0.8035144 0.5939623 -0.03966861 0.7688043 0.6327923 -0.09227114 0.8209008 0.5118507 -0.2532406 0.7826012 0.5438326 -0.302955 0.8024328 0.4014702 -0.4415012 0.5405216 0.563267 -0.6249533 0.9783202 0.1518859 -0.1407846 0.9764233 0.1592007 -0.145783 0.9599399 0.2785581 -0.03034657 0.97455 0.220884 0.0382443 0.9294525 0.3245723 0.1754164 0.9366445 0.2605949 0.2340673 0.8428331 0.3539729 0.4053837 0.8443839 0.2955372 0.4468485 0.7021796 0.3597146 0.6144503 0.7013484 0.3142712 0.6398 0.938243 0.0605511 0.3406371 0.9762156 0.0964989 0.1941421 0.98523 0.1394842 0.09932792 0.9871785 0.1183237 0.1071367 0.9987675 0.03906613 0.03061777 0.9105156 0.2957822 -0.2889193 0.8922246 0.4188566 -0.168803 0.9212003 0.3736165 -0.1086317 0.8713312 0.4887014 0.04419434 0.8940697 0.4363501 0.101184 0.793483 0.5371034 0.2861905 0.8080654 0.485926 0.3330261 0.6593868 0.5530321 0.5092785 0.6670024 0.510146 0.5430091 0.1741864 0.6386894 -0.7494899 0.2739923 0.5955229 -0.7551693 0.2553249 0.7403369 -0.6218606 0.1942016 0.7904552 -0.5809187 0.1386029 0.8636212 -0.484714 0.2147957 0.8487884 -0.4831368 0.1624772 0.9077755 -0.3867106 0.1914901 0.9376838 -0.2899667 0.1785415 0.9403458 -0.2896083 0.09064495 0.9787501 -0.1839345 0.175014 0.9722951 -0.154959 0.1169116 0.9857468 -0.120976 0.241248 0.9478994 0.2080537 0.3704571 0.9226085 0.1074954 0.3378732 0.9396579 0.05370956 0.4585574 0.8839702 -0.09122419 0.4152739 0.8987504 -0.1406965 0.5040755 0.8077466 -0.3057015 0.4581736 0.819461 -0.3443265 0.5085131 0.6983755 -0.5036728 0.1897061 0.7642776 -0.6163532 0.1676081 0.6781684 -0.7155384 0.11838 0.1834968 0.9758664 0.0664857 0.2968895 0.9525945 0.1794826 0.2173498 0.9594504 0.01731854 0.9303397 0.3662897 0.05258524 0.883283 0.465882 0.1755053 0.8820356 0.437277 0.1539673 0.8962448 0.4159801 0.2916383 0.8894384 0.3519185 0.5741069 0.5372377 -0.6178811 0.5566675 0.6722849 -0.4880108 0.6797555 0.6243144 -0.3849209 0.6282223 0.7450155 -0.2242516 0.6706129 0.7201388 -0.1779847 0.5726726 0.8197754 0.003795385 0.6089256 0.7913345 0.05476593 0.4712951 0.8542113 0.2195539 0.4963269 0.8256638 0.2682144 0.3336096 0.8563011 0.3942753 0.4249215 0.7185671 0.550548 0.447201 0.6079904 0.6560176 0.4800828 0.545144 0.687269 0.5298112 0.2794567 0.8007524 0.3965944 0.3601379 0.8444014 0.64837 0.0492053 0.7597336 0.7068269 0.2553688 0.6596837 0.7700305 0.03750801 0.6369036 0.8494198 0.23262 0.4736814 0.8635396 0.1532626 0.480427 0.9323028 0.0334208 0.3601315 -0.03236228 0.7448876 0.6664047 -0.02060645 0.4828588 0.8754559 -0.02262353 0.5203992 0.8536234 -0.007154643 0.1667062 0.9859808 -0.007814884 0.1794929 0.9837283 -0.03128576 0.7129036 0.7005639 -0.0356332 0.8291794 0.5578458 -0.0401113 0.9238502 0.3806468 -0.04026496 0.9294036 0.3668619 -0.0421884 0.980029 0.194328 -0.04357963 0.9988976 -0.0174551 -0.04304212 0.998184 0.04214394 -1 0 -5.2355e-7 -1 0 -3.86405e-7 -1 -1.75526e-6 -2.53315e-7 -1 1.07551e-6 0 -1 2.37801e-6 8.86709e-7 -1 -2.36461e-6 -4.40857e-7 -1 0 6.35243e-6 -1 0 -1.05958e-5 -1 0 -7.70603e-6 -1 -2.24601e-5 -1.3313e-5 -1 -1.78803e-5 0 -1 0 5.29064e-7 -1 0 5.23521e-7 -1 1.76904e-5 0 -0.00165677 0.03306275 -0.9994519 -2.3368e-4 0.005423724 -0.9999853 -0.01832467 0.3903878 -0.9204682 -0.01734364 0.3779805 -0.9256511 -0.003902792 0.1267966 -0.9919211 -0.01322376 0.2321519 -0.9725897 -0.003288567 0.07904028 -0.9968661 -0.03182363 0.7379801 -0.6740717 -0.0303474 0.6770898 -0.7352746 -0.02971124 0.613133 -0.7894209 -0.02948033 0.6564122 -0.7538262 -0.02395302 0.5558892 -0.8309113 -0.02106213 0.4888206 -0.8721302 -0.03927016 0.9084783 -0.416083 -0.0388332 0.8791188 -0.475018 -0.03880476 0.8576368 -0.5127899 -0.03605723 0.8281138 -0.5593994 -0.03354412 0.7778677 -0.6275323 -0.06231003 0.9624959 -0.2640442 -0.04205268 0.9757716 -0.2147126 -0.04259884 0.964563 -0.2603915 -0.04188889 0.9571195 -0.2866488 -0.04051423 0.941151 -0.3355495 0.9841451 0.02393066 -0.1757438 0.9809396 0.08120161 -0.1765328 0.9772036 0.1099339 -0.1816253 0.9791057 0.1098034 -0.1711589 0.8274647 0.2905909 -0.4804781 0.8286448 0.2889981 -0.4794037 0.8285707 0.2114207 -0.5184324 0.9776946 0.07970732 -0.1943195 0.9805876 0.05025005 -0.1895337 0.5384386 0.0661534 -0.8400642 0.5510749 0.05948609 -0.8323328 0.5512045 0.1946098 -0.8113574 0.8413422 0.03662806 -0.5392605 0.8312603 0.04482048 -0.5540736 0.8311545 0.1297308 -0.5406961 0.5478373 0.1936606 -0.8138611 0.5478253 0.3170651 -0.7741816 0.5417297 0.4349519 -0.7192676 0.5447173 0.4328274 -0.7182921 0.5446078 0.3165285 -0.7766673 0.8298217 0.2115221 -0.516386 0.8298302 0.1292959 -0.54283 0.9785549 0.04816597 -0.2002758 0.9801953 0.01697587 -0.1973044 0.1751598 0.08436203 -0.9809191 0.1900183 0.07878261 -0.9786145 0.189962 0.2271271 -0.9551585 0.18441 0.2293367 -0.9557185 0.184394 0.3708002 -0.9102231 0.1791083 0.3729556 -0.9103979 0.1791402 0.5076489 -0.8427345 0.2568228 0.4738287 -0.8423352 0.174696 0.5483404 -0.8178046 1 0 -9.10659e-6 1 0 0 1 0 0 1 -3.33155e-6 9.90475e-6 1 -3.33252e-6 0 1 -1.53547e-6 0 0.9771319 -0.1091532 -0.18248 0.9816086 -0.03102582 -0.1883672 0.9659608 -0.08515393 -0.2442718 0.6565679 -0.3738152 -0.655119 0.5457016 -0.4008719 -0.7358747 0.04492843 -0.3930981 -0.9183983 0.1522223 -0.3570363 -0.9216038 0.5451821 -0.3044043 -0.7810983 0.5483074 -0.3023222 -0.7797182 0.8414093 -0.03439265 -0.5393031 0.9841499 -0.02372783 -0.1757443 0.9754271 -0.00837922 -0.2201632 0.06777721 -0.5341882 -0.8426442 0.2021358 -0.4737929 -0.8571239 0.2618468 -0.478233 -0.8382896 0.4901384 -0.4328781 -0.7565586 0.8214628 -0.2791784 -0.4972509 0.8288403 -0.2784825 -0.4852538 0.8288254 -0.2023897 -0.5216194 0.8300184 -0.2025535 -0.5196551 0.8300583 -0.1244152 -0.5436213 0.54827 -0.1850561 -0.8155699 0.5514911 -0.1860567 -0.8131669 0.2099106 -0.2162786 -0.9534994 0.9801813 -0.09646707 -0.1730287 0.9781039 -0.0756815 -0.1938689 0.9867349 -0.03644871 -0.1581953 0.8313215 -0.123107 -0.5419865 0.8313851 -0.04281485 -0.5540449 0.5515722 -0.06252604 -0.8317804 0.5387367 -0.05722534 -0.8405285 -0.08281666 -0.09031355 -0.9924641 0.1741314 -0.1368817 -0.9751624 0.1757857 0 -0.9844285 0.5396205 0 -0.8419084 0.8419064 0 -0.5396236 0.984427 0 -0.1757942 0.984427 0 -0.1757943 -0.9659261 -0.2588182 1.36169e-7 -0.965926 -0.2588184 1.31776e-7 -0.7071069 -0.7071067 0 -0.7071055 -0.7071081 -4.21681e-7 -0.2588194 -0.9659258 -1.40561e-7 -0.2588201 -0.9659256 0 0.2588195 -0.9659258 0 0.2588194 -0.9659258 0 0.7071072 -0.7071065 0 0.7071067 -0.707107 0 0.9659257 -0.2588199 -1.31776e-7 0.9659257 -0.2588196 -1.36168e-7 0.9659258 0.2588195 -1.36168e-7 0.9659258 0.2588194 -1.31776e-7 0.7071067 0.7071068 0 0.7071069 0.7071067 0 0.2588194 0.9659258 0 0.2588194 0.9659258 0 -0.2588194 0.9659258 0 -0.2588201 0.9659256 -1.40561e-7 -0.7071068 0.7071068 -4.21682e-7 -0.7071053 0.7071084 0 -0.9659262 0.2588177 1.31776e-7 -0.9659261 0.2588182 1.36168e-7 2.67184e-6 4.73403e-6 -1 0 0 -1 5.96207e-6 -3.8202e-6 -1 0 0 -1 5.96207e-6 3.8202e-6 -1 -3.16658e-6 -2.42037e-6 -1 2.67183e-6 -4.73403e-6 -1 -1.79325e-6 3.7937e-6 -1 0 0 -1 1.71377e-6 1.32024e-6 -1 1.13514e-6 8.39239e-7 -1 -3.16658e-6 2.42037e-6 -1 1.13514e-6 -8.39239e-7 -1 0 0 -1 8.95921e-7 1.73203e-6 -1 -1.79325e-6 -3.7937e-6 -1 -0.0414136 -0.9605501 -0.2750066 -0.00165677 -0.03306275 -0.9994519 -2.3368e-4 -0.005423724 -0.9999853 -0.005210995 -0.1253675 -0.9920968 -0.005298376 -0.1379043 -0.9904314 -0.0176317 -0.3931093 -0.9193227 -0.01698935 -0.3860344 -0.9223281 -0.0276184 -0.650046 -0.7593929 -0.02960944 -0.5347567 -0.8444872 -0.02927863 -0.5990837 -0.8001511 -0.02997833 -0.6718061 -0.7401202 -0.03163623 -0.7343057 -0.6780814 -0.03476113 -0.8063065 -0.5904756 -0.03847491 -0.8509783 -0.52379 -0.04175555 -0.8861917 -0.4614334 -0.03711789 -0.8513755 -0.5232419 -0.03959953 -0.9191325 -0.3919533 -0.04000985 -0.9284369 -0.3693295 -0.04081338 -0.9426093 -0.3313941 -0.04183185 -0.9544664 -0.2953711 -0.04381859 -0.9729288 -0.2269132 -0.0683856 -0.9540147 -0.2918553 -0.04922664 -0.974353 -0.2195749 0 -1 0 0 -1 -1.46463e-7 0 -1 5.75966e-6 0 -1 -8.00168e-7 0 -1 1.21247e-6 0 -1 -4.6663e-6 0 -1 2.11462e-6 0 -1 -1.57341e-6 0 -1 8.03987e-7 0 -1 -1.44758e-6 0 -1 2.05079e-6 0 -0.00179398 0.9999984 0 -0.001795589 0.9999984 0 -0.001795053 0.9999984 0 -0.001795113 0.9999985 0 -0.001795113 0.9999985 -1.41439e-7 -0.001795053 0.9999984 0 1 0 0 1 -1.1966e-6 0 1 4.66868e-6 0 1 -2.11414e-6 0 1 5.75967e-6 0 1 -1.60034e-6 0 1 1.63667e-6 0 1 -5.8432e-7 0 1 2.71836e-6 0 1 -2.02714e-6 -0.005799949 -0.965926 0.2587538 -0.005802035 -0.9659259 0.258754 -0.999749 0 -0.02240765 -0.9997491 0 -0.02240574 -0.999749 0 -0.0224061 -0.999749 2.56497e-6 -0.02240628 -0.999749 0 -0.02240681 0.0216366 0.2588198 -0.9656833 0.02164494 0.2588179 -0.9656836 0.021645 -0.2588181 -0.9656836 0.02163666 -0.2588201 -0.9656833 -0.999749 9.23935e-7 -0.02240502 -0.999749 0 -0.02240818 -0.999749 -6.04964e-7 -0.02240741 -0.9997491 -9.1743e-7 -0.02240556 -0.999749 0 -0.02240681 -0.005799949 0.9659254 0.2587558 -0.005799889 0.9659259 0.2587541 0.005799949 0.9659256 -0.258755 0.005797863 0.9659261 -0.2587535 -0.999749 -3.69572e-6 -0.02240628 -0.999749 1.84624e-6 -0.02240562 -0.999749 4.83987e-6 -0.02240526 -0.999749 0 -0.02240526 -0.9997491 -2.00802e-6 -0.02240324 -0.02165329 -0.258819 0.9656832 -0.02163666 -0.2588168 0.9656841 -0.02164494 0.2588159 0.9656842 -0.02164494 0.2588195 0.9656832 -0.999749 -2.00799e-6 -0.02240657 -0.9997491 3.41999e-6 -0.02240526 -0.9997491 -2.17761e-6 -0.02240526 -0.9997491 -1.70999e-6 -0.02240526 -0.999749 3.01202e-6 -0.02240318 0.005797863 -0.9659264 -0.2587519 0.005799949 -0.9659258 -0.2587546 0.02212554 -0.1564353 -0.9874404 0.02212899 -0.1564351 -0.9874403 0.01996541 -0.4539917 -0.8907822 0.01996535 -0.45399 -0.8907831 0.01584482 -0.7071052 -0.7069308 0.01584476 -0.7071088 -0.7069273 0.01017212 -0.8910061 -0.4538776 0.0101704 -0.8910084 -0.453873 0.003504693 -0.9876884 -0.1563948 0.003504693 -0.9876879 -0.1563986 -0.003506422 -0.9876879 0.156398 -0.003504693 -0.9876884 0.1563946 -0.01017391 -0.8910067 0.4538763 -0.01017045 -0.8910059 0.4538778 -0.01584827 -0.7071071 0.706929 -0.01584136 -0.7071073 0.7069288 -0.01996868 -0.4539878 0.8907841 -0.01996189 -0.4539926 0.8907819 -0.02212548 -0.1564347 0.9874405 -0.02213251 -0.1564341 0.9874404 0.02240693 0 -0.999749 0.02240693 0 -0.999749 -0.02213251 0.1564346 0.9874403 -0.02212548 0.1564339 0.9874407 -0.01996189 0.4539907 0.8907829 -0.01996874 0.453992 0.8907821 -0.01584815 0.7071046 0.7069315 -0.01584827 0.7071078 0.7069281 -0.01017385 0.8910062 0.453877 -0.01017045 0.8910058 0.4538782 -0.003506422 0.9876888 0.1563927 -0.003504693 0.9876884 0.1563947 0.003504693 0.9876887 -0.1563934 0.003504693 0.9876884 -0.1563948 0.01017206 0.8910055 -0.4538788 0.0101704 0.891007 -0.4538758 0.01584482 0.7071078 -0.7069282 0.01584476 0.7071046 -0.7069314 0.01996541 0.453991 -0.8907826 0.01996541 0.4539913 -0.8907825 0.02212554 0.1564352 -0.9874404 0.02212899 0.1564354 -0.9874403 -0.02240693 0 0.999749 -0.02240693 0 0.999749 -0.999749 1.53665e-6 -0.02240735 -0.9997489 7.28943e-7 -0.02240878 -0.999749 1.20133e-6 -0.02240878 -0.999749 -4.3042e-7 -0.02240902 -0.999749 1.40978e-6 -0.02240651 -0.999749 -2.80306e-6 -0.02240419 -0.999749 0 -0.02240496 -0.9997491 -1.4238e-6 -0.02240532 -0.999749 0 -0.02240663 -0.999749 2.63805e-6 -0.02240628 -0.999749 0 -0.02240657 -0.999749 0 -0.02240538 -0.999749 -5.61575e-6 -0.02240586 -0.999749 0 -0.02240657 -0.999749 2.8476e-6 -0.02240538 -0.9997491 0 -0.02240514 -0.9997491 2.80304e-6 -0.02240431 -0.999749 0 -0.02240717 -0.9997489 0 -0.02240854 -0.9997489 0 -0.02240806 -0.999749 0 -0.02240771 -0.9997491 -1.40151e-6 -0.02240484 -0.999749 0 -0.02240502 -0.999749 -2.8476e-6 -0.0224052 -0.999749 0 -0.02240645 -0.999749 2.63803e-6 -0.02240574 -0.999749 0 -0.02240538 -0.999749 0 -0.02240645 -0.999749 -3.74377e-6 -0.02240622 -0.9997491 1.42379e-6 -0.02240514 -0.999749 -1.40979e-6 -0.02240645 -0.999749 0 -0.02240878 -0.9997489 -1.6086e-6 -0.0224089 -0.999749 -2.13634e-6 -0.0224089 -0.999749 -1.70739e-7 -0.02240693 -0.999749 0 -0.02240759 -0.999749 0 -0.02240771 -0.9997489 1.72169e-6 -0.02240902 -0.999749 0 -0.02240669 -0.999749 0 -0.02240604 -0.999749 3.24283e-6 -0.02240544 -0.9997491 0 -0.02240538 -0.9997491 0 -0.0224052 -0.9997491 -3.24283e-6 -0.0224055 -0.999749 0 -0.02240651 -0.9997491 -1.16741e-6 -0.02240544 -0.9997491 1.16741e-6 -0.02240526 -0.7452499 -0.02915495 -0.6661475 -0.649969 -0.1637538 0.7421085 -0.6499678 -0.1637563 0.742109 -0.6485594 -0.3436362 0.6791797 -0.6485591 -0.3436292 0.6791835 -0.6462098 -0.5026775 0.5742198 -0.6462106 -0.5026753 0.5742207 -0.6430624 -0.6312443 0.4335914 -0.643067 -0.6312423 0.4335875 -0.6393102 -0.7215429 0.2658165 -0.6392987 -0.7215501 0.2658244 -0.6351619 -0.7681126 0.08107185 -0.6351565 -0.7681167 0.08107399 -0.6308917 -0.7681125 -0.1094481 -0.6308854 -0.7681181 -0.1094454 -0.6267407 -0.7215558 -0.2941995 -0.6267657 -0.7215366 -0.2941932 -0.6230003 -0.631236 -0.4619652 -0.6229832 -0.6312515 -0.4619671 -0.6198306 -0.5026772 -0.6025992 -0.6198412 -0.5026711 -0.6025933 -0.6174966 -0.3436247 -0.7075452 -0.6174707 -0.3436355 -0.7075625 -0.6160809 -0.1637544 -0.7704731 -0.6160588 -0.1637563 -0.7704905 -0.6182658 -0.03463315 -0.7852057 -0.6182678 -0.03463423 -0.7852041 -0.934743 -0.0150032 -0.3550078 -0.8543279 -0.02558308 -0.5191043 -0.9823138 -0.007415831 -0.1870954 -0.9823136 -0.007411599 -0.1870961 -0.9821907 -0.03517693 -0.1845649 -0.9821915 -0.03517752 -0.1845605 -0.9824956 -0.07381576 -0.1710371 -0.9824926 -0.07382106 -0.1710523 -0.9829996 -0.1079834 -0.1484971 -0.9829983 -0.1079912 -0.1485009 -0.9836747 -0.1356171 -0.1182888 -0.9836748 -0.1356104 -0.1182954 -0.9844819 -0.1550178 -0.08225017 -0.9844821 -0.1550162 -0.08224976 -0.9853725 -0.1650145 -0.04255962 -0.9853727 -0.1650137 -0.04255789 -0.9862903 -0.1650121 -0.001629531 -0.9862902 -0.1650124 -0.001628577 -0.9871791 -0.1550126 0.03805929 -0.9871798 -0.1550092 0.03805792 -0.9879873 -0.1356109 0.07410061 -0.9879888 -0.1356013 0.07409888 -0.9886651 -0.1079855 0.1043094 -0.988663 -0.1079958 0.1043184 -0.9891686 -0.07382607 0.1268668 -0.9891696 -0.07382422 0.1268603 -0.9894729 -0.03517788 0.1403779 -0.9894732 -0.03517669 0.1403763 -0.9897093 -0.007413983 0.1429004 -0.9897096 -0.00741291 0.1428985 -0.6528188 -0.03462886 0.7567223 -0.6528155 -0.03463208 0.756725 -0.8266427 -0.02607202 0.5621229 -0.8544532 -0.02547985 -0.5189033 -0.8531355 -0.1063914 -0.5107259 -0.8531359 -0.1063911 -0.5107251 -0.8540518 -0.2232546 -0.4698435 -0.8540483 -0.2232576 -0.4698486 -0.8555776 -0.3265879 -0.4016559 -0.8555796 -0.3265862 -0.4016528 -0.8576243 -0.4101237 -0.3102888 -0.8576258 -0.4101187 -0.3102914 -0.8600699 -0.4687883 -0.2012892 -0.8600718 -0.4687865 -0.2012856 -0.862762 -0.4990383 -0.08125573 -0.8627601 -0.4990415 -0.0812568 -0.8655328 -0.4990438 0.04252374 -0.8655379 -0.499035 0.04252243 -0.8682287 -0.4687813 0.1625519 -0.8682218 -0.4687937 0.1625534 -0.8706672 -0.4101172 0.2715557 -0.8706647 -0.4101214 0.2715573 -0.8727151 -0.3265858 0.362919 -0.8727203 -0.3265803 0.3629117 -0.8742493 -0.223246 0.4311025 -0.8742402 -0.223259 0.4311144 -0.8751552 -0.1063926 0.4720002 -0.8751611 -0.1063898 0.4719899 -0.8769629 -0.04020684 0.4788732 -0.9188666 -0.01862281 0.3941284 -0.982341 0 -0.1870996 -0.9348728 0 -0.3549829 -0.9348728 0 -0.3549829 -0.8546051 0 -0.5192785 -0.7458093 0 -0.6661595 -0.7456339 0 -0.6663559 -0.6186336 0 -0.7856798 -0.9347432 0.0150032 -0.3550071 -0.8266424 0.02607142 0.5621233 -0.6160821 0.1637547 -0.7704721 -0.6160702 0.1637557 -0.7704815 -0.6174857 0.3436309 -0.7075517 -0.6174778 0.3436304 -0.7075587 -0.6198472 0.5026696 -0.6025884 -0.6198362 0.5026745 -0.6025958 -0.6229917 0.6312429 -0.4619674 -0.6229799 0.6312535 -0.4619689 -0.6267451 0.7215519 -0.2941999 -0.626753 0.7215489 -0.2941903 -0.6308878 0.7681154 -0.1094503 -0.6309021 0.768104 -0.1094483 -0.6351735 0.7681034 0.08106797 -0.6351584 0.7681149 0.08107757 -0.6392965 0.7215535 0.2658205 -0.6392983 0.7215516 0.2658216 -0.6430592 0.6312487 0.4335896 -0.6430602 0.6312468 0.4335912 -0.6462081 0.502676 0.5742229 -0.6462103 0.5026761 0.5742204 -0.6485651 0.3436315 0.6791765 -0.6485528 0.3436342 0.6791869 -0.6499727 0.1637527 0.7421054 -0.6499755 0.1637563 0.7421023 -0.6528178 0.03463065 0.756723 -0.6528128 0.03463035 0.7567273 -0.9188666 0.01862281 0.3941284 -0.9897096 0.00741291 0.1428985 -0.9897096 0.007414281 0.1428992 -0.9894727 0.03517758 0.1403797 -0.9894729 0.03517681 0.1403778 -0.9891694 0.07382494 0.1268614 -0.9891687 0.07382792 0.1268653 -0.9886634 0.1079924 0.1043188 -0.9886647 0.1079901 0.1043091 -0.9879884 0.1356031 0.07409971 -0.9879882 0.1356046 0.0740993 -0.9871813 0.155 0.03805518 -0.9871793 0.1550112 0.03806042 -0.9862905 0.1650102 -0.001630485 -0.9862903 0.1650124 -0.001628518 -0.985373 0.1650122 -0.04255902 -0.9853723 0.1650162 -0.04255855 -0.9844837 0.1550076 -0.08224797 -0.9844812 0.1550226 -0.08224934 -0.9836739 0.1356171 -0.1182947 -0.9836755 0.1356086 -0.1182912 -0.9829987 0.107989 -0.1484994 -0.9829987 0.1079876 -0.1484998 -0.9824936 0.07382076 -0.1710466 -0.9824941 0.07381922 -0.1710443 -0.9821914 0.03517496 -0.184561 -0.9821911 0.03517752 -0.1845625 -0.9823142 0.007412254 -0.1870932 -0.9823138 0.007415831 -0.1870954 -0.6182628 0.03463268 -0.785208 -0.6182723 0.03463482 -0.7852005 -0.7452484 0.02915644 -0.6661493 -0.8769646 0.04020673 0.4788701 -0.8751592 0.1063915 0.471993 -0.8751602 0.1063909 0.4719912 -0.874242 0.2232543 0.4311133 -0.8742459 0.2232524 0.4311064 -0.8727183 0.3265803 0.3629161 -0.8727166 0.3265852 0.3629159 -0.870667 0.4101207 0.271551 -0.8706656 0.4101173 0.2715606 -0.8682227 0.468792 0.1625533 -0.8682242 0.4687899 0.1625508 -0.8655336 0.4990425 0.04252505 -0.8655291 0.4990499 0.04252696 -0.8627563 0.4990476 -0.08125919 -0.8627576 0.4990454 -0.08125877 -0.8600706 0.4687886 -0.2012861 -0.8600687 0.4687911 -0.2012875 -0.8576295 0.4101131 -0.3102883 -0.8576319 0.4101118 -0.3102837 -0.8555833 0.3265798 -0.4016501 -0.8555764 0.3265907 -0.401656 -0.8540458 0.2232601 -0.469852 -0.8540517 0.2232536 -0.4698445 -0.8531338 0.1063911 -0.5107287 -0.8531355 0.1063914 -0.5107256 -0.8544566 0.02548086 -0.5188977 -0.8543257 0.02558302 -0.5191081 -0.8006312 0.0260691 -0.5985901 -0.982312 0.007414937 -0.1871048 -0.9823135 0.007411181 -0.1870976 -0.9821913 0.03517609 -0.1845618 -0.9821894 0.03518128 -0.1845707 -0.9824929 0.07382214 -0.1710495 -0.9824925 0.07382357 -0.1710517 -0.9829984 0.1079862 -0.1485032 -0.9829964 0.1079984 -0.1485078 -0.9836741 0.1356157 -0.1182948 -0.9836757 0.135608 -0.11829 -0.9844825 0.1550137 -0.08224856 -0.9844848 0.1550026 -0.08224344 -0.9853728 0.1650133 -0.04255819 -0.9853743 0.1650041 -0.0425595 -0.9862897 0.1650149 -0.001629292 -0.9862909 0.165008 -0.001629233 -0.9871785 0.1550163 0.03805983 -0.9871793 0.1550113 0.03805828 -0.9879873 0.1356098 0.07410228 -0.9879875 0.1356097 0.0740996 -0.9886651 0.1079862 0.1043087 -0.9886634 0.1079915 0.1043198 -0.9891687 0.07382339 0.1268679 -0.9891702 0.07381927 0.1268582 -0.9894728 0.03518146 0.1403782 -0.989472 0.03518015 0.1403834 -0.9897091 0.007411241 0.142902 -0.989708 0.00740993 0.1429107 -0.9497982 0.01498115 0.3125047 -0.8768415 0.01959067 0.4803802 -0.6528187 0.03463011 0.7567222 -0.6528152 0.03463488 0.756725 -0.6499632 0.1637568 0.7421129 -0.649987 0.1637523 0.7420931 -0.6485713 0.3436272 0.6791727 -0.6485669 0.3436281 0.6791765 -0.6462104 0.5026721 0.5742238 -0.6462141 0.5026732 0.5742187 -0.6430568 0.631248 0.4335944 -0.6430698 0.6312395 0.4335874 -0.6393159 0.7215374 0.2658174 -0.6392996 0.72155 0.2658228 -0.6351616 0.7681124 0.0810737 -0.6351565 0.7681168 0.08107411 -0.6308866 0.7681163 -0.1094508 -0.6308932 0.7681121 -0.1094424 -0.6267507 0.7215481 -0.2941972 -0.6267507 0.7215489 -0.294195 -0.6229938 0.6312406 -0.4619675 -0.623003 0.6312353 -0.4619625 -0.6198394 0.5026705 -0.6025958 -0.6198375 0.5026746 -0.6025942 -0.6174978 0.3436281 -0.7075425 -0.6175003 0.3436231 -0.7075427 -0.6160572 0.1637578 -0.7704914 -0.6160759 0.1637532 -0.7704774 -0.6182665 0.03463083 -0.7852053 -0.618245 0.03463542 -0.785222 -0.7743837 0.02915608 0.6320441 -0.876734 0.0195232 0.4805794 -0.8751625 0.1063867 0.471988 -0.8751546 0.106392 0.4720013 -0.8742389 0.2232596 0.4311167 -0.8742463 0.2232507 0.4311063 -0.8727159 0.3265864 0.3629163 -0.8727131 0.3265879 0.3629217 -0.8706686 0.4101145 0.2715555 -0.8706662 0.4101196 0.2715555 -0.8682197 0.4687972 0.1625537 -0.8682268 0.468784 0.162554 -0.865535 0.49904 0.04252338 -0.8655318 0.4990457 0.04252481 -0.8627556 0.499049 -0.08125829 -0.8627614 0.4990392 -0.08125776 -0.8600686 0.4687912 -0.2012882 -0.8600719 0.4687865 -0.2012845 -0.8576244 0.4101222 -0.3102906 -0.857627 0.4101189 -0.3102878 -0.8555802 0.3265873 -0.401651 -0.8555841 0.3265815 -0.4016471 -0.8540474 0.22326 -0.4698489 -0.8540568 0.2232505 -0.4698365 -0.8531376 0.1063907 -0.5107223 -0.8531357 0.1063893 -0.510726 -0.8539149 0.005763709 -0.5203807 -0.9002867 0.01862263 -0.4348992 -0.982339 0 -0.1871106 -0.9823381 0 -0.1871144 -0.9004506 0 -0.4349585 -0.9004437 0 -0.4349726 -0.8009107 0 -0.5987839 -0.8008978 0 -0.5988012 -0.6186281 0 -0.7856841 -0.6186152 0 -0.7856943 -0.6182531 -0.03463512 -0.7852156 -0.6160527 -0.1637566 -0.7704953 -0.6160883 -0.163752 -0.7704678 -0.6174889 -0.3436278 -0.7075504 -0.6175034 -0.3436235 -0.7075397 -0.6198521 -0.502665 -0.6025871 -0.6198356 -0.5026794 -0.6025923 -0.6229891 -0.6312432 -0.4619705 -0.6229951 -0.6312409 -0.4619654 -0.6267379 -0.721558 -0.2942001 -0.6267468 -0.7215527 -0.2941942 -0.6308889 -0.7681147 -0.1094487 -0.6308902 -0.7681146 -0.1094421 -0.6351561 -0.7681177 0.08106786 -0.63516 -0.7681137 0.08107411 -0.6392995 -0.7215515 0.2658189 -0.6393002 -0.7215492 0.2658235 -0.6430491 -0.6312552 0.4335952 -0.6430631 -0.6312407 0.4335956 -0.6462165 -0.5026711 0.5742179 -0.64621 -0.5026779 0.5742192 -0.648558 -0.3436318 0.6791832 -0.6485787 -0.3436228 0.679168 -0.6499742 -0.163754 0.7421039 -0.6499804 -0.1637541 0.7420985 -0.6528239 -0.03463041 0.7567177 -0.6528102 -0.03463459 0.7567294 -0.7743809 -0.02915596 0.6320477 -0.8768421 -0.01951479 0.4803823 -0.9897094 -0.007411181 0.1429007 -0.9897083 -0.007409811 0.1429081 -0.9894715 -0.03518325 0.1403864 -0.9894729 -0.03517889 0.1403775 -0.9891697 -0.07382094 0.1268617 -0.9891687 -0.07382571 0.1268671 -0.9886638 -0.1079905 0.1043175 -0.9886646 -0.107987 0.1043123 -0.9879873 -0.1356108 0.07410013 -0.9879878 -0.1356087 0.07409882 -0.9871797 -0.1550092 0.03805804 -0.9871784 -0.1550173 0.0380609 -0.9862894 -0.165017 -0.001630246 -0.9862908 -0.1650092 -0.001629233 -0.9853737 -0.1650077 -0.04255861 -0.9853733 -0.1650099 -0.0425601 -0.9844838 -0.1550067 -0.08224689 -0.9844836 -0.1550081 -0.08224779 -0.9836769 -0.1356016 -0.1182879 -0.9836736 -0.1356178 -0.1182969 -0.9829966 -0.1079953 -0.1485089 -0.9829972 -0.1079938 -0.1485054 -0.9824934 -0.07381713 -0.1710488 -0.9824916 -0.07382762 -0.171055 -0.9821893 -0.03517967 -0.1845712 -0.9821906 -0.03517925 -0.1845653 -0.982312 -0.007413566 -0.1871045 -0.9823148 -0.007412314 -0.1870901 -0.9002919 -0.01862204 -0.4348883 -0.8008776 0.006808757 -0.5987896 -0.6182575 -0.03463143 -0.7852123 -0.854389 -0.02244925 -0.5191488 -0.8531425 -0.106388 -0.5107147 -0.853139 -0.1063897 -0.5107203 -0.8540529 -0.2232516 -0.4698432 -0.8540479 -0.223261 -0.4698478 -0.8555756 -0.3265904 -0.4016581 -0.8555849 -0.3265819 -0.4016451 -0.8576318 -0.4101131 -0.3102822 -0.8576304 -0.4101148 -0.3102838 -0.8600703 -0.4687886 -0.2012871 -0.8600723 -0.4687868 -0.201283 -0.8627581 -0.4990442 -0.08126074 -0.8627629 -0.4990364 -0.08125811 -0.8655372 -0.4990362 0.04252308 -0.865534 -0.4990416 0.04252523 -0.8682255 -0.468787 0.1625524 -0.8682225 -0.4687913 0.1625559 -0.8706701 -0.4101122 0.2715539 -0.8706694 -0.4101153 0.2715518 -0.8727174 -0.3265838 0.3629153 -0.8727127 -0.3265885 0.3629221 -0.8742402 -0.2232567 0.4311158 -0.8742433 -0.2232531 0.431111 -0.8751632 -0.1063876 0.4719862 -0.875161 -0.1063898 0.4719899 -0.8767358 -0.0195946 0.4805731 -0.9497781 -0.01498961 0.3125649 -0.6532205 0 0.7571677 -0.6532086 0 0.7571781 -0.7747358 0 0.6322852 -0.7747358 0 0.6322852 -0.877009 0 0.4804741 -0.9897364 0 0.1429052 -0.9498984 0 0.3125593 -0.8770114 0 0.4804699 -0.9897366 0 0.1429037 -0.9190241 0 0.3942015 -0.9190213 0 0.394208 -0.8269231 0 0.5623149 -0.8269175 0 0.5623233 -0.6532086 0 0.757178 -0.6532025 0 0.7571833 -0.02169084 -0.2588185 0.9656824 -0.02162516 -0.25882 0.9656835 -0.01586931 -0.7071163 0.7069193 -0.01586884 -0.7071117 0.7069238 -0.005788624 -0.9659261 0.2587534 -0.005822122 -0.9659261 0.2587527 0.005805492 -0.9659262 -0.258753 0.005788862 -0.9659263 -0.2587528 0.01583623 -0.7071083 -0.706928 0.01583594 -0.7070952 -0.7069411 0.02162432 -0.2588188 -0.9656839 0.02162516 -0.2588201 -0.9656835 -0.999749 -1.11366e-6 -0.02240633 -0.999749 0 -0.02240657 -0.999749 0 -0.0224061 -0.999749 1.05296e-6 -0.02240628 -0.999749 -2.36806e-7 -0.02240669 -0.999749 -2.33886e-6 -0.02240628 -0.999749 0 -0.02240628 -0.999749 2.25406e-6 -0.02240663 -0.999749 0 -0.0224061 -0.999749 9.20109e-7 -0.0224061 -0.9997491 0 -0.0224058 -0.999749 0 -0.02240538 -0.999749 0 -0.02240568 -0.999749 0 -0.02240586 -0.999749 0 -0.02240628 -0.9997491 -1.71834e-7 -0.02240318 -0.999749 0 -0.02240729 -0.999749 0 -0.02240687 -0.999749 0 -0.02240604 -0.999749 0 -0.02240693 -0.9997491 0 -0.02240574 -0.999749 0 -0.02240711 -0.9997491 0 -0.02240473 -0.999749 0 -0.0224061 -0.999749 1.29281e-6 -0.02240622 -0.999749 0 -0.02240586 -0.9997491 0 -0.02240574 -0.999749 0 -0.0224061 -0.999749 5.56826e-7 -0.02240633 -0.999749 0 -0.02240663 -0.9997491 0 -0.02240318 -0.999749 0 -0.02240699 -0.999749 0 -0.02240616 -0.999749 0 -0.02240639 -0.999749 0 -0.02240675 -0.999749 0 -0.0224058 -0.999749 -4.81812e-7 -0.02240401 -0.999749 0 -0.02240598 -0.999749 0 -0.02240633 -0.9997491 1.30215e-7 -0.02240329 -0.999749 0 -0.02240699 -0.999749 -1.16943e-6 -0.02240616 -0.999749 1.27775e-6 -0.02240633 -0.9997491 -3.59195e-6 -0.02240514 -0.9997491 0 -0.0224055 -0.999749 -9.20106e-7 -0.02240592 -0.999749 1.11366e-6 -0.02240616 -0.9997491 -3.56213e-7 -0.02240568 -0.9997491 1.76629e-6 -0.02240514 -0.999749 -1.05297e-6 -0.02240681 -0.999749 2.36805e-7 -0.02240657 -0.9997491 3.72284e-6 -0.02240538 -0.999749 -1.27775e-6 -0.02240622 -0.999749 1.16943e-6 -0.02240628 -0.999749 -2.36806e-7 -0.02240669 -0.999749 0 -0.02240604 -0.999749 6.17499e-7 -0.02240604 -0.9997491 3.56214e-7 -0.02240556 -0.999749 0 -0.02240633 -0.999749 -9.73605e-7 -0.02240628 -0.999749 0 -0.02240663 -0.999749 1.97341e-6 -0.02240616 -0.999749 0 -0.02240633 -0.999749 0 -0.02240639 -0.999749 0 -0.02240717 -0.999749 0 -0.02240675 -0.999749 0 -0.02240616 -0.999749 -2.25406e-6 -0.02240657 -0.9997491 0 -0.02240467 -0.999749 0 -0.0224058 -0.999749 0 -0.0224058 0.02169167 0.2588197 -0.9656821 0.02155786 0.2588192 -0.9656852 0.01590228 0.7071027 -0.7069321 0.01576989 0.7071009 -0.7069368 0.005805373 0.9659272 -0.2587491 0.005772292 0.9659252 -0.2587575 -0.005788862 0.9659262 0.2587532 -0.005821883 0.9659258 0.2587541 -0.01583558 0.707112 0.7069243 -0.01586931 0.7071163 0.7069193 -0.02175813 0.2588193 0.9656807 -0.02155786 0.2588192 0.9656852 -0.999749 7.99015e-7 -0.02240574 -0.999749 -1.12176e-6 -0.02240735 -0.999749 5.92431e-7 -0.02240735 -0.9997489 0 -0.02241343 -0.999749 0 -0.02240759 -0.999749 -3.16172e-6 -0.02240735 -0.9997491 -1.33169e-7 -0.02240568 -0.999749 -1.12177e-6 -0.02240753 -0.999749 1.48108e-6 -0.02240735 -0.999749 -1.18487e-6 -0.02240747 -0.999749 0 -0.02240735 -0.999749 9.36243e-7 -0.02240598 -0.999749 0 -0.02240532 -0.999749 0 -0.02240598 -0.999749 0 -0.02240645 -0.9997491 0 -0.02240568 -0.999749 0 -0.02240663 -0.9997491 1.00862e-6 -0.02240538 -0.999749 9.36241e-7 -0.02240592 -0.999749 -1.00862e-6 -0.02240532 -0.999749 0 -0.02240592 -0.999749 0 -0.02240645 -0.9997491 0 -0.02240574 -0.999749 0 -0.02240657 -0.9997491 0 -0.02240538 -0.01584374 -0.7071065 0.7069296 0.01584374 0.7071067 -0.7069294 0.02498632 -0.965748 -0.2582762 0.002924561 -0.9914451 -0.1304921 0.00292474 -0.991445 -0.1304926 0.01644945 -0.9936156 -0.1116132 -0.007347702 -0.9237622 -0.3828963 0.00818789 -0.930874 -0.3652488 0.01262456 -0.8262395 -0.5631777 0.0949158 -0.7048901 -0.7029374 0.05871272 -0.3824058 -0.9221273 -0.04766291 -0.2219828 -0.9738849 0.04063969 -0.3826068 -0.9230172 0.01981085 -0.4672711 -0.8838922 0.01698249 -0.652287 -0.7577819 0.02164238 -0.2588192 -0.9656834 0.01584374 -0.7071065 -0.7069296 0.01584374 -0.7071065 -0.7069296 0.008574426 -0.9238794 -0.3825879 0.07700264 0.2221806 -0.9719601 -0.1691637 0.3757475 -0.9111518 0.02221357 0.130523 -0.9911965 0.02070057 0.3826826 -0.9236479 0.04082632 0.2587712 -0.9650756 0.02221441 0.1305269 -0.991196 0.02221518 -0.130527 -0.9911959 0.02221363 -0.1305232 -0.9911964 0.01981085 0.4672711 -0.8838922 0.01698249 0.6522868 -0.757782 0.0949164 0.70489 -0.7029374 0.01262456 0.8262403 -0.5631766 0.00818789 0.9308744 -0.365248 -0.007344901 0.9237628 -0.382895 0.01645052 0.9936155 -0.1116139 0.00292474 0.9914448 -0.1304935 0.002924561 0.9914449 -0.1304935 0.04659527 0.9232115 -0.3814572 0.005799353 0.9659259 -0.2587537 0.01584374 0.7071064 -0.7069298 0.01339012 0.9657479 0.2591366 -0.002924561 0.9914448 0.1304936 -0.002923905 0.9914447 0.1304948 0.01143282 0.9936157 0.1122378 -0.0244916 0.9237625 0.382182 -0.008183538 0.9308744 0.3652477 -0.01262032 0.8262374 0.5631806 0.06332671 0.7048889 0.7064853 0.01734435 0.3824084 0.9238306 -0.09123528 0.2219824 0.9707729 -7.56366e-4 0.382607 0.9239109 -0.01980656 0.4672718 0.8838918 -0.01698249 0.6522889 0.7577802 -0.02164334 0.2588191 0.9656834 -0.01584374 0.7071064 0.7069296 -0.01584374 0.7071065 0.7069295 -0.008574426 0.9238801 0.3825861 0.03338843 -0.2221814 0.9744336 -0.2098223 -0.3757435 0.902658 -0.02222067 -0.130531 0.9911952 -0.02070057 -0.3826858 0.9236466 -0.002450406 -0.2587715 0.9659355 -0.02221298 -0.130527 0.9911959 -0.02221363 0.1305269 0.991196 -0.02222061 0.1305307 0.9911952 -0.01980656 -0.4672718 0.8838918 -0.01698249 -0.6522889 0.7577802 0.06332612 -0.7048889 0.7064853 -0.01262032 -0.8262374 0.5631809 -0.008183538 -0.9308744 0.3652479 -0.02449423 -0.9237619 0.3821831 0.01143133 -0.9936157 0.1122378 -0.002923905 -0.9914451 0.1304922 -0.002924501 -0.9914451 0.1304922 0.02945977 -0.9232107 0.3831633 -0.005799114 -0.9659259 0.2587539 -0.01584374 -0.7071064 0.7069297 -0.9873249 -0.04009032 0.1535657 -0.9865447 -0.1123332 0.1187894 -0.9865419 -0.1123506 0.1187959 -0.9851385 -0.1623356 0.05611819 -0.9851396 -0.1623296 0.05611753 -0.9833883 -0.1801713 -0.02204042 -0.9833869 -0.1801788 -0.02203977 -0.981637 -0.1623285 -0.1001909 -0.9816352 -0.1623365 -0.1001965 -0.980233 -0.1123203 -0.1628729 -0.9802306 -0.1123417 -0.162872 -0.9794516 -0.04008764 -0.1976552 -0.9794535 -0.04009264 -0.1976453 -0.9794498 0.04008758 -0.1976642 -0.9794535 0.04009425 -0.1976447 -0.9802328 0.1123234 -0.1628715 -0.9802303 0.1123415 -0.1628744 -0.9816397 0.1623085 -0.100197 -0.981633 0.1623514 -0.1001929 -0.9833883 0.1801719 -0.02204054 -0.9833878 0.1801743 -0.02203971 -0.98514 0.1623269 0.0561167 -0.9851353 0.1623554 0.05611819 -0.9865428 0.1123467 0.1187922 -0.9865434 0.1123393 0.1187945 -0.9873232 0.04008769 0.1535779 -0.9873266 0.04008662 0.1535554 -0.9873245 -0.04008775 0.1535688 -0.5013995 -0.5698159 0.6510826 -0.1887375 -0.6142588 0.7662012 -0.1877164 -0.8134377 0.5505287 -0.6904693 -0.6784676 0.2508664 -0.1810314 -0.8876165 0.4235145 -0.1771463 -0.9784269 0.1063019 -0.6016974 -0.7986104 -0.01348394 -0.172203 -0.9784279 -0.1141273 -0.1657915 -0.916689 -0.3635855 -0.559194 -0.7419334 -0.3699147 -0.1628737 -0.8134322 -0.5583909 -0.1560082 -0.6424655 -0.7502663 -0.4281637 -0.5586751 -0.7103226 -0.1561491 -0.4600017 -0.87408 -0.1499547 -0.2192223 -0.9640825 -0.1499394 -0.2192265 -0.964084 -0.1499343 0.2192268 -0.9640847 -0.1499587 0.219223 -0.9640818 -0.1542011 0.6142486 -0.7738997 -0.4717401 0.5698146 -0.6728839 -0.1561463 0.4599986 -0.8740822 -0.6017019 0.7986069 -0.01348417 -0.172213 0.978426 -0.1141286 -0.1619115 0.8876174 -0.4311847 -0.6785189 0.6784803 -0.2815609 -0.1628803 0.8134325 -0.5583886 -0.5752198 0.7419204 0.3444946 -0.181935 0.9166895 0.3557809 -0.1771631 0.978424 0.1063011 -0.1951208 -0.4600088 0.8662102 -0.1930714 -0.2192238 0.9563809 -0.1929823 -0.2192224 0.9563993 -0.1930248 0.2192237 0.9563903 -0.1930137 0.2192216 0.956393 -0.1951311 0.4600077 0.8662083 -0.4595013 0.5586956 0.6904475 -0.1895276 0.6424643 0.7425085 -0.1877165 0.8134381 0.5505279 -0.5478442 -0.1887752 0.8150035 -0.5478195 -0.1887816 0.8150187 -0.5441899 -0.5289245 0.6512268 -0.5441491 -0.5289441 0.651245 -0.5375583 -0.7643367 0.3561187 -0.5375386 -0.7643429 0.3561351 -0.5293003 -0.8483517 -0.01186156 -0.5293198 -0.8483394 -0.01186287 -0.5210645 -0.7643325 -0.3798521 -0.5210776 -0.764323 -0.3798533 -0.5144708 -0.5289229 -0.6749523 -0.5144304 -0.5289472 -0.674964 -0.5107917 -0.1887736 -0.8387231 -0.510743 -0.1887792 -0.8387514 -0.5107719 0.1887758 -0.8387346 -0.5107628 0.1887792 -0.8387395 -0.5144363 0.5289466 -0.6749598 -0.5144802 0.528917 -0.6749497 -0.521072 0.7643293 -0.3798481 -0.521063 0.7643308 -0.3798578 -0.5293072 0.8483474 -0.0118618 -0.5293127 0.8483439 -0.01186263 -0.5375355 0.7643513 0.356122 -0.5375695 0.7643243 0.3561282 -0.5442028 0.5289182 0.6512212 -0.5441494 0.5289444 0.6512444 -0.5478238 0.1887742 0.8150174 -0.5478404 0.18878 0.8150049 -0.8476998 -0.1221281 0.5162264 -0.8476961 -0.122137 0.5162305 -0.8453349 -0.3421867 0.410265 -0.8453145 -0.342215 0.4102834 -0.8410354 -0.4945121 0.2193568 -0.8410462 -0.4944955 0.2193531 -0.8357046 -0.54886 -0.0187295 -0.8357068 -0.5488564 -0.01872986 -0.8303592 -0.4945234 -0.2568076 -0.8303694 -0.4945023 -0.2568159 -0.8261007 -0.3421916 -0.4477306 -0.8260875 -0.3422121 -0.4477392 -0.8237196 -0.1221331 -0.5536873 -0.8237133 -0.122134 -0.5536965 -0.8237174 0.1221307 -0.5536909 -0.8237158 0.1221312 -0.5536935 -0.8260899 0.3422056 -0.4477397 -0.8260988 0.3421974 -0.4477297 -0.8303591 0.4945234 -0.2568084 -0.8303729 0.4944981 -0.2568125 -0.8357007 0.5488657 -0.0187295 -0.8357043 0.5488601 -0.0187298 -0.8410359 0.4945124 0.2193541 -0.8410456 0.4944952 0.2193557 -0.845319 0.3422067 0.410281 -0.845331 0.342194 0.4102666 -0.8477074 0.1221259 0.5162145 -0.8476876 0.1221418 0.5162433 -0.999749 -5.74889e-6 -0.02240854 -0.999749 1.43722e-6 -0.02240788 -0.999749 -1.43722e-6 -0.02240794 -0.9997491 -2.87448e-6 -0.02240353 -0.9997491 0 -0.02240121 -0.999749 0 -0.02240818 -0.999749 0 -0.02240329 -0.9997491 -5.74891e-6 -0.02240473 -0.9997491 5.74891e-6 -0.02240467 -0.999749 5.74892e-6 -0.02240872 -0.999749 0 -0.02240788 -0.9997491 0 -0.02240157 -0.02164256 0.25882 0.9656831 -0.01584339 0.7071059 0.7069301 -0.01584333 0.7071077 0.7069284 -0.005799114 0.9659258 0.2587546 -0.005799114 0.9659257 0.2587546 0.005799114 0.9659258 -0.2587544 0.005799174 0.9659259 -0.2587543 0.01584345 0.7071059 -0.7069302 0.01584357 0.7071058 -0.7069303 0.02164256 0.2588201 -0.9656831 0.02164274 0.2588201 -0.9656831 0.02164262 -0.2588202 -0.9656831 0.02164256 -0.2588207 -0.9656829 0.01584357 -0.7071058 -0.7069303 0.01584345 -0.707106 -0.7069301 0.005799114 -0.9659259 -0.2587541 0.005799114 -0.9659258 -0.2587543 -0.005799114 -0.9659258 0.2587544 -0.005799114 -0.9659259 0.2587541 -0.01584357 -0.7071061 0.7069301 -0.01584333 -0.7071076 0.7069286 -0.02164238 -0.2588205 0.9656829 -0.02164262 -0.2588202 0.9656831 -0.02164256 0.2588199 0.9656832 -0.9997491 0 -0.02240455 -0.999749 0 -0.02240532 -0.999749 1.19709e-6 -0.02240598 -0.999749 1.967e-6 -0.02240455 -0.999749 -4.93591e-6 -0.02240478 -0.9997491 0 -0.02240246 -0.9997491 5.17402e-6 -0.0224024 -0.9997491 0 -0.02240407 -0.9997491 0 -0.0224049 -0.999749 -1.77234e-6 -0.0224052 -0.9997491 0 -0.02240502 -0.9997491 0 -0.02240502 -0.999749 0 -0.02240711 -0.999749 1.17939e-6 -0.02240812 -0.9997491 0 -0.02240526 -0.999749 2.99272e-6 -0.02240598 -0.999749 1.96699e-6 -0.02240604 -0.999749 -2.46794e-6 -0.02240514 -0.999749 0 -0.02240687 -0.999749 0 -0.02240693 -0.999749 1.85037e-6 -0.02240556 -0.999749 -5.5272e-6 -0.02240616 -0.999749 -1.77234e-6 -0.02240598 -0.999749 1.20761e-5 -0.02240735 -0.999749 -1.01174e-5 -0.02240622 -0.999749 0 -0.02240711 0.9823395 0 0.1871071 0.9004293 0.005695223 0.4349653 0.9598838 0 0.280398 0.9598856 0 0.2803921 0.9823395 0 0.187107 0.98234 0 0.1871048 0.6186244 0 0.7856869 0.6186179 0 0.785692 0.8008978 0 0.5988012 0.8009042 0 0.5987926 0.9004433 0 0.4349735 0.97114 -2.94851e-4 0.2385103 0.98234 0 0.1871047 0.8266429 0.02606862 -0.5621227 0.6160702 0.1637555 0.7704815 0.6160808 0.1637548 0.7704732 0.6174864 0.3436275 0.7075526 0.6174774 0.3436302 0.7075592 0.6198357 0.5026714 0.6025987 0.6198338 0.5026735 0.602599 0.6229779 0.6312598 0.4619628 0.6229947 0.631238 0.46197 0.6267381 0.7215592 0.2941966 0.6267486 0.7215524 0.2941908 0.6308889 0.7681143 0.1094512 0.6309008 0.7681057 0.1094443 0.6351773 0.7681003 -0.08106654 0.6351563 0.7681161 -0.08108144 0.6392965 0.7215535 -0.2658205 0.6392907 0.7215593 -0.2658189 0.6430717 0.6312384 -0.4335863 0.643058 0.6312465 -0.4335948 0.6462066 0.5026788 -0.5742222 0.6462078 0.5026743 -0.5742249 0.6485626 0.343634 -0.6791777 0.6485751 0.3436283 -0.6791686 0.6499611 0.1637576 -0.7421146 0.6499754 0.1637551 -0.7421026 0.6528041 0.03463399 -0.7567347 0.6528297 0.03463536 -0.7567125 0.9188634 0.01862508 -0.3941364 0.989709 0.007410228 -0.1429029 0.9897087 0.007408857 -0.1429057 0.9894725 0.03518241 -0.1403799 0.9894719 0.03518068 -0.1403846 0.98917 0.07381701 -0.1268615 0.9891691 0.07382398 -0.1268641 0.9886651 0.1079829 -0.1043128 0.9886637 0.1079939 -0.1043144 0.9879876 0.1356052 -0.07410579 0.9879874 0.1356095 -0.0741021 0.9871789 0.1550136 -0.03805959 0.9871817 0.1549967 -0.0380584 0.9862892 0.1650183 0.001630485 0.9862911 0.1650072 0.001628518 0.9853689 0.1650357 0.04255998 0.985374 0.1650057 0.04255956 0.9844823 0.1550166 0.08224755 0.9844824 0.1550164 0.08224654 0.9836766 0.1356015 0.118291 0.9836739 0.1356187 0.1182925 0.9829962 0.1080033 0.1485051 0.9829987 0.1079838 0.1485025 0.9824922 0.07382982 0.171051 0.9824934 0.07381713 0.171049 0.9821898 0.03517884 0.184569 0.982191 0.03517663 0.1845632 0.9823142 0.007406115 0.187094 0.9823126 0.007415711 0.1871014 0.6182386 0.03463304 0.7852271 0.6182556 0.03463447 0.7852137 0.8006315 0.02606999 0.5985897 0.8769674 0.04020404 -0.4788652 0.8751657 0.106389 -0.4719814 0.875163 0.1063882 -0.4719867 0.8742401 0.2232573 -0.4311156 0.8742449 0.2232531 -0.4311081 0.8727226 0.3265711 -0.3629142 0.872712 0.3265926 -0.3629202 0.8706647 0.4101223 -0.2715565 0.8706653 0.4101234 -0.2715526 0.8682283 0.4687817 -0.1625527 0.8682212 0.4687954 -0.1625515 0.8655303 0.4990482 -0.04252332 0.8655284 0.4990513 -0.0425288 0.862753 0.4990534 0.08125984 0.8627635 0.4990352 0.08125931 0.8600733 0.4687834 0.2012867 0.8600723 0.4687846 0.2012876 0.8576238 0.4101234 0.3102911 0.8576327 0.410111 0.3102825 0.855583 0.3265797 0.4016508 0.8555839 0.3265787 0.40165 0.8540507 0.2232545 0.4698456 0.8540545 0.2232522 0.4698399 0.8531365 0.1063898 0.5107243 0.8531314 0.1063933 0.510732 0.8546301 0.04020524 0.5176784 0.9002877 0.01862049 0.434897 -0.02212691 -0.1564337 0.9874407 -0.02213048 -0.1564348 0.9874404 -0.01996564 -0.4539902 0.8907831 -0.01996225 -0.4539908 0.8907827 -0.01584458 -0.7071061 0.70693 -0.01584458 -0.7071068 0.7069292 -0.0101726 -0.8910058 0.4538783 -0.01017087 -0.8910061 0.4538774 -0.003504574 -0.987689 0.156391 -0.003505408 -0.987688 0.1563978 0.003505408 -0.9876881 -0.1563968 0.003504574 -0.9876887 -0.1563934 0.01017427 -0.8910064 -0.4538769 0.01017081 -0.8910053 -0.4538791 0.01584112 -0.7071053 -0.7069309 0.01584112 -0.7071062 -0.7069299 0.01997244 -0.4539914 -0.8907822 0.01995873 -0.4539915 -0.8907825 0.02212691 -0.1564337 -0.9874407 0.02212697 -0.1564348 -0.9874405 0.02241384 0 -0.9997488 0.02240002 0 -0.9997492 0.02214074 0.1564342 -0.9874402 0.02212005 0.1564347 -0.9874407 0.01997244 0.4539914 -0.8907822 0.01995873 0.4539909 -0.8907828 0.01584118 0.7071061 -0.70693 0.01584106 0.707106 -0.7069301 0.01017427 0.891005 -0.4538796 0.01017427 0.8910089 -0.453872 0.00350368 0.9876876 -0.1563999 0.003506302 0.9876886 -0.1563935 -0.003506302 0.9876885 0.1563946 -0.003504574 0.9876879 0.1563982 -0.01017266 0.8910081 0.4538736 -0.01017087 0.891007 0.4538757 -0.01584458 0.7071053 0.7069308 -0.01584458 0.7071071 0.706929 -0.01996564 0.4539902 0.8907831 -0.01996219 0.45399 0.8907831 -0.02213042 0.1564338 0.9874406 -0.02213048 0.1564353 0.9874402 -0.02240687 0 0.999749 -0.02240341 0 0.9997491 -0.9997491 4.56572e-6 -0.0224058 -0.999749 0 -0.02240586 -0.9997491 0 -0.02240538 -0.9997491 0 -0.02240073 -0.999749 -3.09821e-6 -0.02240622 -0.9997491 0 -0.02240538 -0.999749 0 -0.02240681 -0.999749 0 -0.02240592 -0.9997491 0 -0.02239876 -0.999749 0 -0.02240693 -0.999749 -7.4766e-7 -0.02240633 -0.999749 0 -0.02240574 -0.999749 -5.71151e-7 -0.0224058 -0.999749 1.25783e-6 -0.02240693 -0.999749 -4.37746e-7 -0.02240699 -0.999749 6.14074e-7 -0.02240592 -0.999749 2.99617e-7 -0.02240586 -0.999749 0 -0.02240753 -0.999749 0 -0.02240753 -0.999749 0 -0.02240759 -0.999749 -6.18317e-7 -0.02240747 -0.999749 2.89863e-7 -0.02240586 -0.999749 1.28301e-6 -0.02240604 -0.999749 -5.60865e-7 -0.02240687 -0.999749 0 -0.02240705 -0.999749 1.08258e-6 -0.02240586 -0.999749 2.8146e-6 -0.02240562 -0.999749 -1.04255e-6 -0.0224055 -0.999749 0 -0.0224061 -0.999749 0 -0.02240628 -0.9997491 0 -0.02240532 -0.999749 2.96139e-6 -0.02240639 -0.999749 0 -0.02240556 -0.999749 -1.4073e-6 -0.02240598 -0.9997491 0 -0.02240556 -0.999749 0 -0.02240538 -0.9997491 1.12173e-6 -0.02240526 -0.999749 0 -0.02240598 -0.999749 0 -0.02240592 -0.999749 -1.23663e-6 -0.02240765 -0.999749 0 -0.02240771 -0.999749 2.98784e-7 -0.02240753 -0.999749 5.99235e-7 -0.0224058 -0.999749 -7.6759e-7 -0.02240604 -0.999749 -5.8366e-7 -0.02240544 -0.9997491 -6.28919e-7 -0.02240526 -0.999749 0 -0.02240562 -0.9997491 1.28357e-6 -0.02240562 -0.999749 -1.49532e-6 -0.02240628 0.02240657 0 -0.999749 0.02240526 0 -0.999749 -0.0221644 0.1465336 0.9889574 -0.0221641 0.1465327 0.9889575 -0.02026081 0.4270156 0.9040173 -0.02026057 0.4270141 0.904018 -0.01661682 0.6708211 0.7414331 -0.0166167 0.670821 0.7414332 -0.01154583 0.8570097 0.5151709 -0.01154583 0.8570092 0.5151718 -0.00548315 0.969595 0.2446544 -0.00548315 0.9695936 0.2446598 -0.02240604 0 0.999749 -0.02240604 0 0.999749 -0.00548321 -0.9695937 0.2446596 -0.00548315 -0.9695941 0.2446572 -0.01154571 -0.8570095 0.5151715 -0.01154583 -0.8570104 0.5151699 -0.01661682 -0.6708213 0.7414329 -0.0166167 -0.670821 0.7414332 -0.02026081 -0.4270153 0.9040175 -0.02026057 -0.4270141 0.9040181 -0.02216434 -0.1465331 0.9889574 -0.02216416 -0.1465331 0.9889574 0.02240586 0 -0.999749 0 -1 -3.88051e-6 0 -1 3.49398e-6 -0.02240645 0 0.999749 -0.02240598 0 0.999749 0.02216428 -0.1465338 -0.9889574 0.02216422 -0.1465335 -0.9889574 0.02026051 -0.427015 -0.9040177 0.02026063 -0.4270151 -0.9040176 0.01661676 -0.6708211 -0.7414331 0.01661688 -0.6708195 -0.7414345 0.01154583 -0.8570115 -0.5151678 0.01154577 -0.8570106 -0.5151695 0.00548315 -0.969594 -0.2446578 0.00548321 -0.9695935 -0.24466 0 1 -9.20783e-7 0 1 1.7694e-6 0 1 -7.48572e-7 0 1 5.57643e-7 0 1 1.61903e-7 0 1 -5.23137e-7 0 1 5.00222e-7 0 1 4.99049e-7 0 1 1.11529e-6 0 1 3.68427e-6 0 1 -3.41137e-6 0 1 4.59623e-7 0 1 2.30268e-6 0.999749 0 0.02240633 0.999749 0 0.02240639 0 -1 -1.70568e-6 0 -1 4.59623e-7 0 -1 -4.85424e-7 0 -1 7.01577e-7 0 -1 -1.3816e-6 0 -1 1.06164e-6 0 -1 -1.6843e-6 0 -1 5.57644e-7 0 -1 -8.36462e-7 0 -1 4.04758e-7 0 -1 -1.55019e-6 0.02240645 0 -0.999749 0.0224052 0 -0.999749 0.02240675 0 -0.999749 0.02240598 0 -0.999749 0.0224061 0 -0.999749 0.0224061 0 -0.999749 0.02240616 0 -0.999749 0.02240598 0 -0.999749 0.00548315 0.9695934 -0.2446605 0.00548315 0.9695947 -0.244655 0.01154583 0.8570089 -0.5151723 0.01154589 0.8570106 -0.5151695 0.01661682 0.6708213 -0.7414329 0.01661682 0.6708208 -0.7414333 0.02026051 0.4270145 -0.9040178 0.02026063 0.4270151 -0.9040176 0.02216422 0.1465334 -0.9889574 0.02216428 0.1465339 -0.9889574 -0.02240538 0 0.999749 0.9997491 0 0.02240526 0.999749 0 0.02240645 0.999749 0 0.02240514 0.9997491 0 0.02240514 0.9997491 0 0.0224055 0.999749 2.57552e-6 0.02240633 0.999749 0 0.0224052 0.999749 0 0.02240633 0.999749 0 0.02240657 0.999749 0 0.0224061 0.999749 0 0.02240496 0.999749 -4.02509e-6 0.02240586 0.999749 0 0.02240622 0.9997491 0 0.0224049 0.999749 0 0.02240669 0.999749 2.46996e-6 0.02240645 0.999749 1.82104e-6 0.02240657 0.999749 2.45675e-6 0.02240675 0.999749 0 0.02240657 0.999749 0 0.02240669 0.999749 0 0.02240651 0.999749 0 0.02240633 0.999749 0 0.02240633 0.999749 0 0.02240628 0.999749 0 0.02240633 0.999749 0 0.02240663 0.999749 0 0.02240657 0.999749 0 0.02240663 0.999749 0 0.02240687 0.999749 -1.66399e-6 0.02240651 0.999749 -2.46994e-6 0.02240669 0.999749 0 0.02240663 0.999749 0 0.02240669 0.999749 9.10515e-7 0.02240657 0.999749 0 0.02240675 0.999749 2.31794e-7 0.02240663 0.999749 1.18619e-6 0.02240651 0.999749 4.85581e-7 0.02240651 0.999749 5.57731e-7 0.02240514 0.999749 0 0.02240514 0.999749 0 0.02240514 0.999749 -1.05054e-6 0.02240508 0.999749 5.13191e-7 0.02240651 0.999749 0 0.02240645 0.999749 0 0.02240657 0.999749 0 0.02240669 0.999749 0 0.02240657 0.999749 0 0.02240639 0.02207374 -0.1736477 -0.9845605 0.0220552 -0.1736478 -0.9845609 0.01940459 -0.5000005 -0.8658077 0.01941078 -0.5000016 -0.865807 0.01439511 -0.7660454 -0.6426253 0.01440763 -0.7660444 -0.6426262 0.007663071 -0.9396927 -0.3419342 0.00766313 -0.9396923 -0.3419351 -0.00766468 -0.939693 0.3419334 -0.00766313 -0.9396913 0.3419381 -0.01440137 -0.7660471 0.6426231 -0.01440447 -0.7660426 0.6426284 -0.01940464 -0.5000019 0.8658069 -0.01940768 -0.5000006 0.8658075 -0.0220645 -0.1736475 0.9845607 -0.02207064 -0.173648 0.9845604 -0.02241379 0 0.9997488 -0.02240693 0 0.999749 -0.02207076 0.173648 0.9845605 -0.0220645 0.1736483 0.9845606 -0.01940459 0.5000005 0.8658077 -0.01940453 0.4999999 0.8658081 -0.01440137 0.7660428 0.6426283 -0.01440447 0.7660472 0.642623 -0.00766468 0.939693 0.3419334 -0.007661581 0.9396935 0.341932 0 1 3.10374e-6 0 1 -2.71578e-6 0.007660031 0.939693 -0.3419334 0.00766617 0.9396938 -0.3419311 0.01439517 0.7660456 -0.642625 0.01440751 0.7660427 -0.6426283 0.01940453 0.5000004 -0.8658078 0.01941078 0.5000011 -0.8658073 0.0220614 0.1736483 -0.9845606 0.02206766 0.1736481 -0.9845605 0.02240693 0 -0.999749 0.02240693 0 -0.999749 0.02240341 0 -0.9997491 0.02241033 0 -0.999749 0.003296554 0.9891157 -0.1471029 0.01697063 0.6529992 -0.7571685 0.02224004 0.1205355 -0.9924599 -0.1407488 0.1713388 -0.9751065 0.02143663 0.2910879 -0.9564562 0.01940345 0.5000001 -0.8658081 -0.2664505 0.5339717 -0.8024204 0.0204935 0.4042797 -0.9144058 -0.03085553 0.7477322 -0.6632832 -0.1216709 0.7589291 -0.6397054 0.01197469 0.8451857 -0.5343387 0.00766462 0.9396914 -0.3419376 -0.3295359 0.9083818 -0.2573882 0.009605288 0.9034513 -0.4285834 -0.1000668 0.9949783 -0.002240657 -0.1000679 0.9949781 -0.002243757 -0.003297209 0.9891157 0.1471034 -0.005940496 0.9641647 0.2652379 -0.1963016 0.9227888 0.3315516 -0.009605348 0.9034522 0.4285812 -0.01696848 0.6530192 0.7571513 -0.06912457 0.7648957 0.6404346 -0.1769189 0.738587 0.6505298 -0.01197117 0.8451914 0.5343296 -0.01859956 0.556964 0.8303284 -0.1991557 0.4918245 0.8476117 -0.02048933 0.4042824 0.9144048 -0.02206259 0.1736477 0.9845608 -0.2525079 0.1172773 0.9604613 -0.02144205 0.2910894 0.9564557 -0.02240693 0 0.999749 0.999749 0 0.02240681 0.999749 0 0.02240639 0.999749 -2.17573e-6 0.02240633 0.999749 2.05198e-6 0.02240687 0.999749 -4.35146e-6 0.02240675 0.999749 -2.05198e-6 0.02240681 0.999749 0 0.02240675 0.999749 0 0.02240765 0.999749 0 0.02240687 0.999749 -4.10398e-6 0.02240616 0.999749 4.3515e-6 0.02240639 0.999749 -4.10397e-6 0.0224061 0.999749 0 0.02240598 0.999749 4.10395e-6 0.02240705 0.999749 4.35148e-6 0.02240765 0.999749 0 0.0224052 0.999749 -2.17573e-6 0.02240484 0.999749 0 0.02240663 0.999749 1.15587e-6 0.02240681 0.999749 0 0.02240639 0.999749 0 0.02240657 0.999749 0 0.02240639 0.999749 0 0.02240633 0.999749 0 0.02240681 0.999749 0 0.02240645 0.999749 2.05196e-6 0.02240484 0.999749 4.35146e-6 0.02240538 0.999749 -4.10396e-6 0.02240759 0.999749 0 0.02240693 0.999749 -4.10392e-6 0.02240639 0.999749 0 0.02240622 0.999749 0 0.02240586 0.9997491 0 0.02240574 0.999749 4.10394e-6 0.02240699 0.999749 4.35146e-6 0.02240782 0.999749 -4.10396e-6 0.02240705 0.999749 2.17573e-6 0.02240675 0.999749 2.052e-6 0.02240699 0.999749 -2.03977e-7 0.02240699 0.999749 0 0.02240645 -0.01696848 -0.6530201 0.7571505 -0.02224493 -0.120536 0.9924597 -0.1842907 -0.1713376 0.9678226 -0.02144193 -0.2910875 0.9564562 -0.01940995 -0.4999998 0.8658081 -0.3021247 -0.5339723 0.78968 -0.02049791 -0.4042829 0.9144044 -0.0605461 -0.7477287 0.6612383 -0.1502061 -0.7589307 0.6336107 -0.01197105 -0.8451795 0.5343485 0.003296554 -0.9891147 -0.1471104 -0.1000677 -0.9949782 -0.002246201 -0.100067 -0.9949782 -0.002245366 -0.003297209 -0.9891123 0.147126 -0.00766462 -0.9396929 0.3419336 -0.3407313 -0.9083827 0.2423697 -0.009605348 -0.9034503 0.4285853 0.005945086 -0.9641678 -0.2652266 -0.1812483 -0.9227896 -0.3400126 0.009605288 -0.9034501 -0.4285855 0.01697099 -0.6530134 -0.7571563 -0.04036527 -0.7648966 -0.6428872 -0.1475902 -0.7385894 -0.6578016 0.01197463 -0.8451822 -0.5343442 0.01860755 -0.556964 -0.8303283 -0.1609823 -0.4918198 -0.8556858 0.02049374 -0.4042843 -0.9144037 0.02206254 -0.1736495 -0.9845604 -0.2092316 -0.1172776 -0.970808 0.02143663 -0.2910873 -0.9564564 0.742906 0.1381429 0.6549865 0.7604323 0.6421729 0.09673118 0.7715048 0.1381437 -0.6210448 0.4817145 0.3142571 -0.8180426 0.7719599 0.2890218 -0.5661664 0.4757601 0.5045398 -0.7204803 0.771299 0.421769 -0.4766643 0.4696607 0.6659441 -0.579601 0.7696344 0.5286934 -0.3579753 0.4526286 0.8916416 0.01014101 0.7640076 0.642167 -0.06256252 0.4578524 0.865514 -0.2031177 0.4450657 0.788738 0.4240389 0.7528215 0.528696 0.3920974 0.4432319 0.6659458 0.6000515 0.7491671 0.4217705 0.510743 0.4445737 0.3142632 0.8388046 0.6250949 0.03438651 0.7797911 0.8747404 0.1782861 -0.4506034 0.8747544 0.1782711 -0.4505822 0.8734884 0.2855924 -0.3942779 0.8734837 0.2855967 -0.3942854 0.8716843 0.3763195 -0.3139272 0.8694512 0.4451617 -0.2142094 0.8669123 0.488138 -0.1009178 0.8669132 0.488137 -0.1009153 0.864214 0.5027518 0.01936745 0.8615182 0.4881436 0.1396513 0.8589871 0.4451496 0.2529491 0.8589823 0.4451584 0.2529494 0.856746 0.376313 0.3526684 0.8536894 0.1782727 0.4893192 0.8536833 0.1782777 0.4893282 0.8549481 0.2855892 0.4330157 0.9882322 0.02107673 -0.1515021 0.8753988 0.06060063 -0.479588 0.8754003 0.06059789 -0.4795855 0.4873733 0.106531 -0.8666709 0.6594015 0.03438687 -0.7510042 0.9882308 0.02108025 -0.151511 0.9882451 0.05062019 -0.1442546 0.9930142 0.04911583 -0.1072874 0.9880595 0.07036143 -0.1370694 0.9875679 0.09933882 -0.1218264 0.9903166 0.08727008 -0.1079683 0.9875057 0.1134061 -0.1094147 0.9869409 0.1308979 -0.09388035 0.871687 0.3763101 -0.313931 0.8694501 0.4451624 -0.2142128 0.4636277 0.7887313 -0.4036733 0.7671458 0.6035959 -0.2171623 0.9869402 0.1309049 -0.09387862 0.986617 0.1468827 -0.07079833 0.9911679 0.1252605 -0.04354202 0.9861364 0.1573814 -0.05259466 0.9852769 0.1698181 -0.01978218 0.9904769 0.1368097 -0.01545697 0.9851229 0.1718165 -0.003486871 0.9843435 0.1748748 0.02206045 0.8642187 0.5027435 0.01936995 0.8615217 0.4881368 0.1396525 0.4482854 0.8655176 0.2234269 0.7566478 0.6035957 0.2513098 0.9843406 0.1748913 0.02206164 0.9839768 0.1718208 0.04761666 0.9879835 0.1434608 0.0575115 0.9833926 0.1681421 0.06831759 0.9825202 0.1548563 0.1033132 0.9900633 0.1171467 0.07779037 0.982456 0.1468784 0.1149221 0.9817437 0.1309024 0.1379997 0.8567456 0.3763123 0.35267 0.8549407 0.285597 0.4330251 0.4430108 0.5045406 0.7410669 0.745822 0.2890207 0.6001805 0.9817435 0.130901 0.1380029 0.9816118 0.1134067 0.1535492 0.9842247 0.08992427 0.1523662 0.9811385 0.09725403 0.1670592 0.980677 0.06201809 0.185544 0.9901536 0.04826056 0.131403 0.9807901 0.05061775 0.1883842 0.4480473 0.1065317 0.88764 0.8530327 0.06060016 0.5183271 0.8530361 0.06059736 0.5183216 0.9804513 0.02108258 0.1956295 0.9804517 0.02107793 0.1956281 0.6254652 0 0.7802522 0.8546037 0 0.519281 0.8546063 0 0.5192766 0.9806694 0 0.1956726 0.7715009 -0.1381441 -0.6210496 0.7640082 -0.6421667 -0.06255811 0.7429017 -0.1381427 0.6549915 0.4445742 -0.3142616 0.8388049 0.7458224 -0.289018 0.6001814 0.4430033 -0.5045464 0.7410675 0.7491644 -0.4217724 0.5107453 0.4432311 -0.6659445 0.6000534 0.7528207 -0.5286957 0.3920994 0.4526485 -0.8916314 0.01014506 0.7604367 -0.6421691 0.09672075 0.4482766 -0.8655208 0.223432 0.4636048 -0.7887421 -0.4036788 0.7696323 -0.528694 -0.3579788 0.4696611 -0.6659445 -0.5796003 0.7712966 -0.4217711 -0.4766665 0.4817015 -0.3142595 -0.8180493 0.6593996 -0.03438675 -0.751006 0.8536865 -0.178279 0.4893222 0.8536868 -0.1782716 0.4893242 0.8549486 -0.2855948 0.433011 0.8549463 -0.2855886 0.4330196 0.8567469 -0.3763144 0.3526646 0.8589859 -0.4451537 0.2529457 0.8615213 -0.4881376 0.1396527 0.8615164 -0.4881461 0.1396528 0.8642207 -0.5027402 0.01936757 0.8669163 -0.4881312 -0.1009166 0.8694511 -0.4451629 -0.2142077 0.8694567 -0.4451519 -0.2142081 0.8716867 -0.3763132 -0.3139281 0.8747556 -0.1782749 -0.4505782 0.8747459 -0.1782777 -0.4505961 0.8734838 -0.2855967 -0.394285 0.9804506 -0.02107918 0.195633 0.853039 -0.06059825 0.5183171 0.8530315 -0.06059855 0.5183292 0.4480543 -0.1065309 0.8876366 0.6250991 -0.03438675 0.7797876 0.9804523 -0.02108126 0.1956246 0.9807898 -0.05061775 0.1883856 0.9872105 -0.04911851 0.151667 0.9809268 -0.07035505 0.1811987 0.9811151 -0.09935545 0.1659568 0.9844862 -0.08725625 0.1522279 0.9816099 -0.1134082 0.1535604 0.981742 -0.1309112 0.1380035 0.8567509 -0.3763039 0.3526663 0.8589842 -0.445155 0.2529494 0.4450532 -0.7887453 0.4240387 0.7566384 -0.6036045 0.2513165 0.9817433 -0.1309015 0.1380035 0.9824563 -0.1468756 0.1149226 0.9882217 -0.1252615 0.08790647 0.9827901 -0.1573809 0.09672135 0.9834061 -0.1697912 0.0639013 0.9887876 -0.1368257 0.05981647 0.9839757 -0.1718255 0.04762345 0.9843431 -0.1748775 0.02206099 0.8642171 -0.5027463 0.01936995 0.8669099 -0.4881428 -0.1009151 0.4578437 -0.8655174 -0.2031226 0.7671383 -0.6036043 -0.2171653 0.9843392 -0.1748995 0.02206128 0.9851218 -0.171822 -0.003489851 0.9895671 -0.1434683 -0.0131911 0.9854642 -0.1681513 -0.02419531 0.9861621 -0.1548569 -0.05919271 0.9925541 -0.1171492 -0.03335332 0.9866169 -0.1468859 -0.07079356 0.9869405 -0.1309012 -0.09387928 0.8716933 -0.3763054 -0.3139194 0.8734891 -0.2855926 -0.3942764 0.4757611 -0.504545 -0.7204761 0.7719599 -0.2890218 -0.5661664 0.9869402 -0.1309013 -0.09388285 0.9875046 -0.1134077 -0.109423 0.9900624 -0.0899254 -0.1081204 0.9876382 -0.0972557 -0.1229323 0.9880057 -0.06201171 -0.1414186 0.9950456 -0.04826909 -0.08691567 0.9882454 -0.05062019 -0.1442522 0.4873731 -0.106531 -0.866671 0.8753994 -0.06059914 -0.4795871 0.875398 -0.0605995 -0.4795895 0.9882316 -0.02107858 -0.1515058 0.9882312 -0.02107852 -0.1515084 0.6597976 0 -0.7514434 0.6597864 0 -0.7514533 0.8770079 0 -0.4804762 0.877017 0 -0.4804594 0.9884513 0 -0.1515393 0.9897361 0 -0.142908 0.9897356 0 -0.142911 0.9897352 0 -0.1429135 0.9897357 0 -0.1429107 0.9897361 0 -0.1429079 0.9897363 0 -0.1429058 0.9897361 0 -0.1429079 0.9190252 0 -0.3941991 0.9190251 0 -0.3941991 0.8269175 0 -0.5623233 0.8269289 0 -0.5623066 0.653204 0 -0.757182 0.800629 -0.02607107 0.598593 0.64996 -0.1637573 -0.7421157 0.6499817 -0.1637538 -0.7420973 0.6485619 -0.3436337 -0.6791785 0.6485781 -0.3436249 -0.6791675 0.6461989 -0.5026847 -0.5742256 0.6462101 -0.5026697 -0.5742262 0.6430635 -0.6312453 -0.4335883 0.6430748 -0.6312351 -0.4335863 0.6393053 -0.7215461 -0.2658196 0.639294 -0.7215543 -0.2658243 0.6351571 -0.7681168 -0.08106952 0.6351625 -0.7681118 -0.08107465 0.6308933 -0.7681114 0.1094472 0.630885 -0.7681185 0.1094447 0.6267385 -0.7215597 0.2941949 0.6267569 -0.7215446 0.2941926 0.6229973 -0.6312406 0.4619629 0.6229918 -0.6312435 0.4619664 0.6198421 -0.5026703 0.6025931 0.6198288 -0.5026755 0.6026025 0.6174871 -0.3436279 0.7075519 0.617487 -0.3436307 0.7075506 0.6160808 -0.1637543 0.7704733 0.6160737 -0.1637535 0.770479 0.6182596 -0.03463536 0.7852106 0.6182436 -0.03463333 0.7852231 0.9002858 -0.01862043 0.4349008 0.9823126 -0.007415711 0.1871014 0.9823141 -0.007403433 0.1870941 0.9821906 -0.03517889 0.1845646 0.98219 -0.03517627 0.1845685 0.9824931 -0.0738247 0.1710475 0.9824926 -0.07382017 0.1710524 0.9829973 -0.1079946 0.1485046 0.9829982 -0.107989 0.148503 0.9836763 -0.1356026 0.1182919 0.983675 -0.1356124 0.1182919 0.9844819 -0.1550191 0.08224684 0.9844819 -0.1550182 0.08224856 0.9853712 -0.1650219 0.0425595 0.9853731 -0.1650109 0.04255807 0.9862916 -0.165004 0.001630485 0.9862904 -0.165011 0.001628577 0.9871782 -0.1550185 -0.03805977 0.9871796 -0.1550096 -0.03806084 0.9879866 -0.135613 -0.07410573 0.9879881 -0.1356042 -0.07410097 0.9886648 -0.1079846 -0.104313 0.9886639 -0.1079918 -0.1043154 0.9891694 -0.07381933 -0.126865 0.9891693 -0.07382369 -0.1268629 0.9894725 -0.03518438 -0.14038 0.9894721 -0.03517711 -0.1403836 0.9897089 -0.007410824 -0.1429042 0.9897089 -0.007410228 -0.1429042 0.6528076 -0.03463524 -0.7567316 0.6528215 -0.03463447 -0.7567197 0.8266407 -0.0260697 -0.562126 0.85463 -0.0402041 0.5176789 0.8531297 -0.1063923 0.5107352 0.8531348 -0.1063916 0.5107268 0.8540466 -0.223257 0.469852 0.8540549 -0.2232533 0.4698387 0.8555852 -0.3265805 0.4016456 0.8555818 -0.3265793 0.4016538 0.8576285 -0.4101158 0.3102879 0.8576229 -0.4101274 0.3102878 0.860078 -0.4687727 0.2012912 0.8600726 -0.4687858 0.2012836 0.8627611 -0.4990397 0.08125597 0.8627633 -0.4990357 0.08125865 0.8655266 -0.4990546 -0.04252356 0.8655415 -0.4990288 -0.04252278 0.8682314 -0.4687761 -0.1625524 0.8682227 -0.468792 -0.1625535 0.870662 -0.4101277 -0.2715565 0.8706653 -0.4101213 -0.2715557 0.8727181 -0.3265811 -0.3629158 0.8727145 -0.3265869 -0.3629194 0.8742461 -0.2232552 -0.4311043 0.874244 -0.2232539 -0.4311093 0.8751596 -0.1063915 -0.4719923 0.8751619 -0.1063874 -0.4719889 0.8769682 -0.04020506 -0.4788637 0.918865 -0.01862514 -0.3941323 0.02164357 -0.2588168 -0.965684 0.02164363 -0.2588176 -0.9656838 0.01584357 -0.7071073 -0.7069289 0.01584362 -0.7071087 -0.7069274 0.005799114 -0.9659252 -0.2587566 0.005799114 -0.9659262 -0.2587531 -0.005799114 -0.9659261 0.2587533 -0.005799114 -0.965925 0.2587573 -0.01584279 -0.7071068 0.7069293 -0.01584357 -0.707107 0.7069291 -0.02164542 -0.2588213 0.9656827 -0.02164 -0.2588167 0.9656841 -0.02164369 0.2588221 0.9656826 -0.02164185 0.2588171 0.9656839 -0.01584273 0.7071046 0.7069315 -0.01584362 0.7071092 0.7069268 -0.005798637 0.9659252 0.2587566 -0.005799591 0.9659254 0.2587559 0.005799114 0.9659261 -0.2587533 0.005799114 0.9659256 -0.2587551 0.01584357 0.7071073 -0.7069289 0.01584362 0.7071089 -0.7069272 0.02164363 0.2588176 -0.9656837 0.02164369 0.258818 -0.9656836 0.6831786 -0.5085899 0.5240262 0.6831748 -0.5085933 0.5240279 0.6903961 -0.6947521 0.2016751 0.6904014 -0.6947464 0.2016764 0.6987411 -0.6947492 -0.1705417 0.6987442 -0.6947453 -0.1705449 0.7059692 -0.508587 -0.4928964 0.705971 -0.5085913 -0.4928894 0.7101345 -0.1861559 -0.6790103 0.7101428 -0.1861504 -0.6790031 0.7101359 0.1861563 -0.6790087 0.7101427 0.1861515 -0.6790029 0.705972 0.5085878 -0.4928916 0.7059664 0.5085901 -0.4928973 0.6987426 0.6947478 -0.1705413 0.6987445 0.6947456 -0.1705427 0.6903985 0.6947487 0.2016786 0.6904003 0.6947475 0.2016764 0.6831837 0.5085836 0.5240256 0.6831749 0.5085933 0.5240277 0.6790044 0.1861566 0.71014 0.6790127 0.1861558 0.7101323 0.67901 -0.1861593 0.7101339 0.6790071 -0.1861545 0.7101379 0.999749 0 0.02240598 0.999749 2.27374e-6 0.02240669 0.999749 -2.27374e-6 0.02240663 0.999749 -3.63798e-6 0.02240598 0.999749 0 0.02240562 0.999749 0 0.0224058 0.999749 3.63798e-6 0.02240598 0.999749 -3.63798e-6 0.02240663 0.999749 3.63796e-6 0.02240657 0.999749 -1.819e-6 0.02240604 0.999749 0 0.0224058 0.999749 0 0.0224055 0.02164626 -0.2588187 -0.9656835 0.02164632 -0.258823 -0.9656823 0.01584118 -0.7071051 -0.7069311 0.01584821 -0.7071057 -0.7069302 0.005798101 -0.9659261 -0.2587529 0.005798101 -0.9659259 -0.2587543 -0.005798101 -0.9659257 0.2587546 -0.005801618 -0.9659261 0.2587532 -0.01584815 -0.7071093 0.7069267 -0.01584821 -0.7071051 0.7069309 -0.02164632 -0.25882 0.9656831 -0.02164638 -0.2588207 0.9656829 -0.02164638 0.2588204 0.9656829 -0.02164632 0.25882 0.9656831 -0.01584821 0.7071058 0.7069301 -0.01584815 0.7071095 0.7069264 -0.005798101 0.9659261 0.2587529 -0.005801618 0.9659259 0.2587541 0.005798101 0.9659257 -0.2587546 0.005798101 0.9659261 -0.2587534 0.01584118 0.7071059 -0.7069302 0.01584821 0.7071056 -0.7069303 0.02164632 0.25882 -0.9656831 0.0216462 0.258822 -0.9656825 0.9997491 0 0.02240568 0.999749 0 0.02240645 0.999749 -5.19715e-7 0.02240663 0.999749 -1.10871e-6 0.0224061 0.999749 4.15769e-6 0.02240616 0.999749 1.10872e-6 0.02240604 0.999749 -4.1577e-6 0.02240604 0.999749 -1.10872e-6 0.0224061 0.999749 8.31537e-6 0.02240622 0.999749 -3.32616e-6 0.02240633 0.999749 0 0.02240592 0.999749 0 0.02240639 0.9997491 0 0.02240574 0.999749 0 0.02240645 0.999749 -1.29929e-6 0.02240663 0.999749 1.10872e-6 0.02240616 0.999749 2.07885e-6 0.02240616 0.999749 -4.1577e-6 0.0224061 0.999749 0 0.02240604 0.999749 4.15769e-6 0.02240633 0.999749 -2.21744e-6 0.02240633 0.999749 0 0.0224058 0.999749 0 0.02240639 0.02163511 -0.2588192 -0.9656835 0.02163511 -0.2588174 -0.965684 0.01584774 -0.7071061 -0.7069299 0.01584774 -0.7071074 -0.7069286 0.005802273 -0.9659264 -0.2587517 0.005794823 -0.9659259 -0.2587543 -0.005798637 -0.9659253 0.2587563 -0.005798578 -0.9659259 0.2587538 -0.01584768 -0.7071094 0.7069267 -0.01583266 -0.7071082 0.7069281 -0.02165007 -0.2588192 0.9656832 -0.0216425 -0.2588201 0.9656831 -0.02164995 0.2588197 0.965683 -0.02164262 0.2588194 0.9656832 -0.01583266 0.7071107 0.7069256 -0.01584774 0.7071066 0.7069295 -0.005802333 0.9659259 0.258754 -0.005794882 0.9659254 0.258756 0.005802273 0.9659264 -0.2587521 0.005794823 0.965926 -0.258754 0.01584774 0.7071047 -0.7069314 0.01584774 0.7071068 -0.7069293 0.02163511 0.2588195 -0.9656835 0.02163511 0.2588173 -0.965684 0.999749 -7.65885e-7 0.02240747 0.999749 0 0.02240735 0.999749 7.65889e-7 0.02240675 0.999749 0 0.02240663 0.999749 0 0.0224058 0.999749 -3.88051e-6 0.02240604 0.999749 0 0.0224058 0.999749 0 0.02240633 0.999749 0 0.02240681 0.999749 -1.94024e-6 0.02240622 0.999749 3.06358e-6 0.02240669 0.999749 0 0.02240705 0.999749 -1.53178e-6 0.02240568 0.999749 0 0.02240568 0.999749 1.53179e-6 0.02240693 0.999749 3.88051e-6 0.02240651 0.999749 -3.06355e-6 0.02240645 0.999749 0 0.02240669 0.999749 0 0.02240633 0.9997491 3.06356e-6 0.02240562 0.999749 -3.88047e-6 0.02240484 0.999749 3.06359e-6 0.02240723 0.02161371 -0.2588161 -0.9656848 0.02164918 -0.25882 -0.965683 0.01584923 -0.7071082 -0.7069277 0.01584929 -0.7071067 -0.7069294 0.005796968 -0.9659258 -0.2587541 0.005799949 -0.9659261 -0.2587534 -0.005796968 -0.9659258 0.2587541 -0.005799949 -0.9659263 0.2587527 -0.01583164 -0.7071048 0.7069317 -0.01584935 -0.7071079 0.706928 -0.02163755 -0.2588194 0.9656835 -0.02163743 -0.2588195 0.9656834 -0.02163743 0.2588196 0.9656834 -0.02163755 0.2588192 0.9656835 -0.01583755 0.707105 0.7069312 -0.01584935 0.7071077 0.7069283 -0.005794048 0.9659261 0.2587531 -0.005802929 0.9659258 0.2587541 0.005796968 0.9659258 -0.2587541 0.005799949 0.965926 -0.2587537 0.01584929 0.7071062 -0.7069298 0.01583737 0.7071083 -0.706928 0.02164924 0.2588174 -0.9656836 0.02161371 0.2588189 -0.9656841 0.999749 0 0.02240586 0.999749 0 0.02240633 0.999749 0 0.02240639 0.999749 5.06153e-6 0.02240657 0.999749 -3.8294e-7 0.02240651 0.999749 1.26538e-6 0.02240759 0.999749 0 0.02240741 0.999749 -1.26538e-6 0.02240693 0.999749 -3.06356e-6 0.02240651 0.999749 -2.53075e-6 0.02240645 0.999749 0 0.0224061 0.999749 0 0.0224061 0.999749 0 0.0224058 0.999749 0 0.02240639 0.999749 0 0.02240663 0.999749 0 0.02240645 0.999749 0 0.02240729 0.9997491 0 0.02240574 0.999749 3.06358e-6 0.02240586 0.999749 -2.53077e-6 0.02240693 0.999749 0 0.02240651 0.999749 0 0.02240598 0.999749 0 0.02240628 0.02162921 -0.2588177 -0.965684 0.02164876 -0.2588198 -0.965683 0.01584064 -0.7071046 -0.7069316 0.01584041 -0.7071101 -0.706926 0.005798339 -0.9659261 -0.2587532 0.005798399 -0.9659256 -0.2587548 -0.005800843 -0.9659257 0.2587546 -0.005791127 -0.9659252 0.2587567 -0.01583081 -0.7071068 0.7069296 -0.0158503 -0.7071089 0.706927 -0.02164876 -0.2588176 0.9656836 -0.02164876 -0.2588199 0.9656831 -0.02164876 0.2588176 0.9656836 -0.02164876 0.2588199 0.965683 -0.01584053 0.707109 0.7069272 -0.01584059 0.7071063 0.7069298 -0.005793571 0.9659252 0.2587567 -0.005800843 0.9659258 0.2587543 0.005800783 0.9659264 -0.2587518 0.005795955 0.9659255 -0.2587554 0.01584047 0.7071076 -0.7069286 0.01584059 0.7071065 -0.7069297 0.02163898 0.2588177 -0.9656838 0.02164876 0.2588199 -0.9656831 0.9997491 2.05214e-6 0.02240556 0.999749 5.72024e-6 0.02240639 0.999749 -1.05963e-6 0.02240663 0.999749 0 0.02240628 0.999749 5.66782e-7 0.02240628 0.9997491 0 0.02240568 0.999749 0 0.02240562 0.999749 -1.11491e-6 0.02240639 0.999749 5.98315e-6 0.02240628 0.999749 -1.97198e-6 0.02240657 0.999749 -7.72706e-6 0.02240616 0.999749 0 0.0224058 0.999749 -5.83094e-6 0.0224061 0.999749 2.05215e-6 0.0224061 0.999749 0 0.02240657 0.999749 -2.11926e-6 0.02240651 0.999749 0 0.02240622 0.999749 0 0.02240628 0.9997491 0 0.02240562 0.999749 0 0.02240628 0.999749 5.98315e-6 0.02240622 0.999749 -7.72705e-6 0.02240651 0.999749 3.45961e-6 0.02240616 0.999749 5.83094e-6 0.0224061 0.6853538 -0.4464369 0.5753124 0.6853559 -0.4464347 0.5753116 0.6909371 -0.6451171 0.326236 0.6909383 -0.6451162 0.3262352 0.6978972 -0.7160272 0.01564037 0.6978993 -0.7160251 0.01564162 0.7048592 -0.6451174 -0.2949527 0.7048589 -0.6451178 -0.2949526 0.7104391 -0.4464368 -0.5440318 0.7104413 -0.4464358 -0.5440297 0.7135379 -0.1593316 -0.6822588 0.7135403 -0.159331 -0.6822565 0.7135384 0.1593319 -0.6822583 0.7135403 0.159331 -0.6822566 0.7104392 0.4464398 -0.5440292 0.7104408 0.4464344 -0.5440315 0.7048596 0.6451169 -0.2949531 0.7048589 0.6451178 -0.2949525 0.6978998 0.7160246 0.01564115 0.6978986 0.7160259 0.01564115 0.6909379 0.6451171 0.3262345 0.6909375 0.6451169 0.3262357 0.6853573 0.446434 0.5753103 0.6853555 0.4464345 0.5753123 0.6822541 0.1593319 0.7135424 0.6822575 0.1593309 0.7135394 0.6822555 -0.1593301 0.7135415 0.682258 -0.1593317 0.7135387 -0.01690584 -0.6562339 0.7543682 -0.01690804 -0.6562257 0.7543752 -0.009292423 -0.910016 0.4144693 -0.009288132 -0.9099995 0.4145056 0 -1 -5.96608e-6 0.009288251 -0.910011 -0.4144801 0.009290337 -0.9100235 -0.4144527 0.01690584 -0.6562174 -0.7543826 0.01690644 -0.6562415 -0.7543616 0.0161783 -0.6917104 -0.7219938 0.0161817 -0.6917074 -0.7219966 0.006262838 -0.9601278 -0.2794914 0.006262898 -0.9601359 -0.2794637 -0.005330801 -0.9712846 0.237861 -0.005332469 -0.9712754 0.2378985 -0.01549994 -0.7221685 0.6915436 -0.01550036 -0.7221729 0.6915389 -0.02151274 -0.2795608 0.959887 -0.02151262 -0.2795593 0.9598875 -0.02176243 0.2379701 0.9710287 -0.02176237 0.2379691 0.9710289 -0.01690524 0.6562263 0.7543749 -0.0169081 0.656229 0.7543724 -0.009288311 0.91 0.4145042 -0.009291172 0.910006 0.4144912 0 1 -1.74124e-7 0.00928837 0.9100087 -0.4144852 0.009289801 0.9100109 -0.4144802 0.01690518 0.6562287 -0.7543727 0.01690512 0.6562268 -0.7543743 0.021766 0.2379568 -0.9710318 0.02175909 0.2379575 -0.9710318 0.02150923 -0.279561 -0.959887 0.02151608 -0.2795586 -0.9598876 0.0154969 -0.7221754 -0.6915364 0.01549845 -0.7221638 -0.6915485 0.005330801 -0.971278 -0.2378879 0.005331695 -0.9712788 -0.2378848 -0.006263792 -0.9601351 0.2794663 -0.006263613 -0.960128 0.2794908 -0.01618212 -0.691724 0.7219808 -0.01618027 -0.691706 0.7219979 -0.01690804 -0.6562263 0.7543747 -0.01690536 -0.6562296 0.7543719 -0.009289681 -0.9100003 0.4145037 -0.009288489 -0.9100164 0.4144685 0 -1 -7.48731e-6 0.00928986 -0.9100169 -0.4144673 0.009288311 -0.9100013 -0.4145016 0.01690518 -0.6562295 -0.754372 0.01690512 -0.6562244 -0.7543765 0.01674985 0.6642445 -0.7473277 0.01674717 0.6642165 -0.7473527 0.00863415 0.9227886 -0.38521 0.008633255 0.922798 -0.3851874 -0.001192927 0.9985815 0.05323195 -0.001192808 0.9985807 0.05324661 -0.01078206 0.8765916 0.4811145 -0.01078319 0.8766 0.4810989 -0.01823878 0.580955 0.8137313 -0.01823502 0.5809646 0.8137246 -0.02207964 0.1703225 0.985141 -0.02208203 0.1703075 0.9851436 -0.0215466 -0.2741084 0.9614575 -0.02155131 -0.2741246 0.9614528 -0.01690846 0.6562424 0.7543607 -0.01690506 0.6562039 0.7543943 -0.009290218 0.9100088 0.4144851 -0.009290337 0.9100088 0.4144849 0 1 -1.60338e-5 0.009289979 0.9099901 -0.4145261 0.009288489 0.9100356 -0.4144264 0.0169056 0.6562079 -0.7543908 0.01690644 0.6562415 -0.7543616 0.02154541 -0.2741116 -0.9614566 0.02155125 -0.2740814 -0.961465 0.02207571 0.1702902 -0.9851467 0.02207928 0.1702845 -0.9851476 0.01823502 0.58098 -0.8137136 0.01823896 0.5809609 -0.8137272 0.01078224 0.8766049 -0.4810903 0.01078408 0.8765879 -0.4811209 0.001192927 0.9985815 -0.0532329 0.001192927 0.9985823 -0.05321693 -0.008633255 0.9228003 0.3851822 -0.00863409 0.9227783 0.3852347 -0.01674741 0.6642272 0.7473432 -0.01674932 0.6642228 0.747347 0.999749 0 0.02240586 0.999749 2.27374e-6 0.02240687 0.999749 -2.27374e-6 0.02240669 0.999749 -3.63799e-6 0.02240598 0.999749 0 0.02240562 0.999749 0 0.0224058 0.999749 3.63799e-6 0.02240604 0.999749 -3.63795e-6 0.02240651 0.999749 3.63796e-6 0.02240669 0.999749 -1.819e-6 0.02240604 0.02164644 -0.2588244 -0.9656819 0.01584815 -0.7071024 -0.7069337 0.01584827 -0.7071071 -0.706929 0.005798101 -0.9659249 -0.2587579 0.005798101 -0.9659268 -0.2587507 -0.005798101 -0.9659267 0.2587513 -0.005801618 -0.9659246 0.2587584 -0.0158481 -0.7071011 0.7069349 -0.02164655 -0.2588222 0.9656825 -0.02164632 -0.2588197 0.9656831 -0.02164638 0.2588201 0.9656831 -0.01584118 0.7071059 0.7069302 -0.01584815 0.70711 0.7069259 -0.005798101 0.9659249 0.2587579 -0.005801618 0.9659273 0.2587486 0.005798101 0.9659267 -0.2587513 0.005798101 0.9659242 -0.2587605 0.01584821 0.7071058 -0.7069301 0.01584821 0.7071052 -0.7069308 0.02164638 0.2588204 -0.9656829 0.02164608 0.2588206 -0.9656829 0.9997491 0 0.02240562 0.999749 0 0.02240657 0.999749 -5.19711e-7 0.02240645 0.999749 -1.10872e-6 0.0224061 0.999749 4.15772e-6 0.02240645 0.999749 1.10872e-6 0.02240598 0.999749 -4.15769e-6 0.02240598 0.999749 -1.10872e-6 0.02240604 0.999749 8.31539e-6 0.02240628 0.999749 -3.32615e-6 0.02240639 0.9997491 0 0.02240574 0.999749 0 0.02240645 0.999749 0 0.0224058 0.999749 0 0.02240645 0.999749 -1.2993e-6 0.02240681 0.999749 1.10871e-6 0.02240616 0.999749 2.07884e-6 0.02240616 0.999749 1.10872e-6 0.02240598 0.999749 0 0.0224061 0.999749 4.15768e-6 0.02240598 0.999749 -2.21744e-6 0.02240645 0.9997491 0 0.02240568 0.999749 0 0.02240651 0.02163511 -0.2588195 -0.9656835 0.02163505 -0.2588173 -0.965684 0.01584768 -0.7071055 -0.7069305 0.005798518 -0.965926 -0.2587534 0.005798578 -0.9659262 -0.2587527 -0.005794882 -0.9659261 0.2587537 -0.005802333 -0.9659258 0.2587544 -0.01584768 -0.707108 0.706928 -0.01583272 -0.7071087 0.7069276 -0.02165007 -0.2588194 0.9656831 -0.02164256 -0.2588207 0.965683 -0.0216425 0.2588202 0.9656831 -0.02165001 0.2588185 0.9656834 -0.01584011 0.7071099 0.7069262 -0.01584774 0.7071076 0.7069284 -0.005798578 0.9659246 0.2587589 -0.005798637 0.9659265 0.2587518 0.005798518 0.9659275 -0.2587482 0.005798578 0.965925 -0.2587573 0.0158478 0.7071061 -0.7069299 0.01584774 0.7071064 -0.7069296 0.02163505 0.2588185 -0.9656837 0.02163511 0.2588176 -0.9656839 0.999749 7.65889e-7 0.02240681 0.999749 0 0.02240657 0.999749 0 0.02240586 0.999749 -3.88051e-6 0.02240604 0.999749 0 0.02240586 0.999749 -1.94024e-6 0.02240622 0.999749 3.06358e-6 0.02240657 0.999749 0 0.02240711 0.999749 -1.53178e-6 0.02240574 0.999749 0 0.02240562 0.999749 1.53179e-6 0.02240699 0.999749 3.8805e-6 0.02240669 0.999749 -3.06355e-6 0.02240628 0.999749 0 0.02240663 0.9997491 3.06356e-6 0.0224055 0.999749 -3.8805e-6 0.02240508 0.999749 3.06358e-6 0.02240705 0.999749 0 0.02240651 0.999749 -7.65885e-7 0.02240741 0.02161371 -0.258816 -0.9656849 0.02164924 -0.2588205 -0.9656829 0.01584929 -0.7071056 -0.7069304 0.005796968 -0.9659262 -0.2587527 0.005799949 -0.9659267 -0.258751 -0.005796968 -0.965927 0.25875 -0.005799949 -0.9659261 0.2587534 -0.0158376 -0.7071054 0.7069308 -0.01584929 -0.7071061 0.7069299 -0.02163749 -0.2588201 0.9656832 -0.02163749 0.25882 0.9656832 -0.02163755 0.2588193 0.9656835 -0.01583755 0.7071039 0.7069323 -0.01584935 0.7071087 0.7069272 -0.005794048 0.9659255 0.2587555 -0.005802929 0.9659259 0.258754 0.005796968 0.9659262 -0.2587527 0.005799949 0.9659256 -0.2587553 0.01584929 0.707106 -0.7069299 0.01584917 0.7071071 -0.7069289 0.02164924 0.2588179 -0.9656835 0.02161371 0.2588188 -0.9656841 0.999749 0 0.02240663 0.999749 0 0.02240651 0.999749 0 0.0224061 0.999749 0 0.02240628 0.999749 -3.8294e-7 0.02240651 0.999749 1.26538e-6 0.02240759 0.999749 0 0.02240747 0.999749 -1.26538e-6 0.02240681 0.999749 -3.06358e-6 0.02240657 0.999749 -2.53075e-6 0.02240639 0.999749 0 0.0224061 0.999749 0 0.02240598 0.999749 0 0.02240568 0.999749 0 0.02240651 0.999749 0 0.02240657 0.999749 0 0.02240735 0.999749 3.06358e-6 0.0224058 0.999749 -2.53077e-6 0.02240693 0.02162921 -0.2588176 -0.9656841 0.02164882 -0.2588202 -0.9656829 0.01584059 -0.7071036 -0.7069325 0.01584041 -0.7071099 -0.7069262 0.005795896 -0.9659258 -0.2587544 0.005800843 -0.965926 -0.2587537 -0.005793571 -0.9659249 0.2587578 -0.01583075 -0.7071062 0.7069302 -0.0158503 -0.7071083 0.7069277 -0.02164882 -0.258818 0.9656835 -0.02164876 -0.2588198 0.965683 -0.02164876 0.2588174 0.9656836 -0.02164876 0.2588196 0.9656831 -0.01584053 0.7071092 0.706927 -0.01584059 0.7071065 0.7069297 -0.005793571 0.9659248 0.2587581 -0.005800843 0.965926 0.2587537 0.005800783 0.9659267 -0.258751 0.005795955 0.9659252 -0.2587565 0.01584047 0.7071079 -0.7069282 0.01584059 0.7071069 -0.7069292 0.02162921 0.2588176 -0.9656841 0.02164876 0.2588198 -0.9656831 0.999749 2.05215e-6 0.0224055 0.999749 5.72025e-6 0.02240639 0.999749 -1.05963e-6 0.02240663 0.999749 0 0.02240616 0.999749 5.66782e-7 0.02240628 0.999749 0 0.0224058 0.999749 -1.11491e-6 0.02240639 0.999749 5.98315e-6 0.02240633 0.999749 -1.97198e-6 0.02240651 0.999749 -7.72708e-6 0.02240633 0.999749 0 0.02240586 0.999749 -5.83094e-6 0.0224061 0.999749 2.05215e-6 0.0224061 0.999749 0 0.02240669 0.999749 -2.11926e-6 0.02240651 0.999749 0 0.02240616 0.999749 0 0.02240628 0.9997491 0 0.02240568 0.999749 0 0.02240633 0.999749 5.98319e-6 0.02240628 0.999749 0 0.02240645 0.999749 -7.72709e-6 0.02240663 0.999749 3.45961e-6 0.02240592 0.999749 5.83096e-6 0.02240616 0.6853544 -0.4464361 0.5753123 0.6853564 -0.4464351 0.5753107 0.690936 -0.6451177 0.3262372 0.6909385 -0.6451164 0.3262344 0.6978972 -0.7160272 0.01564127 0.6978993 -0.7160251 0.01564133 0.7048596 -0.6451177 -0.2949511 0.7048581 -0.6451184 -0.2949531 0.7104394 -0.446437 -0.5440312 0.7104403 -0.4464371 -0.54403 0.713544 -0.1593306 -0.6822528 0.7135388 0.1593313 -0.682258 0.713541 0.1593312 -0.6822557 0.7104388 0.4464397 -0.5440298 0.7104424 0.4464334 -0.5440303 0.704859 0.6451172 -0.2949535 0.7048581 0.6451185 -0.294953 0.6978989 0.7160255 0.01564127 0.6978978 0.7160266 0.01564115 0.6909376 0.6451169 0.3262351 0.6909375 0.6451169 0.3262356 0.6853571 0.4464339 0.5753108 0.6853541 0.4464356 0.575313 0.6822571 0.159331 0.7135397 0.6822581 0.159331 0.7135388 0.6822565 -0.1593296 0.7135407 0.6822581 -0.1593318 0.7135386 0.02164095 -0.2588176 -0.9656838 0.02164268 -0.2588251 -0.9656817 0.01584458 -0.7071039 -0.7069321 0.01584368 -0.7071056 -0.7069305 0.005799293 -0.9659253 -0.2587562 0.005798876 -0.9659261 -0.2587532 -0.005799353 -0.9659262 0.2587531 -0.005799114 -0.9659255 0.2587558 -0.01584362 -0.7071091 0.7069271 -0.01584362 -0.7071065 0.7069296 -0.02164274 -0.2588176 0.9656837 -0.02164274 -0.2588192 0.9656834 -0.02164274 0.2588179 0.9656837 -0.02164268 0.2588189 0.9656834 -0.01584362 0.7071086 0.7069275 -0.01584362 0.7071065 0.7069295 -0.005799353 0.9659252 0.2587566 -0.005799114 0.9659258 0.2587541 0.005799114 0.9659262 -0.2587529 0.01584452 0.7071042 -0.7069319 0.01584368 0.7071058 -0.7069303 0.02164268 0.2588168 -0.965684 0.02164095 0.2588256 -0.9656817 0.6831772 -0.5085917 0.5240262 0.6904027 -0.6947456 0.2016749 0.6904024 -0.6947451 0.2016776 0.6987438 -0.6947461 -0.1705438 0.6987432 -0.6947464 -0.1705441 0.7059586 -0.508596 -0.4929023 0.7059721 -0.5085877 -0.4928916 0.710146 -0.1861529 -0.6789991 0.7101429 -0.1861549 -0.6790018 0.7101409 0.1861603 -0.6790025 0.710148 0.1861505 -0.6789976 0.7059683 0.5085877 -0.492897 0.7059652 0.5085924 -0.4928966 0.6987439 0.6947462 -0.1705424 0.6904019 0.6947463 0.2016751 0.6904036 0.6947441 0.2016773 0.6831827 0.5085857 0.5240249 0.6790124 0.1861527 0.7101334 0.6790014 0.1861531 0.7101438 0.6790046 -0.1861552 0.7101402 0.6790077 -0.1861501 0.7101386 0.999749 0 0.02240622 0.999749 -1.61727e-7 0.02240562 0.9997489 -5.51689e-6 0.02241373 0.999749 0 0.02240592 0.999749 0 0.02240723 0.999749 -1.78129e-6 0.0224058 0.999749 1.42429e-6 0.02240544 0.999749 0 0.02240639 0.999749 4.05965e-6 0.02240693 0.9997491 -4.65988e-6 0.02239799 0.999749 0 0.02240496 0.9997494 0 0.02238899 0.999749 1.48945e-7 0.02240592 0.999749 1.62805e-7 0.02240759 0.9997489 -3.29769e-7 0.0224092 0.9997488 0 0.0224176 0.999749 0 0.02240538 0.9997489 -5.2765e-6 0.02240961 0.9997489 -7.44016e-6 0.02240902 0.999749 0 0.02240258 0.999749 4.36465e-7 0.02240669 0.999749 -4.78016e-7 0.02240383 0.9997493 -1.91212e-6 0.02239668 0.9997488 1.74585e-6 0.02241379 0.9997491 -1.08714e-6 0.02240198 0.999749 0 0.02240586 0.9997491 -9.19658e-7 0.02240216 0.9997489 -1.77596e-7 0.02240848 0.999749 0 0.02240645 0.999749 0 0.02240616 0.999749 1.64509e-7 0.02240574 0.999749 1.77596e-7 0.02240544 0.999749 -4.59836e-7 0.02240633 0.999749 0 0.02240723 0.999749 1.86582e-6 0.02240842 0.9997491 0 0.02240526 0.999749 0 0.02240616 0.9997491 -7.17478e-7 0.0224049 0.999749 1.38111e-6 0.0224049 0.9997491 0 0.0224052 0.999749 0 0.02240467 0.999749 0 0.02240574 0.999749 0 0.02240622 0.999749 0 0.02240651 0.9997489 0 0.0224108 0.999749 1.92145e-6 0.02240574 0.999749 0 0.02240484 0.9997491 0 0.0224021 0.999749 0 0.02240461 0.9997496 -4.59499e-6 0.02237844 0.999749 0 0.02240717 0.9997493 6.89674e-7 0.02239149 0.999749 -1.58383e-7 0.0224058 0.999749 0 0.02240651 0.999749 -6.91183e-7 0.0224055 0.999749 1.44902e-6 0.02240526 0.999749 -6.8949e-7 0.02240633 0.999749 1.77597e-7 0.02240842 0.9997491 4.59831e-7 0.02240234 0.9997491 8.39068e-5 0.02240306 0.999749 0 0.02240973 0.999749 0 0.02240669 0.999749 1.18373e-6 0.0224049 0.999749 -3.6235e-7 0.0224061 0.999749 1.32221e-5 0.0224052 0.999749 -2.31448e-5 0.02240556 0.999749 7.20036e-6 0.02240663 0.9997491 4.19551e-5 0.02240139 0.999749 -1.43017e-7 0.02240592 0.9997488 1.69295e-6 0.02241313 0.999749 0 0.02240598 0.999749 1.64852e-6 0.02240723 0.999749 1.22464e-6 0.0224058 0.999749 -2.84856e-6 0.02240586 0.999749 1.38113e-6 0.0224055 0.999749 8.11926e-6 0.02240532 0.999749 0 0.02240598 0.999749 -4.53387e-7 0.02240586 0.999749 8.62174e-7 0.02240663 0.9997491 0 0.02240562 0.999749 -7.15719e-7 0.02240681 0.999749 1.64643e-7 0.02240586 0.999749 0 0.02240616 0.999749 -3.32101e-7 0.02240574 0.999749 0 0.02240663 0.999749 0 0.02240616 0.999749 0 0.02240592 0.999749 4.36778e-7 0.02240622 0.999749 5.06941e-7 0.02240711 0.999749 0 0.02240556 0.999749 -7.40928e-7 0.02240628 0.999749 -2.30323e-7 0.02240622 0.999749 0 0.02240598 0.999749 -3.88339e-7 0.02240586 0.999749 7.90301e-7 0.02240675 0.999749 0 0.02240562 0.999749 -8.62174e-7 0.02240663 0.999749 2.26693e-7 0.02240586 0.999749 1.61727e-7 0.02240562 0.999749 2.77071e-7 0.02240622 0.999749 0 0.02240556 0.999749 -5.14879e-7 0.02240628 0.999749 0 0.02240508 0.9997491 7.17478e-7 0.02240508 0.999749 0 0.0224061 0.999749 0 0.02240598 0.999749 2.6398e-7 0.02240598 0.999749 -3.13788e-7 0.02240604 0.999749 3.13787e-7 0.02240598 0.9997491 3.89982e-7 0.02240556 0.999749 -5.52505e-7 0.02240574 0.999749 0 0.02240657 0.9997491 -3.89981e-7 0.0224055 0.999749 4.98964e-7 0.02240628 0.999749 0 0.02240633 0.999749 5.3742e-7 0.02240622 0.999749 0 0.02240622 0.999749 3.734e-7 0.02240622 0.999749 0 0.02240663 0.999749 9.7276e-7 0.02240657 0.999749 0 0.02240562 0.9997491 2.62473e-7 0.02240556 0.999749 0 0.02240657 0.999749 6.60397e-7 0.02240622 0.999749 0 0.02240544 0.999749 -1.64211e-6 0.02240628 0.999749 0 0.02240622 0.999749 4.26809e-7 0.02240622 0.999749 0 0.02240622 0.999749 -4.26657e-7 0.02240574 0.999749 0 0.02240657 0.999749 -6.3224e-7 0.02240675 0.999749 1.94169e-7 0.0224058 0.999749 0 0.02240598 0.999749 5.59766e-7 0.02240622 0.999749 0 0.02240633 0.999749 5.15186e-6 0.02240604 0.999749 0 0.02240586 0.999749 -2.59258e-6 0.02240574 0.999749 -5.84975e-7 0.02240628 0.999749 -6.0956e-7 0.02240592 0.999749 8.12143e-6 0.02240651 0.999749 0 0.02240633 0.999749 -7.6027e-7 0.02241033 0.999749 0 0.02240353 0.999749 1.69408e-6 0.02240896 0.9997491 0 0.02240467 0.999749 0 0.02240437 0.999749 0 0.02240639 0.999749 0 0.02240592 0.999749 1.01589e-6 0.02240639 0.999749 2.70981e-7 0.02240639 0.999749 -5.43155e-7 0.02240478 0.999749 3.34119e-7 0.02240669 0.999749 -7.60261e-7 0.02240526 0.999749 0 0.02240657 0.999749 0 0.02240622 0.999749 0 0.02240622 0.999749 0 0.02240592 0.999749 0 0.0224061 0.999749 -2.86728e-7 0.02240586 0.999749 0 0.02240645 0.999749 2.41352e-7 0.02240622 0.999749 0 0.02240622 0.999749 3.08977e-7 0.02240622 0.999749 1.39775e-7 0.02240628 0.999749 4.07532e-7 0.02240622 0.999749 -1.63549e-6 0.02240687 0.999749 0 0.02240693 0.9997489 0 0.02241015 0.999749 0 0.02240604 0.999749 6.90143e-7 0.02240681 0.999749 1.69403e-6 0.02240532 0.999749 -9.87998e-7 0.02240651 0.999749 0 0.02240628 0.9997491 1.89649e-6 0.02240371 0.999749 0 0.02240645 0.9997491 -1.333e-7 0.02240538 0.999749 -2.20275e-7 0.02240598 0.999749 0 0.02240598 0.999749 0 0.02240598 0.999749 4.10637e-7 0.02240604 0.999749 0 0.02240616 0.999749 -2.6398e-7 0.02240604 0.999749 0 0.02240592 0.999749 0 0.02240622 0.999749 1.22414e-7 0.02240586 0.999749 0 0.02240651 0.6853553 -0.4464356 0.5753116 0.6853556 -0.4464346 0.5753121 0.6909377 -0.6451177 0.3262337 0.6909397 -0.6451147 0.3262354 0.6978991 -0.7160255 0.01564121 0.6979008 -0.7160236 0.01564115 0.7048609 -0.6451158 -0.294952 0.7048581 -0.6451184 -0.2949532 0.7104429 -0.4464348 -0.5440285 0.7104411 -0.4464357 -0.5440301 0.7135435 -0.1593304 -0.6822533 0.7135396 0.1593315 -0.6822571 0.71354 0.159331 -0.6822568 0.7104395 0.4464401 -0.5440286 0.7104425 0.4464336 -0.5440301 0.7048597 0.6451163 -0.294954 0.7048575 0.6451194 -0.2949524 0.6978971 0.7160272 0.01564133 0.6978963 0.7160282 0.0156421 0.6909361 0.6451187 0.3262351 0.6909384 0.6451163 0.326235 0.6853582 0.4464346 0.575309 0.6853554 0.4464344 0.5753124 0.6822579 0.159331 0.713539 0.6822573 -0.1593298 0.7135398 0.6822583 -0.1593318 0.7135384 0.999749 2.05214e-6 0.0224061 0.999749 0 0.02240657 0.999749 -2.11926e-6 0.02240657 0.999749 0 0.02240628 0.999749 0 0.02240628 0.9997491 0 0.02240574 0.999749 0 0.02240628 0.999749 0 0.02240675 0.999749 -7.72714e-6 0.02240651 0.999749 1.72981e-6 0.02240628 0.999749 2.05215e-6 0.02240556 0.999749 5.72027e-6 0.02240633 0.999749 -1.05963e-6 0.02240657 0.999749 0 0.0224058 0.999749 -1.11491e-6 0.02240645 0.999749 -1.97198e-6 0.02240657 0.999749 -7.72703e-6 0.02240598 0.999749 0 0.02240604 0.999749 -5.83091e-6 0.02240616 0.02162927 -0.2588182 -0.9656839 0.02164876 -0.2588199 -0.965683 0.01584041 -0.7071096 -0.7069265 0.005795896 -0.9659264 -0.2587521 0.005800843 -0.9659261 -0.2587531 -0.005800843 -0.9659264 0.2587523 -0.005791127 -0.9659254 0.2587562 -0.0158503 -0.7071086 0.7069274 -0.02164876 -0.2588174 0.9656836 -0.02164876 -0.2588201 0.9656829 -0.02164876 0.2588199 0.9656831 -0.01584059 0.707111 0.7069252 -0.01583081 0.7071067 0.7069297 -0.005793571 0.9659251 0.258757 0.005800783 0.9659264 -0.2587521 0.01584047 0.7071073 -0.7069289 0.01584059 0.707108 -0.7069281 0.0216487 0.2588195 -0.9656831 0.999749 -3.8294e-7 0.02240651 0.999749 -3.06358e-6 0.02240639 0.999749 -2.53075e-6 0.02240657 0.999749 0 0.02240616 0.999749 0 0.02240604 0.999749 0 0.0224058 0.999749 0 0.02240633 0.999749 0 0.02240669 0.999749 0 0.02240735 0.999749 0 0.02240657 0.999749 0 0.0224061 0.02164918 -0.2588197 -0.9656831 0.01584929 -0.7071064 -0.7069296 0.005796968 -0.9659248 -0.2587583 0.005799949 -0.9659268 -0.2587507 -0.005794048 -0.965927 0.25875 -0.005802869 -0.9659258 0.2587543 -0.01583755 -0.7071039 0.7069323 -0.01584935 -0.7071073 0.7069287 -0.02163749 -0.2588201 0.9656832 -0.02163755 0.2588192 0.9656835 -0.01584345 0.7071092 0.7069268 -0.005796968 0.9659255 0.2587555 -0.005799949 0.9659254 0.2587559 0.005796968 0.9659255 -0.2587555 0.005802869 0.9659255 -0.2587555 0.01584935 0.7071082 -0.7069277 0.01584923 0.7071078 -0.7069282 0.02164918 0.2588171 -0.9656838 0.02161377 0.2588196 -0.9656838 0.999749 0 0.02240729 0.999749 7.65889e-7 0.02240675 0.999749 -3.88052e-6 0.02240586 0.999749 0 0.02240663 0.999749 -1.94024e-6 0.02240616 0.999749 3.06358e-6 0.02240675 0.999749 0 0.02240699 0.999749 -1.53178e-6 0.02240568 0.999749 0 0.02240574 0.999749 3.88052e-6 0.02240645 0.999749 -3.06355e-6 0.02240645 0.999749 -3.8805e-6 0.02240514 0.999749 3.06359e-6 0.02240711 0.999749 0 0.02240663 0.999749 -2.35612e-6 0.02240622 0.999749 -3.96463e-6 0.02240657 0.999749 3.90523e-6 0.0224061 0.999749 0 0.02240598 0.999749 0 0.02240663 0.999749 -1.77651e-6 0.02240592 0.999749 1.39659e-6 0.0224061 -0.01940125 -0.5000045 0.8658056 -0.01940119 -0.4999983 0.8658092 -0.02239286 0 0.9997493 -0.01940113 0.5000024 0.8658068 -0.01940119 0.4999991 0.8658086 0 1 -1.59163e-6 0.01863163 0.5555742 -0.8312582 0.01864475 0.5555684 -0.8312618 0.02198076 0.195088 -0.9805395 0.02198088 0.1950905 -0.980539 0.02198064 -0.1950867 -0.9805397 0.02198088 -0.1950901 -0.980539 0.01864469 -0.5555711 -0.83126 0.01863163 -0.5555716 -0.8312599 0.999749 0 0.02240812 0.999749 1.5981e-6 0.02240633 0.999749 0 0.02240765 0.999749 -1.59811e-6 0.02240574 0.999749 9.63967e-6 0.02240645 0.999749 -1.59809e-6 0.02240657 0.999749 -2.36099e-6 0.02240699 0.9997491 -2.91599e-6 0.02240574 0.999749 3.39517e-6 0.02240628 0.999749 0 0.02240669 0.9997489 0 0.02241015 0.9997491 0 0.0224058 0.9997491 0 0.02240467 0.999749 1.05268e-6 0.02240633 0.999749 0 0.02240645 0.999749 -1.14559e-6 0.0224055 0.999749 -2.36101e-6 0.02240693 0.999749 5.09276e-6 0.02240633 0.999749 0 0.02240657 0.02163505 -0.2588167 -0.9656841 0.01584774 -0.7071071 -0.7069289 0.005798578 -0.9659267 -0.258751 -0.005802333 -0.9659253 0.2587562 -0.01584774 -0.7071099 0.7069262 -0.01584017 -0.7071089 0.7069273 -0.0216425 -0.2588185 0.9656836 -0.02164995 -0.2588194 0.9656831 -0.02165001 0.2588202 0.9656829 -0.02164262 0.2588198 0.9656832 -0.01584011 0.707108 0.7069281 -0.01584023 0.7071073 0.7069288 -0.005798578 0.9659255 0.2587553 -0.005798637 0.9659261 0.2587535 0.005798518 0.965927 -0.25875 0.005798578 0.9659255 -0.2587556 0.01584768 0.7071049 -0.7069311 0.9997489 -5.17971e-5 0.02241033 0.999749 4.73446e-5 0.0224049 0.999749 -4.73446e-5 0.02240669 0.9997493 0 0.02239537 0.999749 -4.85648e-5 0.02241015 0.9997489 3.88458e-5 0.02240908 0.9997487 0 0.02242076 0.9997494 3.23745e-5 0.0223878 0.9997487 -1.61862e-5 0.02241653 0.999749 0 0.02240699 0.9997488 0 0.0224179 0.9997494 1.29496e-5 0.02238833 0.9997485 3.23719e-6 0.0224238 0.9997491 -6.47474e-6 0.0224018 0.9997488 0 0.02241879 0.9997491 1.29461e-5 0.02240037 0.9997487 6.47566e-6 0.02241951 0.9997498 -6.47371e-6 0.02236926 0.9997491 0 0.02239733 0.999749 -6.4746e-6 0.02241098 0.9997487 6.47527e-6 0.02242058 0.9997493 0 0.02239567 0.9997488 6.47464e-6 0.02241706 0.999749 6.47497e-6 0.02240693 0.999749 0 0.02240681 0.9997491 -2.75161e-5 0.02239853 0.999749 3.23732e-6 0.02240782 0.999749 -5.6247e-5 0.02240616 0.9997491 5.6247e-5 0.02240574 0.9997492 0 0.02239602 0.999749 -3.23728e-6 0.02240848 0.9997491 2.75161e-5 0.02239924 0.999749 -6.47497e-6 0.02240705 0.9997488 -6.47464e-6 0.02241641 0.9997491 0 0.02240073 0.9997487 -6.47506e-6 0.02241915 0.9997489 6.47476e-6 0.02241206 0.9997487 -3.23719e-6 0.02242362 0.9997498 6.47391e-6 0.02236974 0.9997487 -6.47537e-6 0.02241891 0.999749 1.29488e-5 0.02240663 0.9997487 0 0.02241879 0.9997491 6.47472e-6 0.02240169 0.9997488 0 0.02241766 0.9997494 -1.2949e-5 0.02238744 0.9997488 0 0.02241867 0.9997488 1.61862e-5 0.02241581 0.9997494 -3.23745e-5 0.02238851 0.9997489 5.17964e-5 0.02241003 0.999749 -3.88458e-5 0.02240848 0.999749 4.85604e-5 0.02240908 0.9987917 0.004142701 -0.04897063 0.9987696 0.01242214 -0.04801154 0.9987702 0.01242905 -0.04799735 0.9987281 0.02045238 -0.04608744 0.9987273 0.02051359 -0.04607754 0.9986628 0.02833545 -0.04324215 0.998664 0.02829939 -0.04323828 0.9985792 0.03574281 -0.03952348 0.998579 0.03574019 -0.03953069 0.9984793 0.04262596 -0.03495824 0.9984778 0.04268062 -0.03493696 0.9983574 0.04905337 -0.02960503 0.9983607 0.04896467 -0.02963894 0.9982191 0.05480009 -0.02357357 0.9982242 0.0547136 -0.02355968 0.998071 0.05973631 -0.01691174 0.9980726 0.05970263 -0.01693797 0.9979124 0.0638467 -0.009725689 0.9979113 0.06386691 -0.009702324 0.9977408 0.06715047 -0.002085387 0.9977411 0.06714504 -0.002087354 0.9975636 0.06951397 0.00588864 0.997563 0.06952339 0.005884051 0.9973785 0.07098424 0.01405555 0.9973792 0.0709744 0.01405072 0.9971937 0.0714547 0.02233701 0.9971925 0.07146197 0.02236795 0.9970068 0.0709818 0.0306431 0.9970076 0.07098656 0.03061044 0.9968215 0.06957358 0.03881537 0.9968267 0.06948888 0.03883403 0.9966451 0.06715679 0.04678243 0.9966479 0.06711375 0.04678493 0.9964714 0.06390279 0.05441862 0.996477 0.06381464 0.05441838 0.9963144 0.05968445 0.06160783 0.9963105 0.05974864 0.06160801 0.9961671 0.05468606 0.06826835 0.9961615 0.05480432 0.06825584 0.9960269 0.04905378 0.0743243 0.9960268 0.04907 0.07431638 0.9959093 0.04266762 0.07964992 0.9959104 0.04262763 0.07965856 0.9958068 0.0357387 0.08421093 0.9958072 0.03574103 0.08420479 0.9957226 0.02829456 0.08795422 0.9957227 0.02830231 0.08795183 0.9956586 0.02052062 0.09079134 0.9956583 0.02051514 0.09079569 0.9956151 0.01246649 0.09270989 0.9956187 0.01232886 0.09269112 0.9955947 0.004168927 0.09366965 0.9955952 0.00414288 0.09366458 0.995595 -0.004168629 0.09366482 0.9955952 -0.004143178 0.09366542 0.995617 -0.01242733 0.09269541 0.9956158 -0.01237779 0.09271508 0.9956578 -0.02052146 0.09079927 0.9956594 -0.02051514 0.09078335 0.9957224 -0.02829343 0.0879572 0.9957227 -0.02830374 0.08794999 0.9958078 -0.03569906 0.08421593 0.9958059 -0.03578907 0.0842005 0.9959101 -0.04265123 0.0796501 0.9959086 -0.04267323 0.07965672 0.9960278 -0.04904997 0.07431656 0.9960296 -0.04901778 0.07431286 0.9961639 -0.05472987 0.06828099 0.9961677 -0.05469936 0.06824946 0.996313 -0.05970656 0.06160712 0.9963131 -0.05970489 0.06160807 0.9964736 -0.06386327 0.05442243 0.9964742 -0.06385797 0.05441904 0.9966468 -0.06713438 0.0467782 0.996645 -0.06715768 0.0467832 0.9968222 -0.06955933 0.03881913 0.9968248 -0.06951922 0.03882694 0.9970054 -0.07100152 0.03064489 0.9970099 -0.07095241 0.03061366 0.9971947 -0.07144063 0.02233755 0.9971919 -0.07147347 0.02236253 0.9973784 -0.07098424 0.01405739 0.9973785 -0.0709846 0.01404589 0.9975646 -0.06949973 0.005888462 0.9975605 -0.06956064 0.005884051 0.9977403 -0.06715708 -0.002083122 0.9977416 -0.06713837 -0.002087116 0.9979137 -0.06382697 -0.009720742 0.9979101 -0.06388539 -0.00970757 0.9980732 -0.05969917 -0.01691555 0.9980697 -0.05975234 -0.01692855 0.9982255 -0.05468368 -0.02357214 0.9982162 -0.05485743 -0.02356332 0.998359 -0.04901379 -0.02961432 0.9983562 -0.04906672 -0.0296247 0.9984794 -0.04262936 -0.03495234 0.9984776 -0.04267632 -0.03494596 0.9985791 -0.03574138 -0.03952687 0.9985791 -0.03574019 -0.03952759 0.9986642 -0.02829134 -0.04323875 0.9986622 -0.02835345 -0.04324156 0.9987274 -0.02049285 -0.04608494 0.998728 -0.02046471 -0.04608303 0.9987704 -0.0123825 -0.04800361 0.9987691 -0.01247882 -0.04800605 0.9987913 -0.004157543 -0.04897475 0.9987916 -0.004143118 -0.04897177 0.9987915 0.0041579 -0.04897224 0.9815887 0.0123713 -0.1906059 0.9815258 0.03697633 -0.1877228 0.9815223 0.03699815 -0.1877369 0.9813957 0.06104427 -0.1820338 0.9813961 0.0610646 -0.1820242 0.9812035 0.08433324 -0.1735732 0.9812101 0.08433818 -0.1735337 0.9809581 0.10645 -0.1624493 0.9809626 0.1064229 -0.1624397 0.9806498 0.127161 -0.1488489 0.9806562 0.1271169 -0.148845 0.9802945 0.1461315 -0.1329221 0.9802975 0.1461089 -0.1329253 0.9798899 0.1631059 -0.1149445 0.9798886 0.1631297 -0.1149224 0.9794496 0.1778641 -0.09509426 0.9794501 0.1778727 -0.09507232 0.9789727 0.1902398 -0.07363015 0.978968 0.1902579 -0.0736466 0.978457 0.2000744 -0.05091381 0.9784598 0.2000593 -0.05091929 0.9779232 0.2071866 -0.0272026 0.9779236 0.2071872 -0.02718216 0.9773797 0.2114734 -0.002813279 0.977383 0.2114582 -0.002815127 0.9768282 0.2129035 0.02188313 0.9768224 0.2129289 0.02189046 0.9762758 0.2114568 0.04660218 0.9762715 0.2114753 0.04660898 0.9757304 0.2071506 0.07098472 0.9757208 0.2072009 0.07097035 0.9751929 0.2000818 0.09468984 0.9752075 0.2000095 0.09469175 0.9746852 0.1902598 0.1174306 0.9746779 0.1902961 0.1174332 0.9742043 0.1778901 0.138857 0.9742039 0.1778849 0.1388661 0.9737601 0.1631074 0.1587049 0.9737635 0.1630869 0.1587054 0.9733549 0.1461072 0.1767287 0.9733581 0.146081 0.1767327 0.9729996 0.1271699 0.1926129 0.9730079 0.1270881 0.1926248 0.9726932 0.106478 0.2062295 0.9726969 0.1064649 0.2062188 0.9724443 0.08434045 0.2173449 0.9724481 0.08433485 0.2173298 0.9722573 0.06106102 0.2258037 0.972258 0.06102508 0.2258107 0.972131 0.03695738 0.2315071 0.972126 0.03699594 0.2315223 0.9720633 0.01239746 0.2343918 0.9720637 0.01237183 0.2343913 0.9720646 -0.01239836 0.2343861 0.9720608 -0.01237142 0.2344033 0.9721277 -0.03692424 0.2315263 0.9721268 -0.03703564 0.2315126 0.9722551 -0.06106507 0.2258126 0.972259 -0.06102639 0.2258056 0.9724478 -0.08433216 0.2173326 0.9724471 -0.084302 0.2173473 0.9726922 -0.1064651 0.2062404 0.9726969 -0.1064606 0.2062203 0.9730089 -0.1271129 0.1926034 0.9729988 -0.127137 0.1926388 0.9733531 -0.1461119 0.1767349 0.9733619 -0.1460756 0.1767162 0.9737645 -0.1630917 0.1586943 0.9737604 -0.1630864 0.1587247 0.9742041 -0.1778961 0.1388498 0.9742039 -0.1778849 0.1388661 0.9746815 -0.1902686 0.1174474 0.9746818 -0.1902814 0.1174241 0.9751994 -0.2000502 0.09469097 0.9751968 -0.2000632 0.09468853 0.975724 -0.207184 0.07097554 0.97573 -0.2071563 0.07097512 0.9762697 -0.2114822 0.0466144 0.9762785 -0.2114446 0.04659938 0.9768222 -0.212931 0.02188289 0.9768365 -0.2128652 0.02188545 0.9773733 -0.2115032 -0.002815783 0.9773917 -0.2114179 -0.002825081 0.9779275 -0.2071668 -0.02719712 0.9779191 -0.2072091 -0.02717983 0.9784635 -0.2000427 -0.05091363 0.9784505 -0.2001069 -0.05090892 0.9789641 -0.1902807 -0.07363837 0.9789717 -0.1902388 -0.0736469 0.9794493 -0.1778746 -0.09507817 0.9794539 -0.1778482 -0.09508037 0.9798918 -0.1631007 -0.1149358 0.9798874 -0.1631295 -0.1149321 0.9802995 -0.1460943 -0.1329261 0.9802884 -0.1461649 -0.1329303 0.9806602 -0.1270878 -0.1488435 0.9806447 -0.127205 -0.1488453 0.9809638 -0.1063976 -0.1624489 0.980956 -0.1065058 -0.1624253 0.9812085 -0.08429783 -0.1735626 0.9812026 -0.08433926 -0.1735755 0.9813957 -0.06107932 -0.1820212 0.9813988 -0.06102758 -0.1820221 0.9815223 -0.03700917 -0.1877351 0.9815238 -0.03695666 -0.1877377 0.9815917 -0.01238292 -0.19059 0.9815903 -0.01237148 -0.1905982 0.9815917 0.0123825 -0.1905897 0.9443362 0.02036309 -0.3283514 0.9442356 0.06075274 -0.3236176 0.9442471 0.06082016 -0.3235712 0.9440339 0.1003757 -0.3142051 0.9440357 0.1003223 -0.3142166 0.9437157 0.1386629 -0.3002886 0.9437156 0.138607 -0.3003152 0.9433036 0.1750107 -0.2820457 0.9433221 0.174963 -0.2820132 0.9428069 0.209004 -0.259678 0.9428173 0.2089649 -0.2596716 0.9422344 0.2401643 -0.2334858 0.9422215 0.2401922 -0.2335092 0.9415699 0.2680858 -0.2039024 0.9415701 0.2680795 -0.20391 0.9408347 0.292392 -0.1712803 0.9408262 0.2923994 -0.1713143 0.9400289 0.3127933 -0.1360371 0.9400392 0.3127633 -0.1360357 0.9391956 0.3288969 -0.09868431 0.9391953 0.3288916 -0.09870457 0.9383335 0.3405402 -0.05968928 0.9383402 0.3405171 -0.05971461 0.9374241 0.3476359 -0.01963418 0.9374291 0.3476229 -0.01962053 0.9365193 0.3499864 0.02100342 0.9365227 0.3499791 0.02097254 0.9356123 0.3476145 0.06159329 0.9356092 0.3476192 0.06161487 0.9347256 0.3405102 0.1016901 0.9347041 0.3405719 0.1016815 0.9338438 0.3288611 0.140664 0.9338346 0.3288947 0.1406461 0.932989 0.3127876 0.1780323 0.9329974 0.3127703 0.1780186 0.932217 0.2923911 0.2132582 0.9322136 0.2924058 0.2132527 0.9314859 0.2680762 0.2459049 0.9314746 0.2681158 0.2459048 0.9308064 0.2402287 0.2754806 0.93083 0.2401003 0.275513 0.9302303 0.2090175 0.3016345 0.9302364 0.2089962 0.3016305 0.9297208 0.1749802 0.3240389 0.9297252 0.1750082 0.3240112 0.929326 0.1386056 0.3422598 0.929315 0.1386737 0.342262 0.9290133 0.1003545 0.3561785 0.9290171 0.1003531 0.3561694 0.9287995 0.06079715 0.3655615 0.9287942 0.06072491 0.3655871 0.9287012 0.02033823 0.3702711 0.928691 0.02036106 0.370295 0.9286854 -0.02033913 0.3703105 0.9287036 -0.02036207 0.3702636 0.928804 -0.06074059 0.3655595 0.9287962 -0.06078565 0.3655719 0.9290126 -0.1003544 0.3561805 0.9290226 -0.1003537 0.356155 0.9293157 -0.1386609 0.3422655 0.9293333 -0.1385883 0.342247 0.9297392 -0.1749907 0.3239806 0.9297216 -0.174987 0.3240329 0.9302315 -0.20901 0.3016362 0.9302273 -0.2090016 0.3016548 0.9308245 -0.2401618 0.2754781 0.9308022 -0.2401761 0.2755408 0.9314795 -0.2680907 0.2459133 0.9314784 -0.2681168 0.2458893 0.9322167 -0.292391 0.2132599 0.9322223 -0.2923878 0.2132396 0.9329897 -0.3127878 0.1780289 0.9329968 -0.3127536 0.1780515 0.9338376 -0.3288789 0.1406627 0.9338346 -0.3288947 0.1406461 0.9347107 -0.3405539 0.1016808 0.9347172 -0.3405355 0.1016829 0.9356111 -0.3476146 0.06161344 0.935608 -0.3476231 0.06161046 0.9365053 -0.3500236 0.02100789 0.9365369 -0.3499413 0.02096992 0.9374256 -0.3476312 -0.01964724 0.9374281 -0.3476247 -0.01963698 0.9383418 -0.3405147 -0.05970358 0.9383341 -0.3405396 -0.05968123 0.9391894 -0.3289146 -0.09868431 0.9391994 -0.3288848 -0.09868854 0.9400318 -0.3127847 -0.136037 0.9400447 -0.3127432 -0.1360434 0.940836 -0.2923836 -0.1712878 0.9408271 -0.2924161 -0.1712815 0.9415757 -0.2680672 -0.2039005 0.9415659 -0.2680948 -0.2039091 0.9422268 -0.2401838 -0.2334963 0.9422251 -0.2401847 -0.2335019 0.9428108 -0.2089827 -0.2596806 0.9428043 -0.209028 -0.259668 0.9433091 -0.1749833 -0.282044 0.9433094 -0.1750059 -0.2820292 0.9437105 -0.1386622 -0.3003058 0.9437209 -0.1386005 -0.3003011 0.9440323 -0.1003695 -0.3142119 0.9440401 -0.100328 -0.3142015 0.9442355 -0.06080961 -0.3236071 0.9442494 -0.06075215 -0.3235772 0.9443439 -0.02036982 -0.328329 0.9443491 -0.02036285 -0.3283143 0.9443516 0.02036875 -0.3283066 0.8878595 0.02788525 -0.4592688 0.8876961 0.08334571 -0.4528236 0.8877251 0.08330947 -0.4527733 0.8874306 0.1376247 -0.4399164 0.8874152 0.137645 -0.439941 0.8869898 0.1900674 -0.4208607 0.887 0.1900551 -0.4208446 0.8864534 0.239906 -0.3957847 0.886424 0.2399275 -0.3958377 0.8857474 0.2865809 -0.3651342 0.8857465 0.2865508 -0.3651598 0.884936 0.3293001 -0.329317 0.8849352 0.3293099 -0.3293099 0.8840207 0.36761 -0.2887395 0.884044 0.3675937 -0.2886886 0.8830302 0.4009153 -0.2439767 0.8830377 0.4009118 -0.2439553 0.8819437 0.4288306 -0.1956526 0.8819497 0.4288226 -0.195643 0.8808004 0.4509241 -0.1444239 0.8808076 0.4509072 -0.1444324 0.8795975 0.4669362 -0.09098833 0.8795965 0.4669392 -0.09098148 0.8783745 0.4766129 -0.03603297 0.8783625 0.4766343 -0.03604412 0.8771281 0.479854 0.01966285 0.8771157 0.4798769 0.01965659 0.8758855 0.4765983 0.07535856 0.8758665 0.4766354 0.07534348 0.8746329 0.4669523 0.1302806 0.8746433 0.4669284 0.1302953 0.873438 0.4509292 0.1837632 0.8734445 0.4509215 0.1837514 0.872295 0.4288251 0.234969 0.8723069 0.4288055 0.2349612 0.8712035 0.4009267 0.283306 0.8711967 0.4009614 0.2832782 0.870214 0.3675819 0.3280417 0.8702088 0.3675945 0.3280409 0.8692944 0.3293038 0.3686274 0.8692864 0.3293333 0.3686202 0.8685016 0.2865481 0.4044692 0.8684839 0.2866048 0.4044672 0.8677963 0.2399361 0.4351555 0.8678081 0.2399207 0.4351406 0.8672407 0.1900753 0.4601793 0.8672444 0.1900584 0.4601795 0.8668027 0.1376539 0.4792751 0.8668158 0.1376182 0.4792617 0.8665253 0.08333474 0.4921273 0.8665333 0.08331745 0.4921162 0.866388 0.02791595 0.4985906 0.866383 0.02788639 0.4986009 0.866396 -0.02789103 0.4985783 0.8663798 -0.02791422 0.4986051 0.866542 -0.08330631 0.4921027 0.8665125 -0.08335345 0.4921467 0.8668171 -0.1376482 0.4792507 0.8668074 -0.1376146 0.4792776 0.8672447 -0.1900762 0.4601715 0.8672408 -0.1900607 0.4601851 0.8678058 -0.2399122 0.4351496 0.8678011 -0.2399266 0.4351513 0.8684861 -0.2865808 0.4044793 0.8685079 -0.2865559 0.4044499 0.8692858 -0.3293195 0.3686341 0.8692981 -0.3293054 0.3686174 0.8702261 -0.3675658 0.3280277 0.8701946 -0.3676268 0.3280428 0.8712039 -0.4009385 0.283288 0.8712065 -0.4009375 0.2832814 0.8722858 -0.4288334 0.2349885 0.8723014 -0.4288166 0.2349608 0.8734439 -0.4509258 0.1837437 0.8734436 -0.4509352 0.1837227 0.8746452 -0.4669253 0.130295 0.8746184 -0.4669739 0.1303001 0.8758785 -0.4766115 0.07535517 0.8758804 -0.4766103 0.07533979 0.8771048 -0.4798963 0.01966774 0.8771183 -0.4798721 0.0196554 0.8783607 -0.4766387 -0.03602796 0.8783651 -0.4766292 -0.03604656 0.879619 -0.4668958 -0.09098851 0.8795762 -0.4669781 -0.09097933 0.8808241 -0.4508795 -0.1444185 0.8807982 -0.4509308 -0.1444166 0.8819348 -0.4288386 -0.1956743 0.8819389 -0.4288458 -0.1956406 0.8830202 -0.4009473 -0.2439608 0.8830436 -0.4008718 -0.2439996 0.8840404 -0.3675869 -0.2887083 0.8840084 -0.3676522 -0.2887234 0.8849487 -0.3292797 -0.3293037 0.884935 -0.3293171 -0.3293029 0.8857331 -0.2866014 -0.3651527 0.8857462 -0.2865407 -0.3651688 0.886448 -0.239892 -0.3958055 0.8864229 -0.2399556 -0.395823 0.8869954 -0.1900686 -0.4208481 0.8870053 -0.1900563 -0.4208329 0.8874289 -0.1376244 -0.43992 0.8874102 -0.1376398 -0.4399528 0.8877027 -0.083296 -0.4528199 0.8877158 -0.08337277 -0.45278 0.8878265 -0.02790653 -0.4593315 0.8878664 -0.02791279 -0.459254 0.8878383 0.02793049 -0.4593071 0.8132813 0.0348919 -0.5808236 0.8130843 0.1042032 -0.5727441 0.8130893 0.1041738 -0.5727423 0.8127347 0.1720485 -0.5566524 0.8127113 0.1720823 -0.556676 0.8121972 0.237629 -0.5327927 0.8121812 0.2376294 -0.5328171 0.8114984 0.2999625 -0.5014907 0.8114702 0.2999519 -0.5015426 0.8106033 0.3582969 -0.4631907 0.8106385 0.3582628 -0.4631555 0.8096165 0.411686 -0.418373 0.8096303 0.4116828 -0.4183492 0.8084979 0.4595524 -0.3676177 0.8085017 0.4595807 -0.367574 0.8072527 0.5012168 -0.3116486 0.8071956 0.5012894 -0.31168 0.8058959 0.5361026 -0.2512487 0.8058766 0.5361273 -0.2512578 0.8044443 0.5637532 -0.1872215 0.8044611 0.5637391 -0.1871919 0.802962 0.5837425 -0.1204026 0.8029391 0.5837761 -0.120393 0.8014187 0.595865 -0.05170011 0.8013786 0.5959188 -0.05170261 0.7998441 0.59994 0.01792895 0.7998487 0.5999337 0.01793706 0.7982975 0.5958681 0.08753454 0.7982869 0.5958787 0.08755946 0.7967606 0.5837476 0.1562421 0.7967574 0.5837571 0.156222 0.7952365 0.5637642 0.2230895 0.7952574 0.5637392 0.2230781 0.7938535 0.5360675 0.2871033 0.7938098 0.5361374 0.2870938 0.7924534 0.5012556 0.3475061 0.7924723 0.5012165 0.3475195 0.7911972 0.459598 0.4034562 0.7912189 0.4595696 0.4034457 0.7900813 0.4116866 0.4541869 0.7900713 0.4117145 0.454179 0.7890636 0.3582554 0.4990308 0.7890703 0.3582452 0.4990275 0.7882036 0.2999942 0.537344 0.7882083 0.2999619 0.5373553 0.7874961 0.2376266 0.5686684 0.7875051 0.2376301 0.5686544 0.7869762 0.1720528 0.5925085 0.7869775 0.1720746 0.5925004 0.7866112 0.1042017 0.6085925 0.7866275 0.1041449 0.6085812 0.7864374 0.03487455 0.6166847 0.7864304 0.0349189 0.6166912 0.7864131 -0.0349003 0.6167142 0.7864357 -0.03489202 0.616686 0.7866117 -0.104179 0.6085959 0.7866051 -0.1041762 0.6086048 0.7869814 -0.1720539 0.5925014 0.7869515 -0.1720772 0.5925344 0.7875198 -0.237629 0.5686343 0.7875171 -0.2376161 0.5686435 0.7882051 -0.299972 0.5373543 0.7882107 -0.2999688 0.5373478 0.7890734 -0.358237 0.4990288 0.7890727 -0.35826 0.4990131 0.7900758 -0.4117066 0.4541784 0.7900553 -0.4117078 0.4542132 0.7912008 -0.459581 0.4034681 0.7912233 -0.4595827 0.4034225 0.792458 -0.5012297 0.3475329 0.7924581 -0.5012553 0.347496 0.793814 -0.536117 0.2871201 0.7938388 -0.5360852 0.2871112 0.7952448 -0.5637604 0.2230697 0.7952709 -0.5637236 0.2230693 0.796768 -0.5837363 0.1562462 0.7967573 -0.5837507 0.1562471 0.7983077 -0.595853 0.08754563 0.798285 -0.5958867 0.08752155 0.7998604 -0.5999181 0.01793968 0.799868 -0.5999088 0.01791119 0.8014087 -0.5958803 -0.05168163 0.8013989 -0.5958917 -0.05170071 0.8029708 -0.5837324 -0.1203933 0.8029556 -0.5837516 -0.1204006 0.8044647 -0.5637264 -0.1872143 0.8044446 -0.5637603 -0.1871989 0.8058807 -0.5361227 -0.2512549 0.8059173 -0.5360749 -0.2512391 0.807241 -0.501215 -0.3116816 0.8072199 -0.5012702 -0.3116477 0.8084974 -0.4595521 -0.3676192 0.8084843 -0.4595994 -0.3675889 0.809611 -0.411706 -0.4183641 0.8096343 -0.4116725 -0.4183517 0.8106387 -0.3582723 -0.4631478 0.8106239 -0.3582534 -0.4631885 0.8114875 -0.2999525 -0.5015143 0.8114933 -0.2999484 -0.5015073 0.8122127 -0.2376183 -0.532774 0.8121981 -0.2376128 -0.5327987 0.8127177 -0.172066 -0.5566716 0.8127347 -0.1720461 -0.556653 0.8130822 -0.1041801 -0.5727511 0.8131031 -0.1041991 -0.572718 0.8132652 -0.03487092 -0.5808475 0.8132966 -0.03486633 -0.5808039 0.8132759 0.03484666 -0.580834 0.7221353 0.0411629 -0.6905261 0.7219223 0.1228764 -0.6809769 0.7219458 0.1228941 -0.6809489 0.7215211 0.2029737 -0.6619735 0.7215217 0.2029681 -0.6619746 0.720856 0.2803154 -0.633869 0.7209246 0.2803014 -0.6337972 0.7200659 0.3538671 -0.5968948 0.7200597 0.3538829 -0.5968928 0.7190271 0.4226222 -0.551716 0.7190626 0.4226064 -0.551682 0.7178519 0.4856613 -0.4988206 0.7178749 0.4856561 -0.4987924 0.7165274 0.542112 -0.4389796 0.7165043 0.5421592 -0.4389591 0.7150751 0.5912604 -0.3729327 0.7150248 0.5912968 -0.3729713 0.7134585 0.6324138 -0.3017114 0.7134349 0.6324404 -0.3017117 0.7117908 0.6649879 -0.2261528 0.7117086 0.6650696 -0.2261712 0.7099961 0.6886211 -0.1473318 0.7100037 0.6886072 -0.1473597 0.7081534 0.7029381 -0.06630748 0.7081794 0.7029132 -0.06629645 0.7063562 0.7076797 0.01582455 0.7063465 0.7076889 0.01584529 0.7044895 0.7029192 0.09797483 0.7044738 0.7029399 0.09793967 0.7026627 0.6886404 0.178996 0.7026782 0.6886253 0.1789935 0.7009245 0.6650012 0.2578337 0.7008916 0.6650457 0.2578086 0.6992209 0.6324183 0.3333726 0.6992312 0.6324133 0.3333607 0.697592 0.5913125 0.4046173 0.697637 0.5912566 0.4046213 0.6961214 0.5421537 0.4706214 0.6961574 0.5421185 0.4706086 0.6947787 0.4856644 0.5304835 0.694823 0.4856362 0.5304514 0.6936049 0.4226208 0.5833558 0.6936103 0.4226183 0.5833512 0.6925942 0.35386 0.6285669 0.6926015 0.3538592 0.6285594 0.6917921 0.2802712 0.6654862 0.6917705 0.2803235 0.6654866 0.6911306 0.2029715 0.6936433 0.6911236 0.2029703 0.6936507 0.6907283 0.1228784 0.7125977 0.6907029 0.1229165 0.7126157 0.6904889 0.04113876 0.7221723 0.6904838 0.04116308 0.7221757 0.6904955 -0.04116016 0.7221647 0.6904814 -0.04114049 0.7221792 0.6907088 -0.1229034 0.7126123 0.6907286 -0.1228903 0.7125953 0.6911261 -0.2029702 0.6936483 0.6911474 -0.2029639 0.6936289 0.6917587 -0.2803127 0.6655033 0.6917942 -0.2803147 0.6654656 0.6925951 -0.35386 0.628566 0.6925961 -0.3538455 0.6285731 0.6936044 -0.4226205 0.5833566 0.6936103 -0.4226183 0.5833512 0.694774 -0.4856695 0.530485 0.6948388 -0.4856382 0.5304287 0.6961158 -0.5421493 0.4706347 0.6961691 -0.5421099 0.4706012 0.6976104 -0.5912892 0.4046193 0.6976212 -0.5912659 0.4046348 0.6992127 -0.63243 0.3333676 0.6992261 -0.6324201 0.3333584 0.7008754 -0.6650564 0.257825 0.700928 -0.6650086 0.2578053 0.7026429 -0.6886621 0.1789904 0.7026454 -0.688652 0.1790195 0.7044587 -0.7029514 0.09796589 0.7044805 -0.7029331 0.09794062 0.7063457 -0.7076902 0.01582562 0.7063311 -0.7077043 0.01584595 0.708153 -0.7029377 -0.06631791 0.7081545 -0.702938 -0.06629842 0.7099845 -0.6886302 -0.1473449 0.7099568 -0.6886585 -0.1473461 0.7117406 -0.6650404 -0.2261563 0.7117584 -0.6650182 -0.2261654 0.71344 -0.6324346 -0.3017115 0.7134349 -0.6324404 -0.3017117 0.7150677 -0.591247 -0.3729681 0.7150598 -0.5912731 -0.372942 0.7165098 -0.5421407 -0.4389728 0.716522 -0.542127 -0.4389699 0.7178747 -0.4856557 -0.4987931 0.717867 -0.4856735 -0.4987869 0.7190626 -0.4225974 -0.5516887 0.7190281 -0.4226242 -0.5517132 0.7200661 -0.3538676 -0.5968942 0.7200655 -0.353863 -0.5968976 0.7208906 -0.2803125 -0.633831 0.720877 -0.2802962 -0.6338536 0.7215242 -0.2029851 -0.6619666 0.7215305 -0.2029446 -0.6619722 0.7219266 -0.1228981 -0.6809686 0.7219479 -0.1228716 -0.6809508 0.7221513 -0.04117846 -0.6905084 0.7221432 -0.04114103 -0.690519 0.7221659 0.04115831 -0.6904944 0.616413 0.04658252 -0.786044 0.6161772 0.1391277 -0.7752221 0.6161446 0.1390843 -0.7752557 0.6156679 0.2297371 -0.7537732 0.6156548 0.229743 -0.7537821 0.6149975 0.3172461 -0.7218955 0.6149574 0.3172395 -0.7219325 0.6140229 0.4005243 -0.6801148 0.6140285 0.4005209 -0.6801117 0.6128815 0.478348 -0.6289353 0.6129086 0.4783157 -0.6289333 0.6115641 0.5496902 -0.5690606 0.6114909 0.5497012 -0.5691286 0.6099832 0.61363 -0.5013769 0.6100192 0.6136317 -0.501331 0.6083491 0.6692392 -0.4266502 0.6083549 0.6692429 -0.4266361 0.60655 0.7158122 -0.3459916 0.6065127 0.7158312 -0.3460176 0.6045956 0.7527334 -0.2604935 0.6046112 0.7527292 -0.2604692 0.6026304 0.779426 -0.1712651 0.6026149 0.7794339 -0.1712845 0.6005612 0.7956101 -0.07956749 0.600541 0.7956258 -0.07956242 0.5984721 0.8010312 0.01342004 0.5984827 0.8010233 0.01342093 0.596378 0.795624 0.1063761 0.5963898 0.7956143 0.1063819 0.5943474 0.7794336 0.1980776 0.5943464 0.7794299 0.1980944 0.5923172 0.7527365 0.287312 0.592334 0.7527145 0.2873354 0.5904103 0.7158525 0.3727879 0.5904244 0.715815 0.3728377 0.5886531 0.6692321 0.4534489 0.5886293 0.6692463 0.453459 0.58695 0.6136009 0.5281893 0.586941 0.6136049 0.5281944 0.5853922 0.5497317 0.595912 0.5854399 0.5496953 0.5958987 0.5841078 0.4782935 0.6557846 0.5840736 0.478348 0.6557753 0.5829242 0.4005189 0.7069541 0.5829124 0.4005343 0.7069551 0.5820101 0.3172513 0.7487428 0.5819891 0.3172691 0.7487517 0.5812658 0.2297427 0.7806078 0.581319 0.2297238 0.7805737 0.5807922 0.1390725 0.8020844 0.5807883 0.1391128 0.8020802 0.5805597 0.04659187 0.8128835 0.5805743 0.04655051 0.8128755 0.5805885 -0.04657131 0.8128642 0.5805355 -0.04657304 0.812902 0.5807908 -0.1390919 0.8020821 0.5807789 -0.139097 0.8020898 0.5812418 -0.2297488 0.7806239 0.5813086 -0.2297258 0.7805808 0.5820081 -0.31726 0.7487408 0.581991 -0.3172596 0.7487542 0.582926 -0.40053 0.7069462 0.5829062 -0.4005196 0.7069686 0.5840476 -0.4783284 0.6558128 0.5841152 -0.4783267 0.6557539 0.585418 -0.5497213 0.5958963 0.58542 -0.5497146 0.5959005 0.5869509 -0.6136018 0.5281869 0.586951 -0.6136038 0.5281845 0.5886334 -0.6692349 0.4534703 0.5886272 -0.6692492 0.4534574 0.5903882 -0.7158539 0.3728204 0.5904383 -0.7158169 0.3728122 0.5923395 -0.7527201 0.287309 0.5923215 -0.7527306 0.2873185 0.5943698 -0.7794112 0.1980984 0.5943549 -0.7794227 0.1980973 0.596399 -0.7956061 0.1063923 0.5964144 -0.7955964 0.1063788 0.5984721 -0.8010312 0.0134207 0.5985141 -0.8009998 0.0134207 0.6005522 -0.7956179 -0.07955706 0.6005735 -0.7956014 -0.07956117 0.6026417 -0.7794151 -0.1712756 0.6026416 -0.779414 -0.1712802 0.6046194 -0.7527188 -0.2604799 0.6045898 -0.7527391 -0.26049 0.6065182 -0.7158374 -0.3459951 0.6065219 -0.7158353 -0.3459928 0.6083222 -0.6692707 -0.426639 0.6083413 -0.6692426 -0.426656 0.6100035 -0.6136305 -0.5013517 0.6100168 -0.6136187 -0.50135 0.6115457 -0.5496934 -0.5690774 0.6115091 -0.5497071 -0.5691036 0.6128739 -0.4783421 -0.6289472 0.6128824 -0.4783281 -0.6289496 0.6140211 -0.4005132 -0.6801229 0.6140086 -0.4005458 -0.6801151 0.6149675 -0.3172509 -0.7219189 0.6149696 -0.3172512 -0.7219171 0.6156795 -0.2297512 -0.7537593 0.6156563 -0.229733 -0.753784 0.6161298 -0.1391151 -0.7752621 0.6161898 -0.1390948 -0.775218 0.6164268 -0.04656904 -0.786034 0.6164114 -0.04658263 -0.7860453 0.6164098 0.04656779 -0.7860473 0.4980958 0.05105489 -0.8656177 0.497808 0.1524654 -0.8537807 0.4979636 0.1524889 -0.8536857 0.4974171 0.2517984 -0.830165 0.4973301 0.2517986 -0.8302171 0.4965457 0.3477643 -0.7953001 0.4965668 0.3477633 -0.7952874 0.4955618 0.4390029 -0.7494632 0.4955099 0.4390364 -0.7494778 0.4943217 0.5242823 -0.6933789 0.4942749 0.5243196 -0.6933841 0.4928168 0.6025153 -0.6277794 0.4928371 0.6025416 -0.6277382 0.4911942 0.6725886 -0.5534916 0.491147 0.6725829 -0.5535405 0.4892629 0.7335938 -0.4716588 0.4893094 0.7335799 -0.4716321 0.4873121 0.7846434 -0.3832255 0.4873651 0.7846174 -0.3832113 0.4852086 0.8250802 -0.2895091 0.4852339 0.825071 -0.2894927 0.483034 0.8543545 -0.1917201 0.4830521 0.8543471 -0.1917073 0.4807749 0.8720923 -0.09116166 0.480812 0.8720692 -0.09118813 0.4784968 0.8780238 0.01073235 0.4785141 0.8780147 0.01070106 0.4761904 0.8720985 0.1126364 0.4762513 0.8720664 0.1126283 0.4739757 0.854349 0.2131546 0.4739623 0.8543613 0.2131352 0.4717808 0.8250717 0.3109334 0.4717979 0.8250452 0.3109778 0.4696757 0.7846274 0.4046783 0.4696671 0.7846359 0.404672 0.4676726 0.733583 0.4930906 0.4676865 0.7335747 0.4930899 0.4658452 0.6726203 0.5749525 0.4658831 0.6725844 0.5749637 0.4642202 0.6025245 0.6492026 0.4642015 0.6025415 0.6492002 0.4627262 0.5243191 0.7148245 0.4627571 0.5242932 0.7148234 0.4614911 0.4390063 0.7709082 0.4614701 0.4390134 0.7709168 0.4604426 0.3477551 0.8167368 0.4604176 0.3477865 0.8167377 0.4596475 0.2518106 0.8516548 0.4596783 0.2518247 0.8516339 0.4591271 0.1524584 0.8751907 0.4591708 0.1524534 0.8751686 0.4588686 0.05104458 0.8870367 0.4588698 0.05106216 0.8870352 0.4588322 -0.0510447 0.8870556 0.4589108 -0.05106204 0.8870139 0.4591593 -0.1524614 0.8751733 0.4591456 -0.1524556 0.8751816 0.4596801 -0.2518267 0.8516322 0.4596756 -0.2518214 0.8516364 0.4604933 -0.3477555 0.8167081 0.4603897 -0.3477755 0.8167581 0.4614884 -0.4390038 0.7709114 0.4615061 -0.43902 0.7708914 0.4627612 -0.5243162 0.7148039 0.4627315 -0.5243076 0.7148295 0.4641934 -0.6025386 0.6492086 0.464201 -0.6025213 0.6492192 0.465861 -0.6726056 0.5749568 0.4658462 -0.6726075 0.5749667 0.4676665 -0.7335842 0.4930946 0.4677001 -0.7335702 0.4930835 0.4696744 -0.7846252 0.4046842 0.4696708 -0.7846421 0.4046555 0.4717723 -0.8250708 0.3109489 0.4718065 -0.8250431 0.3109706 0.4739537 -0.8543603 0.2131586 0.4739593 -0.8543584 0.2131536 0.4762167 -0.8720833 0.1126434 0.4761976 -0.872093 0.1126493 0.4785113 -0.8780159 0.01072227 0.4785032 -0.8780204 0.01072096 0.4807854 -0.8720821 -0.091205 0.4807875 -0.8720827 -0.09118723 0.4830414 -0.8543531 -0.1917079 0.4830259 -0.8543608 -0.1917126 0.4852148 -0.8250718 -0.2895227 0.4852291 -0.8250679 -0.2895096 0.4873301 -0.784642 -0.3832055 0.4873483 -0.7846171 -0.3832332 0.4893003 -0.7335749 -0.4716493 0.4892688 -0.7336077 -0.471631 0.4911304 -0.6726228 -0.5535067 0.491146 -0.6725986 -0.5535222 0.4928577 -0.6025194 -0.6277433 0.4928039 -0.6025251 -0.6277801 0.4942955 -0.5243132 -0.6933741 0.4943127 -0.5242971 -0.693374 0.4955253 -0.4390226 -0.7494758 0.4955471 -0.4390257 -0.7494595 0.49655 -0.3477765 -0.7952922 0.4965574 -0.3477572 -0.795296 0.4973666 -0.2518203 -0.8301886 0.497361 -0.2517845 -0.8302029 0.4978636 -0.1524688 -0.8537478 0.4979025 -0.1524951 -0.8537203 0.4981646 -0.05103975 -0.8655791 0.4981005 -0.05104374 -0.8656157 0.4981657 0.05103051 -0.865579 0.3698105 0.05447369 -0.927509 0.3695388 0.1627311 -0.914855 0.3695316 0.16274 -0.9148564 0.3689567 0.268763 -0.8897401 0.3689511 0.2687891 -0.8897346 0.3681792 0.3711847 -0.8524471 0.3680962 0.3711763 -0.8524866 0.36703 0.4685671 -0.8035758 0.3670406 0.468569 -0.8035698 0.3657169 0.5596171 -0.7436935 0.3656892 0.5596285 -0.7436985 0.3641139 0.6431287 -0.6736516 0.3641144 0.643109 -0.6736702 0.3623355 0.7178971 -0.5944214 0.3623651 0.7178938 -0.5944073 0.3603487 0.7829892 -0.5070275 0.3604187 0.7829653 -0.5070146 0.358264 0.8374627 -0.412678 0.3582934 0.8374577 -0.4126628 0.3560395 0.8806279 -0.3126185 0.3560689 0.8806126 -0.3126284 0.3536814 0.9118897 -0.208247 0.3537141 0.9118787 -0.2082394 0.3512832 0.9308105 -0.100955 0.3513113 0.9308024 -0.1009327 0.3488748 0.9371368 0.007816195 0.3488623 0.9371414 0.007812559 0.3464274 0.9308046 0.1165798 0.3464309 0.9308019 0.1165913 0.344004 0.9118835 0.2238965 0.3440162 0.9118787 0.2238978 0.341648 0.880643 0.3282446 0.341684 0.8806146 0.3282833 0.3394462 0.8374556 0.4283043 0.3394265 0.8374669 0.4282976 0.3373478 0.7829679 0.5226452 0.3373208 0.7829671 0.5226636 0.3353593 0.7178825 0.6100646 0.335335 0.7178948 0.6100636 0.3336114 0.6430874 0.6893054 0.3335406 0.6431309 0.6892992 0.3320444 0.559594 0.7593426 0.3319605 0.559664 0.7593277 0.3306335 0.4685821 0.8192145 0.3306791 0.4685513 0.8192136 0.3296076 0.3711673 0.8680978 0.3295714 0.3711904 0.8681017 0.3287086 0.2687874 0.905375 0.3287388 0.2687606 0.9053721 0.3281676 0.1627444 0.9304947 0.328159 0.1627272 0.9305007 0.3279054 0.05446547 0.9431393 0.3278799 0.05447447 0.9431477 0.3278769 -0.05447131 0.9431489 0.3279302 -0.05447345 0.9431302 0.3281666 -0.1627439 0.9304952 0.3281559 -0.1627398 0.9304997 0.3287428 -0.2687675 0.9053686 0.3287064 -0.2687759 0.9053793 0.3296448 -0.3711864 0.8680755 0.3295181 -0.371175 0.8681285 0.3306668 -0.4685596 0.8192138 0.3306337 -0.468577 0.8192174 0.3320088 -0.5596316 0.7593305 0.3319788 -0.5596508 0.7593293 0.3335723 -0.6431002 0.6893125 0.3336001 -0.643114 0.6892862 0.3353245 -0.7179038 0.6100588 0.3353528 -0.7178894 0.6100602 0.3373447 -0.7829609 0.5226576 0.337322 -0.7829653 0.5226655 0.3394642 -0.8374552 0.4282904 0.3394382 -0.8374608 0.4283004 0.3416882 -0.8806167 0.3282734 0.3416687 -0.8806297 0.3282588 0.3440256 -0.9118807 0.2238755 0.3440103 -0.9118835 0.2238875 0.346451 -0.9307948 0.1165877 0.3464017 -0.9308125 0.1165941 0.3488588 -0.9371427 0.00781852 0.3488811 -0.9371345 0.007812559 0.3512912 -0.9308078 -0.1009518 0.3513057 -0.9308006 -0.1009687 0.3536899 -0.9118881 -0.2082397 0.3537126 -0.9118795 -0.2082386 0.3560598 -0.8806151 -0.3126317 0.3560659 -0.8806148 -0.3126258 0.3582564 -0.8374814 -0.4126467 0.3583074 -0.837453 -0.4126602 0.3603976 -0.7829591 -0.507039 0.3604018 -0.7829678 -0.5070228 0.3623461 -0.7179002 -0.5944112 0.362359 -0.7179052 -0.5943973 0.3641098 -0.6431214 -0.6736609 0.3641073 -0.6431085 -0.6736745 0.3656621 -0.5596262 -0.7437135 0.3657086 -0.5596389 -0.7436811 0.3670516 -0.4685664 -0.8035663 0.3670396 -0.4685704 -0.8035694 0.3681156 -0.371212 -0.8524627 0.3681908 -0.3711535 -0.8524557 0.3689814 -0.2687818 -0.8897243 0.3689479 -0.2687688 -0.889742 0.3695338 -0.1627289 -0.9148574 0.3695261 -0.1627313 -0.9148601 0.3697928 -0.0545032 -0.9275143 0.3698286 -0.05448263 -0.9275012 0.3698182 0.05451065 -0.9275037 0.234071 0.05684214 -0.9705564 0.2337161 0.1696978 -0.9573816 0.2337402 0.1696891 -0.9573773 0.2331518 0.280261 -0.9311788 0.2331309 0.2802447 -0.931189 0.2323323 0.3870366 -0.8923141 0.2322797 0.3870708 -0.892313 0.2311832 0.4886212 -0.8413107 0.231116 0.4886117 -0.8413348 0.2297295 0.5835623 -0.7788963 0.2297276 0.5835636 -0.7788959 0.2280975 0.6706216 -0.70586 0.2281034 0.6706005 -0.7058781 0.2262454 0.7486034 -0.6232223 0.2262556 0.7485929 -0.6232312 0.2241891 0.8164551 -0.5321094 0.2242169 0.8164611 -0.5320885 0.2219739 0.8732815 -0.4337131 0.2220275 0.8732631 -0.4337227 0.2196598 0.9182812 -0.3294073 0.2196415 0.9182985 -0.3293715 0.2172059 0.9508821 -0.2205562 0.2172099 0.9508824 -0.220551 0.2146719 0.9706205 -0.1086832 0.2147362 0.9706091 -0.1086573 0.2121918 0.9772166 0.004752159 0.2121779 0.9772195 0.004775583 0.2096289 0.9706115 0.1181919 0.2096089 0.9706202 0.1181553 0.207112 0.9508818 0.2300622 0.2071188 0.950876 0.2300796 0.2046733 0.9182888 0.3389023 0.2046529 0.9182986 0.3388881 0.202341 0.8732688 0.4432379 0.2023335 0.8732815 0.4432162 0.2001159 0.8164665 0.5416052 0.2001059 0.8164646 0.5416117 0.1981168 0.7486075 0.6327217 0.1981117 0.7485741 0.6327627 0.1962737 0.6705989 0.7153837 0.1962538 0.670628 0.7153619 0.1946599 0.5835526 0.7883996 0.1945497 0.5835586 0.7884224 0.1932397 0.4886173 0.85083 0.193189 0.4885948 0.8508544 0.1920698 0.387059 0.9018285 0.1920311 0.3870493 0.9018409 0.1911461 0.2802842 0.9406934 0.1912599 0.280277 0.9406723 0.190605 0.1696764 0.9668918 0.1906291 0.1697099 0.9668812 0.1903242 0.05681842 0.9800757 0.1903001 0.05679494 0.9800818 0.1903585 -0.05682027 0.980069 0.1902596 -0.05679535 0.9800897 0.1905751 -0.1696814 0.9668968 0.1906575 -0.1697058 0.9668763 0.1911407 -0.2802852 0.9406942 0.1912612 -0.2802777 0.9406719 0.1920659 -0.3870512 0.9018327 0.1920208 -0.3870605 0.9018383 0.193208 -0.4886273 0.8508314 0.1932047 -0.4886045 0.8508452 0.1946313 -0.5835559 0.7884042 0.1945781 -0.5835685 0.7884082 0.1962308 -0.6706097 0.7153853 0.1962548 -0.6706061 0.7153822 0.1981176 -0.7485927 0.6327388 0.1981447 -0.7485926 0.6327305 0.2001495 -0.8164585 0.5416049 0.2001218 -0.8164529 0.5416236 0.2023027 -0.8732748 0.4432436 0.2023894 -0.8732763 0.4432011 0.2046706 -0.9182943 0.3388889 0.2046703 -0.9182816 0.3389232 0.2071051 -0.9508858 0.2300518 0.207152 -0.950876 0.2300498 0.2096267 -0.9706161 0.1181575 0.2096108 -0.9706152 0.1181926 0.2121663 -0.977222 0.004755556 0.2121509 -0.9772255 0.004739224 0.2147019 -0.9706158 -0.108666 0.2147089 -0.9706131 -0.1086755 0.2172309 -0.9508782 -0.2205485 0.217213 -0.9508872 -0.2205269 0.219664 -0.9182812 -0.3294048 0.219663 -0.9182835 -0.3293992 0.2220141 -0.8732638 -0.4337281 0.2220059 -0.8732811 -0.4336977 0.2241851 -0.8164582 -0.5321064 0.2242392 -0.8164438 -0.5321057 0.2262762 -0.7485876 -0.6232302 0.22624 -0.7486116 -0.6232143 0.2280952 -0.6706151 -0.7058668 0.2281098 -0.670588 -0.7058879 0.229734 -0.5835559 -0.7788998 0.2297419 -0.583579 -0.7788801 0.231086 -0.4886414 -0.8413257 0.2311818 -0.4885926 -0.8413278 0.2323296 -0.3870322 -0.8923168 0.2322518 -0.3870735 -0.892319 0.2331163 -0.2802612 -0.9311876 0.2331603 -0.2802518 -0.9311795 0.233689 -0.169704 -0.9573871 0.233779 -0.1696844 -0.9573686 0.2340075 -0.05684304 -0.9705716 0.2340559 -0.05683434 -0.9705606 0.2339739 0.05683463 -0.9705803 0.09357416 0.05801177 -0.9939208 0.09322166 0.173208 -0.9804636 0.09325253 0.173207 -0.9804608 0.09265673 0.2860866 -0.9537134 0.09259063 0.2860678 -0.9537255 0.0917021 0.3950831 -0.914057 0.09168845 0.3950759 -0.9140614 0.09053403 0.4987154 -0.8620248 0.09051835 0.4987255 -0.8620205 0.08915501 0.5956519 -0.7982797 0.08907842 0.5956423 -0.7982954 0.08745849 0.6844963 -0.7237513 0.08742398 0.6845108 -0.7237418 0.08554816 0.7640808 -0.6394233 0.08556818 0.7641067 -0.6393898 0.08346176 0.8333623 -0.5463895 0.08356219 0.8333736 -0.546357 0.08123391 0.8913629 -0.4459522 0.08123224 0.8913625 -0.4459532 0.07886308 0.937304 -0.3394733 0.0788449 0.9373062 -0.3394713 0.07638084 0.970574 -0.2283685 0.0763626 0.9705768 -0.2283625 0.0738067 0.9907144 -0.1141824 0.07377517 0.9907169 -0.1141814 0.07118475 0.9974619 0.001595258 0.07118153 0.9974622 0.001584112 0.06859058 0.9907177 0.1173623 0.06861978 0.9907146 0.1173707 0.0660451 0.9705717 0.2315785 0.06606215 0.9705752 0.2315591 0.06355124 0.9373016 0.3426761 0.06358391 0.9373067 0.3426564 0.0611819 0.8913643 0.4491396 0.06118863 0.8913631 0.4491412 0.05891871 0.8333676 0.5495698 0.05892592 0.8333715 0.5495634 0.0568307 0.764103 0.6425862 0.05679714 0.7641057 0.6425858 0.05495733 0.684509 0.72693 0.0549519 0.6844825 0.7269552 0.05329567 0.5956244 0.8014931 0.0532388 0.5956422 0.8014837 0.05184555 0.498722 0.8652101 0.05186909 0.4987339 0.8652019 0.05064272 0.395063 0.9172571 0.05068653 0.3950813 0.9172468 0.04975914 0.2860711 0.9569156 0.04977667 0.2860785 0.9569124 0.04919296 0.1732098 0.9836556 0.04917299 0.1731895 0.9836603 0.04890924 0.05800127 0.9971178 0.04891335 0.05799561 0.9971179 0.04890978 -0.05800521 0.9971175 0.0489037 -0.05799233 0.9971186 0.0491926 -0.1732131 0.9836551 0.04915195 -0.1731915 0.9836609 0.04972225 -0.2860622 0.9569202 0.04983031 -0.2860785 0.9569096 0.05064326 -0.395067 0.9172554 0.0506891 -0.3950738 0.9172499 0.0519157 -0.4987339 0.865199 0.05184799 -0.4987334 0.8652034 0.05329549 -0.5956399 0.8014817 0.053299 -0.5956345 0.8014854 0.05495673 -0.6845018 0.7269367 0.0549786 -0.6844804 0.7269554 0.05686539 -0.7641115 0.6425729 0.05678868 -0.764087 0.6426089 0.05891823 -0.8333611 0.5495799 0.05889803 -0.8333789 0.549555 0.06116533 -0.891345 0.4491803 0.0611701 -0.891376 0.449118 0.06355082 -0.9373131 0.3426451 0.06355172 -0.9373 0.3426807 0.06602758 -0.9705739 0.2315745 0.06605327 -0.9705716 0.231577 0.06860816 -0.9907166 0.1173605 0.06862044 -0.990715 0.1173681 0.07120895 -0.9974602 0.001580893 0.07121086 -0.9974601 0.001601934 0.07380247 -0.9907172 -0.1141607 0.07380157 -0.9907166 -0.1141666 0.07637166 -0.9705697 -0.2283896 0.07634371 -0.9705775 -0.2283659 0.0788486 -0.9373068 -0.3394688 0.07883435 -0.9373097 -0.3394641 0.08123213 -0.8913608 -0.4459567 0.08123183 -0.8913576 -0.445963 0.08349722 -0.8333634 -0.5463824 0.08350384 -0.8333698 -0.5463716 0.08554768 -0.7640942 -0.6394074 0.08558911 -0.7640983 -0.6393968 0.08745723 -0.684504 -0.723744 0.08746087 -0.6844955 -0.7237517 0.08911854 -0.5956444 -0.7982894 0.08915066 -0.5956426 -0.798287 0.09057074 -0.498705 -0.8620269 0.09054452 -0.498742 -0.8620082 0.09173625 -0.3950778 -0.9140558 0.09168303 -0.3950688 -0.9140651 0.09265512 -0.2860816 -0.9537151 0.09260821 -0.2860714 -0.9537227 0.0932222 -0.1732091 -0.9804633 0.09327793 -0.1732066 -0.9804584 0.09354126 -0.05798912 -0.9939252 0.09351873 -0.05801087 -0.9939261 0.09350502 0.05798423 -0.9939289 -0.9997493 -1.25541e-5 -0.02239441 -0.9997488 9.37323e-6 -0.02241373 -0.9997487 -2.60367e-6 -0.02242088 -0.9997487 0 -0.02241808 -0.9997489 5.67472e-6 -0.02241247 -0.9997489 -4.69913e-6 -0.02240955 -0.9997493 -3.78109e-6 -0.02239578 -0.9997497 0 -0.02237868 -0.9997493 0 -0.02239578 -0.9997489 4.69948e-6 -0.02241295 -0.9997489 -7.56606e-6 -0.02241253 -0.9997488 0 -0.02241522 -0.9997487 0 -0.02241963 -0.9997488 -9.37323e-6 -0.02241605 -0.9997491 7.58696e-6 -0.02240049 -0.9997491 0 -0.02240467 -0.9997485 -1.52072e-5 -0.02242481 -0.9997484 -1.86492e-5 -0.022435 -0.9997488 -3.04983e-5 -0.02241814 -0.9997489 1.85813e-5 -0.02241134 -0.9997492 1.52994e-5 -0.02240025 -0.9997493 0 -0.02239775 -0.999749 0 -0.02240836 -0.9997491 0 -0.02240556 -0.9997488 -1.54279e-5 -0.02241283 -0.9997488 -1.83124e-5 -0.02241212 -0.999749 -1.55042e-5 -0.02240353 -0.9997488 -1.82012e-5 -0.02241247 -0.9997491 3.11842e-5 -0.02240192 -0.999749 0 -0.02240902 -0.9997489 1.56897e-5 -0.02241075 -0.9997489 1.79475e-5 -0.02240967 -0.9997488 1.57953e-5 -0.02241355 -0.9997492 -3.56188e-5 -0.02239531 -0.9997493 -1.5914e-5 -0.02239096 -0.9997491 0 -0.02240127 -0.9997493 -8.02161e-6 -0.02239632 -0.999749 0 -0.02240675 -0.9997491 -8.0912e-6 -0.02240449 -0.9997497 -1.73363e-5 -0.02237677 -0.9997497 -8.16736e-6 -0.02237445 -0.9997497 -8.58243e-6 -0.02237862 -0.9997496 -1.44391e-5 -0.02237844 -0.9997492 -8.4926e-6 -0.02239817 -0.9997492 0 -0.02239644 -0.9997491 6.29967e-6 -0.02239817 -0.9997493 0 -0.02239769 -0.9997493 -6.22809e-6 -0.02239745 -0.9997491 0 -0.02239924 -0.9997496 2.05149e-5 -0.02237713 -0.9997496 1.73027e-5 -0.02237665 -0.9997497 8.10643e-6 -0.02237778 -0.9997497 1.75432e-5 -0.02237629 -0.999749 0 -0.02240371 -0.999749 1.78031e-5 -0.02240735 -0.9997492 0 -0.02239787 -0.9997491 -1.80813e-5 -0.02240037 -0.9997493 3.1172e-5 -0.02239316 -0.9997493 0 -0.02239656 -0.9997488 0 -0.02241462 -0.9997488 0 -0.02241551 -0.9997489 -1.51544e-5 -0.0224114 -0.9997491 -3.80954e-5 -0.02240484 -0.999749 0 -0.0224055 -0.9997491 0 -0.02240288 -0.999749 2.94353e-5 -0.02240765 -0.9997488 3.96505e-5 -0.02241742 -0.9997491 0 -0.02240544 -0.999749 0 -0.022408 -0.9997491 0 -0.02240455 -0.999749 0 -0.02240502 -0.9997491 -1.40537e-5 -0.02239799 -0.9997493 -2.12297e-5 -0.02239733 -0.9997485 2.76655e-5 -0.0224263 -0.9997481 2.1781e-5 -0.022448 -0.9997487 2.72233e-5 -0.02241665 -0.9997488 0 -0.02241688 -0.02219873 0.08258694 0.9963367 -0.02219885 0.2454487 0.9691554 -0.02219635 0.2455178 0.9691379 -0.02085125 0.4017239 0.9155235 -0.02085328 0.4016668 0.9155485 -0.01883447 0.5470407 0.8368941 -0.0188297 0.5468502 0.8370187 -0.01613795 0.6772906 0.7355386 -0.01648217 0.6772368 0.7355805 -0.01345461 0.7891144 0.614099 -0.01378846 0.7892114 0.613967 -0.0107609 0.8795372 0.4757084 -0.01042246 0.8794689 0.4758422 -0.00722891 0.9458136 0.3246296 -0.007396697 0.9458243 0.324595 -0.003613948 0.9863603 0.1645615 -0.003699779 0.9863607 0.1645567 0 1 2.10225e-5 0 1 -2.10221e-5 0.003699243 0.9863611 -0.1645546 0.003615796 0.9863569 -0.1645818 0.007230341 0.9458346 -0.3245684 0.007230639 0.9458153 -0.3246245 0.01042413 0.8794965 -0.4757914 0.01076453 0.8794267 -0.4759126 0.01412683 0.7890867 -0.6141195 0.01378983 0.7891476 -0.614049 0.01648163 0.6772619 -0.7355574 0.01647478 0.6772518 -0.7355669 0.01882743 0.5470046 -0.8369179 0.01850014 0.5469113 -0.8369863 0.02085268 0.4017509 -0.9155116 0.02018147 0.4016568 -0.9155679 0.02152687 0.2454572 -0.9691684 0.02219825 0.2455229 -0.9691367 0.02219891 0.08257329 -0.9963378 0.02286237 0.08257716 -0.9963225 0.02219063 -0.08258455 -0.996337 0.02287155 -0.08257681 -0.9963222 0.02152645 -0.2454522 -0.9691697 0.02219873 -0.2455289 -0.9691351 0.02085286 -0.4017547 -0.9155098 0.02018058 -0.4017001 -0.915549 0.01883411 -0.5470311 -0.8369004 0.01849269 -0.5469453 -0.8369642 0.01647406 -0.6772869 -0.7355346 0.01648086 -0.6773002 -0.7355222 0.01345282 -0.7891778 -0.6140175 0.01446211 -0.7891005 -0.6140938 0.01042282 -0.879552 -0.4756885 0.01076477 -0.8794103 -0.4759431 0.007398366 -0.9458206 -0.3246056 0.007230281 -0.945828 -0.3245875 0.003699243 -0.9863646 -0.1645342 0.003615856 -0.9863563 -0.1645855 -0.003699898 -0.98636 0.1645615 -0.003614127 -0.9863691 0.1645082 -0.00722891 -0.9458136 0.3246296 -0.007228493 -0.9458131 0.324631 -0.01042062 -0.8795374 0.4757158 -0.01076304 -0.8794742 0.475825 -0.0137909 -0.7891108 0.6140962 -0.01378858 -0.7891917 0.6139922 -0.01614326 -0.6773462 0.7354873 -0.01647537 -0.6772242 0.7355924 -0.01882773 -0.5470142 0.8369116 -0.01883661 -0.5468624 0.8370106 -0.02018028 -0.4017564 0.9155242 -0.02152448 -0.4016804 0.9155269 -0.02219665 -0.2454249 0.9691615 -0.02219831 -0.2455129 0.9691392 -0.02219903 -0.08257377 0.9963378 -0.02219873 -0.08257913 0.9963373 -0.02219873 0.08255159 0.9963396 -0.999749 -4.12144e-6 -0.02240622 -0.9997491 4.12144e-6 -0.02240568 -0.999749 4.1215e-6 -0.02240496 -0.999749 -1.54555e-6 -0.02240741 -0.999749 -2.57593e-7 -0.02240586 -0.999749 0 -0.02240383 -0.999749 2.5759e-6 -0.02240556 -0.9997489 -4.63665e-6 -0.02240878 -0.9997491 -2.57589e-7 -0.02240407 -0.999749 5.1518e-7 -0.02240818 -0.999749 1.03037e-6 -0.02240645 -0.999749 -2.06074e-6 -0.02240383 -0.999749 5.15189e-7 -0.02240651 -0.999749 0 -0.02240812 -0.999749 4.12149e-6 -0.022408 -0.999749 0 -0.02240425 -0.999749 -1.54553e-6 -0.02240538 -0.9997491 -4.12144e-6 -0.02240568 -0.999749 4.89425e-6 -0.0224058 -0.999749 7.72775e-7 -0.02240741 -0.999749 0 -0.02240687 -0.999749 -4.89425e-6 -0.02240598 -0.999749 5.98897e-6 -0.02240598 -0.9997491 2.06071e-6 -0.02240532 -0.999749 0 -0.02240419 -0.999749 -2.06075e-6 -0.02240818 -0.9997489 0 -0.02240854 -0.999749 -5.15189e-7 -0.02240628 -0.999749 2.06073e-6 -0.02240377 -0.999749 -1.03038e-6 -0.02240633 -0.9997489 -5.15181e-7 -0.02240854 -0.9997491 5.15177e-7 -0.02240401 -0.9997489 4.12145e-6 -0.02240884 -0.999749 -2.57592e-6 -0.0224055 -0.999749 1.03037e-6 -0.02240371 -0.999749 0 -0.02240604 -0.999749 1.54555e-6 -0.02240669 -0.999749 -4.1215e-6 -0.02240526 -0.999749 4.1215e-6 -0.0224055 -0.999749 -4.1215e-6 -0.02240806 -0.999749 -7.72775e-7 -0.02240669 -0.999749 -4.89419e-6 -0.02240639 -0.999749 2.06073e-6 -0.02240341 -0.999749 1.54554e-6 -0.02240604 -0.999749 0 -0.02240401 -0.999749 2.57591e-7 -0.02240425 -0.999749 0 -0.02240836 -0.999749 -5.15189e-7 -0.02240639 -0.999749 0 -0.02240341 -0.999749 -1.03038e-6 -0.02240633 -0.999749 -5.1518e-7 -0.02240824 -0.9997491 -4.12152e-6 -0.02240508 -0.9997489 4.63665e-6 -0.02240908 -0.999749 -2.57592e-6 -0.02240622 -0.999749 -4.1215e-6 -0.0224055 -0.999749 2.5759e-7 -0.02240645 -0.999749 0 -0.02240633 -0.999749 -2.57593e-7 -0.02240628 -0.9997491 2.83349e-6 -0.02240562 -0.999749 2.06073e-6 -0.02240598 -0.999749 -4.63671e-6 -0.0224092 -0.999749 4.12144e-6 -0.02240502 -0.9997489 1.03036e-6 -0.02240854 -0.999749 1.03037e-6 -0.02240639 -0.999749 -1.03037e-6 -0.02240359 -0.999749 0 -0.02240651 -0.999749 0 -0.02240842 -0.9997491 -5.15177e-7 -0.02240401 -0.9997491 0 -0.02240407 -0.999749 -1.54553e-6 -0.02240574 -0.9997491 -2.06074e-6 -0.02240359 -0.999749 4.12147e-6 -0.02240633 -0.999749 7.72775e-7 -0.02240651 -0.999749 2.06072e-6 -0.02240848 0.02219873 0.08257633 -0.9963375 0.02152544 0.245525 -0.9691513 0.02152681 0.2454535 -0.9691694 0.020181 0.401686 -0.9155551 0.02085232 0.401765 -0.9155054 0.01849997 0.5469263 -0.8369764 0.01882678 0.54705 -0.8368882 0.0164746 0.6773079 -0.7355153 0.01648032 0.6772792 -0.7355415 0.01378923 0.7891843 -0.6140016 0.01412582 0.7891044 -0.6140968 0.01076364 0.8794259 -0.4759142 0.01042377 0.8795277 -0.4757336 0.007230281 0.9458218 -0.324606 0.007230341 0.9458345 -0.3245688 0.003615796 0.9863603 -0.1645615 0.003699362 0.9863638 -0.1645377 -0.003615796 0.9863603 0.1645615 -0.00369817 0.986362 0.1645491 -0.007396996 0.9458125 0.3246292 -0.007228553 0.9458261 0.3245934 -0.01042228 0.8795081 0.4757698 -0.01076126 0.8794947 0.4757871 -0.01378905 0.7891742 0.6140147 -0.01345431 0.7891421 0.6140635 -0.01648116 0.677241 0.7355767 -0.01613789 0.6773398 0.7354933 -0.01882916 0.5468868 0.8369948 -0.01883518 0.5469899 0.8369274 -0.0208534 0.4016804 0.9155424 -0.02085101 0.401749 0.9155125 -0.02286827 0.2454977 0.9691274 -0.02219879 0.2454339 0.9691592 -0.02219849 0.08259266 0.9963362 -0.02219921 0.08255994 0.9963389 -0.02219927 -0.0825746 0.9963376 -0.02219873 -0.08256608 0.9963384 -0.02219849 -0.2455289 0.9691351 -0.02219682 -0.2454388 0.969158 -0.02152389 -0.4016399 0.9155448 -0.02018058 -0.4017506 0.9155268 -0.01883554 -0.5469036 0.8369837 -0.01882797 -0.5469681 0.8369418 -0.01647621 -0.6772064 0.7356087 -0.01648026 -0.6773279 0.7354968 -0.01378905 -0.7891742 0.6140147 -0.01379013 -0.7891377 0.6140615 -0.01076239 -0.8794903 0.475795 -0.01042127 -0.8795334 0.4757232 -0.007228493 -0.9458125 0.324633 -0.003613948 -0.9863637 0.164541 -0.003699779 -0.9863641 0.1645362 0.003615796 -0.9863636 -0.1645411 0.003699243 -0.9863611 -0.1645544 0.007230222 -0.9458153 -0.3246248 0.007398843 -0.9458206 -0.3246054 0.01076537 -0.8793966 -0.4759683 0.01042348 -0.8795353 -0.4757195 0.01446294 -0.7890728 -0.6141297 0.01345372 -0.7891614 -0.6140387 0.01648163 -0.6772619 -0.7355574 0.01647502 -0.6772623 -0.7355572 0.01882934 -0.5468916 -0.8369917 0.01883399 -0.5470065 -0.8369166 0.02018135 -0.4016937 -0.9155517 0.0208528 -0.401714 -0.9155278 0.02219849 -0.2455289 -0.9691351 0.02152681 -0.2454525 -0.9691696 0.02287101 -0.0825712 -0.9963228 0.02219074 -0.08258014 -0.9963374 0.02219098 0.08258587 -0.9963369 -0.9997491 -1.08802e-5 -0.02239829 -0.9997493 9.37359e-6 -0.02239233 -0.9997493 -7.33762e-6 -0.02239197 -0.9997494 -9.38838e-6 -0.02238535 -0.9997495 -1.3241e-5 -0.02238368 -0.9997495 0 -0.02238547 -0.9997491 0 -0.02240222 -0.9997489 0 -0.02241098 -0.999749 0 -0.02240318 -0.9997495 0 -0.02238428 -0.9997495 1.5133e-5 -0.02238458 -0.9997495 9.38908e-6 -0.02238589 -0.9997493 7.57432e-6 -0.02239251 -0.9997493 -9.37359e-6 -0.02239346 -0.999749 1.51739e-5 -0.02240806 -0.9997487 -1.87051e-5 -0.02241802 -0.999749 0 -0.02240842 -0.999749 1.86499e-5 -0.02240324 -0.9997493 1.52484e-5 -0.02239614 -0.9997493 -1.85813e-5 -0.02239513 -0.999749 0 -0.02240771 -0.9997488 -1.85029e-5 -0.02241164 -0.999749 0 -0.02240675 -0.9997489 0 -0.02240854 -0.9997491 0 -0.02240347 -0.9997491 3.66242e-5 -0.02240484 -0.9997491 3.10086e-5 -0.02240371 -0.9997491 1.82001e-5 -0.02240198 -0.9997488 0 -0.0224145 -0.9997491 0 -0.02240043 -0.9997491 -3.13775e-5 -0.02240151 -0.999749 -1.79491e-5 -0.02240723 -0.999749 0 -0.0224058 -0.9997488 1.78081e-5 -0.02241373 -0.9997488 1.5913e-5 -0.0224114 -0.9997486 1.76603e-5 -0.0224241 -0.9997485 1.60442e-5 -0.02242481 -0.9997489 0 -0.02241265 -0.9997488 0 -0.02241331 -0.999749 0 -0.02241086 -0.999749 0 -0.02240806 -0.9997489 -8.58183e-6 -0.02241033 -0.9997488 7.21909e-6 -0.02241188 -0.9997492 0 -0.02239817 -0.9997492 -6.25552e-6 -0.02239942 -0.999749 -8.39956e-6 -0.02240765 -0.999749 8.43642e-6 -0.02240812 -0.9997493 4.15206e-6 -0.02239775 -0.9997493 0 -0.02239769 -0.999749 -4.10271e-6 -0.02241051 -0.9997489 0 -0.02241128 -0.999749 8.1059e-6 -0.02241075 -0.999749 0 -0.02240836 -0.9997488 0 -0.02241241 -0.9997489 0 -0.02241039 -0.9997486 -1.57973e-5 -0.02242624 -0.9997487 -1.80813e-5 -0.02242296 -0.9997488 -1.55855e-5 -0.0224139 -0.9997488 0 -0.02241301 -0.999749 0 -0.02240747 -0.999749 -3.74018e-5 -0.0224083 -0.999749 4.54645e-5 -0.02240449 -0.999749 3.80965e-5 -0.02240544 -0.999749 -2.98749e-5 -0.02240616 -0.9997491 -2.9433e-5 -0.02240216 -0.9997493 -3.96458e-5 -0.02239489 -0.9997489 0 -0.02240985 -0.999749 0 -0.02240508 -0.9997488 4.14455e-5 -0.02241164 -0.999749 0 -0.02240788 -0.9997492 -2.12315e-5 -0.02239918 -0.9997493 0 -0.02239274 -0.9997495 -4.35583e-5 -0.02238351 -0.9997487 1.36117e-5 -0.02241837 -0.9997484 2.23757e-5 -0.02243447 0.999749 0 0.02240973 0.999749 2.50889e-5 0.0224052 0.999749 -2.50889e-5 0.02240693 0.9997489 -5.17978e-5 0.02241224 0.9997492 9.71234e-6 0.02239954 0.999749 -1.13301e-5 0.02240926 0.9997491 -5.17978e-5 0.02239847 0.999749 3.88493e-5 0.02240663 0.9997488 -9.71108e-6 0.02241504 0.9997497 0 0.02237713 0.9997488 -6.47464e-6 0.02241837 0.9997489 3.23732e-5 0.0224111 0.9997493 3.23719e-6 0.02239447 0.9997491 -6.47484e-6 0.0224021 0.9997487 6.47459e-6 0.02241665 0.9997497 -2.58976e-5 0.02237868 0.9997487 6.47496e-6 0.0224179 0.9997485 0 0.02242892 0.9997489 0 0.02241069 0.9997488 6.47478e-6 0.02241891 0.9997489 0 0.02240943 0.9997492 -4.20819e-5 0.02239614 0.999749 1.9425e-5 0.02240705 0.999749 -1.03596e-4 0.02240735 0.9997491 -2.26602e-5 0.02239835 0.999749 4.8561e-5 0.02240842 0.999749 1.03596e-4 0.02240735 0.999749 -6.43401e-5 0.02240616 0.9997491 6.43401e-5 0.02240574 0.9997489 0 0.02241039 0.999749 -4.85573e-5 0.02240765 0.9997491 2.26602e-5 0.02239906 0.999749 -1.9425e-5 0.02240717 0.9997492 4.20819e-5 0.02239596 0.9997497 2.58976e-5 0.0223791 0.9997487 -6.47491e-6 0.02241861 0.9997489 0 0.02241045 0.9997493 -3.23719e-6 0.02239447 0.9997485 0 0.02242827 0.9997487 -6.47499e-6 0.0224182 0.9997497 -1.29488e-5 0.02237868 0.9997487 -6.47489e-6 0.02241784 0.9997491 6.47446e-6 0.02240079 0.9997491 5.17978e-5 0.02239847 0.999749 -3.23717e-5 0.02241063 0.9997488 6.47485e-6 0.02241843 0.9997488 5.18005e-5 0.02241337 0.9997488 9.71108e-6 0.02241432 0.999749 -3.88493e-5 0.02240675 0.999749 1.13301e-5 0.02240866 0.9997491 -9.71177e-6 0.02239888 0.9987915 0.00414294 -0.04897308 0.9987695 0.01243698 -0.04800927 0.9987695 0.01242965 -0.04801219 0.9987272 0.02046149 -0.04610323 0.998727 0.02051609 -0.04608333 0.9986634 0.02831453 -0.04324048 0.9986628 0.02830076 -0.04326534 0.9985786 0.03575128 -0.03953182 0.9985795 0.03574019 -0.03951823 0.998477 0.04268872 -0.03494793 0.9984778 0.04267424 -0.03494417 0.9983566 0.04905331 -0.02962821 0.9983592 0.0490145 -0.02960771 0.9982222 0.05474627 -0.02356606 0.9982238 0.05471086 -0.02358341 0.9980707 0.05973988 -0.01691275 0.9980733 0.05969965 -0.01690596 0.9979116 0.06386011 -0.009719789 0.997913 0.06384205 -0.009696066 0.9977414 0.06714266 -0.002060353 0.9977402 0.06715655 -0.00211811 0.9975613 0.06954932 0.005862236 0.9973788 0.07098001 0.01405471 0.9973778 0.0709939 0.01405209 0.9971932 0.07145464 0.02236115 0.9971925 0.07147133 0.02233672 0.9970071 0.07098603 0.0306245 0.9970073 0.07096701 0.03066354 0.9968242 0.06953549 0.03881382 0.9968242 0.06952613 0.03883081 0.9966441 0.06715804 0.04680132 0.9966481 0.06713199 0.04675531 0.996473 0.06388688 0.05440646 0.9964751 0.06384265 0.054421 0.9963147 0.05968207 0.06160539 0.996311 0.05974566 0.06160491 0.9961607 0.05480974 0.06826263 0.9960296 0.04903215 0.07430326 0.9960301 0.04901778 0.07430666 0.9959114 0.04260993 0.07965636 0.9959049 0.04277503 0.07964789 0.9958065 0.03572028 0.08422416 0.9958062 0.03574097 0.08421719 0.9957212 0.0283522 0.08795171 0.9956592 0.02050161 0.09078729 0.9956594 0.02051514 0.09078335 0.9956167 0.01235795 0.0927084 0.9956153 0.01242923 0.09271419 0.9955945 0.004174828 0.09367096 0.9955947 0.004143059 0.09366923 0.9955949 -0.00413531 0.09366828 0.9955944 -0.004192769 0.09367078 0.9956151 -0.01243674 0.09271419 0.9956169 -0.01232975 0.09271037 0.9956585 -0.02054208 0.09078603 0.9956604 -0.02046525 0.09078341 0.9957213 -0.02835357 0.08794987 0.9958055 -0.03575992 0.08421909 0.9958086 -0.03563946 0.08423191 0.9959069 -0.04268908 0.0796687 0.9959101 -0.04267543 0.07963585 0.99603 -0.04903411 0.07429569 0.99603 -0.04901534 0.07430917 0.9961642 -0.05472773 0.06827831 0.996167 -0.05470478 0.06825625 0.9963127 -0.05971926 0.06159973 0.9963139 -0.05969893 0.06160199 0.9964748 -0.06386208 0.05440223 0.9964725 -0.06387066 0.05443608 0.9966443 -0.06715404 0.04680287 0.996648 -0.06713867 0.0467475 0.996824 -0.06953823 0.03881347 0.9968227 -0.06954544 0.03883463 0.9970086 -0.0709663 0.03062021 0.9970051 -0.07099264 0.03067588 0.9971919 -0.07147437 0.02235925 0.9971945 -0.07144343 0.02233678 0.9973797 -0.07096588 0.01405769 0.9973782 -0.0709899 0.01404446 0.9975622 -0.06953507 0.005865812 0.9975621 -0.06953579 0.005880951 0.99774 -0.06716042 -0.002065896 0.9977415 -0.06713837 -0.002105832 0.9979127 -0.06384289 -0.009715199 0.9979115 -0.06386369 -0.009704947 0.9980731 -0.05970036 -0.01691091 0.9980733 -0.05969965 -0.0169028 0.9982253 -0.0546869 -0.02357357 0.9982212 -0.05476063 -0.02357715 0.9983588 -0.04901474 -0.02962207 0.9983564 -0.04906672 -0.02961534 0.9984797 -0.04262769 -0.03494632 0.9984755 -0.04272615 -0.03494584 0.9985803 -0.03571027 -0.03952533 0.9985774 -0.03578913 -0.03952652 0.998663 -0.02831226 -0.04325282 0.9986633 -0.02830356 -0.04325097 0.9987269 -0.02050274 -0.04609185 0.9987273 -0.02046567 -0.04609775 0.9987699 -0.01239734 -0.04801207 0.998769 -0.01247942 -0.0480085 0.9987915 -0.004153847 -0.04897475 0.9987918 -0.00414288 -0.04896932 0.9987918 0.004153847 -0.04896837 0.9815889 0.01233178 -0.1906079 0.9815219 0.0370199 -0.1877347 0.9815281 0.03695607 -0.1877149 0.9813984 0.06106716 -0.1820117 0.9813958 0.06106215 -0.1820267 0.9812056 0.08432233 -0.1735669 0.9812091 0.0843364 -0.1735399 0.9809585 0.10643 -0.1624596 0.9809596 0.1064312 -0.1624523 0.9806545 0.1271365 -0.1488396 0.980659 0.1271224 -0.1488217 0.9802969 0.1461154 -0.1329225 0.9802946 0.1461144 -0.1329402 0.9798979 0.1630632 -0.1149377 0.9798838 0.1631487 -0.1149358 0.9794514 0.17786 -0.09508323 0.9789697 0.1902489 -0.07364702 0.9789675 0.1902623 -0.07364064 0.9784646 0.2000429 -0.0508905 0.9784545 0.2000907 -0.05089753 0.977926 0.207175 -0.02719283 0.9779323 0.2071425 -0.02720993 0.9773857 0.2114462 -0.002813339 0.9773774 0.211484 -0.002815365 0.9768291 0.2128995 0.02188611 0.9768226 0.2129266 0.02190673 0.9762728 0.2114696 0.04660499 0.9762789 0.2114444 0.0465933 0.9757258 0.2071739 0.07098138 0.9757248 0.2071819 0.07097059 0.9751945 0.2000754 0.0946868 0.9751979 0.2000436 0.09471839 0.9746894 0.1902444 0.1174212 0.9746857 0.1902701 0.1174095 0.9742066 0.1778696 0.1388667 0.974199 0.1779165 0.1388597 0.973762 0.1630858 0.158716 0.9737594 0.1630995 0.1587177 0.973356 0.1461139 0.176717 0.9733507 0.1461532 0.1767142 0.9729965 0.1271694 0.1926288 0.9730061 0.127088 0.1926344 0.9726915 0.1065073 0.2062222 0.9727009 0.1064257 0.2062196 0.9724496 0.08429676 0.2173387 0.9724482 0.08430033 0.2173431 0.9722582 0.0610755 0.2257962 0.9722522 0.06110274 0.2258147 0.9721292 0.03690904 0.2315228 0.9721296 0.03695642 0.2315132 0.9720654 0.01239335 0.2343831 0.9720609 0.01241093 0.2344009 0.9720622 -0.01239418 0.2343961 0.9720653 -0.01241099 0.2343821 0.9721272 -0.036942 0.2315258 0.972131 -0.03691536 0.231514 0.9722485 -0.06111413 0.2258276 0.97226 -0.06106483 0.2257913 0.9724476 -0.08429658 0.2173473 0.9724503 -0.08433163 0.2173214 0.9726905 -0.1064943 0.2062331 0.9730037 -0.1271252 0.192622 0.9730014 -0.1271218 0.1926355 0.9733466 -0.1461505 0.1767383 0.9733618 -0.1461093 0.1766892 0.9737637 -0.1630861 0.1587049 0.9737584 -0.1630927 0.1587309 0.9742054 -0.1778858 0.1388547 0.9746828 -0.1902729 0.1174297 0.9746874 -0.1902583 0.1174145 0.9752 -0.2000503 0.09468281 0.975195 -0.2000629 0.0947082 0.9757268 -0.2071723 0.07097154 0.975728 -0.2071657 0.070975 0.9762709 -0.2114754 0.04662019 0.9762825 -0.211433 0.04656988 0.976832 -0.2128857 0.02188986 0.9768221 -0.2129289 0.02190673 0.977382 -0.2114632 -0.002815723 0.9773826 -0.2114602 -0.002825498 0.9779281 -0.207165 -0.02719253 0.9779251 -0.2071776 -0.02720201 0.9784644 -0.2000429 -0.05089515 0.9784492 -0.2001193 -0.05088734 0.9789656 -0.1902714 -0.0736435 0.9789749 -0.1902241 -0.07364118 0.979447 -0.1778877 -0.09507632 0.979457 -0.1778343 -0.09507298 0.9798912 -0.1631034 -0.1149376 0.9798954 -0.1630846 -0.1149284 0.9802971 -0.1461105 -0.1329258 0.9802957 -0.1461204 -0.1329259 0.9806573 -0.1271204 -0.1488348 0.9806526 -0.1271613 -0.1488306 0.9809566 -0.1064628 -0.1624503 0.9809629 -0.1063898 -0.1624595 0.9812123 -0.08428424 -0.1735475 0.9812 -0.08437699 -0.1735716 0.9813956 -0.06110203 -0.182015 0.9813992 -0.06102699 -0.1820203 0.9815261 -0.03695285 -0.1877257 0.9815214 -0.03703534 -0.1877344 0.9815896 -0.01236307 -0.1906024 0.9815891 0.01239567 -0.190602 0.9443445 0.02032876 -0.3283299 0.9442486 0.06073558 -0.323583 0.9442446 0.06078964 -0.3235844 0.9440319 0.1003968 -0.3142045 0.9440345 0.1003534 -0.3142107 0.9437226 0.1386314 -0.3002817 0.9437184 0.1386098 -0.3003048 0.9433182 0.1749708 -0.2820216 0.9433068 0.1749786 -0.2820548 0.9428104 0.2090064 -0.2596632 0.9428136 0.2089714 -0.2596797 0.9422311 0.2401776 -0.233485 0.9415634 0.2681002 -0.2039133 0.941558 0.2681185 -0.2039145 0.9408302 0.2924102 -0.1712743 0.9408218 0.2924144 -0.1713135 0.9400439 0.3127509 -0.136031 0.9400331 0.3127723 -0.1360561 0.9391959 0.328892 -0.09869706 0.9391983 0.3288927 -0.09867191 0.9383271 0.3405528 -0.05971801 0.93744 0.347593 -0.0196318 0.9374278 0.3476266 -0.01962047 0.9365217 0.3499801 0.02100473 0.936518 0.3499917 0.02097249 0.9356035 0.3476376 0.0615974 0.9356282 0.3475688 0.06161177 0.9347058 0.340565 0.1016894 0.9347124 0.3405509 0.1016752 0.9338368 0.328882 0.1406608 0.9338312 0.3289003 0.1406555 0.9329928 0.3127793 0.1780276 0.9330059 0.312751 0.1780077 0.9321972 0.2924462 0.2132689 0.9322149 0.2923896 0.2132695 0.9314955 0.2680505 0.2458967 0.9314707 0.2681382 0.245895 0.9308096 0.2402153 0.2754816 0.9308197 0.2401551 0.2755002 0.9302365 0.2089605 0.3016549 0.9302254 0.2090342 0.3016377 0.9297215 0.174998 0.3240271 0.9297307 0.1749762 0.324013 0.9293137 0.1386607 0.3422708 0.9293236 0.1386089 0.3422651 0.9290088 0.1003642 0.3561877 0.9290081 0.1003593 0.3561912 0.9287976 0.06083256 0.3655607 0.9288033 0.06072115 0.3655647 0.9286966 0.0203672 0.3702806 0.9286922 0.02036184 0.3702921 0.9286985 -0.0203672 0.370276 0.928698 -0.02036195 0.3702779 0.9287997 -0.06074923 0.365569 0.9287967 -0.06081759 0.3655655 0.9290068 -0.1003386 0.3562 0.9290173 -0.1003879 0.3561593 0.9293261 -0.138654 0.3422397 0.92931 -0.1386045 0.3423035 0.9297284 -0.1749851 0.3240144 0.9297252 -0.1750082 0.3240112 0.9302293 -0.2089938 0.3016539 0.9308099 -0.2401943 0.275499 0.9308168 -0.2401703 0.2754963 0.9314843 -0.2680921 0.2458937 0.931471 -0.2681217 0.2459116 0.9322091 -0.2924126 0.2132629 0.9322049 -0.2924299 0.2132583 0.9330006 -0.3127629 0.1780148 0.9330005 -0.3127492 0.1780396 0.9338271 -0.3289086 0.1406633 0.9338447 -0.3288652 0.1406476 0.9347071 -0.3405655 0.1016758 0.934715 -0.3405436 0.1016755 0.935626 -0.3475745 0.06161141 0.9356045 -0.3476319 0.06161457 0.9365217 -0.3499801 0.021007 0.9365221 -0.3499809 0.02097254 0.9374338 -0.3476092 -0.01964598 0.9374307 -0.3476176 -0.01963567 0.9383293 -0.3405489 -0.0597046 0.9383262 -0.3405607 -0.05968493 0.9391978 -0.3288927 -0.09867775 0.9391958 -0.3289 -0.09867161 0.9400216 -0.3128098 -0.1360497 0.9400522 -0.3127127 -0.136061 0.9408299 -0.2924057 -0.1712841 0.9408354 -0.2923919 -0.1712769 0.941566 -0.2680887 -0.2039169 0.9415454 -0.2681644 -0.2039119 0.9422236 -0.2401972 -0.2334955 0.9422327 -0.2401536 -0.2335038 0.942808 -0.2089964 -0.2596799 0.9428108 -0.2089965 -0.2596698 0.9433153 -0.1749328 -0.2820544 0.9433075 -0.1750086 -0.2820335 0.9437249 -0.1386033 -0.3002871 0.9437195 -0.1386357 -0.3002893 0.9440303 -0.1003906 -0.3142112 0.944037 -0.1003606 -0.3142005 0.9442423 -0.06079572 -0.3235899 0.9442469 -0.06072163 -0.3235905 0.9443469 -0.0203675 -0.3283202 0.9443527 -0.02036219 -0.3283041 0.9443511 0.02039539 -0.3283063 0.8878521 0.02791446 -0.4592815 0.8877063 0.08334827 -0.4528031 0.8876935 0.08332049 -0.4528333 0.8874199 0.1376221 -0.4399389 0.8874067 0.1376459 -0.439958 0.8869829 0.1900785 -0.4208701 0.8869995 0.1900267 -0.4208586 0.8864383 0.2399522 -0.3957905 0.8864069 0.2399797 -0.3958443 0.8857387 0.2865521 -0.3651782 0.8857344 0.2865653 -0.3651781 0.884921 0.3293449 -0.3293126 0.8849269 0.3293353 -0.3293069 0.8840385 0.3675756 -0.2887289 0.8840331 0.3675938 -0.2887222 0.8830268 0.4009275 -0.2439688 0.8830152 0.4009557 -0.2439648 0.8819575 0.4288067 -0.1956417 0.8819487 0.4288218 -0.195649 0.8807991 0.450924 -0.1444318 0.8808012 0.4509185 -0.144436 0.8795825 0.4669668 -0.09097677 0.8795884 0.4669553 -0.09097766 0.878363 0.4766331 -0.03604799 0.8783587 0.4766416 -0.0360428 0.8771165 0.4798752 0.01966375 0.8771112 0.4798852 0.01965653 0.8758862 0.4765969 0.07535833 0.8758481 0.4766693 0.07534432 0.8746284 0.4669617 0.1302762 0.873458 0.4508991 0.1837422 0.8722762 0.4288662 0.2349639 0.8723 0.4288161 0.2349669 0.8712156 0.4009091 0.2832936 0.8712047 0.4009355 0.28329 0.8702078 0.36759 0.3280489 0.8702101 0.3676071 0.3280237 0.8693006 0.3292965 0.3686194 0.8684923 0.2865659 0.4044767 0.868491 0.2865597 0.4044837 0.867791 0.2399598 0.4351529 0.8672429 0.1900643 0.4601796 0.8668112 0.1376473 0.4792616 0.8668246 0.137614 0.4792469 0.8665334 0.08331805 0.4921159 0.866522 0.08331602 0.4921362 0.866374 0.02790927 0.4986155 0.8663759 0.02788704 0.4986132 0.8663677 -0.02788555 0.4986277 0.866386 -0.02791363 0.4985943 0.8665161 -0.08334642 0.4921417 0.8665361 -0.08329135 0.4921157 0.8668219 -0.137641 0.479244 0.8672416 -0.1900702 0.4601798 0.8678007 -0.239936 0.4351471 0.8677951 -0.2399534 0.4351483 0.8684923 -0.2865577 0.4044822 0.868487 -0.2865771 0.4044799 0.8693032 -0.3293131 0.3685988 0.8692923 -0.3292964 0.3686391 0.8702077 -0.3675899 0.3280492 0.870221 -0.3675997 0.3280029 0.8712074 -0.4009421 0.2832728 0.871213 -0.4009121 0.2832977 0.8722674 -0.4288681 0.2349936 0.8723083 -0.428806 0.234955 0.873429 -0.4509506 0.1837538 0.873457 -0.4509127 0.1837136 0.8746377 -0.4669364 0.1303051 0.8746451 -0.4669274 0.1302871 0.8758841 -0.4766021 0.07534968 0.8758466 -0.4766715 0.07534664 0.8771271 -0.4798558 0.01966708 0.8770906 -0.4799227 0.01965731 0.8783606 -0.4766382 -0.03603941 0.8783692 -0.4766219 -0.03604435 0.8795918 -0.4669484 -0.09098029 0.8795821 -0.4669671 -0.09097993 0.8808029 -0.4509195 -0.1444233 0.880791 -0.450942 -0.1444248 0.8819516 -0.42881 -0.1956613 0.8819433 -0.4288334 -0.1956478 0.8830347 -0.4008975 -0.2439893 0.8840371 -0.3675855 -0.2887202 0.8840393 -0.3675845 -0.2887149 0.884927 -0.3293313 -0.3293101 0.8849267 -0.3293424 -0.3292998 0.8857365 -0.2865603 -0.365177 0.8857401 -0.2865479 -0.365178 0.8864193 -0.2399607 -0.3958278 0.8864271 -0.2399452 -0.39582 0.8869896 -0.1900476 -0.4208698 0.8869892 -0.1900873 -0.420853 0.8874171 -0.1376178 -0.4399458 0.8874117 -0.1376389 -0.43995 0.8877056 -0.08332538 -0.4528086 0.8877006 -0.08335059 -0.4528139 0.8878532 -0.02790027 -0.4592801 0.8878477 -0.02794331 -0.4592884 0.887849 0.02792608 -0.4592866 0.8132733 0.03491765 -0.5808335 0.8131001 0.1041936 -0.5727232 0.8130936 0.1041728 -0.5727365 0.8127339 0.1720541 -0.5566518 0.8127332 0.1720537 -0.5566527 0.8121966 0.2376241 -0.5327959 0.8122044 0.2375999 -0.5327949 0.8115026 0.2999754 -0.5014762 0.8114862 0.299996 -0.5014902 0.8106381 0.3582366 -0.4631765 0.8106497 0.3582315 -0.4631601 0.8096249 0.411701 -0.418342 0.8096343 0.4116851 -0.4183391 0.8085053 0.4595534 -0.3676003 0.8084859 0.4595769 -0.3676136 0.8072357 0.5012431 -0.3116508 0.8072305 0.5012487 -0.3116547 0.805868 0.5361371 -0.2512648 0.8058888 0.5361145 -0.2512459 0.8044603 0.5637325 -0.1872146 0.8044309 0.5637746 -0.1872141 0.8029352 0.5837789 -0.1204054 0.8029668 0.5837403 -0.1203808 0.8014111 0.5958762 -0.05168968 0.8014279 0.5958508 -0.05172282 0.7998524 0.5999292 0.01792436 0.7998443 0.5999398 0.0179255 0.7982903 0.5958755 0.08755201 0.7982907 0.5958722 0.08756971 0.796748 0.5837634 0.1562463 0.7967463 0.5837669 0.1562423 0.7952479 0.5637612 0.2230567 0.7952482 0.5637505 0.2230826 0.7938225 0.5361074 0.2871146 0.7938152 0.5361284 0.2870957 0.7924623 0.5012468 0.3474986 0.7912139 0.4595581 0.4034688 0.7900888 0.4116678 0.4541912 0.7900537 0.4117436 0.4541833 0.7890722 0.358249 0.4990218 0.7890774 0.3582233 0.499032 0.7882184 0.2999826 0.5373288 0.7882255 0.2999649 0.5373282 0.7875106 0.2376172 0.5686522 0.7875289 0.2376183 0.5686262 0.7869754 0.1720469 0.5925113 0.7869823 0.172073 0.5924946 0.7866333 0.1041417 0.6085743 0.7865934 0.1042011 0.6086156 0.7864367 0.03490012 0.6166842 0.7864572 0.03489047 0.6166585 0.7864477 -0.03490066 0.61667 0.7864381 -0.03489184 0.616683 0.78663 -0.104164 0.6085748 0.7866004 -0.1041773 0.6086108 0.7869632 -0.1720656 0.592522 0.7869883 -0.1720408 0.5924959 0.7875055 -0.237627 0.5686551 0.7875345 -0.23762 0.5686177 0.7882358 -0.2999604 0.5373156 0.7882047 -0.2999917 0.5373437 0.7890799 -0.3582381 0.4990177 0.7900575 -0.4117099 0.4542071 0.7900754 -0.4117041 0.4541814 0.7912093 -0.4595727 0.4034609 0.7911993 -0.4595894 0.4034616 0.7924697 -0.5012143 0.3475288 0.7924649 -0.5012403 0.3475021 0.7938213 -0.536114 0.2871055 0.7938202 -0.5361066 0.2871227 0.7952447 -0.563767 0.2230534 0.7952717 -0.5637252 0.2230625 0.7967458 -0.5837618 0.1562644 0.7967525 -0.5837562 0.1562511 0.7982899 -0.5958752 0.08755552 0.7983 -0.5958635 0.08754283 0.799869 -0.5999074 0.0179159 0.7998596 -0.5999199 0.01791274 0.8014113 -0.5958765 -0.0516833 0.8014309 -0.5958468 -0.05172306 0.8029476 -0.5837652 -0.1203888 0.802967 -0.583741 -0.1203771 0.8044589 -0.5637316 -0.1872235 0.8058747 -0.536134 -0.2512495 0.8059051 -0.5360876 -0.251251 0.8072293 -0.5012477 -0.3116595 0.8072264 -0.5012522 -0.3116599 0.8084889 -0.45957 -0.3676154 0.8084897 -0.4595789 -0.3676028 0.809642 -0.4116642 -0.4183449 0.8096218 -0.4117164 -0.4183326 0.8106471 -0.3582305 -0.4631655 0.8106338 -0.3582607 -0.4631654 0.8115004 -0.2999746 -0.5014802 0.8114897 -0.299988 -0.5014895 0.8122037 -0.2376129 -0.5327902 0.8122067 -0.237608 -0.5327877 0.8127443 -0.1720563 -0.5566359 0.8127305 -0.1720478 -0.5566587 0.8131136 -0.1041668 -0.572709 0.8130871 -0.1042031 -0.57274 0.8132801 -0.03488528 -0.5808257 0.8132788 -0.03489285 -0.5808272 0.8132754 0.03486233 -0.5808336 0.7221394 0.04116261 -0.6905218 0.7219411 0.1228882 -0.680955 0.721924 0.1228981 -0.6809713 0.7215227 0.2029637 -0.6619749 0.7215109 0.2029715 -0.6619855 0.7208741 0.2803166 -0.633848 0.7208982 0.2803316 -0.6338139 0.7200726 0.3538494 -0.5968971 0.7200545 0.3538687 -0.5969074 0.7190355 0.4226148 -0.5517107 0.719068 0.4226028 -0.5516775 0.7178429 0.4856694 -0.4988256 0.7178817 0.4856339 -0.498804 0.7165438 0.5421239 -0.4389382 0.716491 0.5421608 -0.4389788 0.7150546 0.5912781 -0.3729438 0.7150408 0.5912798 -0.3729677 0.7134379 0.6324328 -0.3017205 0.7134572 0.6324198 -0.3017019 0.7117955 0.6649811 -0.2261576 0.7117311 0.6650481 -0.2261639 0.7099909 0.6886262 -0.1473329 0.7099993 0.68861 -0.1473682 0.7081666 0.7029251 -0.06630623 0.7081843 0.7029081 -0.06629693 0.7063457 0.7076902 0.01582431 0.7063197 0.7077162 0.01582247 0.7044924 0.7029169 0.09797161 0.7044863 0.702924 0.09796416 0.702683 0.6886183 0.1790012 0.702681 0.6886223 0.1789942 0.7009283 0.6650049 0.2578141 0.7009211 0.6650202 0.2577943 0.6992115 0.6324309 0.3333682 0.6992295 0.6324097 0.3333708 0.6976309 0.5912678 0.4046154 0.6976013 0.5913104 0.4046041 0.696148 0.5421161 0.4706252 0.6961414 0.5421415 0.4706058 0.694823 0.4856094 0.5304758 0.694799 0.4856467 0.5304732 0.6936219 0.4225974 0.5833525 0.6935937 0.4226468 0.5833504 0.6925957 0.3538607 0.6285649 0.6925995 0.3538698 0.6285555 0.6917656 0.2802984 0.6655022 0.6917527 0.2803301 0.6655023 0.6911511 0.2029757 0.6936216 0.6911414 0.2029655 0.6936344 0.6907489 0.1228904 0.7125756 0.6906874 0.1228749 0.7126379 0.6904886 0.04114794 0.722172 0.6904844 0.04114037 0.7221764 0.6904965 -0.04112738 0.7221657 0.6904764 -0.0411635 0.7221828 0.6907329 -0.122874 0.7125939 0.6906989 -0.1228951 0.7126233 0.691145 -0.2029845 0.6936252 0.6911355 -0.2029671 0.6936398 0.691767 -0.280299 0.6655005 0.6917586 -0.2803279 0.6654971 0.6926141 -0.3538487 0.6285514 0.6925865 -0.3538576 0.6285768 0.6936309 -0.4226193 0.583326 0.6935893 -0.4226193 0.5833754 0.6948065 -0.4856482 0.5304618 0.6948189 -0.4856265 0.5304656 0.6961341 -0.5421216 0.4706395 0.6961574 -0.5421185 0.4706086 0.6976212 -0.5912806 0.4046134 0.6976165 -0.5912733 0.4046322 0.6992284 -0.6324251 0.333344 0.6992025 -0.6324286 0.3333916 0.7009128 -0.6650221 0.2578117 0.7009128 -0.6650202 0.2578164 0.7026637 -0.6886408 0.1789904 0.7026675 -0.6886339 0.1790024 0.7044928 -0.7029172 0.09796696 0.7044703 -0.7029371 0.09798473 0.7063036 -0.7077322 0.0158261 0.7063378 -0.7076981 0.01582282 0.7081661 -0.7029246 -0.06631666 0.7081588 -0.7029336 -0.06629878 0.7099793 -0.6886354 -0.147346 0.7099791 -0.6886346 -0.1473507 0.7117708 -0.6650071 -0.2261592 0.7117531 -0.6650246 -0.2261636 0.7134297 -0.6324441 -0.301716 0.7134409 -0.6324369 -0.3017047 0.7150411 -0.591288 -0.3729542 0.7150727 -0.5912457 -0.3729606 0.7165381 -0.5421145 -0.4389591 0.7165198 -0.5421423 -0.4389546 0.7178608 -0.4856605 -0.4988085 0.7178615 -0.4856774 -0.4987909 0.7190707 -0.4225601 -0.5517067 0.7190343 -0.4226601 -0.5516778 0.7200739 -0.3538293 -0.5969073 0.7200435 -0.3538746 -0.5969172 0.7208641 -0.28035 -0.6338446 0.720888 -0.2802916 -0.6338433 0.7215258 -0.202975 -0.661968 0.7215136 -0.2029707 -0.6619827 0.7219462 -0.1228995 -0.6809475 0.7219315 -0.1228746 -0.6809675 0.7221519 -0.04115879 -0.690509 0.7221664 0.04113864 -0.690495 0.6163853 0.04658383 -0.7860656 0.6161574 0.1390779 -0.7752468 0.6161707 0.1390807 -0.7752356 0.6156651 0.2297558 -0.7537698 0.6156661 0.2297307 -0.7537765 0.6149711 0.3172626 -0.7219107 0.6149513 0.3172678 -0.7219253 0.6140547 0.4004898 -0.6801064 0.6140203 0.4005256 -0.6801165 0.6128996 0.478327 -0.6289336 0.6128659 0.4783292 -0.6289649 0.6115338 0.5496964 -0.5690874 0.611521 0.549701 -0.5690966 0.6100112 0.6136186 -0.5013568 0.6100221 0.6136239 -0.5013371 0.608341 0.6692501 -0.4266446 0.6083596 0.669246 -0.4266246 0.6065374 0.715817 -0.3460035 0.6065173 0.715826 -0.3460202 0.6045991 0.752733 -0.2604866 0.6046026 0.7527341 -0.2604746 0.6026177 0.779435 -0.1712689 0.6026085 0.7794405 -0.1712767 0.6005296 0.7956336 -0.07957035 0.6005854 0.7955929 -0.07955718 0.59845 0.8010478 0.01342433 0.5984728 0.8010307 0.0134207 0.5963845 0.7956196 0.1063732 0.5963873 0.7956163 0.1063814 0.5943285 0.7794475 0.1980793 0.5943178 0.7794488 0.1981059 0.592338 0.7527272 0.2872934 0.5904141 0.7158417 0.3728027 0.5904403 0.7158036 0.3728345 0.5886144 0.6692554 0.4534647 0.5886238 0.669243 0.453471 0.5869487 0.6136183 0.5281703 0.5869159 0.6136321 0.5281907 0.5854073 0.5497286 0.5958999 0.5854294 0.5496834 0.59592 0.5840624 0.4783477 0.6557855 0.5840845 0.4783465 0.6557667 0.5829479 0.400518 0.7069351 0.5829467 0.4005153 0.7069375 0.5820177 0.3172456 0.7487394 0.5820166 0.317245 0.7487406 0.5812954 0.2297191 0.7805927 0.5812806 0.2297565 0.7805927 0.5807732 0.1391021 0.8020929 0.5805692 0.04658651 0.8128771 0.580584 0.04656177 0.812868 0.5805879 -0.04659467 0.8128633 0.5805358 -0.04656255 0.8129024 0.5807988 -0.1391086 0.8020734 0.5807676 -0.1391086 0.8020959 0.5812847 -0.2297206 0.7806003 0.581287 -0.2297592 0.7805871 0.5820127 -0.3172527 0.7487403 0.5820137 -0.3172444 0.7487429 0.5829781 -0.4005116 0.7069137 0.5828965 -0.4005241 0.706974 0.5840624 -0.4783477 0.6557855 0.5840776 -0.4783495 0.6557707 0.5854178 -0.5497002 0.5959158 0.5854019 -0.5497082 0.5959241 0.5869429 -0.6136329 0.52816 0.5869369 -0.6136102 0.5281928 0.5886077 -0.6692505 0.4534808 0.5886059 -0.6692571 0.4534733 0.5904049 -0.7158346 0.3728309 0.5904246 -0.7158258 0.3728168 0.5923436 -0.7527198 0.2873014 0.5923371 -0.7527232 0.2873057 0.5943309 -0.7794378 0.1981101 0.5943438 -0.7794305 0.1981006 0.596397 -0.7956099 0.1063744 0.5964007 -0.7956064 0.1063801 0.5984879 -0.8010194 0.01343125 0.5984765 -0.8010281 0.01342082 0.600577 -0.7955983 -0.07956635 0.6005669 -0.7956067 -0.07955747 0.6026389 -0.7794172 -0.1712755 0.6026169 -0.7794347 -0.1712731 0.6046077 -0.7527315 -0.2604706 0.6045945 -0.7527347 -0.2604921 0.6065254 -0.715826 -0.346006 0.6065485 -0.7158171 -0.345984 0.6083376 -0.6692462 -0.4266557 0.6083331 -0.669263 -0.4266355 0.6100227 -0.6136102 -0.5013531 0.6099957 -0.6136396 -0.5013499 0.6115279 -0.5497128 -0.5690777 0.6115361 -0.5497031 -0.5690784 0.612855 -0.4783384 -0.6289683 0.6128789 -0.4783231 -0.6289567 0.614039 -0.4004855 -0.6801231 0.614026 -0.4005298 -0.6801089 0.6149637 -0.3172686 -0.7219144 0.6149589 -0.3172721 -0.7219169 0.6156781 -0.2297606 -0.7537577 0.6156694 -0.22973 -0.7537741 0.6161825 -0.1390649 -0.7752291 0.6161393 -0.1391018 -0.7752569 0.6164011 -0.04661196 -0.7860515 0.616412 -0.04656165 -0.786046 0.6164092 0.04658991 -0.7860465 0.4981245 0.05108219 -0.8655996 0.4978941 0.1524525 -0.853733 0.4978677 0.1524699 -0.8537451 0.4973343 0.2518135 -0.8302101 0.4973554 0.251816 -0.8301967 0.4965417 0.3477614 -0.795304 0.4965783 0.3477773 -0.7952743 0.4955335 0.4390111 -0.7494771 0.4955238 0.4390105 -0.7494839 0.4942896 0.5243257 -0.6933688 0.4942611 0.5243241 -0.6933904 0.4927827 0.6025384 -0.627784 0.4928297 0.60255 -0.6277359 0.4911863 0.6725847 -0.5535033 0.4911233 0.6726107 -0.5535275 0.4893178 0.7335728 -0.4716345 0.4893015 0.7335779 -0.4716435 0.4873425 0.7846245 -0.3832253 0.4873294 0.7846306 -0.3832297 0.4852299 0.8250711 -0.2894994 0.4852319 0.8250727 -0.2894915 0.4830556 0.8543428 -0.1917175 0.4830682 0.8543411 -0.191694 0.4807894 0.8720844 -0.09116083 0.4807729 0.8720907 -0.09118819 0.4785113 0.8780159 0.01072758 0.4785014 0.8780214 0.0107209 0.4762187 0.8720837 0.1126319 0.4762323 0.8720772 0.1126238 0.4739662 0.8543507 0.2131691 0.4739733 0.8543491 0.2131599 0.4717736 0.8250755 0.3109348 0.4717768 0.8250626 0.3109639 0.469675 0.7846199 0.4046938 0.4696707 0.7846322 0.4046752 0.4676936 0.7335679 0.4930931 0.4676951 0.733577 0.4930782 0.4658453 0.6726205 0.5749521 0.465864 0.6725906 0.5749719 0.4642308 0.6025007 0.6492171 0.4641745 0.6025519 0.6492097 0.4627415 0.5242989 0.7148294 0.4627279 0.5243245 0.7148194 0.4614949 0.4389911 0.7709146 0.4614235 0.4390254 0.7709378 0.4604145 0.3477529 0.8167536 0.4603942 0.3477912 0.8167487 0.4595944 0.251832 0.851677 0.4596768 0.2518068 0.8516401 0.4591261 0.1524722 0.8751888 0.4591158 0.1524679 0.8751951 0.4588676 0.05108791 0.8870347 0.4589011 0.05105137 0.8870196 0.4588904 -0.0510863 0.887023 0.4588721 -0.0510534 0.8870344 0.4591001 -0.1524667 0.8752036 0.4591481 -0.1524745 0.8751769 0.4596517 -0.2518222 0.851649 0.4596339 -0.2518184 0.8516597 0.4604442 -0.3477563 0.8167354 0.4603962 -0.3477754 0.8167544 0.4614331 -0.4390038 0.7709444 0.4614983 -0.439022 0.7708949 0.4627363 -0.5243117 0.7148234 0.4627535 -0.5243101 0.7148134 0.4641766 -0.6025279 0.6492305 0.4642237 -0.6025291 0.6491958 0.4658573 -0.6726108 0.5749537 0.465823 -0.6726168 0.5749745 0.4676894 -0.73358 0.4930792 0.4676891 -0.7335781 0.4930822 0.4696598 -0.7846322 0.4046878 0.4696835 -0.7846289 0.4046666 0.4717576 -0.8250804 0.3109455 0.4717864 -0.8250596 0.3109573 0.4739534 -0.8543615 0.2131542 0.4739677 -0.8543478 0.2131771 0.4762141 -0.8720872 0.1126245 0.4762102 -0.8720863 0.1126476 0.4784969 -0.8780239 0.01072412 0.4785189 -0.8780117 0.01074057 0.480766 -0.8720931 -0.09120225 0.4807987 -0.8720784 -0.09116965 0.483048 -0.8543437 -0.191733 0.4830449 -0.8543545 -0.1916926 0.4852216 -0.8250703 -0.2895156 0.4852343 -0.8250678 -0.289501 0.4873296 -0.7846338 -0.3832228 0.4873408 -0.7846171 -0.3832429 0.4893252 -0.7335652 -0.4716387 0.489298 -0.7335824 -0.4716401 0.4911463 -0.6726071 -0.5535117 0.4911383 -0.6726042 -0.5535222 0.4927953 -0.6025537 -0.6277595 0.4928101 -0.6025381 -0.6277629 0.4942814 -0.5243358 -0.6933671 0.4943002 -0.5243139 -0.6933702 0.4955294 -0.4390075 -0.749482 0.4955365 -0.4390141 -0.7494733 0.4965733 -0.3477572 -0.7952861 0.4965709 -0.347779 -0.7952781 0.497334 -0.2518322 -0.8302045 0.4973381 -0.2518063 -0.8302099 0.4978895 -0.1524699 -0.8537325 0.4978683 -0.1524508 -0.8537483 0.498155 -0.05105638 -0.8655836 0.4981294 -0.05107223 -0.8655974 0.4981614 0.05104768 -0.8655804 0.3698247 0.05449318 -0.9275022 0.3695079 0.1627289 -0.9148679 0.3695443 0.16273 -0.914853 0.3689854 0.2687847 -0.8897217 0.3689672 0.2687752 -0.8897321 0.3681259 0.3711769 -0.8524735 0.3681639 0.3711735 -0.8524587 0.3670552 0.4685892 -0.8035513 0.3670325 0.4685707 -0.8035726 0.3656929 0.5595995 -0.7437184 0.3657309 0.5596277 -0.7436786 0.3641427 0.6431111 -0.673653 0.3641467 0.6430811 -0.6736794 0.3623551 0.7179001 -0.5944058 0.360417 0.7829617 -0.5070214 0.3603746 0.7829794 -0.5070242 0.3582531 0.8374736 -0.4126655 0.3582894 0.8374563 -0.412669 0.3560517 0.8806191 -0.3126298 0.3537052 0.9118809 -0.2082449 0.3536894 0.9118878 -0.2082415 0.3512951 0.9308061 -0.1009545 0.3513115 0.9308026 -0.10093 0.3488786 0.9371353 0.00781989 0.3488547 0.9371443 0.007812798 0.3464121 0.9308117 0.1165699 0.3464269 0.9308051 0.1165775 0.3440167 0.9118812 0.223887 0.3440048 0.9118818 0.2239027 0.3416695 0.8806335 0.3282479 0.341686 0.8806166 0.3282762 0.339441 0.837461 0.4282978 0.3394209 0.8374668 0.4283024 0.3373316 0.7829725 0.5226483 0.3373183 0.7829709 0.5226598 0.3353754 0.7178782 0.6100609 0.3353376 0.7179039 0.6100514 0.3335379 0.6431219 0.6893089 0.3335914 0.6430967 0.6893065 0.332042 0.5596081 0.7593334 0.3319898 0.5596579 0.7593194 0.3306683 0.4685735 0.8192055 0.3295424 0.3711665 0.8681229 0.3295862 0.3711724 0.8681038 0.3287718 0.2687978 0.905349 0.3287882 0.2687643 0.905353 0.3282008 0.1627292 0.9304856 0.3281999 0.1627248 0.9304867 0.3279374 0.05448406 0.943127 0.3278455 0.05452191 0.9431568 0.3278765 -0.05449056 0.9431478 0.3279222 -0.05451107 0.9431309 0.3282326 -0.1627179 0.9304764 0.3281726 -0.1627388 0.9304939 0.3287411 -0.2687843 0.9053642 0.3287935 -0.2687759 0.9053477 0.3295513 -0.3711766 0.8681151 0.3295791 -0.3711638 0.8681101 0.3306622 -0.4685713 0.819209 0.3306684 -0.4685851 0.8191987 0.3320437 -0.5596291 0.7593171 0.3319983 -0.5596409 0.7593281 0.3336019 -0.6430871 0.6893104 0.3335593 -0.6431214 0.6892991 0.3353611 -0.7178863 0.6100593 0.3353915 -0.7178986 0.6100281 0.3373278 -0.7829664 0.52266 0.3394591 -0.8374607 0.428284 0.3394306 -0.8374627 0.4283027 0.3416942 -0.8806207 0.3282564 0.3440141 -0.9118868 0.2238681 0.3440189 -0.9118803 0.223887 0.3464269 -0.930803 0.1165944 0.346408 -0.9308126 0.1165743 0.3488707 -0.9371383 0.007828474 0.3488644 -0.9371407 0.007812798 0.3512992 -0.9308049 -0.1009515 0.3512935 -0.9308056 -0.1009652 0.3536978 -0.9118852 -0.2082391 0.3537276 -0.9118729 -0.2082419 0.356062 -0.8806163 -0.3126257 0.356051 -0.8806196 -0.3126292 0.3582881 -0.8374706 -0.4126414 0.3582936 -0.8374521 -0.4126739 0.3604134 -0.782954 -0.5070357 0.362373 -0.7178995 -0.5943956 0.3623802 -0.7178912 -0.5944012 0.364134 -0.6430958 -0.6736722 0.364163 -0.6430979 -0.6736546 0.3657251 -0.5596113 -0.7436937 0.3657094 -0.5596358 -0.7436831 0.3670485 -0.4685806 -0.8035594 0.3670371 -0.4685639 -0.8035743 0.3681544 -0.37116 -0.8524686 0.3681476 -0.3711761 -0.8524645 0.368955 -0.2687981 -0.8897302 0.3690068 -0.2687672 -0.8897181 0.3695321 -0.1627236 -0.914859 0.369518 -0.1627318 -0.9148633 0.3698235 -0.0545035 -0.9275021 0.3698348 -0.05449295 -0.9274982 0.3698155 0.0545023 -0.9275054 0.2340083 0.05683052 -0.9705723 0.2337504 0.1696835 -0.9573758 0.233735 0.169685 -0.9573793 0.2331506 0.2802774 -0.9311742 0.2331672 0.2802754 -0.9311707 0.2322955 0.3870701 -0.8923091 0.2322279 0.3870375 -0.8923408 0.2310862 0.4886062 -0.8413462 0.2311129 0.4886325 -0.8413236 0.2297657 0.5835458 -0.7788981 0.2297024 0.5835439 -0.778918 0.228102 0.6706055 -0.7058737 0.2262653 0.7485926 -0.6232281 0.2262293 0.7485883 -0.6232463 0.2241995 0.8164637 -0.5320917 0.2241828 0.816467 -0.5320938 0.2219774 0.8732773 -0.4337198 0.2220003 0.87327 -0.4337227 0.2196441 0.9182886 -0.3293972 0.2196429 0.9182975 -0.3293735 0.2172132 0.9508787 -0.2205637 0.2171913 0.9508887 -0.2205414 0.2146941 0.970616 -0.1086787 0.2147241 0.9706115 -0.1086603 0.2121876 0.9772175 0.004752159 0.2121823 0.9772186 0.004757404 0.2096405 0.9706085 0.1181959 0.2096167 0.9706183 0.118157 0.2071034 0.9508835 0.2300626 0.2071134 0.9508751 0.2300887 0.2046785 0.9182898 0.3388962 0.2046841 0.9182891 0.3388946 0.2023248 0.8732831 0.443217 0.2001171 0.8164716 0.541597 0.2001221 0.8164604 0.541612 0.1980856 0.7485886 0.6327537 0.1980902 0.7485888 0.6327521 0.1962358 0.6706088 0.7153847 0.1962313 0.6706334 0.7153629 0.1945961 0.5835571 0.788412 0.1945868 0.5835425 0.7884252 0.1931728 0.4886105 0.8508491 0.1932383 0.4886115 0.8508336 0.1920724 0.3870412 0.9018356 0.1912495 0.2802702 0.9406765 0.1911491 0.2803081 0.9406856 0.1906387 0.1696925 0.9668823 0.1905958 0.1696934 0.9668906 0.1903243 0.05681288 0.980076 0.1902998 0.05681753 0.9800805 0.1903585 -0.05681693 0.9800692 0.1902583 -0.05681347 0.9800888 0.190643 -0.1697008 0.96688 0.190563 -0.169687 0.9668982 0.1912098 -0.2802731 0.9406837 0.1911925 -0.2802982 0.9406797 0.1920472 -0.3870497 0.9018374 0.1931428 -0.4886069 0.8508579 0.1932414 -0.4886214 0.8508272 0.1945628 -0.583564 0.7884151 0.1946063 -0.5835533 0.7884125 0.196201 -0.6706115 0.7153918 0.1962332 -0.6706241 0.7153711 0.1980838 -0.7485818 0.6327624 0.198086 -0.7486073 0.6327314 0.2001453 -0.816459 0.5416057 0.2001101 -0.8164604 0.5416165 0.2023431 -0.8732601 0.4432542 0.2023454 -0.87329 0.4431943 0.2046961 -0.9182892 0.338887 0.2046864 -0.9182767 0.3389272 0.2071291 -0.9508789 0.2300587 0.207129 -0.9508786 0.2300596 0.2096369 -0.9706129 0.1181658 0.2096238 -0.9706125 0.1181923 0.2121621 -0.9772229 0.004755556 0.2121538 -0.9772247 0.004757344 0.2146977 -0.9706167 -0.1086661 0.21472 -0.9706106 -0.1086764 0.2172383 -0.9508748 -0.220556 0.2171955 -0.9508932 -0.2205182 0.2196363 -0.9182931 -0.3293899 0.219668 -0.9182796 -0.3294067 0.2219709 -0.8732887 -0.4337004 0.2241954 -0.8164667 -0.5320888 0.2242125 -0.8164502 -0.5321069 0.2262791 -0.7485797 -0.6232385 0.226207 -0.7486138 -0.6232237 0.2280855 -0.6706015 -0.7058829 0.2297364 -0.5835441 -0.7789078 0.2297124 -0.5835599 -0.7789031 0.2311574 -0.4886062 -0.8413265 0.2310621 -0.4886305 -0.8413385 0.2322943 -0.3870505 -0.892318 0.2322551 -0.3870426 -0.8923316 0.2331831 -0.2802647 -0.9311699 0.2331321 -0.280287 -0.9311759 0.2337569 -0.1696882 -0.9573734 0.2337433 -0.1696814 -0.9573779 0.2340454 -0.05682581 -0.9705636 0.2340217 -0.05683028 -0.970569 0.2340413 0.0568248 -0.9705646 0.09350335 0.0580033 -0.993928 0.09318655 0.173213 -0.9804661 0.09315949 0.173202 -0.9804705 0.0925846 0.2860734 -0.9537245 0.09258872 0.286078 -0.9537225 0.09166735 0.3950769 -0.9140631 0.09173375 0.3950986 -0.9140471 0.0905683 0.498727 -0.8620144 0.09055429 0.4987139 -0.8620235 0.08912181 0.595631 -0.7982988 0.08909952 0.5956397 -0.7982949 0.08745741 0.6845057 -0.7237425 0.0874204 0.6845133 -0.7237398 0.08556574 0.7640797 -0.6394223 0.08556556 0.7641023 -0.6393954 0.08351105 0.8333781 -0.5463579 0.08347541 0.8333705 -0.546375 0.08123379 0.8913618 -0.4459545 0.08124387 0.8913602 -0.4459559 0.07884538 0.9373039 -0.3394777 0.07887089 0.9373052 -0.3394681 0.07636326 0.9705747 -0.2283714 0.0763747 0.9705767 -0.2283588 0.07377529 0.9907169 -0.1141816 0.07118225 0.9974621 0.001595199 0.07118213 0.9974621 0.001584053 0.06859052 0.9907168 0.11737 0.0686143 0.9907153 0.1173689 0.06605172 0.9705739 0.2315678 0.06606304 0.9705762 0.2315545 0.06357872 0.9372979 0.3426812 0.0635606 0.9373104 0.3426506 0.06116622 0.891358 0.4491543 0.06118994 0.8913584 0.4491505 0.05893546 0.8333722 0.5495612 0.05892693 0.8333769 0.5495551 0.05683004 0.7640943 0.6425966 0.05686259 0.7640967 0.6425908 0.05495798 0.6844996 0.7269388 0.05496829 0.6845014 0.7269363 0.05326026 0.595642 0.8014823 0.05330699 0.5956504 0.801473 0.05180871 0.4987432 0.8652001 0.05187988 0.4987102 0.8652148 0.05074858 0.3950609 0.9172522 0.0506488 0.395084 0.9172478 0.04982924 0.2860675 0.9569131 0.04972064 0.2860901 0.9569119 0.04912239 0.173206 0.9836599 0.04917222 0.1732122 0.9836562 0.0488739 0.05802339 0.9971182 0.04887789 0.05799466 0.9971197 0.04890972 -0.05802506 0.9971164 0.04883682 -0.05799365 0.9971218 0.04915702 -0.1732122 0.9836571 0.04913938 -0.1732152 0.9836574 0.04982888 -0.2860565 0.9569163 0.04975694 -0.2860857 0.9569113 0.05071377 -0.3950656 0.9172521 0.0506792 -0.3950703 0.917252 0.05177426 -0.4987339 0.8652074 0.051916 -0.4987228 0.8652054 0.05329489 -0.5956336 0.8014864 0.05331122 -0.5956563 0.8014684 0.05498087 -0.6844989 0.7269377 0.05686682 -0.7641128 0.6425712 0.05682682 -0.7640817 0.6426119 0.05889946 -0.8333809 0.5495519 0.05891859 -0.8333742 0.54956 0.06118297 -0.8913441 0.4491799 0.06115889 -0.8913691 0.4491335 0.06355965 -0.9373125 0.3426449 0.06355202 -0.9373038 0.3426701 0.06603628 -0.9705714 0.2315822 0.06605416 -0.9705744 0.2315645 0.06861704 -0.9907165 0.1173567 0.06861537 -0.990715 0.1173709 0.07121115 -0.9974601 0.001580893 0.07120817 -0.9974602 0.001601874 0.07380688 -0.9907169 -0.1141606 0.07380366 -0.9907165 -0.1141664 0.07636892 -0.9705698 -0.2283906 0.07634651 -0.970577 -0.2283676 0.07884603 -0.9373115 -0.3394562 0.07885056 -0.9373072 -0.3394668 0.0812506 -0.8913524 -0.4459701 0.08121263 -0.8913633 -0.4459553 0.08347582 -0.8333791 -0.5463619 0.08345788 -0.833371 -0.5463768 0.0855664 -0.7640857 -0.6394151 0.08555632 -0.7640987 -0.6394008 0.08745414 -0.6844971 -0.723751 0.08915549 -0.5956196 -0.7983037 0.08911228 -0.5956418 -0.7982919 0.09056991 -0.4987183 -0.8620193 0.09056931 -0.4987325 -0.8620111 0.0917018 -0.3950642 -0.9140653 0.09171563 -0.395092 -0.9140518 0.09262055 -0.2860753 -0.9537203 0.09259378 -0.286071 -0.9537242 0.09318608 -0.1732121 -0.9804662 0.0931763 -0.1731996 -0.9804693 0.09350615 -0.05801808 -0.9939269 0.09351712 -0.05800318 -0.9939267 0.09350395 0.05801665 -0.9939271 -0.003252983 -0.07838845 -0.9969176 -0.003252983 -0.07838827 -0.9969176 -0.01285219 -0.3087509 -0.9510562 -0.01285219 -0.3087502 -0.9510563 -0.02445942 -0.5872768 -0.8090165 -0.02445846 -0.5872746 -0.8090183 -0.0336709 -0.8083141 -0.5877881 -0.03367274 -0.8083164 -0.5877848 -0.03958952 -0.9502321 -0.3090174 -0.03958773 -0.9502323 -0.3090172 -0.04149991 -0.9960533 -0.07845884 0.001462161 -0.999999 3.0307e-7 -0.04150331 -0.9960533 0.07845747 -0.003323376 -0.6590875 -0.7520589 -0.02914947 -0.5872001 -0.8089169 -0.03099149 -0.7883498 -0.6144464 -0.02503848 -0.8085215 -0.5879339 -0.03675496 -0.8659223 -0.4988265 -0.004302561 -0.3160783 -0.9487234 -0.005898296 -0.3087707 -0.9511182 -0.01696014 -0.431231 -0.9020822 -0.02068477 -0.5206606 -0.8535132 -0.009248137 -0.1287093 -0.9916393 -6.84661e-4 -0.07435446 -0.9972316 -0.003256082 -0.07839518 -0.9969171 -0.03865391 -0.9502684 0.3090244 -0.03888022 -0.9519183 0.303875 -0.04091721 -0.9820532 0.1841123 -0.04149985 -0.9960675 0.07827877 -0.03993642 -0.9952562 0.08871495 -0.04253226 -0.9960102 -0.07845324 -0.04256528 -0.995992 -0.0786643 -0.03614377 -0.9503567 -0.3090564 -0.02700877 -0.9609197 -0.2755067 -0.03856289 -0.9092793 -0.4143963 -0.03227913 -0.808352 0.5878138 -0.03584742 -0.8599742 0.5090771 -0.03772026 -0.9049553 0.4238318 -0.02096414 -0.5029347 0.8640702 -0.02418357 -0.6279049 0.7779143 -0.02432572 -0.5872781 0.8090196 -0.02941578 -0.7058822 0.7077182 -0.0320388 -0.7688416 0.6386362 -0.01735037 -0.4161901 0.9091122 -0.01175296 -0.3087542 0.9510694 -0.01146018 -0.286576 0.957989 -0.003712415 -0.07838845 0.996916 -0.004067659 -0.09733074 0.9952438 -0.9815416 -0.1701401 -0.08734136 -0.9262247 -0.0437389 -0.3744258 -0.9811395 -0.06108796 -0.1833946 -0.9813148 -0.09598004 -0.1667606 -0.9811465 -0.09627115 -0.1675813 -0.8398993 -0.2707963 -0.4703602 -0.9816301 -0.1697625 -0.08708113 -0.9816589 -0.1832487 -0.05258989 -0.9817259 -0.1829243 -0.05246955 -0.9817351 -0.1896622 -0.01498901 -0.9817029 -0.1891486 0.02196228 -0.9817293 -0.1890107 0.02196699 -0.8430487 -0.5342468 0.0620436 -0.9815467 -0.1465628 0.122824 -0.981426 -0.1470986 0.1231471 -0.981267 -0.1210067 0.1499083 -0.9810904 -0.09032219 0.1711828 -0.9812631 -0.08979427 0.1704692 -0.8380442 -0.2547054 0.482501 -0.9842805 -0.01719623 0.1757733 -0.9814397 -0.1263812 -0.1442361 -0.9812843 -0.1268225 -0.1449043 -0.8409041 -0.3567337 -0.4069663 -0.8396716 -0.3577382 -0.4086258 -0.5705185 -0.5414063 -0.6175661 -0.8432211 -0.5358952 -0.0423628 -0.8431547 -0.516854 -0.1481621 -0.842717 -0.5174834 -0.1484555 -0.8425134 -0.4793361 -0.2457808 -0.8417969 -0.4802564 -0.2464379 -0.9816407 -0.1817088 0.0579949 -0.9816896 -0.1814582 0.05795383 -0.8425192 -0.513172 0.1637558 -0.8430086 -0.5124017 0.1636492 -0.5747558 -0.7795948 0.2487727 -0.8407436 -0.3398941 0.4214528 -0.8407655 -0.415161 0.3474978 -0.8418174 -0.4137154 0.3466745 -0.9808963 -0.05575948 0.1863689 -0.981087 -0.05533701 0.1854889 -0.8364721 -0.1571955 0.5249801 -0.8380308 -0.1560938 0.5228185 -0.5589178 -0.2379399 0.7943524 -0.48237 -0.122792 -0.8673185 -0.5594535 -0.1017178 -0.8225967 -0.5599429 -0.2614749 -0.7861902 -0.5765535 -0.8115935 0.09435027 -0.5767259 -0.8144025 -0.06431233 -0.5764293 -0.8146073 -0.06437742 -0.5763583 -0.7855687 -0.2251514 -0.5752283 -0.7862761 -0.2255713 -0.5748553 -0.7281582 -0.3732654 -0.5729438 -0.7291803 -0.374208 -0.5667667 -0.3840816 0.7288737 -0.5667957 -0.5176401 0.6409302 -0.5700759 -0.5157672 0.6395294 -0.5701197 -0.6300351 0.5272755 -0.5727818 -0.628292 0.5264697 -0.1717635 -0.1313435 -0.9763433 -0.2063417 -0.1253662 -0.9704157 -0.2063975 -0.3096359 -0.9281842 -0.2128931 -0.3082694 -0.9271712 -0.2138505 -0.4208385 -0.8815684 -0.7487306 -0.1016831 -0.6550291 -0.8362296 -0.05974406 -0.5451152 -0.8369207 -0.1727211 -0.5193567 -0.563991 -0.2612618 -0.7833623 -0.5640676 -0.4115015 -0.7158871 -0.3358938 -0.4698803 -0.8163259 -0.2189293 -0.5077116 -0.833246 -0.9935477 -0.01474678 -0.1124526 -0.9810389 -0.03208935 -0.1911363 -0.9809499 -0.0612654 -0.1843474 -0.838459 -0.1723698 -0.5169867 -0.8384895 -0.2715593 -0.4724308 -0.567691 -0.4108216 -0.7134092 -0.5673565 -0.5424464 -0.6195631 -0.2182655 -0.643346 -0.7338026 -0.2230703 -0.6421093 -0.7334407 -0.2229071 -0.7690399 -0.5990744 -0.5702562 -0.6477327 -0.5052231 -0.5727864 -0.6466252 -0.5037773 -0.8407196 -0.4269523 -0.3330201 -0.8417231 -0.4258923 -0.3318403 -0.9814181 -0.1512669 -0.1180545 -0.9815284 -0.1508957 -0.1176122 -0.2269958 -0.7679084 -0.5989906 -0.2278093 -0.843585 -0.4862791 -0.3776128 -0.8239417 -0.4225265 -0.2310588 -0.8852334 -0.4037002 -0.2304712 -0.935423 -0.2680802 -0.2324168 -0.9348986 -0.2682296 -0.2324712 -0.9695861 -0.07655143 -0.2330034 -0.9694533 -0.07661414 -0.2329471 -0.9659956 0.1121976 -0.3981825 -0.9136752 0.08153772 -0.2331606 -0.9557653 0.179301 -0.9817392 -0.1896398 -0.01500362 -0.843337 -0.5357174 -0.04230517 -0.8432755 -0.5338863 0.06206333 -0.5760771 -0.8119372 0.09430468 -0.5759479 -0.778737 0.248702 -0.2322089 -0.9266367 0.2956746 -0.2300633 -0.9270378 0.2960944 -0.2310109 -0.8810001 0.4128837 -0.3655858 -0.8160641 0.4476456 -0.5747449 -0.7173646 0.3937721 -0.5727671 -0.7187374 0.3941504 -0.8425227 -0.4722045 0.2591882 -0.8418031 -0.4732733 0.2595763 -0.9816455 -0.1671701 0.09179544 -0.9815476 -0.1676486 0.09196966 -0.2274078 -0.8378304 0.4963126 -0.226934 -0.7489486 0.6225568 -0.2477946 -0.7429463 0.6217947 -0.2234973 -0.6880421 0.6903963 -0.2225149 -0.6125941 0.7584298 -0.2172868 -0.6127358 0.7598298 -0.2172986 -0.4557923 0.8631541 -0.4567881 -0.4465267 0.7693886 -0.2121897 -0.4062843 0.8887681 -0.9814209 -0.1204348 0.1493605 -0.8395094 -0.3413493 0.4227349 -0.8394919 -0.2533082 0.4807168 -0.5630358 -0.385863 0.7308218 -0.5630027 -0.2364261 0.7919159 -0.211426 -0.2804682 0.9362887 -0.2050104 -0.2799893 0.9378576 -0.9809386 -0.02136528 0.1931399 -0.83639 -0.05135524 0.545724 -0.8409897 -0.05200368 0.5385464 -0.5589314 -0.08136093 0.8252129 -0.5376088 -0.079113 0.8394749 -0.2051057 -0.09862738 0.9737579 -0.1749912 -0.09532338 0.9799447 -0.1757935 0 0.984427 -0.1758092 0 0.9844243 -0.5392909 0 0.8421196 -0.5393003 0 0.8421136 -0.8421294 0 0.5392755 -0.8421295 0 0.5392754 -0.984426 0 0.1757997 -0.9844264 0 0.1757969 -1.24754e-5 0 1 -1.16995e-5 0 1 -1.24128e-5 -1.03541e-6 1 -1.2293e-5 0 1 -1.22574e-5 0 1 -1.1533e-5 0 1 -1.12315e-5 0 1 -1.28057e-5 0 1 -1.22688e-5 0 1 -1.22805e-5 0 1 -1.2263e-5 0 1 -1.24128e-5 1.03541e-6 1 -1.10495e-5 0 1 1 0 1.23979e-5 1 -2.5321e-6 1.23979e-5 1 2.39457e-6 1.23034e-5 1 -6.69183e-6 1.23034e-5 1 5.28639e-6 1.23449e-5 1 0 1.23979e-5 1 2.4587e-6 1.23979e-5 1 -2.39457e-6 1.23034e-5 1 2.80123e-6 1.23034e-5 1 0 1.23448e-5 1 0 1.23448e-5 1 -5.77429e-6 1.23242e-5 1 0 1.23242e-5 1 5.34031e-6 1.23868e-5 1 -5.20413e-6 1.23867e-5 1 8.27863e-6 1.21947e-5 1 -4.45519e-6 1.21946e-5 1 4.85053e-6 1.25211e-5 1 0 1.25212e-5 1 -1.54466e-5 1.18564e-5 1 1.52468e-5 1.18562e-5 1 5.7348e-6 1.23448e-5 1 3.98226e-7 1.23242e-5 1 -3.63363e-6 1.23242e-5 1 -5.34032e-7 1.23868e-5 1 5.20412e-6 1.23869e-5 1 -6.6229e-6 1.21946e-5 1 4.45517e-6 1.21946e-5 1 -4.85051e-6 1.25212e-5 1 0 1.25211e-5 1 1.54466e-5 1.18564e-5 1 -1.52471e-5 1.18564e-5 0.9862018 0.01291286 0.165044 0.9905173 0.01344478 0.1367282 0.9905176 0.03981512 0.1314903 0.9905176 0.03982257 0.1314883 0.9905183 0.06466788 0.1212084 0.99052 0.06467169 0.1211926 0.9905198 0.08706104 0.1062589 0.9905191 0.08704942 0.1062752 0.9905185 0.1061187 0.08724725 0.9905185 0.1061138 0.08725202 0.9905174 0.1211164 0.06485444 0.9905173 0.1211217 0.0648477 0.9905218 0.131419 0.03994727 0.9905193 0.1314368 0.03994858 0.9905194 0.1367087 0.01349765 0.9905182 0.1367173 0.01349806 0.9905167 0.1367308 -0.01347333 0.9905254 0.1366676 -0.01347386 0.9905192 0.1314456 -0.0399214 0.9905208 0.1314332 -0.03992372 0.9905196 0.1211133 -0.06482791 0.9905183 0.1211226 -0.0648303 0.9905204 0.1061196 -0.08722388 0.9905191 0.1061338 -0.08722263 0.9905217 0.0870499 -0.1062504 0.9905201 0.08707571 -0.1062447 0.9905213 0.06468069 -0.1211786 0.9905204 0.06467258 -0.1211891 0.9905201 0.03982585 -0.131469 0.9905219 0.03981029 -0.13146 0.9904572 0.009342849 -0.1375036 0.9861584 0.01623171 -0.1650097 0.9057969 0.04212409 0.4216132 0.9213826 0.04186558 0.3863955 0.9212526 0.1127481 0.3722656 0.9212484 0.1127449 0.3722767 0.9212482 0.1831322 0.3431681 0.9212382 0.1831354 0.3431932 0.9212388 0.2465369 0.3008967 0.9212415 0.2465417 0.3008841 0.9212445 0.300489 0.2470121 0.9212449 0.3004965 0.2470019 0.9212524 0.3429085 0.1835971 0.9212424 0.3429325 0.1836024 0.9212487 0.3721702 0.113094 0.9212495 0.372169 0.113091 0.9212518 0.3870868 0.03819733 0.9212372 0.3871214 0.03819829 0.9212474 0.3870993 -0.03817582 0.9212508 0.3870915 -0.03817564 0.9212453 0.3721858 -0.1130701 0.9212573 0.3721561 -0.1130699 0.9212519 0.3429195 -0.1835788 0.9212455 0.342936 -0.1835803 0.9212526 0.3004847 -0.2469873 0.9212508 0.3004868 -0.246991 0.9212486 0.2465451 -0.3008601 0.9212591 0.2465109 -0.300856 0.9212576 0.1831299 -0.3431439 0.9212582 0.1831313 -0.3431419 0.9212651 0.1127257 -0.3722416 0.9212581 0.1127594 -0.3722486 0.9212864 0.03870958 -0.3869535 0.9056349 0.04650789 -0.4215003 0.8171988 0.06121867 0.5730956 0.7950549 0.06000882 0.6035618 0.795022 0.1758175 0.5805413 0.7950386 0.1758162 0.580519 0.7950327 0.2855854 0.5351299 0.7950367 0.2855644 0.5351353 0.7950321 0.3844247 0.4691928 0.795046 0.3844145 0.4691776 0.7950324 0.4685875 0.3851613 0.7950206 0.468584 0.3851898 0.795009 0.534784 0.2862986 0.7950259 0.5347545 0.286307 0.7950254 0.5803732 0.1763562 0.7950261 0.5803746 0.1763489 0.7950242 0.6036469 0.05955803 0.7950338 0.6036342 0.05955827 0.7950357 0.6036339 -0.05953586 0.7950311 0.6036397 -0.05953907 0.7950255 0.5803819 -0.1763278 0.7950133 0.5803983 -0.176329 0.7950478 0.5347306 -0.2862905 0.7950267 0.534767 -0.2862812 0.7950342 0.4685805 -0.3851663 0.795028 0.4685965 -0.3851593 0.7950468 0.3844156 -0.4691753 0.7950315 0.3844372 -0.4691834 0.7950376 0.2855805 -0.5351253 0.7950297 0.2855849 -0.5351346 0.7950364 0.175822 -0.5805202 0.7950368 0.1758152 -0.5805218 0.7952187 0.0630604 -0.6030346 0.8174061 0.05703443 -0.5732315 0.6342532 0.07567435 0.7694131 0.6115413 0.07341116 0.7877995 0.6119779 0.2292922 0.7569071 0.6116031 0.2293158 0.7572028 0.6120356 0.3723909 0.6976657 0.6115566 0.3724962 0.6980295 0.6121199 0.5012464 0.6116056 0.6115303 0.5014463 0.6120315 0.6121314 0.6109177 0.5020704 0.6115773 0.6111781 0.5024287 0.6121125 0.6971859 0.3731624 0.6116492 0.697458 0.3734136 0.6120792 0.7566546 0.2298545 0.6117125 0.7569118 0.229984 0.6119632 0.7870663 0.07763832 0.6118664 0.7871398 0.07765656 0.6118697 0.7871398 -0.07763028 0.6119483 0.7870783 -0.07763427 0.6117281 0.7569186 -0.2299199 0.612101 0.7566246 -0.2298948 0.6116436 0.697509 -0.3733274 0.6121439 0.6971325 -0.3732106 0.6115893 0.6112481 -0.502329 0.6121816 0.6108356 -0.5021093 0.6115636 0.5015208 -0.6119371 0.6121481 0.5011733 -0.6116374 0.6115779 0.3725686 -0.6979721 0.6120865 0.3723009 -0.6976691 0.6116523 0.2293564 -0.7571507 0.6119854 0.2292547 -0.7569123 0.6117544 0.07743054 -0.787249 0.6344073 0.07249277 -0.7695923 0.9862878 0 -0.1650345 0.9862878 0 -0.1650345 0.9066193 0 -0.4219499 0.9066144 0 -0.42196 0.8187438 0 -0.5741592 0.8187525 0 -0.5741468 0.6360898 0 -0.7716151 0.6360807 0 -0.7716226 0.9862055 -0.01291197 -0.1650213 0.990522 -0.01344436 -0.136695 0.9905217 -0.03981453 -0.13146 0.9905198 -0.03982239 -0.1314713 0.9905198 -0.0646798 -0.1211904 0.9905217 -0.06467431 -0.1211781 0.990521 -0.08706551 -0.1062446 0.9905206 -0.08706086 -0.1062516 0.9905176 -0.1061441 -0.08722597 0.9905211 -0.1061127 -0.08722442 0.9905189 -0.121117 -0.06483066 0.9905186 -0.1211203 -0.06482857 0.9905195 -0.1314427 -0.03992515 0.990521 -0.131434 -0.03991848 0.9905233 -0.1366825 -0.01347267 0.9905188 -0.1367152 -0.01347404 0.9905196 -0.1367073 0.01349753 0.9905182 -0.1367169 0.0134983 0.9905217 -0.1314194 0.03994739 0.9905197 -0.1314343 0.03994733 0.9905179 -0.1211158 0.06484937 0.9905164 -0.1211243 0.06485438 0.9905176 -0.106123 0.08725148 0.9905191 -0.1061115 0.0872491 0.990519 -0.0870518 0.1062744 0.9905198 -0.08705991 0.1062602 0.9905201 -0.0646668 0.1211947 0.990518 -0.06467366 0.121208 0.9905174 -0.03982651 0.1314882 0.9905177 -0.03981077 0.1314907 0.9904531 -0.009349107 0.1375329 0.9861541 -0.0162245 0.1650359 0.9058122 -0.04212272 -0.4215805 0.9213914 -0.04186797 -0.3863742 0.9212592 -0.1127417 -0.372251 0.9212617 -0.1127443 -0.372244 0.9212567 -0.1831442 -0.343139 0.9212589 -0.1831166 -0.3431477 0.9212536 -0.2465367 -0.3008513 0.921253 -0.2465192 -0.3008677 0.9212547 -0.3004814 -0.2469831 0.9212511 -0.3004869 -0.2469899 0.9212516 -0.3429195 -0.1835802 0.9212482 -0.3429301 -0.1835774 0.9212561 -0.3721609 -0.1130639 0.9212466 -0.3721815 -0.1130738 0.9212414 -0.3871136 -0.03817635 0.921257 -0.3870765 -0.03817588 0.9212496 -0.3870919 0.03819936 0.9212394 -0.3871161 0.03819721 0.9212428 -0.372186 0.1130899 0.9212563 -0.3721519 0.1130928 0.9212424 -0.3429335 0.1836006 0.9212541 -0.3429028 0.1835992 0.9212429 -0.3005009 0.2470034 0.9212483 -0.3004819 0.247007 0.9212469 -0.2465204 0.3008853 0.9212374 -0.246544 0.300895 0.9212384 -0.1831381 0.3431913 0.9212473 -0.1831316 0.3431711 0.9212465 -0.1127521 0.3722792 0.9212542 -0.1127299 0.3722672 0.9212762 -0.03871649 0.3869771 0.9056198 -0.04651349 0.4215321 0.8172135 -0.06122004 -0.5730743 0.7950785 -0.06001043 -0.6035305 0.7950364 -0.175822 -0.5805202 0.7950372 -0.1758152 -0.5805211 0.7950363 -0.28558 -0.5351275 0.795035 -0.2855825 -0.5351281 0.7950387 -0.3844293 -0.4691776 0.7950399 -0.3844295 -0.4691755 0.795032 -0.4685827 -0.3851681 0.795024 -0.4686013 -0.3851619 0.7950378 -0.5347477 -0.2862868 0.7950336 -0.5347515 -0.2862907 0.7950123 -0.5804004 -0.1763262 0.7950343 -0.5803696 -0.1763283 0.7950134 -0.6036626 -0.05954229 0.795032 -0.6036386 -0.059538 0.7950376 -0.6036292 0.05955862 0.7950152 -0.6036587 0.05955898 0.7950349 -0.5803618 0.176351 0.795017 -0.5803878 0.1763466 0.7950083 -0.5347836 0.2863014 0.7950264 -0.5347548 0.2863052 0.7950046 -0.4686194 0.3851799 0.7950533 -0.4685369 0.3851802 0.7950423 -0.3844149 0.4691834 0.795043 -0.3844102 0.4691859 0.7950345 -0.2855936 0.5351231 0.7950431 -0.2855514 0.5351326 0.7950409 -0.1758171 0.5805158 0.7950229 -0.1758215 0.5805388 0.7951962 -0.06306195 0.6030642 0.817402 -0.05702888 0.5732381 0.6342741 -0.07567745 -0.7693954 0.611527 -0.07341223 -0.7878106 0.6119826 -0.2292877 -0.7569046 0.6116526 -0.229319 -0.7571617 0.6120635 -0.3723917 -0.6976408 0.6115939 -0.3724797 -0.6980055 0.6121448 -0.5012358 -0.6115894 0.6115586 -0.5014616 -0.6119906 0.6121695 -0.6108999 -0.5020458 0.6115996 -0.6111825 -0.5023962 0.6121538 -0.6971557 -0.3731509 0.6116241 -0.697494 -0.3733874 0.6120699 -0.7566648 -0.2298458 0.6117585 -0.7568805 -0.2299644 0.611977 -0.7870575 -0.07761985 0.6118521 -0.787152 -0.07764554 0.6118732 -0.7871356 0.07764685 0.6119577 -0.7870693 0.07765185 0.6117376 -0.7569066 0.2299339 0.6120579 -0.7566575 0.2299015 0.6116234 -0.6975196 0.373341 0.6121309 -0.6971278 0.3732408 0.6115705 -0.6112412 0.5023602 0.6121424 -0.6108559 0.5021322 0.6115276 -0.5015226 0.6119716 0.6121144 -0.5011823 0.6116635 0.6115496 -0.3725728 0.6979948 0.6120408 -0.372314 0.6977022 0.6116039 -0.2293698 0.7571858 0.6119801 -0.2292423 0.7569203 0.6117472 -0.07742851 0.7872549 0.6344032 -0.07249206 0.7695958 0.9862841 0 0.1650574 0.9862841 0 0.1650571 0.9066005 0 0.4219899 0.9066011 0 0.4219887 0.8187346 0 0.5741721 0.8187357 0 0.5741706 0.6360763 0 0.7716263 0.611292 0 0.7914052 0.6112921 0 0.7914052 0.7229745 0 0.6908748 0.8660255 0 0.5 0.8660254 0 0.5 0.9862827 0 0.165065 0.9862828 0 0.1650645 0.8652653 -0.04213464 -0.4995407 0.609492 -0.07727116 -0.7890176 0.6118812 -0.07741981 -0.7871516 0.6118834 -0.2293112 -0.7569777 0.6118712 -0.2293135 -0.7569868 0.6118838 -0.3724545 -0.6977648 0.6118847 -0.3724429 -0.6977704 0.6118751 -0.501372 -0.6117475 0.6118692 -0.5013524 -0.6117694 0.6118634 -0.6110858 -0.5021926 0.6118799 -0.6110686 -0.5021934 0.6118566 -0.697368 -0.3732418 0.6118617 -0.697352 -0.3732634 0.611859 -0.7568195 -0.2298976 0.6118631 -0.75682 -0.2298851 0.6118726 -0.7871376 -0.07763022 0.6118598 -0.7871477 -0.07762879 0.6118587 -0.7871471 0.07764399 0.6118561 -0.7871488 0.07764595 0.6118739 -0.7568058 0.2299033 0.6118471 -0.7568272 0.2299041 0.6118505 -0.6973609 0.373265 0.6118801 -0.6973294 0.3732755 0.6118607 -0.6110832 0.5021991 0.611863 -0.6110841 0.5021951 0.6118674 -0.5013661 0.6117601 0.6118762 -0.5013323 0.611779 0.6118653 -0.3724511 0.6977829 0.6118825 -0.3724333 0.6977775 0.6118829 -0.2293052 0.7569799 0.6118546 -0.2293066 0.7570023 0.7213295 -0.06744766 0.6893002 0.6118378 -0.07709902 0.7872169 0.6094477 -0.07760238 0.7890194 0.7950079 -0.05901587 -0.6037216 0.7950297 -0.1758531 -0.58052 0.7950558 -0.1758469 -0.5804862 0.7950409 -0.2856252 -0.5350967 0.795033 -0.2856299 -0.5351057 0.7950391 -0.3844683 -0.4691449 0.7950335 -0.3844891 -0.4691377 0.7950342 -0.4686244 -0.385113 0.7950416 -0.4686067 -0.385119 0.7950413 -0.5347708 -0.2862335 0.795042 -0.5347682 -0.2862366 0.7950323 -0.5803833 -0.1762927 0.795028 -0.580388 -0.1762956 0.7950162 -0.6036606 -0.0595259 0.7950158 -0.6036607 -0.05952841 0.7950062 -0.6036717 0.05954629 0.7950287 -0.6036422 0.05954521 0.7950276 -0.5803819 0.1763178 0.7950221 -0.5803903 0.176315 0.7950276 -0.5347772 0.2862598 0.7950139 -0.5348019 0.2862517 0.7950305 -0.4686076 0.3851408 0.7950152 -0.4686352 0.3851389 0.7950234 -0.384472 0.4691689 0.7950235 -0.3845033 0.4691426 0.7950341 -0.2856227 0.5351082 0.7950261 -0.2856171 0.535123 0.7950258 -0.1758509 0.5805261 0.795027 -0.1758512 0.5805244 0.794848 -0.05579674 0.604238 0.8646972 -0.05536478 0.4992328 0.9211185 -0.0345928 0.3877423 0.9212501 -0.1127589 0.3722685 0.9212431 -0.1127694 0.3722825 0.9212434 -0.1831618 0.3431655 0.9212494 -0.1831632 0.3431483 0.9212555 -0.2465268 0.3008537 0.9212528 -0.2465341 0.3008558 0.9212457 -0.3005175 0.2469732 0.9212489 -0.3005101 0.2469699 0.9212484 -0.342935 0.1835675 0.9212605 -0.3429045 0.1835631 0.9212489 -0.3721787 0.1130641 0.9212458 -0.3721855 0.1130673 0.9212474 -0.387098 0.03818911 0.9212563 -0.3870769 0.03818905 0.9212504 -0.3870931 -0.03816777 0.9212561 -0.3870798 -0.0381667 0.9212505 -0.3721816 -0.1130423 0.9212521 -0.3721763 -0.1130464 0.9212589 -0.3429197 -0.1835435 0.9212403 -0.342968 -0.1835468 0.9212476 -0.3005245 -0.2469575 0.9212525 -0.300513 -0.246953 0.9212548 -0.2465512 -0.3008359 0.9212573 -0.2465584 -0.3008224 0.9212605 -0.1831558 -0.3431224 0.9212652 -0.183142 -0.3431174 0.9212662 -0.1127595 -0.3722285 0.9212546 -0.1127741 -0.3722526 0.9217134 -0.05401152 -0.3840926 0.7218881 -0.05544573 -0.6897851 0.9861566 -0.01623272 -0.1650208 0.9905657 -0.01719331 -0.1359562 0.9905209 -0.03984159 -0.1314574 0.9905191 -0.03982847 -0.1314747 0.9905189 -0.06470191 -0.1211854 0.9905222 -0.06467515 -0.1211737 0.9905223 -0.08706033 -0.1062359 0.9905216 -0.08707755 -0.1062292 0.9905229 -0.1061125 -0.08720433 0.9905212 -0.1061285 -0.08720451 0.9905189 -0.1211276 -0.06480997 0.9905201 -0.121114 -0.06481856 0.990521 -0.1314339 -0.0399186 0.9905191 -0.1314477 -0.03991723 0.9905186 -0.136717 -0.01347213 0.9905173 -0.1367264 -0.01347148 0.9905211 -0.1366965 0.01349639 0.9905171 -0.1367253 0.0134961 0.9905143 -0.1314754 0.03994333 0.9905214 -0.1314226 0.03994351 0.9905167 -0.121128 0.06484323 0.9905189 -0.1211131 0.06483739 0.9905202 -0.1061155 0.08723086 0.9905183 -0.1061288 0.08723592 0.9905164 -0.08709138 0.1062658 0.9905171 -0.08708161 0.1062664 0.9905176 -0.06468182 0.1212072 0.9905184 -0.06468397 0.1211999 0.9905178 -0.03983485 0.1314827 0.9905198 -0.03981637 0.1314736 0.9905195 -0.01344579 0.1367133 0.9861004 -0.01922708 0.1650344 0.6113059 0 -0.7913945 0.6113058 0 -0.7913945 0.723043 0 -0.690803 0.7230431 0 -0.6908029 0.866039 0 -0.4999766 0.8660356 0 -0.4999823 0.9862862 0 -0.1650444 0.9862866 0 -0.165042 0.8652561 0.04213547 0.4995564 0.6094623 0.077277 0.7890399 0.6118523 0.07742464 0.7871736 0.6118534 0.2293126 0.7570015 0.6118848 0.229305 0.7569783 0.6118822 0.3724437 0.6977721 0.6118654 0.372439 0.6977894 0.6118558 0.5013731 0.6117659 0.6118721 0.5013477 0.6117705 0.6118617 0.6110812 0.5022004 0.6118506 0.6110922 0.5022006 0.611848 0.6973614 0.3732681 0.6118815 0.6973276 0.3732765 0.6118701 0.7568081 0.2299057 0.6118681 0.7568116 0.2298996 0.6118827 0.7871283 0.07764381 0.6118317 0.7871681 0.07764285 0.6118656 0.7871432 -0.07762849 0.6118676 0.7871417 -0.07762855 0.6118833 0.7568013 -0.2298933 0.611855 0.7568261 -0.2298864 0.6118652 0.6973546 -0.3732529 0.6118624 0.6973564 -0.3732541 0.6118803 0.6110678 -0.5021939 0.6118561 0.6110917 -0.5021944 0.6118591 0.5013759 -0.6117604 0.6118822 0.5013439 -0.6117634 0.6118732 0.3724506 -0.6977763 0.6118886 0.3724498 -0.6977632 0.6118842 0.2293057 -0.7569786 0.611872 0.2293197 -0.7569843 0.7213675 0.06744939 -0.6892601 0.6118848 0.07708972 -0.7871813 0.6094517 0.07760459 -0.789016 0.7950069 0.05901044 0.6037235 0.7950229 0.175858 0.5805279 0.7950297 0.1758468 0.5805221 0.795027 0.2856253 0.5351172 0.7950314 0.2856161 0.5351154 0.7950303 0.3844669 0.4691612 0.7950146 0.3845082 0.4691538 0.795032 0.4686067 0.3851389 0.7950155 0.4686348 0.3851386 0.7950224 0.5347835 0.2862623 0.7950117 0.5348045 0.2862529 0.7950153 0.5804004 0.1763128 0.7950257 0.5803849 0.1763174 0.7950087 0.6036681 0.05954813 0.7950176 0.6036564 0.05954873 0.7950204 0.6036548 -0.05952829 0.7950117 0.6036662 -0.05952775 0.7950167 0.5804036 -0.1762957 0.7950384 0.5803745 -0.1762934 0.7950369 0.5347756 -0.286237 0.7950385 0.5347716 -0.2862397 0.7950295 0.4686284 -0.3851175 0.7950568 0.4685965 -0.3851001 0.7950528 0.3844701 -0.4691204 0.7950394 0.3844712 -0.469142 0.7950328 0.2856306 -0.5351057 0.7950386 0.2856208 -0.5351022 0.7950388 0.1758564 -0.5805066 0.7950366 0.1758517 -0.5805109 0.7948455 0.05579978 -0.6042409 0.8647099 0.05535978 -0.4992115 0.9211307 0.03459858 -0.3877129 0.9212602 0.1127643 -0.372242 0.9212612 0.1127657 -0.3722389 0.9212614 0.1831537 -0.3431211 0.9212675 0.1831361 -0.3431143 0.9212592 0.2465494 -0.3008241 0.9212418 0.2465846 -0.3008483 0.9212422 0.3005337 -0.2469667 0.9212556 0.300504 -0.2469524 0.9212657 0.3428997 -0.1835467 0.9212389 0.3429723 -0.1835454 0.9212562 0.372166 -0.1130465 0.9212477 0.3721886 -0.1130418 0.92125 0.3870941 -0.03816723 0.9212589 0.3870732 -0.03816527 0.9212574 0.3870742 0.03818821 0.9212507 0.3870902 0.03818941 0.9212532 0.3721671 0.1130681 0.9212456 0.3721866 0.113065 0.9212532 0.3429228 0.1835665 0.9212597 0.3429046 0.1835678 0.9212571 0.3004869 0.2469676 0.9212424 0.300527 0.2469742 0.9212547 0.246528 0.3008553 0.9212545 0.2465323 0.300852 0.9212509 0.1831533 0.3431498 0.9212412 0.1831752 0.343164 0.9212431 0.1127666 0.3722834 0.9212482 0.1127672 0.3722705 0.9216971 0.05400967 0.3841321 0.7218655 0.05543619 0.6898095 0.9861529 0.01623004 0.1650429 0.9905632 0.01719653 0.1359742 0.99052 0.03981441 0.1314728 0.9905176 0.03983724 0.1314831 0.9905187 0.06467884 0.1212006 0.990517 0.0646879 0.1212084 0.9905169 0.08708333 0.1062677 0.9905157 0.08710145 0.1062645 0.9905176 0.1061351 0.08723717 0.9905214 0.1061069 0.08722895 0.9905171 0.1211284 0.06483584 0.9905186 0.1211113 0.0648449 0.9905145 0.1314753 0.03994256 0.9905211 0.1314248 0.03994423 0.990518 0.1367192 0.01349854 0.9905202 0.1367024 0.01349544 0.9905187 0.1367161 -0.01347208 0.9905172 0.136727 -0.01347219 0.9905207 0.1314364 -0.039918 0.9905192 0.1314474 -0.03991776 0.990521 0.1211079 -0.06481736 0.9905184 0.1211321 -0.06481087 0.9905228 0.1061136 -0.08720457 0.9905215 0.1061261 -0.08720374 0.9905241 0.08704662 -0.1062304 0.9905207 0.08708047 -0.1062342 0.9905216 0.06468152 -0.1211754 0.9905192 0.06469672 -0.1211857 0.9905196 0.03982591 -0.1314725 0.9905213 0.03983801 -0.1314555 0.9905216 0.01344567 -0.1366977 0.9861041 0.01923054 -0.1650123 1 0 1.27575e-5 1 -5.49615e-6 1.32952e-5 1 7.24115e-6 1.17304e-5 1 -5.74205e-6 1.12226e-5 1 -4.60135e-6 1.23777e-5 1 5.49614e-6 1.32954e-5 1 0 1.27574e-5 1 -1.09922e-5 1.1779e-5 1 0 1.27292e-5 1 3.37777e-6 1.15471e-5 1 0 1.11128e-5 1 0 1.24644e-5 1 5.733e-6 1.20383e-5 1 0 1.09937e-5 1 0 1.30049e-5 1 6.13522e-6 1.23778e-5 1 1.09922e-5 1.17789e-5 1 5.94517e-6 1.09682e-5 1 -5.73719e-6 1.10011e-5 1 -3.36081e-6 1.17567e-5 1 0 1.35203e-5 1 0 1.11127e-5 1 0 1.09539e-5 1 5.38468e-6 1.07309e-5 1 0 1.08625e-5 1 -3.06588e-6 1.42371e-5 1 0 1.3632e-5 1 -1.43374e-6 1.49012e-5 1 0 1.49012e-5 1 0 1.49012e-5 1 1.37433e-6 1.37976e-5 1 1.35619e-6 1.38416e-5 1 0 9.01396e-6 1 -5.38467e-6 1.07309e-5 1 -3.37777e-6 1.28288e-5 1 5.3848e-6 1.3411e-5 1 -3.96595e-6 1.24644e-5 1 0 1.33731e-5 1 0 1.40477e-5 1 3.96344e-6 1.09682e-5 1 0 1.49391e-5 1 3.36081e-6 1.39736e-5 1 0 1.02123e-5 1 -5.38479e-6 1.3411e-5 1 -7.73361e-6 9.24054e-6 1 2.69235e-6 1.1924e-5 1 0 1.35912e-5 1 0 9.86439e-6 1 0 1.00842e-5 1 -7.16871e-7 1.11759e-5 1 0 1.11759e-5 1 0 1.1176e-5 1 6.87164e-7 1.02267e-5 1 -1.80825e-6 1.03012e-5 1 3.38057e-6 1.56327e-5 1 -2.69235e-6 1.19239e-5 1.3259e-5 0 -1 1.32526e-5 0 -1 -1 0 -1.21795e-5 -1 0 -1.19068e-5 -1 -5.42617e-7 -1.21795e-5 -1 1.02921e-6 -1.2145e-5 -1 0 -1.19068e-5 -1 0 -1.19741e-5 -1 0 -1.19741e-5 -1 0 -1.30385e-5 -1 0 -1.30386e-5 -1 0 -1.08246e-5 -1 7.89513e-7 -1.20641e-5 -1 1.10055e-6 -1.23716e-5 -1 -2.05842e-6 -1.2145e-5 -1 -1.20984e-6 -1.16427e-5 -1 -5.82313e-7 -1.23226e-5 -1 -1.10055e-6 -1.23715e-5 1.23716e-5 0 -1 1.23716e-5 0 -1 1 -2.88077e-6 1.234e-5 1 0 1.30385e-5 1 -4.11684e-6 1.19848e-5 1 2.6528e-6 1.20795e-5 1 0 1.22405e-5 1 0 1.02059e-5 1 0 1.15378e-5 1 0 1.28373e-5 1 2.75139e-6 1.09124e-5 0 1 2.96588e-6 0 1 -3.40713e-6 0 1 1.23103e-6 0 1 -3.17081e-7 0 1 -1.25254e-6 0 1 -4.10349e-7 0 1 -1.70358e-6 0 1 2.48648e-6 0 1 -1.87339e-6 0 1 4.19747e-6 0 1 -1.46427e-5 0 1 -3.90466e-6 0 1 -1.54685e-6 0 1 -2.24859e-6 0 1 2.57298e-5 1.22727e-5 0 -1 1.2448e-5 0 -1 0 -1 -1.84471e-6 0 -1 8.51789e-7 0 -1 1.87341e-6 0 -1 -1.40267e-6 0 -1 2.22441e-6 0 -1 1.87339e-6 0 -1 -2.09873e-6 0 -1 1.49895e-6 0 -1 -1.46643e-5 0 -1 2.32028e-6 0 -1 -1.75726e-6 0 -1 8.20689e-7 -1 1.02257e-6 -9.42076e-6 -1 0 -1.34564e-5 -1 -7.6522e-6 -1.23657e-5 -1 9.36833e-6 -1.22777e-5 -1 -3.76671e-6 -1.21941e-5 -1 0 -1.3277e-5 -1 -4.36852e-6 -1.31577e-5 -1 0 -1.32455e-5 -1 0 -1.32455e-5 -1 4.20624e-6 -1.30018e-5 -1 -4.60866e-6 -8.92508e-6 -1 0 -1.34694e-5 -1 -1.02279e-6 -9.42366e-6 -1 -1.91916e-6 -1.79888e-5 -1 9.01841e-7 -9.00847e-6 -1 0 -1.49103e-5 -1 0 -1.11383e-5 -1 5.02492e-6 -1.57816e-5 -1 0 -1.02238e-5 -1 -2.17749e-6 -1.02783e-5 -1 2.30541e-6 -1.14817e-5 -1 1.20912e-6 -1.2901e-5 -1 3.21948e-6 -1.31279e-5 -1 -1.53467e-6 -9.92926e-6 -1 2.2098e-6 -1.26262e-5 -1 0 -1.22777e-5 -1 -5.55047e-6 -1.15009e-5 -1 -4.99693e-6 -1.34447e-5 -1 0 -1.12674e-5 -1 4.6097e-6 -1.37498e-5 -1 8.05086e-7 -1.2923e-5 -1 0 -9.71889e-6 -1 -2.70355e-6 -1.18957e-5 -1 0 -1.79607e-5 -0.2299197 0.8810234 0.4134426 -0.8394866 0.4763038 0.2615283 -0.9808996 0.1734762 -0.08798921 -0.6563109 0.09417796 -0.7485898 -0.9802475 0.02611154 -0.1960436 -0.9847704 0.02664494 -0.1718062 -0.3020111 0.1249112 -0.9450854 -0.2051658 0.1348413 -0.969394 -0.1123726 0.1296191 -0.9851758 -0.9802106 0.05673664 0.189653 -0.9806029 0.1231159 0.1525141 -0.9807584 0.1496661 0.125352 -0.9808834 0.1705739 0.09366118 -0.980979 0.1701143 0.09349566 -0.9809822 0.184923 0.05897104 -0.980897 0.1532318 -0.1198386 -0.9807802 0.1536196 -0.1202963 -0.9807752 0.1276007 -0.1476418 -0.8722793 0.07248187 -0.4836067 -0.8333741 0.0684508 -0.5484544 -0.8335404 0.1761649 -0.5236184 -0.9802447 0.06288599 -0.1875255 -0.9804397 0.06271934 -0.1865596 -0.8348711 0.256591 0.4869818 -0.9810343 0.1925851 0.0219717 -0.9810389 0.1846361 0.05892425 -0.8399404 0.5170369 0.1648422 -0.8394635 0.5177021 0.1651839 -0.573202 0.7807006 0.24889 -0.8377746 0.3568674 -0.4132547 -0.837798 0.4300825 -0.3363386 -0.8388143 0.4286988 -0.3355713 -0.838837 0.4856061 -0.2460471 -0.8395648 0.4845209 -0.2457045 -0.4498234 0.1166914 -0.8854615 -0.5569479 0.1152855 -0.8225074 -0.5566669 0.264977 -0.7873431 -0.8351017 0.1749938 -0.5215193 -0.8351146 0.2729594 -0.4775739 -0.9804428 0.09750783 -0.1709506 -0.9806228 0.09717422 -0.1701062 -0.5639249 0.5184491 0.6428058 -0.5639001 0.3855177 0.7303375 -0.5601612 0.3861237 0.7328902 -0.5644859 0.4091186 -0.7169224 -0.564503 0.5399312 -0.6243483 -0.5676671 0.5381089 -0.6230514 -0.5677133 0.6485283 -0.5070628 -0.570323 0.646813 -0.5063247 -0.5703539 0.7327377 -0.3712035 -0.5722391 0.7314198 -0.3709011 -0.1749236 0.09960633 0.9795307 -0.5558471 0.0778023 0.8276357 -0.5374534 0.08248603 0.8392498 -0.8332557 0.05358588 0.5502852 -0.8410637 0.05030924 0.5385916 -0.9802623 0.02217829 0.1964539 -0.9842802 0.01721477 0.1757736 -0.2038798 0.0947774 0.9743974 -0.2038432 0.2809644 0.9378204 -0.5560412 0.2378054 0.7964087 -0.5601187 0.237702 0.7935773 -0.8332781 0.1581832 0.5297413 -0.8348604 0.1578935 0.5273308 -0.9804074 0.0563082 0.1887613 -0.9804121 0.09189414 0.1742058 -0.2102867 0.279662 0.9367864 -0.2110632 0.4063379 0.8890119 -0.3637225 0.4346248 0.8238976 -0.2168213 0.4905776 0.8439919 -0.2161774 0.6135131 0.759519 -0.2214351 0.6121463 0.759107 -0.2224393 0.6872819 0.6914944 -0.9806005 0.09132689 0.1734421 -0.8363391 0.2558856 0.4848294 -0.8363537 0.3441424 0.4267066 -0.567238 0.5174592 0.6406849 -0.5672837 0.6311542 0.5289932 -0.2477628 0.7428884 0.6218766 -0.2258067 0.7491536 0.62272 -0.9807527 0.1225564 0.152001 -0.8376095 0.3432114 0.4249899 -0.8376366 0.4186351 0.3508698 -0.5699688 0.6300529 0.5274173 -0.5699539 0.7201102 0.3957195 -0.2256999 0.8539804 0.4688039 -0.428862 0.7768288 0.4611014 -0.9808806 0.1491521 0.1250083 -0.8386815 0.4175772 0.349632 -0.8386518 0.4773435 0.2623097 -0.5719445 0.7190456 0.3947822 -0.5719006 0.7815066 0.2493537 -0.2290005 0.9274421 0.2956517 -0.2311147 0.92687 0.2958008 -0.2320733 0.9563052 0.1778265 -0.3559288 0.9284797 0.1060189 -0.5731811 0.8141322 0.09301728 -0.5736475 0.813817 0.09290063 -0.8399331 0.5391831 0.06159651 -0.8401408 0.5388681 0.0615195 -0.9810734 0.1923846 0.02197879 -0.9810673 0.1930531 -0.01541262 -0.2323264 0.9689742 0.08434206 -0.2318301 0.9696762 -0.07734888 -0.57366 0.816495 -0.06519424 -0.5733932 0.8166848 -0.06516289 -0.840147 0.5406371 -0.04318201 -0.8399966 0.5408723 -0.04316318 -0.9810622 0.1930768 -0.01543903 -0.9810585 0.1864137 -0.05267089 -0.2312741 0.9698015 -0.07744312 -0.2312695 0.9363045 -0.2642883 -0.5733865 0.7884164 -0.2227723 -0.5722731 0.7892175 -0.2227992 -0.840036 0.5220831 -0.1475426 -0.839577 0.5228008 -0.1476138 -0.9809929 0.1867272 -0.0527811 -0.9809973 0.1730582 -0.08772218 -0.229411 0.9366466 -0.2646957 -0.2301551 0.8876941 -0.3987831 -0.3801202 0.825043 -0.418106 -0.2271574 0.8456944 -0.4829086 -0.2264149 0.7673428 -0.5999345 -0.2222655 0.7677226 -0.6009993 -0.2222713 0.6377869 -0.7374438 -0.2171172 0.638015 -0.7387807 -0.217124 0.4845085 -0.847413 -0.3666689 0.4806285 -0.7965866 -0.2121813 0.4209606 -0.8819135 -0.9806233 0.1280235 -0.1482842 -0.8365322 0.3583793 -0.4144612 -0.8365253 0.2715791 -0.4758891 -0.5607952 0.4109298 -0.7187805 -0.5607662 0.2634024 -0.784959 -0.2112935 0.3117954 -0.9263577 -0.2050106 0.3113396 -0.9279215 -6.80657e-4 0.1307718 -0.9914123 -0.03369081 0.8083149 0.5877858 -0.03877216 0.9502622 0.3090285 -0.03867167 0.9520084 0.3036189 -0.03770649 0.9047418 0.4242882 0.04440993 0.9959283 -0.07845228 -0.04150313 0.9960533 0.07845747 -0.04150342 0.9960516 0.07847779 -0.04093372 0.982347 0.1825349 -0.03614562 0.8679742 -0.495292 -0.03796571 0.9116229 -0.4092705 -0.02964723 0.9505596 -0.3091239 -0.03791624 0.9616692 -0.2715786 -0.04307126 0.9959869 -0.07845479 -0.04289907 0.995913 -0.07948064 -0.0402885 0.9954286 0.08659476 -0.02002912 0.7875081 -0.6159788 -0.03030014 0.8084043 -0.5878474 -0.02921944 0.6536411 -0.7562405 -0.01311224 0.587398 -0.809192 -0.02154052 0.5172945 -0.8555364 -0.003256201 0.07839554 -0.9969171 -0.01057201 0.08988243 -0.9958963 -0.004936575 0.3087716 -0.9511235 -0.007704496 0.3186432 -0.9478434 -0.01795142 0.4311783 -0.9020881 -0.04163038 0.9991331 0 -0.03958868 0.9502324 -0.3090164 -0.03958952 0.9502321 -0.3090172 -0.03367257 0.8083148 -0.587787 -0.03367179 0.8083163 -0.5877847 -0.02445888 0.587276 -0.8090171 -0.02445894 0.5872747 -0.809018 -0.01285189 0.3087505 -0.9510563 -0.01285183 0.3087503 -0.9510564 -0.003252863 0.07838851 -0.9969177 -0.003252923 0.07838815 -0.9969177 -0.03239285 0.8598134 0.50958 -0.03204083 0.7688617 0.638612 -0.02447688 0.5872751 0.8090173 -0.02370572 0.7050741 0.7087373 -0.0241841 0.6279164 0.7779051 -0.02096122 0.502857 0.8641154 -0.01287442 0.3087502 0.9510561 -0.01311057 0.4161567 0.9091985 -0.01146191 0.2865909 0.9579845 -0.004423618 0.09740763 0.9952347 -0.003278374 0.07838875 0.9969175 1 0 1.30385e-5 1 0 1.0206e-5 1 2.30461e-6 1.234e-5 1 0 1.22398e-5 1 -2.65281e-6 1.20795e-5 1 0 9.97418e-6 1 0 1.23432e-5 1 -2.20111e-6 1.09124e-5 1 4.11684e-6 1.19848e-5 1.23848e-5 0 -1 1.23584e-5 0 -1 + + + + + + + + + + + + + + +

0 0 1 0 2 0 3 1 4 1 1 1 1 2 4 2 5 2 5 3 6 3 1 3 1 4 6 4 7 4 1 5 7 5 2 5 8 6 9 6 10 6 2 7 11 7 0 7 0 8 11 8 8 8 0 9 8 9 12 9 12 10 8 10 10 10 11 11 2 11 13 11 11 12 13 12 8 12 13 13 14 13 8 13 8 14 14 14 15 14 8 15 15 15 9 15 15 16 16 16 9 16 9 17 16 17 17 17 9 18 17 18 10 18 17 19 18 19 10 19 10 20 18 20 19 20 10 21 19 21 12 21 12 22 19 22 20 22 12 23 20 23 0 23 14 24 13 24 21 24 22 25 23 25 24 25 24 26 23 26 25 26 24 27 25 27 26 27 25 28 27 28 26 28 26 29 27 29 28 29 26 30 28 30 29 30 30 31 31 31 32 31 32 32 31 32 33 32 34 33 35 33 36 33 37 34 38 34 39 34 39 35 38 35 34 35 40 36 36 36 41 36 41 37 36 37 35 37 41 38 35 38 42 38 43 39 19 39 18 39 44 40 45 40 46 40 46 41 45 41 47 41 46 42 47 42 48 42 48 43 47 43 49 43 48 44 49 44 50 44 50 45 49 45 51 45 50 46 51 46 52 46 53 47 30 47 54 47 54 48 30 48 32 48 54 49 32 49 55 49 55 50 32 50 56 50 55 51 56 51 57 51 57 52 56 52 58 52 20 53 19 53 59 53 59 54 19 54 43 54 59 55 43 55 60 55 16 56 15 56 61 56 61 57 15 57 14 57 62 58 17 58 16 58 63 59 64 59 65 59 65 60 64 60 66 60 65 61 66 61 67 61 67 62 66 62 68 62 68 63 69 63 67 63 67 64 69 64 70 64 67 65 70 65 22 65 22 66 70 66 71 66 22 67 71 67 23 67 16 68 61 68 62 68 62 69 61 69 44 69 62 70 44 70 58 70 58 71 44 71 46 71 58 72 46 72 57 72 57 73 46 73 48 73 57 74 48 74 55 74 55 75 48 75 50 75 55 76 50 76 54 76 54 77 50 77 52 77 54 78 52 78 53 78 34 79 38 79 35 79 35 80 38 80 72 80 35 81 72 81 42 81 29 82 73 82 26 82 26 83 73 83 74 83 26 84 74 84 75 84 21 85 63 85 76 85 76 86 63 86 65 86 76 87 65 87 77 87 77 88 65 88 67 88 77 89 67 89 78 89 78 90 67 90 22 90 78 91 22 91 79 91 79 92 22 92 24 92 79 93 24 93 80 93 80 94 24 94 26 94 80 95 26 95 39 95 39 96 26 96 75 96 39 97 75 97 37 97 33 98 81 98 32 98 32 99 81 99 82 99 32 100 82 100 56 100 56 101 82 101 60 101 56 102 60 102 58 102 58 103 60 103 43 103 58 104 43 104 62 104 62 105 43 105 18 105 62 106 18 106 17 106 14 107 21 107 61 107 61 108 21 108 76 108 61 109 76 109 44 109 44 110 76 110 77 110 44 111 77 111 45 111 45 112 77 112 78 112 45 113 78 113 47 113 47 114 78 114 79 114 47 115 79 115 49 115 49 116 79 116 80 116 49 117 80 117 51 117 51 118 80 118 39 118 51 119 39 119 52 119 52 120 39 120 34 120 52 121 34 121 53 121 53 122 34 122 36 122 53 123 36 123 30 123 30 124 36 124 40 124 30 125 40 125 31 125 83 126 84 126 40 126 85 127 20 127 86 127 86 128 20 128 59 128 86 129 59 129 87 129 87 130 59 130 88 130 88 131 59 131 89 131 89 132 59 132 60 132 89 133 60 133 90 133 60 134 82 134 90 134 90 135 82 135 81 135 90 136 81 136 91 136 91 137 81 137 33 137 40 138 84 138 31 138 31 139 84 139 92 139 31 140 92 140 33 140 33 141 92 141 93 141 33 142 93 142 91 142 42 143 72 143 94 143 40 144 41 144 83 144 83 145 41 145 42 145 83 146 42 146 95 146 95 147 42 147 94 147 96 148 97 148 98 148 99 149 100 149 101 149 101 150 100 150 96 150 101 151 96 151 102 151 102 152 96 152 98 152 102 153 98 153 103 153 104 154 105 154 106 154 107 155 108 155 109 155 109 156 108 156 110 156 109 157 87 157 88 157 111 158 109 158 112 158 112 159 109 159 110 159 112 160 110 160 113 160 113 161 110 161 114 161 109 162 88 162 107 162 107 163 88 163 89 163 107 164 89 164 90 164 115 165 116 165 117 165 104 166 106 166 118 166 118 167 106 167 119 167 118 168 119 168 120 168 120 169 119 169 121 169 120 170 121 170 122 170 122 171 121 171 115 171 122 172 115 172 123 172 123 173 115 173 117 173 123 174 117 174 124 174 125 175 94 175 116 175 116 176 126 176 125 176 125 177 126 177 127 177 125 178 127 178 128 178 128 179 127 179 129 179 128 180 129 180 130 180 130 181 129 181 131 181 130 182 131 182 132 182 132 183 131 183 133 183 132 184 133 184 134 184 130 185 84 185 128 185 128 186 84 186 83 186 128 187 83 187 125 187 125 188 83 188 95 188 125 189 95 189 94 189 116 190 115 190 126 190 126 191 115 191 121 191 126 192 121 192 127 192 127 193 121 193 119 193 127 194 119 194 129 194 129 195 119 195 106 195 129 196 106 196 131 196 131 197 106 197 105 197 131 198 105 198 133 198 124 199 135 199 136 199 136 200 135 200 137 200 138 201 139 201 140 201 140 202 139 202 141 202 140 203 141 203 142 203 141 204 143 204 142 204 142 205 143 205 144 205 142 206 144 206 145 206 145 207 144 207 146 207 145 208 146 208 99 208 99 209 146 209 147 209 99 210 147 210 100 210 101 211 148 211 99 211 99 212 148 212 149 212 99 213 149 213 145 213 145 214 149 214 150 214 145 215 150 215 142 215 142 216 150 216 151 216 142 217 151 217 140 217 140 218 151 218 136 218 140 219 136 219 138 219 138 220 136 220 137 220 111 221 85 221 109 221 109 222 85 222 86 222 109 223 86 223 87 223 103 224 114 224 102 224 102 225 114 225 110 225 102 226 110 226 101 226 101 227 110 227 108 227 101 228 108 228 148 228 124 229 136 229 123 229 123 230 136 230 151 230 123 231 151 231 122 231 122 232 151 232 150 232 122 233 150 233 120 233 120 234 150 234 149 234 120 235 149 235 118 235 118 236 149 236 148 236 118 237 148 237 104 237 104 238 148 238 108 238 104 239 108 239 105 239 105 240 108 240 107 240 105 241 107 241 133 241 133 242 107 242 90 242 133 243 90 243 134 243 134 244 90 244 91 244 134 245 91 245 132 245 132 246 91 246 93 246 132 247 93 247 130 247 130 248 93 248 92 248 130 249 92 249 84 249 152 250 153 250 112 250 112 251 153 251 154 251 112 252 154 252 111 252 111 253 154 253 155 253 111 254 155 254 85 254 112 255 113 255 152 255 152 256 113 256 114 256 152 257 114 257 156 257 156 258 114 258 103 258 103 259 98 259 156 259 156 260 98 260 97 260 156 261 97 261 157 261 158 262 159 262 160 262 157 263 161 263 155 263 155 264 161 264 162 264 155 265 162 265 160 265 160 266 162 266 163 266 160 267 163 267 158 267 152 268 156 268 153 268 153 269 156 269 157 269 153 270 157 270 154 270 154 271 157 271 155 271 164 272 165 272 166 272 166 273 165 273 167 273 166 274 167 274 168 274 168 275 167 275 169 275 168 276 169 276 159 276 168 277 159 277 170 277 163 278 171 278 158 278 158 279 171 279 172 279 158 280 172 280 159 280 159 281 172 281 173 281 159 282 173 282 170 282 162 283 139 283 138 283 138 284 137 284 162 284 162 285 137 285 135 285 162 286 135 286 163 286 163 287 135 287 174 287 163 288 174 288 171 288 146 289 144 289 161 289 161 290 144 290 143 290 161 291 143 291 162 291 162 292 143 292 141 292 162 293 141 293 139 293 97 294 96 294 100 294 97 295 100 295 157 295 157 296 100 296 161 296 161 297 100 297 147 297 161 298 147 298 146 298 175 299 176 299 177 299 178 300 179 300 180 300 180 301 179 301 116 301 180 302 116 302 94 302 117 303 116 303 181 303 181 304 116 304 179 304 181 305 179 305 182 305 182 306 179 306 178 306 182 307 178 307 183 307 184 308 185 308 186 308 186 309 185 309 187 309 186 310 187 310 188 310 176 311 184 311 177 311 177 312 184 312 186 312 177 313 186 313 189 313 189 314 186 314 188 314 189 315 188 315 190 315 124 316 117 316 190 316 190 317 117 317 181 317 190 318 181 318 189 318 189 319 181 319 182 319 189 320 182 320 177 320 177 321 182 321 183 321 177 322 183 322 175 322 185 323 170 323 187 323 187 324 170 324 173 324 187 325 173 325 188 325 188 326 173 326 172 326 188 327 172 327 190 327 190 328 172 328 171 328 190 329 171 329 124 329 124 330 171 330 174 330 124 331 174 331 135 331 72 332 191 332 192 332 175 333 94 333 193 333 193 334 94 334 72 334 193 333 72 333 194 333 194 335 72 335 192 335 183 333 178 333 175 333 175 336 178 336 180 336 175 337 180 337 94 337 72 338 38 338 195 338 194 339 192 339 196 339 196 340 192 340 191 340 197 341 37 341 75 341 197 342 75 342 198 342 199 343 200 343 198 343 198 344 200 344 201 344 198 345 201 345 197 345 197 346 201 346 202 346 203 347 204 347 196 347 196 348 204 348 193 348 196 349 193 349 194 349 29 350 199 350 73 350 73 351 199 351 198 351 73 352 198 352 74 352 74 353 198 353 75 353 38 354 37 354 195 354 195 355 37 355 197 355 195 356 197 356 205 356 205 357 197 357 202 357 205 358 202 358 206 358 206 359 202 359 201 359 206 360 201 360 207 360 207 361 201 361 200 361 72 362 195 362 191 362 191 363 195 363 205 363 191 364 205 364 196 364 196 365 205 365 206 365 196 366 206 366 203 366 203 367 206 367 207 367 203 368 207 368 208 368 208 369 207 369 200 369 208 370 200 370 209 370 209 371 170 371 185 371 209 371 185 371 208 371 208 372 185 372 184 372 208 372 184 372 203 372 203 373 184 373 176 373 203 373 176 373 204 373 204 374 176 374 175 374 204 375 175 375 193 375 210 376 211 376 212 376 212 377 211 377 213 377 212 378 213 378 214 378 214 379 213 379 215 379 214 380 215 380 216 380 216 381 215 381 217 381 216 382 217 382 218 382 218 383 217 383 219 383 218 384 219 384 220 384 220 385 219 385 221 385 220 386 221 386 222 386 222 387 221 387 223 387 222 388 223 388 224 388 224 389 223 389 225 389 224 390 225 390 226 390 226 391 225 391 227 391 226 392 227 392 228 392 228 393 227 393 229 393 228 394 229 394 230 394 230 395 229 395 231 395 230 396 231 396 232 396 232 397 231 397 233 397 232 398 233 398 210 398 210 399 233 399 211 399 220 400 222 400 168 400 168 401 222 401 166 401 212 402 170 402 210 402 210 403 170 403 209 403 210 404 209 404 232 404 232 405 209 405 230 405 222 406 224 406 166 406 166 407 224 407 226 407 166 408 226 408 209 408 209 409 226 409 228 409 209 410 228 410 230 410 212 411 214 411 170 411 170 412 214 412 216 412 170 413 216 413 168 413 168 414 216 414 218 414 168 415 218 415 220 415 13 416 2 416 7 416 164 417 166 417 3 417 3 418 166 418 209 418 3 419 209 419 4 419 209 420 200 420 4 420 4 421 200 421 199 421 4 422 199 422 5 422 5 423 199 423 6 423 6 424 199 424 29 424 6 425 29 425 28 425 28 426 27 426 6 426 6 427 27 427 25 427 6 428 25 428 23 428 23 429 71 429 6 429 6 430 71 430 70 430 6 431 70 431 7 431 7 432 70 432 69 432 7 433 69 433 68 433 68 434 66 434 7 434 7 435 66 435 64 435 7 436 64 436 13 436 13 437 64 437 63 437 13 438 63 438 21 438 234 439 3 439 235 439 235 440 3 440 1 440 235 439 1 439 236 439 234 439 237 439 3 439 3 441 237 441 238 441 3 442 238 442 164 442 238 439 239 439 164 439 164 443 239 443 240 443 164 439 240 439 165 439 165 444 240 444 241 444 165 445 241 445 242 445 242 439 243 439 165 439 165 446 243 446 244 446 165 447 244 447 1 447 1 448 244 448 245 448 1 449 245 449 236 449 1 450 0 450 20 450 85 451 155 451 160 451 167 452 165 452 160 452 160 453 165 453 1 453 160 454 1 454 85 454 85 455 1 455 20 455 167 456 160 456 246 456 246 456 160 456 247 456 246 456 248 456 167 456 167 457 248 457 249 457 167 456 249 456 169 456 169 458 249 458 250 458 169 459 250 459 251 459 252 460 159 460 253 460 253 461 159 461 169 461 253 456 169 456 254 456 254 456 169 456 251 456 252 456 255 456 159 456 159 462 255 462 256 462 159 463 256 463 160 463 160 464 256 464 257 464 160 465 257 465 247 465 258 466 259 466 260 466 260 467 259 467 261 467 262 468 263 468 264 468 264 469 263 469 265 469 264 470 265 470 266 470 266 471 265 471 260 471 266 472 260 472 261 472 263 473 262 473 267 473 267 474 262 474 268 474 269 475 270 475 271 475 271 476 270 476 272 476 271 477 272 477 273 477 273 478 272 478 274 478 273 479 274 479 275 479 275 480 274 480 276 480 275 481 276 481 277 481 275 482 277 482 278 482 278 483 277 483 279 483 280 484 281 484 282 484 282 485 281 485 283 485 282 486 283 486 284 486 284 487 283 487 285 487 284 488 285 488 286 488 286 489 285 489 287 489 286 490 287 490 288 490 286 491 288 491 289 491 289 492 288 492 290 492 291 493 292 493 293 493 293 494 292 494 294 494 295 495 296 495 297 495 297 496 296 496 298 496 297 497 298 497 299 497 299 498 298 498 293 498 299 499 293 499 294 499 296 500 295 500 300 500 300 501 295 501 301 501 302 502 303 502 304 502 302 503 304 503 305 503 305 504 304 504 306 504 305 505 306 505 307 505 307 506 306 506 308 506 307 507 308 507 309 507 309 508 308 508 310 508 309 509 310 509 311 509 311 510 310 510 312 510 311 511 312 511 313 511 313 512 312 512 314 512 313 513 314 513 315 513 315 514 314 514 316 514 315 515 316 515 317 515 317 516 316 516 318 516 317 517 318 517 319 517 319 518 318 518 320 518 319 519 320 519 321 519 321 520 320 520 322 520 321 521 322 521 323 521 302 522 324 522 303 522 303 523 324 523 325 523 326 524 327 524 328 524 326 525 328 525 329 525 329 526 328 526 330 526 329 527 330 527 331 527 331 528 330 528 332 528 331 529 332 529 333 529 333 530 332 530 334 530 333 531 334 531 335 531 335 532 334 532 336 532 335 533 336 533 337 533 337 534 336 534 338 534 337 535 338 535 339 535 339 536 338 536 340 536 339 537 340 537 341 537 341 538 340 538 342 538 341 539 342 539 343 539 343 540 342 540 344 540 343 541 344 541 345 541 345 542 344 542 325 542 345 543 325 543 324 543 326 544 323 544 327 544 327 545 323 545 322 545 323 546 346 546 321 546 321 547 346 547 347 547 321 548 347 548 319 548 347 549 348 549 319 549 319 550 348 550 349 550 319 551 349 551 317 551 317 552 349 552 350 552 317 553 350 553 315 553 315 554 350 554 351 554 315 555 351 555 313 555 313 556 351 556 352 556 313 557 352 557 311 557 352 558 353 558 311 558 311 559 353 559 354 559 311 560 354 560 309 560 309 561 354 561 355 561 309 562 355 562 307 562 307 563 355 563 356 563 307 564 356 564 305 564 305 565 356 565 357 565 305 566 357 566 302 566 343 567 358 567 341 567 341 568 358 568 359 568 341 569 359 569 339 569 339 570 359 570 360 570 339 571 360 571 337 571 337 572 360 572 361 572 337 573 361 573 335 573 361 574 362 574 335 574 335 570 362 570 363 570 335 575 363 575 333 575 333 552 363 552 364 552 333 562 364 562 331 562 331 576 364 576 365 576 331 577 365 577 329 577 329 578 365 578 366 578 329 579 366 579 326 579 324 580 367 580 345 580 345 581 367 581 368 581 345 582 368 582 343 582 343 583 368 583 369 583 343 584 369 584 358 584 366 585 370 585 326 585 326 586 370 586 371 586 326 587 371 587 323 587 323 588 371 588 372 588 323 589 372 589 346 589 357 590 373 590 302 590 302 591 373 591 374 591 302 588 374 588 324 588 324 587 374 587 375 587 324 592 375 592 367 592 376 593 377 593 378 593 379 594 380 594 381 594 379 595 381 595 382 595 382 596 381 596 383 596 382 597 383 597 384 597 384 598 383 598 385 598 384 599 385 599 386 599 386 600 385 600 387 600 386 601 387 601 388 601 388 602 387 602 389 602 388 603 389 603 390 603 390 604 389 604 391 604 390 605 391 605 392 605 392 606 391 606 393 606 392 607 393 607 394 607 394 608 393 608 395 608 394 609 395 609 396 609 396 610 395 610 397 610 396 611 397 611 398 611 398 612 397 612 399 612 398 613 399 613 400 613 400 614 399 614 401 614 400 615 401 615 402 615 402 616 401 616 378 616 402 617 378 617 403 617 403 618 378 618 377 618 403 619 377 619 404 619 405 620 406 620 407 620 407 621 406 621 376 621 408 622 409 622 405 622 405 623 407 623 408 623 408 624 407 624 410 624 408 625 410 625 411 625 411 626 410 626 412 626 411 627 412 627 413 627 413 628 412 628 414 628 413 629 414 629 415 629 415 630 414 630 416 630 415 631 416 631 417 631 417 632 416 632 418 632 417 633 418 633 419 633 419 634 418 634 420 634 419 635 420 635 421 635 421 636 420 636 422 636 421 637 422 637 423 637 423 638 422 638 424 638 423 639 424 639 425 639 425 640 424 640 426 640 425 641 426 641 427 641 427 642 426 642 428 642 427 643 428 643 429 643 429 644 428 644 430 644 429 645 430 645 431 645 431 646 430 646 432 646 431 647 432 647 433 647 433 648 432 648 434 648 433 649 434 649 435 649 379 650 436 650 380 650 380 651 436 651 437 651 380 652 437 652 438 652 376 653 378 653 407 653 407 654 378 654 401 654 407 655 401 655 410 655 410 656 401 656 399 656 410 657 399 657 412 657 412 658 399 658 397 658 412 659 397 659 414 659 414 660 397 660 395 660 414 661 395 661 416 661 416 662 395 662 393 662 416 663 393 663 418 663 418 664 393 664 391 664 418 665 391 665 420 665 420 666 391 666 389 666 420 667 389 667 422 667 422 668 389 668 387 668 422 669 387 669 424 669 424 670 387 670 385 670 424 671 385 671 426 671 426 672 385 672 383 672 426 673 383 673 428 673 428 674 383 674 381 674 428 675 381 675 430 675 430 676 381 676 380 676 430 677 380 677 432 677 432 678 380 678 438 678 432 679 438 679 434 679 409 680 439 680 405 680 405 680 439 680 440 680 405 681 440 681 406 681 406 682 440 682 441 682 406 683 441 683 376 683 376 683 441 683 442 683 376 684 442 684 377 684 377 685 442 685 443 685 377 686 443 686 404 686 404 686 443 686 444 686 441 687 440 687 445 687 446 688 447 688 448 688 449 689 450 689 451 689 449 690 451 690 452 690 452 691 451 691 453 691 452 692 453 692 454 692 454 693 453 693 455 693 454 694 455 694 456 694 456 695 455 695 457 695 456 696 457 696 458 696 458 697 457 697 459 697 458 698 459 698 460 698 460 699 459 699 461 699 460 700 461 700 462 700 462 701 461 701 463 701 462 702 463 702 464 702 464 703 463 703 465 703 464 704 465 704 466 704 466 705 465 705 467 705 466 706 467 706 468 706 468 707 467 707 469 707 468 708 469 708 470 708 470 709 469 709 471 709 470 710 471 710 472 710 472 711 471 711 448 711 472 712 448 712 473 712 473 713 448 713 447 713 473 714 447 714 474 714 475 715 476 715 446 715 477 716 478 716 476 716 476 717 475 717 477 717 477 718 475 718 479 718 477 719 479 719 480 719 480 720 479 720 481 720 480 721 481 721 482 721 482 722 481 722 483 722 482 723 483 723 484 723 484 724 483 724 485 724 484 725 485 725 486 725 486 726 485 726 487 726 486 727 487 727 488 727 488 728 487 728 489 728 488 729 489 729 490 729 490 730 489 730 491 730 490 731 491 731 492 731 492 732 491 732 493 732 492 733 493 733 494 733 494 734 493 734 495 734 494 735 495 735 496 735 496 736 495 736 497 736 496 737 497 737 498 737 498 738 497 738 499 738 498 739 499 739 500 739 500 740 499 740 445 740 500 741 445 741 501 741 501 742 445 742 440 742 501 743 440 743 439 743 449 744 444 744 450 744 450 745 444 745 443 745 450 746 443 746 442 746 446 747 448 747 475 747 475 748 448 748 471 748 475 749 471 749 479 749 479 750 471 750 469 750 479 751 469 751 481 751 481 752 469 752 467 752 481 753 467 753 483 753 483 754 467 754 465 754 483 755 465 755 485 755 485 756 465 756 463 756 485 757 463 757 487 757 487 758 463 758 461 758 487 759 461 759 489 759 489 760 461 760 459 760 489 761 459 761 491 761 491 762 459 762 457 762 491 763 457 763 493 763 493 764 457 764 455 764 493 765 455 765 495 765 495 766 455 766 453 766 495 767 453 767 497 767 497 768 453 768 451 768 497 769 451 769 499 769 499 770 451 770 450 770 499 771 450 771 445 771 445 772 450 772 442 772 445 773 442 773 441 773 502 774 503 774 504 774 372 775 505 775 506 775 372 776 506 776 346 776 346 777 506 777 507 777 346 778 507 778 347 778 347 779 507 779 508 779 347 780 508 780 348 780 348 781 508 781 509 781 348 782 509 782 349 782 349 783 509 783 510 783 349 784 510 784 350 784 350 785 510 785 511 785 350 786 511 786 351 786 351 787 511 787 512 787 351 788 512 788 352 788 352 789 512 789 513 789 352 790 513 790 353 790 353 791 513 791 514 791 353 792 514 792 354 792 354 793 514 793 515 793 354 794 515 794 355 794 355 795 515 795 516 795 355 796 516 796 356 796 356 797 516 797 517 797 356 798 517 798 357 798 357 799 517 799 518 799 357 800 518 800 373 800 374 801 373 801 519 801 519 802 373 802 518 802 519 803 518 803 520 803 520 804 518 804 521 804 473 805 474 805 522 805 522 806 523 806 473 806 473 807 523 807 524 807 473 808 524 808 472 808 472 809 524 809 525 809 472 810 525 810 470 810 470 811 525 811 526 811 470 812 526 812 468 812 468 813 526 813 527 813 468 814 527 814 466 814 466 815 527 815 528 815 466 816 528 816 464 816 464 817 528 817 529 817 464 818 529 818 462 818 462 819 529 819 530 819 462 820 530 820 460 820 460 821 530 821 531 821 460 822 531 822 458 822 458 823 531 823 532 823 458 824 532 824 456 824 456 825 532 825 533 825 456 826 533 826 454 826 454 827 533 827 534 827 454 828 534 828 452 828 452 829 534 829 504 829 452 830 504 830 449 830 449 831 504 831 503 831 449 832 503 832 444 832 522 833 521 833 523 833 523 834 521 834 518 834 523 835 518 835 524 835 524 836 518 836 517 836 524 837 517 837 525 837 525 838 517 838 516 838 525 839 516 839 526 839 526 840 516 840 515 840 526 841 515 841 527 841 527 842 515 842 514 842 527 843 514 843 528 843 528 844 514 844 513 844 528 845 513 845 529 845 529 846 513 846 512 846 529 847 512 847 530 847 530 848 512 848 511 848 530 849 511 849 531 849 531 850 511 850 510 850 531 851 510 851 532 851 532 852 510 852 509 852 532 853 509 853 533 853 533 854 509 854 508 854 533 855 508 855 534 855 534 856 508 856 507 856 534 857 507 857 504 857 504 858 507 858 506 858 504 859 506 859 502 859 502 860 506 860 505 860 372 861 371 861 505 861 505 862 371 862 535 862 505 863 535 863 502 863 502 864 535 864 536 864 502 865 536 865 503 865 503 866 536 866 537 866 503 867 537 867 444 867 444 868 537 868 404 868 404 869 538 869 403 869 403 870 538 870 539 870 403 871 539 871 402 871 402 872 539 872 540 872 402 873 540 873 400 873 400 874 540 874 541 874 400 875 541 875 398 875 398 876 541 876 542 876 398 877 542 877 396 877 396 878 542 878 543 878 396 879 543 879 394 879 394 880 543 880 544 880 394 881 544 881 392 881 392 882 544 882 545 882 392 883 545 883 390 883 390 884 545 884 546 884 390 885 546 885 388 885 388 886 546 886 547 886 388 887 547 887 386 887 386 888 547 888 548 888 386 889 548 889 384 889 384 890 548 890 549 890 384 891 549 891 382 891 382 892 549 892 550 892 382 893 550 893 379 893 436 894 379 894 551 894 551 895 379 895 550 895 551 896 550 896 552 896 552 897 550 897 553 897 367 898 375 898 554 898 554 899 555 899 367 899 367 900 555 900 556 900 367 901 556 901 368 901 368 902 556 902 557 902 368 903 557 903 369 903 369 904 557 904 558 904 369 905 558 905 358 905 358 906 558 906 559 906 358 907 559 907 359 907 359 908 559 908 560 908 359 909 560 909 360 909 360 910 560 910 561 910 360 911 561 911 361 911 361 912 561 912 562 912 361 913 562 913 362 913 362 914 562 914 563 914 362 915 563 915 363 915 363 916 563 916 564 916 363 917 564 917 364 917 364 918 564 918 565 918 364 919 565 919 365 919 365 920 565 920 566 920 365 921 566 921 366 921 366 922 566 922 567 922 366 923 567 923 370 923 371 924 370 924 535 924 535 925 370 925 567 925 535 926 567 926 536 926 536 927 567 927 537 927 404 928 537 928 538 928 538 929 537 929 567 929 538 930 567 930 539 930 539 931 567 931 566 931 539 932 566 932 540 932 540 933 566 933 565 933 540 934 565 934 541 934 541 935 565 935 564 935 541 936 564 936 542 936 542 937 564 937 563 937 542 938 563 938 543 938 543 939 563 939 562 939 543 940 562 940 544 940 544 941 562 941 561 941 544 942 561 942 545 942 545 943 561 943 560 943 545 944 560 944 546 944 546 945 560 945 559 945 546 946 559 946 547 946 547 947 559 947 558 947 547 948 558 948 548 948 548 949 558 949 557 949 548 950 557 950 549 950 549 951 557 951 556 951 549 952 556 952 550 952 550 953 556 953 555 953 550 954 555 954 553 954 553 955 555 955 554 955 474 956 436 956 522 956 522 957 436 957 551 957 522 958 551 958 521 958 521 959 551 959 552 959 521 960 552 960 553 960 375 961 374 961 554 961 554 961 374 961 519 961 554 962 519 962 553 962 553 962 519 962 520 962 553 963 520 963 521 963 478 964 435 964 476 964 476 961 435 961 434 961 476 965 434 965 446 965 446 966 434 966 438 966 446 967 438 967 447 967 447 968 438 968 437 968 447 969 437 969 474 969 474 970 437 970 436 970 568 971 569 971 570 971 570 972 569 972 571 972 570 973 571 973 572 973 572 974 571 974 573 974 572 975 573 975 574 975 574 976 573 976 575 976 574 977 575 977 576 977 576 978 575 978 577 978 576 979 577 979 578 979 578 980 577 980 579 980 578 981 579 981 580 981 580 982 579 982 581 982 582 983 494 983 583 983 583 984 494 984 496 984 583 985 496 985 584 985 496 986 498 986 584 986 584 987 498 987 500 987 584 988 500 988 585 988 585 989 500 989 501 989 585 990 501 990 439 990 586 991 486 991 587 991 587 992 486 992 488 992 587 993 488 993 588 993 588 994 488 994 490 994 588 995 490 995 582 995 582 996 490 996 492 996 582 997 492 997 494 997 589 995 590 995 421 995 578 998 580 998 409 998 409 999 580 999 591 999 409 1000 591 1000 439 1000 592 1001 478 1001 593 1001 593 1002 594 1002 592 1002 592 1003 594 1003 595 1003 592 1004 595 1004 596 1004 596 1005 595 1005 597 1005 478 1006 598 1006 435 1006 435 1007 598 1007 599 1007 421 1008 590 1008 419 1008 419 1009 590 1009 600 1009 419 1010 600 1010 417 1010 417 1011 600 1011 601 1011 417 1012 601 1012 415 1012 591 1013 602 1013 439 1013 439 1014 602 1014 603 1014 439 1015 603 1015 585 1015 585 1016 603 1016 597 1016 585 1017 597 1017 604 1017 604 1018 597 1018 595 1018 592 1019 605 1019 478 1019 478 1020 605 1020 568 1020 478 1021 568 1021 598 1021 598 1022 568 1022 570 1022 598 1023 570 1023 572 1023 606 1024 431 1024 599 1024 599 1025 431 1025 433 1025 599 1026 433 1026 435 1026 421 1027 423 1027 589 1027 589 1028 423 1028 425 1028 589 1029 425 1029 607 1029 607 1030 425 1030 427 1030 607 1031 427 1031 606 1031 606 1032 427 1032 429 1032 606 1033 429 1033 431 1033 478 1034 477 1034 593 1034 593 1035 477 1035 480 1035 593 1036 480 1036 608 1036 608 1037 480 1037 482 1037 608 1038 482 1038 586 1038 586 1039 482 1039 484 1039 586 1040 484 1040 486 1040 415 1041 601 1041 413 1041 413 1042 601 1042 609 1042 413 1043 609 1043 411 1043 411 1044 609 1044 610 1044 411 1045 610 1045 408 1045 574 1046 576 1046 611 1046 611 1047 576 1047 578 1047 611 1048 578 1048 610 1048 610 1049 578 1049 409 1049 610 1050 409 1050 408 1050 574 1051 611 1051 572 1051 572 1052 611 1052 612 1052 572 1053 612 1053 598 1053 591 1054 613 1054 602 1054 602 1055 613 1055 614 1055 602 1056 614 1056 603 1056 603 1057 614 1057 615 1057 603 1058 615 1058 597 1058 597 1059 615 1059 616 1059 597 1060 616 1060 596 1060 596 1061 616 1061 617 1061 596 1062 617 1062 592 1062 592 1063 617 1063 618 1063 592 1064 618 1064 605 1064 605 1065 618 1065 619 1065 620 1066 571 1066 621 1066 621 1067 571 1067 569 1067 621 1068 569 1068 622 1068 622 1069 569 1069 619 1069 622 1070 619 1070 623 1070 623 1071 619 1071 624 1071 625 1072 614 1072 626 1072 626 1073 614 1073 613 1073 626 1074 613 1074 627 1074 627 1069 613 1069 581 1069 627 1075 581 1075 628 1075 628 1076 581 1076 629 1076 619 1077 618 1077 624 1077 624 1078 618 1078 617 1078 624 1079 617 1079 630 1079 630 1080 617 1080 616 1080 630 1081 616 1081 625 1081 625 1082 616 1082 615 1082 625 1083 615 1083 614 1083 581 1084 579 1084 629 1084 629 1085 579 1085 577 1085 629 1086 577 1086 631 1086 631 1087 577 1087 575 1087 631 1088 575 1088 620 1088 620 1089 575 1089 573 1089 620 1090 573 1090 571 1090 626 1091 297 1091 299 1091 621 1092 276 1092 274 1092 624 1093 630 1093 262 1093 262 1094 630 1094 632 1094 262 1095 632 1095 268 1095 268 1096 632 1096 633 1096 268 1097 633 1097 634 1097 633 1098 635 1098 634 1098 634 1099 635 1099 636 1099 634 1100 636 1100 637 1100 266 1101 261 1101 622 1101 638 1102 259 1102 639 1102 639 1103 259 1103 637 1103 639 1104 637 1104 640 1104 640 1105 637 1105 636 1105 622 1106 623 1106 266 1106 266 1107 623 1107 624 1107 266 1108 624 1108 264 1108 264 1109 624 1109 262 1109 641 1110 642 1110 638 1110 638 1111 642 1111 279 1111 638 1112 279 1112 277 1112 276 1113 621 1113 277 1113 277 1114 621 1114 622 1114 277 1115 622 1115 638 1115 638 1116 622 1116 261 1116 638 1117 261 1117 259 1117 641 1118 643 1118 642 1118 642 1119 643 1119 644 1119 642 1120 644 1120 645 1120 644 1121 646 1121 645 1121 645 1122 646 1122 647 1122 645 1123 647 1123 270 1123 270 1124 647 1124 648 1124 270 1125 648 1125 272 1125 272 1126 648 1126 631 1126 272 1127 631 1127 274 1127 274 1128 631 1128 620 1128 274 1129 620 1129 621 1129 629 1130 631 1130 288 1130 288 1131 631 1131 648 1131 288 1132 648 1132 290 1132 290 1133 648 1133 649 1133 290 1134 649 1134 650 1134 649 1135 651 1135 650 1135 650 1136 651 1136 652 1136 650 1137 652 1137 653 1137 285 1138 283 1138 627 1138 654 1139 281 1139 655 1139 655 1140 281 1140 653 1140 655 1141 653 1141 656 1141 656 1142 653 1142 652 1142 627 1143 628 1143 285 1143 285 1144 628 1144 629 1144 285 1145 629 1145 287 1145 287 1146 629 1146 288 1146 657 1147 658 1147 654 1147 654 1148 658 1148 301 1148 654 1149 301 1149 295 1149 297 1150 626 1150 295 1150 295 1151 626 1151 627 1151 295 1152 627 1152 654 1152 654 1153 627 1153 283 1153 654 1154 283 1154 281 1154 657 1155 659 1155 658 1155 658 1156 659 1156 660 1156 658 1157 660 1157 661 1157 660 1158 662 1158 661 1158 661 1159 662 1159 663 1159 661 1160 663 1160 292 1160 292 1161 663 1161 632 1161 292 1162 632 1162 294 1162 294 1163 632 1163 630 1163 294 1164 630 1164 299 1164 299 1165 630 1165 625 1165 299 1166 625 1166 626 1166 664 1167 665 1167 666 1167 666 1168 665 1168 667 1168 666 1169 667 1169 668 1169 668 1170 667 1170 669 1170 668 1171 669 1171 670 1171 670 1172 669 1172 671 1172 670 1173 671 1173 672 1173 672 1174 671 1174 673 1174 672 1175 673 1175 674 1175 674 1176 673 1176 675 1176 674 1177 675 1177 676 1177 676 1178 675 1178 677 1178 676 1179 677 1179 678 1179 678 1180 677 1180 679 1180 678 1181 679 1181 680 1181 680 1182 679 1182 681 1182 680 1183 681 1183 682 1183 682 1184 681 1184 683 1184 682 1185 683 1185 684 1185 684 1186 683 1186 685 1186 684 1187 685 1187 686 1187 686 1188 685 1188 687 1188 686 1189 687 1189 688 1189 688 1190 687 1190 689 1190 688 1191 689 1191 690 1191 690 1192 689 1192 691 1192 690 1193 691 1193 664 1193 664 1194 691 1194 665 1194 659 1195 692 1195 660 1195 660 1196 692 1196 693 1196 660 1197 693 1197 662 1197 662 1198 693 1198 663 1198 663 1199 693 1199 694 1199 663 1200 694 1200 632 1200 632 1201 694 1201 695 1201 632 1202 695 1202 633 1202 633 1203 695 1203 635 1203 635 1204 695 1204 696 1204 635 1205 696 1205 636 1205 636 1206 696 1206 640 1206 640 1207 696 1207 697 1207 640 1208 697 1208 639 1208 639 1209 697 1209 698 1209 639 1210 698 1210 638 1210 638 1211 698 1211 699 1211 638 1212 699 1212 641 1212 700 1213 644 1213 699 1213 699 1214 644 1214 643 1214 699 1215 643 1215 641 1215 701 1216 648 1216 702 1216 702 1217 648 1217 647 1217 702 1218 647 1218 700 1218 700 1219 647 1219 646 1219 700 1220 646 1220 644 1220 703 1221 651 1221 701 1221 701 1222 651 1222 649 1222 701 1223 649 1223 648 1223 659 1224 657 1224 692 1224 692 1225 657 1225 654 1225 692 1226 654 1226 704 1226 704 1227 654 1227 655 1227 704 1228 655 1228 705 1228 705 1229 655 1229 656 1229 705 1230 656 1230 703 1230 703 1231 656 1231 652 1231 703 1232 652 1232 651 1232 704 1233 706 1233 692 1233 692 1234 706 1234 707 1234 692 1235 707 1235 693 1235 693 1236 707 1236 708 1236 693 1237 708 1237 694 1237 694 1238 708 1238 709 1238 694 1239 709 1239 695 1239 695 1240 709 1240 710 1240 695 1241 710 1241 696 1241 696 1242 710 1242 711 1242 696 1243 711 1243 697 1243 697 1244 711 1244 712 1244 697 1245 712 1245 698 1245 698 1246 712 1246 713 1246 698 1247 713 1247 699 1247 699 1248 713 1248 714 1248 699 1249 714 1249 700 1249 700 1250 714 1250 715 1250 700 1251 715 1251 702 1251 702 1252 715 1252 716 1252 702 1253 716 1253 701 1253 701 1254 716 1254 717 1254 701 1255 717 1255 703 1255 703 1256 717 1256 718 1256 703 1257 718 1257 705 1257 705 1258 718 1258 719 1258 705 1259 719 1259 704 1259 704 1260 719 1260 706 1260 706 1261 664 1261 707 1261 707 1262 664 1262 666 1262 707 1263 666 1263 708 1263 708 1264 666 1264 668 1264 708 1265 668 1265 709 1265 709 1266 668 1266 670 1266 709 1267 670 1267 710 1267 710 1268 670 1268 672 1268 710 1269 672 1269 711 1269 711 1270 672 1270 674 1270 711 1271 674 1271 712 1271 712 1272 674 1272 676 1272 712 1273 676 1273 713 1273 713 1274 676 1274 678 1274 713 1275 678 1275 714 1275 714 1276 678 1276 680 1276 714 1277 680 1277 715 1277 715 1278 680 1278 682 1278 715 1279 682 1279 716 1279 716 1280 682 1280 684 1280 716 1281 684 1281 717 1281 717 1282 684 1282 686 1282 717 1283 686 1283 718 1283 718 1284 686 1284 688 1284 718 1285 688 1285 719 1285 719 1286 688 1286 690 1286 719 1287 690 1287 706 1287 706 1288 690 1288 664 1288 720 1289 721 1289 722 1289 722 1290 721 1290 723 1290 722 1291 723 1291 724 1291 725 1292 726 1292 722 1292 722 1293 726 1293 727 1293 722 1294 727 1294 720 1294 728 1295 729 1295 722 1295 722 1296 729 1296 730 1296 722 1297 730 1297 725 1297 724 1298 731 1298 722 1298 722 1299 731 1299 732 1299 722 1300 732 1300 728 1300 723 1301 733 1301 724 1301 724 1302 733 1302 734 1302 724 1303 734 1303 731 1303 731 1304 734 1304 735 1304 731 1305 735 1305 732 1305 732 1306 735 1306 736 1306 732 1307 736 1307 728 1307 728 1308 736 1308 737 1308 728 1309 737 1309 729 1309 729 1310 737 1310 738 1310 729 1311 738 1311 730 1311 730 1312 738 1312 739 1312 730 1313 739 1313 725 1313 725 1314 739 1314 740 1314 725 1315 740 1315 726 1315 726 1316 740 1316 741 1316 726 1317 741 1317 727 1317 727 1318 741 1318 742 1318 727 1319 742 1319 720 1319 720 1320 742 1320 743 1320 720 1321 743 1321 721 1321 721 1322 743 1322 744 1322 721 1323 744 1323 723 1323 723 1324 744 1324 733 1324 741 1325 669 1325 742 1325 742 1326 669 1326 667 1326 742 1327 667 1327 743 1327 743 1328 667 1328 665 1328 743 1329 665 1329 744 1329 744 1330 665 1330 691 1330 744 1331 691 1331 733 1331 733 1332 691 1332 689 1332 733 1333 689 1333 734 1333 734 1334 689 1334 687 1334 734 1335 687 1335 735 1335 687 1336 685 1336 735 1336 735 1337 685 1337 683 1337 735 1338 683 1338 736 1338 736 1339 683 1339 681 1339 736 1340 681 1340 737 1340 737 1341 681 1341 679 1341 737 1342 679 1342 738 1342 738 1343 679 1343 677 1343 738 1344 677 1344 739 1344 739 1345 677 1345 675 1345 739 1346 675 1346 740 1346 740 1347 675 1347 673 1347 740 1348 673 1348 741 1348 741 1349 673 1349 671 1349 741 1350 671 1350 669 1350 745 1351 746 1351 747 1351 745 1352 747 1352 748 1352 748 1353 747 1353 749 1353 748 1354 749 1354 750 1354 751 1355 752 1355 753 1355 751 1356 753 1356 754 1356 755 1357 756 1357 757 1357 757 1358 756 1358 758 1358 757 1359 758 1359 759 1359 759 1360 758 1360 748 1360 759 1361 748 1361 753 1361 753 1362 748 1362 750 1362 753 1363 750 1363 754 1363 760 1364 761 1364 762 1364 763 1365 764 1365 765 1365 763 1366 765 1366 766 1366 766 1367 765 1367 767 1367 766 1368 767 1368 768 1368 768 1369 767 1369 769 1369 768 1370 769 1370 770 1370 770 1371 769 1371 771 1371 770 1372 771 1372 772 1372 772 1373 771 1373 773 1373 772 1374 773 1374 774 1374 774 1375 773 1375 775 1375 774 1376 775 1376 776 1376 776 1377 775 1377 777 1377 776 1378 777 1378 778 1378 778 1379 777 1379 779 1379 778 1380 779 1380 780 1380 780 1381 779 1381 781 1381 780 1382 781 1382 782 1382 782 1383 781 1383 783 1383 782 1384 783 1384 784 1384 784 1385 783 1385 785 1385 784 1386 785 1386 786 1386 786 1387 785 1387 762 1387 786 1388 762 1388 787 1388 787 1389 762 1389 761 1389 787 1390 761 1390 788 1390 789 1391 790 1391 760 1391 791 1392 792 1392 790 1392 790 1393 789 1393 791 1393 791 1394 789 1394 793 1394 791 1395 793 1395 794 1395 794 1396 793 1396 795 1396 794 1397 795 1397 796 1397 796 1398 795 1398 797 1398 796 1399 797 1399 798 1399 798 1400 797 1400 799 1400 798 1401 799 1401 800 1401 800 1402 799 1402 801 1402 800 1403 801 1403 802 1403 802 1404 801 1404 803 1404 802 1405 803 1405 804 1405 804 1406 803 1406 805 1406 804 1407 805 1407 806 1407 806 1408 805 1408 807 1408 806 1409 807 1409 808 1409 808 1410 807 1410 809 1410 808 1411 809 1411 810 1411 810 1412 809 1412 811 1412 810 1413 811 1413 812 1413 812 1414 811 1414 813 1414 812 1415 813 1415 814 1415 814 1416 813 1416 815 1416 814 1417 815 1417 816 1417 816 1418 815 1418 753 1418 816 1419 753 1419 752 1419 763 1420 755 1420 764 1420 764 1421 755 1421 757 1421 764 1422 757 1422 759 1422 760 1423 762 1423 789 1423 789 1424 762 1424 785 1424 789 1425 785 1425 793 1425 793 1426 785 1426 783 1426 793 1427 783 1427 795 1427 795 1428 783 1428 781 1428 795 1429 781 1429 797 1429 797 1430 781 1430 779 1430 797 1431 779 1431 799 1431 799 1432 779 1432 777 1432 799 1433 777 1433 801 1433 801 1434 777 1434 775 1434 801 1435 775 1435 803 1435 803 1436 775 1436 773 1436 803 1437 773 1437 805 1437 805 1438 773 1438 771 1438 805 1439 771 1439 807 1439 807 1440 771 1440 769 1440 807 1441 769 1441 809 1441 809 1442 769 1442 767 1442 809 1443 767 1443 811 1443 811 1444 767 1444 765 1444 811 1445 765 1445 813 1445 813 1446 765 1446 764 1446 813 1447 764 1447 815 1447 815 1448 764 1448 759 1448 815 1449 759 1449 753 1449 817 1450 818 1450 819 1450 819 1451 818 1451 820 1451 819 1452 820 1452 821 1452 821 1453 820 1453 822 1453 821 1454 822 1454 823 1454 823 1455 822 1455 824 1455 823 1456 824 1456 825 1456 825 1457 824 1457 826 1457 825 1458 826 1458 827 1458 827 1459 826 1459 828 1459 827 1460 828 1460 829 1460 829 1461 828 1461 830 1461 829 1462 830 1462 831 1462 831 1463 830 1463 832 1463 831 1464 832 1464 833 1464 833 1465 832 1465 834 1465 833 1466 834 1466 835 1466 835 1467 834 1467 836 1467 835 1468 836 1468 837 1468 837 1469 836 1469 838 1469 839 1470 840 1470 838 1470 838 1471 840 1471 837 1471 840 1472 839 1472 841 1472 841 1473 839 1473 842 1473 841 1474 842 1474 843 1474 843 1475 842 1475 844 1475 843 1476 844 1476 845 1476 845 1477 844 1477 846 1477 845 1478 846 1478 847 1478 847 1479 846 1479 848 1479 847 1480 848 1480 849 1480 849 1481 848 1481 850 1481 849 1482 850 1482 851 1482 851 1483 850 1483 852 1483 851 1484 852 1484 853 1484 853 1485 852 1485 854 1485 853 1486 854 1486 855 1486 855 1487 854 1487 856 1487 855 1488 856 1488 857 1488 857 1489 856 1489 858 1489 857 1490 858 1490 859 1490 859 1491 858 1491 860 1491 818 1492 817 1492 860 1492 860 1493 817 1493 859 1493 851 1494 861 1494 849 1494 849 1495 861 1495 862 1495 863 1496 823 1496 864 1496 864 1497 823 1497 825 1497 864 1498 825 1498 865 1498 865 1499 825 1499 827 1499 865 1500 827 1500 829 1500 866 1501 845 1501 862 1501 862 1502 845 1502 847 1502 862 1503 847 1503 849 1503 863 1504 867 1504 823 1504 823 1505 867 1505 868 1505 823 1506 868 1506 821 1506 821 1507 868 1507 869 1507 821 1508 869 1508 819 1508 819 1509 869 1509 870 1509 819 1510 870 1510 817 1510 817 1511 870 1511 871 1511 817 1512 871 1512 859 1512 859 1513 871 1513 872 1513 859 1514 872 1514 857 1514 857 1515 872 1515 873 1515 857 1516 873 1516 855 1516 855 1517 873 1517 874 1517 855 1518 874 1518 853 1518 853 1519 874 1519 875 1519 853 1520 875 1520 851 1520 851 1521 875 1521 876 1521 851 1522 876 1522 861 1522 861 1523 876 1523 877 1523 878 1524 865 1524 879 1524 879 1525 865 1525 829 1525 879 1526 829 1526 880 1526 880 1527 829 1527 831 1527 880 1528 831 1528 881 1528 881 1529 831 1529 833 1529 881 1530 833 1530 882 1530 882 1531 833 1531 835 1531 882 1532 835 1532 883 1532 883 1533 835 1533 837 1533 883 1512 837 1512 884 1512 884 1534 837 1534 840 1534 884 1535 840 1535 885 1535 885 1536 840 1536 841 1536 885 1537 841 1537 886 1537 886 1538 841 1538 843 1538 886 1539 843 1539 887 1539 887 1540 843 1540 845 1540 887 1541 845 1541 888 1541 888 1542 845 1542 866 1542 864 456 865 456 889 456 889 456 865 456 890 456 865 1543 878 1543 890 1543 890 1544 878 1544 891 1544 883 1545 892 1545 893 1545 883 1546 893 1546 882 1546 882 1547 893 1547 894 1547 882 1548 894 1548 881 1548 881 1549 894 1549 895 1549 881 1550 895 1550 880 1550 880 1551 895 1551 896 1551 880 1552 896 1552 879 1552 879 1553 896 1553 891 1553 879 1554 891 1554 878 1554 883 1555 884 1555 892 1555 892 1556 884 1556 897 1556 866 1557 898 1557 899 1557 866 1558 899 1558 888 1558 888 1559 899 1559 900 1559 888 1560 900 1560 887 1560 887 1561 900 1561 901 1561 887 1562 901 1562 886 1562 886 1563 901 1563 902 1563 886 1564 902 1564 885 1564 885 1565 902 1565 897 1565 885 1566 897 1566 884 1566 898 1567 866 1567 903 1567 903 1543 866 1543 862 1543 903 1568 862 1568 904 1568 904 1569 862 1569 861 1569 904 1570 861 1570 905 1570 905 1571 861 1571 877 1571 872 1572 906 1572 907 1572 872 1573 907 1573 873 1573 873 1574 907 1574 908 1574 873 1575 908 1575 874 1575 874 1576 908 1576 909 1576 874 1577 909 1577 875 1577 875 1578 909 1578 910 1578 875 1579 910 1579 876 1579 876 1580 910 1580 905 1580 876 1581 905 1581 877 1581 911 1582 912 1582 913 1582 913 1583 912 1583 914 1583 913 456 914 456 915 456 915 1584 914 1584 916 1584 915 1585 916 1585 917 1585 917 456 916 456 918 456 917 1586 918 1586 919 1586 919 456 918 456 920 456 919 1587 920 1587 921 1587 921 456 920 456 922 456 923 456 924 456 925 456 925 1588 924 1588 926 1588 925 456 926 456 927 456 927 1589 926 1589 928 1589 927 456 928 456 922 456 922 1590 928 1590 929 1590 922 456 929 456 921 456 923 1591 930 1591 924 1591 924 1592 930 1592 931 1592 924 1593 931 1593 911 1593 911 1592 931 1592 932 1592 911 1594 932 1594 912 1594 933 1595 926 1595 934 1595 934 1596 926 1596 924 1596 935 439 936 439 937 439 936 439 938 439 937 439 937 1597 938 1597 939 1597 937 1598 939 1598 934 1598 937 439 940 439 935 439 935 1599 940 1599 941 1599 935 439 941 439 942 439 942 1600 941 1600 943 1600 942 439 943 439 944 439 939 439 945 439 934 439 934 1601 945 1601 946 1601 934 439 946 439 933 439 933 1602 946 1602 947 1602 933 439 947 439 948 439 948 1603 947 1603 949 1603 948 1604 949 1604 950 1604 950 1605 949 1605 951 1605 950 1606 951 1606 952 1606 952 439 951 439 953 439 952 439 953 439 954 439 954 439 953 439 944 439 954 439 944 439 955 439 955 1607 944 1607 943 1607 924 1608 956 1608 934 1608 934 1609 956 1609 906 1609 934 1610 906 1610 937 1610 937 1611 906 1611 872 1611 937 1612 872 1612 911 1612 911 1613 872 1613 871 1613 911 1614 871 1614 924 1614 924 1615 871 1615 956 1615 863 1616 957 1616 958 1616 863 1617 958 1617 867 1617 867 1618 958 1618 959 1618 867 1619 959 1619 868 1619 868 1620 959 1620 960 1620 868 1621 960 1621 869 1621 869 1622 960 1622 961 1622 869 1623 961 1623 870 1623 870 1624 961 1624 956 1624 870 1625 956 1625 871 1625 863 1626 864 1626 957 1626 957 1570 864 1570 889 1570 957 1627 889 1627 958 1627 958 1628 889 1628 962 1628 891 1629 963 1629 890 1629 890 1630 963 1630 964 1630 890 1631 964 1631 889 1631 889 1632 964 1632 965 1632 889 1633 965 1633 962 1633 898 1634 903 1634 899 1634 899 1635 903 1635 966 1635 905 1636 967 1636 904 1636 904 1637 967 1637 968 1637 904 1638 968 1638 903 1638 903 1639 968 1639 969 1639 903 1640 969 1640 966 1640 905 1641 910 1641 967 1641 967 1642 910 1642 909 1642 967 1643 909 1643 970 1643 970 1644 909 1644 908 1644 970 1645 908 1645 971 1645 971 1646 908 1646 907 1646 971 1647 907 1647 972 1647 972 1648 907 1648 906 1648 972 1649 906 1649 973 1649 973 1650 906 1650 956 1650 973 1651 956 1651 974 1651 974 1652 956 1652 961 1652 974 1653 961 1653 975 1653 975 1654 961 1654 960 1654 975 1655 960 1655 962 1655 962 1656 960 1656 959 1656 962 1657 959 1657 958 1657 891 1658 896 1658 963 1658 963 1659 896 1659 895 1659 963 1660 895 1660 976 1660 976 1661 895 1661 894 1661 976 1662 894 1662 977 1662 977 1663 894 1663 893 1663 977 1664 893 1664 978 1664 978 1665 893 1665 892 1665 978 1666 892 1666 979 1666 979 1667 892 1667 897 1667 979 1668 897 1668 980 1668 980 1669 897 1669 902 1669 980 1670 902 1670 981 1670 981 1671 902 1671 901 1671 981 1672 901 1672 966 1672 966 1673 901 1673 900 1673 966 1674 900 1674 899 1674 978 1675 982 1675 977 1675 977 1676 982 1676 983 1676 977 1677 983 1677 976 1677 976 1678 983 1678 984 1678 976 1679 984 1679 963 1679 963 1680 984 1680 985 1680 963 1681 985 1681 964 1681 964 1682 985 1682 986 1682 964 439 986 439 965 439 965 439 986 439 987 439 965 1683 987 1683 962 1683 962 1684 987 1684 988 1684 962 1685 988 1685 975 1685 975 1686 988 1686 989 1686 975 1687 989 1687 974 1687 974 1688 989 1688 990 1688 974 1689 990 1689 973 1689 973 1690 990 1690 991 1690 992 1691 972 1691 991 1691 991 1692 972 1692 973 1692 972 1693 992 1693 971 1693 971 1694 992 1694 993 1694 971 1695 993 1695 970 1695 970 1696 993 1696 994 1696 970 1697 994 1697 967 1697 967 1698 994 1698 995 1698 967 1699 995 1699 968 1699 968 1700 995 1700 996 1700 968 1701 996 1701 969 1701 969 1702 996 1702 997 1702 969 1703 997 1703 966 1703 966 1704 997 1704 998 1704 966 1705 998 1705 981 1705 981 1706 998 1706 999 1706 981 1707 999 1707 980 1707 980 1708 999 1708 1000 1708 980 1709 1000 1709 979 1709 979 1710 1000 1710 1001 1710 982 1711 978 1711 1001 1711 1001 1712 978 1712 979 1712 1002 1713 1003 1713 1004 1713 1004 1714 1003 1714 1005 1714 1006 1715 1007 1715 1008 1715 1009 1716 1010 1716 1011 1716 1002 1717 1004 1717 1012 1717 1012 1718 1004 1718 1013 1718 1012 1719 1013 1719 1014 1719 1011 1720 1010 1720 1013 1720 1013 1721 1010 1721 1015 1721 1013 1722 1015 1722 1014 1722 1009 1723 1011 1723 1016 1723 1016 1724 1011 1724 1017 1724 1016 1725 1017 1725 1018 1725 1008 1726 1007 1726 1017 1726 1017 1727 1007 1727 1019 1727 1017 1728 1019 1728 1018 1728 1006 1729 1008 1729 1020 1729 1020 1730 1008 1730 1021 1730 1020 1731 1021 1731 1022 1731 1022 1732 1021 1732 1023 1732 1023 1733 1021 1733 1024 1733 1023 1734 1024 1734 1025 1734 1026 1735 1027 1735 1028 1735 1026 1736 1028 1736 1024 1736 1024 1737 1028 1737 1029 1737 1024 1738 1029 1738 1025 1738 1027 1739 1026 1739 1030 1739 1030 1740 1026 1740 1031 1740 1030 1741 1031 1741 1032 1741 1033 1742 1034 1742 1031 1742 1031 1743 1034 1743 1035 1743 1031 1744 1035 1744 1032 1744 1036 1745 1034 1745 1037 1745 1037 1692 1034 1692 1033 1692 1033 1746 982 1746 1037 1746 1037 1747 982 1747 1001 1747 1037 1748 1001 1748 1038 1748 1038 1749 1001 1749 1000 1749 1038 1750 1000 1750 1039 1750 1039 1751 1000 1751 999 1751 1039 1752 999 1752 1040 1752 1040 1753 999 1753 998 1753 1040 1754 998 1754 1041 1754 1041 1755 998 1755 997 1755 1041 1756 997 1756 1042 1756 1042 1757 997 1757 996 1757 1042 1758 996 1758 1043 1758 1043 1759 996 1759 995 1759 1043 1760 995 1760 1044 1760 1044 1761 995 1761 994 1761 1044 1762 994 1762 1045 1762 1045 1763 994 1763 993 1763 1045 1764 993 1764 1005 1764 1005 1765 993 1765 992 1765 1005 1766 992 1766 1004 1766 1004 1767 992 1767 991 1767 1004 1768 991 1768 1013 1768 1013 1769 991 1769 990 1769 1013 1770 990 1770 1011 1770 1011 1771 990 1771 989 1771 1011 1772 989 1772 1017 1772 1017 1773 989 1773 988 1773 1017 1774 988 1774 1008 1774 1008 1775 988 1775 987 1775 1008 1776 987 1776 1021 1776 1021 1777 987 1777 986 1777 1021 1778 986 1778 1024 1778 1024 1779 986 1779 985 1779 1024 1780 985 1780 1026 1780 1026 1781 985 1781 984 1781 1026 1782 984 1782 1031 1782 1031 1783 984 1783 983 1783 1031 1784 983 1784 1033 1784 1033 1785 983 1785 982 1785 1046 1786 1047 1786 1039 1786 1036 1787 1037 1787 1048 1787 1048 1788 1037 1788 1038 1788 1048 1789 1038 1789 1049 1789 1039 1790 1047 1790 1038 1790 1038 1791 1047 1791 1050 1791 1038 1792 1050 1792 1049 1792 1046 1793 1039 1793 1051 1793 1051 1794 1039 1794 1040 1794 1051 1795 1040 1795 1052 1795 1042 1796 1053 1796 1054 1796 1042 1797 1054 1797 1041 1797 1054 1798 1055 1798 1041 1798 1041 1799 1055 1799 1056 1799 1041 1800 1056 1800 1040 1800 1040 1801 1056 1801 1057 1801 1040 1802 1057 1802 1052 1802 1053 1803 1042 1803 1058 1803 1058 1804 1042 1804 1043 1804 1058 1805 1043 1805 1059 1805 1044 1806 1060 1806 1061 1806 1044 1807 1061 1807 1043 1807 1043 1808 1061 1808 1062 1808 1043 1809 1062 1809 1059 1809 1060 1810 1044 1810 1063 1810 1063 1811 1044 1811 1045 1811 1063 1812 1045 1812 1064 1812 1005 1813 1003 1813 1045 1813 1045 1814 1003 1814 1065 1814 1045 1815 1065 1815 1064 1815 763 1816 766 1816 1066 1816 774 1817 776 1817 1067 1817 787 1818 1068 1818 786 1818 786 1819 1068 1819 1069 1819 786 1820 1069 1820 784 1820 784 1821 1069 1821 1070 1821 784 1822 1070 1822 782 1822 782 1823 1070 1823 1071 1823 782 1824 1071 1824 780 1824 1067 1825 776 1825 1072 1825 1072 1826 776 1826 778 1826 1072 1827 778 1827 1073 1827 1074 1828 1075 1828 772 1828 772 1829 1075 1829 770 1829 770 1830 1075 1830 1076 1830 770 1831 1076 1831 768 1831 1066 1832 766 1832 1077 1832 1078 1833 755 1833 763 1833 1068 1834 1079 1834 1069 1834 1069 1835 1079 1835 1080 1835 1069 1836 1080 1836 1070 1836 1070 1837 1080 1837 1081 1837 1070 1838 1081 1838 1071 1838 1082 1839 1083 1839 1073 1839 1073 1840 1083 1840 1072 1840 1072 1841 1083 1841 1084 1841 1072 1842 1084 1842 1067 1842 1085 1843 1086 1843 1074 1843 1074 1844 1086 1844 1075 1844 1075 1845 1086 1845 1087 1845 1075 1846 1087 1846 1076 1846 1088 1847 1066 1847 1089 1847 1089 1848 1066 1848 1077 1848 1089 1849 1077 1849 1090 1849 1036 1850 1079 1850 1091 1850 1091 1851 1079 1851 1068 1851 1091 1852 1068 1852 1092 1852 1092 1853 1068 1853 787 1853 1092 1854 787 1854 788 1854 1036 1855 1048 1855 1079 1855 1079 1856 1048 1856 1049 1856 1079 1857 1049 1857 1080 1857 1080 1858 1049 1858 1050 1858 1080 1859 1050 1859 1081 1859 1081 1860 1050 1860 1047 1860 1047 1861 1046 1861 1081 1861 1081 1862 1046 1862 1082 1862 1081 1863 1082 1863 1071 1863 1071 1864 1082 1864 1073 1864 1071 1865 1073 1865 780 1865 780 1866 1073 1866 778 1866 1046 1867 1051 1867 1082 1867 1082 1868 1051 1868 1052 1868 1082 1869 1052 1869 1083 1869 1083 1870 1052 1870 1057 1870 1083 1871 1057 1871 1084 1871 1084 1872 1057 1872 1056 1872 1056 1873 1055 1873 1084 1873 1084 1874 1055 1874 1085 1874 1084 1875 1085 1875 1067 1875 1067 1876 1085 1876 1074 1876 1067 1877 1074 1877 774 1877 774 1878 1074 1878 772 1878 1055 1879 1054 1879 1085 1879 1085 1880 1054 1880 1053 1880 1085 1881 1053 1881 1086 1881 1086 1882 1053 1882 1058 1882 1086 1883 1058 1883 1087 1883 1087 1884 1058 1884 1059 1884 1059 1885 1062 1885 1087 1885 1087 1886 1062 1886 1090 1886 1087 1887 1090 1887 1076 1887 1076 1888 1090 1888 1077 1888 1076 1889 1077 1889 768 1889 768 1890 1077 1890 766 1890 1062 1891 1061 1891 1090 1891 1090 1892 1061 1892 1060 1892 1090 1893 1060 1893 1089 1893 1089 1894 1060 1894 1063 1894 1089 1895 1063 1895 1088 1895 1088 1896 1063 1896 1064 1896 1088 1897 1064 1897 1065 1897 763 1898 1066 1898 1078 1898 1078 1899 1066 1899 1088 1899 1078 1900 1088 1900 1093 1900 1093 1901 1088 1901 1065 1901 1093 1902 1065 1902 1003 1902 756 1903 755 1903 1078 1903 756 1903 1078 1903 1094 1903 1094 1904 1078 1904 1093 1904 1094 1905 1093 1905 1095 1905 1095 1906 1093 1906 1003 1906 1095 1906 1003 1906 1002 1906 1096 1907 1097 1907 1098 1907 1099 1908 1100 1908 1101 1908 1102 1909 1103 1909 1104 1909 1104 1910 1103 1910 1105 1910 1104 1911 1105 1911 1106 1911 1106 1912 1105 1912 1107 1912 1106 1913 1107 1913 1108 1913 1108 1914 1107 1914 1109 1914 1108 1915 1109 1915 1110 1915 1101 1916 1100 1916 1111 1916 1111 1917 1100 1917 1112 1917 1111 1918 1112 1918 1113 1918 1114 1919 1115 1919 1116 1919 1116 1920 1115 1920 1117 1920 1117 1921 1115 1921 1118 1921 1117 1922 1118 1922 1119 1922 1098 1923 1097 1923 1120 1923 1121 1924 1122 1924 1096 1924 1103 1925 1123 1925 1105 1925 1105 1926 1123 1926 1124 1926 1105 1927 1124 1927 1107 1927 1107 1928 1124 1928 1125 1928 1107 1929 1125 1929 1109 1929 1126 1930 1127 1930 1113 1930 1113 1931 1127 1931 1111 1931 1111 1932 1127 1932 1128 1932 1111 1933 1128 1933 1101 1933 1129 1934 1130 1934 1114 1934 1114 1935 1130 1935 1115 1935 1115 1936 1130 1936 1131 1936 1115 1937 1131 1937 1118 1937 1132 1938 1098 1938 1133 1938 1133 1939 1098 1939 1120 1939 1133 1940 1120 1940 1134 1940 1002 1941 1123 1941 1095 1941 1095 1942 1123 1942 1103 1942 1095 1943 1103 1943 1094 1943 1094 1944 1103 1944 1102 1944 1094 1945 1102 1945 756 1945 1002 1946 1012 1946 1123 1946 1123 1947 1012 1947 1014 1947 1123 1948 1014 1948 1124 1948 1124 1949 1014 1949 1015 1949 1124 1950 1015 1950 1125 1950 1125 1951 1015 1951 1010 1951 1010 1952 1009 1952 1125 1952 1125 1953 1009 1953 1126 1953 1125 1954 1126 1954 1109 1954 1109 1955 1126 1955 1113 1955 1109 1956 1113 1956 1110 1956 1110 1957 1113 1957 1112 1957 1009 1958 1016 1958 1126 1958 1126 1959 1016 1959 1018 1959 1126 1960 1018 1960 1127 1960 1127 1961 1018 1961 1019 1961 1127 1962 1019 1962 1128 1962 1128 1963 1019 1963 1007 1963 1007 1964 1006 1964 1128 1964 1128 1965 1006 1965 1129 1965 1128 1966 1129 1966 1101 1966 1101 1967 1129 1967 1114 1967 1101 1968 1114 1968 1099 1968 1099 1969 1114 1969 1116 1969 1006 1970 1020 1970 1129 1970 1129 1971 1020 1971 1022 1971 1129 1972 1022 1972 1130 1972 1130 1973 1022 1973 1023 1973 1130 1974 1023 1974 1131 1974 1131 1975 1023 1975 1025 1975 1025 1976 1029 1976 1131 1976 1131 1977 1029 1977 1134 1977 1131 1978 1134 1978 1118 1978 1118 1979 1134 1979 1120 1979 1118 1980 1120 1980 1119 1980 1119 1981 1120 1981 1097 1981 1029 1982 1028 1982 1134 1982 1134 1983 1028 1983 1027 1983 1134 1984 1027 1984 1133 1984 1133 1985 1027 1985 1030 1985 1133 1986 1030 1986 1132 1986 1132 1987 1030 1987 1032 1987 1132 1988 1032 1988 1035 1988 1096 1989 1098 1989 1121 1989 1121 1990 1098 1990 1132 1990 1121 1991 1132 1991 1135 1991 1135 1992 1132 1992 1035 1992 1135 1993 1035 1993 1034 1993 788 1994 1122 1994 1121 1994 788 1995 1121 1995 1092 1995 1092 1996 1121 1996 1135 1996 1092 1997 1135 1997 1091 1997 1091 1998 1135 1998 1034 1998 1091 1998 1034 1998 1036 1998 792 1999 1136 1999 790 1999 790 2000 1136 2000 1137 2000 1138 2001 1139 2001 1140 2001 1140 2002 1139 2002 1141 2002 1140 2003 1141 2003 1142 2003 1137 2004 1138 2004 790 2004 790 2005 1138 2005 1140 2005 790 2006 1140 2006 760 2006 760 2007 1140 2007 1143 2007 760 2008 1143 2008 761 2008 761 2009 1143 2009 1144 2009 761 2010 1144 2010 788 2010 788 2010 1144 2010 1122 2010 748 2011 758 2011 1145 2011 1096 2012 1146 2012 1147 2012 1096 2013 1147 2013 1097 2013 1097 2014 1147 2014 1148 2014 1097 2015 1148 2015 1119 2015 1119 2016 1148 2016 1149 2016 1119 2017 1149 2017 1117 2017 1117 2018 1149 2018 1150 2018 1117 2019 1150 2019 1116 2019 1116 2020 1150 2020 1151 2020 1116 2021 1151 2021 1099 2021 1099 2022 1151 2022 1152 2022 1099 2023 1152 2023 1100 2023 1100 2024 1152 2024 1153 2024 1100 2025 1153 2025 1112 2025 1112 2026 1153 2026 1154 2026 1112 2027 1154 2027 1110 2027 1110 2028 1154 2028 1155 2028 1110 2029 1155 2029 1108 2029 1108 2030 1155 2030 1156 2030 1108 2031 1156 2031 1106 2031 1106 2032 1156 2032 1157 2032 1106 2033 1157 2033 1104 2033 1104 2034 1157 2034 1145 2034 1104 2035 1145 2035 1102 2035 1102 2036 1145 2036 758 2036 1102 2037 758 2037 756 2037 1158 2038 745 2038 748 2038 1159 2039 746 2039 745 2039 745 2040 1158 2040 1159 2040 1159 2041 1158 2041 1160 2041 1159 2042 1160 2042 1161 2042 1161 2043 1160 2043 1162 2043 1161 2044 1162 2044 1163 2044 1163 2045 1162 2045 1164 2045 1163 2046 1164 2046 1165 2046 1165 2047 1164 2047 1166 2047 1165 2048 1166 2048 1167 2048 1167 2049 1166 2049 1168 2049 1167 2050 1168 2050 1169 2050 1169 2051 1168 2051 1170 2051 1169 2052 1170 2052 1171 2052 1171 2053 1170 2053 1172 2053 1171 2054 1172 2054 1173 2054 1173 2055 1172 2055 1174 2055 1173 2056 1174 2056 1175 2056 1175 2057 1174 2057 1176 2057 1175 2058 1176 2058 1177 2058 1177 2059 1176 2059 1178 2059 1177 2060 1178 2060 1179 2060 1179 2061 1178 2061 1180 2061 1179 2062 1180 2062 1181 2062 1181 2063 1180 2063 1182 2063 1181 2064 1182 2064 1183 2064 1183 2065 1182 2065 1140 2065 1183 2066 1140 2066 1142 2066 1096 2067 1122 2067 1146 2067 1146 2068 1122 2068 1144 2068 1146 2069 1144 2069 1143 2069 748 2070 1145 2070 1158 2070 1158 2071 1145 2071 1157 2071 1158 2072 1157 2072 1160 2072 1160 2073 1157 2073 1156 2073 1160 2074 1156 2074 1162 2074 1162 2075 1156 2075 1155 2075 1162 2076 1155 2076 1164 2076 1164 2077 1155 2077 1154 2077 1164 2078 1154 2078 1166 2078 1166 2079 1154 2079 1153 2079 1166 2080 1153 2080 1168 2080 1168 2081 1153 2081 1152 2081 1168 2082 1152 2082 1170 2082 1170 2083 1152 2083 1151 2083 1170 2084 1151 2084 1172 2084 1172 2085 1151 2085 1150 2085 1172 2086 1150 2086 1174 2086 1174 2087 1150 2087 1149 2087 1174 2088 1149 2088 1176 2088 1176 2089 1149 2089 1148 2089 1176 2090 1148 2090 1178 2090 1178 2091 1148 2091 1147 2091 1178 2092 1147 2092 1180 2092 1180 2093 1147 2093 1146 2093 1180 2094 1146 2094 1182 2094 1182 2095 1146 2095 1143 2095 1182 2096 1143 2096 1140 2096 1184 2097 1185 2097 1186 2097 1186 2098 1185 2098 1187 2098 1186 2099 1187 2099 1188 2099 1188 2100 1187 2100 1189 2100 1188 2101 1189 2101 1190 2101 1190 2102 1189 2102 1191 2102 1190 2103 1191 2103 1192 2103 1192 2104 1191 2104 1193 2104 1192 2105 1193 2105 1194 2105 1194 2106 1193 2106 1195 2106 1194 2107 1195 2107 1196 2107 1196 2108 1195 2108 1197 2108 1196 2109 1197 2109 1198 2109 1198 2110 1197 2110 1199 2110 1198 2111 1199 2111 1200 2111 1200 2112 1199 2112 1201 2112 1200 2113 1201 2113 1202 2113 1202 2114 1201 2114 1203 2114 1202 2115 1203 2115 1204 2115 1204 2116 1203 2116 1205 2116 1204 2117 1205 2117 1206 2117 1206 2118 1205 2118 1207 2118 1206 2119 1207 2119 1184 2119 1184 2120 1207 2120 1185 2120 1194 2121 1208 2121 1192 2121 1192 2122 1208 2122 1209 2122 1192 2123 1209 2123 1190 2123 1190 2124 1209 2124 1210 2124 1190 2125 1210 2125 1188 2125 1188 2126 1210 2126 1211 2126 1188 2127 1211 2127 1186 2127 1186 2128 1211 2128 1212 2128 1186 2129 1212 2129 1184 2129 1184 2130 1212 2130 1213 2130 1184 2131 1213 2131 1206 2131 1206 2132 1213 2132 1214 2132 1206 2133 1214 2133 1204 2133 1204 2134 1214 2134 1215 2134 1204 2135 1215 2135 1202 2135 1202 2136 1215 2136 1216 2136 1202 2137 1216 2137 1200 2137 1200 2138 1216 2138 1217 2138 1200 2139 1217 2139 1198 2139 1198 2140 1217 2140 1218 2140 1198 2141 1218 2141 1196 2141 1196 2142 1218 2142 1219 2142 1196 2143 1219 2143 1194 2143 1194 2144 1219 2144 1208 2144 1220 2145 1221 2145 1222 2145 1222 2146 1221 2146 1223 2146 1222 2147 1223 2147 1224 2147 1225 2148 1226 2148 1222 2148 1222 2149 1226 2149 1227 2149 1222 2150 1227 2150 1220 2150 1228 2151 1229 2151 1222 2151 1222 2152 1229 2152 1230 2152 1222 2153 1230 2153 1225 2153 1224 2154 1231 2154 1222 2154 1222 2155 1231 2155 1232 2155 1222 2156 1232 2156 1228 2156 1233 2157 1223 2157 1234 2157 1234 2158 1223 2158 1221 2158 1234 2159 1221 2159 1235 2159 1235 2160 1221 2160 1220 2160 1235 2161 1220 2161 1236 2161 1236 2162 1220 2162 1227 2162 1236 2163 1227 2163 1237 2163 1237 2164 1227 2164 1226 2164 1237 2165 1226 2165 1238 2165 1238 2166 1226 2166 1225 2166 1238 2167 1225 2167 1239 2167 1239 2168 1225 2168 1230 2168 1239 2169 1230 2169 1240 2169 1240 2170 1230 2170 1229 2170 1240 2171 1229 2171 1241 2171 1241 2172 1229 2172 1228 2172 1241 2173 1228 2173 1242 2173 1242 2174 1228 2174 1232 2174 1242 2175 1232 2175 1243 2175 1243 2176 1232 2176 1231 2176 1243 2177 1231 2177 1244 2177 1244 2178 1231 2178 1224 2178 1244 2179 1224 2179 1233 2179 1233 2180 1224 2180 1223 2180 1236 2181 1245 2181 1235 2181 1235 2182 1245 2182 1246 2182 1235 2183 1246 2183 1234 2183 1234 2184 1246 2184 1247 2184 1234 2185 1247 2185 1233 2185 1233 2186 1247 2186 1248 2186 1233 2187 1248 2187 1244 2187 1244 2188 1248 2188 1249 2188 1244 2189 1249 2189 1243 2189 1243 2190 1249 2190 1250 2190 1243 2191 1250 2191 1242 2191 1242 2192 1250 2192 1251 2192 1242 2193 1251 2193 1241 2193 1241 2194 1251 2194 1252 2194 1241 2195 1252 2195 1240 2195 1240 2196 1252 2196 1253 2196 1240 2197 1253 2197 1239 2197 1239 2186 1253 2186 1254 2186 1239 2198 1254 2198 1238 2198 1238 2199 1254 2199 1255 2199 1238 2200 1255 2200 1237 2200 1237 2201 1255 2201 1256 2201 1237 2202 1256 2202 1236 2202 1236 2203 1256 2203 1245 2203 1257 2204 1248 2204 1258 2204 1258 2205 1248 2205 1247 2205 1258 2206 1247 2206 1259 2206 1259 2207 1247 2207 1246 2207 1259 2208 1246 2208 1260 2208 1260 2209 1246 2209 1245 2209 1260 2210 1245 2210 1261 2210 1261 2211 1245 2211 1256 2211 1261 2212 1256 2212 1262 2212 1262 2213 1256 2213 1255 2213 1262 2214 1255 2214 1263 2214 1263 2215 1255 2215 1254 2215 1263 2216 1254 2216 1264 2216 1264 2217 1254 2217 1253 2217 1264 2218 1253 2218 1265 2218 1265 2219 1253 2219 1252 2219 1265 2220 1252 2220 1266 2220 1266 2221 1252 2221 1251 2221 1266 2222 1251 2222 1267 2222 1267 2223 1251 2223 1250 2223 1267 2224 1250 2224 1268 2224 1268 2225 1250 2225 1249 2225 1268 2226 1249 2226 1257 2226 1257 2227 1249 2227 1248 2227 1258 1673 1269 1673 1257 1673 1257 2228 1269 2228 1270 2228 1257 2229 1270 2229 1268 2229 1268 2230 1270 2230 1271 2230 1268 2231 1271 2231 1267 2231 1267 2232 1271 2232 1272 2232 1267 2233 1272 2233 1266 2233 1266 2234 1272 2234 1273 2234 1266 2235 1273 2235 1265 2235 1265 2236 1273 2236 1274 2236 1265 2237 1274 2237 1264 2237 1264 2238 1274 2238 1275 2238 1264 2239 1275 2239 1263 2239 1263 2240 1275 2240 1276 2240 1263 2241 1276 2241 1262 2241 1262 2242 1276 2242 1277 2242 1262 2243 1277 2243 1261 2243 1261 2244 1277 2244 1278 2244 1261 1635 1278 1635 1260 1635 1260 2245 1278 2245 1279 2245 1260 2246 1279 2246 1259 2246 1259 2247 1279 2247 1280 2247 1259 2248 1280 2248 1258 2248 1258 2249 1280 2249 1269 2249 1281 2250 1270 2250 1282 2250 1282 2251 1270 2251 1269 2251 1282 2252 1269 2252 1283 2252 1283 2253 1269 2253 1280 2253 1283 2254 1280 2254 1284 2254 1284 2255 1280 2255 1279 2255 1284 2256 1279 2256 1285 2256 1285 2257 1279 2257 1278 2257 1285 2258 1278 2258 1286 2258 1286 2259 1278 2259 1277 2259 1286 2260 1277 2260 1287 2260 1287 2261 1277 2261 1276 2261 1287 2262 1276 2262 1288 2262 1288 2263 1276 2263 1275 2263 1288 2264 1275 2264 1289 2264 1289 2265 1275 2265 1274 2265 1289 2266 1274 2266 1290 2266 1290 2267 1274 2267 1273 2267 1290 2268 1273 2268 1291 2268 1291 2269 1273 2269 1272 2269 1291 2270 1272 2270 1292 2270 1292 2271 1272 2271 1271 2271 1292 2272 1271 2272 1281 2272 1281 2273 1271 2273 1270 2273 1284 2274 1293 2274 1283 2274 1283 2275 1293 2275 1294 2275 1283 2276 1294 2276 1282 2276 1282 2277 1294 2277 1295 2277 1282 2278 1295 2278 1281 2278 1281 2279 1295 2279 1296 2279 1281 2280 1296 2280 1292 2280 1292 2281 1296 2281 1297 2281 1292 2282 1297 2282 1291 2282 1291 2283 1297 2283 1298 2283 1291 2284 1298 2284 1290 2284 1290 2285 1298 2285 1299 2285 1290 2286 1299 2286 1289 2286 1289 2287 1299 2287 1300 2287 1289 2288 1300 2288 1288 2288 1288 2289 1300 2289 1301 2289 1288 2290 1301 2290 1287 2290 1287 2291 1301 2291 1302 2291 1287 2292 1302 2292 1286 2292 1286 2293 1302 2293 1303 2293 1286 2294 1303 2294 1285 2294 1285 1658 1303 1658 1304 1658 1285 2295 1304 2295 1284 2295 1284 2296 1304 2296 1293 2296 1305 2297 1296 2297 1306 2297 1306 2298 1296 2298 1295 2298 1306 2299 1295 2299 1307 2299 1307 2300 1295 2300 1294 2300 1307 2301 1294 2301 1308 2301 1308 2302 1294 2302 1293 2302 1308 2303 1293 2303 1309 2303 1309 2304 1293 2304 1304 2304 1309 2305 1304 2305 1310 2305 1310 2306 1304 2306 1303 2306 1310 2307 1303 2307 1311 2307 1311 2308 1303 2308 1302 2308 1311 2309 1302 2309 1312 2309 1312 2310 1302 2310 1301 2310 1312 2311 1301 2311 1313 2311 1313 2312 1301 2312 1300 2312 1313 2313 1300 2313 1314 2313 1314 2314 1300 2314 1299 2314 1314 2315 1299 2315 1315 2315 1315 2316 1299 2316 1298 2316 1315 2317 1298 2317 1316 2317 1316 2318 1298 2318 1297 2318 1316 2319 1297 2319 1305 2319 1305 2320 1297 2320 1296 2320 1308 2321 1317 2321 1307 2321 1307 2322 1317 2322 1318 2322 1307 2323 1318 2323 1306 2323 1306 2324 1318 2324 1319 2324 1306 2325 1319 2325 1305 2325 1305 2326 1319 2326 1320 2326 1305 2327 1320 2327 1316 2327 1316 2328 1320 2328 1321 2328 1316 2329 1321 2329 1315 2329 1315 2330 1321 2330 1322 2330 1315 2331 1322 2331 1314 2331 1322 2332 1323 2332 1314 2332 1314 2333 1323 2333 1324 2333 1314 2334 1324 2334 1313 2334 1313 2335 1324 2335 1325 2335 1313 2336 1325 2336 1312 2336 1312 2337 1325 2337 1326 2337 1312 2338 1326 2338 1311 2338 1311 2339 1326 2339 1327 2339 1311 2327 1327 2327 1310 2327 1310 2340 1327 2340 1328 2340 1310 2341 1328 2341 1309 2341 1309 1670 1328 1670 1329 1670 1309 2342 1329 2342 1308 2342 1308 2343 1329 2343 1330 2343 1308 2344 1330 2344 1317 2344 1328 2345 1331 2345 1329 2345 1329 2346 1331 2346 1332 2346 1329 2347 1332 2347 1330 2347 1330 2348 1332 2348 1333 2348 1330 2349 1333 2349 1317 2349 1317 2350 1333 2350 1334 2350 1317 2351 1334 2351 1318 2351 1318 2352 1334 2352 1335 2352 1318 2353 1335 2353 1319 2353 1319 2354 1335 2354 1336 2354 1319 2355 1336 2355 1320 2355 1320 2356 1336 2356 1337 2356 1320 2357 1337 2357 1321 2357 1321 2358 1337 2358 1338 2358 1321 2359 1338 2359 1322 2359 1322 2360 1338 2360 1339 2360 1322 2361 1339 2361 1323 2361 1323 2362 1339 2362 1340 2362 1323 2363 1340 2363 1324 2363 1324 2364 1340 2364 1341 2364 1324 2365 1341 2365 1325 2365 1325 2366 1341 2366 1342 2366 1325 2367 1342 2367 1326 2367 1326 2368 1342 2368 1343 2368 1326 2369 1343 2369 1327 2369 1327 2370 1343 2370 1344 2370 1327 2371 1344 2371 1328 2371 1328 2372 1344 2372 1331 2372 1345 2373 1346 2373 1347 2373 1345 2374 1347 2374 1348 2374 1348 2375 1347 2375 1349 2375 1348 2376 1349 2376 1350 2376 1350 2377 1349 2377 1351 2377 1350 439 1351 439 1352 439 1352 2378 1351 2378 1353 2378 1352 2379 1353 2379 1354 2379 1354 2380 1353 2380 1355 2380 1354 2381 1355 2381 1356 2381 1356 2382 1355 2382 1357 2382 1357 2383 1355 2383 1358 2383 1357 2384 1358 2384 1359 2384 1359 2385 1358 2385 1360 2385 1359 2386 1360 2386 1361 2386 1361 2387 1360 2387 1362 2387 1361 2388 1362 2388 1363 2388 1363 2389 1362 2389 1364 2389 1363 2390 1364 2390 1365 2390 1365 2391 1364 2391 1366 2391 1365 2392 1366 2392 1367 2392 1367 2393 1366 2393 1368 2393 1367 2394 1368 2394 1369 2394 1369 2395 1368 2395 1370 2395 1369 2396 1370 2396 1371 2396 1371 2397 1370 2397 1372 2397 1371 456 1372 456 1373 456 1373 2398 1372 2398 1374 2398 1373 2399 1374 2399 1375 2399 1375 2400 1374 2400 1376 2400 1375 2401 1376 2401 1377 2401 1377 2402 1376 2402 1378 2402 1377 2403 1378 2403 1379 2403 1379 2404 1378 2404 1380 2404 1379 2405 1380 2405 1381 2405 1381 2406 1380 2406 1382 2406 1381 2407 1382 2407 1383 2407 1383 2408 1382 2408 1384 2408 1383 2409 1384 2409 1385 2409 1385 2410 1384 2410 1386 2410 1385 2411 1386 2411 1387 2411 1387 2412 1386 2412 1388 2412 1387 2413 1388 2413 1345 2413 1345 2414 1388 2414 1346 2414 1389 2415 1390 2415 1391 2415 1391 2416 1390 2416 1392 2416 1391 2417 1392 2417 1393 2417 1393 2418 1392 2418 1394 2418 1393 439 1394 439 1395 439 1395 2419 1394 2419 1396 2419 1395 2420 1396 2420 1397 2420 1397 2421 1396 2421 1398 2421 1397 2422 1398 2422 1399 2422 1399 2423 1398 2423 1400 2423 1401 2424 1402 2424 1403 2424 1403 2425 1402 2425 1404 2425 1403 2426 1404 2426 1405 2426 1405 2427 1404 2427 1406 2427 1405 2428 1406 2428 1407 2428 1407 2429 1406 2429 1408 2429 1407 2430 1408 2430 1409 2430 1409 2431 1408 2431 1410 2431 1409 2432 1410 2432 1411 2432 1411 2433 1410 2433 1412 2433 1411 2434 1412 2434 1413 2434 1413 2435 1412 2435 1414 2435 1413 2436 1414 2436 1389 2436 1389 2437 1414 2437 1390 2437 1415 2438 1416 2438 1417 2438 1415 2439 1417 2439 1418 2439 1418 2440 1417 2440 1419 2440 1418 2441 1419 2441 1420 2441 1420 2442 1419 2442 1421 2442 1420 456 1421 456 1422 456 1422 2443 1421 2443 1423 2443 1422 2444 1423 2444 1424 2444 1424 2445 1423 2445 1402 2445 1424 2446 1402 2446 1401 2446 1399 2447 1400 2447 1425 2447 1425 2448 1400 2448 1426 2448 1425 2449 1426 2449 1427 2449 1427 2450 1426 2450 1428 2450 1427 2451 1428 2451 1429 2451 1429 2452 1428 2452 1430 2452 1429 2453 1430 2453 1431 2453 1431 2454 1430 2454 1432 2454 1431 2455 1432 2455 1433 2455 1433 2456 1432 2456 1434 2456 1433 2457 1434 2457 1435 2457 1435 2458 1434 2458 1436 2458 1435 2459 1436 2459 1415 2459 1415 2460 1436 2460 1416 2460 1437 2461 1438 2461 1439 2461 1439 2462 1438 2462 1440 2462 1439 2463 1440 2463 1441 2463 1442 2464 1443 2464 1439 2464 1439 2465 1443 2465 1444 2465 1439 2466 1444 2466 1437 2466 1445 2467 1446 2467 1439 2467 1439 2468 1446 2468 1447 2468 1439 2469 1447 2469 1442 2469 1441 2470 1448 2470 1439 2470 1439 2466 1448 2466 1449 2466 1439 2465 1449 2465 1445 2465 1450 2157 1440 2157 1451 2157 1451 2471 1440 2471 1438 2471 1451 2472 1438 2472 1452 2472 1452 2473 1438 2473 1437 2473 1452 2474 1437 2474 1453 2474 1453 2475 1437 2475 1444 2475 1453 2476 1444 2476 1454 2476 1454 2477 1444 2477 1443 2477 1454 2165 1443 2165 1455 2165 1455 2478 1443 2478 1442 2478 1455 2479 1442 2479 1456 2479 1456 2480 1442 2480 1447 2480 1456 2169 1447 2169 1457 2169 1457 2481 1447 2481 1446 2481 1457 2482 1446 2482 1458 2482 1458 2483 1446 2483 1445 2483 1458 2484 1445 2484 1459 2484 1459 2485 1445 2485 1449 2485 1459 2486 1449 2486 1460 2486 1460 2487 1449 2487 1448 2487 1460 2488 1448 2488 1461 2488 1461 2489 1448 2489 1441 2489 1461 2490 1441 2490 1450 2490 1450 2491 1441 2491 1440 2491 1453 2492 1462 2492 1452 2492 1452 2493 1462 2493 1463 2493 1452 2494 1463 2494 1451 2494 1451 2495 1463 2495 1464 2495 1451 2496 1464 2496 1450 2496 1450 2497 1464 2497 1465 2497 1450 2498 1465 2498 1461 2498 1461 2499 1465 2499 1466 2499 1461 2500 1466 2500 1460 2500 1460 2501 1466 2501 1467 2501 1460 2502 1467 2502 1459 2502 1459 2503 1467 2503 1468 2503 1459 2504 1468 2504 1458 2504 1458 2505 1468 2505 1469 2505 1458 2506 1469 2506 1457 2506 1457 2507 1469 2507 1470 2507 1457 2508 1470 2508 1456 2508 1456 2509 1470 2509 1471 2509 1456 2198 1471 2198 1455 2198 1455 2510 1471 2510 1472 2510 1455 2511 1472 2511 1454 2511 1454 2512 1472 2512 1473 2512 1454 2513 1473 2513 1453 2513 1453 2514 1473 2514 1462 2514 1474 2515 1465 2515 1475 2515 1475 2516 1465 2516 1464 2516 1475 2206 1464 2206 1476 2206 1476 2517 1464 2517 1463 2517 1476 2518 1463 2518 1477 2518 1477 2519 1463 2519 1462 2519 1477 2520 1462 2520 1478 2520 1478 2521 1462 2521 1473 2521 1478 2522 1473 2522 1479 2522 1479 2523 1473 2523 1472 2523 1479 2524 1472 2524 1480 2524 1480 2525 1472 2525 1471 2525 1480 2526 1471 2526 1481 2526 1481 2527 1471 2527 1470 2527 1481 2528 1470 2528 1482 2528 1482 2529 1470 2529 1469 2529 1482 2530 1469 2530 1483 2530 1483 2531 1469 2531 1468 2531 1483 2532 1468 2532 1484 2532 1484 2533 1468 2533 1467 2533 1484 2534 1467 2534 1485 2534 1485 2535 1467 2535 1466 2535 1485 2536 1466 2536 1474 2536 1474 2537 1466 2537 1465 2537 1474 2280 1486 2280 1485 2280 1485 2538 1486 2538 1487 2538 1485 2539 1487 2539 1484 2539 1484 2540 1487 2540 1488 2540 1484 2541 1488 2541 1483 2541 1483 2542 1488 2542 1489 2542 1483 2246 1489 2246 1482 2246 1482 2236 1489 2236 1490 2236 1482 2543 1490 2543 1481 2543 1481 2544 1490 2544 1491 2544 1481 2545 1491 2545 1480 2545 1480 2546 1491 2546 1492 2546 1480 2547 1492 2547 1479 2547 1479 2548 1492 2548 1493 2548 1479 2549 1493 2549 1478 2549 1478 2550 1493 2550 1494 2550 1478 2551 1494 2551 1477 2551 1477 1770 1494 1770 1495 1770 1477 1651 1495 1651 1476 1651 1476 2552 1495 2552 1496 2552 1476 2553 1496 2553 1475 2553 1475 2554 1496 2554 1497 2554 1475 2555 1497 2555 1474 2555 1474 2556 1497 2556 1486 2556 1498 2557 1486 2557 1499 2557 1499 2558 1486 2558 1497 2558 1499 2252 1497 2252 1500 2252 1500 2559 1497 2559 1496 2559 1500 2560 1496 2560 1501 2560 1501 2561 1496 2561 1495 2561 1501 2562 1495 2562 1502 2562 1502 2563 1495 2563 1494 2563 1502 2564 1494 2564 1503 2564 1503 2565 1494 2565 1493 2565 1503 2260 1493 2260 1504 2260 1504 2566 1493 2566 1492 2566 1504 2567 1492 2567 1505 2567 1505 2568 1492 2568 1491 2568 1505 2569 1491 2569 1506 2569 1506 2570 1491 2570 1490 2570 1506 2571 1490 2571 1507 2571 1507 2572 1490 2572 1489 2572 1507 2573 1489 2573 1508 2573 1508 2574 1489 2574 1488 2574 1508 2575 1488 2575 1509 2575 1509 2576 1488 2576 1487 2576 1509 2577 1487 2577 1498 2577 1498 2578 1487 2578 1486 2578 1503 2579 1510 2579 1502 2579 1502 2580 1510 2580 1511 2580 1502 2581 1511 2581 1501 2581 1501 2582 1511 2582 1512 2582 1501 2540 1512 2540 1500 2540 1500 2582 1512 2582 1513 2582 1500 2294 1513 2294 1499 2294 1499 2277 1513 2277 1514 2277 1499 2583 1514 2583 1498 2583 1498 2584 1514 2584 1515 2584 1498 2585 1515 2585 1509 2585 1509 2586 1515 2586 1516 2586 1509 2587 1516 2587 1508 2587 1508 2588 1516 2588 1517 2588 1508 2589 1517 2589 1507 2589 1507 2590 1517 2590 1518 2590 1507 2591 1518 2591 1506 2591 1506 2592 1518 2592 1519 2592 1506 2593 1519 2593 1505 2593 1505 2289 1519 2289 1520 2289 1505 2594 1520 2594 1504 2594 1504 2291 1520 2291 1521 2291 1504 2595 1521 2595 1503 2595 1503 2596 1521 2596 1510 2596 1522 2597 1515 2597 1523 2597 1523 2598 1515 2598 1514 2598 1523 2599 1514 2599 1524 2599 1524 2600 1514 2600 1513 2600 1524 2601 1513 2601 1525 2601 1525 2602 1513 2602 1512 2602 1525 2303 1512 2303 1526 2303 1526 2603 1512 2603 1511 2603 1526 2604 1511 2604 1527 2604 1527 2605 1511 2605 1510 2605 1527 2606 1510 2606 1528 2606 1528 2607 1510 2607 1521 2607 1528 2608 1521 2608 1529 2608 1529 2609 1521 2609 1520 2609 1529 2610 1520 2610 1530 2610 1530 2611 1520 2611 1519 2611 1530 2612 1519 2612 1531 2612 1531 2613 1519 2613 1518 2613 1531 2614 1518 2614 1532 2614 1532 2615 1518 2615 1517 2615 1532 2616 1517 2616 1533 2616 1533 2617 1517 2617 1516 2617 1533 2618 1516 2618 1522 2618 1522 2619 1516 2619 1515 2619 1525 2620 1534 2620 1524 2620 1524 2621 1534 2621 1535 2621 1524 2622 1535 2622 1523 2622 1523 2623 1535 2623 1536 2623 1523 2624 1536 2624 1522 2624 1522 2625 1536 2625 1537 2625 1522 2327 1537 2327 1533 2327 1533 2626 1537 2626 1538 2626 1533 2627 1538 2627 1532 2627 1532 2628 1538 2628 1539 2628 1532 2629 1539 2629 1531 2629 1539 2630 1540 2630 1531 2630 1531 2631 1540 2631 1541 2631 1531 2632 1541 2632 1530 2632 1530 2633 1541 2633 1542 2633 1530 2634 1542 2634 1529 2634 1529 2635 1542 2635 1543 2635 1529 2636 1543 2636 1528 2636 1528 2637 1543 2637 1544 2637 1528 2327 1544 2327 1527 2327 1527 2638 1544 2638 1545 2638 1527 2639 1545 2639 1526 2639 1526 2640 1545 2640 1546 2640 1526 2641 1546 2641 1525 2641 1525 2642 1546 2642 1547 2642 1525 2643 1547 2643 1534 2643 1545 2644 1548 2644 1546 2644 1546 2645 1548 2645 1549 2645 1546 2646 1549 2646 1547 2646 1547 2647 1549 2647 1550 2647 1547 2648 1550 2648 1534 2648 1534 2649 1550 2649 1551 2649 1534 2650 1551 2650 1535 2650 1535 2651 1551 2651 1552 2651 1535 2652 1552 2652 1536 2652 1536 2653 1552 2653 1553 2653 1536 2355 1553 2355 1537 2355 1537 2654 1553 2654 1554 2654 1537 2655 1554 2655 1538 2655 1538 2656 1554 2656 1555 2656 1538 2657 1555 2657 1539 2657 1539 2658 1555 2658 1556 2658 1539 2659 1556 2659 1540 2659 1540 2660 1556 2660 1557 2660 1540 2661 1557 2661 1541 2661 1541 2662 1557 2662 1558 2662 1541 2663 1558 2663 1542 2663 1542 2664 1558 2664 1559 2664 1542 2665 1559 2665 1543 2665 1543 2666 1559 2666 1560 2666 1543 2667 1560 2667 1544 2667 1544 2668 1560 2668 1561 2668 1544 2669 1561 2669 1545 2669 1545 2670 1561 2670 1548 2670 1562 2671 1563 2671 1564 2671 1564 2672 1563 2672 1565 2672 1564 2673 1565 2673 1566 2673 1566 2674 1565 2674 1567 2674 1566 2675 1567 2675 1568 2675 1568 2676 1567 2676 1569 2676 1568 2677 1569 2677 1570 2677 1570 2678 1569 2678 1571 2678 1570 2679 1571 2679 1572 2679 1572 2680 1571 2680 1573 2680 1572 2681 1573 2681 1574 2681 1574 2682 1573 2682 1575 2682 1574 2683 1575 2683 1576 2683 1576 2684 1575 2684 1577 2684 1576 2685 1577 2685 1578 2685 1578 2686 1577 2686 1579 2686 1578 2687 1579 2687 1580 2687 1580 2688 1579 2688 1581 2688 1580 2689 1581 2689 1582 2689 1582 2116 1581 2116 1583 2116 1582 2690 1583 2690 1584 2690 1584 2691 1583 2691 1585 2691 1584 2692 1585 2692 1562 2692 1562 2693 1585 2693 1563 2693 1572 2121 1586 2121 1570 2121 1570 2694 1586 2694 1587 2694 1570 2695 1587 2695 1568 2695 1568 2696 1587 2696 1588 2696 1568 2697 1588 2697 1566 2697 1566 2698 1588 2698 1589 2698 1566 2699 1589 2699 1564 2699 1564 2700 1589 2700 1590 2700 1564 2701 1590 2701 1562 2701 1562 2702 1590 2702 1591 2702 1562 2703 1591 2703 1584 2703 1584 2704 1591 2704 1592 2704 1584 2705 1592 2705 1582 2705 1582 2706 1592 2706 1593 2706 1582 2707 1593 2707 1580 2707 1580 2136 1593 2136 1594 2136 1580 2708 1594 2708 1578 2708 1578 2709 1594 2709 1595 2709 1578 2710 1595 2710 1576 2710 1576 2140 1595 2140 1596 2140 1576 2711 1596 2711 1574 2711 1574 2712 1596 2712 1597 2712 1574 2713 1597 2713 1572 2713 1572 2714 1597 2714 1586 2714 1598 2715 1599 2715 1600 2715 1601 2716 1602 2716 1603 2716 1390 2717 1414 2717 1169 2717 752 2718 751 2718 1604 2718 816 2719 752 2719 806 2719 806 2720 808 2720 816 2720 816 2721 808 2721 810 2721 816 2722 810 2722 814 2722 814 2723 810 2723 812 2723 1363 2724 1365 2724 1604 2724 1348 2725 1350 2725 1345 2725 1345 2726 1350 2726 1387 2726 752 2727 1604 2727 806 2727 806 2728 1604 2728 1365 2728 806 2729 1365 2729 1367 2729 1381 2730 1605 2730 1379 2730 1379 2731 1605 2731 802 2731 1379 2732 802 2732 1377 2732 1356 2733 1357 2733 1605 2733 1381 2734 1383 2734 1605 2734 1605 2735 1383 2735 1385 2735 1605 2736 1385 2736 1387 2736 1357 2737 1359 2737 1604 2737 1604 2738 1359 2738 1361 2738 1604 2739 1361 2739 1363 2739 1356 2740 1605 2740 1354 2740 1367 2741 1369 2741 806 2741 806 2742 1369 2742 1371 2742 806 2743 1371 2743 804 2743 804 2744 1371 2744 1373 2744 804 2745 1373 2745 802 2745 802 2746 1373 2746 1375 2746 802 2747 1375 2747 1377 2747 1387 2748 1350 2748 1605 2748 1605 2749 1350 2749 1352 2749 1605 2750 1352 2750 1354 2750 1136 2751 792 2751 798 2751 798 2752 792 2752 791 2752 798 2753 791 2753 796 2753 796 2754 791 2754 794 2754 1177 2755 1179 2755 1181 2755 1177 2756 1606 2756 1175 2756 1175 2757 1606 2757 1607 2757 1175 2758 1607 2758 1173 2758 1432 2759 1430 2759 1607 2759 1608 2760 1436 2760 1434 2760 1412 2761 1410 2761 1608 2761 1608 2762 1410 2762 1408 2762 1430 2763 1428 2763 1607 2763 1607 2764 1428 2764 1426 2764 1607 2765 1426 2765 1173 2765 1173 2766 1426 2766 1400 2766 1173 2767 1400 2767 1171 2767 1171 2768 1400 2768 1169 2768 1169 2769 1400 2769 1398 2769 1169 2770 1398 2770 1396 2770 1396 2771 1394 2771 1169 2771 1169 2772 1394 2772 1392 2772 1169 2773 1392 2773 1390 2773 1423 2774 1421 2774 1402 2774 1402 2775 1421 2775 1419 2775 1408 2776 1406 2776 1608 2776 1608 2777 1406 2777 1404 2777 1608 2778 1404 2778 1436 2778 1436 2779 1404 2779 1402 2779 1436 2780 1402 2780 1416 2780 1416 2781 1402 2781 1419 2781 1416 2782 1419 2782 1417 2782 747 2783 1169 2783 1608 2783 1608 2765 1169 2765 1414 2765 1608 2784 1414 2784 1412 2784 747 2785 746 2785 1169 2785 1169 2786 746 2786 1159 2786 1169 2787 1159 2787 1161 2787 1161 2788 1163 2788 1169 2788 1169 2789 1163 2789 1165 2789 1169 2790 1165 2790 1167 2790 1333 2744 1332 2744 749 2744 1599 2791 750 2791 1342 2791 1332 2792 1331 2792 749 2792 749 2793 1331 2793 1344 2793 749 2794 1344 2794 750 2794 750 2795 1344 2795 1343 2795 750 2796 1343 2796 1342 2796 1337 2797 1139 2797 1138 2797 1340 2798 1339 2798 1609 2798 1609 2799 1339 2799 1338 2799 1549 2800 747 2800 1550 2800 1550 2801 747 2801 1608 2801 1550 2715 1608 2715 1607 2715 1607 2802 1608 2802 1434 2802 1607 2803 1434 2803 1432 2803 1335 2804 1334 2804 1610 2804 1610 2805 1334 2805 1333 2805 1610 2806 1333 2806 1611 2806 1611 2801 1333 2801 749 2801 1611 2807 749 2807 1559 2807 1549 2808 1548 2808 747 2808 747 2809 1548 2809 1561 2809 747 2810 1561 2810 749 2810 749 2811 1561 2811 1560 2811 749 2812 1560 2812 1559 2812 1554 2813 1553 2813 1606 2813 1606 2539 1553 2539 1552 2539 1606 2814 1552 2814 1607 2814 1607 2815 1552 2815 1551 2815 1607 2816 1551 2816 1550 2816 1181 2817 1183 2817 1177 2817 1177 2818 1183 2818 1142 2818 1177 2819 1142 2819 1606 2819 1606 2820 1142 2820 1141 2820 1606 2821 1141 2821 1554 2821 1554 1639 1141 1639 1139 1639 1554 2822 1139 2822 1612 2822 1612 2823 1139 2823 1337 2823 1612 2824 1337 2824 1336 2824 1557 2825 1556 2825 1612 2825 1612 2826 1556 2826 1555 2826 1612 2827 1555 2827 1554 2827 1559 2828 1558 2828 1611 2828 1611 2829 1558 2829 1557 2829 1611 2830 1557 2830 1610 2830 1610 2831 1557 2831 1612 2831 1610 2832 1612 2832 1335 2832 1335 2833 1612 2833 1336 2833 754 2834 1613 2834 1614 2834 754 2835 1614 2835 751 2835 1602 2836 1615 2836 1616 2836 1616 2837 1615 2837 1617 2837 1616 2838 1617 2838 1618 2838 1618 2839 1617 2839 1619 2839 1618 2840 1619 2840 1620 2840 1357 2841 1604 2841 1605 2841 1605 2842 1604 2842 1621 2842 1605 2843 1621 2843 1603 2843 1603 2844 1621 2844 1622 2844 1603 2845 1622 2845 1601 2845 1614 2846 1623 2846 751 2846 751 2847 1623 2847 1624 2847 751 2848 1624 2848 1604 2848 1604 2849 1624 2849 1625 2849 1604 2850 1625 2850 1621 2850 1597 2851 754 2851 1586 2851 1586 2852 754 2852 750 2852 1597 2853 1596 2853 754 2853 754 2854 1596 2854 1595 2854 754 2855 1595 2855 1598 2855 1598 2856 1595 2856 1594 2856 1598 2857 1594 2857 1593 2857 1590 2858 1599 2858 1591 2858 1591 2859 1599 2859 1598 2859 1591 2860 1598 2860 1592 2860 1592 2861 1598 2861 1593 2861 1590 2862 1589 2862 1599 2862 1599 2863 1589 2863 1588 2863 1599 2864 1588 2864 750 2864 750 2865 1588 2865 1587 2865 750 2866 1587 2866 1586 2866 1210 2867 1209 2867 1600 2867 1600 2868 1209 2868 1208 2868 1208 2869 1219 2869 1600 2869 1600 2870 1219 2870 1618 2870 1600 2871 1618 2871 1598 2871 1598 2872 1618 2872 1620 2872 1598 2873 1620 2873 754 2873 754 2874 1620 2874 1626 2874 754 2875 1626 2875 1613 2875 1211 2876 1210 2876 1609 2876 1609 2877 1210 2877 1600 2877 1609 2878 1600 2878 1340 2878 1340 2879 1600 2879 1599 2879 1340 2880 1599 2880 1341 2880 1341 2881 1599 2881 1342 2881 1215 2882 1214 2882 1616 2882 1616 2883 1214 2883 1213 2883 1616 2884 1213 2884 1609 2884 1609 2885 1213 2885 1212 2885 1609 2886 1212 2886 1211 2886 1219 2887 1218 2887 1618 2887 1618 2888 1218 2888 1217 2888 1618 2889 1217 2889 1616 2889 1616 2890 1217 2890 1216 2890 1616 2891 1216 2891 1215 2891 1338 2892 1337 2892 1609 2892 1609 2893 1337 2893 1138 2893 1609 2894 1138 2894 1616 2894 1616 2895 1138 2895 1137 2895 1616 2896 1137 2896 1602 2896 1602 2897 1137 2897 1136 2897 1602 2898 1136 2898 1603 2898 1603 2899 1136 2899 798 2899 1603 2900 798 2900 1605 2900 1605 2901 798 2901 800 2901 1605 2902 800 2902 802 2902 1627 2903 1613 2903 1628 2903 1628 2904 1613 2904 1626 2904 1628 2905 1626 2905 1629 2905 1629 2906 1626 2906 1620 2906 1629 2907 1620 2907 1630 2907 1630 2908 1620 2908 1619 2908 1630 2909 1619 2909 1631 2909 1631 2910 1619 2910 1617 2910 1631 2911 1617 2911 1632 2911 1632 2912 1617 2912 1615 2912 1632 2355 1615 2355 1633 2355 1633 2913 1615 2913 1602 2913 1633 2914 1602 2914 1634 2914 1634 2915 1602 2915 1601 2915 1634 2916 1601 2916 1635 2916 1635 2917 1601 2917 1622 2917 1635 2918 1622 2918 1636 2918 1636 2919 1622 2919 1621 2919 1636 2920 1621 2920 1637 2920 1637 2921 1621 2921 1625 2921 1637 2922 1625 2922 1638 2922 1638 2923 1625 2923 1624 2923 1638 2924 1624 2924 1639 2924 1639 2925 1624 2925 1623 2925 1639 2667 1623 2667 1640 2667 1640 2926 1623 2926 1614 2926 1640 2927 1614 2927 1627 2927 1627 2928 1614 2928 1613 2928 1641 2929 1637 2929 1642 2929 1642 2930 1637 2930 1638 2930 1642 2931 1638 2931 1643 2931 1643 2932 1638 2932 1639 2932 1643 2933 1639 2933 1644 2933 1644 2934 1639 2934 1640 2934 1644 2327 1640 2327 1645 2327 1645 2935 1640 2935 1627 2935 1645 2639 1627 2639 1646 2639 1646 2936 1627 2936 1628 2936 1646 2937 1628 2937 1647 2937 1628 2938 1629 2938 1647 2938 1647 2643 1629 2643 1630 2643 1647 2939 1630 2939 1648 2939 1648 2940 1630 2940 1631 2940 1648 2941 1631 2941 1649 2941 1649 2850 1631 2850 1632 2850 1649 2624 1632 2624 1650 2624 1650 2942 1632 2942 1633 2942 1650 2327 1633 2327 1651 2327 1651 2943 1633 2943 1634 2943 1651 2627 1634 2627 1652 2627 1652 2944 1634 2944 1635 2944 1652 2945 1635 2945 1641 2945 1641 2946 1635 2946 1636 2946 1641 2947 1636 2947 1637 2947 1650 2948 1653 2948 1649 2948 1649 2949 1653 2949 1654 2949 1649 2599 1654 2599 1648 2599 1648 2950 1654 2950 1655 2950 1648 2951 1655 2951 1647 2951 1647 2952 1655 2952 1656 2952 1647 2953 1656 2953 1646 2953 1646 2954 1656 2954 1657 2954 1646 2604 1657 2604 1645 2604 1645 2955 1657 2955 1658 2955 1645 2956 1658 2956 1644 2956 1644 2957 1658 2957 1659 2957 1644 2608 1659 2608 1643 2608 1643 2958 1659 2958 1660 2958 1643 2959 1660 2959 1642 2959 1642 2960 1660 2960 1661 2960 1642 2961 1661 2961 1641 2961 1641 2613 1661 2613 1662 2613 1641 2962 1662 2962 1652 2962 1652 2316 1662 2316 1663 2316 1652 2963 1663 2963 1651 2963 1651 2964 1663 2964 1664 2964 1651 2618 1664 2618 1650 2618 1650 2965 1664 2965 1653 2965 1665 2891 1655 2891 1666 2891 1666 2277 1655 2277 1654 2277 1666 2966 1654 2966 1667 2966 1667 2584 1654 2584 1653 2584 1667 2585 1653 2585 1668 2585 1668 2586 1653 2586 1664 2586 1668 2967 1664 2967 1669 2967 1669 2968 1664 2968 1663 2968 1669 2969 1663 2969 1670 2969 1670 2970 1663 2970 1662 2970 1670 2971 1662 2971 1671 2971 1671 2972 1662 2972 1661 2972 1671 2973 1661 2973 1672 2973 1672 2580 1661 2580 1660 2580 1672 2974 1660 2974 1673 2974 1673 2181 1660 2181 1659 2181 1673 2595 1659 2595 1674 2595 1674 2596 1659 2596 1658 2596 1674 2891 1658 2891 1675 2891 1675 2975 1658 2975 1657 2975 1675 2581 1657 2581 1676 2581 1676 2976 1657 2976 1656 2976 1676 2971 1656 2971 1665 2971 1665 2582 1656 2582 1655 2582 1667 2557 1677 2557 1666 2557 1666 2977 1677 2977 1678 2977 1666 2252 1678 2252 1665 2252 1665 2978 1678 2978 1679 2978 1665 2979 1679 2979 1676 2979 1676 2980 1679 2980 1680 2980 1676 2981 1680 2981 1675 2981 1675 2982 1680 2982 1681 2982 1675 2983 1681 2983 1674 2983 1674 2984 1681 2984 1682 2984 1674 2260 1682 2260 1673 2260 1673 2985 1682 2985 1683 2985 1673 2567 1683 2567 1672 2567 1672 2986 1683 2986 1684 2986 1672 2569 1684 2569 1671 2569 1671 2987 1684 2987 1685 2987 1671 2988 1685 2988 1670 2988 1670 2989 1685 2989 1686 2989 1670 2990 1686 2990 1669 2990 1669 2991 1686 2991 1687 2991 1669 2992 1687 2992 1668 2992 1668 2993 1687 2993 1688 2993 1668 2994 1688 2994 1667 2994 1667 2995 1688 2995 1677 2995 1689 2996 1677 2996 1690 2996 1690 2997 1677 2997 1688 2997 1690 2551 1688 2551 1691 2551 1691 2946 1688 2946 1687 2946 1691 2998 1687 2998 1692 2998 1692 2542 1687 2542 1686 2542 1692 2246 1686 2246 1693 2246 1693 2999 1686 2999 1685 2999 1693 3000 1685 3000 1694 3000 1694 3001 1685 3001 1684 3001 1694 3002 1684 3002 1695 3002 1695 3003 1684 3003 1683 3003 1695 3004 1683 3004 1696 3004 1696 2548 1683 2548 1682 2548 1696 3005 1682 3005 1697 3005 1697 3006 1682 3006 1681 3006 1697 2551 1681 2551 1698 2551 1698 2579 1681 2579 1680 2579 1698 2246 1680 2246 1699 2246 1699 2552 1680 2552 1679 2552 1699 3007 1679 3007 1700 3007 1700 3008 1679 3008 1678 3008 1700 3009 1678 3009 1689 3009 1689 2556 1678 2556 1677 2556 1701 3010 1702 3010 1703 3010 1704 3011 1705 3011 1702 3011 1702 3012 1705 3012 1706 3012 1702 3013 1706 3013 1703 3013 1707 3014 1708 3014 1703 3014 1703 3015 1708 3015 1709 3015 1703 3016 1709 3016 1701 3016 1710 3017 1707 3017 1711 3017 1711 3018 1707 3018 1703 3018 1711 3019 1703 3019 1712 3019 1712 3019 1703 3019 1706 3019 1712 3020 1706 3020 1713 3020 1713 3021 1706 3021 1705 3021 1704 456 1714 456 1705 456 1705 3022 1714 3022 1713 3022 1714 3023 1704 3023 1715 3023 1715 3024 1704 3024 1702 3024 1715 3025 1702 3025 1716 3025 1716 3026 1702 3026 1701 3026 1716 3027 1701 3027 1717 3027 1717 3028 1701 3028 1709 3028 1717 3029 1709 3029 1718 3029 1718 3030 1709 3030 1708 3030 1707 439 1710 439 1708 439 1708 439 1710 439 1718 439 1713 3031 1719 3031 1712 3031 1712 3032 1719 3032 1720 3032 1712 3033 1720 3033 1711 3033 1711 3034 1720 3034 1721 3034 1711 3035 1721 3035 1710 3035 1721 3036 1722 3036 1710 3036 1710 3037 1722 3037 1723 3037 1710 3038 1723 3038 1718 3038 1723 3039 1724 3039 1718 3039 1718 3040 1724 3040 1725 3040 1718 3041 1725 3041 1717 3041 1717 3042 1725 3042 1726 3042 1717 3043 1726 3043 1716 3043 1716 3044 1726 3044 1727 3044 1716 3045 1727 3045 1715 3045 1715 3046 1727 3046 1728 3046 1715 1635 1728 1635 1714 1635 1714 3047 1728 3047 1729 3047 1714 3038 1729 3038 1713 3038 1713 3048 1729 3048 1730 3048 1713 3049 1730 3049 1719 3049 1689 2515 1727 2515 1700 2515 1700 3050 1727 3050 1726 3050 1700 2206 1726 2206 1699 2206 1699 3051 1726 3051 1725 3051 1699 2518 1725 2518 1698 2518 1698 3052 1725 3052 1724 3052 1698 2520 1724 2520 1697 2520 1697 3053 1724 3053 1723 3053 1697 3054 1723 3054 1696 3054 1696 3055 1723 3055 1722 3055 1696 3056 1722 3056 1695 3056 1695 3057 1722 3057 1721 3057 1695 3058 1721 3058 1694 3058 1694 3059 1721 3059 1720 3059 1694 3060 1720 3060 1693 3060 1693 3061 1720 3061 1719 3061 1693 3062 1719 3062 1692 3062 1692 3063 1719 3063 1730 3063 1692 3064 1730 3064 1691 3064 1691 3065 1730 3065 1729 3065 1691 2534 1729 2534 1690 2534 1690 3066 1729 3066 1728 3066 1690 2226 1728 2226 1689 2226 1689 2227 1728 2227 1727 2227 1731 3067 1732 3067 1733 3067 1733 3068 1732 3068 1734 3068 1733 3069 1734 3069 1735 3069 1736 3070 1737 3070 1733 3070 1733 3071 1737 3071 1738 3071 1733 3072 1738 3072 1731 3072 1739 3073 1740 3073 1733 3073 1733 3074 1740 3074 1741 3074 1733 3075 1741 3075 1736 3075 1742 3076 1743 3076 1733 3076 1733 3077 1743 3077 1744 3077 1733 3078 1744 3078 1739 3078 1745 3079 1746 3079 1733 3079 1733 3080 1746 3080 1747 3080 1733 3081 1747 3081 1742 3081 1748 3082 1749 3082 1733 3082 1733 3083 1749 3083 1750 3083 1733 3084 1750 3084 1745 3084 1751 3085 1752 3085 1733 3085 1733 3086 1752 3086 1753 3086 1733 3087 1753 3087 1748 3087 1754 3088 1755 3088 1733 3088 1733 3089 1755 3089 1756 3089 1733 3090 1756 3090 1751 3090 1757 3091 1758 3091 1733 3091 1733 3092 1758 3092 1759 3092 1733 3093 1759 3093 1754 3093 1760 3091 1761 3091 1733 3091 1733 3094 1761 3094 1762 3094 1733 3095 1762 3095 1757 3095 1763 3096 1764 3096 1733 3096 1733 3097 1764 3097 1765 3097 1733 3098 1765 3098 1760 3098 1766 3085 1767 3085 1733 3085 1733 3099 1767 3099 1768 3099 1733 3100 1768 3100 1763 3100 1769 3101 1770 3101 1733 3101 1733 3102 1770 3102 1771 3102 1733 3103 1771 3103 1766 3103 1772 3104 1773 3104 1733 3104 1733 3105 1773 3105 1774 3105 1733 3106 1774 3106 1769 3106 1775 3107 1776 3107 1733 3107 1733 3108 1776 3108 1777 3108 1733 3109 1777 3109 1772 3109 1778 3110 1779 3110 1733 3110 1733 3111 1779 3111 1780 3111 1733 3112 1780 3112 1775 3112 1781 3096 1782 3096 1733 3096 1733 3113 1782 3113 1783 3113 1733 3114 1783 3114 1778 3114 1735 3115 1784 3115 1733 3115 1733 3116 1784 3116 1785 3116 1733 3117 1785 3117 1781 3117 1734 3118 1786 3118 1735 3118 1735 3119 1786 3119 1787 3119 1735 3120 1787 3120 1784 3120 1784 3121 1787 3121 1788 3121 1784 3122 1788 3122 1785 3122 1785 3123 1788 3123 1789 3123 1785 3124 1789 3124 1781 3124 1781 3125 1789 3125 1790 3125 1781 3126 1790 3126 1782 3126 1782 3127 1790 3127 1791 3127 1782 3128 1791 3128 1783 3128 1783 3129 1791 3129 1792 3129 1783 3130 1792 3130 1778 3130 1778 3131 1792 3131 1793 3131 1778 3132 1793 3132 1779 3132 1779 3133 1793 3133 1794 3133 1779 3134 1794 3134 1780 3134 1780 3135 1794 3135 1795 3135 1780 3136 1795 3136 1775 3136 1775 3137 1795 3137 1796 3137 1775 3138 1796 3138 1776 3138 1776 3139 1796 3139 1797 3139 1776 3140 1797 3140 1777 3140 1777 3141 1797 3141 1798 3141 1777 3142 1798 3142 1772 3142 1772 3143 1798 3143 1799 3143 1772 3144 1799 3144 1773 3144 1773 3145 1799 3145 1800 3145 1773 3146 1800 3146 1774 3146 1774 3147 1800 3147 1801 3147 1774 3148 1801 3148 1769 3148 1769 3149 1801 3149 1802 3149 1769 3150 1802 3150 1770 3150 1770 3151 1802 3151 1803 3151 1770 3152 1803 3152 1771 3152 1771 3153 1803 3153 1804 3153 1771 3154 1804 3154 1766 3154 1766 3155 1804 3155 1805 3155 1766 3156 1805 3156 1767 3156 1767 3157 1805 3157 1806 3157 1767 3158 1806 3158 1768 3158 1768 3159 1806 3159 1807 3159 1768 3160 1807 3160 1763 3160 1763 3161 1807 3161 1808 3161 1763 3162 1808 3162 1764 3162 1764 3163 1808 3163 1809 3163 1764 3164 1809 3164 1765 3164 1765 3165 1809 3165 1810 3165 1765 3166 1810 3166 1760 3166 1760 3167 1810 3167 1811 3167 1760 3168 1811 3168 1761 3168 1761 3169 1811 3169 1812 3169 1761 3170 1812 3170 1762 3170 1762 3171 1812 3171 1813 3171 1762 3172 1813 3172 1757 3172 1757 3173 1813 3173 1814 3173 1757 3174 1814 3174 1758 3174 1758 3175 1814 3175 1815 3175 1758 3176 1815 3176 1759 3176 1759 3177 1815 3177 1816 3177 1759 3178 1816 3178 1754 3178 1754 3179 1816 3179 1817 3179 1754 3180 1817 3180 1755 3180 1755 3181 1817 3181 1818 3181 1755 3182 1818 3182 1756 3182 1756 3183 1818 3183 1819 3183 1756 3184 1819 3184 1751 3184 1751 3185 1819 3185 1820 3185 1751 3186 1820 3186 1752 3186 1752 3187 1820 3187 1821 3187 1752 3188 1821 3188 1753 3188 1753 3189 1821 3189 1822 3189 1753 3190 1822 3190 1748 3190 1748 3191 1822 3191 1823 3191 1748 3192 1823 3192 1749 3192 1749 3193 1823 3193 1824 3193 1749 3194 1824 3194 1750 3194 1750 3195 1824 3195 1825 3195 1750 3196 1825 3196 1745 3196 1745 3197 1825 3197 1826 3197 1745 3198 1826 3198 1746 3198 1746 3199 1826 3199 1827 3199 1746 3200 1827 3200 1747 3200 1747 3201 1827 3201 1828 3201 1747 3202 1828 3202 1742 3202 1742 3203 1828 3203 1829 3203 1742 3204 1829 3204 1743 3204 1743 3205 1829 3205 1830 3205 1743 3206 1830 3206 1744 3206 1744 3207 1830 3207 1831 3207 1744 3208 1831 3208 1739 3208 1739 3209 1831 3209 1832 3209 1739 3210 1832 3210 1740 3210 1740 3211 1832 3211 1833 3211 1740 3212 1833 3212 1741 3212 1741 3213 1833 3213 1834 3213 1741 3214 1834 3214 1736 3214 1736 3215 1834 3215 1835 3215 1736 3216 1835 3216 1737 3216 1737 3217 1835 3217 1836 3217 1737 3218 1836 3218 1738 3218 1738 3219 1836 3219 1837 3219 1738 3220 1837 3220 1731 3220 1731 3221 1837 3221 1838 3221 1731 3222 1838 3222 1732 3222 1732 3223 1838 3223 1839 3223 1732 3224 1839 3224 1734 3224 1734 3225 1839 3225 1786 3225 1839 3226 1840 3226 1786 3226 1786 3227 1840 3227 1841 3227 1786 3228 1841 3228 1787 3228 1787 3229 1841 3229 1842 3229 1787 3230 1842 3230 1788 3230 1788 3231 1842 3231 1843 3231 1788 3232 1843 3232 1789 3232 1789 3233 1843 3233 1844 3233 1789 3234 1844 3234 1790 3234 1790 3235 1844 3235 1845 3235 1790 3236 1845 3236 1791 3236 1791 3237 1845 3237 1846 3237 1791 3238 1846 3238 1792 3238 1792 3239 1846 3239 1847 3239 1792 3240 1847 3240 1793 3240 1793 3241 1847 3241 1848 3241 1793 3242 1848 3242 1794 3242 1794 3243 1848 3243 1849 3243 1794 3244 1849 3244 1795 3244 1795 3245 1849 3245 1850 3245 1795 3246 1850 3246 1796 3246 1796 3247 1850 3247 1851 3247 1796 3248 1851 3248 1797 3248 1797 3249 1851 3249 1852 3249 1797 3250 1852 3250 1798 3250 1798 3251 1852 3251 1853 3251 1798 3252 1853 3252 1799 3252 1799 3253 1853 3253 1854 3253 1799 3254 1854 3254 1800 3254 1800 3255 1854 3255 1855 3255 1800 3256 1855 3256 1801 3256 1801 3257 1855 3257 1856 3257 1801 3258 1856 3258 1802 3258 1802 3259 1856 3259 1857 3259 1802 3260 1857 3260 1803 3260 1803 3261 1857 3261 1858 3261 1803 3262 1858 3262 1804 3262 1804 3263 1858 3263 1859 3263 1804 3264 1859 3264 1805 3264 1805 3265 1859 3265 1860 3265 1805 3266 1860 3266 1806 3266 1806 3267 1860 3267 1861 3267 1806 3268 1861 3268 1807 3268 1807 3269 1861 3269 1862 3269 1807 3270 1862 3270 1808 3270 1808 3271 1862 3271 1863 3271 1808 3272 1863 3272 1809 3272 1809 3273 1863 3273 1864 3273 1809 3274 1864 3274 1810 3274 1810 3275 1864 3275 1865 3275 1810 3276 1865 3276 1811 3276 1811 3277 1865 3277 1866 3277 1811 3278 1866 3278 1812 3278 1812 3279 1866 3279 1867 3279 1812 3280 1867 3280 1813 3280 1813 3281 1867 3281 1868 3281 1813 3282 1868 3282 1814 3282 1814 3283 1868 3283 1869 3283 1814 3284 1869 3284 1815 3284 1815 3285 1869 3285 1870 3285 1815 3286 1870 3286 1816 3286 1816 3287 1870 3287 1871 3287 1816 3288 1871 3288 1817 3288 1817 3289 1871 3289 1872 3289 1817 3290 1872 3290 1818 3290 1818 3291 1872 3291 1873 3291 1818 3292 1873 3292 1819 3292 1819 3293 1873 3293 1874 3293 1819 3294 1874 3294 1820 3294 1820 3295 1874 3295 1875 3295 1820 3296 1875 3296 1821 3296 1821 3297 1875 3297 1876 3297 1821 3298 1876 3298 1822 3298 1822 3299 1876 3299 1877 3299 1822 3300 1877 3300 1823 3300 1823 3301 1877 3301 1878 3301 1823 3302 1878 3302 1824 3302 1824 3303 1878 3303 1879 3303 1824 3304 1879 3304 1825 3304 1825 3305 1879 3305 1880 3305 1825 3306 1880 3306 1826 3306 1826 3307 1880 3307 1881 3307 1826 3308 1881 3308 1827 3308 1827 3309 1881 3309 1882 3309 1827 3310 1882 3310 1828 3310 1828 3311 1882 3311 1883 3311 1828 3312 1883 3312 1829 3312 1829 3313 1883 3313 1884 3313 1829 3314 1884 3314 1830 3314 1830 3315 1884 3315 1885 3315 1830 3316 1885 3316 1831 3316 1831 3317 1885 3317 1886 3317 1831 3318 1886 3318 1832 3318 1832 3319 1886 3319 1887 3319 1832 3320 1887 3320 1833 3320 1833 3321 1887 3321 1888 3321 1833 3322 1888 3322 1834 3322 1834 3323 1888 3323 1889 3323 1834 3324 1889 3324 1835 3324 1835 3325 1889 3325 1890 3325 1835 3326 1890 3326 1836 3326 1836 3327 1890 3327 1891 3327 1836 3328 1891 3328 1837 3328 1837 3329 1891 3329 1892 3329 1837 3330 1892 3330 1838 3330 1838 3331 1892 3331 1893 3331 1838 3332 1893 3332 1839 3332 1839 3333 1893 3333 1840 3333 1893 3334 1894 3334 1840 3334 1840 3335 1894 3335 1895 3335 1840 3336 1895 3336 1841 3336 1841 3337 1895 3337 1896 3337 1841 3338 1896 3338 1842 3338 1842 3339 1896 3339 1897 3339 1842 3340 1897 3340 1843 3340 1843 3341 1897 3341 1898 3341 1843 3342 1898 3342 1844 3342 1844 3343 1898 3343 1899 3343 1844 3344 1899 3344 1845 3344 1845 3345 1899 3345 1900 3345 1845 3346 1900 3346 1846 3346 1846 3347 1900 3347 1901 3347 1846 3348 1901 3348 1847 3348 1847 3349 1901 3349 1902 3349 1847 3350 1902 3350 1848 3350 1848 3351 1902 3351 1903 3351 1848 3352 1903 3352 1849 3352 1849 3353 1903 3353 1904 3353 1849 3354 1904 3354 1850 3354 1850 3355 1904 3355 1905 3355 1850 3356 1905 3356 1851 3356 1851 3357 1905 3357 1906 3357 1851 3358 1906 3358 1852 3358 1852 3359 1906 3359 1907 3359 1852 3360 1907 3360 1853 3360 1853 3361 1907 3361 1908 3361 1853 3362 1908 3362 1854 3362 1854 3363 1908 3363 1909 3363 1854 3364 1909 3364 1855 3364 1855 3365 1909 3365 1910 3365 1855 3366 1910 3366 1856 3366 1856 3367 1910 3367 1911 3367 1856 3368 1911 3368 1857 3368 1857 3369 1911 3369 1912 3369 1857 3370 1912 3370 1858 3370 1858 3371 1912 3371 1913 3371 1858 3372 1913 3372 1859 3372 1859 3373 1913 3373 1914 3373 1859 3374 1914 3374 1860 3374 1860 3375 1914 3375 1915 3375 1860 3376 1915 3376 1861 3376 1861 3377 1915 3377 1916 3377 1861 3378 1916 3378 1862 3378 1862 3379 1916 3379 1917 3379 1862 3380 1917 3380 1863 3380 1863 3381 1917 3381 1918 3381 1863 3382 1918 3382 1864 3382 1864 3383 1918 3383 1919 3383 1864 3384 1919 3384 1865 3384 1865 3385 1919 3385 1920 3385 1865 3386 1920 3386 1866 3386 1866 3387 1920 3387 1921 3387 1866 3388 1921 3388 1867 3388 1867 3389 1921 3389 1922 3389 1867 3390 1922 3390 1868 3390 1868 3391 1922 3391 1923 3391 1868 3392 1923 3392 1869 3392 1869 3393 1923 3393 1924 3393 1869 3394 1924 3394 1870 3394 1870 3395 1924 3395 1925 3395 1870 3396 1925 3396 1871 3396 1871 3397 1925 3397 1926 3397 1871 3398 1926 3398 1872 3398 1872 3399 1926 3399 1927 3399 1872 3400 1927 3400 1873 3400 1873 3401 1927 3401 1928 3401 1873 3402 1928 3402 1874 3402 1874 3403 1928 3403 1929 3403 1874 3404 1929 3404 1875 3404 1875 3405 1929 3405 1930 3405 1875 3406 1930 3406 1876 3406 1876 3407 1930 3407 1931 3407 1876 3408 1931 3408 1877 3408 1877 3409 1931 3409 1932 3409 1877 3410 1932 3410 1878 3410 1878 3411 1932 3411 1933 3411 1878 3412 1933 3412 1879 3412 1879 3413 1933 3413 1934 3413 1879 3414 1934 3414 1880 3414 1880 3415 1934 3415 1935 3415 1880 3416 1935 3416 1881 3416 1881 3417 1935 3417 1936 3417 1881 3418 1936 3418 1882 3418 1882 3419 1936 3419 1937 3419 1882 3420 1937 3420 1883 3420 1883 3421 1937 3421 1938 3421 1883 3422 1938 3422 1884 3422 1884 3423 1938 3423 1939 3423 1884 3424 1939 3424 1885 3424 1885 3425 1939 3425 1940 3425 1885 3426 1940 3426 1886 3426 1886 3427 1940 3427 1941 3427 1886 3428 1941 3428 1887 3428 1887 3429 1941 3429 1942 3429 1887 3430 1942 3430 1888 3430 1888 3431 1942 3431 1943 3431 1888 3432 1943 3432 1889 3432 1889 3433 1943 3433 1944 3433 1889 3434 1944 3434 1890 3434 1890 3435 1944 3435 1945 3435 1890 3436 1945 3436 1891 3436 1891 3437 1945 3437 1946 3437 1891 3438 1946 3438 1892 3438 1892 3439 1946 3439 1947 3439 1892 3440 1947 3440 1893 3440 1893 3441 1947 3441 1894 3441 1947 3442 1948 3442 1894 3442 1894 3443 1948 3443 1949 3443 1894 3444 1949 3444 1895 3444 1895 3445 1949 3445 1950 3445 1895 3446 1950 3446 1896 3446 1896 3447 1950 3447 1951 3447 1896 3448 1951 3448 1897 3448 1897 3449 1951 3449 1952 3449 1897 3450 1952 3450 1898 3450 1898 3451 1952 3451 1953 3451 1898 3452 1953 3452 1899 3452 1899 3453 1953 3453 1954 3453 1899 3454 1954 3454 1900 3454 1900 3455 1954 3455 1955 3455 1900 3456 1955 3456 1901 3456 1901 3457 1955 3457 1956 3457 1901 3458 1956 3458 1902 3458 1902 3459 1956 3459 1957 3459 1902 3460 1957 3460 1903 3460 1903 3461 1957 3461 1958 3461 1903 3462 1958 3462 1904 3462 1904 3463 1958 3463 1959 3463 1904 3464 1959 3464 1905 3464 1905 3465 1959 3465 1960 3465 1905 3466 1960 3466 1906 3466 1906 3467 1960 3467 1961 3467 1906 3468 1961 3468 1907 3468 1907 3469 1961 3469 1962 3469 1907 3470 1962 3470 1908 3470 1908 3471 1962 3471 1963 3471 1908 3472 1963 3472 1909 3472 1909 3473 1963 3473 1964 3473 1909 3474 1964 3474 1910 3474 1910 3475 1964 3475 1965 3475 1910 3476 1965 3476 1911 3476 1911 3477 1965 3477 1966 3477 1911 3478 1966 3478 1912 3478 1912 3479 1966 3479 1967 3479 1912 3480 1967 3480 1913 3480 1913 3481 1967 3481 1968 3481 1913 3482 1968 3482 1914 3482 1914 3483 1968 3483 1969 3483 1914 3484 1969 3484 1915 3484 1915 3485 1969 3485 1970 3485 1915 3486 1970 3486 1916 3486 1916 3487 1970 3487 1971 3487 1916 3488 1971 3488 1917 3488 1917 3489 1971 3489 1972 3489 1917 3490 1972 3490 1918 3490 1918 3491 1972 3491 1973 3491 1918 3492 1973 3492 1919 3492 1919 3493 1973 3493 1974 3493 1919 3494 1974 3494 1920 3494 1920 3495 1974 3495 1975 3495 1920 3496 1975 3496 1921 3496 1921 3497 1975 3497 1976 3497 1921 3498 1976 3498 1922 3498 1922 3499 1976 3499 1977 3499 1922 3500 1977 3500 1923 3500 1923 3501 1977 3501 1978 3501 1923 3502 1978 3502 1924 3502 1924 3503 1978 3503 1979 3503 1924 3504 1979 3504 1925 3504 1925 3505 1979 3505 1980 3505 1925 3506 1980 3506 1926 3506 1926 3507 1980 3507 1981 3507 1926 3508 1981 3508 1927 3508 1927 3509 1981 3509 1982 3509 1927 3510 1982 3510 1928 3510 1928 3511 1982 3511 1983 3511 1928 3512 1983 3512 1929 3512 1929 3513 1983 3513 1984 3513 1929 3514 1984 3514 1930 3514 1930 3515 1984 3515 1985 3515 1930 3516 1985 3516 1931 3516 1931 3517 1985 3517 1986 3517 1931 3518 1986 3518 1932 3518 1932 3519 1986 3519 1987 3519 1932 3520 1987 3520 1933 3520 1933 3521 1987 3521 1988 3521 1933 3522 1988 3522 1934 3522 1934 3523 1988 3523 1989 3523 1934 3524 1989 3524 1935 3524 1935 3525 1989 3525 1990 3525 1935 3526 1990 3526 1936 3526 1936 3527 1990 3527 1991 3527 1936 3528 1991 3528 1937 3528 1937 3529 1991 3529 1992 3529 1937 3530 1992 3530 1938 3530 1938 3531 1992 3531 1993 3531 1938 3532 1993 3532 1939 3532 1939 3533 1993 3533 1994 3533 1939 3534 1994 3534 1940 3534 1940 3535 1994 3535 1995 3535 1940 3536 1995 3536 1941 3536 1941 3537 1995 3537 1996 3537 1941 3538 1996 3538 1942 3538 1942 3539 1996 3539 1997 3539 1942 3540 1997 3540 1943 3540 1943 3541 1997 3541 1998 3541 1943 3542 1998 3542 1944 3542 1944 3543 1998 3543 1999 3543 1944 3544 1999 3544 1945 3544 1945 3545 1999 3545 2000 3545 1945 3546 2000 3546 1946 3546 1946 3547 2000 3547 2001 3547 1946 3548 2001 3548 1947 3548 1947 3549 2001 3549 1948 3549 2001 3550 2002 3550 1948 3550 1948 3551 2002 3551 2003 3551 1948 3552 2003 3552 1949 3552 1949 3553 2003 3553 2004 3553 1949 3554 2004 3554 1950 3554 1950 3555 2004 3555 2005 3555 1950 3556 2005 3556 1951 3556 1951 3557 2005 3557 2006 3557 1951 3558 2006 3558 1952 3558 1952 3559 2006 3559 2007 3559 1952 3560 2007 3560 1953 3560 1953 3561 2007 3561 2008 3561 1953 3562 2008 3562 1954 3562 1954 3563 2008 3563 2009 3563 1954 3564 2009 3564 1955 3564 1955 3565 2009 3565 2010 3565 1955 3566 2010 3566 1956 3566 1956 3567 2010 3567 2011 3567 1956 3568 2011 3568 1957 3568 1957 3569 2011 3569 2012 3569 1957 3570 2012 3570 1958 3570 1958 3571 2012 3571 2013 3571 1958 3572 2013 3572 1959 3572 1959 3573 2013 3573 2014 3573 1959 3574 2014 3574 1960 3574 1960 3575 2014 3575 2015 3575 1960 3576 2015 3576 1961 3576 1961 3577 2015 3577 2016 3577 1961 3578 2016 3578 1962 3578 1962 3579 2016 3579 2017 3579 1962 3580 2017 3580 1963 3580 1963 3581 2017 3581 2018 3581 1963 3582 2018 3582 1964 3582 1964 3583 2018 3583 2019 3583 1964 3584 2019 3584 1965 3584 1965 3585 2019 3585 2020 3585 1965 3586 2020 3586 1966 3586 1966 3587 2020 3587 2021 3587 1966 3588 2021 3588 1967 3588 1967 3589 2021 3589 2022 3589 1967 3590 2022 3590 1968 3590 1968 3591 2022 3591 2023 3591 1968 3592 2023 3592 1969 3592 1969 3593 2023 3593 2024 3593 1969 3594 2024 3594 1970 3594 1970 3595 2024 3595 2025 3595 1970 3596 2025 3596 1971 3596 1971 3597 2025 3597 2026 3597 1971 3598 2026 3598 1972 3598 1972 3599 2026 3599 2027 3599 1972 3600 2027 3600 1973 3600 1973 3601 2027 3601 2028 3601 1973 3602 2028 3602 1974 3602 1974 3603 2028 3603 2029 3603 1974 3604 2029 3604 1975 3604 1975 3605 2029 3605 2030 3605 1975 3606 2030 3606 1976 3606 1976 3607 2030 3607 2031 3607 1976 3608 2031 3608 1977 3608 1977 3609 2031 3609 2032 3609 1977 3610 2032 3610 1978 3610 1978 3611 2032 3611 2033 3611 1978 3612 2033 3612 1979 3612 1979 3613 2033 3613 2034 3613 1979 3614 2034 3614 1980 3614 1980 3615 2034 3615 2035 3615 1980 3616 2035 3616 1981 3616 1981 3617 2035 3617 2036 3617 1981 3618 2036 3618 1982 3618 1982 3619 2036 3619 2037 3619 1982 3620 2037 3620 1983 3620 1983 3621 2037 3621 2038 3621 1983 3622 2038 3622 1984 3622 1984 3623 2038 3623 2039 3623 1984 3624 2039 3624 1985 3624 1985 3625 2039 3625 2040 3625 1985 3626 2040 3626 1986 3626 1986 3627 2040 3627 2041 3627 1986 3628 2041 3628 1987 3628 1987 3629 2041 3629 2042 3629 1987 3630 2042 3630 1988 3630 1988 3631 2042 3631 2043 3631 1988 3632 2043 3632 1989 3632 1989 3633 2043 3633 2044 3633 1989 3634 2044 3634 1990 3634 1990 3635 2044 3635 2045 3635 1990 3636 2045 3636 1991 3636 1991 3637 2045 3637 2046 3637 1991 3638 2046 3638 1992 3638 1992 3639 2046 3639 2047 3639 1992 3640 2047 3640 1993 3640 1993 3641 2047 3641 2048 3641 1993 3642 2048 3642 1994 3642 1994 3643 2048 3643 2049 3643 1994 3644 2049 3644 1995 3644 1995 3645 2049 3645 2050 3645 1995 3646 2050 3646 1996 3646 1996 3647 2050 3647 2051 3647 1996 3648 2051 3648 1997 3648 1997 3649 2051 3649 2052 3649 1997 3650 2052 3650 1998 3650 1998 3651 2052 3651 2053 3651 1998 3652 2053 3652 1999 3652 1999 3653 2053 3653 2054 3653 1999 3654 2054 3654 2000 3654 2000 3655 2054 3655 2055 3655 2000 3656 2055 3656 2001 3656 2001 3657 2055 3657 2002 3657 2055 3658 2056 3658 2002 3658 2002 3659 2056 3659 2057 3659 2002 3660 2057 3660 2003 3660 2003 3661 2057 3661 2058 3661 2003 3662 2058 3662 2004 3662 2004 3663 2058 3663 2059 3663 2004 3664 2059 3664 2005 3664 2005 3665 2059 3665 2060 3665 2005 3666 2060 3666 2006 3666 2006 3667 2060 3667 2061 3667 2006 3668 2061 3668 2007 3668 2007 3669 2061 3669 2062 3669 2007 3670 2062 3670 2008 3670 2008 3671 2062 3671 2063 3671 2008 3672 2063 3672 2009 3672 2009 3673 2063 3673 2064 3673 2009 3674 2064 3674 2010 3674 2010 3675 2064 3675 2065 3675 2010 3676 2065 3676 2011 3676 2011 3677 2065 3677 2066 3677 2011 3678 2066 3678 2012 3678 2012 3679 2066 3679 2067 3679 2012 3680 2067 3680 2013 3680 2013 3681 2067 3681 2068 3681 2013 3682 2068 3682 2014 3682 2014 3683 2068 3683 2069 3683 2014 3684 2069 3684 2015 3684 2015 3685 2069 3685 2070 3685 2015 3686 2070 3686 2016 3686 2016 3687 2070 3687 2071 3687 2016 3688 2071 3688 2017 3688 2017 3689 2071 3689 2072 3689 2017 3690 2072 3690 2018 3690 2018 3691 2072 3691 2073 3691 2018 3692 2073 3692 2019 3692 2019 3693 2073 3693 2074 3693 2019 3694 2074 3694 2020 3694 2020 3695 2074 3695 2075 3695 2020 3696 2075 3696 2021 3696 2021 3697 2075 3697 2076 3697 2021 3698 2076 3698 2022 3698 2022 3699 2076 3699 2077 3699 2022 3700 2077 3700 2023 3700 2023 3701 2077 3701 2078 3701 2023 3702 2078 3702 2024 3702 2024 3703 2078 3703 2079 3703 2024 3704 2079 3704 2025 3704 2025 3705 2079 3705 2080 3705 2025 3706 2080 3706 2026 3706 2026 3707 2080 3707 2081 3707 2026 3708 2081 3708 2027 3708 2027 3709 2081 3709 2082 3709 2027 3710 2082 3710 2028 3710 2028 3711 2082 3711 2083 3711 2028 3712 2083 3712 2029 3712 2029 3713 2083 3713 2084 3713 2029 3714 2084 3714 2030 3714 2030 3715 2084 3715 2085 3715 2030 3716 2085 3716 2031 3716 2031 3717 2085 3717 2086 3717 2031 3718 2086 3718 2032 3718 2032 3719 2086 3719 2087 3719 2032 3720 2087 3720 2033 3720 2033 3721 2087 3721 2088 3721 2033 3722 2088 3722 2034 3722 2034 3723 2088 3723 2089 3723 2034 3724 2089 3724 2035 3724 2035 3725 2089 3725 2090 3725 2035 3726 2090 3726 2036 3726 2036 3727 2090 3727 2091 3727 2036 3728 2091 3728 2037 3728 2037 3729 2091 3729 2092 3729 2037 3730 2092 3730 2038 3730 2038 3731 2092 3731 2093 3731 2038 3732 2093 3732 2039 3732 2039 3733 2093 3733 2094 3733 2039 3734 2094 3734 2040 3734 2040 3735 2094 3735 2095 3735 2040 3736 2095 3736 2041 3736 2041 3737 2095 3737 2096 3737 2041 3738 2096 3738 2042 3738 2042 3739 2096 3739 2097 3739 2042 3740 2097 3740 2043 3740 2043 3741 2097 3741 2098 3741 2043 3742 2098 3742 2044 3742 2044 3743 2098 3743 2099 3743 2044 3744 2099 3744 2045 3744 2045 3745 2099 3745 2100 3745 2045 3746 2100 3746 2046 3746 2046 3747 2100 3747 2101 3747 2046 3748 2101 3748 2047 3748 2047 3749 2101 3749 2102 3749 2047 3750 2102 3750 2048 3750 2048 3751 2102 3751 2103 3751 2048 3752 2103 3752 2049 3752 2049 3753 2103 3753 2104 3753 2049 3754 2104 3754 2050 3754 2050 3755 2104 3755 2105 3755 2050 3756 2105 3756 2051 3756 2051 3757 2105 3757 2106 3757 2051 3758 2106 3758 2052 3758 2052 3759 2106 3759 2107 3759 2052 3760 2107 3760 2053 3760 2053 3761 2107 3761 2108 3761 2053 3762 2108 3762 2054 3762 2054 3763 2108 3763 2109 3763 2054 3764 2109 3764 2055 3764 2055 3765 2109 3765 2056 3765 2109 3766 2110 3766 2056 3766 2056 3767 2110 3767 2111 3767 2056 3768 2111 3768 2057 3768 2057 3769 2111 3769 2112 3769 2057 3770 2112 3770 2058 3770 2058 3771 2112 3771 2113 3771 2058 3772 2113 3772 2059 3772 2059 3773 2113 3773 2114 3773 2059 3774 2114 3774 2060 3774 2060 3775 2114 3775 2115 3775 2060 3776 2115 3776 2061 3776 2061 3777 2115 3777 2116 3777 2061 3778 2116 3778 2062 3778 2062 3779 2116 3779 2117 3779 2062 3780 2117 3780 2063 3780 2063 3781 2117 3781 2118 3781 2063 3782 2118 3782 2064 3782 2064 3783 2118 3783 2119 3783 2064 3784 2119 3784 2065 3784 2065 3785 2119 3785 2120 3785 2065 3786 2120 3786 2066 3786 2066 3787 2120 3787 2121 3787 2066 3788 2121 3788 2067 3788 2067 3789 2121 3789 2122 3789 2067 3790 2122 3790 2068 3790 2068 3791 2122 3791 2123 3791 2068 3792 2123 3792 2069 3792 2069 3793 2123 3793 2124 3793 2069 3794 2124 3794 2070 3794 2070 3795 2124 3795 2125 3795 2070 3796 2125 3796 2071 3796 2071 3797 2125 3797 2126 3797 2071 3798 2126 3798 2072 3798 2072 3799 2126 3799 2127 3799 2072 3800 2127 3800 2073 3800 2073 3801 2127 3801 2128 3801 2073 3802 2128 3802 2074 3802 2074 3803 2128 3803 2129 3803 2074 3804 2129 3804 2075 3804 2075 3805 2129 3805 2130 3805 2075 3806 2130 3806 2076 3806 2076 3807 2130 3807 2131 3807 2076 3808 2131 3808 2077 3808 2077 3809 2131 3809 2132 3809 2077 3810 2132 3810 2078 3810 2078 3811 2132 3811 2133 3811 2078 3812 2133 3812 2079 3812 2079 3813 2133 3813 2134 3813 2079 3814 2134 3814 2080 3814 2080 3815 2134 3815 2135 3815 2080 3816 2135 3816 2081 3816 2081 3817 2135 3817 2136 3817 2081 3818 2136 3818 2082 3818 2082 3819 2136 3819 2137 3819 2082 3820 2137 3820 2083 3820 2083 3821 2137 3821 2138 3821 2083 3822 2138 3822 2084 3822 2084 3823 2138 3823 2139 3823 2084 3824 2139 3824 2085 3824 2085 3825 2139 3825 2140 3825 2085 3826 2140 3826 2086 3826 2086 3827 2140 3827 2141 3827 2086 3828 2141 3828 2087 3828 2087 3829 2141 3829 2142 3829 2087 3830 2142 3830 2088 3830 2088 3831 2142 3831 2143 3831 2088 3832 2143 3832 2089 3832 2089 3833 2143 3833 2144 3833 2089 3834 2144 3834 2090 3834 2090 3835 2144 3835 2145 3835 2090 3836 2145 3836 2091 3836 2091 3837 2145 3837 2146 3837 2091 3838 2146 3838 2092 3838 2092 3839 2146 3839 2147 3839 2092 3840 2147 3840 2093 3840 2093 3841 2147 3841 2148 3841 2093 3842 2148 3842 2094 3842 2094 3843 2148 3843 2149 3843 2094 3844 2149 3844 2095 3844 2095 3845 2149 3845 2150 3845 2095 3846 2150 3846 2096 3846 2096 3847 2150 3847 2151 3847 2096 3848 2151 3848 2097 3848 2097 3849 2151 3849 2152 3849 2097 3850 2152 3850 2098 3850 2098 3851 2152 3851 2153 3851 2098 3852 2153 3852 2099 3852 2099 3853 2153 3853 2154 3853 2099 3854 2154 3854 2100 3854 2100 3855 2154 3855 2155 3855 2100 3856 2155 3856 2101 3856 2101 3857 2155 3857 2156 3857 2101 3858 2156 3858 2102 3858 2102 3859 2156 3859 2157 3859 2102 3860 2157 3860 2103 3860 2103 3861 2157 3861 2158 3861 2103 3862 2158 3862 2104 3862 2104 3863 2158 3863 2159 3863 2104 3864 2159 3864 2105 3864 2105 3865 2159 3865 2160 3865 2105 3866 2160 3866 2106 3866 2106 3867 2160 3867 2161 3867 2106 3868 2161 3868 2107 3868 2107 3869 2161 3869 2162 3869 2107 3870 2162 3870 2108 3870 2108 3871 2162 3871 2163 3871 2108 3872 2163 3872 2109 3872 2109 3873 2163 3873 2110 3873 2163 3874 2164 3874 2110 3874 2110 3875 2164 3875 2165 3875 2110 3876 2165 3876 2111 3876 2111 3877 2165 3877 2166 3877 2111 3878 2166 3878 2112 3878 2112 3879 2166 3879 2167 3879 2112 3880 2167 3880 2113 3880 2113 3881 2167 3881 2168 3881 2113 3882 2168 3882 2114 3882 2114 3883 2168 3883 2169 3883 2114 3884 2169 3884 2115 3884 2115 3885 2169 3885 2170 3885 2115 3886 2170 3886 2116 3886 2116 3887 2170 3887 2171 3887 2116 3888 2171 3888 2117 3888 2117 3889 2171 3889 2172 3889 2117 3890 2172 3890 2118 3890 2118 3891 2172 3891 2173 3891 2118 3892 2173 3892 2119 3892 2119 3893 2173 3893 2174 3893 2119 3894 2174 3894 2120 3894 2120 3895 2174 3895 2175 3895 2120 3896 2175 3896 2121 3896 2121 3897 2175 3897 2176 3897 2121 3898 2176 3898 2122 3898 2122 3899 2176 3899 2177 3899 2122 3900 2177 3900 2123 3900 2123 3901 2177 3901 2178 3901 2123 3902 2178 3902 2124 3902 2124 3903 2178 3903 2179 3903 2124 3904 2179 3904 2125 3904 2125 3905 2179 3905 2180 3905 2125 3906 2180 3906 2126 3906 2126 3907 2180 3907 2181 3907 2126 3908 2181 3908 2127 3908 2127 3909 2181 3909 2182 3909 2127 3910 2182 3910 2128 3910 2128 3911 2182 3911 2183 3911 2128 3912 2183 3912 2129 3912 2129 3913 2183 3913 2184 3913 2129 3914 2184 3914 2130 3914 2130 3915 2184 3915 2185 3915 2130 3916 2185 3916 2131 3916 2131 3917 2185 3917 2186 3917 2131 3918 2186 3918 2132 3918 2132 3919 2186 3919 2187 3919 2132 3920 2187 3920 2133 3920 2133 3921 2187 3921 2188 3921 2133 3922 2188 3922 2134 3922 2134 3923 2188 3923 2189 3923 2134 3924 2189 3924 2135 3924 2135 3925 2189 3925 2190 3925 2135 3926 2190 3926 2136 3926 2136 3927 2190 3927 2191 3927 2136 3928 2191 3928 2137 3928 2137 3929 2191 3929 2192 3929 2137 3930 2192 3930 2138 3930 2138 3931 2192 3931 2193 3931 2138 3932 2193 3932 2139 3932 2139 3933 2193 3933 2194 3933 2139 3934 2194 3934 2140 3934 2140 3935 2194 3935 2195 3935 2140 3936 2195 3936 2141 3936 2141 3937 2195 3937 2196 3937 2141 3938 2196 3938 2142 3938 2142 3939 2196 3939 2197 3939 2142 3940 2197 3940 2143 3940 2143 3941 2197 3941 2198 3941 2143 3942 2198 3942 2144 3942 2144 3943 2198 3943 2199 3943 2144 3944 2199 3944 2145 3944 2145 3945 2199 3945 2200 3945 2145 3946 2200 3946 2146 3946 2146 3947 2200 3947 2201 3947 2146 3948 2201 3948 2147 3948 2147 3949 2201 3949 2202 3949 2147 3950 2202 3950 2148 3950 2148 3951 2202 3951 2203 3951 2148 3952 2203 3952 2149 3952 2149 3953 2203 3953 2204 3953 2149 3954 2204 3954 2150 3954 2150 3955 2204 3955 2205 3955 2150 3956 2205 3956 2151 3956 2151 3957 2205 3957 2206 3957 2151 3958 2206 3958 2152 3958 2152 3959 2206 3959 2207 3959 2152 3960 2207 3960 2153 3960 2153 3961 2207 3961 2208 3961 2153 3962 2208 3962 2154 3962 2154 3963 2208 3963 2209 3963 2154 3964 2209 3964 2155 3964 2155 3965 2209 3965 2210 3965 2155 3966 2210 3966 2156 3966 2156 3967 2210 3967 2211 3967 2156 3968 2211 3968 2157 3968 2157 3969 2211 3969 2212 3969 2157 3970 2212 3970 2158 3970 2158 3971 2212 3971 2213 3971 2158 3972 2213 3972 2159 3972 2159 3973 2213 3973 2214 3973 2159 3974 2214 3974 2160 3974 2160 3975 2214 3975 2215 3975 2160 3976 2215 3976 2161 3976 2161 3977 2215 3977 2216 3977 2161 3978 2216 3978 2162 3978 2162 3979 2216 3979 2217 3979 2162 3980 2217 3980 2163 3980 2163 3981 2217 3981 2164 3981 2217 3982 2218 3982 2164 3982 2164 3983 2218 3983 2219 3983 2164 3984 2219 3984 2165 3984 2165 3985 2219 3985 2220 3985 2165 3986 2220 3986 2166 3986 2166 3987 2220 3987 2221 3987 2166 3988 2221 3988 2167 3988 2167 3989 2221 3989 2222 3989 2167 3990 2222 3990 2168 3990 2168 3991 2222 3991 2223 3991 2168 3992 2223 3992 2169 3992 2169 3993 2223 3993 2224 3993 2169 3994 2224 3994 2170 3994 2170 3995 2224 3995 2225 3995 2170 3996 2225 3996 2171 3996 2171 3997 2225 3997 2226 3997 2171 3998 2226 3998 2172 3998 2172 3999 2226 3999 2227 3999 2172 4000 2227 4000 2173 4000 2173 4001 2227 4001 2228 4001 2173 4002 2228 4002 2174 4002 2174 4003 2228 4003 2229 4003 2174 4004 2229 4004 2175 4004 2175 4005 2229 4005 2230 4005 2175 4006 2230 4006 2176 4006 2176 4007 2230 4007 2231 4007 2176 4008 2231 4008 2177 4008 2177 4009 2231 4009 2232 4009 2177 4010 2232 4010 2178 4010 2178 4011 2232 4011 2233 4011 2178 4012 2233 4012 2179 4012 2179 4013 2233 4013 2234 4013 2179 4014 2234 4014 2180 4014 2180 4015 2234 4015 2235 4015 2180 4016 2235 4016 2181 4016 2181 4017 2235 4017 2236 4017 2181 4018 2236 4018 2182 4018 2182 4019 2236 4019 2237 4019 2182 4020 2237 4020 2183 4020 2183 4021 2237 4021 2238 4021 2183 4022 2238 4022 2184 4022 2184 4023 2238 4023 2239 4023 2184 4024 2239 4024 2185 4024 2185 4025 2239 4025 2240 4025 2185 4026 2240 4026 2186 4026 2186 4027 2240 4027 2241 4027 2186 4028 2241 4028 2187 4028 2187 4029 2241 4029 2242 4029 2187 4030 2242 4030 2188 4030 2188 4031 2242 4031 2243 4031 2188 4032 2243 4032 2189 4032 2189 4033 2243 4033 2244 4033 2189 4034 2244 4034 2190 4034 2190 4035 2244 4035 2245 4035 2190 4036 2245 4036 2191 4036 2191 4037 2245 4037 2246 4037 2191 4038 2246 4038 2192 4038 2192 4039 2246 4039 2247 4039 2192 4040 2247 4040 2193 4040 2193 4041 2247 4041 2248 4041 2193 4042 2248 4042 2194 4042 2194 4043 2248 4043 2249 4043 2194 4044 2249 4044 2195 4044 2195 4045 2249 4045 2250 4045 2195 4046 2250 4046 2196 4046 2196 4047 2250 4047 2251 4047 2196 4048 2251 4048 2197 4048 2197 4049 2251 4049 2252 4049 2197 4050 2252 4050 2198 4050 2198 4051 2252 4051 2253 4051 2198 4052 2253 4052 2199 4052 2199 4053 2253 4053 2254 4053 2199 4054 2254 4054 2200 4054 2200 4055 2254 4055 2255 4055 2200 4056 2255 4056 2201 4056 2201 4057 2255 4057 2256 4057 2201 4058 2256 4058 2202 4058 2202 4059 2256 4059 2257 4059 2202 4060 2257 4060 2203 4060 2203 4061 2257 4061 2258 4061 2203 4062 2258 4062 2204 4062 2204 4063 2258 4063 2259 4063 2204 4064 2259 4064 2205 4064 2205 4065 2259 4065 2260 4065 2205 4066 2260 4066 2206 4066 2206 4067 2260 4067 2261 4067 2206 4068 2261 4068 2207 4068 2207 4069 2261 4069 2262 4069 2207 4070 2262 4070 2208 4070 2208 4071 2262 4071 2263 4071 2208 4072 2263 4072 2209 4072 2209 4073 2263 4073 2264 4073 2209 4074 2264 4074 2210 4074 2210 4075 2264 4075 2265 4075 2210 4076 2265 4076 2211 4076 2211 4077 2265 4077 2266 4077 2211 4078 2266 4078 2212 4078 2212 4079 2266 4079 2267 4079 2212 4080 2267 4080 2213 4080 2213 4081 2267 4081 2268 4081 2213 4082 2268 4082 2214 4082 2214 4083 2268 4083 2269 4083 2214 4084 2269 4084 2215 4084 2215 4085 2269 4085 2270 4085 2215 4086 2270 4086 2216 4086 2216 4087 2270 4087 2271 4087 2216 4088 2271 4088 2217 4088 2217 4089 2271 4089 2218 4089 2271 4090 2272 4090 2218 4090 2218 4091 2272 4091 2273 4091 2218 4092 2273 4092 2219 4092 2219 4093 2273 4093 2274 4093 2219 4094 2274 4094 2220 4094 2220 4095 2274 4095 2275 4095 2220 4096 2275 4096 2221 4096 2221 4097 2275 4097 2276 4097 2221 4098 2276 4098 2222 4098 2222 4099 2276 4099 2277 4099 2222 4100 2277 4100 2223 4100 2223 4101 2277 4101 2278 4101 2223 4102 2278 4102 2224 4102 2224 4103 2278 4103 2279 4103 2224 4104 2279 4104 2225 4104 2225 4105 2279 4105 2280 4105 2225 4106 2280 4106 2226 4106 2226 4107 2280 4107 2281 4107 2226 4108 2281 4108 2227 4108 2227 4109 2281 4109 2282 4109 2227 4110 2282 4110 2228 4110 2228 4111 2282 4111 2283 4111 2228 4112 2283 4112 2229 4112 2229 4113 2283 4113 2284 4113 2229 4114 2284 4114 2230 4114 2230 4115 2284 4115 2285 4115 2230 4116 2285 4116 2231 4116 2231 4117 2285 4117 2286 4117 2231 4118 2286 4118 2232 4118 2232 4119 2286 4119 2287 4119 2232 4120 2287 4120 2233 4120 2233 4121 2287 4121 2288 4121 2233 4122 2288 4122 2234 4122 2234 4123 2288 4123 2289 4123 2234 4124 2289 4124 2235 4124 2235 4125 2289 4125 2290 4125 2235 4126 2290 4126 2236 4126 2236 4127 2290 4127 2291 4127 2236 4128 2291 4128 2237 4128 2237 4129 2291 4129 2292 4129 2237 4130 2292 4130 2238 4130 2238 4131 2292 4131 2293 4131 2238 4132 2293 4132 2239 4132 2239 4133 2293 4133 2294 4133 2239 4134 2294 4134 2240 4134 2240 4135 2294 4135 2295 4135 2240 4136 2295 4136 2241 4136 2241 4137 2295 4137 2296 4137 2241 4138 2296 4138 2242 4138 2242 4139 2296 4139 2297 4139 2242 4140 2297 4140 2243 4140 2243 4141 2297 4141 2298 4141 2243 4142 2298 4142 2244 4142 2244 4143 2298 4143 2299 4143 2244 4144 2299 4144 2245 4144 2245 4145 2299 4145 2300 4145 2245 4146 2300 4146 2246 4146 2246 4147 2300 4147 2301 4147 2246 4148 2301 4148 2247 4148 2247 4149 2301 4149 2302 4149 2247 4150 2302 4150 2248 4150 2248 4151 2302 4151 2303 4151 2248 4152 2303 4152 2249 4152 2249 4153 2303 4153 2304 4153 2249 4154 2304 4154 2250 4154 2250 4155 2304 4155 2305 4155 2250 4156 2305 4156 2251 4156 2251 4157 2305 4157 2306 4157 2251 4158 2306 4158 2252 4158 2252 4159 2306 4159 2307 4159 2252 4160 2307 4160 2253 4160 2253 4161 2307 4161 2308 4161 2253 4162 2308 4162 2254 4162 2254 4163 2308 4163 2309 4163 2254 4164 2309 4164 2255 4164 2255 4165 2309 4165 2310 4165 2255 4166 2310 4166 2256 4166 2256 4167 2310 4167 2311 4167 2256 4168 2311 4168 2257 4168 2257 4169 2311 4169 2312 4169 2257 4170 2312 4170 2258 4170 2258 4171 2312 4171 2313 4171 2258 4172 2313 4172 2259 4172 2259 4173 2313 4173 2314 4173 2259 4174 2314 4174 2260 4174 2260 4175 2314 4175 2315 4175 2260 4176 2315 4176 2261 4176 2261 4177 2315 4177 2316 4177 2261 4178 2316 4178 2262 4178 2262 4179 2316 4179 2317 4179 2262 4180 2317 4180 2263 4180 2263 4181 2317 4181 2318 4181 2263 4182 2318 4182 2264 4182 2264 4183 2318 4183 2319 4183 2264 4184 2319 4184 2265 4184 2265 4185 2319 4185 2320 4185 2265 4186 2320 4186 2266 4186 2266 4187 2320 4187 2321 4187 2266 4188 2321 4188 2267 4188 2267 4189 2321 4189 2322 4189 2267 4190 2322 4190 2268 4190 2268 4191 2322 4191 2323 4191 2268 4192 2323 4192 2269 4192 2269 4193 2323 4193 2324 4193 2269 4194 2324 4194 2270 4194 2270 4195 2324 4195 2325 4195 2270 4196 2325 4196 2271 4196 2271 4197 2325 4197 2272 4197 2325 4198 2326 4198 2272 4198 2272 4199 2326 4199 2327 4199 2272 4200 2327 4200 2273 4200 2273 4201 2327 4201 2328 4201 2273 4202 2328 4202 2274 4202 2274 4203 2328 4203 2329 4203 2274 4204 2329 4204 2275 4204 2275 4205 2329 4205 2330 4205 2275 4206 2330 4206 2276 4206 2276 4207 2330 4207 2331 4207 2276 4208 2331 4208 2277 4208 2277 4209 2331 4209 2332 4209 2277 4210 2332 4210 2278 4210 2278 4211 2332 4211 2333 4211 2278 4212 2333 4212 2279 4212 2279 4213 2333 4213 2334 4213 2279 4214 2334 4214 2280 4214 2280 4215 2334 4215 2335 4215 2280 4216 2335 4216 2281 4216 2281 4217 2335 4217 2336 4217 2281 4218 2336 4218 2282 4218 2282 4219 2336 4219 2337 4219 2282 4220 2337 4220 2283 4220 2283 4221 2337 4221 2338 4221 2283 4222 2338 4222 2284 4222 2284 4223 2338 4223 2339 4223 2284 4224 2339 4224 2285 4224 2285 4225 2339 4225 2340 4225 2285 4226 2340 4226 2286 4226 2286 4227 2340 4227 2341 4227 2286 4228 2341 4228 2287 4228 2287 4229 2341 4229 2342 4229 2287 4230 2342 4230 2288 4230 2288 4231 2342 4231 2343 4231 2288 4232 2343 4232 2289 4232 2289 4233 2343 4233 2344 4233 2289 4234 2344 4234 2290 4234 2290 4235 2344 4235 2345 4235 2290 4236 2345 4236 2291 4236 2291 4237 2345 4237 2346 4237 2291 4238 2346 4238 2292 4238 2292 4239 2346 4239 2347 4239 2292 4240 2347 4240 2293 4240 2293 4241 2347 4241 2348 4241 2293 4242 2348 4242 2294 4242 2294 4243 2348 4243 2349 4243 2294 4244 2349 4244 2295 4244 2295 4245 2349 4245 2350 4245 2295 4246 2350 4246 2296 4246 2296 4247 2350 4247 2351 4247 2296 4248 2351 4248 2297 4248 2297 4249 2351 4249 2352 4249 2297 4250 2352 4250 2298 4250 2298 4251 2352 4251 2353 4251 2298 4252 2353 4252 2299 4252 2299 4253 2353 4253 2354 4253 2299 4254 2354 4254 2300 4254 2300 4255 2354 4255 2355 4255 2300 4256 2355 4256 2301 4256 2301 4257 2355 4257 2356 4257 2301 4258 2356 4258 2302 4258 2302 4259 2356 4259 2357 4259 2302 4260 2357 4260 2303 4260 2303 4261 2357 4261 2358 4261 2303 4262 2358 4262 2304 4262 2304 4263 2358 4263 2359 4263 2304 4264 2359 4264 2305 4264 2305 4265 2359 4265 2360 4265 2305 4266 2360 4266 2306 4266 2306 4267 2360 4267 2361 4267 2306 4268 2361 4268 2307 4268 2307 4269 2361 4269 2362 4269 2307 4270 2362 4270 2308 4270 2308 4271 2362 4271 2363 4271 2308 4272 2363 4272 2309 4272 2309 4273 2363 4273 2364 4273 2309 4274 2364 4274 2310 4274 2310 4275 2364 4275 2365 4275 2310 4276 2365 4276 2311 4276 2311 4277 2365 4277 2366 4277 2311 4278 2366 4278 2312 4278 2312 4279 2366 4279 2367 4279 2312 4280 2367 4280 2313 4280 2313 4281 2367 4281 2368 4281 2313 4282 2368 4282 2314 4282 2314 4283 2368 4283 2369 4283 2314 4284 2369 4284 2315 4284 2315 4285 2369 4285 2370 4285 2315 4286 2370 4286 2316 4286 2316 4287 2370 4287 2371 4287 2316 4288 2371 4288 2317 4288 2317 4289 2371 4289 2372 4289 2317 4290 2372 4290 2318 4290 2318 4291 2372 4291 2373 4291 2318 4292 2373 4292 2319 4292 2319 4293 2373 4293 2374 4293 2319 4294 2374 4294 2320 4294 2320 4295 2374 4295 2375 4295 2320 4296 2375 4296 2321 4296 2321 4297 2375 4297 2376 4297 2321 4298 2376 4298 2322 4298 2322 4299 2376 4299 2377 4299 2322 4300 2377 4300 2323 4300 2323 4301 2377 4301 2378 4301 2323 4302 2378 4302 2324 4302 2324 4303 2378 4303 2379 4303 2324 4304 2379 4304 2325 4304 2325 4305 2379 4305 2326 4305 2380 4306 2381 4306 2382 4306 2382 4307 2381 4307 2383 4307 2382 4308 2383 4308 2384 4308 2384 4309 2383 4309 2385 4309 2384 4310 2385 4310 2386 4310 2386 4311 2385 4311 2387 4311 2386 4312 2387 4312 2388 4312 2388 4313 2387 4313 2389 4313 2388 4314 2389 4314 2390 4314 2390 4315 2389 4315 2391 4315 2390 4316 2391 4316 2392 4316 2392 4317 2391 4317 2393 4317 2392 4318 2393 4318 2394 4318 2394 4319 2393 4319 2395 4319 2394 4320 2395 4320 2396 4320 2396 4321 2395 4321 2397 4321 2396 4322 2397 4322 2398 4322 2398 4323 2397 4323 2399 4323 2398 4324 2399 4324 2400 4324 2400 4325 2399 4325 2401 4325 2400 4326 2401 4326 2402 4326 2402 4327 2401 4327 2403 4327 2402 4328 2403 4328 2404 4328 2404 4329 2403 4329 2405 4329 2404 4330 2405 4330 2406 4330 2406 4331 2405 4331 2407 4331 2406 4332 2407 4332 2408 4332 2408 4333 2407 4333 2409 4333 2408 4334 2409 4334 2410 4334 2410 4335 2409 4335 2411 4335 2410 4336 2411 4336 2412 4336 2412 4337 2411 4337 2413 4337 2412 4338 2413 4338 2414 4338 2414 4339 2413 4339 2415 4339 2414 4340 2415 4340 2416 4340 2416 4341 2415 4341 2417 4341 2416 4342 2417 4342 2418 4342 2418 4343 2417 4343 2419 4343 2418 4344 2419 4344 2420 4344 2420 4345 2419 4345 2421 4345 2420 4346 2421 4346 2422 4346 2422 4347 2421 4347 2423 4347 2422 4348 2423 4348 2424 4348 2424 4349 2423 4349 2425 4349 2424 4350 2425 4350 2426 4350 2426 4351 2425 4351 2427 4351 2426 4352 2427 4352 2428 4352 2428 4353 2427 4353 2429 4353 2428 4354 2429 4354 2430 4354 2430 4355 2429 4355 2431 4355 2430 4356 2431 4356 2432 4356 2432 4357 2431 4357 2433 4357 2432 4358 2433 4358 2434 4358 2434 4359 2433 4359 2435 4359 2434 4360 2435 4360 2436 4360 2436 4361 2435 4361 2437 4361 2436 4362 2437 4362 2438 4362 2438 4363 2437 4363 2439 4363 2438 4364 2439 4364 2440 4364 2440 4365 2439 4365 2441 4365 2440 4366 2441 4366 2442 4366 2442 4367 2441 4367 2443 4367 2442 4368 2443 4368 2444 4368 2444 4369 2443 4369 2445 4369 2444 4370 2445 4370 2446 4370 2446 4371 2445 4371 2447 4371 2446 4372 2447 4372 2448 4372 2448 4373 2447 4373 2449 4373 2448 4374 2449 4374 2450 4374 2450 4375 2449 4375 2451 4375 2450 4376 2451 4376 2452 4376 2452 4377 2451 4377 2453 4377 2452 4378 2453 4378 2454 4378 2454 4379 2453 4379 2455 4379 2454 4380 2455 4380 2456 4380 2456 4381 2455 4381 2380 4381 2456 4382 2380 4382 2382 4382 2457 4383 2428 4383 2458 4383 2458 4384 2428 4384 2430 4384 2458 4385 2430 4385 2459 4385 2459 4386 2430 4386 2432 4386 2459 4387 2432 4387 2460 4387 2460 4388 2432 4388 2434 4388 2460 4389 2434 4389 2461 4389 2461 4390 2434 4390 2436 4390 2461 4391 2436 4391 2462 4391 2462 4392 2436 4392 2438 4392 2462 4393 2438 4393 2463 4393 2463 4394 2438 4394 2440 4394 2463 4395 2440 4395 2464 4395 2464 4396 2440 4396 2442 4396 2464 4397 2442 4397 2465 4397 2465 4398 2442 4398 2444 4398 2465 4399 2444 4399 2466 4399 2466 4400 2444 4400 2446 4400 2466 4401 2446 4401 2467 4401 2467 4402 2446 4402 2448 4402 2467 4403 2448 4403 2468 4403 2468 4404 2448 4404 2450 4404 2468 4405 2450 4405 2469 4405 2469 4406 2450 4406 2452 4406 2469 4407 2452 4407 2470 4407 2470 4408 2452 4408 2454 4408 2470 4409 2454 4409 2471 4409 2471 4410 2454 4410 2456 4410 2471 4411 2456 4411 2472 4411 2472 4412 2456 4412 2382 4412 2472 4413 2382 4413 2473 4413 2473 4414 2382 4414 2384 4414 2473 4415 2384 4415 2474 4415 2474 4416 2384 4416 2386 4416 2474 4417 2386 4417 2475 4417 2475 4418 2386 4418 2388 4418 2475 4419 2388 4419 2476 4419 2476 4420 2388 4420 2390 4420 2476 4421 2390 4421 2477 4421 2477 4422 2390 4422 2392 4422 2477 4423 2392 4423 2478 4423 2478 4424 2392 4424 2394 4424 2478 4425 2394 4425 2479 4425 2479 4426 2394 4426 2396 4426 2479 4427 2396 4427 2480 4427 2480 4428 2396 4428 2398 4428 2480 4429 2398 4429 2481 4429 2481 4430 2398 4430 2400 4430 2481 4431 2400 4431 2482 4431 2482 4432 2400 4432 2402 4432 2482 4433 2402 4433 2483 4433 2483 4434 2402 4434 2404 4434 2483 4435 2404 4435 2484 4435 2484 4436 2404 4436 2406 4436 2484 4437 2406 4437 2485 4437 2485 439 2406 439 2408 439 2485 439 2408 439 2486 439 2486 4438 2408 4438 2410 4438 2486 4439 2410 4439 2487 4439 2487 4440 2410 4440 2412 4440 2487 4441 2412 4441 2488 4441 2488 4442 2412 4442 2414 4442 2488 4443 2414 4443 2489 4443 2489 4444 2414 4444 2416 4444 2489 4445 2416 4445 2490 4445 2490 4446 2416 4446 2418 4446 2490 4447 2418 4447 2491 4447 2491 4448 2418 4448 2420 4448 2491 4449 2420 4449 2492 4449 2492 4450 2420 4450 2422 4450 2492 4451 2422 4451 2493 4451 2493 4452 2422 4452 2424 4452 2493 4453 2424 4453 2494 4453 2494 4454 2424 4454 2426 4454 2494 4455 2426 4455 2457 4455 2457 4456 2426 4456 2428 4456 2457 4457 2458 4457 2495 4457 2457 4458 2495 4458 2494 4458 2491 4459 2492 4459 2495 4459 2495 4460 2492 4460 2493 4460 2495 4461 2493 4461 2494 4461 2488 4462 2489 4462 2495 4462 2495 4463 2489 4463 2490 4463 2495 4464 2490 4464 2491 4464 2485 4465 2486 4465 2495 4465 2495 4466 2486 4466 2487 4466 2495 4467 2487 4467 2488 4467 2482 4468 2483 4468 2495 4468 2495 4469 2483 4469 2484 4469 2495 4470 2484 4470 2485 4470 2479 4471 2480 4471 2495 4471 2495 4472 2480 4472 2481 4472 2495 4473 2481 4473 2482 4473 2476 4474 2477 4474 2495 4474 2495 4475 2477 4475 2478 4475 2495 4476 2478 4476 2479 4476 2473 4477 2474 4477 2495 4477 2495 4478 2474 4478 2475 4478 2495 4479 2475 4479 2476 4479 2470 4480 2471 4480 2495 4480 2495 4481 2471 4481 2472 4481 2495 4482 2472 4482 2473 4482 2467 4483 2468 4483 2495 4483 2495 4484 2468 4484 2469 4484 2495 4485 2469 4485 2470 4485 2464 4486 2465 4486 2495 4486 2495 4487 2465 4487 2466 4487 2495 4488 2466 4488 2467 4488 2461 4489 2462 4489 2495 4489 2495 4490 2462 4490 2463 4490 2495 4491 2463 4491 2464 4491 2458 4492 2459 4492 2495 4492 2495 4493 2459 4493 2460 4493 2495 4494 2460 4494 2461 4494 2496 4474 2497 4474 2498 4474 2496 4495 2498 4495 2499 4495 2500 4496 2501 4496 2498 4496 2498 4497 2501 4497 2502 4497 2498 4498 2502 4498 2499 4498 2503 4499 2504 4499 2498 4499 2498 4500 2504 4500 2505 4500 2498 4501 2505 4501 2500 4501 2506 4502 2507 4502 2498 4502 2498 4503 2507 4503 2508 4503 2498 4504 2508 4504 2503 4504 2509 4505 2510 4505 2498 4505 2498 4506 2510 4506 2511 4506 2498 4507 2511 4507 2506 4507 2512 4508 2513 4508 2498 4508 2498 4509 2513 4509 2514 4509 2498 4510 2514 4510 2509 4510 2515 4511 2516 4511 2498 4511 2498 4512 2516 4512 2517 4512 2498 4493 2517 4493 2512 4493 2518 4513 2519 4513 2498 4513 2498 4514 2519 4514 2520 4514 2498 4515 2520 4515 2515 4515 2521 4516 2522 4516 2498 4516 2498 4517 2522 4517 2523 4517 2498 4518 2523 4518 2518 4518 2524 4519 2525 4519 2498 4519 2498 4520 2525 4520 2526 4520 2498 4521 2526 4521 2521 4521 2527 4522 2528 4522 2498 4522 2498 4523 2528 4523 2529 4523 2498 4524 2529 4524 2524 4524 2530 4525 2531 4525 2498 4525 2498 4526 2531 4526 2532 4526 2498 4527 2532 4527 2527 4527 2497 4528 2533 4528 2498 4528 2498 4529 2533 4529 2534 4529 2498 4530 2534 4530 2530 4530 2535 4531 2499 4531 2536 4531 2536 4532 2499 4532 2502 4532 2536 4533 2502 4533 2537 4533 2537 4534 2502 4534 2501 4534 2537 4535 2501 4535 2538 4535 2538 4536 2501 4536 2500 4536 2538 4537 2500 4537 2539 4537 2539 4538 2500 4538 2505 4538 2539 4539 2505 4539 2540 4539 2540 4540 2505 4540 2504 4540 2540 4541 2504 4541 2541 4541 2541 4542 2504 4542 2503 4542 2541 4543 2503 4543 2542 4543 2542 4544 2503 4544 2508 4544 2542 4545 2508 4545 2543 4545 2543 4546 2508 4546 2507 4546 2543 4547 2507 4547 2544 4547 2544 456 2507 456 2506 456 2544 456 2506 456 2545 456 2545 4548 2506 4548 2511 4548 2545 4549 2511 4549 2546 4549 2546 4550 2511 4550 2510 4550 2546 4551 2510 4551 2547 4551 2547 4552 2510 4552 2509 4552 2547 4553 2509 4553 2548 4553 2548 4554 2509 4554 2514 4554 2548 4555 2514 4555 2549 4555 2549 4556 2514 4556 2513 4556 2549 4557 2513 4557 2550 4557 2550 4558 2513 4558 2512 4558 2550 4559 2512 4559 2551 4559 2551 4560 2512 4560 2517 4560 2551 4561 2517 4561 2552 4561 2552 4562 2517 4562 2516 4562 2552 4563 2516 4563 2553 4563 2553 4564 2516 4564 2515 4564 2553 4565 2515 4565 2554 4565 2554 4566 2515 4566 2520 4566 2554 4567 2520 4567 2555 4567 2555 4568 2520 4568 2519 4568 2555 4569 2519 4569 2556 4569 2556 4570 2519 4570 2518 4570 2556 4571 2518 4571 2557 4571 2557 4572 2518 4572 2523 4572 2557 4573 2523 4573 2558 4573 2558 4574 2523 4574 2522 4574 2558 4575 2522 4575 2559 4575 2559 4576 2522 4576 2521 4576 2559 4577 2521 4577 2560 4577 2560 4578 2521 4578 2526 4578 2560 4579 2526 4579 2561 4579 2561 4440 2526 4440 2525 4440 2561 4580 2525 4580 2562 4580 2562 4581 2525 4581 2524 4581 2562 4582 2524 4582 2563 4582 2563 439 2524 439 2529 439 2563 439 2529 439 2564 439 2564 4583 2529 4583 2528 4583 2564 4584 2528 4584 2565 4584 2565 4585 2528 4585 2527 4585 2565 4586 2527 4586 2566 4586 2566 4587 2527 4587 2532 4587 2566 4588 2532 4588 2567 4588 2567 4589 2532 4589 2531 4589 2567 4590 2531 4590 2568 4590 2568 4591 2531 4591 2530 4591 2568 4592 2530 4592 2569 4592 2569 4593 2530 4593 2534 4593 2569 4594 2534 4594 2570 4594 2570 4595 2534 4595 2533 4595 2570 4596 2533 4596 2571 4596 2571 4597 2533 4597 2497 4597 2571 4598 2497 4598 2572 4598 2572 4599 2497 4599 2496 4599 2572 4600 2496 4600 2535 4600 2535 4601 2496 4601 2499 4601 2573 4602 2574 4602 2557 4602 2557 4603 2574 4603 2575 4603 2557 4604 2575 4604 2556 4604 2556 4605 2575 4605 2576 4605 2556 4606 2576 4606 2555 4606 2555 4607 2576 4607 2577 4607 2555 4608 2577 4608 2554 4608 2554 4609 2577 4609 2578 4609 2554 4610 2578 4610 2553 4610 2553 4611 2578 4611 2579 4611 2553 4612 2579 4612 2552 4612 2552 4613 2579 4613 2580 4613 2552 4614 2580 4614 2551 4614 2551 4615 2580 4615 2581 4615 2551 4616 2581 4616 2550 4616 2550 4617 2581 4617 2582 4617 2550 4618 2582 4618 2549 4618 2549 4619 2582 4619 2583 4619 2549 4620 2583 4620 2548 4620 2548 4621 2583 4621 2584 4621 2548 4622 2584 4622 2547 4622 2547 4623 2584 4623 2585 4623 2547 4624 2585 4624 2546 4624 2546 4625 2585 4625 2586 4625 2546 4626 2586 4626 2545 4626 2545 4627 2586 4627 2587 4627 2545 4628 2587 4628 2544 4628 2544 4629 2587 4629 2588 4629 2544 4630 2588 4630 2543 4630 2543 4631 2588 4631 2589 4631 2543 4632 2589 4632 2542 4632 2542 4633 2589 4633 2590 4633 2542 4634 2590 4634 2541 4634 2541 4635 2590 4635 2591 4635 2541 4636 2591 4636 2540 4636 2540 4637 2591 4637 2592 4637 2540 4638 2592 4638 2539 4638 2539 4639 2592 4639 2593 4639 2539 4640 2593 4640 2538 4640 2538 4641 2593 4641 2594 4641 2538 4642 2594 4642 2537 4642 2537 4643 2594 4643 2595 4643 2537 4644 2595 4644 2536 4644 2536 4645 2595 4645 2596 4645 2536 4646 2596 4646 2535 4646 2535 4647 2596 4647 2597 4647 2535 4648 2597 4648 2572 4648 2572 4649 2597 4649 2598 4649 2572 4650 2598 4650 2571 4650 2571 4651 2598 4651 2599 4651 2571 4652 2599 4652 2570 4652 2570 4653 2599 4653 2600 4653 2570 4654 2600 4654 2569 4654 2569 4655 2600 4655 2601 4655 2569 4656 2601 4656 2568 4656 2568 4657 2601 4657 2602 4657 2568 4658 2602 4658 2567 4658 2567 4659 2602 4659 2603 4659 2567 4660 2603 4660 2566 4660 2566 4661 2603 4661 2604 4661 2566 4662 2604 4662 2565 4662 2565 4663 2604 4663 2605 4663 2565 4664 2605 4664 2564 4664 2564 4665 2605 4665 2606 4665 2564 4370 2606 4370 2563 4370 2563 4666 2606 4666 2607 4666 2563 4667 2607 4667 2562 4667 2562 4373 2607 4373 2608 4373 2562 4668 2608 4668 2561 4668 2561 4669 2608 4669 2609 4669 2561 4670 2609 4670 2560 4670 2560 4671 2609 4671 2610 4671 2560 4672 2610 4672 2559 4672 2559 4673 2610 4673 2611 4673 2559 4674 2611 4674 2558 4674 2558 4675 2611 4675 2573 4675 2558 4676 2573 4676 2557 4676 2612 4677 2613 4677 2614 4677 2614 4678 2613 4678 2615 4678 2614 4679 2615 4679 2616 4679 2617 4680 2618 4680 2614 4680 2614 4681 2618 4681 2619 4681 2614 4682 2619 4682 2612 4682 2620 4683 2621 4683 2614 4683 2614 4684 2621 4684 2622 4684 2614 4685 2622 4685 2617 4685 2623 4686 2624 4686 2614 4686 2614 4687 2624 4687 2625 4687 2614 4688 2625 4688 2620 4688 2626 4689 2627 4689 2614 4689 2614 4690 2627 4690 2628 4690 2614 4691 2628 4691 2623 4691 2629 4692 2630 4692 2614 4692 2614 4693 2630 4693 2631 4693 2614 4694 2631 4694 2626 4694 2632 3085 2633 3085 2614 3085 2614 4695 2633 4695 2634 4695 2614 4696 2634 4696 2629 4696 2635 4697 2636 4697 2614 4697 2614 4698 2636 4698 2637 4698 2614 4699 2637 4699 2632 4699 2638 4700 2639 4700 2614 4700 2614 4701 2639 4701 2640 4701 2614 4702 2640 4702 2635 4702 2641 4703 2642 4703 2614 4703 2614 4704 2642 4704 2643 4704 2614 4705 2643 4705 2638 4705 2644 4706 2645 4706 2614 4706 2614 4707 2645 4707 2646 4707 2614 4708 2646 4708 2641 4708 2647 3085 2648 3085 2614 3085 2614 4709 2648 4709 2649 4709 2614 4710 2649 4710 2644 4710 2650 4711 2651 4711 2614 4711 2614 4712 2651 4712 2652 4712 2614 4713 2652 4713 2647 4713 2653 4714 2654 4714 2614 4714 2614 4715 2654 4715 2655 4715 2614 4716 2655 4716 2650 4716 2656 4717 2657 4717 2614 4717 2614 4718 2657 4718 2658 4718 2614 4719 2658 4719 2653 4719 2659 4720 2660 4720 2614 4720 2614 4721 2660 4721 2661 4721 2614 4722 2661 4722 2656 4722 2662 4723 2663 4723 2614 4723 2614 4724 2663 4724 2664 4724 2614 4725 2664 4725 2659 4725 2616 4677 2665 4677 2614 4677 2614 4726 2665 4726 2666 4726 2614 4727 2666 4727 2662 4727 2615 4728 2667 4728 2616 4728 2616 4729 2667 4729 2668 4729 2616 4730 2668 4730 2665 4730 2665 4731 2668 4731 2669 4731 2665 4732 2669 4732 2666 4732 2666 4733 2669 4733 2670 4733 2666 4734 2670 4734 2662 4734 2662 4735 2670 4735 2671 4735 2662 4736 2671 4736 2663 4736 2663 4737 2671 4737 2672 4737 2663 4738 2672 4738 2664 4738 2664 4739 2672 4739 2673 4739 2664 4740 2673 4740 2659 4740 2659 4741 2673 4741 2674 4741 2659 4742 2674 4742 2660 4742 2660 4743 2674 4743 2675 4743 2660 4744 2675 4744 2661 4744 2661 4745 2675 4745 2676 4745 2661 4746 2676 4746 2656 4746 2656 4747 2676 4747 2677 4747 2656 4748 2677 4748 2657 4748 2657 4749 2677 4749 2678 4749 2657 3140 2678 3140 2658 3140 2658 4750 2678 4750 2679 4750 2658 4751 2679 4751 2653 4751 2653 4752 2679 4752 2680 4752 2653 4753 2680 4753 2654 4753 2654 4754 2680 4754 2681 4754 2654 4755 2681 4755 2655 4755 2655 4756 2681 4756 2682 4756 2655 4757 2682 4757 2650 4757 2650 4758 2682 4758 2683 4758 2650 4759 2683 4759 2651 4759 2651 4760 2683 4760 2684 4760 2651 4761 2684 4761 2652 4761 2652 4762 2684 4762 2685 4762 2652 4763 2685 4763 2647 4763 2647 3155 2685 3155 2686 3155 2647 4764 2686 4764 2648 4764 2648 4765 2686 4765 2687 4765 2648 4766 2687 4766 2649 4766 2649 4767 2687 4767 2688 4767 2649 4768 2688 4768 2644 4768 2644 4769 2688 4769 2689 4769 2644 4770 2689 4770 2645 4770 2645 3163 2689 3163 2690 3163 2645 4771 2690 4771 2646 4771 2646 4772 2690 4772 2691 4772 2646 4773 2691 4773 2641 4773 2641 4774 2691 4774 2692 4774 2641 4775 2692 4775 2642 4775 2642 4776 2692 4776 2693 4776 2642 4777 2693 4777 2643 4777 2643 4778 2693 4778 2694 4778 2643 4779 2694 4779 2638 4779 2638 4780 2694 4780 2695 4780 2638 4781 2695 4781 2639 4781 2639 4782 2695 4782 2696 4782 2639 4783 2696 4783 2640 4783 2640 3177 2696 3177 2697 3177 2640 4784 2697 4784 2635 4784 2635 4785 2697 4785 2698 4785 2635 4786 2698 4786 2636 4786 2636 4787 2698 4787 2699 4787 2636 4788 2699 4788 2637 4788 2637 4789 2699 4789 2700 4789 2637 4790 2700 4790 2632 4790 2632 4791 2700 4791 2701 4791 2632 4792 2701 4792 2633 4792 2633 4793 2701 4793 2702 4793 2633 4794 2702 4794 2634 4794 2634 4795 2702 4795 2703 4795 2634 4796 2703 4796 2629 4796 2629 4797 2703 4797 2704 4797 2629 4798 2704 4798 2630 4798 2630 4799 2704 4799 2705 4799 2630 4800 2705 4800 2631 4800 2631 4801 2705 4801 2706 4801 2631 4802 2706 4802 2626 4802 2626 4803 2706 4803 2707 4803 2626 4804 2707 4804 2627 4804 2627 4805 2707 4805 2708 4805 2627 4806 2708 4806 2628 4806 2628 4807 2708 4807 2709 4807 2628 4808 2709 4808 2623 4808 2623 4809 2709 4809 2710 4809 2623 4810 2710 4810 2624 4810 2624 4811 2710 4811 2711 4811 2624 4812 2711 4812 2625 4812 2625 4813 2711 4813 2712 4813 2625 4814 2712 4814 2620 4814 2620 4815 2712 4815 2713 4815 2620 4816 2713 4816 2621 4816 2621 4817 2713 4817 2714 4817 2621 4818 2714 4818 2622 4818 2622 4819 2714 4819 2715 4819 2622 4820 2715 4820 2617 4820 2617 4821 2715 4821 2716 4821 2617 4822 2716 4822 2618 4822 2618 4823 2716 4823 2717 4823 2618 4824 2717 4824 2619 4824 2619 4825 2717 4825 2718 4825 2619 4826 2718 4826 2612 4826 2612 4827 2718 4827 2719 4827 2612 4828 2719 4828 2613 4828 2613 4829 2719 4829 2720 4829 2613 4830 2720 4830 2615 4830 2615 4831 2720 4831 2667 4831 2720 4832 2721 4832 2667 4832 2667 4833 2721 4833 2722 4833 2667 4834 2722 4834 2668 4834 2668 4835 2722 4835 2723 4835 2668 4836 2723 4836 2669 4836 2669 4837 2723 4837 2724 4837 2669 4838 2724 4838 2670 4838 2670 4839 2724 4839 2725 4839 2670 4840 2725 4840 2671 4840 2671 4841 2725 4841 2726 4841 2671 4842 2726 4842 2672 4842 2672 4843 2726 4843 2727 4843 2672 4844 2727 4844 2673 4844 2673 4845 2727 4845 2728 4845 2673 4846 2728 4846 2674 4846 2674 4847 2728 4847 2729 4847 2674 3242 2729 3242 2675 3242 2675 4848 2729 4848 2730 4848 2675 4849 2730 4849 2676 4849 2676 4850 2730 4850 2731 4850 2676 4851 2731 4851 2677 4851 2677 4852 2731 4852 2732 4852 2677 4853 2732 4853 2678 4853 2678 4854 2732 4854 2733 4854 2678 4855 2733 4855 2679 4855 2679 4856 2733 4856 2734 4856 2679 4857 2734 4857 2680 4857 2680 4858 2734 4858 2735 4858 2680 4859 2735 4859 2681 4859 2681 4860 2735 4860 2736 4860 2681 4861 2736 4861 2682 4861 2682 4862 2736 4862 2737 4862 2682 4863 2737 4863 2683 4863 2683 4864 2737 4864 2738 4864 2683 4865 2738 4865 2684 4865 2684 4866 2738 4866 2739 4866 2684 4867 2739 4867 2685 4867 2685 4868 2739 4868 2740 4868 2685 4869 2740 4869 2686 4869 2686 4870 2740 4870 2741 4870 2686 4871 2741 4871 2687 4871 2687 4872 2741 4872 2742 4872 2687 4873 2742 4873 2688 4873 2688 4874 2742 4874 2743 4874 2688 4875 2743 4875 2689 4875 2689 4876 2743 4876 2744 4876 2689 4877 2744 4877 2690 4877 2690 4878 2744 4878 2745 4878 2690 4879 2745 4879 2691 4879 2691 4880 2745 4880 2746 4880 2691 4881 2746 4881 2692 4881 2692 4882 2746 4882 2747 4882 2692 4883 2747 4883 2693 4883 2693 4884 2747 4884 2748 4884 2693 4885 2748 4885 2694 4885 2694 4886 2748 4886 2749 4886 2694 4887 2749 4887 2695 4887 2695 4888 2749 4888 2750 4888 2695 4889 2750 4889 2696 4889 2696 4890 2750 4890 2751 4890 2696 4891 2751 4891 2697 4891 2697 4892 2751 4892 2752 4892 2697 3288 2752 3288 2698 3288 2698 4893 2752 4893 2753 4893 2698 4894 2753 4894 2699 4894 2699 4895 2753 4895 2754 4895 2699 4896 2754 4896 2700 4896 2700 4897 2754 4897 2755 4897 2700 4898 2755 4898 2701 4898 2701 4899 2755 4899 2756 4899 2701 3296 2756 3296 2702 3296 2702 4900 2756 4900 2757 4900 2702 4901 2757 4901 2703 4901 2703 4902 2757 4902 2758 4902 2703 4903 2758 4903 2704 4903 2704 4904 2758 4904 2759 4904 2704 4905 2759 4905 2705 4905 2705 4906 2759 4906 2760 4906 2705 4907 2760 4907 2706 4907 2706 4908 2760 4908 2761 4908 2706 4909 2761 4909 2707 4909 2707 4910 2761 4910 2762 4910 2707 4911 2762 4911 2708 4911 2708 4912 2762 4912 2763 4912 2708 4913 2763 4913 2709 4913 2709 4914 2763 4914 2764 4914 2709 4915 2764 4915 2710 4915 2710 4916 2764 4916 2765 4916 2710 4917 2765 4917 2711 4917 2711 4918 2765 4918 2766 4918 2711 4919 2766 4919 2712 4919 2712 4920 2766 4920 2767 4920 2712 4921 2767 4921 2713 4921 2713 4922 2767 4922 2768 4922 2713 4923 2768 4923 2714 4923 2714 4924 2768 4924 2769 4924 2714 4925 2769 4925 2715 4925 2715 4926 2769 4926 2770 4926 2715 4927 2770 4927 2716 4927 2716 4928 2770 4928 2771 4928 2716 4929 2771 4929 2717 4929 2717 4930 2771 4930 2772 4930 2717 4931 2772 4931 2718 4931 2718 4932 2772 4932 2773 4932 2718 4933 2773 4933 2719 4933 2719 4934 2773 4934 2774 4934 2719 3332 2774 3332 2720 3332 2720 4935 2774 4935 2721 4935 2774 4936 2775 4936 2721 4936 2721 4937 2775 4937 2776 4937 2721 4938 2776 4938 2722 4938 2722 4939 2776 4939 2777 4939 2722 4940 2777 4940 2723 4940 2723 4941 2777 4941 2778 4941 2723 4942 2778 4942 2724 4942 2724 4943 2778 4943 2779 4943 2724 4944 2779 4944 2725 4944 2725 4945 2779 4945 2780 4945 2725 4946 2780 4946 2726 4946 2726 4947 2780 4947 2781 4947 2726 3346 2781 3346 2727 3346 2727 4948 2781 4948 2782 4948 2727 4949 2782 4949 2728 4949 2728 4950 2782 4950 2783 4950 2728 4951 2783 4951 2729 4951 2729 4952 2783 4952 2784 4952 2729 4953 2784 4953 2730 4953 2730 4954 2784 4954 2785 4954 2730 4955 2785 4955 2731 4955 2731 3355 2785 3355 2786 3355 2731 4956 2786 4956 2732 4956 2732 4957 2786 4957 2787 4957 2732 4958 2787 4958 2733 4958 2733 4959 2787 4959 2788 4959 2733 4960 2788 4960 2734 4960 2734 4961 2788 4961 2789 4961 2734 4962 2789 4962 2735 4962 2735 4963 2789 4963 2790 4963 2735 4964 2790 4964 2736 4964 2736 4965 2790 4965 2791 4965 2736 4966 2791 4966 2737 4966 2737 4967 2791 4967 2792 4967 2737 4968 2792 4968 2738 4968 2738 4969 2792 4969 2793 4969 2738 4970 2793 4970 2739 4970 2739 4971 2793 4971 2794 4971 2739 4972 2794 4972 2740 4972 2740 4973 2794 4973 2795 4973 2740 4974 2795 4974 2741 4974 2741 4975 2795 4975 2796 4975 2741 4976 2796 4976 2742 4976 2742 4977 2796 4977 2797 4977 2742 4978 2797 4978 2743 4978 2743 4979 2797 4979 2798 4979 2743 4980 2798 4980 2744 4980 2744 4981 2798 4981 2799 4981 2744 4982 2799 4982 2745 4982 2745 4983 2799 4983 2800 4983 2745 4984 2800 4984 2746 4984 2746 4985 2800 4985 2801 4985 2746 4986 2801 4986 2747 4986 2747 4987 2801 4987 2802 4987 2747 4988 2802 4988 2748 4988 2748 4989 2802 4989 2803 4989 2748 4990 2803 4990 2749 4990 2749 4991 2803 4991 2804 4991 2749 4992 2804 4992 2750 4992 2750 4993 2804 4993 2805 4993 2750 4994 2805 4994 2751 4994 2751 4995 2805 4995 2806 4995 2751 4996 2806 4996 2752 4996 2752 4997 2806 4997 2807 4997 2752 3398 2807 3398 2753 3398 2753 4998 2807 4998 2808 4998 2753 4999 2808 4999 2754 4999 2754 5000 2808 5000 2809 5000 2754 5001 2809 5001 2755 5001 2755 5002 2809 5002 2810 5002 2755 5003 2810 5003 2756 5003 2756 5004 2810 5004 2811 5004 2756 5005 2811 5005 2757 5005 2757 5006 2811 5006 2812 5006 2757 5007 2812 5007 2758 5007 2758 5008 2812 5008 2813 5008 2758 5009 2813 5009 2759 5009 2759 5010 2813 5010 2814 5010 2759 5011 2814 5011 2760 5011 2760 5012 2814 5012 2815 5012 2760 5013 2815 5013 2761 5013 2761 5014 2815 5014 2816 5014 2761 5015 2816 5015 2762 5015 2762 5016 2816 5016 2817 5016 2762 5017 2817 5017 2763 5017 2763 5018 2817 5018 2818 5018 2763 5019 2818 5019 2764 5019 2764 5020 2818 5020 2819 5020 2764 5021 2819 5021 2765 5021 2765 5022 2819 5022 2820 5022 2765 5023 2820 5023 2766 5023 2766 5024 2820 5024 2821 5024 2766 5025 2821 5025 2767 5025 2767 5026 2821 5026 2822 5026 2767 5027 2822 5027 2768 5027 2768 5028 2822 5028 2823 5028 2768 5029 2823 5029 2769 5029 2769 5030 2823 5030 2824 5030 2769 5031 2824 5031 2770 5031 2770 5032 2824 5032 2825 5032 2770 5033 2825 5033 2771 5033 2771 5034 2825 5034 2826 5034 2771 5035 2826 5035 2772 5035 2772 5036 2826 5036 2827 5036 2772 5037 2827 5037 2773 5037 2773 5038 2827 5038 2828 5038 2773 5039 2828 5039 2774 5039 2774 5040 2828 5040 2775 5040 2828 5041 2829 5041 2775 5041 2775 5042 2829 5042 2830 5042 2775 5043 2830 5043 2776 5043 2776 5044 2830 5044 2831 5044 2776 5045 2831 5045 2777 5045 2777 5046 2831 5046 2832 5046 2777 5047 2832 5047 2778 5047 2778 5048 2832 5048 2833 5048 2778 5049 2833 5049 2779 5049 2779 5050 2833 5050 2834 5050 2779 5051 2834 5051 2780 5051 2780 5052 2834 5052 2835 5052 2780 5053 2835 5053 2781 5053 2781 5054 2835 5054 2836 5054 2781 5055 2836 5055 2782 5055 2782 5056 2836 5056 2837 5056 2782 5057 2837 5057 2783 5057 2783 5058 2837 5058 2838 5058 2783 5059 2838 5059 2784 5059 2784 5060 2838 5060 2839 5060 2784 5061 2839 5061 2785 5061 2785 5062 2839 5062 2840 5062 2785 5063 2840 5063 2786 5063 2786 5064 2840 5064 2841 5064 2786 5065 2841 5065 2787 5065 2787 5066 2841 5066 2842 5066 2787 5067 2842 5067 2788 5067 2788 5068 2842 5068 2843 5068 2788 5069 2843 5069 2789 5069 2789 5070 2843 5070 2844 5070 2789 3472 2844 3472 2790 3472 2790 3473 2844 3473 2845 3473 2790 5071 2845 5071 2791 5071 2791 5072 2845 5072 2846 5072 2791 5073 2846 5073 2792 5073 2792 5074 2846 5074 2847 5074 2792 5075 2847 5075 2793 5075 2793 5076 2847 5076 2848 5076 2793 5077 2848 5077 2794 5077 2794 5078 2848 5078 2849 5078 2794 3482 2849 3482 2795 3482 2795 5079 2849 5079 2850 5079 2795 5080 2850 5080 2796 5080 2796 5081 2850 5081 2851 5081 2796 3486 2851 3486 2797 3486 2797 3487 2851 3487 2852 3487 2797 5082 2852 5082 2798 5082 2798 5083 2852 5083 2853 5083 2798 5084 2853 5084 2799 5084 2799 5085 2853 5085 2854 5085 2799 5086 2854 5086 2800 5086 2800 5087 2854 5087 2855 5087 2800 5088 2855 5088 2801 5088 2801 5089 2855 5089 2856 5089 2801 5090 2856 5090 2802 5090 2802 5091 2856 5091 2857 5091 2802 5092 2857 5092 2803 5092 2803 5093 2857 5093 2858 5093 2803 3500 2858 3500 2804 3500 2804 3501 2858 3501 2859 3501 2804 5094 2859 5094 2805 5094 2805 5095 2859 5095 2860 5095 2805 5096 2860 5096 2806 5096 2806 5097 2860 5097 2861 5097 2806 5098 2861 5098 2807 5098 2807 5099 2861 5099 2862 5099 2807 5100 2862 5100 2808 5100 2808 5101 2862 5101 2863 5101 2808 5102 2863 5102 2809 5102 2809 5103 2863 5103 2864 5103 2809 5104 2864 5104 2810 5104 2810 5105 2864 5105 2865 5105 2810 5106 2865 5106 2811 5106 2811 5107 2865 5107 2866 5107 2811 5108 2866 5108 2812 5108 2812 5109 2866 5109 2867 5109 2812 5110 2867 5110 2813 5110 2813 5111 2867 5111 2868 5111 2813 5112 2868 5112 2814 5112 2814 5113 2868 5113 2869 5113 2814 5114 2869 5114 2815 5114 2815 5115 2869 5115 2870 5115 2815 5116 2870 5116 2816 5116 2816 5117 2870 5117 2871 5117 2816 5118 2871 5118 2817 5118 2817 5119 2871 5119 2872 5119 2817 5120 2872 5120 2818 5120 2818 5121 2872 5121 2873 5121 2818 5122 2873 5122 2819 5122 2819 3531 2873 3531 2874 3531 2819 5123 2874 5123 2820 5123 2820 5124 2874 5124 2875 5124 2820 5125 2875 5125 2821 5125 2821 5126 2875 5126 2876 5126 2821 5127 2876 5127 2822 5127 2822 5128 2876 5128 2877 5128 2822 5129 2877 5129 2823 5129 2823 5130 2877 5130 2878 5130 2823 5131 2878 5131 2824 5131 2824 5132 2878 5132 2879 5132 2824 5133 2879 5133 2825 5133 2825 5134 2879 5134 2880 5134 2825 5135 2880 5135 2826 5135 2826 5136 2880 5136 2881 5136 2826 5137 2881 5137 2827 5137 2827 5138 2881 5138 2882 5138 2827 5139 2882 5139 2828 5139 2828 5140 2882 5140 2829 5140 2882 5141 2883 5141 2829 5141 2829 5142 2883 5142 2884 5142 2829 5143 2884 5143 2830 5143 2830 5144 2884 5144 2885 5144 2830 5145 2885 5145 2831 5145 2831 5146 2885 5146 2886 5146 2831 5147 2886 5147 2832 5147 2832 5148 2886 5148 2887 5148 2832 5149 2887 5149 2833 5149 2833 5150 2887 5150 2888 5150 2833 5151 2888 5151 2834 5151 2834 5152 2888 5152 2889 5152 2834 5153 2889 5153 2835 5153 2835 5154 2889 5154 2890 5154 2835 5155 2890 5155 2836 5155 2836 5156 2890 5156 2891 5156 2836 5157 2891 5157 2837 5157 2837 5158 2891 5158 2892 5158 2837 5159 2892 5159 2838 5159 2838 5160 2892 5160 2893 5160 2838 5161 2893 5161 2839 5161 2839 5162 2893 5162 2894 5162 2839 5163 2894 5163 2840 5163 2840 5164 2894 5164 2895 5164 2840 5165 2895 5165 2841 5165 2841 5166 2895 5166 2896 5166 2841 5167 2896 5167 2842 5167 2842 5168 2896 5168 2897 5168 2842 5169 2897 5169 2843 5169 2843 5170 2897 5170 2898 5170 2843 5171 2898 5171 2844 5171 2844 5172 2898 5172 2899 5172 2844 5173 2899 5173 2845 5173 2845 5174 2899 5174 2900 5174 2845 5175 2900 5175 2846 5175 2846 5176 2900 5176 2901 5176 2846 3586 2901 3586 2847 3586 2847 3587 2901 3587 2902 3587 2847 5177 2902 5177 2848 5177 2848 5178 2902 5178 2903 5178 2848 5179 2903 5179 2849 5179 2849 5180 2903 5180 2904 5180 2849 5181 2904 5181 2850 5181 2850 5182 2904 5182 2905 5182 2850 5183 2905 5183 2851 5183 2851 5184 2905 5184 2906 5184 2851 5185 2906 5185 2852 5185 2852 5186 2906 5186 2907 5186 2852 5187 2907 5187 2853 5187 2853 5188 2907 5188 2908 5188 2853 5189 2908 5189 2854 5189 2854 5190 2908 5190 2909 5190 2854 5191 2909 5191 2855 5191 2855 5192 2909 5192 2910 5192 2855 5193 2910 5193 2856 5193 2856 5194 2910 5194 2911 5194 2856 5195 2911 5195 2857 5195 2857 5196 2911 5196 2912 5196 2857 5197 2912 5197 2858 5197 2858 5198 2912 5198 2913 5198 2858 5199 2913 5199 2859 5199 2859 5200 2913 5200 2914 5200 2859 5201 2914 5201 2860 5201 2860 3613 2914 3613 2915 3613 2860 5202 2915 5202 2861 5202 2861 5203 2915 5203 2916 5203 2861 5204 2916 5204 2862 5204 2862 5205 2916 5205 2917 5205 2862 5206 2917 5206 2863 5206 2863 5207 2917 5207 2918 5207 2863 5208 2918 5208 2864 5208 2864 5209 2918 5209 2919 5209 2864 5210 2919 5210 2865 5210 2865 5211 2919 5211 2920 5211 2865 5212 2920 5212 2866 5212 2866 5213 2920 5213 2921 5213 2866 5214 2921 5214 2867 5214 2867 5215 2921 5215 2922 5215 2867 5216 2922 5216 2868 5216 2868 5217 2922 5217 2923 5217 2868 5218 2923 5218 2869 5218 2869 5219 2923 5219 2924 5219 2869 5220 2924 5220 2870 5220 2870 5221 2924 5221 2925 5221 2870 5222 2925 5222 2871 5222 2871 5223 2925 5223 2926 5223 2871 3636 2926 3636 2872 3636 2872 5224 2926 5224 2927 5224 2872 5225 2927 5225 2873 5225 2873 5226 2927 5226 2928 5226 2873 5227 2928 5227 2874 5227 2874 5228 2928 5228 2929 5228 2874 5229 2929 5229 2875 5229 2875 5230 2929 5230 2930 5230 2875 5231 2930 5231 2876 5231 2876 5232 2930 5232 2931 5232 2876 5233 2931 5233 2877 5233 2877 5234 2931 5234 2932 5234 2877 5235 2932 5235 2878 5235 2878 5236 2932 5236 2933 5236 2878 5237 2933 5237 2879 5237 2879 5238 2933 5238 2934 5238 2879 5239 2934 5239 2880 5239 2880 5240 2934 5240 2935 5240 2880 5241 2935 5241 2881 5241 2881 5242 2935 5242 2936 5242 2881 5243 2936 5243 2882 5243 2882 5244 2936 5244 2883 5244 2936 5245 2937 5245 2883 5245 2883 5246 2937 5246 2938 5246 2883 5247 2938 5247 2884 5247 2884 5248 2938 5248 2939 5248 2884 5249 2939 5249 2885 5249 2885 5250 2939 5250 2940 5250 2885 5251 2940 5251 2886 5251 2886 5252 2940 5252 2941 5252 2886 5253 2941 5253 2887 5253 2887 5254 2941 5254 2942 5254 2887 5255 2942 5255 2888 5255 2888 5256 2942 5256 2943 5256 2888 5257 2943 5257 2889 5257 2889 5258 2943 5258 2944 5258 2889 5259 2944 5259 2890 5259 2890 5260 2944 5260 2945 5260 2890 5261 2945 5261 2891 5261 2891 5262 2945 5262 2946 5262 2891 5263 2946 5263 2892 5263 2892 5264 2946 5264 2947 5264 2892 5265 2947 5265 2893 5265 2893 5266 2947 5266 2948 5266 2893 5267 2948 5267 2894 5267 2894 5268 2948 5268 2949 5268 2894 5269 2949 5269 2895 5269 2895 5270 2949 5270 2950 5270 2895 5271 2950 5271 2896 5271 2896 5272 2950 5272 2951 5272 2896 5273 2951 5273 2897 5273 2897 5274 2951 5274 2952 5274 2897 5275 2952 5275 2898 5275 2898 5276 2952 5276 2953 5276 2898 5277 2953 5277 2899 5277 2899 5278 2953 5278 2954 5278 2899 5279 2954 5279 2900 5279 2900 5280 2954 5280 2955 5280 2900 5281 2955 5281 2901 5281 2901 5282 2955 5282 2956 5282 2901 5283 2956 5283 2902 5283 2902 5284 2956 5284 2957 5284 2902 5285 2957 5285 2903 5285 2903 5286 2957 5286 2958 5286 2903 5287 2958 5287 2904 5287 2904 5288 2958 5288 2959 5288 2904 5289 2959 5289 2905 5289 2905 5290 2959 5290 2960 5290 2905 5291 2960 5291 2906 5291 2906 5292 2960 5292 2961 5292 2906 5293 2961 5293 2907 5293 2907 5294 2961 5294 2962 5294 2907 5295 2962 5295 2908 5295 2908 5296 2962 5296 2963 5296 2908 5297 2963 5297 2909 5297 2909 5298 2963 5298 2964 5298 2909 5299 2964 5299 2910 5299 2910 5300 2964 5300 2965 5300 2910 5301 2965 5301 2911 5301 2911 5302 2965 5302 2966 5302 2911 5303 2966 5303 2912 5303 2912 5304 2966 5304 2967 5304 2912 5305 2967 5305 2913 5305 2913 5306 2967 5306 2968 5306 2913 5307 2968 5307 2914 5307 2914 5308 2968 5308 2969 5308 2914 5309 2969 5309 2915 5309 2915 5310 2969 5310 2970 5310 2915 5311 2970 5311 2916 5311 2916 5312 2970 5312 2971 5312 2916 5313 2971 5313 2917 5313 2917 5314 2971 5314 2972 5314 2917 5315 2972 5315 2918 5315 2918 5316 2972 5316 2973 5316 2918 5317 2973 5317 2919 5317 2919 5318 2973 5318 2974 5318 2919 5319 2974 5319 2920 5319 2920 5320 2974 5320 2975 5320 2920 5321 2975 5321 2921 5321 2921 5322 2975 5322 2976 5322 2921 5323 2976 5323 2922 5323 2922 5324 2976 5324 2977 5324 2922 5325 2977 5325 2923 5325 2923 5326 2977 5326 2978 5326 2923 5327 2978 5327 2924 5327 2924 5328 2978 5328 2979 5328 2924 5329 2979 5329 2925 5329 2925 5330 2979 5330 2980 5330 2925 5331 2980 5331 2926 5331 2926 5332 2980 5332 2981 5332 2926 5333 2981 5333 2927 5333 2927 5334 2981 5334 2982 5334 2927 5335 2982 5335 2928 5335 2928 5336 2982 5336 2983 5336 2928 5337 2983 5337 2929 5337 2929 5338 2983 5338 2984 5338 2929 5339 2984 5339 2930 5339 2930 5340 2984 5340 2985 5340 2930 5341 2985 5341 2931 5341 2931 5342 2985 5342 2986 5342 2931 5343 2986 5343 2932 5343 2932 5344 2986 5344 2987 5344 2932 5345 2987 5345 2933 5345 2933 5346 2987 5346 2988 5346 2933 5347 2988 5347 2934 5347 2934 5348 2988 5348 2989 5348 2934 5349 2989 5349 2935 5349 2935 5350 2989 5350 2990 5350 2935 3764 2990 3764 2936 3764 2936 5351 2990 5351 2937 5351 2990 5352 2991 5352 2937 5352 2937 5353 2991 5353 2992 5353 2937 5354 2992 5354 2938 5354 2938 5355 2992 5355 2993 5355 2938 5356 2993 5356 2939 5356 2939 5357 2993 5357 2994 5357 2939 5358 2994 5358 2940 5358 2940 5359 2994 5359 2995 5359 2940 5360 2995 5360 2941 5360 2941 5361 2995 5361 2996 5361 2941 5362 2996 5362 2942 5362 2942 5363 2996 5363 2997 5363 2942 5364 2997 5364 2943 5364 2943 5365 2997 5365 2998 5365 2943 5366 2998 5366 2944 5366 2944 5367 2998 5367 2999 5367 2944 5368 2999 5368 2945 5368 2945 5369 2999 5369 3000 5369 2945 5370 3000 5370 2946 5370 2946 5371 3000 5371 3001 5371 2946 5372 3001 5372 2947 5372 2947 5373 3001 5373 3002 5373 2947 5374 3002 5374 2948 5374 2948 5375 3002 5375 3003 5375 2948 5376 3003 5376 2949 5376 2949 5377 3003 5377 3004 5377 2949 5378 3004 5378 2950 5378 2950 5379 3004 5379 3005 5379 2950 5380 3005 5380 2951 5380 2951 5381 3005 5381 3006 5381 2951 5382 3006 5382 2952 5382 2952 5383 3006 5383 3007 5383 2952 3798 3007 3798 2953 3798 2953 5384 3007 5384 3008 5384 2953 5385 3008 5385 2954 5385 2954 5386 3008 5386 3009 5386 2954 5387 3009 5387 2955 5387 2955 5388 3009 5388 3010 5388 2955 5389 3010 5389 2956 5389 2956 5390 3010 5390 3011 5390 2956 5391 3011 5391 2957 5391 2957 5392 3011 5392 3012 5392 2957 5393 3012 5393 2958 5393 2958 5394 3012 5394 3013 5394 2958 5395 3013 5395 2959 5395 2959 5396 3013 5396 3014 5396 2959 5397 3014 5397 2960 5397 2960 5398 3014 5398 3015 5398 2960 5399 3015 5399 2961 5399 2961 5400 3015 5400 3016 5400 2961 3816 3016 3816 2962 3816 2962 5401 3016 5401 3017 5401 2962 5402 3017 5402 2963 5402 2963 5403 3017 5403 3018 5403 2963 5404 3018 5404 2964 5404 2964 5405 3018 5405 3019 5405 2964 5406 3019 5406 2965 5406 2965 5407 3019 5407 3020 5407 2965 5408 3020 5408 2966 5408 2966 5409 3020 5409 3021 5409 2966 5410 3021 5410 2967 5410 2967 5411 3021 5411 3022 5411 2967 5412 3022 5412 2968 5412 2968 5413 3022 5413 3023 5413 2968 5414 3023 5414 2969 5414 2969 5415 3023 5415 3024 5415 2969 5416 3024 5416 2970 5416 2970 5417 3024 5417 3025 5417 2970 5418 3025 5418 2971 5418 2971 5419 3025 5419 3026 5419 2971 5420 3026 5420 2972 5420 2972 5421 3026 5421 3027 5421 2972 5422 3027 5422 2973 5422 2973 5423 3027 5423 3028 5423 2973 5424 3028 5424 2974 5424 2974 5425 3028 5425 3029 5425 2974 5426 3029 5426 2975 5426 2975 5427 3029 5427 3030 5427 2975 5428 3030 5428 2976 5428 2976 5429 3030 5429 3031 5429 2976 5430 3031 5430 2977 5430 2977 5431 3031 5431 3032 5431 2977 5432 3032 5432 2978 5432 2978 5433 3032 5433 3033 5433 2978 5434 3033 5434 2979 5434 2979 5435 3033 5435 3034 5435 2979 5436 3034 5436 2980 5436 2980 5437 3034 5437 3035 5437 2980 5438 3035 5438 2981 5438 2981 5439 3035 5439 3036 5439 2981 5440 3036 5440 2982 5440 2982 5441 3036 5441 3037 5441 2982 5442 3037 5442 2983 5442 2983 5443 3037 5443 3038 5443 2983 5444 3038 5444 2984 5444 2984 5445 3038 5445 3039 5445 2984 5446 3039 5446 2985 5446 2985 5447 3039 5447 3040 5447 2985 5448 3040 5448 2986 5448 2986 5449 3040 5449 3041 5449 2986 5450 3041 5450 2987 5450 2987 5451 3041 5451 3042 5451 2987 5452 3042 5452 2988 5452 2988 5453 3042 5453 3043 5453 2988 5454 3043 5454 2989 5454 2989 5455 3043 5455 3044 5455 2989 5456 3044 5456 2990 5456 2990 5457 3044 5457 2991 5457 3044 5458 3045 5458 2991 5458 2991 5459 3045 5459 3046 5459 2991 5460 3046 5460 2992 5460 2992 5461 3046 5461 3047 5461 2992 5462 3047 5462 2993 5462 2993 5463 3047 5463 3048 5463 2993 5464 3048 5464 2994 5464 2994 5465 3048 5465 3049 5465 2994 5466 3049 5466 2995 5466 2995 5467 3049 5467 3050 5467 2995 5468 3050 5468 2996 5468 2996 5469 3050 5469 3051 5469 2996 5470 3051 5470 2997 5470 2997 5471 3051 5471 3052 5471 2997 5472 3052 5472 2998 5472 2998 5473 3052 5473 3053 5473 2998 5474 3053 5474 2999 5474 2999 5475 3053 5475 3054 5475 2999 5476 3054 5476 3000 5476 3000 5477 3054 5477 3055 5477 3000 5478 3055 5478 3001 5478 3001 5479 3055 5479 3056 5479 3001 5480 3056 5480 3002 5480 3002 5481 3056 5481 3057 5481 3002 5482 3057 5482 3003 5482 3003 5483 3057 5483 3058 5483 3003 5484 3058 5484 3004 5484 3004 5485 3058 5485 3059 5485 3004 5486 3059 5486 3005 5486 3005 5487 3059 5487 3060 5487 3005 5488 3060 5488 3006 5488 3006 5489 3060 5489 3061 5489 3006 5490 3061 5490 3007 5490 3007 5491 3061 5491 3062 5491 3007 5492 3062 5492 3008 5492 3008 5493 3062 5493 3063 5493 3008 5494 3063 5494 3009 5494 3009 5495 3063 5495 3064 5495 3009 5496 3064 5496 3010 5496 3010 5497 3064 5497 3065 5497 3010 5498 3065 5498 3011 5498 3011 5499 3065 5499 3066 5499 3011 5500 3066 5500 3012 5500 3012 5501 3066 5501 3067 5501 3012 5502 3067 5502 3013 5502 3013 5503 3067 5503 3068 5503 3013 5504 3068 5504 3014 5504 3014 5505 3068 5505 3069 5505 3014 5506 3069 5506 3015 5506 3015 5507 3069 5507 3070 5507 3015 5508 3070 5508 3016 5508 3016 5509 3070 5509 3071 5509 3016 5510 3071 5510 3017 5510 3017 5511 3071 5511 3072 5511 3017 5512 3072 5512 3018 5512 3018 5513 3072 5513 3073 5513 3018 5514 3073 5514 3019 5514 3019 5515 3073 5515 3074 5515 3019 5516 3074 5516 3020 5516 3020 5517 3074 5517 3075 5517 3020 5518 3075 5518 3021 5518 3021 5519 3075 5519 3076 5519 3021 5520 3076 5520 3022 5520 3022 5521 3076 5521 3077 5521 3022 5522 3077 5522 3023 5522 3023 5523 3077 5523 3078 5523 3023 5524 3078 5524 3024 5524 3024 5525 3078 5525 3079 5525 3024 5526 3079 5526 3025 5526 3025 5527 3079 5527 3080 5527 3025 5528 3080 5528 3026 5528 3026 5529 3080 5529 3081 5529 3026 5530 3081 5530 3027 5530 3027 5531 3081 5531 3082 5531 3027 5532 3082 5532 3028 5532 3028 5533 3082 5533 3083 5533 3028 5534 3083 5534 3029 5534 3029 5535 3083 5535 3084 5535 3029 5536 3084 5536 3030 5536 3030 5537 3084 5537 3085 5537 3030 5538 3085 5538 3031 5538 3031 5539 3085 5539 3086 5539 3031 5540 3086 5540 3032 5540 3032 5541 3086 5541 3087 5541 3032 5542 3087 5542 3033 5542 3033 5543 3087 5543 3088 5543 3033 5544 3088 5544 3034 5544 3034 5545 3088 5545 3089 5545 3034 5546 3089 5546 3035 5546 3035 5547 3089 5547 3090 5547 3035 5548 3090 5548 3036 5548 3036 5549 3090 5549 3091 5549 3036 5550 3091 5550 3037 5550 3037 5551 3091 5551 3092 5551 3037 5552 3092 5552 3038 5552 3038 5553 3092 5553 3093 5553 3038 5554 3093 5554 3039 5554 3039 5555 3093 5555 3094 5555 3039 5556 3094 5556 3040 5556 3040 5557 3094 5557 3095 5557 3040 5558 3095 5558 3041 5558 3041 5559 3095 5559 3096 5559 3041 5560 3096 5560 3042 5560 3042 5561 3096 5561 3097 5561 3042 5562 3097 5562 3043 5562 3043 5563 3097 5563 3098 5563 3043 5564 3098 5564 3044 5564 3044 5565 3098 5565 3045 5565 3098 5566 3099 5566 3045 5566 3045 5567 3099 5567 3100 5567 3045 5568 3100 5568 3046 5568 3046 5569 3100 5569 3101 5569 3046 5570 3101 5570 3047 5570 3047 5571 3101 5571 3102 5571 3047 5572 3102 5572 3048 5572 3048 5573 3102 5573 3103 5573 3048 5574 3103 5574 3049 5574 3049 5575 3103 5575 3104 5575 3049 5576 3104 5576 3050 5576 3050 5577 3104 5577 3105 5577 3050 5578 3105 5578 3051 5578 3051 5579 3105 5579 3106 5579 3051 3996 3106 3996 3052 3996 3052 5580 3106 5580 3107 5580 3052 5581 3107 5581 3053 5581 3053 5582 3107 5582 3108 5582 3053 5583 3108 5583 3054 5583 3054 4001 3108 4001 3109 4001 3054 5584 3109 5584 3055 5584 3055 5585 3109 5585 3110 5585 3055 5586 3110 5586 3056 5586 3056 5587 3110 5587 3111 5587 3056 5588 3111 5588 3057 5588 3057 5589 3111 5589 3112 5589 3057 5590 3112 5590 3058 5590 3058 5591 3112 5591 3113 5591 3058 5592 3113 5592 3059 5592 3059 5593 3113 5593 3114 5593 3059 5594 3114 5594 3060 5594 3060 5595 3114 5595 3115 5595 3060 5596 3115 5596 3061 5596 3061 5597 3115 5597 3116 5597 3061 5598 3116 5598 3062 5598 3062 5599 3116 5599 3117 5599 3062 5600 3117 5600 3063 5600 3063 5601 3117 5601 3118 5601 3063 5602 3118 5602 3064 5602 3064 5603 3118 5603 3119 5603 3064 5604 3119 5604 3065 5604 3065 5605 3119 5605 3120 5605 3065 5606 3120 5606 3066 5606 3066 4025 3120 4025 3121 4025 3066 5607 3121 5607 3067 5607 3067 5608 3121 5608 3122 5608 3067 5609 3122 5609 3068 5609 3068 5610 3122 5610 3123 5610 3068 5611 3123 5611 3069 5611 3069 5612 3123 5612 3124 5612 3069 5613 3124 5613 3070 5613 3070 5614 3124 5614 3125 5614 3070 5615 3125 5615 3071 5615 3071 5616 3125 5616 3126 5616 3071 5617 3126 5617 3072 5617 3072 5618 3126 5618 3127 5618 3072 5619 3127 5619 3073 5619 3073 5620 3127 5620 3128 5620 3073 5621 3128 5621 3074 5621 3074 5622 3128 5622 3129 5622 3074 5623 3129 5623 3075 5623 3075 5624 3129 5624 3130 5624 3075 5625 3130 5625 3076 5625 3076 5626 3130 5626 3131 5626 3076 5627 3131 5627 3077 5627 3077 5628 3131 5628 3132 5628 3077 5629 3132 5629 3078 5629 3078 5630 3132 5630 3133 5630 3078 5631 3133 5631 3079 5631 3079 4051 3133 4051 3134 4051 3079 5632 3134 5632 3080 5632 3080 5633 3134 5633 3135 5633 3080 5634 3135 5634 3081 5634 3081 4055 3135 4055 3136 4055 3081 5635 3136 5635 3082 5635 3082 5636 3136 5636 3137 5636 3082 5637 3137 5637 3083 5637 3083 5638 3137 5638 3138 5638 3083 5639 3138 5639 3084 5639 3084 5640 3138 5640 3139 5640 3084 5641 3139 5641 3085 5641 3085 5642 3139 5642 3140 5642 3085 5643 3140 5643 3086 5643 3086 5644 3140 5644 3141 5644 3086 5645 3141 5645 3087 5645 3087 5646 3141 5646 3142 5646 3087 5647 3142 5647 3088 5647 3088 5648 3142 5648 3143 5648 3088 5649 3143 5649 3089 5649 3089 5650 3143 5650 3144 5650 3089 4072 3144 4072 3090 4072 3090 5651 3144 5651 3145 5651 3090 5652 3145 5652 3091 5652 3091 5653 3145 5653 3146 5653 3091 5654 3146 5654 3092 5654 3092 5655 3146 5655 3147 5655 3092 5656 3147 5656 3093 5656 3093 5657 3147 5657 3148 5657 3093 5658 3148 5658 3094 5658 3094 5659 3148 5659 3149 5659 3094 5660 3149 5660 3095 5660 3095 5661 3149 5661 3150 5661 3095 5662 3150 5662 3096 5662 3096 5663 3150 5663 3151 5663 3096 5664 3151 5664 3097 5664 3097 5665 3151 5665 3152 5665 3097 5666 3152 5666 3098 5666 3098 5667 3152 5667 3099 5667 3152 5668 3153 5668 3099 5668 3099 5669 3153 5669 3154 5669 3099 5670 3154 5670 3100 5670 3100 5671 3154 5671 3155 5671 3100 5672 3155 5672 3101 5672 3101 5673 3155 5673 3156 5673 3101 5674 3156 5674 3102 5674 3102 5675 3156 5675 3157 5675 3102 5676 3157 5676 3103 5676 3103 5677 3157 5677 3158 5677 3103 5678 3158 5678 3104 5678 3104 4101 3158 4101 3159 4101 3104 5679 3159 5679 3105 5679 3105 5680 3159 5680 3160 5680 3105 5681 3160 5681 3106 5681 3106 5682 3160 5682 3161 5682 3106 5683 3161 5683 3107 5683 3107 5684 3161 5684 3162 5684 3107 5685 3162 5685 3108 5685 3108 5686 3162 5686 3163 5686 3108 5687 3163 5687 3109 5687 3109 5688 3163 5688 3164 5688 3109 5689 3164 5689 3110 5689 3110 5690 3164 5690 3165 5690 3110 5691 3165 5691 3111 5691 3111 5692 3165 5692 3166 5692 3111 5693 3166 5693 3112 5693 3112 5694 3166 5694 3167 5694 3112 5695 3167 5695 3113 5695 3113 5696 3167 5696 3168 5696 3113 5697 3168 5697 3114 5697 3114 5698 3168 5698 3169 5698 3114 5699 3169 5699 3115 5699 3115 4123 3169 4123 3170 4123 3115 5700 3170 5700 3116 5700 3116 5701 3170 5701 3171 5701 3116 5702 3171 5702 3117 5702 3117 5703 3171 5703 3172 5703 3117 5704 3172 5704 3118 5704 3118 5705 3172 5705 3173 5705 3118 5706 3173 5706 3119 5706 3119 5707 3173 5707 3174 5707 3119 5708 3174 5708 3120 5708 3120 5709 3174 5709 3175 5709 3120 5710 3175 5710 3121 5710 3121 4135 3175 4135 3176 4135 3121 5711 3176 5711 3122 5711 3122 5712 3176 5712 3177 5712 3122 5713 3177 5713 3123 5713 3123 5714 3177 5714 3178 5714 3123 5715 3178 5715 3124 5715 3124 5716 3178 5716 3179 5716 3124 5717 3179 5717 3125 5717 3125 5718 3179 5718 3180 5718 3125 5719 3180 5719 3126 5719 3126 5720 3180 5720 3181 5720 3126 5721 3181 5721 3127 5721 3127 5722 3181 5722 3182 5722 3127 5723 3182 5723 3128 5723 3128 4149 3182 4149 3183 4149 3128 5724 3183 5724 3129 5724 3129 5725 3183 5725 3184 5725 3129 5726 3184 5726 3130 5726 3130 5727 3184 5727 3185 5727 3130 5728 3185 5728 3131 5728 3131 5729 3185 5729 3186 5729 3131 5730 3186 5730 3132 5730 3132 5731 3186 5731 3187 5731 3132 5732 3187 5732 3133 5732 3133 5733 3187 5733 3188 5733 3133 5734 3188 5734 3134 5734 3134 5735 3188 5735 3189 5735 3134 5736 3189 5736 3135 5736 3135 5737 3189 5737 3190 5737 3135 5738 3190 5738 3136 5738 3136 5739 3190 5739 3191 5739 3136 5740 3191 5740 3137 5740 3137 5741 3191 5741 3192 5741 3137 5742 3192 5742 3138 5742 3138 5743 3192 5743 3193 5743 3138 5744 3193 5744 3139 5744 3139 5745 3193 5745 3194 5745 3139 5746 3194 5746 3140 5746 3140 5747 3194 5747 3195 5747 3140 5748 3195 5748 3141 5748 3141 5749 3195 5749 3196 5749 3141 5750 3196 5750 3142 5750 3142 4177 3196 4177 3197 4177 3142 5751 3197 5751 3143 5751 3143 5752 3197 5752 3198 5752 3143 5753 3198 5753 3144 5753 3144 5754 3198 5754 3199 5754 3144 5755 3199 5755 3145 5755 3145 4183 3199 4183 3200 4183 3145 5756 3200 5756 3146 5756 3146 5757 3200 5757 3201 5757 3146 5758 3201 5758 3147 5758 3147 5759 3201 5759 3202 5759 3147 5760 3202 5760 3148 5760 3148 5761 3202 5761 3203 5761 3148 5762 3203 5762 3149 5762 3149 5763 3203 5763 3204 5763 3149 5764 3204 5764 3150 5764 3150 5765 3204 5765 3205 5765 3150 5766 3205 5766 3151 5766 3151 5767 3205 5767 3206 5767 3151 5768 3206 5768 3152 5768 3152 5769 3206 5769 3153 5769 3206 5770 3207 5770 3153 5770 3153 5771 3207 5771 3208 5771 3153 5772 3208 5772 3154 5772 3154 5773 3208 5773 3209 5773 3154 5774 3209 5774 3155 5774 3155 5775 3209 5775 3210 5775 3155 5776 3210 5776 3156 5776 3156 5777 3210 5777 3211 5777 3156 5778 3211 5778 3157 5778 3157 5779 3211 5779 3212 5779 3157 5780 3212 5780 3158 5780 3158 5781 3212 5781 3213 5781 3158 5782 3213 5782 3159 5782 3159 5783 3213 5783 3214 5783 3159 5784 3214 5784 3160 5784 3160 5785 3214 5785 3215 5785 3160 5786 3215 5786 3161 5786 3161 5787 3215 5787 3216 5787 3161 5788 3216 5788 3162 5788 3162 5789 3216 5789 3217 5789 3162 5790 3217 5790 3163 5790 3163 5791 3217 5791 3218 5791 3163 5792 3218 5792 3164 5792 3164 4221 3218 4221 3219 4221 3164 5793 3219 5793 3165 5793 3165 5794 3219 5794 3220 5794 3165 5795 3220 5795 3166 5795 3166 5796 3220 5796 3221 5796 3166 5797 3221 5797 3167 5797 3167 5798 3221 5798 3222 5798 3167 5799 3222 5799 3168 5799 3168 5800 3222 5800 3223 5800 3168 5801 3223 5801 3169 5801 3169 5802 3223 5802 3224 5802 3169 5803 3224 5803 3170 5803 3170 5804 3224 5804 3225 5804 3170 5805 3225 5805 3171 5805 3171 5806 3225 5806 3226 5806 3171 5807 3226 5807 3172 5807 3172 5808 3226 5808 3227 5808 3172 5809 3227 5809 3173 5809 3173 5810 3227 5810 3228 5810 3173 5811 3228 5811 3174 5811 3174 5812 3228 5812 3229 5812 3174 5813 3229 5813 3175 5813 3175 5814 3229 5814 3230 5814 3175 5815 3230 5815 3176 5815 3176 5816 3230 5816 3231 5816 3176 5817 3231 5817 3177 5817 3177 5818 3231 5818 3232 5818 3177 5819 3232 5819 3178 5819 3178 5820 3232 5820 3233 5820 3178 5821 3233 5821 3179 5821 3179 5822 3233 5822 3234 5822 3179 5823 3234 5823 3180 5823 3180 5824 3234 5824 3235 5824 3180 5825 3235 5825 3181 5825 3181 5826 3235 5826 3236 5826 3181 5827 3236 5827 3182 5827 3182 5828 3236 5828 3237 5828 3182 5829 3237 5829 3183 5829 3183 5830 3237 5830 3238 5830 3183 5831 3238 5831 3184 5831 3184 5832 3238 5832 3239 5832 3184 5833 3239 5833 3185 5833 3185 4263 3239 4263 3240 4263 3185 5834 3240 5834 3186 5834 3186 5835 3240 5835 3241 5835 3186 5836 3241 5836 3187 5836 3187 5837 3241 5837 3242 5837 3187 5838 3242 5838 3188 5838 3188 5839 3242 5839 3243 5839 3188 5840 3243 5840 3189 5840 3189 5841 3243 5841 3244 5841 3189 5842 3244 5842 3190 5842 3190 5843 3244 5843 3245 5843 3190 5844 3245 5844 3191 5844 3191 5845 3245 5845 3246 5845 3191 5846 3246 5846 3192 5846 3192 5847 3246 5847 3247 5847 3192 5848 3247 5848 3193 5848 3193 5849 3247 5849 3248 5849 3193 5850 3248 5850 3194 5850 3194 5851 3248 5851 3249 5851 3194 5852 3249 5852 3195 5852 3195 5853 3249 5853 3250 5853 3195 5854 3250 5854 3196 5854 3196 5855 3250 5855 3251 5855 3196 5856 3251 5856 3197 5856 3197 5857 3251 5857 3252 5857 3197 5858 3252 5858 3198 5858 3198 5859 3252 5859 3253 5859 3198 5860 3253 5860 3199 5860 3199 4291 3253 4291 3254 4291 3199 5861 3254 5861 3200 5861 3200 5862 3254 5862 3255 5862 3200 5863 3255 5863 3201 5863 3201 5864 3255 5864 3256 5864 3201 5865 3256 5865 3202 5865 3202 5866 3256 5866 3257 5866 3202 5867 3257 5867 3203 5867 3203 5868 3257 5868 3258 5868 3203 5869 3258 5869 3204 5869 3204 5870 3258 5870 3259 5870 3204 5871 3259 5871 3205 5871 3205 5872 3259 5872 3260 5872 3205 5873 3260 5873 3206 5873 3206 5874 3260 5874 3207 5874 3261 5875 3262 5875 3263 5875 3263 5876 3264 5876 3261 5876 3261 5877 3264 5877 3265 5877 3261 5878 3265 5878 3266 5878 3266 5879 3265 5879 3267 5879 3266 5880 3267 5880 3268 5880 3268 5881 3267 5881 3269 5881 3268 5882 3269 5882 3270 5882 3270 5883 3269 5883 3271 5883 3270 5884 3271 5884 3272 5884 3272 5885 3271 5885 3273 5885 3273 5886 3271 5886 3274 5886 3273 5887 3274 5887 3275 5887 3276 5888 3277 5888 3278 5888 3278 5889 3277 5889 3279 5889 3278 5890 3279 5890 3280 5890 3280 5891 3279 5891 3281 5891 3280 5892 3281 5892 3282 5892 3283 5893 3284 5893 3285 5893 3285 5894 3284 5894 3277 5894 3285 5895 3277 5895 3286 5895 3286 5896 3277 5896 3276 5896 3283 5897 3287 5897 3284 5897 3284 5898 3287 5898 3288 5898 3284 5899 3288 5899 3289 5899 3274 5900 3290 5900 3291 5900 3291 5901 3292 5901 3274 5901 3274 5902 3292 5902 3293 5902 3274 5903 3293 5903 3275 5903 3275 5904 3293 5904 3294 5904 3275 5905 3294 5905 3295 5905 3295 5906 3294 5906 3296 5906 3295 5907 3296 5907 3281 5907 3281 5908 3296 5908 3297 5908 3281 5909 3297 5909 3282 5909 3298 5910 3299 5910 3290 5910 3290 5911 3299 5911 3300 5911 3290 5912 3300 5912 3291 5912 3301 5913 3302 5913 3303 5913 3303 5914 3302 5914 3304 5914 3303 5915 3304 5915 3298 5915 3298 5916 3304 5916 3305 5916 3298 5917 3305 5917 3299 5917 3301 5918 3303 5918 3306 5918 3306 5919 3303 5919 3307 5919 3306 5920 3307 5920 3308 5920 3308 5921 3307 5921 3309 5921 3308 5922 3309 5922 3310 5922 3311 5923 3312 5923 3313 5923 3314 5924 3315 5924 3316 5924 3317 5925 3318 5925 3319 5925 3320 5926 3318 5926 3321 5926 3321 5927 3318 5927 3317 5927 3321 5928 3317 5928 3322 5928 3311 5929 3313 5929 3323 5929 3323 5930 3313 5930 3324 5930 3323 5931 3324 5931 3325 5931 3326 5932 3327 5932 3325 5932 3328 5933 3327 5933 3329 5933 3329 5934 3327 5934 3326 5934 3329 5935 3326 5935 3330 5935 3331 5936 3332 5936 3333 5936 3333 5937 3332 5937 3334 5937 3335 5938 3336 5938 3334 5938 3337 5939 3336 5939 3338 5939 3338 5940 3336 5940 3335 5940 3338 5941 3335 5941 3339 5941 3340 5942 3341 5942 3342 5942 3343 5943 3320 5943 3344 5943 3344 5944 3320 5944 3321 5944 3344 5945 3321 5945 3345 5945 3345 5946 3321 5946 3322 5946 3345 5947 3322 5947 3346 5947 3347 5948 3324 5948 3348 5948 3348 5949 3324 5949 3313 5949 3348 5950 3313 5950 3349 5950 3349 5951 3313 5951 3312 5951 3349 5952 3312 5952 3350 5952 3351 5953 3328 5953 3352 5953 3352 5954 3328 5954 3329 5954 3352 5955 3329 5955 3353 5955 3353 5956 3329 5956 3330 5956 3353 5957 3330 5957 3354 5957 3355 5958 3332 5958 3356 5958 3356 5959 3332 5959 3331 5959 3356 5960 3331 5960 3357 5960 3342 5961 3337 5961 3358 5961 3358 5962 3337 5962 3338 5962 3358 5963 3338 5963 3359 5963 3359 5964 3338 5964 3339 5964 3359 5965 3339 5965 3360 5965 3361 5966 3362 5966 3363 5966 3363 5967 3362 5967 3364 5967 3363 5968 3364 5968 3365 5968 3366 5969 3347 5969 3367 5969 3367 5970 3347 5970 3348 5970 3367 5971 3348 5971 3368 5971 3368 5972 3348 5972 3349 5972 3368 5973 3349 5973 3369 5973 3369 5974 3349 5974 3350 5974 3369 5975 3350 5975 3370 5975 3371 5976 3355 5976 3372 5976 3372 5977 3355 5977 3356 5977 3372 5978 3356 5978 3373 5978 3373 5979 3356 5979 3357 5979 3373 5980 3357 5980 3374 5980 3362 5981 3287 5981 3364 5981 3364 5982 3287 5982 3283 5982 3364 5983 3283 5983 3365 5983 3365 5984 3283 5984 3285 5984 3365 5985 3285 5985 3286 5985 3315 5986 3361 5986 3316 5986 3316 5987 3361 5987 3363 5987 3316 5988 3363 5988 3375 5988 3375 5989 3363 5989 3365 5989 3375 5990 3365 5990 3376 5990 3376 5991 3365 5991 3286 5991 3376 5992 3286 5992 3276 5992 3377 5993 3314 5993 3319 5993 3319 5994 3314 5994 3316 5994 3319 5995 3316 5995 3317 5995 3317 5996 3316 5996 3375 5996 3317 5997 3375 5997 3322 5997 3322 5998 3375 5998 3376 5998 3322 5999 3376 5999 3346 5999 3346 6000 3376 6000 3276 6000 3276 6001 3278 6001 3346 6001 3346 6002 3278 6002 3370 6002 3346 6003 3370 6003 3345 6003 3345 6004 3370 6004 3350 6004 3345 6005 3350 6005 3344 6005 3344 6006 3350 6006 3312 6006 3344 6007 3312 6007 3343 6007 3343 6008 3312 6008 3311 6008 3278 6009 3280 6009 3370 6009 3370 6010 3280 6010 3282 6010 3370 6011 3282 6011 3369 6011 3369 6012 3282 6012 3297 6012 3369 6013 3297 6013 3368 6013 3368 6014 3297 6014 3296 6014 3368 6015 3296 6015 3367 6015 3367 6016 3296 6016 3294 6016 3367 6017 3294 6017 3366 6017 3366 6018 3294 6018 3293 6018 3366 6019 3293 6019 3292 6019 3325 6020 3324 6020 3326 6020 3326 6021 3324 6021 3347 6021 3326 6022 3347 6022 3330 6022 3330 6023 3347 6023 3366 6023 3330 6024 3366 6024 3354 6024 3354 6025 3366 6025 3292 6025 3354 6026 3292 6026 3291 6026 3291 6027 3300 6027 3354 6027 3354 6028 3300 6028 3374 6028 3354 6029 3374 6029 3353 6029 3353 6030 3374 6030 3357 6030 3353 6031 3357 6031 3352 6031 3352 6032 3357 6032 3331 6032 3352 6033 3331 6033 3351 6033 3351 6034 3331 6034 3333 6034 3300 6035 3299 6035 3374 6035 3374 6036 3299 6036 3305 6036 3374 6037 3305 6037 3373 6037 3373 6038 3305 6038 3304 6038 3373 6039 3304 6039 3372 6039 3372 6040 3304 6040 3302 6040 3372 6041 3302 6041 3371 6041 3371 6042 3302 6042 3301 6042 3371 6043 3301 6043 3306 6043 3334 6044 3332 6044 3335 6044 3335 6045 3332 6045 3355 6045 3335 6046 3355 6046 3339 6046 3339 6047 3355 6047 3371 6047 3339 6048 3371 6048 3360 6048 3360 6049 3371 6049 3306 6049 3360 6050 3306 6050 3308 6050 3342 6051 3358 6051 3340 6051 3340 6052 3358 6052 3359 6052 3340 6053 3359 6053 3378 6053 3378 6054 3359 6054 3360 6054 3378 6055 3360 6055 3379 6055 3379 6056 3360 6056 3308 6056 3379 6057 3308 6057 3310 6057 3379 6058 3310 6058 3380 6058 3380 6059 3381 6059 3379 6059 3379 6060 3381 6060 3382 6060 3379 6061 3382 6061 3378 6061 3378 6062 3382 6062 3383 6062 3378 6063 3383 6063 3340 6063 3340 6064 3383 6064 3384 6064 3340 6065 3384 6065 3341 6065 3385 6066 3386 6066 3380 6066 3387 6067 3388 6067 3309 6067 3309 6068 3388 6068 3385 6068 3309 6069 3385 6069 3310 6069 3310 6070 3385 6070 3380 6070 3309 6071 3389 6071 3387 6071 3387 6072 3389 6072 3390 6072 3387 6073 3390 6073 3386 6073 3386 6073 3390 6073 3391 6073 3386 6074 3391 6074 3380 6074 3380 6075 3391 6075 3392 6075 3380 6076 3392 6076 3389 6076 3389 6077 3392 6077 3393 6077 3389 6078 3393 6078 3390 6078 3394 6079 3395 6079 3396 6079 3396 6080 3395 6080 3397 6080 3396 6081 3397 6081 3398 6081 3398 6082 3397 6082 3399 6082 3398 6083 3399 6083 3400 6083 3396 6084 3401 6084 3394 6084 3394 6085 3401 6085 3402 6085 3394 6086 3402 6086 3403 6086 3403 6087 3402 6087 3404 6087 3403 6088 3404 6088 3405 6088 3400 6089 3399 6089 3406 6089 3406 6090 3399 6090 3407 6090 3406 6091 3407 6091 3408 6091 3408 6092 3407 6092 3409 6092 3408 6093 3409 6093 3410 6093 3410 6094 3409 6094 3411 6094 3410 6095 3411 6095 3412 6095 3412 6096 3411 6096 3413 6096 3412 6097 3413 6097 3414 6097 3414 6098 3413 6098 3415 6098 3414 6099 3415 6099 3416 6099 3405 6100 3404 6100 3417 6100 3417 6101 3404 6101 3418 6101 3417 6102 3418 6102 3419 6102 3419 6103 3418 6103 3420 6103 3419 6104 3420 6104 3421 6104 3421 6105 3420 6105 3422 6105 3421 6106 3422 6106 3423 6106 3423 6107 3422 6107 3424 6107 3423 6108 3424 6108 3425 6108 3425 6109 3424 6109 3426 6109 3425 6110 3426 6110 3427 6110 3428 6111 3394 6111 3429 6111 3429 6112 3394 6112 3403 6112 3429 6113 3403 6113 3430 6113 3430 6114 3403 6114 3405 6114 3430 6115 3405 6115 3431 6115 3431 6116 3405 6116 3417 6116 3431 6117 3417 6117 3432 6117 3432 6118 3417 6118 3419 6118 3432 6119 3419 6119 3433 6119 3433 6120 3419 6120 3421 6120 3433 6121 3421 6121 3434 6121 3434 6122 3421 6122 3423 6122 3434 6123 3423 6123 3435 6123 3435 6124 3423 6124 3425 6124 3435 6125 3425 6125 3436 6125 3436 6126 3425 6126 3427 6126 3436 6127 3427 6127 3437 6127 3437 6128 3427 6128 3426 6128 3437 6129 3426 6129 3438 6129 3438 6130 3426 6130 3424 6130 3438 6131 3424 6131 3439 6131 3439 6132 3424 6132 3422 6132 3439 6133 3422 6133 3440 6133 3440 6134 3422 6134 3420 6134 3440 6135 3420 6135 3441 6135 3441 6136 3420 6136 3418 6136 3441 6137 3418 6137 3442 6137 3442 6138 3418 6138 3404 6138 3442 6139 3404 6139 3443 6139 3443 6140 3404 6140 3402 6140 3443 6141 3402 6141 3444 6141 3444 6142 3402 6142 3401 6142 3445 6143 3428 6143 3446 6143 3446 6144 3428 6144 3429 6144 3446 6145 3429 6145 3447 6145 3447 6146 3429 6146 3430 6146 3447 6147 3430 6147 3448 6147 3448 6148 3430 6148 3431 6148 3448 6149 3431 6149 3449 6149 3449 6150 3431 6150 3432 6150 3449 6151 3432 6151 3450 6151 3450 6152 3432 6152 3433 6152 3450 6153 3433 6153 3451 6153 3451 6154 3433 6154 3434 6154 3451 6155 3434 6155 3452 6155 3452 6156 3434 6156 3435 6156 3452 6157 3435 6157 3453 6157 3453 6158 3435 6158 3436 6158 3453 6159 3436 6159 3454 6159 3454 6160 3436 6160 3437 6160 3454 6161 3437 6161 3455 6161 3455 6162 3437 6162 3438 6162 3455 6163 3438 6163 3456 6163 3456 6164 3438 6164 3439 6164 3456 6165 3439 6165 3457 6165 3457 6166 3439 6166 3440 6166 3457 6167 3440 6167 3458 6167 3458 6168 3440 6168 3441 6168 3458 6169 3441 6169 3459 6169 3459 6170 3441 6170 3442 6170 3459 6171 3442 6171 3460 6171 3460 6172 3442 6172 3443 6172 3460 6173 3443 6173 3461 6173 3461 6174 3443 6174 3444 6174 3462 6175 3445 6175 3463 6175 3463 6176 3445 6176 3446 6176 3463 6177 3446 6177 3464 6177 3464 6178 3446 6178 3447 6178 3464 6179 3447 6179 3465 6179 3465 6180 3447 6180 3448 6180 3465 6181 3448 6181 3466 6181 3466 6182 3448 6182 3449 6182 3466 6183 3449 6183 3467 6183 3467 6184 3449 6184 3450 6184 3467 6185 3450 6185 3468 6185 3468 6186 3450 6186 3451 6186 3468 6187 3451 6187 3469 6187 3469 6188 3451 6188 3452 6188 3469 6189 3452 6189 3470 6189 3470 6190 3452 6190 3453 6190 3470 6191 3453 6191 3471 6191 3471 6192 3453 6192 3454 6192 3471 6193 3454 6193 3472 6193 3472 6194 3454 6194 3455 6194 3472 6195 3455 6195 3473 6195 3473 6196 3455 6196 3456 6196 3473 6197 3456 6197 3474 6197 3474 6198 3456 6198 3457 6198 3474 6199 3457 6199 3475 6199 3475 6200 3457 6200 3458 6200 3475 6201 3458 6201 3476 6201 3476 6202 3458 6202 3459 6202 3476 6203 3459 6203 3477 6203 3477 6204 3459 6204 3460 6204 3477 6205 3460 6205 3478 6205 3478 6206 3460 6206 3461 6206 3479 6207 3462 6207 3480 6207 3480 6208 3462 6208 3463 6208 3480 6209 3463 6209 3481 6209 3481 6210 3463 6210 3464 6210 3481 6211 3464 6211 3482 6211 3482 6212 3464 6212 3465 6212 3482 6213 3465 6213 3483 6213 3483 6214 3465 6214 3466 6214 3483 6215 3466 6215 3484 6215 3484 6216 3466 6216 3467 6216 3484 6217 3467 6217 3485 6217 3485 6218 3467 6218 3468 6218 3485 6219 3468 6219 3486 6219 3486 6220 3468 6220 3469 6220 3486 6221 3469 6221 3487 6221 3487 6222 3469 6222 3470 6222 3487 6223 3470 6223 3488 6223 3488 6224 3470 6224 3471 6224 3488 6225 3471 6225 3489 6225 3489 6226 3471 6226 3472 6226 3489 6227 3472 6227 3490 6227 3490 6228 3472 6228 3473 6228 3490 6229 3473 6229 3491 6229 3491 6230 3473 6230 3474 6230 3491 6231 3474 6231 3492 6231 3492 6232 3474 6232 3475 6232 3492 6233 3475 6233 3493 6233 3493 6234 3475 6234 3476 6234 3493 6235 3476 6235 3494 6235 3494 6236 3476 6236 3477 6236 3494 6237 3477 6237 3495 6237 3495 6238 3477 6238 3478 6238 3401 6239 3396 6239 3444 6239 3444 6240 3396 6240 3496 6240 3444 6241 3496 6241 3461 6241 3461 6242 3496 6242 3497 6242 3461 6243 3497 6243 3478 6243 3478 6244 3497 6244 3498 6244 3478 6245 3498 6245 3495 6245 3495 6246 3498 6246 3499 6246 3496 6247 3396 6247 3500 6247 3500 6248 3396 6248 3398 6248 3500 6249 3398 6249 3501 6249 3501 6250 3398 6250 3400 6250 3501 6251 3400 6251 3502 6251 3502 6252 3400 6252 3406 6252 3502 6253 3406 6253 3503 6253 3503 6254 3406 6254 3408 6254 3503 6255 3408 6255 3504 6255 3504 6256 3408 6256 3410 6256 3504 6257 3410 6257 3505 6257 3505 6258 3410 6258 3412 6258 3505 6259 3412 6259 3506 6259 3506 6260 3412 6260 3414 6260 3506 6261 3414 6261 3507 6261 3507 6262 3414 6262 3416 6262 3507 6263 3416 6263 3508 6263 3508 6264 3416 6264 3415 6264 3508 6265 3415 6265 3509 6265 3509 6266 3415 6266 3413 6266 3509 6267 3413 6267 3510 6267 3510 6268 3413 6268 3411 6268 3510 6269 3411 6269 3511 6269 3511 6270 3411 6270 3409 6270 3511 6271 3409 6271 3512 6271 3512 6272 3409 6272 3407 6272 3512 6273 3407 6273 3513 6273 3513 6274 3407 6274 3399 6274 3513 6275 3399 6275 3514 6275 3514 6276 3399 6276 3397 6276 3514 6277 3397 6277 3515 6277 3515 6278 3397 6278 3395 6278 3497 6279 3496 6279 3516 6279 3516 6280 3496 6280 3500 6280 3516 6281 3500 6281 3517 6281 3517 6282 3500 6282 3501 6282 3517 6283 3501 6283 3518 6283 3518 6284 3501 6284 3502 6284 3518 6285 3502 6285 3519 6285 3519 6286 3502 6286 3503 6286 3519 6287 3503 6287 3520 6287 3520 6288 3503 6288 3504 6288 3520 6289 3504 6289 3521 6289 3521 6290 3504 6290 3505 6290 3521 6291 3505 6291 3522 6291 3522 6292 3505 6292 3506 6292 3522 6293 3506 6293 3523 6293 3523 6294 3506 6294 3507 6294 3523 6295 3507 6295 3524 6295 3524 6296 3507 6296 3508 6296 3524 6297 3508 6297 3525 6297 3525 6298 3508 6298 3509 6298 3525 6299 3509 6299 3526 6299 3526 6300 3509 6300 3510 6300 3526 6301 3510 6301 3527 6301 3527 6302 3510 6302 3511 6302 3527 6303 3511 6303 3528 6303 3528 6304 3511 6304 3512 6304 3528 6305 3512 6305 3529 6305 3529 6306 3512 6306 3513 6306 3529 6307 3513 6307 3530 6307 3530 6308 3513 6308 3514 6308 3530 6309 3514 6309 3531 6309 3531 6310 3514 6310 3515 6310 3498 6311 3497 6311 3532 6311 3532 6312 3497 6312 3516 6312 3532 6313 3516 6313 3533 6313 3533 6314 3516 6314 3517 6314 3533 6315 3517 6315 3534 6315 3534 6316 3517 6316 3518 6316 3534 6317 3518 6317 3535 6317 3535 6318 3518 6318 3519 6318 3535 6319 3519 6319 3536 6319 3536 6320 3519 6320 3520 6320 3536 6321 3520 6321 3537 6321 3537 6322 3520 6322 3521 6322 3537 6323 3521 6323 3538 6323 3538 6324 3521 6324 3522 6324 3538 6325 3522 6325 3539 6325 3539 6326 3522 6326 3523 6326 3539 6327 3523 6327 3540 6327 3540 6328 3523 6328 3524 6328 3540 6329 3524 6329 3541 6329 3541 6330 3524 6330 3525 6330 3541 6331 3525 6331 3542 6331 3542 6332 3525 6332 3526 6332 3542 6333 3526 6333 3543 6333 3543 6334 3526 6334 3527 6334 3543 6335 3527 6335 3544 6335 3544 6336 3527 6336 3528 6336 3544 6337 3528 6337 3545 6337 3545 6338 3528 6338 3529 6338 3545 6339 3529 6339 3546 6339 3546 6340 3529 6340 3530 6340 3546 6341 3530 6341 3547 6341 3547 6342 3530 6342 3531 6342 3499 6343 3498 6343 3548 6343 3548 6344 3498 6344 3532 6344 3548 6345 3532 6345 3549 6345 3549 6346 3532 6346 3533 6346 3549 6347 3533 6347 3550 6347 3550 6348 3533 6348 3534 6348 3550 6349 3534 6349 3551 6349 3551 6350 3534 6350 3535 6350 3551 6351 3535 6351 3552 6351 3552 6352 3535 6352 3536 6352 3552 6353 3536 6353 3553 6353 3553 6354 3536 6354 3537 6354 3553 6355 3537 6355 3554 6355 3554 6356 3537 6356 3538 6356 3554 6357 3538 6357 3555 6357 3555 6358 3538 6358 3539 6358 3555 6359 3539 6359 3556 6359 3556 6360 3539 6360 3540 6360 3556 6361 3540 6361 3557 6361 3557 6362 3540 6362 3541 6362 3557 6363 3541 6363 3558 6363 3558 6364 3541 6364 3542 6364 3558 6365 3542 6365 3559 6365 3559 6366 3542 6366 3543 6366 3559 6367 3543 6367 3560 6367 3560 6368 3543 6368 3544 6368 3560 6369 3544 6369 3561 6369 3561 6370 3544 6370 3545 6370 3561 6371 3545 6371 3562 6371 3562 6372 3545 6372 3546 6372 3562 6373 3546 6373 3563 6373 3563 6374 3546 6374 3547 6374 3395 6375 3394 6375 3515 6375 3515 6376 3394 6376 3428 6376 3515 6377 3428 6377 3531 6377 3531 6378 3428 6378 3445 6378 3531 6379 3445 6379 3547 6379 3547 6380 3445 6380 3462 6380 3547 6381 3462 6381 3563 6381 3563 6381 3462 6381 3479 6381 3563 6382 3479 6382 3564 6382 3564 6383 3479 6383 3565 6383 3564 6384 3565 6384 3566 6384 3565 6384 3567 6384 3566 6384 3566 6385 3567 6385 3568 6385 3566 6386 3568 6386 3569 6386 3569 6387 3568 6387 3570 6387 3569 6388 3570 6388 3571 6388 3572 6389 3573 6389 3574 6389 3575 6390 3499 6390 3576 6390 3576 6391 3499 6391 3548 6391 3576 6392 3548 6392 3577 6392 3577 6393 3548 6393 3549 6393 3577 6394 3549 6394 3578 6394 3578 6395 3549 6395 3550 6395 3578 6396 3550 6396 3579 6396 3579 6397 3550 6397 3551 6397 3579 6398 3551 6398 3580 6398 3580 6399 3551 6399 3552 6399 3580 6400 3552 6400 3581 6400 3581 6401 3552 6401 3553 6401 3581 6402 3553 6402 3582 6402 3582 6403 3553 6403 3554 6403 3582 6404 3554 6404 3583 6404 3583 6405 3554 6405 3555 6405 3583 6406 3555 6406 3584 6406 3584 6407 3555 6407 3556 6407 3584 6408 3556 6408 3585 6408 3585 6409 3556 6409 3557 6409 3585 6410 3557 6410 3586 6410 3586 6411 3557 6411 3558 6411 3586 6412 3558 6412 3587 6412 3587 6413 3558 6413 3559 6413 3587 6414 3559 6414 3588 6414 3588 6415 3559 6415 3560 6415 3588 6416 3560 6416 3589 6416 3589 6417 3560 6417 3561 6417 3589 6418 3561 6418 3590 6418 3590 6419 3561 6419 3562 6419 3566 6420 3590 6420 3564 6420 3564 6421 3590 6421 3562 6421 3564 6422 3562 6422 3563 6422 3575 6423 3576 6423 3591 6423 3591 6424 3576 6424 3577 6424 3591 6425 3577 6425 3592 6425 3592 6426 3577 6426 3578 6426 3592 6427 3578 6427 3593 6427 3593 6428 3578 6428 3579 6428 3593 6429 3579 6429 3594 6429 3594 6430 3579 6430 3580 6430 3594 6431 3580 6431 3595 6431 3595 6432 3580 6432 3581 6432 3595 6433 3581 6433 3596 6433 3596 6434 3581 6434 3582 6434 3596 6435 3582 6435 3597 6435 3597 6436 3582 6436 3583 6436 3597 6437 3583 6437 3598 6437 3598 6438 3583 6438 3584 6438 3598 6439 3584 6439 3599 6439 3599 6440 3584 6440 3585 6440 3599 6441 3585 6441 3600 6441 3600 6442 3585 6442 3586 6442 3600 6443 3586 6443 3601 6443 3601 6444 3586 6444 3587 6444 3601 6445 3587 6445 3602 6445 3602 6446 3587 6446 3588 6446 3602 6447 3588 6447 3603 6447 3603 6448 3588 6448 3589 6448 3603 6449 3589 6449 3604 6449 3604 6450 3589 6450 3590 6450 3604 6451 3590 6451 3605 6451 3605 6452 3590 6452 3566 6452 3605 6453 3566 6453 3569 6453 3569 6454 3606 6454 3605 6454 3605 6455 3606 6455 3607 6455 3605 6456 3607 6456 3604 6456 3604 6457 3607 6457 3608 6457 3604 6458 3608 6458 3603 6458 3603 6459 3608 6459 3609 6459 3603 6460 3609 6460 3602 6460 3602 6461 3609 6461 3610 6461 3602 6462 3610 6462 3601 6462 3601 6463 3610 6463 3611 6463 3601 6464 3611 6464 3600 6464 3600 6465 3611 6465 3612 6465 3600 6466 3612 6466 3599 6466 3599 6467 3612 6467 3613 6467 3599 6468 3613 6468 3598 6468 3598 6469 3613 6469 3614 6469 3598 6470 3614 6470 3597 6470 3597 6471 3614 6471 3615 6471 3597 6472 3615 6472 3596 6472 3596 6473 3615 6473 3616 6473 3596 6474 3616 6474 3595 6474 3595 6475 3616 6475 3617 6475 3595 6476 3617 6476 3594 6476 3594 6477 3617 6477 3618 6477 3594 6478 3618 6478 3593 6478 3593 6479 3618 6479 3619 6479 3593 6480 3619 6480 3592 6480 3592 6481 3619 6481 3572 6481 3592 6482 3572 6482 3591 6482 3591 6483 3572 6483 3574 6483 3591 6484 3574 6484 3575 6484 3620 6485 3573 6485 3621 6485 3621 6486 3573 6486 3572 6486 3621 6487 3572 6487 3622 6487 3622 6488 3572 6488 3619 6488 3622 6489 3619 6489 3623 6489 3623 6490 3619 6490 3618 6490 3623 6491 3618 6491 3624 6491 3624 6492 3618 6492 3617 6492 3624 6493 3617 6493 3625 6493 3625 6494 3617 6494 3616 6494 3625 6495 3616 6495 3626 6495 3626 6496 3616 6496 3615 6496 3626 6497 3615 6497 3627 6497 3627 6498 3615 6498 3614 6498 3627 6499 3614 6499 3628 6499 3628 6500 3614 6500 3613 6500 3628 6501 3613 6501 3629 6501 3629 6502 3613 6502 3612 6502 3629 6503 3612 6503 3630 6503 3630 6504 3612 6504 3611 6504 3630 6505 3611 6505 3631 6505 3631 6506 3611 6506 3610 6506 3631 6507 3610 6507 3632 6507 3632 6508 3610 6508 3609 6508 3632 6509 3609 6509 3633 6509 3633 6510 3609 6510 3608 6510 3633 6511 3608 6511 3634 6511 3634 6512 3608 6512 3607 6512 3634 6513 3607 6513 3635 6513 3635 6514 3607 6514 3606 6514 3635 6515 3606 6515 3571 6515 3571 6516 3606 6516 3569 6516 3495 6517 3499 6517 3636 6517 3636 6518 3499 6518 3575 6518 3636 6519 3575 6519 3637 6519 3575 6520 3574 6520 3637 6520 3637 6521 3574 6521 3573 6521 3637 6522 3573 6522 3638 6522 3638 6523 3573 6523 3620 6523 3638 6524 3620 6524 3639 6524 3640 6525 3568 6525 3567 6525 3565 6526 3479 6526 3641 6526 3641 6527 3479 6527 3480 6527 3641 6528 3480 6528 3642 6528 3642 6529 3480 6529 3481 6529 3642 6530 3481 6530 3643 6530 3643 6531 3481 6531 3482 6531 3643 6532 3482 6532 3644 6532 3644 6533 3482 6533 3483 6533 3644 6534 3483 6534 3645 6534 3645 6535 3483 6535 3484 6535 3645 6536 3484 6536 3646 6536 3646 6537 3484 6537 3485 6537 3646 6538 3485 6538 3647 6538 3647 6539 3485 6539 3486 6539 3647 6540 3486 6540 3648 6540 3648 6541 3486 6541 3487 6541 3648 6542 3487 6542 3649 6542 3649 6543 3487 6543 3488 6543 3649 6544 3488 6544 3650 6544 3650 6545 3488 6545 3489 6545 3650 6546 3489 6546 3651 6546 3651 6547 3489 6547 3490 6547 3651 6548 3490 6548 3652 6548 3652 6549 3490 6549 3491 6549 3652 6550 3491 6550 3653 6550 3653 6551 3491 6551 3492 6551 3653 6552 3492 6552 3654 6552 3654 6553 3492 6553 3493 6553 3654 6554 3493 6554 3655 6554 3655 6555 3493 6555 3494 6555 3637 6556 3655 6556 3636 6556 3636 6557 3655 6557 3494 6557 3636 6558 3494 6558 3495 6558 3565 6559 3641 6559 3656 6559 3656 6560 3641 6560 3642 6560 3656 6561 3642 6561 3657 6561 3657 6562 3642 6562 3643 6562 3657 6563 3643 6563 3658 6563 3658 6564 3643 6564 3644 6564 3658 6565 3644 6565 3659 6565 3659 6566 3644 6566 3645 6566 3659 6567 3645 6567 3660 6567 3660 6568 3645 6568 3646 6568 3660 6569 3646 6569 3661 6569 3661 6570 3646 6570 3647 6570 3661 6571 3647 6571 3662 6571 3662 6572 3647 6572 3648 6572 3662 6573 3648 6573 3663 6573 3663 6574 3648 6574 3649 6574 3663 6575 3649 6575 3664 6575 3664 6576 3649 6576 3650 6576 3664 6577 3650 6577 3665 6577 3665 6578 3650 6578 3651 6578 3665 6579 3651 6579 3666 6579 3666 6580 3651 6580 3652 6580 3666 6581 3652 6581 3667 6581 3667 6582 3652 6582 3653 6582 3667 6583 3653 6583 3668 6583 3668 6584 3653 6584 3654 6584 3668 6585 3654 6585 3669 6585 3669 6586 3654 6586 3655 6586 3669 6587 3655 6587 3670 6587 3670 6588 3655 6588 3637 6588 3670 6589 3637 6589 3638 6589 3638 6590 3671 6590 3670 6590 3670 6591 3671 6591 3672 6591 3670 6592 3672 6592 3669 6592 3669 6593 3672 6593 3673 6593 3669 6594 3673 6594 3668 6594 3668 6595 3673 6595 3674 6595 3668 6596 3674 6596 3667 6596 3667 6597 3674 6597 3675 6597 3667 6598 3675 6598 3666 6598 3666 6599 3675 6599 3676 6599 3666 6600 3676 6600 3665 6600 3665 6601 3676 6601 3677 6601 3665 6602 3677 6602 3664 6602 3664 6603 3677 6603 3678 6603 3664 6604 3678 6604 3663 6604 3663 6605 3678 6605 3679 6605 3663 6606 3679 6606 3662 6606 3662 6607 3679 6607 3680 6607 3662 6608 3680 6608 3661 6608 3661 6609 3680 6609 3681 6609 3661 6610 3681 6610 3660 6610 3660 6611 3681 6611 3682 6611 3660 6612 3682 6612 3659 6612 3659 6613 3682 6613 3683 6613 3659 6614 3683 6614 3658 6614 3658 6615 3683 6615 3684 6615 3658 6616 3684 6616 3657 6616 3657 6617 3684 6617 3640 6617 3657 6618 3640 6618 3656 6618 3656 6619 3640 6619 3567 6619 3656 6620 3567 6620 3565 6620 3570 6621 3568 6621 3685 6621 3685 6622 3568 6622 3640 6622 3685 6623 3640 6623 3686 6623 3686 6624 3640 6624 3684 6624 3686 6625 3684 6625 3687 6625 3687 6626 3684 6626 3683 6626 3687 6627 3683 6627 3688 6627 3688 6628 3683 6628 3682 6628 3688 6629 3682 6629 3689 6629 3689 6630 3682 6630 3681 6630 3689 6631 3681 6631 3690 6631 3690 6632 3681 6632 3680 6632 3690 6633 3680 6633 3691 6633 3691 6634 3680 6634 3679 6634 3691 6635 3679 6635 3692 6635 3692 6636 3679 6636 3678 6636 3692 6637 3678 6637 3693 6637 3693 6638 3678 6638 3677 6638 3693 6639 3677 6639 3694 6639 3694 6640 3677 6640 3676 6640 3694 6641 3676 6641 3695 6641 3695 6642 3676 6642 3675 6642 3695 6643 3675 6643 3696 6643 3696 6644 3675 6644 3674 6644 3696 6645 3674 6645 3697 6645 3697 6646 3674 6646 3673 6646 3697 6647 3673 6647 3698 6647 3698 6648 3673 6648 3672 6648 3698 6649 3672 6649 3699 6649 3699 6650 3672 6650 3671 6650 3699 6651 3671 6651 3639 6651 3639 6652 3671 6652 3638 6652 3700 6653 3628 6653 3701 6653 3701 6654 3628 6654 3629 6654 3701 6655 3629 6655 3702 6655 3271 6656 3269 6656 3690 6656 3690 6657 3691 6657 3271 6657 3271 6658 3691 6658 3692 6658 3271 6659 3692 6659 3274 6659 3274 6660 3692 6660 3693 6660 3274 6661 3693 6661 3290 6661 3629 6662 3630 6662 3702 6662 3702 6663 3630 6663 3631 6663 3702 6664 3631 6664 3703 6664 3703 6665 3631 6665 3632 6665 3703 6666 3632 6666 3704 6666 3705 6667 3626 6667 3700 6667 3700 6668 3626 6668 3627 6668 3700 6669 3627 6669 3628 6669 3265 6670 3687 6670 3267 6670 3267 6671 3687 6671 3688 6671 3267 6672 3688 6672 3269 6672 3269 6673 3688 6673 3689 6673 3269 6674 3689 6674 3690 6674 3632 6675 3633 6675 3704 6675 3704 6676 3633 6676 3634 6676 3704 6677 3634 6677 3706 6677 3706 6678 3634 6678 3635 6678 3706 6679 3635 6679 3707 6679 3707 6680 3635 6680 3571 6680 3707 6681 3571 6681 3263 6681 3263 6681 3571 6681 3570 6681 3263 6682 3570 6682 3264 6682 3264 6683 3570 6683 3685 6683 3264 6684 3685 6684 3265 6684 3265 6685 3685 6685 3686 6685 3265 6686 3686 6686 3687 6686 3693 6687 3694 6687 3290 6687 3290 6688 3694 6688 3695 6688 3290 6689 3695 6689 3298 6689 3298 6690 3695 6690 3696 6690 3298 6691 3696 6691 3303 6691 3708 6692 3623 6692 3709 6692 3709 6693 3623 6693 3624 6693 3709 6694 3624 6694 3705 6694 3705 6695 3624 6695 3625 6695 3705 6696 3625 6696 3626 6696 3696 6697 3697 6697 3303 6697 3303 6698 3697 6698 3698 6698 3303 6699 3698 6699 3307 6699 3307 6700 3698 6700 3699 6700 3307 6701 3699 6701 3309 6701 3309 6702 3699 6702 3639 6702 3309 6703 3639 6703 3389 6703 3389 6703 3639 6703 3620 6703 3389 6704 3620 6704 3710 6704 3710 6705 3620 6705 3621 6705 3710 6706 3621 6706 3708 6706 3708 6707 3621 6707 3622 6707 3708 6708 3622 6708 3623 6708 3262 6709 3711 6709 3263 6709 3263 6710 3711 6710 3707 6710 3712 6711 3711 6711 3713 6711 3272 6712 3273 6712 3714 6712 3714 6713 3262 6713 3261 6713 3712 6714 3713 6714 3715 6714 3713 6715 3716 6715 3717 6715 3711 6716 3262 6716 3713 6716 3713 6717 3262 6717 3714 6717 3713 6718 3714 6718 3718 6718 3718 6719 3714 6719 3719 6719 3270 6720 3272 6720 3268 6720 3268 6721 3272 6721 3714 6721 3268 6722 3714 6722 3266 6722 3266 6723 3714 6723 3261 6723 3717 6724 3720 6724 3713 6724 3713 6725 3720 6725 3721 6725 3713 6726 3721 6726 3715 6726 3275 6727 3722 6727 3273 6727 3273 6728 3722 6728 3714 6728 3723 6729 3724 6729 3722 6729 3722 6730 3724 6730 3725 6730 3277 6731 3284 6731 3722 6731 3722 6732 3284 6732 3289 6732 3722 6733 3289 6733 3723 6733 3722 6734 3275 6734 3295 6734 3295 6735 3281 6735 3722 6735 3722 6736 3281 6736 3279 6736 3722 6737 3279 6737 3277 6737 3726 6738 3727 6738 3723 6738 3728 456 3729 456 3730 456 3730 6739 3731 6739 3728 6739 3728 6740 3731 6740 3732 6740 3728 6741 3732 6741 3377 6741 3723 456 3727 456 3724 456 3724 6742 3727 6742 3733 6742 3724 456 3733 456 3729 456 3729 6743 3733 6743 3734 6743 3729 6744 3734 6744 3730 6744 3726 456 3723 456 3735 456 3735 6745 3723 6745 3288 6745 3735 456 3288 456 3736 456 3736 6746 3288 6746 3287 6746 3736 6747 3287 6747 3737 6747 3737 6748 3287 6748 3362 6748 3737 6749 3362 6749 3361 6749 3732 456 3738 456 3377 456 3377 6750 3738 6750 3739 6750 3377 456 3739 456 3314 456 3314 6751 3739 6751 3737 6751 3314 6752 3737 6752 3315 6752 3315 456 3737 456 3361 456 3740 6753 3729 6753 3741 6753 3741 6754 3729 6754 3728 6754 3742 6755 3743 6755 3744 6755 3740 439 3741 439 3745 439 3745 439 3746 439 3740 439 3740 6756 3746 6756 3747 6756 3740 439 3747 439 3748 439 3748 6757 3747 6757 3749 6757 3748 439 3749 439 3743 439 3743 6758 3749 6758 3750 6758 3743 6759 3750 6759 3744 6759 3744 439 3751 439 3742 439 3742 439 3751 439 3752 439 3742 6760 3752 6760 3753 6760 3753 6761 3752 6761 3754 6761 3753 439 3754 439 3755 439 3755 6762 3754 6762 3756 6762 3755 439 3756 439 3757 439 3757 439 3756 439 3758 439 3759 439 3758 439 3760 439 3760 439 3758 439 3756 439 3760 6763 3756 6763 3761 6763 3761 6764 3756 6764 3762 6764 3761 439 3762 439 3741 439 3741 6765 3762 6765 3763 6765 3741 6766 3763 6766 3745 6766 3328 6767 3351 6767 3728 6767 3764 6768 3765 6768 3741 6768 3741 6769 3765 6769 3766 6769 3741 6770 3766 6770 3761 6770 3728 6771 3336 6771 3337 6771 3337 6772 3342 6772 3728 6772 3728 6773 3342 6773 3341 6773 3728 6774 3341 6774 3741 6774 3741 6775 3341 6775 3384 6775 3741 6776 3384 6776 3767 6776 3768 6777 3769 6777 3741 6777 3741 6778 3769 6778 3770 6778 3741 6779 3770 6779 3771 6779 3771 6780 3772 6780 3741 6780 3741 6781 3772 6781 3773 6781 3741 6782 3773 6782 3774 6782 3767 6783 3775 6783 3741 6783 3741 6784 3775 6784 3776 6784 3741 6785 3776 6785 3768 6785 3351 6786 3333 6786 3728 6786 3728 6787 3333 6787 3334 6787 3728 6788 3334 6788 3336 6788 3774 6789 3777 6789 3741 6789 3741 6790 3777 6790 3778 6790 3741 6791 3778 6791 3764 6791 3377 6792 3319 6792 3728 6792 3728 6793 3319 6793 3318 6793 3728 6794 3318 6794 3320 6794 3320 6795 3343 6795 3728 6795 3728 6796 3343 6796 3311 6796 3728 6797 3311 6797 3323 6797 3323 6798 3325 6798 3728 6798 3728 6799 3325 6799 3327 6799 3728 6800 3327 6800 3328 6800 3779 6801 3780 6801 3781 6801 3782 6802 3783 6802 3784 6802 3785 6803 3786 6803 3777 6803 3758 6804 3759 6804 3787 6804 3766 6805 3788 6805 3761 6805 3761 6806 3788 6806 3760 6806 3757 6807 3789 6807 3755 6807 3755 6808 3789 6808 3790 6808 3755 6809 3790 6809 3753 6809 3775 6810 3767 6810 3791 6810 3768 6811 3776 6811 3792 6811 3769 6812 3768 6812 3793 6812 3769 6813 3784 6813 3770 6813 3770 6814 3784 6814 3783 6814 3770 6815 3783 6815 3771 6815 3777 6816 3786 6816 3778 6816 3778 6817 3786 6817 3794 6817 3778 6818 3794 6818 3764 6818 3759 6819 3760 6819 3787 6819 3787 6820 3760 6820 3788 6820 3787 6821 3788 6821 3795 6821 3795 6822 3788 6822 3766 6822 3795 6823 3766 6823 3765 6823 3796 6824 3797 6824 3798 6824 3772 6825 3771 6825 3799 6825 3799 6826 3771 6826 3783 6826 3799 6827 3783 6827 3800 6827 3800 6828 3783 6828 3782 6828 3800 6829 3782 6829 3801 6829 3802 6830 3794 6830 3803 6830 3803 6831 3794 6831 3786 6831 3803 6832 3786 6832 3804 6832 3804 6833 3786 6833 3785 6833 3804 6834 3785 6834 3805 6834 3757 6835 3758 6835 3789 6835 3789 6836 3758 6836 3787 6836 3789 6837 3787 6837 3806 6837 3806 6838 3787 6838 3795 6838 3806 6839 3795 6839 3807 6839 3807 6840 3795 6840 3765 6840 3807 6841 3765 6841 3764 6841 3808 6842 3798 6842 3809 6842 3809 6843 3798 6843 3797 6843 3809 6844 3797 6844 3810 6844 3811 6845 3802 6845 3812 6845 3812 6846 3802 6846 3803 6846 3812 6847 3803 6847 3813 6847 3813 6848 3803 6848 3804 6848 3813 6849 3804 6849 3814 6849 3814 6850 3804 6850 3805 6850 3814 6851 3805 6851 3815 6851 3380 6852 3816 6852 3381 6852 3381 6853 3816 6853 3817 6853 3381 6854 3817 6854 3382 6854 3382 6855 3817 6855 3791 6855 3382 6856 3791 6856 3383 6856 3383 6857 3791 6857 3767 6857 3383 6858 3767 6858 3384 6858 3380 6859 3818 6859 3816 6859 3816 6860 3818 6860 3810 6860 3816 6861 3810 6861 3817 6861 3817 6862 3810 6862 3797 6862 3817 6863 3797 6863 3791 6863 3791 6864 3797 6864 3796 6864 3791 6865 3796 6865 3775 6865 3775 6866 3796 6866 3776 6866 3818 6867 3819 6867 3810 6867 3810 6868 3819 6868 3820 6868 3810 6869 3820 6869 3809 6869 3809 6870 3820 6870 3821 6870 3809 6871 3821 6871 3808 6871 3808 6872 3821 6872 3822 6872 3808 6873 3822 6873 3823 6873 3776 6874 3796 6874 3792 6874 3792 6875 3796 6875 3798 6875 3792 6876 3798 6876 3824 6876 3824 6877 3798 6877 3808 6877 3824 6878 3808 6878 3825 6878 3825 6879 3808 6879 3823 6879 3825 6880 3823 6880 3826 6880 3768 6881 3792 6881 3793 6881 3793 6882 3792 6882 3824 6882 3793 6883 3824 6883 3827 6883 3827 6884 3824 6884 3825 6884 3827 6885 3825 6885 3781 6885 3781 6886 3825 6886 3826 6886 3781 6887 3826 6887 3779 6887 3769 6888 3793 6888 3784 6888 3784 6889 3793 6889 3827 6889 3784 6890 3827 6890 3782 6890 3782 6891 3827 6891 3781 6891 3782 6892 3781 6892 3801 6892 3801 6893 3781 6893 3780 6893 3801 6894 3780 6894 3828 6894 3828 6895 3829 6895 3801 6895 3801 6896 3829 6896 3830 6896 3801 6897 3830 6897 3800 6897 3800 6898 3830 6898 3831 6898 3800 6899 3831 6899 3799 6899 3799 6900 3831 6900 3832 6900 3799 6901 3832 6901 3772 6901 3772 6902 3832 6902 3773 6902 3829 6903 3833 6903 3830 6903 3830 6904 3833 6904 3834 6904 3830 6905 3834 6905 3831 6905 3831 6906 3834 6906 3835 6906 3831 6907 3835 6907 3832 6907 3832 6908 3835 6908 3836 6908 3832 6909 3836 6909 3773 6909 3773 6910 3836 6910 3774 6910 3833 6911 3837 6911 3834 6911 3834 6912 3837 6912 3815 6912 3834 6913 3815 6913 3835 6913 3835 6914 3815 6914 3805 6914 3835 6915 3805 6915 3836 6915 3836 6916 3805 6916 3785 6916 3836 6917 3785 6917 3774 6917 3774 6918 3785 6918 3777 6918 3837 6919 3838 6919 3815 6919 3815 6920 3838 6920 3839 6920 3815 6921 3839 6921 3814 6921 3814 6922 3839 6922 3840 6922 3814 6923 3840 6923 3813 6923 3813 6924 3840 6924 3841 6924 3813 6925 3841 6925 3812 6925 3812 6926 3841 6926 3842 6926 3812 6927 3842 6927 3811 6927 3811 6928 3842 6928 3843 6928 3811 6929 3843 6929 3844 6929 3764 6930 3794 6930 3807 6930 3807 6931 3794 6931 3802 6931 3807 6932 3802 6932 3806 6932 3806 6933 3802 6933 3811 6933 3806 6934 3811 6934 3789 6934 3789 6935 3811 6935 3844 6935 3789 6936 3844 6936 3790 6936 3742 6937 3753 6937 3790 6937 3709 6938 3705 6938 3779 6938 3700 6939 3828 6939 3705 6939 3705 6940 3828 6940 3780 6940 3705 6941 3780 6941 3779 6941 3717 6942 3716 6942 3700 6942 3716 6943 3845 6943 3700 6943 3700 6944 3845 6944 3829 6944 3700 6945 3829 6945 3828 6945 3840 6946 3839 6946 3846 6946 3846 6947 3839 6947 3838 6947 3846 6948 3838 6948 3847 6948 3847 6949 3838 6949 3837 6949 3847 6950 3837 6950 3845 6950 3845 6951 3837 6951 3833 6951 3845 6952 3833 6952 3829 6952 3840 6953 3846 6953 3841 6953 3841 6954 3846 6954 3848 6954 3841 6955 3848 6955 3842 6955 3842 6956 3848 6956 3849 6956 3842 6957 3849 6957 3843 6957 3850 6958 3742 6958 3851 6958 3851 6959 3742 6959 3790 6959 3851 6960 3790 6960 3849 6960 3849 6961 3790 6961 3844 6961 3849 6962 3844 6962 3843 6962 3700 6963 3701 6963 3717 6963 3717 6964 3701 6964 3702 6964 3717 6965 3702 6965 3720 6965 3720 6966 3702 6966 3703 6966 3720 6967 3703 6967 3721 6967 3721 6968 3703 6968 3704 6968 3721 6969 3704 6969 3715 6969 3715 6970 3704 6970 3706 6970 3715 6971 3706 6971 3712 6971 3712 6972 3706 6972 3707 6972 3712 6973 3707 6973 3711 6973 3779 6974 3826 6974 3709 6974 3709 6975 3826 6975 3823 6975 3709 6976 3823 6976 3708 6976 3708 6977 3823 6977 3822 6977 3822 6978 3821 6978 3708 6978 3708 6979 3821 6979 3820 6979 3708 6980 3820 6980 3710 6980 3710 6981 3820 6981 3819 6981 3819 6982 3818 6982 3710 6982 3710 6983 3818 6983 3380 6983 3710 6984 3380 6984 3389 6984 3852 6985 3853 6985 3748 6985 3847 6986 3845 6986 3852 6986 3748 6987 3743 6987 3852 6987 3852 6988 3743 6988 3850 6988 3852 6989 3850 6989 3851 6989 3846 6990 3847 6990 3848 6990 3848 6991 3847 6991 3852 6991 3848 6992 3852 6992 3849 6992 3849 6993 3852 6993 3851 6993 3716 6994 3713 6994 3845 6994 3845 6995 3713 6995 3852 6995

+
+
+
+
+ + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + 0.6859207 -0.3240135 0.6515582 7.358891 0.7276763 0.3054208 -0.6141704 -6.925791 0 0.8953956 0.4452714 4.958309 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 + + + + + + + +
diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/sensor/astra.jpg b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/sensor/astra.jpg new file mode 100644 index 0000000..670c5b8 Binary files /dev/null and b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/sensor/astra.jpg differ diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/sensor/d435i.dae b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/sensor/d435i.dae new file mode 100644 index 0000000..a106615 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/sensor/d435i.dae @@ -0,0 +1,304 @@ + + + + + Blender User + Blender 2.90.1 commit date:2020-09-23, commit time:06:43, hash:3e85bb34d0d7 + + 2020-11-26T09:13:31 + 2020-11-26T09:13:31 + + Z_UP + + + + + + + 39.59775 + 1.777778 + 0.1 + 100 + + + + + + 0 + 0 + 10 + + + + + + + + + 1000 1000 1000 + 1 + 0 + 0.00111109 + + + + + 0 + 0 + 1 + 1 + 1 + 1 + 1 + 0 + 0 + 0 + 1000 + 29.99998 + 75 + 0.15 + 0 + 1 + 2 + 0.04999995 + 30.002 + 1 + 3 + 2880 + 3 + 1 + 1 + 0.1 + 0.1 + 1 + + + + + + + + + + + 0 0 0 1 + + + 0.1237102 0.1237102 0.1237102 1 + + + 0.1237102 0.1237102 0.1237102 1 + + + 0.2 0.2 0.2 1 + + + 1.45 + + + + + + + + + + + 0 0 0 1 + + + 0.1 0.1 0.1 1 + + + 0.1 0.1 0.1 1 + + + 0.1 0.1 0.1 1 + + + 1.45 + + + + + + + + + + + 0 0 0 1 + + + 0.6038158 0.6038158 0.6038158 1 + + + 0.6038158 0.6038158 0.6038158 1 + + + 0.6038158 0.6038158 0.6038158 1 + + + 1.45 + + + + + + + + + + + + + + + + + + + + + + + 0.01409494 0.01749998 0.01774996 0.012995 0.01549088 0.01735031 0.01409494 0.01549088 0.01735031 0.012995 0.01378768 0.01621228 0.01409494 0.01378768 0.01621228 0.012995 0.01264959 0.01450908 0.01409494 0.03117018 0.01600629 0.012995 0.02969306 0.01498669 0.01409494 0.02969306 0.01498669 0.012995 0.02885895 0.01339739 0.01409494 0.02885895 0.01339739 0.012995 0.02885895 0.01160252 0.01409494 0.02885895 0.01160252 0.012995 0.02969306 0.01001328 0.01409494 0.02969306 0.01001328 0.012995 0.03117018 0.008993685 0.01409494 0.03117018 0.008993685 0.01264494 -0.03519999 0.007823407 0.012115 -0.03441482 0.007450878 0.01264494 -0.03441482 0.007450878 0.01264494 -0.02875924 0.00860548 0.012115 -0.02818298 0.009255945 0.01264494 -0.02818298 0.009255945 0.01264494 0.03358501 0.01624602 0.012115 0.03297007 0.01637154 0.01264494 0.03297007 0.01637154 0.012115 0.03234291 0.01639682 0.012115 0.03171986 0.01632118 0.01264494 0.03171986 0.01632118 0.012115 0.03111702 0.01614654 0.012115 0.03003346 0.01552093 0.01264494 0.03003346 0.01552093 0.012115 0.02958077 0.01508617 0.01264494 0.02958077 0.01508617 0.012115 0.02920371 0.01458436 0.01264494 0.02920371 0.01458436 0.012115 0.02891206 0.01402866 0.01264494 0.02891206 0.01402866 0.012115 0.02871328 0.01343327 0.01264494 0.02871328 0.01343327 0.012115 0.02861261 0.0128138 0.01264494 0.02861261 0.0128138 0.012115 0.02861261 0.01218616 0.01264494 0.02861261 0.01218616 0.012115 0.02871328 0.01156663 0.01264494 0.02871328 0.01156663 0.012115 0.02891206 0.0109713 0.01264494 0.02891206 0.0109713 0.012115 0.02920371 0.01041555 0.01264494 0.02920371 0.01041555 0.012115 0.02958077 0.009913802 0.01264494 0.02958077 0.009913802 0.012115 0.03003346 0.009478986 0.01264494 0.03003346 0.009478986 0.012115 0.03055 0.00912249 0.01264494 0.03055 0.00912249 0.012115 0.03111702 0.008853435 0.01264494 0.03111702 0.008853435 0.012115 0.03171986 0.008678793 0.01264494 0.03171986 0.008678793 0.012115 0.03234291 0.008603155 0.01264494 0.03234291 0.008603155 0.012115 0.02181696 0.01574397 0.01264494 0.02181696 0.01574397 0.012115 0.02124071 0.01639449 0.012115 0.01408475 0.01668286 0.01264494 0.01408475 0.01668286 0.012115 0.01345801 0.01608085 0.01264494 0.01345801 0.01608085 0.012115 0.01293593 0.0153861 0.01264494 0.01293593 0.0153861 0.012115 0.01253211 0.0146166 0.01264494 0.01253211 0.0146166 0.012115 0.01225686 0.01379227 0.01264494 0.01225686 0.01379227 0.01264494 0.0121175 0.01206547 0.01264494 0.01225686 0.01120769 0.01264494 0.01253211 0.01038336 0.01264494 0.01345801 0.008919119 0.01264494 0.01408475 0.008317112 0.01269495 0.01293593 0.0153861 0.01269495 0.01253211 0.0146166 0.01269495 0.01225686 0.01379227 0.01269495 0.0121175 0.0129345 0.01269495 0.0121175 0.01206547 0.01269495 0.01225686 0.01120769 0.01269495 0.01253211 0.01038336 0.01269495 0.01293593 0.009613871 0.01269495 0.01345801 0.008919119 0.01269495 0.01408475 0.008317112 0.01269495 0.02891206 0.01402866 0.01269495 0.02871328 0.01343327 0.01269495 0.02861261 0.0128138 0.01269495 0.02861261 0.01218616 0.01269495 0.02871328 0.01156663 0.01269495 0.02891206 0.0109713 0.01269495 0.02920371 0.01041555 0.01269495 0.02958077 0.009913802 0.01269495 0.03003346 0.009478986 0.01269495 0.03055 0.00912249 0.01269495 0.03111702 0.008853435 0.01269495 0.03171986 0.008678793 0.01294499 0.02871328 0.01343327 0.01294499 0.02861261 0.01218616 0.01294499 0.02871328 0.01156663 0.01294499 0.02920371 0.01041555 0.01294499 0.02958077 0.009913802 0.01294499 0.03055 0.00912249 0.01294499 0.03111702 0.008853435 0.01294499 0.01253211 0.0146166 0.01294499 0.0121175 0.0129345 0.01294499 0.01225686 0.01120769 0.01294499 0.01253211 0.01038336 0.01294499 0.01293593 0.009613871 0.01294499 0.01345801 0.008919119 0.012995 -0.02619999 0.006799995 0.012995 0.01089996 0.006799995 0.012995 0.03601378 0.0141921 0.012995 0.03639996 0.01249998 0.012995 0.04033499 0.01249998 0.012995 -0.02619999 0.01819998 0.012995 -0.02529996 0.01749998 0.012995 -0.02529996 0.007499992 0.012995 0.0160222 0.007306098 0.012995 0.01424574 0.008190691 0.01128 0.02434998 0.007599949 0.01058727 0.02434998 0.01741474 0.004879951 0.02434998 0.01549994 0.01052141 0.02434998 0.007541418 0.01058524 0.02434998 0.007584989 0.01065939 0.02434998 0.007599949 0.004279971 0.02434998 0.009499967 0.004879951 0.02434998 0.009499967 0.01066279 0.02434998 0.007599949 0.01069611 -0.009442448 0.01508003 0.01069611 -0.009936213 0.01540595 0.01069611 -0.008199989 0.01249998 0.01069611 -0.008252978 0.01308923 0.01069611 -0.008410394 0.01365953 0.01069611 -0.008667111 0.01419252 0.01069611 -0.008252978 0.01191073 0.01069611 -0.008667111 0.01080739 0.01069611 -0.008410394 0.01134043 0.01069611 -0.009014844 0.01467114 0.01069611 -0.01478672 0.01220417 0.01113718 -0.008252978 0.01308923 0.01113718 -0.008388459 0.01359933 0.01113718 -0.008410394 0.01365953 0.01113718 -0.00861901 0.01410937 0.01113718 -0.008667111 0.01419252 0.01113718 -0.008932471 0.01457309 0.01113718 -0.009014844 0.01467114 0.01113718 -0.009319722 0.01497721 0.01113718 -0.009442448 0.01508003 0.01113718 -0.009769737 0.01531004 0.01113718 -0.009936213 0.01540595 0.01113718 -0.01478672 0.0127958 0.01113718 -0.01478809 0.01277983 0.01113718 -0.01478809 0.01222014 0.01113718 -0.01478672 0.01220417 0.01113718 -0.008667111 0.01080739 0.01113718 -0.00861901 0.0108906 0.01113718 -0.008410394 0.01134043 0.01113718 -0.008388459 0.01140064 0.01113718 -0.008247435 0.01194226 0.01113718 -0.008199989 0.01249998 0.01113718 -0.008247435 0.01305764 0.01139497 -0.01518666 0.01281374 0.01139497 -0.008070051 0.01064378 0.01139497 -0.007811307 0.01123362 0.01139497 -0.01117789 0.01638662 0.01139497 -0.01182204 0.01638662 0.01139497 -0.01245737 0.01628065 0.01139497 -0.01306658 0.01607149 0.01139497 -0.01363307 0.01576495 0.01139497 -0.01414138 0.01536929 0.01139497 -0.01457762 0.01489537 0.01139497 -0.01492995 0.01435619 0.01139497 -0.01518863 0.01376628 0.01139497 -0.01534676 0.01314187 0.01139497 -0.01539999 0.01249998 0.01139497 -0.01534676 0.01185804 0.01139497 -0.01518863 0.01123362 0.01139497 -0.01492995 0.01064378 0.01139497 -0.01457762 0.01010453 0.01139497 -0.01414138 0.00963062 0.01139497 -0.01363307 0.009235024 0.01139497 -0.01306658 0.008928477 0.00919497 -0.007811307 0.01123362 0.00919497 -0.01117789 0.01638662 0.00919497 -0.01182204 0.01638662 0.00919497 -0.01245737 0.01628065 0.00919497 -0.01306658 0.01607149 0.00919497 -0.01363307 0.01576495 0.00919497 -0.01414138 0.01536929 0.00919497 -0.01457762 0.01489537 0.00919497 -0.01492995 0.01435619 0.00919497 -0.01518863 0.01376628 0.00919497 -0.01534676 0.01314187 0.00919497 -0.01539999 0.01249998 0.00919497 -0.01534676 0.01185804 0.00919497 -0.01518863 0.01123362 0.00919497 -0.01492995 0.01064378 0.00919497 -0.01457762 0.01010453 0.00919497 -0.01414138 0.00963062 0.00919497 -0.01363307 0.009235024 0.00919497 -0.01306658 0.008928477 0.01270592 0.01995992 0.01477408 0.01273125 0.0199303 0.01476973 0.01270592 0.01973843 0.01499247 0.01270592 0.01732879 0.01631134 0.01270592 0.01749998 0.01631522 0.01270592 0.01441335 0.01474249 0.01270592 0.01486343 0.01525759 0.01270592 0.01539814 0.01568406 0.01270592 0.0160005 0.01600819 0.01280498 0.01366549 0.01215487 0.01280498 0.01366549 0.01284509 0.01280498 0.01438528 0.01476293 0.01280498 0.01483941 0.01528275 0.01280498 0.01537901 0.01571309 0.01280498 0.01598685 0.01604014 0.01280498 0.01732724 0.01634609 0.01353043 0.01732724 0.01634609 0.01353043 0.01701098 0.01631879 0.01353043 0.01637262 0.01618123 0.01353043 0.01598685 0.01604014 0.01353043 0.01576668 0.01593774 0.01353043 0.01537901 0.01571309 0.01353043 0.01521062 0.01559537 0.01353043 0.01483941 0.01528275 0.01353043 0.01472043 0.01516395 0.01353043 0.01438528 0.01476293 0.01353043 0.01366549 0.01284509 0.01353043 0.01366382 0.0128265 0.01353043 0.01366382 0.01217347 0.01353043 0.01366549 0.01215487 0.01391994 0.01989531 0.008690476 0.01391994 0.01996123 0.008732736 0.01391994 0.02054774 0.009189188 0.01391994 0.0210511 0.009736001 0.01391994 0.02130949 0.01010465 0.01394999 0.01930761 0.008378982 0.01394999 0.01860463 0.008137643 0.01394999 0.01787155 0.008015334 0.01394999 0.01712834 0.008015334 0.01394999 0.0210511 0.01526391 0.01394999 0.02054774 0.01581072 0.01394999 0.01996123 0.01626724 0.01394999 0.01930761 0.01662093 0.01052498 0.01930761 0.008378982 0.01052498 0.01996123 0.008732736 0.01052498 0.02054774 0.009189188 0.01052498 0.0210511 0.009736001 0.01052498 0.02145761 0.01035821 0.01052498 0.0210511 0.01526391 0.01052498 0.02054774 0.01581072 0.01052498 0.01996123 0.01626724 0.01052498 0.01930761 0.01662093 0.01052498 0.01712834 0.008015334 0.01052498 0.01787155 0.008015334 0.01052498 0.01860463 0.008137643 0.01391994 -0.03023171 0.008817493 0.01391994 -0.03010463 0.008690476 0.01391994 -0.02985829 0.009075522 0.01391994 -0.03003871 0.008732736 0.01391994 -0.02894884 0.009736001 0.01391994 -0.02869045 0.01010465 0.013929 -0.03023171 0.008817493 0.01394999 -0.03010463 0.008690476 0.01394999 -0.03069233 0.008378982 0.01394999 -0.03139531 0.008137643 0.01394999 -0.03212839 0.008015334 0.01394999 -0.0328716 0.008015334 0.01394999 -0.03360468 0.008137643 0.01394999 -0.03430759 0.008378982 0.01394999 -0.03496122 0.008732736 0.01394999 -0.03554773 0.009189188 0.01394999 -0.03605109 0.009736001 0.01394999 -0.03645759 0.01035821 0.01394999 -0.03675615 0.01103883 0.01394999 -0.0369386 0.01175928 0.01394999 -0.037 0.01249998 0.01394999 -0.0369386 0.01324063 0.01394999 -0.03675615 0.01396113 0.01394999 -0.03645759 0.01464176 0.01394999 -0.03605109 0.01526391 0.01394999 -0.03496122 0.01626724 0.01394999 -0.03430759 0.01662093 0.01394999 -0.03360468 0.01686227 0.01394999 -0.0328716 0.01698458 0.01394999 -0.02869045 0.01010465 0.01394999 -0.02854233 0.01035821 0.01394999 -0.0294522 0.01581072 0.01394999 -0.03003871 0.01626724 0.01394999 -0.03069233 0.01662093 0.01394999 -0.03139531 0.01686227 0.01394999 -0.03212839 0.01698458 0.01052498 -0.03069233 0.008378982 0.01052498 -0.03003871 0.008732736 0.01052498 -0.02894884 0.009736001 0.01052498 -0.02854233 0.01035821 0.01052498 -0.0294522 0.01581072 0.01052498 -0.03003871 0.01626724 0.01052498 -0.03069233 0.01662093 0.01052498 -0.03139531 0.01686227 0.01052498 -0.03212839 0.01698458 0.01052498 -0.0328716 0.01698458 0.01052498 -0.03360468 0.01686227 0.01052498 -0.03430759 0.01662093 0.01052498 -0.03496122 0.01626724 0.01052498 -0.03554773 0.01581072 0.01052498 -0.03605109 0.01526391 0.01052498 -0.03645759 0.01464176 0.01052498 -0.03675615 0.01396113 0.01052498 -0.0369386 0.01324063 0.01052498 -0.037 0.01249998 0.01052498 -0.0369386 0.01175928 0.01052498 -0.03675615 0.01103883 0.01052498 -0.03645759 0.01035821 0.01052498 -0.03605109 0.009736001 0.01052498 -0.03554773 0.009189188 0.01052498 -0.03496122 0.008732736 0.01052498 -0.03430759 0.008378982 0.01052498 -0.03360468 0.008137643 0.01052498 -0.0328716 0.008015334 0.01052498 -0.03212839 0.008015334 0.01052498 -0.03139531 0.008137643 0.01187998 0.0209636 0.016106 0.01187998 0.01729863 0.01749593 0.01137995 0.01649987 0.01739895 0.01187998 0.01649987 0.01739895 0.01187998 0.01572692 0.01717507 0.01137995 0.01499998 0.01683008 0.01187998 0.01499998 0.01683008 0.01137995 0.01433777 0.01637297 0.01187998 0.01433777 0.01637297 0.01137995 0.0137574 0.01581561 0.01187998 0.0137574 0.01581561 0.01137995 0.01327401 0.0151723 0.01187998 0.01327401 0.0151723 0.01137995 0.01290005 0.01445978 0.01187998 0.01290005 0.01445978 0.01187998 0.0137574 0.00918436 0.01137995 0.01433777 0.008626937 0.01187998 0.01433777 0.008626937 0.01187998 0.01572692 0.007824897 0.01137995 0.01649987 0.007601022 0.01187998 0.01649987 0.007601022 0.01137995 -0.02749997 0.01249998 0.01137995 -0.02807271 0.01482361 0.01187998 -0.02807271 0.01482361 0.01137995 -0.02850276 0.0155037 0.01187998 -0.02775728 0.01091665 0.01137995 -0.0275647 0.01169794 0.01187998 -0.0275647 0.01169794 0.004889965 -0.02705353 0.009557723 0.004889965 0.02257543 0.009557723 0.004889965 0.0102964 0.01209998 0.004889965 0.01205354 0.008005797 0.004889965 0.0241 0.008005797 0.004889965 0.01425677 0.008005797 0.004889965 0.01425677 0.007785856 0.004889965 -0.02419996 0.01304996 0.004889965 -0.02007102 0.01375764 0.004889965 -0.0252881 0.0127536 0.004889965 -0.02705353 0.01375764 0.004889965 -0.02534997 0.01249998 0.004889965 -0.02705353 0.01209998 0.004889965 -0.02511221 0.01295292 0.004889965 -0.02487611 0.01304477 0.004889965 -0.0248 0.01304996 0.004889965 -0.02388775 0.01204705 0.004889965 -0.02007102 0.01194995 0.004889965 -0.02412384 0.0119552 0.004889965 -0.02705353 0.01194995 0.004889965 0.009423673 0.01304471 0.004889965 0.009686172 0.01301747 0.004889965 0.0102964 0.01375764 0.004889965 0.009888887 0.0128889 0.004889965 0.01002502 0.01266402 0.004889965 0.01425677 0.01639956 0.004889965 0.01425677 0.01670026 0.004889965 0.01279997 0.01655 0.004889965 0.01262259 0.01640248 0.004889965 0.0125637 0.01642727 0.004889965 0.01205354 0.01639956 0.004889965 0.01251423 0.01648461 0.004889965 0.01249998 0.01655 0.004889965 0.01278674 0.01648747 0.004889965 0.01274293 0.0164324 0.004889965 0.01268631 0.01640444 0.004889965 0.01425677 0.0162447 0.004889965 0.01425677 0.01539498 0.004889965 0.0102964 0.01639956 0.004889965 0.0102964 0.0162447 0.004889965 0.0102964 0.01539498 0.004889965 -0.02007102 0.01539498 0.004889965 -0.02705353 0.01539498 0.004889965 0.01205354 0.0162447 0.004889965 0.01205354 0.01539498 0.004889965 0.01205354 0.01375764 0.004889965 0.01205354 0.01209998 0.004889965 0.01205354 0.009557723 0.004889965 0.0241 0.009557723 0.004889965 0.0125637 0.009227275 0.004889965 0.01251423 0.009284555 0.004889965 0.01279997 0.009349942 0.004889965 0.01278674 0.009287476 0.004889965 0.01274293 0.009232401 0.004889965 0.01268631 0.009204447 0.004889965 0.01262259 0.00920248 0.004889965 -0.02007102 0.01111245 0.004889965 -0.02007102 0.01076275 0.004889965 -0.02705353 0.01111245 0.004889965 -0.02705353 0.01076275 0.004889965 -0.03249996 0.009557723 0.004889965 -0.03249996 0.009632468 0.004889965 -0.03249996 0.01076275 0.004889965 -0.03249996 0.01111245 0.004889965 -0.03249996 0.01194995 0.004889965 -0.03249996 0.01209998 0.004889965 -0.03249996 0.01375764 0.004889965 -0.03750091 0.01375764 0.004889965 -0.03750091 0.01209998 0.004889965 -0.03750091 0.01111245 0.004889965 -0.03750091 0.006707489 0.004889965 -0.03249996 0.006499946 0.004889965 -0.03750091 0.006499946 0.01128 0.02274996 0.005999982 0.004207432 0.01699322 0.005999982 0.004229962 0.0169 0.005999982 0.004229962 0.01677626 0.005999982 0.01217997 -0.02027249 0.01899999 0.01120084 -0.008451581 0.01527899 0.01070088 -0.008451581 0.01527899 0.01120084 -0.007927596 0.01456248 0.01070088 -0.007653534 0.0139901 0.01120084 -0.007653534 0.0139901 0.01120084 -0.008583128 0.0154168 0.01120084 -0.007515549 0.01356762 0.01146328 -0.007451176 0.01358485 0.01192998 0.01836824 0.01742398 0.01217997 0.01836824 0.01742398 0.01192998 0.01663172 0.01742398 0.01217997 0.01663172 0.01742398 0.01192998 0.01499998 0.01683008 0.01217997 0.01499998 0.01683008 0.01192998 0.01366972 0.01571393 0.01217997 0.01366972 0.01571393 0.01192998 0.01280152 0.0142101 0.01217997 0.01280152 0.0142101 0.01217997 0.01280152 0.01078987 0.01192998 0.01366972 0.009286046 0.01217997 0.01366972 0.009286046 0.01217997 -0.02507495 0.01297628 0.01217997 -0.0248 0.01304996 0.01217997 0.009499967 0.01304996 0.01217997 0.009774982 0.01297628 0.01192998 0.02149718 0.0155037 0.01192998 0.0209636 0.016106 0.01192998 0.0137574 0.01581561 0.01187998 0.01327401 0.0151723 0.01192998 0.01327401 0.0151723 0.01127755 0.03222286 0.01210939 0.01132172 0.03217017 0.01203507 0.01127755 0.03216457 0.01215815 0.01132172 0.03193718 0.01240974 0.01127755 0.0320211 0.01249998 0.01132172 0.03192996 0.01249998 0.01127755 0.03211468 0.01278436 0.01132172 0.03204137 0.01283848 0.01127755 0.03216457 0.01284176 0.01132601 0.03251558 0.01253783 0.01132601 0.03251165 0.01253926 0.01132673 0.03249996 0.01249998 0.01132601 0.0325194 0.01253604 0.01132601 0.03252297 0.0125339 0.01132601 0.03252637 0.01253134 0.01132601 0.03252941 0.01252847 0.01132601 0.03253215 0.01252532 0.01132601 0.03253459 0.01252186 0.01132601 0.03253835 0.01251435 0.01132601 0.0325396 0.01251035 0.01132601 0.03254091 0.0124979 0.01132601 0.0325405 0.01249366 0.01132601 0.0325396 0.01248955 0.01132601 0.03253835 0.01248556 0.01132601 0.03253459 0.01247805 0.01132601 0.03253215 0.01247465 0.01132601 0.03252941 0.01247149 0.01132601 0.03252637 0.01246857 0.01132601 0.03252297 0.01246607 0.01132601 0.0325194 0.01246386 0.01132601 0.03251558 0.01246207 0.01132601 0.03251165 0.0124607 0.01132601 0.03250753 0.01245969 0.01132601 0.03250342 0.01245915 0.01128542 0.03249996 0.01281589 0.0112915 0.03249996 0.01279097 0.0112915 0.03252428 0.01278996 0.01129812 0.03249996 0.01276165 0.01130503 0.03249996 0.01272743 0.01130503 0.03251898 0.0127266 0.01130837 0.03249996 0.01270872 0.0113157 0.03251349 0.01266086 0.01132601 0.03250342 0.01254081 0.01132559 0.03249996 0.01255184 0.01132601 0.03250753 0.01254022 0.01131933 0.03249996 0.01236778 0.0113157 0.03249996 0.01233851 0.0113157 0.03251349 0.01233905 0.01130503 0.03251898 0.01227331 0.0112915 0.03252428 0.01220995 0.01132202 0.03249996 0.0123946 0.0113241 0.03249996 0.01242095 0.01132202 0.03250879 0.01239502 0.0112701 0.03249996 0.01287305 0.01127135 0.03276485 0.0127564 0.01127135 0.03273719 0.01278221 0.01124382 0.0327506 0.01289004 0.01127135 0.03270709 0.01280498 0.01124382 0.03271979 0.01290822 0.01127135 0.03267478 0.01282459 0.01124382 0.03269255 0.01292175 0.01127135 0.03264063 0.0128408 0.01124382 0.03263062 0.01294481 0.01127135 0.03260499 0.01285338 0.01127135 0.03253078 0.01286739 0.01127135 0.0328682 0.01251888 0.01124382 0.03295886 0.01256597 0.01127135 0.03286433 0.01255649 0.01124382 0.03294485 0.01263058 0.01127135 0.03285664 0.01259344 0.01124382 0.03293406 0.01266282 0.01127135 0.03284513 0.0126295 0.01124382 0.03292173 0.01269257 0.01127135 0.03283011 0.01266413 0.01127135 0.03281152 0.0126971 0.01127135 0.0327897 0.01272797 0.01124382 0.03285038 0.01280361 0.01127135 0.0327897 0.012272 0.01124382 0.03289002 0.01224929 0.01127135 0.03281152 0.01230287 0.01127135 0.03283011 0.01233577 0.01124382 0.03293406 0.01233708 0.01127135 0.03284513 0.01237046 0.01124382 0.03294485 0.01236933 0.01127135 0.03285658 0.01240646 0.01124382 0.03295886 0.012434 0.01127135 0.03286433 0.01244348 0.01124382 0.03296297 0.0124762 0.01127135 0.0328682 0.01248109 0.01124382 0.03296363 0.01249998 0.01124382 0.03296297 0.01252371 0.01127135 0.03253078 0.01213258 0.01127135 0.03256821 0.01213765 0.01124382 0.03263056 0.01205509 0.01127135 0.03260499 0.01214653 0.01127135 0.03264063 0.01215916 0.01124382 0.03271979 0.01209175 0.01127135 0.03267478 0.01217532 0.01124382 0.0327506 0.01210993 0.01127135 0.03270709 0.01219493 0.01127135 0.03273719 0.01221776 0.01127135 0.03276485 0.0122435 0.01124382 0.03285038 0.01219636 0.01124382 0.03286433 0.01221328 0.01132202 0.03251945 0.01239645 0.01132202 0.03252995 0.01239901 0.01132202 0.03254014 0.01240259 0.01132202 0.03254991 0.01240724 0.01132202 0.03255915 0.01241284 0.01132202 0.03256773 0.01241934 0.01132202 0.03257566 0.01242673 0.01132202 0.03258275 0.01243484 0.01132202 0.03258901 0.01244366 0.01132202 0.03259432 0.01245307 0.01132202 0.03259861 0.01246297 0.01132202 0.03260189 0.01247328 0.01132202 0.03260409 0.01248383 0.01132202 0.03260517 0.01249456 0.01132202 0.03260517 0.01250535 0.01132202 0.03260409 0.01251614 0.01132202 0.03260189 0.01252669 0.01132202 0.03259861 0.012537 0.01132202 0.03259432 0.01254689 0.01132202 0.03258901 0.01255631 0.01132202 0.03258275 0.01256513 0.01132202 0.03257566 0.01257324 0.01132202 0.03256773 0.01258063 0.01132202 0.03255915 0.01258713 0.01132202 0.03254991 0.01259273 0.01132202 0.03254014 0.01259732 0.01132202 0.03252995 0.01260095 0.01132202 0.03251945 0.01260352 0.01132202 0.03250879 0.01260495 0.01132208 0.03249996 0.01260495 0.0113157 0.03252989 0.01234126 0.0113157 0.03254598 0.01234519 0.0113157 0.0325616 0.01235067 0.0113157 0.0325765 0.01235777 0.0113157 0.03259068 0.01236635 0.0113157 0.03260385 0.01237636 0.0113157 0.03261601 0.01238763 0.0113157 0.03262686 0.01240015 0.0113157 0.03263646 0.01241362 0.0113157 0.03264456 0.01242804 0.0113157 0.03265118 0.01244324 0.0113157 0.03265619 0.01245903 0.0113157 0.03265953 0.01247525 0.0113157 0.03266125 0.0124917 0.0113157 0.03266125 0.01250827 0.0113157 0.03265953 0.01252472 0.0113157 0.03265619 0.01254093 0.0113157 0.03265118 0.01255667 0.0113157 0.03264456 0.01257187 0.0113157 0.03263646 0.01258629 0.0113157 0.03262686 0.01259982 0.0113157 0.03261601 0.01261228 0.0113157 0.03260385 0.0126236 0.0113157 0.03259068 0.01263356 0.0113157 0.03257656 0.01264214 0.0113157 0.0325616 0.01264923 0.0113157 0.03254598 0.01265478 0.0113157 0.03252989 0.01265865 0.01130503 0.0325421 0.01227647 0.01130503 0.03256475 0.01228195 0.01130503 0.03258675 0.0122897 0.01130503 0.03260779 0.01229971 0.01130503 0.03262776 0.01231181 0.01130503 0.03264635 0.01232588 0.01130503 0.0326634 0.01234179 0.01130503 0.03267872 0.01235932 0.01130503 0.03269219 0.01237839 0.01130503 0.03270363 0.01239871 0.01130503 0.03271293 0.01242005 0.01130503 0.03271996 0.01244229 0.01130503 0.03272473 0.01246511 0.01130503 0.03272712 0.0124883 0.01130503 0.03272712 0.01251161 0.01130503 0.03272473 0.01253479 0.01130503 0.03271996 0.01255762 0.01130503 0.03271293 0.01257985 0.01130503 0.03270363 0.01260125 0.01130503 0.03269219 0.01262158 0.01130503 0.03267872 0.01264059 0.01130503 0.0326634 0.01265817 0.01130503 0.03264635 0.01267409 0.01130503 0.03262776 0.01268815 0.01130503 0.03260779 0.01270025 0.01130503 0.03258675 0.01271021 0.01130503 0.03256475 0.01271802 0.01130503 0.0325421 0.0127235 0.0112915 0.03255385 0.012214 0.0112915 0.03258287 0.01222103 0.0112915 0.03261101 0.01223093 0.0112915 0.03263795 0.01224374 0.0112915 0.03266346 0.01225918 0.0112915 0.03268724 0.01227718 0.0112915 0.03270906 0.01229757 0.0112915 0.03272867 0.01232004 0.0112915 0.03274589 0.01234436 0.0112915 0.03276056 0.0123704 0.0112915 0.03277242 0.01239776 0.0112915 0.03278148 0.01242619 0.0112915 0.03278756 0.0124554 0.0112915 0.0327906 0.01248502 0.0112915 0.0327906 0.01251488 0.0112915 0.03278756 0.01254457 0.0112915 0.03278148 0.01257377 0.0112915 0.03277242 0.01260221 0.0112915 0.03276056 0.01262956 0.0112915 0.03274589 0.01265555 0.0112915 0.03272867 0.01267993 0.0112915 0.03270906 0.0127024 0.0112915 0.03268724 0.01272273 0.0112915 0.03266346 0.01274073 0.0112915 0.03263795 0.01275622 0.0112915 0.03261101 0.01276898 0.0112915 0.03258287 0.01277893 0.0112915 0.03255385 0.01278597 0.01134175 0.03286451 0.01034218 0.01104176 0.03276783 0.01042217 0.01134175 0.03273534 0.01044106 0.01134175 0.03213542 0.01034218 0.01104176 0.0322321 0.01042217 0.01134175 0.03226459 0.01044106 0.01104176 0.03226459 0.01044106 0.01134175 0.03241866 0.01049333 0.01104176 0.03241866 0.01049333 0.01134175 0.03258132 0.01049333 0.01104176 0.03258132 0.01049333 0.01104176 0.03273534 0.01044106 0.01134175 0.0320025 0.01004999 0.01104176 0.0320025 0.01004999 0.01134175 0.03204488 0.01020705 0.01104176 0.03204488 0.01020705 0.01104176 0.03213542 0.01034218 0.01104176 0.03004997 0.01200246 0.01134175 0.03004997 0.01200246 0.01104176 0.03020703 0.0120449 0.01134175 0.03020703 0.0120449 0.01104176 0.03034216 0.01213544 0.01134175 0.03034216 0.01213544 0.01134175 0.03034216 0.01286453 0.01104176 0.03042221 0.01276779 0.01134175 0.03004997 0.01299744 0.01104176 0.03004997 0.01299744 0.01134175 0.03020703 0.01295506 0.01104176 0.03020703 0.01295506 0.01104176 0.03034216 0.01286453 0.01104176 0.03494995 0.01299744 0.01134175 0.03494995 0.01299744 0.01104176 0.03477972 0.01294887 0.01134175 0.03477972 0.01294887 0.01104176 0.03463715 0.01284402 0.01134175 0.03463715 0.01284402 0.01104176 0.03457778 0.01276779 0.01134175 0.03453999 0.01269602 0.01134175 0.03460651 0.01219153 0.01104176 0.03457778 0.01223218 0.01134175 0.03452366 0.01234799 0.01104176 0.03452366 0.01234799 0.01134175 0.03450053 0.01252347 0.01104176 0.03450053 0.01252347 0.01104176 0.03453999 0.01269602 0.01132172 0.03191 0.01249998 0.01134175 0.03191 0.01249998 0.01132172 0.03193885 0.01231765 0.01134175 0.03193885 0.01231765 0.01132172 0.03202265 0.0121532 0.01134175 0.03202265 0.0121532 0.01132172 0.03215318 0.01202267 0.01134175 0.03215318 0.01202267 0.01132172 0.03231763 0.01193886 0.01134175 0.03284674 0.01202267 0.01132172 0.03297728 0.0121532 0.01134175 0.03297728 0.0121532 0.01132172 0.03297728 0.01284676 0.01134175 0.03297728 0.01284676 0.01132172 0.03284674 0.0129773 0.01134175 0.03284674 0.0129773 0.01132172 0.03268229 0.0130611 0.01134175 0.03249996 0.01308995 0.01132172 0.03231763 0.0130611 0.01134175 0.03231763 0.0130611 0.01011675 0.03112679 0.009648561 0.01139044 0.03036737 0.01013153 0.01139044 0.03051286 0.01000821 0.01011675 0.03052669 0.01002562 0.01139044 0.03090643 0.009739875 0.01139044 0.03018039 0.01031434 0.01011675 0.0300256 0.01052671 0.0113905 0.03000819 0.01051288 0.0113905 0.0295884 0.01120364 0.0113905 0.02962851 0.01111716 0.01011675 0.02964854 0.01112681 0.0113905 0.02976357 0.01086604 0.0113905 0.02992159 0.01062667 0.0113905 0.02947652 0.01149189 0.01011675 0.02941447 0.01179575 0.0113905 0.02939277 0.01179081 0.01011675 0.02933514 0.01249998 0.0113905 0.02933043 0.01216602 0.0113905 0.02938252 0.01183736 0.0113905 0.02939277 0.01320916 0.0113905 0.02938252 0.01316261 0.01011675 0.02941447 0.01320421 0.0113905 0.02933037 0.01283347 0.0113905 0.0293129 0.01249998 0.0113905 0.02947676 0.01350873 0.01011675 0.02964854 0.01387315 0.0113905 0.0295884 0.01379626 0.0113905 0.03000819 0.01448708 0.0113905 0.02992153 0.0143733 0.01011675 0.0300256 0.01447325 0.0113905 0.02976346 0.01413369 0.0113905 0.02962851 0.01388281 0.0113905 0.03017997 0.01468521 0.0113905 0.03036737 0.01486843 0.01011675 0.03112679 0.01535141 0.0113905 0.03090643 0.0152601 0.0113905 0.03051286 0.01499176 0.01011675 0.03179574 0.01558548 0.0113905 0.03151512 0.01553112 0.0113905 0.03111714 0.01537144 0.01011675 0.03249996 0.01566487 0.0113905 0.03216683 0.01566964 0.0113905 0.03179079 0.01560717 0.0113905 0.03283309 0.01566964 0.0113905 0.03249996 0.0156871 0.01212996 0.03290128 0.01631796 0.01212996 0.03209871 0.01631796 0.01212996 0.03131365 0.01615107 0.01212996 0.03058046 0.01582467 0.01212996 0.02993118 0.0153529 0.01212996 0.02939414 0.0147565 0.01212996 0.02899289 0.01406145 0.01212996 0.02874487 0.01329815 0.01212996 0.02866095 0.01249998 0.01212996 0.02874487 0.01170182 0.01212996 0.02899289 0.01093852 0.01212996 0.02939414 0.01024347 0.01212996 0.02993118 0.009647011 0.01212996 0.03058046 0.0091753 0.01212996 0.03131365 0.008848845 0.01212996 0.02763366 0.01380461 0.01212996 0.02778273 0.01351445 0.01212996 0.0274018 0.010966 0.01212996 0.02763366 0.01119536 0.01212996 0.02778273 0.01148545 0.01212996 0.03033363 0.01765596 0.01212996 0.02783411 0.01319241 0.01212996 0.02783411 0.01180756 0.01212996 0.03829997 0.01765596 0.01212996 0.03228157 0.00743395 -0.002637386 -0.008099973 0.002139449 8.62532e-4 -0.008099973 0.002078354 -0.002637386 -0.008099973 0.02286052 8.62531e-4 0.01409995 0.002078354 -0.002637386 0.01409995 0.002139449 8.62532e-4 0.01409995 0.02292162 8.62531e-4 0.01109999 0.002078354 -0.002637386 0.01109999 0.002139449 8.62532e-4 0.01109999 0.02292162 -0.002637386 0.01109999 0.02286052 -0.002637386 0.01289999 0.002139449 8.62532e-4 0.01289999 0.002078354 -0.002637386 0.01289999 0.02286052 8.62532e-4 0.01289999 0.02292162 -0.002637386 0.006899952 0.002139449 8.62532e-4 0.006899952 0.002078354 -0.002637386 0.006899952 0.02286052 8.62532e-4 0.006899952 0.02292162 -0.002219974 -0.03877496 0.01621747 -0.002219974 -0.03831744 0.01667499 -0.002219974 -0.03579998 5.31902e-4 -0.002219974 -0.03814995 0.01729995 -0.002219974 -0.03579998 0.02446806 -0.002219974 -0.03814995 0.007699966 -0.003665447 0.03249996 0.02399998 -0.003665447 -0.03309994 0.00159794 -0.003665447 0.03547638 0.02360814 -0.003665447 -0.03457224 0.018036 -0.003665447 -0.03469997 0.01716995 -0.003665447 -0.03419995 0.001714646 -0.003665447 -0.03419995 0.006171643 -0.003665447 0.04360812 0.0154764 -0.003665447 0.04245924 0.01824998 -0.003665447 0.04063171 0.02063173 -0.003665447 0.04399996 0.01249998 -0.01014995 -0.03579998 0.006326615 -0.01014995 -0.03579998 0.0186733 -0.00446999 -0.03579998 0.01567 -0.005119979 -0.03579998 0.008204162 -0.005769968 -0.03579998 0.008029997 -0.006329953 -0.03579998 0.008029997 -0.006979942 -0.03579998 0.008204162 -0.00762999 -0.03579998 0.01567 -0.007455825 -0.03579998 0.01631999 -0.006979942 -0.03579998 0.01679581 -0.006329953 -0.03579998 0.01696997 -0.005769968 -0.03579998 0.01696997 -0.005119979 -0.03579998 0.01679581 -0.004644155 -0.03579998 0.01631999 -0.005249977 -0.03579998 0.01999998 -0.005649983 -0.03579998 0.01930713 -0.00604999 -0.03579998 0.01919996 -0.006449997 -0.03579998 0.01930713 -0.006742775 -0.03579998 0.01959997 -0.006742775 -0.03579998 0.005399942 -0.006449997 -0.03579998 0.00569278 -0.00604999 -0.03579998 0.005799949 -0.005649983 -0.03579998 0.00569278 -0.005357146 -0.03579998 0.005399942 -0.002219974 -0.03874999 0.007324695 -0.002219974 -0.03886759 0.007170915 -0.001379966 -0.03874999 0.008075237 -0.002219974 -0.03864943 0.007699966 -0.002119779 -0.03874999 0.007722496 -0.002219974 -0.0386756 0.007503449 -0.002124071 -0.03874999 0.007621824 -0.002119421 -0.03874999 0.007699906 -0.002176284 -0.03874999 0.007422208 -0.002142906 -0.03874999 0.007523596 -0.001379966 -0.03874999 0.007324695 -0.001379966 -0.03939998 0.006949424 -0.002219974 -0.03740644 0.007539033 -0.002219974 -0.03745812 0.007221341 -0.002219974 -0.03756004 0.006916046 -0.002219974 -0.03770959 0.006631016 -0.002219974 -0.0386756 0.01749652 -0.002219974 -0.03864943 0.01729995 -0.002219974 -0.03740644 0.01746088 -0.002219974 -0.03740644 0.01713901 -0.002219974 -0.03745812 0.01777863 0.01409494 0.03905707 0.01726394 0.01409494 0.03582042 0.0142427 0.01409494 0.03463023 0.01558613 0.007766962 0.03539466 0.02182775 -0.003669977 0.03042769 0.02182775 -0.003669977 0.03539466 0.02182775 0.01409494 0.03500455 0.004791676 0.012995 0.02274996 0.01249998 0.01409494 0.02274996 0.01249998 0.012995 0.02235037 0.01049089 0.01409494 0.02235037 0.01049089 0.012995 0.03624999 0.01249998 0.01409494 0.03624999 0.01249998 0.012995 0.03582042 0.0142427 0.01409494 0.03582042 0.0142427 0.012995 0.03463023 0.01558613 0.01409494 0.03463023 0.01558613 0.01409494 0.03295201 0.00877732 0.01409494 0.03463023 0.009413778 0.012995 -0.008416533 0.00575 0.012995 -0.0145834 0.00575 0.01409494 -0.008416533 0.00575 0.01409494 -0.0145834 0.00575 0.012995 -0.006107926 0.00615704 0.01409494 -0.006107926 0.00615704 0.012995 -0.004077732 0.007329165 0.01409494 -0.004077732 0.007329165 0.012995 -0.002570867 0.009124994 0.01409494 -0.002570867 0.009124994 0.012995 -0.001769125 0.01132786 0.01409494 -0.001769125 0.01132786 0.012995 -0.001769125 0.01367211 0.01409494 -0.001769125 0.01367211 0.012995 -0.002570867 0.01587498 0.01409494 -0.002570867 0.01587498 0.012995 -0.004077732 0.01767075 0.01409494 -0.004077732 0.01767075 0.012995 -0.006107926 0.01884287 0.01409494 -0.006107926 0.01884287 0.012995 -0.008416533 0.01924997 0.01409494 -0.008416533 0.01924997 0.012995 -0.0145834 0.01924997 0.01409494 -0.0145834 0.01924997 0.012995 -0.01689201 0.01884287 0.01409494 -0.01689201 0.01884287 0.012995 -0.0189222 0.01767075 0.01409494 -0.0189222 0.01767075 0.012995 -0.02042907 0.01587498 0.01409494 -0.02042907 0.01587498 0.012995 -0.02123087 0.01367211 0.01409494 -0.02123087 0.01367211 0.012995 -0.02123087 0.01132786 0.01409494 -0.02123087 0.01132786 0.012995 -0.02042907 0.009124994 0.01409494 -0.02042907 0.009124994 0.012995 -0.0189222 0.007329165 0.01409494 -0.0189222 0.007329165 0.012995 -0.01689201 0.00615704 0.01409494 -0.01689201 0.00615704 0.01409494 -0.03006774 0.01738458 0.01422494 -0.03006774 0.01738458 0.01409494 -0.03199648 0.01793336 0.01422494 -0.03199648 0.01793336 0.01409494 -0.03399324 0.01774835 0.01409494 0.0160067 0.00725162 0.01422494 0.0160067 0.00725162 0.01409494 0.01800346 0.007066547 0.01422494 0.01800346 0.007066547 0.01409494 0.03635025 0.01249998 0.01422494 0.03635025 0.01249998 0.01409494 0.03596895 0.01417052 0.01422494 0.03596895 0.01417052 0.01409494 0.03490054 0.0155102 0.01422494 0.03490054 0.0155102 0.01409494 0.03164321 0.008746266 0.01422494 0.03164321 0.008746266 0.01409494 0.03335672 0.008746266 0.01422494 0.03335672 0.008746266 0.01409494 0.03490054 0.009489715 0.01422494 0.03490054 0.009489715 0.01409494 0.03596895 0.01082938 0.01422494 0.03596895 0.01082938 0.01422494 -0.01673263 0.005885362 0.01422494 -0.004328489 0.01812666 0.01422494 -0.002789855 0.01658803 0.01422494 -0.001801967 0.01035076 0.01422494 -0.001461565 0.01249998 0.01422494 -0.001801967 0.01464921 0.01422494 -0.002789855 0.008411943 0.01422494 -0.004328489 0.00687325 0.01422494 -0.006267309 0.01911455 0.01422494 -0.02021008 0.008411943 0.01422494 -0.01867145 0.00687325 0.01422494 -0.006267309 0.005885362 0.01422494 -0.008416533 0.00554496 0.01422494 -0.008416533 0.01945495 0.01422494 -0.02119797 0.01035076 0.01422494 -0.01867145 0.01812666 0.01422494 -0.01673263 0.01911455 0.01422494 -0.0145834 0.01945495 0.01409494 -0.008416533 0.00554496 0.01409494 -0.006267309 0.005885362 0.01409494 -0.004328489 0.00687325 0.01409494 -0.002789855 0.008411943 0.01409494 -0.001801967 0.01035076 0.01409494 -0.001461565 0.01249998 0.01409494 -0.001801967 0.01464921 0.01409494 -0.002789855 0.01658803 0.01409494 -0.004328489 0.01812666 0.01409494 -0.006267309 0.01911455 0.01409494 -0.008416533 0.01945495 0.01409494 -0.0145834 0.01945495 0.01409494 -0.01673263 0.01911455 0.01409494 -0.01867145 0.01812666 0.01409494 -0.02021008 0.008411943 0.01409494 -0.01867145 0.00687325 0.01409494 -0.01673263 0.005885362 0.01409494 -0.0145834 0.00554496 0.012115 -0.008416533 0.00575 0.01264494 -0.008416533 0.00575 0.012115 -0.007244408 0.00585252 0.01264494 -0.007244408 0.00585252 0.012115 -0.006107926 0.00615704 0.01264494 -0.006107926 0.00615704 0.012115 -0.005041539 0.006654322 0.01264494 -0.005041539 0.006654322 0.012115 -0.004077732 0.007329165 0.01264494 -0.004077732 0.007329165 0.012115 -0.00324577 0.008161127 0.01264494 -0.00324577 0.008161127 0.012115 -0.002570867 0.009124994 0.01264494 -0.002570867 0.009124994 0.012115 -0.002073645 0.01019132 0.01264494 -0.002073645 0.01019132 0.012115 -0.001769125 0.01132786 0.01264494 -0.001769125 0.01132786 0.012115 -0.001666545 0.01249998 0.01264494 -0.001666545 0.01249998 0.012115 -0.001769125 0.01367211 0.01264494 -0.001769125 0.01367211 0.012115 -0.002073645 0.01480859 0.01264494 -0.002073645 0.01480859 0.012115 -0.002570867 0.01587498 0.01264494 -0.002570867 0.01587498 0.012115 -0.00324577 0.01683878 0.01264494 -0.00324577 0.01683878 0.012115 -0.004077732 0.01767075 0.01264494 -0.004077732 0.01767075 0.012115 -0.005041539 0.01834565 0.01264494 -0.005041539 0.01834565 0.012115 -0.006107926 0.01884287 0.01264494 -0.006107926 0.01884287 0.012115 -0.007244408 0.01914745 0.01264494 -0.007244408 0.01914745 0.012115 -0.008416533 0.01924997 0.01264494 -0.008416533 0.01924997 0.01264494 -0.0145834 0.01924997 0.012115 -0.0145834 0.01924997 0.012115 -0.01575553 0.01914745 0.01264494 -0.01575553 0.01914745 0.012115 -0.01689201 0.01884287 0.01264494 -0.01689201 0.01884287 0.012115 -0.0179584 0.01834565 0.01264494 -0.0179584 0.01834565 0.012115 -0.0189222 0.01767075 0.01264494 -0.0189222 0.01767075 0.012115 -0.01975417 0.01683878 0.01264494 -0.01975417 0.01683878 0.012115 -0.02042907 0.01587498 0.01264494 -0.02042907 0.01587498 0.012115 -0.02092629 0.01480859 0.01264494 -0.02092629 0.01480859 0.012115 -0.02123087 0.01367211 0.01264494 -0.02123087 0.01367211 0.012115 -0.02133339 0.01249998 0.01264494 -0.02133339 0.01249998 0.012115 -0.02123087 0.01132786 0.01264494 -0.02123087 0.01132786 0.012115 -0.02092629 0.01019132 0.01264494 -0.02092629 0.01019132 0.012115 -0.02042907 0.009124994 0.01264494 -0.02042907 0.009124994 0.012115 -0.01975417 0.008161127 0.01264494 -0.01975417 0.008161127 0.012115 -0.0189222 0.007329165 0.01264494 -0.0189222 0.007329165 0.012115 -0.0179584 0.006654322 0.01264494 -0.0179584 0.006654322 0.012115 -0.01689201 0.00615704 0.01264494 -0.01689201 0.00615704 0.012115 -0.01575553 0.00585252 0.01264494 -0.01575553 0.00585252 0.012115 -0.0145834 0.00575 0.01264494 -0.0145834 0.00575 0.012115 -0.02709996 0.01249998 0.01264494 -0.02709996 0.01249998 0.012115 -0.02716988 0.01336622 0.01264494 -0.02716988 0.01336622 0.012115 -0.0273779 0.01420998 0.01264494 -0.0273779 0.01420998 0.012115 -0.02771848 0.01500946 0.01264494 -0.02771848 0.01500946 0.012115 -0.02818298 0.01574397 0.01264494 -0.02818298 0.01574397 0.012115 -0.02875924 0.01639449 0.01264494 -0.02875924 0.01639449 0.01264494 -0.02943241 0.01694411 0.012115 -0.03018504 0.01737862 0.01264494 -0.03018504 0.01737862 0.012115 -0.03099757 0.01768678 0.012115 -0.03184908 0.01786059 0.01264494 -0.03184908 0.01786059 0.012115 -0.0327174 0.01789557 0.01264494 -0.0327174 0.01789557 0.012115 -0.03519999 0.0171765 0.01264494 -0.03519999 0.0171765 0.012115 -0.03591519 0.01668286 0.01264494 -0.03591519 0.01668286 0.012115 -0.03654193 0.01608085 0.01264494 -0.03654193 0.01608085 0.012115 -0.03706401 0.0153861 0.01264494 -0.03706401 0.0153861 0.012115 -0.03746783 0.0146166 0.01264494 -0.03746783 0.0146166 0.012115 -0.03774303 0.01379227 0.01264494 -0.03774303 0.01379227 0.012115 -0.03788244 0.0129345 0.01264494 -0.03788244 0.0129345 0.012115 -0.03788244 0.01206547 0.01264494 -0.03788244 0.01206547 0.012115 -0.03774303 0.01120769 0.01264494 -0.03774303 0.01120769 0.012115 -0.03746783 0.01038336 0.01264494 -0.03746783 0.01038336 0.012115 -0.03706401 0.009613871 0.01264494 -0.03706401 0.009613871 0.012115 -0.03591519 0.008317112 0.01264494 -0.03591519 0.008317112 0.012115 -0.03519999 0.007823407 0.01264494 -0.03519999 0.007823407 0.012115 -0.03441482 0.007450878 0.012115 -0.03358012 0.007209122 0.01264494 -0.03358012 0.007209122 0.012115 -0.0327174 0.007104337 0.01264494 -0.0327174 0.007104337 0.012115 -0.03184908 0.007139325 0.01264494 -0.03184908 0.007139325 0.012115 -0.03099757 0.007313191 0.01264494 -0.03099757 0.007313191 0.012115 -0.02771848 0.009990453 0.01264494 -0.02771848 0.009990453 0.012115 -0.0273779 0.01078999 0.01264494 -0.0273779 0.01078999 0.012115 -0.02716988 0.01163375 0.01264494 -0.02716988 0.01163375 0.012115 0.03639996 0.01249998 0.01264494 0.03639996 0.01249998 0.012115 0.03634947 0.01312559 0.01264494 0.03634947 0.01312559 0.012115 0.03619927 0.01373499 0.01264494 0.03619927 0.01373499 0.012115 0.03595328 0.01431238 0.01264494 0.03595328 0.01431238 0.012115 0.03561782 0.01484286 0.01264494 0.03561782 0.01484286 0.012115 0.0352016 0.01531267 0.01264494 0.0352016 0.01531267 0.012115 0.03471541 0.01570963 0.01264494 0.03471541 0.01570963 0.012115 0.03417187 0.01602345 0.01264494 0.03417187 0.01602345 0.012115 0.03358501 0.01624602 0.01264494 0.03358501 0.01624602 0.012115 0.03297007 0.008628427 0.01264494 0.03297007 0.008628427 0.012115 0.03358501 0.008753955 0.01264494 0.03358501 0.008753955 0.012115 0.03417187 0.008976519 0.01264494 0.03417187 0.008976519 0.012115 0.03471541 0.009290337 0.01264494 0.03471541 0.009290337 0.012115 0.0352016 0.009687304 0.01264494 0.0352016 0.009687304 0.012115 0.03561782 0.0101571 0.01264494 0.03561782 0.0101571 0.012115 0.03595328 0.01068753 0.01264494 0.03595328 0.01068753 0.012115 0.03619927 0.01126497 0.01264494 0.03619927 0.01126497 0.012115 0.03634947 0.01187437 0.01264494 0.03634947 0.01187437 0.012115 0.02289998 0.01249998 0.01264494 0.02289998 0.01249998 0.012115 0.02283006 0.01336622 0.01264494 0.02283006 0.01336622 0.012115 0.02262204 0.01420998 0.01264494 0.02262204 0.01420998 0.012115 0.02228146 0.01500946 0.012115 0.02056753 0.01694411 0.01264494 0.02056753 0.01694411 0.012115 0.0198149 0.01737862 0.01264494 0.0198149 0.01737862 0.012115 0.01900237 0.01768678 0.01264494 0.01641982 0.007209122 0.012115 0.01728254 0.007104337 0.01264494 0.01728254 0.007104337 0.012115 0.01815086 0.007139325 0.01264494 0.01815086 0.007139325 0.012115 0.01900237 0.007313191 0.01264494 0.01900237 0.007313191 0.012115 0.0198149 0.007621347 0.01264494 0.0198149 0.007621347 0.012115 0.02056753 0.008055865 0.01264494 0.02056753 0.008055865 0.012115 0.02124071 0.00860548 0.01264494 0.02124071 0.00860548 0.012115 0.02181696 0.009255945 0.01264494 0.02181696 0.009255945 0.012115 0.02228146 0.009990453 0.01264494 0.02228146 0.009990453 0.012115 0.02262204 0.01078999 0.01264494 0.02262204 0.01078999 0.012115 0.02283006 0.01163375 0.01264494 0.02283006 0.01163375 0.01269495 0.02056753 0.01694411 0.01269495 0.0198149 0.01737862 0.01269495 0.01815086 0.007139325 0.01269495 0.01900237 0.007313191 0.01269495 0.0198149 0.007621347 0.01269495 0.02124071 0.00860548 0.01269495 0.02228146 0.009990453 0.01269495 0.02262204 0.01078999 0.01269495 -0.008416533 0.00575 0.01269495 -0.007244408 0.00585252 0.01269495 -0.006107926 0.00615704 0.01269495 -0.005041539 0.006654322 0.01269495 -0.004077732 0.007329165 0.01269495 -0.00324577 0.008161127 0.01269495 -0.002570867 0.009124994 0.01269495 -0.002073645 0.01019132 0.01269495 -0.001769125 0.01132786 0.01269495 -0.002570867 0.01587498 0.01269495 -0.00324577 0.01683878 0.01269495 -0.004077732 0.01767075 0.01269495 -0.005041539 0.01834565 0.01269495 -0.006107926 0.01884287 0.01269495 -0.007244408 0.01914745 0.01269495 -0.008416533 0.01924997 0.01269495 -0.0145834 0.01924997 0.01269495 -0.01575553 0.01914745 0.01269495 -0.01689201 0.01884287 0.01269495 -0.0179584 0.01834565 0.01269495 -0.0189222 0.01767075 0.01269495 -0.01975417 0.01683878 0.01269495 -0.02042907 0.01587498 0.01269495 -0.02092629 0.01480859 0.01269495 -0.02123087 0.01367211 0.01269495 -0.02133339 0.01249998 0.01269495 -0.02123087 0.01132786 0.01269495 -0.02092629 0.01019132 0.01269495 -0.02042907 0.009124994 0.01269495 -0.01975417 0.008161127 0.01269495 -0.0189222 0.007329165 0.01269495 -0.0179584 0.006654322 0.01269495 -0.01689201 0.00615704 0.01269495 -0.01575553 0.00585252 0.01269495 -0.0145834 0.00575 0.01269495 -0.02709996 0.01249998 0.01269495 -0.02716988 0.01336622 0.01269495 -0.0273779 0.01420998 0.01269495 -0.02771848 0.01500946 0.01269495 -0.02818298 0.01574397 0.01269495 -0.02875924 0.01639449 0.01269495 -0.03018504 0.01737862 0.01269495 -0.03441482 0.01754903 0.01269495 -0.03519999 0.0171765 0.01269495 -0.03591519 0.01668286 0.01269495 -0.03654193 0.01608085 0.01269495 -0.03706401 0.0153861 0.01269495 -0.03746783 0.0146166 0.01269495 -0.03774303 0.01379227 0.01269495 -0.03788244 0.0129345 0.01269495 -0.03788244 0.01206547 0.01269495 -0.03774303 0.01120769 0.01269495 -0.03746783 0.01038336 0.01269495 -0.03706401 0.009613871 0.01269495 -0.03654193 0.008919119 0.01269495 -0.03591519 0.008317112 0.01269495 -0.03519999 0.007823407 0.01269495 -0.03184908 0.007139325 0.01269495 -0.03099757 0.007313191 0.01269495 0.03639996 0.01249998 0.01269495 0.03634947 0.01312559 0.01269495 0.03619927 0.01373499 0.01269495 0.03595328 0.01431238 0.01269495 0.0352016 0.01531267 0.01269495 0.03471541 0.01570963 0.01269495 0.03417187 0.008976519 0.01269495 0.03471541 0.009290337 0.01269495 0.0352016 0.009687304 0.01269495 0.03561782 0.0101571 0.01269495 0.03595328 0.01068753 0.01269495 0.03619927 0.01126497 0.01269495 0.03634947 0.01187437 0.01294499 -0.008416533 0.00575 0.01294499 -0.007244408 0.00585252 0.01294499 -0.006107926 0.00615704 0.01294499 -0.005041539 0.006654322 0.01294499 -0.004077732 0.007329165 0.01294499 -0.00324577 0.008161127 0.01294499 -0.002570867 0.009124994 0.01294499 -0.002073645 0.01019132 0.01294499 -0.001666545 0.01249998 0.01294499 -0.002570867 0.01587498 0.01294499 -0.004077732 0.01767075 0.01294499 -0.006107926 0.01884287 0.01294499 -0.007244408 0.01914745 0.01294499 -0.008416533 0.01924997 0.01294499 -0.0145834 0.01924997 0.01294499 -0.01575553 0.01914745 0.01294499 -0.01689201 0.01884287 0.01294499 -0.0179584 0.01834565 0.01294499 -0.0189222 0.01767075 0.01294499 -0.01975417 0.01683878 0.01294499 -0.02042907 0.01587498 0.01294499 -0.02092629 0.01480859 0.01294499 -0.02123087 0.01367211 0.01294499 -0.02133339 0.01249998 0.01294499 -0.02123087 0.01132786 0.01294499 -0.02092629 0.01019132 0.01294499 -0.02042907 0.009124994 0.01294499 -0.01975417 0.008161127 0.01294499 -0.0189222 0.007329165 0.01294499 -0.0179584 0.006654322 0.01294499 -0.01689201 0.00615704 0.01294499 -0.01575553 0.00585252 0.01294499 -0.0145834 0.00575 0.01294499 -0.02709996 0.01249998 0.01294499 -0.0273779 0.01420998 0.01294499 -0.02771848 0.01500946 0.01294499 -0.02818298 0.01574397 0.01294499 -0.02875924 0.01639449 0.01294499 -0.02943241 0.01694411 0.01294499 -0.03018504 0.01737862 0.01294499 -0.03358012 0.01779085 0.01294499 -0.03441482 0.01754903 0.01294499 -0.03519999 0.0171765 0.01294499 -0.03591519 0.01668286 0.01294499 -0.03654193 0.01608085 0.01294499 -0.03706401 0.0153861 0.01294499 -0.03774303 0.01379227 0.01294499 -0.03788244 0.0129345 0.01294499 -0.03788244 0.01206547 0.01294499 -0.03774303 0.01120769 0.01294499 -0.03746783 0.01038336 0.01294499 -0.03706401 0.009613871 0.01294499 -0.03591519 0.008317112 0.01294499 -0.03519999 0.007823407 0.01294499 -0.0327174 0.007104337 0.01294499 -0.03184908 0.007139325 0.01294499 0.03639996 0.01249998 0.01294499 0.0352016 0.01531267 0.01294499 0.03471541 0.01570963 0.01294499 0.03417187 0.008976519 0.01294499 0.03471541 0.009290337 0.01294499 0.03561782 0.0101571 0.01294499 0.03595328 0.01068753 0.01294499 0.03634947 0.01187437 0.01294499 0.02056753 0.01694411 0.01294499 -0.01666927 0.01891958 0.012995 -0.01666927 0.01891958 0.01294499 -0.01855093 0.01796084 0.012995 -0.01855093 0.01796084 0.01294499 -0.02004426 0.01646751 0.012995 -0.02004426 0.01646751 0.01294499 -0.021003 0.01458585 0.012995 -0.021003 0.01458585 0.012995 -0.02133339 0.01249998 0.01294499 -0.021003 0.01041412 0.012995 -0.021003 0.01041412 0.01294499 -0.02004426 0.008532404 0.012995 -0.02004426 0.008532404 0.01294499 -0.01855093 0.007039129 0.012995 -0.01855093 0.007039129 0.01294499 -0.01666927 0.006080329 0.012995 -0.01666927 0.006080329 0.01294499 -0.006330668 0.006080329 0.012995 -0.006330668 0.006080329 0.01294499 -0.004449009 0.007039129 0.012995 -0.004449009 0.007039129 0.01294499 -0.002955675 0.008532404 0.012995 -0.002955675 0.008532404 0.01294499 -0.001996934 0.01041412 0.012995 -0.001996934 0.01041412 0.012995 -0.001666545 0.01249998 0.01294499 -0.001996934 0.01458585 0.012995 -0.001996934 0.01458585 0.01294499 -0.002955675 0.01646751 0.012995 -0.002955675 0.01646751 0.01294499 -0.004449009 0.01796084 0.012995 -0.004449009 0.01796084 0.01294499 -0.006330668 0.01891958 0.012995 -0.006330668 0.01891958 0.012995 -0.02223342 0.01819998 0.012995 -0.02223342 0.02033495 0.012995 -0.02223342 0.006799995 0.012995 -0.02619999 0.006799995 0.012995 -0.02619999 0.005207479 0.012995 0.01089996 0.01819998 0.012995 0.01089996 0.006799995 0.012995 -4.66579e-4 0.006799995 0.012995 -4.66579e-4 0.005207479 0.012995 0.02438271 0.00505197 0.012995 -0.02223342 0.005207479 0.012995 -0.0310387 0.005675554 0.012995 -0.03182071 0.005869984 0.012995 -0.03675794 0.005922973 0.012995 -0.02850931 0.008862018 0.012995 -0.03200173 0.007122993 0.012995 -0.03675794 0.019077 0.012995 -0.03200173 0.01787692 0.012995 -0.02619999 0.01819998 0.012995 -0.037808 0.01150774 0.012995 -0.037808 0.01349222 0.012995 -0.03918284 0.01658976 0.012995 -0.03843349 0.01761662 0.012995 -0.0357542 0.01680928 0.012995 -0.03397774 0.01769381 0.012995 -0.02746462 0.01054924 0.012995 -0.03918284 0.008410215 0.012995 -0.02619999 0.02033495 0.012995 -0.02818083 0.02033495 0.012995 -0.02893871 0.01986241 0.012995 -0.02953869 0.01932442 0.012995 -0.0303207 0.01912999 0.012995 -0.02888274 0.019948 0.012995 0.02574998 0.01819998 0.012995 0.03006833 0.01554912 0.012995 0.02574998 0.006799995 0.012995 0.03163212 0.008697748 0.012995 0.03780746 0.006736457 0.012995 0.0399515 0.01007884 0.012995 0.03601378 0.01080781 0.012995 0.03883862 0.007894694 0.012995 0.0349316 0.009450852 0.012995 0.03336781 0.008697748 0.012995 0.02898621 0.01080781 0.012995 0.02859997 0.01249998 0.012995 0.02898621 0.0141921 0.012995 0.02849429 0.00611031 0.012995 -4.66579e-4 0.02033495 0.012995 -4.66579e-4 0.01819998 0.012995 0.01089996 0.005207479 0.012995 0.02149063 0.01613795 0.012995 0.02253532 0.01445066 0.012995 0.02289998 0.01249998 0.012995 0.02253532 0.01054924 0.012995 0.0160222 0.01769381 0.012995 0.01799821 0.01787692 0.012995 0.0255056 0.00611031 0.012995 0.02699995 0.006494998 0.012995 0.03710526 0.006161332 0.01069611 -0.01378047 0.01488518 0.01069611 -0.01331794 0.01525408 0.01069611 -0.01279693 0.0155344 0.01069611 -0.01223427 0.01571726 0.01069611 -0.01048022 0.01563847 0.01069611 -0.01105701 0.01577013 0.01069611 -0.01164805 0.01579666 0.01069611 -0.01279693 0.009465515 0.01069611 -0.01331794 0.009745895 0.01069611 -0.01378047 0.01011472 0.01069611 -0.01468104 0.0133779 0.01069611 -0.01447319 0.01393181 0.01113718 -0.01048022 0.01563847 0.01113718 -0.01080471 0.01572591 0.01113718 -0.01105701 0.01577013 0.01113718 -0.01164805 0.01579666 0.01113718 -0.01191914 0.01577323 0.01113718 -0.01223427 0.01571726 0.01113718 -0.01246631 0.01565533 0.01113718 -0.01279693 0.0155344 0.01113718 -0.01298564 0.0154466 0.01113718 -0.01331794 0.01525408 0.01113718 -0.01346224 0.01515316 0.01113718 -0.01378047 0.01488518 0.01113718 -0.01388245 0.01478338 0.01113718 -0.01447319 0.01393181 0.01113718 -0.01450705 0.01385927 0.01113718 -0.01468104 0.0133779 0.01113718 -0.01469349 0.01333153 0.01113718 -0.01388245 0.01021659 0.01113718 -0.01378047 0.01011472 0.01113718 -0.01346224 0.009846806 0.01113718 -0.01331794 0.009745895 0.01113718 -0.01298564 0.009553313 0.01113718 -0.01279693 0.009465515 0.01139497 -0.01072049 0.008882999 0.01139497 -0.01134294 0.008803308 0.01139497 -0.01196992 0.008829951 0.01139497 -0.01258343 0.008962154 0.01139497 -0.007811307 0.01123362 0.01139497 -0.007653176 0.01185804 0.01139497 -0.007599949 0.01249998 0.01139497 -0.007653176 0.01314187 0.01139497 -0.007811307 0.01376628 0.01139497 -0.01306658 0.008928477 0.01139497 -0.01245737 0.008719325 0.01139497 -0.01182204 0.008613288 0.01139497 -0.01117789 0.008613288 0.01139497 -0.01054257 0.008719325 0.00919497 -0.007811307 0.01123362 0.00919497 -0.007653176 0.01185804 0.00919497 -0.007599949 0.01249998 0.00919497 -0.007653176 0.01314187 0.00919497 -0.007811307 0.01376628 0.00919497 -0.008070051 0.01435619 0.01270592 0.01867896 0.01612848 0.01270592 0.0180121 0.01628071 0.01270592 0.01987874 0.01548284 0.01270592 0.01930791 0.01585966 0.01280498 0.01732724 0.01634609 0.01280498 0.01801675 0.01631516 0.01280498 0.01868969 0.01616156 0.01280498 0.01932436 0.01589024 0.01280498 0.01990044 0.01551002 0.01353043 0.02004355 0.01539003 0.01353043 0.01990044 0.01551002 0.01353043 0.01951855 0.01577836 0.01353043 0.01932436 0.01589024 0.01353043 0.0189355 0.01607233 0.01353043 0.01868969 0.01616156 0.01353043 0.01831108 0.01626354 0.01353043 0.01766335 0.01634651 0.01394999 0.01394885 0.009736001 0.01394999 0.01445221 0.009189188 0.01394999 0.01503872 0.008732736 0.01394999 0.01569235 0.008378982 0.01052498 0.01445221 0.009189188 0.01052498 0.01503872 0.008732736 0.01052498 0.01569235 0.008378982 0.01270592 -0.03513652 0.01525759 0.01270592 -0.03267115 0.01631134 0.01270592 -0.03249996 0.01631522 0.01280498 -0.03596872 0.0141704 0.01280498 -0.03561466 0.01476293 0.01280498 -0.03516054 0.01528275 0.01280498 -0.03462094 0.01571309 0.01280498 -0.0326727 0.01634609 0.01280498 -0.03198319 0.01631516 0.01353043 -0.03168886 0.01626354 0.01353043 -0.03198319 0.01631516 0.01353043 -0.03233659 0.01634651 0.01353043 -0.03462094 0.01571309 0.01353043 -0.03478932 0.01559537 0.01353043 -0.03516054 0.01528275 0.01353043 -0.03527951 0.01516395 0.01353043 -0.03561466 0.01476293 0.01353043 -0.03596872 0.0141704 0.01353043 -0.03600817 0.01408576 0.01353043 -0.03048139 0.009221613 0.013929 -0.03023171 0.008817493 0.01394999 -0.03021925 0.008795797 0.01394999 -0.03021353 0.008799314 0.01394999 -0.03010463 0.008690476 0.01187998 0.02224266 0.01408332 0.01137995 0.02192723 0.01482361 0.01187998 0.02192723 0.01482361 0.01137995 0.0209636 0.016106 0.01187998 0.0209636 0.016106 0.01137995 0.02034032 0.01661491 0.01187998 0.02034032 0.01661491 0.01137995 0.01964342 0.01701724 0.01187998 0.01964342 0.01701724 0.01187998 0.01499998 0.008169829 0.01137995 0.01572692 0.007824897 0.01187998 0.01572692 0.007824897 0.01137995 0.01810264 0.007536411 0.01187998 0.01810264 0.007536411 0.01137995 0.01889103 0.007697403 0.01187998 0.01889103 0.007697403 0.01137995 0.01964342 0.00798273 0.01187998 0.01964342 0.00798273 0.01137995 -0.02749997 0.01249998 0.01187998 -0.02749997 0.01249998 0.01137995 -0.0275647 0.01330202 0.01187998 -0.0275647 0.01330202 0.01137995 -0.02775728 0.01408332 0.01187998 -0.02775728 0.01408332 0.01187998 -0.02903634 0.016106 0.01137995 -0.02965962 0.01661491 0.01187998 -0.02965962 0.01661491 0.01137995 -0.03035652 0.01701724 0.01187998 -0.03035652 0.01701724 0.01137995 -0.03110891 0.01730257 0.01187998 -0.03110891 0.01730257 0.01137995 -0.0318973 0.0174635 0.01187998 -0.0318973 0.0174635 0.01137995 -0.03249996 0.01749998 0.01187998 -0.03249996 0.01749998 0.01137995 -0.03270131 0.01749593 0.01187998 -0.03270131 0.01749593 0.01187998 -0.03350007 0.01739895 0.01137995 -0.03427302 0.01717507 0.01187998 -0.03427302 0.01717507 0.01187998 -0.03499996 0.01683008 0.01137995 -0.03566217 0.01637297 0.01187998 -0.03566217 0.01637297 0.01137995 -0.03624254 0.01581561 0.01187998 -0.03624254 0.01581561 0.01137995 -0.03672593 0.0151723 0.01187998 -0.03672593 0.0151723 0.01137995 -0.03709989 0.01445978 0.01187998 -0.03709989 0.01445978 0.01137995 -0.0373547 0.01369655 0.01187998 -0.0373547 0.01369655 0.01137995 -0.03748375 0.01290231 0.01187998 -0.03748375 0.01290231 0.01137995 -0.03748375 0.01209765 0.01187998 -0.03748375 0.01209765 0.01137995 -0.03249996 0.007499992 0.01187998 -0.03249996 0.007499992 0.01137995 -0.0318973 0.007536411 0.01187998 -0.0318973 0.007536411 0.01137995 -0.03110891 0.007697403 0.01187998 -0.03110891 0.007697403 0.01187998 -0.02850276 0.009496271 0.01137995 -0.02807271 0.01017636 0.01187998 -0.02807271 0.01017636 0.01187998 -0.0275647 0.01169794 0.004889965 -0.02749997 0.009349942 0.004889965 -0.02705353 0.009557723 0.004889965 -0.02705353 0.01695728 0.004889965 -0.02705353 0.008005797 0.004889965 0.02257543 0.01695728 0.004889965 -0.00597912 0.01194995 0.004889965 -0.00597912 0.01111245 0.004889965 -0.00597912 0.01076275 0.004889965 -0.00597912 0.01021414 0.004889965 -0.00597912 0.01016408 0.004889965 -0.00597912 0.009632468 0.004889965 -0.00597912 0.009557723 0.004889965 -0.02007102 0.01721882 0.004889965 -0.02007102 0.01209998 0.004889965 -0.02007102 0.01194995 0.004889965 -0.03757542 0.01021414 0.004889965 -0.03799998 0.01044994 0.004889965 -0.03757542 0.01076275 0.004889965 0.0241 0.01375764 0.004889965 0.0241 0.01539498 0.004889965 0.02315598 0.01534396 0.004889965 0.02309995 0.01504999 0.004889965 0.023 0.01504999 0.004889965 0.02257543 0.01375764 0.004889965 0.023 0.01530849 0.004889965 0.02294391 0.01534396 0.004889965 0.02257543 0.01539498 0.004889965 0.02290844 0.01539999 0.004889965 0.02265 0.01539999 0.004889965 0.02265 0.01549994 0.004889965 0.02257543 0.0162447 0.004889965 0.02290844 0.01549994 0.004889965 -0.02007102 0.01695728 0.004889965 -0.03750091 0.01769196 0.004889965 -0.03750091 0.01849997 0.004889965 -0.03249996 0.01769196 0.004889965 -0.03249996 0.01849997 0.004889965 -0.02705353 0.01769196 0.004889965 -0.02705353 0.01849997 0.004889965 0.02257543 0.01639956 0.004889965 0.02049314 0.01670026 0.004889965 0.02221375 0.01661348 0.004889965 0.02257543 0.01670026 0.004889965 0.02049314 0.01639956 0.004889965 0.02221161 0.01649016 0.004889965 0.02219998 0.01655 0.004889965 0.02231502 0.01640409 0.004889965 0.0222581 0.01643151 0.004889965 0.02049314 0.01695728 0.004889965 0.02049314 0.01721411 0.004889965 0.01425677 0.01639956 0.004889965 -0.03249996 0.01670026 0.004889965 -0.0277372 0.01667195 0.004889965 -0.02705353 0.01670026 0.004889965 -0.02767848 0.01669722 0.004889965 -0.03249996 0.01639956 0.004889965 -0.03249996 0.01695728 0.004889965 -0.03750091 0.01670026 0.004889965 -0.03721147 0.01660948 0.004889965 -0.03719997 0.01655 0.004889965 -0.03721374 0.01648646 0.004889965 -0.03726255 0.01642817 0.004889965 -0.03737848 0.01669722 0.004889965 -0.03731465 0.01669573 0.004889965 -0.03725785 0.0166682 0.004889965 -0.03732109 0.01640278 0.004889965 0.01637923 0.01598203 0.004889965 0.01425677 0.0162447 0.004889965 0.01571273 0.01573997 0.004889965 0.01425677 0.01539498 0.004889965 0.0187872 0.01573997 0.004889965 0.01706701 0.01608532 0.004889965 0.01777058 0.01605218 0.004889965 0.02049314 0.0162447 0.004889965 -0.00597912 0.01695728 0.004889965 -0.00597912 0.01670026 0.004889965 -0.00597912 0.01639956 0.004889965 -0.00597912 0.0162447 0.004889965 -0.02007102 0.01670026 0.004889965 -0.02007102 0.01639956 0.004889965 -0.02007102 0.0162447 0.004889965 -0.03757542 0.01209998 0.004889965 -0.03842097 0.01209998 0.004889965 -0.03757542 0.01194995 0.004889965 -0.03842097 0.01194995 0.004889965 -0.03757542 0.01111245 0.004889965 -0.03842097 0.01111245 0.004889965 0.01841586 0.0158931 0.004889965 0.02049314 0.01539498 0.004889965 0.02049314 0.01375764 0.004889965 0.01425677 0.01375764 0.004889965 0.01425677 0.01209998 0.004889965 0.01425677 0.01194995 0.004889965 0.01425677 0.01111245 0.004889965 0.01425677 0.01076275 0.004889965 0.02049314 0.01021414 0.004889965 0.01425677 0.01021414 0.004889965 0.01425677 0.01016408 0.004889965 0.02049314 0.009632468 0.004889965 0.01425677 0.009632468 0.004889965 0.02049314 0.009557723 0.004889965 0.01425677 0.009557723 0.004889965 0.01205354 0.01539498 0.004889965 0.01205354 0.01375764 0.004889965 0.01205354 0.01209998 0.004889965 0.01205354 0.01194995 0.004889965 0.01205354 0.01021414 0.004889965 0.01205354 0.009632468 0.004889965 0.0187872 0.009339988 0.004889965 0.01571273 0.009339988 0.004889965 -0.02007102 0.01111245 0.004889965 -0.02007102 0.01076275 0.004889965 -0.02007102 0.01021414 0.004889965 -0.02007102 0.01016408 0.004889965 -0.02007102 0.009632468 0.004889965 -0.02007102 0.009557723 0.004889965 -0.02705353 0.01076275 0.004889965 -0.02705353 0.01021414 0.004889965 -0.03249996 0.009557723 0.004889965 -0.03249996 0.009632468 0.004889965 -0.03249996 0.01016408 0.004889965 -0.03249996 0.01021414 0.004889965 -0.03750091 0.01209998 0.004889965 -0.03750091 0.01194995 0.004889965 -0.03750091 0.01111245 0.004889965 -0.03750091 0.01076275 0.004889965 -0.03750091 0.01021414 0.004889965 -0.03750091 0.009632468 0.01128 0.01020008 0.005999982 0.004229962 0.01677626 0.005999982 0.004229962 0.0126236 0.005999982 0.009572386 -0.03854995 0.01899999 0.004054963 -0.03019857 0.01899999 0.003829956 -0.03854995 0.01899999 0.004029989 -0.0302 0.01899999 0.003629982 -0.03834998 0.01899999 0.003629982 -0.03039997 0.01899999 0.01217997 -0.02027249 0.01899999 0.01217997 0.02258473 0.01899999 0.01207965 0.02258473 0.01938784 0.01207965 -0.03758674 0.01938784 0.01217997 -0.02027249 0.005999982 0.01207965 -0.03758674 0.005612134 0.01207965 0.02258473 0.005612134 0.01217997 0.02258473 0.005999982 0.01192998 -0.02749997 0.01249998 0.01217997 -0.02749997 0.01249998 0.01192998 -0.02780151 0.0142101 0.01217997 -0.02780151 0.0142101 0.01192998 -0.02999997 0.01683008 0.01217997 -0.02999997 0.01683008 0.01192998 -0.0316317 0.01742398 0.01217997 -0.0316317 0.01742398 0.01192998 -0.03336822 0.01742398 0.01217997 -0.03336822 0.01742398 0.01192998 -0.03633022 0.01571393 0.01217997 -0.03633022 0.01571393 0.01192998 -0.03719842 0.0142101 0.01217997 -0.03719842 0.0142101 0.01192998 -0.03749996 0.01249998 0.01217997 -0.03749996 0.01249998 0.01070088 -0.01111936 0.0166074 0.01120084 -0.01043236 0.01648443 0.01120084 -0.01111936 0.0166074 0.01120084 -0.0115 0.01662498 0.01070088 -0.01262885 0.01646751 0.01120084 -0.01256757 0.01648443 0.01070088 -0.01398587 0.01579177 0.01120084 -0.0135625 0.01607233 0.01120084 -0.01398587 0.01579177 0.01120084 -0.01441681 0.0154168 0.01120084 -0.01500713 0.01032847 0.01070088 -0.01398587 0.009208142 0.01120084 -0.01441681 0.009583175 0.01120084 -0.01398587 0.009208142 0.01120084 -0.0135625 0.008927643 0.01070088 -0.01262885 0.008532464 0.01120084 -0.01256757 0.008515536 0.01070088 -0.01111936 0.008392572 0.01120084 -0.0115 0.008374989 0.01120084 -0.009661316 0.00880742 0.01070088 -0.009661316 0.00880742 0.01120084 -0.01043236 0.008515536 0.01120084 -0.01111936 0.008392572 0.01120084 -0.007515549 0.01143234 0.01070088 -0.007374942 0.01249998 0.01120084 -0.007374942 0.01249998 0.01120084 -0.007515549 0.01356762 0.01146328 -0.01513004 0.01040416 0.01146328 -0.009404122 0.008869886 0.01146328 -0.01041507 0.008451163 0.01166212 -0.01036751 0.008273601 0.01146328 -0.01041507 0.01654881 0.01166212 -0.007710695 0.01468771 0.01166212 -0.007388412 0.01399648 0.01146328 -0.007451176 0.01358485 0.01146328 -0.007451176 0.01141512 0.01166212 -0.007273614 0.01136749 0.01146328 -0.007308304 0.01249998 0.01166212 -0.007124543 0.01249998 0.01166212 -0.007273614 0.01363241 0.01166212 -0.009312272 0.008710741 0.01166212 -0.007710695 0.01031225 0.01166212 -0.007388412 0.01100349 0.01146328 -0.01258486 0.008451163 0.01166212 -0.01225978 0.008190989 0.01146328 -0.0115 0.008308291 0.01166212 -0.0115 0.00812453 0.01166212 -0.01074016 0.008190989 0.01146328 -0.0144639 0.009536027 0.01146328 -0.01359581 0.008869886 0.01166212 -0.01368767 0.008710741 0.01166212 -0.01263242 0.008273601 0.01146328 -0.0115 0.01669162 0.01205897 -0.008759856 0.008333802 0.01205897 -0.007872879 0.009078025 0.01205897 -0.007680058 0.009294688 0.01205897 -0.007181525 0.01000672 0.01205897 -0.006814181 0.01079446 0.01205897 -0.01207888 0.00754714 0.01205897 -0.01092106 0.00754714 0.01205897 -0.01063406 0.007589221 0.01205897 -0.009794473 0.007814168 0.01205897 -0.009006738 0.008181512 0.01205897 -0.01424008 0.008333802 0.01205897 -0.01399326 0.008181512 0.01205897 -0.01320546 0.007814168 0.01205897 -0.01236587 0.007589221 0.01205897 -0.01531988 0.009294688 0.01205897 -0.01512706 0.009078025 0.01205897 -0.007680058 0.01570522 0.01205897 -0.006722927 0.01106983 0.01205897 -0.00652188 0.01221001 0.01205897 -0.006513476 0.01249998 0.01205897 -0.006589233 0.01336586 0.01205897 -0.006814181 0.01420545 0.01205897 -0.006921291 0.01447504 0.01205897 -0.007500171 0.01547771 0.01217997 -0.01212626 0.00714147 0.01217997 -0.0115 0.007104992 0.01214909 -0.01089841 0.007353007 0.01214909 -0.01434755 0.008170485 0.01214909 -0.01526921 0.008943855 0.01214909 -0.01327234 0.007630467 0.01214909 -0.01210159 0.007353007 0.01217997 -0.01087367 0.00714147 0.01217997 -0.00965476 0.007430315 0.01214909 -0.009727656 0.007630467 0.01217997 -0.008535385 0.007992506 0.01214909 -0.008652448 0.008170485 0.01217997 -0.007575809 0.008797705 0.01214909 -0.007730722 0.008943855 0.01217997 -0.006827771 0.00980246 0.01214909 -0.007012248 0.009908974 0.01217997 -0.006331622 0.01095265 0.01214909 -0.006535708 0.01101374 0.01217997 -0.006114125 0.01218628 0.01214909 -0.006326735 0.01219868 0.01217997 -0.006186962 0.01343679 0.01214909 -0.00639671 0.01339983 0.01217997 -0.006546199 0.01463681 0.01214909 -0.006741762 0.01455247 0.01217997 -0.007172524 0.01572161 0.01214909 -0.007343351 0.01559442 0.01217997 -0.01542413 0.008797705 0.01217997 -0.01446455 0.007992506 0.01217997 -0.01334518 0.007430315 0.01192998 0.01999998 0.01683008 0.01217997 0.01999998 0.01683008 0.01192998 0.01836824 0.01742398 0.01217997 0.01499998 0.008169829 0.01192998 0.01663172 0.007575929 0.01217997 0.01663172 0.007575929 0.01192998 0.01836824 0.007575929 0.01217997 0.01836824 0.007575929 0.01192998 0.01999998 0.008169829 0.01217997 0.01999998 0.008169829 0.01217997 -0.02027249 0.009724974 0.01217997 -0.03935098 0.009724974 0.01217997 -0.03935098 0.01723575 0.01217997 0.009023666 0.012775 0.01217997 0.009499967 0.01194995 0.01217997 0.009224951 0.01202368 0.01217997 0.009023666 0.01222497 0.01217997 0.008949995 0.01249998 0.01132601 0.03251558 0.01253783 0.01132673 0.03249996 0.01249998 0.01132601 0.03253215 0.01252532 0.01132601 0.0325396 0.01251035 0.01132601 0.0325405 0.01250624 0.01132601 0.03254091 0.01250207 0.01132601 0.03253668 0.01248174 0.01132601 0.03252297 0.01246607 0.01132601 0.0325194 0.01246386 0.01132601 0.03251558 0.01246207 0.01129013 0.03249996 0.01220321 0.0112915 0.03252428 0.01220995 0.01127135 0.03273719 0.01278221 0.01127398 0.03249996 0.01214075 0.01132202 0.03252995 0.01239901 0.01132202 0.03254014 0.01240259 0.01132202 0.03254991 0.01240724 0.01132202 0.03255915 0.01241284 0.01132202 0.03256773 0.01241934 0.01132202 0.03257566 0.01242673 0.01132202 0.03258901 0.01244366 0.01132202 0.03259432 0.01245307 0.01132202 0.03259861 0.01246297 0.01132202 0.03260189 0.01247328 0.01132202 0.03260517 0.01249456 0.01132202 0.03260517 0.01250535 0.01132202 0.03259861 0.012537 0.01132202 0.03259432 0.01254689 0.01132202 0.03258901 0.01255631 0.01132202 0.03258275 0.01256513 0.01132202 0.03257566 0.01257324 0.01132202 0.03254991 0.01259273 0.01132202 0.03254014 0.01259732 0.01132202 0.03252995 0.01260095 0.01132202 0.03251945 0.01260352 0.0113157 0.03254598 0.01234519 0.0113157 0.03260385 0.01237636 0.0113157 0.03265118 0.01244324 0.0113157 0.03266125 0.0124917 0.0113157 0.03266125 0.01250827 0.0113157 0.03265118 0.01255667 0.0113157 0.03262686 0.01259982 0.0113157 0.03261601 0.01261228 0.0113157 0.03257656 0.01264214 0.0113157 0.0325616 0.01264923 0.0113157 0.03254598 0.01265478 0.01130503 0.0325421 0.01227647 0.01130503 0.03256475 0.01228195 0.01130503 0.03272712 0.0124883 0.01130503 0.03264635 0.01267409 0.01130503 0.03262776 0.01268815 0.01130503 0.03260779 0.01270025 0.0112915 0.03268724 0.01272273 0.0112915 0.03266346 0.01274073 0.01104176 0.03276783 0.01042217 0.01134175 0.03273534 0.01044106 0.01104176 0.03273534 0.01044106 0.01104176 0.03034216 0.01213544 0.01134175 0.03034216 0.01213544 0.01104176 0.03042221 0.01223212 0.01134175 0.0304411 0.01226454 0.01104176 0.0304411 0.01273536 0.01134175 0.03049331 0.01258128 0.01104176 0.03049331 0.01258128 0.01134175 0.03049331 0.01241862 0.01104176 0.03049331 0.01241862 0.01104176 0.0304411 0.01226454 0.01132172 0.03249996 0.01190996 0.01134175 0.03249996 0.01190996 0.01132172 0.03268229 0.01193886 0.01134175 0.03268229 0.01193886 0.01132172 0.03284674 0.01202267 0.01132172 0.03297728 0.0121532 0.01134175 0.03297728 0.0121532 0.01132172 0.03306108 0.01231765 0.01134175 0.03308993 0.01249998 0.01132172 0.03306108 0.01268231 0.01134175 0.03306108 0.01268231 0.01132172 0.03297728 0.01284676 0.01134175 0.03297728 0.01284676 0.01134175 0.03299742 0.01494997 0.01134175 0.03295505 0.01479291 0.01134175 0.03273534 0.01455885 0.01134175 0.03286451 0.01465779 0.01104176 0.03276783 0.0145778 0.01104176 0.03273534 0.01455885 0.01104176 0.03299742 0.01494997 0.01104176 0.03295505 0.01479291 0.01104176 0.03286451 0.01465779 0.0113905 0.03463256 0.01486843 0.0113905 0.0348196 0.01468563 0.0113905 0.03499174 0.01448708 0.0113905 0.03523635 0.01413393 0.0113905 0.0350784 0.0143733 0.0113905 0.03560715 0.01179081 0.0113905 0.03561741 0.01183736 0.01011675 0.03558546 0.01179575 0.0113905 0.03552323 0.01149123 0.01011675 0.03535139 0.01112681 0.0113905 0.03541153 0.01120364 0.0113905 0.03499174 0.01051288 0.0113905 0.0350784 0.01062667 0.01011675 0.03497433 0.01052671 0.0113905 0.03523647 0.01086628 0.0113905 0.03537142 0.01111716 0.01139044 0.03481996 0.01031476 0.01139044 0.03463256 0.01013153 0.01212996 0.03290128 0.008682012 0.01212996 0.03368628 0.008848845 0.01212996 0.03441947 0.0091753 0.01212996 0.03506875 0.009647011 0.01212996 0.03560578 0.01024347 0.01212996 0.0360071 0.01093852 0.01212996 0.03625506 0.01170182 0.01212996 0.03633898 0.01249998 0.01212996 0.03625506 0.01329815 0.01212996 0.0360071 0.01406145 0.01212996 0.03560578 0.0147565 0.01212996 0.03506875 0.0153529 0.01212996 0.03514242 0.007811844 0.01212996 0.04026484 0.0156911 0.01212996 0.03968936 0.01708042 0.01212996 0.03880852 0.01758897 0.01212996 0.03468126 0.008079171 0.01212996 0.03416651 0.008217573 0.01212996 0.03363347 0.008217573 0.01212996 0.03311866 0.008079171 8.62531e-4 -0.01289999 0.002078354 -0.002637386 -0.01289999 0.002139449 8.62532e-4 -0.01289999 0.02292162 -0.002637386 -0.01289999 0.02286052 -0.002637386 -0.01409995 0.002139449 8.62532e-4 -0.01409995 0.002078354 -0.002637386 -0.01409995 0.02286052 8.62532e-4 -0.01409995 0.02292162 8.62531e-4 -0.02789998 0.002078354 -0.002637386 -0.02789998 0.002139449 8.62564e-4 -0.02789998 0.02292162 -0.002637386 -0.02789998 0.02286052 -0.002637386 0.02489995 0.002139449 8.62532e-4 0.02489995 0.002078354 -0.002637386 0.02489995 0.02286052 8.62532e-4 0.02489995 0.02292162 -0.002637386 0.02189999 0.002139449 8.62532e-4 0.02189999 0.002078354 -0.002637386 0.02189999 0.02286052 8.62532e-4 0.02189999 0.02292162 8.62532e-4 0.01589995 0.002078354 -0.002637386 0.01589995 0.02286052 8.62532e-4 0.01589995 0.02292162 -0.002637386 0.02309995 0.002139449 8.62531e-4 0.02309995 0.002078354 8.62532e-4 0.02309995 0.02292162 -0.002637386 0.02309995 0.02286052 -0.003665447 -0.03419995 0.01882827 -0.003665447 -0.03309994 0.02340197 -0.003665447 0.03249996 0.02399998 -0.003665447 -0.03457224 0.018036 -0.003665447 -0.03469997 0.007829964 -0.003665447 -0.03419995 0.006171643 -0.003665447 -0.03457224 0.006963968 0.01409494 0.03726398 0.005942881 0.01409494 0.04020828 0.01500457 0.01409494 -0.02724999 0.01249998 0.012995 -0.02878767 0.01621228 0.01409494 -0.02878767 0.01621228 0.012995 -0.03049087 0.01735031 0.01409494 -0.03049087 0.01735031 0.012995 -0.03249996 0.01774996 0.01409494 -0.03249996 0.01774996 0.01409494 -0.03450906 0.01735031 0.012995 -0.03621226 0.01621228 0.01409494 -0.03621226 0.01621228 0.012995 -0.03735035 0.01450908 0.01409494 -0.03735035 0.01450908 0.012995 -0.03774994 0.01249998 0.01409494 -0.03774994 0.01249998 0.012995 -0.03735035 0.01049089 0.01409494 -0.03735035 0.01049089 0.01409494 -0.03621226 0.008787631 0.012995 -0.03450906 0.0076496 0.01409494 -0.03450906 0.0076496 0.012995 -0.03249996 0.007249951 0.01409494 -0.03249996 0.007249951 0.012995 -0.03049087 0.0076496 0.01409494 -0.03049087 0.0076496 0.012995 0.02235037 0.01450908 0.01409494 0.02235037 0.01450908 0.012995 0.02121227 0.01621228 0.01409494 0.02121227 0.01621228 0.012995 0.01950907 0.01735031 0.01409494 0.01950907 0.01735031 0.012995 0.01749998 0.01774996 0.01409494 0.01749998 0.01774996 0.012995 0.01549088 0.01735031 0.01409494 0.01549088 0.01735031 0.01409494 0.01378768 0.01621228 0.01409494 0.01264959 0.01049089 0.01409494 0.01549088 0.0076496 0.012995 0.01749998 0.007249951 0.01409494 0.01749998 0.007249951 0.012995 0.01950907 0.0076496 0.01409494 0.01950907 0.0076496 0.012995 0.03624999 0.01249998 0.01409494 0.03624999 0.01249998 0.01409494 0.03582042 0.0142427 0.012995 0.03463023 0.01558613 0.01409494 0.03463023 0.01558613 0.012995 0.03295201 0.01622265 0.01409494 0.03295201 0.01622265 0.012995 0.03117018 0.01600629 0.01409494 0.03117018 0.01600629 0.012995 0.02969306 0.01498669 0.01409494 0.02969306 0.01498669 0.01409494 0.02885895 0.01339739 0.012995 0.03117018 0.008993685 0.01409494 0.03117018 0.008993685 0.012995 0.03295201 0.00877732 0.01409494 0.03295201 0.00877732 0.012995 0.03463023 0.009413778 0.01409494 0.03463023 0.009413778 0.012995 0.03582042 0.01075726 0.01409494 0.03582042 0.01075726 0.01409494 -0.008416533 0.00575 0.01409494 -0.006107926 0.00615704 0.01409494 -0.004077732 0.007329165 0.01409494 -0.002570867 0.009124994 0.01409494 -0.001769125 0.01132786 0.01409494 -0.001769125 0.01367211 0.01409494 -0.002570867 0.01587498 0.012995 -0.02123087 0.01132786 0.01409494 -0.02123087 0.01132786 0.012995 -0.02042907 0.009124994 0.01409494 -0.02042907 0.009124994 0.01409494 -0.0189222 0.007329165 0.01409494 -0.02846747 0.0161761 0.01422494 -0.02846747 0.0161761 0.01409494 -0.03006774 0.01738458 0.01422494 -0.03006774 0.01738458 0.01422494 -0.03199648 0.01793336 0.01409494 -0.03399324 0.01774835 0.01422494 -0.03399324 0.01774835 0.01409494 -0.03578835 0.01685446 0.01422494 -0.03578835 0.01685446 0.01409494 -0.03713935 0.01537251 0.01422494 -0.03713935 0.01537251 0.01409494 -0.03786373 0.01350265 0.01422494 -0.03786373 0.01350265 0.01409494 -0.03578835 0.008145451 0.01422494 -0.03578835 0.008145451 0.01409494 -0.03399324 0.00725162 0.01422494 -0.03399324 0.00725162 0.01409494 -0.03199648 0.007066547 0.01422494 -0.03199648 0.007066547 0.01409494 -0.03006774 0.007615387 0.01422494 -0.03006774 0.007615387 0.01409494 0.02153247 0.0161761 0.01422494 0.02153247 0.0161761 0.01409494 0.01993221 0.01738458 0.01422494 0.01993221 0.01738458 0.01409494 0.01800346 0.01793336 0.01422494 0.01800346 0.01793336 0.01409494 0.0160067 0.01774835 0.01422494 0.0160067 0.01774835 0.01409494 0.01421159 0.01685446 0.01422494 0.01421159 0.01685446 0.01409494 0.01286059 0.01537251 0.01409494 0.01800346 0.007066547 0.01422494 0.01800346 0.007066547 0.01409494 0.01993221 0.007615387 0.01422494 0.01993221 0.007615387 0.01409494 0.03490054 0.0155102 0.01422494 0.03490054 0.0155102 0.01409494 0.03335672 0.0162537 0.01422494 0.03335672 0.0162537 0.01409494 0.03164321 0.0162537 0.01422494 0.03164321 0.0162537 0.01409494 0.03009939 0.0155102 0.01422494 0.03009939 0.0155102 0.01409494 0.02903103 0.01417052 0.01422494 0.02903103 0.01417052 0.01409494 0.02864974 0.01249998 0.01422494 0.02864974 0.01249998 0.01409494 0.02903103 0.01082938 0.01422494 0.02903103 0.01082938 0.01409494 0.03009939 0.009489715 0.01422494 0.03009939 0.009489715 0.01409494 0.03164321 0.008746266 0.01422494 0.03164321 0.008746266 0.01422494 0.03335672 0.008746266 0.01409494 0.03490054 0.009489715 0.01422494 0.03490054 0.009489715 0.01422494 -0.02119797 0.01464921 0.01422494 -0.02153837 0.01249998 0.01422494 -0.02119797 0.01035076 0.01422494 -0.02021008 0.01658803 0.01422494 -0.01867145 0.01812666 0.01409494 -0.01867145 0.01812666 0.01409494 -0.02021008 0.01658803 0.01409494 -0.02119797 0.01464921 0.01409494 -0.02153837 0.01249998 0.01409494 -0.02119797 0.01035076 0.01409494 -0.02021008 0.008411943 0.012115 -0.02875924 0.01639449 0.01264494 -0.02875924 0.01639449 0.012115 -0.02943241 0.01694411 0.01264494 -0.03706401 0.009613871 0.01264494 -0.03654193 0.008919119 0.012115 -0.03441482 0.007450878 0.01264494 -0.03441482 0.007450878 0.012115 -0.03358012 0.007209122 0.01264494 -0.03358012 0.007209122 0.012115 -0.02875924 0.00860548 0.01264494 -0.02875924 0.00860548 0.012115 -0.02818298 0.009255945 0.012115 0.03234291 0.008603155 0.01264494 0.03234291 0.008603155 0.012115 0.03297007 0.008628427 0.01264494 0.03297007 0.008628427 0.01269495 -0.03706401 0.009613871 0.01269495 -0.03441482 0.007450878 0.01269495 -0.03358012 0.007209122 0.01294499 -0.03441482 0.007450878 0.01294499 -0.03358012 0.007209122 0.012995 -0.02004426 0.01646751 0.012995 -0.021003 0.01458585 0.012995 -0.02133339 0.01249998 0.012995 -0.021003 0.01041412 0.012995 -0.02223342 0.01819998 0.012995 -0.02223342 0.006799995 0.012995 -0.02619999 0.006799995 0.012995 0.01089996 0.01819998 0.012995 0.01089996 0.006799995 0.012995 0.03601378 0.0141921 0.012995 0.03639996 0.01249998 0.012995 0.04033499 0.01249998 0.012995 -0.03675794 0.005922973 0.012995 -0.02850931 0.008862018 0.012995 -0.03009301 0.00766611 0.012995 -0.03200173 0.007122993 0.012995 -0.03200173 0.01787692 0.012995 -0.02619999 0.01819998 0.012995 -0.03009301 0.01733386 0.012995 -0.02850931 0.01613795 0.012995 -0.037808 0.01349222 0.012995 -0.03918284 0.01658976 0.012995 -0.03709113 0.01534271 0.012995 -0.03843349 0.01761662 0.012995 -0.02709996 0.01249998 0.012995 -0.03397774 0.007306098 0.012995 -0.0357542 0.008190691 0.012995 -0.03843349 0.007383286 0.012995 0.02574998 0.01819998 0.012995 0.03780746 0.01826351 0.012995 0.03006833 0.01554912 0.012995 0.03163212 0.01630216 0.012995 0.03006833 0.009450852 0.012995 0.02574998 0.006799995 0.012995 0.03163212 0.008697748 0.012995 0.03780746 0.006736457 0.012995 0.0399515 0.01007884 0.012995 0.03601378 0.01080781 0.012995 0.02898621 0.01080781 0.012995 0.03336781 0.01630216 0.012995 0.0349316 0.01554912 0.012995 0.03883862 0.01710528 0.012995 0.0399515 0.01492112 0.012995 -0.02313339 0.01749998 0.012995 -0.02313339 0.007499992 0.012995 0.01290881 0.01534271 0.012995 0.01424574 0.01680928 0.012995 0.01990693 0.00766611 0.012995 0.01799821 0.007122993 0.012995 0.0160222 0.007306098 0.012995 0.02149063 0.01613795 0.012995 0.0160222 0.01769381 0.012995 0.01799821 0.01787692 0.012995 0.01990693 0.01733386 0.012995 0.0255056 0.00611031 0.004879951 0.02434998 0.01549994 0.004279971 0.02434998 0.01549994 0.004279971 0.02434998 0.009499967 0.01128077 -0.0115 0.01249998 0.01127749 -0.0115714 0.01300829 0.01127749 -0.01164144 0.01299339 0.01127749 -0.0115 0.01301324 0.01127749 -0.01177197 0.01293528 0.01127749 -0.01182991 0.01289319 0.01127749 -0.01170873 0.01296889 0.01127749 -0.01192551 0.01278698 0.01127749 -0.01196134 0.01272499 0.01127749 -0.01188141 0.01284343 0.01127749 -0.01200544 0.01258909 0.01127749 -0.01201295 0.01251786 0.01127749 -0.01198816 0.01265859 0.01127749 -0.01199799 0.01237577 0.01127749 -0.01197588 0.0123077 0.01127749 -0.01201045 0.01244634 0.01127749 -0.01190447 0.01218396 0.01127749 -0.01185655 0.01213073 0.01127749 -0.01194447 0.01224333 0.01127749 -0.01174092 0.01204675 0.01127749 -0.01167553 0.01201766 0.01127749 -0.01180166 0.01208472 0.01127749 -0.01153576 0.01198792 0.01127749 -0.01146417 0.01198792 0.01127749 -0.01160669 0.01199787 0.01127749 -0.0113244 0.01201766 0.01127749 -0.01125901 0.01204675 0.01127749 -0.01139324 0.01199787 0.01127749 -0.01114338 0.01213073 0.01127749 -0.01109552 0.01218396 0.01127749 -0.01119828 0.01208472 0.01127749 -0.01102405 0.0123077 0.01127749 -0.01100194 0.01237577 0.01127749 -0.01105546 0.01224333 0.01127749 -0.01098698 0.01251786 0.01127749 -0.01099449 0.01258909 0.01127749 -0.01098948 0.01244634 0.01127749 -0.01103866 0.01272499 0.01127749 -0.01107442 0.01278698 0.01127749 -0.01101177 0.01265859 0.01127749 -0.01117002 0.01289319 0.01127749 -0.01122796 0.01293528 0.01127749 -0.01111853 0.01284343 0.01127749 -0.01135849 0.01299339 0.01127749 -0.01142853 0.01300829 0.01127749 -0.0112912 0.01296889 0.01086992 -0.01055812 0.01461541 0.01069611 -0.01074999 0.01504725 0.01086992 -0.01086169 0.01472592 0.01069611 -0.01099467 0.01510709 0.01086992 -0.01117771 0.01479309 0.01086992 -0.01001149 0.01427388 0.01069611 -0.01006937 0.01473754 0.01086992 -0.01027286 0.01446378 0.01069611 -0.01028865 0.01486313 0.01069611 -0.01050865 0.0149632 0.01086992 -0.009580194 0.01379489 0.01069611 -0.009495556 0.01424169 0.01086992 -0.009779095 0.01404947 0.01069611 -0.009672641 0.01442641 0.01069611 -0.009864389 0.01459211 0.01086992 -0.009297668 0.01321554 0.01069611 -0.00908643 0.01360696 0.01086992 -0.009418666 0.01351511 0.01069611 -0.009202122 0.01383131 0.01069611 -0.0093382 0.01404267 0.01086992 -0.009185731 0.01258081 0.01069611 -0.008874416 0.0128982 0.01086992 -0.009219527 0.01290208 0.01069611 -0.008923947 0.0131452 0.01069611 -0.008994102 0.01337808 0.01086992 -0.009253084 0.01193976 0.01069611 -0.008869051 0.01213866 0.01086992 -0.009196996 0.01225793 0.01069611 -0.008846879 0.01239186 0.01069611 -0.008848726 0.01264715 0.01086992 -0.009675204 0.0110743 0.01069611 -0.009203732 0.01116579 0.01086992 -0.009494543 0.01134216 0.01069611 -0.009082555 0.01140129 0.01086992 -0.009352922 0.0116325 0.01069611 -0.008984923 0.01164835 0.01069611 -0.008915126 0.01189106 0.01086992 -0.01013886 0.01062655 0.01069611 -0.009673655 0.01057255 0.01086992 -0.00989139 0.01083421 0.01069611 -0.009496748 0.0107569 0.01069611 -0.009340226 0.01095443 0.01086992 -0.01070797 0.010324 0.01069611 -0.01029086 0.01013571 0.01086992 -0.01041281 0.01045536 0.01069611 -0.01007241 0.01026046 0.01069611 -0.009866654 0.01040601 0.01086992 -0.01133847 0.01018995 0.01069611 -0.01099115 0.009893476 0.01086992 -0.01101851 0.01023495 0.01069611 -0.01074564 0.009953916 0.01069611 -0.0105229 0.0100311 0.01069611 -0.01124489 0.01514315 0.01069611 -0.0115 0.01515519 0.01086992 -0.0115 0.01481562 0.01069611 -0.01186949 0.01512932 0.01086992 -0.01182222 0.01479309 0.01069611 -0.01223182 0.01505231 0.01086992 -0.01213824 0.01472592 0.01069611 -0.01257997 0.01492565 0.01086992 -0.01244181 0.01461541 0.01069611 -0.01290702 0.01475173 0.01086992 -0.01272708 0.01446378 0.01069611 -0.01320672 0.01453399 0.01086992 -0.01298844 0.01427388 0.01069611 -0.01347321 0.01427668 0.01086992 -0.01322084 0.01404947 0.01069611 -0.01370126 0.01398473 0.01086992 -0.01341974 0.01379489 0.01069611 -0.01388645 0.01366394 0.01086992 -0.01358127 0.01351511 0.01069611 -0.01402521 0.0133205 0.01086992 -0.01370227 0.01321554 0.01069611 -0.01411485 0.01296103 0.01086992 -0.01378047 0.01290208 0.01069611 -0.01415359 0.01259261 0.01086992 -0.01381421 0.01258081 0.01069611 -0.01414066 0.0122224 0.01086992 -0.01380294 0.01225793 0.01069611 -0.01407629 0.01185762 0.01086992 -0.01374685 0.01193976 0.01069611 -0.01396185 0.0115053 0.01086992 -0.01364701 0.0116325 0.01069611 -0.01379948 0.01117235 0.01086992 -0.01350539 0.01134216 0.01069611 -0.0135923 0.01086527 0.01086992 -0.01332473 0.0110743 0.01069611 -0.01334446 0.01058995 0.01086992 -0.01310855 0.01083421 0.01069611 -0.01306068 0.01035183 0.01086992 -0.01286107 0.01062655 0.01069611 -0.01274651 0.01015555 0.01086992 -0.01258713 0.01045536 0.01069611 -0.01240813 0.01000487 0.01086992 -0.01229196 0.010324 0.01069611 -0.01205199 0.009902775 0.01086992 -0.01198142 0.01023495 0.01069611 -0.01168519 0.009851217 0.01086992 -0.01166152 0.01018995 0.01069611 -0.0115 0.009844779 0.01069611 -0.01124024 0.009857237 0.01102721 -0.0115 0.01445871 0.01102721 -0.01122736 0.01443964 0.01102721 -0.01096004 0.01438283 0.01102721 -0.01070326 0.01428937 0.01102721 -0.01046198 0.0141611 0.01102721 -0.01024091 0.01400047 0.01102721 -0.01004433 0.01381063 0.01102721 -0.009876072 0.01359528 0.01102721 -0.009739458 0.01335865 0.01102721 -0.009637117 0.01310527 0.01102721 -0.009570956 0.01284009 0.01102721 -0.009542405 0.01256835 0.01102721 -0.009551942 0.01229524 0.01102721 -0.009599387 0.01202613 0.01102721 -0.009683847 0.01176619 0.01102721 -0.009803652 0.01152062 0.01102721 -0.009956479 0.01129406 0.01102721 -0.01013928 0.01109099 0.01102721 -0.01034867 0.01091533 0.01102721 -0.01058042 0.01077049 0.01102721 -0.01083004 0.01065933 0.01102721 -0.01109272 0.01058405 0.01102721 -0.01136332 0.01054596 0.01102721 -0.01163661 0.01054596 0.01102721 -0.01190721 0.01058405 0.01102721 -0.01216989 0.01065933 0.01102721 -0.01241958 0.01077049 0.01102721 -0.01265132 0.01091533 0.01102721 -0.01286065 0.01109099 0.01102721 -0.01304346 0.01129406 0.01102721 -0.01319628 0.01152062 0.01102721 -0.01331609 0.01176619 0.01102721 -0.01340055 0.01202613 0.01102721 -0.01344799 0.01229524 0.01102721 -0.01345753 0.01256835 0.01102721 -0.01342898 0.01284009 0.01102721 -0.01336288 0.01310527 0.01102721 -0.01326048 0.01335865 0.01102721 -0.01312386 0.01359528 0.01102721 -0.0129556 0.01381063 0.01102721 -0.01275902 0.01400047 0.01102721 -0.01253795 0.0141611 0.01102721 -0.01229667 0.01428937 0.01102721 -0.01203989 0.01438283 0.01102721 -0.01177257 0.01443964 0.01113784 -0.0115 0.01412987 0.01113784 -0.01127314 0.01411402 0.01113784 -0.0110507 0.01406675 0.01113784 -0.01083701 0.01398897 0.01113784 -0.01063627 0.01388221 0.01113784 -0.01045227 0.01374852 0.01113784 -0.01028871 0.01359057 0.01113784 -0.0101487 0.0134114 0.01113784 -0.01003503 0.01321446 0.01113784 -0.009949862 0.01300364 0.01113784 -0.009894847 0.01278299 0.01113784 -0.009871065 0.01255685 0.01113784 -0.009878993 0.01232957 0.01113784 -0.009918451 0.01210564 0.01113784 -0.009988725 0.01188939 0.01113784 -0.01008844 0.01168501 0.01113784 -0.01021558 0.01149648 0.01113784 -0.01036775 0.0113275 0.01113784 -0.01054191 0.01118135 0.01113784 -0.01073479 0.01106083 0.01113784 -0.01094251 0.01096838 0.01113784 -0.01116108 0.01090568 0.01113784 -0.01138627 0.01087403 0.01113784 -0.01161366 0.01087403 0.01113784 -0.01183885 0.01090568 0.01113784 -0.01205742 0.01096838 0.01113784 -0.01226514 0.01106083 0.01113784 -0.01245802 0.01118135 0.01113784 -0.01263219 0.0113275 0.01113784 -0.01278436 0.01149648 0.01113784 -0.01291149 0.01168501 0.01113784 -0.01301121 0.01188939 0.01113784 -0.01308149 0.01210564 0.01113784 -0.01312094 0.01232957 0.01113784 -0.01312887 0.01255685 0.01113784 -0.01310509 0.01278299 0.01113784 -0.01305007 0.01300364 0.01113784 -0.0129649 0.01321446 0.01113784 -0.01285123 0.0134114 0.01113784 -0.01271122 0.01359057 0.01113784 -0.01254767 0.01374852 0.01113784 -0.01236367 0.01388221 0.01113784 -0.01216292 0.01398897 0.01113784 -0.01194924 0.01406675 0.01113784 -0.01172679 0.01411402 0.01121431 -0.0115 0.01379162 0.01121431 -0.01132023 0.01377904 0.01121431 -0.01114392 0.01374161 0.01121431 -0.01097464 0.01367998 0.01121431 -0.0108155 0.01359534 0.01121431 -0.0106697 0.01348942 0.01121431 -0.01054006 0.01336425 0.01121431 -0.01042914 0.01322227 0.01121431 -0.01033908 0.01306617 0.01121431 -0.01027154 0.0128991 0.01121431 -0.01022797 0.01272428 0.01121431 -0.01020914 0.01254504 0.01121431 -0.0102154 0.01236498 0.01121431 -0.01024669 0.01218748 0.01121431 -0.01030236 0.01201611 0.01121431 -0.0103814 0.01185417 0.01121431 -0.01048213 0.01170474 0.01121431 -0.01060271 0.01157087 0.01121431 -0.01074075 0.01145499 0.01121431 -0.01089358 0.01135951 0.01121431 -0.01105821 0.01128619 0.01121431 -0.01123142 0.01123654 0.01121431 -0.01140987 0.01121145 0.01121431 -0.01159006 0.01121145 0.01121431 -0.01176851 0.01123654 0.01121431 -0.01194173 0.01128619 0.01121431 -0.01210635 0.01135951 0.01121431 -0.01225918 0.01145499 0.01121431 -0.01239722 0.01157087 0.01121431 -0.0125178 0.01170474 0.01121431 -0.0126186 0.01185417 0.01121431 -0.01269757 0.01201611 0.01121431 -0.01275324 0.01218748 0.01121431 -0.01278454 0.01236498 0.01121431 -0.01279085 0.01254504 0.01121431 -0.01277202 0.01272428 0.01121431 -0.01272839 0.0128991 0.01121431 -0.01266092 0.01306617 0.01121431 -0.01257079 0.01322227 0.01121431 -0.01245987 0.01336425 0.01121431 -0.01233023 0.01348942 0.01121431 -0.01218444 0.01359534 0.01121431 -0.01202535 0.01367998 0.01121431 -0.01185601 0.01374161 0.01121431 -0.0116797 0.01377904 0.01125693 -0.0115 0.01345288 0.01125693 -0.01136738 0.01344358 0.01125693 -0.01123732 0.01341593 0.01125693 -0.01111239 0.01337045 0.01125693 -0.01099503 0.01330804 0.01125693 -0.01088744 0.0132299 0.01125693 -0.01079183 0.01313757 0.01125693 -0.01071 0.01303279 0.01125693 -0.01064354 0.01291769 0.01125693 -0.01059371 0.01279443 0.01125693 -0.01056158 0.01266545 0.01125693 -0.01054769 0.01253324 0.01125693 -0.01055228 0.01240038 0.01125693 -0.01057541 0.01226943 0.01125693 -0.01061648 0.01214301 0.01125693 -0.01067477 0.0120235 0.01125693 -0.0107491 0.01191329 0.01125693 -0.01083803 0.01181453 0.01125693 -0.01093989 0.01172906 0.01125693 -0.0110526 0.0116586 0.01125693 -0.01117408 0.01160454 0.01125693 -0.01130187 0.01156789 0.01125693 -0.01143348 0.01154941 0.01125693 -0.01156646 0.01154941 0.01125693 -0.01169806 0.01156789 0.01125693 -0.01182585 0.01160454 0.01125693 -0.01194733 0.0116586 0.01125693 -0.01206004 0.01172906 0.01125693 -0.01216191 0.01181453 0.01125693 -0.01225084 0.01191329 0.01125693 -0.01232522 0.0120235 0.01125693 -0.01238346 0.01214301 0.01125693 -0.01242452 0.01226943 0.01125693 -0.01244765 0.01240038 0.01125693 -0.0124523 0.01253324 0.01125693 -0.01243835 0.01266545 0.01125693 -0.01240622 0.01279443 0.01125693 -0.0123564 0.01291769 0.01125693 -0.01228994 0.01303279 0.01125693 -0.0122081 0.01313757 0.01125693 -0.01211249 0.0132299 0.01125693 -0.01200491 0.01330804 0.01125693 -0.01188755 0.01337045 0.01125693 -0.01176261 0.01341593 0.01125693 -0.01163256 0.01344358 0.01069611 -0.009442448 0.01508003 0.01069611 -0.009936213 0.01540595 0.01069611 -0.008199989 0.01249998 0.01069611 -0.008252978 0.01308923 0.01069611 -0.01378047 0.01488518 0.01069611 -0.01331794 0.01525408 0.01069611 -0.01279693 0.0155344 0.01069611 -0.01223427 0.01571726 0.01069611 -0.01048022 0.01563847 0.01069611 -0.01105701 0.01577013 0.01069611 -0.01164805 0.01579666 0.01069611 -0.008410394 0.01365953 0.01069611 -0.008667111 0.01419252 0.01069611 -0.008252978 0.01191073 0.01069611 -0.008667111 0.01080739 0.01069611 -0.008410394 0.01134043 0.01069611 -0.01164805 0.009203314 0.01069611 -0.01105701 0.009229838 0.01069611 -0.009014844 0.01467114 0.01069611 -0.01223427 0.009282708 0.01069611 -0.01279693 0.009465515 0.01069611 -0.01331794 0.009745895 0.01069611 -0.01378047 0.01011472 0.01069611 -0.01416975 0.01056027 0.01069611 -0.01447319 0.01106816 0.01069611 -0.01468104 0.01162207 0.01069611 -0.01478672 0.01220417 0.01069611 -0.01479995 0.01249998 0.01069611 -0.01478672 0.0127958 0.01069611 -0.01468104 0.0133779 0.01069611 -0.01447319 0.01393181 0.01069611 -0.01416975 0.01443964 0.01069611 -0.009936213 0.009594023 0.01069611 -0.009442448 0.009919941 0.01069611 -0.01048022 0.009361505 0.01069611 -0.009014844 0.01032876 0.01113718 -0.008252978 0.01308923 0.01113718 -0.008388459 0.01359933 0.01113718 -0.008410394 0.01365953 0.01113718 -0.00861901 0.01410937 0.01113718 -0.008667111 0.01419252 0.01113718 -0.008932471 0.01457309 0.01113718 -0.009014844 0.01467114 0.01113718 -0.009319722 0.01497721 0.01113718 -0.009442448 0.01508003 0.01113718 -0.009769737 0.01531004 0.01113718 -0.009936213 0.01540595 0.01113718 -0.01026952 0.01556199 0.01113718 -0.01048022 0.01563847 0.01113718 -0.01080471 0.01572591 0.01113718 -0.01105701 0.01577013 0.01113718 -0.01135993 0.01579701 0.01113718 -0.01164805 0.01579666 0.01113718 -0.01191914 0.01577323 0.01113718 -0.01223427 0.01571726 0.01113718 -0.01246631 0.01565533 0.01113718 -0.01279693 0.0155344 0.01113718 -0.01298564 0.0154466 0.01113718 -0.01331794 0.01525408 0.01113718 -0.01346224 0.01515316 0.01113718 -0.01378047 0.01488518 0.01113718 -0.01388245 0.01478338 0.01113718 -0.01416975 0.01443964 0.01113718 -0.01423406 0.01434791 0.01113718 -0.01447319 0.01393181 0.01113718 -0.01450705 0.01385927 0.01113718 -0.01468104 0.0133779 0.01113718 -0.01469349 0.01333153 0.01113718 -0.01478672 0.0127958 0.01113718 -0.01478809 0.01277983 0.01113718 -0.01478809 0.01222014 0.01113718 -0.01478672 0.01220417 0.01113718 -0.01469349 0.01166844 0.01113718 -0.01468104 0.01162207 0.01113718 -0.01450705 0.0111407 0.01113718 -0.01447319 0.01106816 0.01113718 -0.01423406 0.01065206 0.01113718 -0.01416975 0.01056027 0.01113718 -0.01388245 0.01021659 0.01113718 -0.01378047 0.01011472 0.01113718 -0.01346224 0.009846806 0.01113718 -0.01331794 0.009745895 0.01113718 -0.01298564 0.009553313 0.01113718 -0.01279693 0.009465515 0.01113718 -0.01246631 0.009344637 0.01113718 -0.01223427 0.009282708 0.01113718 -0.01191914 0.009226679 0.01113718 -0.01164805 0.009203314 0.01113718 -0.01135993 0.009202957 0.01113718 -0.01105701 0.009229838 0.01113718 -0.01080471 0.009274065 0.01113718 -0.01048022 0.009361505 0.01113718 -0.01026952 0.009437918 0.01113718 -0.009936213 0.009594023 0.01113718 -0.009769737 0.009689927 0.01113718 -0.009442448 0.009919941 0.01113718 -0.009319722 0.01002275 0.01113718 -0.009014844 0.01032876 0.01113718 -0.008932471 0.01042687 0.01113718 -0.008667111 0.01080739 0.01113718 -0.00861901 0.0108906 0.01113718 -0.008410394 0.01134043 0.01113718 -0.008388459 0.01140064 0.01113718 -0.008252978 0.01191073 0.01113718 -0.008247435 0.01194226 0.01113718 -0.008199989 0.01249998 0.01113718 -0.008247435 0.01305764 0.01136499 -0.009722352 0.009308159 0.01136499 -0.009541571 0.009127318 0.01136499 -0.009584426 0.009388983 0.01136499 -0.009366869 0.009235024 0.01136499 -0.009086251 0.009757459 0.01136499 -0.008858561 0.00963062 0.01136499 -0.008657455 0.01020479 0.01136499 -0.008422315 0.01010453 0.01136499 -0.008310437 0.01071822 0.01136499 -0.008127331 0.01054155 0.01136499 -0.008308172 0.01072233 0.01139497 -0.008269846 0.01069551 0.0113759 -0.008295655 0.01070994 0.01139497 -0.008011341 0.01126736 0.01139497 -0.009688138 0.009273946 0.01139497 -0.007853209 0.01187467 0.01139497 -0.01012039 0.00906676 0.01139497 -0.01072049 0.008882999 0.01139497 -0.01134294 0.008803308 0.01139497 -0.01196992 0.008829951 0.01139497 -0.01258343 0.008962154 0.01139497 -0.01316571 0.009196162 0.01139497 -0.01370012 0.009525179 0.01139497 -0.01417118 0.009939789 0.01139497 -0.01456546 0.01042807 0.01139497 -0.01487153 0.01097595 0.01139497 -0.01508057 0.01156765 0.01139497 -0.01518666 0.01218616 0.01139497 -0.01519995 0.01249998 0.01139497 -0.01518666 0.01281374 0.01139497 -0.01508057 0.01343232 0.01139497 -0.01487153 0.01402401 0.01139497 -0.01456546 0.0145719 0.01139497 -0.01417118 0.01506012 0.01139497 -0.01370012 0.01547473 0.01139497 -0.01316571 0.01580381 0.01139497 -0.01258343 0.01603782 0.01139497 -0.01196992 0.01617002 0.01139497 -0.01134294 0.01619666 0.01139497 -0.01072049 0.01611691 0.01139497 -0.01012039 0.01593315 0.01139497 -0.009560048 0.01565062 0.01139497 -0.009055495 0.01527744 0.01139497 -0.008621215 0.01482439 0.01139497 -0.008269846 0.01430445 0.01139497 -0.008011341 0.01373261 0.01139497 -0.007853209 0.0131253 0.01139497 -0.007799983 0.01249998 0.01139497 -0.008127331 0.01054155 0.01139497 -0.008070051 0.01064378 0.01139497 -0.007811307 0.01123362 0.01139497 -0.007653176 0.01185804 0.01139497 -0.007599949 0.01249998 0.01139497 -0.007653176 0.01314187 0.01139497 -0.007811307 0.01376628 0.01139497 -0.008070051 0.01435619 0.01139497 -0.008422315 0.01489537 0.01139497 -0.008858561 0.01536929 0.01139497 -0.009366869 0.01576495 0.01139497 -0.009933352 0.01607149 0.01139497 -0.01054257 0.01628065 0.01139497 -0.01117789 0.01638662 0.01139497 -0.01182204 0.01638662 0.01139497 -0.01245737 0.01628065 0.01139497 -0.01306658 0.01607149 0.01139497 -0.01363307 0.01576495 0.01139497 -0.01414138 0.01536929 0.01139497 -0.01457762 0.01489537 0.01139497 -0.01492995 0.01435619 0.01139497 -0.01518863 0.01376628 0.01139497 -0.01534676 0.01314187 0.01139497 -0.01539999 0.01249998 0.01139497 -0.01534676 0.01185804 0.01139497 -0.01518863 0.01123362 0.01139497 -0.01492995 0.01064378 0.01139497 -0.01457762 0.01010453 0.01139497 -0.01414138 0.00963062 0.01139497 -0.01363307 0.009235024 0.01139497 -0.01306658 0.008928477 0.01139497 -0.01054257 0.008719325 0.01139497 -0.009933352 0.008928477 0.01139497 -0.009541571 0.009127318 0.00919497 -0.008070051 0.01064378 0.00919497 -0.007811307 0.01123362 0.00919497 -0.008070051 0.01435619 0.00919497 -0.008422315 0.01489537 0.00919497 -0.008858561 0.01536929 0.00919497 -0.009366869 0.01576495 0.00919497 -0.009933352 0.01607149 0.00919497 -0.01054257 0.01628065 0.00919497 -0.01117789 0.01638662 0.0138449 0.01749998 0.01249998 0.01382595 0.01744621 0.01286518 0.01382595 0.01749998 0.01286911 0.01275587 0.01908296 0.01480913 0.01288419 0.01896303 0.01471138 0.01288419 0.0192694 0.0144748 0.01275587 0.01833224 0.0151726 0.01275587 0.01806104 0.01524269 0.01288419 0.01788604 0.0151233 0.01288419 0.01826387 0.01503908 0.01288419 0.01862543 0.0149008 0.01275587 0.0186038 0.01507228 0.01275587 0.01884424 0.01495563 0.01275587 0.01969903 0.01423239 0.01275587 0.01951223 0.01444566 0.01275587 0.01930534 0.01463931 0.01288419 0.0195381 0.01419609 0.01275587 0.0198614 0.01400393 0.01275587 0.01778334 0.01528495 0.01275587 0.01749998 0.01529902 0.01288419 0.01749998 0.01515156 0.01275587 0.0170924 0.01526921 0.01288419 0.01711392 0.0151233 0.01275587 0.01669359 0.01518034 0.01288419 0.01673609 0.01503908 0.01275587 0.01631188 0.01503437 0.01288419 0.01637452 0.0149008 0.01275587 0.01595556 0.0148344 0.01288419 0.01603692 0.01471138 0.01275587 0.01563209 0.01458466 0.01288419 0.01573055 0.0144748 0.01288419 0.01546186 0.01419609 0.01312863 0.01749998 0.01482105 0.01312863 0.01783794 0.01479631 0.01312863 0.01816868 0.01472264 0.01312863 0.01848518 0.01460158 0.01312863 0.01878064 0.01443576 0.01312863 0.01904886 0.01422864 0.01312863 0.01551872 0.01370912 0.01312863 0.01571589 0.01398468 0.01312863 0.01595109 0.01422864 0.01312863 0.01621925 0.01443576 0.01312863 0.01651477 0.01460158 0.01312863 0.01683127 0.01472264 0.01312863 0.01716202 0.01479631 0.01333051 0.01749998 0.0144788 0.01333051 0.01778811 0.0144577 0.01333051 0.0180701 0.01439487 0.01333051 0.01833993 0.0142917 0.01333051 0.01859182 0.01415032 0.01333051 0.01597893 0.01376575 0.01333051 0.01617944 0.01397377 0.01333051 0.01640814 0.01415032 0.01333051 0.01666003 0.0142917 0.01333051 0.01692986 0.01439487 0.01333051 0.01721185 0.0144577 0.01351571 0.01749998 0.01407992 0.01351571 0.01772999 0.01406306 0.01351571 0.01795518 0.01401293 0.01351571 0.0166282 0.01381766 0.01351571 0.01682937 0.01393049 0.01351571 0.01704478 0.01401293 0.01351571 0.0172699 0.01406306 0.01275587 0.02075248 0.01248818 0.01275587 0.02073997 0.01278996 0.01275587 0.02029222 0.01416981 0.01275587 0.02012288 0.01442396 0.01275587 0.01992791 0.01466429 0.01275587 0.01971006 0.01488626 0.01275587 0.0194779 0.01508194 0.01275587 0.01922851 0.01525515 0.01275587 0.01896405 0.01540434 0.01275587 0.01868683 0.0155282 0.01275587 0.01839929 0.01562571 0.01275587 0.01810389 0.01569592 0.01275587 0.01780319 0.01573836 0.01275587 0.01749998 0.01575249 0.01275587 0.01705706 0.01572221 0.01275587 0.01662248 0.01563191 0.01275587 0.01620417 0.01548326 0.01275587 0.01581001 0.01527899 0.01275587 0.01544731 0.01502299 0.01275587 0.01512289 0.01472002 0.01275062 0.02078008 0.01272433 0.01275062 0.01990276 0.01474404 0.01275062 0.02018594 0.01439595 0.01275062 0.02041912 0.01401257 0.01275062 0.01920825 0.01530909 0.01275062 0.01957482 0.01505029 0.01275062 0.01838701 0.01566582 0.01275062 0.01880979 0.0155155 0.01275062 0.01421988 0.01227563 0.01275062 0.01421988 0.01272433 0.01275062 0.01481395 0.01439595 0.01275062 0.0150972 0.01474404 0.01275062 0.01542514 0.01505029 0.01275062 0.01579171 0.01530909 0.01275062 0.01619011 0.0155155 0.01275062 0.01661294 0.01566582 0.01275062 0.01705229 0.01575708 0.01275062 0.01749998 0.01578772 0.01275062 0.01794767 0.01575708 0.01273125 0.01839715 0.01570206 0.01270592 0.01811486 0.01579356 0.01273125 0.01795279 0.01579439 0.01270592 0.01781028 0.01583588 0.01273125 0.01749998 0.01582539 0.01273125 0.0192278 0.01534128 0.01270592 0.01897561 0.01550781 0.01273125 0.01882481 0.01555007 0.01270592 0.0187056 0.01562553 0.01270592 0.01841288 0.01572352 0.01273125 0.02021676 0.01441764 0.01270592 0.01995992 0.01477408 0.01273125 0.0199303 0.01476973 0.01270592 0.01973843 0.01499247 0.01273125 0.0195986 0.01507955 0.01270592 0.01950114 0.01518732 0.01270592 0.01924806 0.01535856 0.01273125 0.02045255 0.01402986 0.01270592 0.02033483 0.01428627 0.01270592 0.02015984 0.01453751 0.01273125 0.0199303 0.01023018 0.01270592 0.02021884 0.01054173 0.01273125 0.02021676 0.01058226 0.01273125 0.0192278 0.009658694 0.01270592 0.01957988 0.009873211 0.01273125 0.01839715 0.009297847 0.01270592 0.01933115 0.009693861 0.01273125 0.01795279 0.00920552 0.01270592 0.01822161 0.00922805 0.01270592 0.01851463 0.009307086 0.01270592 0.01749998 0.01584994 0.01270592 0.01704382 0.01581877 0.01273125 0.01704716 0.01579439 0.01270592 0.01659613 0.01572573 0.01273125 0.01660281 0.01570206 0.01270592 0.01616531 0.0155726 0.01273125 0.01617515 0.01555007 0.01270592 0.01575934 0.01536226 0.01273125 0.01577216 0.01534128 0.01270592 0.0153858 0.01509863 0.01273125 0.01540136 0.01507955 0.01270592 0.01505166 0.01478654 0.01273125 0.01506966 0.01476973 0.01270592 0.01476311 0.01443183 0.01273125 0.0145474 0.01402986 0.01270592 0.01434338 0.0136218 0.01273125 0.01436656 0.01361358 0.01273125 0.01418232 0.0127269 0.01273125 0.01418232 0.01227301 0.01273125 0.0145474 0.01097005 0.01270592 0.01476311 0.01056808 0.01273125 0.0147832 0.01058226 0.01270592 0.01761358 0.009151816 0.01270592 0.01792013 0.009175956 0.01270592 0.01749998 0.01631522 0.01270592 0.01867896 0.01612848 0.01270592 0.01486343 0.01525759 0.01270592 0.01539814 0.01568406 0.01270592 0.0160005 0.01600819 0.01270592 0.01987874 0.01548284 0.01270592 0.01930791 0.01585966 0.01270592 0.02077513 0.0144568 0.01270592 0.0203731 0.01501017 0.01270592 0.02131521 0.01249998 0.01270592 0.02125388 0.0131812 0.01270592 0.02107191 0.01384055 0.01280498 0.01732724 0.01634609 0.01280498 0.01801675 0.01631516 0.01280498 0.01990044 0.01551002 0.01280498 0.02039927 0.01503306 0.01280498 0.020805 0.01447463 0.01280498 0.02110445 0.01385277 0.01280498 0.02128809 0.0131874 0.01280498 0.02134996 0.01249998 0.01280498 0.02128809 0.0118125 0.01280498 0.02110445 0.0111472 0.01353043 0.02129459 0.01315063 0.01353043 0.02128809 0.0131874 0.01353043 0.02113008 0.01378256 0.01353043 0.02110445 0.01385277 0.01353043 0.02086108 0.01437759 0.01353043 0.020805 0.01447463 0.01353043 0.02049541 0.01491862 0.01353043 0.02039927 0.01503306 0.01353043 0.02004355 0.01539003 0.01353043 0.01990044 0.01551002 0.01353043 0.01951855 0.01577836 0.01353043 0.01932436 0.01589024 0.01353043 0.0189355 0.01607233 0.01353043 0.01868969 0.01616156 0.01353043 0.01637262 0.01618123 0.01353043 0.01598685 0.01604014 0.01353043 0.01576668 0.01593774 0.01353043 0.01537901 0.01571309 0.01353043 0.01521062 0.01559537 0.01353043 0.01483941 0.01528275 0.01353043 0.01472043 0.01516395 0.01353043 0.01831108 0.008736371 0.01353043 0.01868969 0.008838415 0.01353043 0.0189355 0.008927583 0.01353043 0.01932436 0.009109675 0.01353043 0.01951855 0.009221613 0.01353043 0.02086108 0.01062232 0.01353043 0.02110445 0.0111472 0.01353043 0.02113008 0.01121741 0.01353043 0.02128809 0.0118125 0.01353043 0.02129459 0.01184934 0.01353043 0.02134996 0.01249998 0.01391994 0.01976823 0.008817493 0.01391994 0.01989531 0.008690476 0.01391994 0.02014166 0.009075522 0.01391994 0.01996123 0.008732736 0.01391994 0.02055823 0.009441733 0.01391994 0.02054774 0.009189188 0.013929 0.02035737 0.009253323 0.013929 0.01976823 0.008817493 0.01394999 0.01978069 0.008795797 0.01394999 0.01912188 0.00846368 0.01394999 0.0184164 0.008247613 0.01394999 0.01435947 0.0155099 0.01394999 0.01491332 0.01599735 0.01394999 0.01554161 0.01638418 0.01394999 0.01622617 0.01665931 0.01394999 0.01912188 0.01653629 0.01394999 0.01978069 0.01620411 0.01394999 0.02037394 0.01576542 0.01394999 0.01989531 0.008690476 0.01394999 0.01712834 0.01698458 0.01394999 0.01639527 0.01686227 0.01394999 0.01930761 0.008378982 0.01394999 0.01860463 0.008137643 0.01394999 0.01569235 0.01662093 0.01394999 0.01503872 0.01626724 0.01394999 0.01445221 0.01581072 0.01394999 0.01306134 0.01324063 0.01394999 0.01299995 0.01249998 0.01394999 0.01306134 0.01175928 0.01394999 0.01324379 0.01103883 0.01394999 0.01354235 0.01035821 0.01394999 0.01394885 0.009736001 0.01394999 0.02054774 0.01581072 0.01394999 0.01996123 0.01626724 0.01394999 0.01930761 0.01662093 0.01394999 0.01860463 0.01686227 0.01052498 0.01930761 0.01662093 0.01052498 0.01860463 0.01686227 0.01052498 0.01787155 0.01698458 0.01052498 0.01712834 0.01698458 0.01052498 0.01639527 0.01686227 0.01052498 0.01569235 0.01662093 0.01052498 0.01503872 0.01626724 0.01052498 0.01445221 0.01581072 0.01052498 0.01394885 0.01526391 0.01052498 0.01306134 0.01324063 0.01052498 0.01299995 0.01249998 0.01052498 0.01306134 0.01175928 0.01052498 0.01324379 0.01103883 0.01052498 0.01354235 0.01035821 0.01052498 0.01394885 0.009736001 0.01052498 0.01445221 0.009189188 0.01275587 -0.02926278 0.01218569 0.01275587 -0.02924746 0.01248818 0.01275587 -0.03160065 0.01562571 0.01275587 -0.03189605 0.01569592 0.01275587 -0.03219676 0.01573836 0.01275587 -0.03249996 0.01575249 0.01275587 -0.03294289 0.01572221 0.01275062 -0.03249996 0.009212195 0.01275062 -0.02928102 0.01183104 0.01275062 -0.02921986 0.01272433 0.01275062 -0.02921986 0.01227563 0.01275062 -0.03161293 0.01566582 0.01275062 -0.03294765 0.009242832 0.01275062 -0.03578007 0.01272433 0.01275062 -0.03294765 0.01575708 0.01275062 -0.03249996 0.01578772 0.01275062 -0.03205227 0.01575708 0.01273125 -0.03160279 0.01570206 0.01270592 -0.03188508 0.01579356 0.01273125 -0.03204715 0.01579439 0.01270592 -0.03218966 0.01583588 0.01273125 -0.03249996 0.01582539 0.01270592 -0.03129434 0.01562553 0.01270592 -0.03158706 0.01572352 0.01273125 -0.02918231 0.01227301 0.01270592 -0.02915048 0.01255917 0.01273125 -0.02918231 0.0127269 0.01270592 -0.02916979 0.01286685 0.01270592 -0.03249996 0.01584994 0.01270592 -0.03295612 0.01581877 0.01273125 -0.03295278 0.01579439 0.01270592 -0.03340381 0.01572573 0.01273125 -0.03575581 0.01317656 0.01273125 -0.03581762 0.0127269 0.01270592 -0.03584218 0.01227134 0.01273125 -0.03581762 0.01227301 0.01270592 -0.03523683 0.01056808 0.01273125 -0.03521674 0.01058226 0.01270592 -0.03494828 0.01021343 0.01273125 -0.03459858 0.009920418 0.01270592 -0.0342406 0.009637653 0.01273125 -0.03422778 0.009658694 0.01273125 -0.03295278 0.00920552 0.01270592 -0.03249996 0.009149968 0.01273125 -0.03249996 0.009174585 0.01270592 -0.03238636 0.009151816 0.01270592 -0.0346018 0.01568406 0.01270592 -0.03334891 0.01621955 0.01270592 -0.03267115 0.01631134 0.01270592 -0.03249996 0.01631522 0.01270592 -0.03132098 0.01612848 0.01270592 -0.03198784 0.01628071 0.01270592 -0.0301212 0.01548284 0.01270592 -0.03069204 0.01585966 0.01270592 -0.02922481 0.0144568 0.01270592 -0.02962684 0.01501017 0.01270592 -0.02874606 0.0131812 0.01270592 -0.02892804 0.01384055 0.01280498 -0.03462094 0.01571309 0.01280498 -0.03401309 0.01604014 0.01280498 -0.03335666 0.01625347 0.01280498 -0.0326727 0.01634609 0.01280498 -0.03198319 0.01631516 0.01280498 -0.03131026 0.01616156 0.01280498 -0.03067559 0.01589024 0.01280498 -0.03009951 0.01551002 0.01280498 -0.02960067 0.01503306 0.01280498 -0.02919495 0.01447463 0.01280498 -0.02889549 0.01385277 0.01280498 -0.02871185 0.0131874 0.01280498 -0.02864998 0.01249998 0.01280498 -0.02871185 0.0118125 0.01280498 -0.02889549 0.0111472 0.01353043 -0.02870535 0.01315063 0.01353043 -0.02871185 0.0131874 0.01353043 -0.02886992 0.01378256 0.01353043 -0.02889549 0.01385277 0.01353043 -0.02913886 0.01437759 0.01353043 -0.02919495 0.01447463 0.01353043 -0.02950453 0.01491862 0.01353043 -0.02960067 0.01503306 0.01353043 -0.0299564 0.01539003 0.01353043 -0.03009951 0.01551002 0.01353043 -0.03048139 0.01577836 0.01353043 -0.03067559 0.01589024 0.01353043 -0.03106445 0.01607233 0.01353043 -0.03131026 0.01616156 0.01353043 -0.03168886 0.01626354 0.01353043 -0.03198319 0.01631516 0.01353043 -0.03233659 0.01634651 0.01353043 -0.0326727 0.01634609 0.01353043 -0.03298896 0.01631879 0.01353043 -0.03335666 0.01625347 0.01353043 -0.03362733 0.01618123 0.01353043 -0.03401309 0.01604014 0.01353043 -0.03423327 0.01593774 0.01353043 -0.03462094 0.01571309 0.01353043 -0.02889549 0.0111472 0.01353043 -0.02886992 0.01121741 0.01353043 -0.02871185 0.0118125 0.01353043 -0.02870535 0.01184934 0.01353043 -0.02864998 0.01249998 0.01394999 -0.03158354 0.008247613 0.01394999 -0.03231537 0.008153915 0.01394999 -0.03249996 0.008149981 0.01394999 -0.0330525 0.008185207 0.01394999 -0.03377377 0.008340656 0.01394999 -0.03445833 0.008615732 0.01394999 -0.0330525 0.01681476 0.01394999 -0.03249996 0.01684999 0.01394999 -0.03231537 0.01684606 0.01394999 -0.03158354 0.01675236 0.01394999 -0.03087806 0.01653629 0.01394999 -0.03021925 0.01620411 0.01394999 -0.02962601 0.01576542 0.01394999 -0.02821254 0.01323515 0.01394999 -0.03139531 0.008137643 0.01394999 -0.03212839 0.008015334 0.01394999 -0.0328716 0.008015334 0.01394999 -0.03360468 0.008137643 0.01394999 -0.03430759 0.008378982 0.01394999 -0.03496122 0.008732736 0.01394999 -0.0328716 0.01698458 0.01394999 -0.0294522 0.01581072 0.01394999 -0.03003871 0.01626724 0.01394999 -0.03069233 0.01662093 0.01394999 -0.03139531 0.01686227 0.01394999 -0.03212839 0.01698458 0.01137995 0.02192723 0.01482361 0.01187998 0.02192723 0.01482361 0.01137995 0.02149718 0.0155037 0.01187998 0.02149718 0.0155037 0.01137995 0.0209636 0.016106 0.01187998 0.0209636 0.016106 0.01137995 0.0137574 0.00918436 0.01187998 0.0137574 0.00918436 0.01137995 0.01433777 0.008626937 0.01187998 0.01433777 0.008626937 0.01137995 0.01499998 0.008169829 0.01187998 0.01499998 0.008169829 0.01137995 0.01572692 0.007824897 0.01187998 0.01572692 0.007824897 0.01137995 0.01649987 0.007601022 0.01137995 -0.02775728 0.01408332 0.01187998 -0.02775728 0.01408332 0.01137995 -0.02807271 0.01482361 0.01187998 -0.02807271 0.01482361 0.01137995 -0.02850276 0.0155037 0.01187998 -0.02850276 0.0155037 0.01137995 -0.02903634 0.016106 0.01187998 -0.02903634 0.016106 0.01137995 -0.02965962 0.01661491 0.01137995 -0.03270131 0.01749593 0.01187998 -0.03270131 0.01749593 0.01137995 -0.03350007 0.01739895 0.01187998 -0.03350007 0.01739895 0.01137995 -0.03427302 0.01717507 0.01187998 -0.03427302 0.01717507 0.01137995 -0.03499996 0.01683008 0.01137995 -0.03672593 0.009827613 0.01187998 -0.03672593 0.009827613 0.01137995 -0.03624254 0.00918436 0.01187998 -0.03624254 0.00918436 0.01137995 -0.03566217 0.008626937 0.01187998 -0.03566217 0.008626937 0.01137995 -0.03499996 0.008169829 0.01187998 -0.03499996 0.008169829 0.01137995 -0.03427302 0.007824897 0.01187998 -0.03427302 0.007824897 0.01137995 -0.03350007 0.007601022 0.01187998 -0.03350007 0.007601022 0.01137995 -0.03270131 0.007504045 0.01187998 -0.03270131 0.007504045 0.01137995 -0.02775728 0.01091665 0.01187998 -0.02775728 0.01091665 0.01137995 -0.0275647 0.01169794 0.004889965 0.02257543 0.009557723 0.004889965 -0.02705353 0.01721411 0.004889965 -0.02705353 0.01695728 0.004889965 -0.03249996 0.008005797 0.004889965 -0.00597912 0.01375764 0.004889965 -0.00597912 0.01209998 0.004889965 -0.00597912 0.01194995 0.004889965 -0.00597912 0.01111245 0.004889965 -0.00597912 0.009557723 0.004889965 -0.00597912 0.008005797 0.004889965 0.0241 0.008005797 0.004889965 0.02257543 0.008005797 0.004889965 0.01425677 0.008005797 0.004889965 -0.02007102 0.01375764 0.004889965 -0.02705353 0.01375764 0.004889965 -0.02007102 0.01209998 0.004889965 -0.02007102 0.01194995 0.004889965 -0.02007102 0.008005797 0.004889965 -0.03249996 0.007785856 0.004889965 -0.03750091 0.008005797 0.004889965 -0.03750091 0.007785856 0.004889965 0.02049314 0.01670026 0.004889965 0.02049314 0.01639956 0.004889965 0.02049314 0.01695728 0.004889965 0.02049314 0.01721411 0.004889965 0.01425677 0.01639956 0.004889965 0.01425677 0.01670026 0.004889965 0.01425677 0.01695728 0.004889965 0.01425677 0.01721411 0.004889965 -0.02779996 0.01655 0.004889965 -0.02778619 0.01661354 0.004889965 -0.03249996 0.01670026 0.004889965 -0.0277372 0.01667195 0.004889965 -0.02705353 0.01639956 0.004889965 -0.02705353 0.01670026 0.004889965 -0.02762109 0.01640278 0.004889965 -0.02768486 0.01640409 0.004889965 -0.03249996 0.01639956 0.004889965 -0.02774184 0.01643151 0.004889965 -0.02778834 0.0164901 0.004889965 -0.03249996 0.01695728 0.004889965 -0.03249996 0.01721411 0.004889965 -0.03750091 0.01670026 0.004889965 -0.03721147 0.01660948 0.004889965 -0.03719997 0.01655 0.004889965 -0.03750091 0.01639956 0.004889965 -0.03732109 0.01640278 0.004889965 -0.03750091 0.01695728 0.004889965 -0.03750091 0.01721411 0.004889965 -0.00597912 0.0162447 0.004889965 -0.00597912 0.01539498 0.004889965 -0.02007102 0.0162447 0.004889965 -0.02705353 0.0162447 0.004889965 -0.02007102 0.01539498 0.004889965 -0.02705353 0.01539498 0.004889965 0.01425677 0.01375764 0.004889965 0.01425677 0.009557723 0.004889965 0.01205354 0.01539498 0.004889965 0.01205354 0.01375764 0.004889965 0.01571273 0.009339988 0.004889965 0.01743292 0.008994638 0.004889965 0.01672935 0.009027779 0.004889965 0.01608407 0.009186804 0.004889965 0.01279997 0.009349942 0.004889965 -0.02007102 0.01111245 0.004889965 -0.02007102 0.01076275 0.004889965 -0.02007102 0.01021414 0.004889965 -0.02007102 0.009557723 0.004889965 -0.02705353 0.01076275 0.004889965 -0.03249996 0.009557723 0.004889965 -0.03249996 0.009632468 0.004889965 -0.03249996 0.01016408 0.004889965 -0.03249996 0.01021414 0.004889965 -0.03249996 0.01076275 0.004889965 -0.03249996 0.01111245 0.004889965 -0.03249996 0.01194995 0.004889965 -0.03249996 0.01375764 0.004889965 -0.03249996 0.01539498 0.004889965 -0.03249996 0.0162447 0.004889965 -0.03719997 0.009349942 0.004889965 -0.03732258 0.009497463 0.004889965 -0.03726369 0.009472668 0.004889965 -0.03721421 0.009415388 0.004889965 -0.03750091 0.009557723 0.004889965 -0.0372132 0.009287536 0.004889965 -0.03725707 0.009232342 0.004889965 -0.03750091 0.0162447 0.004889965 -0.03750091 0.01539498 0.004889965 -0.03750091 0.01209998 0.004889965 -0.03750091 0.01194995 0.004889965 -0.03750091 0.01111245 0.004889965 -0.03750091 0.01076275 0.004889965 -0.03750091 0.01021414 0.004889965 -0.03750091 0.01016408 0.004889965 -0.03750091 0.009632468 0.004889965 -0.006507813 0.007776379 0.004889965 -0.01649212 0.007776379 0.01128 0.02274996 0.005999982 0.01128 0.01020008 0.005999982 0.004229962 0.01677626 0.005999982 0.01217997 -0.02027249 0.01899999 0.01217997 0.02258473 0.01899999 0.01217997 -0.03758674 0.01899999 0.01217997 -0.02027249 0.005999982 0.01217997 -0.03758674 0.005999982 0.01217997 0.02258473 0.005999982 0.01192998 -0.02780151 0.0142101 0.01217997 -0.02780151 0.0142101 0.01192998 -0.02866977 0.01571393 0.01217997 -0.02866977 0.01571393 0.01192998 -0.02999997 0.01683008 0.01217997 -0.02999997 0.01683008 0.01217997 -0.0316317 0.01742398 0.01217997 -0.03336822 0.01742398 0.01217997 -0.03719842 0.0142101 0.01217997 -0.03749996 0.01249998 0.01192998 -0.03633022 0.009286046 0.01217997 -0.03633022 0.009286046 0.01192998 -0.03499996 0.008169829 0.01217997 -0.03499996 0.008169829 0.01192998 -0.03336822 0.007575929 0.01217997 -0.03336822 0.007575929 0.01192998 -0.0316317 0.007575929 0.01217997 -0.0316317 0.007575929 0.01120084 -0.008451581 0.01527899 0.01070088 -0.008451581 0.01527899 0.01120084 -0.007927596 0.01456248 0.01070088 -0.007653534 0.0139901 0.01120084 -0.007653534 0.0139901 0.01120084 -0.008583128 0.0154168 0.01120084 -0.009437441 0.01607233 0.01070088 -0.009661316 0.01619249 0.01120084 -0.009661316 0.01619249 0.01070088 -0.01111936 0.0166074 0.01120084 -0.01043236 0.01648443 0.01120084 -0.0115 0.01662498 0.01120084 -0.01256757 0.01648443 0.01070088 -0.01398587 0.01579177 0.01120084 -0.0135625 0.01607233 0.01120084 -0.01398587 0.01579177 0.01120084 -0.01441681 0.0154168 0.01070088 -0.01500713 0.0146715 0.01120084 -0.01500713 0.0146715 0.01120084 -0.01507234 0.01456248 0.01070088 -0.01555472 0.01325792 0.01120084 -0.01548439 0.01356762 0.01120084 -0.01555472 0.01325792 0.01120084 -0.015625 0.01249998 0.01070088 -0.01555472 0.01174199 0.01120084 -0.01555472 0.01174199 0.01120084 -0.01548439 0.01143234 0.01070088 -0.01500713 0.01032847 0.01120084 -0.01507234 0.01043748 0.01120084 -0.01500713 0.01032847 0.01070088 -0.01398587 0.009208142 0.01120084 -0.01441681 0.009583175 0.01120084 -0.01398587 0.009208142 0.01120084 -0.0135625 0.008927643 0.01070088 -0.01262885 0.008532464 0.01120084 -0.009661316 0.00880742 0.01070088 -0.009661316 0.00880742 0.01120084 -0.01043236 0.008515536 0.01120084 -0.009437441 0.008927643 0.01120084 -0.008583128 0.009583175 0.01070088 -0.008451581 0.009720981 0.01120084 -0.008451581 0.009720981 0.01070088 -0.007653534 0.01100987 0.01120084 -0.007927596 0.01043748 0.01120084 -0.007653534 0.01100987 0.01120084 -0.007515549 0.01143234 0.01070088 -0.007374942 0.01249998 0.01120084 -0.007374942 0.01249998 0.01120084 -0.007515549 0.01356762 0.01166212 -0.01561152 0.01100349 0.01166212 -0.01528924 0.01031225 0.01146328 -0.01513004 0.01040416 0.01146328 -0.009404122 0.008869886 0.01146328 -0.01041507 0.008451163 0.01166212 -0.01036751 0.008273601 0.01146328 -0.01041507 0.01654881 0.01146328 -0.009404122 0.01613003 0.01166212 -0.009312272 0.01628923 0.01166212 -0.008406043 0.01559388 0.01166212 -0.008148193 0.01531243 0.01146328 -0.00853604 0.01546394 0.01166212 -0.007710695 0.01468771 0.01146328 -0.007869899 0.0145958 0.01166212 -0.007388412 0.01399648 0.01146328 -0.007451176 0.01358485 0.01146328 -0.007451176 0.01141512 0.01166212 -0.009312272 0.008710741 0.01166212 -0.008406043 0.009406089 0.01146328 -0.00853604 0.009536027 0.01166212 -0.008148193 0.009687483 0.01146328 -0.007869899 0.01040416 0.01166212 -0.007710695 0.01031225 0.01146328 -0.0144639 0.009536027 0.01166212 -0.01485174 0.009687483 0.01166212 -0.01459389 0.009406089 0.01146328 -0.01359581 0.008869886 0.01166212 -0.01368767 0.008710741 0.01166212 -0.01572632 0.01136749 0.01146328 -0.01554882 0.01141512 0.01166212 -0.01587539 0.01249998 0.01146328 -0.01569163 0.01249998 0.01166212 -0.01572632 0.01363241 0.01146328 -0.01554882 0.01358485 0.01166212 -0.01561152 0.01399648 0.01166212 -0.01528924 0.01468771 0.01146328 -0.01513004 0.0145958 0.01146328 -0.0144639 0.01546394 0.01166212 -0.01485174 0.01531243 0.01146328 -0.01258486 0.01654881 0.01166212 -0.01263242 0.01672631 0.01146328 -0.01359581 0.01613003 0.01166212 -0.01368767 0.01628923 0.01166212 -0.01459389 0.01559388 0.01166212 -0.01036751 0.01672631 0.01166212 -0.01074016 0.01680892 0.01146328 -0.0115 0.01669162 0.01166212 -0.0115 0.01687544 0.01166212 -0.01225978 0.01680892 0.01205897 -0.008759856 0.008333802 0.01205897 -0.007872879 0.009078025 0.01205897 -0.007680058 0.009294688 0.01205897 -0.01424008 0.008333802 0.01205897 -0.01647806 0.01221001 0.01205897 -0.01627701 0.01106983 0.01205897 -0.01618576 0.01079446 0.01205897 -0.01581841 0.01000672 0.01205897 -0.01531988 0.009294688 0.01205897 -0.01512706 0.009078025 0.01205897 -0.01618576 0.01420545 0.01205897 -0.01641076 0.01336586 0.01205897 -0.01648652 0.01249998 0.01205897 -0.01373791 0.01695609 0.01205897 -0.01399326 0.0168184 0.01205897 -0.01470524 0.01631987 0.01205897 -0.01531988 0.01570522 0.01205897 -0.01549977 0.01547771 0.01205897 -0.01607865 0.01447504 0.01205897 -0.009262025 0.01695609 0.01205897 -0.01034998 0.0173521 0.01205897 -0.01063406 0.01741075 0.01205897 -0.0115 0.01748651 0.01205897 -0.01236587 0.01741075 0.01205897 -0.01264995 0.0173521 0.01205897 -0.007680058 0.01570522 0.01205897 -0.008294701 0.01631987 0.01205897 -0.009006738 0.0168184 0.01205897 -0.006921291 0.01447504 0.01205897 -0.007500171 0.01547771 0.01214909 -0.01625818 0.01455247 0.01214909 -0.01565659 0.01559442 0.01214909 -0.01483088 0.01646959 0.01214909 -0.01382565 0.01713079 0.01214909 -0.01660323 0.01339983 0.01214909 -0.0166732 0.01219868 0.01214909 -0.01646429 0.01101374 0.01214909 -0.01526921 0.008943855 0.01214909 -0.01598769 0.009908974 0.01217997 -0.01087367 0.00714147 0.01217997 -0.00965476 0.007430315 0.01214909 -0.007730722 0.008943855 0.01217997 -0.007172524 0.01572161 0.01214909 -0.007343351 0.01559442 0.01217997 -0.008032143 0.01663279 0.01214909 -0.008169054 0.01646959 0.01217997 -0.009078681 0.0173211 0.01214909 -0.009174287 0.01713079 0.01217997 -0.01025581 0.01774954 0.01214909 -0.01030492 0.0175423 0.01217997 -0.0115 0.01789498 0.01214909 -0.0115 0.01768195 0.01217997 -0.01274412 0.01774954 0.01214909 -0.01269501 0.0175423 0.01217997 -0.01392126 0.0173211 0.01217997 -0.01496779 0.01663279 0.01217997 -0.01582741 0.01572161 0.01217997 -0.01645374 0.01463681 0.01217997 -0.01681303 0.01343679 0.01217997 -0.01688587 0.01218628 0.01217997 -0.01666831 0.01095265 0.01217997 -0.01617217 0.00980246 0.01217997 -0.01542413 0.008797705 0.01217997 0.02219843 0.0142101 0.01192998 0.02133017 0.01571393 0.01217997 0.02133017 0.01571393 0.01192998 0.01999998 0.01683008 0.01217997 0.01999998 0.01683008 0.01217997 0.01836824 0.01742398 0.01217997 0.01663172 0.01742398 0.01217997 0.01499998 0.01683008 0.01217997 0.01366972 0.01571393 0.01192998 0.01366972 0.009286046 0.01217997 0.01366972 0.009286046 0.01192998 0.01499998 0.008169829 0.01217997 0.01499998 0.008169829 0.01192998 0.01663172 0.007575929 0.01217997 0.01663172 0.007575929 0.01217997 0.01836824 0.007575929 0.01217997 -0.02372366 0.01222497 0.01217997 -0.023925 0.01202368 0.01217997 -0.02027249 0.009724974 0.01217997 -0.02419996 0.01194995 0.01217997 -0.02372366 0.012775 0.01217997 -0.02364999 0.01249998 0.01217997 -0.02507495 0.01297628 0.01217997 -0.03935098 0.01723575 0.01217997 0.009023666 0.012775 0.01217997 0.009224951 0.01297628 0.01217997 0.009499967 0.01304996 0.01217997 0.009774982 0.01297628 0.01217997 0.009499967 0.01194995 0.01217997 0.009774982 0.01202368 0.01217997 0.02434897 0.01723575 0.01132172 0.03242039 0.01193559 0.01132172 0.03249996 0.01193004 0.01127755 0.03249996 0.01202106 0.01127755 0.03243309 0.01202577 0.01127755 0.03235888 0.01204234 0.01132172 0.03233206 0.01195532 0.01127755 0.03228819 0.01207047 0.01132172 0.03224796 0.01198875 0.01127755 0.03222286 0.01210939 0.01132172 0.03217017 0.01203507 0.01127755 0.03216457 0.01215815 0.01132172 0.03210073 0.01209318 0.01127755 0.03211468 0.01221555 0.01132172 0.03204137 0.01216149 0.01127755 0.03207451 0.01228016 0.01132172 0.03199356 0.01223832 0.01127755 0.03204506 0.01235026 0.01132172 0.03195858 0.01232177 0.01127755 0.03202712 0.01242417 0.01132172 0.03193718 0.01240974 0.01127755 0.0320211 0.01249998 0.01132172 0.03192996 0.01249998 0.01127755 0.03202712 0.0125758 0.01132172 0.03193718 0.01259016 0.01127755 0.03204506 0.01264965 0.01132172 0.03195858 0.01267814 0.01127755 0.03207451 0.01271981 0.01132172 0.03199356 0.01276159 0.01127755 0.03211468 0.01278436 0.01132172 0.03204137 0.01283848 0.01127755 0.03216457 0.01284176 0.01132172 0.03210073 0.01290678 0.01127755 0.03222286 0.01289057 0.01132172 0.03217017 0.01296484 0.01127755 0.03228819 0.01292949 0.01132172 0.03224796 0.01301121 0.01127755 0.03235888 0.01295763 0.01132172 0.03233206 0.01304465 0.01127755 0.03243309 0.01297414 0.01132172 0.03242039 0.01306432 0.01127755 0.03249996 0.01297885 0.01132172 0.03249996 0.01306992 0.01127755 0.03256684 0.01202577 0.01132172 0.0325796 0.01193559 0.01132172 0.03266793 0.01195532 0.01127755 0.03264105 0.01204234 0.01132172 0.03275203 0.01198875 0.01127755 0.03271174 0.01207041 0.01132172 0.03282976 0.01203507 0.01127755 0.03277707 0.01210939 0.01132172 0.0328992 0.01209318 0.01127755 0.03283542 0.01215815 0.01132172 0.03295856 0.01216149 0.01127755 0.03288531 0.01221555 0.01132172 0.03300637 0.01223832 0.01127755 0.03292542 0.01228016 0.01132172 0.03304141 0.01232177 0.01127755 0.03295487 0.01235026 0.01132172 0.03306275 0.01240974 0.01127755 0.03297287 0.01242417 0.01132172 0.03306996 0.01249998 0.01127755 0.03297889 0.01249998 0.01132172 0.03306275 0.01259022 0.01127755 0.03297287 0.0125758 0.01132172 0.03304141 0.01267814 0.01127755 0.03295487 0.01264965 0.01132172 0.03300637 0.01276159 0.01127755 0.03292542 0.01271981 0.01132172 0.03295856 0.01283848 0.01127755 0.03288531 0.01278436 0.01132172 0.0328992 0.01290678 0.01127755 0.03283542 0.01284176 0.01132172 0.03282976 0.01296484 0.01127755 0.03277707 0.01289057 0.01132172 0.03275203 0.01301121 0.01127755 0.03271174 0.01292949 0.01132172 0.03266793 0.01304465 0.01127755 0.03264105 0.01295763 0.01132172 0.0325796 0.01306432 0.01127755 0.03256684 0.01297414 0.0112915 0.03252428 0.01278996 0.01130503 0.03251898 0.0127266 0.0113157 0.03251349 0.01266086 0.01130503 0.03251898 0.01227331 0.01130187 0.03249996 0.01225638 0.0112915 0.03252428 0.01220995 0.0112701 0.03249996 0.01287305 0.01127135 0.03276485 0.0127564 0.01124382 0.03280359 0.0128504 0.01127135 0.03273719 0.01278221 0.01124382 0.0327506 0.01289004 0.01127135 0.03270709 0.01280498 0.01124382 0.03271979 0.01290822 0.01127135 0.03267478 0.01282459 0.01124382 0.03269255 0.01292175 0.01127135 0.03264063 0.0128408 0.01124382 0.03263062 0.01294481 0.01127135 0.03260499 0.01285338 0.01124382 0.03256595 0.01295888 0.01127135 0.03256827 0.01286226 0.01127135 0.03253078 0.01286739 0.01127135 0.0328682 0.01251888 0.01124382 0.03295886 0.01256597 0.01127135 0.03286433 0.01255649 0.01124382 0.03294485 0.01263058 0.01127135 0.03285664 0.01259344 0.01124382 0.03293406 0.01266282 0.01127135 0.03284513 0.0126295 0.01124382 0.03292173 0.01269257 0.01127135 0.03283011 0.01266413 0.01124382 0.03289002 0.01275062 0.01127135 0.03281152 0.0126971 0.01124382 0.03286433 0.01278668 0.01127135 0.0327897 0.01272797 0.01124382 0.03285038 0.01280361 0.01124382 0.03283309 0.01282244 0.01127135 0.0327897 0.012272 0.01124382 0.03289002 0.01224929 0.01127135 0.03281152 0.01230287 0.01124382 0.03292173 0.01230734 0.01127135 0.03283011 0.01233577 0.01124382 0.03293406 0.01233708 0.01127135 0.03284513 0.01237046 0.01124382 0.03294485 0.01236933 0.01127135 0.03285658 0.01240646 0.01124382 0.03295886 0.012434 0.01127135 0.03286433 0.01244348 0.01124382 0.03296297 0.0124762 0.01127135 0.0328682 0.01248109 0.01124382 0.03296363 0.01249998 0.01124382 0.03296297 0.01252371 0.01127398 0.03249996 0.01214075 0.01124382 0.03249996 0.01203632 0.01127135 0.03253078 0.01213258 0.01124382 0.03256595 0.01204103 0.01127135 0.03256821 0.01213765 0.01124382 0.03263056 0.01205509 0.01127135 0.03260499 0.01214653 0.01124382 0.03269255 0.01207822 0.01127135 0.03264063 0.01215916 0.01124382 0.03271979 0.01209175 0.01127135 0.03267478 0.01217532 0.01124382 0.0327506 0.01210993 0.01127135 0.03270709 0.01219493 0.01124382 0.03280359 0.01214957 0.01127135 0.03273719 0.01221776 0.01124382 0.03283309 0.01217746 0.01127135 0.03276485 0.0122435 0.01124382 0.03285038 0.01219636 0.01124382 0.03286433 0.01221328 0.01132202 0.03252995 0.01239901 0.01132202 0.03260517 0.01250535 0.01132202 0.03255915 0.01258713 0.01132202 0.03254991 0.01259273 0.01132202 0.03254014 0.01259732 0.01132202 0.03250879 0.01260495 0.0113157 0.03252989 0.01234126 0.0113157 0.03254598 0.01234519 0.0113157 0.0325765 0.01235777 0.0113157 0.03259068 0.01236635 0.0113157 0.03261601 0.01238763 0.0113157 0.03262686 0.01240015 0.0113157 0.03263646 0.01241362 0.0113157 0.03264456 0.01242804 0.0113157 0.03265619 0.01245903 0.0113157 0.03266125 0.0124917 0.0113157 0.03266125 0.01250827 0.0113157 0.03265619 0.01254093 0.0113157 0.03264456 0.01257187 0.0113157 0.03263646 0.01258629 0.0113157 0.03262686 0.01259982 0.0113157 0.03260385 0.0126236 0.0113157 0.03259068 0.01263356 0.0113157 0.03257656 0.01264214 0.0113157 0.03254598 0.01265478 0.0113157 0.03252989 0.01265865 0.01130503 0.0325421 0.01227647 0.01130503 0.03256475 0.01228195 0.01130503 0.03258675 0.0122897 0.01130503 0.03260779 0.01229971 0.01130503 0.03262776 0.01231181 0.01130503 0.03264635 0.01232588 0.01130503 0.0326634 0.01234179 0.01130503 0.03267872 0.01235932 0.01130503 0.03269219 0.01237839 0.01130503 0.03270363 0.01239871 0.01130503 0.03271293 0.01242005 0.01130503 0.03271996 0.01244229 0.01130503 0.03272473 0.01246511 0.01130503 0.03272712 0.0124883 0.01130503 0.03272712 0.01251161 0.01130503 0.03272473 0.01253479 0.01130503 0.03271996 0.01255762 0.01130503 0.03271293 0.01257985 0.01130503 0.03270363 0.01260125 0.01130503 0.03269219 0.01262158 0.01130503 0.03267872 0.01264059 0.01130503 0.0326634 0.01265817 0.01130503 0.03264635 0.01267409 0.01130503 0.03262776 0.01268815 0.01130503 0.03260779 0.01270025 0.01130503 0.03258675 0.01271021 0.01130503 0.03256475 0.01271802 0.01130503 0.0325421 0.0127235 0.0112915 0.03255385 0.012214 0.0112915 0.03258287 0.01222103 0.0112915 0.03261101 0.01223093 0.0112915 0.03263795 0.01224374 0.0112915 0.03266346 0.01225918 0.0112915 0.03268724 0.01227718 0.0112915 0.03270906 0.01229757 0.0112915 0.03272867 0.01232004 0.0112915 0.03274589 0.01234436 0.0112915 0.03276056 0.0123704 0.0112915 0.03277242 0.01239776 0.0112915 0.03278148 0.01242619 0.0112915 0.03278756 0.0124554 0.0112915 0.0327906 0.01248502 0.0112915 0.0327906 0.01251488 0.0112915 0.03278756 0.01254457 0.0112915 0.03278148 0.01257377 0.0112915 0.03277242 0.01260221 0.0112915 0.03276056 0.01262956 0.0112915 0.03274589 0.01265555 0.0112915 0.03272867 0.01267993 0.0112915 0.03270906 0.0127024 0.0112915 0.03268724 0.01272273 0.0112915 0.03266346 0.01274073 0.0112915 0.03263795 0.01275622 0.0112915 0.03261101 0.01276898 0.0112915 0.03258287 0.01277893 0.0112915 0.03255385 0.01278597 0.01124382 0.03249996 0.01296359 0.01104176 0.03299742 0.01004999 0.01134175 0.03299742 0.01004999 0.01104176 0.03295505 0.01020705 0.01134175 0.03295505 0.01020705 0.01104176 0.03286451 0.01034218 0.01134175 0.03286451 0.01034218 0.01104176 0.03276783 0.01042217 0.01134175 0.03273534 0.01044106 0.01134175 0.03213542 0.01034218 0.01134175 0.03226459 0.01044106 0.01134175 0.03241866 0.01049333 0.01134175 0.03258132 0.01049333 0.01134175 0.0320025 0.01004999 0.01134175 0.03204488 0.01020705 0.01134175 0.03004997 0.01200246 0.01104176 0.03020703 0.0120449 0.01134175 0.03020703 0.0120449 0.01104176 0.03034216 0.01213544 0.01134175 0.03034216 0.01213544 0.01104176 0.03042221 0.01223212 0.01134175 0.0304411 0.01226454 0.01134175 0.03034216 0.01286453 0.01104176 0.03042221 0.01276779 0.01134175 0.0304411 0.01273536 0.01104176 0.0304411 0.01273536 0.01134175 0.03049331 0.01258128 0.01104176 0.03049331 0.01258128 0.01134175 0.03049331 0.01241862 0.01104176 0.03049331 0.01241862 0.01134175 0.03004997 0.01299744 0.01134175 0.03020703 0.01295506 0.01104176 0.03020703 0.01295506 0.01134175 0.03494995 0.01299744 0.01134175 0.03477972 0.01294887 0.01134175 0.03463715 0.01284402 0.01134175 0.03453999 0.01269602 0.01134175 0.03460651 0.01219153 0.01134175 0.03452366 0.01234799 0.01134175 0.03450053 0.01252347 0.01134175 0.03489524 0.01201111 0.01134175 0.03473865 0.01207375 0.01134175 0.03191 0.01249998 0.01134175 0.03193885 0.01231765 0.01134175 0.03202265 0.0121532 0.01134175 0.03215318 0.01202267 0.01134175 0.03231763 0.01193886 0.01134175 0.03249996 0.01190996 0.01134175 0.03268229 0.01193886 0.01132172 0.03284674 0.01202267 0.01134175 0.03284674 0.01202267 0.01134175 0.03297728 0.0121532 0.01134175 0.03306108 0.01231765 0.01132172 0.03308993 0.01249998 0.01134175 0.03308993 0.01249998 0.01132172 0.03306108 0.01268231 0.01134175 0.03306108 0.01268231 0.01134175 0.03297728 0.01284676 0.01134175 0.03284674 0.0129773 0.01134175 0.03268229 0.0130611 0.01134175 0.03231763 0.0130611 0.01134175 0.03215318 0.0129773 0.01134175 0.03202265 0.01284676 0.01134175 0.03193885 0.01268231 0.01134175 0.03169322 0.01013374 0.01134175 0.03025633 0.01139724 0.01134175 0.03041577 0.01111936 0.01134175 0.03055679 0.01120042 0.01134175 0.03360271 0.01025635 0.01134175 0.03388059 0.01041579 0.01134175 0.03379493 0.01056951 0.01134175 0.03139722 0.01025635 0.01134175 0.03013372 0.01169323 0.01134175 0.03330671 0.01486623 0.01134175 0.03299742 0.01494997 0.01134175 0.03295505 0.01479291 0.01134175 0.03013372 0.01330673 0.01134175 0.03330671 0.01013374 0.01134175 0.03376787 0.01074337 0.01134175 0.03360271 0.01474362 0.01134175 0.03111934 0.01041579 0.01134175 0.0312004 0.01055681 0.01134175 0.03123193 0.01071643 0.01134175 0.03071641 0.01123195 0.01134175 0.03087764 0.01121056 0.01134175 0.03258132 0.01450663 0.01134175 0.03273534 0.01455885 0.01134175 0.03378939 0.01412248 0.01134175 0.03376805 0.01428365 0.01134175 0.03486615 0.01330685 0.01134175 0.03403371 0.01117408 0.01134175 0.03389513 0.0110656 0.01134175 0.03380268 0.01091587 0.01134175 0.03437709 0.01122009 0.01134175 0.03453934 0.01115196 0.01134175 0.0312106 0.01087766 0.01134175 0.03113853 0.01102352 0.01134175 0.03102356 0.01113855 0.01134175 0.0344429 0.01379996 0.01134175 0.03428339 0.01376843 0.01134175 0.03412216 0.01378977 0.01134175 0.03397637 0.01386171 0.01134175 0.03386139 0.01397669 0.01134175 0.03420132 0.01122778 0.01134175 0.03025633 0.01360273 0.01134175 0.03388065 0.01458412 0.01134175 0.03379958 0.01444315 0.01134175 0.03286451 0.01465779 0.01134175 0.03474348 0.01360297 0.01134175 0.0345838 0.01388102 0.01134175 0.03041577 0.01388061 0.01134175 0.03055679 0.01379954 0.01104176 0.03273534 0.01455885 0.01104176 0.03299742 0.01494997 0.01104176 0.03295505 0.01479291 0.01139044 0.03216683 0.009330332 0.01011675 0.03249996 0.0093351 0.01011675 0.03179574 0.009414494 0.01011675 0.03112679 0.009648561 0.01139044 0.03151512 0.009468853 0.01139044 0.03179079 0.009392797 0.01139044 0.03051286 0.01000821 0.01139044 0.03090643 0.009739875 0.01139044 0.03111714 0.009628534 0.0113905 0.03151512 0.01553112 0.01011675 0.03249996 0.01566487 0.0113905 0.03216683 0.01566964 0.0113905 0.03179079 0.01560717 0.01011675 0.03320419 0.01558548 0.0113905 0.03283309 0.01566964 0.0113905 0.03249996 0.0156871 0.01011675 0.03387314 0.01535141 0.0113905 0.03348481 0.01553112 0.0113905 0.03320914 0.01560717 0.0113905 0.03463256 0.01486843 0.0113905 0.03448706 0.01499176 0.01011675 0.03447324 0.01497435 0.0113905 0.03409355 0.0152601 0.0113905 0.03388279 0.01537144 0.0113905 0.0348196 0.01468563 0.01011675 0.03497433 0.01447325 0.0113905 0.03499174 0.01448708 0.0113905 0.03541153 0.01379626 0.0113905 0.03537142 0.01388281 0.01011675 0.03535139 0.01387315 0.0113905 0.03523635 0.01413393 0.0113905 0.0350784 0.0143733 0.0113905 0.03552341 0.01350808 0.01011675 0.03558546 0.01320421 0.0113905 0.03560715 0.01320916 0.01011675 0.03566485 0.01249998 0.0113905 0.0356695 0.01283395 0.0113905 0.03561741 0.01316261 0.0113905 0.03560715 0.01179081 0.0113905 0.03561741 0.01183736 0.01011675 0.03558546 0.01179575 0.0113905 0.03566956 0.01216644 0.0113905 0.03568708 0.01249998 0.0113905 0.03552323 0.01149123 0.01011675 0.03497433 0.01052671 0.01139044 0.03481996 0.01031476 0.01011675 0.03447324 0.01002562 0.01139044 0.03463256 0.01013153 0.01011675 0.03387314 0.009648561 0.01139044 0.03409349 0.009739875 0.01139044 0.03448706 0.01000821 0.01011675 0.03320419 0.009414494 0.01139044 0.03348481 0.009468853 0.01139044 0.03388279 0.009628534 0.01139044 0.03249996 0.009312868 0.01139044 0.03283309 0.009330332 0.01139044 0.03320914 0.009392797 0.01212996 0.03368628 0.01615107 0.01212996 0.03209871 0.008682012 0.01212996 0.03290128 0.008682012 0.01212996 0.03368628 0.008848845 0.01212996 0.03441947 0.0091753 0.01212996 0.03506875 0.009647011 0.01212996 0.0360071 0.01093852 0.01212996 0.03625506 0.01170182 0.01212996 0.03633898 0.01249998 0.01212996 0.03625506 0.01329815 0.01212996 0.0360071 0.01406145 0.01212996 0.03506875 0.0153529 0.01212996 0.03441947 0.01582467 0.01212996 0.03290128 0.01631796 0.01212996 0.03209871 0.01631796 0.01212996 0.03131365 0.01615107 0.01212996 0.02993118 0.009647011 0.01212996 0.03058046 0.0091753 0.01212996 0.03131365 0.008848845 0.01212996 0.03829997 0.01765596 0.01212996 0.03228157 0.00743395 0.01212996 0.03416651 0.008217573 0.01212996 0.03363347 0.008217573 0.01212996 0.0326575 0.007811844 -0.002637386 0.01589995 0.002139449 8.62532e-4 0.01589995 0.002078354 -0.002637386 0.01589995 0.02286052 -0.003665447 0.03249996 0.02399998 -0.003665447 0.03249996 0.000999987 -0.003665447 0.03547638 0.02360814 -0.003665447 0.03547638 0.001391828 -0.003665447 0.03824996 0.002540707 -0.003665447 0.04063171 0.004368245 -0.003665447 0.04245924 0.006749987 -0.003665447 0.04360812 0.00952357 -0.003665447 0.04399996 0.01249998 0.01409494 0.01378768 0.01621228 0.012995 0.01264959 0.01450908 0.01409494 0.01264959 0.01450908 0.012995 0.01224994 0.01249998 0.01409494 0.01224994 0.01249998 0.012995 0.01264959 0.01049089 0.01409494 0.01264959 0.01049089 0.012995 0.01378768 0.008787631 0.01409494 0.01378768 0.008787631 0.01264494 0.0121175 0.0129345 0.012115 0.0121175 0.01206547 0.01264494 0.0121175 0.01206547 0.012115 0.01225686 0.01120769 0.01264494 0.01225686 0.01120769 0.012115 0.01253211 0.01038336 0.01264494 0.01253211 0.01038336 0.012115 0.01293593 0.009613871 0.01264494 0.01293593 0.009613871 0.012115 0.01345801 0.008919119 0.01264494 0.01345801 0.008919119 0.012115 0.01408475 0.008317112 0.01264494 0.01408475 0.008317112 0.012115 0.01479995 0.007823407 0.01264494 0.01479995 0.007823407 0.01269495 0.01345801 0.008919119 0.012995 -0.02619999 0.006799995 0.012995 -0.02709996 0.01249998 0.012995 -0.02746462 0.01054924 0.01275587 0.01977461 0.01017516 0.01275587 0.01425504 0.01272195 0.01275587 0.01425504 0.01227802 0.01275062 0.01957482 0.009949624 0.01275062 0.01990276 0.01025593 0.01275062 0.02078008 0.01272433 0.01275062 0.02078008 0.01227563 0.01275062 0.01421988 0.01227563 0.01273125 0.02081763 0.01227301 0.01270592 0.02084946 0.01255917 0.01273125 0.02081763 0.0127269 0.01270592 0.02083015 0.01286685 0.01273125 0.0199303 0.01023018 0.01270592 0.02021884 0.01054173 0.01273125 0.0192278 0.009658694 0.01270592 0.01957988 0.009873211 0.01273125 0.0195986 0.009920418 0.01270592 0.01981365 0.01007723 0.01270592 0.02002823 0.01030182 0.01270592 0.01906764 0.009538948 0.01270592 0.01933115 0.009693861 0.01273125 0.01506966 0.01023018 0.01270592 0.0153858 0.009901344 0.01273125 0.01540136 0.009920418 0.01270592 0.01704382 0.009181201 0.01273125 0.01704716 0.00920552 0.01270592 0.01749998 0.009149968 0.01273125 0.01749998 0.009174585 0.01270592 0.01761358 0.009151816 0.01270592 0.01382225 0.01148498 0.01270592 0.01370006 0.01215797 0.01270592 0.01370006 0.01284199 0.01270592 0.01382225 0.01351499 0.01270592 0.01665103 0.01621955 0.01270592 0.01441335 0.01025742 0.01270592 0.01406258 0.01084458 0.01270592 0.01406258 0.01415532 0.01270592 0.01441335 0.01474249 0.01270592 0.0160005 0.01600819 0.01280498 0.01438528 0.01023697 0.01280498 0.01403123 0.0108295 0.01280498 0.0137887 0.01147574 0.01280498 0.01366549 0.01215487 0.01280498 0.01366549 0.01284509 0.01280498 0.0137887 0.01352423 0.01280498 0.01403123 0.0141704 0.01280498 0.01438528 0.01476293 0.01280498 0.01598685 0.01604014 0.01280498 0.01664328 0.01625347 0.01280498 0.01732724 0.01634609 0.01353043 0.01701098 0.01631879 0.01353043 0.01664328 0.01625347 0.01353043 0.01637262 0.01618123 0.01353043 0.01438528 0.01476293 0.01353043 0.01431024 0.01465588 0.01353043 0.01403123 0.0141704 0.01353043 0.01399177 0.01408576 0.01353043 0.01366549 0.01284509 0.01353043 0.01377421 0.01347011 0.01353043 0.0137887 0.01352423 0.01353043 0.01366382 0.0128265 0.01353043 0.01366382 0.01217347 0.01353043 0.01366549 0.01215487 0.01353043 0.01377421 0.01152986 0.01353043 0.0137887 0.01147574 0.01353043 0.01399177 0.01091414 0.01353043 0.01403123 0.0108295 0.01353043 0.01431024 0.01034408 0.01353043 0.01438528 0.01023697 0.01353043 0.01472043 0.009836018 0.01391994 0.0210511 0.009736001 0.01391994 0.02130949 0.01010465 0.01394999 0.02145761 0.01035821 0.01394999 0.02175617 0.01103883 0.01394999 0.02193862 0.01175928 0.01394999 0.02199995 0.01249998 0.01394999 0.02193862 0.01324063 0.01394999 0.02175617 0.01396113 0.01394999 0.02145761 0.01464176 0.01394999 0.0210511 0.01526391 0.01394999 0.02054774 0.01581072 0.01052498 0.0210511 0.009736001 0.01052498 0.02145761 0.01035821 0.01052498 0.02175617 0.01103883 0.01052498 0.02193862 0.01175928 0.01052498 0.02199995 0.01249998 0.01052498 0.02193862 0.01324063 0.01052498 0.02175617 0.01396113 0.01052498 0.02145761 0.01464176 0.01052498 0.0210511 0.01526391 0.01052498 0.02054774 0.01581072 0.01391994 -0.03003871 0.008732736 0.01391994 -0.0294522 0.009189188 0.01391994 -0.02894884 0.009736001 0.01394999 -0.03605109 0.01526391 0.01394999 -0.03554773 0.01581072 0.01394999 -0.03496122 0.01626724 0.01394999 -0.03360468 0.01686227 0.01394999 -0.0328716 0.01698458 0.01394999 -0.02854233 0.01035821 0.01394999 -0.02824378 0.01103883 0.01394999 -0.02806133 0.01175928 0.01394999 -0.02799999 0.01249998 0.01394999 -0.02806133 0.01324063 0.01394999 -0.02824378 0.01396113 0.01394999 -0.02854233 0.01464176 0.01394999 -0.02894884 0.01526391 0.01394999 -0.0294522 0.01581072 0.01052498 -0.03003871 0.008732736 0.01052498 -0.0294522 0.009189188 0.01052498 -0.02894884 0.009736001 0.01052498 -0.02854233 0.01035821 0.01052498 -0.02824378 0.01103883 0.01052498 -0.02806133 0.01175928 0.01052498 -0.02799999 0.01249998 0.01052498 -0.02806133 0.01324063 0.01052498 -0.02824378 0.01396113 0.01052498 -0.02854233 0.01464176 0.01052498 -0.02894884 0.01526391 0.01052498 -0.0294522 0.01581072 0.01052498 -0.03360468 0.01686227 0.01052498 -0.03554773 0.01581072 0.01052498 -0.03605109 0.01526391 0.01137995 0.01649987 0.01739895 0.01187998 0.01649987 0.01739895 0.01137995 0.01572692 0.01717507 0.01187998 0.01572692 0.01717507 0.01137995 0.01499998 0.01683008 0.004889965 0.01034277 0.009432852 0.004889965 0.01205354 0.008005797 0.004889965 -0.02705353 0.01194995 0.004889965 0.0241 0.01375764 0.004889965 0.02257543 0.01375764 0.004889965 0.01425677 0.01670026 0.004889965 0.01279997 0.01655 0.004889965 0.01205354 0.01639956 0.004889965 0.01249998 0.01655 0.004889965 0.01205354 0.01670026 0.004889965 0.01273626 0.01667267 0.004889965 0.01278573 0.01661539 0.004889965 0.01251322 0.01661247 0.004889965 0.01205354 0.01695728 0.004889965 0.01425677 0.01695728 0.004889965 0.01205354 0.01721411 0.004889965 0.01425677 0.01721411 0.004889965 0.01205354 0.009557723 0.004889965 0.0241 0.01209998 0.004889965 -0.02705353 0.01016408 0.004889965 -0.03249996 0.009557723 0.004889965 -0.02774292 0.009467542 0.004889965 -0.02768629 0.009495496 0.004889965 -0.03249996 0.01016408 0.004889965 -0.03249996 0.01021414 0.004889965 -0.03249996 0.01194995 0.004889965 -0.03249996 0.01209998 0.004889965 -0.03249996 0.006707489 0.004889965 -0.03750091 0.007307887 0.004889965 -0.03750091 0.006707489 0.004889965 -0.03249996 0.006499946 0.01192998 0.01663172 0.01742398 0.01217997 0.01663172 0.01742398 0.01192998 0.01499998 0.01683008 0.01217997 0.01499998 0.01683008 0.01217997 0.01366972 0.01571393 0.01217997 0.01280152 0.0142101 0.01217997 0.009774982 0.01297628 0.01134175 0.03241866 0.01450663 0.01134175 0.03226459 0.01455885 0.01104176 0.03241866 0.01450663 0.01011675 0.0300256 0.01447325 0.0113905 0.03017997 0.01468521 0.01011675 0.03052669 0.01497435 0.0113905 0.03036737 0.01486843 0.01011675 0.03112679 0.01535141 0.0113905 0.03090643 0.0152601 0.0113905 0.03051286 0.01499176 0.01212996 0.03058046 0.01582467 -0.002637386 0.02789998 0.002139449 8.62532e-4 0.02789998 0.002078354 -0.002637386 0.02789998 0.02286052 8.62566e-4 0.02789998 0.02292162 8.62532e-4 0.009899973 0.002078354 -0.002637386 0.009899973 0.02286052 8.62532e-4 0.009899973 0.02292162 -0.002219974 -0.03579998 5.31902e-4 -0.002219974 -0.03814995 0.01729995 -0.002219974 -0.03579998 0.02446806 -0.00446999 -0.03579998 0.01567 -0.00446999 -0.03579998 0.009329974 -0.004644155 -0.03579998 0.008679986 -0.005119979 -0.03579998 0.008204162 -0.005357146 -0.03579998 0.005399942 0.012995 -0.02724999 0.01249998 0.01409494 -0.03049087 0.0076496 0.012995 -0.02878767 0.008787631 0.01409494 -0.02878767 0.008787631 0.012995 -0.02764958 0.01049089 0.01409494 -0.02764958 0.01049089 0.012995 0.02274996 0.01249998 0.01409494 0.02274996 0.01249998 0.012995 0.02235037 0.01450908 0.01409494 0.02235037 0.01450908 0.012995 0.01950907 0.0076496 0.01409494 0.01950907 0.0076496 0.012995 0.02121227 0.008787631 0.01409494 -0.03006774 0.007615387 0.01422494 -0.03006774 0.007615387 0.01409494 -0.02846747 0.008823812 0.01409494 0.02295666 0.01249998 0.01422494 0.02295666 0.01249998 0.01409494 0.01993221 0.007615387 0.01422494 0.01993221 0.007615387 0.01409494 0.02153247 0.008823812 0.01422494 0.02153247 0.008823812 0.01409494 0.02258819 0.0105288 0.01422494 0.02258819 0.0105288 0.012115 -0.03746783 0.01038336 0.01264494 -0.03746783 0.01038336 0.012115 -0.03706401 0.009613871 0.012115 -0.03654193 0.008919119 0.01264494 -0.03654193 0.008919119 0.012115 -0.03591519 0.008317112 0.01264494 -0.03591519 0.008317112 0.012115 0.01558512 0.007450878 0.01264494 0.01558512 0.007450878 0.012115 0.01641982 0.007209122 0.01264494 0.01641982 0.007209122 0.012115 0.01728254 0.007104337 0.012115 0.0198149 0.007621347 0.01264494 0.0198149 0.007621347 0.012115 0.02056753 0.008055865 0.01264494 0.02056753 0.008055865 0.01264494 0.02124071 0.00860548 0.012115 0.02181696 0.009255945 0.01264494 0.02181696 0.009255945 0.01273125 0.0147832 0.01441764 0.01270592 0.01452553 0.01404118 0.01273125 0.0145474 0.01402986 0.01270592 0.01505166 0.01021343 0.01273125 0.01506966 0.01023018 0.01270592 0.0153858 0.009901344 0.01270592 0.0180121 0.008719265 0.01270592 0.01749998 0.008684754 0.01280498 0.01732724 0.008653819 0.01391994 0.02092444 0.00985825 0.013929 0.02118247 0.01023173 0.013929 0.02086496 0.00978291 0.01270592 -0.03593736 0.01084458 0.01270592 -0.03617769 0.01148498 0.01270592 -0.03617769 0.01351499 0.01270592 -0.03593736 0.01415532 0.01270592 -0.03558659 0.01474249 0.01270592 -0.03513652 0.01525759 0.01270592 -0.0346018 0.01568406 0.01270592 -0.03629982 0.01215797 0.01270592 -0.03629982 0.01284199 0.01270592 -0.03132098 0.008871436 0.01280498 -0.0326727 0.008653819 0.01280498 -0.03561466 0.01023697 0.01280498 -0.03596872 0.0108295 0.01280498 -0.03621125 0.01147574 0.01280498 -0.03633445 0.01215487 0.01280498 -0.03633445 0.01284509 0.01280498 -0.03621125 0.01352423 0.01280498 -0.03596872 0.0141704 0.01280498 -0.03561466 0.01476293 0.01280498 -0.03516054 0.01528275 0.01280498 -0.03462094 0.01571309 0.01280498 -0.03131026 0.008838415 0.01280498 -0.03198319 0.008684813 0.01353043 -0.03561466 0.01476293 0.01353043 -0.03568971 0.01465588 0.01353043 -0.03596872 0.0141704 0.01353043 -0.03600817 0.01408576 0.01353043 -0.03633445 0.01284509 0.01353043 -0.03622573 0.01347011 0.01353043 -0.03621125 0.01352423 0.01353043 -0.03633612 0.0128265 0.01353043 -0.03633612 0.01217347 0.01353043 -0.03633445 0.01215487 0.01353043 -0.03622573 0.01152986 0.01353043 -0.03621125 0.01147574 0.01353043 -0.03600817 0.01091414 0.01353043 -0.03596872 0.0108295 0.01353043 -0.03568971 0.01034408 0.01353043 -0.03561466 0.01023697 0.01353043 -0.0326727 0.008653819 0.01353043 -0.03298896 0.008681178 0.01353043 -0.03249996 0.008649945 0.01353043 -0.03233659 0.008653461 0.01353043 -0.03198319 0.008684813 0.01353043 -0.03168886 0.008736371 0.01353043 -0.03131026 0.008838415 0.01353043 -0.03106445 0.008927583 0.01137995 0.02224266 0.01408332 0.01187998 0.02224266 0.01408332 0.01137995 0.02192723 0.01482361 0.01137995 0.01964342 0.00798273 0.01187998 0.01964342 0.00798273 0.01137995 0.02034032 0.008385062 0.01187998 0.02034032 0.008385062 0.01137995 0.0209636 0.008893966 0.01137995 -0.03499996 0.01683008 0.01187998 -0.03499996 0.01683008 0.01137995 -0.03566217 0.01637297 0.01187998 -0.03566217 0.01637297 0.01137995 -0.03624254 0.01581561 0.01187998 -0.03624254 0.01581561 0.01137995 -0.03672593 0.0151723 0.01137995 -0.0373547 0.01130342 0.01187998 -0.0373547 0.01130342 0.01137995 -0.03709989 0.01054012 0.01187998 -0.03709989 0.01054012 0.01137995 -0.03110891 0.007697403 0.01187998 -0.03110891 0.007697403 0.01137995 -0.03035652 0.00798273 0.01187998 -0.03035652 0.00798273 0.01137995 -0.02965962 0.008385062 0.01187998 -0.02965962 0.008385062 0.01137995 -0.02903634 0.008893966 0.01187998 -0.02903634 0.008893966 0.01137995 -0.02850276 0.009496271 0.01187998 -0.02850276 0.009496271 0.01137995 -0.02807271 0.01017636 0.01187998 -0.02807271 0.01017636 0.01137995 -0.02775728 0.01091665 0.004889965 0.02257543 0.006707489 0.004889965 -0.02705353 0.009557723 0.004889965 -0.02705353 0.007785856 0.004889965 -0.02705353 0.008005797 0.004889965 -0.03249996 0.008005797 0.004889965 0.02257543 0.007307887 0.004889965 -0.03757542 0.01539498 0.004889965 -0.03842097 0.01375764 0.004889965 -0.03799998 0.01504999 0.004889965 0.02257543 0.01375764 0.004889965 0.02257543 0.01539498 0.004889965 -0.02705353 0.007307887 0.004889965 -0.03249996 0.007785856 0.004889965 -0.03757542 0.01375764 0.004889965 -0.03757542 0.01209998 0.004889965 -0.03842097 0.01209998 0.004889965 -0.03757542 0.01194995 0.004889965 -0.03842097 0.01194995 0.004889965 0.02049314 0.01539498 0.004889965 0.01425677 0.01111245 0.004889965 0.01425677 0.01076275 0.004889965 0.01425677 0.01021414 0.004889965 0.01425677 0.01016408 0.004889965 0.01425677 0.009632468 0.004889965 0.01205354 0.01194995 0.004889965 0.01205354 0.01111245 0.004889965 0.01205354 0.01076275 0.004889965 0.01205354 0.01021414 0.004889965 0.01205354 0.01016408 0.004889965 0.01205354 0.009632468 0.004889965 -0.02705353 0.009632468 0.004889965 -0.02767747 0.00920248 0.004889965 -0.02773636 0.009227395 0.004889965 -0.02778577 0.009284675 0.004889965 -0.03249996 0.009632468 0.004889965 -0.03750091 0.01539498 0.004889965 -0.03750091 0.01375764 0.004889965 -0.03750091 0.01209998 0.004889965 0.02049314 0.006707489 0.004889965 0.02049314 0.007307887 0.004889965 -0.02705353 0.006707489 0.004889965 -0.03249996 0.007307887 0.004889965 -0.03249996 0.006707489 0.01217997 0.02258473 0.005999982 0.01217997 -0.02749997 0.01249998 0.01192998 -0.03499996 0.01683008 0.01217997 -0.03499996 0.01683008 0.01192998 -0.03633022 0.01571393 0.01217997 -0.03633022 0.01571393 0.01192998 -0.03719842 0.0142101 0.01217997 -0.03719842 0.0142101 0.01192998 -0.03749996 0.01249998 0.01217997 -0.03749996 0.01249998 0.01192998 -0.03719842 0.01078987 0.01217997 -0.03719842 0.01078987 0.01192998 -0.0316317 0.007575929 0.01217997 -0.0316317 0.007575929 0.01192998 -0.02999997 0.008169829 0.01217997 -0.02999997 0.008169829 0.01192998 -0.02866977 0.009286046 0.01217997 -0.02866977 0.009286046 0.01192998 -0.02780151 0.01078987 0.01217997 -0.02780151 0.01078987 0.01217997 -0.00965476 0.007430315 0.01217997 -0.008535385 0.007992506 0.01192998 0.02249997 0.01249998 0.01217997 0.02249997 0.01249998 0.01192998 0.02219843 0.0142101 0.01217997 0.02219843 0.0142101 0.01217997 0.01499998 0.008169829 0.01217997 0.01836824 0.007575929 0.01192998 0.01999998 0.008169829 0.01217997 0.01999998 0.008169829 0.01192998 0.02133017 0.009286046 0.01217997 0.02133017 0.009286046 0.01192998 0.02219843 0.01078987 0.01217997 0.02219843 0.01078987 0.01217997 -0.0252763 0.01222497 0.01217997 -0.02534997 0.01249998 0.01217997 0.02434897 0.01723575 0.01217997 0.02434897 0.009724974 8.62531e-4 0.02609997 0.002078354 -0.002637386 0.02609997 0.002139449 8.62529e-4 0.02609997 0.02292162 8.62531e-4 0.02009999 0.002078354 -0.002637386 0.02009999 0.002139449 8.62532e-4 0.02009999 0.02292162 -0.002637386 0.02009999 0.02286052 8.62531e-4 0.01709997 0.002078354 -0.002637386 0.01709997 0.002139449 8.62532e-4 0.01709997 0.02292162 -0.002637386 0.01709997 0.02286052 -0.002637386 0.01889997 0.002139449 8.62532e-4 0.01889997 0.002078354 -0.002637386 0.01889997 0.02286052 8.62532e-4 0.01889997 0.02292162 0.012995 -0.02724999 0.01249998 0.01409494 -0.02724999 0.01249998 0.012995 -0.02764958 0.01450908 0.01409494 -0.02764958 0.01450908 0.012995 -0.02878767 0.01621228 0.01409494 -0.02878767 0.01621228 0.012995 -0.03249996 0.01774996 0.01409494 -0.03249996 0.01774996 0.012995 -0.03450906 0.01735031 0.01409494 -0.03450906 0.01735031 0.012995 -0.03621226 0.01621228 0.01409494 -0.03621226 0.01621228 0.012995 -0.03735035 0.01450908 0.01409494 -0.03735035 0.01450908 0.012995 -0.03735035 0.01049089 0.01409494 -0.03735035 0.01049089 0.012995 -0.03621226 0.008787631 0.01409494 -0.03621226 0.008787631 0.012995 -0.03450906 0.0076496 0.012995 -0.03049087 0.0076496 0.01409494 -0.03049087 0.0076496 0.012995 -0.02878767 0.008787631 0.01409494 -0.02878767 0.008787631 0.012995 -0.02764958 0.01049089 0.01409494 -0.02764958 0.01049089 0.01409494 0.02274996 0.01249998 0.01409494 0.02235037 0.01450908 0.01409494 0.02121227 0.01621228 0.01409494 0.01378768 0.01621228 0.01409494 0.01264959 0.01450908 0.01409494 0.01224994 0.01249998 0.01409494 0.01264959 0.01049089 0.012995 0.01378768 0.008787631 0.01409494 0.01378768 0.008787631 0.012995 0.01549088 0.0076496 0.01409494 0.01549088 0.0076496 0.012995 0.01749998 0.007249951 0.01409494 0.01950907 0.0076496 0.012995 0.02121227 0.008787631 0.01409494 0.02121227 0.008787631 0.012995 0.02235037 0.01049089 0.01409494 0.02235037 0.01049089 0.01409494 0.03463023 0.01558613 0.012995 0.03295201 0.01622265 0.01409494 0.03295201 0.01622265 0.01409494 0.02885895 0.01339739 0.01409494 0.02885895 0.01160252 0.01409494 0.02969306 0.01001328 0.01409494 0.03117018 0.008993685 0.01409494 -0.008416533 0.00575 0.01409494 -0.006107926 0.00615704 0.01409494 -0.001769125 0.01132786 0.01409494 -0.001769125 0.01367211 0.01409494 -0.01689201 0.01884287 0.01409494 -0.0189222 0.01767075 0.01409494 -0.02042907 0.01587498 0.01409494 -0.02123087 0.01367211 0.01409494 -0.02123087 0.01132786 0.01409494 -0.02042907 0.009124994 0.01409494 -0.0189222 0.007329165 0.01409494 -0.01689201 0.00615704 0.01409494 -0.02704328 0.01249998 0.01422494 -0.02704328 0.01249998 0.01409494 -0.02741175 0.01447117 0.01422494 -0.02741175 0.01447117 0.01409494 -0.02846747 0.0161761 0.01422494 -0.02846747 0.0161761 0.01409494 -0.03713935 0.009627401 0.01422494 -0.03713935 0.009627401 0.01409494 -0.03578835 0.008145451 0.01422494 -0.03578835 0.008145451 0.01422494 -0.03006774 0.007615387 0.01409494 -0.02846747 0.008823812 0.01422494 -0.02846747 0.008823812 0.01409494 -0.02741175 0.0105288 0.01422494 -0.02741175 0.0105288 0.01409494 0.02295666 0.01249998 0.01422494 0.02295666 0.01249998 0.01409494 0.02258819 0.01447117 0.01422494 0.02258819 0.01447117 0.01409494 0.02153247 0.0161761 0.01422494 0.02153247 0.0161761 0.01422494 0.01421159 0.01685446 0.01409494 0.01286059 0.01537251 0.01422494 0.01286059 0.01537251 0.01409494 0.01213622 0.01350265 0.01422494 0.01213622 0.01350265 0.01409494 0.01213622 0.01149731 0.01422494 0.01213622 0.01149731 0.01409494 0.01286059 0.009627401 0.01422494 0.01286059 0.009627401 0.01409494 0.01421159 0.008145451 0.01422494 0.01421159 0.008145451 0.01409494 0.0160067 0.00725162 0.01422494 0.0160067 0.00725162 0.01409494 0.02153247 0.008823812 0.01422494 0.02153247 0.008823812 0.01409494 0.02258819 0.0105288 0.01422494 0.02258819 0.0105288 0.012115 -0.03706401 0.009613871 0.01264494 -0.03706401 0.009613871 0.012115 -0.03654193 0.008919119 0.01264494 -0.03654193 0.008919119 0.012995 -0.03675794 0.019077 0.012995 -0.02619999 0.01819998 0.012995 -0.02850931 0.01613795 0.012995 -0.037808 0.01150774 0.012995 -0.03709113 0.01534271 0.012995 -0.03843349 0.01761662 0.012995 -0.0357542 0.01680928 0.012995 -0.03397774 0.01769381 0.012995 -0.02746462 0.01445066 0.012995 -0.02709996 0.01249998 0.012995 -0.0357542 0.008190691 0.012995 -0.03843349 0.007383286 0.012995 -0.03709113 0.009657263 0.012995 -0.03918284 0.008410215 0.012995 0.02574998 0.006799995 0.012995 0.02149063 0.008862018 0.012995 0.01990693 0.00766611 0.012995 0.02253532 0.01054924 0.0138449 0.01749998 0.01249998 0.01382595 0.01739364 0.01285344 0.01382595 0.01734328 0.01283419 0.01382595 0.01744621 0.01286518 0.01382595 0.01749998 0.01286911 0.01382595 0.01725363 0.01277488 0.01382595 0.01721626 0.01273608 0.01382595 0.01729631 0.01280784 0.01382595 0.01716023 0.01264435 0.01382595 0.01714283 0.01259332 0.01382595 0.01718485 0.01269227 0.01382595 0.01713109 0.01248651 0.01382595 0.01713699 0.01243293 0.01382595 0.01713305 0.01254034 0.01382595 0.01717168 0.01233118 0.01382595 0.01719975 0.01228517 0.01382595 0.01715058 0.01238077 0.01382595 0.01727437 0.0122078 0.01382595 0.01731932 0.01217806 0.01382595 0.0172342 0.01224374 0.01382595 0.01741969 0.01213967 0.01382595 0.01747304 0.01213181 0.01382595 0.01736813 0.01215517 0.01382595 0.01758021 0.01213967 0.01382595 0.01763182 0.01215517 0.01382595 0.01752692 0.01213181 0.01382595 0.01772558 0.0122078 0.01382595 0.0177657 0.01224374 0.01382595 0.01768064 0.01217806 0.01382595 0.01782828 0.01233118 0.01382595 0.01784932 0.01238077 0.01382595 0.01780021 0.01228517 0.01382595 0.01786887 0.01248651 0.01382595 0.0178669 0.01254034 0.01382595 0.01786297 0.01243293 0.01382595 0.01783972 0.01264435 0.01382595 0.01781505 0.01269227 0.01382595 0.01785713 0.01259332 0.01382595 0.01774632 0.01277488 0.01382595 0.01770365 0.01280784 0.01382595 0.0177837 0.01273608 0.01382595 0.01760631 0.01285344 0.01382595 0.01755374 0.01286518 0.01382595 0.01765668 0.01283419 0.01275587 0.0197438 0.01082581 0.01288419 0.01965647 0.01095712 0.01288419 0.01940882 0.01065957 0.01275587 0.01969903 0.01423239 0.01288419 0.0195381 0.01419609 0.01288419 0.01976335 0.01388126 0.01275587 0.0198614 0.01400393 0.01275587 0.01999938 0.01376068 0.01288419 0.01994031 0.01353698 0.01275587 0.02011287 0.01350384 0.01288419 0.0200653 0.01317065 0.01275587 0.02019602 0.0132535 0.01275587 0.02025806 0.01297986 0.01288419 0.02013564 0.01278996 0.01275587 0.02029192 0.0127018 0.01288419 0.02014976 0.01240313 0.01275587 0.02029788 0.0124185 0.01275587 0.02027577 0.01213669 0.01288419 0.02010744 0.01201838 0.01275587 0.02022558 0.01186114 0.01288419 0.02000951 0.01164382 0.01275587 0.02014756 0.01159149 0.01288419 0.01985812 0.01128756 0.01275587 0.02003657 0.01131623 0.01275587 0.01989966 0.01105785 0.01288419 0.01879769 0.01018768 0.01275587 0.01914238 0.01023274 0.01288419 0.01912051 0.01040124 0.01275587 0.01936215 0.01041001 0.01275587 0.01956444 0.01060974 0.01288419 0.01807647 0.009911835 0.01275587 0.0184049 0.009851098 0.01288419 0.01844722 0.01002335 0.01275587 0.01865857 0.009951829 0.01275587 0.01890808 0.01008027 0.01288419 0.01769351 0.009855508 0.01275587 0.01786905 0.009724974 0.01275587 0.01814424 0.009775638 0.01275587 0.01729565 0.009708344 0.01275587 0.01749998 0.009700894 0.01275587 0.01758897 0.009702265 0.01275587 0.01563209 0.01458466 0.01288419 0.01573055 0.0144748 0.01275587 0.01534849 0.01429045 0.01288419 0.01546186 0.01419609 0.01275587 0.01511073 0.01395809 0.01288419 0.01523661 0.01388126 0.01275587 0.01492387 0.01359468 0.01288419 0.01505959 0.01353698 0.01275587 0.0147919 0.01320797 0.01288419 0.01493465 0.01317065 0.01275587 0.01471769 0.01280611 0.01288419 0.01486432 0.01278996 0.01275587 0.01470279 0.01239776 0.01288419 0.01485019 0.01240313 0.01275587 0.01474744 0.01199156 0.01288419 0.01489251 0.01201838 0.01275587 0.01485079 0.0115962 0.01288419 0.01499044 0.01164382 0.01275587 0.01501065 0.01122009 0.01288419 0.01514184 0.01128756 0.01275587 0.0152235 0.01087129 0.01288419 0.01534348 0.01095712 0.01275587 0.01548492 0.01055723 0.01288419 0.01559108 0.01065957 0.01275587 0.01578927 0.01028454 0.01288419 0.01587939 0.01040124 0.01275587 0.01613008 0.01005905 0.01288419 0.01620227 0.01018768 0.01275587 0.01650005 0.009885609 0.01288419 0.01655274 0.01002335 0.01275587 0.01689136 0.009767889 0.01288419 0.01692342 0.009911835 0.01288419 0.01730644 0.009855508 0.01312863 0.01904886 0.01422864 0.01312863 0.01928406 0.01398468 0.01312863 0.01948124 0.01370912 0.01312863 0.01963615 0.01340776 0.01312863 0.01974558 0.01308703 0.01312863 0.0198071 0.01275384 0.01312863 0.01981949 0.01241523 0.01312863 0.01978242 0.0120784 0.01312863 0.01969671 0.01175051 0.01312863 0.01956421 0.01143866 0.01312863 0.01938766 0.01114946 0.01312863 0.01917093 0.01088899 0.01312863 0.01891857 0.01066285 0.01312863 0.01863592 0.01047587 0.01312863 0.01832914 0.01033204 0.01312863 0.01800465 0.01023441 0.01312863 0.01766937 0.01018512 0.01312863 0.01733052 0.01018512 0.01312863 0.01699531 0.01023441 0.01312863 0.01667082 0.01033204 0.01312863 0.01636397 0.01047587 0.01312863 0.01608139 0.01066285 0.01312863 0.01582902 0.01088899 0.01312863 0.01561224 0.01114946 0.01312863 0.01543575 0.01143866 0.01312863 0.01530319 0.01175051 0.01312863 0.01521754 0.0120784 0.01312863 0.01518046 0.01241523 0.01312863 0.0151928 0.01275384 0.01312863 0.01525437 0.01308703 0.01312863 0.01536381 0.01340776 0.01312863 0.01551872 0.01370912 0.01312863 0.01571589 0.01398468 0.01333051 0.01833993 0.0142917 0.01333051 0.01859182 0.01415032 0.01333051 0.01882046 0.01397377 0.01333051 0.01902097 0.01376575 0.01333051 0.01918911 0.01353085 0.01333051 0.0193212 0.01327389 0.01333051 0.01941448 0.01300048 0.01333051 0.01946693 0.01271641 0.01333051 0.01947748 0.01242768 0.01333051 0.01944589 0.01214057 0.01333051 0.01937282 0.01186102 0.01333051 0.01925981 0.01159518 0.01333051 0.01910936 0.01134854 0.01333051 0.01892453 0.01112651 0.01333051 0.01870936 0.01093375 0.01333051 0.01846843 0.01077431 0.01333051 0.01820689 0.0106517 0.01333051 0.0179302 0.01056849 0.01333051 0.0176444 0.01052641 0.01333051 0.0173555 0.01052641 0.01333051 0.01706969 0.01056849 0.01333051 0.01679307 0.0106517 0.01333051 0.01653152 0.01077431 0.01333051 0.01629054 0.01093375 0.01333051 0.01607543 0.01112651 0.01333051 0.01589059 0.01134854 0.01333051 0.01574009 0.01159518 0.01333051 0.01562714 0.01186102 0.01333051 0.01555407 0.01214057 0.01333051 0.01552248 0.01242768 0.01333051 0.01553303 0.01271641 0.01333051 0.01558548 0.01300048 0.01333051 0.01567876 0.01327389 0.01333051 0.01581084 0.01353085 0.01333051 0.01597893 0.01376575 0.01333051 0.01617944 0.01397377 0.01333051 0.01640814 0.01415032 0.01351571 0.01749998 0.01407992 0.01351571 0.01772999 0.01406306 0.01351571 0.01795518 0.01401293 0.01351571 0.01817059 0.01393049 0.01351571 0.01837176 0.01381766 0.01351571 0.01855427 0.01367664 0.01351571 0.01871436 0.01351064 0.01351571 0.01884859 0.013323 0.01351571 0.01895403 0.0131179 0.01351571 0.01902854 0.01289957 0.01351571 0.01907044 0.01267278 0.01351571 0.01907885 0.01244229 0.01351571 0.01905363 0.01221299 0.01351571 0.01899528 0.01198983 0.01351571 0.0189051 0.01177757 0.01351571 0.01878494 0.01158064 0.01351571 0.01863735 0.01140338 0.01351571 0.01846557 0.01124948 0.01351571 0.01827323 0.01112216 0.01351571 0.01806437 0.01102429 0.01351571 0.01784348 0.01095783 0.01351571 0.01761531 0.01092427 0.01351571 0.01738464 0.01092427 0.01351571 0.01715642 0.01095783 0.01351571 0.01693558 0.01102429 0.01351571 0.01672673 0.01112216 0.01351571 0.01653438 0.01124948 0.01351571 0.01636254 0.01140338 0.01351571 0.01621502 0.01158064 0.01351571 0.01609486 0.01177757 0.01351571 0.01600468 0.01198983 0.01351571 0.01594632 0.01221299 0.01351571 0.01592111 0.01244229 0.01351571 0.01592952 0.01267278 0.01351571 0.01597142 0.01289957 0.01351571 0.01604586 0.0131179 0.01351571 0.01615136 0.013323 0.01351571 0.01628553 0.01351064 0.01351571 0.01644563 0.01367664 0.01351571 0.0166282 0.01381766 0.01351571 0.01682937 0.01393049 0.01351571 0.01704478 0.01401293 0.01351571 0.0172699 0.01406306 0.01366066 0.01749998 0.01367169 0.01366066 0.01767057 0.01365923 0.01366066 0.01783758 0.01362204 0.01366066 0.01799732 0.01356095 0.01366066 0.01814651 0.0134772 0.01366066 0.01828187 0.01337265 0.01366066 0.0184006 0.01324951 0.01366066 0.01850014 0.01311039 0.01366066 0.01857841 0.01295822 0.01366066 0.0186336 0.01279634 0.01366066 0.01866471 0.01262813 0.01366066 0.01867091 0.01245719 0.01366066 0.01865226 0.01228713 0.01366066 0.01860898 0.01212161 0.01366066 0.01854205 0.0119642 0.01366066 0.01845294 0.01181817 0.01366066 0.0183435 0.01168668 0.01366066 0.01821613 0.01157253 0.01366066 0.01807343 0.01147812 0.01366066 0.01791858 0.01140552 0.01366066 0.01775473 0.01135623 0.01366066 0.01758551 0.01133137 0.01366066 0.01741445 0.01133137 0.01366066 0.01724523 0.01135623 0.01366066 0.01708137 0.01140552 0.01366066 0.01692652 0.01147812 0.01366066 0.01678383 0.01157253 0.01366066 0.01665645 0.01168668 0.01366066 0.01654702 0.01181817 0.01366066 0.01645791 0.0119642 0.01366066 0.01639097 0.01212161 0.01366066 0.0163477 0.01228713 0.01366066 0.01632899 0.01245719 0.01366066 0.01633524 0.01262813 0.01366066 0.0163663 0.01279634 0.01366066 0.01642155 0.01295822 0.01366066 0.01649975 0.01311039 0.01366066 0.01659929 0.01324951 0.01366066 0.01671802 0.01337265 0.01366066 0.01685345 0.0134772 0.01366066 0.01700264 0.01356095 0.01366066 0.01716238 0.01362204 0.01366066 0.01732939 0.01365923 0.01376688 0.01749998 0.01325422 0.01376688 0.01760977 0.01324617 0.01376688 0.0177173 0.01322221 0.01376688 0.01782011 0.01318293 0.01376688 0.01791614 0.01312899 0.01376688 0.01800328 0.0130617 0.01376688 0.01807975 0.01298242 0.01376688 0.01814377 0.0128929 0.01376688 0.01819413 0.01279497 0.01376688 0.01822972 0.01269072 0.01376688 0.01824969 0.01258248 0.01376688 0.01825374 0.01247245 0.01376688 0.0182417 0.01236295 0.01376688 0.0182138 0.01225644 0.01376688 0.01817077 0.01215511 0.01376688 0.01811337 0.01206111 0.01376688 0.01804298 0.01197648 0.01376688 0.01796096 0.01190298 0.01376688 0.01786911 0.01184225 0.01376688 0.01776939 0.01179552 0.01376688 0.01766395 0.01176375 0.01376688 0.01755505 0.01174771 0.01376688 0.0174449 0.01174771 0.01376688 0.01733595 0.01176375 0.01376688 0.01723051 0.01179552 0.01376688 0.01713085 0.01184225 0.01376688 0.017039 0.01190298 0.01376688 0.01695698 0.01197648 0.01376688 0.01688653 0.01206111 0.01376688 0.01682919 0.01215511 0.01376688 0.01678609 0.01225644 0.01376688 0.01675826 0.01236295 0.01376688 0.01674622 0.01247245 0.01376688 0.01675027 0.01258248 0.01376688 0.01677024 0.01269072 0.01376688 0.01680582 0.01279497 0.01376688 0.01685613 0.0128929 0.01376688 0.0169202 0.01298242 0.01376688 0.01699668 0.0130617 0.01376688 0.01708382 0.01312899 0.01376688 0.01717984 0.01318293 0.01376688 0.01728266 0.01322221 0.01376688 0.01739013 0.01324617 0.01275587 0.02069491 0.01188784 0.01275587 0.02073717 0.01218569 0.01275587 0.02075248 0.01248818 0.01275587 0.02073997 0.01278996 0.01275587 0.0206983 0.01309418 0.01275587 0.02063137 0.01338046 0.01275587 0.02053821 0.01366096 0.01275587 0.02043491 0.01390343 0.01275587 0.02029222 0.01416981 0.01275587 0.01977461 0.01017516 0.01275587 0.01996022 0.01037132 0.01275587 0.02014744 0.01060897 0.01275587 0.02031272 0.01086598 0.01275587 0.02044653 0.0111227 0.01275587 0.02055573 0.01138561 0.01275587 0.02063649 0.01163774 0.01275587 0.01544731 0.01502299 0.01275587 0.01512289 0.01472002 0.01275587 0.01484274 0.01437562 0.01275587 0.01461207 0.01399636 0.01275587 0.01443523 0.0135892 0.01275587 0.01431548 0.01316171 0.01275587 0.01425504 0.01272195 0.01275587 0.01425504 0.01227802 0.01275587 0.01431548 0.01183825 0.01275587 0.01443523 0.01141077 0.01275587 0.01461207 0.01100361 0.01275587 0.01484274 0.01062428 0.01275587 0.01512289 0.01027995 0.01275587 0.01544731 0.009976923 0.01275587 0.01581001 0.009720921 0.01275587 0.01620417 0.009516716 0.01275587 0.01662248 0.009368062 0.01275587 0.01705706 0.00927776 0.01275587 0.01749998 0.009247422 0.01275587 0.01770955 0.009254038 0.01275587 0.01800876 0.009286999 0.01275587 0.01828497 0.009343624 0.01275587 0.01856577 0.009427249 0.01275587 0.01883584 0.00953412 0.01275587 0.01911681 0.009676992 0.01275587 0.01934736 0.009822189 0.01275587 0.01955848 0.009981274 0.01275062 0.01749998 0.009212195 0.01275062 0.01794767 0.009242832 0.01275062 0.01920825 0.00969088 0.01275062 0.01880979 0.00948441 0.01275062 0.01838701 0.009334146 0.01275062 0.01957482 0.009949624 0.01275062 0.02018594 0.01060402 0.01275062 0.01990276 0.01025593 0.01275062 0.02059787 0.01139897 0.01275062 0.02041912 0.0109874 0.01275062 0.02071893 0.01183104 0.01275062 0.02071893 0.01316887 0.01275062 0.02078008 0.01272433 0.01275062 0.02078008 0.01227563 0.01275062 0.02059787 0.01360094 0.01275062 0.02018594 0.01439595 0.01275062 0.02041912 0.01401257 0.01275062 0.01705229 0.009242832 0.01275062 0.01661294 0.009334146 0.01275062 0.01619011 0.00948441 0.01275062 0.01579171 0.00969088 0.01275062 0.01542514 0.009949624 0.01275062 0.0150972 0.01025593 0.01275062 0.01481395 0.01060402 0.01275062 0.01458084 0.0109874 0.01275062 0.01440203 0.01139897 0.01275062 0.01428097 0.01183104 0.01275062 0.01421988 0.01227563 0.01275062 0.01421988 0.01272433 0.01275062 0.01428097 0.01316887 0.01275062 0.01440203 0.01360094 0.01275062 0.01458084 0.01401257 0.01275062 0.01481395 0.01439595 0.01275062 0.0150972 0.01474404 0.01270592 0.01811486 0.01579356 0.01270592 0.01781028 0.01583588 0.01273125 0.02063339 0.01361358 0.01270592 0.02048557 0.01402014 0.01273125 0.02045255 0.01402986 0.01270592 0.02033483 0.01428627 0.01273125 0.02075582 0.01317656 0.01270592 0.02070766 0.01346701 0.01270592 0.02061283 0.01373797 0.01273125 0.02075582 0.01182341 0.01270592 0.02084076 0.01224875 0.01273125 0.02081763 0.01227301 0.01270592 0.02084946 0.01255917 0.01273125 0.02081763 0.0127269 0.01270592 0.02083015 0.01286685 0.01270592 0.020783 0.01316922 0.01273125 0.02063339 0.01138633 0.01270592 0.02073913 0.01164382 0.01270592 0.02080386 0.01194292 0.01273125 0.0199303 0.01023018 0.01270592 0.02021884 0.01054173 0.01273125 0.02021676 0.01058226 0.01270592 0.02038604 0.01079773 0.01273125 0.02045255 0.01097005 0.01270592 0.02053338 0.01107788 0.01270592 0.02064651 0.01135021 0.01273125 0.0192278 0.009658694 0.01270592 0.01957988 0.009873211 0.01273125 0.0195986 0.009920418 0.01270592 0.01981365 0.01007723 0.01270592 0.02002823 0.01030182 0.01273125 0.01839715 0.009297847 0.01270592 0.01878839 0.009407639 0.01273125 0.01882481 0.009449839 0.01270592 0.01906764 0.009538948 0.01270592 0.01933115 0.009693861 0.01273125 0.01795279 0.00920552 0.01270592 0.01822161 0.00922805 0.01270592 0.01851463 0.009307086 0.01270592 0.01749998 0.01584994 0.01270592 0.01704382 0.01581877 0.01270592 0.01659613 0.01572573 0.01270592 0.01616531 0.0155726 0.01270592 0.01505166 0.01478654 0.01273125 0.01506966 0.01476973 0.01270592 0.01476311 0.01443183 0.01273125 0.0147832 0.01441764 0.01270592 0.01452553 0.01404118 0.01273125 0.0145474 0.01402986 0.01270592 0.01434338 0.0136218 0.01273125 0.01436656 0.01361358 0.01270592 0.01422005 0.01318156 0.01273125 0.01424413 0.01317656 0.01270592 0.01415777 0.01272857 0.01273125 0.01418232 0.0127269 0.01270592 0.01415777 0.01227134 0.01273125 0.01418232 0.01227301 0.01270592 0.01422005 0.0118184 0.01273125 0.01424413 0.01182341 0.01270592 0.01434338 0.0113781 0.01273125 0.01436656 0.01138633 0.01270592 0.01452553 0.01095873 0.01273125 0.0145474 0.01097005 0.01270592 0.01476311 0.01056808 0.01273125 0.0147832 0.01058226 0.01270592 0.01505166 0.01021343 0.01273125 0.01506966 0.01023018 0.01270592 0.0153858 0.009901344 0.01273125 0.01540136 0.009920418 0.01270592 0.01575934 0.009637653 0.01273125 0.01577216 0.009658694 0.01270592 0.01616531 0.009427309 0.01273125 0.01617515 0.009449839 0.01270592 0.01659613 0.009274184 0.01273125 0.01660281 0.009297847 0.01270592 0.01704382 0.009181201 0.01273125 0.01704716 0.00920552 0.01270592 0.01749998 0.009149968 0.01273125 0.01749998 0.009174585 0.01270592 0.01761358 0.009151816 0.01270592 0.01792013 0.009175956 0.01270592 0.01665103 0.008780419 0.01270592 0.0160005 0.008991777 0.01270592 0.01539814 0.009315848 0.01270592 0.01486343 0.009742319 0.01270592 0.01382225 0.01148498 0.01270592 0.01370006 0.01215797 0.01270592 0.01370006 0.01284199 0.01270592 0.01382225 0.01351499 0.01270592 0.01665103 0.01621955 0.01270592 0.01732879 0.01631134 0.01270592 0.01749998 0.01631522 0.01270592 0.01867896 0.01612848 0.01270592 0.0180121 0.01628071 0.01270592 0.01441335 0.01025742 0.01270592 0.01406258 0.01084458 0.01270592 0.01406258 0.01415532 0.01270592 0.01441335 0.01474249 0.01270592 0.01486343 0.01525759 0.01270592 0.0160005 0.01600819 0.01270592 0.02077513 0.0144568 0.01270592 0.02125388 0.01181876 0.01270592 0.02131521 0.01249998 0.01270592 0.02125388 0.0131812 0.01270592 0.02077513 0.01054316 0.01270592 0.02107191 0.01115942 0.01270592 0.01930791 0.009140312 0.01270592 0.01987874 0.009517073 0.01270592 0.02107191 0.01384055 0.01270592 0.0180121 0.008719265 0.01270592 0.01749998 0.008684754 0.01270592 0.01732879 0.008688569 0.01270592 0.0203731 0.009989798 0.01270592 0.01867896 0.008871436 0.01280498 0.01732724 0.008653819 0.01280498 0.01664328 0.008746504 0.01280498 0.01598685 0.00895977 0.01280498 0.01537901 0.00928688 0.01280498 0.01483941 0.009717226 0.01280498 0.01438528 0.01023697 0.01280498 0.01732724 0.01634609 0.01280498 0.020805 0.01447463 0.01280498 0.02110445 0.01385277 0.01280498 0.02134996 0.01249998 0.01280498 0.02128809 0.0118125 0.01280498 0.02110445 0.0111472 0.01280498 0.020805 0.01052528 0.01280498 0.02039927 0.009966909 0.01280498 0.01990044 0.009489893 0.01280498 0.01932436 0.009109675 0.01280498 0.01868969 0.008838415 0.01280498 0.01801675 0.008684813 0.01353043 0.02129459 0.01315063 0.01353043 0.02128809 0.0131874 0.01353043 0.02113008 0.01378256 0.01353043 0.02110445 0.01385277 0.01353043 0.02086108 0.01437759 0.01353043 0.020805 0.01447463 0.01353043 0.02049541 0.01491862 0.01353043 0.02039927 0.01503306 0.01353043 0.02004355 0.01539003 0.01353043 0.01868969 0.01616156 0.01353043 0.01831108 0.01626354 0.01353043 0.01801675 0.01631516 0.01353043 0.01766335 0.01634651 0.01353043 0.01732724 0.01634609 0.01353043 0.01701098 0.01631879 0.01353043 0.01664328 0.01625347 0.01353043 0.01637262 0.01618123 0.01353043 0.01472043 0.01516395 0.01353043 0.01438528 0.01476293 0.01353043 0.01431024 0.01465588 0.01353043 0.01403123 0.0141704 0.01353043 0.01399177 0.01408576 0.01353043 0.01366549 0.01284509 0.01353043 0.01377421 0.01347011 0.01353043 0.0137887 0.01352423 0.01353043 0.01366382 0.0128265 0.01353043 0.01366382 0.01217347 0.01353043 0.01366549 0.01215487 0.01353043 0.01377421 0.01152986 0.01353043 0.0137887 0.01147574 0.01353043 0.01399177 0.01091414 0.01353043 0.01403123 0.0108295 0.01353043 0.01431024 0.01034408 0.01353043 0.01438528 0.01023697 0.01353043 0.01472043 0.009836018 0.01353043 0.01483941 0.009717226 0.01353043 0.01521062 0.009404599 0.01353043 0.01537901 0.00928688 0.01353043 0.01576668 0.00906223 0.01353043 0.01598685 0.00895977 0.01353043 0.01637262 0.008818745 0.01353043 0.01732724 0.008653819 0.01353043 0.01701098 0.008681178 0.01353043 0.01664328 0.008746504 0.01353043 0.01749998 0.008649945 0.01353043 0.01766335 0.008653461 0.01353043 0.01801675 0.008684813 0.01353043 0.01831108 0.008736371 0.01353043 0.01868969 0.008838415 0.01353043 0.0189355 0.008927583 0.01353043 0.01932436 0.009109675 0.01353043 0.01951855 0.009221613 0.01353043 0.01990044 0.009489893 0.01353043 0.02004355 0.009609878 0.01353043 0.02039927 0.009966909 0.01353043 0.02049541 0.01008135 0.01353043 0.020805 0.01052528 0.01353043 0.02086108 0.01062232 0.01353043 0.02110445 0.0111472 0.01353043 0.02113008 0.01121741 0.01353043 0.02128809 0.0118125 0.01353043 0.02129459 0.01184934 0.01353043 0.02134996 0.01249998 0.01391994 0.02055823 0.009441733 0.01391994 0.02054774 0.009189188 0.01391994 0.02092444 0.00985825 0.01391994 0.0210511 0.009736001 0.01391994 0.02118247 0.01023173 0.01391994 0.02130949 0.01010465 0.013929 0.02118247 0.01023173 0.013929 0.02086496 0.00978291 0.013929 0.02055823 0.009441733 0.013929 0.02035737 0.009253323 0.013929 0.01976823 0.008817493 0.01394999 0.02120059 0.01021355 0.01394999 0.02129757 0.01037847 0.01394999 0.02160149 0.01105082 0.01394999 0.0217874 0.01176482 0.01394999 0.0184164 0.008247613 0.01394999 0.01768457 0.008153915 0.01394999 0.01749998 0.008149981 0.01394999 0.01694744 0.008185207 0.01394999 0.01622617 0.008340656 0.01394999 0.01554161 0.008615732 0.01394999 0.01491332 0.009002566 0.01394999 0.01435947 0.009490013 0.01394999 0.01389592 0.01006406 0.01394999 0.01353615 0.01070821 0.01394999 0.01329034 0.01140385 0.01394999 0.01316565 0.01213109 0.01394999 0.01316565 0.01286888 0.01394999 0.01329034 0.01359605 0.01394999 0.01353615 0.01429176 0.01394999 0.01389592 0.01493585 0.01394999 0.01435947 0.0155099 0.01394999 0.01622617 0.01665931 0.01394999 0.01694744 0.01681476 0.01394999 0.01749998 0.01684999 0.01394999 0.01768457 0.01684606 0.01394999 0.0184164 0.01675236 0.01394999 0.01912188 0.01653629 0.01394999 0.02037394 0.01576542 0.01394999 0.02088445 0.01523274 0.01394999 0.02129757 0.01462143 0.01394999 0.02160149 0.01394915 0.01394999 0.0217874 0.01323515 0.01394999 0.02184998 0.01249998 0.01394999 0.01712834 0.01698458 0.01394999 0.01639527 0.01686227 0.01394999 0.01860463 0.008137643 0.01394999 0.01787155 0.008015334 0.01394999 0.01712834 0.008015334 0.01394999 0.01445221 0.01581072 0.01394999 0.01394885 0.01526391 0.01394999 0.01354235 0.01464176 0.01394999 0.01324379 0.01396113 0.01394999 0.01306134 0.01324063 0.01394999 0.01299995 0.01249998 0.01394999 0.01306134 0.01175928 0.01394999 0.01324379 0.01103883 0.01394999 0.01354235 0.01035821 0.01394999 0.01394885 0.009736001 0.01394999 0.01445221 0.009189188 0.01394999 0.01503872 0.008732736 0.01394999 0.01569235 0.008378982 0.01394999 0.01639527 0.008137643 0.01394999 0.02130949 0.01010465 0.01394999 0.02145761 0.01035821 0.01394999 0.02175617 0.01103883 0.01394999 0.02193862 0.01175928 0.01394999 0.02199995 0.01249998 0.01394999 0.02193862 0.01324063 0.01394999 0.02175617 0.01396113 0.01394999 0.02145761 0.01464176 0.01394999 0.0210511 0.01526391 0.01394999 0.02054774 0.01581072 0.01394999 0.01930761 0.01662093 0.01394999 0.01860463 0.01686227 0.01394999 0.01787155 0.01698458 0.01052498 0.01860463 0.01686227 0.01052498 0.01787155 0.01698458 0.01052498 0.01712834 0.01698458 0.01052498 0.01394885 0.01526391 0.01052498 0.01354235 0.01464176 0.01052498 0.01324379 0.01396113 0.01052498 0.01306134 0.01324063 0.0138449 -0.03249996 0.01249998 0.01382595 -0.0326063 0.01285344 0.01382595 -0.03265666 0.01283419 0.01382595 -0.03255373 0.01286518 0.01382595 -0.03249996 0.01286911 0.01382595 -0.03274631 0.01277488 0.01382595 -0.03278368 0.01273608 0.01382595 -0.03270363 0.01280784 0.01382595 -0.03283971 0.01264435 0.01382595 -0.03285712 0.01259332 0.01382595 -0.03281509 0.01269227 0.01382595 -0.03286886 0.01248651 0.01382595 -0.03286296 0.01243293 0.01382595 -0.03286689 0.01254034 0.01382595 -0.03282827 0.01233118 0.01382595 -0.03280019 0.01228517 0.01382595 -0.03284937 0.01238077 0.01382595 -0.03272557 0.0122078 0.01382595 -0.03268063 0.01217806 0.01382595 -0.03276574 0.01224374 0.01382595 -0.03258025 0.01213967 0.01382595 -0.03252691 0.01213181 0.01382595 -0.03263181 0.01215517 0.01382595 -0.03241974 0.01213967 0.01382595 -0.03236812 0.01215517 0.01382595 -0.03247302 0.01213181 0.01382595 -0.03227436 0.0122078 0.01382595 -0.03223425 0.01224374 0.01382595 -0.0323193 0.01217806 0.01382595 -0.03217166 0.01233118 0.01382595 -0.03215062 0.01238077 0.01382595 -0.03219974 0.01228517 0.01382595 -0.03213107 0.01248651 0.01382595 -0.03213304 0.01254034 0.01382595 -0.03213697 0.01243293 0.01382595 -0.03216022 0.01264435 0.01382595 -0.03218489 0.01269227 0.01382595 -0.03214281 0.01259332 0.01382595 -0.03225362 0.01277488 0.01382595 -0.03229629 0.01280784 0.01382595 -0.03221625 0.01273608 0.01382595 -0.03239363 0.01285344 0.01382595 -0.0324462 0.01286518 0.01382595 -0.03234326 0.01283419 0.01275587 -0.03025615 0.01082581 0.01288419 -0.03034347 0.01095712 0.01288419 -0.03059113 0.01065957 0.01275587 -0.03091698 0.01480913 0.01288419 -0.03103691 0.01471138 0.01288419 -0.03073054 0.0144748 0.01275587 -0.0316677 0.0151726 0.01275587 -0.03193891 0.01524269 0.01288419 -0.0321139 0.0151233 0.01288419 -0.03173607 0.01503908 0.01288419 -0.03137451 0.0149008 0.01275587 -0.03139615 0.01507228 0.01275587 -0.0311557 0.01495563 0.01275587 -0.03030091 0.01423239 0.01275587 -0.03048771 0.01444566 0.01275587 -0.0306946 0.01463931 0.01288419 -0.03046184 0.01419609 0.01288419 -0.0302366 0.01388126 0.01275587 -0.03013855 0.01400393 0.01275587 -0.03000056 0.01376068 0.01288419 -0.03005963 0.01353698 0.01275587 -0.02988708 0.01350384 0.01288419 -0.02993464 0.01317065 0.01275587 -0.02980393 0.0132535 0.01275587 -0.02974188 0.01297986 0.01288419 -0.02986431 0.01278996 0.01275587 -0.02970802 0.0127018 0.01288419 -0.02985018 0.01240313 0.01275587 -0.02970206 0.0124185 0.01275587 -0.02972418 0.01213669 0.01288419 -0.0298925 0.01201838 0.01275587 -0.02977436 0.01186114 0.01288419 -0.02999043 0.01164382 0.01275587 -0.02985239 0.01159149 0.01288419 -0.03014183 0.01128756 0.01275587 -0.02996337 0.01131623 0.01275587 -0.03010028 0.01105785 0.01288419 -0.03120225 0.01018768 0.01275587 -0.03085756 0.01023274 0.01288419 -0.03087943 0.01040124 0.01275587 -0.0306378 0.01041001 0.01275587 -0.0304355 0.01060974 0.01288419 -0.03192347 0.009911835 0.01275587 -0.03159505 0.009851098 0.01288419 -0.03155273 0.01002335 0.01275587 -0.03134137 0.009951829 0.01275587 -0.03109186 0.01008027 0.01288419 -0.03230643 0.009855508 0.01275587 -0.03213089 0.009724974 0.01275587 -0.0318557 0.009775638 0.01275587 -0.03270429 0.009708344 0.01275587 -0.03249996 0.009700894 0.01275587 -0.03241097 0.009702265 0.01275587 -0.0322166 0.01528495 0.01275587 -0.03249996 0.01529902 0.01288419 -0.03249996 0.01515156 0.01275587 -0.03290754 0.01526921 0.01288419 -0.03288602 0.0151233 0.01275587 -0.03330636 0.01518034 0.01288419 -0.03326386 0.01503908 0.01275587 -0.03368806 0.01503437 0.01288419 -0.03362542 0.0149008 0.01275587 -0.03404438 0.0148344 0.01288419 -0.03396302 0.01471138 0.01275587 -0.03436785 0.01458466 0.01288419 -0.03426939 0.0144748 0.01275587 -0.03465145 0.01429045 0.01288419 -0.03453809 0.01419609 0.01275587 -0.03488922 0.01395809 0.01288419 -0.03476333 0.01388126 0.01275587 -0.03507608 0.01359468 0.01288419 -0.03494036 0.01353698 0.01275587 -0.03520804 0.01320797 0.01288419 -0.03506529 0.01317065 0.01275587 -0.03528225 0.01280611 0.01288419 -0.03513562 0.01278996 0.01275587 -0.03529715 0.01239776 0.01288419 -0.03514975 0.01240313 0.01275587 -0.03525251 0.01199156 0.01288419 -0.03510743 0.01201838 0.01275587 -0.03514915 0.0115962 0.01288419 -0.0350095 0.01164382 0.01275587 -0.03498929 0.01122009 0.01288419 -0.0348581 0.01128756 0.01275587 -0.03477644 0.01087129 0.01288419 -0.03465646 0.01095712 0.01275587 -0.03451502 0.01055723 0.01288419 -0.03440886 0.01065957 0.01275587 -0.03421068 0.01028454 0.01288419 -0.03412055 0.01040124 0.01275587 -0.03386986 0.01005905 0.01288419 -0.03379768 0.01018768 0.01275587 -0.03349989 0.009885609 0.01288419 -0.0334472 0.01002335 0.01275587 -0.03310859 0.009767889 0.01288419 -0.03307652 0.009911835 0.01288419 -0.0326935 0.009855508 0.01312863 -0.03249996 0.01482105 0.01312863 -0.03216201 0.01479631 0.01312863 -0.03183126 0.01472264 0.01312863 -0.03151476 0.01460158 0.01312863 -0.0312193 0.01443576 0.01312863 -0.03095108 0.01422864 0.01312863 -0.03071588 0.01398468 0.01312863 -0.03051871 0.01370912 0.01312863 -0.03036379 0.01340776 0.01312863 -0.03025436 0.01308703 0.01312863 -0.03019285 0.01275384 0.01312863 -0.03018045 0.01241523 0.01312863 -0.03021752 0.0120784 0.01312863 -0.03030323 0.01175051 0.01312863 -0.03043574 0.01143866 0.01312863 -0.03061228 0.01114946 0.01312863 -0.03082901 0.01088899 0.01312863 -0.03108137 0.01066285 0.01312863 -0.03136402 0.01047587 0.01312863 -0.0316708 0.01033204 0.01312863 -0.03199529 0.01023441 0.01312863 -0.03233057 0.01018512 0.01312863 -0.03266942 0.01018512 0.01312863 -0.03300464 0.01023441 0.01312863 -0.03332912 0.01033204 0.01312863 -0.03363597 0.01047587 0.01312863 -0.03391855 0.01066285 0.01312863 -0.03417092 0.01088899 0.01312863 -0.0343877 0.01114946 0.01312863 -0.03456419 0.01143866 0.01312863 -0.03469675 0.01175051 0.01312863 -0.0347824 0.0120784 0.01312863 -0.03481948 0.01241523 0.01312863 -0.03480714 0.01275384 0.01312863 -0.03474557 0.01308703 0.01312863 -0.03463613 0.01340776 0.01312863 -0.03448122 0.01370912 0.01312863 -0.03428405 0.01398468 0.01312863 -0.03404885 0.01422864 0.01312863 -0.03378069 0.01443576 0.01312863 -0.03348517 0.01460158 0.01312863 -0.03316867 0.01472264 0.01312863 -0.03283792 0.01479631 0.01333051 -0.03249996 0.0144788 0.01333051 -0.03221184 0.0144577 0.01333051 -0.03192985 0.01439487 0.01333051 -0.03166002 0.0142917 0.01333051 -0.03140813 0.01415032 0.01333051 -0.03117948 0.01397377 0.01333051 -0.03097897 0.01376575 0.01333051 -0.03081083 0.01353085 0.01333051 -0.03067874 0.01327389 0.01333051 -0.03058546 0.01300048 0.01333051 -0.03053301 0.01271641 0.01333051 -0.03052246 0.01242768 0.01333051 -0.03055405 0.01214057 0.01333051 -0.03062713 0.01186102 0.01333051 -0.03074014 0.01159518 0.01333051 -0.03089058 0.01134854 0.01333051 -0.03107541 0.01112651 0.01333051 -0.03129059 0.01093375 0.01333051 -0.03153151 0.01077431 0.01333051 -0.03179305 0.0106517 0.01333051 -0.03206974 0.01056849 0.01333051 -0.03235554 0.01052641 0.01333051 -0.03264445 0.01052641 0.01333051 -0.03293025 0.01056849 0.01333051 -0.03320688 0.0106517 0.01333051 -0.03346842 0.01077431 0.01333051 -0.0337094 0.01093375 0.01333051 -0.03392452 0.01112651 0.01333051 -0.03410935 0.01134854 0.01333051 -0.03425985 0.01159518 0.01333051 -0.0343728 0.01186102 0.01333051 -0.03444588 0.01214057 0.01333051 -0.03447747 0.01242768 0.01333051 -0.03446692 0.01271641 0.01333051 -0.03441447 0.01300048 0.01333051 -0.03432118 0.01327389 0.01333051 -0.0341891 0.01353085 0.01333051 -0.03402101 0.01376575 0.01333051 -0.0338205 0.01397377 0.01333051 -0.0335918 0.01415032 0.01333051 -0.03333991 0.0142917 0.01333051 -0.03307008 0.01439487 0.01333051 -0.03278809 0.0144577 0.01351571 -0.03249996 0.01407992 0.01351571 -0.03226995 0.01406306 0.01351571 -0.03204476 0.01401293 0.01351571 -0.03182935 0.01393049 0.01351571 -0.03162819 0.01381766 0.01351571 -0.03144568 0.01367664 0.01351571 -0.03128558 0.01351064 0.01351571 -0.03115135 0.013323 0.01351571 -0.03104591 0.0131179 0.01351571 -0.0309714 0.01289957 0.01351571 -0.0309295 0.01267278 0.01351571 -0.0309211 0.01244229 0.01351571 -0.03094631 0.01221299 0.01351571 -0.03100466 0.01198983 0.01351571 -0.03109484 0.01177757 0.01351571 -0.03121501 0.01158064 0.01351571 -0.03136259 0.01140338 0.01351571 -0.03153437 0.01124948 0.01351571 -0.03172671 0.01112216 0.01351571 -0.03193557 0.01102429 0.01351571 -0.03215646 0.01095783 0.01351571 -0.03238463 0.01092427 0.01351571 -0.0326153 0.01092427 0.01351571 -0.03284353 0.01095783 0.01351571 -0.03306436 0.01102429 0.01351571 -0.03327322 0.01112216 0.01351571 -0.03346556 0.01124948 0.01351571 -0.0336374 0.01140338 0.01351571 -0.03378492 0.01158064 0.01351571 -0.03390508 0.01177757 0.01351571 -0.03399527 0.01198983 0.01351571 -0.03405362 0.01221299 0.01351571 -0.03407883 0.01244229 0.01351571 -0.03407043 0.01267278 0.01351571 -0.03402853 0.01289957 0.01351571 -0.03395408 0.0131179 0.01351571 -0.03384858 0.013323 0.01351571 -0.03371441 0.01351064 0.01351571 -0.03355431 0.01367664 0.01351571 -0.03337174 0.01381766 0.01351571 -0.03317058 0.01393049 0.01351571 -0.03295516 0.01401293 0.01351571 -0.03273004 0.01406306 0.01366066 -0.03249996 0.01367169 0.01366066 -0.03232938 0.01365923 0.01366066 -0.03216236 0.01362204 0.01366066 -0.03200262 0.01356095 0.01366066 -0.03185343 0.0134772 0.01366066 -0.03171807 0.01337265 0.01366066 -0.03159934 0.01324951 0.01366066 -0.0314998 0.01311039 0.01366066 -0.03142154 0.01295822 0.01366066 -0.03136634 0.01279634 0.01366066 -0.03133523 0.01262813 0.01366066 -0.03132903 0.01245719 0.01366066 -0.03134769 0.01228713 0.01366066 -0.03139096 0.01212161 0.01366066 -0.0314579 0.0119642 0.01366066 -0.031547 0.01181817 0.01366066 -0.03165644 0.01168668 0.01366066 -0.03178381 0.01157253 0.01366066 -0.03192651 0.01147812 0.01366066 -0.03208136 0.01140552 0.01366066 -0.03224521 0.01135623 0.01366066 -0.03241443 0.01133137 0.01366066 -0.0325855 0.01133137 0.01366066 -0.03275471 0.01135623 0.01366066 -0.03291857 0.01140552 0.01366066 -0.03307342 0.01147812 0.01366066 -0.03321611 0.01157253 0.01366066 -0.03334349 0.01168668 0.01366066 -0.03345292 0.01181817 0.01366066 -0.03354203 0.0119642 0.01366066 -0.03360897 0.01212161 0.01366066 -0.03365224 0.01228713 0.01366066 -0.03367096 0.01245719 0.01366066 -0.0336647 0.01262813 0.01366066 -0.03363364 0.01279634 0.01366066 -0.03357839 0.01295822 0.01366066 -0.03350019 0.01311039 0.01366066 -0.03340065 0.01324951 0.01366066 -0.03328192 0.01337265 0.01366066 -0.0331465 0.0134772 0.01366066 -0.03299731 0.01356095 0.01366066 -0.03283756 0.01362204 0.01366066 -0.03267055 0.01365923 0.01376688 -0.03249996 0.01325422 0.01376688 -0.03239017 0.01324617 0.01376688 -0.03228265 0.01322221 0.01376688 -0.03217983 0.01318293 0.01376688 -0.0320838 0.01312899 0.01376688 -0.03199666 0.0130617 0.01376688 -0.03192025 0.01298242 0.01376688 -0.03185617 0.0128929 0.01376688 -0.03180581 0.01279497 0.01376688 -0.03177022 0.01269072 0.01376688 -0.03175026 0.01258248 0.01376688 -0.0317462 0.01247245 0.01376688 -0.03175824 0.01236295 0.01376688 -0.03178614 0.01225644 0.01376688 -0.03182917 0.01215511 0.01376688 -0.03188657 0.01206111 0.01376688 -0.03195697 0.01197648 0.01376688 -0.03203898 0.01190298 0.01376688 -0.03213083 0.01184225 0.01376688 -0.03223055 0.01179552 0.01376688 -0.03233599 0.01176375 0.01376688 -0.03244489 0.01174771 0.01376688 -0.03255504 0.01174771 0.01376688 -0.032664 0.01176375 0.01376688 -0.03276944 0.01179552 0.01376688 -0.0328691 0.01184225 0.01376688 -0.03296095 0.01190298 0.01376688 -0.03304296 0.01197648 0.01376688 -0.03311342 0.01206111 0.01376688 -0.03317075 0.01215511 0.01376688 -0.03321385 0.01225644 0.01376688 -0.03324168 0.01236295 0.01376688 -0.03325372 0.01247245 0.01376688 -0.03324967 0.01258248 0.01376688 -0.0332297 0.01269072 0.01376688 -0.03319412 0.01279497 0.01376688 -0.03314381 0.0128929 0.01376688 -0.03307974 0.01298242 0.01376688 -0.03300327 0.0130617 0.01376688 -0.03291612 0.01312899 0.01376688 -0.0328201 0.01318293 0.01376688 -0.03271728 0.01322221 0.01376688 -0.03260982 0.01324617 0.01275587 -0.03022533 0.01017516 0.01275587 -0.03003972 0.01037132 0.01275587 -0.0298525 0.01060897 0.01275587 -0.02968722 0.01086598 0.01275587 -0.02955341 0.0111227 0.01275587 -0.02944421 0.01138561 0.01275587 -0.02936345 0.01163774 0.01275587 -0.02930504 0.01188784 0.01275587 -0.02926278 0.01218569 0.01275587 -0.02924746 0.01248818 0.01275587 -0.02925997 0.01278996 0.01275587 -0.02930164 0.01309418 0.01275587 -0.02936857 0.01338046 0.01275587 -0.02946174 0.01366096 0.01275587 -0.02956503 0.01390343 0.01275587 -0.02970772 0.01416981 0.01275587 -0.02987706 0.01442396 0.01275587 -0.03007203 0.01466429 0.01275587 -0.03538787 0.01399636 0.01275587 -0.03556472 0.0135892 0.01275587 -0.03568446 0.01316171 0.01275587 -0.0357449 0.01272195 0.01275587 -0.0357449 0.01227802 0.01275587 -0.03568446 0.01183825 0.01275587 -0.03556472 0.01141077 0.01275587 -0.03538787 0.01100361 0.01275587 -0.0351572 0.01062428 0.01275587 -0.03487706 0.01027995 0.01275587 -0.03455263 0.009976923 0.01275587 -0.03418993 0.009720921 0.01275587 -0.03379577 0.009516716 0.01275587 -0.03337752 0.009368062 0.01275587 -0.03294289 0.00927776 0.01275587 -0.03249996 0.009247422 0.01275587 -0.03229039 0.009254038 0.01275587 -0.03199118 0.009286999 0.01275587 -0.03171497 0.009343624 0.01275587 -0.03143417 0.009427249 0.01275587 -0.0311641 0.00953412 0.01275587 -0.03088313 0.009676992 0.01275587 -0.03065258 0.009822189 0.01275587 -0.03044146 0.009981274 0.01275587 -0.03028988 0.01488626 0.01275587 -0.03052204 0.01508194 0.01275587 -0.03077143 0.01525515 0.01275587 -0.0310359 0.01540434 0.01275587 -0.03131312 0.0155282 0.01275587 -0.03160065 0.01562571 0.01275587 -0.03189605 0.01569592 0.01275587 -0.03219676 0.01573836 0.01275587 -0.03249996 0.01575249 0.01275587 -0.03294289 0.01572221 0.01275587 -0.03337752 0.01563191 0.01275587 -0.03379577 0.01548326 0.01275587 -0.03418993 0.01527899 0.01275587 -0.03455263 0.01502299 0.01275587 -0.03487706 0.01472002 0.01275587 -0.0351572 0.01437562 0.01275062 -0.03249996 0.009212195 0.01275062 -0.03205227 0.009242832 0.01275062 -0.03079169 0.00969088 0.01275062 -0.03119015 0.00948441 0.01275062 -0.03161293 0.009334146 0.01275062 -0.03042513 0.009949624 0.01275062 -0.029814 0.01060402 0.01275062 -0.03009718 0.01025593 0.01275062 -0.02940207 0.01139897 0.01275062 -0.02958083 0.0109874 0.01275062 -0.02928102 0.01183104 0.01275062 -0.02928102 0.01316887 0.01275062 -0.02921986 0.01272433 0.01275062 -0.02921986 0.01227563 0.01275062 -0.02940207 0.01360094 0.01275062 -0.03009718 0.01474404 0.01275062 -0.029814 0.01439595 0.01275062 -0.02958083 0.01401257 0.01275062 -0.03079169 0.01530909 0.01275062 -0.03042513 0.01505029 0.01275062 -0.03161293 0.01566582 0.01275062 -0.03119015 0.0155155 0.01275062 -0.03294765 0.009242832 0.01275062 -0.033387 0.009334146 0.01275062 -0.03380984 0.00948441 0.01275062 -0.03420823 0.00969088 0.01275062 -0.0345748 0.009949624 0.01275062 -0.03490275 0.01025593 0.01275062 -0.03518599 0.01060402 0.01275062 -0.0354191 0.0109874 0.01275062 -0.03559792 0.01139897 0.01275062 -0.03571897 0.01183104 0.01275062 -0.03578007 0.01227563 0.01275062 -0.03578007 0.01272433 0.01275062 -0.03571897 0.01316887 0.01275062 -0.03559792 0.01360094 0.01275062 -0.0354191 0.01401257 0.01275062 -0.03518599 0.01439595 0.01275062 -0.03490275 0.01474404 0.01275062 -0.0345748 0.01505029 0.01275062 -0.03420823 0.01530909 0.01275062 -0.03380984 0.0155155 0.01275062 -0.033387 0.01566582 0.01275062 -0.03294765 0.01575708 0.01273125 -0.03160279 0.01570206 0.01273125 -0.03077214 0.01534128 0.01270592 -0.03102433 0.01550781 0.01273125 -0.03117513 0.01555007 0.01270592 -0.03129434 0.01562553 0.01273125 -0.02978318 0.01441764 0.01270592 -0.03004002 0.01477408 0.01273125 -0.03006964 0.01476973 0.01270592 -0.03026151 0.01499247 0.01273125 -0.03040134 0.01507955 0.01270592 -0.0304988 0.01518732 0.01270592 -0.03075188 0.01535856 0.01273125 -0.02936655 0.01361358 0.01270592 -0.02951437 0.01402014 0.01273125 -0.02954739 0.01402986 0.01270592 -0.02966511 0.01428627 0.01270592 -0.02984017 0.01453751 0.01273125 -0.02924412 0.01317656 0.01270592 -0.02929228 0.01346701 0.01270592 -0.02938711 0.01373797 0.01273125 -0.02924412 0.01182341 0.01270592 -0.02915918 0.01224875 0.01273125 -0.02918231 0.01227301 0.01270592 -0.02915048 0.01255917 0.01273125 -0.02918231 0.0127269 0.01270592 -0.02916979 0.01286685 0.01270592 -0.02921694 0.01316922 0.01273125 -0.02936655 0.01138633 0.01270592 -0.02926081 0.01164382 0.01270592 -0.02919608 0.01194292 0.01273125 -0.03006964 0.01023018 0.01270592 -0.0297811 0.01054173 0.01273125 -0.02978318 0.01058226 0.01270592 -0.02961391 0.01079773 0.01273125 -0.02954739 0.01097005 0.01270592 -0.02946656 0.01107788 0.01270592 -0.02935343 0.01135021 0.01273125 -0.03077214 0.009658694 0.01270592 -0.03042006 0.009873211 0.01273125 -0.03040134 0.009920418 0.01270592 -0.03018629 0.01007723 0.01270592 -0.02997171 0.01030182 0.01273125 -0.03160279 0.009297847 0.01270592 -0.03121155 0.009407639 0.01273125 -0.03117513 0.009449839 0.01270592 -0.0309323 0.009538948 0.01270592 -0.03066879 0.009693861 0.01273125 -0.03204715 0.00920552 0.01270592 -0.03177833 0.00922805 0.01270592 -0.03148531 0.009307086 0.01273125 -0.03295278 0.01579439 0.01270592 -0.03340381 0.01572573 0.01273125 -0.03339713 0.01570206 0.01270592 -0.03383463 0.0155726 0.01273125 -0.0338248 0.01555007 0.01270592 -0.0342406 0.01536226 0.01273125 -0.03422778 0.01534128 0.01270592 -0.03461414 0.01509863 0.01273125 -0.03459858 0.01507955 0.01270592 -0.03494828 0.01478654 0.01273125 -0.03493028 0.01476973 0.01270592 -0.03523683 0.01443183 0.01273125 -0.03521674 0.01441764 0.01270592 -0.03547441 0.01404118 0.01273125 -0.03545254 0.01402986 0.01270592 -0.03565657 0.0136218 0.01273125 -0.03563338 0.01361358 0.01270592 -0.03577989 0.01318156 0.01273125 -0.03575581 0.01317656 0.01270592 -0.03584218 0.01272857 0.01273125 -0.03581762 0.0127269 0.01270592 -0.03584218 0.01227134 0.01273125 -0.03581762 0.01227301 0.01270592 -0.03577989 0.0118184 0.01273125 -0.03575581 0.01182341 0.01270592 -0.03565657 0.0113781 0.01273125 -0.03563338 0.01138633 0.01270592 -0.03547441 0.01095873 0.01273125 -0.03545254 0.01097005 0.01270592 -0.03523683 0.01056808 0.01273125 -0.03521674 0.01058226 0.01270592 -0.03494828 0.01021343 0.01273125 -0.03493028 0.01023018 0.01270592 -0.03461414 0.009901344 0.01273125 -0.03459858 0.009920418 0.01270592 -0.0342406 0.009637653 0.01273125 -0.03422778 0.009658694 0.01270592 -0.03383463 0.009427309 0.01273125 -0.0338248 0.009449839 0.01270592 -0.03340381 0.009274184 0.01273125 -0.03339713 0.009297847 0.01270592 -0.03295612 0.009181201 0.01273125 -0.03295278 0.00920552 0.01270592 -0.03249996 0.009149968 0.01273125 -0.03249996 0.009174585 0.01270592 -0.03238636 0.009151816 0.01270592 -0.03207981 0.009175956 0.01270592 -0.03513652 0.009742319 0.01270592 -0.0346018 0.009315848 0.01270592 -0.03399944 0.008991777 0.01270592 -0.03334891 0.008780419 0.01270592 -0.03558659 0.01025742 0.01270592 -0.03593736 0.01084458 0.01270592 -0.03617769 0.01148498 0.01270592 -0.03617769 0.01351499 0.01270592 -0.03593736 0.01415532 0.01270592 -0.03558659 0.01474249 0.01270592 -0.03513652 0.01525759 0.01270592 -0.0346018 0.01568406 0.01270592 -0.03399944 0.01600819 0.01270592 -0.03334891 0.01621955 0.01270592 -0.03629982 0.01215797 0.01270592 -0.03629982 0.01284199 0.01270592 -0.02874606 0.01181876 0.01270592 -0.02868473 0.01249998 0.01270592 -0.02922481 0.01054316 0.01270592 -0.02892804 0.01115942 0.01270592 -0.03069204 0.009140312 0.01270592 -0.0301212 0.009517073 0.01270592 -0.0301212 0.01548284 0.01270592 -0.03069204 0.01585966 0.01270592 -0.02922481 0.0144568 0.01270592 -0.02962684 0.01501017 0.01270592 -0.03198784 0.008719265 0.01270592 -0.03249996 0.008684754 0.01270592 -0.03267115 0.008688569 0.01270592 -0.02874606 0.0131812 0.01270592 -0.02962684 0.009989798 0.01270592 -0.03132098 0.008871436 0.01270592 -0.02892804 0.01384055 0.01280498 -0.0326727 0.008653819 0.01280498 -0.03335666 0.008746504 0.01280498 -0.03401309 0.00895977 0.01280498 -0.03462094 0.00928688 0.01280498 -0.03516054 0.009717226 0.01280498 -0.03561466 0.01023697 0.01280498 -0.03596872 0.0108295 0.01280498 -0.03401309 0.01604014 0.01280498 -0.03335666 0.01625347 0.01280498 -0.02864998 0.01249998 0.01280498 -0.02871185 0.0118125 0.01280498 -0.02889549 0.0111472 0.01280498 -0.02919495 0.01052528 0.01280498 -0.02960067 0.009966909 0.01280498 -0.03009951 0.009489893 0.01280498 -0.03067559 0.009109675 0.01280498 -0.03131026 0.008838415 0.01280498 -0.03198319 0.008684813 0.01353043 -0.02870535 0.01315063 0.01353043 -0.02871185 0.0131874 0.01353043 -0.02886992 0.01378256 0.01353043 -0.02889549 0.01385277 0.01353043 -0.02913886 0.01437759 0.01353043 -0.02919495 0.01447463 0.01353043 -0.02950453 0.01491862 0.01353043 -0.02960067 0.01503306 0.01353043 -0.0299564 0.01539003 0.01353043 -0.03009951 0.01551002 0.01353043 -0.03048139 0.01577836 0.01353043 -0.03298896 0.01631879 0.01353043 -0.03335666 0.01625347 0.01353043 -0.03362733 0.01618123 0.01353043 -0.03401309 0.01604014 0.01353043 -0.03423327 0.01593774 0.01353043 -0.03462094 0.01571309 0.01353043 -0.03478932 0.01559537 0.01353043 -0.03516054 0.01528275 0.01353043 -0.03527951 0.01516395 0.01353043 -0.03561466 0.01476293 0.01353043 -0.03568971 0.01465588 0.01353043 -0.03596872 0.0141704 0.01353043 -0.03600817 0.01408576 0.01353043 -0.03633445 0.01284509 0.01353043 -0.03622573 0.01347011 0.01353043 -0.03621125 0.01352423 0.01353043 -0.03633612 0.0128265 0.01353043 -0.03633612 0.01217347 0.01353043 -0.03633445 0.01215487 0.01353043 -0.03622573 0.01152986 0.01353043 -0.03621125 0.01147574 0.01353043 -0.03600817 0.01091414 0.01353043 -0.03596872 0.0108295 0.01353043 -0.03568971 0.01034408 0.01353043 -0.03561466 0.01023697 0.01353043 -0.03527951 0.009836018 0.01353043 -0.03516054 0.009717226 0.01353043 -0.03478932 0.009404599 0.01353043 -0.03462094 0.00928688 0.01353043 -0.03423327 0.00906223 0.01353043 -0.03401309 0.00895977 0.01353043 -0.03362733 0.008818745 0.01353043 -0.0326727 0.008653819 0.01353043 -0.03298896 0.008681178 0.01353043 -0.03335666 0.008746504 0.01353043 -0.03249996 0.008649945 0.01353043 -0.03233659 0.008653461 0.01353043 -0.03198319 0.008684813 0.01353043 -0.03168886 0.008736371 0.01353043 -0.03131026 0.008838415 0.01353043 -0.03106445 0.008927583 0.01353043 -0.03067559 0.009109675 0.01353043 -0.03048139 0.009221613 0.01353043 -0.03009951 0.009489893 0.01353043 -0.0299564 0.009609878 0.01353043 -0.02960067 0.009966909 0.01353043 -0.02950453 0.01008135 0.01353043 -0.02919495 0.01052528 0.01353043 -0.02913886 0.01062232 0.01353043 -0.02889549 0.0111472 0.01353043 -0.02886992 0.01121741 0.01353043 -0.02871185 0.0118125 0.01353043 -0.02870535 0.01184934 0.01353043 -0.02864998 0.01249998 0.01391994 -0.03023171 0.008817493 0.01391994 -0.03010463 0.008690476 0.01391994 -0.02985829 0.009075522 0.01391994 -0.03003871 0.008732736 0.01391994 -0.02944171 0.009441733 0.01391994 -0.0294522 0.009189188 0.01391994 -0.0290755 0.00985825 0.01391994 -0.02894884 0.009736001 0.01391994 -0.02881747 0.01023173 0.01391994 -0.02869045 0.01010465 0.013929 -0.02881747 0.01023173 0.013929 -0.02913498 0.00978291 0.013929 -0.02944171 0.009441733 0.013929 -0.02964258 0.009253323 0.013929 -0.03023171 0.008817493 0.01394999 -0.02879935 0.01021355 0.01394999 -0.02870237 0.01037847 0.01394999 -0.03021925 0.008795797 0.01394999 -0.02839845 0.01105082 0.01394999 -0.02821254 0.01176482 0.01394999 -0.03087806 0.00846368 0.01394999 -0.03158354 0.008247613 0.01394999 -0.03231537 0.008153915 0.01394999 -0.03249996 0.008149981 0.01394999 -0.0330525 0.008185207 0.01394999 -0.03377377 0.008340656 0.01394999 -0.03445833 0.008615732 0.01394999 -0.03508663 0.009002566 0.01394999 -0.03564047 0.009490013 0.01394999 -0.03610396 0.01006406 0.01394999 -0.03646379 0.01070821 0.01394999 -0.0367096 0.01140385 0.01394999 -0.03683429 0.01213109 0.01394999 -0.03683429 0.01286888 0.01394999 -0.0367096 0.01359605 0.01394999 -0.03646379 0.01429176 0.01394999 -0.03610396 0.01493585 0.01394999 -0.03564047 0.0155099 0.01394999 -0.03508663 0.01599735 0.01394999 -0.03445833 0.01638418 0.01394999 -0.03377377 0.01665931 0.01394999 -0.0330525 0.01681476 0.01394999 -0.03249996 0.01684999 0.01394999 -0.02962601 0.01576542 0.01394999 -0.02911549 0.01523274 0.01394999 -0.02870237 0.01462143 0.01394999 -0.02839845 0.01394915 0.01394999 -0.02821254 0.01323515 0.01394999 -0.02814996 0.01249998 0.01394999 -0.03010463 0.008690476 0.01394999 -0.03069233 0.008378982 0.01394999 -0.03139531 0.008137643 0.01394999 -0.03496122 0.008732736 0.01394999 -0.03554773 0.009189188 0.01394999 -0.03605109 0.009736001 0.01394999 -0.03645759 0.01035821 0.01394999 -0.03675615 0.01103883 0.01394999 -0.0369386 0.01175928 0.01394999 -0.037 0.01249998 0.01394999 -0.0369386 0.01324063 0.01394999 -0.03675615 0.01396113 0.01394999 -0.03645759 0.01464176 0.01394999 -0.03605109 0.01526391 0.01394999 -0.03554773 0.01581072 0.01394999 -0.03496122 0.01626724 0.01394999 -0.03430759 0.01662093 0.01394999 -0.03360468 0.01686227 0.01394999 -0.0328716 0.01698458 0.01394999 -0.02869045 0.01010465 0.01394999 -0.02854233 0.01035821 0.01394999 -0.02824378 0.01103883 0.01394999 -0.02806133 0.01175928 0.01394999 -0.02799999 0.01249998 0.01394999 -0.02806133 0.01324063 0.01394999 -0.02824378 0.01396113 0.01394999 -0.02854233 0.01464176 0.01394999 -0.02894884 0.01526391 0.01394999 -0.0294522 0.01581072 0.01187998 -0.03427302 0.01717507 0.01137995 -0.03499996 0.01683008 0.01187998 -0.03499996 0.01683008 0.01187998 -0.02807271 0.01017636 0.01137995 -0.02775728 0.01091665 0.01187998 -0.02775728 0.01091665 0.004889965 -0.02705353 0.009557723 0.004889965 -0.03249996 0.008005797 0.004889965 0.02049314 0.008005797 0.004889965 0.02049314 0.007785856 0.004889965 0.01425677 0.008005797 0.004889965 0.01425677 0.007785856 0.004889965 -0.02705353 0.01375764 0.004889965 -0.02705353 0.01209998 0.004889965 -0.02705353 0.01194995 0.004889965 0.01743292 0.008994638 0.004889965 -0.02705353 0.01111245 0.004889965 -0.02705353 0.01076275 0.004889965 -0.02705353 0.01021414 0.004889965 -0.02705353 0.01016408 0.004889965 -0.02705353 0.009632468 0.004889965 -0.02779996 0.009349942 0.004889965 -0.02778673 0.009412467 0.004889965 -0.03249996 0.009557723 0.004889965 -0.02774292 0.009467542 0.004889965 -0.02778577 0.009284675 0.004889965 -0.02768629 0.009495496 0.004889965 -0.03249996 0.009632468 0.004889965 -0.03249996 0.01016408 0.004889965 -0.03249996 0.01021414 0.004889965 -0.03249996 0.01076275 0.004889965 -0.03249996 0.01111245 0.004889965 -0.03249996 0.01194995 0.004889965 -0.03249996 0.01209998 0.004889965 -0.03249996 0.01375764 0.004889965 -0.03249996 0.01539498 0.004889965 -0.03750091 0.0162447 0.004889965 -0.03750091 0.01539498 0.004889965 -0.03750091 0.01375764 0.004889965 -0.03750091 0.01209998 0.004889965 0.01425677 0.006707489 0.004889965 0.01425677 0.007307887 0.004889965 0.02049314 0.006707489 0.004889965 0.02049314 0.007307887 0.004889965 -0.03249996 0.007307887 0.004889965 -0.03249996 0.006707489 0.004889965 -0.03750091 0.007307887 0.004889965 0.02049314 0.006499946 0.004889965 0.01425677 0.006499946 0.01217997 -0.02027249 0.01899999 0.01217997 -0.03758674 0.01899999 0.01217997 -0.02027249 0.005999982 0.01217997 -0.03758674 0.005999982 0.01217997 0.02258473 0.005999982 0.01192998 -0.02749997 0.01249998 0.01217997 -0.02749997 0.01249998 0.01217997 -0.02780151 0.0142101 0.01217997 -0.02866977 0.01571393 0.01217997 -0.02999997 0.01683008 0.01192998 -0.03336822 0.01742398 0.01217997 -0.03336822 0.01742398 0.01192998 -0.03499996 0.01683008 0.01217997 -0.03499996 0.01683008 0.01217997 -0.03633022 0.01571393 0.01217997 -0.03719842 0.0142101 0.01217997 -0.03749996 0.01249998 0.01192998 -0.03719842 0.01078987 0.01217997 -0.03719842 0.01078987 0.01192998 -0.03633022 0.009286046 0.01217997 -0.03633022 0.009286046 0.01217997 -0.03499996 0.008169829 0.01217997 -0.0316317 0.007575929 0.01217997 -0.02999997 0.008169829 0.01217997 -0.02866977 0.009286046 0.01192998 -0.02780151 0.01078987 0.01217997 -0.02780151 0.01078987 0.01217997 -0.007575809 0.008797705 0.01192998 0.02219843 0.0142101 0.01217997 0.02219843 0.0142101 0.01192998 0.02133017 0.01571393 0.01217997 0.02133017 0.01571393 0.01217997 0.01663172 0.01742398 0.01217997 0.01499998 0.01683008 0.01217997 0.01280152 0.01078987 0.01217997 0.01366972 0.009286046 0.01217997 0.01499998 0.008169829 0.01217997 0.01663172 0.007575929 0.01217997 0.01999998 0.008169829 0.01217997 0.02133017 0.009286046 0.01217997 -0.0248 0.01194995 0.01217997 -0.02507495 0.01202368 0.01217997 -0.02027249 0.009724974 0.01217997 -0.02419996 0.01194995 0.01217997 -0.0252763 0.01222497 0.01217997 -0.02534997 0.01249998 0.01217997 -0.0252763 0.012775 0.01217997 -0.02507495 0.01297628 0.01217997 -0.03935098 0.009724974 0.01217997 -0.03935098 0.01723575 0.01217997 0.009499967 0.01194995 0.01217997 0.009774982 0.01202368 0.01217997 0.009976267 0.01222497 0.01217997 0.02434897 0.01723575 0.01217997 -0.03935098 0.00776416 0.01134175 0.03034216 0.01286453 0.01134175 0.0304411 0.01273536 0.01134175 0.03020703 0.01295506 0.01134175 0.03453999 0.01269602 0.01134175 0.03268229 0.0130611 0.01134175 0.03249996 0.01308995 0.01134175 0.03231763 0.0130611 0.01134175 0.03139722 0.01474362 0.01134175 0.03111934 0.01458412 0.01134175 0.0312004 0.01444315 0.01134175 0.03169322 0.01486623 0.01134175 0.03123193 0.01428353 0.01134175 0.03258132 0.01450663 0.01134175 0.03241866 0.01450663 0.01134175 0.0312106 0.0141223 0.01134175 0.03273534 0.01455885 0.01134175 0.0320025 0.01494997 0.01134175 0.03204488 0.01479291 0.01134175 0.03213542 0.01465779 0.01134175 0.03226459 0.01455885 0.01134175 0.03055679 0.01379954 0.01134175 0.03071641 0.01376801 0.01134175 0.03087764 0.01378935 0.01134175 0.03113853 0.01397639 0.01134175 0.03102356 0.01386141 0.01104176 0.03273534 0.01455885 0.01104176 0.03258132 0.01450663 0.01104176 0.03241866 0.01450663 -0.003665447 0.03249996 0.02399998 -0.003665447 -0.03309994 0.00159794 -0.003665447 -0.03309994 10e-4 -0.003665447 0.03249996 0.000999987 -0.003665447 -0.03419995 0.006171643 0.012115 0.0121175 0.0129345 0.01264494 0.0121175 0.0129345 0.012115 0.0121175 0.01206547 0.012115 0.01225686 0.01120769 0.01264494 0.01225686 0.01120769 0.012115 0.01253211 0.01038336 0.01264494 0.01253211 0.01038336 0.012115 0.01293593 0.009613871 0.01264494 0.01293593 0.009613871 0.012115 0.01479995 0.007823407 0.01264494 0.01479995 0.007823407 0.012115 0.01558512 0.007450878 0.01264494 0.01558512 0.007450878 0.012115 0.01641982 0.007209122 0.01264494 0.01641982 0.007209122 0.01269495 0.01253211 0.01038336 0.01269495 0.01479995 0.007823407 0.01269495 0.01558512 0.007450878 0.01294499 0.01479995 0.007823407 0.01280498 -0.03633445 0.01215487 0.01353043 -0.03633612 0.01217347 0.01353043 -0.03633445 0.01215487 0.01391994 -0.02944171 0.009441733 0.013929 -0.02913498 0.00978291 0.013929 -0.02944171 0.009441733 0.01137995 0.02249997 0.01249998 0.01187998 0.02249997 0.01249998 0.01137995 0.02243524 0.01330202 0.01187998 0.02243524 0.01330202 0.01137995 0.02224266 0.01408332 0.01187998 0.02224266 0.01408332 0.01137995 0.01290005 0.01445978 0.01187998 0.01290005 0.01445978 0.01137995 0.01264524 0.01369655 0.01187998 0.01264524 0.01369655 0.01137995 0.0125162 0.01290231 0.01187998 0.0125162 0.01290231 0.01137995 0.0125162 0.01209765 0.01187998 0.0125162 0.01209765 0.01187998 0.02034032 0.008385062 0.01137995 0.0209636 0.008893966 0.01187998 0.0209636 0.008893966 0.01137995 0.02149718 0.009496271 0.01187998 0.02149718 0.009496271 0.01137995 0.02192723 0.01017636 0.01187998 0.02192723 0.01017636 0.01137995 0.02224266 0.01091665 0.01187998 0.02224266 0.01091665 0.01137995 0.02243524 0.01169794 0.01187998 0.02243524 0.01169794 0.01187998 -0.03748375 0.01209765 0.01137995 -0.0373547 0.01130342 0.01187998 -0.0373547 0.01130342 0.004889965 0.02257543 0.006707489 0.004889965 0.02248835 0.009409785 0.004889965 0.02249997 0.009349942 0.004889965 0.02257543 0.009557723 0.004889965 -0.0381 0.01504999 0.004889965 -0.03815603 0.01534396 0.004889965 0.0102964 0.01016408 0.004889965 0.0102964 0.009632468 0.004889965 0.0102964 0.009557723 0.004889965 0.01034277 0.009432852 0.004889965 0.01034277 0.008096754 0.004889965 0.01205354 0.008005797 0.004889965 0.0102964 0.01695728 0.004889965 0.02257543 0.008005797 0.004889965 0.02049314 0.008005797 0.004889965 0.02257543 0.007785856 0.004889965 0.02049314 0.007785856 0.004889965 0.01425677 0.008005797 0.004889965 -0.03845 0.01549994 0.004889965 -0.03842097 0.01549994 0.004889965 -0.03842097 0.0162447 0.004889965 -0.03819149 0.01549994 0.004889965 -0.03815603 0.01555603 0.004889965 -0.03794395 0.01555603 0.004889965 -0.03790849 0.01549994 0.004889965 -0.03764998 0.01549994 0.004889965 -0.0381 0.01584994 0.004889965 -0.03799998 0.01584994 0.004889965 -0.03757542 0.0162447 0.004889965 -0.03799998 0.0155915 0.004889965 -0.03757542 0.01539498 0.004889965 -0.03909999 0.0162447 0.004889965 -0.03909999 0.01539498 0.004889965 -0.03845 0.01539999 0.004889965 -0.03819149 0.01539999 0.004889965 -0.03842097 0.01539999 0.004889965 -0.03842097 0.01539498 0.004889965 -0.03842097 0.01375764 0.004889965 0.02257543 0.01375764 0.004889965 0.0102964 0.01194995 0.004889965 -0.03757542 0.008005797 0.004889965 -0.03842097 0.008005797 0.004889965 0.01205354 0.01639956 0.004889965 0.01205354 0.01670026 0.004889965 0.01251322 0.01661247 0.004889965 0.01255702 0.01666754 0.004889965 0.01205354 0.01695728 0.004889965 0.01425677 0.01695728 0.004889965 0.01205354 0.01721411 0.004889965 0.0102964 0.01670026 0.004889965 0.0102964 0.01111245 0.004889965 0.0102964 0.01076275 0.004889965 0.0102964 0.01021414 0.004889965 0.02049314 0.01539498 0.004889965 0.02049314 0.01375764 0.004889965 0.02049314 0.01209998 0.004889965 0.02049314 0.01194995 0.004889965 0.02049314 0.01111245 0.004889965 0.02049314 0.01076275 0.004889965 0.01425677 0.01076275 0.004889965 0.02049314 0.01021414 0.004889965 0.02049314 0.01016408 0.004889965 0.01425677 0.01016408 0.004889965 0.02049314 0.009632468 0.004889965 0.02049314 0.009557723 0.004889965 0.01205354 0.01194995 0.004889965 0.01205354 0.01111245 0.004889965 0.01205354 0.01076275 0.004889965 0.01205354 0.01021414 0.004889965 0.01205354 0.01016408 0.004889965 0.01205354 0.009632468 0.004889965 0.01205354 0.009557723 0.004889965 0.0241 0.009557723 0.004889965 0.02257543 0.009632468 0.004889965 0.0241 0.009632468 0.004889965 0.02257543 0.01016408 0.004889965 0.0241 0.01016408 0.004889965 0.02257543 0.01021414 0.004889965 0.0241 0.01021414 0.004889965 0.02257543 0.01076275 0.004889965 0.02257543 0.01111245 0.004889965 0.0241 0.01111245 0.004889965 0.02257543 0.01194995 0.004889965 0.0241 0.01194995 0.004889965 0.02257543 0.01209998 0.004889965 0.0241 0.01209998 0.004889965 0.0224862 0.009286403 0.004889965 0.02243721 0.009227991 0.004889965 0.02221143 0.009290456 0.004889965 0.02219998 0.009349942 0.004889965 0.02221369 0.009413421 0.004889965 0.02226251 0.009471774 0.004889965 0.02232116 0.009497165 0.004889965 0.02244186 0.009468436 0.004889965 0.02225786 0.009231746 0.004889965 0.02231466 0.009204208 0.004889965 0.0223785 0.009202718 0.004889965 0.0187872 0.009339988 0.004889965 0.01812076 0.009097933 0.004889965 0.01743292 0.008994638 0.004889965 -0.03750091 0.0162447 0.004889965 -0.03750091 0.01539498 0.004889965 -0.03842097 0.009557723 0.004889965 0.02049314 0.006707489 0.004889965 -0.02705353 0.006707489 0.004889965 -0.03249996 0.006707489 0.004889965 0.02257543 0.006499946 0.004889965 0.02049314 0.006499946 0.004889965 -0.02705353 0.006499946 0.004889965 -0.03249996 0.006499946 0.004346489 -0.01036179 0.005999982 0.01056933 -0.03777253 0.005999982 0.004229962 -0.03022366 0.005999982 0.004229962 -0.03437638 0.005999982 0.009572863 0.02354997 0.005999982 0.004054963 0.0170986 0.005999982 0.003829956 0.02354997 0.005999982 0.004029989 0.01709997 0.005999982 0.004207432 -0.03000676 0.005999982 0.004229962 -0.03009998 0.005999982 0.003629982 0.02335 0.005999982 0.003629982 0.01729995 0.005999982 0.01192998 0.01280152 0.0142101 0.01217997 0.01280152 0.0142101 0.01192998 0.01249998 0.01249998 0.01217997 0.01249998 0.01249998 0.01192998 0.01280152 0.01078987 0.01217997 0.01280152 0.01078987 0.01217997 0.009774982 0.01297628 0.01217997 0.009976267 0.01222497 0.01217997 0.01004999 0.01249998 0.01217997 0.009976267 0.012775 0.01192998 0.0209636 0.008893966 0.01187998 0.02149718 0.009496271 0.01192998 0.02149718 0.009496271 0.01134175 0.0320025 0.01494997 0.01134175 0.03204488 0.01479291 0.01134175 0.03213542 0.01465779 0.01134175 0.03226459 0.01455885 0.01104176 0.0320025 0.01494997 0.01104176 0.03204488 0.01479291 0.01104176 0.03213542 0.01465779 0.01104176 0.0322321 0.01457774 0.01104176 0.03241866 0.01450663 0.01104176 0.03226459 0.01455885 0.002596259 -0.0302 0.002048075 -0.003669977 -0.03249996 0.002157449 0.002596259 -0.03249996 0.002048075 -0.002637386 0.02609997 0.002139449 8.62529e-4 0.02609997 0.02292162 -0.002637386 0.02609997 0.02286052 -0.002219974 -0.04411512 0.01688325 -0.002219974 -0.04048252 0.01667499 -0.002219974 -0.04002499 0.008782505 + + + + + + + + + + 0 0.1950908 -0.9807852 0 0.5555704 -0.8314695 0 0.5555707 -0.8314694 0 0.8314695 -0.5555704 0 0.5680655 -0.8229835 0 0.8854564 -0.4647226 0 0.885456 -0.4647234 0 1 0 0 0.8854564 0.4647226 0 0.885456 0.4647234 0 0.5680648 0.8229838 0 0.5680637 0.8229847 0 0.4286884 0.9034525 0 -0.7485085 0.6631253 0 -0.2000257 -0.9797907 0 -0.04026621 -0.9991891 0 0.278221 -0.9605172 0 0.6927256 -0.7212013 0 0.6927188 -0.7212079 0 0.7994465 -0.6007373 0 0.7994446 -0.60074 0 0.8854581 -0.4647193 0 0.8854525 -0.4647302 0 0.9485349 -0.3166731 0 0.9485391 -0.31666 0 0.9870507 -0.1604095 0 0.9870496 -0.1604153 0 0.9870498 0.1604144 0 0.9870505 0.1604099 0 0.9485397 0.3166584 0 0.9485342 0.3166748 0 0.8854535 0.4647279 0 0.8854569 0.4647216 0 0.7994455 0.6007386 0 0.6927216 0.7212051 0 0.6927242 0.7212026 0 0.5680633 0.8229849 0 0.5680683 0.8229814 0 0.428691 0.9034513 0 0.2782168 0.9605183 0 0.2782185 0.9605179 0 0.1205363 0.992709 0 0.120536 0.9927091 0 -0.7485102 -0.6631234 0 0.6927254 -0.7212015 0 0.7994438 -0.600741 0 0.7994405 -0.6007454 0 0.8854568 -0.4647217 0 0.8854559 -0.4647234 0 0.9485362 -0.3166691 0 0.88545 -0.4647346 0 0.8854591 -0.4647175 0 0.9485338 -0.3166759 0 0.9485381 -0.3166633 0 0.9870498 0.1604144 0 0.9485381 0.3166633 0 0.7994434 0.6007416 0 0.6927305 0.7211966 0 0.9485369 -0.3166668 0 0.9870513 -0.1604052 0 0.9870501 -0.1604123 0 0.9870501 0.1604123 0 0.9870513 0.1604052 0 0.9485369 0.3166668 0 0.9485347 0.3166733 0 0.8854522 0.4647306 0 0.8854615 0.4647129 0 0.7994362 0.6007509 0 0.7994468 0.600737 0 0.6927189 0.7212078 0 0.692734 0.7211933 0 0.5680478 0.8229956 0 0.5680871 0.8229684 0 0.4286833 0.9034548 0 0.4287042 0.903445 0 0.2782198 0.9605175 0 0.2782236 0.9605164 0 0.9870511 -0.1604067 0 0.9870501 0.1604123 0 0.9870511 0.1604067 0 0.9485366 0.3166677 0 0.799444 0.6007408 0 0.7994412 0.6007445 0 0.6927249 0.721202 0 0.4286912 0.9034512 0 0.4286957 0.9034489 0 0.278214 0.9605191 0 0.9485367 -0.3166673 0 0.9485373 0.3166654 0 0.9485359 0.3166698 0 0.8854565 0.4647225 0 0.7994401 0.6007459 0 0.7994452 0.6007393 0 0.6927251 0.7212018 1 0 0 0 -1 0 0 -1 -8.11678e-6 0 -0.963963 -0.2660366 0.01301413 -0.9664176 -0.2566471 0 -0.9395959 -0.3422859 0 -0.9009703 -0.4338808 0.01952004 -0.9070152 -0.4206455 0 -0.8658229 -0.5003507 0 -0.809018 -0.5877839 0 -0.7656989 -0.6431993 0 -0.6910616 -0.7227959 0.03251987 -0.7080203 -0.7054429 0 -0.6422692 -0.7664792 0 -0.5508981 -0.8345727 0 -0.4992992 -0.8664298 0 0.9961917 0.08719056 0 -0.8658209 0.5003541 0 -0.9395959 0.3422859 0.01161068 -0.9638984 0.266017 0.006156325 -0.9959557 0.08963519 0 -0.9963975 0.08480632 0 -0.9959746 -0.08963692 0.006507217 -0.9963764 -0.08480453 0.8405876 0.5396198 -0.04715049 0 0.9157734 -0.4016953 0 0 1 0 -0.1645941 0.9863615 0 -0.3246994 0.9458173 0 -0.3246996 0.9458172 0 -0.4759474 0.8794737 0 -0.4759488 0.879473 0 -0.6142115 0.7891414 0 -0.6142117 0.7891414 0 -0.7357268 0.6772783 0 -0.7357243 0.6772812 0 -0.8371648 0.5469508 0 -0.8371673 0.5469469 0 -0.9157734 0.4016953 0 -0.9693998 0.2454875 0 -0.9694011 0.2454825 0 -0.9965842 0.0825839 0 -0.996585 0.08257371 0 -0.996585 -0.08257365 0 -0.9965842 -0.0825839 0 -0.969401 -0.2454826 0 -0.9693998 -0.2454873 0 -0.9157734 -0.4016953 0 -0.8371672 -0.5469473 0 -0.8371651 -0.5469505 0 -0.7357237 -0.6772818 0 -0.735726 -0.6772793 0 -0.6142115 -0.7891414 0 -0.6142117 -0.7891414 0 -0.4759486 -0.8794732 0 -0.4759477 -0.8794736 0.6865847 0.5104394 0.5177386 0.3298159 0.7109336 -0.621124 0.3298084 0.7109305 -0.6211315 0.3298287 0.588598 -0.7380823 0.329839 0.5886055 -0.7380717 0.3298268 0.4473549 -0.831317 0.329797 0.4473592 -0.8313265 0.3309365 0.02116876 -0.9434156 0 0.08601379 -0.996294 0 0.3434122 -0.9391848 0 0.4218235 -0.906678 0.01947379 0.4737783 -0.8804289 0 0.5013992 -0.8652161 0 0.5729659 -0.8195793 0.01784718 0.6233904 -0.7817071 0 0.6441274 -0.7649183 0 0.7066779 -0.7075355 0.01572829 0.7529788 -0.657857 0 0.7672554 -0.6413418 0 0.996186 -0.08725631 0 0.9961864 0.08725154 -0.01617622 0.5395777 -0.8417806 0 0.4759476 -0.8794737 0 0.6142129 -0.7891404 0 0.6142125 -0.7891407 0 0.7357227 -0.6772829 0 0.7357224 -0.6772833 -0.004326045 0.8371596 -0.5469418 0 0.7357243 0.6772813 0 0.6142132 0.7891402 0 0.6142129 0.7891404 0 0.4759499 0.8794725 0 0.4759472 0.8794739 0 0 -1 0 0.1645951 -0.9863612 0 0.164595 -0.9863613 0 0.324698 -0.9458178 0 0.3247016 -0.9458166 0 0.4682719 -0.8835844 0 0.568449 -0.8227185 -0.01617282 0.5395777 -0.8417806 0 0.8634849 -0.5043749 0 0.8188747 -0.5739725 -0.004326403 0.8371569 -0.5469459 0 0.8634831 -0.504378 0 0.4759451 0.8794751 0 0.4759496 0.8794726 0 0.3246987 0.9458175 0 0.1645941 0.9863615 0 0.164595 0.9863613 0 -0.1645951 0.9863612 0 -0.3247005 0.945817 0 -0.324697 0.9458182 0 -0.4759472 0.8794739 0 -0.614216 0.7891381 0 -0.8371599 0.5469582 0 -0.8371704 0.5469422 0 -0.9157755 0.4016907 0 -0.9157713 0.4017003 0 -0.9694 0.2454867 0 -0.9693999 0.245487 0 -0.9965851 0.08257204 0 -0.9965842 0.08258342 0 -0.9965842 -0.08258354 0 -0.9965851 -0.08257216 0 -0.9694001 -0.2454866 0 -0.9694 -0.2454866 0 -0.9157713 -0.4017003 0 -0.9157755 -0.4016907 0 -0.83717 -0.5469428 0 -0.8371594 -0.5469591 0 -0.7357304 -0.6772745 0 -0.7357218 -0.677284 0 -0.6142104 -0.7891424 0 -0.6142157 -0.7891383 0 -0.4759466 -0.8794743 0 -0.4759461 -0.8794745 0 -0.324698 -0.9458178 0 -0.3247016 -0.9458166 0 -0.1645951 -0.9863612 0 -0.164595 -0.9863613 0 0.1645941 -0.9863615 0 0.3246998 -0.9458172 0 0.4682634 -0.883589 0 0.1205362 -0.992709 0 0.4286916 -0.903451 0 0.5680655 -0.8229835 0 0.5680639 -0.8229845 0 0.6927242 -0.7212027 0 0.7994447 -0.6007398 0 0.7994418 -0.6007438 0 0.885457 -0.4647214 0 0.8854551 -0.464725 0 0.6927242 0.7212027 0 0.2782164 0.9605185 0 -0.8451926 -0.5344619 0 -0.9709428 0.2393121 0 -0.996757 0.08047097 1 -6.44127e-7 0 1 -1.72123e-6 0 1 -2.22119e-6 0 1 3.24979e-6 0 1 1.01069e-6 0 1 -2.59545e-7 0 1 -1.8578e-6 0 1 1.81403e-6 0 1 -6.7033e-7 0 1 1.0439e-6 0 1 -5.08646e-6 0 1 8.74638e-7 0 1 9.0726e-6 0 -9.21965e-6 0 1 -2.60721e-6 0 1 0 -0.8072033 -0.5902737 0 -0.901922 -0.431899 0 -0.7232495 -0.6905868 0 -0.9505801 -0.3104797 0.02857315 -0.9015524 -0.4317256 0 0.6427893 -0.7660431 0 0.6427858 -0.7660461 0 0.8660264 -0.4999986 0 0.8660238 -0.500003 0 0.8660243 0.5000022 1 -2.70552e-6 0 1 -5.03596e-6 0 0 -0.7485226 -0.6631093 0 0.7994368 -0.6007503 0 0.7994505 -0.6007322 0.8992309 0.280633 0.3356027 0.8992444 0.4360636 0.03475469 0.8992481 0.3302 -0.2869163 0.9998478 0.00595045 0.01640516 0.9998468 0.01322543 0.01146894 0.9998494 0.01653188 -0.00529015 0.9998487 0.01421272 -0.0100398 0.9998474 0.01058036 -0.01390743 0.9714527 0.009884655 0.2370275 0.9924341 0.005128383 -0.1226724 0.9651975 0.03503924 0.2591643 0.9607785 0.1408125 0.2389071 0.9608057 0.1187638 0.2504948 0.9603042 0.09310966 0.2629571 0.9605491 0.2766518 0.02845168 0.9596582 0.2752856 0.05722051 0.9603695 0.2656506 0.08438187 0.9607917 0.2542755 0.1105598 0.9608519 0.2087004 0.1822305 0.9603649 0.2555967 -0.1112191 0.9604189 0.2642243 -0.08821058 0.9605525 0.2767956 -0.02689456 0.9604353 0.2784098 0.007214725 0.9604403 0.06550669 -0.2706717 0.9604148 0.1414208 -0.2400073 0.9607297 0.1439411 -0.2372329 0.9608223 0.2087308 -0.1823518 0.9603788 0.2269988 -0.1616921 0.9980793 0.008407831 -0.0613774 0.9980797 0.02059412 -0.05842006 0.998072 0.03236532 -0.05296146 0.9980722 0.04244428 -0.04528093 0.9980732 0.04232549 -0.04537063 0.9980764 0.05061489 -0.03580027 0.9980711 0.05920404 -0.01868492 0.9980778 0.06069958 -0.01249694 0.9980758 0.06069815 -0.01267099 0.9980742 0.06172245 -0.00620377 0.9980767 0.06166195 -0.006374597 0.9980748 0.06073957 0.01254844 0.9980733 0.05914235 0.01876038 0.9980735 0.05407804 0.03041124 0.9980744 0.05063909 0.03582561 0.9980764 0.04231178 0.04531508 0.9980884 0.03699737 0.04950499 0.9980863 0.03193873 0.05295109 0.9980733 0.03226178 0.05300009 0.9980774 0.02076089 0.05840027 0.9980693 0.008401215 0.06153917 0.9980765 0.008448362 0.06141692 0.9977909 0.00376445 0.06632667 0.9969647 0.003322482 -0.07778471 0.9937171 0.0151174 -0.1108965 0.9937252 0.02630364 -0.1087124 0.9937158 0.03750222 -0.1054633 0.993719 0.0372169 -0.1055341 0.9937145 0.04815065 -0.1010604 0.9937171 0.05804222 -0.09569507 0.9937016 0.06772691 -0.08927637 0.9937239 0.06749105 -0.08920687 0.9937212 0.07625049 -0.08187949 0.9937213 0.08428841 -0.0735774 0.9937247 0.09132903 -0.06457853 0.9937188 0.1026183 -0.04463893 0.9937207 0.1026114 -0.04461097 0.9937109 0.1113818 -0.01152545 0.9937195 0.1119007 0 0.9937144 0.109606 0.02276676 0.9937195 0.1095594 0.02276402 0.993723 0.1066284 0.03383868 0.9937193 0.1026112 0.04464131 0.9937165 0.0975055 0.05495762 0.9937217 0.09749019 0.05489146 0.9937151 0.09144043 0.06456816 0.9937199 0.09139788 0.06455373 0.9937198 0.08424037 0.07365202 0.9937175 0.0763204 0.08185881 0.9937122 0.05809736 0.09571307 0.9937154 0.048029 0.1011089 0.993713 0.03731554 0.1055563 0.9937209 0.03733867 0.1054735 0.9937152 0.0263462 0.1087931 0.9937298 0.01492363 0.1108082 0.9937158 0.003669798 0.1118718 0.9870594 0.02161103 -0.1588927 0.9870812 0.02154445 -0.1587659 0.9870679 0.03776425 -0.1557905 0.9870861 0.0534116 -0.1510242 0.9870737 0.05344516 -0.1510931 0.9870683 0.06864678 -0.1448581 0.9870765 0.08314526 -0.1369925 0.987066 0.09671384 -0.1278559 0.9870698 0.1207019 -0.1054726 0.9870807 0.1206817 -0.1053933 0.9870705 0.1308836 -0.0925281 0.9870589 0.1397587 -0.0786271 0.9870708 0.146981 -0.06393653 0.9870712 0.1527475 -0.0485664 0.987083 0.1568652 -0.0325666 0.987073 0.1569015 -0.03269541 0.98708 0.1593856 -0.01641184 0.987075 0.1594173 -0.016402 0.9870759 0.1602534 0 0.9870769 0.1594102 0.01636475 0.987078 0.1568866 0.03261446 0.9870718 0.1527587 0.04852002 0.9870732 0.1527398 0.04855084 0.9870744 0.146973 0.06389796 0.9870799 0.1469104 0.06395828 0.9870736 0.1396614 0.07861661 0.9870733 0.1308403 0.09255975 0.987073 0.12076 0.1053756 0.987068 0.1207283 0.1054592 0.9870705 0.09673124 0.1278087 0.987063 0.08315575 0.1370835 0.987071 0.0831173 0.1370495 0.9870639 0.06870388 0.1448609 0.9870874 0.05340892 0.1510165 0.9870587 0.03776586 0.1558486 0.9870755 0.02161139 0.1587924 0.9870256 0.02651298 0.1583593 0.9839842 0.007424116 0.1781011 0.9781363 0.02794295 -0.2060796 0.978129 0.02801573 -0.2061042 0.9781395 0.04891431 -0.2021155 0.9781317 0.0694108 -0.1960629 0.9781335 0.08907997 -0.1879355 0.9781328 0.1078482 -0.1778343 0.978125 0.1418944 -0.1521102 0.9781391 0.141772 -0.1521334 0.9781343 0.156633 -0.136819 0.978142 0.1697798 -0.1200552 0.9781419 0.1812009 -0.1020044 0.9781258 0.1907732 -0.0829187 0.9781431 0.1981524 -0.06302118 0.9781377 0.1982089 -0.06292903 0.9781345 0.2036212 -0.04232686 0.9781379 0.2068647 -0.02129489 0.9781337 0.2068853 -0.02128148 0.9781346 0.2079732 0 0.9781301 0.2068976 0.02133387 0.9781301 0.2068994 0.02131223 0.9781277 0.1982396 0.06298744 0.9781336 0.1982185 0.06296145 0.9781281 0.190724 0.08300513 0.9781469 0.1812148 0.101931 0.9781312 0.1698379 0.1200601 0.9781296 0.1698465 0.1200609 0.9781311 0.1566571 0.1368144 0.9781447 0.14179 0.1520815 0.9781307 0.1254841 0.1658739 0.9781341 0.1078451 0.1778292 0.9781361 0.08907485 0.1879247 0.978124 0.06939923 0.1961055 0.9781225 0.04897743 0.2021824 0.9781278 0.04891371 0.2021718 0.9781531 0.02530533 0.2063404 0.9677718 0.03389596 -0.2495374 0.9677819 0.03389412 -0.2494983 0.9677677 0.08400541 -0.237421 0.9677674 0.1079262 -0.2275484 0.9677726 0.151941 -0.2008241 0.9677741 0.1716964 -0.184211 0.9677782 0.1896523 -0.1656426 0.9677752 0.2056353 -0.1453464 0.967773 0.2309361 -0.1004194 0.9677655 0.2309345 -0.1004944 0.9677723 0.2465471 -0.05129826 0.9677822 0.2504672 -0.0257669 0.9677702 0.2505158 -0.02574396 0.9677785 0.2465324 0.05125099 0.9677722 0.2400175 0.07621568 0.9677661 0.2309282 0.1005039 0.9677645 0.2194575 0.1235737 0.9677677 0.2056435 0.1453838 0.9677774 0.2056278 0.1453411 0.9677804 0.1896759 0.1656028 0.9677678 0.1717328 0.1842098 0.9677659 0.1519804 0.2008266 0.9677707 0.1306127 0.2153145 0.9677893 0.08396536 0.2373473 0.9677828 0.007544994 0.2516736 -0.01570832 -0.6079721 -0.7938031 0 0.3210152 -0.9470741 0 0.321006 -0.9470773 0 -0.3210214 -0.947072 0 -0.3210328 -0.9470682 0 0.9654633 -0.2605394 0 0.6374468 -0.7704945 0 -0.2605302 0.9654657 0 -0.2605396 0.9654632 0 -0.5566889 0.8307212 0 -0.2605396 -0.9654632 0 -0.2605302 -0.9654657 0 -0.5566716 -0.8307328 0 -0.7705015 -0.6374382 0 0.2745308 -0.9615783 0 0.2745198 -0.9615815 0 0.5923962 -0.8056468 0 0.5923934 -0.8056489 -0.02610987 0.8357227 -0.5485308 -0.02120292 0.8835754 0.4678087 0 0.9059595 0.4233646 0 0.9914293 0.1306446 0 0.9914295 0.1306434 0 0.9748124 -0.2230266 0 0.9748203 -0.2229922 0 0.987687 0.1564433 0 0.891002 0.4539996 0 0.890989 0.454025 0 0.4540245 0.8909893 0 -0.7070914 0.7071222 0 -0.7071376 -0.707076 0 -0.4540245 -0.8909893 0 0.156414 -0.9876917 0.01744431 0.6464889 0.7627241 0.0174033 0.5632355 0.8261132 0.03131306 0.5317724 0.8463082 0.0279693 0.698786 0.7147839 0.03195542 0.7067477 0.7067437 0.01743692 0.7553451 0.6550952 0.0174508 0.9071954 0.4203477 0.01743549 0.8805196 0.473689 0.03241699 0.8462824 0.5317474 0.024944 0.8343781 0.5506279 0.01744747 0.7955133 0.6056851 0.02214419 0.9319759 0.3618436 0.03278851 0.9433757 0.3301019 0.01743149 0.9627873 0.2696976 0.03299462 0.9931714 0.1119018 0.01964348 0.9874757 0.1565434 0.01745128 0.9763993 0.2152671 0.0174511 0.9763914 -0.2153033 0.01964825 0.987488 -0.1564658 0.03299313 0.9931715 -0.1119017 0.01742839 0.9984752 -0.05237853 0.01742976 0.9984709 0.05246192 0.01743143 0.9627645 -0.2697791 0.03279471 0.9433739 -0.3301064 0.02213829 0.931932 -0.3619567 0.01744771 0.7955151 -0.6056827 0.02494907 0.8344088 -0.550581 0.0324099 0.8462783 -0.5317543 0.01743662 0.8805469 -0.4736382 0.01745039 0.9072244 -0.4202852 0.01743727 0.7554145 -0.6550152 0.03242945 0.3301069 -0.9433864 0.01741391 0.3722373 -0.9279742 0.01744014 0.4672064 -0.8839763 0.03298878 0.1119043 -0.9931713 0.01742434 0.1637936 -0.9863408 0.01743179 0.2659941 -0.9638171 0.01742821 -0.05232584 -0.998478 0.01742577 0.05232495 -0.9984781 0.6604736 0.2795409 -0.6968728 0.6498958 0.3091289 -0.6943162 0.6610491 0.3506074 -0.6633917 0.6509549 0.4461944 -0.6141405 0.6611413 0.4851095 -0.5723294 0.6609362 0.6263732 -0.4133038 0.6612167 0.5968721 -0.4544626 0.6524282 0.5631926 -0.5071012 0.64578 0.5768665 -0.5001933 0.660995 0.5246138 -0.5365315 0.6426604 0.674732 -0.3629385 0.6543109 0.6549124 -0.3781099 0.6612641 0.6806473 -0.3153557 0.6608026 0.7413119 -0.117459 0.6613024 0.7325303 -0.1614884 0.6565911 0.7173312 -0.233075 0.6394856 0.7402858 -0.2074488 0.6608749 0.6995827 -0.2717142 0.6357676 0.7708203 -0.04044467 0.6592664 0.7477907 -0.07859373 0.6607983 0.7495301 0.03937381 0.6490516 0.7565768 0.07952159 0.6608051 0.7413021 0.1175063 0.6608735 0.6996108 0.271645 0.6491076 0.7234664 0.2350654 0.6590185 0.7242508 0.2028681 0.6612853 0.7325408 0.161511 0.6609371 0.6263557 0.4133291 0.6492554 0.6586731 0.3802858 0.6569969 0.6639248 0.3571541 0.6612686 0.6806548 0.3153299 0.6609984 0.5245714 0.5365687 0.6495348 0.5650358 0.5087624 0.6546652 0.5710711 0.495269 0.6612128 0.5968697 0.4544715 0.6611459 0.4851117 0.5723224 1 3.37603e-6 0 1 2.30824e-6 0 1 -2.88437e-6 0 1 -2.31707e-5 0 1 3.37602e-6 0 1 3.78198e-6 0 -1 0 0 -1 1.43542e-6 0 1 0 0 1 -7.42029e-7 0 1 2.65976e-7 0 0 -1 4.859e-6 0 -1 1.03727e-5 0 -1 1.39635e-6 0 -1 -1.55571e-6 0 -1 3.89734e-7 0 -1 -2.04249e-6 0 -1 6.91972e-7 -0.6508656 -0.7009393 0.2916474 -0.7062529 -0.6687352 0.2323794 -0.7061735 -0.6949909 0.1353021 0 -1 -5.414e-6 0 -1 -3.60818e-5 0 -1 -4.39739e-5 0 -1 -1.00335e-5 -1 -2.83249e-7 0 -1 2.83891e-7 0 -1 -2.28747e-7 0 -1 2.84168e-7 0 1 -4.57934e-7 0 0 -0.9807854 0.1950898 0 -0.9807853 0.1950902 0 -0.9709428 -0.2393121 0 -0.970942 -0.2393151 0 -0.748512 -0.6631214 0 -0.7485083 -0.6631255 0 -0.1736483 0.9848077 0 -0.1736482 0.9848078 0 -0.5000001 0.8660253 0 -0.4999995 0.8660258 0 -0.7660443 0.6427879 0 -0.7660449 0.6427872 0 -0.9396927 0.3420202 0 -0.9396927 0.34202 0 -0.9396927 -0.34202 0 -0.9396927 -0.3420202 0 -0.7660443 -0.6427879 0 -0.7660437 -0.6427886 0 -0.5 -0.8660254 0 -0.4999996 -0.8660256 0 -0.1736482 -0.9848078 0 -0.1736486 -0.9848077 0 0.1736485 -0.9848078 0 0.1736484 -0.9848078 0 0.5 -0.8660254 0 0.4999995 -0.8660258 0 0.7660446 -0.6427876 0 0.7660433 -0.6427891 0 0.9396927 -0.34202 0 0.9396927 0.34202 0 0.7660438 0.6427884 0 0.766045 0.6427869 0 0.5 0.8660254 0 0.4999995 0.8660258 0 0.1736481 0.9848078 0 0.1736485 0.9848078 1 -1.82007e-6 0 0 -0.2736676 -0.9618244 0 -0.2736603 -0.9618265 0 0.09226995 -0.9957341 0 0.09226959 0.9957341 0 0.09226787 0.9957343 0 -0.9749279 -0.2225213 0 -0.9749287 -0.2225174 0 -0.7818287 -0.6234934 0 -0.781835 -0.6234854 0 -0.4338868 0.9009674 0 -0.7818287 0.6234934 0 -0.781835 0.6234854 0 -0.9749287 0.2225174 0 -0.974927 0.2225249 0 -0.1564354 0.9876883 0 -0.1564354 0.9876883 0 -0.4539946 0.8910045 0 -0.4539896 0.891007 0 -0.7071083 0.7071053 0 -0.7071084 0.7071052 0 -0.8910058 0.4539919 0 -0.8910057 0.4539921 0 -0.9876884 0.1564344 0 -0.9876884 0.1564345 0 -0.9876884 -0.1564345 0 -0.9876884 -0.1564344 0 -0.8910057 -0.4539921 0 -0.8910058 -0.4539919 0 -0.7071084 -0.7071052 0 -0.7071083 -0.7071053 0 -0.4539896 -0.891007 0 -0.4539895 -0.8910071 0 -0.1564354 -0.9876883 0 -0.1564354 -0.9876883 0 0.1564353 -0.9876883 0 0.1564354 -0.9876883 0 0.4539898 -0.8910069 0 0.4539892 -0.8910073 0 0.8910062 0.4539911 0 0.7071084 0.7071052 0 0.7071092 0.7071044 0 0.4539942 0.8910046 0 0.4539898 0.8910069 0 0.1564354 0.9876883 0 -0.08715617 0.9961947 0 -0.08715581 0.9961948 0 -0.2588198 0.9659257 0 -0.2588177 0.9659262 0 -0.4226194 0.9063073 0 -0.4226167 0.9063085 0 -0.5735777 0.8191512 0 -0.5735751 0.8191531 0 -0.7071076 0.7071061 0 -0.7071061 0.7071075 0 -0.8191524 0.573576 0 -0.8191515 0.5735773 0 -0.9063083 0.4226174 0 -0.9063072 0.4226196 0 -0.9659261 0.2588182 0 -0.9659258 0.2588195 0 -0.9961948 0.08715569 0 -0.9961948 -0.08715569 0 -0.9659261 -0.258818 0 -0.9659257 -0.2588196 0 -0.9063083 -0.4226174 0 -0.9063072 -0.4226196 0 -0.8191524 -0.573576 0 -0.8191515 -0.5735773 0 -0.7071076 -0.7071061 0 -0.7071046 -0.707109 0 -0.5735771 -0.8191517 0 -0.5735757 -0.8191525 0 -0.4226191 -0.9063075 0 -0.422617 -0.9063085 0 -0.2588198 -0.9659257 0 -0.2588184 -0.965926 0 -0.08715617 -0.9961947 0 -0.08715581 -0.9961948 0 0.08715629 -0.9961947 0 0.08715569 -0.9961948 0 0.2588203 -0.9659256 0 0.2588182 -0.9659261 0 0.4226194 -0.9063073 0 0.422617 -0.9063085 0 0.5735781 -0.8191509 0 0.5735734 -0.8191542 0 0.7071083 -0.7071053 0 0.7071039 -0.7071097 0 0.8191533 -0.5735747 0 0.8191509 -0.5735781 0 0.9063085 -0.4226171 0 0.9063073 -0.4226192 0 0.9659256 -0.2588202 0 0.9659259 -0.258819 0 0.9961948 -0.08715456 0 0.9961948 0.08715456 0 0.9659263 0.2588175 0 0.9659252 0.2588217 0 0.9063085 0.4226171 0 0.9063073 0.4226192 0 0.819152 0.5735767 0 0.8191524 0.5735761 0 0.7071068 0.7071068 0 0.5735753 0.8191529 0 0.5735761 0.8191524 0 0.4226194 0.9063073 0 0.422617 0.9063085 0 0.2588196 0.9659258 0 0.2588183 0.9659261 0 0.08715605 0.9961947 0 0.08715593 0.9961947 0 -0.9967574 -0.08046615 0 -0.9709417 -0.2393164 0 -0.9709414 -0.2393172 0 -0.9199811 -0.3919628 0 -0.9199799 -0.3919656 0 -0.8451894 -0.5344669 0 -0.7485122 -0.6631211 0 -0.5000001 -0.8660254 0 -0.3546059 -0.9350159 0 -0.04026454 -0.9991891 0 0.5680655 -0.8229834 0 0.5680629 -0.8229853 0 0.6927234 -0.7212034 0 0.7994419 -0.6007435 0 0.8854593 -0.4647171 0 0.8854519 -0.4647311 0 0.948539 -0.3166602 0 0.9870504 -0.160411 0 0.9870504 0.1604104 0 0.9870504 0.160411 0 0.9485372 0.3166661 0 0.8854584 0.4647187 0 0.5680655 0.8229834 0 0.5680642 0.8229843 0 0.4286946 0.9034495 0 0.1205368 0.9927089 0 -0.04026556 0.999189 0 -0.2000266 0.9797906 0 -0.9199805 0.3919642 0 -0.9967575 0.08046579 0 -0.9967574 0.08046615 0 -0.9967572 -0.08046978 0 -0.9967579 -0.08045935 0 -0.9709432 -0.23931 0 -0.9709379 -0.2393319 0 -0.9199819 -0.391961 0 -0.919981 -0.391963 0 -0.8451926 -0.534462 0 -0.8451868 -0.534471 0 -0.7485083 -0.6631255 0 -0.7485125 -0.6631207 0 -0.6324415 -0.7746081 0 -0.6324452 -0.7746051 0 -0.5000041 -0.8660232 0 -0.500001 -0.8660249 0 -0.3546051 -0.9350162 0 -0.3546027 -0.9350171 0 -0.2000257 0.9797907 0 -0.3546051 0.9350162 0 -0.3546027 0.9350171 0 -0.500002 0.8660243 0 -0.500001 0.8660249 0 -0.6324469 0.7746037 0 -0.6324399 0.7746095 0 -0.748515 0.663118 0 -0.7485071 0.6631268 0 -0.8451877 0.5344699 0 -0.8451911 0.5344645 0 -0.9199819 0.391961 0 -0.9199815 0.391962 0 -0.9709382 0.2393306 0 -0.970943 0.2393112 0 -0.9967579 0.08045893 0 -0.996757 0.0804702 0 -0.996757 -0.08047002 0 -0.9709426 -0.2393126 0 -0.5000016 -0.8660246 0 -0.3546072 -0.9350154 0 0.1205363 0.992709 0 -0.04026585 0.9991891 0 -0.04026585 0.9991891 0 -0.200025 0.9797908 0 -0.3546046 0.9350165 0 -0.3546046 0.9350164 0 -0.6324458 0.7746047 0 -0.6324465 0.7746042 0 -0.7485119 0.6631214 0 -0.8451912 0.5344641 0 -0.8451901 0.5344659 0 -0.9199776 0.3919709 0 -0.9709414 0.2393172 0 -0.9709424 0.2393136 0 -0.996757 0.08047002 0 -0.2000271 0.9797904 0 -0.3546145 0.9350126 0 -0.748504 0.6631304 0 -0.9199753 0.3919764 0 -0.9199836 0.3919569 0 -0.08715403 0.9961948 0 -0.08715796 0.9961946 0 -0.258826 0.965924 0 -0.2588114 0.965928 0 -0.4226213 0.9063065 0 -0.4226209 0.9063066 0 -0.5735833 0.8191474 0 -0.5735827 0.8191476 0 -0.8191508 0.5735783 0 -0.8191506 0.5735787 0 -0.9063082 0.4226176 0 -0.9659236 0.2588278 0 -0.9659277 0.2588123 0 -0.9961946 0.08715862 0 -0.8191506 -0.5735787 0 -0.8191508 -0.5735783 0 -0.5735827 -0.8191476 0 -0.4226213 -0.9063065 0 -0.2588258 -0.9659241 0 -0.08715409 -0.9961949 0 -0.08715784 -0.9961946 0 0.08715409 -0.9961949 0 0.08715796 -0.9961946 0 0.2588263 -0.9659239 0 0.2588114 -0.965928 0 0.4226213 -0.9063065 0 0.5735839 -0.8191469 0 0.5735821 -0.8191482 0 0.707101 -0.7071126 0 0.7071164 -0.7070971 0 0.8191516 -0.573577 0 0.8191499 -0.5735796 0 0.9063083 -0.4226174 0 0.9659237 -0.2588273 0 0.9659268 -0.2588154 0 0.9961947 -0.08715695 0 0.9961951 -0.08715158 0 0.9961947 0.08715695 0 0.9961951 0.08715158 0 0.9659227 0.2588309 0 0.9659278 0.2588118 0 0.9063083 0.4226174 0 0.8191499 0.5735796 0 0.8191516 0.573577 0 0.707101 0.7071126 0 0.7071164 0.7070971 0 0.5735821 0.8191482 0 0.5735839 0.8191469 0 0.4226206 0.9063068 0 0.4226213 0.9063065 0 0.2588258 0.9659241 0 0.2588118 0.9659278 0 0.08715409 0.9961949 0 0.08715796 0.9961946 0 -0.9199771 -0.391972 0 -0.9199836 -0.3919569 0 -0.748504 -0.6631304 0 -0.748525 -0.6631067 0 0.5680538 -0.8229914 0 0.568068 -0.8229817 0 0.7994421 -0.6007432 0 0.8854523 -0.4647306 0 0.885457 -0.4647215 0 0.9870507 -0.1604093 0 0.9870501 -0.1604129 0 0.9870517 0.1604027 0 0.8854613 0.4647133 0 0.5680538 0.8229914 0 0.568068 0.8229817 0 -0.2000281 0.9797902 0 -0.9967566 -0.08047634 0 -0.9199787 -0.3919684 0 -0.9199876 -0.3919475 0 -0.6324571 -0.7745954 0 -0.5000135 0.8660177 0 -0.6324397 0.7746096 0 -0.6324535 0.7745984 0 -0.8451794 0.5344828 0 -0.8451993 0.5344514 0 -0.9199787 0.3919684 0 -0.9199876 0.3919475 0 -0.9709385 0.2393292 0 -0.9967577 0.08046197 0 -0.9967569 0.08047169 0 -0.08715605 0.9961947 0 -0.2588191 0.9659259 0 -0.2588193 0.9659259 0 -0.4226174 0.9063082 0 -0.573577 0.8191517 0 -0.8191539 0.5735738 0 -0.8191515 0.5735772 0 -0.8191536 -0.5735743 0 -0.573577 -0.8191517 0 -0.2588222 -0.965925 0 -0.08715617 -0.9961947 0 -0.08715528 -0.9961948 0 0.08715605 -0.9961947 0 0.2588223 -0.965925 0 0.2588195 -0.9659258 0 0.4226168 -0.9063085 0 0.5735792 -0.8191502 0 0.5735763 -0.8191522 0 0.7071053 -0.7071084 0 0.8191547 -0.5735728 0 0.8191497 -0.5735798 0 0.9063091 -0.4226155 0 0.9063078 -0.4226182 0 0.9659258 -0.2588195 0 0.9961948 -0.08715528 0 0.9961948 0.08715528 0 0.9659258 0.2588195 0 0.9063068 0.4226205 0 0.9063103 0.4226131 0 0.8191518 0.5735769 0 0.8191526 0.5735756 0 0.7071053 0.7071084 0 0.5735763 0.8191522 0 0.5735792 0.8191502 0 0.4226168 0.9063085 0 0.2588195 0.9659258 0 0.08715528 0.9961948 0 -0.9967574 -0.08046698 0 -0.919979 -0.3919677 0 -0.9199804 -0.3919647 0 -0.7485098 -0.6631238 0 -0.7485156 -0.6631173 0 -0.5000003 -0.8660253 0 0.2782158 -0.9605187 0 0.5680675 -0.8229821 0 0.5680646 -0.8229839 0 0.7994401 -0.6007459 0 0.7994431 -0.6007419 0 0.8854582 -0.4647192 0 0.9870509 -0.1604074 0 0.9870496 -0.1604155 0 0.9870496 0.1604155 0 0.9870512 0.1604061 0 0.8854547 0.4647258 0 0.8854582 0.4647192 0 0.5680675 0.8229821 0 0.5680646 0.8229839 0 -0.04026579 0.9991891 0 -0.2000254 0.9797907 0 -0.9967566 -0.08047592 0 -0.5000004 0.8660252 0 -0.6324452 0.7746051 0 -0.8451861 0.5344723 0 -0.8451966 0.5344557 0 -0.9199792 0.3919674 0 -0.9967576 0.08046442 0 -0.9967567 0.08047503 0 0.1564331 -0.9876886 0 0.4539995 -0.891002 0 0.4539862 -0.8910087 0 0.7071074 -0.7071063 0 0.7071089 -0.7071046 0 0.8910087 -0.4539861 0 0.9876887 -0.1564323 0 0.9876876 -0.1564397 0 0.9876884 0.1564344 0 0.9876879 0.1564376 0 0.8910087 0.4539861 0 0.7071089 0.7071046 0 0.7071074 0.7071063 0 0.4539999 0.8910018 0 0.4539858 0.891009 0 0.1564415 0.9876872 0 0.1564247 0.9876899 0 -0.1564414 0.9876874 0 -0.4539998 0.8910019 0 -0.891009 0.4539857 0 -0.891009 0.4539856 0 -0.9876886 0.1564337 0 -0.9876877 0.156439 0 -0.9876886 -0.1564337 0 -0.9876877 -0.156439 0 -0.891009 -0.4539856 0 -0.891009 -0.4539857 0 -0.4539996 -0.8910019 0 -0.453986 -0.8910088 0 -0.156433 -0.9876886 1 4.72119e-7 0 1 -9.9936e-7 0 1 0 0 1 -2.14028e-7 0 1 -2.66679e-6 0 1 5.61032e-7 0 1 -6.01252e-7 0 1 -8.9253e-7 0 1 -5.67511e-7 0 1 1.03586e-6 0 1 -5.17929e-7 0 1 4.62728e-7 0 1 -1.86006e-7 0 1 -4.26169e-7 0 1 1.65885e-6 0 1 -1.65885e-6 0 1 -2.50384e-7 0 1 1.4289e-6 0 1 -4.76299e-7 0 1 0 0 1 9.71062e-7 0 1 -2.01303e-7 0 1 0 0 0 -0.2225216 -0.9749279 0 -0.1725885 -0.984994 0 -0.04486465 -0.9989931 0 0.08601582 -0.9962939 0.02990859 0.1341746 -0.9905064 0 0.1749768 -0.9845726 0 0.2578449 -0.9661864 0.02902096 0.3088874 -0.9506558 0 0.3434103 -0.9391855 0 0.4218215 -0.9066789 0.02744746 0.4736904 -0.8802637 0 0.5013999 -0.8652157 0 0.5729707 -0.8195759 0.02515643 0.623295 -0.7815821 0 0.6441279 -0.7649179 0 0.706672 -0.7075414 0 0.9061563 -0.4229431 0 0.9658682 -0.2590345 0 0.706672 0.7075414 0 0.6234902 0.7818312 0.03576135 0.6437137 0.7644304 0 0.5729707 0.8195759 0 0.4738702 0.8805947 0.04225891 0.5009531 0.8644422 0 0.4218215 0.9066789 1 3.44768e-6 0 1 -1.85058e-6 0 0 0.9694004 -0.245485 0 0.9693998 -0.2454873 0 0.9965845 -0.08257877 0 0.9965846 -0.08257883 0 0.9965846 0.08257883 0 0.9693998 0.2454875 0 0.9694005 0.2454849 0 0.9157734 0.4016953 0.3297809 -0.2100703 -0.9203885 0.3298658 -0.2100706 -0.9203581 0.3298276 -0.3710309 -0.8680725 0.3298197 -0.3710377 -0.8680726 0.3298499 -0.5200553 -0.7878717 0.3298192 -0.5200752 -0.7878713 0 -0.6422711 -0.7664777 0 -0.5749535 -0.8181861 0.01871949 -0.5508 -0.8344274 0 -0.4993035 -0.8664273 0 -0.4240267 -0.9056499 0.02009469 -0.3929472 -0.9193415 0 -0.341132 -0.9400154 0.02097332 -0.2224711 -0.9747138 0.02134352 -0.0448541 -0.9987655 0 -0.7357246 -0.6772809 0 -0.6142132 -0.7891402 0 -0.6142129 -0.7891404 0 -0.4759473 -0.8794738 0.329828 0.5885967 -0.7380837 0.2270982 -0.04369163 -0.9728913 0 -0.1725836 -0.9849949 0 -0.08843123 -0.9960824 0 0.5729487 -0.8195912 0.01784914 0.6233957 -0.7817028 0 0.6441249 -0.7649204 0.01572835 0.7529823 -0.6578528 0 0.7672506 -0.6413474 0 0.906194 -0.4228623 0.7674857 -0.3367155 0.5455168 1 6.38266e-5 0 0 -0.9199793 -0.3919672 0 -0.6324478 -0.7746031 0 -0.5000014 -0.8660246 0 -0.5 -0.8660255 0 0.4286907 0.9034513 0 -0.2000265 0.9797906 0 -0.2000249 0.9797909 0 -0.3546041 0.9350166 0 -0.3546056 0.935016 0 -0.9967574 -0.08046644 0 -0.9709406 -0.2393205 0 -0.6324442 -0.7746059 0 -0.499998 -0.8660266 0 -0.3546071 -0.9350154 0 -0.3546041 -0.9350166 0 -0.200024 -0.979791 0 -0.06037825 -0.9981756 0 -0.06037932 -0.9981756 0 0.02013665 -0.9997972 0 0.02013725 -0.9997973 0 0.2782131 -0.9605194 0 0.5680671 -0.8229823 0 0.6927264 -0.7212005 0 0.7994406 -0.6007452 0 0.8854561 -0.4647232 0 0.9485372 -0.3166658 0 0.9485363 -0.3166685 0 -0.06037968 0.9981756 0 -0.06037783 0.9981756 0 -0.2000274 0.9797904 0 -0.200024 0.979791 0 -0.8451901 0.534466 0 -0.9967574 0.08046686 1 3.31009e-7 0 1 -5.38965e-7 0 1 -5.66237e-6 0 1 7.17919e-6 0 1 4.40051e-7 0 1 -5.66259e-7 0 1 0 0 1 -1.60507e-7 0 1 -1.89059e-7 0 1 2.03678e-7 0 1 5.03577e-7 0 1 -2.84215e-7 0 1 -4.08038e-7 0 1 5.06722e-7 0 1 -3.13709e-7 0 1 -1.45046e-7 0 0.9681482 0 0.2503778 0.9681485 0 0.2503767 0.9681481 0 -0.2503787 0.9681481 0 -0.2503786 0 -0.9848077 -0.1736488 0 -0.984808 -0.1736468 0 -0.342022 -0.939692 0 -0.3420183 -0.9396934 0 0.8660277 -0.4999962 0 0.9848077 -0.1736488 0 -0.1761767 -0.9843586 0 -0.04618322 -0.998933 0.1046971 0.09176176 -0.9902618 0.01754456 0.1305072 -0.9912921 -0.02429825 0.4456065 -0.8948993 0 0.5523656 -0.833602 0 0.6564488 -0.7543706 0.205465 0.7671605 0.6076586 0 0.6564488 0.7543706 0 0.5523644 0.8336028 -0.01560962 0.3826384 0.9237663 0.0223751 0.09224462 0.995485 0.1330599 0.1293662 0.9826289 0.1381548 -0.2710378 0.9526027 0 -0.1761761 0.9843587 0 -0.04618322 0.998933 0 -0.991445 0.130526 0.6756556 -0.2821214 0.6811 0.6756529 -0.7309129 0.09622639 0.67565 -0.7309157 0.09622615 0.6756532 -0.7309126 -0.09622633 0.6756507 -0.730915 -0.09622609 0.6784507 -0.7006447 -0.2209113 0.7576694 -0.5914919 0.275816 0.6784531 -0.7006425 0.2209107 0.7349489 0.08851224 0.6723212 0.6774042 0.06411159 0.7328119 0.6756508 -0.09622567 0.730915 0.7576678 -0.0568813 0.650157 0.6784556 -0.1590088 0.7172268 0.6756536 0.2821207 0.6811022 0.6756547 0.2821231 0.6811002 0.6784556 0.1590088 0.7172268 0.1279174 -0.1294546 -0.9832999 0.2453253 -0.1707936 -0.9542772 0.2441733 -0.9614354 -0.1265753 0.2441748 -0.961435 -0.1265764 0.2441741 -0.9614353 0.1265752 0.2441732 -0.9614354 0.1265755 0.2449937 -0.3432601 0.9067253 0.2441813 -0.1265746 0.9614335 0.06037861 -0.1758548 0.9825627 0.2459096 -0.04476547 0.9682586 0.2441754 0.1265763 0.9614348 0.2441759 0.1265757 0.9614348 0.24417 0.3710983 0.8959169 0.2441729 0.3711028 0.8959143 0.1169793 0.6045802 0.7879078 0.1848232 0.7703797 0.6102095 0.2459055 -0.04476553 -0.9682596 0.8377189 -0.4473404 0.3132311 0.8377197 -0.4949351 0.2307923 0.8377198 -0.4949352 0.2307919 0.838433 -0.5197801 0.1638864 0.8444445 0.04668319 0.5336049 0.8241058 0 0.5664358 0.844444 -0.04668313 0.5336058 0.8385633 -0.07896357 0.5390515 0.838435 -0.1179551 0.5320841 0.8306855 -0.1440966 0.5377713 0.851259 -0.2008114 0.484802 0.8377197 -0.2307918 0.4949352 0.8385666 -0.2860074 0.4636874 0.8385666 0.2860074 0.4636874 0.8365229 0.2096843 0.5062233 0.8565204 0.2181187 0.4677575 0.8218988 0.123292 0.5561308 0.8377191 0.1413412 0.5274937 0.8385633 0.07896357 0.5390515 0.8408044 -0.5138623 0.1702751 0.8315118 -0.5470679 0.09646242 0.8481445 -0.5252327 0.06914889 0.8385652 -0.544571 0.01584315 0.836524 -0.5432428 -0.07151943 0.8565188 -0.5141522 -0.04498231 0.8218995 -0.5432679 -0.1712931 0.8377189 -0.5274941 -0.141341 0.8377202 -0.4949344 -0.230792 0.8553316 -0.481478 -0.1912772 0.9940816 0.00631535 0.1084526 0.9080753 0.2198641 0.3564531 0.9070599 0.2706136 0.322507 0.9070549 0.2706257 0.3225108 0.9080764 0.3128529 0.278425 0.8709605 0.20765 0.4453193 0.9070581 0.188948 0.3762239 0.9075363 0.1086959 0.4056641 0.8822429 0.1085733 0.4581043 0.9080758 0.06069511 0.4143846 0.9896173 -0.008355319 0.1434851 0.9895127 -0.03331094 0.1405534 0.9895128 -0.03331172 0.1405517 0.9895126 -0.06482857 0.129082 0.9895128 -0.0648263 0.1290823 0.9895128 -0.09284764 0.1106529 0.989513 -0.09284496 0.1106525 0.9895128 -0.1158635 0.08625704 0.9895129 -0.1158613 0.08625727 0.9895128 -0.1326318 0.05721205 0.9895129 -0.1326317 0.05721211 0.9895122 -0.1422551 0.02508264 0.989513 -0.1422492 0.02508276 0.9895123 -0.1442044 -0.008398771 0.9895127 -0.1442025 -0.008398652 0.9895119 -0.1383841 -0.04142755 0.9895126 -0.1383782 -0.04142761 0.9895138 -0.1250857 -0.07222265 0.9895123 -0.125097 -0.0722227 0.9895128 0.09284764 0.1106526 0.9895128 0.09284722 0.1106522 0.9895127 0.06482857 0.1290817 0.9895128 0.06482607 0.1290821 0.9895127 0.03331243 0.1405524 0.9895128 0.03331011 0.1405524 0.9895129 0 0.1444455 0.9070572 0 0.4210076 0.9070578 0 0.4210061 0.9080767 -0.3128542 0.2784225 0.907058 -0.2706193 0.3225073 0.9080759 -0.2198601 0.3564544 0.8822444 -0.2112892 0.4207159 0.9075344 -0.1774904 0.3806291 0.907057 -0.09709155 0.4096595 0.8709577 -0.1271721 0.4746156 0.9080753 -0.06069701 0.4143853 0.8709586 -0.4024962 0.2818296 0.9070572 -0.3377004 0.2514075 0.9075342 -0.38063 0.1774901 0.8822425 -0.4322926 0.1864706 0.908077 -0.3975455 0.1317337 0.9070535 -0.4146197 0.07310724 0.9070588 -0.4146078 0.07310712 0.9080743 -0.328518 -0.2597636 0.9070599 -0.3645973 -0.2105025 0.9070549 -0.3646092 -0.2105036 0.9080774 -0.3892124 -0.1546263 0.8822414 -0.4510195 -0.1350246 0.9075379 -0.4056596 -0.1086987 0.9070562 -0.4202974 -0.02447891 0.8709654 -0.4894745 -0.04282474 0.9080786 -0.4186229 0.01217913 0 -0.3420226 -0.9396918 0 -0.3420201 0.9396927 0 -0.3420208 0.9396924 1 3.42377e-6 0 1 0 0 1 -2.31358e-7 0 1 0 0 1 0 0 1 0 0 1 -5.05479e-7 0 1 6.07205e-7 0 1 -6.61983e-7 0 1 1.68157e-7 0 0.9998475 0.01709914 0.003551959 0.9980784 0.02059745 -0.05844122 0.9980778 0.0265572 -0.055996 0.9980747 0.03219068 -0.05301749 0.9980756 0.05406707 -0.03036421 0.9980762 0.0620017 0 0.9980759 0.06168341 0.00630629 0.9980767 0.05061179 0.03579807 0.9980728 0.02664208 0.05604344 0.9937195 0.07632511 -0.0818302 0.993709 0.1067621 -0.03382974 0.9937232 0.1025955 0.04459249 0.9937174 0.08427059 0.07364928 0.9937297 0.02612864 0.1087139 0.9870678 0.03770911 -0.1558047 0.9870723 0.1602757 0 0.9870839 0.06852173 0.1448113 0.9781334 0.1255249 0.1658267 0.9679389 0.01541173 -0.2507126 0.9677764 0.1519222 0.2008197 0 -0.5036006 -0.8639367 0 -0.7705163 0.6374204 0 -0.9470689 -0.3210305 0 -0.947068 0.3210333 0 -0.9470689 0.3210305 0 -0.156444 0.9876868 0 -0.4540121 0.8909956 0 -0.8910269 0.4539507 0 -0.9876947 -0.1563942 0 -0.8909766 -0.4540495 -0.01570141 -0.6079674 0.7938068 0 -0.5036878 0.8638858 0 -0.9654633 0.2605394 0 -0.8307133 0.5567005 0 -0.8307319 0.5566727 0 -0.6374468 0.7704945 0.01745057 -0.9764125 0.215207 0.01743006 -0.9627577 0.2698033 0.03279608 -0.9433755 0.3301018 0.02213501 -0.9319295 0.3619634 0.01744997 -0.7955132 0.605685 0.02495253 -0.8344005 0.5505934 0.03241175 -0.8462824 0.5317478 0.01743537 -0.8805436 0.4736444 0.01744943 -0.9071968 0.4203447 0.01744019 -0.7554119 0.6550182 0.6609376 -0.6263799 0.4132914 0.6612128 -0.5968697 0.4544715 0.6524301 -0.5631917 0.5070998 0.6457724 -0.5768628 0.5002073 0.6609945 -0.5246215 0.5365246 0.6426594 -0.6747335 0.3629373 0.6543114 -0.6549094 0.3781141 0.6612687 -0.6806528 0.3153341 0.6608744 -0.6995764 0.2717311 0.6609322 -0.626353 -0.4133407 0.649258 -0.658673 -0.3802816 0.6610001 -0.5245683 -0.5365697 0.649537 -0.5650328 -0.5087629 0.6546581 -0.5710719 -0.4952774 0.6612188 -0.5968741 -0.4544568 1 -4.97798e-7 0 1 -5.34806e-7 0 1 5.30114e-7 0 1 8.78216e-7 0 1 7.90582e-7 0 1 -2.97771e-6 0 1 4.22668e-6 0 0 1 -1.99478e-7 1 -2.44642e-7 0 1 1.20738e-7 0 0 -0.5555704 -0.8314695 0 -0.555571 -0.8314691 0 -0.1950905 -0.9807853 0 -0.1950902 -0.9807853 0 0.5555725 -0.8314682 0 0.9807857 -0.1950883 0 0.9807851 -0.1950917 0 0.9807851 0.1950914 0 0.9807856 0.1950886 0 0.5555699 0.8314699 0 0.1950898 0.9807854 0 0.1950902 0.9807853 0 -0.1950898 0.9807854 0 -0.1950908 0.9807852 0 -0.8314699 -0.5555699 0 -0.5555703 -0.8314696 0 -0.1950902 -0.9807853 0 0.1950898 -0.9807854 0 -0.1950905 0.9807853 0 -0.3546051 -0.9350162 0 0.1205358 -0.9927091 0 0.120536 -0.9927089 0 0.5680637 -0.8229847 0 0.1205365 0.9927089 0 -0.3546051 0.9350162 0 -0.3546059 0.9350159 0 -0.7485075 0.6631264 0 -0.748512 0.6631214 0 -0.9709419 0.2393156 0 -0.9709429 0.2393116 1 -2.50885e-7 0 1 -5.51719e-7 0 1 -5.43875e-7 0 1 0 0 1 2.13801e-7 0 0 -0.6026362 -0.7980161 0 -0.6026371 -0.7980154 0 0.09226757 -0.9957343 0 0.4457352 -0.8951649 0 0.4457407 -0.8951621 0 0.7390074 -0.6736974 0 0.7390091 -0.6736955 0 0.9324727 -0.3612409 0 0.9324732 -0.3612391 0 0.4457352 0.8951649 0 0.4457407 0.8951621 0 0.0922693 0.9957342 0 0.09226822 0.9957343 0 -0.2736667 0.9618246 0 -0.2736612 0.9618263 0 -0.602638 -0.7980149 0 -0.2736672 -0.9618245 0 -0.2736607 -0.9618263 0 0.09226959 -0.9957341 0 0.09226787 -0.9957343 0 0.4457345 -0.8951653 0 0.7390082 -0.6736965 0 -0.2736672 0.9618245 0 -0.2736607 0.9618263 0 -0.43389 -0.9009659 0 -0.4338802 -0.9009706 0 0.4338884 -0.9009667 0 0.4338802 -0.9009706 0 0.7818307 -0.6234909 0 0.781835 -0.6234854 0 0.9749279 -0.2225213 0 0.9749279 0.2225213 0 0.974927 0.2225249 0 0.7818287 0.6234934 0 0.7818371 0.6234829 0 0.4338868 0.9009674 0 0.4338818 0.9009699 0 -0.4338834 0.9009691 0 0.7071092 -0.7071044 0 0.7071084 -0.7071052 0 0.8910062 -0.4539911 0 0.8910049 -0.4539936 0 0.9876885 -0.1564338 0 0.9876883 -0.1564354 0 0.9876883 0.1564354 0 0.9876885 0.1564338 0 0.8910049 0.4539936 0 -0.6324434 -0.7746067 0 0.2782191 0.9605177 0 0.2782182 0.960518 0 -0.7485139 0.6631192 0 -0.04026573 0.999189 0 -0.04026585 0.9991891 0 0.7994421 0.6007432 0 0.2782197 0.9605175 0 0.2782177 0.960518 1 6.03574e-7 0 1 -3.4545e-7 0 1 -4.9179e-7 0 1 4.91789e-7 0 1 0 0 1 -8.33566e-7 0 1 2.83756e-7 0 1 -5.93483e-7 0 1 5.20763e-7 0 1 -1.93264e-7 0 1 -3.70714e-7 0 1 1.9349e-6 0 1 -1.9349e-6 0 1 -2.34641e-7 0 1 4.35194e-7 0 0.9999799 -0.001324653 0.006221413 0.9999799 -4.46462e-4 0.006344795 0.9999797 -0.003762304 0.005145668 0.9999799 -0.002976477 0.00561577 0.9999799 -0.002157866 0.005976974 0.9999798 -0.005509495 0.003180444 0.9999799 -0.005010306 0.003915607 0.9999799 -0.004414975 0.004575252 0.9999798 -0.006327986 6.64853e-4 0.9999799 -0.006169676 0.001538515 0.9999799 -0.005896866 0.002382576 0.9999797 -0.006055235 -0.001965701 0.9999799 -0.006268918 -0.001104295 0.9999799 -0.006358981 -2.22069e-4 0.9999799 -0.004728078 -0.004255831 0.9999798 -0.005270838 -0.003556847 0.9999799 -0.005717217 -0.002787828 0.9999799 -0.002587258 -0.00581032 0.9999797 -0.003373265 -0.005393981 0.9999799 -0.004092514 -0.004872262 0.9999799 0 -0.006360471 0.9999799 -8.92935e-4 -0.006298363 0.9999799 -0.001761019 -0.006114244 0.9999799 0.002587258 -0.00581032 0.9999799 0.001761019 -0.006114244 0.9999799 8.92933e-4 -0.006298363 0.9999799 0.004728078 -0.004255831 0.9999799 0.004092574 -0.004872322 0.9999798 0.003373265 -0.005394041 0.9999797 0.006055235 -0.001965701 0.9999799 0.005717217 -0.002787828 0.9999798 0.005270838 -0.003556847 0.9999798 0.006327986 6.64853e-4 0.9999799 0.006358981 -2.22069e-4 0.9999799 0.006268918 -0.001104295 0.9999798 0.005509495 0.003180444 0.9999797 0.005903065 0.002382576 0.9999799 0.006169676 0.001538515 0.9999797 0.003762304 0.005145609 0.9999798 0.004415094 0.004575371 0.9999799 0.005010306 0.003915607 0.9999799 0.001324653 0.006221413 0.9999799 0.002157866 0.005976915 0.9999799 0.002976477 0.00561577 0.9999799 4.46462e-4 0.006344795 0.8905203 0.155606 0.4275049 0.8897062 0.1083806 0.4434824 0.8931795 0.09349936 0.4398732 0.8910132 0.2668421 0.3672751 0.889716 0.2269276 0.3961178 0.8932079 0.2110943 0.3970124 0.8888055 0.189715 0.4171726 0.8929224 0.1481105 0.4251504 0.8913933 0.3571498 0.2790376 0.8891788 0.3302883 0.3166559 0.8931509 0.312429 0.3235269 0.8887726 0.2997049 0.3467858 0.8929318 0.2604628 0.3671948 0.8917607 0.4195597 0.1695072 0.8890161 0.4069654 0.2098323 0.8934481 0.3889899 0.2245826 0.8891251 0.3847619 0.2478203 0.8923099 0.3541246 0.2799625 0.8919227 0.449711 0.04726606 0.889102 0.4487614 0.09006083 0.8933838 0.4359486 0.1086944 0.8890811 0.4383174 0.1319577 0.8916801 0.4197954 0.169347 0.8923788 0.4444313 -0.07836484 0.8888303 0.4564867 -0.04000693 0.8932117 0.4493626 -0.01569432 0.8890332 0.4578304 0.003353238 0.8914897 0.4506938 0.04605895 0.8902857 0.3775469 -0.2546561 0.8900507 0.4053974 -0.2084771 0.8927417 0.4049689 -0.1975159 0.8884484 0.4268545 -0.1686851 0.8931275 0.4277886 -0.1389979 0.889474 0.4391763 -0.126334 0.8910565 0.4462355 -0.0830208 0.8906507 0.2922715 -0.3483085 0.8894862 0.3297511 -0.3163518 0.8930799 0.3343392 -0.3010408 0.8887599 0.3592709 -0.2846586 0.8938121 0.3766456 -0.2433889 0.8913033 0.1844196 -0.4142078 0.8893688 0.226746 -0.3970006 0.893441 0.2380295 -0.3809269 0.8889248 0.2644813 -0.3739818 0.8930006 0.2940306 -0.3407287 0.8914468 0.06306666 -0.4487152 0.8893673 0.1092149 -0.4439573 0.8932692 0.1238999 -0.4321098 0.8889709 0.1499078 -0.4327337 0.8920862 0.1857773 -0.411909 0.8887122 0.06541401 0.4537748 0.8938648 0.02115494 0.4478374 0.8897358 0.03184044 0.4553643 0.8897347 -0.0318436 0.4553661 0.8897358 -0.03184068 0.4553639 0.8897338 -0.09490597 0.4465049 0.8897348 -0.09490847 0.4465025 0.8897333 -0.1561275 0.4289508 0.8897337 -0.1561271 0.4289502 0.889735 -0.2143017 0.4030467 0.8897349 -0.2142997 0.4030479 0.8897355 -0.268311 0.3692968 0.8897354 -0.2683104 0.3692975 0.8897325 -0.3170979 0.3283672 0.8897333 -0.3170987 0.3283643 0.8897352 -0.3597086 0.2810356 0.8897343 -0.3597086 0.2810386 0.8897335 -0.395325 0.2282381 0.8897346 -0.3953224 0.2282383 0.8897356 -0.4232366 0.1710016 0.8897339 -0.4232417 0.1709974 0.8897364 -0.442915 0.1104337 0.8897331 -0.4429218 0.1104328 0.8897334 -0.4539802 0.04771506 0.8897324 -0.453982 0.04771322 0.8897355 -0.4561986 -0.0159319 0.8897346 -0.4562003 -0.01592773 0.8897349 -0.4495424 -0.07926917 0.8897312 -0.44955 -0.07926559 0.8897345 -0.4341363 -0.141062 0.8897343 -0.4341377 -0.1410578 0.8897349 -0.4102795 -0.2001063 0.8897315 -0.4102872 -0.2001061 0.8897363 -0.378432 -0.255262 0.8897322 -0.378441 -0.2552629 0.8897375 -0.3392254 -0.3054398 0.8897325 -0.3392339 -0.3054447 0.8897358 -0.2934122 -0.3496847 0.8897342 -0.2934231 -0.3496801 0.8897343 -0.2418971 -0.3871159 0.8897355 -0.241894 -0.3871154 0.8897347 -0.1856639 -0.4170148 0.8897334 -0.1856724 -0.4170134 0.8897346 -0.1258202 -0.4387957 0.8897325 -0.1258252 -0.4387986 0.8897343 -0.06352776 -0.4520367 0.8897339 -0.06352984 -0.4520372 0.8900741 -0.01590597 -0.4555383 0.893195 0 -0.4496696 0.8888105 0.02198511 -0.4577473 0.8922523 0.06507498 -0.4468232 0.9146811 0.02819275 0.4031917 0.9146836 0.02819824 0.4031859 0.9146823 0.0840317 0.3953416 0.9146851 0.08403199 0.3953353 0.9146821 0.1382325 0.3798006 0.9146828 0.1382364 0.3797978 0.9146813 0.1897479 0.3568668 0.914684 0.1897442 0.3568619 0.9146811 0.2375718 0.3269833 0.9146848 0.2375625 0.3269798 0.9146831 0.2807613 0.2907367 0.9146843 0.280757 0.2907374 0.9146827 0.3184932 0.2488331 0.9146817 0.3184947 0.2488344 0.9146834 0.3500236 0.2020841 0.9146853 0.3500183 0.2020839 0.9146834 0.3747408 0.1514057 0.9146838 0.3747403 0.1514048 0.9146823 0.3921684 0.09777718 0.9146825 0.3921669 0.09778094 0.9146843 0.4019554 0.0422452 0.9146817 0.4019607 0.04224985 0.9146844 0.4039227 -0.0141052 0.9146825 0.403927 -0.01410603 0.9146847 0.3980283 -0.07018274 0.9146816 0.3980351 -0.07018399 0.9146844 0.3843876 -0.124895 0.9146831 0.3843908 -0.1248953 0.9146823 0.3632692 -0.1771775 0.9146837 0.3632656 -0.177178 0.9146823 0.3350754 -0.2260107 0.9146842 0.3350699 -0.2260113 0.914683 0.3003599 -0.2704424 0.9146834 0.3003585 -0.2704427 0.9146833 0.2597948 -0.3096147 0.9146839 0.2597955 -0.3096123 0.914682 0.214178 -0.3427604 0.9146843 0.2141782 -0.3427544 0.9146825 0.1643958 -0.3692289 0.9146836 0.1643914 -0.3692281 0.9146845 0.1114028 -0.388512 0.9146832 0.1114101 -0.3885133 0.9146831 0.05624735 -0.4002389 0.9146828 0.05624818 -0.4002397 0.9146827 0 -0.4041728 0.9146828 0 -0.4041727 0.9146838 -0.05624735 -0.4002374 0.9146828 -0.05624818 -0.4002397 0.9146842 -0.1114063 -0.3885118 0.9146833 -0.1114016 -0.3885155 0.9146848 -0.164392 -0.3692247 0.9146822 -0.1643919 -0.3692314 0.9146824 -0.2141783 -0.3427591 0.9146838 -0.2141802 -0.3427542 0.9146834 -0.2597951 -0.3096137 0.9146829 -0.2597934 -0.309617 0.9146834 -0.3003587 -0.2704423 0.9146839 -0.3003586 -0.2704408 0.9146816 -0.3350751 -0.2260142 0.9146847 -0.3350712 -0.2260072 0.9146838 -0.3632647 -0.1771789 0.9146837 -0.3632656 -0.177178 0.9146841 -0.3843893 -0.1248914 0.9146825 -0.3843905 -0.1248995 0.9146834 -0.3980309 -0.070185 0.9146831 -0.398032 -0.07018131 0.914682 -0.4039284 -0.01410347 0.9146854 -0.4039203 -0.01410812 0.914683 -0.401958 0.04224908 0.9146832 -0.4019576 0.04224741 0.9146835 -0.3921653 0.0977773 0.9146812 -0.3921707 0.09777867 0.9146839 -0.3747407 0.1514028 0.9146799 -0.3747473 0.1514106 0.9146828 -0.3500252 0.2020839 0.9146847 -0.3500197 0.2020847 0.9146833 -0.3184922 0.2488319 0.9146829 -0.3184909 0.2488347 0.9146854 -0.2807531 0.2907377 0.9146816 -0.2807646 0.2907387 0.9146827 -0.2375685 0.3269813 0.9146836 -0.2375665 0.3269802 0.9146816 -0.1897469 0.3568666 0.9146847 -0.1897477 0.3568583 0.9146816 -0.1382361 0.3798004 0.9146832 -0.1382321 0.379798 0.9146833 -0.08403503 0.3953387 0.9146847 -0.0840277 0.3953372 0.9146824 -0.02819257 0.4031891 0.9146822 -0.02819848 0.4031891 0.9475638 0.02229368 0.3187883 0.9475624 0.02229112 0.3187925 0.9475625 0.06643944 0.3125879 0.9475643 0.06644487 0.3125814 0.9475629 0.1093005 0.3002965 0.9475628 0.1093031 0.300296 0.9475627 0.1500295 0.2821635 0.9475631 0.1500278 0.2821628 0.9475634 0.187838 0.2585356 0.9475631 0.1878374 0.2585371 0.9475636 0.2219924 0.2298755 0.9475629 0.2219885 0.2298822 0.9475629 0.2518261 0.1967444 0.9475631 0.2518232 0.1967466 0.9475631 0.2767555 0.1597834 0.947564 0.2767533 0.1597816 0.9475634 0.2962974 0.1197144 0.9475625 0.2963012 0.1197122 0.9475631 0.3100766 0.07731002 0.9475627 0.3100771 0.07731133 0.9475635 0.3178172 0.03340446 0.9475616 0.3178227 0.03340315 0.947563 0.3193745 -0.01115161 0.9475624 0.3193765 -0.01115167 0.9475631 0.3147135 -0.05549412 0.9475629 0.3147149 -0.05548995 0.947564 0.3039244 -0.0987541 0.9475643 0.3039246 -0.09875106 0.947564 0.2872239 -0.1400886 0.9475631 0.2872268 -0.1400897 0.9475609 0.2649415 -0.1787026 0.9475653 0.2649258 -0.1787016 0.947564 0.2374825 -0.2138333 0.9475629 0.23749 -0.2138291 0.9475608 0.2054225 -0.2448068 0.9475643 0.2054117 -0.2448021 0.9475614 0.1693516 -0.2710121 0.9475647 0.16934 -0.2710075 0.947562 0.1299848 -0.2919419 0.9475636 0.1299812 -0.2919386 0.9475631 0.08808881 -0.3071885 0.9475635 0.0880838 -0.3071887 0.9475633 0.04447221 -0.3164585 0.9475628 0.04448044 -0.3164589 0.9475633 0 -0.3195685 0.9475635 0 -0.3195679 0.9475631 -0.04447698 -0.3164584 0.9475623 -0.0444746 -0.3164616 0.9475639 -0.08808362 -0.3071873 0.9475637 -0.08808439 -0.3071877 0.9475619 -0.1299851 -0.2919426 0.9475628 -0.1299811 -0.2919412 0.9475656 -0.1693403 -0.2710046 0.9475619 -0.1693474 -0.271013 0.9475622 -0.2054181 -0.2448049 0.9475625 -0.205417 -0.2448045 0.9475633 -0.2374857 -0.2138326 0.9475624 -0.2374885 -0.2138335 0.9475631 -0.2649354 -0.1786997 0.9475631 -0.2649334 -0.1787028 0.9475629 -0.2872269 -0.1400901 0.9475624 -0.2872284 -0.1400904 0.9475646 -0.3039237 -0.09875231 0.9475632 -0.3039282 -0.09875035 0.9475627 -0.314715 -0.05549198 0.9475634 -0.3147131 -0.05549257 0.9475621 -0.3193774 -0.01115173 0.9475635 -0.319373 -0.01115155 0.9475625 -0.3178201 0.03340238 0.9475629 -0.317819 0.0334028 0.9475631 -0.3100766 0.07731002 0.9475639 -0.3100737 0.07731044 0.9475605 -0.2963076 0.1197122 0.9475628 -0.2962995 0.1197144 0.9475637 -0.2767533 0.1597834 0.947563 -0.2767547 0.1597853 0.9475653 -0.2518163 0.1967453 0.9475617 -0.2518301 0.1967446 0.9475641 -0.2219864 0.2298792 0.9475617 -0.2219969 0.2298791 0.9475632 -0.1878383 0.2585361 0.9475636 -0.1878346 0.2585372 0.9475628 -0.1500294 0.2821631 0.9475642 -0.1500231 0.282162 0.9475619 -0.1093057 0.3002977 0.9475634 -0.1092975 0.3002961 0.9475632 -0.0664395 0.3125858 0.9475625 -0.06644475 0.3125866 0.9475633 -0.02229374 0.3187897 0.9475638 -0.02229678 0.3187881 0.9752849 0.01540958 0.2204135 0.9752843 0.01541531 0.2204154 0.9752859 0.04593378 0.2161192 0.9752842 0.04594242 0.2161248 0.9752855 0.0755679 0.207624 0.9752838 0.07557111 0.2076309 0.9752857 0.1037282 0.1950857 0.9752848 0.103731 0.1950883 0.9752854 0.1298712 0.1787513 0.9752852 0.1298691 0.1787536 0.9752848 0.1534853 0.1589402 0.9752858 0.1534816 0.1589372 0.9752847 0.1741133 0.1360313 0.9752858 0.1741082 0.1360295 0.9752846 0.1913509 0.1104763 0.9752841 0.1913515 0.1104785 0.9752855 0.2048597 0.08276838 0.9752846 0.2048641 0.08276981 0.9752859 0.2143838 0.05345213 0.9752856 0.2143847 0.05345392 0.9752848 0.2197414 0.02309429 0.9752842 0.2197438 0.02309721 0.9752855 0.220814 -0.007711946 0.9752848 0.2208172 -0.007711231 0.9752848 0.2175956 -0.03836649 0.9752829 0.2176038 -0.03836727 0.9752846 0.2101381 -0.06827926 0.9752844 0.2101395 -0.06827658 0.9752843 0.1985919 -0.09685963 0.9752848 0.19859 -0.09685891 0.9752848 0.1831791 -0.1235528 0.9752858 0.1831719 -0.1235545 0.9752843 0.1642004 -0.1478472 0.9752852 0.1642001 -0.1478421 0.9752845 0.1420266 -0.1692592 0.975285 0.1420246 -0.1692578 0.9752843 0.1170911 -0.1873773 0.9752852 0.1170835 -0.1873774 0.9752846 0.08986866 -0.2018505 0.9752848 0.08987152 -0.2018485 0.9752848 0.06089854 -0.2123936 0.9752855 0.0608974 -0.2123907 0.9752849 0.03074985 -0.2188009 0.9752849 0.03074592 -0.2188018 0.9752846 0 -0.2209523 0.9752852 0 -0.22095 0.9752849 -0.03074985 -0.2188009 0.9752846 -0.03075319 -0.2188017 0.9752851 -0.0608986 -0.2123922 0.9752851 -0.0608974 -0.2123924 0.9752843 -0.08987444 -0.201849 0.9752844 -0.08987146 -0.2018502 0.9752855 -0.11708 -0.187378 0.9752848 -0.1170899 -0.1873759 0.9752852 -0.1420236 -0.1692576 0.9752854 -0.1420236 -0.1692566 0.9752849 -0.1641972 -0.1478469 0.975285 -0.1642013 -0.1478414 0.9752842 -0.1831793 -0.1235564 0.9752857 -0.1831742 -0.1235518 0.9752849 -0.1985897 -0.09685856 0.9752847 -0.1985893 -0.09686213 0.9752853 -0.2101354 -0.0682764 0.9752848 -0.2101381 -0.0682761 0.9752844 -0.2175968 -0.03836816 0.9752847 -0.2175952 -0.03836888 0.9752855 -0.220814 -0.007707595 0.9752864 -0.2208102 -0.007713079 0.9752854 -0.2197389 0.02309405 0.9752835 -0.2197469 0.02309572 0.9752849 -0.2143878 0.05345386 0.9752856 -0.2143847 0.05345213 0.9752849 -0.2048622 0.08277028 0.9752856 -0.2048591 0.08276927 0.9752842 -0.191353 0.1104762 0.9752846 -0.1913517 0.1104748 0.9752839 -0.174118 0.1360304 0.9752852 -0.1741093 0.1360322 0.9752853 -0.153483 0.1589393 0.9752842 -0.1534891 0.1589394 0.9752849 -0.1298763 0.1787505 0.9752854 -0.1298664 0.178755 0.9752838 -0.1037397 0.1950886 0.9752863 -0.1037239 0.1950849 0.9752838 -0.07557982 0.2076277 0.9752854 -0.07556277 0.2076263 0.975285 -0.04593992 0.2161224 0.9752851 -0.04594212 0.2161216 0.9752851 -0.01540946 0.2204122 0.9752843 -0.01541543 0.2204152 0.992139 0.008720159 0.1248369 0.9921389 0.008734405 0.1248371 0.9921391 0.02601277 0.1224068 0.9921389 0.02602338 0.1224067 0.992139 0.04280048 0.117594 0.9921389 0.04280239 0.117595 0.9921392 0.05874508 0.1104934 0.9921383 0.05875599 0.1104958 0.9921391 0.0735554 0.1012415 0.9921389 0.07356029 0.1012392 0.9921388 0.08692973 0.09002208 0.9921396 0.08692425 0.09001737 0.9921387 0.09861594 0.07704496 0.9921389 0.09861433 0.07704383 0.9921389 0.1083753 0.06257081 0.9921388 0.1083772 0.06257182 0.9921393 0.116027 0.04687714 0.9921393 0.1160258 0.04688155 0.9921383 0.1214297 0.03027403 0.9921385 0.1214277 0.03027403 0.9921394 0.1244527 0.01308107 0.9921383 0.1244615 0.01308208 0.9921385 0.1250693 -0.004368424 0.9921393 0.1250625 -0.004367291 0.9921391 0.1232394 -0.02173119 0.9921389 0.1232403 -0.02173012 0.9921383 0.1190228 -0.0386694 0.9921393 0.1190126 -0.03867244 0.9921392 0.1124735 -0.05485868 0.9921386 0.1124796 -0.05485767 0.9921388 0.1037474 -0.06997931 0.992139 0.1037477 -0.06997734 0.9921392 0.092996 -0.08373588 0.9921382 0.09300589 -0.08373641 0.9921395 0.08043092 -0.09586453 0.992138 0.08045321 -0.09586274 0.9921393 0.06630957 -0.1061258 0.9921388 0.06631511 -0.1061273 0.992139 0.05089884 -0.1143224 0.9921386 0.05090445 -0.1143235 0.9921389 0.03449583 -0.1202937 0.9921389 0.03449183 -0.1202946 0.9921392 0.01741087 -0.1239229 0.9921389 0.01741677 -0.1239238 0.9921388 0 -0.125143 0.9921391 0 -0.1251409 0.9921389 -0.01741838 -0.1239238 0.9921391 -0.01741653 -0.1239219 0.9921388 -0.03449577 -0.1202943 0.9921389 -0.03449201 -0.1202952 0.9921391 -0.05089867 -0.114322 0.9921391 -0.05089467 -0.1143229 0.9921386 -0.06631737 -0.1061275 0.9921392 -0.06631451 -0.1061238 0.9921388 -0.08044195 -0.09586358 0.9921388 -0.08043861 -0.09586703 0.9921391 -0.09300005 -0.08373337 0.9921381 -0.09300494 -0.08373808 0.9921391 -0.1037464 -0.06997799 0.9921391 -0.1037467 -0.06997793 0.992139 -0.1124752 -0.05486011 0.9921387 -0.1124797 -0.05485641 0.9921389 -0.1190164 -0.03867065 0.9921388 -0.1190176 -0.03867238 0.9921391 -0.1232394 -0.02172839 0.9921384 -0.123244 -0.02173238 0.992138 -0.125073 -0.00436753 0.9921393 -0.1250625 -0.004368543 0.9921392 -0.1244545 0.0130822 0.9921392 -0.1244541 0.01308059 0.9921387 -0.121426 0.03027498 0.9921385 -0.1214277 0.03027403 0.9921389 -0.1160297 0.04687935 0.9921389 -0.1160296 0.04687726 0.9921396 -0.1083698 0.06256991 0.9921388 -0.1083772 0.06257182 0.9921391 -0.0986123 0.07704502 0.9921382 -0.09862029 0.07704579 0.9921397 -0.08692079 0.09001952 0.9921392 -0.0869264 0.09001964 0.992139 -0.07355517 0.1012421 0.9921394 -0.07355064 0.1012411 0.9921397 -0.05873787 0.1104928 0.9921386 -0.05875569 0.110494 0.9921386 -0.04280817 0.1175947 0.9921392 -0.04279214 0.1175957 0.9921389 -0.02602016 0.1224068 0.9921389 -0.02602326 0.1224061 0.9921389 -0.00872755 0.1248369 0.9921392 -0.008734405 0.1248346 0.9989034 0.003272593 0.04670584 0.9989034 0.003263413 0.0467059 0.9989034 0.009724318 0.0457971 0.9989033 0.00973761 0.0457971 0.9989032 0.01602005 0.04399681 0.9989032 0.01603245 0.04399394 0.9989035 0.02197343 0.04134047 0.9989036 0.02197456 0.04133814 0.9989033 0.02752089 0.03787875 0.9989033 0.02752155 0.03787857 0.9989034 0.03252381 0.03367942 0.9989035 0.03252071 0.03367793 0.9989035 0.0368945 0.02882558 0.9989039 0.03688269 0.02882468 0.9989033 0.04054892 0.0234102 0.9989032 0.04055041 0.02341061 0.9989033 0.04341173 0.0175392 0.9989035 0.04341053 0.0175392 0.9989035 0.04542881 0.01132643 0.9989034 0.04543066 0.01132601 0.9989035 0.04656231 0.004893779 0.9989036 0.04655939 0.004895508 0.9989034 0.04679095 -0.001634836 0.9989034 0.04679077 -0.001634538 0.9989032 0.04611229 -0.008129358 0.9989038 0.04610055 -0.008130311 0.9989033 0.04453057 -0.01446801 0.9989037 0.04452157 -0.01446831 0.9989033 0.04208391 -0.02052527 0.9989033 0.0420826 -0.02052235 0.9989035 0.03881162 -0.02618187 0.9989038 0.0388059 -0.02618157 0.9989033 0.0347988 -0.03132843 0.9989037 0.03478509 -0.03132975 0.9989035 0.03009271 -0.03586608 0.9989038 0.03008359 -0.03586602 0.9989034 0.02480942 -0.03970509 0.9989035 0.02480727 -0.03970527 0.9989034 0.0190435 -0.04277282 0.9989032 0.01905608 -0.04277181 0.9989035 0.01290333 -0.04500639 0.9989033 0.01291269 -0.04500514 0.9989035 0.006514012 -0.04636448 0.9989033 0.006517946 -0.04636478 0.9989033 0 -0.0468201 0.9989034 0 -0.04681944 0.9989035 -0.006513953 -0.04636406 0.9989033 -0.006517946 -0.04636496 0.9989035 -0.01290321 -0.0450055 0.9989033 -0.0129128 -0.04500639 0.9989035 -0.01904332 -0.04277157 0.998903 -0.01905626 -0.04277396 0.9989036 -0.02480155 -0.03970545 0.9989032 -0.02482193 -0.03970462 0.9989035 -0.03009223 -0.03586602 0.9989033 -0.03009891 -0.03586703 0.9989035 -0.03479069 -0.03132915 0.9989032 -0.03480005 -0.03132659 0.9989036 -0.03881132 -0.02618169 0.9989034 -0.03881365 -0.02618193 0.9989035 -0.04208004 -0.02052378 0.9989033 -0.0420826 -0.02052599 0.9989035 -0.04452669 -0.01446753 0.9989033 -0.04452878 -0.0144692 0.9989034 -0.04610913 -0.008129954 0.9989035 -0.04610639 -0.008129179 0.9989034 -0.04679095 -0.001635313 0.9989034 -0.04679077 -0.001634538 0.9989036 -0.04656034 0.00489521 0.9989034 -0.04656302 0.004894614 0.9989036 -0.04542666 0.01132643 0.9989034 -0.04543066 0.01132422 0.9989031 -0.04341632 0.0175395 0.9989035 -0.04340922 0.01753872 0.9989033 -0.04054951 0.02341008 0.9989029 -0.04055649 0.02341169 0.9989031 -0.0369023 0.02882409 0.9989037 -0.03688323 0.02882778 0.9989035 -0.03252327 0.03367841 0.998903 -0.03253507 0.0336796 0.9989034 -0.02752113 0.03787857 0.9989033 -0.02752155 0.03787857 0.9989036 -0.02197325 0.04133915 0.9989035 -0.02197486 0.04134052 0.9989033 -0.01601999 0.04399555 0.9989032 -0.01603275 0.04399561 0.9989035 -0.009724259 0.04579693 0.9989033 -0.00973773 0.04579836 0.9989034 -0.003272593 0.04670584 0.9989035 -0.003263413 0.04670494 1 -1.20852e-6 0 1 -3.7893e-6 0 1 -2.87989e-6 0 1 -9.43026e-7 0 1 2.43424e-6 0 1 -4.71988e-7 0 1 -2.80374e-6 0 1 -6.94616e-7 0 1 2.8578e-6 0 1 1.21718e-6 0 1 5.99247e-7 0 1 2.80301e-6 0 1 5.93266e-6 0 1 -9.43028e-7 0 1 -1.90527e-6 0 1 1.49884e-6 0 1 -1.17872e-6 0 1 -9.95132e-7 0 1 -3.77592e-6 0 1 1.9388e-6 0 1 1.99026e-6 0 1 -1.88509e-6 0 1 5.50037e-6 0 1 -2.94023e-6 0 1 2.82584e-6 0 1 -5.72166e-6 0 1 -1.0468e-6 0 1 -2.80143e-6 0 1 -2.80326e-6 0 1 4.78532e-6 0 1 -2.87721e-6 0 1 2.76505e-6 0 1 -2.7972e-6 0 1 2.84531e-6 0 1 -1.49142e-6 0 0.02602303 -0.819992 -0.5717832 0.03901141 -0.5745187 -0.8175613 0 -0.3930284 -0.9195263 0.04548794 -0.423578 -0.9047169 0 -0.3411374 -0.9400135 0.0519756 -0.2598322 -0.964254 0.02216857 0.7528877 -0.6577756 0 0.7672536 -0.6413439 0 0.8188852 -0.5739575 0.01847106 0.8583014 -0.5128133 0 0.8670363 -0.4982452 0.01407605 0.9361417 -0.3513411 0 0.9404292 -0.33999 0.008972704 0.9838903 -0.1785482 0 0.9852028 -0.1713929 0.001539587 0.9989922 -0.0448603 -0.0269438 0.999637 0 0.001539766 0.9989921 0.0448603 0 0.9839299 0.1785554 0.009763062 0.9851558 0.1713848 0 0.9658682 0.2590345 0 0.936235 0.3513748 0.01626765 0.9403041 0.3399466 0 0.906158 0.4229394 0 0.8584504 0.5128968 0.02276855 0.8668085 0.4981211 0 0.8188868 0.5739552 0 0.7530719 0.6579384 0.02927106 0.7669266 0.6410669 0 0.3090175 0.9510564 0.04873996 0.3430027 0.9380691 0 0.2578449 0.9661864 0 0.1342338 0.9909498 0.05521535 0.1747056 0.9830713 0 0.08601582 0.9962939 0 0.001212179 0.9999994 0.0300827 -0.0448445 0.9985409 0 -0.08842909 0.9960825 0 -0.1725885 0.984994 0.02955693 -0.2224237 0.974502 0 -0.2601854 0.9655587 0 -0.3411343 0.9400146 0.02832466 -0.3928675 0.9191588 0 -0.4240241 0.905651 0 -0.4992951 0.866432 0.02638733 -0.5507066 0.8342818 0 -0.5749549 0.8181853 0 -0.6422692 0.7664792 0.02374964 -0.6908702 0.7225887 0 -0.7083896 0.7058216 0 -0.7656989 0.6431993 0.02040779 -0.8088495 0.5876615 0 -0.8202708 0.5719753 0.01636344 -0.9008491 0.4338241 0 -0.9071884 0.4207248 0 -0.9664989 0.2566708 1 5.8863e-6 0 1 5.82237e-6 0 0.8396875 -0.4948651 0.2236817 0.833758 -0.5028603 0.2279897 0.8348317 -0.4561002 0.3082674 0.8399616 -0.4451151 0.3103821 0.8405242 -0.4148321 0.3484731 0.8336312 -0.3987538 0.3821709 0.8334982 -0.2275566 0.5034866 0.8400416 -0.384315 0.3829259 0.8404993 -0.3479913 0.4152869 0.8326527 -0.3293067 0.445249 0.8401147 -0.3118606 0.4437908 0.8405137 -0.2738974 0.4674581 0.8412716 -0.269928 0.4684025 0.837833 -0.2314857 0.4944191 0.8380761 -0.5279501 0.1374669 0.8397784 -0.5247411 0.139353 0.8396934 -0.4949972 0.223367 0.8036854 -0.5591127 0.2036737 0.8636367 -0.440331 0.245439 0.8398715 -0.492409 0.2283626 0.8405414 -0.4690541 0.2710692 0.8400522 -0.2344589 0.4892254 0.8404257 -0.184866 0.5094204 0.8323678 -0.1622877 0.5299308 0.8402507 -0.1410737 0.5235236 0.8403832 -0.09353744 0.5338604 0.8321098 -0.07044625 0.5501189 0.8403101 -0.04793393 0.5399828 0.8396786 0.02304905 0.5425943 0.8231886 6.88334e-4 0.5677679 0.8403606 0.04662632 0.5400187 0.8396795 0.1144163 0.5308929 0.8252676 0.09881085 0.5560306 0.8404067 0.1397439 0.5236301 0.8396806 0.2024908 0.5039188 0.8273088 0.1929108 0.5275846 0.8404482 0.2285823 0.4913218 0.8396797 0.284743 0.4624494 0.829312 0.2801736 0.4834712 0.8404821 0.3104592 0.4440777 0.8396798 0.3588016 0.4076758 0.8312792 0.3580391 0.4251859 0.8405082 0.3828774 0.3833417 0.8396775 0.4225409 0.341176 0.833205 0.4242643 0.3546397 0.840542 0.4436279 0.3109395 0.8396776 0.4741212 0.2648598 0.8350999 0.4769546 0.2740852 0.8405497 0.4908925 0.2291305 0.8396804 0.5120587 0.1809227 0.8369572 0.514666 0.1860691 0.8405568 0.5232387 0.1403062 0.8396781 0.535273 0.09178042 0.8387804 0.5364132 0.09331905 0.8405806 0.5396305 0.04715144 0.8403462 0.5415618 0.02300566 0.8476783 0.5305108 0 0.8403455 0.5415629 -0.0230056 0.8388558 0.5365241 -0.09199494 0.8397286 0.5349713 -0.09306788 0.8405588 0.5232354 -0.1403053 0.8373403 0.5154544 -0.1821214 0.8398271 0.5105147 -0.1845682 0.8405531 0.4908868 -0.2291306 0.8360042 0.4790441 -0.2676075 0.8399174 0.4705511 -0.2704079 0.8405418 0.4436269 -0.3109418 0.8348537 0.4282872 -0.3458173 0.8400012 0.4163019 -0.3479809 0.8405101 0.3828753 -0.3833396 0.8338958 0.3646417 -0.414312 0.8400809 0.3494142 -0.4149383 0.8404837 0.3104578 -0.4440757 0.8331351 0.2899773 -0.4709557 0.8401541 0.2719316 -0.4692487 0.8404468 0.2285832 -0.4913237 0.8325719 0.2065333 -0.5139728 0.8402203 0.1862145 -0.5092683 0.840409 0.139743 -0.5236266 0.8322144 0.1168099 -0.54201 0.8402797 0.09486538 -0.533789 0.8403595 0.04662644 -0.5400203 0.8320605 0.02353829 -0.5541852 0.8403385 6.53342e-4 -0.5420616 0.839681 -0.06898009 -0.5386814 0.8242287 -0.05007427 -0.5640388 0.8403853 -0.09353685 -0.5338571 0.83968 -0.1590269 -0.5192766 0.8262926 -0.1465481 -0.5438423 0.8404293 -0.184866 -0.5094148 0.8396784 -0.2444993 -0.4849333 0.8283137 -0.2375618 -0.5074061 0.8404641 -0.2705561 -0.4694887 0.839677 -0.3229378 -0.4366391 0.8303042 -0.3204305 -0.4559816 0.8404984 -0.3479883 -0.4152909 0.8396784 -0.3920844 -0.3757793 0.8322475 -0.3927345 -0.3913104 0.8405259 -0.4148306 -0.3484705 0.8396796 -0.4499492 -0.3041119 0.8341557 -0.4524023 -0.3154623 0.8405537 -0.4690474 -0.2710428 0.839679 -0.494873 -0.2236959 0.836031 -0.4977579 -0.2308451 0.8405652 -0.5089905 -0.1854157 0.8396776 -0.5255622 -0.1368436 0.8378735 -0.5275774 -0.1401084 0.8405767 -0.5334528 -0.09412312 0.8396767 -0.5411301 -0.04605823 0.8396805 -0.5411244 -0.04605591 0.8396759 -0.5411316 0.04605835 0.8396803 -0.5411248 0.04605597 0.8405591 -0.5334796 0.09412783 1 -9.72195e-6 0 1 -7.1772e-6 0 1 7.22026e-6 0 1 7.0347e-6 0 1 -6.93029e-6 0 1 6.8754e-6 0 1 -3.83365e-6 0 1 -9.68572e-7 0 1 -1.64502e-6 0 1 1.61344e-6 0 1 -3.16196e-6 0 1 6.2579e-6 0 1 1.74901e-5 0 1 -1.77856e-5 0 1 -3.39735e-6 0 1 3.39921e-6 0 1 3.40236e-6 0 1 -3.40671e-6 0 1 -7.53347e-6 0 1 5.11848e-6 0 1 4.274e-7 0 1 -4.28423e-7 0 1 -3.68547e-6 0 1 5.25166e-6 0 0 0.8371672 0.5469473 0 0.8371651 0.5469505 0 0.7357243 0.6772812 0 0.7357257 0.6772798 0 0.6142128 0.7891405 0 0.6142117 0.7891414 0 0.4759486 0.8794732 0 0.4759477 0.8794736 0 0.3246994 0.9458173 0 0.3246996 0.9458172 0 0.1645941 0.9863615 0.9986754 -0.003754019 0.05131745 0.7614292 0.3961946 0.5130842 0.7789125 0.1568323 0.6072059 0.7493083 0.1439892 0.6463779 0.7580242 0.2330007 0.609188 0.7668781 0.2224549 0.6020065 0.7465641 0.3256196 0.5801844 0.7823444 0.325762 0.5308639 0.7484743 0.2894097 0.5966811 0.7866616 0.4644063 0.406805 0.7481905 0.4533947 0.484401 0.7653641 0.390624 0.5114985 0.7397943 0.4843782 0.4669927 0.7474494 0.0999667 0.6567542 0.7730208 0.03155583 0.6335955 0.7536633 0.04797655 0.6555075 0.7536646 -0.0479784 0.6555058 0.7536617 -0.04797714 0.6555092 0.7536533 -0.1429077 0.6415482 0.7536653 -0.1429113 0.6415334 0.7536633 -0.2347964 0.6138913 0.7536553 -0.2347958 0.6139013 0.7536564 -0.3216762 0.5731725 0.7536609 -0.3216821 0.5731632 0.7536571 -0.4017022 0.5202273 0.7536624 -0.4017055 0.5202171 0.8032139 0.04348397 0.5941015 0.8032177 0.04347985 0.5940969 0.8032129 0.1295223 0.5814405 0.803207 0.1295194 0.5814493 0.8032168 0.2128031 0.5563792 0.8032133 0.2127987 0.5563857 0.8032119 0.2915394 0.5194761 0.8032141 0.2915424 0.5194713 0.803214 0.3640695 0.4714877 0.8032153 0.3640713 0.4714839 0.8032132 0.4288399 0.4134551 0.8032132 -0.4844689 0.3466103 0.8032115 -0.4288439 0.4134542 0.8032138 -0.4288385 0.4134551 0.8032155 -0.3640707 0.4714845 0.8032139 -0.3640674 0.4714896 0.803213 -0.2915387 0.5194749 0.8032124 -0.2915409 0.5194745 0.8032172 -0.2128003 0.5563796 0.8032075 -0.2128022 0.5563928 0.8032105 -0.1295191 0.5814445 0.8032128 -0.1295236 0.5814404 0.803216 -0.04348373 0.5940988 0.8032122 -0.04347991 0.5941042 0.8607167 0.03715789 0.5077267 0.8607186 0.03715956 0.507723 0.8607175 0.1106878 0.4969041 0.8607204 0.1106891 0.4968989 0.8607159 0.1818589 0.4754952 0.86072 0.1818568 0.4754883 0.8607175 0.2491593 0.4439426 0.860718 0.2491516 0.4439463 0.8607142 0.3111408 0.4029422 0.860719 -0.3664878 0.3533405 0.8607154 -0.3664918 0.3533451 0.8607166 -0.3111379 0.4029396 0.8607139 -0.3111418 0.4029422 0.8607195 -0.2491526 0.4439427 0.8607152 -0.2491599 0.4439468 0.8607205 -0.1818565 0.4754877 0.8607162 -0.1818599 0.4754941 0.8607199 -0.1106877 0.4969002 0.8607169 -0.1106887 0.4969049 0.8607167 -0.03715789 0.5077267 0.8607186 -0.03715956 0.507723 0.9066141 0.03080016 0.4208352 0.906611 0.03079861 0.4208419 0.9066149 0.09174698 0.4118642 0.9066138 0.09174662 0.4118664 0.9066116 0.1507396 0.3941234 0.9066132 -0.2065173 0.3679718 0.9066154 -0.2065086 0.3679712 0.9066116 -0.1507426 0.3941219 0.9066145 -0.1507384 0.3941171 0.9066128 -0.0917471 0.4118685 0.9066156 -0.0917468 0.4118627 0.9066136 -0.03079283 0.4208369 0.9066134 -0.03080779 0.4208362 1 9.06835e-6 4.82454e-6 1 0 -1.12658e-5 1 4.50548e-7 0 1 3.19071e-6 0 1 -1.808e-6 0 1 -3.16604e-6 0 1 3.56039e-6 0 1 1.66521e-6 0 1 -7.46196e-6 0 1 1.66342e-6 0 1 3.32347e-6 0 1 -1.66073e-6 0 1 1.65764e-6 0 1 -4.13398e-7 0 1 -1.12731e-6 0 1 1.11588e-6 0 1 -2.21868e-6 0 1 2.20454e-6 0 0.9901357 0.1399917 0.005805134 0.9859919 0.1293724 0.1052756 0.9899242 0.1178699 0.07846516 0.9810379 0.165587 0.1007255 0.984873 0.09993135 0.1415591 0.9905996 0.08817219 0.1045857 0.9821401 0.1284245 0.1375067 0.9904159 0.09859442 0.09672433 0.9855011 0.1317807 0.1068713 0.9840465 0.05957907 0.1676389 0.9907542 0.055341 0.1238695 0.9823558 0.08604222 0.1660543 0.9899567 0.06946605 0.1231272 0.9872108 0.09092551 0.1309483 0.9888814 -0.1153509 0.09385114 0.9888758 -0.1015518 0.1086836 0.9888802 -0.1015042 0.1086872 0.9888775 -0.0858038 0.1214869 0.9888821 -0.08574384 0.1214919 0.9888794 -0.06844711 0.1320325 0.9888818 -0.06839656 0.132041 0.9888811 -0.04980731 0.1401191 0.9888822 -0.04979395 0.1401163 0.9888807 -0.03024655 0.145603 0.9888798 -0.03025513 0.1456071 0.9888815 -0.01014888 0.1483589 0.9888811 -0.01014393 0.1483629 0.9889063 0.006928205 0.1483793 0.9833335 0.01241064 0.1813868 0.9908285 0.01886433 0.1338028 0.9827623 0.03760623 0.1810088 0.989497 0.03343665 0.1406334 0.98816 0.04927313 0.1452999 0.7855234 0.1259087 0.6058879 0.6462789 0.1049256 0.7558534 0.7804598 0.04266709 0.6237485 0.7825065 0.28645 0.5528381 0.6471287 0.3046596 0.6988613 0.7758165 0.2112835 0.5945319 0.7067046 0.2245838 0.6709179 0.6945193 0.1646867 0.7003723 0.7129026 0.5439764 0.4425603 0.7824774 0.4250003 0.4550866 0.6465175 0.4841076 0.5896227 0.7827204 0.3589211 0.5084532 0.7115988 0.393682 0.5819293 0.7007728 0.3427603 0.6256459 0.7899497 0.5239133 0.3185817 0.6523174 0.6219296 0.4332271 0.8007475 0.4575849 0.3865483 0.7319654 0.5285405 -0.4299671 0.7831044 0.3637453 -0.5044174 0.7898647 0.1247764 -0.6004536 0.6502695 0.1978397 -0.733491 0.6960667 0.03262937 0.7172354 0.6956249 -0.04902523 0.7167304 0.6956199 -0.04902625 0.7167353 0.6956268 -0.146156 0.7033788 0.6956244 -0.1461641 0.7033796 0.6956594 -0.2405535 0.6768988 0.6955943 -0.2405853 0.6769545 0.6956501 -0.33051 0.6378356 0.695632 -0.3304989 0.6378611 0.6956482 -0.4142925 0.5868862 0.6956201 -0.414286 0.586924 0.6956173 -0.4903671 0.5250302 0.6956281 -0.4903358 0.5250452 0.6956285 -0.5572699 0.4533776 0.6956404 -0.658914 0.286211 0.695614 -0.613833 -0.3732698 0.7278958 0.05384165 -0.6835706 0.6809946 0.1246607 -0.7215996 0.8887471 -0.03128635 0.4573292 0.8887405 -0.03127902 0.4573422 0.8887555 -0.09326177 0.448794 0.8887397 -0.09327709 0.4488222 0.888738 -0.1535084 0.4319492 0.8887394 -0.1535186 0.4319428 0.8887541 -0.2108993 0.4069861 0.8887418 -0.2108931 0.4070161 0.8887482 -0.2643377 0.3745024 0.8887417 -0.2643569 0.3745046 0.888754 -0.3128544 0.3350205 0.8887446 -0.3128995 0.3350032 0.8887284 -0.4584341 0 0.8887566 -0.4583798 0 0.8887354 0.3916863 0.2381832 0.8887521 0.3555679 0.2892944 0.8887486 0.3555753 0.2892959 0.8887547 0.3128547 0.3350179 0.8887338 0.3129124 0.3350199 0.8887383 0.2643491 0.3745185 0.8887506 0.2643455 0.3744914 0.8887486 0.2108854 0.4070056 0.8887474 0.2109069 0.406997 0.888738 0.1535084 0.4319492 0.8887394 0.1535186 0.4319428 0.8887442 0.09326565 0.4488154 0.8887507 0.09327328 0.4488009 0.8887459 0.03128111 0.4573315 0.8887417 0.031282 0.4573398 1 2.11081e-6 0 1 -2.15017e-6 0 1 -2.94718e-6 0 1 -3.14456e-6 0 1 1.47082e-6 0 1 -3.39015e-6 0 1 3.12666e-6 0 1 -5.52345e-7 0 1 -3.19068e-6 0 1 -3.23704e-6 0 0.2271003 -0.04369205 -0.9728908 0.3298057 -0.6523938 -0.6823567 0.3298081 -0.6523961 -0.6823533 0.3298291 -0.7637435 -0.5548952 0.3298192 -0.763747 -0.5548962 0.3298317 -0.9100199 -0.2511473 0.3298208 -0.9100236 -0.2511482 0.3298262 -0.9402412 -0.08462345 0.3298158 -0.9402453 -0.08461952 0.004368424 -0.9959651 -0.08963602 0 -0.9847981 -0.173703 0 -0.9664989 -0.256671 0.008237898 -0.9639308 -0.2660254 0 -0.939589 -0.3423048 0 -0.9071902 -0.4207209 0.01160615 -0.9009069 -0.4338574 0 -0.8658194 -0.5003569 0 -0.8202713 -0.5719748 0.01447719 -0.8089333 -0.5877223 0 -0.7656992 -0.643199 0 -0.7083905 -0.7058208 0.01685315 -0.690966 -0.7226908 0 -0.9071894 0.4207226 0 -0.9395905 0.3423008 0 -0.9664989 0.256671 0 -0.9847981 0.173703 0 -0.9963973 -0.0848084 1 7.58956e-6 0 0.8517952 0.3115322 -0.42118 0.7659058 -0.321026 0.5570733 0.7567616 -0.2942953 0.5836969 0.7655477 -0.2728064 0.582678 0.7658637 -0.2193517 0.6044319 0.7562153 -0.1916023 0.6256412 0.7656351 -0.1673684 0.6211206 0.765969 0.4543063 -0.4548597 0.758022 0.4309111 -0.4896104 0.7654138 0.4145212 -0.492254 0.7659344 0.3683721 -0.5269218 0.7571234 0.3425143 -0.5562806 0.7655053 0.322615 -0.5567059 0.7658936 0.2712246 -0.5829617 0.7564569 0.2438622 -0.6068808 0.765596 0.2209228 -0.6041987 0.7658638 -0.2193503 -0.6044321 0.7648995 -0.2899979 -0.5751783 0.7513901 -0.2797963 -0.5976011 0.7659116 -0.3210226 -0.5570673 0.7649016 -0.3830333 -0.5178909 0.7537279 -0.3778514 -0.5377011 0.7659564 -0.4129121 -0.4927621 1 9.31758e-6 0 1 -7.74299e-6 0 1 9.83865e-6 0 1 3.49685e-6 0 1 -6.888e-6 0 1 -4.47884e-6 0 0 0.3247005 0.945817 0 0.1645951 0.9863612 0 -0.164595 0.9863613 0 -0.3246996 0.9458173 0 -0.4759487 0.8794731 0 -0.6142132 0.7891402 0 -0.6142129 0.7891404 0 -0.7357243 0.6772813 0 -0.9965845 0.08258056 0 -0.9965847 0.0825777 0 -0.9965846 -0.08257782 0 -0.9965845 -0.08258068 0 -0.9694007 -0.2454839 0 -0.9157744 -0.4016931 0 -0.9157733 -0.4016954 0 -0.8371661 -0.5469489 0 -0.837166 -0.546949 0 -0.7357233 -0.6772823 0.9821653 0.1880196 0 0.9906158 0.1365021 -0.006910502 0.9851065 0.1703433 -0.02341639 0.9888806 -0.01014941 0.1483656 0.9888809 -0.01014393 0.1483638 0.9889061 0.006928205 0.1483806 0.983332 0.01241105 0.1813951 0.9908273 0.01886576 0.1338106 0.98276 0.03760886 0.1810204 0.9894987 0.03343397 0.140622 0.7855263 0.1259092 0.6058841 0.6462761 0.1049252 0.7558557 0.7804567 0.04266691 0.6237522 0.7067071 0.2245845 0.670915 0.7823791 0.6228026 0 0.6429769 0.7643851 0.04791897 0.6960718 0.03262966 0.7172303 0.6956267 -0.04902535 0.7167287 0.695607 -0.04902637 0.7167478 0.695596 -0.1461614 0.7034082 0.6956456 -0.7183852 0 0.6956398 -0.5572564 -0.4533771 0.6956538 -0.4142662 -0.5868981 0.6964097 0.01181286 -0.7175473 0.8887447 -0.03128629 0.4573339 0.8887517 -0.03127771 0.4573206 0.8887453 -0.454131 0.0624246 0.8887497 -0.03128272 -0.4573245 0.888743 0.09326553 0.4488179 0.8887531 0.09327358 0.4487962 0.8887448 0.03128105 0.4573339 0.8887441 0.03128212 0.4573351 1 1.05287e-6 0 1 -2.9556e-6 0 1 -5.2679e-7 0 1 1.14209e-5 0 1 2.94163e-6 0 1 -3.8172e-6 0 1 2.62263e-6 0 1 -2.36807e-6 0 1 -3.14454e-6 0 0.3298035 0.4473574 -0.8313249 0.3298265 0.1267195 -0.9354981 0.3298159 0.1267251 -0.9355012 0.3303048 -0.06349319 -0.9417365 0.3298043 -0.2100691 -0.9203805 0.3298629 -0.2100688 -0.9203595 0.3298285 -0.3710319 -0.8680718 0.3298179 -0.3710356 -0.8680742 0.3298515 -0.5200579 -0.7878693 0.3298281 -0.6523883 -0.682351 0.3298194 -0.6523934 -0.6823505 0.3298403 -0.7637404 -0.554893 0.3298203 -0.8505588 -0.4095954 0.3298201 -0.8505554 -0.4096025 0.3298144 -0.9100241 -0.2511547 0.3298326 -0.9100213 -0.2511412 0.3298431 -0.9402353 -0.08462291 0.004365921 -0.9959644 -0.08964323 0 -0.9071885 -0.4207245 0.01160895 -0.9009097 -0.4338514 0 -0.8202691 -0.5719779 0.01447719 -0.808935 -0.58772 0 -0.708388 -0.7058233 0.0168513 -0.690966 -0.7226909 0.01871865 -0.5508033 -0.8344251 0 -0.4992986 -0.8664299 0 -0.4240221 -0.9056519 0 -0.3411381 -0.9400132 0 -0.2601805 -0.96556 0.02097344 -0.2224726 -0.9747133 0.02134376 -0.04485464 -0.9987655 0 0.00121355 -0.9999993 0.0212202 0.1342019 -0.9907268 0 0.1749735 -0.9845731 0 0.2578412 -0.9661874 0.02059757 0.3089539 -0.950854 0 0.4218354 -0.9066725 0.01947367 0.4737753 -0.8804305 0 0.5014017 -0.8652148 0.004365921 -0.9959644 0.08964323 0 -0.9963974 0.08480811 0.7577275 0.05612975 -0.6501529 0.7706755 -0.01352441 -0.6370843 0.765744 7.79226e-4 -0.6431452 0.7648963 -0.08181691 -0.6389365 0.7466067 -0.05883049 -0.6626595 0.7658119 -0.1109867 -0.6334147 0.7648997 -0.1886207 -0.6159147 0.7490151 -0.1723875 -0.6397336 0.7658617 -0.2193513 -0.6044346 0.7649011 -0.2899971 -0.5751766 0.7659024 -0.3210227 -0.5570799 0.7660316 -0.6330283 -0.111673 1 4.38874e-6 0 1 -1.29957e-6 0 1 -3.78604e-6 0 1 3.34783e-6 0 1 7.54091e-6 0 1 -4.4837e-6 0 1 -2.27716e-6 0 1 -3.70617e-6 0 1 1.15895e-6 0 1 1.82716e-6 0 0 -0.8451906 -0.5344651 0 -0.845188 -0.5344692 0 -0.7485138 -0.6631193 0 -0.7485097 -0.663124 0 0.6927231 0.7212038 0 0.5680655 0.8229835 0 0.5680639 0.8229845 0 0.4286934 0.9034501 0 0.2782188 0.9605177 0 -0.9199799 -0.3919655 0 -0.7485116 -0.6631218 0 0.1205372 -0.9927089 0 0.2782176 -0.9605181 0 0.4286925 -0.9034505 0 0.7994414 0.6007441 0 0.7994406 0.6007452 0 0.6927264 0.7212005 0 0.5680686 0.8229812 0 0.5680587 0.8229881 0 0.428696 0.9034488 0 0.2782152 0.9605188 0 0.2782176 0.9605181 0 0.1205372 0.9927089 0 0.1205362 0.992709 0 -0.9709411 0.2393184 1 -1.88972e-7 0 1 2.03296e-7 0 1 0 0 1 4.09074e-7 0 1 4.31983e-7 0 1 -6.32939e-7 0 1 -2.01131e-7 0 1 5.49608e-7 0 1 5.39081e-7 0 0 0 1 0 -0.8660259 -0.4999994 0 -0.8660228 -0.5000045 0 -0.6427898 -0.7660428 0 -0.6427863 -0.7660456 0 0.6427891 0.7660432 0 0.6427863 0.7660456 0 0.3420215 0.9396923 0 0.3420201 0.9396927 0.1353041 -0.8423982 -0.5215918 0.05836319 -0.6077231 -0.7920016 0.07770472 -0.6008127 -0.7956042 0 -0.4730922 -0.8810129 0 -0.2736631 -0.9618257 0.2484506 -0.3429484 -0.9059022 0.1907566 0.3756565 -0.9069147 0.1305445 0.7326833 -0.6679322 0 0.7838855 -0.6209054 0 0.8582242 -0.5132751 0.04279643 0.9316177 -0.3609114 0.1064625 0.9186291 -0.3805081 0 0.9751709 -0.221454 0 0.9957345 -0.09226655 0.1391059 0.9902775 0 0 0.9957344 0.09226697 0 0.9751709 0.221454 0.09218889 0.9285011 0.3597038 0.03701442 0.9232465 0.3824212 0 0.8582242 0.5132751 0 0.7390086 0.673696 0.1238611 0.4423048 0.8882709 0 -0.3540508 0.9352263 0 -0.473095 0.8810115 0.08153164 -0.6067333 0.7907132 0.06124299 -0.6015048 0.7965183 0 -0.7232495 0.6905868 0 -0.8502173 0.526432 0.2271284 -0.7861045 0.57485 0 -0.9019225 0.4318978 0 -0.9505797 0.3104809 0.1152535 -0.9764227 0.1825253 0.1612006 -0.9784784 -0.1288189 0.6774062 0.6666889 0.3108807 0.6756485 -0.2821208 -0.6811072 0.6756473 -0.4487959 -0.5848786 0.7576673 -0.5346139 -0.3743372 0.6756552 -0.5848722 -0.4487924 0.6774056 -0.6666894 -0.310881 0.7349529 -0.6264988 -0.2595064 0.6756539 -0.4487928 0.5848734 0.6784484 -0.5416398 0.4963208 0.7349537 -0.5379856 0.4128133 0.6774048 -0.6025763 0.4219298 0.6756518 -0.6811035 0.282122 0.6756554 0.5848724 0.4487918 0.7576686 0.5346115 0.3743379 0.6784491 0.5416404 0.4963192 0.6756541 0.4487894 0.5848758 0.6756502 0.448794 0.5848768 0.6756523 0.7309135 0.09622585 0.675654 0.7309119 0.09622699 0.6756504 0.7309153 -0.09622609 0.6756544 0.7309114 -0.09622699 0.6784533 0.7006417 -0.2209126 0.7576667 0.5914943 -0.2758181 0.7349528 0.5379864 -0.4128136 0.6756442 0.2821214 -0.6811113 0.6756547 0.2821231 -0.6811002 0.6756498 0.4487937 -0.5848775 0.6756502 0.448794 -0.5848768 0.6784563 0.5416355 -0.4963147 0.675649 -0.2821232 -0.6811057 0.6784485 -0.1590102 -0.7172332 0.7349488 -0.08851295 -0.6723212 0.6774052 -0.06411278 -0.7328108 0.67565 0.0962271 -0.7309156 0.7576678 0.0568813 -0.650157 0.6784485 0.1590102 -0.7172332 0.2441758 -0.3711009 -0.8959143 0.1233651 -0.3513448 -0.928083 0.2460297 -0.4585495 -0.8539332 0.244175 -0.5903364 -0.7693384 0.675653 -0.4487904 -0.5848762 0.6784499 -0.5416397 -0.4963188 0.2441747 -0.590335 -0.7693396 0.2460924 -0.7010092 -0.6693465 0.17111 -0.7816528 -0.5997837 0.244809 -0.7826396 -0.5723146 0.2441722 -0.8959156 -0.3711001 0.2458204 -0.9214113 -0.3009546 0.245815 -0.9214125 0.300955 0.1206293 -0.9171331 0.3798887 0.2454673 -0.8743263 0.4186878 0.2441688 -0.7693428 0.5903332 0.1543135 -0.797533 0.5832055 0.2460907 -0.7010084 0.6693478 0.2441735 -0.5903308 0.7693432 0.6756507 -0.4487928 0.5848773 0.6756517 -0.2821213 0.6811039 0.2441707 -0.5903379 0.7693387 0.2460449 -0.4585503 0.8539284 0.1532147 -0.3781654 0.9129711 0.2457119 0.5354328 0.8080455 0.2455935 0.6363391 0.7312704 0.2441728 0.7693397 0.5903356 0.2461296 0.8318251 0.4974809 0.2441707 0.895915 0.3711025 0.7349526 0.6264993 0.2595061 0.6784511 0.7006438 0.2209122 0.2441745 0.8959159 0.3710978 0.2459822 0.9452072 0.2146534 0.1387937 0.9818491 0.1292628 0.2451679 0.965345 0.0894531 0.2441754 0.9614346 -0.1265782 0.09200358 0.9915113 -0.09187322 0.2459811 0.9452075 -0.2146536 0.2441722 0.8959156 -0.3711001 0.6756535 0.681102 -0.2821213 0.6774057 0.6025776 -0.4219265 0.2441694 0.8959171 -0.3710983 0.2461265 0.8318258 -0.4974814 0.1923454 0.7785376 -0.5973964 0.2446033 0.7600772 -0.6020399 0.2441812 0.5903335 -0.7693386 -0.003324389 0.6564385 -0.7543722 0.2457185 0.5354295 -0.8080456 0.2441758 0.3711009 -0.8959143 0.2441762 0.3710985 -0.8959151 0.2441754 0.1265763 -0.9614348 0.2441876 0.1265753 -0.9614318 0.8481436 -0.3225007 0.4202924 0.8315122 -0.3570734 0.4255422 0.8401424 -0.399872 0.3664196 0.8385663 -0.4069789 0.3621807 0.837719 -0.4473414 0.3132292 0.848144 0.3224998 0.4202926 0.8481445 0.5252327 0.06914997 0.8315111 0.547069 0.09646147 0.8401416 0.517264 0.1630954 0.8385633 0.517151 0.171367 0.8377193 0.4949358 0.2307918 0.83772 0.4949353 0.2307905 0.8377198 0.4473389 0.3132309 0.8377192 0.4473405 0.3132305 0.8384354 0.4018139 0.3682007 0.8408055 0.4043945 0.3598767 0.831512 0.3570733 0.4255427 0.8384342 0.5197775 -0.1638883 0.8306842 0.5377733 -0.1440967 0.8512597 0.5202555 -0.06849253 0.8377177 0.5440257 -0.04759514 0.8385648 0.5445717 0.015841 0.8481431 0.2027316 -0.4894419 0.8385629 0.2585652 -0.4795379 0.8365235 0.3335587 -0.4347036 0.8565192 0.2960317 -0.4227767 0.8218995 0.4199757 -0.3848398 0.8377202 0.3861509 -0.3861509 0.8377188 0.4473416 -0.3132294 0.8553302 0.4063923 -0.321334 0.797582 0.5466941 -0.2549288 0.8512836 0.4544085 -0.2623534 0.838565 0.5063121 -0.2011387 0.8481426 -0.2027319 -0.4894424 0.8315134 -0.1899951 -0.5220034 0.8401428 -0.11739 -0.5295091 0.838566 -0.1101692 -0.5335448 0.8377189 -0.04759621 -0.5440235 0.8377184 -0.04759556 -0.5440245 0.8377191 0.04759293 -0.5440236 0.837719 0.04759705 -0.5440235 0.8384338 0.117961 -0.5320845 0.8408055 0.109464 -0.5301544 0.8315134 0.1899951 -0.5220034 0.838435 -0.4018153 -0.3682003 0.8306853 -0.3936767 -0.393676 0.8512594 -0.3194433 -0.4163094 0.83772 -0.3132317 -0.447338 0.8385629 -0.2585652 -0.4795379 0.7975775 -0.4941265 -0.3459901 0.8512843 -0.4544077 -0.2623525 0.8385638 -0.4273541 -0.3379041 0.9080772 0.3892142 -0.1546226 0.9070596 0.3645972 -0.2105038 0.9070571 0.3646043 -0.2105025 0.9080762 0.3285151 -0.2597606 0.882244 0.3424415 -0.3230782 0.9075325 0.2969709 -0.2969733 0.9070565 0.2313499 -0.3517467 0.8709591 0.2818319 -0.4024935 0.8709653 0.4746021 -0.1271716 0.9070562 0.4033229 -0.1207463 0.9075362 0.4183759 -0.03660273 0.8822466 0.4699912 -0.02737313 0.9080784 0.4186232 0.01217901 0.9070581 0.4146099 0.07310587 0.9070581 0.4146096 0.07310813 0.8822402 0.3776414 0.281139 0.9075345 0.3440262 0.2408881 0.9070552 0.3865801 0.1667542 0.8709614 0.4453167 0.2076517 0.9080801 0.3975403 0.1317289 0.9895129 -0.105065 -0.09912484 0.9895126 -0.105067 -0.09912478 0.9895134 -0.0793659 -0.120683 0.989513 -0.07937347 -0.1206818 0.9895129 -0.04940432 -0.1357331 0.9895123 -0.04940384 -0.1357372 0.9895122 -0.01677125 -0.143473 0.9895129 -0.01676809 -0.1434689 0.9895128 0.01676911 -0.1434692 0.9895123 0.01677018 -0.1434718 0.9895127 0.04940497 -0.1357347 0.9895129 0.04940277 -0.1357343 0.9895132 0.07937157 -0.1206812 0.9895128 0.0793727 -0.1206838 0.9895136 0.1050583 -0.09912484 0.9895127 0.1050672 -0.09912365 0.9895136 0.1250866 -0.07222372 0.9895123 0.1250978 -0.072223 0.9895119 0.1383841 -0.04142743 0.9895127 0.1383785 -0.04142779 0.9895132 0.1441982 -0.008399009 0.989512 0.1442068 -0.008398652 0.9895122 0.1422556 0.02508282 0.989513 0.1422496 0.025083 0.9895129 0.1326318 0.05721187 0.989513 0.1326306 0.05721223 0.9895129 0.1158632 0.08625638 0.989513 0.1158612 0.08625733 0.9070561 -0.2706231 0.3225095 0.8709661 -0.3474256 -0.3474385 0.9070546 -0.3062363 -0.2889145 0.9075366 -0.2408849 -0.3440233 0.8822407 -0.2587103 -0.3933452 0.9080796 -0.1987555 -0.3686298 0.9070598 -0.1439958 -0.3956106 0.9070579 -0.1439912 -0.3956167 0.9080796 0.1987546 -0.3686302 0.907061 0.1439885 -0.3956106 0.9070575 0.1439949 -0.3956162 0.9080737 0.08468967 -0.4101582 0.8822465 0.05465513 -0.4676047 0.9075356 0.03660255 -0.4183771 0.9070562 -0.04887586 -0.418163 0.8709705 -0.04282122 -0.4894659 0.9080731 -0.08468961 -0.4101598 0 -0.8660246 -0.5000014 0 -0.6427888 -0.7660436 0 -0.6427853 -0.7660465 0 0.6427907 0.7660419 0 0.6427868 0.7660452 1 -1.2614e-7 0 1 5.0225e-6 0 1 0 0 1 -4.72295e-7 0 1 4.46414e-7 0 1 2.5777e-6 0 1 -2.1685e-7 0 1 -3.85937e-7 0 1 4.63273e-7 0 1 -2.30673e-6 0 1 8.87302e-7 0 1 -2.64844e-7 0 1 0 0 1 -6.86278e-7 0 1 0 0 0.8993726 0.03061062 0.4361101 0.8993596 0.03058677 0.4361386 0.8992451 0.09529256 0.42694 0.8992526 0.09525537 0.4269322 0.8992343 0.1616442 0.4065083 0.8992364 0.1616393 0.4065057 0.8992469 0.2239788 0.3757507 0.8992468 0.2239595 0.3757623 0.8992573 0.280619 0.3355435 0.8992452 0.3302044 0.2869201 0.899246 0.3301888 0.2869357 0.899244 0.3714475 0.2310566 0.8992497 0.3714757 0.2309889 0.8992367 0.403354 0.1693485 0.8992409 0.4033634 0.1693043 0.8992371 0.425083 0.10333 0.8992456 0.4250618 0.1033438 0.8992488 0.4360587 0.03470462 0.8992518 0.436048 -0.03476184 0.8992472 0.4360619 -0.03470504 0.8992556 0.4250462 -0.103321 0.8992407 0.4250713 -0.1033461 0.8992528 0.4033446 -0.1692854 0.8992501 0.4033439 -0.1693013 0.8992468 0.3714425 -0.2310535 0.8992483 0.3714524 -0.2310319 0.8992406 0.3302096 -0.2869289 0.8992365 0.2806255 -0.3355937 0.8992426 0.2806261 -0.3355769 0.8992382 0.2239804 -0.3757705 0.8992481 0.2239784 -0.3757483 0.899248 0.161644 -0.4064781 0.8992397 0.1616432 -0.4064967 0.8992365 0.09529006 -0.4269585 0.899244 0.09528297 -0.4269444 0.8993732 0.03059345 -0.4361101 0.8993444 0.03055459 -0.4361723 0.8993497 -0.03058815 0.4361588 0.8993626 -0.03061008 0.4361307 0.8992374 -0.09527409 0.4269604 0.899245 -0.09527462 0.4269441 0.8992487 -0.1616448 0.406476 0.8992332 -0.1616446 0.4065104 0.8992411 -0.2239673 0.3757714 0.8992341 -0.2239681 0.3757878 0.8992515 -0.2806436 0.3355381 0.8992519 -0.2806044 0.3355702 0.8992437 -0.3302009 0.2869288 0.8992376 -0.3301805 0.2869718 0.8992407 -0.371481 0.2310154 0.8992598 -0.3714463 0.230997 0.8992385 -0.4033594 0.1693261 0.8992486 -0.4033425 0.1693125 0.8992513 -0.4250565 0.1033154 0.8992462 -0.4250578 0.1033548 0.8992371 -0.4360805 0.03473514 0.8992481 -0.4360601 0.03470945 0.8992418 -0.4360729 -0.03471159 0.8992513 -0.436051 -0.03473806 0.8992443 -0.4250663 -0.1033366 0.8992518 -0.4250531 -0.1033259 0.899249 -0.4033448 -0.1693055 0.8992415 -0.4033467 -0.1693407 0.8992466 -0.3714637 -0.2310201 0.8992519 -0.371464 -0.2309988 0.8992461 -0.3301972 -0.2869257 0.8992355 -0.3302257 -0.2869261 0.8992381 -0.2806223 -0.3355921 0.8992481 -0.280618 -0.3355689 0.8992351 -0.2239627 -0.3757886 0.8992497 -0.2239646 -0.3757524 0.8992373 -0.1616641 -0.4064933 0.8992346 -0.1616435 -0.4065077 0.8992473 -0.09526365 -0.4269415 0.899238 -0.09527778 -0.4269583 0.8993488 -0.03057658 -0.4361616 0.8993764 -0.0305556 -0.436106 0.9606088 0.1894611 0.2033108 0.9599936 0.1678201 0.2241622 0.9597746 0.1694045 0.2239085 0.960372 0.1445462 0.2383109 0.9604276 0.123956 0.2494268 0.9597033 0.09818834 0.2633038 0.9603446 0.0592544 0.2724467 0.9591869 0.06656652 0.2748265 0.9608213 0.03725051 0.2746545 0.9600617 0.2733911 0.05948978 0.9608508 0.2627794 0.08782362 0.9604048 0.2572921 0.1068807 0.9597445 0.2465025 0.1346368 0.9602201 0.2433355 0.1369868 0.9604905 0.226705 0.16144 0.9603715 0.2276023 0.1608844 0.9604181 0.2147399 0.1774376 0.9604278 0.2053353 0.1881913 0.9603915 0.1915653 0.2023637 0.9604924 0.2272721 -0.1606295 0.9601325 0.2453329 -0.1340059 0.9595373 0.2453778 -0.1381231 0.9609064 0.2556922 -0.1062101 0.9607554 0.2643684 -0.08401453 0.9597876 0.2743164 -0.05965226 0.960134 0.2736715 -0.05697983 0.9603664 0.2772789 -0.02851301 0.9608437 0.2770913 0 0.9603881 0.2773603 0.02694547 0.9606919 0.008553624 -0.277485 0.9595447 0.02009266 -0.2808385 0.9608372 0.03725516 -0.274598 0.9596389 0.0597853 -0.2748072 0.9602041 0.09760028 -0.2616915 0.9594175 0.09406775 -0.265837 0.9609733 0.123093 -0.2477468 0.9603593 0.1194128 -0.251894 0.959837 0.168119 -0.2246084 0.9600488 0.1688572 -0.2231448 0.9606118 0.1910058 -0.2018458 0.9603629 0.1900559 -0.2039164 0.9604555 0.2053422 -0.188042 0.9604692 0.21468 -0.1772328 0.9937224 0.02622306 -0.1087568 0.993719 0.1119045 0 0.9937231 0.06746619 0.08923488 0.9937345 0.04776936 0.1010435 0.9937133 0.01511782 0.1109299 0.9870736 0.06861877 -0.1448355 0.987069 0.08313673 -0.1370521 0.9870761 0.1093017 -0.1171925 0.9870604 0.1309219 -0.09258192 0.9870793 0.1396259 -0.0786069 0.9870743 0.1527329 -0.04854863 0.9870716 0.1569165 0.03266197 0.9870687 0.139694 0.07861971 0.9870697 0.1309231 0.09247988 0.9870812 0.1092231 0.117223 0.9870795 0.05341732 0.151066 0.9870753 0.03770661 0.1557579 0.9870705 0.02159738 0.1588255 0.978179 0.02241575 -0.2065517 0.9781249 0.04897475 -0.2021712 0.9781355 0.08908015 -0.1879246 0.9781468 0.1254395 -0.165813 0.9781355 0.1254847 -0.1658453 0.9781328 0.1698259 -0.1200649 0.9781317 0.1907039 -0.08300918 0.9781255 0.2036478 -0.04240471 0.9781311 0.2079899 -7.51137e-5 0.9781393 0.2035974 0.04232692 0.9781307 0.1907424 0.08293187 0.9781247 0.1812407 0.1020984 0.9781315 0.1566497 0.1368197 0.9781312 0.141813 0.1521459 0.9781283 0.1078547 0.1778551 0.9781405 0.0890994 0.1878901 0.9781422 0.06939661 0.1960158 0.9781446 0.02794265 0.2060398 0.9781349 0.02801585 0.206076 0.9678288 0.01616072 -0.25109 0.9677595 0.05924135 -0.2448104 0.9677825 0.05924677 -0.244718 0.9677661 0.08400261 -0.237429 0.9677745 0.1078255 -0.2275659 0.96777 0.1306365 -0.215303 0.9677796 0.1305772 -0.2152956 0.9677737 0.1717274 -0.1841838 0.9677649 0.1896916 -0.1656752 0.9677695 0.2056302 -0.1453912 0.9677764 0.2194305 -0.1235277 0.9677659 0.2194517 -0.1235729 0.967778 0.2399952 -0.07621085 0.9677683 0.2400187 -0.07625955 0.9677788 0.2465209 -0.05130106 0.9677769 0.2518093 0 0.9677667 0.251849 0 0.9677852 0.2504556 0.02576577 0.9677732 0.2505045 0.02574276 0.9677662 0.246563 0.05133521 0.9677772 0.2399832 0.0762583 0.9677801 0.2309215 0.1003843 0.9677734 0.2194219 0.1235667 0.9677677 0.1896693 0.1656843 0.9677731 0.1717162 0.1841973 0.9677715 0.1305987 0.2153192 0.9677725 0.1078789 0.2275489 0.9677696 0.1078718 0.2275648 0.967768 0.08404523 0.2374057 0.9677723 0.05924063 0.24476 0.9677748 0.05924516 0.2447488 0.9677718 0.03389596 0.2495374 0.9677615 0.03390353 0.2495766 0.9590064 0.01371759 0.2830523 0.9601716 0.01992553 0.2786999 0 -0.9654732 -0.2605022 0 -0.9654729 -0.2605034 0 -0.8307133 -0.5567005 0 -0.8307291 -0.5566771 0 -0.6374557 -0.7704871 0 -0.5566716 0.8307328 -0.01570391 -0.7937861 0.6079944 -0.01570391 -0.7937847 -0.6079961 0 -0.947068 -0.3210333 0 -0.5566824 -0.8307255 0 -0.4539756 0.8910141 1.5398e-5 -0.9876918 0.1564133 -1.53961e-5 -0.98769 -0.1564242 1 -4.36261e-6 0 1 -2.18128e-6 0 1 4.03323e-6 0 1 1.75402e-6 0 1 2.18129e-6 0 1 -1.31558e-5 0 1 -5.09577e-6 0 1 1.75399e-6 0 1 2.18127e-6 0 1 3.10783e-6 0 1 2.70781e-6 0 1 -3.22123e-6 0 1 1.2297e-6 0 1 -6.2383e-6 0 1 -4.00861e-6 0 1 8.25633e-6 0 1 5.07539e-6 0 1 -2.8319e-6 0 1 8.01549e-6 0 1 2.02996e-6 0 1 3.30251e-6 0 1 1.18004e-6 0 1 -7.11379e-7 0 1 3.35778e-6 0 1 -4.24535e-6 0 1 -2.32591e-7 0 1 2.97103e-6 0 1 -1.53684e-6 0 1 1.24258e-5 0 1 -1.26299e-5 0 1 -3.38225e-6 0 1 3.71946e-6 0 1 -3.62388e-6 0 1 1.16364e-5 0 1 -9.97335e-7 0 1 9.0664e-7 0 1 -9.91636e-7 0 1 -1.77679e-6 0 1 -8.92883e-7 0 1 9.16489e-7 0 1 -9.55289e-7 0 1 1.84495e-6 0 1 -4.6845e-6 0 1 -7.01238e-6 0 1 2.57764e-6 0 1 -1.30633e-6 0 1 -1.05646e-6 0 1 -9.8375e-6 0 1 -1.0964e-6 0 1 2.37754e-6 0 0 -0.3210214 0.947072 0.03299033 0.111903 0.9931714 0.03243029 0.3301053 0.9433869 0.01743316 0.2659981 0.963816 0.01742106 0.1637959 0.9863405 0.01743984 0.4671905 0.8839847 0.01741224 0.3722344 0.9279755 0.03298854 -0.1119034 -0.9931715 0.03243046 -0.3301068 -0.9433863 0.01743191 -0.2659959 -0.9638165 0.01742243 -0.1637936 -0.9863408 0.01744437 -0.6465132 -0.7627034 0.01740485 -0.5632311 -0.8261162 0.03131324 -0.5317711 -0.846309 0.0174399 -0.4672001 -0.8839797 0.01741206 -0.3722344 -0.9279754 0.02797096 -0.6987783 -0.7147913 0.03195589 -0.7067512 -0.7067402 0.01743978 -0.7553493 -0.6550903 0.01744902 -0.9072015 -0.4203344 0.0174337 -0.880526 -0.4736773 0.03241556 -0.8462817 -0.5317487 0.02494698 -0.8343745 -0.5506332 0.01745021 -0.7955155 -0.6056818 0.02214378 -0.9319781 -0.3618376 0.03278768 -0.9433742 -0.3301063 0.01742959 -0.9627895 -0.2696898 0.03299409 -0.9931715 -0.1119016 0.01964592 -0.9874774 -0.1565327 0.01745057 -0.9764166 -0.2151889 0.01964634 -0.9874889 0.1564596 0.03299081 -0.9931716 0.1119019 0.0174278 -0.9984746 0.05239009 0.01742756 -0.9984714 -0.05245035 0.03194332 -0.7067484 0.7067434 0.02798235 -0.6988511 0.7147197 0.03131306 -0.5317724 0.8463082 0.01740318 -0.5632315 0.8261159 0.0174452 -0.6465039 0.7627112 0.03243082 -0.3301001 0.9433887 0.01741153 -0.3722373 0.9279744 0.01743853 -0.4671968 0.8839814 0.01742804 0.05232715 0.998478 0.01742744 -0.05232536 0.9984781 0.03299063 -0.1119039 0.9931713 0.0174219 -0.163795 0.9863406 0.01743191 -0.2659981 0.963816 0.6609419 -0.199643 -0.7233937 0.6592679 0 0.7519082 0.6606416 -0.1229794 0.7405598 0.6492632 -0.1581291 0.7439439 0.6609435 -0.1996424 0.7233925 0.6604675 -0.2795443 0.6968772 0.6499002 -0.3091294 0.6943118 0.6610571 -0.350614 0.6633804 0.6602688 -0.4230669 0.6205317 0.6509559 -0.4461994 0.6141357 0.6611384 -0.4851078 0.5723343 0.6608043 -0.741311 0.1174554 0.6612957 -0.7325436 0.1614559 0.6565951 -0.7173287 0.2330719 0.63948 -0.7402943 0.2074363 0.6357768 -0.7708127 0.04044312 0.6592659 -0.7477911 0.07859355 0.6607981 -0.7495309 -0.03936374 0.6490505 -0.7565777 -0.07952213 0.6608055 -0.7413012 -0.1175103 0.6608742 -0.6996082 -0.2716502 0.6491072 -0.7234658 -0.2350686 0.6590191 -0.7242483 -0.2028749 0.6613024 -0.7325303 -0.1614884 0.6569933 -0.6639174 -0.3571745 0.6612713 -0.6806709 -0.3152893 0.6592657 -0.3058297 -0.6869039 0.6427583 -0.2852011 -0.7110008 0.6610557 -0.3506088 -0.6633844 0.6592634 -0.4419614 -0.6083108 0.6461766 -0.4299212 -0.6305741 0.6611427 -0.4851147 -0.5723235 0.6392745 -0.1259726 -0.7585901 0.6592699 -0.156331 -0.7354753 0.6608036 -0.03927969 -0.7495303 0.6490478 0 -0.7607477 0.6608049 0.03928023 -0.7495293 0.6606429 0.122976 -0.7405592 0.6492639 0.1581319 -0.7439427 0.6609349 0.1996414 -0.7234007 0.6592674 0.3058313 0.6869016 0.642759 0.2851997 0.7110008 0.6610471 0.3506116 0.6633916 0.6592669 0.4419609 0.6083073 0.6461818 0.4299201 0.6305695 0.6357369 -0.04039448 0.7708482 0.6608083 0.03927958 0.7495262 0.6592641 0.1563302 0.7354807 0.6392851 0.1259726 0.7585813 0.660937 0.199645 0.7233977 1 3.01195e-7 0 1 -3.6199e-6 0 1 2.04108e-6 0 1 -1.91622e-6 0 1 0 0 1 0 0 1 1.87839e-7 0 1 -1.22398e-7 0 0 0.9807854 -0.1950898 0 0.9807853 -0.1950902 0 0.9807854 0.1950898 0 0.9807853 0.1950902 0 0.8314695 0.5555704 0 0.9870502 0.1604123 0 0.9870507 0.1604091 0 0.8854568 0.4647217 0 0.7994419 0.6007435 0 0.7994438 0.600741 0 0.6927254 0.7212015 0 0.6927244 0.7212025 0 0.6927196 0.721207 1 -9.48838e-7 0 0.9831871 0.1246451 -0.1334424 0.9888793 -0.1487208 0 0.6429606 0.7643988 0.0479198 0.6762563 0.4843676 -0.5550366 0.7851222 0.4849156 -0.385279 0.6565646 0.3822984 -0.6502084 0.6956241 -0.4903432 -0.5250435 0.6956302 -0.04902559 -0.7167253 0.695638 -0.04902434 -0.7167179 0.6964167 0.01181298 -0.7175405 0.8887271 0.4584365 0 0.3298246 0.8104152 0.484193 0.329831 0.8104097 0.4841982 0.3298283 0.8838433 0.3317143 0.3298209 0.8838459 0.3317146 0.3298267 0.9288696 0.1685693 0.329827 0.928871 0.1685615 0.3298305 0.9440402 0 0.329825 0.9440422 0 0.3298323 0.9288677 -0.1685689 0.3298213 0.928873 -0.1685618 0.3298171 0.883847 -0.3317157 0.3298265 0.8838441 -0.3317139 0.3298168 0.8104143 -0.4842 0.329831 0.8104097 -0.4841982 0.329782 0.291735 -0.89785 0.3298404 0.29172 -0.8978334 0.3298295 0.1267206 -0.9354969 0 0.2578479 -0.9661855 0.02059572 0.3089529 -0.9508544 0 0.8188835 -0.5739597 0.01310437 0.858376 -0.5128537 0 0.8670333 -0.4982504 0 0.9061735 -0.4229065 0.009984374 0.9361888 -0.3513557 0 0.9852031 -0.1713916 0.006364583 0.9839094 -0.1785547 0 0.9658696 -0.2590291 0 0.9404277 -0.3399937 0.002245366 0.9999976 0 0.002245366 0.9999975 0 0 0.9852031 0.1713916 0.006363749 0.9839094 0.1785545 0 0.9658696 0.2590291 0 0.9404276 0.3399944 0.009984076 0.9361886 0.3513563 0 0.9061735 0.4229065 0 0.8670333 0.4982504 0.01310396 0.8583758 0.5128541 0 0.8188835 0.5739597 0 0.7672564 0.6413406 0 0.8188791 -0.573966 0 0.8634704 -0.5043995 0 0.9157755 -0.4016907 0 0.9157713 -0.4017003 0 0.9694014 -0.2454812 0 0.9694 -0.2454866 0 0.9965842 -0.08258354 0 0.9965846 -0.08257782 0 0.9965847 0.0825777 0 0.9965842 0.08258342 0 0.9694 0.2454867 0 0.9694012 0.2454816 0 0.9157713 0.4017003 0 0.9157755 0.4016907 0 0.8371679 0.5469462 0 0.8371652 0.5469502 0 0.7357211 0.6772847 0 0.6142102 -0.7891426 0 0.7357256 -0.6772798 0 0.7357252 -0.6772802 0 0.9157733 -0.4016954 0 0.9157733 0.4016954 0 0.7357239 0.6772816 0 -0.6142102 0.7891425 0 -0.7357214 0.6772844 0 -0.7357296 0.6772754 0 0.2782164 -0.9605185 1 8.46958e-7 0 1 -1.90097e-6 0 1 -3.42554e-7 0 0 0.342022 -0.939692 0 0.3420183 -0.9396934 0 0.3210039 0.9470779 0.03194344 0.7067434 -0.7067484 0.02798575 0.6988563 -0.7147145 0.0313127 0.5317713 -0.846309 0.01740497 0.5632347 -0.8261137 0.01744383 0.64651 -0.7627062 0.66027 0.4230704 -0.6205281 0 -1 0 -1 0 0 0 -1 -4.859e-6 0 -0.5555699 0.8314699 0 -0.8314691 0.555571 0 -0.9807857 0.1950883 0 -0.9807854 -0.1950898 0 -0.9807853 -0.1950902 0 -0.5555697 0.8314701 0 -0.6026282 0.7980222 0 -0.602638 0.7980149 0 -0.9829732 0.1837493 0 0.8854528 0.4647295 0 0.6927273 0.7211996 0 0.6927224 0.7212044 0 0.278217 0.9605183 0 -0.5000001 0.8660254 0.6956208 -0.6138243 0.3732713 0.6956319 -0.4903575 -0.5250199 0.1901741 -0.06604152 0.9795266 0.4875131 0.7127347 -0.5043216 0.3298454 0.8838388 0.3317094 0.3298145 0.8838459 0.3317209 0.3298214 0.9288726 0.1685635 0.3298185 0.9288738 0.1685619 0.3298228 0.9440429 0 0.3298172 0.9440448 0 0.3298242 0.9288716 -0.1685633 0.3298128 0.9288758 -0.1685623 0.3298105 0.8838461 -0.3317247 0.3298498 0.8838385 -0.3317055 0.3298392 0.8104076 -0.484196 0.3298089 0.8104176 -0.4841998 0.3298139 0.7109295 -0.6211297 0.3298103 0.7109346 -0.6211257 0.3298164 0.5886105 -0.7380779 0.329825 -0.2100632 0.9203744 0 0.8188745 -0.5739725 0.01310616 0.8583745 -0.5128564 0 0.8670313 -0.4982538 0.009984314 0.9361853 -0.3513653 0 0.9852043 -0.1713839 0.006368219 0.98391 -0.1785512 0 0.9658583 -0.2590708 0 0.9404318 -0.3399825 0.00224924 0.9999976 0 0.00224924 0.9999975 0 0 0.9852043 0.1713839 0.006367564 0.9839101 0.178551 0 0.9658583 0.2590708 0 0.9404315 0.3399832 0.009984016 0.9361851 0.3513659 0 0.906194 0.4228623 0 0.8670313 0.4982538 0.01310801 0.8583741 0.5128568 0 0.8188745 0.5739725 0 0.08601379 0.996294 0 0.02244096 0.9997482 0.01039516 -0.02122426 0.9997207 0 -0.08843123 0.9960824 0 -0.1725836 0.9849949 0.0209698 -0.2224746 0.974713 0 -0.2601827 0.9655595 0 -0.3411413 0.940012 0 -0.5000017 0.8660246 0 -0.499998 0.8660266 0 -0.6324447 0.7746056 0 0.5680602 -0.8229871 0 0.7994414 -0.6007441 0 0.9485368 0.3166672 0 0.9485363 0.3166685 0 -0.3546071 0.9350154 0 -0.4999997 0.8660256 0 -0.632447 0.7746037 0 -0.6324464 0.7746042 0 -0.7485116 0.6631218 0 -0.7485097 0.663124 0 -0.8451906 0.5344651 0 -0.9199799 0.3919655 1 -3.13095e-6 0 1 1.53517e-6 0 0 0.6427888 -0.7660436 0 0.6427842 -0.7660473 0 0.984808 0.1736474 0 0.9848074 0.1736503 0 -0.6427912 0.7660415 0 -0.6427873 0.7660447 0 -0.8660249 0.5000009 0 -0.8660238 0.500003 0 -0.6427901 0.7660424 0 -0.6427863 0.7660456 0 -0.8660267 0.4999977 0 -0.984808 0.1736474 0 -0.9848074 0.1736503 0 1 -1.99478e-7 0 1 1.99478e-7 0 -0.9807851 -0.1950914 0 -0.9807856 -0.1950886 0 -0.8314691 -0.555571 0 0.1950902 -0.9807853 0 0.8314677 -0.5555733 0 0.8314707 -0.5555688 0 0.8314707 0.5555688 0 0.8314677 0.5555733 0 0.555572 0.8314686 0 -0.5555704 0.8314695 0 -0.9807851 0.1950917 0 0.5555701 0.8314697 0 0.1950905 0.9807853 0 -0.8314699 0.5555699 1 2.13625e-6 0 1 -1.98599e-7 0 1 0 0 1 8.97897e-7 0 1 -1.19499e-7 0 1 4.83543e-7 0 1 6.67005e-7 0 0 -0.9829732 -0.1837493 0 -0.9829729 -0.1837509 0 -0.8502166 -0.5264331 0 -0.8502174 -0.5264318 0 0.7390155 0.6736885 0 0.7390074 0.6736974 0 -0.6026362 0.7980161 0 -0.8502174 0.5264318 0 -0.8502166 0.5264331 0 -0.9829729 0.1837509 0 0.7390087 -0.673696 0 0.9324721 -0.3612424 0 0.9324713 0.3612439 0 0.9324738 0.3612377 0 0.739015 0.673689 0 0.7390082 0.6736965 0 0.4457401 0.8951625 1 7.26319e-7 0 1 3.69989e-7 0 1 2.84652e-6 0 1 1.18022e-6 0 1 -3.89471e-7 0 0.9986755 -0.01837462 0.04805964 0.9986754 -0.01117038 0.05022674 0.9986754 -0.03704261 0.03571498 0.9986752 -0.03145176 0.04072827 0.9986741 -0.02522492 0.04487609 0.9986757 -0.0486921 0.01661503 0.9986745 -0.04578131 0.02352589 0.9986755 -0.04184228 0.02994251 0.9986752 -0.05114924 -0.005631089 0.9986753 -0.05142158 0.001882672 0.9986754 -0.05059987 0.009342253 0.9986754 -0.04392051 -0.02680724 0.9986752 -0.04736083 -0.02012664 0.9986758 -0.04977351 -0.0130099 0.9986762 -0.02836716 -0.04291123 0.9986755 -0.03433448 -0.03832298 0.9986752 -0.03955507 -0.03291678 0.9986755 -0.007472217 -0.05090802 0.9986751 -0.01483279 -0.04927676 0.9986743 -0.02188271 -0.04659235 0.9986754 0.01482701 -0.04927366 0.9986756 0.007462143 -0.05090773 0.9986752 0 -0.05145794 0.998675 0.03434628 -0.0383234 0.9986757 0.02838444 -0.04291146 0.9986742 0.02188295 -0.04659575 0.9986749 0.04736596 -0.0201264 0.9986752 0.04392522 -0.02680659 0.9986752 0.03955507 -0.03291678 0.9986752 0.05142247 0.001882672 0.9986752 0.05114924 -0.005631089 0.9986755 0.04977923 -0.0130099 0.9986745 0.04578077 0.02352559 0.998676 0.04868626 0.01661503 0.9986754 0.05059987 0.009342253 0.9986755 0.03144288 0.04072779 0.9986755 0.03703713 0.03571516 0.9986755 0.04184228 0.02994251 0.9986755 0.01116186 0.05022704 0.9986758 0.01835745 0.04805964 0.9986741 0.02522492 0.04487609 0.9986754 0.003754019 0.05131745 0.762358 0.4974345 -0.4139678 0.7642225 0.5245327 0.3752728 0.762039 0.5278404 0.3750748 0.7507603 0.5745944 0.3258842 0.7698625 0.5675869 0.2918167 0.7475422 0.6075505 0.2684461 0.7653501 0.6091402 0.2078163 0.7603055 0.6164296 0.2048175 0.7506994 0.6443043 0.1460219 0.7700718 0.6273443 0.1158819 0.7477199 0.6591423 0.08028984 0.7661541 0.6422281 0.0234726 0.7565547 0.653784 0.01384121 0.7522472 0.6568542 -0.05164122 0.7690584 0.6353441 -0.06990772 0.7475521 0.6534573 -0.1189938 0.7684391 0.6191153 -0.1618568 0.753782 0.6312487 -0.1825864 0.7545939 0.6039275 -0.2566313 0.7699787 0.5917822 -0.2385936 0.7442581 0.5701103 -0.3479285 0.7848938 0.5144124 -0.3454298 0.747255 0.5871278 -0.311273 0.76548 0.3550488 -0.5366384 0.7487237 0.4162017 -0.5159351 0.7697941 0.4259384 -0.4753878 0.7485347 0.4658439 -0.4718955 0.7633509 0.4970945 -0.4125441 0.765784 0.1852779 -0.6158304 0.7477721 0.2450512 -0.6170793 0.7692984 0.2711843 -0.5784801 0.751208 0.302093 -0.5868786 0.7604265 0.3541662 -0.5443511 0.7697277 0.0929448 -0.6315701 0.7517197 0.1194078 -0.6485826 0.7592931 0.1810285 -0.6250622 0.7830924 -0.02270549 -0.6214908 0.7632995 0.009947836 -0.6459683 0.7472599 0.05362743 -0.6623646 0.7536635 -0.4731619 0.4561899 0.7536585 -0.4731699 0.4561899 0.7536598 -0.5345478 0.382434 0.7536581 -0.5345486 0.3824365 0.7536623 -0.5845291 0.3005311 0.753658 -0.5845375 0.3005256 0.7536546 -0.6220675 0.2122188 0.7536621 -0.6220592 0.2122172 0.753665 -0.6463259 0.1193825 0.7536575 -0.6463337 0.1193878 0.7536593 -0.6568267 0.02400416 0.7536584 -0.6568281 0.02400326 0.7536653 -0.6533157 -0.07188433 0.7536526 -0.6533301 -0.07188618 0.7536632 -0.6358891 -0.1662439 0.7536579 -0.635895 -0.1662451 0.753661 -0.6049082 -0.2570629 0.7536557 -0.6049187 -0.2570531 0.753663 -0.5610299 -0.3423999 0.7536557 -0.5610411 -0.3423978 0.753663 -0.5052013 -0.4204329 0.7536526 -0.5052124 -0.4204381 0.7536599 -0.4386035 -0.4895138 0.7536578 -0.4386099 -0.4895115 0.7536556 -0.3626579 -0.5481629 0.7536603 -0.3626595 -0.5481554 0.7536607 -0.2789727 -0.5951216 0.7536554 -0.2789909 -0.5951199 0.7536614 -0.1893531 -0.6293966 0.7536572 -0.1893602 -0.6293995 0.7536624 -0.09570002 -0.6502574 0.7536613 -0.09570109 -0.6502584 0.7536561 0 -0.657269 0.8032105 0.4288401 0.41346 0.8032141 0.4844699 0.3466065 0.8032138 0.4844713 0.3466054 0.8032135 0.5297704 0.272381 0.8032155 0.5297736 0.2723692 0.8032108 0.5637877 0.1923435 0.8032136 0.5637899 0.1923252 0.8032133 0.5857821 0.1082031 0.8032114 0.5857853 0.1082004 0.8032165 0.59529 0.02175617 0.8032115 0.5952968 0.0217539 0.8032162 0.5921144 -0.06514859 0.8032116 0.5921198 -0.06515735 0.8032163 0.5763199 -0.1506612 0.8032129 0.5763198 -0.150681 0.8032138 0.5482425 -0.232976 0.8032104 0.5482484 -0.2329743 0.8032162 0.5084738 -0.3103196 0.803211 0.5084833 -0.3103172 0.8032152 0.457872 -0.3810495 0.8032144 0.4578757 -0.3810469 0.8032127 0.3975156 -0.4436561 0.8032132 0.3975188 -0.4436526 0.803214 0.328681 -0.496806 0.8032144 0.3286864 -0.4968019 0.803213 0.2528413 -0.5393704 0.8032117 0.2528448 -0.5393705 0.8032134 0.1716176 -0.5704346 0.8032144 0.1716172 -0.5704333 0.8032117 0.08673262 -0.5893458 0.8032169 0.0867387 -0.5893379 0.8032118 0 -0.5956937 0.8032076 0 -0.5956992 0.803216 -0.08673626 -0.5893396 0.8032121 -0.08673453 -0.5893451 0.8032124 -0.171618 -0.570436 0.8032156 -0.1716168 -0.5704318 0.8032113 -0.2528446 -0.5393712 0.8032128 -0.2528442 -0.5393691 0.803218 -0.3286826 -0.4967983 0.8032114 -0.3286833 -0.4968086 0.8032144 -0.3975178 -0.4436513 0.8032109 -0.3975176 -0.4436578 0.8032144 -0.4578751 -0.3810475 0.8032166 -0.4578719 -0.3810464 0.8032122 -0.5084808 -0.3103185 0.8032141 -0.5084766 -0.3103204 0.8032131 -0.5482438 -0.2329753 0.8032109 -0.5482444 -0.2329819 0.8032156 -0.5763186 -0.1506702 0.8032144 -0.5763209 -0.1506682 0.803215 -0.5921157 -0.06515157 0.8032131 -0.5921184 -0.06515067 0.8032144 -0.5952928 0.02175629 0.8032138 -0.5952937 0.02175378 0.8032125 -0.5857837 0.1082006 0.8032156 -0.58578 0.1081973 0.8032123 -0.5637867 0.1923403 0.803214 -0.5637847 0.1923387 0.8032146 -0.5297721 0.2723748 0.8032113 -0.5297774 0.2723743 0.8032142 -0.4844707 0.346605 0.8607174 0.3111377 0.402938 0.8607192 0.3664907 0.3533368 0.8607142 0.3664913 0.3533486 0.8607171 0.4140312 0.2962165 0.860716 0.4140336 0.2962163 0.8607193 0.4527491 0.2327671 0.8607182 0.4527484 0.2327728 0.8607168 0.4818173 0.1643734 0.8607185 0.4818146 0.1643732 0.8607168 0.5006161 0.09246766 0.8607136 0.5006208 0.09247261 0.8607183 0.5087422 0.01859235 0.8607178 0.5087428 0.01859265 0.8607188 0.5060265 -0.05568218 0.8607168 0.5060306 -0.05567514 0.8607145 0.492534 -0.1287664 0.8607168 0.4925317 -0.1287606 0.8607173 0.4685315 -0.1991081 0.8607175 0.4685325 -0.1991053 0.8607189 0.4345481 -0.2652 0.8607181 0.4345518 -0.2651966 0.8607143 0.3913061 -0.3256541 0.8607183 0.391306 -0.3256437 0.8607177 0.3397194 -0.3791513 0.8607177 0.3397151 -0.3791553 0.8607188 0.2808955 -0.4245717 0.8607167 0.2808998 -0.4245729 0.8607187 0.2160823 -0.4609466 0.8607177 0.2160815 -0.4609492 0.8607149 0.1466685 -0.487502 0.8607184 0.1466669 -0.4874966 0.860716 0.07412594 -0.5036599 0.8607205 0.07412058 -0.5036532 0.8607137 0 -0.5090895 0.8607205 0 -0.5090778 0.860716 -0.07412594 -0.5036599 0.8607184 -0.07412105 -0.5036566 0.8607149 -0.1466685 -0.487502 0.8607194 -0.1466664 -0.4874949 0.8607196 -0.2160817 -0.4609453 0.8607167 -0.2160822 -0.4609507 0.8607205 -0.2808977 -0.4245666 0.8607147 -0.2808952 -0.4245799 0.8607183 -0.3397188 -0.3791506 0.8607156 -0.3397198 -0.3791561 0.8607178 -0.3913065 -0.325644 0.8607161 -0.3913049 -0.3256508 0.8607186 -0.4345505 -0.265197 0.8607159 -0.4345496 -0.2652072 0.8607171 -0.4685348 -0.1991013 0.8607174 -0.4685306 -0.1991101 0.8607181 -0.4925288 -0.1287625 0.8607151 -0.4925347 -0.1287603 0.8607161 -0.5060309 -0.05568265 0.8607189 -0.5060271 -0.05567479 0.8607183 -0.5087422 0.01859235 0.8607185 -0.508742 0.01858866 0.8607162 -0.5006163 0.09247171 0.8607155 -0.5006183 0.09246742 0.8607159 -0.4818187 0.1643739 0.8607158 -0.4818193 0.1643734 0.8607181 -0.4527484 0.2327736 0.8607169 -0.4527519 0.2327707 0.8607158 -0.4140362 0.2962139 0.8607161 -0.4140298 0.2962216 0.9066171 0.1507419 0.3941099 0.9066133 0.2065145 0.3679731 0.9066154 0.2065121 0.3679693 0.9066123 0.2578924 0.3339845 0.9066138 0.2578951 0.3339787 0.9066159 0.3037687 0.2928689 0.9066115 0.3037734 0.2928779 0.9066139 0.3431777 0.2455205 0.9066147 0.3431716 0.2455263 0.9066139 0.3752695 0.1929353 0.906614 0.3752671 0.1929397 0.9066111 0.399366 0.136247 0.9066125 0.3993639 0.1362439 0.9066128 0.4149444 0.07664513 0.9066138 0.4149422 0.07664525 0.9066145 0.4216787 0.01540714 0.9066138 0.42168 0.01541072 0.9066129 0.4194324 -0.04614597 0.906614 0.4194297 -0.04615145 0.9066137 0.4082405 -0.1067306 0.9066154 0.4082368 -0.1067296 0.9066151 0.3883464 -0.1650341 0.9066134 0.3883503 -0.165034 0.9066128 0.3601871 -0.219815 0.9066144 0.3601836 -0.2198141 0.9066123 0.3243433 -0.2699178 0.906614 0.3243377 -0.269919 0.9066133 0.2815832 -0.3142665 0.906616 0.2815775 -0.3142637 0.9066137 0.2328323 -0.3519102 0.9066143 0.232819 -0.3519175 0.9066132 0.1791049 -0.3820653 0.9066118 0.1791109 -0.3820659 0.9066126 0.1215644 -0.4040741 0.9066126 0.1215689 -0.4040727 0.9066146 0.06143486 -0.4174637 0.9066112 0.06144195 -0.4174699 0.9066131 0 -0.421963 0.9066137 0 -0.4219617 0.9066128 -0.06144237 -0.4174662 0.9066134 -0.06143313 -0.4174665 0.9066141 -0.121572 -0.4040684 0.906612 -0.1215598 -0.4040769 0.9066134 -0.1791065 -0.3820644 0.906611 -0.179108 -0.3820693 0.9066152 -0.2328256 -0.3519109 0.9066123 -0.2328274 -0.3519167 0.9066137 -0.2815833 -0.3142649 0.906615 -0.281584 -0.3142609 0.9066115 -0.3243433 -0.2699207 0.9066143 -0.3243391 -0.2699164 0.9066139 -0.3601824 -0.219818 0.9066135 -0.3601842 -0.2198163 0.9066136 -0.3883524 -0.1650279 0.9066142 -0.3883486 -0.1650334 0.9066137 -0.4082405 -0.1067306 0.9066138 -0.4082406 -0.1067294 0.9066117 -0.4194351 -0.04614627 0.9066156 -0.4194262 -0.0461511 0.9066131 -0.4216816 0.01540708 0.9066138 -0.42168 0.01541525 0.9066131 -0.4149445 0.07664161 0.9066174 -0.4149351 0.0766403 0.90661 -0.3993673 0.1362504 0.906613 -0.3993642 0.1362395 0.9066143 -0.3752685 0.1929362 0.9066125 -0.375271 0.1929394 0.9066125 -0.3431822 0.2455201 0.9066154 -0.3431702 0.2455253 0.9066138 -0.3037675 0.2928766 0.9066143 -0.3037713 0.2928714 0.9066131 -0.2578931 0.3339818 0.9066164 -0.2578889 0.3339763 0.9420288 0.02449858 0.3346365 0.9420295 0.02449059 0.3346354 0.9420288 0.07295715 0.3275043 0.9420301 0.07294982 0.3275021 0.9420281 0.1198646 0.3133935 0.9420292 0.1198636 0.3133905 0.9420284 0.1642144 0.2926024 0.9420287 0.1642162 0.2926008 0.9420289 0.2050685 0.2655718 0.9420301 0.2050689 0.2655678 0.9420286 0.2415474 0.2328885 0.942031 0.2415484 0.232878 0.9420273 0.2728868 0.1952368 0.9420312 0.2728812 0.1952263 0.9420279 0.2984031 0.1534249 0.9420313 0.2983972 0.1534153 0.9420294 0.3175579 0.1083409 0.9420306 0.3175575 0.1083315 0.9420281 0.3299525 0.06094568 0.9420306 0.3299474 0.06093549 0.9420297 0.3353058 0.01225835 0.9420287 0.3353084 0.01225364 0.9420309 0.3335133 -0.03669762 0.9420282 0.3335214 -0.03669291 0.9420279 0.3246239 -0.08486956 0.9420304 0.3246181 -0.08486378 0.9420294 0.3088029 -0.1312302 0.9420291 0.308802 -0.1312347 0.9420287 0.2864102 -0.1747887 0.9420311 0.286401 -0.1747907 0.9420312 0.2578976 -0.2146303 0.9420294 0.2579061 -0.214628 0.9420262 0.2239181 -0.2498949 0.9420294 0.223905 -0.2498947 0.9420304 0.1851307 -0.2798311 0.9420289 0.1851375 -0.2798317 0.9420282 0.1424197 -0.3038086 0.9420285 0.142426 -0.3038043 0.9420295 0.09666204 -0.321305 0.9420314 0.0966615 -0.3212999 0.9420288 0.04885095 -0.3319569 0.9420292 0.04885381 -0.3319555 0.9420288 0 -0.3355323 0.9420272 0 -0.3355367 0.9420288 -0.04885095 -0.3319569 0.9420295 -0.04885369 -0.3319545 0.9420306 -0.09666246 -0.3213019 0.9420295 -0.09666132 -0.3213053 0.9420295 -0.1424198 -0.3038044 0.9420285 -0.1424136 -0.3038105 0.942029 -0.1851393 -0.2798303 0.94203 -0.1851316 -0.279832 0.9420257 -0.2239117 -0.2499024 0.9420305 -0.2239092 -0.2498864 0.94203 -0.2579029 -0.214629 0.9420294 -0.2579047 -0.2146294 0.9420291 -0.2864066 -0.1747925 0.9420322 -0.2864013 -0.1747848 0.9420291 -0.3088039 -0.1312302 0.9420291 -0.308802 -0.1312347 0.9420303 -0.3246184 -0.08486354 0.9420285 -0.3246217 -0.08487087 0.9420285 -0.3335202 -0.03669786 0.9420315 -0.3335121 -0.03669255 0.9420297 -0.3353058 0.01224923 0.9420285 -0.3353084 0.01226592 0.9420295 -0.3299498 0.06094062 0.9420289 -0.3299511 0.06094235 0.9420295 -0.3175591 0.1083363 0.9420306 -0.3175575 0.1083315 0.9420291 -0.2983996 0.1534243 0.9420287 -0.2984025 0.1534211 0.9420276 -0.2728891 0.1952323 0.9420308 -0.2728781 0.1952323 0.9420301 -0.2415443 0.2328854 0.9420295 -0.2415511 0.2328807 0.9420266 -0.2050762 0.2655744 0.942032 -0.2050645 0.265564 0.9420278 -0.1642189 0.2926021 0.9420289 -0.1642184 0.2925986 0.9420274 -0.1198654 0.3133955 0.9420289 -0.119862 0.3133924 0.9420297 -0.07295757 0.3275016 0.9420289 -0.07294923 0.3275057 0.9420294 -0.02449846 0.3346351 0.9420287 -0.02449071 0.3346374 0.968972 0.01803922 0.2465115 0.9689722 0.01803034 0.2465113 0.9689723 0.05374687 0.2412548 0.968971 0.05373263 0.2412636 0.9689735 0.08829092 0.2308574 0.9689707 0.08831191 0.2308613 0.9689721 0.1209668 0.215546 0.9689733 0.1209601 0.2155442 0.9689716 0.1510712 0.1956316 0.968972 0.1510679 0.1956319 0.9689711 0.1779385 0.1715604 0.9689738 0.1779279 0.1715561 0.9689723 0.2010237 0.1438128 0.9689716 0.20102 0.1438226 0.9689713 0.2198221 0.1130173 0.9689748 0.2198104 0.1130094 0.9689714 0.2339336 0.07980936 0.9689736 0.2339257 0.07980602 0.9689705 0.2430654 0.04489445 0.9689731 0.2430559 0.04489094 0.9689718 0.2470064 0.009031951 0.9689725 0.247004 0.009024381 0.9689718 0.2456887 -0.0270341 0.9689732 0.2456828 -0.02703428 0.9689725 0.2391314 -0.06251871 0.9689719 0.2391345 -0.06251662 0.9689716 0.2274852 -0.09666824 0.968973 0.2274814 -0.09666275 0.9689705 0.2109868 -0.1287659 0.9689752 0.2109731 -0.1287539 0.968972 0.1899812 -0.1581155 0.9689714 0.1900014 -0.1580942 0.968974 0.164928 -0.1840872 0.96897 0.16495 -0.1840893 0.9689721 0.1363822 -0.2061384 0.9689714 0.1363774 -0.2061447 0.968973 0.1049073 -0.2237988 0.9689728 0.1049236 -0.223792 0.9689711 0.07120478 -0.2366957 0.9689745 0.07121539 -0.2366791 0.9689722 0.0359798 -0.2445374 0.9689713 0.03598839 -0.2445397 0.9689729 0 -0.2471674 0.9689717 0 -0.2471719 0.9689731 -0.03597974 -0.2445337 0.9689701 -0.03598833 -0.2445442 0.9689733 -0.07121628 -0.2366834 0.9689723 -0.07119745 -0.2366929 0.9689728 -0.1049066 -0.2238004 0.9689722 -0.1049245 -0.2237941 0.9689721 -0.1363751 -0.2061433 0.9689731 -0.1363784 -0.2061365 0.9689733 -0.1649433 -0.1840773 0.9689718 -0.1649343 -0.1840932 0.9689719 -0.1899911 -0.1581042 0.9689697 -0.1899934 -0.1581147 0.9689719 -0.2109836 -0.1287615 0.9689732 -0.2109781 -0.1287607 0.9689718 -0.227487 -0.09666085 0.968973 -0.2274763 -0.09667432 0.9689721 -0.2391321 -0.06252181 0.9689714 -0.2391374 -0.06251257 0.9689718 -0.2456887 -0.0270341 0.9689735 -0.2456821 -0.02703422 0.968971 -0.2470093 0.009028971 0.9689736 -0.2469994 0.00902903 0.9689699 -0.2430683 0.04489129 0.9689729 -0.2430559 0.0448957 0.968972 -0.2339318 0.07980835 0.9689728 -0.2339302 0.07980275 0.9689714 -0.2198209 0.113019 0.9689717 -0.2198237 0.1130113 0.9689702 -0.2010295 0.1438187 0.968974 -0.2010157 0.1438133 0.9689705 -0.1779446 0.1715572 0.9689738 -0.1779279 0.1715561 0.9689717 -0.1510693 0.1956322 0.9689713 -0.1510693 0.1956337 0.9689726 -0.1209673 0.2155438 0.9689748 -0.1209596 0.2155386 0.9689712 -0.08830296 0.2308627 0.9689729 -0.088292 0.2308595 0.9689704 -0.05374658 0.2412628 0.9689739 -0.05375254 0.2412475 0.9689711 -0.01803928 0.2465152 0.9689737 -0.01803028 0.2465057 0.9883993 0.01109534 0.1514716 0.9883992 0.0110687 0.1514751 0.9883987 0.03303092 0.1482459 0.9883999 0.03301596 0.148242 0.9883994 0.05426454 0.141852 0.9883974 0.05427098 0.1418635 0.9883998 0.07432788 0.1324437 0.9883985 0.07436287 0.1324335 0.9883998 0.09281194 0.1202155 0.9884001 0.09282094 0.1202071 0.9883995 0.1093357 0.1054141 0.9884016 0.1093277 0.1054028 0.9883983 0.1235285 0.08837127 0.9883995 0.1235139 0.08837932 0.9884 0.1350673 0.06944388 0.9883986 0.1350821 0.06943577 0.9883995 0.1437404 0.04904264 0.9884003 0.1437386 0.04903113 0.9883987 0.1493546 0.02758949 0.9883999 0.149349 0.02757775 0.9883996 0.1517745 0.005547642 0.9884001 0.151772 0.005548179 0.9883993 0.1509667 -0.01661109 0.9884005 0.1509591 -0.01661157 0.9883994 0.1469389 -0.03841388 0.9883988 0.1469399 -0.03842467 0.9883984 0.1397892 -0.05939424 0.9883989 0.1397829 -0.05940055 0.9883996 0.129637 -0.07912337 0.9883992 0.1296436 -0.07911837 0.988398 0.116756 -0.09714782 0.9884021 0.1167169 -0.09715187 0.9883998 0.1013449 -0.113115 0.9883988 0.1013556 -0.1131143 0.9883994 0.08380931 -0.1266598 0.9883979 0.08379656 -0.1266802 0.9884005 0.06446641 -0.1375092 0.9883987 0.06446653 -0.1375214 0.9884003 0.04374366 -0.145435 0.988399 0.04373908 -0.1454458 0.9884 0.02212661 -0.1502528 0.9883989 0.02213996 -0.1502581 0.9883997 0 -0.1518754 0.9883993 0 -0.1518785 0.9883992 -0.02212667 -0.1502584 0.9883989 -0.02213996 -0.1502581 0.9883995 -0.04374366 -0.1454403 0.9884021 -0.04373919 -0.1454246 0.9883985 -0.06446766 -0.1375226 0.9884009 -0.06446456 -0.1375063 0.9883983 -0.08381098 -0.1266677 0.9884016 -0.08379316 -0.1266534 0.9883995 -0.1013438 -0.113119 0.9883984 -0.1013578 -0.1131168 0.9883998 -0.1167374 -0.09715014 0.9884001 -0.1167358 -0.09714955 0.9883993 -0.1296423 -0.07911807 0.9884006 -0.129633 -0.07911849 0.9883983 -0.1397863 -0.05940353 0.9884 -0.1397784 -0.05939233 0.9884002 -0.1469327 -0.03841757 0.9883983 -0.1469463 -0.03841549 0.9883999 -0.1509636 -0.01660543 0.9883984 -0.1509709 -0.01662313 0.9883996 -0.1517745 0.005547642 0.9883992 -0.1517773 0.005548179 0.9883997 -0.1493482 0.02758896 0.9883986 -0.1493554 0.02758979 0.9883997 -0.143743 0.04903203 0.9884006 -0.1437333 0.04904204 0.9883983 -0.1350781 0.06944674 0.9884002 -0.1350656 0.0694437 0.9884004 -0.1235168 0.08836519 0.988399 -0.1235166 0.08838123 0.9884016 -0.1093158 0.1054155 0.9883993 -0.1093492 0.1054026 0.9884006 -0.09280234 0.1202169 0.9884006 -0.09281897 0.1202045 0.988398 -0.07434982 0.1324449 0.9884006 -0.07431882 0.1324433 0.9883993 -0.05426484 0.1418527 0.988398 -0.05426979 0.1418604 0.9883995 -0.03303104 0.1482412 0.9884003 -0.03301542 0.1482397 0.9883986 -0.01109528 0.1514764 0.9884006 -0.01106876 0.1514652 1 3.55268e-6 -3.65155e-7 1 3.35995e-6 -3.17492e-6 1 -3.52666e-6 0 1 0 3.23623e-6 1 3.56511e-6 4.52793e-7 1 3.41551e-6 -3.04527e-6 1 1.90218e-6 0 1 1.78922e-6 0 1 3.77871e-6 8.34008e-6 1 3.61905e-6 2.04516e-6 1 6.56924e-6 9.6365e-6 1 7.46315e-6 3.21217e-6 1 0 -2.60407e-6 1 6.66203e-6 3.97926e-7 1 1.42718e-5 -4.55445e-6 1 -6.59583e-6 -1.11594e-5 1 3.46754e-6 0 1 -3.73819e-6 0 1 3.92554e-6 3.30379e-6 1 -1.01801e-5 0 1 4.37882e-6 0 1 1.02712e-5 0 1 -4.58445e-6 0 1 4.84592e-6 0 1 -4.57578e-6 0 1 -2.43654e-6 0 1 -1.22832e-6 0 1 -5.82099e-7 0 1 1.2499e-6 0 1 -2.22316e-6 0 1 2.51786e-6 0 1 2.5379e-6 0 1 1.09728e-6 0 1 1.08939e-6 0 1 -1.13216e-6 0 1 2.5498e-6 0 1 8.38234e-6 -1.09491e-6 1 0 -2.00848e-6 1 -9.82245e-6 -1.02956e-6 1 1.7166e-6 0 1 3.17722e-6 -9.40472e-7 1 7.20092e-6 -3.45531e-6 1 0 -3.45192e-6 1 0 -3.23438e-6 1 -3.73474e-6 -3.00382e-6 0.9819211 0.01291209 -0.1888495 0.9867628 0.07461482 -0.1439855 0.9897583 0.05253779 -0.1327338 0.9824911 0.06237953 -0.1755563 0.9905751 0.03909581 -0.131273 0.9848904 0.03524345 -0.1695551 0.9857522 0.03379887 -0.1647736 0.9900549 0.01540106 -0.1398367 0.981462 0.1105507 -0.1565599 0.9899623 0.0753023 -0.1196013 0.9839295 0.08094942 -0.1591543 0.9829894 0.142487 -0.1158851 0.9902712 0.1010748 -0.09563964 0.9884481 0.1012169 -0.1128076 0.9888641 0.08954429 -0.1188678 0.9835228 0.1658101 -0.07204109 0.9905812 0.1214161 -0.06330156 0.9824829 0.1591997 -0.09686481 0.9888651 0.1251754 -0.08047896 0.9876855 0.1228983 -0.09681606 0.981685 0.1834464 -0.05140012 0.9894497 0.1379652 -0.04421514 0.9880117 0.1425876 -0.05917721 0.9856168 0.1674203 0.02302008 0.9821675 0.1880079 0 0.990616 0.1364998 -0.006907939 0.9851065 0.1703433 -0.02341741 0.9864568 0.1623965 -0.0230295 0.9895911 0.1401365 -0.03273022 0.9817185 0.1832779 0.05136317 0.9900252 0.1371938 0.03206658 0.9854198 0.1685693 0.02307498 0.9902785 0.1226006 0.06570857 0.9837795 0.1645312 0.07146716 0.9861271 0.1527004 0.06508404 0.9903274 0.1316828 0.0437209 0.9889218 0.004668295 -0.1483638 0.9888803 -0.01014584 -0.1483674 0.9888803 -0.0101478 -0.1483671 0.9888788 -0.03027707 -0.1456094 0.9888803 -0.03025066 -0.1456046 0.98888 -0.04981017 -0.1401262 0.9888827 -0.04977381 -0.1401209 0.9888795 -0.06844711 -0.1320316 0.9888815 -0.06840282 -0.1320402 0.9888793 -0.08577764 -0.1214907 0.9888806 -0.08576154 -0.1214917 0.9888756 -0.1015518 -0.1086845 0.9888815 -0.1014953 -0.1086845 0.9888766 -0.115392 -0.09385061 0.988879 -0.1153712 -0.09385025 0.9888754 -0.127102 -0.07727074 0.988885 -0.1270299 -0.07726621 0.9888834 -0.1363798 -0.05924624 0.9888811 -0.1363959 -0.05924886 0.9888812 -0.1431924 -0.04012328 0.988884 -0.1431742 -0.04012238 0.9888791 -0.1473367 -0.02024888 0.988887 -0.1472835 -0.02024966 0.988892 -0.1486358 0 0.9888791 -0.1473367 0.02024888 0.9888814 -0.147321 0.02024996 0.9888744 -0.1432407 0.04012066 0.9888865 -0.1431562 0.04012405 0.9888738 -0.136448 0.05925089 0.9888871 -0.1363535 0.05924516 0.9888755 -0.127102 0.07726985 0.988885 -0.1270307 0.0772643 0.9888766 -0.115392 0.09385061 0.7218302 0.6347687 0.2757353 0.6868944 0.6323505 0.3582026 0.7837631 0.5980277 0.1675659 0.6502885 0.7170439 0.250944 0.7877063 0.5616036 0.25322 0.7193547 0.6881735 -0.09458398 0.6849338 0.7283205 -0.02037262 0.7823612 0.6228251 0 0.7790183 0.6211616 0.08537501 0.712171 0.693612 0.1082353 0.6956341 0.6964526 0.1762015 0.7873659 0.5936253 -0.1663255 0.6498593 0.7428492 -0.1608043 0.7965129 0.6002662 -0.07244348 0.6866948 0.6086506 -0.3974854 0.7905583 0.5232368 -0.3181837 0.6443507 0.6768307 -0.355967 0.776111 0.5783829 -0.2512469 0.7161838 0.6445187 -0.2677246 0.6785026 0.7005776 -0.2209646 0.7387208 0.3886828 -0.5506517 0.7856928 0.4222345 -0.4521118 0.6440324 0.5531013 -0.5284898 0.7366413 0.226467 -0.6372381 0.6676526 0.3167431 -0.6737313 0.7899985 0.2820713 -0.5443696 0.7824655 0.2146434 -0.5845307 0.6956231 -0.5572879 0.4533638 0.6956317 -0.6138209 0.3732566 0.6956357 -0.6589164 0.2862172 0.6956198 -0.6917704 0.1938219 0.6956495 -0.6917404 0.1938222 0.6956318 -0.7117069 0.09782582 0.6956219 -0.7117171 0.09782063 0.6956288 -0.7184014 0 0.6956182 -0.7184118 0 0.695639 -0.7116999 -0.09782487 0.6956139 -0.7117249 -0.09782153 0.6956406 -0.6917486 -0.1938245 0.6956435 -0.6917469 -0.1938206 0.6956502 -0.6589035 -0.2862116 0.6956453 -0.6589068 -0.286216 0.6956308 -0.6138201 -0.3732596 0.6956285 -0.5572699 -0.4533776 0.6956368 -0.5572804 -0.4533519 0.6956418 -0.4142773 -0.5869045 0.6956567 -0.4142679 -0.5868934 0.695621 -0.3305229 -0.6378606 0.6956005 -0.3305158 -0.6378867 0.6956256 -0.2405895 -0.6769207 0.6956362 -0.2405559 -0.6769219 0.6956268 -0.146156 -0.7033788 0.6956112 -0.1461632 -0.7033928 0.7684179 0.04367476 -0.6384565 0.8887521 -0.3555679 0.2892944 0.8887479 -0.355575 0.2892987 0.8887251 -0.391713 0.238178 0.8887526 -0.3916465 0.2381848 0.8887364 -0.4204708 0.1826256 0.8887462 -0.4204499 0.1826257 0.8887419 -0.4414108 0.1236704 0.8887468 -0.4413993 0.123677 0.8887493 -0.4541242 0.06241929 0.8887543 -0.4541143 0.06241935 0.8887467 -0.454129 -0.06241995 0.8887568 -0.4541096 -0.06241869 0.8887391 -0.4414153 -0.1236746 0.888747 -0.4413994 -0.123674 0.8887414 -0.4204618 -0.1826217 0.8887412 -0.4204588 -0.1826295 0.8887417 -0.3916724 -0.2381825 0.888741 -0.3916783 -0.2381753 0.8887571 -0.3555604 -0.2892883 0.8887479 -0.355575 -0.2892987 0.8887497 -0.3128614 -0.335025 0.8887486 -0.3128926 -0.3349987 0.8887383 -0.2643491 -0.3745185 0.8887466 -0.2643513 -0.3744968 0.8887474 -0.2108851 -0.407008 0.8887384 -0.210916 -0.4070116 0.8887436 -0.1535251 -0.4319316 0.8887305 -0.1535252 -0.4319586 0.8887435 -0.09325957 -0.4488181 0.888742 -0.09327733 -0.4488174 0.8887472 -0.03128266 -0.4573292 0.8887405 -0.03128194 -0.4573422 0.888736 0.03128165 -0.4573511 0.8887516 0.03128069 -0.4573206 0.8887442 0.09326565 -0.4488154 0.8887408 0.09327721 -0.4488198 0.8887369 0.1535082 -0.4319516 0.8887405 0.1535187 -0.4319404 0.888743 0.2109081 -0.407006 0.8887529 0.2108845 -0.4069965 0.8887423 0.2643431 -0.374513 0.8887367 0.2643625 -0.3745125 0.8887448 0.3128681 -0.3350321 0.8887437 0.3128992 -0.3350058 0.8887579 0.3555607 -0.2892856 0.8887429 0.3555825 -0.2893047 0.8887301 0.3917047 -0.238173 0.888752 0.3916462 -0.2381876 0.8887364 0.4204708 -0.1826256 0.8887363 0.4204677 -0.1826333 0.8887318 0.4414296 -0.1236757 0.8887421 0.4414087 -0.1236767 0.8887442 0.4541338 -0.0624206 0.8887568 0.4541096 -0.06241869 0.8887577 0.4583773 0 0.8887442 0.4541338 0.0624206 0.8887543 0.4541143 0.06241935 0.8887557 0.4413816 0.1236757 0.888721 0.4414515 0.1236754 0.8887308 0.4204794 0.1826324 0.8887417 0.420459 0.1826267 0.8887417 0.3916724 0.2381825 1 -1.44011e-6 0 1 -1.39443e-6 0 1 -2.90524e-6 0 1 2.94163e-6 0 1 1.44665e-6 0 1 2.80773e-6 0 1 4.322e-6 0 1 -4.48684e-6 0 1 1.05288e-6 0 1 -2.36805e-6 0 1 1.47742e-6 0 1 2.95356e-6 0 1 -6.39723e-6 0 1 1.47792e-6 0 1 2.87909e-6 0 1 -1.47569e-6 0 1 1.59894e-6 0 1 -3.83627e-6 0 1 2.42856e-6 0 1 -6.24981e-6 0 1 -1.38452e-6 0 1 7.40574e-6 0 1 1.47628e-6 0 1 -3.10359e-6 0 1 -5.73286e-6 0 1 6.74643e-6 0 1 -2.88262e-6 0 1 1.71575e-6 0 1 3.1913e-6 0 1 -3.19677e-6 0 1 5.76898e-6 0 1 -1.67981e-6 0 0.3298285 0.1267202 0.9354974 0.3298193 0.1267222 0.9355003 0.3298167 0.2917199 0.8978422 0.3298172 0.2917283 0.8978393 0.3298379 0.447353 0.8313136 0.3298309 0.4473536 0.8313161 0.3298264 0.5886062 0.7380768 0.3298301 0.5885997 0.7380803 0.3298152 0.7109323 0.6211259 0.3298316 0.7109259 0.6211244 0.3298139 0.1267244 -0.9355019 0.3298305 -0.8505497 -0.409606 0.3298178 -0.9402444 0.08462148 0.3298208 -0.9402433 0.0846216 0.3298124 -0.9100266 0.2511485 0.3298403 -0.9100168 0.251147 0.3298385 -0.8505483 0.4096025 0.3298122 -0.8505603 0.409599 0.3298168 -0.7637439 0.5549018 0.3298203 -0.7637498 0.5548918 0.3298183 -0.6523938 0.6823505 0.3298067 -0.6523933 0.6823567 0.3298249 -0.5200805 0.7878655 0.3298197 -0.5200634 0.7878789 0.329818 -0.371028 0.8680773 0.3298301 -0.3710351 0.8680698 0.3298279 -0.210065 0.920373 0.3298413 -0.2100712 0.9203668 0.329815 -0.04235345 0.943095 0.3309477 0.02117383 0.9434115 0.01572781 0.7529785 0.6578572 0 0.706676 0.7075374 0 0.6441274 0.7649183 0.01784896 0.6233918 0.7817059 0 0.572969 0.8195772 0 0.5013992 0.8652161 0.0194711 0.473778 0.8804292 0 0.4218235 0.906678 0 0.3434122 0.9391848 0.02059751 0.3089518 0.9508547 0.02121835 0.1342034 0.9907266 0 0.1749759 0.9845727 0 0.2578448 0.9661864 0 0.02244031 0.9997482 0.01039564 -0.02122527 0.9997207 0.02134537 -0.04485416 0.9987655 0 -0.1725865 0.9849944 0.02096962 -0.222473 0.9747133 0 -0.2601844 0.965559 0 -0.3411352 0.9400144 0.02009654 -0.3929453 0.9193423 0 -0.424023 0.9056515 0 -0.4993035 0.8664273 0.01872313 -0.5508 0.8344274 0 -0.5749544 0.8181855 0 -0.6422711 0.7664777 0.0168522 -0.690966 0.7226909 0 -0.7083905 0.7058208 0 -0.7656992 0.643199 0.01447993 -0.8089329 0.5877227 0 -0.8202705 0.5719758 0 -0.8658215 0.5003532 0.01160615 -0.9009073 0.4338563 0.008236289 -0.9639308 0.2660259 0.004368424 -0.9959651 0.08963602 0.7643555 -0.5558817 0.3267357 0.7622113 -0.4813684 0.4328031 0.7714548 -0.4507368 0.4491034 0.7658858 -0.4399545 0.4688913 0.7649019 -0.3830747 0.5178599 0.7629877 -0.6255559 0.1628792 0.7650265 -0.6224247 0.1652937 0.7660288 -0.6039646 0.2200609 0.7612885 -0.5908558 0.2670758 0.7651488 -0.5840945 0.270889 0.7659764 -0.5544236 0.3254147 0.7651733 -0.5574319 0.3221485 0.7678328 -0.5230197 0.3699772 0.7652583 -0.5280273 0.3681944 0.7659874 -0.4922311 0.4134874 0.7337957 -0.4363346 0.5207265 0.7654941 -0.3699576 0.5264506 0.7658064 -0.1109862 0.6334214 0.7559112 -0.08315533 0.6493717 0.7657124 -0.05687534 0.6406635 0.7659687 -0.01364463 0.6427329 0.7659718 -0.01365166 0.6427293 0.7659635 0.01442849 0.6427222 0.7608199 0.04129868 0.6476479 0.765775 0.05531942 0.640725 0.7649018 0.1357085 0.6296892 0.7478102 0.116171 0.6536698 0.7658326 0.1658002 0.6212976 0.7649 0.2401745 0.5976991 0.7502059 0.2270658 0.620993 0.7658911 0.2712258 0.5829643 0.7648994 0.3377305 0.5485135 0.7525663 0.3301799 0.569759 0.7659305 0.3683804 0.5269215 0.7649011 0.4255708 0.4835451 0.7548874 0.4224557 0.5016735 0.7659704 0.454303 0.4548605 0.7648997 0.5011704 0.4046689 0.757174 0.5011836 0.4189305 0.7659947 0.5264157 0.36897 0.7649011 0.5623505 0.314147 0.7594233 0.5640894 0.3241598 0.7660232 0.5824957 0.2718592 0.7649019 0.6073513 0.2145914 0.7616396 0.6093984 0.2203152 0.7660332 0.6208564 0.1665248 0.7649015 0.6348822 0.1088601 0.7638214 0.6358768 0.1106234 0.7660235 0.6403667 0.05602377 0.7649018 0.644147 0 0.7649018 0.644147 0 0.7660433 0.640343 -0.05602413 0.7639186 0.6360304 -0.1090589 0.7649656 0.6345408 -0.1103891 0.7660332 0.6208564 -0.1665248 0.7621095 0.6104645 -0.21569 0.7650899 0.6055641 -0.2189283 0.7660204 0.5824986 -0.2718605 0.7605223 0.5668583 -0.3166663 0.7652058 0.5581842 -0.3207656 0.7659991 0.5264114 -0.368967 0.7591575 0.5064288 -0.4089129 0.7653143 0.4938499 -0.4128031 0.7658345 0.1658008 -0.6212951 0.7560354 0.137898 -0.6398396 0.7656691 0.1125478 -0.6333118 0.7654024 0.04095667 -0.6422475 0.7577252 0.05612957 -0.6501554 0.7706895 -0.01352453 -0.6370673 0.7657359 7.79218e-4 -0.6431549 0.7648984 -0.0818175 -0.6389338 0.7466026 -0.0588302 -0.662664 0.7658073 -0.110986 -0.6334202 0.7649013 -0.1886202 -0.6159129 0.7490135 -0.172388 -0.6397353 0.7648992 -0.4650471 -0.4457134 0.7560327 -0.4636691 -0.4619799 0.7659873 -0.4922369 -0.4134806 0.7648987 -0.5336845 -0.3607091 0.7583048 -0.5347349 -0.3728706 0.7660109 -0.5565755 -0.3216383 0.7649004 -0.5869679 -0.2653231 0.7605352 -0.5890349 -0.2731742 0.7660233 -0.6039703 -0.2200646 0.764898 -0.6233674 -0.1623093 0.7627369 -0.6250442 -0.1659894 0.7660261 -0.6330218 -0.1117464 0.7648982 -0.6418306 -0.05462771 0.7649025 -0.6418257 -0.054627 0.7649016 -0.6418265 0.05462771 0.764898 -0.6418309 0.05462706 0.7660345 -0.633012 0.1117455 1 -3.54962e-6 0 1 -6.67664e-6 0 1 -6.46605e-6 0 1 7.44265e-6 0 1 -7.44061e-6 0 1 -1.81778e-5 0 1 7.44266e-6 0 1 -1.8166e-5 0 1 7.44873e-6 0 1 -1.81426e-5 0 1 -1.81076e-5 0 1 3.74574e-6 0 1 4.71303e-6 0 1 4.46377e-6 0 1 -1.89302e-6 0 1 1.59912e-5 0 1 1.63141e-5 0 1 1.69012e-5 0 1 8.68568e-6 0 0 0.324697 0.9458182 0 -0.7357225 0.6772832 0 -0.8371665 0.5469481 0 -0.9157733 0.4016954 0 -0.9157744 0.4016931 0 -0.9694006 0.2454843 0.9986754 -0.01837462 0.0480625 0.9986755 -0.0111705 0.05022734 0.9986754 -0.00375384 0.05131828 0.9986752 -0.03704053 0.03571867 0.9986755 -0.03145182 0.04072254 0.9986757 -0.0486921 0.01661789 0.9986746 -0.04578131 0.02352017 0.9986754 -0.04184418 0.02994102 0.9986752 -0.05114918 -0.005631089 0.9986753 -0.05142158 0.00187695 0.9986753 -0.05059987 0.009350836 0.9986754 -0.04392051 -0.0268101 0.9986751 -0.04735863 -0.0201314 0.998676 -0.04977357 -0.01300704 0.998676 -0.02836793 -0.04291534 0.9986754 -0.03433287 -0.03832691 0.9986752 -0.03955602 -0.03291183 0.9986746 -0.02188223 -0.04658555 0.9986749 0.01482701 -0.04928219 0.9986755 0 -0.05145227 0.9986748 0.03434628 -0.03832912 0.9986756 0.02838379 -0.04291331 0.9986746 0.02188348 -0.04658824 0.9986748 0.04736679 -0.0201267 0.9986753 0.04392522 -0.02680373 0.9986753 0.03955507 -0.03291106 0.9986753 0.05142188 0.00187695 0.9986755 0.04977923 -0.01301276 0.9986745 0.04577898 0.02353036 0.998676 0.04868626 0.01661789 0.9986753 0.05059987 0.009345114 0.9986757 0.03703546 0.03571355 0.9986754 0.04184514 0.02994167 0.998676 0.01835751 0.04805684 0.9986743 0.02522552 0.04487138 0.9986752 0.003754138 0.0513221 0.7623618 0.497437 -0.413958 0.7789019 0.1568318 0.6072197 0.7493147 0.1439927 0.6463696 0.7580237 0.2329968 0.60919 0.7668777 0.2224575 0.602006 0.7465695 0.3256167 0.5801792 0.7823413 0.325764 0.5308671 0.7484704 0.2894082 0.5966867 0.7866582 0.4644134 0.4068036 0.7481845 0.4533911 0.4844137 0.7653608 0.3906265 0.5115017 0.7398042 0.4843766 0.4669789 0.7642208 0.5245315 0.3752778 0.7620357 0.5278437 0.3750771 0.7507544 0.5745964 0.3258937 0.769865 0.5675889 0.291806 0.7602991 0.6164315 0.2048355 0.7506958 0.6443084 0.1460229 0.7700737 0.6273422 0.1158815 0.7477204 0.6591427 0.08028149 0.7661543 0.6422283 0.0234667 0.7522475 0.6568545 -0.051633 0.7690624 0.6353401 -0.06990146 0.7475525 0.6534539 -0.11901 0.7684394 0.6191179 -0.1618458 0.7537809 0.6312478 -0.1825944 0.7545928 0.6039265 -0.2566369 0.7699801 0.5917832 -0.2385864 0.7442564 0.5701091 -0.3479338 0.7848983 0.5144076 -0.3454266 0.7472531 0.5871263 -0.3112803 0.7654775 0.3550476 -0.5366426 0.7487205 0.4162 -0.5159412 0.7698035 0.4259396 -0.4753715 0.7485253 0.4658432 -0.4719113 0.7657815 0.1852787 -0.6158332 0.769301 0.2711852 -0.5784763 0.7512043 0.3020915 -0.5868841 0.7604298 0.3541678 -0.5443453 0.7697247 0.09294444 -0.6315735 0.7517238 0.1194084 -0.6485778 0.7592895 0.1810297 -0.6250662 0.7830914 -0.02270513 -0.6214922 0.7632961 0.009948313 -0.6459723 0.7474486 0.09996438 0.6567555 0.7730299 0.03155684 0.6335843 0.7536573 0.04797619 0.6555143 0.7536702 -0.04797875 0.6554993 0.7536514 -0.04797667 0.655521 0.7536588 -0.1429087 0.6415416 0.7536559 -0.1429098 0.6415447 0.7536658 -0.2347972 0.6138878 0.7536555 -0.2347996 0.6138994 0.7536514 -0.3216741 0.5731801 0.7536661 -0.3216844 0.5731551 0.7536597 -0.4016976 0.5202269 0.753665 -0.4017037 0.5202147 0.7536616 -0.4731606 0.4561945 0.7536631 -0.4731691 0.456183 0.7536622 -0.5345456 0.3824323 0.7536554 -0.5345425 0.3824501 0.7536636 -0.5845301 0.3005259 0.7536568 -0.5845412 0.3005214 0.7536531 -0.622071 0.2122142 0.753663 -0.6220599 0.2122114 0.7536639 -0.6463275 0.1193799 0.7536589 -0.6463298 0.1193991 0.753662 -0.6568243 0.02398979 0.7536581 -0.6568279 0.02401226 0.7536656 -0.653316 -0.07187867 0.7536548 -0.6533269 -0.07189184 0.7536633 -0.6358869 -0.1662518 0.753662 -0.6358933 -0.1662327 0.7536623 -0.6049047 -0.2570671 0.7536504 -0.6049265 -0.2570505 0.7536566 -0.5610336 -0.3424079 0.7536612 -0.5052001 -0.4204376 0.7536564 -0.505221 -0.4204212 0.7536574 -0.4386054 -0.4895159 0.7536556 -0.4386085 -0.4895161 0.7536581 -0.3626564 -0.5481606 0.7536554 -0.3626543 -0.5481656 0.7536659 -0.2789767 -0.5951132 0.7536501 -0.2789911 -0.5951265 0.753664 -0.1893538 -0.6293931 0.7536611 -0.189359 -0.6293952 0.7536579 -0.0957008 -0.6502624 0.8032058 0.04348349 0.5941126 0.803227 0.04348033 0.5940842 0.8032049 0.129521 0.5814519 0.8032162 0.1295209 0.5814363 0.8032136 0.2128008 0.5563845 0.8032163 0.2127995 0.5563812 0.8032102 0.291543 0.5194767 0.8032119 0.3640686 0.4714922 0.803213 0.3640702 0.4714891 0.8032131 0.4288429 0.4134523 0.8032115 0.4288423 0.4134556 0.8032143 0.4844676 0.3466094 0.8032127 0.5297737 0.272377 0.8032128 0.5637851 0.1923425 0.8032109 0.5637891 0.192338 0.8032137 0.5857825 0.1081975 0.8032116 0.5857861 0.108194 0.8032113 0.5952967 0.02176046 0.8032159 0.5921142 -0.06515431 0.8032117 0.5921204 -0.06515085 0.8032116 0.5763248 -0.1506682 0.8032152 0.5763215 -0.1506618 0.8032122 0.5482404 -0.2329865 0.8032097 0.5482468 -0.2329801 0.8032176 0.5084748 -0.3103144 0.8032094 0.5084823 -0.3103231 0.8032149 0.3975166 -0.4436515 0.8032109 0.3975176 -0.4436578 0.803217 0.3286874 -0.496797 0.8032089 0.2528439 -0.5393751 0.803215 0.1716185 -0.5704321 0.8032126 0.1716161 -0.5704362 0.8032188 0.08673369 -0.5893359 0.8032119 0.08673781 -0.5893449 0.803209 0 -0.5956974 0.803214 0 -0.5956908 0.8032132 -0.08673596 -0.5893433 0.8032171 -0.08673542 -0.5893381 0.8032046 -0.1716163 -0.5704476 0.8032187 -0.1716174 -0.5704274 0.80321 -0.2528433 -0.5393737 0.803216 -0.3286841 -0.4968006 0.8032124 -0.3975167 -0.4436559 0.8032188 -0.4578776 -0.3810353 0.8032146 -0.4578707 -0.381052 0.8032107 -0.5084799 -0.3103237 0.8032134 -0.5084761 -0.3103233 0.8032128 -0.548249 -0.2329643 0.803216 -0.5763189 -0.1506674 0.8032093 -0.5763243 -0.1506822 0.8032155 -0.592116 -0.06514304 0.8032131 -0.592119 -0.06514418 0.8032146 -0.5952929 0.02174484 0.8032117 -0.5857852 0.1081979 0.8032132 -0.5857813 0.1082074 0.8032135 -0.5637896 0.1923269 0.8032147 -0.5637817 0.1923443 0.8032186 -0.5297709 0.2723656 0.8032107 -0.5297726 0.272385 0.8032134 -0.4844689 0.3466095 0.8032144 -0.4844736 0.3466005 0.8032079 -0.4288444 0.4134604 0.803215 -0.4288374 0.4134541 0.8032115 -0.3640663 0.4714947 0.8032153 -0.2915396 0.5194708 0.8032098 -0.29154 0.5194793 0.8032213 -0.2128022 0.5563729 0.8032083 -0.1295208 0.5814473 0.8032187 -0.04348391 0.5940951 0.8032183 -0.04348021 0.5940958 0.8607151 0.03715783 0.5077291 0.8607149 0.0371598 0.5077295 0.8607158 0.1106885 0.496907 0.8607234 0.1106905 0.4968933 0.8607149 0.1818573 0.4754977 0.8607147 0.1818573 0.4754977 0.860721 0.2491623 0.4439344 0.8607119 0.2491499 0.4439589 0.860719 0.3111425 0.4029309 0.860716 0.3111371 0.4029414 0.860721 0.3664886 0.3533348 0.8607165 0.3664923 0.3533416 0.8607162 0.452751 0.2327749 0.8607167 0.4527476 0.2327803 0.860716 0.4818207 0.1643677 0.8607145 0.5006187 0.09247487 0.8607155 0.500619 0.09246432 0.860718 0.5060279 -0.05568236 0.8607178 0.5060288 -0.05567497 0.8607164 0.4925311 -0.1287656 0.8607189 0.4925283 -0.1287597 0.8607181 0.4685301 -0.1991075 0.8607165 0.4685341 -0.1991059 0.8607171 0.4345507 -0.2652015 0.8607152 0.4345523 -0.2652049 0.8607155 0.3913078 -0.3256487 0.8607193 0.3913046 -0.3256426 0.8607165 0.3397146 -0.3791587 0.8607212 0.2808963 -0.4245661 0.8607113 0.2808994 -0.4245841 0.8607196 0.216083 -0.4609447 0.8607191 0.2160818 -0.460946 0.8607136 0.1466683 -0.4875046 0.8607227 0.146667 -0.4874888 0.8607131 0.0741257 -0.503665 0.8607195 0.07412081 -0.5036549 0.8607146 0 -0.509088 0.8607227 0 -0.5090743 0.8607218 -0.07412135 -0.5036507 0.8607163 -0.1466687 -0.4874994 0.8607184 -0.1466669 -0.4874966 0.8607209 -0.216082 -0.4609426 0.8607161 -0.216081 -0.4609523 0.860715 -0.2808982 -0.4245775 0.8607193 -0.2808928 -0.4245723 0.8607162 -0.3397179 -0.3791564 0.8607168 -0.3397203 -0.3791527 0.8607169 -0.3913062 -0.325647 0.8607205 -0.3913069 -0.3256366 0.860718 -0.4345468 -0.2652049 0.8607186 -0.434551 -0.2651962 0.8607147 -0.4685335 -0.1991143 0.8607207 -0.4685324 -0.199091 0.8607169 -0.4925282 -0.1287725 0.8607144 -0.4925338 -0.128768 0.860718 -0.5060279 -0.05568236 0.8607186 -0.5060285 -0.05566698 0.8607178 -0.5087428 0.01859265 0.8607147 -0.5006194 0.09246885 0.8607196 -0.5006121 0.0924623 0.8607167 -0.4818135 0.1643856 0.860716 -0.4818261 0.1643519 0.8607149 -0.4527503 0.2327813 0.8607171 -0.4527468 0.2327799 0.8607179 -0.4140364 0.2962073 0.8607212 -0.3664868 0.3533361 0.8607162 -0.3664888 0.3533462 0.8607177 -0.3111383 0.4029367 0.8607119 -0.3111439 0.4029451 0.860719 -0.249153 0.4439434 0.8607141 -0.2491607 0.4439483 0.8607174 -0.1818573 0.4754931 0.8607183 -0.1818587 0.4754909 0.8607155 -0.1106871 0.4969077 0.86072 -0.1106901 0.4968993 0.8607181 -0.03715795 0.5077241 0.8607189 -0.03715926 0.5077226 0.9066169 0.03080022 0.4208293 0.9066103 0.03079873 0.4208437 0.9066134 0.09174609 0.4118674 0.9066172 0.09174698 0.411859 0.906609 0.1507415 0.3941286 0.9066162 0.1507425 0.3941114 0.906614 0.3037681 0.2928755 0.9066131 0.3037754 0.2928709 0.9066144 0.3431752 0.2455223 0.906616 0.3431713 0.2455216 0.9066127 0.375269 0.1929422 0.9066136 0.375266 0.1929436 0.9066124 0.3993665 0.1362365 0.906614 0.3993607 0.1362428 0.9066129 0.4149433 0.07664996 0.9066145 0.4216787 0.0154035 0.9066128 0.4216819 0.01541084 0.906614 0.4082407 -0.1067271 0.906615 0.4082366 -0.106734 0.9066156 0.3883481 -0.1650276 0.9066144 0.3883517 -0.1650256 0.906612 0.3601868 -0.2198184 0.9066142 0.3601799 -0.2198209 0.9066118 0.3243405 -0.2699227 0.906615 0.3243405 -0.2699123 0.9066153 0.2815855 -0.3142583 0.906612 0.2815741 -0.3142779 0.9066141 0.2328335 -0.3519084 0.9066128 0.2328186 -0.3519214 0.9066137 0.1791045 -0.3820644 0.9066142 0.1791105 -0.3820605 0.9066109 0.1215634 -0.4040781 0.9066142 0.121569 -0.4040688 0.9066146 0.06143534 -0.4174634 0.9066121 0.06144231 -0.4174679 0.9066157 0 -0.4219574 0.9066095 -0.06144189 -0.4174737 0.9066149 -0.0614326 -0.417463 0.9066128 -0.1215728 -0.404071 0.9066128 -0.1215593 -0.4040752 0.9066133 -0.1791079 -0.3820638 0.9066165 -0.1791082 -0.3820562 0.9066118 -0.2328247 -0.3519203 0.906611 -0.2328271 -0.3519207 0.9066117 -0.2815826 -0.3142714 0.9066166 -0.2815859 -0.3142541 0.9066132 -0.3243439 -0.2699141 0.906612 -0.3243383 -0.2699247 0.9066146 -0.3601846 -0.219812 0.9066126 -0.3883519 -0.1650347 0.906614 -0.4082407 -0.1067271 0.906615 -0.4082391 -0.1067245 0.9066115 -0.419435 -0.04615348 0.9066119 -0.4216843 0.01541078 0.9066144 -0.4216784 0.01541966 0.9066126 -0.4149475 0.07663136 0.9066146 -0.414938 0.07665878 0.906612 -0.3993697 0.1362298 0.9066152 -0.3993583 0.1362419 0.9066123 -0.3752661 0.1929493 0.9066116 -0.3752706 0.1929436 0.9066141 -0.3431841 0.2455107 0.9066137 -0.3431712 0.2455305 0.9066162 -0.3037676 0.2928696 0.9066115 -0.3037688 0.2928826 0.9066158 -0.2578949 0.3339734 0.9066147 -0.2578909 0.3339791 0.906613 -0.1507416 0.3941193 0.9066112 -0.1507364 0.3941253 0.9066162 -0.09174782 0.4118609 0.9066105 -0.09174627 0.4118739 0.9066182 -0.03079289 0.4208266 0.90661 -0.03080767 0.4208436 0.9420274 0.02449858 0.3346406 0.9420334 0.02449065 0.3346245 0.942026 0.07295691 0.3275125 0.942034 0.07295012 0.3274912 0.9420275 0.1198669 0.3133947 0.942025 0.1198638 0.3134034 0.9420322 0.1642151 0.2925899 0.9420284 0.164214 0.2926031 0.94203 0.2050668 0.2655695 0.9420269 0.2050682 0.2655792 0.9420307 0.241548 0.2328798 0.9420275 0.241549 0.232891 0.9420292 0.2728846 0.1952307 0.9420323 0.2728816 0.1952203 0.942032 0.2983955 0.1534144 0.9420303 0.3175563 0.1083372 0.9420295 0.3299498 0.06094062 0.9420291 0.3299471 0.06096005 0.9420288 0.3353087 0.01224476 0.9420299 0.3335162 -0.03669792 0.9420285 0.3335215 -0.03668677 0.9420276 0.3246238 -0.08487409 0.942029 0.3246219 -0.08486473 0.9420289 0.3088027 -0.1312347 0.9420322 0.308803 -0.1312105 0.9420265 0.2864096 -0.174802 0.9420312 0.2863982 -0.1747952 0.9420295 0.2579087 -0.2146239 0.9420267 0.2239172 -0.2498938 0.9420304 0.223903 -0.2498925 0.9420305 0.1851378 -0.2798259 0.9420255 0.1424193 -0.3038169 0.9420322 0.1424265 -0.3037932 0.9420281 0.09666186 -0.3213091 0.9420297 0.09666293 -0.3213045 0.9420275 0.04885149 -0.3319604 0.9420274 0.04885274 -0.3319606 0.9420278 0 -0.3355349 0.9420309 0 -0.3355261 0.9420293 -0.04885077 -0.3319555 0.9420337 -0.04885375 -0.3319426 0.9420278 -0.09666222 -0.3213102 0.9420328 -0.09666043 -0.3212961 0.9420256 -0.1424192 -0.3038168 0.9420338 -0.1424145 -0.3037937 0.9420264 -0.1851388 -0.2798388 0.9420316 -0.1851319 -0.2798263 0.9420289 -0.2239124 -0.2498895 0.9420254 -0.2239095 -0.2499051 0.9420282 -0.2579044 -0.2146353 0.9420325 -0.2864005 -0.1747843 0.9420286 -0.3088037 -0.1312347 0.9420316 -0.3087998 -0.1312214 0.9420283 -0.324624 -0.08486503 0.942029 -0.3246219 -0.08486473 0.9420314 -0.333512 -0.03669869 0.9420297 -0.3353058 0.0122447 0.9420287 -0.3299507 0.06094843 0.9420299 -0.3175593 0.1083318 0.9420291 -0.3175559 0.1083494 0.9420304 -0.2984001 0.1534154 0.9420289 -0.2984045 0.1534159 0.9420266 -0.2728914 0.195234 0.9420286 -0.2728774 0.1952441 0.9420321 -0.2415448 0.2328768 0.9420282 -0.2415477 0.2328897 0.9420297 -0.2050774 0.2655622 0.9420309 -0.2050636 0.2655689 0.9420241 -0.164218 0.2926142 0.9420297 -0.1642174 0.2925969 0.9420292 -0.119865 0.31339 0.9420307 -0.1198622 0.3133869 0.9420256 -0.07295721 0.3275139 0.9420346 -0.07294964 0.3274893 0.9420279 -0.02449846 0.3346391 0.9689734 0.01803922 0.2465057 0.9689714 0.01803058 0.2465147 0.9689738 0.08829152 0.2308559 0.9689718 0.08831197 0.2308567 0.9689709 0.1209651 0.2155523 0.9689728 0.120957 0.2155483 0.9689701 0.1510676 0.1956411 0.9689732 0.1779389 0.1715484 0.9689752 0.1779334 0.1715423 0.9689706 0.2010234 0.1438249 0.9689729 0.2010163 0.1438199 0.9689731 0.2198128 0.1130202 0.9689726 0.2339309 0.07980221 0.9689741 0.2339296 0.07978814 0.96897 0.2430652 0.04490679 0.9689726 0.2430558 0.04490047 0.9689726 0.2470034 0.009019494 0.9689721 0.2470054 0.009034037 0.9689722 0.2274854 -0.0966621 0.9689724 0.2274768 -0.09668004 0.9689713 0.210987 -0.1287598 0.968974 0.2109729 -0.1287634 0.9689725 0.1899824 -0.1581104 0.9689695 0.1899982 -0.1581108 0.9689753 0.164925 -0.1840838 0.9689742 0.1649531 -0.184064 0.9689708 0.1363821 -0.2061443 0.9689741 0.1363805 -0.2061301 0.9689698 0.1049068 -0.2238131 0.9689719 0.1049214 -0.223797 0.9689722 0.07120543 -0.2366917 0.9689741 0.07121568 -0.2366802 0.9689716 0.03597879 -0.2445395 0.968975 0.03598904 -0.2445251 0.9689735 0 -0.2471646 0.9689683 0 -0.2471855 0.9689745 -0.0359798 -0.2445279 0.9689724 -0.03598767 -0.2445352 0.9689715 -0.07121568 -0.2366907 0.9689701 -0.07119727 -0.2367019 0.9689754 -0.1049069 -0.2237886 0.9689677 -0.1049246 -0.2238134 0.9689738 -0.1363771 -0.206134 0.9689751 -0.1363739 -0.2061297 0.9689707 -0.1649471 -0.1840877 0.9689721 -0.1649335 -0.1840924 0.9689714 -0.1899909 -0.1581072 0.9689712 -0.189989 -0.1581111 0.9689733 -0.2109839 -0.1287494 0.9689696 -0.2109815 -0.128782 0.9689707 -0.2274868 -0.09667313 0.9689751 -0.2274723 -0.09666299 0.9689735 -0.2391324 -0.06250023 0.9689704 -0.239135 -0.062536 0.968971 -0.2456916 -0.0270344 0.9689739 -0.2456816 -0.02702456 0.9689711 -0.2470093 0.009025871 0.9689729 -0.2470026 0.009024322 0.9689697 -0.2430683 0.04489439 0.9689734 -0.243056 0.04488134 0.9689723 -0.2339289 0.07981353 0.9689722 -0.2339309 0.07980781 0.9689718 -0.219821 0.113016 0.9689702 -0.219825 0.1130216 0.9689711 -0.2010297 0.1438127 0.9689751 -0.201012 0.1438106 0.9689704 -0.1779434 0.1715592 0.9689711 -0.1510692 0.1956353 0.9689733 -0.1510696 0.1956245 0.9689726 -0.1209618 0.2155472 0.9689691 -0.08830267 0.2308712 0.9689736 -0.08829247 0.230856 0.9689724 -0.05374681 0.2412544 0.9689694 -0.0537523 0.2412656 0.9689733 -0.01803928 0.2465065 0.9689733 -0.01802998 0.2465067 0.9883982 0.01109546 0.1514791 0.9884033 0.01106905 0.1514481 0.9884015 0.03301602 0.1482314 0.9883987 0.05426448 0.1418572 0.988399 0.05427104 0.1418528 0.9883984 0.07432776 0.1324542 0.988399 0.07436132 0.1324307 0.9884005 0.092812 0.1202103 0.9883987 0.09282082 0.1202178 0.9883996 0.1093404 0.105408 0.9884001 0.109324 0.1054209 0.9883989 0.1235259 0.08836942 0.9883995 0.1235187 0.08837187 0.9883992 0.13507 0.06945061 0.9883996 0.1350756 0.06943237 0.9883998 0.1437386 0.04904198 0.9883989 0.1493546 0.02758419 0.9883991 0.1493524 0.02758926 0.9883997 0.1517737 0.005548238 0.9883995 0.1509668 -0.01660579 0.9884001 0.1509589 -0.01663327 0.9883999 0.1469358 -0.03841304 0.9883979 0.1469463 -0.03842633 0.9883986 0.1397863 -0.05939823 0.9883996 0.1397868 -0.05938047 0.9883993 0.1296369 -0.07912868 0.9883972 0.1167571 -0.09715414 0.9884042 0.1167171 -0.09713035 0.9883985 0.1013458 -0.1131266 0.9884013 0.1013558 -0.1130929 0.9883983 0.08381098 -0.1266677 0.9884016 0.08379316 -0.1266534 0.9883999 0.0644657 -0.137513 0.9883952 0.06446808 -0.1375464 0.9884003 0.0437439 -0.1454358 0.9884018 0.04373967 -0.1454262 0.9883996 0.02212697 -0.1502552 0.9883973 0.0221399 -0.1502687 0.9884005 0 -0.1518703 0.9883987 -0.02212625 -0.1502612 0.9883973 -0.0221399 -0.1502687 0.988401 -0.04374372 -0.14543 0.988399 -0.04373908 -0.1454458 0.9883996 -0.06446844 -0.1375136 0.9883998 -0.06446379 -0.1375155 0.988398 -0.08380919 -0.1266703 0.9884021 -0.08379644 -0.1266475 0.9883996 -0.1013523 -0.1131107 0.9884003 -0.116735 -0.09714806 0.9883981 -0.1167458 -0.09715789 0.9883995 -0.1296395 -0.07912164 0.9884014 -0.1296331 -0.0791077 0.9883986 -0.1397863 -0.05939823 0.9883993 -0.1397745 -0.05941241 0.9883997 -0.1469357 -0.03841835 0.9883995 -0.1509668 -0.01660048 0.9883986 -0.1509711 -0.01661229 0.9883985 -0.1517822 0.005537509 0.9883984 -0.1493585 0.02757954 0.9883999 -0.14374 0.04903632 0.9884001 -0.1437332 0.04905289 0.9883987 -0.1350782 0.06944143 0.9884001 -0.1350663 0.06944406 0.9884001 -0.1235154 0.08836954 0.9884005 -0.1235188 0.08836114 0.9884014 -0.109317 0.1054165 0.9884 -0.1093457 0.1053992 0.9883998 -0.09280329 0.1202234 0.9883992 -0.09281879 0.1202152 0.9883981 -0.07435142 0.1324425 0.9884034 -0.074319 0.1324219 0.9883986 -0.05426478 0.1418579 0.9883987 -0.03303098 0.1482464 0.9883987 -0.03301537 0.1482503 0.9884008 -0.01109504 0.1514628 0.9883982 -0.01106834 0.1514816 1 0 -2.60411e-6 1 6.66207e-6 3.98031e-7 1 1.42717e-5 -4.55443e-6 1 -6.59581e-6 -1.11595e-5 1 3.46753e-6 0 1 -3.73818e-6 0 1 3.92553e-6 3.30378e-6 1 -3.52669e-6 0 1 0 3.23621e-6 1 3.56509e-6 4.52817e-7 1 3.41549e-6 -3.04531e-6 1 1.9022e-6 0 1 1.7892e-6 0 1 3.7787e-6 8.34005e-6 1 3.19074e-6 0 1 -1.80798e-6 0 1 -4.58444e-6 0 1 4.8459e-6 0 1 -4.57576e-6 0 1 -2.43653e-6 0 1 -1.22833e-6 0 1 -5.82101e-7 0 1 1.24991e-6 0 1 -2.22315e-6 0 1 2.51788e-6 0 1 2.53792e-6 0 1 1.09729e-6 0 1 -1.13216e-6 0 1 2.54981e-6 0 1 8.38229e-6 -1.09491e-6 1 0 -2.00849e-6 1 -9.82248e-6 -1.02959e-6 1 3.17724e-6 -9.4043e-7 1 0 -3.23435e-6 1 3.56042e-6 0 1 -7.46191e-6 0 1 1.66343e-6 0 1 3.32345e-6 0 1 -1.66071e-6 0 1 1.65765e-6 0 1 -1.1273e-6 0 1 1.11589e-6 0 1 2.20455e-6 0 1 4.37884e-6 0 1 1.02712e-5 0 0.9819188 0.01291304 -0.1888619 0.9867609 0.07461965 -0.1439958 0.9897581 0.05253779 -0.1327351 0.982491 0.06237947 -0.1755574 0.990575 0.03909581 -0.1312743 0.984891 0.03524345 -0.1695511 0.9857494 0.03380233 -0.1647896 0.990055 0.0154004 -0.1398354 0.9814627 0.1105487 -0.1565571 0.989962 0.0753023 -0.1196027 0.9839332 0.08094167 -0.1591358 0.9829885 0.1424919 -0.115887 0.990271 0.1010748 -0.09564071 0.9831859 0.1246494 -0.1334469 0.9884471 0.1012213 -0.1128126 0.9888641 0.08954429 -0.1188681 0.9835228 0.1658101 -0.07204222 0.9905813 0.1214161 -0.06330031 0.988865 0.1251754 -0.08048075 0.9876865 0.1228929 -0.0968129 0.9816823 0.1834604 -0.05140405 0.9880118 0.1425876 -0.05917429 0.9856168 0.1674203 0.0230211 0.9901354 0.1399934 0.005806446 0.9864569 0.1623965 -0.02302891 0.9895913 0.1401349 -0.03273195 0.9817165 0.1832878 0.05136597 0.990024 0.1372008 0.03206616 0.985418 0.1685792 0.02307569 0.9859919 0.1293724 0.1052746 0.9899243 0.11787 0.07846462 0.98104 0.1655779 0.1007211 0.9902801 0.122591 0.06570363 0.9837806 0.1645256 0.07146364 0.9861248 0.1527127 0.06509125 0.9903261 0.1316906 0.04372352 0.9905989 0.08817559 0.1045898 0.98214 0.1284245 0.1375077 0.9854997 0.1317868 0.1068763 0.9840453 0.05958104 0.1676456 0.9907529 0.05534523 0.1238778 0.9823556 0.08604216 0.1660555 0.9899566 0.06946605 0.1231284 0.9872111 0.09092551 0.1309455 0.9889209 0.004668593 -0.1483709 0.9888805 -0.0101478 -0.1483662 0.9888785 -0.03027707 -0.1456111 0.9888813 -0.03024947 -0.1455981 0.9888828 -0.04977381 -0.1401191 0.9888794 -0.06844711 -0.1320325 0.9888811 -0.06840378 -0.132042 0.9888797 -0.08577513 -0.121489 0.9888816 -0.08575761 -0.1214861 0.9888762 -0.1015489 -0.1086813 0.9888822 -0.1014921 -0.1086801 0.9888777 -0.1153854 -0.09384793 0.9888771 -0.1153821 -0.09385657 0.988874 -0.1271092 -0.07727515 0.9888868 -0.1270192 -0.07725965 0.9888853 -0.1363681 -0.05924302 0.988881 -0.1363959 -0.05924975 0.9888814 -0.1431924 -0.04012149 0.9888833 -0.1431783 -0.04012435 0.9888788 -0.1473399 -0.02024662 0.988887 -0.1472835 -0.02025234 0.988879 -0.1473367 0.02025157 0.9888809 -0.1473252 0.02024781 0.9888737 -0.1432448 0.04012358 0.9888865 -0.1431562 0.04012137 0.9888744 -0.1364442 0.05924916 0.9888884 -0.1363453 0.05924427 0.9888775 -0.1270911 0.07726055 0.9888831 -0.1270405 0.07727295 0.9888765 -0.115392 0.0938515 0.9888818 -0.1153488 0.09384864 0.9888769 -0.101546 0.1086783 0.9888812 -0.1015006 0.1086816 0.9888773 -0.0858038 0.1214887 0.988883 -0.08574056 0.1214872 0.9888796 -0.06844711 0.1320307 0.9888814 -0.0683965 0.1320436 0.9888815 -0.04980731 0.1401165 0.9888807 -0.04979699 0.1401259 0.9888797 -0.03025513 0.145608 0.7824875 0.2864611 0.5528594 0.6470746 0.3046779 0.6989033 0.6865883 0.5104421 0.5177309 0.7824753 0.4249992 0.4550915 0.7116031 0.3936843 0.5819224 0.7007684 0.3427582 0.6256522 0.7218043 0.634791 0.2757518 0.6868745 0.6323714 0.3582038 0.7899482 0.5239123 0.3185871 0.8007226 0.4576103 0.3865698 0.783745 0.5980514 0.1675664 0.6502924 0.7170482 0.2509217 0.7877181 0.5615865 0.2532212 0.7790089 0.6211739 0.08537048 0.7121492 0.6936308 0.1082589 0.6956016 0.6964831 0.1762092 0.787347 0.5936501 -0.1663264 0.6498464 0.74286 -0.1608066 0.7965208 0.6002556 -0.07244217 0.7319464 0.5285564 -0.42998 0.6866665 0.6086633 -0.3975151 0.7905614 0.5232388 -0.3181728 0.6443483 0.676828 -0.3559765 0.7761123 0.5783839 -0.2512411 0.6785125 0.7005658 -0.2209715 0.7387053 0.3886895 -0.5506679 0.6762372 0.4843844 -0.5550451 0.7856833 0.4222425 -0.4521205 0.6440582 0.5530855 -0.5284747 0.7851362 0.4849019 -0.3852681 0.7366353 0.2264734 -0.6372427 0.6676502 0.3167419 -0.6737343 0.7900142 0.2820596 -0.5443531 0.6565441 0.3823122 -0.650221 0.7830903 0.3637557 -0.5044317 0.6502668 0.1978389 -0.7334936 0.7824611 0.2146422 -0.5845369 0.6956183 -0.1461659 0.7033851 0.6956237 -0.2405607 0.676933 0.6956376 -0.2405757 0.6769134 0.6956548 -0.3305122 0.6378293 0.6955979 -0.3305097 0.6378926 0.6956453 -0.4142908 0.5868908 0.6956258 -0.4142861 0.5869172 0.6956503 -0.4903506 0.525002 0.6956334 -0.490327 0.5250464 0.6955961 -0.5572891 0.4534038 0.6956517 -0.5572682 0.4533442 0.6956617 -0.6137976 0.3732389 0.695631 -0.6138206 0.3732584 0.6956474 -0.6589008 0.2862245 0.6956602 -0.6588991 0.2861974 0.6956349 -0.6917573 0.1938147 0.6956583 -0.691735 0.1938099 0.6956458 -0.7116924 0.09783089 0.6956476 -0.7116926 0.0978173 0.6956561 -0.718375 0 0.6956686 -0.7116725 -0.09781408 0.6956257 -0.7117115 -0.09783387 0.6956566 -0.6917365 -0.1938106 0.6956495 -0.6917423 -0.1938158 0.6956604 -0.6588908 -0.2862161 0.6956326 -0.6138217 -0.3732536 0.6956507 -0.6138058 -0.3732461 0.6956362 -0.5572827 -0.4533503 0.6956503 -0.4903506 -0.525002 0.6956404 -0.4903271 -0.525037 0.6956446 -0.414279 -0.5868999 0.6956194 -0.3305221 -0.6378626 0.6956414 -0.3304989 -0.6378507 0.6956481 -0.2405778 -0.6769018 0.6956158 -0.240567 -0.6769388 0.6956251 -0.1461557 -0.7033806 0.6956029 -0.1461656 -0.7034005 0.6956011 -0.04902756 -0.7167534 0.6956344 -0.0490241 -0.7167214 0.768424 0.04367512 -0.638449 0.7278884 0.05384111 -0.6835786 0.6809769 0.1246653 -0.7216156 0.8887531 -0.09326153 0.4487987 0.8887408 -0.09327721 0.4488198 0.8887491 -0.1535021 0.4319283 0.8887305 -0.1535252 0.4319586 0.8887519 -0.2108988 0.4069911 0.888754 -0.2108847 0.4069941 0.8887388 -0.264356 0.3745123 0.8887456 -0.3128684 0.3350295 0.8887614 -0.3555524 0.2892849 0.8887486 -0.3555753 0.2892959 0.8887345 -0.3916961 0.2381707 0.8887427 -0.391663 0.2381949 0.8887268 -0.4204888 0.1826305 0.8887358 -0.4204674 0.1826362 0.8887315 -0.4414294 0.1236786 0.8887346 -0.4414227 0.1236805 0.8887349 -0.4541521 0.06242012 0.8887196 -0.4584512 0 0.8887471 -0.4583978 0 0.8887367 -0.4541484 -0.06241959 0.8887442 -0.4541334 -0.06242495 0.8887265 -0.4414389 -0.1236813 0.8887397 -0.4414134 -0.123678 0.8887329 -0.4204804 -0.1826208 0.8887299 -0.4204759 -0.1826458 0.8887298 -0.3916883 -0.2382012 0.8887473 -0.3916706 -0.2381647 0.8887614 -0.3555524 -0.2892849 0.8887486 -0.3555753 -0.2892959 0.8887507 -0.3128617 -0.3350223 0.8887395 -0.3129061 -0.3350102 0.8887282 -0.2643603 -0.3745344 0.8887437 -0.2643505 -0.3745044 0.8887507 -0.2108859 -0.4070006 0.8887352 -0.2109152 -0.407019 0.8887428 -0.1535191 -0.4319356 0.8887484 -0.09326004 -0.4488086 0.8887361 -0.09327673 -0.4488292 0.8887468 -0.03128051 -0.4573299 0.8887497 0.03128045 -0.4573245 0.8887493 0.03128063 -0.4573253 0.8887454 0.09326577 -0.448813 0.8887504 0.1535122 -0.4319222 0.8887469 0.2109033 -0.4069998 0.8887418 0.2108931 -0.4070161 0.8887433 0.2643434 -0.3745105 0.8887426 0.2643572 -0.3745021 0.888754 0.3128544 -0.3350205 0.8887395 0.3129061 -0.3350102 0.8887528 0.3555682 -0.2892917 0.8887521 0.3555672 -0.2892953 0.8887345 0.3916961 -0.2381707 0.8887539 0.3916471 -0.2381792 0.8887333 0.420475 -0.1826304 0.8887466 0.4204502 -0.1826228 0.8887391 0.4414153 -0.1236746 0.8887495 0.4413948 -0.1236727 0.8887528 0.4541168 -0.06242126 0.8887556 0.454112 -0.06241607 0.888744 0.4541337 0.06242358 0.8887643 0.4540953 0.06241381 0.8887661 0.441363 0.1236674 0.8887278 0.4414373 0.1236773 0.8887429 0.4204624 0.182613 0.8887397 0.4204581 0.1826381 0.8887373 0.3916811 0.2381848 0.8887461 0.3916701 0.2381704 0.8887629 0.3555531 0.2892794 0.888747 0.3555747 0.2893013 0.8887438 0.3128677 0.3350348 0.8887446 0.3128995 0.3350032 0.8887526 0.2643461 0.3744863 0.8887463 0.2108849 0.4070105 0.8887573 0.2108979 0.4069798 0.8887369 0.1535082 0.4319516 0.8887504 0.1535122 0.4319222 1 -2.78885e-6 0 1 -2.88022e-6 0 1 1.44665e-6 0 1 4.32203e-6 0 1 -4.48681e-6 0 1 -2.28402e-6 0 1 -2.90525e-6 0 1 1.47792e-6 0 1 2.87909e-6 0 1 1.59896e-6 0 1 -3.83628e-6 0 1 2.42857e-6 0 1 -6.39723e-6 0 1 -5.73287e-6 0 1 6.74641e-6 0 1 1.71573e-6 0 1 3.12664e-6 0 1 -3.19678e-6 0 1 -1.6798e-6 0 1 -3.1907e-6 0 1 -3.23702e-6 0 0.3298183 0.1267219 0.9355007 0.3298186 0.2917215 0.8978409 0.3298191 0.2917299 0.8978381 0.3298147 0.4473556 0.8313214 0.3298179 0.4473531 0.8313215 0.3298032 0.5886097 0.7380843 0.3298189 0.5886021 0.7380834 0.3297954 0.7109437 0.6211233 0.3298177 0.7109233 0.6211348 0.3298135 0.8104186 0.4841951 0.3298428 0.8104075 0.4841938 0.3297953 0.4473568 -0.8313285 0.3298441 0.2917233 -0.8978309 0.3298311 -0.9402394 -0.0846253 0.3298332 -0.940239 0.08462101 0.3298376 -0.9402369 0.08462738 0.3298298 -0.9100223 0.251141 0.3298285 -0.9100192 0.251154 0.3298217 -0.8505536 0.4096051 0.3298299 -0.8505571 0.409591 0.3298291 -0.7637435 0.5548952 0.3298304 -0.7637438 0.5548939 0.3298281 -0.6523883 0.682351 0.3298194 -0.6523934 0.6823505 0.329836 -0.5200783 0.7878622 0.3298214 -0.520066 0.7878765 0.3298162 -0.371026 0.8680789 0.329831 -0.3710361 0.868069 0.3298422 -0.2100718 0.9203663 0.3298189 -0.04235392 0.9430937 0.1901708 -0.06604045 0.9795274 0 0.7672516 0.6413462 0.01572972 0.752982 0.6578531 0 0.6441249 0.7649204 0.01785093 0.6233971 0.7817018 0 0.5729517 0.8195891 0 0.5014017 0.8652148 0.01947277 0.4737749 0.8804306 0 0.4218354 0.9066725 0.02059853 0.3089529 0.9508543 0 0.2578381 0.9661881 0.02134561 -0.04485464 0.9987655 0.02009564 -0.3929453 0.9193423 0 -0.4240185 0.9056535 0 -0.4992986 0.8664299 0.01872229 -0.5508033 0.8344251 0.0168513 -0.690966 0.7226909 0 -0.708388 0.7058233 0.01447993 -0.8089345 0.5877203 0 -0.8202683 0.571979 0.01160615 -0.9009102 0.4338504 0 -0.9071877 0.4207261 1 7.58915e-6 0 0.4875143 0.7127365 -0.5043179 0.8517963 0.3115326 -0.4211779 0.7643358 -0.5558938 0.3267611 0.7622043 -0.4813681 0.4328157 0.771458 -0.450737 0.4490978 0.7658869 -0.4399536 0.4688903 0.7649015 -0.383075 0.5178603 0.7629873 -0.6255555 0.162883 0.7650275 -0.6224237 0.1652934 0.766035 -0.6039696 0.2200254 0.7612884 -0.5908544 0.2670789 0.7651494 -0.5840959 0.2708848 0.7659727 -0.5544209 0.3254282 0.7651797 -0.5574367 0.322125 0.7678321 -0.523018 0.3699814 0.7652587 -0.5280295 0.3681904 0.7659895 -0.4922293 0.4134859 0.7337953 -0.436343 0.52072 0.7654909 -0.3699538 0.5264579 0.7658986 -0.321025 0.5570839 0.7567625 -0.2942949 0.5836961 0.765549 -0.2728056 0.5826765 0.7658614 -0.2193526 0.6044344 0.7562186 -0.1916034 0.6256371 0.7656283 -0.1673669 0.6211293 0.7658109 -0.1109869 0.6334158 0.7559115 -0.08315503 0.6493714 0.7657105 -0.05687522 0.6406658 0.7659731 -0.01364487 0.6427278 0.7659595 0.01442843 0.6427269 0.7608224 0.04129886 0.6476449 0.7657706 0.05531913 0.6407302 0.7649 0.1357082 0.6296914 0.7478157 0.1161712 0.6536635 0.7658324 0.1657991 0.6212983 0.7648983 0.2401739 0.5977016 0.7502077 0.2270674 0.6209903 0.7658925 0.2712252 0.582963 0.7649034 0.3377306 0.5485079 0.7525649 0.330182 0.5697595 0.7659212 0.368371 0.526942 0.7649009 0.4255728 0.4835435 0.7548894 0.4224585 0.501668 0.7659676 0.4543013 0.4548671 0.7648978 0.5011692 0.4046736 0.7571747 0.5011841 0.4189282 0.7659972 0.5264082 0.3689755 0.7648986 0.5623515 0.3141513 0.7660201 0.5824933 0.2718729 0.7649022 0.6073516 0.2145896 0.7616415 0.609398 0.2203103 0.7660306 0.6208409 0.1665952 0.7649019 0.6348825 0.1088545 0.7638236 0.635875 0.1106187 0.7660121 0.6403738 0.05609899 0.764901 0.6441479 0 0.7649009 0.6441481 0 0.7660443 0.6403353 -0.0560981 0.7639194 0.6360294 -0.1090587 0.7649666 0.6345416 -0.1103782 0.7660247 0.6208475 -0.166597 0.7621119 0.6104626 -0.2156874 0.7650898 0.6055658 -0.2189243 0.7660174 0.5824962 -0.2718743 0.7605202 0.5668574 -0.3166733 0.7652049 0.5581872 -0.3207623 0.7659982 0.5264071 -0.3689747 0.7591583 0.5064281 -0.4089123 0.7653104 0.4938509 -0.4128092 0.7659686 0.4543024 -0.4548641 0.7580256 0.4309132 -0.4896031 0.7654127 0.4145221 -0.4922551 0.7659221 0.3683646 -0.5269449 0.7571275 0.3425144 -0.556275 0.7655053 0.3226163 -0.5567051 0.7658959 0.2712234 -0.5829591 0.756456 0.2438619 -0.606882 0.765596 0.2209239 -0.604198 0.7658342 0.1657997 -0.6212958 0.7560344 0.1378975 -0.6398409 0.7656727 0.1125483 -0.6333073 0.7654012 0.04095661 -0.642249 0.7659533 -0.4129145 -0.492765 0.7649006 -0.4650479 -0.4457103 0.7560307 -0.4636679 -0.4619843 0.7648971 -0.533686 -0.3607102 0.7583063 -0.5347359 -0.3728661 0.7660048 -0.5565711 -0.3216606 0.7605361 -0.5890338 -0.2731737 0.7660295 -0.6039752 -0.2200292 0.7649006 -0.6233634 -0.162312 0.762735 -0.6250463 -0.16599 0.764899 -0.6418297 -0.05462765 0.764901 -0.6418274 -0.05462712 0.7649009 -0.6418275 0.05462777 0.7648988 -0.64183 0.054627 0.7660493 -0.6330074 0.1116701 1 -7.74305e-6 0 1 -9.05375e-6 0 1 -9.07141e-6 0 1 1.48977e-5 0 1 -9.08311e-6 0 1 -9.08884e-6 0 1 9.08884e-6 0 1 -2.16584e-5 0 1 2.11028e-5 0 1 1.00585e-5 0 1 6.99379e-6 0 1 -7.09925e-6 0 1 1.63143e-5 0 1 1.69015e-5 0 0 0.4286942 -0.9034497 0 -0.9199793 0.3919672 1 -3.83294e-7 0 1 1.87065e-7 0 0 0.3420196 -0.9396929 0 0.8660259 0.4999994 0 0.8660256 0.4999998 0 -0.9848083 0.1736454 1 -5.70382e-7 0 1 -3.5672e-7 0 1 -6.20702e-7 0 1 -1.24093e-7 0 1 -3.15044e-7 0 1 0 0 1 2.64693e-7 0 1 4.3626e-6 0 1 -2.18131e-6 0 1 -3.11915e-6 0 1 2.91539e-6 0 1 -4.72019e-6 0 1 1.24768e-5 0 1 2.91537e-6 0 1 -1.32101e-5 0 1 -1.25305e-5 0 1 5.90026e-6 0 1 8.65478e-7 0 1 -4.24348e-6 0 1 -1.50601e-6 0 1 -1.26838e-6 0 1 0 0 0 0.9485365 0.3166679 0 0.9485357 0.3166702 0 0.8854559 0.4647234 0 0.4286899 0.9034518 0 0.88545 0.4647346 0 0.4286909 0.9034512 0 0.428707 0.9034436 0 0.4286927 0.9034504 0 0.996163 0.08751797 0 0.7436423 -0.6685778 0 -0.9709422 -0.2393142 0 -0.9709417 -0.2393163 0 0.9870504 -0.1604108 0 0.9870502 -0.1604115 0 -0.7485118 0.6631215 0 -0.9709422 0.2393142 0 0.987052 0.1604005 1 0 0 1 -2.89489e-6 0 1 0 0 1 1.94956e-6 0 1 1.39923e-5 0 1 2.19341e-5 0 1 -1.00388e-5 0 1 -1.02254e-6 0 1 4.74539e-6 0 1 -1.19495e-5 0 1 1.20824e-5 0 1 0 0 -2.30873e-7 0 1 6.8017e-6 0 1 -2.31963e-6 0 1 0 0.9848079 -0.1736478 0 0.9848077 0.1736493 0 -0.7485226 0.6631093 0 0.9654633 0.2605394 0 0.8307305 0.5566748 0 0.8307464 0.5566513 0 0.6374319 0.7705067 -0.01570415 0.6079902 0.7937893 0 0.3210173 0.9470734 0 0.5036006 0.8639367 -0.01745241 0 -0.9998477 + + + + + + + + + + + + + + +

1 0 0 0 2 0 1 1 2 1 3 1 3 2 2 2 4 2 3 3 4 3 5 3 7 4 6 4 8 4 7 5 8 5 9 5 9 6 8 6 10 6 9 7 10 7 11 7 11 7 10 7 12 7 11 8 12 8 13 8 13 9 12 9 14 9 13 10 14 10 15 10 15 11 14 11 16 11 18 12 17 12 19 12 21 13 20 13 22 13 24 14 23 14 25 14 24 15 25 15 26 15 27 16 28 16 29 16 30 17 31 17 32 17 32 18 31 18 33 18 32 19 33 19 34 19 34 20 33 20 35 20 34 21 35 21 36 21 36 22 35 22 37 22 36 23 37 23 38 23 38 24 37 24 39 24 38 25 39 25 40 25 40 26 39 26 41 26 40 7 41 7 42 7 42 7 41 7 43 7 42 27 43 27 44 27 44 28 43 28 45 28 44 29 45 29 46 29 46 30 45 30 47 30 46 31 47 31 48 31 48 32 47 32 49 32 48 33 49 33 50 33 50 33 49 33 51 33 50 34 51 34 52 34 52 35 51 35 53 35 52 36 53 36 54 36 54 37 53 37 55 37 54 38 55 38 56 38 56 38 55 38 57 38 56 39 57 39 58 39 58 40 57 40 59 40 58 41 59 41 60 41 60 42 59 42 61 42 62 43 63 43 64 43 65 44 66 44 67 44 67 44 66 44 68 44 67 45 68 45 69 45 69 46 68 46 70 46 69 47 70 47 71 47 71 48 70 48 72 48 71 49 72 49 73 49 73 49 72 49 74 49 70 50 80 50 72 50 72 51 80 51 81 51 72 52 81 52 74 52 74 53 81 53 82 53 75 7 83 7 84 7 75 54 84 54 76 54 77 55 85 55 86 55 78 56 87 56 88 56 79 57 88 57 89 57 39 58 90 58 91 58 39 59 91 59 41 59 41 60 91 60 92 60 43 61 93 61 45 61 45 62 93 62 94 62 45 63 94 63 47 63 47 64 94 64 95 64 47 65 95 65 49 65 49 66 95 66 96 66 49 67 96 67 51 67 51 68 96 68 97 68 51 69 97 69 53 69 53 70 97 70 98 70 53 71 98 71 55 71 55 72 98 72 99 72 55 73 99 73 57 73 57 74 99 74 100 74 57 75 100 75 59 75 59 76 100 76 101 76 91 77 102 77 92 77 93 78 103 78 94 78 94 79 103 79 104 79 94 80 104 80 95 80 96 81 105 81 97 81 97 82 105 82 106 82 97 83 106 83 98 83 99 84 107 84 100 84 100 85 107 85 108 85 100 86 108 86 101 86 81 87 109 87 82 87 83 7 110 7 84 7 85 88 111 88 86 88 86 89 111 89 112 89 86 90 112 90 87 90 87 91 113 91 88 91 88 92 113 92 114 92 88 93 114 93 89 93 117 94 118 94 119 94 121 94 120 94 122 94 122 94 120 94 115 94 116 94 123 94 124 94 128 95 129 95 127 95 127 96 129 96 130 96 127 95 131 95 132 95 127 95 132 95 128 95 125 95 126 95 127 95 125 95 127 95 133 95 138 97 137 97 145 97 145 98 146 98 138 98 138 99 146 99 147 99 138 100 147 100 139 100 147 101 148 101 139 101 139 102 148 102 149 102 139 103 149 103 143 103 143 104 150 104 151 104 143 105 151 105 134 105 151 106 152 106 134 106 134 107 152 107 153 107 134 108 153 108 135 108 135 109 154 109 155 109 144 110 158 110 159 110 141 111 160 111 161 111 142 112 162 112 163 112 142 113 163 113 140 113 140 114 164 114 136 114 136 115 164 115 165 115 136 116 165 116 137 116 137 117 165 117 166 117 167 118 157 118 156 118 168 119 188 119 169 119 170 120 189 120 190 120 170 120 190 120 171 120 171 121 190 121 191 121 171 121 191 121 172 121 172 122 191 122 192 122 172 123 192 123 173 123 173 124 192 124 193 124 173 125 193 125 174 125 174 126 193 126 194 126 174 127 194 127 175 127 175 128 194 128 195 128 175 129 195 129 176 129 176 130 195 130 196 130 176 131 196 131 177 131 177 132 196 132 197 132 177 132 197 132 178 132 178 133 197 133 198 133 178 134 198 134 179 134 179 135 198 135 199 135 179 136 199 136 180 136 180 137 199 137 200 137 180 138 200 138 181 138 181 139 200 139 201 139 181 140 201 140 182 140 182 141 201 141 202 141 182 141 202 141 183 141 183 142 202 142 203 142 183 143 203 143 184 143 184 144 203 144 204 144 184 145 204 145 185 145 185 146 204 146 205 146 185 147 205 147 186 147 186 148 205 148 206 148 186 149 206 149 187 149 208 150 207 150 209 150 218 151 212 151 219 151 219 152 212 152 213 152 219 153 213 153 220 153 220 154 213 154 214 154 220 155 214 155 221 155 221 156 214 156 215 156 222 157 210 157 211 157 222 158 223 158 224 158 225 159 226 159 221 159 221 160 226 160 227 160 221 161 227 161 220 161 227 162 228 162 220 162 220 163 228 163 229 163 220 164 229 164 219 164 229 165 230 165 219 165 219 166 230 166 231 166 219 167 231 167 218 167 231 168 232 168 218 168 233 169 234 169 217 169 235 170 236 170 216 170 238 171 237 171 250 171 250 172 251 172 238 172 238 173 251 173 252 173 238 174 252 174 239 174 239 175 252 175 253 175 239 176 253 176 240 176 241 177 253 177 254 177 246 178 255 178 256 178 247 179 256 179 257 179 247 180 257 180 248 180 248 181 257 181 258 181 248 182 258 182 249 182 245 183 259 183 260 183 245 183 260 183 244 183 244 184 260 184 261 184 244 185 261 185 243 185 243 186 261 186 250 186 243 187 250 187 242 187 242 188 250 188 237 188 264 189 268 189 262 189 265 190 263 190 298 190 298 172 299 172 265 172 292 191 291 191 267 191 266 192 300 192 267 192 267 193 300 193 301 193 267 194 301 194 292 194 293 179 302 179 303 179 293 180 303 180 294 180 294 195 303 195 304 195 294 196 304 196 295 196 295 197 304 197 305 197 295 197 305 197 296 197 296 198 305 198 306 198 296 199 306 199 297 199 297 120 306 120 307 120 297 120 307 120 290 120 290 200 307 200 308 200 289 201 308 201 309 201 289 202 309 202 288 202 288 124 309 124 310 124 288 203 310 203 287 203 287 204 310 204 311 204 286 205 312 205 313 205 286 206 313 206 285 206 285 207 313 207 314 207 285 208 314 208 284 208 284 209 314 209 315 209 284 210 315 210 283 210 283 211 315 211 316 211 283 212 316 212 282 212 282 213 316 213 317 213 282 214 317 214 281 214 281 215 317 215 318 215 281 216 318 216 280 216 280 217 318 217 319 217 280 218 319 218 279 218 279 219 319 219 320 219 279 220 320 220 278 220 278 221 320 221 321 221 278 222 321 222 277 222 277 223 321 223 322 223 277 224 322 224 276 224 276 225 322 225 323 225 276 226 323 226 275 226 275 227 323 227 324 227 275 228 324 228 274 228 274 229 324 229 325 229 274 230 325 230 273 230 273 183 325 183 326 183 273 183 326 183 272 183 272 184 326 184 327 184 272 231 327 231 271 231 271 232 327 232 298 232 271 232 298 232 270 232 270 188 298 188 263 188 270 233 263 233 269 233 330 234 329 234 331 234 333 235 332 235 334 235 333 236 334 236 335 236 335 237 334 237 336 237 335 238 336 238 337 238 337 239 338 239 339 239 339 240 338 240 340 240 339 241 340 241 341 241 341 242 340 242 342 242 344 243 343 243 345 243 347 244 346 244 348 244 350 245 351 245 352 245 354 246 353 246 355 246 354 247 355 247 349 247 361 94 359 94 362 94 365 94 366 94 367 94 367 248 366 248 368 248 365 249 369 249 366 249 366 94 369 94 370 94 366 250 370 250 371 250 373 94 372 94 374 94 376 94 377 94 378 94 377 94 379 94 378 94 378 251 379 251 380 251 378 252 380 252 358 252 381 253 382 253 383 253 385 254 387 254 386 254 386 255 387 255 388 255 383 94 389 94 381 94 381 256 389 256 390 256 381 94 390 94 391 94 397 94 398 94 364 94 364 94 398 94 366 94 364 94 366 94 363 94 363 94 366 94 371 94 386 94 394 94 399 94 399 94 394 94 395 94 399 94 395 94 400 94 400 94 396 94 401 94 401 94 396 94 378 94 401 94 378 94 402 94 402 94 378 94 358 94 357 94 360 94 404 94 405 94 406 94 359 94 361 257 407 257 408 257 403 94 359 94 406 94 408 94 409 94 361 94 361 258 409 258 410 258 361 94 410 94 359 94 359 259 410 259 411 259 359 260 411 260 405 260 381 94 384 94 386 94 381 94 386 94 392 94 392 94 386 94 399 94 392 94 399 94 393 94 393 94 399 94 400 94 373 94 375 94 412 94 412 94 375 94 414 94 412 94 414 94 413 94 413 94 414 94 415 94 416 94 356 94 417 94 422 94 423 94 421 94 421 94 424 94 420 94 419 94 425 94 418 94 427 94 426 94 428 94 430 261 431 261 429 261 429 262 431 262 432 262 434 263 435 263 436 263 436 264 437 264 438 264 434 265 439 265 435 265 437 266 440 266 438 266 436 267 438 267 441 267 442 183 443 183 444 183 444 183 443 183 445 183 446 268 447 268 448 268 448 269 447 269 449 269 448 270 449 270 450 270 450 271 449 271 451 271 453 272 452 272 454 272 433 273 455 273 456 273 457 274 458 274 447 274 328 275 459 275 460 275 338 276 461 276 462 276 462 277 461 277 463 277 465 278 464 278 466 278 467 279 468 279 469 279 471 280 470 280 472 280 473 281 474 281 475 281 480 282 479 282 475 282 487 283 486 283 475 283 489 284 488 284 475 284 492 285 491 285 475 285 498 286 499 286 500 286 509 287 510 287 511 287 498 288 500 288 517 288 521 289 520 289 522 289 523 290 524 290 525 290 525 291 526 291 527 291 529 292 530 292 531 292 531 293 532 293 533 293 533 294 534 294 535 294 535 295 536 295 537 295 539 296 540 296 518 296 544 297 545 297 546 297 546 298 545 298 547 298 550 299 549 299 551 299 529 300 553 300 554 300 556 301 557 301 558 301 561 302 560 302 562 302 561 303 562 303 563 303 565 304 566 304 541 304 541 305 567 305 542 305 497 306 516 306 496 306 495 307 569 307 494 307 493 308 571 308 492 308 491 309 573 309 490 309 490 310 573 310 574 310 488 311 575 311 576 311 487 312 578 312 486 312 486 313 579 313 485 313 485 314 579 314 580 314 485 315 580 315 484 315 484 316 580 316 581 316 483 317 583 317 584 317 482 318 584 318 585 318 481 319 586 319 587 319 481 320 587 320 480 320 478 321 589 321 590 321 478 322 590 322 477 322 477 323 591 323 476 323 476 324 591 324 592 324 474 325 593 325 594 325 508 326 595 326 506 326 506 327 595 327 596 327 507 328 596 328 597 328 515 329 514 329 516 329 568 330 511 330 598 330 568 331 598 331 569 331 569 332 599 332 570 332 570 333 599 333 600 333 570 334 600 334 571 334 571 335 601 335 572 335 572 336 602 336 573 336 573 337 602 337 603 337 574 338 603 338 604 338 575 339 604 339 605 339 576 340 605 340 606 340 577 341 607 341 578 341 578 342 607 342 608 342 580 343 610 343 581 343 581 344 611 344 582 344 583 345 613 345 584 345 584 346 613 346 614 346 585 347 614 347 615 347 586 348 615 348 616 348 586 349 616 349 587 349 587 350 616 350 617 350 587 351 617 351 588 351 588 352 617 352 618 352 588 353 618 353 589 353 590 354 619 354 620 354 592 355 621 355 622 355 593 356 622 356 623 356 593 357 623 357 594 357 594 358 623 358 624 358 595 359 624 359 625 359 595 360 625 360 596 360 596 361 505 361 597 361 511 362 512 362 598 362 598 363 512 363 626 363 598 364 626 364 599 364 599 365 627 365 600 365 600 366 627 366 628 366 600 367 628 367 601 367 602 368 629 368 630 368 603 369 630 369 631 369 604 370 632 370 605 370 605 371 632 371 633 371 606 372 633 372 634 372 606 373 634 373 607 373 608 374 635 374 636 374 608 375 636 375 609 375 609 376 637 376 610 376 610 377 637 377 638 377 610 378 638 378 611 378 611 379 638 379 639 379 612 380 639 380 640 380 613 381 640 381 641 381 613 382 641 382 614 382 614 383 642 383 615 383 615 384 642 384 643 384 615 385 643 385 616 385 616 386 643 386 644 386 617 387 644 387 645 387 618 388 645 388 646 388 618 389 646 389 619 389 619 390 646 390 647 390 620 391 648 391 621 391 621 392 649 392 622 392 622 393 649 393 650 393 623 394 650 394 651 394 623 395 651 395 624 395 624 396 652 396 625 396 625 397 653 397 505 397 505 398 503 398 504 398 504 399 503 399 502 399 512 400 513 400 626 400 626 401 513 401 654 401 627 402 654 402 655 402 627 403 655 403 628 403 629 404 656 404 657 404 630 405 657 405 658 405 631 406 659 406 632 406 632 407 659 407 660 407 633 408 660 408 661 408 634 409 661 409 662 409 635 410 662 410 663 410 635 411 663 411 636 411 636 412 664 412 637 412 637 413 664 413 665 413 638 414 665 414 666 414 638 415 666 415 639 415 639 416 666 416 667 416 640 417 667 417 668 417 640 418 668 418 641 418 641 419 668 419 669 419 642 420 670 420 643 420 643 421 670 421 671 421 644 422 671 422 672 422 644 423 672 423 645 423 645 424 673 424 646 424 646 425 673 425 674 425 647 426 674 426 675 426 647 427 675 427 648 427 649 428 676 428 677 428 650 429 677 429 678 429 651 430 678 430 679 430 651 431 679 431 652 431 652 432 680 432 653 432 653 433 680 433 681 433 503 434 500 434 501 434 513 435 555 435 654 435 654 436 555 436 556 436 655 437 558 437 656 437 656 438 559 438 657 438 659 439 563 439 564 439 660 440 564 440 565 440 660 441 565 441 661 441 662 442 541 442 543 442 663 443 544 443 664 443 664 444 544 444 546 444 666 445 548 445 550 445 666 446 550 446 667 446 667 447 550 447 552 447 669 448 531 448 670 448 671 449 533 449 535 449 671 450 535 450 672 450 672 451 537 451 673 451 673 452 538 452 674 452 674 453 538 453 539 453 675 454 539 454 518 454 676 455 518 455 519 455 677 456 519 456 521 456 678 457 521 457 523 457 679 458 525 458 680 458 500 459 528 459 517 459 683 460 682 460 684 460 687 461 688 461 689 461 689 462 688 462 690 462 691 463 692 463 684 463 684 464 692 464 693 464 694 465 695 465 696 465 696 465 695 465 697 465 685 466 698 466 686 466 699 467 700 467 701 467 701 468 700 468 702 468 703 469 702 469 704 469 707 470 708 470 709 470 709 471 708 471 710 471 705 472 710 472 711 472 705 473 711 473 706 473 712 474 713 474 714 474 714 475 713 475 715 475 714 476 715 476 716 476 716 477 715 477 717 477 718 478 717 478 719 478 720 479 721 479 722 479 722 480 721 480 723 480 722 481 723 481 724 481 724 482 723 482 725 482 724 483 725 483 719 483 719 484 725 484 726 484 727 485 728 485 729 485 729 486 730 486 731 486 731 487 730 487 732 487 733 488 734 488 735 488 737 489 736 489 738 489 739 490 740 490 741 490 741 491 742 491 743 491 745 492 744 492 746 492 748 493 749 493 750 493 750 494 749 494 751 494 750 495 751 495 747 495 748 496 750 496 752 496 752 497 750 497 753 497 752 498 753 498 754 498 755 499 756 499 757 499 757 500 756 500 758 500 757 501 758 501 753 501 753 502 758 502 759 502 753 503 759 503 754 503 755 504 757 504 760 504 760 505 757 505 761 505 760 506 761 506 762 506 763 507 764 507 761 507 761 508 764 508 765 508 761 509 765 509 762 509 766 510 767 510 768 510 768 511 767 511 769 511 768 512 769 512 763 512 763 513 769 513 770 513 763 514 770 514 764 514 766 515 768 515 771 515 771 516 768 516 772 516 771 517 772 517 773 517 774 518 775 518 776 518 776 519 775 519 777 519 776 520 777 520 772 520 772 521 777 521 778 521 772 522 778 522 773 522 774 523 776 523 779 523 784 524 785 524 781 524 781 525 785 525 786 525 781 526 786 526 782 526 787 527 788 527 784 527 784 528 788 528 789 528 784 529 789 529 785 529 787 530 790 530 791 530 787 531 791 531 788 531 785 532 794 532 786 532 786 533 794 533 795 533 786 534 795 534 782 534 783 535 795 535 796 535 783 536 796 536 780 536 777 537 775 537 797 537 797 538 775 538 774 538 797 539 774 539 796 539 796 540 774 540 779 540 796 541 779 541 780 541 777 542 797 542 778 542 778 543 797 543 798 543 778 544 798 544 773 544 769 545 767 545 799 545 799 546 767 546 766 546 799 547 766 547 798 547 798 548 766 548 771 548 798 549 771 549 773 549 769 550 799 550 770 550 770 551 799 551 800 551 770 552 800 552 764 552 764 553 800 553 801 553 764 554 801 554 765 554 802 555 755 555 760 555 802 556 760 556 801 556 801 557 760 557 762 557 801 558 762 558 765 558 803 559 759 559 758 559 803 560 758 560 802 560 802 561 758 561 756 561 802 562 756 562 755 562 804 563 748 563 752 563 804 564 752 564 803 564 803 565 752 565 754 565 803 566 754 566 759 566 804 567 749 567 748 567 796 94 795 94 807 94 799 94 798 94 808 94 807 94 798 94 797 94 807 568 797 568 796 568 810 94 803 94 811 94 811 94 803 94 802 94 811 569 802 569 801 569 794 94 812 94 795 94 799 94 808 94 800 94 800 94 813 94 801 94 801 570 813 570 814 570 801 94 814 94 811 94 792 94 815 94 812 94 792 94 812 94 793 94 793 94 812 94 794 94 809 94 816 94 805 94 809 94 805 94 810 94 810 571 805 571 804 571 810 572 804 572 803 572 816 573 806 573 805 573 817 95 818 95 819 95 820 7 821 7 822 7 823 7 824 7 825 7 825 7 824 7 826 7 827 95 828 95 829 95 829 95 828 95 830 95 831 95 832 95 833 95 833 95 832 95 834 95 835 574 836 574 837 574 837 575 836 575 838 575 837 574 840 574 835 574 841 576 844 576 845 576 846 577 842 577 847 577 848 94 849 94 843 94 843 578 849 578 850 578 843 94 851 94 848 94 863 95 867 95 862 95 862 95 867 95 868 95 862 95 868 95 861 95 854 579 839 579 865 579 865 95 839 95 864 95 864 95 839 95 866 95 864 95 866 95 863 95 861 580 868 580 860 580 860 581 868 581 869 581 860 582 869 582 870 582 852 583 871 583 858 583 858 584 871 584 872 584 858 95 872 95 857 95 857 95 873 95 856 95 856 95 873 95 874 95 856 95 874 95 855 95 855 95 874 95 875 95 859 95 860 95 853 95 853 585 860 585 870 585 876 586 884 586 881 586 881 587 884 587 885 587 881 588 885 588 882 588 882 95 885 95 886 95 886 589 885 589 884 589 886 590 884 590 876 590 878 95 880 95 886 95 886 591 880 591 883 591 886 592 883 592 882 592 886 574 887 574 878 574 879 574 888 574 881 574 888 593 889 593 881 593 881 594 889 594 890 594 881 574 890 574 876 574 876 574 890 574 891 574 876 574 891 574 877 574 892 595 894 595 893 595 893 596 894 596 895 596 892 574 896 574 894 574 898 597 897 597 899 597 901 120 900 120 902 120 906 598 907 598 904 598 904 599 907 599 905 599 908 600 909 600 910 600 910 601 909 601 911 601 910 602 911 602 912 602 912 603 911 603 913 603 916 120 917 120 918 120 918 120 917 120 919 120 916 604 918 604 920 604 920 605 918 605 921 605 920 606 921 606 922 606 922 607 921 607 923 607 922 608 923 608 924 608 924 609 923 609 925 609 924 610 925 610 926 610 926 611 925 611 927 611 926 95 927 95 928 95 928 95 927 95 929 95 928 612 929 612 930 612 930 613 929 613 931 613 930 614 931 614 932 614 932 615 931 615 933 615 932 616 933 616 934 616 934 617 933 617 935 617 934 618 935 618 936 618 936 619 935 619 937 619 938 183 936 183 939 183 939 183 936 183 937 183 938 620 939 620 940 620 940 621 939 621 941 621 940 622 941 622 942 622 942 623 941 623 943 623 942 624 943 624 944 624 944 625 943 625 945 625 944 626 945 626 946 626 946 626 945 626 947 626 946 7 947 7 948 7 948 7 947 7 949 7 950 627 949 627 951 627 950 628 951 628 952 628 952 629 951 629 953 629 952 630 953 630 954 630 954 631 953 631 955 631 954 632 955 632 917 632 917 633 955 633 919 633 914 634 903 634 915 634 956 635 957 635 958 635 958 636 957 636 959 636 958 637 959 637 960 637 961 638 962 638 963 638 963 639 962 639 964 639 965 640 966 640 967 640 967 641 966 641 968 641 967 642 968 642 969 642 969 643 968 643 970 643 971 120 972 120 973 120 973 120 972 120 974 120 973 644 974 644 975 644 975 645 976 645 977 645 977 646 976 646 978 646 977 647 978 647 965 647 965 648 978 648 966 648 997 649 991 649 998 649 998 650 991 650 990 650 998 651 990 651 999 651 999 652 990 652 986 652 999 653 986 653 1000 653 1000 654 986 654 985 654 1000 655 985 655 1001 655 1001 656 985 656 982 656 1001 657 982 657 1002 657 1002 658 982 658 983 658 1002 659 983 659 1003 659 1003 660 983 660 984 660 1003 661 984 661 1004 661 1004 662 984 662 981 662 1004 663 981 663 1005 663 1005 664 981 664 980 664 1005 665 980 665 1006 665 1006 666 980 666 987 666 1006 667 987 667 1007 667 1007 668 987 668 992 668 992 183 996 183 1007 183 1007 183 996 183 1008 183 1008 669 996 669 1009 669 1009 670 996 670 995 670 1009 671 995 671 1010 671 1010 672 995 672 994 672 1011 673 993 673 988 673 1011 674 988 674 1012 674 1012 675 988 675 989 675 1012 676 989 676 1013 676 1013 677 989 677 979 677 1013 678 979 678 1014 678 1015 679 1016 679 1017 679 1017 680 1016 680 1018 680 1017 681 1018 681 1019 681 1019 682 1018 682 1020 682 1019 683 1020 683 1021 683 1021 684 1020 684 1022 684 1021 685 1022 685 1023 685 1023 686 1022 686 1024 686 1023 687 1024 687 1025 687 1025 688 1024 688 1026 688 1025 689 1026 689 1027 689 1027 690 1026 690 1028 690 1027 691 1028 691 1029 691 1029 692 1028 692 1030 692 1029 693 1030 693 1031 693 1031 694 1030 694 1032 694 1031 695 1032 695 1033 695 1033 695 1032 695 1034 695 1033 696 1034 696 1035 696 1035 696 1034 696 1036 696 1035 697 1036 697 1037 697 1037 698 1036 698 1038 698 1037 699 1038 699 1039 699 1039 700 1038 700 1040 700 1039 701 1040 701 1041 701 1041 702 1040 702 1042 702 1041 703 1042 703 1043 703 1043 704 1042 704 1044 704 1043 705 1044 705 1045 705 1045 706 1044 706 1046 706 1045 707 1046 707 1047 707 1047 708 1046 708 1048 708 1047 709 1048 709 1049 709 1049 710 1048 710 1050 710 1049 711 1050 711 1051 711 1051 712 1050 712 1052 712 1053 183 1054 183 1052 183 1052 183 1054 183 1051 183 1054 713 1053 713 1055 713 1055 714 1053 714 1056 714 1055 715 1056 715 1057 715 1057 716 1056 716 1058 716 1057 717 1058 717 1059 717 1059 718 1058 718 1060 718 1059 719 1060 719 1061 719 1061 720 1060 720 1062 720 1061 721 1062 721 1063 721 1063 722 1062 722 1064 722 1063 723 1064 723 1065 723 1065 724 1064 724 1066 724 1065 725 1066 725 1067 725 1067 726 1066 726 1068 726 1067 727 1068 727 1069 727 1069 728 1068 728 1070 728 1069 729 1070 729 1071 729 1071 729 1070 729 1072 729 1071 730 1072 730 1073 730 1073 730 1072 730 1074 730 1073 731 1074 731 1075 731 1075 732 1074 732 1076 732 1075 733 1076 733 1077 733 1077 734 1076 734 1078 734 1077 735 1078 735 1079 735 1079 736 1078 736 1080 736 1079 737 1080 737 1081 737 1081 737 1080 737 1082 737 1081 738 1082 738 1083 738 1083 739 1082 739 1084 739 1083 740 1084 740 1085 740 1085 741 1084 741 1086 741 1085 742 1086 742 1087 742 1087 743 1086 743 1088 743 1087 744 1088 744 1089 744 1089 745 1088 745 1090 745 1016 120 1015 120 1090 120 1090 120 1015 120 1089 120 1091 746 1092 746 1093 746 1093 746 1092 746 1094 746 1093 747 1094 747 1095 747 1095 748 1094 748 1096 748 1095 749 1096 749 1097 749 1097 750 1096 750 1098 750 1097 751 1098 751 1099 751 1099 751 1098 751 1100 751 1099 43 1100 43 1101 43 1101 752 1100 752 1102 752 1104 753 1103 753 1105 753 1104 754 1105 754 1106 754 1107 755 1108 755 1109 755 1109 755 1108 755 1110 755 1111 756 1112 756 1113 756 1113 757 1112 757 1114 757 1113 758 1114 758 1115 758 1115 759 1116 759 1117 759 1117 46 1116 46 1118 46 1117 760 1118 760 1119 760 1119 761 1118 761 1120 761 1119 762 1120 762 1121 762 1121 87 1120 87 1122 87 1121 763 1122 763 1123 763 1123 763 1122 763 1124 763 1125 764 1126 764 1127 764 1127 765 1126 765 1128 765 1127 766 1128 766 1129 766 1131 767 1130 767 1132 767 1133 768 1134 768 1135 768 1135 769 1134 769 1136 769 1135 770 1136 770 1137 770 1138 771 1139 771 1140 771 1142 772 1141 772 1143 772 1144 773 1143 773 1145 773 1146 774 1147 774 1148 774 1148 774 1147 774 1149 774 1150 775 1151 775 1091 775 1091 776 1151 776 1092 776 1152 777 1153 777 1154 777 1154 778 1153 778 1155 778 1154 779 1155 779 1156 779 1156 780 1155 780 1157 780 1156 781 1157 781 1158 781 1158 782 1157 782 1159 782 1158 783 1159 783 1160 783 1160 784 1159 784 1161 784 1160 785 1161 785 1162 785 1162 786 1161 786 1163 786 1162 787 1163 787 1164 787 1164 788 1163 788 1165 788 1164 789 1165 789 1166 789 1166 790 1165 790 1167 790 1166 791 1167 791 1168 791 1168 792 1167 792 1169 792 1170 793 1171 793 1172 793 1172 793 1171 793 1173 793 1172 794 1173 794 1174 794 1174 795 1173 795 1175 795 1174 796 1175 796 1176 796 1176 797 1175 797 1177 797 1176 798 1177 798 1178 798 1178 799 1177 799 1179 799 1178 800 1179 800 1180 800 1180 801 1179 801 1181 801 1180 802 1181 802 1182 802 1182 803 1181 803 1183 803 1182 804 1183 804 1184 804 1184 805 1183 805 1185 805 1184 806 1185 806 1186 806 1186 807 1185 807 1187 807 1186 808 1187 808 1152 808 1152 809 1187 809 1153 809 1188 810 1189 810 1190 810 1190 746 1189 746 1191 746 1190 811 1191 811 1192 811 1192 748 1191 748 1193 748 1192 749 1193 749 1194 749 1195 812 1196 812 1197 812 1197 753 1196 753 1198 753 1197 813 1198 813 1199 813 1201 814 1200 814 1202 814 1201 815 1202 815 1203 815 1203 816 1202 816 1204 816 1203 817 1204 817 1205 817 1205 773 1204 773 1206 773 1205 818 1206 818 1207 818 1207 819 1206 819 1208 819 1209 820 1210 820 1211 820 1211 821 1210 821 1212 821 1211 822 1212 822 1213 822 1213 823 1214 823 1215 823 1215 824 1214 824 1216 824 1215 825 1216 825 1217 825 1217 774 1216 774 1218 774 1217 826 1218 826 1219 826 1219 827 1218 827 1220 827 1219 775 1220 775 1188 775 1188 828 1220 828 1189 828 1204 829 1223 829 1206 829 1208 830 1224 830 1225 830 1212 831 1226 831 1214 831 1216 832 1227 832 1218 832 1218 833 1227 833 1228 833 1016 834 1229 834 1018 834 1018 835 1229 835 1230 835 1018 836 1230 836 1020 836 1020 837 1230 837 1231 837 1020 838 1231 838 1022 838 1022 839 1231 839 1232 839 1022 840 1232 840 1024 840 1024 841 1232 841 1233 841 1026 842 1234 842 1028 842 1028 843 1234 843 1235 843 1028 844 1235 844 1030 844 1030 845 1236 845 1032 845 1032 846 1236 846 1237 846 1032 847 1237 847 1034 847 1040 848 1238 848 1042 848 1042 849 1238 849 1239 849 1044 850 1240 850 1046 850 1048 851 1241 851 1242 851 1048 852 1242 852 1050 852 1050 853 1243 853 1052 853 1052 854 1243 854 1244 854 1245 183 1053 183 1244 183 1244 183 1053 183 1052 183 1053 855 1245 855 1056 855 1056 856 1245 856 1246 856 1056 857 1246 857 1058 857 1058 858 1246 858 1247 858 1058 859 1247 859 1060 859 1060 860 1248 860 1062 860 1062 861 1248 861 1249 861 1062 862 1249 862 1064 862 1064 863 1249 863 1250 863 1064 864 1250 864 1066 864 1066 865 1250 865 1251 865 1066 866 1251 866 1068 866 1068 866 1251 866 1252 866 1068 867 1252 867 1070 867 1070 868 1252 868 1253 868 1070 869 1253 869 1072 869 1072 870 1253 870 1254 870 1072 871 1254 871 1074 871 1074 872 1254 872 1255 872 1074 873 1255 873 1076 873 1076 874 1255 874 1256 874 1076 875 1256 875 1078 875 1078 875 1256 875 1257 875 1078 876 1257 876 1080 876 1080 877 1257 877 1258 877 1080 878 1258 878 1082 878 1082 879 1258 879 1259 879 1082 880 1259 880 1084 880 1084 881 1259 881 1260 881 1084 882 1260 882 1086 882 1086 883 1260 883 1261 883 1086 884 1261 884 1088 884 1088 885 1261 885 1262 885 1088 886 1262 886 1090 886 1090 887 1262 887 1263 887 1229 120 1016 120 1263 120 1263 120 1016 120 1090 120 1096 888 1266 888 1098 888 1098 889 1266 889 1267 889 1100 890 1268 890 1102 890 1102 891 1268 891 1269 891 1112 892 1272 892 1114 892 1114 893 1272 893 1273 893 1118 894 1274 894 1275 894 1118 895 1275 895 1120 895 1120 896 1275 896 1276 896 1122 897 1277 897 1124 897 1124 898 1277 898 1278 898 1128 899 1279 899 1280 899 1132 900 1281 900 1282 900 1134 901 1284 901 1136 901 1136 902 1284 902 1285 902 1143 903 1286 903 1145 903 1145 903 1286 903 1287 903 1153 904 1288 904 1155 904 1157 905 1290 905 1159 905 1159 906 1290 906 1291 906 1165 907 1292 907 1293 907 1177 908 1294 908 1295 908 1177 909 1295 909 1179 909 1179 910 1295 910 1296 910 1181 911 1297 911 1183 911 1183 912 1297 912 1298 912 1183 913 1298 913 1185 913 1185 914 1298 914 1299 914 1185 915 1299 915 1187 915 1187 916 1300 916 1153 916 1153 917 1300 917 1288 917 1229 918 1301 918 1230 918 1230 919 1302 919 1231 919 1231 920 1302 920 1303 920 1231 921 1303 921 1232 921 1232 685 1304 685 1233 685 1233 922 1304 922 1305 922 1234 923 1306 923 1235 923 1235 924 1306 924 1307 924 1236 694 1308 694 1237 694 1238 925 1310 925 1239 925 1240 926 1311 926 1241 926 1242 927 1312 927 1243 927 1243 928 1313 928 1244 928 1244 929 1313 929 1314 929 1315 183 1245 183 1314 183 1314 183 1245 183 1244 183 1245 930 1315 930 1246 930 1246 931 1316 931 1247 931 1247 932 1316 932 1317 932 1247 933 1317 933 1248 933 1248 934 1318 934 1249 934 1249 935 1318 935 1319 935 1249 936 1319 936 1250 936 1250 937 1320 937 1251 937 1251 938 1320 938 1321 938 1251 939 1321 939 1252 939 1252 940 1321 940 1322 940 1252 941 1322 941 1253 941 1253 941 1322 941 1323 941 1253 942 1323 942 1254 942 1254 942 1323 942 1324 942 1254 943 1324 943 1255 943 1255 943 1324 943 1325 943 1255 944 1325 944 1256 944 1256 944 1325 944 1326 944 1256 945 1326 945 1257 945 1257 946 1326 946 1327 946 1257 947 1327 947 1258 947 1258 948 1327 948 1328 948 1258 737 1328 737 1259 737 1259 949 1328 949 1329 949 1259 950 1329 950 1260 950 1260 951 1329 951 1330 951 1260 952 1330 952 1261 952 1261 952 1330 952 1331 952 1261 953 1331 953 1262 953 1262 953 1331 953 1332 953 1262 744 1332 744 1263 744 1263 954 1332 954 1333 954 1301 120 1229 120 1333 120 1333 120 1229 120 1263 120 1264 955 1334 955 1265 955 1266 956 1335 956 1267 956 1267 957 1335 957 1336 957 1268 958 1337 958 1269 958 1269 959 1337 959 1338 959 1270 960 1339 960 1340 960 1271 961 1341 961 1342 961 1272 962 1343 962 1273 962 1273 963 1343 963 1344 963 1274 964 1345 964 1275 964 1275 965 1345 965 1346 965 1275 966 1346 966 1276 966 1277 967 1347 967 1278 967 1278 968 1347 968 1348 968 1279 969 1349 969 1280 969 1280 970 1349 970 1350 970 1281 971 1351 971 1282 971 1282 972 1351 972 1352 972 1282 91 1352 91 1283 91 1284 973 1353 973 1285 973 1285 974 1353 974 1354 974 1286 975 1355 975 1356 975 1286 976 1356 976 1287 976 1288 977 1357 977 1289 977 1292 788 1358 788 1293 788 1293 788 1358 788 1359 788 1294 978 1360 978 1295 978 1295 979 1361 979 1296 979 1297 980 1362 980 1298 980 1298 981 1362 981 1363 981 1298 982 1363 982 1299 982 1300 983 1364 983 1288 983 1288 984 1364 984 1357 984 1221 960 1365 960 1222 960 938 183 1315 183 936 183 936 183 1315 183 1314 183 1315 985 938 985 1366 985 1366 986 1367 986 1368 986 1368 987 1367 987 1369 987 1368 988 1369 988 1370 988 1370 989 1369 989 1371 989 1370 990 1371 990 1372 990 1372 990 1371 990 1373 990 1372 991 1373 991 1324 991 1324 992 1373 992 1374 992 1324 993 1374 993 1375 993 1375 994 1374 994 1376 994 1375 995 1376 995 1377 995 1377 995 1376 995 1378 995 1377 996 1378 996 1379 996 1379 997 1378 997 1380 997 1379 998 1380 998 1381 998 1381 999 1380 999 1382 999 1381 1000 1382 1000 1333 1000 1333 1001 1382 1001 917 1001 1301 1002 916 1002 1383 1002 1383 1003 1384 1003 1385 1003 1387 1004 1388 1004 1389 1004 1389 1005 1388 1005 1390 1005 1389 1006 1390 1006 1309 1006 1309 1007 1390 1007 1391 1007 1309 1008 1391 1008 1392 1008 1392 1009 1391 1009 1393 1009 1392 1010 1393 1010 1394 1010 1394 1011 1393 1011 1395 1011 1396 1012 1397 1012 1398 1012 1398 1013 1397 1013 1399 1013 1398 1014 1399 1014 1314 1014 1314 1014 1399 1014 936 1014 1411 1015 1404 1015 1403 1015 1411 1016 1403 1016 1412 1016 1413 94 1412 94 1403 94 1413 1017 1403 1017 1415 1017 1416 1018 1417 1018 1418 1018 1419 1019 1420 1019 1421 1019 1422 94 1423 94 1416 94 1416 1020 1424 1020 1417 1020 1403 1021 1425 1021 1414 1021 1419 94 1421 94 1426 94 1418 94 1427 94 1428 94 1429 94 1430 94 1418 94 1418 1022 1430 1022 1431 1022 1418 94 1431 94 1416 94 1429 94 1418 94 1432 94 1432 94 1418 94 1428 94 1438 94 1439 94 1440 94 1440 94 1439 94 1441 94 1440 94 1441 94 1437 94 1437 1023 1441 1023 1442 1023 1437 94 1442 94 1436 94 1435 1024 1443 1024 1444 1024 1435 94 1444 94 1433 94 1433 1025 1444 1025 1445 1025 1433 94 1445 94 1434 94 1367 94 1401 94 1369 94 1369 1026 1401 1026 1400 1026 1369 94 1400 94 1371 94 1402 94 1380 94 1378 94 1378 94 1376 94 1402 94 1380 94 1402 94 1382 94 1382 94 1402 94 1410 94 1382 94 1410 94 917 94 1410 94 1408 94 916 94 1410 94 916 94 917 94 1367 94 938 94 1401 94 1401 94 938 94 936 94 1401 94 936 94 1447 94 1447 1027 936 1027 1399 1027 1447 94 1399 94 1448 94 1448 1028 1399 1028 1397 1028 1448 94 1397 94 1395 94 1395 94 1393 94 1448 94 1448 1029 1393 1029 1391 1029 1407 1030 1391 1030 1390 1030 1390 94 1388 94 1407 94 1407 94 1388 94 1386 94 1408 1031 1386 1031 1384 1031 1408 94 1384 94 916 94 1450 94 1451 94 1433 94 1433 1032 1451 1032 1452 1032 1433 94 1452 94 1435 94 1435 1033 1452 1033 1453 1033 1405 94 1454 94 1455 94 1405 94 1455 94 1433 94 1449 94 1409 94 1406 94 1406 1034 1409 1034 1456 1034 1435 1035 1456 1035 1457 1035 1435 94 1457 94 1437 94 1437 1036 1457 1036 1446 1036 1437 1037 1446 1037 1458 1037 1463 1038 1471 1038 1464 1038 1464 1039 1472 1039 1473 1039 1464 1040 1473 1040 1465 1040 1465 1041 1474 1041 1475 1041 1465 1042 1475 1042 1462 1042 1475 1043 1476 1043 1462 1043 1462 1044 1476 1044 1477 1044 1462 1045 1477 1045 1461 1045 1477 1046 1478 1046 1461 1046 1461 1047 1478 1047 1479 1047 1461 1048 1479 1048 1460 1048 1479 1049 1480 1049 1460 1049 1460 1050 1480 1050 1481 1050 1460 1051 1481 1051 1459 1051 1481 1052 1482 1052 1459 1052 1459 1053 1482 1053 1483 1053 1470 1054 1484 1054 1485 1054 1469 1055 1486 1055 1487 1055 1468 1056 1488 1056 1489 1056 1468 1057 1489 1057 1467 1057 1489 1058 1490 1058 1467 1058 1467 1059 1490 1059 1491 1059 1467 1060 1491 1060 1466 1060 1491 1061 1492 1061 1466 1061 1466 1062 1492 1062 1493 1062 1497 94 1503 94 1504 94 1497 94 1504 94 1496 94 1496 94 1504 94 1505 94 1496 1063 1505 1063 1495 1063 1495 94 1505 94 1506 94 1495 94 1506 94 1494 94 1494 1064 1506 1064 1507 1064 1498 1065 1508 1065 1509 1065 1498 1066 1509 1066 1499 1066 1499 1067 1509 1067 1510 1067 1499 1068 1510 1068 1500 1068 1500 1069 1511 1069 1501 1069 1501 1070 1511 1070 1512 1070 1501 1071 1512 1071 1502 1071 1502 1072 1512 1072 1513 1072 1519 1073 1515 1073 1520 1073 1520 1074 1515 1074 1514 1074 1520 1075 1514 1075 1521 1075 1521 1076 1514 1076 1517 1076 1521 1077 1517 1077 1522 1077 1522 1078 1517 1078 1516 1078 1523 1079 1524 1079 1522 1079 1522 1080 1524 1080 1525 1080 1522 1081 1525 1081 1521 1081 1525 1082 1526 1082 1521 1082 1521 1083 1526 1083 1527 1083 1521 1084 1527 1084 1520 1084 1527 1085 1528 1085 1520 1085 1520 1086 1529 1086 1519 1086 1519 1087 1530 1087 1518 1087 1531 1088 1535 1088 1532 1088 1532 1089 1535 1089 1536 1089 1532 1090 1536 1090 1533 1090 1533 225 1536 225 1537 225 1533 1091 1537 1091 1534 1091 1543 1092 1538 1092 1544 1092 1545 157 1539 157 1540 157 1545 1093 1540 1093 1546 1093 1547 1094 1548 1094 1546 1094 1546 1095 1548 1095 1549 1095 1544 1096 1550 1096 1551 1096 1544 1097 1551 1097 1543 1097 1551 1098 1552 1098 1543 1098 1543 166 1552 166 1553 166 1543 1099 1553 1099 1542 1099 1553 1100 1554 1100 1542 1100 1541 1101 1555 1101 1556 1101 1558 1102 1557 1102 1559 1102 1561 1103 1560 1103 1559 1103 1563 1104 1562 1104 1564 1104 1565 1105 1566 1105 1567 1105 1567 1106 1568 1106 1569 1106 1569 1107 1568 1107 1570 1107 1572 1108 1571 1108 1573 1108 1574 1109 1575 1109 1576 1109 1576 1110 1575 1110 1577 1110 1576 1111 1577 1111 1578 1111 1578 1112 1577 1112 1579 1112 1580 1113 1581 1113 1582 1113 1584 1114 1583 1114 1585 1114 1587 1115 1586 1115 1588 1115 1587 1106 1588 1106 1589 1106 1589 1116 1588 1116 1590 1116 1589 1117 1590 1117 1591 1117 1591 1118 1590 1118 1592 1118 1591 1119 1592 1119 1593 1119 1593 14 1592 14 1594 14 1593 1120 1594 1120 1595 1120 1595 1121 1594 1121 1596 1121 1595 1122 1596 1122 1597 1122 1597 1123 1596 1123 1598 1123 1600 1124 1599 1124 1601 1124 1603 1125 1602 1125 1604 1125 1605 1126 1604 1126 1606 1126 1607 1127 1606 1127 1608 1127 1607 1128 1608 1128 1609 1128 1609 242 1608 242 1610 242 1609 1129 1610 1129 1611 1129 1611 1130 1610 1130 1612 1130 1613 7 1614 7 1615 7 1615 7 1614 7 1616 7 1617 1131 1618 1131 1619 1131 1619 1132 1618 1132 1620 1132 1619 1133 1620 1133 1621 1133 1621 1134 1620 1134 1622 1134 1624 1135 1623 1135 1625 1135 1580 1136 1626 1136 1581 1136 1643 94 1642 94 1644 94 1645 1137 1646 1137 1647 1137 1648 94 1649 94 1650 94 1651 94 1652 94 1649 94 1649 1138 1652 1138 1653 1138 1649 94 1653 94 1650 94 1652 94 1654 94 1655 94 1652 1139 1655 1139 1653 1139 1653 94 1655 94 1656 94 1653 1140 1656 1140 1657 1140 1657 94 1656 94 1658 94 1661 94 1660 94 1662 94 1661 94 1662 94 1663 94 1663 94 1662 94 1664 94 1663 94 1664 94 1665 94 1670 1141 1671 1141 1667 1141 1667 1142 1671 1142 1672 1142 1667 94 1672 94 1668 94 1670 94 1673 94 1674 94 1667 94 1669 94 1675 94 1675 94 1669 94 1631 94 1675 94 1631 94 1676 94 1679 1143 1681 1143 1678 1143 1683 94 1680 94 1629 94 1685 1144 1682 1144 1678 1144 1682 1145 1686 1145 1687 1145 1682 1146 1687 1146 1688 1146 1689 94 1690 94 1678 94 1678 94 1690 94 1691 94 1678 94 1691 94 1685 94 1684 94 1689 94 1678 94 1693 94 1694 94 1695 94 1695 94 1694 94 1696 94 1695 94 1696 94 1697 94 1698 1147 1699 1147 1700 1147 1693 1148 1698 1148 1694 1148 1694 94 1698 94 1700 94 1694 94 1700 94 1677 94 1677 94 1700 94 1670 94 1708 94 1709 94 1710 94 1710 94 1711 94 1712 94 1712 94 1711 94 1713 94 1712 94 1713 94 1644 94 1699 1149 1714 1149 1700 1149 1700 1150 1714 1150 1697 1150 1700 1151 1697 1151 1715 1151 1715 94 1697 94 1696 94 1715 94 1696 94 1716 94 1716 94 1696 94 1717 94 1722 94 1721 94 1723 94 1725 94 1724 94 1726 94 1725 94 1726 94 1727 94 1727 94 1726 94 1728 94 1650 94 1645 94 1648 94 1648 94 1645 94 1647 94 1715 94 1653 94 1700 94 1700 94 1653 94 1657 94 1700 94 1657 94 1670 94 1670 94 1657 94 1666 94 1735 94 1728 94 1736 94 1696 94 1729 94 1717 94 1717 94 1730 94 1718 94 1718 94 1730 94 1731 94 1718 94 1731 94 1719 94 1719 94 1732 94 1720 94 1723 94 1733 94 1724 94 1726 94 1734 94 1728 94 1701 94 1639 94 1659 94 1701 94 1659 94 1702 94 1702 94 1659 94 1705 94 1702 94 1705 94 1703 94 1703 94 1705 94 1706 94 1703 94 1706 94 1704 94 1704 94 1706 94 1707 94 1632 94 1640 94 1641 94 1633 94 1737 94 1634 94 1634 94 1737 94 1738 94 1634 94 1738 94 1635 94 1635 94 1738 94 1739 94 1635 94 1739 94 1636 94 1636 94 1739 94 1740 94 1636 94 1740 94 1637 94 1637 94 1740 94 1741 94 1637 94 1741 94 1638 94 1638 94 1741 94 1742 94 1739 94 1743 94 1744 94 1628 94 1627 94 1630 94 1688 1152 1692 1152 1682 1152 1748 94 1753 94 1747 94 1746 94 1754 94 1745 94 1749 94 1708 94 1750 94 1750 94 1708 94 1710 94 1750 94 1710 94 1751 94 1751 94 1710 94 1712 94 1751 94 1712 94 1752 94 1752 94 1712 94 1644 94 1752 94 1644 94 1753 94 1753 94 1644 94 1642 94 1755 120 1756 120 1757 120 1759 183 1758 183 1760 183 1763 183 1761 183 1762 183 1764 1153 1765 1153 1766 1153 1764 1154 1766 1154 1767 1154 1771 1155 1768 1155 1770 1155 1770 1156 1768 1156 1769 1156 1772 1157 1773 1157 1774 1157 1774 1158 1773 1158 1775 1158 1776 1159 1777 1159 1778 1159 1778 1160 1777 1160 1779 1160 1778 183 1779 183 1780 183 1780 183 1779 183 1781 183 1782 1161 1783 1161 1784 1161 1784 1162 1785 1162 1786 1162 1786 1162 1785 1162 1787 1162 1789 1163 1790 1163 1788 1163 1788 1164 1790 1164 1791 1164 1788 1165 1791 1165 1792 1165 1792 1166 1791 1166 1793 1166 1792 1167 1793 1167 1794 1167 1795 1168 1796 1168 1794 1168 1794 1169 1796 1169 1797 1169 1799 1170 1798 1170 1800 1170 1800 1171 1801 1171 1799 1171 1799 1172 1801 1172 1802 1172 1803 1173 1802 1173 1804 1173 1803 1174 1804 1174 1805 1174 1805 1175 1804 1175 1806 1175 1809 1176 1808 1176 1805 1176 1809 1177 1805 1177 1810 1177 1810 1178 1805 1178 1806 1178 1812 1179 1811 1179 1813 1179 1816 1180 1817 1180 1818 1180 1823 1181 1824 1181 1825 1181 1825 1182 1824 1182 1826 1182 1825 1183 1826 1183 1822 1183 1822 1184 1826 1184 1827 1184 1822 1185 1827 1185 1821 1185 1823 1186 1829 1186 1830 1186 1823 1187 1830 1187 1824 1187 1831 1188 1832 1188 1833 1188 1833 1189 1832 1189 1834 1189 1833 1190 1834 1190 1817 1190 1817 1191 1834 1191 1835 1191 1817 1192 1835 1192 1818 1192 1837 1193 1838 1193 1831 1193 1831 1194 1838 1194 1839 1194 1831 1195 1839 1195 1832 1195 1840 1196 1790 1196 1819 1196 1819 1197 1790 1197 1789 1197 1822 1198 1814 1198 1825 1198 1825 1199 1814 1199 1813 1199 1825 1200 1813 1200 1823 1200 1813 1201 1811 1201 1823 1201 1817 1202 1807 1202 1809 1202 1817 1203 1809 1203 1833 1203 1809 1204 1810 1204 1833 1204 1833 1205 1810 1205 1806 1205 1833 1206 1806 1206 1831 1206 1831 1207 1806 1207 1804 1207 1831 1208 1804 1208 1837 1208 1804 1209 1802 1209 1837 1209 1837 1210 1801 1210 1836 1210 1815 1211 1800 1211 1798 1211 1840 1212 1791 1212 1790 1212 1829 1213 1843 1213 1844 1213 1829 1214 1844 1214 1830 1214 1830 1215 1844 1215 1845 1215 1830 1216 1845 1216 1824 1216 1832 1217 1846 1217 1834 1217 1834 1218 1846 1218 1847 1218 1834 1219 1847 1219 1835 1219 1835 1220 1847 1220 1848 1220 1835 1221 1848 1221 1818 1221 1818 1222 1848 1222 1849 1222 1818 1223 1849 1223 1828 1223 1828 1224 1849 1224 1850 1224 1828 1225 1850 1225 1841 1225 1838 1226 1851 1226 1852 1226 1838 1227 1852 1227 1839 1227 1839 1228 1852 1228 1853 1228 1839 1229 1853 1229 1832 1229 1832 1230 1853 1230 1854 1230 1832 1231 1854 1231 1846 1231 1845 1232 1858 1232 1824 1232 1824 1233 1858 1233 1859 1233 1824 1234 1859 1234 1826 1234 1826 1235 1859 1235 1860 1235 1826 1236 1860 1236 1827 1236 1827 1237 1860 1237 1861 1237 1827 1238 1861 1238 1821 1238 1821 1239 1861 1239 1862 1239 1821 1240 1862 1240 1820 1240 1820 1241 1862 1241 1863 1241 1865 1242 1866 1242 1867 1242 1852 1243 1851 1243 1868 1243 1868 1244 1851 1244 1856 1244 1868 1245 1856 1245 1869 1245 1869 1246 1856 1246 1855 1246 1852 1247 1868 1247 1853 1247 1853 1248 1868 1248 1870 1248 1853 1249 1870 1249 1854 1249 1854 1250 1870 1250 1871 1250 1854 1251 1871 1251 1846 1251 1866 1252 1872 1252 1867 1252 1867 1253 1872 1253 1873 1253 1867 1254 1873 1254 1874 1254 1874 1255 1873 1255 1875 1255 1874 1256 1875 1256 1876 1256 1876 1257 1875 1257 1877 1257 1876 1258 1877 1258 1878 1258 1878 1259 1877 1259 1879 1259 1878 1260 1879 1260 1880 1260 1880 1261 1879 1261 1881 1261 1880 1262 1881 1262 1882 1262 1882 1263 1881 1263 1883 1263 1882 1264 1883 1264 1884 1264 1884 1265 1883 1265 1885 1265 1884 1266 1885 1266 1886 1266 1886 1267 1885 1267 1887 1267 1886 1268 1887 1268 1888 1268 1888 1269 1887 1269 1889 1269 1888 1270 1889 1270 1890 1270 1869 1271 1891 1271 1892 1271 1869 1272 1892 1272 1868 1272 1868 1273 1892 1273 1893 1273 1868 1274 1893 1274 1870 1274 1870 1275 1893 1275 1865 1275 1870 1276 1865 1276 1871 1276 1871 1277 1865 1277 1867 1277 1871 1278 1867 1278 1846 1278 1846 1279 1867 1279 1847 1279 1843 1280 1842 1280 1878 1280 1878 1281 1841 1281 1876 1281 1876 1282 1841 1282 1850 1282 1876 1283 1850 1283 1874 1283 1874 1284 1850 1284 1849 1284 1874 1285 1849 1285 1867 1285 1867 1286 1849 1286 1848 1286 1867 1287 1848 1287 1847 1287 1843 1288 1878 1288 1844 1288 1844 1289 1878 1289 1880 1289 1844 1290 1880 1290 1845 1290 1845 1291 1880 1291 1882 1291 1845 1292 1882 1292 1858 1292 1858 1293 1882 1293 1884 1293 1858 1294 1884 1294 1859 1294 1857 1295 1864 1295 1890 1295 1890 1296 1864 1296 1863 1296 1890 1297 1863 1297 1888 1297 1888 1298 1863 1298 1862 1298 1888 1299 1862 1299 1886 1299 1886 1300 1862 1300 1861 1300 1886 1301 1861 1301 1884 1301 1884 1302 1861 1302 1860 1302 1884 1303 1860 1303 1859 1303 1894 1304 1895 1304 1896 1304 1898 120 1899 120 1900 120 1900 120 1899 120 1901 120 1900 1305 1901 1305 1902 1305 1902 1306 1901 1306 1903 1306 1905 94 1787 94 1906 94 1908 1307 1909 1307 1877 1307 1877 1308 1909 1308 1910 1308 1877 94 1910 94 1879 94 1889 1309 1887 1309 1907 1309 1907 94 1887 94 1885 94 1907 94 1885 94 1911 94 1911 94 1885 94 1883 94 1911 1310 1883 1310 1910 1310 1910 1311 1883 1311 1881 1311 1910 1312 1881 1312 1879 1312 1892 94 1891 94 1904 94 1897 94 1877 94 1875 94 1872 94 1866 94 1768 94 1768 1313 1866 1313 1865 1313 1768 1314 1865 1314 1893 1314 1893 1315 1892 1315 1768 1315 1768 1316 1892 1316 1904 1316 1916 1317 1915 1317 1913 1317 1921 1318 1926 1318 1927 1318 1920 1319 1927 1319 1928 1319 1919 1320 1928 1320 1929 1320 1918 1321 1932 1321 1933 1321 1917 1322 1936 1322 1937 1322 1917 1323 1937 1323 1916 1323 1914 1324 1940 1324 1941 1324 1912 1325 1943 1325 1944 1325 1930 1326 1948 1326 1931 1326 1934 1327 1949 1327 1935 1327 1938 1328 1952 1328 1939 1328 1942 1329 1953 1329 1954 1329 1945 1330 1957 1330 1946 1330 1947 1331 1958 1331 1959 1331 1950 1332 1960 1332 1951 1332 1955 1333 1963 1333 1956 1333 1961 1334 1964 1334 1962 1334 1922 1335 1925 1335 1923 1335 1964 1336 1924 1336 1965 1336 1967 1337 1968 1337 1966 1337 1969 1338 1970 1338 1971 1338 1974 1339 1973 1339 1975 1339 1976 1340 1977 1340 1972 1340 1972 1341 1977 1341 1978 1341 1979 1342 1980 1342 1981 1342 1981 1343 1982 1343 1983 1343 1984 1344 1985 1344 1986 1344 1988 1345 1987 1345 1989 1345 1990 1346 1989 1346 1991 1346 1995 1347 1996 1347 1994 1347 1994 1348 1996 1348 1997 1348 1992 1349 1998 1349 1993 1349 1993 1350 1999 1350 1995 1350 1995 1351 1999 1351 2000 1351 1995 1352 2000 1352 1996 1352 2006 1353 2007 1353 2008 1353 2006 1354 2008 1354 2009 1354 2009 1355 2008 1355 2010 1355 2009 1356 2010 1356 2011 1356 2012 1357 2013 1357 2014 1357 2014 1358 2013 1358 2015 1358 2014 1359 2015 1359 2010 1359 2010 1360 2015 1360 2016 1360 2010 1361 2016 1361 2011 1361 2012 1362 2014 1362 2017 1362 2015 1363 2013 1363 2023 1363 2023 1364 2013 1364 2012 1364 2023 1365 2012 1365 2022 1365 2022 1366 2012 1366 2017 1366 2022 1367 2017 1367 2018 1367 2015 1368 2023 1368 2016 1368 2016 1369 2023 1369 2024 1369 2016 1370 2024 1370 2011 1370 2024 1371 2009 1371 2011 1371 2029 1372 2005 1372 2004 1372 2029 1373 2004 1373 2028 1373 2030 1374 2001 1374 2002 1374 2030 1375 2002 1375 2029 1375 2029 1376 2002 1376 2003 1376 2029 1377 2003 1377 2005 1377 2032 1378 2028 1378 2027 1378 2032 1379 2027 1379 2026 1379 2028 94 2033 94 2029 94 2034 1380 2030 1380 2029 1380 2026 94 2025 94 2032 94 2032 1381 2025 1381 2024 1381 2032 1382 2024 1382 2031 1382 2031 94 2024 94 2023 94 2031 94 2023 94 2035 94 2035 1383 2023 1383 2022 1383 2035 1384 2022 1384 2036 1384 2036 94 2021 94 2037 94 2037 94 2020 94 2038 94 2038 94 2020 94 2019 94 2039 7 2040 7 2041 7 2041 7 2040 7 2042 7 2043 95 2044 95 2045 95 2045 95 2044 95 2046 95 2047 1385 2048 1385 2049 1385 2049 7 2048 7 2050 7 2051 95 2052 95 2053 95 2053 95 2052 95 2054 95 2055 95 2056 95 2057 95 2057 95 2056 95 2058 95 2060 95 2059 95 2061 95 2063 7 2062 7 2064 7 2064 7 2062 7 2065 7 2067 94 2066 94 2068 94 2066 94 2069 94 2068 94 2071 1386 2068 1386 2072 1386 2072 1387 2068 1387 2070 1387 2076 1388 2077 1388 2078 1388 2078 1389 2077 1389 2079 1389 2078 1390 2079 1390 2080 1390 2080 1391 2079 1391 2081 1391 2083 1392 2082 1392 2084 1392 2085 1393 2086 1393 2087 1393 2087 1394 2086 1394 2088 1394 2087 1395 2088 1395 2089 1395 2089 1396 2088 1396 2090 1396 2092 1397 2091 1397 2093 1397 2092 1398 2093 1398 2094 1398 2094 1399 2093 1399 2095 1399 2094 1400 2095 1400 2096 1400 2096 1401 2095 1401 2097 1401 2098 1402 2099 1402 2100 1402 2100 1402 2099 1402 2101 1402 2100 1388 2101 1388 2102 1388 2102 1403 2101 1403 2103 1403 2102 1404 2103 1404 2104 1404 2104 1391 2103 1391 2105 1391 2104 1405 2105 1405 2106 1405 2111 1399 2110 1399 2112 1399 2111 1400 2112 1400 2113 1400 2113 1406 2112 1406 2114 1406 2118 1407 2119 1407 2120 1407 2120 1408 2121 1408 2122 1408 2122 1409 2121 1409 2123 1409 2122 1410 2123 1410 2124 1410 2127 1411 2128 1411 2129 1411 2129 1411 2128 1411 2130 1411 2129 1412 2130 1412 2131 1412 2131 1413 2130 1413 2132 1413 2131 1414 2132 1414 2133 1414 2133 1415 2132 1415 2134 1415 2133 1416 2134 1416 2115 1416 2115 1417 2134 1417 2116 1417 2142 627 2143 627 2144 627 2116 94 2074 94 2117 94 2101 1418 2126 1418 2125 1418 2101 94 2125 94 2103 94 2132 94 2073 94 2134 94 2109 94 2139 94 2138 94 2138 94 2137 94 2109 94 2109 1419 2137 1419 2136 1419 2110 94 2135 94 2112 94 2146 94 2145 94 2075 94 2140 1420 2108 1420 2107 1420 2140 1421 2107 1421 2141 1421 2141 1422 2107 1422 2105 1422 2123 94 2103 94 2125 94 2147 1423 2148 1423 2149 1423 2149 1424 2148 1424 2150 1424 2152 1425 2151 1425 2153 1425 2152 1426 2153 1426 2154 1426 2154 1427 2153 1427 2155 1427 2154 1428 2155 1428 2156 1428 2156 1429 2155 1429 2157 1429 2156 1430 2157 1430 2158 1430 2158 1431 2157 1431 2159 1431 2160 1432 2161 1432 2162 1432 2162 1433 2161 1433 2163 1433 2162 1434 2163 1434 2164 1434 2164 1435 2163 1435 2165 1435 2164 1436 2165 1436 2166 1436 2166 1437 2165 1437 2167 1437 2168 1438 2169 1438 2170 1438 2170 1424 2169 1424 2171 1424 2170 1439 2171 1439 2172 1439 2172 1440 2171 1440 2173 1440 2172 1441 2173 1441 2174 1441 2174 1442 2173 1442 2175 1442 2174 1443 2175 1443 2176 1443 2176 1427 2175 1427 2177 1427 2176 1444 2177 1444 2178 1444 2179 1445 2180 1445 2181 1445 2181 1446 2180 1446 2182 1446 2183 1447 2184 1447 2185 1447 2185 1448 2184 1448 2186 1448 2185 183 2186 183 2187 183 2187 183 2186 183 2188 183 2187 1449 2188 1449 2189 1449 2189 1450 2188 1450 2190 1450 2189 1451 2190 1451 2191 1451 2191 1452 2190 1452 2192 1452 2191 1453 2192 1453 2193 1453 2193 1453 2192 1453 2194 1453 2193 1454 2194 1454 2195 1454 2195 1455 2194 1455 2196 1455 2195 1456 2196 1456 2197 1456 2197 1457 2196 1457 2198 1457 2197 1458 2198 1458 2199 1458 2199 1459 2198 1459 2200 1459 2202 1460 2201 1460 2203 1460 2209 1461 2208 1461 2210 1461 2210 1462 2208 1462 2207 1462 2210 1463 2207 1463 2211 1463 2211 1464 2207 1464 2204 1464 2211 1465 2204 1465 2212 1465 2212 1466 2204 1466 2205 1466 2212 1467 2205 1467 2213 1467 2213 1468 2205 1468 2206 1468 2213 1469 2206 1469 2214 1469 2215 1470 2216 1470 2217 1470 2220 1471 2221 1471 2222 1471 2222 1472 2221 1472 2223 1472 2224 1473 2225 1473 2226 1473 2227 1474 2228 1474 2229 1474 2229 1475 2228 1475 2230 1475 2218 1476 2231 1476 2219 1476 2221 244 2232 244 2223 244 2223 244 2232 244 2233 244 2232 1477 2234 1477 2233 1477 2233 1478 2234 1478 2235 1478 2249 94 2250 94 2242 94 2251 94 2242 94 2250 94 2253 94 2252 94 2254 94 2253 1479 2254 1479 2255 1479 2257 94 2256 94 2258 94 2257 94 2258 94 2259 94 2253 94 2260 94 2242 94 2251 94 2261 94 2248 94 2248 94 2261 94 2262 94 2248 1480 2262 1480 2263 1480 2266 1481 2267 1481 2264 1481 2264 94 2267 94 2265 94 2268 1482 2269 1482 2270 1482 2270 1483 2269 1483 2271 1483 2247 94 2246 94 2272 94 2272 94 2246 94 2273 94 2268 1484 2274 1484 2269 1484 2267 94 2275 94 2265 94 2265 1485 2275 1485 2276 1485 2265 1486 2276 1486 2277 1486 2277 1487 2276 1487 2245 1487 2277 1488 2245 1488 2278 1488 2278 1489 2245 1489 2247 1489 2241 1490 2239 1490 2238 1490 2241 94 2238 94 2240 94 2240 1491 2238 1491 2237 1491 2240 94 2237 94 2236 94 2240 94 2279 94 2241 94 2241 94 2279 94 2280 94 2281 94 2282 94 2243 94 2269 94 2283 94 2284 94 2269 94 2284 94 2244 94 2244 1492 2284 1492 2285 1492 2282 94 2287 94 2243 94 2264 94 2288 94 2289 94 2264 1493 2289 1493 2286 1493 2244 94 2290 94 2269 94 2292 95 2293 95 2291 95 2294 1494 2295 1494 2296 1494 2297 1495 2295 1495 2294 1495 2294 1496 2298 1496 2299 1496 2300 1497 2298 1497 2294 1497 2296 1498 2300 1498 2294 1498 2294 1499 2301 1499 2302 1499 2303 1500 2301 1500 2294 1500 2299 1501 2303 1501 2294 1501 2294 1502 2304 1502 2305 1502 2306 1503 2304 1503 2294 1503 2302 1504 2306 1504 2294 1504 2294 1505 2307 1505 2308 1505 2309 1506 2307 1506 2294 1506 2305 1507 2309 1507 2294 1507 2294 1508 2310 1508 2311 1508 2312 1509 2310 1509 2294 1509 2308 1510 2312 1510 2294 1510 2294 1511 2313 1511 2314 1511 2315 1512 2313 1512 2294 1512 2311 1513 2315 1513 2294 1513 2294 1514 2316 1514 2317 1514 2318 1515 2316 1515 2294 1515 2314 1516 2318 1516 2294 1516 2294 1517 2319 1517 2320 1517 2321 1518 2319 1518 2294 1518 2317 1519 2321 1519 2294 1519 2294 1520 2322 1520 2323 1520 2324 1521 2322 1521 2294 1521 2320 1522 2324 1522 2294 1522 2294 1523 2325 1523 2326 1523 2327 1524 2325 1524 2294 1524 2323 1525 2327 1525 2294 1525 2294 1526 2328 1526 2329 1526 2330 1527 2328 1527 2294 1527 2326 1528 2330 1528 2294 1528 2294 1529 2331 1529 2332 1529 2333 1530 2331 1530 2294 1530 2329 1531 2333 1531 2294 1531 2294 1532 2334 1532 2335 1532 2336 1533 2334 1533 2294 1533 2332 1534 2336 1534 2294 1534 2294 1535 2337 1535 2338 1535 2339 1536 2337 1536 2294 1536 2335 1537 2339 1537 2294 1537 2338 1538 2297 1538 2294 1538 2340 1539 2341 1539 2342 1539 2342 1540 2341 1540 2343 1540 2342 1541 2343 1541 2344 1541 2345 1542 2346 1542 2347 1542 2347 1543 2346 1543 2348 1543 2347 1544 2348 1544 2340 1544 2340 1545 2348 1545 2349 1545 2340 1546 2349 1546 2341 1546 2350 1547 2351 1547 2352 1547 2352 1548 2351 1548 2353 1548 2352 1549 2353 1549 2345 1549 2345 1550 2353 1550 2354 1550 2345 1551 2354 1551 2346 1551 2355 1552 2356 1552 2357 1552 2357 1553 2356 1553 2358 1553 2357 1554 2358 1554 2350 1554 2350 1555 2358 1555 2359 1555 2350 1556 2359 1556 2351 1556 2360 1557 2361 1557 2362 1557 2362 1558 2361 1558 2363 1558 2362 1559 2363 1559 2355 1559 2355 1560 2363 1560 2364 1560 2355 1561 2364 1561 2356 1561 2365 1562 2366 1562 2367 1562 2367 1563 2366 1563 2368 1563 2367 1564 2368 1564 2360 1564 2360 1565 2368 1565 2369 1565 2360 1566 2369 1566 2361 1566 2370 1567 2371 1567 2372 1567 2372 1568 2371 1568 2373 1568 2372 1569 2373 1569 2374 1569 2374 1570 2373 1570 2375 1570 2374 1571 2375 1571 2365 1571 2365 1572 2375 1572 2376 1572 2365 1573 2376 1573 2366 1573 2377 1574 2378 1574 2379 1574 2379 1575 2378 1575 2380 1575 2379 1576 2380 1576 2370 1576 2370 1577 2380 1577 2381 1577 2370 1578 2381 1578 2371 1578 2382 1579 2383 1579 2384 1579 2384 1580 2383 1580 2385 1580 2384 1581 2385 1581 2377 1581 2377 1582 2385 1582 2386 1582 2377 1583 2386 1583 2378 1583 2387 1584 2388 1584 2389 1584 2389 1585 2388 1585 2390 1585 2389 1586 2390 1586 2382 1586 2382 1587 2390 1587 2391 1587 2382 1588 2391 1588 2383 1588 2343 1589 2392 1589 2344 1589 2344 1590 2392 1590 2393 1590 2344 1591 2393 1591 2394 1591 2394 1592 2393 1592 2395 1592 2394 1593 2395 1593 2396 1593 2396 1594 2395 1594 2397 1594 2396 1595 2397 1595 2398 1595 2398 1596 2397 1596 2399 1596 2398 1597 2399 1597 2400 1597 2400 1598 2399 1598 2401 1598 2400 1599 2401 1599 2402 1599 2402 1600 2401 1600 2403 1600 2402 1601 2403 1601 2404 1601 2404 1602 2403 1602 2405 1602 2404 1603 2405 1603 2406 1603 2406 1604 2405 1604 2407 1604 2406 1605 2407 1605 2408 1605 2408 1606 2407 1606 2409 1606 2408 1607 2409 1607 2410 1607 2410 1608 2409 1608 2411 1608 2410 1609 2411 1609 2412 1609 2412 1610 2411 1610 2413 1610 2412 1611 2413 1611 2414 1611 2414 1612 2413 1612 2415 1612 2414 1613 2415 1613 2416 1613 2416 1614 2415 1614 2417 1614 2416 1615 2417 1615 2418 1615 2418 1616 2417 1616 2419 1616 2418 1617 2419 1617 2420 1617 2420 1618 2419 1618 2421 1618 2420 1619 2421 1619 2422 1619 2422 1620 2421 1620 2423 1620 2422 1621 2423 1621 2424 1621 2424 1622 2423 1622 2425 1622 2424 1623 2425 1623 2426 1623 2426 1624 2425 1624 2427 1624 2426 1625 2427 1625 2428 1625 2428 1626 2427 1626 2429 1626 2428 1627 2429 1627 2430 1627 2430 1628 2429 1628 2431 1628 2430 1629 2431 1629 2432 1629 2432 1630 2431 1630 2433 1630 2432 1631 2433 1631 2434 1631 2434 1632 2433 1632 2435 1632 2434 1633 2435 1633 2436 1633 2436 1634 2435 1634 2437 1634 2436 1635 2437 1635 2438 1635 2438 1636 2437 1636 2439 1636 2438 1637 2439 1637 2387 1637 2387 1638 2439 1638 2440 1638 2387 1639 2440 1639 2388 1639 2394 1640 2441 1640 2344 1640 2344 1641 2441 1641 2442 1641 2344 1642 2442 1642 2342 1642 2342 1643 2442 1643 2443 1643 2342 1644 2443 1644 2340 1644 2340 1645 2443 1645 2444 1645 2340 1646 2444 1646 2347 1646 2347 1647 2444 1647 2445 1647 2347 1648 2445 1648 2345 1648 2345 1649 2445 1649 2446 1649 2345 1650 2446 1650 2352 1650 2352 1651 2446 1651 2447 1651 2352 1652 2447 1652 2350 1652 2350 1653 2447 1653 2448 1653 2350 1654 2448 1654 2357 1654 2357 1655 2448 1655 2449 1655 2357 1656 2449 1656 2355 1656 2355 1657 2449 1657 2450 1657 2355 1658 2450 1658 2362 1658 2362 1659 2450 1659 2451 1659 2362 1660 2451 1660 2360 1660 2360 1661 2451 1661 2452 1661 2360 1662 2452 1662 2367 1662 2367 1663 2452 1663 2453 1663 2367 1664 2453 1664 2365 1664 2365 1665 2453 1665 2454 1665 2365 1666 2454 1666 2374 1666 2374 1667 2454 1667 2455 1667 2374 1668 2455 1668 2372 1668 2372 1669 2455 1669 2456 1669 2372 1670 2456 1670 2370 1670 2370 1671 2456 1671 2457 1671 2370 1672 2457 1672 2379 1672 2379 1673 2457 1673 2458 1673 2379 1674 2458 1674 2377 1674 2377 1675 2458 1675 2459 1675 2377 1676 2459 1676 2384 1676 2384 1677 2459 1677 2460 1677 2384 1678 2460 1678 2382 1678 2382 1679 2460 1679 2461 1679 2382 1680 2461 1680 2389 1680 2389 1681 2461 1681 2462 1681 2389 1682 2462 1682 2387 1682 2387 1683 2462 1683 2463 1683 2387 1684 2463 1684 2438 1684 2438 1685 2463 1685 2464 1685 2438 1686 2464 1686 2436 1686 2436 1687 2464 1687 2465 1687 2436 1688 2465 1688 2434 1688 2434 1689 2465 1689 2466 1689 2434 1690 2466 1690 2432 1690 2432 1691 2466 1691 2467 1691 2432 1692 2467 1692 2430 1692 2430 1693 2467 1693 2468 1693 2430 1694 2468 1694 2428 1694 2428 1695 2468 1695 2469 1695 2428 1696 2469 1696 2426 1696 2426 1697 2469 1697 2470 1697 2426 1698 2470 1698 2424 1698 2424 1699 2470 1699 2471 1699 2424 1700 2471 1700 2422 1700 2422 1701 2471 1701 2472 1701 2422 1702 2472 1702 2420 1702 2420 1703 2472 1703 2473 1703 2420 1704 2473 1704 2418 1704 2418 1705 2473 1705 2474 1705 2418 1706 2474 1706 2416 1706 2416 1707 2474 1707 2475 1707 2416 1708 2475 1708 2414 1708 2414 1709 2475 1709 2476 1709 2414 1710 2476 1710 2412 1710 2412 1711 2476 1711 2477 1711 2412 1712 2477 1712 2410 1712 2410 1713 2477 1713 2478 1713 2410 1714 2478 1714 2408 1714 2408 1715 2478 1715 2479 1715 2408 1716 2479 1716 2406 1716 2406 1717 2479 1717 2480 1717 2406 1718 2480 1718 2404 1718 2404 1719 2480 1719 2481 1719 2404 1720 2481 1720 2402 1720 2402 1721 2481 1721 2482 1721 2402 1722 2482 1722 2400 1722 2400 1723 2482 1723 2483 1723 2400 1724 2483 1724 2398 1724 2398 1725 2483 1725 2484 1725 2398 1726 2484 1726 2396 1726 2396 1727 2484 1727 2485 1727 2396 1728 2485 1728 2394 1728 2394 1729 2485 1729 2441 1729 2441 1730 2486 1730 2442 1730 2442 1731 2486 1731 2487 1731 2442 1732 2487 1732 2443 1732 2443 1733 2487 1733 2488 1733 2443 1734 2488 1734 2444 1734 2444 1735 2488 1735 2489 1735 2444 1736 2489 1736 2445 1736 2445 1737 2489 1737 2490 1737 2445 1738 2490 1738 2446 1738 2446 1739 2490 1739 2491 1739 2446 1740 2491 1740 2447 1740 2447 1741 2491 1741 2492 1741 2447 1742 2492 1742 2448 1742 2448 1743 2492 1743 2493 1743 2448 1744 2493 1744 2449 1744 2449 1745 2493 1745 2494 1745 2449 1746 2494 1746 2450 1746 2450 1747 2494 1747 2495 1747 2450 1748 2495 1748 2451 1748 2451 1749 2495 1749 2496 1749 2451 1750 2496 1750 2452 1750 2452 1751 2496 1751 2497 1751 2452 1752 2497 1752 2453 1752 2453 1753 2497 1753 2498 1753 2453 1754 2498 1754 2454 1754 2454 1755 2498 1755 2499 1755 2454 1756 2499 1756 2455 1756 2455 1757 2499 1757 2500 1757 2455 1758 2500 1758 2456 1758 2456 1759 2500 1759 2501 1759 2456 1760 2501 1760 2457 1760 2457 1761 2501 1761 2502 1761 2457 1762 2502 1762 2458 1762 2458 1763 2502 1763 2503 1763 2458 1764 2503 1764 2459 1764 2459 1765 2503 1765 2504 1765 2459 1766 2504 1766 2460 1766 2460 1767 2504 1767 2505 1767 2460 1768 2505 1768 2461 1768 2461 1769 2505 1769 2506 1769 2461 1770 2506 1770 2462 1770 2462 1771 2506 1771 2507 1771 2462 1772 2507 1772 2463 1772 2463 1773 2507 1773 2508 1773 2463 1774 2508 1774 2464 1774 2464 1775 2508 1775 2509 1775 2464 1776 2509 1776 2465 1776 2465 1777 2509 1777 2510 1777 2465 1778 2510 1778 2466 1778 2466 1779 2510 1779 2511 1779 2466 1780 2511 1780 2467 1780 2467 1781 2511 1781 2512 1781 2467 1782 2512 1782 2468 1782 2468 1783 2512 1783 2513 1783 2468 1784 2513 1784 2469 1784 2469 1785 2513 1785 2514 1785 2469 1786 2514 1786 2470 1786 2470 1787 2514 1787 2515 1787 2470 1788 2515 1788 2471 1788 2471 1789 2515 1789 2516 1789 2471 1790 2516 1790 2472 1790 2472 1791 2516 1791 2517 1791 2472 1792 2517 1792 2473 1792 2473 1793 2517 1793 2518 1793 2473 1794 2518 1794 2474 1794 2474 1795 2518 1795 2519 1795 2474 1796 2519 1796 2475 1796 2475 1797 2519 1797 2520 1797 2475 1798 2520 1798 2476 1798 2476 1799 2520 1799 2521 1799 2476 1800 2521 1800 2477 1800 2477 1801 2521 1801 2522 1801 2477 1802 2522 1802 2478 1802 2478 1803 2522 1803 2523 1803 2478 1804 2523 1804 2479 1804 2479 1805 2523 1805 2524 1805 2479 1806 2524 1806 2480 1806 2480 1807 2524 1807 2525 1807 2480 1808 2525 1808 2481 1808 2481 1809 2525 1809 2526 1809 2481 1810 2526 1810 2482 1810 2482 1811 2526 1811 2527 1811 2482 1812 2527 1812 2483 1812 2483 1813 2527 1813 2528 1813 2483 1814 2528 1814 2484 1814 2484 1815 2528 1815 2529 1815 2484 1816 2529 1816 2485 1816 2485 1817 2529 1817 2530 1817 2485 1818 2530 1818 2441 1818 2441 1819 2530 1819 2486 1819 2486 1820 2531 1820 2487 1820 2487 1821 2531 1821 2532 1821 2487 1822 2532 1822 2488 1822 2488 1823 2532 1823 2533 1823 2488 1824 2533 1824 2489 1824 2489 1825 2533 1825 2534 1825 2489 1826 2534 1826 2490 1826 2490 1827 2534 1827 2535 1827 2490 1828 2535 1828 2491 1828 2491 1829 2535 1829 2536 1829 2491 1830 2536 1830 2492 1830 2492 1831 2536 1831 2537 1831 2492 1832 2537 1832 2493 1832 2493 1833 2537 1833 2538 1833 2493 1834 2538 1834 2494 1834 2494 1835 2538 1835 2539 1835 2494 1836 2539 1836 2495 1836 2495 1837 2539 1837 2540 1837 2495 1838 2540 1838 2496 1838 2496 1839 2540 1839 2541 1839 2496 1840 2541 1840 2497 1840 2497 1841 2541 1841 2542 1841 2497 1842 2542 1842 2498 1842 2498 1843 2542 1843 2543 1843 2498 1844 2543 1844 2499 1844 2499 1845 2543 1845 2544 1845 2499 1846 2544 1846 2500 1846 2500 1847 2544 1847 2545 1847 2500 1848 2545 1848 2501 1848 2501 1849 2545 1849 2546 1849 2501 1850 2546 1850 2502 1850 2502 1851 2546 1851 2547 1851 2502 1852 2547 1852 2503 1852 2503 1853 2547 1853 2548 1853 2503 1854 2548 1854 2504 1854 2504 1855 2548 1855 2549 1855 2504 1856 2549 1856 2505 1856 2505 1857 2549 1857 2550 1857 2505 1858 2550 1858 2506 1858 2506 1859 2550 1859 2551 1859 2506 1860 2551 1860 2507 1860 2507 1861 2551 1861 2552 1861 2507 1862 2552 1862 2508 1862 2508 1863 2552 1863 2553 1863 2508 1864 2553 1864 2509 1864 2509 1865 2553 1865 2554 1865 2509 1866 2554 1866 2510 1866 2510 1867 2554 1867 2555 1867 2510 1868 2555 1868 2511 1868 2511 1869 2555 1869 2556 1869 2511 1870 2556 1870 2512 1870 2512 1871 2556 1871 2557 1871 2512 1872 2557 1872 2513 1872 2513 1873 2557 1873 2558 1873 2513 1874 2558 1874 2514 1874 2514 1875 2558 1875 2559 1875 2514 1876 2559 1876 2515 1876 2515 1877 2559 1877 2560 1877 2515 1878 2560 1878 2516 1878 2516 1879 2560 1879 2561 1879 2516 1880 2561 1880 2517 1880 2517 1881 2561 1881 2562 1881 2517 1882 2562 1882 2518 1882 2518 1883 2562 1883 2563 1883 2518 1884 2563 1884 2519 1884 2519 1885 2563 1885 2564 1885 2519 1886 2564 1886 2520 1886 2520 1887 2564 1887 2565 1887 2520 1888 2565 1888 2521 1888 2521 1889 2565 1889 2566 1889 2521 1890 2566 1890 2522 1890 2522 1891 2566 1891 2567 1891 2522 1892 2567 1892 2523 1892 2523 1893 2567 1893 2568 1893 2523 1894 2568 1894 2524 1894 2524 1895 2568 1895 2569 1895 2524 1896 2569 1896 2525 1896 2525 1897 2569 1897 2570 1897 2525 1898 2570 1898 2526 1898 2526 1899 2570 1899 2571 1899 2526 1900 2571 1900 2527 1900 2527 1901 2571 1901 2572 1901 2527 1902 2572 1902 2528 1902 2528 1903 2572 1903 2573 1903 2528 1904 2573 1904 2529 1904 2529 1905 2573 1905 2574 1905 2529 1906 2574 1906 2530 1906 2530 1907 2574 1907 2575 1907 2530 1908 2575 1908 2486 1908 2486 1909 2575 1909 2531 1909 2531 1910 2576 1910 2532 1910 2532 1911 2576 1911 2577 1911 2532 1912 2577 1912 2533 1912 2533 1913 2577 1913 2578 1913 2533 1914 2578 1914 2534 1914 2534 1915 2578 1915 2579 1915 2534 1916 2579 1916 2535 1916 2535 1917 2579 1917 2580 1917 2535 1918 2580 1918 2536 1918 2536 1919 2580 1919 2581 1919 2536 1920 2581 1920 2537 1920 2537 1921 2581 1921 2582 1921 2537 1922 2582 1922 2538 1922 2538 1923 2582 1923 2583 1923 2538 1924 2583 1924 2539 1924 2539 1925 2583 1925 2584 1925 2539 1926 2584 1926 2540 1926 2540 1927 2584 1927 2585 1927 2540 1928 2585 1928 2541 1928 2541 1929 2585 1929 2586 1929 2541 1930 2586 1930 2542 1930 2542 1931 2586 1931 2587 1931 2542 1932 2587 1932 2543 1932 2543 1933 2587 1933 2588 1933 2543 1934 2588 1934 2544 1934 2544 1935 2588 1935 2589 1935 2544 1936 2589 1936 2545 1936 2545 1937 2589 1937 2590 1937 2545 1938 2590 1938 2546 1938 2546 1939 2590 1939 2591 1939 2546 1940 2591 1940 2547 1940 2547 1941 2591 1941 2592 1941 2547 1942 2592 1942 2548 1942 2548 1943 2592 1943 2593 1943 2548 1944 2593 1944 2549 1944 2549 1945 2593 1945 2594 1945 2549 1946 2594 1946 2550 1946 2550 1947 2594 1947 2595 1947 2550 1948 2595 1948 2551 1948 2551 1949 2595 1949 2596 1949 2551 1950 2596 1950 2552 1950 2552 1951 2596 1951 2597 1951 2552 1952 2597 1952 2553 1952 2553 1953 2597 1953 2598 1953 2553 1954 2598 1954 2554 1954 2554 1955 2598 1955 2599 1955 2554 1956 2599 1956 2555 1956 2555 1957 2599 1957 2600 1957 2555 1958 2600 1958 2556 1958 2556 1959 2600 1959 2601 1959 2556 1960 2601 1960 2557 1960 2557 1961 2601 1961 2602 1961 2557 1962 2602 1962 2558 1962 2558 1963 2602 1963 2603 1963 2558 1964 2603 1964 2559 1964 2559 1965 2603 1965 2604 1965 2559 1966 2604 1966 2560 1966 2560 1967 2604 1967 2605 1967 2560 1968 2605 1968 2561 1968 2561 1969 2605 1969 2606 1969 2561 1970 2606 1970 2562 1970 2562 1971 2606 1971 2607 1971 2562 1972 2607 1972 2563 1972 2563 1973 2607 1973 2608 1973 2563 1974 2608 1974 2564 1974 2564 1975 2608 1975 2609 1975 2564 1976 2609 1976 2565 1976 2565 1977 2609 1977 2610 1977 2565 1978 2610 1978 2566 1978 2566 1979 2610 1979 2611 1979 2566 1980 2611 1980 2567 1980 2567 1981 2611 1981 2612 1981 2567 1982 2612 1982 2568 1982 2568 1983 2612 1983 2613 1983 2568 1984 2613 1984 2569 1984 2569 1985 2613 1985 2614 1985 2569 1986 2614 1986 2570 1986 2570 1987 2614 1987 2615 1987 2570 1988 2615 1988 2571 1988 2571 1989 2615 1989 2616 1989 2571 1990 2616 1990 2572 1990 2572 1991 2616 1991 2617 1991 2572 1992 2617 1992 2573 1992 2573 1993 2617 1993 2618 1993 2573 1994 2618 1994 2574 1994 2574 1995 2618 1995 2619 1995 2574 1996 2619 1996 2575 1996 2575 1997 2619 1997 2620 1997 2575 1998 2620 1998 2531 1998 2531 1999 2620 1999 2576 1999 2576 2000 2297 2000 2577 2000 2577 2001 2297 2001 2338 2001 2577 2002 2338 2002 2578 2002 2578 2003 2338 2003 2337 2003 2578 2004 2337 2004 2579 2004 2579 2005 2337 2005 2339 2005 2579 2006 2339 2006 2580 2006 2580 2007 2339 2007 2335 2007 2580 2008 2335 2008 2581 2008 2581 2009 2335 2009 2334 2009 2581 2010 2334 2010 2582 2010 2582 2011 2334 2011 2336 2011 2582 2012 2336 2012 2583 2012 2583 2013 2336 2013 2332 2013 2583 2014 2332 2014 2584 2014 2584 2015 2332 2015 2331 2015 2584 2016 2331 2016 2585 2016 2585 2017 2331 2017 2333 2017 2585 2018 2333 2018 2586 2018 2586 2019 2333 2019 2329 2019 2586 2020 2329 2020 2587 2020 2587 2021 2329 2021 2328 2021 2587 2022 2328 2022 2588 2022 2588 2023 2328 2023 2330 2023 2588 2024 2330 2024 2589 2024 2589 2025 2330 2025 2326 2025 2589 2026 2326 2026 2590 2026 2590 2027 2326 2027 2325 2027 2590 2028 2325 2028 2591 2028 2591 2029 2325 2029 2327 2029 2591 2030 2327 2030 2592 2030 2592 2031 2327 2031 2323 2031 2592 2032 2323 2032 2593 2032 2593 2033 2323 2033 2322 2033 2593 2034 2322 2034 2594 2034 2594 2035 2322 2035 2324 2035 2594 2036 2324 2036 2595 2036 2595 2037 2324 2037 2320 2037 2595 2038 2320 2038 2596 2038 2596 2039 2320 2039 2319 2039 2596 2040 2319 2040 2597 2040 2597 2041 2319 2041 2321 2041 2597 2042 2321 2042 2598 2042 2598 2043 2321 2043 2317 2043 2598 2044 2317 2044 2599 2044 2599 2045 2317 2045 2316 2045 2599 2046 2316 2046 2600 2046 2600 2047 2316 2047 2318 2047 2600 2048 2318 2048 2601 2048 2601 2049 2318 2049 2314 2049 2601 2050 2314 2050 2602 2050 2602 2051 2314 2051 2313 2051 2602 2052 2313 2052 2603 2052 2603 2053 2313 2053 2315 2053 2603 2054 2315 2054 2604 2054 2604 2055 2315 2055 2311 2055 2604 2056 2311 2056 2605 2056 2605 2057 2311 2057 2310 2057 2605 2058 2310 2058 2606 2058 2606 2059 2310 2059 2312 2059 2606 2060 2312 2060 2607 2060 2607 2061 2312 2061 2308 2061 2607 2062 2308 2062 2608 2062 2608 2063 2308 2063 2307 2063 2608 2064 2307 2064 2609 2064 2609 2065 2307 2065 2309 2065 2609 2066 2309 2066 2610 2066 2610 2067 2309 2067 2305 2067 2610 2068 2305 2068 2611 2068 2611 2069 2305 2069 2304 2069 2611 2070 2304 2070 2612 2070 2612 2071 2304 2071 2306 2071 2612 2072 2306 2072 2613 2072 2613 2073 2306 2073 2302 2073 2613 2074 2302 2074 2614 2074 2614 2075 2302 2075 2301 2075 2614 2076 2301 2076 2615 2076 2615 2077 2301 2077 2303 2077 2615 2078 2303 2078 2616 2078 2616 2079 2303 2079 2299 2079 2616 2080 2299 2080 2617 2080 2617 2081 2299 2081 2298 2081 2617 2082 2298 2082 2618 2082 2618 2083 2298 2083 2300 2083 2618 2084 2300 2084 2619 2084 2619 2085 2300 2085 2296 2085 2619 2086 2296 2086 2620 2086 2620 2087 2296 2087 2295 2087 2620 2088 2295 2088 2576 2088 2576 2089 2295 2089 2297 2089 2621 94 2622 94 2346 94 2623 2090 2624 2090 2361 2090 2625 94 2403 94 2626 94 2626 2091 2403 2091 2401 2091 2626 94 2401 94 2627 94 2627 2092 2401 2092 2399 2092 2627 94 2399 94 2628 94 2629 94 2630 94 2343 94 2399 94 2397 94 2628 94 2628 2093 2397 2093 2395 2093 2628 2094 2395 2094 2631 2094 2631 2095 2395 2095 2393 2095 2631 94 2393 94 2630 94 2630 2096 2393 2096 2392 2096 2630 2097 2392 2097 2343 2097 2632 94 2633 94 2358 94 2361 2098 2369 2098 2623 2098 2623 94 2369 94 2368 94 2623 94 2368 94 2634 94 2635 94 2636 94 2373 94 2637 94 2638 94 2440 94 2346 94 2354 94 2621 94 2621 94 2354 94 2353 94 2621 2099 2353 2099 2639 2099 2639 94 2353 94 2351 94 2639 2100 2351 2100 2633 2100 2633 94 2351 94 2359 94 2633 2101 2359 2101 2358 2101 2440 94 2439 94 2637 94 2637 2102 2439 2102 2437 2102 2637 94 2437 94 2640 94 2640 94 2437 94 2435 94 2640 94 2435 94 2641 94 2435 94 2433 94 2641 94 2641 2103 2433 2103 2431 2103 2641 94 2431 94 2642 94 2642 94 2431 94 2429 94 2642 94 2429 94 2643 94 2643 2104 2429 2104 2427 2104 2643 2105 2427 2105 2644 2105 2644 94 2427 94 2425 94 2644 2106 2425 2106 2645 2106 2425 2107 2423 2107 2645 2107 2645 94 2423 94 2421 94 2645 94 2421 94 2646 94 2646 94 2421 94 2419 94 2646 94 2419 94 2647 94 2647 94 2419 94 2417 94 2647 94 2417 94 2648 94 2648 94 2417 94 2415 94 2648 94 2415 94 2649 94 2649 94 2415 94 2413 94 2649 94 2413 94 2650 94 2650 2108 2413 2108 2411 2108 2650 94 2411 94 2651 94 2651 94 2411 94 2409 94 2651 94 2409 94 2652 94 2652 2109 2409 2109 2407 2109 2652 94 2407 94 2625 94 2625 2110 2407 2110 2405 2110 2625 2111 2405 2111 2403 2111 2343 94 2341 94 2629 94 2629 2112 2341 2112 2349 2112 2629 94 2349 94 2622 94 2622 2113 2349 2113 2348 2113 2622 94 2348 94 2346 94 2358 94 2356 94 2632 94 2632 94 2356 94 2364 94 2632 94 2364 94 2624 94 2624 94 2364 94 2363 94 2624 94 2363 94 2361 94 2653 94 2654 94 2386 94 2368 94 2366 94 2634 94 2634 94 2366 94 2376 94 2634 94 2376 94 2636 94 2636 2114 2376 2114 2375 2114 2636 94 2375 94 2373 94 2655 94 2390 94 2638 94 2638 2115 2390 2115 2388 2115 2638 2116 2388 2116 2440 2116 2373 94 2371 94 2635 94 2635 2117 2371 2117 2381 2117 2635 94 2381 94 2656 94 2656 2118 2381 2118 2380 2118 2656 2119 2380 2119 2654 2119 2654 2120 2380 2120 2378 2120 2654 2121 2378 2121 2386 2121 2386 94 2385 94 2653 94 2653 2122 2385 2122 2383 2122 2653 94 2383 94 2655 94 2655 2123 2383 2123 2391 2123 2655 2124 2391 2124 2390 2124 2661 2125 2662 2125 2639 2125 2665 2126 2666 2126 2622 2126 2622 2127 2667 2127 2629 2127 2667 2128 2668 2128 2629 2128 2629 2129 2668 2129 2669 2129 2669 2130 2670 2130 2630 2130 2625 2131 2682 2131 2652 2131 2682 2132 2683 2132 2652 2132 2652 2133 2683 2133 2684 2133 2652 2134 2684 2134 2651 2134 2684 2135 2685 2135 2651 2135 2651 2136 2686 2136 2650 2136 2686 2137 2687 2137 2650 2137 2650 2138 2688 2138 2649 2138 2688 2139 2689 2139 2649 2139 2649 2140 2690 2140 2648 2140 2648 2141 2690 2141 2691 2141 2648 2142 2691 2142 2647 2142 2647 2143 2692 2143 2646 2143 2692 2144 2693 2144 2646 2144 2646 2145 2693 2145 2694 2145 2646 2146 2694 2146 2645 2146 2694 2147 2695 2147 2645 2147 2645 2148 2695 2148 2696 2148 2645 2149 2696 2149 2644 2149 2696 2150 2697 2150 2644 2150 2644 2151 2697 2151 2698 2151 2644 2152 2698 2152 2643 2152 2698 2153 2699 2153 2643 2153 2641 2154 2704 2154 2640 2154 2704 2155 2705 2155 2640 2155 2640 2156 2705 2156 2706 2156 2640 2157 2706 2157 2637 2157 2637 2158 2706 2158 2707 2158 2707 2159 2708 2159 2637 2159 2637 2160 2708 2160 2709 2160 2637 2161 2709 2161 2638 2161 2709 2162 2710 2162 2638 2162 2638 2163 2710 2163 2711 2163 2638 2164 2711 2164 2655 2164 2711 2165 2712 2165 2655 2165 2655 2166 2712 2166 2713 2166 2655 2167 2713 2167 2653 2167 2713 2168 2714 2168 2653 2168 2653 2169 2714 2169 2715 2169 2653 2170 2715 2170 2654 2170 2715 2171 2716 2171 2654 2171 2654 2172 2716 2172 2717 2172 2654 2173 2717 2173 2656 2173 2717 2174 2718 2174 2656 2174 2656 2175 2718 2175 2719 2175 2656 2176 2719 2176 2635 2176 2719 2177 2720 2177 2635 2177 2635 2178 2721 2178 2636 2178 2721 2179 2722 2179 2636 2179 2723 2180 2724 2180 2634 2180 2728 94 2729 94 2730 94 2730 94 2729 94 2731 94 2730 94 2731 94 2732 94 2732 2181 2731 2181 2733 2181 2732 2182 2733 2182 2734 2182 2734 94 2733 94 2735 94 2734 94 2735 94 2736 94 2736 94 2735 94 2737 94 2740 2183 2739 2183 2741 2183 2740 2184 2741 2184 2738 2184 2734 2185 2736 2185 2720 2185 2720 2186 2719 2186 2734 2186 2734 2187 2719 2187 2718 2187 2734 2188 2718 2188 2732 2188 2742 2189 2728 2189 2713 2189 2718 2190 2717 2190 2732 2190 2732 2191 2717 2191 2716 2191 2732 2192 2716 2192 2730 2192 2730 2193 2716 2193 2715 2193 2730 2194 2715 2194 2728 2194 2728 2195 2715 2195 2714 2195 2728 2196 2714 2196 2713 2196 2743 2197 2724 2197 2741 2197 2741 2198 2724 2198 2723 2198 2741 2199 2723 2199 2738 2199 2738 2200 2723 2200 2722 2200 2738 2201 2722 2201 2736 2201 2736 2202 2722 2202 2721 2202 2736 2203 2721 2203 2720 2203 2742 2204 2713 2204 2744 2204 2744 2205 2713 2205 2712 2205 2744 2206 2712 2206 2745 2206 2712 2207 2711 2207 2745 2207 2745 2208 2711 2208 2710 2208 2745 2209 2710 2209 2746 2209 2746 2210 2710 2210 2709 2210 2746 2211 2709 2211 2747 2211 2709 2212 2708 2212 2747 2212 2747 2213 2708 2213 2707 2213 2747 2214 2707 2214 2748 2214 2707 2215 2706 2215 2748 2215 2748 2216 2706 2216 2705 2216 2748 2217 2705 2217 2749 2217 2705 2218 2704 2218 2749 2218 2749 2219 2704 2219 2703 2219 2749 2220 2703 2220 2750 2220 2703 2221 2702 2221 2750 2221 2750 2222 2702 2222 2701 2222 2750 2223 2701 2223 2751 2223 2701 2224 2700 2224 2751 2224 2751 2225 2700 2225 2699 2225 2751 2226 2699 2226 2752 2226 2699 2227 2698 2227 2752 2227 2752 2228 2698 2228 2697 2228 2752 2229 2697 2229 2753 2229 2697 2230 2696 2230 2753 2230 2753 2231 2696 2231 2695 2231 2753 2232 2695 2232 2754 2232 2695 2233 2694 2233 2754 2233 2754 2234 2694 2234 2693 2234 2754 2235 2693 2235 2755 2235 2693 2236 2692 2236 2755 2236 2755 2237 2692 2237 2691 2237 2755 2238 2691 2238 2756 2238 2756 2239 2691 2239 2690 2239 2756 2240 2690 2240 2757 2240 2757 2241 2689 2241 2758 2241 2689 2242 2688 2242 2758 2242 2758 2243 2688 2243 2687 2243 2758 2244 2687 2244 2759 2244 2687 2245 2686 2245 2759 2245 2759 2246 2686 2246 2685 2246 2759 2247 2685 2247 2760 2247 2685 2248 2684 2248 2760 2248 2760 2249 2684 2249 2683 2249 2760 2250 2683 2250 2761 2250 2683 2251 2682 2251 2761 2251 2761 2252 2682 2252 2681 2252 2761 2253 2681 2253 2762 2253 2681 2254 2680 2254 2762 2254 2762 2255 2680 2255 2679 2255 2762 2256 2679 2256 2763 2256 2679 2257 2678 2257 2763 2257 2763 2258 2678 2258 2677 2258 2763 2259 2677 2259 2764 2259 2677 2260 2676 2260 2764 2260 2764 2261 2676 2261 2675 2261 2764 2262 2675 2262 2765 2262 2675 2263 2674 2263 2765 2263 2765 2264 2674 2264 2673 2264 2765 2265 2673 2265 2766 2265 2766 2266 2673 2266 2672 2266 2766 2267 2672 2267 2767 2267 2672 2268 2671 2268 2767 2268 2767 2269 2671 2269 2670 2269 2767 2270 2670 2270 2768 2270 2670 2271 2669 2271 2768 2271 2768 2272 2669 2272 2668 2272 2768 2273 2668 2273 2769 2273 2668 2274 2667 2274 2769 2274 2769 2275 2667 2275 2666 2275 2769 2276 2666 2276 2770 2276 2666 2277 2665 2277 2770 2277 2770 2278 2665 2278 2664 2278 2770 2279 2664 2279 2771 2279 2664 2280 2663 2280 2771 2280 2771 2281 2663 2281 2662 2281 2771 2282 2662 2282 2772 2282 2662 2283 2661 2283 2772 2283 2772 2284 2661 2284 2660 2284 2772 2285 2660 2285 2773 2285 2660 2286 2659 2286 2773 2286 2773 2287 2659 2287 2658 2287 2773 2288 2658 2288 2774 2288 2658 2289 2657 2289 2774 2289 2774 2290 2657 2290 2727 2290 2774 2291 2727 2291 2775 2291 2775 2292 2727 2292 2726 2292 2775 2293 2726 2293 2743 2293 2743 2294 2726 2294 2725 2294 2743 2295 2725 2295 2724 2295 2739 2296 2776 2296 2777 2296 2739 94 2777 94 2741 94 2741 2297 2777 2297 2778 2297 2741 94 2778 94 2743 94 2743 94 2778 94 2779 94 2743 2298 2779 2298 2775 2298 2775 94 2779 94 2780 94 2775 94 2780 94 2774 94 2774 2299 2780 2299 2781 2299 2774 94 2781 94 2773 94 2773 94 2781 94 2782 94 2773 94 2782 94 2772 94 2772 2300 2782 2300 2783 2300 2772 94 2783 94 2771 94 2771 2301 2783 2301 2784 2301 2771 94 2784 94 2770 94 2770 94 2784 94 2785 94 2770 94 2785 94 2769 94 2769 94 2785 94 2786 94 2769 2302 2786 2302 2768 2302 2768 94 2786 94 2787 94 2768 2303 2787 2303 2767 2303 2767 94 2787 94 2788 94 2767 94 2788 94 2766 94 2766 2304 2788 2304 2789 2304 2766 94 2789 94 2765 94 2765 94 2789 94 2790 94 2765 94 2790 94 2764 94 2764 2305 2790 2305 2791 2305 2764 94 2791 94 2763 94 2763 94 2791 94 2792 94 2763 94 2792 94 2762 94 2762 2306 2792 2306 2793 2306 2762 94 2793 94 2761 94 2761 2307 2793 2307 2794 2307 2761 94 2794 94 2760 94 2760 94 2794 94 2795 94 2760 94 2795 94 2759 94 2759 94 2795 94 2796 94 2759 2308 2796 2308 2758 2308 2758 94 2796 94 2797 94 2758 2309 2797 2309 2757 2309 2757 94 2797 94 2798 94 2757 94 2798 94 2756 94 2756 94 2798 94 2799 94 2756 94 2799 94 2755 94 2755 94 2799 94 2800 94 2755 2310 2800 2310 2754 2310 2754 94 2800 94 2801 94 2754 2311 2801 2311 2753 2311 2753 94 2801 94 2802 94 2753 2312 2802 2312 2752 2312 2752 94 2802 94 2803 94 2752 2313 2803 2313 2751 2313 2751 2314 2803 2314 2804 2314 2751 2315 2804 2315 2750 2315 2750 94 2804 94 2805 94 2750 2316 2805 2316 2749 2316 2749 94 2805 94 2806 94 2749 2317 2806 2317 2748 2317 2745 94 2807 94 2744 94 2744 2318 2807 2318 2808 2318 2744 94 2808 94 2742 94 2742 2319 2808 2319 2809 2319 2777 119 2810 119 2811 119 2782 1072 2812 1072 2783 1072 2783 2320 2812 2320 2813 2320 2783 2321 2813 2321 2784 2321 2784 2322 2813 2322 2814 2322 2784 2323 2814 2323 2785 2323 2785 2324 2814 2324 2815 2324 2785 2325 2815 2325 2786 2325 2786 2326 2815 2326 2816 2326 2786 2327 2816 2327 2787 2327 2787 2328 2816 2328 2817 2328 2787 2329 2817 2329 2788 2329 2788 2330 2817 2330 2818 2330 2788 2330 2818 2330 2789 2330 2821 2331 2820 2331 2819 2331 2822 2332 2823 2332 2824 2332 2825 2333 2826 2333 2827 2333 2827 2334 2828 2334 2825 2334 2825 2335 2828 2335 2829 2335 2825 2336 2829 2336 2830 2336 2823 2337 2822 2337 2829 2337 2829 2338 2822 2338 2831 2338 2829 2339 2831 2339 2830 2339 2832 2340 2833 2340 2824 2340 2824 2341 2833 2341 2834 2341 2824 2342 2834 2342 2822 2342 2824 2343 2835 2343 2832 2343 2826 2344 2837 2344 2827 2344 2827 2345 2837 2345 2838 2345 2827 2346 2838 2346 2839 2346 2839 2347 2838 2347 2840 2347 2839 2348 2840 2348 2841 2348 2841 2349 2840 2349 2842 2349 2841 2350 2842 2350 2843 2350 2843 2351 2842 2351 2844 2351 2843 2352 2844 2352 2845 2352 2845 2353 2844 2353 2846 2353 2845 2354 2846 2354 2847 2354 2847 2355 2846 2355 2848 2355 2847 2356 2848 2356 2849 2356 2839 2357 2851 2357 2827 2357 2827 2358 2851 2358 2852 2358 2827 2359 2852 2359 2828 2359 2828 2360 2852 2360 2853 2360 2828 2361 2853 2361 2829 2361 2829 2362 2853 2362 2854 2362 2829 2363 2854 2363 2823 2363 2823 2364 2854 2364 2855 2364 2823 2365 2855 2365 2824 2365 2824 2366 2855 2366 2856 2366 2824 2367 2856 2367 2835 2367 2850 2368 2857 2368 2858 2368 2850 2369 2858 2369 2849 2369 2849 2370 2858 2370 2859 2370 2849 2371 2859 2371 2847 2371 2847 2372 2859 2372 2860 2372 2847 2373 2860 2373 2845 2373 2845 2374 2860 2374 2861 2374 2845 2375 2861 2375 2843 2375 2843 2376 2861 2376 2862 2376 2843 2377 2862 2377 2841 2377 2841 2378 2862 2378 2863 2378 2841 2379 2863 2379 2839 2379 2839 2380 2863 2380 2851 2380 2851 2381 2864 2381 2852 2381 2852 2382 2864 2382 2865 2382 2852 2383 2865 2383 2853 2383 2853 2384 2865 2384 2866 2384 2853 2385 2866 2385 2854 2385 2854 2386 2866 2386 2867 2386 2854 2387 2867 2387 2855 2387 2855 2388 2867 2388 2868 2388 2855 2389 2868 2389 2856 2389 2858 2390 2869 2390 2859 2390 2859 2391 2869 2391 2870 2391 2859 2392 2870 2392 2860 2392 2860 2393 2870 2393 2871 2393 2860 2394 2871 2394 2861 2394 2861 2395 2871 2395 2872 2395 2861 2396 2872 2396 2862 2396 2862 2397 2872 2397 2873 2397 2862 2398 2873 2398 2863 2398 2863 2399 2873 2399 2874 2399 2863 2400 2874 2400 2851 2400 2851 2401 2874 2401 2864 2401 2864 2402 2875 2402 2865 2402 2865 2403 2875 2403 2876 2403 2865 2404 2876 2404 2866 2404 2866 2405 2876 2405 2877 2405 2866 2406 2877 2406 2867 2406 2871 2407 2878 2407 2872 2407 2872 2408 2878 2408 2879 2408 2872 2409 2879 2409 2873 2409 2873 2410 2879 2410 2880 2410 2873 2411 2880 2411 2874 2411 2874 2412 2880 2412 2881 2412 2874 2413 2881 2413 2864 2413 2864 2414 2881 2414 2875 2414 2836 2415 2884 2415 2832 2415 2832 2416 2884 2416 2885 2416 2832 2417 2885 2417 2833 2417 2833 2418 2885 2418 2886 2418 2833 2419 2886 2419 2834 2419 2886 2420 2887 2420 2834 2420 2834 94 2887 94 2888 94 2834 2421 2888 2421 2822 2421 2822 94 2888 94 2889 94 2822 94 2889 94 2831 94 2831 2422 2889 2422 2890 2422 2831 2423 2890 2423 2830 2423 2830 2424 2890 2424 2891 2424 2830 94 2891 94 2825 94 2825 2425 2891 2425 2892 2425 2825 94 2892 94 2826 94 2826 2426 2892 2426 2893 2426 2826 94 2893 94 2837 94 2837 2427 2893 2427 2894 2427 2837 94 2894 94 2838 94 2838 2428 2894 2428 2895 2428 2838 94 2895 94 2840 94 2840 2429 2895 2429 2896 2429 2840 94 2896 94 2842 94 2842 94 2896 94 2897 94 2842 94 2897 94 2844 94 2844 2430 2897 2430 2898 2430 2844 94 2898 94 2846 94 2846 2431 2898 2431 2899 2431 2846 94 2899 94 2848 94 2848 2432 2899 2432 2900 2432 2902 2433 2883 2433 2882 2433 2903 2434 2885 2434 2904 2434 2904 2435 2885 2435 2884 2435 2904 2436 2884 2436 2905 2436 2906 2437 2888 2437 2907 2437 2907 2438 2888 2438 2887 2438 2907 2439 2887 2439 2903 2439 2903 2440 2887 2440 2886 2440 2903 2441 2886 2441 2885 2441 2908 2442 2891 2442 2909 2442 2909 2443 2891 2443 2890 2443 2909 2444 2890 2444 2906 2444 2906 2445 2890 2445 2889 2445 2906 2446 2889 2446 2888 2446 2912 2447 2901 2447 2913 2447 2913 2448 2901 2448 2900 2448 2913 2449 2900 2449 2914 2449 2914 2450 2900 2450 2899 2450 2914 2451 2899 2451 2915 2451 2915 2452 2899 2452 2898 2452 2915 2453 2898 2453 2916 2453 2916 2454 2898 2454 2897 2454 2916 2455 2897 2455 2917 2455 2917 2456 2897 2456 2896 2456 2917 2457 2896 2457 2918 2457 2918 2458 2896 2458 2895 2458 2918 2459 2895 2459 2919 2459 2919 2460 2895 2460 2894 2460 2919 2461 2894 2461 2920 2461 2920 2462 2894 2462 2893 2462 2920 2463 2893 2463 2908 2463 2908 2464 2893 2464 2892 2464 2908 2465 2892 2465 2891 2465 2921 2466 2922 2466 2923 2466 2923 2467 2922 2467 2924 2467 2923 2468 2924 2468 2925 2468 2926 2469 2927 2469 2928 2469 2928 2470 2927 2470 2929 2470 2928 2471 2929 2471 2921 2471 2921 2472 2929 2472 2930 2472 2921 2473 2930 2473 2922 2473 2931 2474 2932 2474 2933 2474 2933 2475 2934 2475 2935 2475 2935 2476 2934 2476 2936 2476 2935 2477 2936 2477 2926 2477 2926 2478 2936 2478 2937 2478 2926 2479 2937 2479 2927 2479 2938 2480 2939 2480 2931 2480 2931 2481 2939 2481 2940 2481 2931 2482 2940 2482 2932 2482 2941 2483 2942 2483 2943 2483 2944 2484 2947 2484 2945 2484 2948 2485 2949 2485 2946 2485 2946 2486 2949 2486 2950 2486 2924 2487 2951 2487 2925 2487 2925 2488 2951 2488 2952 2488 2925 2489 2952 2489 2953 2489 2953 2490 2952 2490 2954 2490 2953 2491 2954 2491 2955 2491 2955 2492 2954 2492 2956 2492 2955 2493 2956 2493 2957 2493 2957 2494 2956 2494 2958 2494 2957 2495 2958 2495 2959 2495 2959 2496 2958 2496 2960 2496 2959 2497 2960 2497 2961 2497 2961 2498 2960 2498 2962 2498 2961 2499 2962 2499 2963 2499 2963 2500 2962 2500 2964 2500 2965 2501 2966 2501 2967 2501 2970 2502 2971 2502 2972 2502 2948 2503 2973 2503 2974 2503 2948 2504 2974 2504 2949 2504 2919 2505 2925 2505 2918 2505 2918 2506 2925 2506 2953 2506 2918 2507 2953 2507 2917 2507 2917 2508 2953 2508 2955 2508 2917 2509 2955 2509 2916 2509 2916 2510 2955 2510 2957 2510 2916 2511 2957 2511 2915 2511 2915 2512 2957 2512 2959 2512 2915 2513 2959 2513 2914 2513 2914 2514 2959 2514 2961 2514 2914 2515 2961 2515 2913 2515 2913 2516 2961 2516 2963 2516 2911 2517 2968 2517 2910 2517 2910 2518 2968 2518 2969 2518 2904 2519 2938 2519 2931 2519 2904 2520 2931 2520 2903 2520 2903 2521 2931 2521 2933 2521 2903 2522 2933 2522 2907 2522 2907 2523 2933 2523 2935 2523 2907 2524 2935 2524 2906 2524 2906 2525 2935 2525 2926 2525 2906 2526 2926 2526 2909 2526 2909 2527 2926 2527 2928 2527 2909 2528 2928 2528 2908 2528 2908 2529 2928 2529 2921 2529 2908 2530 2921 2530 2920 2530 2920 2531 2921 2531 2923 2531 2920 2532 2923 2532 2919 2532 2919 2533 2923 2533 2925 2533 2977 94 2962 94 2960 94 2977 94 2960 94 2978 94 2978 2534 2960 2534 2958 2534 2978 94 2958 94 2979 94 2979 2535 2958 2535 2956 2535 2980 2536 2981 2536 2937 2536 2982 94 2983 94 2940 94 2922 94 2930 94 2976 94 2976 2537 2930 2537 2929 2537 2976 2538 2929 2538 2981 2538 2981 2539 2929 2539 2927 2539 2981 2540 2927 2540 2937 2540 2937 94 2936 94 2980 94 2980 94 2936 94 2934 94 2980 2541 2934 2541 2983 2541 2983 2542 2934 2542 2932 2542 2983 94 2932 94 2940 94 2940 2543 2939 2543 2982 2543 2987 2544 2975 2544 2988 2544 2989 2545 2980 2545 2990 2545 2990 2546 2980 2546 2983 2546 2990 2547 2983 2547 2991 2547 2991 2548 2983 2548 2982 2548 2992 2549 2986 2549 2993 2549 2993 2550 2986 2550 2985 2550 2993 2551 2985 2551 2994 2551 2994 2552 2985 2552 2984 2552 2997 2553 2993 2553 2994 2553 2997 2554 2998 2554 2993 2554 2993 2555 2998 2555 2999 2555 2993 2556 2999 2556 2992 2556 2999 2557 3000 2557 2992 2557 2992 2558 3000 2558 3001 2558 2992 2559 3001 2559 2991 2559 3001 2560 3002 2560 2991 2560 2991 2561 3002 2561 3003 2561 2991 2562 3003 2562 2990 2562 3003 2563 3004 2563 2990 2563 2990 2564 3004 2564 3005 2564 2990 2565 3005 2565 2989 2565 3023 2566 3024 2566 2996 2566 2996 2567 3024 2567 3025 2567 3025 2568 3026 2568 2995 2568 2995 2569 3026 2569 3027 2569 2994 2570 3028 2570 2997 2570 3029 94 3030 94 3031 94 3031 2571 3030 2571 3032 2571 3031 94 3032 94 3033 94 3033 94 3032 94 3034 94 3031 2572 3035 2572 3036 2572 3037 2573 3022 2573 3021 2573 3037 2574 3021 2574 3038 2574 3021 2575 3020 2575 3038 2575 3038 2576 3020 2576 3019 2576 3038 2577 3019 2577 3039 2577 3019 2578 3018 2578 3039 2578 3040 2579 3017 2579 3016 2579 3040 2580 3016 2580 3041 2580 3016 2581 3015 2581 3041 2581 3041 2582 3015 2582 3014 2582 3041 2583 3014 2583 3042 2583 3014 2584 3013 2584 3042 2584 3042 2585 3013 2585 3012 2585 3042 2586 3012 2586 3043 2586 3012 2587 3011 2587 3043 2587 3044 2588 3010 2588 3009 2588 3044 2589 3009 2589 3045 2589 3009 2590 3008 2590 3045 2590 3045 2591 3008 2591 3007 2591 3045 2592 3007 2592 3046 2592 3007 2593 3006 2593 3046 2593 3046 2594 3006 2594 3005 2594 3047 2595 3037 2595 3050 2595 3050 2596 3037 2596 3038 2596 3050 94 3038 94 3051 94 3051 94 3038 94 3039 94 3043 2597 3049 2597 3042 2597 3042 2598 3049 2598 3052 2598 3042 94 3052 94 3041 94 3041 2599 3052 2599 3053 2599 3041 94 3053 94 3040 94 3040 94 3053 94 3054 94 3046 94 3061 94 3045 94 3045 94 3061 94 3062 94 3045 2600 3062 2600 3044 2600 3044 94 3062 94 3063 94 3063 2601 3065 2601 3066 2601 3064 2602 3066 2602 3067 2602 3048 200 3068 200 3069 200 3048 2603 3069 2603 3049 2603 3049 202 3069 202 3070 202 3049 2604 3070 2604 3052 2604 3052 2605 3070 2605 3071 2605 3052 203 3071 203 3053 203 3053 2606 3071 2606 3072 2606 3053 2607 3072 2607 3054 2607 3054 2608 3072 2608 3073 2608 3055 2609 3074 2609 3075 2609 3055 2610 3075 2610 3056 2610 3056 2611 3075 2611 3076 2611 3056 2612 3076 2612 3057 2612 3057 2613 3076 2613 3077 2613 3057 216 3077 216 3058 216 3058 2614 3077 2614 3078 2614 3058 2615 3078 2615 3059 2615 3059 2616 3078 2616 3079 2616 3059 2617 3079 2617 3060 2617 3060 2618 3079 2618 3080 2618 3090 2619 3082 2619 3091 2619 3091 2620 3082 2620 3081 2620 3091 2621 3081 2621 3089 2621 3095 2622 3087 2622 3086 2622 3095 2623 3086 2623 3096 2623 3096 2624 3086 2624 3085 2624 3096 2625 3085 2625 3097 2625 3097 2626 3085 2626 3084 2626 3097 2627 3084 2627 3092 2627 3092 2628 3084 2628 3083 2628 3098 2629 3099 2629 3100 2629 3100 2630 3099 2630 3101 2630 3100 2631 3101 2631 3102 2631 3098 2632 3103 2632 3104 2632 3098 2473 3104 2473 3099 2473 3105 2633 3106 2633 3107 2633 3107 2634 3106 2634 3108 2634 3101 2635 3109 2635 3102 2635 3102 2636 3109 2636 3110 2636 3102 2637 3110 2637 3111 2637 3111 2638 3110 2638 3112 2638 3114 2639 3115 2639 3116 2639 3118 2640 3117 2640 3119 2640 3120 2641 3121 2641 3122 2641 3125 2642 3124 2642 3126 2642 3096 2643 3102 2643 3095 2643 3095 2644 3102 2644 3111 2644 3094 2645 3113 2645 3114 2645 3093 2646 3123 2646 3088 2646 3092 2647 3098 2647 3097 2647 3097 2648 3098 2648 3100 2648 3097 2649 3100 2649 3096 2649 3096 2650 3100 2650 3102 2650 3128 2651 3112 2651 3110 2651 3128 2652 3110 2652 3129 2652 3129 2653 3110 2653 3109 2653 3129 2654 3109 2654 3130 2654 3131 2655 3132 2655 3099 2655 3130 2656 3109 2656 3132 2656 3132 2657 3109 2657 3101 2657 3132 2658 3101 2658 3099 2658 3099 94 3104 94 3131 94 3131 2659 3104 2659 3103 2659 3131 2538 3103 2538 3134 2538 3139 2660 3127 2660 3140 2660 3141 2661 3128 2661 3142 2661 3128 2662 3129 2662 3142 2662 3143 2663 3130 2663 3132 2663 3143 2664 3132 2664 3144 2664 3144 2665 3132 2665 3131 2665 3144 2666 3131 2666 3145 2666 3145 2667 3131 2667 3134 2667 3145 2668 3134 2668 3146 2668 3146 1078 3134 1078 3133 1078 3146 2669 3133 2669 3147 2669 3147 2670 3133 2670 3136 2670 3147 2671 3136 2671 3148 2671 3148 2548 3136 2548 3135 2548 3148 2672 3135 2672 3149 2672 3149 2673 3135 2673 3138 2673 3149 2674 3138 2674 3150 2674 3150 2675 3138 2675 3137 2675 3150 2676 3137 2676 3151 2676 3154 2677 3150 2677 3151 2677 3154 2554 3155 2554 3150 2554 3150 2555 3155 2555 3156 2555 3150 2556 3156 2556 3149 2556 3156 2557 3157 2557 3149 2557 3149 2678 3157 2678 3158 2678 3149 2679 3158 2679 3148 2679 3158 2560 3159 2560 3148 2560 3148 2680 3159 2680 3160 2680 3148 2681 3160 2681 3147 2681 3160 2563 3161 2563 3147 2563 3147 2682 3161 2682 3162 2682 3147 2683 3162 2683 3146 2683 3162 1079 3163 1079 3146 1079 3146 1080 3163 1080 3164 1080 3146 2684 3164 2684 3145 2684 3164 2685 3165 2685 3145 2685 3145 2686 3165 2686 3166 2686 3145 1084 3166 1084 3144 1084 3166 2687 3167 2687 3144 2687 3144 2688 3167 2688 3168 2688 3144 2689 3168 2689 3143 2689 3143 2690 3170 2690 3142 2690 3170 2691 3171 2691 3142 2691 3142 158 3171 158 3172 158 3142 2692 3172 2692 3141 2692 3172 2693 3173 2693 3141 2693 3141 2694 3173 2694 3174 2694 3141 2695 3174 2695 3140 2695 3174 159 3175 159 3140 159 3140 2696 3175 2696 3176 2696 3140 2697 3176 2697 3139 2697 3176 2698 3177 2698 3139 2698 3153 2567 3178 2567 3179 2567 3152 2569 3180 2569 3181 2569 3152 2699 3181 2699 3151 2699 3151 2700 3181 2700 3182 2700 3151 2570 3182 2570 3154 2570 3190 2701 3172 2701 3171 2701 3190 2702 3171 2702 3191 2702 3191 2703 3171 2703 3170 2703 3191 2704 3170 2704 3192 2704 3170 2705 3169 2705 3192 2705 3192 2706 3169 2706 3168 2706 3192 2707 3168 2707 3193 2707 3168 2708 3167 2708 3193 2708 3193 2709 3167 2709 3166 2709 3193 2710 3166 2710 3194 2710 3166 2590 3165 2590 3194 2590 3194 2711 3165 2711 3164 2711 3194 2592 3164 2592 3195 2592 3196 2712 3155 2712 3154 2712 3197 2713 3183 2713 3198 2713 3198 94 3183 94 3184 94 3198 94 3184 94 3199 94 3184 94 3185 94 3199 94 3199 2714 3185 2714 3186 2714 3199 94 3186 94 3200 94 3200 2715 3186 2715 3187 2715 3200 2716 3187 2716 3201 2716 3201 2717 3187 2717 3188 2717 3201 2718 3188 2718 3202 2718 3195 94 3204 94 3194 94 3194 94 3204 94 3205 94 3194 2600 3205 2600 3193 2600 3193 94 3205 94 3206 94 3193 2719 3206 2719 3192 2719 3192 2720 3206 2720 3207 2720 3192 2721 3207 2721 3191 2721 3191 2722 3207 2722 3208 2722 3191 94 3208 94 3190 94 3190 94 3208 94 3203 94 3190 94 3203 94 3189 94 3209 2723 3210 2723 3211 2723 3211 2724 3210 2724 3212 2724 3211 2725 3212 2725 3213 2725 3213 2726 3212 2726 3214 2726 3215 2727 3216 2727 3217 2727 3217 2728 3218 2728 3219 2728 3219 2729 3218 2729 3220 2729 3219 2730 3220 2730 3221 2730 3221 2731 3222 2731 3223 2731 3224 2732 3225 2732 3226 2732 3226 1104 3225 1104 3227 1104 3228 2724 3227 2724 3229 2724 3228 2733 3229 2733 3230 2733 3230 2726 3229 2726 3231 2726 3230 1105 3231 1105 3232 1105 3233 2734 3234 2734 3235 2734 3235 234 3234 234 3236 234 3235 2735 3236 2735 3237 2735 3237 2736 3238 2736 3239 2736 3240 2737 3241 2737 3242 2737 3242 2738 3241 2738 3243 2738 3242 2739 3243 2739 3244 2739 3244 2740 3245 2740 3246 2740 3246 2741 3245 2741 3247 2741 3246 2742 3247 2742 3248 2742 3248 2743 3249 2743 3250 2743 3250 2744 3249 2744 3251 2744 3250 2745 3251 2745 3252 2745 3252 2746 3251 2746 3253 2746 3254 2747 3255 2747 3256 2747 3275 94 3260 94 3276 94 3275 94 3276 94 3277 94 3286 2748 3287 2748 3288 2748 3288 2749 3287 2749 3289 2749 3292 94 3293 94 3294 94 3294 94 3293 94 3295 94 3294 94 3295 94 3296 94 3288 94 3291 94 3297 94 3297 94 3259 94 3298 94 3298 94 3259 94 3258 94 3288 2750 3294 2750 3296 2750 3288 94 3296 94 3286 94 3300 2751 3301 2751 3294 2751 3299 94 3288 94 3304 94 3304 94 3288 94 3297 94 3304 94 3297 94 3305 94 3305 94 3297 94 3298 94 3282 94 3279 94 3283 94 3283 94 3279 94 3278 94 3283 94 3278 94 3284 94 3284 94 3278 94 3280 94 3284 94 3280 94 3285 94 3285 94 3280 94 3281 94 3268 94 3267 94 3257 94 3317 94 3318 94 3269 94 3269 2752 3318 2752 3319 2752 3269 2753 3319 2753 3316 2753 3316 94 3313 94 3269 94 3269 2754 3313 2754 3320 2754 3312 94 3314 94 3315 94 3306 94 3308 94 3307 94 3307 94 3308 94 3310 94 3307 94 3310 94 3261 94 3261 94 3310 94 3270 94 3261 94 3270 94 3262 94 3262 94 3270 94 3272 94 3262 94 3272 94 3263 94 3263 94 3273 94 3264 94 3264 94 3273 94 3321 94 3265 94 3324 94 3266 94 3266 94 3324 94 3274 94 3322 94 3325 94 3323 94 3334 94 3271 94 3311 94 3334 94 3311 94 3335 94 3335 94 3311 94 3309 94 3335 94 3309 94 3294 94 3294 94 3309 94 3290 94 3294 94 3290 94 3292 94 3336 94 3260 94 3326 94 3337 94 3338 94 3326 94 3326 94 3338 94 3339 94 3326 2755 3339 2755 3336 2755 3336 94 3341 94 3260 94 3260 2756 3341 2756 3342 2756 3260 94 3342 94 3276 94 3294 94 3303 94 3302 94 3294 94 3302 94 3335 94 3335 94 3302 94 3343 94 3335 94 3343 94 3334 94 3334 94 3344 94 3333 94 3332 94 3345 94 3346 94 3332 94 3346 94 3331 94 3331 94 3346 94 3347 94 3330 94 3347 94 3348 94 3330 94 3348 94 3329 94 3329 94 3348 94 3349 94 3328 94 3349 94 3350 94 3328 94 3350 94 3327 94 3327 94 3350 94 3351 94 3326 94 3351 94 3340 94 3326 94 3340 94 3337 94 3352 94 3266 94 3353 94 3353 94 3266 94 3274 94 3354 2757 3356 2757 3355 2757 3363 2758 3364 2758 3365 2758 3365 2759 3364 2759 3366 2759 3365 2760 3366 2760 3367 2760 3367 2761 3366 2761 3368 2761 3373 2762 3374 2762 3375 2762 3375 2763 3374 2763 3376 2763 3375 2764 3376 2764 3377 2764 3377 2765 3376 2765 3378 2765 3377 120 3378 120 3379 120 3379 120 3378 120 3380 120 3383 2766 3382 2766 3384 2766 3382 2767 3386 2767 3387 2767 3382 2768 3387 2768 3388 2768 3388 2769 3387 2769 3389 2769 3388 2770 3389 2770 3390 2770 3390 2771 3389 2771 3391 2771 3394 2772 3393 2772 3395 2772 3394 2773 3397 2773 3398 2773 3397 2774 3399 2774 3398 2774 3398 2775 3399 2775 3400 2775 3398 2776 3400 2776 3401 2776 3401 2777 3400 2777 3402 2777 3402 2778 3403 2778 3401 2778 3401 2779 3403 2779 3404 2779 3401 2780 3404 2780 3405 2780 3404 2781 3406 2781 3405 2781 3405 2782 3406 2782 3407 2782 3405 2783 3407 2783 3408 2783 3407 2784 3409 2784 3408 2784 3408 2785 3409 2785 3410 2785 3408 2786 3410 2786 3411 2786 3411 2787 3414 2787 3415 2787 3416 2788 3417 2788 3418 2788 3416 2789 3419 2789 3417 2789 3417 2790 3419 2790 3420 2790 3417 2791 3420 2791 3421 2791 3421 2792 3420 2792 3422 2792 3421 2793 3422 2793 3423 2793 3423 2794 3422 2794 3424 2794 3424 2795 3425 2795 3423 2795 3423 2796 3425 2796 3426 2796 3423 2797 3426 2797 3427 2797 3384 2798 3428 2798 3429 2798 3430 2799 3431 2799 3432 2799 3436 2800 3437 2800 3438 2800 3438 2801 3437 2801 3439 2801 3440 2802 3441 2802 3442 2802 3442 2803 3441 2803 3443 2803 3442 2804 3443 2804 3444 2804 3444 2805 3443 2805 3445 2805 3447 2806 3448 2806 3449 2806 3449 2807 3448 2807 3450 2807 3449 2808 3450 2808 3451 2808 3451 2809 3450 2809 3452 2809 3451 2810 3452 2810 3446 2810 3432 2811 3431 2811 3453 2811 3431 2812 3454 2812 3453 2812 3453 2813 3454 2813 3455 2813 3453 2814 3455 2814 3456 2814 3456 2815 3455 2815 3457 2815 3458 2816 3459 2816 3460 2816 3460 2817 3459 2817 3461 2817 3460 2818 3461 2818 3462 2818 3462 2819 3461 2819 3463 2819 3462 2820 3463 2820 3464 2820 3464 2821 3463 2821 3465 2821 3466 2822 3467 2822 3468 2822 3469 2823 3470 2823 3471 2823 3471 2824 3470 2824 3472 2824 3471 2825 3472 2825 3467 2825 3467 2826 3472 2826 3473 2826 3467 2827 3473 2827 3468 2827 3438 2828 3474 2828 3436 2828 3436 2829 3474 2829 3475 2829 3436 2830 3475 2830 3476 2830 3476 2831 3475 2831 3477 2831 3476 2832 3477 2832 3469 2832 3469 2833 3477 2833 3478 2833 3469 2834 3478 2834 3470 2834 3436 2835 3391 2835 3437 2835 3437 2836 3391 2836 3389 2836 3389 2837 3387 2837 3437 2837 3437 2838 3387 2838 3441 2838 3437 2839 3441 2839 3439 2839 3439 2840 3441 2840 3440 2840 3387 2841 3386 2841 3441 2841 3441 2842 3386 2842 3381 2842 3441 2843 3381 2843 3443 2843 3443 2844 3381 2844 3383 2844 3443 2845 3383 2845 3445 2845 3445 2846 3385 2846 3429 2846 3446 2847 3426 2847 3425 2847 3446 2848 3425 2848 3451 2848 3451 2849 3425 2849 3424 2849 3451 2850 3424 2850 3449 2850 3449 2851 3424 2851 3422 2851 3422 2852 3420 2852 3449 2852 3449 2853 3420 2853 3433 2853 3449 2854 3433 2854 3447 2854 3447 2855 3433 2855 3435 2855 3420 2856 3419 2856 3433 2856 3433 2857 3419 2857 3416 2857 3433 2858 3416 2858 3434 2858 3456 2859 3414 2859 3413 2859 3453 2860 3413 2860 3412 2860 3453 2861 3412 2861 3432 2861 3410 2862 3409 2862 3432 2862 3432 2863 3409 2863 3459 2863 3432 2864 3459 2864 3430 2864 3430 2865 3459 2865 3458 2865 3409 2866 3407 2866 3459 2866 3459 2867 3407 2867 3406 2867 3459 2868 3406 2868 3461 2868 3461 2869 3406 2869 3404 2869 3461 2870 3404 2870 3463 2870 3463 2871 3404 2871 3403 2871 3403 2872 3402 2872 3463 2872 3463 2873 3402 2873 3466 2873 3463 2874 3466 2874 3465 2874 3465 2875 3466 2875 3468 2875 3402 2876 3400 2876 3466 2876 3466 2877 3400 2877 3399 2877 3466 2878 3399 2878 3467 2878 3467 2879 3399 2879 3397 2879 3467 2880 3397 2880 3471 2880 3397 2881 3396 2881 3471 2881 3471 2882 3396 2882 3395 2882 3471 2883 3395 2883 3469 2883 3469 2884 3395 2884 3393 2884 3469 2885 3393 2885 3476 2885 3476 2886 3393 2886 3392 2886 3447 2887 3479 2887 3448 2887 3448 2888 3479 2888 3480 2888 3448 2889 3480 2889 3450 2889 3450 2890 3480 2890 3481 2890 3450 2891 3481 2891 3452 2891 3455 2892 3482 2892 3457 2892 3460 2893 3483 2893 3458 2893 3458 2894 3483 2894 3484 2894 3458 2895 3484 2895 3430 2895 3430 2896 3484 2896 3485 2896 3430 2897 3485 2897 3431 2897 3431 2898 3485 2898 3486 2898 3431 2899 3486 2899 3454 2899 3454 2900 3486 2900 3487 2900 3454 2901 3487 2901 3455 2901 3455 2902 3487 2902 3488 2902 3455 2903 3488 2903 3482 2903 3464 2904 3489 2904 3462 2904 3462 2905 3489 2905 3490 2905 3462 2906 3490 2906 3460 2906 3460 2907 3490 2907 3491 2907 3460 2908 3491 2908 3483 2908 3470 2909 3492 2909 3472 2909 3472 2910 3492 2910 3493 2910 3472 2911 3493 2911 3473 2911 3473 2912 3493 2912 3494 2912 3473 2913 3494 2913 3468 2913 3468 2914 3494 2914 3495 2914 3468 2915 3495 2915 3465 2915 3465 2916 3495 2916 3496 2916 3465 2917 3496 2917 3464 2917 3464 2918 3496 2918 3497 2918 3464 2919 3497 2919 3489 2919 3438 2920 3498 2920 3474 2920 3474 2921 3498 2921 3499 2921 3474 2922 3499 2922 3475 2922 3475 2923 3499 2923 3500 2923 3475 2924 3500 2924 3477 2924 3477 2925 3500 2925 3501 2925 3477 2926 3501 2926 3478 2926 3478 2927 3501 2927 3502 2927 3478 2928 3502 2928 3470 2928 3470 2929 3502 2929 3503 2929 3470 2930 3503 2930 3492 2930 3440 2931 3504 2931 3439 2931 3439 2932 3504 2932 3505 2932 3439 2933 3505 2933 3438 2933 3438 2934 3505 2934 3506 2934 3438 2935 3506 2935 3498 2935 3442 2936 3507 2936 3440 2936 3440 2937 3507 2937 3508 2937 3440 2938 3508 2938 3504 2938 3489 2939 3497 2939 3509 2939 3509 2940 3497 2940 3496 2940 3509 2941 3496 2941 3510 2941 3510 2942 3496 2942 3495 2942 3510 2943 3495 2943 3511 2943 3511 2944 3495 2944 3494 2944 3511 2945 3494 2945 3512 2945 3512 2946 3494 2946 3493 2946 3489 2947 3509 2947 3490 2947 3490 2948 3509 2948 3513 2948 3490 2949 3513 2949 3491 2949 3491 2950 3513 2950 3514 2950 3491 2951 3514 2951 3483 2951 3483 2952 3514 2952 3515 2952 3483 2953 3515 2953 3484 2953 3516 2954 3487 2954 3517 2954 3517 2955 3487 2955 3486 2955 3517 2956 3486 2956 3515 2956 3515 2957 3486 2957 3485 2957 3515 2958 3485 2958 3484 2958 3522 2959 3521 2959 3523 2959 3522 2960 3523 2960 3524 2960 3524 2961 3523 2961 3525 2961 3524 2962 3525 2962 3526 2962 3526 2963 3525 2963 3527 2963 3526 2964 3527 2964 3528 2964 3528 2965 3527 2965 3529 2965 3528 2966 3529 2966 3530 2966 3530 2967 3529 2967 3531 2967 3530 2968 3531 2968 3532 2968 3532 2969 3531 2969 3533 2969 3532 2970 3533 2970 3512 2970 3512 2971 3533 2971 3534 2971 3512 2972 3534 2972 3511 2972 3511 2973 3534 2973 3535 2973 3511 2974 3535 2974 3510 2974 3510 2975 3535 2975 3536 2975 3510 2976 3536 2976 3509 2976 3509 2977 3536 2977 3537 2977 3509 2978 3537 2978 3513 2978 3513 2979 3537 2979 3538 2979 3513 2980 3538 2980 3514 2980 3514 2981 3538 2981 3539 2981 3514 2982 3539 2982 3515 2982 3515 2983 3539 2983 3540 2983 3515 2984 3540 2984 3517 2984 3517 2985 3540 2985 3541 2985 3517 2986 3541 2986 3516 2986 3520 2987 3480 2987 3479 2987 3504 2988 3522 2988 3505 2988 3505 2989 3522 2989 3524 2989 3505 2990 3524 2990 3506 2990 3506 2991 3524 2991 3526 2991 3506 2992 3526 2992 3498 2992 3498 2993 3526 2993 3528 2993 3498 2994 3528 2994 3499 2994 3493 2995 3492 2995 3512 2995 3512 2996 3492 2996 3503 2996 3512 2997 3503 2997 3532 2997 3532 2998 3503 2998 3502 2998 3532 2999 3502 2999 3530 2999 3530 3000 3502 3000 3501 3000 3530 3001 3501 3001 3528 3001 3528 3002 3501 3002 3500 3002 3528 3003 3500 3003 3499 3003 3543 3004 3542 3004 3544 3004 3543 3005 3544 3005 3545 3005 3545 3006 3544 3006 3546 3006 3551 3007 3552 3007 3553 3007 3553 3008 3552 3008 3554 3008 3553 2765 3554 2765 3555 2765 3555 2765 3554 2765 3556 2765 3558 94 3559 94 3560 94 3560 3009 3559 3009 3561 3009 3357 94 3562 94 3560 94 3560 3010 3562 3010 3563 3010 3560 94 3563 94 3558 94 3371 94 3565 94 3372 94 3359 94 3370 94 3369 94 3359 94 3369 94 3357 94 3357 94 3369 94 3368 94 3368 94 3564 94 3357 94 3527 3011 3566 3011 3567 3011 3527 94 3525 94 3566 94 3566 3012 3525 3012 3523 3012 3566 3013 3523 3013 3521 3013 3569 3014 3550 3014 3549 3014 3357 94 3548 94 3358 94 3548 94 3547 94 3358 94 3358 94 3547 94 3546 94 3358 3015 3546 3015 3572 3015 3544 94 3572 94 3546 94 3560 94 3541 94 3540 94 3540 94 3539 94 3560 94 3560 3016 3539 3016 3538 3016 3560 3017 3538 3017 3357 3017 3357 3018 3538 3018 3537 3018 3357 3019 3537 3019 3536 3019 3536 94 3535 94 3357 94 3357 3020 3535 3020 3534 3020 3357 94 3534 94 3533 94 3567 94 3568 94 3527 94 3527 3021 3568 3021 3549 3021 3527 94 3549 94 3529 94 3529 94 3549 94 3357 94 3529 3022 3357 3022 3531 3022 3531 94 3357 94 3533 94 3571 94 3570 94 3552 94 3519 94 3518 94 3554 94 3554 3023 3518 3023 3360 3023 3556 94 3362 94 3557 94 3360 94 3380 94 3361 94 3361 94 3380 94 3378 94 3361 94 3378 94 3376 94 3573 3024 3574 3024 3575 3024 3575 3025 3576 3025 3573 3025 3573 3026 3576 3026 3577 3026 3573 3027 3577 3027 3578 3027 3578 3028 3577 3028 3579 3028 3578 3029 3579 3029 3580 3029 3580 3030 3579 3030 3581 3030 3580 3031 3581 3031 3582 3031 3582 3032 3583 3032 3584 3032 3584 3033 3583 3033 3585 3033 3584 3034 3585 3034 3586 3034 3586 3035 3585 3035 3587 3035 3586 3036 3587 3036 3588 3036 3588 3037 3587 3037 3589 3037 3588 3038 3589 3038 3590 3038 3590 3039 3589 3039 3591 3039 3590 3040 3591 3040 3592 3040 3592 3041 3591 3041 3593 3041 3594 3042 3593 3042 3595 3042 3594 3043 3595 3043 3596 3043 3596 3044 3595 3044 3597 3044 3596 3045 3597 3045 3598 3045 3598 3046 3597 3046 3599 3046 3598 3047 3599 3047 3600 3047 3600 3048 3599 3048 3601 3048 3600 3049 3601 3049 3602 3049 3602 3050 3603 3050 3604 3050 3604 3051 3603 3051 3605 3051 3604 3052 3605 3052 3606 3052 3606 3053 3605 3053 3607 3053 3606 3054 3607 3054 3608 3054 3608 3055 3607 3055 3609 3055 3608 3056 3609 3056 3610 3056 3610 3057 3609 3057 3611 3057 3610 3058 3611 3058 3612 3058 3612 3059 3611 3059 3613 3059 3612 3060 3613 3060 3614 3060 3615 3061 3575 3061 3574 3061 3574 3062 3616 3062 3615 3062 3615 3063 3616 3063 3617 3063 3615 3064 3617 3064 3618 3064 3618 3065 3617 3065 3619 3065 3618 3066 3619 3066 3620 3066 3620 3067 3619 3067 3621 3067 3620 3068 3621 3068 3622 3068 3622 3069 3621 3069 3623 3069 3622 3070 3623 3070 3624 3070 3624 3071 3623 3071 3625 3071 3624 3072 3625 3072 3626 3072 3626 3073 3625 3073 3627 3073 3626 3074 3627 3074 3628 3074 3628 3075 3627 3075 3629 3075 3628 3076 3629 3076 3630 3076 3630 3077 3629 3077 3631 3077 3630 3078 3631 3078 3632 3078 3632 3079 3631 3079 3633 3079 3632 3080 3633 3080 3634 3080 3634 3081 3633 3081 3635 3081 3634 3082 3635 3082 3636 3082 3636 3083 3635 3083 3637 3083 3636 3084 3637 3084 3638 3084 3638 3085 3637 3085 3639 3085 3638 3086 3639 3086 3640 3086 3640 3087 3639 3087 3641 3087 3640 3088 3641 3088 3642 3088 3642 3089 3641 3089 3643 3089 3642 3090 3643 3090 3644 3090 3644 3091 3643 3091 3645 3091 3644 3092 3645 3092 3646 3092 3646 3093 3645 3093 3647 3093 3646 3094 3647 3094 3648 3094 3648 3095 3647 3095 3649 3095 3648 3096 3649 3096 3650 3096 3650 3097 3649 3097 3651 3097 3650 3098 3651 3098 3652 3098 3652 3099 3651 3099 3614 3099 3652 3100 3614 3100 3613 3100 3660 3101 3661 3101 3662 3101 3662 3102 3661 3102 3663 3102 3662 3103 3663 3103 3664 3103 3664 3104 3665 3104 3666 3104 3666 3105 3665 3105 3667 3105 3668 3106 3667 3106 3669 3106 3670 3107 3669 3107 3671 3107 3670 3108 3671 3108 3672 3108 3672 3109 3671 3109 3673 3109 3676 3110 3675 3110 3677 3110 3678 3111 3677 3111 3679 3111 3680 3112 3679 3112 3681 3112 3682 3113 3681 3113 3683 3113 3682 3114 3683 3114 3684 3114 3684 3115 3683 3115 3685 3115 3684 3116 3685 3116 3686 3116 3686 3117 3685 3117 3687 3117 3660 3118 3687 3118 3688 3118 3660 3119 3688 3119 3661 3119 3689 3120 3690 3120 3691 3120 3691 3121 3690 3121 3692 3121 3691 3122 3692 3122 3693 3122 3693 3123 3692 3123 3694 3123 3695 3124 3696 3124 3697 3124 3697 3125 3696 3125 3698 3125 3697 3126 3698 3126 3699 3126 3699 3127 3700 3127 3701 3127 3701 3128 3702 3128 3674 3128 3674 3129 3703 3129 3675 3129 3704 3130 3705 3130 3706 3130 3706 3131 3705 3131 3707 3131 3706 3132 3707 3132 3708 3132 3708 3133 3707 3133 3709 3133 3710 3134 3709 3134 3711 3134 3710 3135 3711 3135 3712 3135 3712 3136 3711 3136 3713 3136 3712 3137 3713 3137 3714 3137 3716 3138 3715 3138 3717 3138 3716 3139 3717 3139 3718 3139 3718 3140 3717 3140 3719 3140 3718 3141 3719 3141 3720 3141 3720 3142 3719 3142 3721 3142 3689 3143 3721 3143 3722 3143 3723 3144 3729 3144 3730 3144 3724 3145 3738 3145 3739 3145 3725 3146 3744 3146 3745 3146 3726 3147 3746 3147 3727 3147 3728 3148 3748 3148 3655 3148 3731 3149 3751 3149 3752 3149 3731 3150 3752 3150 3732 3150 3733 3151 3754 3151 3755 3151 3734 3152 3756 3152 3735 3152 3736 3153 3757 3153 3758 3153 3737 3154 3759 3154 3760 3154 3740 3155 3764 3155 3765 3155 3741 3156 3767 3156 3742 3156 3742 3157 3768 3157 3743 3157 3744 3158 3770 3158 3771 3158 3747 3159 3774 3159 3775 3159 3748 3160 3775 3160 3776 3160 3655 3161 3776 3161 3654 3161 3656 3162 3657 3162 3658 3162 3749 3163 3777 3163 3750 3163 3751 3164 3779 3164 3752 3164 3753 3165 3781 3165 3754 3165 3754 3166 3781 3166 3782 3166 3756 3167 3784 3167 3757 3167 3759 3168 3786 3168 3787 3168 3760 3169 3788 3169 3761 3169 3762 3170 3790 3170 3763 3170 3764 3171 3792 3171 3765 3171 3766 3172 3794 3172 3767 3172 3768 3173 3795 3173 3796 3173 3769 3174 3797 3174 3770 3174 3771 3175 3798 3175 3799 3175 3772 3176 3800 3176 3773 3176 3773 3177 3801 3177 3774 3177 3775 3178 3802 3178 3803 3178 3776 3179 3804 3179 3654 3179 3654 3180 3804 3180 3653 3180 3658 3181 3704 3181 3706 3181 3777 3182 3708 3182 3778 3182 3778 3183 3708 3183 3710 3183 3779 3184 3710 3184 3712 3184 3780 3185 3712 3185 3714 3185 3780 3186 3714 3186 3781 3186 3781 3187 3714 3187 3716 3187 3782 3188 3718 3188 3783 3188 3784 3189 3720 3189 3689 3189 3784 3190 3689 3190 3785 3190 3785 3191 3691 3191 3786 3191 3786 3192 3691 3192 3693 3192 3787 3193 3695 3193 3788 3193 3788 3194 3695 3194 3697 3194 3788 3195 3697 3195 3789 3195 3790 3196 3701 3196 3791 3196 3791 3197 3701 3197 3674 3197 3791 3198 3674 3198 3792 3198 3792 3199 3674 3199 3676 3199 3793 3200 3676 3200 3678 3200 3793 3201 3678 3201 3794 3201 3795 3202 3680 3202 3682 3202 3796 3203 3682 3203 3684 3203 3797 3204 3686 3204 3798 3204 3798 3205 3660 3205 3799 3205 3800 3206 3664 3206 3801 3206 3801 3207 3666 3207 3802 3207 3802 3208 3666 3208 3668 3208 3803 3209 3668 3209 3670 3209 3803 3210 3670 3210 3804 3210 3804 3211 3670 3211 3672 3211 3804 3212 3672 3212 3653 3212 3653 3213 3672 3213 3673 3213 3659 3214 3673 3214 3671 3214 3659 3215 3671 3215 3805 3215 3806 3216 3807 3216 3808 3216 3808 3217 3807 3217 3809 3217 3808 3218 3809 3218 3810 3218 3810 3219 3809 3219 3811 3219 3810 3220 3811 3220 3812 3220 3821 3221 3822 3221 3823 3221 3825 3222 3824 3222 3826 3222 3827 3223 3828 3223 3829 3223 3829 3224 3830 3224 3831 3224 3831 95 3832 95 3833 95 3833 95 3832 95 3834 95 3836 3225 3837 3225 3827 3225 3854 3226 3853 3226 3855 3226 3858 3227 3857 3227 3859 3227 3858 3228 3859 3228 3860 3228 3869 3229 3818 3229 3819 3229 3870 3230 3871 3230 3872 3230 3873 3231 3874 3231 3875 3231 3869 3232 3819 3232 3876 3232 3870 94 3872 94 3877 94 3878 94 3879 94 3880 94 3881 3233 3835 3233 3836 3233 3873 3234 3875 3234 3882 3234 3883 3235 3816 3235 3817 3235 3878 3236 3880 3236 3884 3236 3807 3237 3882 3237 3809 3237 3809 94 3882 94 3875 94 3809 3238 3875 3238 3811 3238 3811 3239 3875 3239 3883 3239 3811 3240 3883 3240 3813 3240 3813 94 3883 94 3817 94 3885 94 3876 94 3886 94 3886 3241 3876 3241 3819 3241 3886 3242 3819 3242 3887 3242 3887 94 3819 94 3814 94 3820 94 3877 94 3822 94 3822 94 3877 94 3872 94 3822 94 3872 94 3824 94 3824 3243 3872 3243 3888 3243 3824 3244 3888 3244 3889 3244 3891 3245 3841 3245 3840 3245 3892 3246 3893 3246 3891 3246 3839 3247 3838 3247 3894 3247 3895 94 3842 94 3896 94 3896 94 3842 94 3816 94 3896 94 3816 94 3897 94 3897 3248 3816 3248 3883 3248 3898 94 3899 94 3845 94 3814 3249 3815 3249 3887 3249 3887 3250 3815 3250 3816 3250 3887 94 3816 94 3900 94 3900 94 3816 94 3842 94 3900 94 3842 94 3901 94 3901 3251 3842 3251 3843 3251 3901 3252 3843 3252 3902 3252 3902 3253 3843 3253 3889 3253 3862 3254 3861 3254 3841 3254 3826 3255 3851 3255 3833 3255 3833 3256 3851 3256 3850 3256 3903 3257 3904 3257 3839 3257 3839 3258 3904 3258 3905 3258 3839 94 3905 94 3840 94 3840 3259 3905 3259 3906 3259 3840 94 3906 94 3891 94 3891 94 3906 94 3907 94 3891 3260 3907 3260 3892 3260 3895 94 3908 94 3842 94 3842 3261 3908 3261 3898 3261 3842 94 3898 94 3846 94 3846 3262 3898 3262 3845 3262 3881 94 3836 94 3909 94 3831 3263 3868 3263 3829 3263 3829 3264 3868 3264 3867 3264 3850 94 3849 94 3833 94 3833 3265 3849 3265 3848 3265 3833 94 3848 94 3831 94 3831 3266 3848 3266 3847 3266 3831 94 3847 94 3868 94 3841 3267 3861 3267 3844 3267 3844 94 3861 94 3859 94 3844 3268 3859 3268 3843 3268 3843 94 3859 94 3857 94 3843 3269 3857 3269 3856 3269 3910 94 3884 94 3911 94 3911 3270 3884 3270 3880 3270 3911 94 3880 94 3893 94 3893 94 3880 94 3912 94 3893 94 3912 94 3891 94 3839 3271 3894 3271 3903 3271 3903 3272 3894 3272 3913 3272 3903 94 3913 94 3914 94 3856 3273 3855 3273 3843 3273 3843 3274 3855 3274 3853 3274 3843 94 3853 94 3889 94 3826 94 3824 94 3851 94 3851 3275 3824 3275 3889 3275 3851 94 3889 94 3852 94 3852 94 3889 94 3853 94 3915 94 3909 94 3916 94 3916 3276 3909 3276 3836 3276 3867 94 3866 94 3829 94 3829 3277 3866 3277 3865 3277 3841 3278 3864 3278 3863 3278 3841 94 3863 94 3862 94 3891 3279 3917 3279 3890 3279 3880 1349 3918 1349 3919 1349 3920 3280 3921 3280 3922 3280 3923 3281 3924 3281 3922 3281 3922 3282 3924 3282 3925 3282 3922 3283 3925 3283 3920 3283 3923 3284 3927 3284 3928 3284 3923 3285 3928 3285 3924 3285 3933 3286 3934 3286 3930 3286 3936 3287 3937 3287 3933 3287 3933 3288 3937 3288 3938 3288 3933 3289 3938 3289 3934 3289 3939 3290 3940 3290 3941 3290 3941 3291 3940 3291 3942 3291 3941 3292 3942 3292 3936 3292 3936 3293 3942 3293 3943 3293 3936 3294 3943 3294 3937 3294 3939 3295 3941 3295 3944 3295 3944 3296 3941 3296 3945 3296 3944 3297 3945 3297 3946 3297 3947 3298 3948 3298 3949 3298 3949 3299 3948 3299 3950 3299 3949 3300 3950 3300 3945 3300 3945 3301 3950 3301 3951 3301 3945 3302 3951 3302 3946 3302 3947 3303 3949 3303 3952 3303 3952 3304 3949 3304 3953 3304 3952 3305 3953 3305 3954 3305 3955 3306 3956 3306 3953 3306 3953 3307 3956 3307 3957 3307 3953 3308 3957 3308 3954 3308 3960 3309 3959 3309 3961 3309 3960 3310 3961 3310 3955 3310 3955 3311 3961 3311 3962 3311 3955 3312 3962 3312 3956 3312 3965 3313 3964 3313 3966 3313 3965 3314 3966 3314 3967 3314 3968 3315 3969 3315 3966 3315 3966 3316 3969 3316 3970 3316 3966 3317 3970 3317 3967 3317 3971 3318 3972 3318 3968 3318 3968 3319 3972 3319 3973 3319 3968 3320 3973 3320 3969 3320 3920 3321 3974 3321 3921 3321 3921 3322 3974 3322 3975 3322 3921 3323 3975 3323 3971 3323 3971 3324 3975 3324 3976 3324 3971 3325 3976 3325 3972 3325 3938 3326 3937 3326 3977 3326 3978 3327 3979 3327 3975 3327 3975 3328 3979 3328 3976 3328 3976 3329 3979 3329 3980 3329 3976 3330 3980 3330 3972 3330 3972 3331 3980 3331 3973 3331 3973 3332 3980 3332 3981 3332 3973 3333 3981 3333 3969 3333 3969 3334 3981 3334 3970 3334 3970 3335 3981 3335 3982 3335 3970 3336 3982 3336 3967 3336 3961 3337 3959 3337 3984 3337 3984 3338 3959 3338 3958 3338 3984 3339 3958 3339 3983 3339 3983 3340 3958 3340 3963 3340 3961 3341 3984 3341 3962 3341 3962 3342 3984 3342 3985 3342 3962 3343 3985 3343 3956 3343 3956 3344 3985 3344 3986 3344 3956 3345 3986 3345 3957 3345 3987 3346 3947 3346 3952 3346 3987 3347 3952 3347 3986 3347 3986 3348 3952 3348 3954 3348 3986 3349 3954 3349 3957 3349 3987 3350 3950 3350 3948 3350 3987 3351 3948 3351 3947 3351 3977 3352 3937 3352 3989 3352 3937 3353 3943 3353 3989 3353 3989 3354 3943 3354 3942 3354 3989 3355 3942 3355 3988 3355 3988 3356 3942 3356 3940 3356 3988 3357 3940 3357 3939 3357 3938 3358 3977 3358 3934 3358 3934 3359 3977 3359 3990 3359 3934 3360 3990 3360 3935 3360 3935 3361 3990 3361 3991 3361 3935 3362 3991 3362 3931 3362 3931 3363 3991 3363 3932 3363 3932 3364 3991 3364 3992 3364 3932 3365 3992 3365 3929 3365 3994 3366 3995 3366 3924 3366 3924 3367 3928 3367 3994 3367 3994 3368 3928 3368 3927 3368 3994 3369 3927 3369 3993 3369 3993 3370 3927 3370 3926 3370 3975 3371 3974 3371 3978 3371 3978 3372 3974 3372 3920 3372 3978 3373 3920 3373 3995 3373 3995 3374 3920 3374 3925 3374 3995 3375 3925 3375 3924 3375 3977 94 3996 94 3990 94 3977 94 3989 94 3996 94 3996 3376 3989 3376 3988 3376 3998 3377 3982 3377 3981 3377 3999 3378 3981 3378 3980 3378 4000 94 3979 94 3978 94 4000 94 3978 94 3997 94 3997 3379 3978 3379 3995 3379 4001 95 4002 95 4003 95 4004 94 4005 94 4006 94 4006 3380 4005 3380 4007 3380 4007 94 4008 94 4006 94 4006 94 4008 94 4009 94 4006 3381 4009 3381 4010 3381 4010 3382 4011 3382 4006 3382 4006 3383 4011 3383 4012 3383 4014 3 4013 3 4015 3 4014 3384 4015 3384 4016 3384 4016 3385 4015 3385 4017 3385 4016 3386 4017 3386 4018 3386 4018 3387 4017 3387 4019 3387 4018 3388 4019 3388 4020 3388 4020 3388 4019 3388 4021 3388 4023 7 4022 7 4024 7 4023 3389 4024 3389 4025 3389 4025 3390 4024 3390 4026 3390 4027 3391 4028 3391 4029 3391 4029 3392 4030 3392 4031 3392 4031 3393 4030 3393 4032 3393 4031 3394 4032 3394 4033 3394 4033 3395 4032 3395 4034 3395 4033 768 4034 768 4035 768 4035 769 4034 769 4036 769 4032 3396 4037 3396 4034 3396 4038 3397 4039 3397 4040 3397 4045 3398 4041 3398 4044 3398 4048 3399 4043 3399 4042 3399 4051 3400 4050 3400 4052 3400 4057 3401 4056 3401 4058 3401 4053 3402 4059 3402 4054 3402 4055 3403 4060 3403 4061 3403 4062 3404 4063 3404 4064 3404 4066 3405 4065 3405 4067 3405 4066 3406 4067 3406 4068 3406 4068 3407 4067 3407 4069 3407 4047 3408 4049 3408 4046 3408 4080 3409 4075 3409 4081 3409 4081 3410 4075 3410 4076 3410 4081 3411 4076 3411 4082 3411 4082 3412 4076 3412 4070 3412 4082 3413 4070 3413 4083 3413 4083 3414 4070 3414 4071 3414 4083 3415 4071 3415 4084 3415 4084 3416 4071 3416 4072 3416 4084 3417 4072 3417 4085 3417 4085 3418 4072 3418 4073 3418 4085 3419 4073 3419 4086 3419 4086 3420 4073 3420 4077 3420 4086 3421 4077 3421 4087 3421 4087 3422 4077 3422 4078 3422 4088 3423 4079 3423 4089 3423 4089 3424 4079 3424 4074 3424 4089 3425 4074 3425 4090 3425 4090 2692 4091 2692 4089 2692 4091 2693 4092 2693 4089 2693 4089 3426 4092 3426 4093 3426 4089 3427 4093 3427 4088 3427 4087 3428 4094 3428 4095 3428 4087 3429 4095 3429 4086 3429 4095 3430 4096 3430 4086 3430 4086 3431 4096 3431 4097 3431 4086 3432 4097 3432 4085 3432 4098 3433 4084 3433 4099 3433 4099 3434 4084 3434 4085 3434 4099 3435 4085 3435 4100 3435 4100 3436 4085 3436 4097 3436 4084 3437 4101 3437 4102 3437 4084 3438 4102 3438 4083 3438 4083 3439 4103 3439 4104 3439 4083 3440 4104 3440 4082 3440 4104 3441 4105 3441 4082 3441 4082 3442 4105 3442 4106 3442 4082 3443 4106 3443 4081 3443 4106 3444 4107 3444 4081 3444 4081 3445 4107 3445 4108 3445 4081 3446 4108 3446 4080 3446 4108 3447 4109 3447 4080 3447 4080 3448 4109 3448 4110 3448 4111 3449 4122 3449 4112 3449 4112 3450 4123 3450 4113 3450 4113 3451 4123 3451 4124 3451 4113 3452 4124 3452 4114 3452 4114 3453 4124 3453 4125 3453 4114 3454 4125 3454 4115 3454 4115 3455 4125 3455 4126 3455 4115 3456 4126 3456 4116 3456 4116 3457 4126 3457 4127 3457 4116 3458 4127 3458 4117 3458 4117 3459 4127 3459 4128 3459 4117 3460 4128 3460 4118 3460 4118 3461 4128 3461 4129 3461 4118 3462 4129 3462 4119 3462 4119 3463 4129 3463 4130 3463 4119 3464 4130 3464 4120 3464 4120 3465 4131 3465 4121 3465 4132 3466 4149 3466 4150 3466 4132 174 4150 174 4133 174 4133 3467 4150 3467 4151 3467 4133 3468 4151 3468 4134 3468 4140 3469 4152 3469 4153 3469 4140 3469 4153 3469 4141 3469 4141 3453 4153 3453 4154 3453 4141 3454 4154 3454 4142 3454 4142 3456 4154 3456 4155 3456 4142 3455 4155 3455 4143 3455 4143 3458 4155 3458 4156 3458 4143 3457 4156 3457 4144 3457 4144 3459 4156 3459 4157 3459 4144 3460 4157 3460 4145 3460 4145 3470 4157 3470 4158 3470 4145 3470 4158 3470 4146 3470 4146 3463 4158 3463 4159 3463 4146 3464 4159 3464 4147 3464 4147 178 4159 178 4160 178 4147 3471 4160 3471 4148 3471 4139 2603 4161 2603 4138 2603 4137 3472 4162 3472 4136 3472 4136 3473 4162 3473 4163 3473 4136 3474 4163 3474 4135 3474 4164 3475 4165 3475 4166 3475 4166 2736 4167 2736 4168 2736 4176 3476 4177 3476 4178 3476 4174 94 4179 94 4180 94 4174 94 4180 94 4175 94 4177 3477 4181 3477 4178 3477 4178 94 4174 94 4182 94 4182 94 4174 94 4183 94 4184 94 4183 94 4185 94 4173 94 4187 94 4172 94 4169 3478 4170 3478 4186 3478 4190 94 4191 94 4189 94 4192 94 4188 94 4193 94 4194 94 4171 94 4195 94 4196 94 4197 94 4198 94 4199 94 4196 94 4198 94 4200 3479 4201 3479 4202 3479 4202 3480 4201 3480 4203 3480 4206 94 4205 94 4204 94 4207 3481 4209 3481 4208 3481 4211 3482 4210 3482 4212 3482 4211 3483 4212 3483 4213 3483 4214 3484 4215 3484 4212 3484 4212 3485 4215 3485 4216 3485 4212 3486 4216 3486 4213 3486 4215 3487 4217 3487 4216 3487 4218 95 4219 95 4220 95 4220 3488 4219 3488 4221 3488 4223 95 4222 95 4224 95 4225 3489 4226 3489 4227 3489 4229 3490 4230 3490 4225 3490 4225 95 4230 95 4231 95 4229 95 4225 95 4228 95 4228 95 4225 95 4227 95 4231 95 4232 95 4225 95 4235 3491 4234 3491 4236 3491 4237 3492 4236 3492 4238 3492 4237 3493 4238 3493 4233 3493 4239 3494 4240 3494 4241 3494 4241 3495 4240 3495 4242 3495 4243 3496 4244 3496 4245 3496 4246 3497 4247 3497 4248 3497 4251 3497 4252 3497 4253 3497 4253 3498 4252 3498 4254 3498 4255 3499 4256 3499 4249 3499 4249 3499 4256 3499 4250 3499 4257 3500 4258 3500 4259 3500 4260 3501 4261 3501 4262 3501 4262 3502 4261 3502 4263 3502 4264 3503 4265 3503 4266 3503 4266 771 4267 771 4268 771 4269 3504 4270 3504 4271 3504 4271 3504 4270 3504 4272 3504 4274 13 4273 13 4275 13 4276 3505 4277 3505 4278 3505 4280 3506 4279 3506 4281 3506 4284 3507 4282 3507 4283 3507 4285 3508 4286 3508 4287 3508 4300 3509 4288 3509 4301 3509 4301 3510 4288 3510 4289 3510 4301 3511 4289 3511 4302 3511 4302 3512 4289 3512 4295 3512 4302 3513 4295 3513 4303 3513 4303 3514 4295 3514 4296 3514 4303 3515 4296 3515 4304 3515 4304 3516 4296 3516 4290 3516 4304 3517 4290 3517 4305 3517 4305 3518 4290 3518 4291 3518 4305 3519 4291 3519 4306 3519 4306 3520 4291 3520 4292 3520 4306 3521 4292 3521 4307 3521 4307 3522 4292 3522 4293 3522 4308 3523 4293 3523 4294 3523 4309 3524 4297 3524 4310 3524 4306 3525 4311 3525 4312 3525 4306 3526 4312 3526 4305 3526 4312 3527 4313 3527 4305 3527 4305 3528 4314 3528 4304 3528 4315 3529 4303 3529 4316 3529 4316 3530 4303 3530 4304 3530 4316 3531 4304 3531 4317 3531 4317 3532 4304 3532 4314 3532 4303 3533 4318 3533 4319 3533 4303 3534 4319 3534 4302 3534 4302 3535 4320 3535 4321 3535 4302 3536 4321 3536 4301 3536 4321 3537 4322 3537 4301 3537 4301 3538 4322 3538 4323 3538 4301 3539 4323 3539 4300 3539 4323 3540 4324 3540 4300 3540 4300 3541 4324 3541 4325 3541 4300 3542 4325 3542 4299 3542 4325 3543 4326 3543 4299 3543 4327 3544 4298 3544 4328 3544 4327 3545 4329 3545 4298 3545 4298 3546 4329 3546 4330 3546 4330 3547 4331 3547 4310 3547 4310 3548 4331 3548 4332 3548 4310 3549 4332 3549 4309 3549 4332 3550 4333 3550 4309 3550 4309 3551 4333 3551 4334 3551 4335 2732 4336 2732 4337 2732 4338 3552 4339 3552 4340 3552 4340 3553 4339 3553 4341 3553 4340 3554 4341 3554 4342 3554 4343 3555 4344 3555 4345 3555 4345 1126 4346 1126 4347 1126 4347 3556 4348 3556 4349 3556 4350 3557 4351 3557 4352 3557 4352 3558 4351 3558 4353 3558 4354 1111 4355 1111 4356 1111 4356 3559 4355 3559 4357 3559 4356 3560 4357 3560 4358 3560 4358 3553 4357 3553 4359 3553 4358 3561 4359 3561 4360 3561 4360 3562 4359 3562 4361 3562 4360 3563 4361 3563 4362 3563 4362 3564 4361 3564 4363 3564 4362 3565 4363 3565 4364 3565 4364 3566 4365 3566 4366 3566 4369 94 4370 94 4371 94 4369 94 4371 94 4379 94 4373 94 4375 94 4380 94 4380 94 4375 94 4374 94 4380 94 4374 94 4381 94 4381 94 4374 94 4382 94 4383 94 4382 94 4384 94 4385 94 4376 94 4377 94 4386 94 4391 94 4392 94 4386 94 4392 94 4387 94 4387 94 4393 94 4388 94 4388 94 4393 94 4394 94 4389 94 4395 94 4390 94 4390 94 4395 94 4396 94 4370 94 4398 94 4371 94 4371 3567 4398 3567 4399 3567 4371 3568 4399 3568 4400 3568 4401 94 4368 94 4397 94 4402 94 4373 94 4403 94 4403 94 4373 94 4380 94 4403 94 4380 94 4404 94 4404 94 4380 94 4381 94 4406 94 4405 94 4367 94 4406 94 4367 94 4372 94 4407 94 4378 94 4408 94 4407 94 4408 94 4409 94 4412 3569 4413 3569 4414 3569 4414 3570 4413 3570 4415 3570 4416 271 4415 271 4417 271 4418 3571 4419 3571 4420 3571 4420 3572 4419 3572 4421 3572 4422 1305 4423 1305 4424 1305 4424 1305 4423 1305 4425 1305 4424 3573 4425 3573 4426 3573 4426 3574 4425 3574 4427 3574 4426 3575 4427 3575 4428 3575 4428 3576 4427 3576 4429 3576 4432 1157 4433 1157 4434 1157 4434 1157 4433 1157 4435 1157 4438 3577 4439 3577 4440 3577 4440 3578 4439 3578 4441 3578 4440 3579 4441 3579 4442 3579 4442 3576 4441 3576 4443 3576 4442 3580 4443 3580 4432 3580 4432 3581 4443 3581 4433 3581 4411 94 4444 94 4445 94 4433 94 4447 94 4435 94 4435 94 4447 94 4446 94 4441 94 4410 94 4447 94 4441 94 4447 94 4443 94 4443 94 4447 94 4433 94 4436 94 4431 94 4430 94 4437 94 4410 94 4439 94 4448 3582 4449 3582 4450 3582 4451 3583 4452 3583 4453 3583 4453 7 4452 7 4454 7 4455 7 4456 7 4457 7 4457 7 4456 7 4458 7 4459 95 4460 95 4461 95 4461 95 4460 95 4462 95 4463 3584 4464 3584 4465 3584 4465 3585 4464 3585 4466 3585 4465 3586 4466 3586 4467 3586 4467 3586 4466 3586 4468 3586 4469 1405 4470 1405 4471 1405 4471 3587 4470 3587 4472 3587 4471 1 4472 1 4473 1 4473 3588 4474 3588 4475 3588 4475 3589 4474 3589 4476 3589 4477 3590 4478 3590 4479 3590 4479 3591 4478 3591 4480 3591 4479 3592 4480 3592 4481 3592 4482 3593 4483 3593 4484 3593 4484 3492 4485 3492 4486 3492 4463 3594 4487 3594 4464 3594 4495 3595 4496 3595 4497 3595 4497 1397 4496 1397 4498 1397 4497 3596 4498 3596 4499 3596 4501 3491 4500 3491 4502 3491 4501 3597 4502 3597 4503 3597 4503 3597 4502 3597 4504 3597 4506 1407 4505 1407 4507 1407 4488 94 4510 94 4509 94 4488 94 4509 94 4489 94 4489 94 4509 94 4508 94 4489 94 4508 94 4490 94 4464 94 4487 94 4522 94 4522 94 4487 94 4523 94 4510 3598 4488 3598 4511 3598 4511 3599 4488 3599 4504 3599 4492 94 4515 94 4493 94 4493 94 4515 94 4514 94 4493 3600 4514 3600 4494 3600 4494 94 4513 94 4496 94 4496 3601 4513 3601 4512 3601 4496 3602 4512 3602 4498 3602 4483 94 4523 94 4485 94 4485 94 4523 94 4487 94 4464 94 4521 94 4520 94 4466 3603 4520 3603 4519 3603 4466 94 4519 94 4518 94 4518 3604 4517 3604 4466 3604 4466 94 4517 94 4516 94 4492 94 4491 94 4515 94 4524 3605 4525 3605 4526 3605 4526 3606 4525 3606 4527 3606 4526 3607 4527 3607 4528 3607 4528 3608 4527 3608 4529 3608 4530 3609 4531 3609 4532 3609 4532 3610 4531 3610 4533 3610 4535 3611 4534 3611 4536 3611 4535 3612 4536 3612 4537 3612 4537 3613 4536 3613 4538 3613 4537 3614 4538 3614 4524 3614 4524 3499 4538 3499 4525 3499 4539 3605 4540 3605 4541 3605 4541 3605 4540 3605 4542 3605 4541 3607 4542 3607 4543 3607 4543 3607 4542 3607 4544 3607 4546 3615 4545 3615 4547 3615 4546 3616 4547 3616 4548 3616 4548 1431 4547 1431 4549 1431 4548 7 4549 7 4550 7 4550 7 4549 7 4551 7 4550 3617 4551 3617 4552 3617 4552 3618 4551 3618 4553 3618 4552 3619 4553 3619 4554 3619 4554 3620 4553 3620 4555 3620 4554 1432 4555 1432 4556 1432 4556 3621 4555 3621 4557 3621 4558 3613 4559 3613 4560 3613 4560 3613 4559 3613 4561 3613 4562 3392 4563 3392 4564 3392 4564 3392 4563 3392 4565 3392 4571 3622 4570 3622 4572 3622 4566 3623 4572 3623 4573 3623 4568 94 4574 94 4567 94 4567 3624 4574 3624 4575 3624 4577 94 4576 94 4578 94 4577 3625 4578 3625 4579 3625 4579 94 4578 94 4569 94 4581 94 4582 94 4580 94 4580 3626 4583 3626 4581 3626 4584 3627 4585 3627 4586 3627 4587 3628 4585 3628 4584 3628 4584 3629 4589 3629 4590 3629 4591 3630 4589 3630 4584 3630 4586 3631 4591 3631 4584 3631 4584 3632 4592 3632 4593 3632 4594 3633 4592 3633 4584 3633 4590 3634 4594 3634 4584 3634 4584 3635 4595 3635 4596 3635 4597 3636 4595 3636 4584 3636 4593 3637 4597 3637 4584 3637 4584 3638 4598 3638 4599 3638 4600 3639 4598 3639 4584 3639 4596 3640 4600 3640 4584 3640 4584 3641 4601 3641 4602 3641 4603 3642 4601 3642 4584 3642 4599 3643 4603 3643 4584 3643 4584 3644 4604 3644 4605 3644 4606 3645 4604 3645 4584 3645 4602 3646 4606 3646 4584 3646 4584 3647 4607 3647 4608 3647 4609 3648 4607 3648 4584 3648 4605 3649 4609 3649 4584 3649 4584 3650 4610 3650 4611 3650 4612 3651 4610 3651 4584 3651 4608 3652 4612 3652 4584 3652 4584 3653 4613 3653 4614 3653 4615 3654 4613 3654 4584 3654 4611 3655 4615 3655 4584 3655 4584 3656 4616 3656 4617 3656 4618 3657 4616 3657 4584 3657 4614 3658 4618 3658 4584 3658 4584 3659 4619 3659 4620 3659 4621 3660 4619 3660 4584 3660 4617 3661 4621 3661 4584 3661 4584 3662 4622 3662 4623 3662 4624 3663 4622 3663 4584 3663 4620 3664 4624 3664 4584 3664 4584 3665 4625 3665 4626 3665 4627 3666 4625 3666 4584 3666 4623 3667 4627 3667 4584 3667 4626 3668 4588 3668 4584 3668 4628 3669 4629 3669 4630 3669 4631 3670 4632 3670 4633 3670 4631 3671 4633 3671 4634 3671 4634 3672 4633 3672 4635 3672 4635 3673 4633 3673 4636 3673 4635 3674 4636 3674 4637 3674 4637 3675 4636 3675 4638 3675 4637 3676 4638 3676 4639 3676 4639 3677 4638 3677 4640 3677 4640 3678 4638 3678 4641 3678 4640 3679 4641 3679 4642 3679 4642 3680 4641 3680 4643 3680 4642 3681 4643 3681 4644 3681 4644 3682 4643 3682 4645 3682 4645 3683 4643 3683 4646 3683 4645 3684 4646 3684 4647 3684 4647 3685 4646 3685 4648 3685 4647 3686 4648 3686 4649 3686 4649 3687 4648 3687 4650 3687 4649 3688 4650 3688 4651 3688 4629 3689 4628 3689 4650 3689 4650 3690 4628 3690 4652 3690 4650 3691 4652 3691 4651 3691 4653 3692 4654 3692 4655 3692 4655 3693 4654 3693 4656 3693 4655 3694 4656 3694 4630 3694 4630 3695 4656 3695 4657 3695 4630 3696 4657 3696 4628 3696 4658 3697 4659 3697 4660 3697 4660 3698 4659 3698 4661 3698 4660 3699 4661 3699 4653 3699 4653 3700 4661 3700 4662 3700 4653 3701 4662 3701 4654 3701 4663 3702 4664 3702 4658 3702 4658 3703 4664 3703 4665 3703 4658 3704 4665 3704 4659 3704 4666 3705 4667 3705 4663 3705 4663 3706 4667 3706 4668 3706 4663 3707 4668 3707 4664 3707 4670 3708 4669 3708 4671 3708 4670 3709 4671 3709 4672 3709 4672 3710 4671 3710 4673 3710 4672 3711 4673 3711 4674 3711 4674 3712 4673 3712 4675 3712 4674 3713 4675 3713 4676 3713 4676 3714 4675 3714 4677 3714 4676 3715 4677 3715 4678 3715 4678 3716 4677 3716 4679 3716 4678 3717 4679 3717 4680 3717 4680 3718 4679 3718 4681 3718 4680 3719 4681 3719 4682 3719 4682 3720 4681 3720 4683 3720 4682 3721 4683 3721 4684 3721 4684 3722 4683 3722 4685 3722 4684 3723 4685 3723 4686 3723 4686 3724 4685 3724 4687 3724 4686 3725 4687 3725 4688 3725 4688 3726 4687 3726 4689 3726 4688 3727 4689 3727 4690 3727 4690 3728 4689 3728 4691 3728 4690 3729 4691 3729 4692 3729 4692 3730 4691 3730 4693 3730 4692 3731 4693 3731 4694 3731 4694 3732 4693 3732 4695 3732 4694 3733 4695 3733 4696 3733 4696 3734 4695 3734 4697 3734 4696 3735 4697 3735 4698 3735 4698 3736 4697 3736 4699 3736 4698 3737 4699 3737 4700 3737 4700 3738 4699 3738 4666 3738 4700 3739 4666 3739 4701 3739 4701 3740 4666 3740 4663 3740 4632 3741 4702 3741 4703 3741 4632 3742 4703 3742 4633 3742 4633 3743 4703 3743 4704 3743 4633 3744 4704 3744 4636 3744 4636 3745 4704 3745 4705 3745 4636 3746 4705 3746 4638 3746 4638 3747 4705 3747 4706 3747 4638 3748 4706 3748 4641 3748 4641 3749 4706 3749 4707 3749 4641 3750 4707 3750 4643 3750 4643 3751 4707 3751 4708 3751 4643 3752 4708 3752 4646 3752 4646 3753 4708 3753 4709 3753 4646 3754 4709 3754 4648 3754 4648 3755 4709 3755 4710 3755 4648 3756 4710 3756 4650 3756 4650 3757 4710 3757 4711 3757 4650 3758 4711 3758 4629 3758 4629 3759 4711 3759 4712 3759 4629 3760 4712 3760 4630 3760 4630 3761 4712 3761 4713 3761 4630 3762 4713 3762 4655 3762 4655 3763 4713 3763 4714 3763 4655 3764 4714 3764 4653 3764 4653 3765 4714 3765 4715 3765 4653 3766 4715 3766 4660 3766 4660 3767 4715 3767 4716 3767 4660 3768 4716 3768 4658 3768 4658 3769 4716 3769 4717 3769 4658 3770 4717 3770 4663 3770 4663 3771 4717 3771 4718 3771 4663 3772 4718 3772 4701 3772 4701 3773 4718 3773 4719 3773 4701 3774 4719 3774 4700 3774 4700 3775 4719 3775 4720 3775 4700 3776 4720 3776 4698 3776 4698 3777 4720 3777 4721 3777 4698 3778 4721 3778 4696 3778 4696 3779 4721 3779 4722 3779 4696 3780 4722 3780 4694 3780 4694 3781 4722 3781 4723 3781 4694 3782 4723 3782 4692 3782 4692 3783 4723 3783 4724 3783 4692 3784 4724 3784 4690 3784 4690 3785 4724 3785 4725 3785 4690 3786 4725 3786 4688 3786 4688 3787 4725 3787 4726 3787 4688 3788 4726 3788 4686 3788 4686 3789 4726 3789 4727 3789 4686 3790 4727 3790 4684 3790 4684 3791 4727 3791 4728 3791 4684 3792 4728 3792 4682 3792 4682 3793 4728 3793 4729 3793 4682 3794 4729 3794 4680 3794 4680 3795 4729 3795 4730 3795 4680 3796 4730 3796 4678 3796 4678 3797 4730 3797 4731 3797 4678 3798 4731 3798 4676 3798 4676 3799 4731 3799 4732 3799 4676 3800 4732 3800 4674 3800 4674 3801 4732 3801 4733 3801 4674 3802 4733 3802 4672 3802 4702 3803 4736 3803 4737 3803 4702 3804 4737 3804 4703 3804 4703 3805 4737 3805 4738 3805 4703 3806 4738 3806 4704 3806 4704 3807 4738 3807 4739 3807 4704 3808 4739 3808 4705 3808 4705 3809 4739 3809 4740 3809 4705 3810 4740 3810 4706 3810 4706 3811 4740 3811 4741 3811 4706 3812 4741 3812 4707 3812 4707 3813 4741 3813 4742 3813 4707 3814 4742 3814 4708 3814 4708 3815 4742 3815 4743 3815 4708 3816 4743 3816 4709 3816 4709 3817 4743 3817 4744 3817 4709 3818 4744 3818 4710 3818 4710 3819 4744 3819 4745 3819 4710 3820 4745 3820 4711 3820 4711 3821 4745 3821 4746 3821 4711 3822 4746 3822 4712 3822 4712 3823 4746 3823 4747 3823 4712 3824 4747 3824 4713 3824 4713 3825 4747 3825 4748 3825 4713 3826 4748 3826 4714 3826 4714 3827 4748 3827 4749 3827 4714 3828 4749 3828 4715 3828 4715 3829 4749 3829 4750 3829 4715 3830 4750 3830 4716 3830 4716 3831 4750 3831 4751 3831 4716 3832 4751 3832 4717 3832 4717 3833 4751 3833 4752 3833 4717 3834 4752 3834 4718 3834 4718 3835 4752 3835 4753 3835 4718 3836 4753 3836 4719 3836 4719 3837 4753 3837 4754 3837 4719 3838 4754 3838 4720 3838 4720 3839 4754 3839 4755 3839 4720 3840 4755 3840 4721 3840 4721 3841 4755 3841 4756 3841 4721 3842 4756 3842 4722 3842 4722 3843 4756 3843 4757 3843 4722 3844 4757 3844 4723 3844 4723 3845 4757 3845 4758 3845 4723 3846 4758 3846 4724 3846 4724 3847 4758 3847 4759 3847 4724 3848 4759 3848 4725 3848 4725 3849 4759 3849 4760 3849 4725 3850 4760 3850 4726 3850 4726 3851 4760 3851 4761 3851 4726 3852 4761 3852 4727 3852 4727 3853 4761 3853 4762 3853 4727 3854 4762 3854 4728 3854 4728 3855 4762 3855 4763 3855 4728 3856 4763 3856 4729 3856 4729 3857 4763 3857 4764 3857 4729 3858 4764 3858 4730 3858 4730 3859 4764 3859 4765 3859 4730 3860 4765 3860 4731 3860 4731 3861 4765 3861 4766 3861 4731 3862 4766 3862 4732 3862 4732 3863 4766 3863 4767 3863 4732 3864 4767 3864 4733 3864 4733 3865 4767 3865 4768 3865 4733 3866 4768 3866 4734 3866 4734 3867 4768 3867 4769 3867 4735 3868 4774 3868 4775 3868 4735 3869 4775 3869 4736 3869 4736 3870 4775 3870 4776 3870 4736 3871 4776 3871 4737 3871 4737 3872 4776 3872 4777 3872 4737 3873 4777 3873 4738 3873 4738 3874 4777 3874 4778 3874 4738 3875 4778 3875 4739 3875 4739 3876 4778 3876 4779 3876 4739 3877 4779 3877 4740 3877 4740 3878 4779 3878 4780 3878 4740 3879 4780 3879 4741 3879 4741 3880 4780 3880 4781 3880 4741 3881 4781 3881 4742 3881 4742 3882 4781 3882 4782 3882 4742 3883 4782 3883 4743 3883 4743 3884 4782 3884 4783 3884 4743 3885 4783 3885 4744 3885 4744 3886 4783 3886 4784 3886 4744 3887 4784 3887 4745 3887 4745 3888 4784 3888 4785 3888 4745 3889 4785 3889 4746 3889 4746 3890 4785 3890 4786 3890 4746 3891 4786 3891 4747 3891 4747 3892 4786 3892 4787 3892 4747 3893 4787 3893 4748 3893 4748 3894 4787 3894 4788 3894 4748 3895 4788 3895 4749 3895 4749 3896 4788 3896 4789 3896 4749 3897 4789 3897 4750 3897 4750 3898 4789 3898 4790 3898 4750 3899 4790 3899 4751 3899 4751 3900 4790 3900 4791 3900 4751 3901 4791 3901 4752 3901 4752 3902 4791 3902 4792 3902 4752 3903 4792 3903 4753 3903 4753 3904 4792 3904 4793 3904 4753 3905 4793 3905 4754 3905 4754 3906 4793 3906 4794 3906 4754 3907 4794 3907 4755 3907 4755 3908 4794 3908 4795 3908 4755 3909 4795 3909 4756 3909 4756 3910 4795 3910 4796 3910 4756 3911 4796 3911 4757 3911 4757 3912 4796 3912 4797 3912 4757 3913 4797 3913 4758 3913 4758 3914 4797 3914 4798 3914 4758 3915 4798 3915 4759 3915 4759 3916 4798 3916 4799 3916 4759 3917 4799 3917 4760 3917 4760 3918 4799 3918 4800 3918 4760 3919 4800 3919 4761 3919 4761 3920 4800 3920 4801 3920 4761 3921 4801 3921 4762 3921 4762 3922 4801 3922 4802 3922 4762 3923 4802 3923 4763 3923 4763 3924 4802 3924 4803 3924 4763 3925 4803 3925 4764 3925 4764 3926 4803 3926 4804 3926 4764 3927 4804 3927 4765 3927 4765 3928 4804 3928 4805 3928 4765 3929 4805 3929 4766 3929 4766 3930 4805 3930 4806 3930 4766 3931 4806 3931 4767 3931 4767 3932 4806 3932 4807 3932 4767 3933 4807 3933 4768 3933 4768 3934 4807 3934 4808 3934 4768 3935 4808 3935 4769 3935 4769 3936 4808 3936 4809 3936 4769 3937 4809 3937 4770 3937 4770 3938 4809 3938 4810 3938 4770 3939 4810 3939 4771 3939 4771 3940 4810 3940 4811 3940 4772 3941 4815 3941 4773 3941 4773 3942 4815 3942 4816 3942 4773 3943 4816 3943 4774 3943 4774 3944 4816 3944 4817 3944 4774 3945 4817 3945 4775 3945 4775 3946 4817 3946 4818 3946 4775 3947 4818 3947 4776 3947 4776 3948 4818 3948 4819 3948 4776 3949 4819 3949 4777 3949 4777 3950 4819 3950 4820 3950 4777 3951 4820 3951 4778 3951 4778 3952 4820 3952 4821 3952 4778 3953 4821 3953 4779 3953 4779 3954 4821 3954 4822 3954 4779 3955 4822 3955 4780 3955 4780 3956 4822 3956 4823 3956 4780 3957 4823 3957 4781 3957 4781 3958 4823 3958 4824 3958 4781 3959 4824 3959 4782 3959 4782 3960 4824 3960 4825 3960 4782 3961 4825 3961 4783 3961 4783 3962 4825 3962 4826 3962 4783 3963 4826 3963 4784 3963 4784 3964 4826 3964 4827 3964 4784 3965 4827 3965 4785 3965 4785 3966 4827 3966 4828 3966 4785 3967 4828 3967 4786 3967 4786 3968 4828 3968 4829 3968 4786 3969 4829 3969 4787 3969 4787 3970 4829 3970 4830 3970 4787 3971 4830 3971 4788 3971 4788 3972 4830 3972 4831 3972 4788 3973 4831 3973 4789 3973 4789 3974 4831 3974 4832 3974 4789 3975 4832 3975 4790 3975 4790 3976 4832 3976 4833 3976 4790 3977 4833 3977 4791 3977 4791 3978 4833 3978 4834 3978 4791 3979 4834 3979 4792 3979 4792 3980 4834 3980 4835 3980 4792 3981 4835 3981 4793 3981 4793 3982 4835 3982 4836 3982 4793 3983 4836 3983 4794 3983 4794 3984 4836 3984 4837 3984 4794 3985 4837 3985 4795 3985 4795 3986 4837 3986 4838 3986 4795 3987 4838 3987 4796 3987 4796 3988 4838 3988 4839 3988 4796 3989 4839 3989 4797 3989 4797 3990 4839 3990 4840 3990 4797 3991 4840 3991 4798 3991 4798 3992 4840 3992 4841 3992 4798 3993 4841 3993 4799 3993 4799 3994 4841 3994 4842 3994 4799 3995 4842 3995 4800 3995 4800 3996 4842 3996 4843 3996 4800 3997 4843 3997 4801 3997 4801 3998 4843 3998 4844 3998 4801 3999 4844 3999 4802 3999 4802 4000 4844 4000 4845 4000 4802 4001 4845 4001 4803 4001 4803 4002 4845 4002 4846 4002 4803 4003 4846 4003 4804 4003 4804 4004 4846 4004 4847 4004 4804 4005 4847 4005 4805 4005 4805 4006 4847 4006 4848 4006 4805 4007 4848 4007 4806 4007 4806 4008 4848 4008 4849 4008 4806 4009 4849 4009 4807 4009 4807 4010 4849 4010 4850 4010 4807 4011 4850 4011 4808 4011 4808 4012 4850 4012 4851 4012 4808 4013 4851 4013 4809 4013 4809 4014 4851 4014 4852 4014 4809 4015 4852 4015 4810 4015 4810 4016 4852 4016 4853 4016 4810 4017 4853 4017 4811 4017 4811 4018 4853 4018 4854 4018 4811 4019 4854 4019 4812 4019 4812 4020 4854 4020 4855 4020 4812 4021 4855 4021 4813 4021 4813 4022 4855 4022 4856 4022 4813 4023 4856 4023 4814 4023 4814 4024 4856 4024 4857 4024 4814 4025 4857 4025 4772 4025 4772 4026 4857 4026 4815 4026 4815 4027 4858 4027 4816 4027 4816 4028 4858 4028 4859 4028 4816 4029 4859 4029 4817 4029 4817 4030 4859 4030 4860 4030 4817 4031 4860 4031 4818 4031 4818 4032 4860 4032 4861 4032 4818 4033 4861 4033 4819 4033 4819 4034 4861 4034 4862 4034 4819 4035 4862 4035 4820 4035 4820 4036 4862 4036 4863 4036 4820 4037 4863 4037 4821 4037 4821 4038 4863 4038 4864 4038 4821 4039 4864 4039 4822 4039 4822 4040 4864 4040 4865 4040 4822 4041 4865 4041 4823 4041 4823 4042 4865 4042 4866 4042 4823 4043 4866 4043 4824 4043 4824 4044 4866 4044 4867 4044 4824 4045 4867 4045 4825 4045 4825 4046 4867 4046 4868 4046 4825 4047 4868 4047 4826 4047 4826 4048 4868 4048 4869 4048 4826 4049 4869 4049 4827 4049 4827 4050 4869 4050 4870 4050 4827 4051 4870 4051 4828 4051 4828 4052 4870 4052 4871 4052 4828 4053 4871 4053 4829 4053 4829 4054 4871 4054 4872 4054 4829 4055 4872 4055 4830 4055 4830 4056 4872 4056 4873 4056 4830 4057 4873 4057 4831 4057 4831 4058 4873 4058 4874 4058 4831 4059 4874 4059 4832 4059 4832 4060 4874 4060 4875 4060 4832 4061 4875 4061 4833 4061 4833 4062 4875 4062 4876 4062 4833 4063 4876 4063 4834 4063 4834 4064 4876 4064 4877 4064 4834 4065 4877 4065 4835 4065 4835 4066 4877 4066 4878 4066 4835 4067 4878 4067 4836 4067 4836 4068 4878 4068 4879 4068 4836 4069 4879 4069 4837 4069 4837 4070 4879 4070 4880 4070 4837 4071 4880 4071 4838 4071 4838 4072 4880 4072 4881 4072 4838 4073 4881 4073 4839 4073 4839 4074 4881 4074 4882 4074 4839 4075 4882 4075 4840 4075 4840 4076 4882 4076 4883 4076 4840 4077 4883 4077 4841 4077 4841 4078 4883 4078 4884 4078 4841 4079 4884 4079 4842 4079 4842 4080 4884 4080 4885 4080 4842 4081 4885 4081 4843 4081 4843 4082 4885 4082 4886 4082 4843 4083 4886 4083 4844 4083 4844 4084 4886 4084 4887 4084 4844 4085 4887 4085 4845 4085 4845 4086 4887 4086 4888 4086 4845 4087 4888 4087 4846 4087 4846 4088 4888 4088 4889 4088 4846 4089 4889 4089 4847 4089 4847 4090 4889 4090 4890 4090 4847 4091 4890 4091 4848 4091 4848 4092 4890 4092 4891 4092 4848 4093 4891 4093 4849 4093 4849 4094 4891 4094 4892 4094 4849 4095 4892 4095 4850 4095 4850 4096 4892 4096 4893 4096 4850 4097 4893 4097 4851 4097 4851 4098 4893 4098 4894 4098 4851 4099 4894 4099 4852 4099 4852 4100 4894 4100 4895 4100 4852 4101 4895 4101 4853 4101 4853 4102 4895 4102 4896 4102 4853 4103 4896 4103 4854 4103 4854 4104 4896 4104 4897 4104 4854 4105 4897 4105 4855 4105 4855 4106 4897 4106 4898 4106 4855 4107 4898 4107 4856 4107 4856 4108 4898 4108 4899 4108 4856 4109 4899 4109 4857 4109 4857 4110 4899 4110 4900 4110 4857 4111 4900 4111 4815 4111 4815 4112 4900 4112 4858 4112 4858 4113 4588 4113 4859 4113 4859 4114 4588 4114 4626 4114 4859 4115 4626 4115 4860 4115 4860 4116 4626 4116 4625 4116 4860 4117 4625 4117 4861 4117 4861 4118 4625 4118 4627 4118 4861 4119 4627 4119 4862 4119 4862 4120 4627 4120 4623 4120 4862 4121 4623 4121 4863 4121 4863 4122 4623 4122 4622 4122 4863 4123 4622 4123 4864 4123 4864 4124 4622 4124 4624 4124 4864 4125 4624 4125 4865 4125 4865 4126 4624 4126 4620 4126 4865 4127 4620 4127 4866 4127 4866 4128 4620 4128 4619 4128 4866 4129 4619 4129 4867 4129 4867 4130 4619 4130 4621 4130 4867 4131 4621 4131 4868 4131 4868 4132 4621 4132 4617 4132 4868 4133 4617 4133 4869 4133 4869 4134 4617 4134 4616 4134 4869 4135 4616 4135 4870 4135 4870 4136 4616 4136 4618 4136 4870 4137 4618 4137 4871 4137 4871 4138 4618 4138 4614 4138 4871 4139 4614 4139 4872 4139 4872 4140 4614 4140 4613 4140 4872 4141 4613 4141 4873 4141 4873 4142 4613 4142 4615 4142 4873 4143 4615 4143 4874 4143 4874 4144 4615 4144 4611 4144 4874 4145 4611 4145 4875 4145 4875 4146 4611 4146 4610 4146 4875 4147 4610 4147 4876 4147 4876 4148 4610 4148 4612 4148 4876 4149 4612 4149 4877 4149 4877 4150 4612 4150 4608 4150 4877 4151 4608 4151 4878 4151 4878 4152 4608 4152 4607 4152 4878 4153 4607 4153 4879 4153 4879 4154 4607 4154 4609 4154 4879 4155 4609 4155 4880 4155 4880 4156 4609 4156 4605 4156 4880 4157 4605 4157 4881 4157 4881 4158 4605 4158 4604 4158 4881 4159 4604 4159 4882 4159 4882 4160 4604 4160 4606 4160 4882 4161 4606 4161 4883 4161 4883 4162 4606 4162 4602 4162 4883 4163 4602 4163 4884 4163 4884 4164 4602 4164 4601 4164 4884 4165 4601 4165 4885 4165 4885 4166 4601 4166 4603 4166 4885 4167 4603 4167 4886 4167 4886 4168 4603 4168 4599 4168 4886 4169 4599 4169 4887 4169 4887 4170 4599 4170 4598 4170 4887 4171 4598 4171 4888 4171 4888 4172 4598 4172 4600 4172 4888 4173 4600 4173 4889 4173 4889 4174 4600 4174 4596 4174 4889 4175 4596 4175 4890 4175 4890 4176 4596 4176 4595 4176 4890 4177 4595 4177 4891 4177 4891 4178 4595 4178 4597 4178 4891 4179 4597 4179 4892 4179 4892 4180 4597 4180 4593 4180 4892 4181 4593 4181 4893 4181 4893 4182 4593 4182 4592 4182 4893 4183 4592 4183 4894 4183 4894 4184 4592 4184 4594 4184 4894 4185 4594 4185 4895 4185 4895 4186 4594 4186 4590 4186 4895 4187 4590 4187 4896 4187 4896 4188 4590 4188 4589 4188 4896 4189 4589 4189 4897 4189 4897 4190 4589 4190 4591 4190 4897 4191 4591 4191 4898 4191 4898 4192 4591 4192 4586 4192 4898 4193 4586 4193 4899 4193 4899 4194 4586 4194 4585 4194 4899 4195 4585 4195 4900 4195 4900 4196 4585 4196 4587 4196 4900 4197 4587 4197 4858 4197 4858 4198 4587 4198 4588 4198 4647 4199 4901 4199 4645 4199 4645 4200 4901 4200 4902 4200 4645 4201 4902 4201 4644 4201 4644 94 4902 94 4903 94 4644 94 4903 94 4642 94 4642 94 4903 94 4904 94 4642 94 4904 94 4640 94 4640 4202 4904 4202 4905 4202 4640 4203 4905 4203 4639 4203 4639 4204 4905 4204 4906 4204 4639 4205 4906 4205 4637 4205 4637 94 4906 94 4907 94 4637 4206 4907 4206 4635 4206 4635 4207 4907 4207 4908 4207 4635 4208 4908 4208 4634 4208 4634 4209 4908 4209 4909 4209 4656 94 4910 94 4657 94 4657 4210 4910 4210 4911 4210 4657 4211 4911 4211 4628 4211 4628 4212 4911 4212 4912 4212 4628 4213 4912 4213 4652 4213 4652 4214 4912 4214 4913 4214 4652 94 4913 94 4651 94 4651 4215 4913 4215 4914 4215 4651 94 4914 94 4649 94 4649 94 4914 94 4915 94 4649 94 4915 94 4647 94 4647 4216 4915 4216 4916 4216 4647 4217 4916 4217 4901 4217 4669 4218 4917 4218 4671 4218 4671 4219 4917 4219 4918 4219 4671 4220 4918 4220 4673 4220 4918 94 4919 94 4673 94 4673 94 4919 94 4920 94 4673 94 4920 94 4675 94 4675 94 4920 94 4921 94 4675 94 4921 94 4677 94 4677 94 4921 94 4922 94 4677 94 4922 94 4679 94 4679 4221 4922 4221 4923 4221 4679 4222 4923 4222 4681 4222 4681 4223 4923 4223 4924 4223 4681 94 4924 94 4683 94 4683 94 4924 94 4925 94 4683 4224 4925 4224 4685 4224 4685 94 4925 94 4926 94 4685 94 4926 94 4687 94 4687 94 4926 94 4927 94 4687 4225 4927 4225 4689 4225 4689 94 4927 94 4928 94 4689 94 4928 94 4691 94 4691 94 4928 94 4929 94 4691 4226 4929 4226 4693 4226 4693 94 4929 94 4930 94 4693 4227 4930 4227 4695 4227 4695 4228 4930 4228 4931 4228 4695 4229 4931 4229 4697 4229 4697 94 4931 94 4932 94 4697 4230 4932 4230 4699 4230 4699 4231 4932 4231 4933 4231 4699 94 4933 94 4666 94 4666 4232 4933 4232 4934 4232 4666 94 4934 94 4667 94 4667 4233 4934 4233 4935 4233 4667 94 4935 94 4668 94 4668 4234 4935 4234 4936 4234 4668 94 4936 94 4664 94 4664 4235 4936 4235 4937 4235 4664 4236 4937 4236 4665 4236 4665 4237 4937 4237 4938 4237 4665 94 4938 94 4659 94 4659 4238 4938 4238 4939 4238 4659 94 4939 94 4661 94 4661 94 4939 94 4940 94 4661 94 4940 94 4662 94 4662 4239 4940 4239 4941 4239 4662 4240 4941 4240 4654 4240 4654 4241 4941 4241 4942 4241 4654 4242 4942 4242 4656 4242 4656 4243 4942 4243 4943 4243 4656 94 4943 94 4910 94 4936 4244 4944 4244 4945 4244 4946 4245 4940 4245 4947 4245 4947 4246 4940 4246 4939 4246 4947 4247 4939 4247 4948 4247 4948 4248 4939 4248 4938 4248 4948 4249 4938 4249 4945 4249 4945 4250 4938 4250 4937 4250 4945 4251 4937 4251 4936 4251 4949 4252 4942 4252 4946 4252 4946 4253 4942 4253 4941 4253 4946 4254 4941 4254 4940 4254 4950 4255 4911 4255 4951 4255 4951 4256 4911 4256 4910 4256 4949 4257 4910 4257 4943 4257 4949 4258 4943 4258 4942 4258 4952 4259 4914 4259 4953 4259 4953 4260 4914 4260 4913 4260 4953 4261 4913 4261 4950 4261 4950 4262 4913 4262 4912 4262 4950 4263 4912 4263 4911 4263 4954 4264 4916 4264 4952 4264 4952 4265 4916 4265 4915 4265 4952 4266 4915 4266 4914 4266 4955 4267 4904 4267 4956 4267 4956 4268 4903 4268 4957 4268 4957 4269 4903 4269 4902 4269 4957 4270 4902 4270 4954 4270 4954 4271 4902 4271 4901 4271 4954 4272 4901 4272 4916 4272 4958 4273 4906 4273 4955 4273 4955 4274 4906 4274 4905 4274 4955 4275 4905 4275 4904 4275 4960 4276 4909 4276 4908 4276 4960 4277 4908 4277 4958 4277 4958 4278 4908 4278 4907 4278 4958 4279 4907 4279 4906 4279 4936 4280 4935 4280 4944 4280 4944 4281 4935 4281 4934 4281 4944 4282 4934 4282 4961 4282 4961 4283 4934 4283 4933 4283 4961 4284 4933 4284 4962 4284 4962 4285 4933 4285 4932 4285 4962 4286 4932 4286 4963 4286 4963 4287 4932 4287 4931 4287 4963 4288 4931 4288 4964 4288 4964 4289 4931 4289 4930 4289 4964 4290 4930 4290 4965 4290 4965 4291 4930 4291 4929 4291 4965 4292 4929 4292 4966 4292 4966 4293 4929 4293 4928 4293 4966 4294 4928 4294 4967 4294 4967 4295 4928 4295 4927 4295 4967 4296 4927 4296 4968 4296 4968 4297 4927 4297 4926 4297 4968 4298 4926 4298 4969 4298 4969 4299 4926 4299 4925 4299 4969 4300 4925 4300 4970 4300 4970 4301 4925 4301 4924 4301 4970 4302 4924 4302 4971 4302 4971 4303 4923 4303 4972 4303 4972 4304 4923 4304 4922 4304 4972 4305 4922 4305 4973 4305 4973 4306 4922 4306 4921 4306 4973 4307 4921 4307 4974 4307 4974 4308 4921 4308 4920 4308 4974 4309 4920 4309 4975 4309 4975 4310 4920 4310 4919 4310 4975 4311 4919 4311 4976 4311 4976 4312 4919 4312 4918 4312 4980 4313 4981 4313 4982 4313 4982 4314 4981 4314 4983 4314 4984 4315 4985 4315 4980 4315 4980 4316 4985 4316 4986 4316 4980 4317 4986 4317 4981 4317 4987 4318 4988 4318 4989 4318 4989 4319 4988 4319 4990 4319 4989 4320 4990 4320 4991 4320 4991 4321 4992 4321 4984 4321 4984 4322 4992 4322 4993 4322 4984 4323 4993 4323 4985 4323 4994 4324 4995 4324 4987 4324 4987 4325 4995 4325 4996 4325 4987 4326 4996 4326 4988 4326 4999 4327 4998 4327 5000 4327 4999 4328 5000 4328 5001 4328 5001 4329 5000 4329 5002 4329 5001 4330 5002 4330 4994 4330 4994 4331 5002 4331 5003 4331 4994 4332 5003 4332 4995 4332 5004 4333 5005 4333 5006 4333 5006 4334 5007 4334 4997 4334 4997 4335 5007 4335 5008 4335 5009 4336 5010 4336 5011 4336 5011 4337 5010 4337 5012 4337 5011 4338 5012 4338 5004 4338 5009 4339 5016 4339 5010 4339 5022 4340 5023 4340 5024 4340 5024 4341 5023 4341 5025 4341 5026 4342 5025 4342 5027 4342 5028 4343 5027 4343 5029 4343 5028 4344 5029 4344 5030 4344 5030 4345 5029 4345 5031 4345 5030 4346 5031 4346 5032 4346 5032 4347 5031 4347 5033 4347 5032 4348 5033 4348 5034 4348 5034 4349 5033 4349 5035 4349 5034 4350 5035 4350 5036 4350 5036 4351 5035 4351 5037 4351 5036 4352 5037 4352 5038 4352 5038 4353 5037 4353 5039 4353 5038 4354 5039 4354 5040 4354 5040 4355 5039 4355 5041 4355 5042 4356 5041 4356 5043 4356 5042 4357 5043 4357 5044 4357 5046 4358 5045 4358 5047 4358 5046 4359 5047 4359 5048 4359 5048 4360 5047 4360 5049 4360 5048 4361 5049 4361 5050 4361 5050 4362 5049 4362 5051 4362 5050 4363 5051 4363 5052 4363 5052 4364 5051 4364 5053 4364 5052 4365 5053 4365 5054 4365 5056 4366 5057 4366 5014 4366 4977 4367 5022 4367 4976 4367 4976 4368 5022 4368 5024 4368 4976 4369 5024 4369 4975 4369 4975 4370 5024 4370 5026 4370 4975 4371 5026 4371 4974 4371 4974 4372 5026 4372 5028 4372 4974 4373 5028 4373 4973 4373 4973 4374 5028 4374 5030 4374 4973 4375 5030 4375 4972 4375 4972 4376 5030 4376 5032 4376 4971 4377 5034 4377 4970 4377 4970 4378 5034 4378 5036 4378 4970 4379 5036 4379 4969 4379 4969 4380 5036 4380 5038 4380 4969 4381 5038 4381 4968 4381 4968 4382 5038 4382 5040 4382 4968 4383 5040 4383 4967 4383 4967 4384 5040 4384 5042 4384 4967 4385 5042 4385 4966 4385 4966 4386 5042 4386 5044 4386 4966 4387 5044 4387 4965 4387 4965 4388 5044 4388 5046 4388 4965 4389 5046 4389 4964 4389 4964 4390 5046 4390 5048 4390 4964 4391 5048 4391 4963 4391 4963 4392 5048 4392 5050 4392 4963 4393 5050 4393 4962 4393 4962 4394 5050 4394 5052 4394 4962 4395 5052 4395 4961 4395 4961 4396 5052 4396 5054 4396 4961 4397 5054 4397 4944 4397 4944 4398 5054 4398 5056 4398 4944 4399 5056 4399 4945 4399 4945 4400 5056 4400 5014 4400 4945 4401 5014 4401 4948 4401 4948 4402 5014 4402 5009 4402 4948 4403 5009 4403 4947 4403 4947 4404 5009 4404 5011 4404 4947 4405 5011 4405 4946 4405 4946 4406 5011 4406 5004 4406 4946 4407 5004 4407 4949 4407 4949 4408 5004 4408 5006 4408 4949 4409 5006 4409 4951 4409 4951 4410 5006 4410 4997 4410 4951 4411 4997 4411 4950 4411 4950 4412 4997 4412 4999 4412 4950 4413 4999 4413 4953 4413 4953 4414 4999 4414 5001 4414 4953 4415 5001 4415 4952 4415 4952 4416 5001 4416 4994 4416 4952 4417 4994 4417 4954 4417 4954 4418 4994 4418 4987 4418 4954 4419 4987 4419 4957 4419 4957 4420 4987 4420 4989 4420 4956 4421 4989 4421 4991 4421 4956 4422 4991 4422 4955 4422 4955 4423 4991 4423 4984 4423 4955 4424 4984 4424 4958 4424 4958 4425 4984 4425 4980 4425 4958 4426 4980 4426 4960 4426 4960 4427 4980 4427 4982 4427 4960 4428 4982 4428 4959 4428 5053 94 5051 94 5059 94 5059 94 5051 94 5060 94 5060 94 5051 94 5049 94 5060 4429 5049 4429 5061 4429 5061 94 5049 94 5047 94 5061 4430 5047 4430 5062 4430 5063 94 5035 94 5064 94 5064 94 5035 94 5033 94 5064 4431 5033 4431 5065 4431 5065 94 5033 94 5031 94 5065 94 5031 94 5066 94 5067 2652 5018 2652 5068 2652 5068 2653 5018 2653 5017 2653 5068 2654 5017 2654 5069 2654 5070 4432 5071 4432 4978 4432 5047 94 5045 94 5062 94 5062 94 5045 94 5043 94 5062 94 5043 94 5072 94 5072 94 5043 94 5041 94 5072 4433 5041 4433 5073 4433 5073 94 5041 94 5039 94 5073 4434 5039 4434 5063 4434 5063 94 5039 94 5037 94 5063 94 5037 94 5035 94 5031 94 5029 94 5066 94 5066 94 5029 94 5027 94 5066 94 5027 94 5074 94 5074 94 5027 94 5025 94 5074 94 5025 94 5075 94 5075 4435 5025 4435 5023 4435 5075 94 5023 94 5076 94 5023 4436 5021 4436 5076 4436 5077 94 5020 94 5067 94 5067 94 5020 94 5019 94 5067 4437 5019 4437 5018 4437 5069 2656 5017 2656 5071 2656 5071 2657 5017 2657 4979 2657 5071 4438 4979 4438 4978 4438 5079 4439 5080 4439 4988 4439 5081 4440 4992 4440 5080 4440 5080 4441 4992 4441 4990 4441 5080 94 4990 94 4988 94 5082 4442 5083 4442 5002 4442 5084 4443 5085 4443 5005 4443 5086 4444 4985 4444 5081 4444 5081 94 4985 94 4993 94 5081 94 4993 94 4992 94 4988 4445 4996 4445 5079 4445 5079 94 4996 94 4995 94 5079 94 4995 94 5083 94 5083 94 4995 94 5003 94 5083 94 5003 94 5002 94 5087 4446 5058 4446 5088 4446 5088 4447 5058 4447 5057 4447 5088 4448 5057 4448 5055 4448 5053 94 5059 94 5055 94 5055 4449 5059 4449 5089 4449 5055 4450 5089 4450 5088 4450 5078 94 4983 94 4981 94 5078 4451 4981 4451 5086 4451 5086 94 4981 94 4986 94 5086 94 4986 94 4985 94 5002 4452 5000 4452 5082 4452 5082 94 5000 94 4998 94 5082 94 4998 94 5090 94 5090 94 4998 94 5008 94 5090 4453 5008 4453 5085 4453 5085 4454 5008 4454 5007 4454 5085 94 5007 94 5005 94 5091 4455 5016 4455 5087 4455 5087 4456 5016 4456 5015 4456 5087 4457 5015 4457 5058 4457 5005 94 5013 94 5084 94 5084 4458 5013 4458 5012 4458 5084 4459 5012 4459 5091 4459 5091 4460 5012 4460 5010 4460 5091 94 5010 94 5016 94 5092 4461 5089 4461 5093 4461 5093 4462 5089 4462 5059 4462 5093 4463 5059 4463 5094 4463 5094 4464 5059 4464 5060 4464 5094 4465 5060 4465 5095 4465 5095 4466 5060 4466 5061 4466 5095 4467 5061 4467 5096 4467 5096 4468 5061 4468 5062 4468 5096 4469 5062 4469 5097 4469 5097 4470 5062 4470 5072 4470 5067 4471 5068 4471 5098 4471 5099 2672 5078 2672 5100 2672 5100 4472 5078 4472 5086 4472 5101 4473 5080 4473 5102 4473 5102 4474 5080 4474 5079 4474 5102 4475 5079 4475 5103 4475 5103 4476 5079 4476 5083 4476 5103 4477 5083 4477 5104 4477 5104 4478 5083 4478 5082 4478 5104 4479 5082 4479 5105 4479 5105 4480 5082 4480 5090 4480 5105 4481 5090 4481 5106 4481 5106 4482 5090 4482 5085 4482 5106 4483 5085 4483 5107 4483 5107 4484 5085 4484 5084 4484 5107 4485 5084 4485 5108 4485 5108 4486 5084 4486 5091 4486 5108 4487 5091 4487 5109 4487 5109 4488 5091 4488 5087 4488 5109 4489 5087 4489 5092 4489 5092 4490 5088 4490 5089 4490 5097 4491 5144 4491 5096 4491 5144 4492 5145 4492 5096 4492 5096 4493 5145 4493 5146 4493 5096 4494 5146 4494 5095 4494 5146 4495 5147 4495 5095 4495 5095 4496 5147 4496 5148 4496 5095 4497 5148 4497 5094 4497 5148 4498 5149 4498 5094 4498 5094 4499 5149 4499 5150 4499 5094 4500 5150 4500 5093 4500 5151 3544 5092 3544 5152 3544 5152 4501 5092 4501 5093 4501 5152 4502 5093 4502 5153 4502 5153 4503 5093 4503 5150 4503 5151 4504 5154 4504 5092 4504 5092 4505 5154 4505 5155 4505 5092 4506 5155 4506 5109 4506 5155 3547 5156 3547 5109 3547 5109 4507 5156 4507 5157 4507 5109 4508 5157 4508 5108 4508 5157 4509 5158 4509 5108 4509 5108 4510 5158 4510 5159 4510 5108 4511 5159 4511 5107 4511 5159 4512 5160 4512 5107 4512 5107 4513 5160 4513 5161 4513 5107 4514 5161 4514 5106 4514 5161 4515 5162 4515 5106 4515 5106 4516 5162 4516 5163 4516 5106 4517 5163 4517 5105 4517 5163 4518 5164 4518 5105 4518 5105 4519 5164 4519 5165 4519 5105 4520 5165 4520 5104 4520 5165 4521 5166 4521 5104 4521 5104 4522 5166 4522 5167 4522 5104 4523 5167 4523 5103 4523 5103 4524 5169 4524 5102 4524 5102 4525 5171 4525 5101 4525 5101 2700 5171 2700 5172 2700 5173 94 5174 94 5175 94 5175 94 5174 94 5176 94 5175 94 5176 94 5177 94 5177 94 5176 94 5178 94 5179 4526 5184 4526 5185 4526 5180 4527 5164 4527 5181 4527 5181 4528 5164 4528 5163 4528 5181 4529 5163 4529 5182 4529 5182 4530 5163 4530 5183 4530 5186 4531 5187 4531 5170 4531 5170 4532 5169 4532 5186 4532 5186 4533 5169 4533 5168 4533 5186 4534 5168 4534 5185 4534 5185 4535 5168 4535 5167 4535 5185 4536 5167 4536 5179 4536 5179 4537 5167 4537 5166 4537 5179 4538 5166 4538 5180 4538 5180 4539 5166 4539 5165 4539 5180 4540 5165 4540 5164 4540 5163 4541 5162 4541 5183 4541 5183 4542 5162 4542 5161 4542 5188 4543 5157 4543 5156 4543 5188 4544 5156 4544 5189 4544 5189 4545 5156 4545 5155 4545 5189 4546 5155 4546 5190 4546 5155 4547 5154 4547 5190 4547 5190 4548 5154 4548 5151 4548 5190 4549 5151 4549 5191 4549 5191 4550 5151 4550 5152 4550 5191 4551 5152 4551 5192 4551 5152 4552 5153 4552 5192 4552 5192 4553 5153 4553 5150 4553 5192 4554 5150 4554 5193 4554 5150 4555 5149 4555 5193 4555 5193 4556 5149 4556 5148 4556 5193 4557 5148 4557 5194 4557 5148 4558 5147 4558 5194 4558 5194 4559 5147 4559 5146 4559 5194 4560 5146 4560 5195 4560 5146 4561 5145 4561 5195 4561 5195 4562 5145 4562 5144 4562 5195 4563 5144 4563 5196 4563 5144 4564 5143 4564 5196 4564 5196 4565 5143 4565 5142 4565 5196 4566 5142 4566 5197 4566 5142 4567 5141 4567 5197 4567 5197 4568 5141 4568 5140 4568 5197 4569 5140 4569 5198 4569 5140 4570 5139 4570 5198 4570 5198 4571 5139 4571 5138 4571 5198 4572 5138 4572 5199 4572 5138 4573 5137 4573 5199 4573 5199 4574 5137 4574 5136 4574 5199 4575 5136 4575 5200 4575 5136 4576 5135 4576 5200 4576 5200 4577 5135 4577 5132 4577 5200 4578 5132 4578 5201 4578 5132 4579 5133 4579 5201 4579 5201 4580 5133 4580 5134 4580 5201 4581 5134 4581 5202 4581 5134 4582 5131 4582 5202 4582 5202 4583 5131 4583 5130 4583 5202 4584 5130 4584 5203 4584 5130 4585 5129 4585 5203 4585 5203 4586 5129 4586 5128 4586 5203 4587 5128 4587 5204 4587 5128 4588 5127 4588 5204 4588 5205 4589 5126 4589 5125 4589 5205 4590 5125 4590 5206 4590 5206 4591 5125 4591 5124 4591 5206 4592 5124 4592 5207 4592 5207 4593 5124 4593 5123 4593 5207 4594 5123 4594 5208 4594 5208 4595 5123 4595 5122 4595 5208 4596 5122 4596 5209 4596 5122 4597 5121 4597 5209 4597 5209 4598 5121 4598 5120 4598 5209 4599 5120 4599 5210 4599 5120 4600 5119 4600 5210 4600 5211 4601 5118 4601 5212 4601 5118 4602 5117 4602 5212 4602 5212 4603 5117 4603 5116 4603 5212 4604 5116 4604 5213 4604 5116 4605 5115 4605 5213 4605 5213 4606 5115 4606 5114 4606 5213 4607 5114 4607 5214 4607 5114 4608 5113 4608 5214 4608 5214 4609 5113 4609 5112 4609 5214 4610 5112 4610 5215 4610 5112 4611 5111 4611 5215 4611 5215 4612 5111 4612 5110 4612 5215 4613 5110 4613 5216 4613 5216 4614 5110 4614 5172 4614 5216 4615 5172 4615 5187 4615 5187 4616 5172 4616 5171 4616 5187 4617 5171 4617 5170 4617 5217 4618 5218 4618 5205 4618 5219 2713 5188 2713 5220 2713 5220 94 5188 94 5189 94 5220 94 5189 94 5221 94 5204 94 5222 94 5203 94 5203 4619 5222 4619 5223 4619 5203 94 5223 94 5202 94 5202 94 5223 94 5224 94 5202 94 5224 94 5201 94 5224 4620 5225 4620 5201 4620 5201 94 5225 94 5226 94 5201 4621 5226 4621 5200 4621 5200 94 5226 94 5227 94 5200 4622 5227 4622 5199 4622 5199 4623 5227 4623 5228 4623 5199 4624 5228 4624 5198 4624 5198 4625 5228 4625 5229 4625 5198 4626 5229 4626 5197 4626 5197 4627 5229 4627 5230 4627 5197 94 5230 94 5196 94 5196 4628 5230 4628 5231 4628 5196 94 5231 94 5195 94 5195 94 5231 94 5232 94 5195 4629 5232 4629 5194 4629 5194 94 5232 94 5233 94 5194 94 5233 94 5193 94 5193 94 5233 94 5234 94 5193 4630 5234 4630 5192 4630 5192 4631 5234 4631 5235 4631 5192 4632 5235 4632 5191 4632 5191 94 5235 94 5221 94 5191 94 5221 94 5190 94 5190 94 5221 94 5189 94 5184 94 5236 94 5185 94 5185 94 5236 94 5237 94 5185 4633 5237 4633 5186 4633 5186 94 5237 94 5238 94 5186 94 5238 94 5187 94 5187 94 5238 94 5239 94 5187 4634 5239 4634 5216 4634 5216 94 5239 94 5240 94 5216 94 5240 94 5215 94 5215 94 5240 94 5241 94 5215 94 5241 94 5214 94 5214 94 5241 94 5242 94 5214 4635 5242 4635 5213 4635 5213 94 5242 94 5243 94 5213 94 5243 94 5212 94 5212 94 5243 94 5244 94 5212 4636 5244 4636 5211 4636 5211 94 5244 94 5245 94 5210 2719 5246 2719 5209 2719 5209 2720 5246 2720 5247 2720 5209 2721 5247 2721 5208 2721 5208 2722 5247 2722 5248 2722 5208 94 5248 94 5207 94 5207 94 5248 94 5217 94 5207 94 5217 94 5206 94 5206 94 5217 94 5205 94 5246 4637 5249 4637 5247 4637 5247 199 5250 199 5248 199 5248 120 5250 120 5251 120 5248 120 5251 120 5217 120 5222 4638 5252 4638 5223 4638 5223 4639 5252 4639 5253 4639 5223 4639 5253 4639 5224 4639 5224 4640 5253 4640 5254 4640 5224 4641 5254 4641 5225 4641 5225 209 5254 209 5255 209 5225 4642 5255 4642 5226 4642 5256 4643 5257 4643 5258 4643 5259 4644 5257 4644 5256 4644 5260 4645 5259 4645 5256 4645 5256 4646 5261 4646 5262 4646 5263 4647 5261 4647 5256 4647 5258 3631 5263 3631 5256 3631 5256 4648 5264 4648 5265 4648 5266 4649 5264 4649 5256 4649 5262 4650 5266 4650 5256 4650 5256 4651 5267 4651 5268 4651 5269 4652 5267 4652 5256 4652 5265 4653 5269 4653 5256 4653 5256 4654 5270 4654 5271 4654 5272 4655 5270 4655 5256 4655 5268 4656 5272 4656 5256 4656 5256 4657 5273 4657 5274 4657 5275 4658 5273 4658 5256 4658 5271 4659 5275 4659 5256 4659 5256 3644 5276 3644 5277 3644 5278 3645 5276 3645 5256 3645 5274 4660 5278 4660 5256 4660 5256 4661 5279 4661 5280 4661 5281 3648 5279 3648 5256 3648 5277 4662 5281 4662 5256 4662 5256 4663 5282 4663 5283 4663 5284 4664 5282 4664 5256 4664 5280 4665 5284 4665 5256 4665 5256 4666 5285 4666 5286 4666 5287 4667 5285 4667 5256 4667 5283 4668 5287 4668 5256 4668 5256 4669 5288 4669 5289 4669 5290 3657 5288 3657 5256 3657 5286 4670 5290 4670 5256 4670 5256 4671 5291 4671 5292 4671 5293 4672 5291 4672 5256 4672 5289 4673 5293 4673 5256 4673 5256 3662 5294 3662 5295 3662 5296 4674 5294 4674 5256 4674 5292 4675 5296 4675 5256 4675 5256 3665 5297 3665 5298 3665 5299 4676 5297 4676 5256 4676 5295 4677 5299 4677 5256 4677 5298 4678 5260 4678 5256 4678 5300 4679 5301 4679 5302 4679 5303 2332 5304 2332 5305 2332 5306 4680 5307 4680 5308 4680 5308 4681 5309 4681 5306 4681 5306 4682 5309 4682 5310 4682 5306 4683 5310 4683 5311 4683 5304 4684 5303 4684 5310 4684 5310 4685 5303 4685 5312 4685 5310 4686 5312 4686 5311 4686 5313 4687 5314 4687 5305 4687 5305 4688 5314 4688 5315 4688 5305 4689 5315 4689 5303 4689 5305 4690 5316 4690 5313 4690 5313 4691 5316 4691 5317 4691 5313 4692 5317 4692 5318 4692 5318 4693 5317 4693 5319 4693 5319 4694 5317 4694 5320 4694 5319 3674 5320 3674 5321 3674 5321 3675 5320 3675 5322 3675 5321 4695 5322 4695 5323 4695 5323 4696 5322 4696 5324 4696 5324 4697 5322 4697 5325 4697 5324 4698 5325 4698 5326 4698 5326 4699 5325 4699 5327 4699 5326 3681 5327 3681 5328 3681 5328 4700 5327 4700 5329 4700 5329 4701 5327 4701 5330 4701 5329 4702 5330 4702 5331 4702 5331 4703 5330 4703 5332 4703 5331 4704 5332 4704 5333 4704 5333 4705 5332 4705 5334 4705 5333 4706 5334 4706 5335 4706 5301 4707 5300 4707 5334 4707 5334 4708 5300 4708 5336 4708 5334 4709 5336 4709 5335 4709 5337 4710 5338 4710 5339 4710 5339 4711 5338 4711 5340 4711 5339 4712 5340 4712 5302 4712 5302 4713 5340 4713 5341 4713 5302 3696 5341 3696 5300 3696 5342 4714 5343 4714 5344 4714 5344 3698 5343 3698 5345 3698 5344 4715 5345 4715 5337 4715 5337 4716 5345 4716 5346 4716 5337 4717 5346 4717 5338 4717 5347 4718 5348 4718 5342 4718 5342 4719 5348 4719 5349 4719 5342 4720 5349 4720 5343 4720 5350 4721 5351 4721 5347 4721 5347 4722 5351 4722 5352 4722 5347 3707 5352 3707 5348 3707 5307 4723 5353 4723 5308 4723 5308 4724 5353 4724 5354 4724 5308 4725 5354 4725 5355 4725 5355 4726 5354 4726 5356 4726 5355 4727 5356 4727 5357 4727 5357 4728 5356 4728 5358 4728 5357 4729 5358 4729 5359 4729 5359 4730 5358 4730 5360 4730 5359 4731 5360 4731 5361 4731 5361 4732 5360 4732 5362 4732 5361 4733 5362 4733 5363 4733 5363 4734 5362 4734 5364 4734 5363 4735 5364 4735 5365 4735 5365 4736 5364 4736 5366 4736 5365 4737 5366 4737 5367 4737 5367 4738 5366 4738 5368 4738 5367 4739 5368 4739 5369 4739 5369 4740 5368 4740 5370 4740 5369 4741 5370 4741 5371 4741 5371 4742 5370 4742 5372 4742 5371 4743 5372 4743 5373 4743 5373 4744 5372 4744 5374 4744 5373 4745 5374 4745 5375 4745 5375 4746 5374 4746 5376 4746 5375 4747 5376 4747 5377 4747 5377 4748 5376 4748 5378 4748 5377 4749 5378 4749 5379 4749 5379 4750 5378 4750 5380 4750 5379 4751 5380 4751 5381 4751 5381 4752 5380 4752 5382 4752 5381 4753 5382 4753 5383 4753 5383 4754 5382 4754 5384 4754 5383 3727 5384 3727 5385 3727 5385 4755 5384 4755 5386 4755 5385 4756 5386 4756 5387 4756 5387 4757 5386 4757 5388 4757 5387 4758 5388 4758 5389 4758 5389 4759 5388 4759 5390 4759 5389 4760 5390 4760 5391 4760 5391 4761 5390 4761 5392 4761 5391 4762 5392 4762 5393 4762 5393 4763 5392 4763 5394 4763 5393 4764 5394 4764 5395 4764 5395 3738 5394 3738 5350 3738 5395 4765 5350 4765 5396 4765 5396 3740 5350 3740 5347 3740 5355 4766 5397 4766 5308 4766 5308 4767 5397 4767 5398 4767 5308 4768 5398 4768 5309 4768 5309 4769 5398 4769 5399 4769 5309 4770 5399 4770 5310 4770 5310 4771 5399 4771 5400 4771 5310 4772 5400 4772 5304 4772 5304 2364 5400 2364 5401 2364 5304 4773 5401 4773 5305 4773 5305 4774 5401 4774 5402 4774 5305 4775 5402 4775 5316 4775 5316 4776 5402 4776 5403 4776 5316 3742 5403 3742 5317 3742 5317 4777 5403 4777 5404 4777 5317 4778 5404 4778 5320 4778 5320 3745 5404 3745 5405 3745 5320 4779 5405 4779 5322 4779 5322 4780 5405 4780 5406 4780 5322 4781 5406 4781 5325 4781 5325 4782 5406 4782 5407 4782 5325 3750 5407 3750 5327 3750 5327 4783 5407 4783 5408 4783 5327 4784 5408 4784 5330 4784 5330 4785 5408 4785 5409 4785 5330 4786 5409 4786 5332 4786 5332 4787 5409 4787 5410 4787 5332 4788 5410 4788 5334 4788 5334 4789 5410 4789 5411 4789 5334 4790 5411 4790 5301 4790 5301 4791 5411 4791 5412 4791 5301 3760 5412 3760 5302 3760 5302 3761 5412 3761 5413 3761 5302 4792 5413 4792 5339 4792 5339 4793 5413 4793 5414 4793 5339 3764 5414 3764 5337 3764 5337 4794 5414 4794 5415 4794 5337 3766 5415 3766 5344 3766 5344 4795 5415 4795 5416 4795 5344 4796 5416 4796 5342 4796 5342 4797 5416 4797 5417 4797 5342 4798 5417 4798 5347 4798 5347 4799 5417 4799 5418 4799 5347 4800 5418 4800 5396 4800 5396 4801 5418 4801 5419 4801 5396 4802 5419 4802 5395 4802 5395 4803 5419 4803 5420 4803 5395 4804 5420 4804 5393 4804 5393 4805 5420 4805 5421 4805 5393 3778 5421 3778 5391 3778 5391 4806 5421 4806 5422 4806 5391 4807 5422 4807 5389 4807 5389 3781 5422 3781 5423 3781 5389 4808 5423 4808 5387 4808 5387 3783 5423 3783 5424 3783 5387 4809 5424 4809 5385 4809 5385 4810 5424 4810 5425 4810 5385 4811 5425 4811 5383 4811 5383 4812 5425 4812 5426 4812 5383 3788 5426 3788 5381 3788 5381 4813 5426 4813 5427 4813 5381 4814 5427 4814 5379 4814 5379 4815 5427 4815 5428 4815 5379 4816 5428 4816 5377 4816 5377 4817 5428 4817 5429 4817 5377 4818 5429 4818 5375 4818 5375 3795 5429 3795 5430 3795 5375 4819 5430 4819 5373 4819 5373 4820 5430 4820 5431 4820 5373 4821 5431 4821 5371 4821 5371 4822 5431 4822 5432 4822 5371 4823 5432 4823 5369 4823 5369 4824 5432 4824 5433 4824 5369 4825 5433 4825 5367 4825 5367 4826 5433 4826 5434 4826 5367 4827 5434 4827 5365 4827 5365 4828 5434 4828 5435 4828 5365 2371 5435 2371 5363 2371 5363 4829 5435 4829 5436 4829 5363 4830 5436 4830 5361 4830 5361 4831 5436 4831 5437 4831 5361 4832 5437 4832 5359 4832 5359 2376 5437 2376 5438 2376 5359 2377 5438 2377 5357 2377 5357 4833 5438 4833 5439 4833 5357 4834 5439 4834 5355 4834 5355 4835 5439 4835 5397 4835 5397 4836 5440 4836 5398 4836 5398 4837 5440 4837 5441 4837 5398 4838 5441 4838 5399 4838 5399 4839 5441 4839 5442 4839 5399 4840 5442 4840 5400 4840 5400 4841 5442 4841 5443 4841 5400 4842 5443 4842 5401 4842 5401 4843 5443 4843 5444 4843 5401 4844 5444 4844 5402 4844 5402 4845 5444 4845 5445 4845 5402 4846 5445 4846 5403 4846 5403 4847 5445 4847 5446 4847 5403 3806 5446 3806 5404 3806 5404 3807 5446 3807 5447 3807 5404 4848 5447 4848 5405 4848 5405 4849 5447 4849 5448 4849 5405 4850 5448 4850 5406 4850 5406 3811 5448 3811 5449 3811 5406 4851 5449 4851 5407 4851 5407 4852 5449 4852 5450 4852 5407 3814 5450 3814 5408 3814 5408 3815 5450 3815 5451 3815 5408 4853 5451 4853 5409 4853 5409 4854 5451 4854 5452 4854 5409 4855 5452 4855 5410 4855 5410 4856 5452 4856 5453 4856 5410 4857 5453 4857 5411 4857 5411 4858 5453 4858 5454 4858 5411 4859 5454 4859 5412 4859 5412 4860 5454 4860 5455 4860 5412 4861 5455 4861 5413 4861 5413 4862 5455 4862 5456 4862 5413 3826 5456 3826 5414 3826 5414 4863 5456 4863 5457 4863 5414 4864 5457 4864 5415 4864 5415 4865 5457 4865 5458 4865 5415 4866 5458 4866 5416 4866 5416 4867 5458 4867 5459 4867 5416 4868 5459 4868 5417 4868 5417 4869 5459 4869 5460 4869 5417 4870 5460 4870 5418 4870 5418 4871 5460 4871 5461 4871 5418 4872 5461 4872 5419 4872 5419 4873 5461 4873 5462 4873 5419 3838 5462 3838 5420 3838 5420 4874 5462 4874 5463 4874 5420 4875 5463 4875 5421 4875 5421 4876 5463 4876 5464 4876 5421 4877 5464 4877 5422 4877 5422 4878 5464 4878 5465 4878 5422 4879 5465 4879 5423 4879 5423 4880 5465 4880 5466 4880 5423 4881 5466 4881 5424 4881 5424 4882 5466 4882 5467 4882 5424 4883 5467 4883 5425 4883 5425 4884 5467 4884 5468 4884 5425 4885 5468 4885 5426 4885 5426 4886 5468 4886 5469 4886 5426 4887 5469 4887 5427 4887 5427 4888 5469 4888 5470 4888 5427 4889 5470 4889 5428 4889 5428 4890 5470 4890 5471 4890 5428 4891 5471 4891 5429 4891 5429 4892 5471 4892 5472 4892 5429 3858 5472 3858 5430 3858 5430 4893 5472 4893 5473 4893 5430 4894 5473 4894 5431 4894 5431 4895 5473 4895 5474 4895 5431 4896 5474 4896 5432 4896 5432 4897 5474 4897 5475 4897 5432 4898 5475 4898 5433 4898 5433 4899 5475 4899 5476 4899 5433 4900 5476 4900 5434 4900 5434 3867 5476 3867 5477 3867 5434 4901 5477 4901 5435 4901 5435 4902 5477 4902 5478 4902 5435 4903 5478 4903 5436 4903 5436 4904 5478 4904 5479 4904 5436 4905 5479 4905 5437 4905 5437 4906 5479 4906 5480 4906 5437 4907 5480 4907 5438 4907 5438 4908 5480 4908 5481 4908 5438 4909 5481 4909 5439 4909 5439 4910 5481 4910 5482 4910 5439 4911 5482 4911 5397 4911 5397 4912 5482 4912 5440 4912 5440 4913 5483 4913 5441 4913 5441 4914 5483 4914 5484 4914 5441 4915 5484 4915 5442 4915 5442 4916 5484 4916 5485 4916 5442 4917 5485 4917 5443 4917 5443 4918 5485 4918 5486 4918 5443 3869 5486 3869 5444 3869 5444 3870 5486 3870 5487 3870 5444 3871 5487 3871 5445 3871 5445 3872 5487 3872 5488 3872 5445 4919 5488 4919 5446 4919 5446 4920 5488 4920 5489 4920 5446 4921 5489 4921 5447 4921 5447 4922 5489 4922 5490 4922 5447 4923 5490 4923 5448 4923 5448 4924 5490 4924 5491 4924 5448 4925 5491 4925 5449 4925 5449 4926 5491 4926 5492 4926 5449 3881 5492 3881 5450 3881 5450 4927 5492 4927 5493 4927 5450 4928 5493 4928 5451 4928 5451 4929 5493 4929 5494 4929 5451 3885 5494 3885 5452 3885 5452 3886 5494 3886 5495 3886 5452 4930 5495 4930 5453 4930 5453 4931 5495 4931 5496 4931 5453 4932 5496 4932 5454 4932 5454 4933 5496 4933 5497 4933 5454 4934 5497 4934 5455 4934 5455 4935 5497 4935 5498 4935 5455 4936 5498 4936 5456 4936 5456 4937 5498 4937 5499 4937 5456 4938 5499 4938 5457 4938 5457 4939 5499 4939 5500 4939 5457 4940 5500 4940 5458 4940 5458 4941 5500 4941 5501 4941 5458 4942 5501 4942 5459 4942 5459 4943 5501 4943 5502 4943 5459 4944 5502 4944 5460 4944 5460 4945 5502 4945 5503 4945 5460 4946 5503 4946 5461 4946 5461 4947 5503 4947 5504 4947 5461 4948 5504 4948 5462 4948 5462 3906 5504 3906 5505 3906 5462 4949 5505 4949 5463 4949 5463 4950 5505 4950 5506 4950 5463 4951 5506 4951 5464 4951 5464 4952 5506 4952 5507 4952 5464 4953 5507 4953 5465 4953 5465 4954 5507 4954 5508 4954 5465 4955 5508 4955 5466 4955 5466 4956 5508 4956 5509 4956 5466 4957 5509 4957 5467 4957 5467 4958 5509 4958 5510 4958 5467 4959 5510 4959 5468 4959 5468 4960 5510 4960 5511 4960 5468 3919 5511 3919 5469 3919 5469 4961 5511 4961 5512 4961 5469 3921 5512 3921 5470 3921 5470 4962 5512 4962 5513 4962 5470 4963 5513 4963 5471 4963 5471 4964 5513 4964 5514 4964 5471 4965 5514 4965 5472 4965 5472 3926 5514 3926 5515 3926 5472 4966 5515 4966 5473 4966 5473 4967 5515 4967 5516 4967 5473 4968 5516 4968 5474 4968 5474 4969 5516 4969 5517 4969 5474 4970 5517 4970 5475 4970 5475 4971 5517 4971 5518 4971 5475 4972 5518 4972 5476 4972 5476 4973 5518 4973 5519 4973 5476 4974 5519 4974 5477 4974 5477 4975 5519 4975 5520 4975 5477 4976 5520 4976 5478 4976 5478 4977 5520 4977 5521 4977 5478 4978 5521 4978 5479 4978 5479 4979 5521 4979 5522 4979 5479 2407 5522 2407 5480 2407 5480 2408 5522 2408 5523 2408 5480 4980 5523 4980 5481 4980 5481 4981 5523 4981 5524 4981 5481 4982 5524 4982 5482 4982 5482 4983 5524 4983 5525 4983 5482 4984 5525 4984 5440 4984 5440 4985 5525 4985 5483 4985 5483 4986 5526 4986 5484 4986 5484 4987 5526 4987 5527 4987 5484 4988 5527 4988 5485 4988 5485 4989 5527 4989 5528 4989 5485 4990 5528 4990 5486 4990 5486 4991 5528 4991 5529 4991 5486 4992 5529 4992 5487 4992 5487 4993 5529 4993 5530 4993 5487 4994 5530 4994 5488 4994 5488 4995 5530 4995 5531 4995 5488 4996 5531 4996 5489 4996 5489 4997 5531 4997 5532 4997 5489 4998 5532 4998 5490 4998 5490 4999 5532 4999 5533 4999 5490 3955 5533 3955 5491 3955 5491 5000 5533 5000 5534 5000 5491 3957 5534 3957 5492 3957 5492 5001 5534 5001 5535 5001 5492 5002 5535 5002 5493 5002 5493 5003 5535 5003 5536 5003 5493 5004 5536 5004 5494 5004 5494 3962 5536 3962 5537 3962 5494 5005 5537 5005 5495 5005 5495 5006 5537 5006 5538 5006 5495 5007 5538 5007 5496 5007 5496 5008 5538 5008 5539 5008 5496 5009 5539 5009 5497 5009 5497 5010 5539 5010 5540 5010 5497 5011 5540 5011 5498 5011 5498 5012 5540 5012 5541 5012 5498 3971 5541 3971 5499 3971 5499 5013 5541 5013 5542 5013 5499 5014 5542 5014 5500 5014 5500 5015 5542 5015 5543 5015 5500 3975 5543 3975 5501 3975 5501 5016 5543 5016 5544 5016 5501 5017 5544 5017 5502 5017 5502 5018 5544 5018 5545 5018 5502 5019 5545 5019 5503 5019 5503 5020 5545 5020 5546 5020 5503 5021 5546 5021 5504 5021 5504 5022 5546 5022 5547 5022 5504 5023 5547 5023 5505 5023 5505 5024 5547 5024 5548 5024 5505 5025 5548 5025 5506 5025 5506 5026 5548 5026 5549 5026 5506 5027 5549 5027 5507 5027 5507 5028 5549 5028 5550 5028 5507 5029 5550 5029 5508 5029 5508 5030 5550 5030 5551 5030 5508 5031 5551 5031 5509 5031 5509 5032 5551 5032 5552 5032 5509 5033 5552 5033 5510 5033 5510 5034 5552 5034 5553 5034 5510 3995 5553 3995 5511 3995 5511 5035 5553 5035 5554 5035 5511 3997 5554 3997 5512 3997 5512 5036 5554 5036 5555 5036 5512 5037 5555 5037 5513 5037 5513 5038 5555 5038 5556 5038 5513 5039 5556 5039 5514 5039 5514 5040 5556 5040 5557 5040 5514 4003 5557 4003 5515 4003 5515 5041 5557 5041 5558 5041 5515 5042 5558 5042 5516 5042 5516 4006 5558 4006 5559 4006 5516 4007 5559 4007 5517 4007 5517 5043 5559 5043 5560 5043 5517 5044 5560 5044 5518 5044 5518 5045 5560 5045 5561 5045 5518 5046 5561 5046 5519 5046 5519 5047 5561 5047 5562 5047 5519 5048 5562 5048 5520 5048 5520 5049 5562 5049 5563 5049 5520 5050 5563 5050 5521 5050 5521 5051 5563 5051 5564 5051 5521 5052 5564 5052 5522 5052 5522 5053 5564 5053 5565 5053 5522 5054 5565 5054 5523 5054 5523 5055 5565 5055 5566 5055 5523 5056 5566 5056 5524 5056 5524 5057 5566 5057 5567 5057 5524 5058 5567 5058 5525 5058 5525 5059 5567 5059 5568 5059 5525 5060 5568 5060 5483 5060 5483 4026 5568 4026 5526 4026 5526 5061 5569 5061 5527 5061 5527 5062 5569 5062 5570 5062 5527 4029 5570 4029 5528 4029 5528 4030 5570 4030 5571 4030 5528 5063 5571 5063 5529 5063 5529 5064 5571 5064 5572 5064 5529 5065 5572 5065 5530 5065 5530 5066 5572 5066 5573 5066 5530 4035 5573 4035 5531 4035 5531 5067 5573 5067 5574 5067 5531 5068 5574 5068 5532 5068 5532 5069 5574 5069 5575 5069 5532 5070 5575 5070 5533 5070 5533 5071 5575 5071 5576 5071 5533 4041 5576 4041 5534 4041 5534 5072 5576 5072 5577 5072 5534 5073 5577 5073 5535 5073 5535 5074 5577 5074 5578 5074 5535 5075 5578 5075 5536 5075 5536 5076 5578 5076 5579 5076 5536 5077 5579 5077 5537 5077 5537 5078 5579 5078 5580 5078 5537 4049 5580 4049 5538 4049 5538 4050 5580 4050 5581 4050 5538 4051 5581 4051 5539 4051 5539 4052 5581 4052 5582 4052 5539 5079 5582 5079 5540 5079 5540 5080 5582 5080 5583 5080 5540 5081 5583 5081 5541 5081 5541 5082 5583 5082 5584 5082 5541 5083 5584 5083 5542 5083 5542 5084 5584 5084 5585 5084 5542 5085 5585 5085 5543 5085 5543 5086 5585 5086 5586 5086 5543 5087 5586 5087 5544 5087 5544 5088 5586 5088 5587 5088 5544 5089 5587 5089 5545 5089 5545 5090 5587 5090 5588 5090 5545 5091 5588 5091 5546 5091 5546 5092 5588 5092 5589 5092 5546 5093 5589 5093 5547 5093 5547 5094 5589 5094 5590 5094 5547 5095 5590 5095 5548 5095 5548 5096 5590 5096 5591 5096 5548 5097 5591 5097 5549 5097 5549 5098 5591 5098 5592 5098 5549 5099 5592 5099 5550 5099 5550 5100 5592 5100 5593 5100 5550 5101 5593 5101 5551 5101 5551 5102 5593 5102 5594 5102 5551 5103 5594 5103 5552 5103 5552 5104 5594 5104 5595 5104 5552 5105 5595 5105 5553 5105 5553 5106 5595 5106 5596 5106 5553 5107 5596 5107 5554 5107 5554 5108 5596 5108 5597 5108 5554 5109 5597 5109 5555 5109 5555 5110 5597 5110 5598 5110 5555 5111 5598 5111 5556 5111 5556 5112 5598 5112 5599 5112 5556 5113 5599 5113 5557 5113 5557 5114 5599 5114 5600 5114 5557 5115 5600 5115 5558 5115 5558 5116 5600 5116 5601 5116 5558 5117 5601 5117 5559 5117 5559 5118 5601 5118 5602 5118 5559 5119 5602 5119 5560 5119 5560 5120 5602 5120 5603 5120 5560 5121 5603 5121 5561 5121 5561 5122 5603 5122 5604 5122 5561 5123 5604 5123 5562 5123 5562 5124 5604 5124 5605 5124 5562 5125 5605 5125 5563 5125 5563 5126 5605 5126 5606 5126 5563 5127 5606 5127 5564 5127 5564 4102 5606 4102 5607 4102 5564 5128 5607 5128 5565 5128 5565 5129 5607 5129 5608 5129 5565 4105 5608 4105 5566 4105 5566 5130 5608 5130 5609 5130 5566 5131 5609 5131 5567 5131 5567 5132 5609 5132 5610 5132 5567 5133 5610 5133 5568 5133 5568 5134 5610 5134 5611 5134 5568 5135 5611 5135 5526 5135 5526 5136 5611 5136 5569 5136 5569 5137 5260 5137 5570 5137 5570 5138 5260 5138 5298 5138 5570 4115 5298 4115 5571 4115 5571 5139 5298 5139 5297 5139 5571 5140 5297 5140 5572 5140 5572 5141 5297 5141 5299 5141 5572 5142 5299 5142 5573 5142 5573 5143 5299 5143 5295 5143 5573 5144 5295 5144 5574 5144 5574 5145 5295 5145 5294 5145 5574 5146 5294 5146 5575 5146 5575 5147 5294 5147 5296 5147 5575 5148 5296 5148 5576 5148 5576 5149 5296 5149 5292 5149 5576 5150 5292 5150 5577 5150 5577 5151 5292 5151 5291 5151 5577 4129 5291 4129 5578 4129 5578 5152 5291 5152 5293 5152 5578 5153 5293 5153 5579 5153 5579 5154 5293 5154 5289 5154 5579 4133 5289 4133 5580 4133 5580 5155 5289 5155 5288 5155 5580 5156 5288 5156 5581 5156 5581 5157 5288 5157 5290 5157 5581 5158 5290 5158 5582 5158 5582 5159 5290 5159 5286 5159 5582 5160 5286 5160 5583 5160 5583 5161 5286 5161 5285 5161 5583 5162 5285 5162 5584 5162 5584 4142 5285 4142 5287 4142 5584 5163 5287 5163 5585 5163 5585 5164 5287 5164 5283 5164 5585 5165 5283 5165 5586 5165 5586 5166 5283 5166 5282 5166 5586 5167 5282 5167 5587 5167 5587 5168 5282 5168 5284 5168 5587 5169 5284 5169 5588 5169 5588 5170 5284 5170 5280 5170 5588 5171 5280 5171 5589 5171 5589 5172 5280 5172 5279 5172 5589 5173 5279 5173 5590 5173 5590 5174 5279 5174 5281 5174 5590 5175 5281 5175 5591 5175 5591 4156 5281 4156 5277 4156 5591 5176 5277 5176 5592 5176 5592 5177 5277 5177 5276 5177 5592 5178 5276 5178 5593 5178 5593 5179 5276 5179 5278 5179 5593 5180 5278 5180 5594 5180 5594 5181 5278 5181 5274 5181 5594 5182 5274 5182 5595 5182 5595 5183 5274 5183 5273 5183 5595 4165 5273 4165 5596 4165 5596 5184 5273 5184 5275 5184 5596 5185 5275 5185 5597 5185 5597 5186 5275 5186 5271 5186 5597 5187 5271 5187 5598 5187 5598 5188 5271 5188 5270 5188 5598 5189 5270 5189 5599 5189 5599 5190 5270 5190 5272 5190 5599 5191 5272 5191 5600 5191 5600 4174 5272 4174 5268 4174 5600 5192 5268 5192 5601 5192 5601 5193 5268 5193 5267 5193 5601 4177 5267 4177 5602 4177 5602 5194 5267 5194 5269 5194 5602 4179 5269 4179 5603 4179 5603 5195 5269 5195 5265 5195 5603 5196 5265 5196 5604 5196 5604 5197 5265 5197 5264 5197 5604 5198 5264 5198 5605 5198 5605 5199 5264 5199 5266 5199 5605 5200 5266 5200 5606 5200 5606 5201 5266 5201 5262 5201 5606 5202 5262 5202 5607 5202 5607 5203 5262 5203 5261 5203 5607 5204 5261 5204 5608 5204 5608 5205 5261 5205 5263 5205 5608 5206 5263 5206 5609 5206 5609 5207 5263 5207 5258 5207 5609 5208 5258 5208 5610 5208 5610 4194 5258 4194 5257 4194 5610 5209 5257 5209 5611 5209 5611 5210 5257 5210 5259 5210 5611 5211 5259 5211 5569 5211 5569 5212 5259 5212 5260 5212 5340 94 5612 94 5341 94 5341 4210 5612 4210 5613 4210 5341 5213 5613 5213 5300 5213 5300 5214 5613 5214 5614 5214 5300 5215 5614 5215 5336 5215 5336 5216 5614 5216 5615 5216 5336 94 5615 94 5335 94 5335 5217 5615 5217 5616 5217 5335 94 5616 94 5333 94 5333 94 5616 94 5617 94 5333 94 5617 94 5331 94 5617 5218 5618 5218 5331 5218 5331 5219 5618 5219 5619 5219 5331 4199 5619 4199 5329 4199 5329 4200 5619 4200 5620 4200 5329 5220 5620 5220 5328 5220 5328 94 5620 94 5621 94 5328 94 5621 94 5326 94 5326 94 5621 94 5622 94 5326 94 5622 94 5324 94 5324 5221 5622 5221 5623 5221 5324 5222 5623 5222 5323 5222 5323 5223 5623 5223 5624 5223 5323 5224 5624 5224 5321 5224 5321 94 5624 94 5625 94 5321 5225 5625 5225 5319 5225 5319 5226 5625 5226 5626 5226 5319 4208 5626 4208 5318 4208 5318 4209 5626 4209 5627 4209 5318 2415 5627 2415 5313 2415 5313 2416 5627 2416 5628 2416 5313 2417 5628 2417 5314 2417 5314 5227 5628 5227 5629 5227 5314 5228 5629 5228 5315 5228 5368 94 5630 94 5370 94 5370 94 5630 94 5631 94 5370 94 5631 94 5372 94 5372 94 5631 94 5632 94 5372 94 5632 94 5374 94 5374 5229 5632 5229 5633 5229 5374 5230 5633 5230 5376 5230 5376 5231 5633 5231 5634 5231 5376 94 5634 94 5378 94 5378 94 5634 94 5635 94 5378 5232 5635 5232 5380 5232 5380 94 5635 94 5636 94 5380 94 5636 94 5382 94 5382 94 5636 94 5637 94 5382 5233 5637 5233 5384 5233 5384 94 5637 94 5638 94 5384 94 5638 94 5386 94 5386 94 5638 94 5639 94 5386 5234 5639 5234 5388 5234 5388 94 5639 94 5640 94 5388 5235 5640 5235 5390 5235 5390 5236 5640 5236 5641 5236 5390 5237 5641 5237 5392 5237 5392 94 5641 94 5642 94 5392 5238 5642 5238 5394 5238 5394 5239 5642 5239 5643 5239 5394 94 5643 94 5350 94 5350 4232 5643 4232 5644 4232 5350 94 5644 94 5351 94 5351 5240 5644 5240 5645 5240 5351 94 5645 94 5352 94 5352 5241 5645 5241 5646 5241 5352 94 5646 94 5348 94 5348 5242 5646 5242 5647 5242 5348 5243 5647 5243 5349 5243 5349 5244 5647 5244 5648 5244 5349 94 5648 94 5343 94 5343 4238 5648 4238 5649 4238 5343 94 5649 94 5345 94 5345 94 5649 94 5650 94 5345 94 5650 94 5346 94 5346 5245 5650 5245 5651 5245 5346 4240 5651 4240 5338 4240 5338 4241 5651 4241 5652 4241 5338 5246 5652 5246 5340 5246 5340 4243 5652 4243 5653 4243 5340 94 5653 94 5612 94 5629 2420 5654 2420 5315 2420 5315 94 5654 94 5655 94 5315 5247 5655 5247 5303 5247 5303 94 5655 94 5656 94 5303 94 5656 94 5312 94 5312 2422 5656 2422 5657 2422 5312 5248 5657 5248 5311 5248 5311 5249 5657 5249 5658 5249 5311 94 5658 94 5306 94 5306 5250 5658 5250 5659 5250 5306 94 5659 94 5307 94 5307 5251 5659 5251 5660 5251 5307 94 5660 94 5353 94 5353 5252 5660 5252 5661 5252 5353 94 5661 94 5354 94 5354 2428 5661 2428 5662 2428 5354 94 5662 94 5356 94 5356 5253 5662 5253 5663 5253 5356 94 5663 94 5358 94 5358 94 5663 94 5664 94 5358 94 5664 94 5360 94 5360 5254 5664 5254 5665 5254 5360 94 5665 94 5362 94 5362 2431 5665 2431 5666 2431 5362 94 5666 94 5364 94 5364 5255 5666 5255 5667 5255 5364 4218 5667 4218 5366 4218 5366 5256 5667 5256 5668 5256 5366 5257 5668 5257 5368 5257 5368 94 5668 94 5669 94 5368 94 5669 94 5630 94 5646 5258 5670 5258 5671 5258 5672 5259 5650 5259 5673 5259 5673 5260 5650 5260 5649 5260 5673 5261 5649 5261 5674 5261 5674 5262 5649 5262 5648 5262 5674 5263 5648 5263 5671 5263 5671 5264 5648 5264 5647 5264 5671 5265 5647 5265 5646 5265 5675 5266 5652 5266 5672 5266 5672 5267 5652 5267 5651 5267 5672 5268 5651 5268 5650 5268 5676 5269 5613 5269 5677 5269 5677 5270 5613 5270 5612 5270 5677 5271 5612 5271 5675 5271 5675 5272 5612 5272 5653 5272 5675 5273 5653 5273 5652 5273 5678 5274 5616 5274 5679 5274 5679 5275 5616 5275 5615 5275 5679 4261 5615 4261 5676 4261 5676 5276 5615 5276 5614 5276 5676 5277 5614 5277 5613 5277 5680 5278 5618 5278 5678 5278 5678 4265 5618 4265 5617 4265 5678 5279 5617 5279 5616 5279 5681 5280 5622 5280 5682 5280 5682 5281 5622 5281 5621 5281 5680 5282 5620 5282 5619 5282 5680 5283 5619 5283 5618 5283 5684 5284 5624 5284 5681 5284 5681 5285 5624 5285 5623 5285 5681 5286 5623 5286 5622 5286 5685 5287 5628 5287 5686 5287 5686 5288 5628 5288 5627 5288 5686 5289 5627 5289 5687 5289 5687 5290 5627 5290 5626 5290 5687 5291 5626 5291 5684 5291 5684 5292 5626 5292 5625 5292 5684 5293 5625 5293 5624 5293 5688 2437 5655 2437 5689 2437 5689 5294 5655 5294 5654 5294 5689 5295 5654 5295 5685 5295 5685 2440 5654 2440 5629 2440 5685 5296 5629 5296 5628 5296 5690 5297 5658 5297 5691 5297 5691 5298 5658 5298 5657 5298 5691 5299 5657 5299 5688 5299 5688 5300 5657 5300 5656 5300 5688 5301 5656 5301 5655 5301 5646 5302 5645 5302 5670 5302 5670 4281 5645 4281 5644 4281 5670 5303 5644 5303 5692 5303 5692 5304 5644 5304 5643 5304 5692 5305 5643 5305 5693 5305 5693 4285 5643 4285 5642 4285 5693 5306 5642 5306 5694 5306 5694 5307 5642 5307 5641 5307 5694 5308 5641 5308 5695 5308 5695 5309 5641 5309 5640 5309 5695 5310 5640 5310 5696 5310 5696 5311 5640 5311 5639 5311 5696 5312 5639 5312 5697 5312 5697 5313 5639 5313 5638 5313 5697 5314 5638 5314 5698 5314 5698 5315 5638 5315 5637 5315 5698 5316 5637 5316 5699 5316 5699 5317 5637 5317 5636 5317 5699 5318 5636 5318 5700 5318 5700 5319 5636 5319 5635 5319 5700 5320 5635 5320 5701 5320 5701 5321 5635 5321 5634 5321 5701 5322 5634 5322 5702 5322 5702 3399 5634 3399 5633 3399 5702 4303 5633 4303 5703 4303 5703 5323 5633 5323 5632 5323 5703 5324 5632 5324 5704 5324 5704 5325 5632 5325 5631 5325 5704 5326 5631 5326 5705 5326 5705 5327 5631 5327 5630 5327 5705 5328 5630 5328 5706 5328 5706 5329 5630 5329 5669 5329 5706 5330 5669 5330 5707 5330 5707 5331 5669 5331 5668 5331 5707 5332 5668 5332 5708 5332 5708 5333 5668 5333 5667 5333 5708 5334 5667 5334 5709 5334 5709 5335 5667 5335 5666 5335 5709 5336 5666 5336 5710 5336 5710 5337 5666 5337 5665 5337 5710 5338 5665 5338 5711 5338 5711 5339 5665 5339 5664 5339 5711 5340 5664 5340 5712 5340 5712 2456 5664 2456 5663 2456 5712 5341 5663 5341 5713 5341 5690 2465 5659 2465 5658 2465 5715 5342 5716 5342 5717 5342 5717 5343 5716 5343 5718 5343 5717 2471 5718 2471 5714 2471 5719 2474 5720 2474 5721 2474 5721 5344 5720 5344 5722 5344 5721 5345 5722 5345 5723 5345 5723 2476 5722 2476 5724 2476 5723 2477 5724 2477 5715 2477 5715 5346 5724 5346 5725 5346 5715 5347 5725 5347 5716 5347 5726 5348 5727 5348 5728 5348 5728 5349 5727 5349 5729 5349 5728 5350 5729 5350 5719 5350 5719 2481 5729 2481 5730 2481 5719 5351 5730 5351 5720 5351 5731 5352 5732 5352 5726 5352 5726 5353 5732 5353 5733 5353 5726 5354 5733 5354 5727 5354 5734 4318 5735 4318 5736 4318 5736 4319 5735 4319 5737 4319 5738 5355 5739 5355 5731 5355 5731 5356 5739 5356 5740 5356 5731 5357 5740 5357 5732 5357 5741 5358 5742 5358 5734 5358 5734 5359 5742 5359 5743 5359 5734 5360 5743 5360 5735 5360 5744 5361 5745 5361 5746 5361 5746 5362 5745 5362 5747 5362 5746 5363 5747 5363 5748 5363 5748 5364 5747 5364 5749 5364 5748 5365 5749 5365 5741 5365 5741 4331 5749 4331 5750 4331 5741 5366 5750 5366 5742 5366 5751 5367 5752 5367 5753 5367 5753 5368 5752 5368 5754 5368 5753 5369 5754 5369 5744 5369 5744 5370 5754 5370 5755 5370 5744 5371 5755 5371 5745 5371 5756 5372 5757 5372 5758 5372 5758 5373 5757 5373 5759 5373 5758 5374 5759 5374 5751 5374 5751 5375 5759 5375 5760 5375 5751 5376 5760 5376 5752 5376 5761 2485 5762 2485 5756 2485 5756 5377 5762 5377 5763 5377 5756 5378 5763 5378 5757 5378 5764 5379 5765 5379 5766 5379 5766 5380 5765 5380 5767 5380 5766 5381 5767 5381 5768 5381 5768 5382 5767 5382 5769 5382 5768 5383 5769 5383 5770 5383 5770 5384 5769 5384 5771 5384 5770 5385 5771 5385 5772 5385 5772 5386 5771 5386 5773 5386 5772 5387 5773 5387 5774 5387 5774 5388 5773 5388 5775 5388 5774 5389 5775 5389 5776 5389 5776 5390 5775 5390 5777 5390 5776 5391 5777 5391 5778 5391 5778 5392 5777 5392 5779 5392 5778 5393 5779 5393 5780 5393 5780 5394 5779 5394 5781 5394 5780 5395 5781 5395 5782 5395 5782 5396 5781 5396 5783 5396 5782 5397 5783 5397 5784 5397 5784 5398 5783 5398 5785 5398 5786 5399 5785 5399 5787 5399 5786 5400 5787 5400 5788 5400 5788 5401 5787 5401 5789 5401 5788 5402 5789 5402 5790 5402 5790 4353 5789 4353 5791 4353 5790 5403 5791 5403 5792 5403 5792 5404 5791 5404 5793 5404 5792 5405 5793 5405 5794 5405 5794 5406 5795 5406 5796 5406 5796 5407 5795 5407 5797 5407 5796 5408 5797 5408 5798 5408 5798 5409 5797 5409 5799 5409 5800 5410 5799 5410 5801 5410 5800 5411 5801 5411 5802 5411 5802 5412 5801 5412 5803 5412 5802 5413 5803 5413 5804 5413 5804 5414 5803 5414 5805 5414 5804 5415 5805 5415 5806 5415 5806 5416 5805 5416 5807 5416 5806 5417 5807 5417 5808 5417 5808 5418 5809 5418 5761 5418 5761 5419 5809 5419 5810 5419 5761 5420 5810 5420 5762 5420 5713 5421 5764 5421 5712 5421 5712 5422 5764 5422 5766 5422 5712 5423 5766 5423 5711 5423 5711 5424 5766 5424 5768 5424 5711 5425 5768 5425 5710 5425 5710 5426 5768 5426 5770 5426 5710 2513 5770 2513 5709 2513 5709 5427 5770 5427 5772 5427 5709 5428 5772 5428 5708 5428 5708 2516 5772 2516 5774 2516 5708 5429 5774 5429 5707 5429 5707 5430 5774 5430 5776 5430 5707 5431 5776 5431 5706 5431 5706 5432 5776 5432 5778 5432 5706 5433 5778 5433 5705 5433 5705 5434 5778 5434 5780 5434 5705 5435 5780 5435 5704 5435 5704 5436 5780 5436 5782 5436 5704 5437 5782 5437 5703 5437 5703 5438 5784 5438 5702 5438 5702 5439 5784 5439 5786 5439 5702 5440 5786 5440 5701 5440 5701 5441 5786 5441 5788 5441 5701 5442 5788 5442 5700 5442 5700 5443 5788 5443 5790 5443 5700 5444 5790 5444 5699 5444 5699 5445 5790 5445 5792 5445 5699 5446 5792 5446 5698 5446 5698 5447 5792 5447 5794 5447 5698 5448 5794 5448 5697 5448 5697 5449 5794 5449 5796 5449 5697 5450 5796 5450 5696 5450 5696 5451 5796 5451 5798 5451 5696 5452 5798 5452 5695 5452 5695 5453 5798 5453 5800 5453 5695 5454 5800 5454 5694 5454 5694 5455 5800 5455 5802 5455 5694 4393 5802 4393 5693 4393 5693 5456 5802 5456 5804 5456 5693 5457 5804 5457 5692 5457 5692 5458 5804 5458 5806 5458 5670 5459 5806 5459 5808 5459 5670 5460 5808 5460 5671 5460 5671 5461 5808 5461 5761 5461 5671 5462 5761 5462 5674 5462 5674 4402 5761 4402 5756 4402 5674 4403 5756 4403 5673 4403 5673 5463 5756 5463 5758 5463 5673 5464 5758 5464 5672 5464 5672 5465 5758 5465 5751 5465 5672 5466 5751 5466 5675 5466 5675 5467 5751 5467 5753 5467 5675 5468 5753 5468 5677 5468 5677 5469 5753 5469 5744 5469 5677 5470 5744 5470 5676 5470 5676 5471 5744 5471 5746 5471 5676 5472 5746 5472 5679 5472 5679 5473 5746 5473 5748 5473 5679 5474 5748 5474 5678 5474 5678 5475 5748 5475 5741 5475 5678 5476 5741 5476 5680 5476 5680 5477 5741 5477 5734 5477 5680 5478 5734 5478 5683 5478 5683 5479 5734 5479 5736 5479 5683 3408 5736 3408 5682 3408 5682 4421 5736 4421 5738 4421 5682 5480 5738 5480 5681 5480 5681 5481 5738 5481 5731 5481 5681 5482 5731 5482 5684 5482 5684 5483 5731 5483 5726 5483 5684 5484 5726 5484 5687 5484 5687 5485 5726 5485 5728 5485 5687 5486 5728 5486 5686 5486 5686 5487 5728 5487 5719 5487 5686 5488 5719 5488 5685 5488 5685 5489 5719 5489 5721 5489 5685 5490 5721 5490 5689 5490 5689 5491 5721 5491 5723 5491 5689 2524 5723 2524 5688 2524 5688 5492 5723 5492 5715 5492 5688 5493 5715 5493 5691 5493 5691 5494 5715 5494 5717 5494 5691 5495 5717 5495 5690 5495 5690 5496 5717 5496 5714 5496 5811 5497 5812 5497 5799 5497 5799 94 5812 94 5801 94 5801 5498 5812 5498 5813 5498 5801 94 5813 94 5803 94 5803 94 5813 94 5814 94 5803 94 5814 94 5805 94 5799 94 5797 94 5811 94 5811 94 5797 94 5795 94 5811 94 5795 94 5815 94 5815 94 5795 94 5793 94 5815 5499 5793 5499 5816 5499 5816 94 5793 94 5791 94 5816 4434 5791 4434 5817 4434 5818 94 5779 94 5819 94 5819 94 5779 94 5777 94 5819 94 5777 94 5820 94 5820 5500 5777 5500 5775 5500 5820 94 5775 94 5821 94 5775 5501 5773 5501 5821 5501 5821 94 5773 94 5771 94 5821 94 5771 94 5822 94 5822 2534 5771 2534 5769 2534 5822 94 5769 94 5823 94 5823 2535 5769 2535 5767 2535 5823 94 5767 94 5824 94 5791 5502 5789 5502 5817 5502 5817 94 5789 94 5787 94 5817 94 5787 94 5825 94 5825 94 5787 94 5785 94 5825 5503 5785 5503 5826 5503 5826 94 5785 94 5783 94 5826 94 5783 94 5818 94 5818 94 5783 94 5781 94 5818 94 5781 94 5779 94 5767 94 5765 94 5824 94 5827 4439 5828 4439 5735 4439 5829 5504 5830 5504 5749 5504 5831 5505 5832 5505 5752 5505 5833 2536 5834 2536 5725 2536 5835 94 5836 94 5730 94 5735 5506 5743 5506 5827 5506 5827 94 5743 94 5742 94 5827 94 5742 94 5830 94 5830 94 5742 94 5750 94 5830 94 5750 94 5749 94 5837 5507 5810 5507 5838 5507 5838 5508 5810 5508 5809 5508 5838 4448 5809 4448 5807 4448 5805 94 5814 94 5807 94 5807 4449 5814 4449 5839 4449 5807 4450 5839 4450 5838 4450 5840 4440 5739 4440 5828 4440 5828 5509 5739 5509 5737 5509 5828 94 5737 94 5735 94 5749 4452 5747 4452 5829 4452 5829 94 5747 94 5745 94 5829 94 5745 94 5841 94 5841 94 5745 94 5755 94 5841 5510 5755 5510 5832 5510 5832 5511 5755 5511 5754 5511 5832 94 5754 94 5752 94 5842 4455 5763 4455 5837 4455 5837 5512 5763 5512 5762 5512 5837 4457 5762 4457 5810 4457 5834 2539 5718 2539 5716 2539 5834 5513 5716 5513 5725 5513 5843 4444 5732 4444 5840 4444 5840 94 5732 94 5740 94 5840 94 5740 94 5739 94 5752 94 5760 94 5831 94 5831 5514 5760 5514 5759 5514 5831 4459 5759 4459 5842 4459 5842 5515 5759 5515 5757 5515 5842 94 5757 94 5763 94 5725 94 5724 94 5833 94 5833 94 5724 94 5722 94 5833 2541 5722 2541 5836 2541 5836 5516 5722 5516 5720 5516 5836 94 5720 94 5730 94 5730 5517 5729 5517 5835 5517 5835 94 5729 94 5727 94 5835 4451 5727 4451 5843 4451 5843 94 5727 94 5733 94 5843 94 5733 94 5732 94 5844 4461 5839 4461 5845 4461 5845 5518 5839 5518 5814 5518 5845 5519 5814 5519 5846 5519 5846 5520 5814 5520 5813 5520 5846 5521 5813 5521 5847 5521 5847 5522 5813 5522 5812 5522 5847 5523 5812 5523 5848 5523 5848 5524 5812 5524 5811 5524 5848 5525 5811 5525 5849 5525 5849 5526 5811 5526 5815 5526 5849 5527 5815 5527 5850 5527 5850 5528 5815 5528 5816 5528 5851 5529 5822 5529 5823 5529 5851 3423 5823 3423 5852 3423 5852 5530 5823 5530 5824 5530 5853 5531 5840 5531 5828 5531 5853 5532 5828 5532 5854 5532 5854 5533 5828 5533 5827 5533 5854 5534 5827 5534 5855 5534 5855 5535 5827 5535 5830 5535 5855 5536 5830 5536 5856 5536 5856 5537 5830 5537 5829 5537 5856 5538 5829 5538 5857 5538 5857 5539 5829 5539 5841 5539 5857 5540 5841 5540 5858 5540 5858 5541 5841 5541 5832 5541 5858 5542 5832 5542 5859 5542 5859 5543 5832 5543 5831 5543 5859 5544 5831 5544 5860 5544 5860 5545 5831 5545 5842 5545 5861 5546 5842 5546 5837 5546 5861 5547 5837 5547 5844 5547 5844 5548 5837 5548 5838 5548 5844 4490 5838 4490 5839 4490 5849 5549 5897 5549 5898 5549 5849 5550 5898 5550 5848 5550 5898 4492 5899 4492 5848 4492 5848 5551 5899 5551 5900 5551 5848 5552 5900 5552 5847 5552 5900 5553 5901 5553 5847 5553 5847 5554 5901 5554 5902 5554 5847 5555 5902 5555 5846 5555 5902 5556 5903 5556 5846 5556 5846 4499 5903 4499 5904 4499 5846 5557 5904 5557 5845 5557 5906 4501 5844 4501 5845 4501 5906 4502 5845 4502 5907 4502 5907 5558 5845 5558 5904 5558 5844 5559 5909 5559 5861 5559 5860 5560 5913 5560 5859 5560 5913 5561 5914 5561 5859 5561 5859 5562 5914 5562 5915 5562 5859 5563 5915 5563 5858 5563 5915 4515 5916 4515 5858 4515 5858 4516 5916 4516 5917 4516 5858 5564 5917 5564 5857 5564 5917 5565 5918 5565 5857 5565 5857 4519 5918 4519 5919 4519 5857 5566 5919 5566 5856 5566 5919 5567 5920 5567 5856 5567 5856 4522 5920 4522 5921 4522 5856 5568 5921 5568 5855 5568 5921 5569 5922 5569 5855 5569 5855 4524 5923 4524 5854 4524 5923 2568 5924 2568 5854 2568 5927 94 5928 94 5929 94 5929 5570 5928 5570 5930 5570 5929 94 5930 94 5931 94 5931 94 5930 94 5932 94 5931 94 5932 94 5933 94 5933 94 5932 94 5934 94 5933 94 5934 94 5935 94 5935 94 5934 94 5936 94 5933 5571 5937 5571 5938 5571 5929 5572 5940 5572 5941 5572 5937 5573 5942 5573 5943 5573 5938 5574 5918 5574 5939 5574 5939 5575 5918 5575 5917 5575 5939 5576 5917 5576 5940 5576 5940 5577 5917 5577 5941 5577 5945 5578 5946 5578 5924 5578 5924 5579 5923 5579 5945 5579 5945 5580 5923 5580 5922 5580 5945 5581 5922 5581 5943 5581 5943 5582 5922 5582 5921 5582 5943 5583 5921 5583 5937 5583 5937 5584 5921 5584 5920 5584 5937 5585 5920 5585 5938 5585 5938 5586 5920 5586 5919 5586 5938 5587 5919 5587 5918 5587 5917 5588 5916 5588 5941 5588 5941 5589 5916 5589 5915 5589 5944 5590 5915 5590 5914 5590 5944 5591 5914 5591 5947 5591 5914 5592 5913 5592 5947 5592 5947 5593 5913 5593 5912 5593 5947 5594 5912 5594 5948 5594 5912 5595 5911 5595 5948 5595 5948 5596 5911 5596 5910 5596 5948 5597 5910 5597 5949 5597 5949 5598 5910 5598 5909 5598 5949 5599 5909 5599 5950 5599 5909 4547 5908 4547 5950 4547 5950 5600 5908 5600 5905 5600 5950 5601 5905 5601 5951 5601 5951 5602 5905 5602 5906 5602 5951 5603 5906 5603 5952 5603 5906 5604 5907 5604 5952 5604 5952 5605 5907 5605 5904 5605 5952 5606 5904 5606 5953 5606 5904 5607 5903 5607 5953 5607 5953 5608 5903 5608 5902 5608 5953 5609 5902 5609 5954 5609 5902 5610 5901 5610 5954 5610 5954 5611 5901 5611 5900 5611 5954 5612 5900 5612 5955 5612 5900 5613 5899 5613 5955 5613 5955 5614 5899 5614 5898 5614 5955 5615 5898 5615 5956 5615 5898 5616 5897 5616 5956 5616 5956 5617 5897 5617 5896 5617 5956 5618 5896 5618 5957 5618 5896 4567 5895 4567 5957 4567 5957 5619 5895 5619 5894 5619 5957 5620 5894 5620 5958 5620 5894 5621 5893 5621 5958 5621 5958 5622 5893 5622 5892 5622 5958 5623 5892 5623 5959 5623 5892 5624 5891 5624 5959 5624 5959 5625 5891 5625 5890 5625 5959 5626 5890 5626 5960 5626 5890 5627 5889 5627 5960 5627 5960 5628 5889 5628 5886 5628 5960 5629 5886 5629 5961 5629 5886 5630 5887 5630 5961 5630 5961 5631 5887 5631 5888 5631 5961 5632 5888 5632 5962 5632 5888 5633 5885 5633 5962 5633 5962 5634 5885 5634 5884 5634 5962 5635 5884 5635 5963 5635 5884 5636 5883 5636 5963 5636 5963 5637 5883 5637 5882 5637 5963 5638 5882 5638 5964 5638 5882 5639 5881 5639 5964 5639 5964 5640 5881 5640 5880 5640 5964 5641 5880 5641 5965 5641 5880 5642 5879 5642 5965 5642 5965 5643 5879 5643 5878 5643 5965 5644 5878 5644 5966 5644 5878 5645 5877 5645 5966 5645 5966 5646 5877 5646 5876 5646 5966 5647 5876 5647 5967 5647 5876 5648 5875 5648 5967 5648 5967 5649 5875 5649 5874 5649 5967 5650 5874 5650 5968 5650 5968 5651 5874 5651 5873 5651 5968 5652 5873 5652 5969 5652 5872 2593 5871 2593 5970 2593 5970 5653 5871 5653 5870 5653 5970 5654 5870 5654 5971 5654 5870 5655 5869 5655 5971 5655 5971 4603 5869 4603 5868 4603 5971 5656 5868 5656 5972 5656 5868 5657 5867 5657 5972 5657 5972 5658 5867 5658 5866 5658 5972 4607 5866 4607 5973 4607 5866 5659 5865 5659 5973 5659 5973 5660 5865 5660 5864 5660 5973 5661 5864 5661 5974 5661 5864 5662 5863 5662 5974 5662 5974 5663 5862 5663 5975 5663 5975 5664 5862 5664 5926 5664 5975 5665 5926 5665 5946 5665 5946 5666 5926 5666 5925 5666 5946 5667 5925 5667 5924 5667 5976 2595 5944 2595 5977 2595 5977 5668 5944 5668 5947 5668 5977 94 5947 94 5978 94 5978 94 5947 94 5948 94 5979 94 5953 94 5954 94 5979 94 5954 94 5980 94 5980 94 5954 94 5955 94 5980 94 5955 94 5981 94 5981 94 5955 94 5956 94 5981 5669 5956 5669 5982 5669 5982 94 5956 94 5957 94 5982 5670 5957 5670 5983 5670 5983 5671 5957 5671 5958 5671 5983 5672 5958 5672 5984 5672 5984 94 5958 94 5959 94 5984 5673 5959 5673 5985 5673 5985 94 5959 94 5960 94 5985 5674 5960 5674 5986 5674 5986 94 5960 94 5961 94 5986 94 5961 94 5987 94 5987 94 5961 94 5988 94 5988 94 5961 94 5962 94 5988 94 5962 94 5989 94 5989 5675 5962 5675 5963 5675 5989 94 5963 94 5990 94 5990 5676 5963 5676 5964 5676 5990 94 5964 94 5991 94 5991 94 5964 94 5965 94 5991 94 5965 94 5992 94 5992 5677 5965 5677 5966 5677 5992 5678 5966 5678 5993 5678 5993 94 5966 94 5967 94 5993 5679 5967 5679 5994 5679 5942 94 5995 94 5943 94 5943 94 5995 94 5996 94 5943 4633 5996 4633 5945 4633 5945 94 5996 94 5997 94 5945 94 5997 94 5946 94 5946 94 5997 94 5998 94 5946 5680 5998 5680 5975 5680 5975 94 5998 94 5999 94 5975 94 5999 94 5974 94 5974 94 5999 94 6000 94 5974 94 6000 94 5973 94 5973 94 6000 94 6001 94 5973 5681 6001 5681 5972 5681 5972 94 6001 94 6002 94 5972 94 6002 94 5971 94 5971 94 6002 94 6003 94 5971 4636 6003 4636 5970 4636 5970 94 6003 94 6004 94 5968 94 5994 94 5967 94 6006 5682 6005 5682 6007 5682 6009 5683 6008 5683 6010 5683 6013 94 6020 94 6015 94 6014 94 6015 94 6016 94 6026 5684 6027 5684 6028 5684 6028 94 6027 94 6029 94 6028 94 6031 94 6011 94 6032 94 6025 94 6033 94 6033 94 6025 94 6024 94 6034 94 6024 94 6023 94 6034 94 6023 94 6035 94 6035 94 6023 94 6022 94 6035 94 6022 94 6036 94 6036 94 6022 94 6021 94 6036 94 6021 94 6037 94 6037 94 6021 94 6019 94 6038 94 6019 94 6018 94 6038 94 6018 94 6039 94 6039 94 6018 94 6017 94 6039 94 6017 94 6040 94 6028 94 6012 94 6030 94 6028 5685 6030 5685 6026 5685 6040 94 6041 94 6042 94 6039 94 6042 94 6043 94 6038 94 6043 94 6044 94 6046 94 6045 94 6047 94 6046 94 6047 94 6048 94 6050 94 6049 94 6051 94 6052 94 6047 94 6045 94 6052 94 6045 94 6053 94 6064 3479 6065 3479 6066 3479 6066 5686 6065 5686 6067 5686 6071 5687 6072 5687 6073 5687 6073 5688 6072 5688 6074 5688 6079 5689 6080 5689 6059 5689 6059 3581 6080 3581 6060 3581 6082 2758 6083 2758 6084 2758 6094 94 6095 94 6078 94 6078 94 6095 94 6080 94 6080 5690 6095 5690 6098 5690 6080 94 6098 94 6060 94 6060 94 6099 94 6061 94 6061 94 6099 94 6100 94 6061 94 6100 94 6062 94 6062 5691 6100 5691 6101 5691 6062 94 6101 94 6063 94 6102 94 6072 94 6070 94 6067 94 6055 94 6068 94 6068 94 6055 94 6103 94 6068 94 6103 94 6069 94 6067 94 6065 94 6055 94 6105 94 6089 94 6106 94 6106 94 6089 94 6088 94 6087 94 6086 94 6054 94 6083 5692 6107 5692 6085 5692 6092 94 6058 94 6093 94 6089 5693 6104 5693 6081 5693 6089 94 6081 94 6090 94 6090 94 6056 94 6091 94 6091 94 6056 94 6058 94 6057 5694 6075 5694 6074 5694 6056 5695 6096 5695 6078 5695 6078 94 6096 94 6097 94 6078 94 6097 94 6094 94 6072 94 6102 94 6074 94 6074 94 6102 94 6108 94 6074 94 6108 94 6057 94 6078 5696 6077 5696 6056 5696 6056 94 6077 94 6076 94 6116 5697 6117 5697 6118 5697 6116 94 6118 94 6119 94 6120 94 6121 94 6122 94 6120 94 6123 94 6121 94 6121 94 6123 94 6112 94 6121 94 6112 94 6124 94 6125 5698 6119 5698 6126 5698 6126 94 6119 94 6118 94 6126 5699 6118 5699 6127 5699 6127 5700 6118 5700 6120 5700 6127 94 6120 94 6128 94 6128 5701 6120 5701 6122 5701 6129 5702 6111 5702 6130 5702 6130 5703 6111 5703 6109 5703 6130 5704 6109 5704 6131 5704 6110 94 6132 94 6109 94 6109 5705 6132 5705 6133 5705 6109 5706 6133 5706 6131 5706 6110 5707 6115 5707 6132 5707 6132 5708 6115 5708 6114 5708 6132 94 6114 94 6123 94 6123 5709 6114 5709 6113 5709 6123 5710 6113 5710 6112 5710 6121 3279 6134 3279 6135 3279 6121 120 6135 120 6122 120 6122 120 6135 120 6136 120 6137 5711 6139 5711 6140 5711 6141 94 6138 94 6137 94 6142 7 6143 7 6144 7 6145 5712 6146 5712 6147 5712 6147 5713 6146 5713 6148 5713 6149 5714 6148 5714 6150 5714 6151 770 6152 770 6153 770 6153 5715 6152 5715 6154 5715 6155 1472 6154 1472 6156 1472 6148 5716 6157 5716 6150 5716 6152 5717 6158 5717 6154 5717 6154 5718 6158 5718 6159 5718 6158 5719 6160 5719 6159 5719 6162 5720 6163 5720 6161 5720 6165 5721 6166 5721 6164 5721 6167 1113 6168 1113 6169 1113 6169 5722 6170 5722 6171 5722 6171 5723 6170 5723 6172 5723 6173 1129 6174 1129 6175 1129 6175 1130 6174 1130 6176 1130 6175 5724 6176 5724 6177 5724 6177 5725 6176 5725 6178 5725 6177 7 6178 7 6179 7 6179 7 6178 7 6180 7 6182 3562 6181 3562 6183 3562 6182 3563 6183 3563 6184 3563 6184 5726 6183 5726 6185 5726 6184 3565 6185 3565 6186 3565 6186 3566 6187 3566 6188 3566 6188 5683 6187 5683 6189 5683 6188 5727 6189 5727 6190 5727 6167 1136 6191 1136 6168 1136 6193 5728 6192 5728 6194 5728 6204 5729 6205 5729 6206 5729 6208 94 6209 94 6210 94 6210 94 6209 94 6211 94 6215 94 6214 94 6216 94 6215 5730 6216 5730 6217 5730 6218 94 6219 94 6220 94 6223 94 6222 94 6224 94 6220 94 6225 94 6223 94 6220 94 6223 94 6218 94 6218 94 6223 94 6224 94 6226 5731 6227 5731 6228 5731 6229 94 6230 94 6200 94 6200 94 6231 94 6199 94 6199 94 6231 94 6232 94 6238 5732 6239 5732 6240 5732 6241 94 6242 94 6243 94 6221 94 6215 94 6217 94 6215 94 6226 94 6213 94 6213 5733 6226 5733 6228 5733 6231 94 6227 94 6232 94 6241 94 6207 94 6238 94 6238 94 6207 94 6244 94 6238 94 6244 94 6237 94 6260 94 6234 94 6261 94 6261 94 6234 94 6245 94 6261 94 6245 94 6262 94 6262 94 6245 94 6246 94 6262 94 6246 94 6263 94 6263 94 6246 94 6247 94 6263 94 6247 94 6264 94 6264 94 6247 94 6201 94 6264 94 6201 94 6265 94 6265 94 6201 94 6202 94 6265 94 6202 94 6266 94 6266 94 6202 94 6203 94 6266 94 6203 94 6204 94 6198 94 6267 94 6268 94 6268 94 6269 94 6270 94 6270 94 6269 94 6271 94 6270 94 6271 94 6272 94 6272 94 6273 94 6274 94 6275 94 6276 94 6277 94 6277 94 6276 94 6278 94 6277 94 6278 94 6279 94 6279 94 6278 94 6280 94 6279 94 6280 94 6233 94 6208 5734 6197 5734 6281 5734 6208 5735 6281 5735 6282 5735 6283 94 6284 94 6259 94 6259 5736 6284 5736 6285 5736 6259 94 6285 94 6286 94 6198 5737 6288 5737 6196 5737 6289 94 6209 94 6290 94 6290 94 6209 94 6208 94 6290 5738 6208 5738 6291 5738 6291 5739 6208 5739 6282 5739 6286 94 6287 94 6259 94 6259 94 6287 94 6198 94 6259 94 6198 94 6258 94 6258 94 6198 94 6268 94 6258 94 6268 94 6256 94 6256 94 6268 94 6270 94 6256 94 6270 94 6255 94 6255 94 6270 94 6272 94 6255 94 6272 94 6253 94 6253 94 6272 94 6274 94 6252 94 6274 94 6275 94 6252 94 6275 94 6251 94 6251 94 6275 94 6277 94 6251 94 6277 94 6250 94 6250 94 6277 94 6279 94 6250 94 6279 94 6249 94 6249 94 6279 94 6233 94 6249 94 6233 94 6248 94 6292 94 6293 94 6209 94 6289 94 6283 94 6209 94 6209 94 6283 94 6259 94 6209 5740 6259 5740 6292 5740 6293 94 6294 94 6209 94 6209 94 6212 94 6211 94 6254 94 6261 94 6262 94 6257 94 6263 94 6264 94 6295 94 6223 94 6296 94 6296 94 6223 94 6225 94 6236 94 6235 94 6297 94 6301 94 6195 94 6298 94 6301 94 6298 94 6302 94 6303 94 6299 94 6300 94 6303 94 6300 94 6304 94 6307 120 6308 120 6306 120 6310 120 6309 120 6311 120 6310 120 6311 120 6312 120 6305 5741 6313 5741 6306 5741 6306 5742 6313 5742 6314 5742 6306 5743 6314 5743 6307 5743 6316 120 6312 120 6315 120 6315 120 6312 120 6311 120 6317 5744 6318 5744 6319 5744 6319 1162 6318 1162 6320 1162 6319 3571 6320 3571 6321 3571 6321 5745 6320 5745 6322 5745 6324 94 6322 94 6325 94 6325 94 6322 94 6320 94 6325 94 6320 94 6326 94 6326 94 6320 94 6318 94 6326 94 6318 94 6323 94 6328 5746 6327 5746 6329 5746 6334 5747 6330 5747 6335 5747 6335 5747 6330 5747 6331 5747 6335 5748 6331 5748 6336 5748 6336 5749 6331 5749 6332 5749 6336 5750 6332 5750 6337 5750 6337 5751 6332 5751 6333 5751 6333 5752 6338 5752 6339 5752 6333 5753 6339 5753 6337 5753 6341 5754 6340 5754 6342 5754 6344 7 6343 7 6345 7 6346 574 6347 574 6348 574

+
+
+
+ + + + 0.01409494 0.03249996 0.004394948 0.01409494 -0.03249996 0.004394948 0.01409494 -0.03249996 0.02060496 0.01409494 -0.03500455 0.02020829 0.01409494 -0.03726398 0.01905703 0.01409494 -0.03905707 0.01726394 0.01409494 -0.04020828 0.01500457 0.01409494 -0.04060494 0.01249998 0.01409494 -0.04020828 0.0099954 0.01409494 -0.03905707 0.007735967 0.01409494 -0.03726398 0.005942881 0.01409494 -0.03500455 0.004791676 0.01409494 0.03249996 0.02060496 0.01409494 0.03500455 0.004791676 0.01409494 0.03726398 0.005942881 0.01409494 0.03905707 0.007735967 0.01409494 0.04020828 0.0099954 0.01409494 0.04060494 0.01249998 0.01409494 0.04020828 0.01500457 0.01409494 0.03905707 0.01726394 0.01409494 0.03726398 0.01905703 0.01409494 0.03500455 0.02020829 0.01409494 -0.02724999 0.01249998 0.01409494 -0.02764958 0.01450908 0.01409494 -0.02878767 0.01621228 0.01409494 -0.03049087 0.01735031 0.01409494 -0.03249996 0.01774996 0.01409494 -0.03450906 0.01735031 0.01409494 -0.03621226 0.01621228 0.01409494 -0.03735035 0.01450908 0.01409494 -0.03774994 0.01249998 0.01409494 -0.03735035 0.01049089 0.01409494 -0.03621226 0.008787631 0.01409494 -0.03450906 0.0076496 0.01409494 -0.03249996 0.007249951 0.01409494 -0.03049087 0.0076496 0.01409494 0.01950907 0.01735031 0.01409494 0.01749998 0.007249951 0.01409494 0.01950907 0.0076496 0.01409494 0.02121227 0.008787631 0.01409494 0.02235037 0.01049089 0.01409494 0.03624999 0.01249998 0.01409494 0.03582042 0.0142427 0.01409494 0.03463023 0.01558613 0.01409494 0.03295201 0.01622265 0.01409494 0.03117018 0.01600629 0.01409494 0.03117018 0.008993685 0.01409494 0.03295201 0.00877732 0.01409494 0.03463023 0.009413778 0.01409494 0.03582042 0.01075726 0.01409494 -0.008416533 0.00575 0.01409494 -0.0145834 0.00575 0.01409494 -0.004077732 0.01767075 0.01409494 -0.006107926 0.01884287 0.01409494 -0.008416533 0.01924997 0.01409494 -0.0145834 0.01924997 0.01409494 -0.01689201 0.01884287 0.01409494 -0.02123087 0.01132786 0.01409494 -0.01689201 0.00615704 0.01422494 -0.03249996 0.004804968 0.01422494 -0.03487783 0.00518161 0.01422494 -0.037023 0.00627458 0.01422494 -0.03872537 0.007976949 0.01422494 -0.03981834 0.01012206 0.01422494 -0.04019498 0.01249998 0.01422494 -0.03981834 0.01487785 0.01422494 -0.03872537 0.01702296 0.01422494 -0.037023 0.01872533 0.01422494 -0.03487783 0.01981836 0.01422494 -0.03249996 0.02019494 0.01422494 -0.02704328 0.01249998 0.01422494 -0.02741175 0.01447117 0.01422494 -0.02846747 0.0161761 0.01422494 -0.03006774 0.01738458 0.01422494 -0.03199648 0.01793336 0.01422494 -0.03399324 0.01774835 0.01422494 -0.03578835 0.01685446 0.01422494 -0.03713935 0.01537251 0.01409494 -0.03786373 0.01350265 0.01422494 -0.03786373 0.01350265 0.01409494 -0.03786373 0.01149731 0.01422494 -0.03786373 0.01149731 0.01409494 -0.03713935 0.009627401 0.01422494 -0.03713935 0.009627401 0.01422494 -0.03578835 0.008145451 0.01422494 -0.03399324 0.00725162 0.01422494 -0.03199648 0.007066547 0.01422494 -0.03006774 0.007615387 0.01422494 -0.02846747 0.008823812 0.01422494 -0.02741175 0.0105288 0.01422494 0.02295666 0.01249998 0.01422494 0.02258819 0.01447117 0.01422494 0.02153247 0.0161761 0.01422494 0.01993221 0.01738458 0.01422494 0.01800346 0.01793336 0.01422494 0.0160067 0.01774835 0.01422494 0.01421159 0.01685446 0.01422494 0.01286059 0.01537251 0.01422494 0.01213622 0.01350265 0.01422494 0.01213622 0.01149731 0.01422494 0.01286059 0.009627401 0.01422494 0.01421159 0.008145451 0.01422494 0.0160067 0.00725162 0.01422494 0.01800346 0.007066547 0.01422494 0.01993221 0.007615387 0.01422494 0.02153247 0.008823812 0.01422494 0.02258819 0.0105288 0.01422494 0.03635025 0.01249998 0.01422494 0.03596895 0.01417052 0.01422494 0.03490054 0.0155102 0.01422494 0.03335672 0.0162537 0.01422494 0.03164321 0.0162537 0.01422494 0.03009939 0.0155102 0.01422494 0.02903103 0.01417052 0.01422494 0.02864974 0.01249998 0.01422494 0.02903103 0.01082938 0.01422494 0.03009939 0.009489715 0.01422494 0.03164321 0.008746266 0.01422494 0.03335672 0.008746266 0.01422494 0.03490054 0.009489715 0.01422494 0.03596895 0.01082938 0.01422494 0.04019498 0.01249998 0.01422494 0.03981834 0.01012206 0.01422494 0.03872537 0.007976949 0.01422494 0.037023 0.00627458 0.01422494 -0.0145834 0.00554496 0.01422494 -0.01673263 0.005885362 0.01422494 -0.004328489 0.01812666 0.01422494 -0.002789855 0.01658803 0.01422494 -0.001801967 0.01035076 0.01422494 -0.001461565 0.01249998 0.01422494 -0.001801967 0.01464921 0.01422494 0.03487783 0.00518161 0.01422494 0.03249996 0.004804968 0.01422494 -0.002789855 0.008411943 0.01422494 -0.004328489 0.00687325 0.01422494 -0.006267309 0.01911455 0.01422494 -0.02021008 0.008411943 0.01422494 -0.01867145 0.00687325 0.01422494 -0.006267309 0.005885362 0.01422494 -0.008416533 0.00554496 0.01422494 -0.008416533 0.01945495 0.01422494 -0.02119797 0.01464921 0.01422494 -0.02153837 0.01249998 0.01422494 -0.02119797 0.01035076 0.01422494 -0.02021008 0.01658803 0.01422494 -0.01867145 0.01812666 0.01422494 -0.01673263 0.01911455 0.01422494 -0.0145834 0.01945495 0.01422494 0.03249996 0.02019494 0.01422494 0.03487783 0.01981836 0.01422494 0.037023 0.01872533 0.01422494 0.03872537 0.01702296 0.01422494 0.03981834 0.01487785 0.01409494 0.03249996 0.02060496 0.01409494 0.03500455 0.02020829 0.01409494 0.01950907 0.01735031 0.01409494 0.01749998 0.01774996 0.01409494 0.03463023 0.01558613 0.01409494 0.03295201 0.01622265 0.01409494 0.03117018 0.01600629 0.01409494 -0.002570867 0.01587498 0.01409494 -0.004077732 0.01767075 + + + + + + + + + + 1 0 0 1 0 0 1 3.32353e-7 0 1 -1.68478e-7 0 1 6.69099e-7 0 1 -6.48426e-7 0 1 -1.50177e-7 0 1 3.57932e-7 0 1 1.26848e-6 0 1 -6.20264e-7 0 1 1.74541e-7 0 1 1.23665e-7 0 1 -1.03532e-6 0 1 3.01049e-7 0 1 -6.02099e-7 0 1 5.17661e-7 0 1 2.54383e-7 0 1 -1.26849e-6 0 1 0 0 1 -6.25914e-7 0 1 3.12881e-7 0 1 0 0 1 2.234e-6 0 1 -1.26849e-6 0 1 1.31304e-7 0 0 1 0 0 0.9324713 0.3612439 0 0.9324744 0.3612362 1 -5.42949e-7 0 1 -9.25998e-7 0 1 -4.65712e-7 0 1 6.21631e-7 0 1 1.10753e-6 0 1 -8.28739e-7 0 1 -3.69999e-7 0 1 1.17492e-6 0 1 1.3356e-6 0 1 0 0 1 1.04008e-6 0 1 -4.20006e-7 0 1 0 0 1 1.95846e-7 0 1 0 0 1 9.92012e-7 0 1 0 0 1 1.75821e-7 0 1 0 0 1 4.23315e-7 0 1 0 0 1 -3.49393e-7 0 1 -7.82163e-7 0 1 3.52122e-7 0 1 -1.89093e-7 0 1 0 0 1 8.34943e-7 0 1 0 0 1 -4.45197e-7 0 1 3.08541e-7 0 1 1.10753e-6 0 1 0 0 1 0 0 1 -4.00371e-7 0 1 5.39742e-7 0 1 -2.01425e-7 0 1 -9.10037e-7 0 1 -3.87665e-7 0 + + + + + + + + + + + + + + +

44 0 21 0 12 0 42 1 18 1 19 1 43 2 19 2 20 2 43 1 20 1 21 1 49 1 16 1 41 1 41 1 16 1 17 1 41 1 17 1 18 1 46 1 0 1 47 1 47 3 0 3 13 3 48 4 13 4 14 4 49 5 14 5 15 5 49 1 15 1 16 1 46 1 40 1 0 1 0 6 40 6 39 6 0 7 39 7 38 7 27 8 26 8 2 8 2 1 3 1 27 1 27 1 3 1 4 1 27 1 4 1 28 1 28 1 4 1 5 1 28 1 5 1 29 1 29 1 5 1 6 1 29 1 6 1 30 1 30 1 6 1 7 1 30 1 7 1 31 1 38 9 37 9 0 9 0 1 37 1 50 1 0 1 50 1 1 1 1 1 50 1 51 1 1 10 51 10 58 10 7 11 8 11 31 11 31 12 8 12 9 12 31 13 9 13 32 13 32 1 9 1 10 1 32 14 10 14 33 14 33 15 10 15 11 15 33 1 11 1 34 1 34 16 11 16 1 16 34 17 1 17 35 17 35 18 1 18 58 18 22 19 57 19 23 19 56 1 55 1 2 1 2 1 55 1 54 1 2 1 54 1 12 1 12 1 54 1 53 1 12 1 53 1 52 1 23 20 56 20 24 20 24 21 56 21 2 21 24 22 2 22 25 22 25 23 2 23 26 23 12 24 36 24 45 24 78 25 79 25 80 25 80 25 79 25 81 25 80 26 81 26 82 26 82 27 81 27 83 27 108 1 107 1 121 1 121 1 107 1 122 1 122 28 107 28 120 28 122 1 120 1 123 1 123 1 120 1 119 1 123 1 119 1 124 1 106 1 115 1 90 1 90 1 115 1 114 1 90 1 114 1 91 1 91 1 114 1 113 1 111 1 94 1 112 1 112 29 94 29 93 29 112 30 93 30 113 30 113 31 93 31 92 31 113 1 92 1 91 1 86 1 125 1 87 1 87 32 125 32 126 32 101 33 127 33 128 33 129 34 102 34 130 34 130 35 102 35 101 35 130 1 101 1 131 1 131 1 101 1 128 1 124 1 119 1 132 1 132 1 119 1 118 1 132 1 118 1 133 1 133 1 118 1 117 1 133 36 117 36 116 36 133 37 134 37 135 37 101 38 100 38 127 38 127 39 100 39 99 39 127 1 99 1 136 1 136 40 99 40 98 40 137 1 70 1 138 1 138 41 70 41 89 41 138 1 89 1 126 1 126 1 89 1 88 1 126 1 88 1 87 1 106 1 105 1 115 1 115 1 105 1 104 1 115 1 104 1 116 1 116 1 104 1 103 1 116 42 103 42 133 42 133 43 103 43 102 43 133 1 102 1 134 1 134 1 102 1 129 1 135 44 139 44 133 44 133 45 139 45 140 45 133 1 140 1 59 1 140 1 125 1 59 1 59 46 125 46 86 46 59 1 86 1 60 1 60 47 86 47 85 47 60 1 85 1 61 1 61 1 85 1 84 1 61 48 84 48 62 48 62 1 84 1 83 1 62 49 83 49 63 49 63 50 83 50 81 50 63 51 81 51 64 51 98 52 97 52 136 52 136 53 97 53 96 53 136 1 96 1 141 1 64 1 81 1 65 1 65 1 81 1 79 1 65 1 79 1 66 1 66 1 79 1 77 1 66 1 77 1 67 1 67 54 77 54 76 54 67 1 76 1 68 1 68 1 76 1 75 1 68 1 75 1 69 1 69 55 75 55 74 55 69 56 74 56 73 56 142 1 71 1 143 1 143 1 71 1 70 1 143 1 70 1 144 1 144 1 70 1 137 1 142 1 145 1 71 1 71 1 145 1 146 1 71 1 146 1 72 1 72 57 146 57 147 57 72 1 147 1 73 1 73 58 147 58 148 58 73 59 148 59 69 59 69 1 148 1 141 1 69 1 141 1 149 1 96 1 95 1 141 1 141 60 95 60 94 60 141 1 94 1 149 1 149 1 94 1 111 1 149 1 111 1 150 1 150 1 111 1 110 1 150 1 110 1 151 1 151 1 110 1 109 1 151 61 109 61 152 61 152 62 109 62 108 62 152 63 108 63 153 63 153 1 108 1 121 1 158 64 155 64 159 64 159 1 154 1 160 1 154 1 162 1 161 1 161 1 157 1 154 1 154 65 157 65 156 65

+
+
+
+ + + + -0.004227817 0.007884085 0.02491855 -0.004234552 0.007881879 0.02488172 -0.004119992 0.007249951 0.02487891 -0.004557967 0.008437573 0.02492541 -0.00456357 0.008433282 0.02488857 -0.004298329 0.008031189 0.02488315 -0.005061447 0.008840024 0.0249328 -0.005065143 0.008834004 0.02489596 -0.004900574 0.00873351 0.02489393 -0.005645453 0.009028911 0.02489978 -0.005645453 0.009031176 0.0249207 -0.005645453 0.009036064 0.02493667 -0.005645453 0.009043753 0.02495193 -0.005050241 0.00886023 0.02496749 -0.005645453 0.009059429 0.02497136 -0.005645453 0.009066343 0.0249775 -0.005033314 0.008891165 0.02498972 -0.005645453 0.009096324 0.02499407 -0.004513621 0.008475422 0.02498239 -0.004550755 0.00856924 0.02498966 -0.005052268 0.008940577 0.02499628 -0.004196465 0.008054971 0.02498292 -0.004056572 0.007249951 0.02497196 -0.004017591 0.007249951 0.02497887 -0.004028499 0.00745505 0.02497917 -0.004112124 0.007249951 0.02491772 -0.004089832 0.007249951 0.02495044 -0.00420612 0.007891952 0.02495324 -0.00417304 0.007904112 0.02497553 -0.004540324 0.008452475 0.0249601 -0.005645453 0.00913006 0.02499979 -0.004119992 -0.007249951 0.02487891 -0.004119992 -0.007249951 0.02348089 -0.004119992 0.007249951 0.02348089 -0.004645466 0.00852102 0.02429997 -0.004645466 0.00852102 0.02349096 -0.004298329 0.008031189 0.0234847 -0.005645453 0.009028911 0.02429997 -0.004900574 0.00873351 0.02429997 0.01479047 -0.04208481 0.01348936 0.01479047 -0.04194617 0.01440209 0.011487 -0.04277926 0.01456987 0.01088511 -0.03250008 0.001875758 0.01479047 -0.03250008 0.002864181 0.01479047 -0.03276884 0.002867937 0.011487 -0.03437578 0.002183496 0.01479047 -0.03473067 0.003125965 0.011487 -0.0363754 0.002756774 0.01479047 -0.0365985 0.003779292 0.011487 -0.03822243 0.003713488 0.01479047 -0.03829348 0.004800379 0.011487 -0.03984427 0.005016028 0.01479047 -0.03974413 0.006146192 0.011487 -0.04117709 0.006613016 0.01479047 -0.04088926 0.007759928 0.011487 -0.04216843 0.008441746 0.01479047 -0.04138481 0.008770644 0.01479047 -0.04168063 0.009573519 0.011487 -0.04277926 0.01043015 0.01479047 -0.04194617 0.01059788 0.01479047 -0.04208481 0.01151061 0.011487 -0.04298561 0.01249998 0.01479047 -0.04213577 0.01249998 0.01479047 -0.04168063 0.01542639 0.011487 -0.04216843 0.01655828 0.01479047 -0.04138481 0.01622933 0.011487 -0.04117709 0.01838696 0.01479047 -0.04088926 0.01724004 0.011487 -0.03984421 0.019984 0.01479047 -0.03974413 0.01885378 0.011487 -0.03822237 0.02128648 0.01479047 -0.03829348 0.02019959 0.011487 -0.03637534 0.0222432 0.01479047 -0.0365985 0.02122068 0.011487 -0.03437578 0.02281647 0.01479047 -0.03473067 0.02187401 0.01088511 -0.03250002 0.02312421 0.01479047 -0.03276884 0.02213203 0.01479047 -0.03250008 0.02213573 0.008149981 -0.03250008 0.001307904 0.008149981 -0.03437328 0.001465797 0.008149981 -0.03639215 0.002006471 0.008149981 -0.03827536 0.002913117 0.008149981 -0.0399571 0.004154086 0.008149981 -0.04137879 0.005686104 0.008149981 -0.04249089 0.007455766 0.008149981 -0.04325455 0.009401321 0.008149981 -0.04364317 0.01354497 0.008149981 -0.04369205 0.01249998 0.008149981 -0.04364317 0.01145493 0.008149981 -0.04347181 0.01029068 0.008149981 -0.04347181 0.01470929 0.008149981 -0.04325455 0.01559859 0.008149981 -0.03250002 0.02369207 0.008149981 -0.03437328 0.02353417 0.008149981 -0.03639221 0.02299344 0.008149981 -0.03827536 0.02208679 0.008149981 -0.03995716 0.02084583 0.008149981 -0.04137885 0.01931381 0.008149981 -0.04249089 0.01754415 -0.001280903 -0.03484493 3.60407e-4 -0.002067208 -0.03432625 2.27864e-4 -9.95309e-4 -0.03456646 3.27936e-4 -0.005645453 -0.03345 3.63046e-5 -0.005645453 -0.03249996 1.49757e-7 -0.003546178 -0.03249996 3.3736e-5 -0.005594074 -0.03371328 5.92953e-5 -0.00296998 -0.03415 1.63092e-4 -0.004945456 -0.03415 1.14238e-4 -0.005214869 -0.03409606 1.04584e-4 -0.005442738 -0.03394263 8.43618e-5 -7.5486e-4 -0.03562629 5.72498e-4 0.00363636 -0.03449249 7.6337e-4 -5.7e-4 -0.03654998 8.67106e-4 0.00363636 -0.03663992 0.001338481 -5.7e-4 -0.03678363 9.51104e-4 0.00363636 -0.038643 0.002302825 -5.7e-4 -0.0388562 0.001948893 0.00363636 -0.04043185 0.00362277 -5.7e-4 -0.04070711 0.003314673 0.00363636 -0.04194402 0.005252361 -5.7e-4 -0.04227185 0.00500077 0.00363636 -0.04312694 0.007134616 -5.7e-4 -0.04349577 0.006948411 0.00363636 -0.04393917 0.00920403 -5.7e-4 -0.04433619 0.009089648 0.00363636 -0.04435253 0.01138842 -5.7e-4 -0.04476392 0.01134979 0.00363636 -0.04435253 0.01361149 -5.7e-4 -0.04476392 0.01365005 0.00363636 -0.04393917 0.01579582 -5.7e-4 -0.04433619 0.01591026 0.00363636 -0.04312694 0.01786524 -5.7e-4 -0.04349577 0.0180515 0.00363636 -0.04194408 0.01974755 -5.7e-4 -0.04227185 0.01999908 0.00363636 -0.04043185 0.02137714 -5.7e-4 -0.04070717 0.02168524 0.00363636 -0.03864306 0.02269709 -5.7e-4 -0.03885626 0.02305102 0.00363636 -0.03663998 0.02366149 -5.7e-4 -0.03678369 0.02404886 3.73081e-4 -0.03250008 0.02474588 -9.95309e-4 -0.03456646 0.02467203 0.00363636 -0.03449255 0.02423661 -7.5486e-4 -0.03562629 0.02442747 -5.7e-4 -0.03654998 0.02413284 -0.005440413 -0.03394496 0.02491533 -0.00521332 -0.03409671 0.02489531 -0.004945456 -0.03415 0.02488571 -0.005645453 -0.03250008 0.02499979 -0.005645453 -0.03344994 0.02496367 -0.003546178 -0.03250008 0.02496623 -0.005592167 -0.03371787 0.02494025 -0.00296998 -0.03415 0.02483689 -0.002067208 -0.03432625 0.0247721 -0.001280903 -0.03484493 0.02463954 0.004275441 -0.03250002 0.02432072 0.0042755 -0.03250002 6.79243e-4 3.73092e-4 -0.03250002 2.54107e-4 0.004003703 0.02925884 1.5e-4 0.004255115 0.02921402 1.5e-4 0.004003524 0.02925801 1.34258e-4 0.004253506 0.0292049 9.8082e-5 0.004000842 0.02924287 8.21452e-5 0.004247307 0.02917081 4.3934e-5 0.003994941 0.02920919 3.78096e-5 0.004237651 0.02911752 9.27113e-6 0.003986954 0.02916353 9.75821e-6 0.004228413 0.02906644 0 0.003977715 0.02911114 0 0.006093084 0.02699995 9.25975e-5 0.00606054 0.02699995 4.3934e-5 0.005953252 0.02767956 4.3934e-5 0.006011903 0.02699995 1.14178e-5 0.006006419 0.02699995 9.27113e-6 0.005901753 0.02766287 9.27113e-6 0.00609523 0.02699995 9.8082e-5 0.005986213 0.02769023 9.8082e-5 0.006104469 0.02699995 1.5e-4 0.005995035 0.02769309 1.5e-4 0.005889475 0.02795982 1.5e-4 0.005574226 0.02843642 9.8082e-5 0.005581319 0.02844238 1.5e-4 0.005161345 0.02883154 1.5e-4 0.00491333 0.02897477 9.8082e-5 0.004917681 0.02898293 1.5e-4 0.004846811 0.02885073 0 0.004871368 0.02889645 9.27113e-6 0.005506038 0.02837949 9.27113e-6 0.005466222 0.02834624 0 0.005852341 0.02764689 0 0.005954504 0.02699995 0 0.004896938 0.02894419 4.3934e-5 0.005547583 0.02841418 4.3934e-5 0.006104469 -0.02699995 1.5e-4 0.00609523 -0.02699995 9.8082e-5 0.005954504 -0.02699995 0 0.005954504 -0.02549999 0 0.006006419 -0.02699995 9.27113e-6 0.006011903 -0.02699995 1.14178e-5 0.005954504 -0.02249997 0 0.005954504 -0.01949995 0 0.005954504 -0.01649999 0 0.005954504 -0.01349997 0 0.005954504 -0.01049995 0 0.005954504 0 0 0.006093084 -0.02699995 9.25975e-5 0.00606054 -0.02699995 4.3934e-5 0.005954504 0.007499992 0 0.005954504 0.01049995 0 0.005954504 0.01349997 0 0.005954504 0.02549999 0 0.005954504 0.01649999 0 0.005954504 0.01949995 0 0.005954504 0.02249997 0 0.006104469 -0.02699995 5.25239e-4 0.006104469 0.02699995 5.25239e-4 0.006139039 -0.02699995 7.07858e-4 0.006139039 0.02699995 7.0792e-4 0.006158351 -0.02699995 7.51059e-4 0.006158351 0.02699995 7.51059e-4 0.006248295 -0.02699995 8.76161e-4 0.006248414 0.02699995 8.76261e-4 0.006308436 -0.02699995 9.28193e-4 0.006308436 0.02699995 9.28193e-4 0.006522357 -0.02699995 0.001018404 0.006522357 0.02699995 0.001018404 0.004255115 0.02921402 1.83982e-4 0.004971623 0.02895301 3.07898e-4 0.005161046 0.02883172 3.42408e-4 0.005572736 0.02845257 4.19939e-4 0.005889296 0.02796024 4.81923e-4 0.00596702 0.02777439 4.9746e-4 0.004239857 0.02943289 5.89601e-4 0.004251539 0.02953952 6.46249e-4 0.005074858 0.02925175 7.66857e-4 0.005702078 0.02896493 8.86536e-4 0.005876719 0.02877545 9.13844e-4 0.005779623 0.02868884 8.80267e-4 0.006421744 0.02774012 0.001001715 0.006160318 0.02836871 9.59084e-4 0.006355524 0.02794647 9.90864e-4 0.006249547 0.02790576 9.59428e-4 0.00515908 0.0293799 8.04337e-4 0.004266262 0.02964115 6.73597e-4 0.004480063 0.02966099 7.07256e-4 0.004277229 0.02970594 6.79476e-4 0.004235386 0.0293684 5.36374e-4 0.005004405 0.02910012 6.56077e-4 0.004235386 0.02927273 4.08588e-4 0.004968702 0.02899456 4.891e-4 0.004237592 0.02925235 3.65066e-4 0.005659699 0.02857267 7.69158e-4 0.006095349 0.02784252 8.47922e-4 0.00558716 0.02848905 6.01682e-4 0.005995929 0.02779597 6.79849e-4 -0.004709839 0.03043514 1.74418e-6 -0.003180325 0.03031134 1.21126e-5 -0.004474878 0.03041839 2.62801e-6 -0.003259599 0.03031516 9.95565e-6 -8.00744e-4 0.03003036 3.9107e-5 -9.27473e-4 0.03004729 3.71177e-5 -6.6524e-4 0.03017491 1.42912e-4 -0.002002 0.03018128 2.23851e-5 -0.003247857 0.03031402 1.00497e-5 -5.75301e-4 0.02999973 4.27727e-5 0.001834332 0.02991348 3.5763e-4 0.001823246 0.02974224 2.47358e-4 0.001811623 0.02963596 9.08056e-5 0.001556158 0.02967786 8.4928e-5 0.001407027 0.02970206 8.15725e-5 0.001374065 0.03014719 3.43475e-4 -0.005645513 0.03048932 0 -0.005645453 0.03050374 1.49757e-7 -0.004472553 0.03051292 1.16684e-5 -0.001545667 0.03041607 1.20501e-4 0.003106296 0.02931994 9.75821e-6 0.001555919 0.02967655 8.21452e-5 0.003120481 0.02939927 8.21452e-5 0.001550078 0.02964282 3.78096e-5 -8.07947e-4 0.0299831 9.75821e-6 -0.00447756 0.03039056 0 -0.003254055 0.03026038 0 -0.005090355 0.03044563 0 0.003096938 0.02926754 0 0.001532971 0.02954471 0 0.001542091 0.02959716 9.75821e-6 -8.15947e-4 0.02993047 0 0.003114461 0.02936559 3.78096e-5 0.003899991 -0.02474999 2e-4 0.003899991 -0.02474999 7.5e-4 0.004225373 -0.02467572 2e-4 0.004225373 -0.02467572 7.5e-4 0.004486322 -0.02446758 2e-4 0.004486322 -0.02446758 7.5e-4 0.004631161 -0.02416688 2e-4 0.004631161 -0.02416688 7.5e-4 0.004631161 -0.02383309 2e-4 0.004631161 -0.02383309 7.5e-4 0.004486322 -0.02353233 2e-4 0.004486322 -0.02353233 7.5e-4 0.004225373 -0.02332425 2e-4 0.004225373 -0.02332425 7.5e-4 0.003899991 -0.02324998 2e-4 0.003899991 -0.02324998 7.5e-4 7e-4 -0.02474999 7.5e-4 0.001074969 -0.0246495 7.5e-4 0.001349508 -0.02437496 7.5e-4 7e-4 -0.02324998 7.5e-4 0.001074969 -0.02335047 7.5e-4 0.001349508 -0.02362495 7.5e-4 0.001449942 -0.02399998 7.5e-4 7e-4 -0.02324998 0.00149995 -0.002499997 -0.02324998 0.00149995 -0.002499997 -0.02324998 2e-4 7e-4 -0.02474999 0.00149995 0.001074969 -0.0246495 0.00149995 0.001349508 -0.02437496 0.00149995 0.001449942 -0.02399998 0.00149995 0.001349508 -0.02362495 0.00149995 0.001074969 -0.02335047 0.00149995 -0.002499997 -0.02474999 2e-4 -0.002499997 -0.02474999 0.00149995 -0.002825379 -0.02332425 2e-4 -0.002825379 -0.02332425 0.00149995 -0.003086328 -0.02353233 2e-4 -0.003086328 -0.02353233 0.00149995 -0.003231167 -0.02383309 2e-4 -0.003231167 -0.02383309 0.00149995 -0.003231167 -0.02416688 2e-4 -0.003231167 -0.02416688 0.00149995 -0.003086328 -0.02446758 2e-4 -0.003086328 -0.02446758 0.00149995 -0.002825379 -0.02467572 2e-4 -0.002825379 -0.02467572 0.00149995 -0.002499997 -0.02494996 0 -0.002912163 -0.02485591 0 -0.003242731 -0.02459228 0 -0.003426134 -0.02421134 0 -0.003426134 -0.02378857 0 -0.003242731 -0.02340763 0 -0.002912163 -0.02314406 0 -0.002499997 -0.02304995 0 0.003899991 -0.02494996 0 0.003899991 -0.02304995 0 0.004312157 -0.02314406 0 0.004642724 -0.02340763 0 0.004826128 -0.02378857 0 0.004826128 -0.02421134 0 0.004642724 -0.02459228 0 0.004312157 -0.02485591 0 0.003899991 -0.02174997 2e-4 0.003899991 -0.02174997 7.5e-4 0.004225373 -0.0216757 2e-4 0.004225373 -0.0216757 7.5e-4 0.004486322 -0.02146756 2e-4 0.004486322 -0.02146756 7.5e-4 0.004631161 -0.02116686 2e-4 0.004631161 -0.02116686 7.5e-4 0.004631161 -0.02083307 2e-4 0.004631161 -0.02083307 7.5e-4 0.004486322 -0.02053236 2e-4 0.004486322 -0.02053236 7.5e-4 0.004225373 -0.02032423 2e-4 0.004225373 -0.02032423 7.5e-4 0.003899991 -0.02024996 2e-4 0.003899991 -0.02024996 7.5e-4 7e-4 -0.02174997 7.5e-4 0.001074969 -0.02164947 7.5e-4 0.001349508 -0.021375 7.5e-4 7e-4 -0.02024996 7.5e-4 0.001074969 -0.02035045 7.5e-4 0.001349508 -0.02062499 7.5e-4 0.001449942 -0.02099996 7.5e-4 7e-4 -0.02024996 0.00149995 -0.002499997 -0.02024996 0.00149995 -0.002499997 -0.02024996 2e-4 7e-4 -0.02174997 0.00149995 0.001074969 -0.02164947 0.00149995 0.001349508 -0.021375 0.00149995 0.001449942 -0.02099996 0.00149995 0.001349508 -0.02062499 0.00149995 0.001074969 -0.02035045 0.00149995 -0.002499997 -0.02174997 2e-4 -0.002499997 -0.02174997 0.00149995 -0.002825379 -0.02032423 2e-4 -0.002825379 -0.02032423 0.00149995 -0.003086328 -0.02053236 2e-4 -0.003086328 -0.02053236 0.00149995 -0.003231167 -0.02083307 2e-4 -0.003231167 -0.02083307 0.00149995 -0.003231167 -0.02116686 2e-4 -0.003231167 -0.02116686 0.00149995 -0.003086328 -0.02146756 2e-4 -0.003086328 -0.02146756 0.00149995 -0.002825379 -0.0216757 2e-4 -0.002825379 -0.0216757 0.00149995 -0.002499997 -0.02195 0 -0.002912163 -0.02185589 0 -0.003242731 -0.02159231 0 -0.003426134 -0.02121138 0 -0.003426134 -0.0207886 0 -0.003242731 -0.02040767 0 -0.002912163 -0.02014404 0 -0.002499997 -0.02004998 0 0.003899991 -0.02195 0 0.003899991 -0.02004998 0 0.004312157 -0.02014404 0 0.004642724 -0.02040767 0 0.004826128 -0.0207886 0 0.004826128 -0.02121138 0 0.004642724 -0.02159231 0 0.004312157 -0.02185589 0 0.003899991 -0.01874995 2e-4 0.003899991 -0.01874995 7.5e-4 0.004225373 -0.01867568 2e-4 0.004225373 -0.01867568 7.5e-4 0.004486322 -0.0184676 2e-4 0.004486322 -0.0184676 7.5e-4 0.004631161 -0.01816684 2e-4 0.004631161 -0.01816684 7.5e-4 0.004631161 -0.01783311 2e-4 0.004631161 -0.01783311 7.5e-4 0.004486322 -0.01753234 2e-4 0.004486322 -0.01753234 7.5e-4 0.004225373 -0.01732426 2e-4 0.004225373 -0.01732426 7.5e-4 0.003899991 -0.01725 2e-4 0.003899991 -0.01725 7.5e-4 0.001074969 -0.01735043 7.5e-4 7e-4 -0.01725 7.5e-4 0.001349508 -0.01762497 7.5e-4 7e-4 -0.01874995 7.5e-4 0.001074969 -0.01864951 7.5e-4 0.001349508 -0.01837497 7.5e-4 0.001449942 -0.01799994 7.5e-4 7e-4 -0.01725 0.00149995 -0.002499997 -0.01725 0.00149995 -0.002499997 -0.01725 2e-4 7e-4 -0.01874995 0.00149995 0.001074969 -0.01864951 0.00149995 0.001349508 -0.01837497 0.00149995 0.001449942 -0.01799994 0.00149995 0.001349508 -0.01762497 0.00149995 0.001074969 -0.01735043 0.00149995 -0.002499997 -0.01874995 2e-4 -0.002499997 -0.01874995 0.00149995 -0.002825379 -0.01732426 2e-4 -0.002825379 -0.01732426 0.00149995 -0.003086328 -0.01753234 2e-4 -0.003086328 -0.01753234 0.00149995 -0.003231167 -0.01783311 2e-4 -0.003231167 -0.01783311 0.00149995 -0.003231167 -0.01816684 2e-4 -0.003231167 -0.01816684 0.00149995 -0.003086328 -0.0184676 2e-4 -0.003086328 -0.0184676 0.00149995 -0.002825379 -0.01867568 2e-4 -0.002825379 -0.01867568 0.00149995 -0.002499997 -0.01894998 0 -0.002912163 -0.01885586 0 -0.003242731 -0.01859229 0 -0.003426134 -0.01821136 0 -0.003426134 -0.01778858 0 -0.003242731 -0.01740765 0 -0.002912163 -0.01714408 0 -0.002499997 -0.01704996 0 0.003899991 -0.01894998 0 0.003899991 -0.01704996 0 0.004312157 -0.01714408 0 0.004642724 -0.01740765 0 0.004826128 -0.01778858 0 0.004826128 -0.01821136 0 0.004642724 -0.01859229 0 0.004312157 -0.01885586 0 0.003899991 -0.01574999 2e-4 0.003899991 -0.01574999 7.5e-4 0.004225373 -0.01567572 2e-4 0.004225373 -0.01567572 7.5e-4 0.004486322 -0.01546758 2e-4 0.004486322 -0.01546758 7.5e-4 0.004631161 -0.01516687 2e-4 0.004631161 -0.01516687 7.5e-4 0.004631161 -0.01483309 2e-4 0.004631161 -0.01483309 7.5e-4 0.004486322 -0.01453238 2e-4 0.004486322 -0.01453238 7.5e-4 0.004225373 -0.01432424 2e-4 0.004225373 -0.01432424 7.5e-4 0.003899991 -0.01424998 2e-4 0.003899991 -0.01424998 7.5e-4 0.001074969 -0.01435047 7.5e-4 7e-4 -0.01424998 7.5e-4 0.001349508 -0.01462495 7.5e-4 7e-4 -0.01574999 7.5e-4 0.001074969 -0.01564949 7.5e-4 0.001349508 -0.01537495 7.5e-4 0.001449942 -0.01499998 7.5e-4 7e-4 -0.01424998 0.00149995 -0.002499997 -0.01424998 0.00149995 -0.002499997 -0.01424998 2e-4 7e-4 -0.01574999 0.00149995 0.001074969 -0.01564949 0.00149995 0.001349508 -0.01537495 0.00149995 0.001449942 -0.01499998 0.00149995 0.001349508 -0.01462495 0.00149995 0.001074969 -0.01435047 0.00149995 -0.002499997 -0.01574999 2e-4 -0.002499997 -0.01574999 0.00149995 -0.002825379 -0.01432424 2e-4 -0.002825379 -0.01432424 0.00149995 -0.003086328 -0.01453238 2e-4 -0.003086328 -0.01453238 0.00149995 -0.003231167 -0.01483309 2e-4 -0.003231167 -0.01483309 0.00149995 -0.003231167 -0.01516687 2e-4 -0.003231167 -0.01516687 0.00149995 -0.003086328 -0.01546758 2e-4 -0.003086328 -0.01546758 0.00149995 -0.002825379 -0.01567572 2e-4 -0.002825379 -0.01567572 0.00149995 -0.002499997 -0.01594996 0 -0.002912163 -0.0158559 0 -0.003242731 -0.01559227 0 -0.003426134 -0.01521134 0 -0.003426134 -0.01478856 0 -0.003242731 -0.01440763 0 -0.002912163 -0.01414406 0 -0.002499997 -0.01404994 0 0.003899991 -0.01594996 0 0.003899991 -0.01404994 0 0.004312157 -0.01414406 0 0.004642724 -0.01440763 0 0.004826128 -0.01478856 0 0.004826128 -0.01521134 0 0.004642724 -0.01559227 0 0.004312157 -0.0158559 0 0.003899991 -0.01274996 2e-4 0.003899991 -0.01274996 7.5e-4 0.004225373 -0.0126757 2e-4 0.004225373 -0.0126757 7.5e-4 0.004486322 -0.01246756 2e-4 0.004486322 -0.01246756 7.5e-4 0.004631161 -0.01216685 2e-4 0.004631161 -0.01216685 7.5e-4 0.004631161 -0.01183307 2e-4 0.004631161 -0.01183307 7.5e-4 0.004486322 -0.01153236 2e-4 0.004486322 -0.01153236 7.5e-4 0.004225373 -0.01132422 2e-4 0.004225373 -0.01132422 7.5e-4 0.003899991 -0.01124995 2e-4 0.003899991 -0.01124995 7.5e-4 7e-4 -0.01274996 7.5e-4 0.001074969 -0.01264947 7.5e-4 0.001349508 -0.01237499 7.5e-4 7e-4 -0.01124995 7.5e-4 0.001074969 -0.01135045 7.5e-4 0.001349508 -0.01162499 7.5e-4 0.001449942 -0.01199996 7.5e-4 7e-4 -0.01124995 0.00149995 -0.002499997 -0.01124995 0.00149995 -0.002499997 -0.01124995 2e-4 7e-4 -0.01274996 0.00149995 0.001074969 -0.01264947 0.00149995 0.001349508 -0.01237499 0.00149995 0.001449942 -0.01199996 0.00149995 0.001349508 -0.01162499 0.00149995 0.001074969 -0.01135045 0.00149995 -0.002499997 -0.01274996 2e-4 -0.002499997 -0.01274996 0.00149995 -0.002825379 -0.01132422 2e-4 -0.002825379 -0.01132422 0.00149995 -0.003086328 -0.01153236 2e-4 -0.003086328 -0.01153236 0.00149995 -0.003231167 -0.01183307 2e-4 -0.003231167 -0.01183307 0.00149995 -0.003231167 -0.01216685 2e-4 -0.003231167 -0.01216685 0.00149995 -0.003086328 -0.01246756 2e-4 -0.003086328 -0.01246756 0.00149995 -0.002825379 -0.0126757 2e-4 -0.002825379 -0.0126757 0.00149995 -0.002499997 -0.01295 0 -0.002912163 -0.01285588 0 -0.003242731 -0.01259231 0 -0.003426134 -0.01221138 0 -0.003426134 -0.0117886 0 -0.003242731 -0.01140767 0 -0.002912163 -0.01114404 0 -0.002499997 -0.01104998 0 0.003899991 -0.01295 0 0.003899991 -0.01104998 0 0.004312157 -0.01114404 0 0.004642724 -0.01140767 0 0.004826128 -0.0117886 0 0.004826128 -0.01221138 0 0.004642724 -0.01259231 0 0.004312157 -0.01285588 0 0.003899991 -0.009749948 2e-4 0.003899991 -0.009749948 7.5e-4 0.004225373 -0.009675681 2e-4 0.004225373 -0.009675681 7.5e-4 0.004486322 -0.009467601 2e-4 0.004486322 -0.009467601 7.5e-4 0.004631161 -0.009166836 2e-4 0.004631161 -0.009166836 7.5e-4 0.004631161 -0.00883311 2e-4 0.004631161 -0.00883311 7.5e-4 0.004486322 -0.008532345 2e-4 0.004486322 -0.008532345 7.5e-4 0.004225373 -0.008324265 2e-4 0.004225373 -0.008324265 7.5e-4 0.003899991 -0.008249998 2e-4 0.003899991 -0.008249998 7.5e-4 0.001349508 -0.009374976 7.5e-4 0.001074969 -0.009649515 7.5e-4 7e-4 -0.009749948 7.5e-4 7e-4 -0.008249998 7.5e-4 0.001074969 -0.008350431 7.5e-4 0.001349508 -0.00862497 7.5e-4 0.001449942 -0.008999943 7.5e-4 7e-4 -0.008249998 0.00149995 -0.002499997 -0.008249998 0.00149995 -0.002499997 -0.008249998 2e-4 7e-4 -0.009749948 0.00149995 0.001074969 -0.009649515 0.00149995 0.001349508 -0.009374976 0.00149995 0.001449942 -0.008999943 0.00149995 0.001349508 -0.00862497 0.00149995 0.001074969 -0.008350431 0.00149995 -0.002499997 -0.009749948 2e-4 -0.002499997 -0.009749948 0.00149995 -0.002825379 -0.008324265 2e-4 -0.002825379 -0.008324265 0.00149995 -0.003086328 -0.008532345 2e-4 -0.003086328 -0.008532345 0.00149995 -0.003231167 -0.00883311 2e-4 -0.003231167 -0.00883311 0.00149995 -0.003231167 -0.009166836 2e-4 -0.003231167 -0.009166836 0.00149995 -0.003086328 -0.009467601 2e-4 -0.003086328 -0.009467601 0.00149995 -0.002825379 -0.009675681 2e-4 -0.002825379 -0.009675681 0.00149995 -0.002499997 -0.009949982 0 -0.002912163 -0.009855866 0 -0.003242731 -0.009592294 0 -0.003426134 -0.009211361 0 -0.003426134 -0.008788585 0 -0.003242731 -0.008407652 0 -0.002912163 -0.00814408 0 -0.002499997 -0.008049964 0 0.003899991 -0.009949982 0 0.003899991 -0.008049964 0 0.004312157 -0.00814408 0 0.004642724 -0.008407652 0 0.004826128 -0.008788585 0 0.004826128 -0.009211361 0 0.004642724 -0.009592294 0 0.004312157 -0.009855866 0 0.003899991 -0.006749987 2e-4 0.003899991 -0.006749987 7.5e-4 0.004225373 -0.00667572 2e-4 0.004225373 -0.00667572 7.5e-4 0.004486322 -0.00646758 2e-4 0.004486322 -0.00646758 7.5e-4 0.004631161 -0.006166875 2e-4 0.004631161 -0.006166875 7.5e-4 0.004631161 -0.005833089 2e-4 0.004631161 -0.005833089 7.5e-4 0.004486322 -0.005532324 2e-4 0.004486322 -0.005532324 7.5e-4 0.004225373 -0.005324244 2e-4 0.004225373 -0.005324244 7.5e-4 0.003899991 -0.005249977 2e-4 0.003899991 -0.005249977 7.5e-4 7e-4 -0.006749987 7.5e-4 0.001074969 -0.006649494 7.5e-4 0.001349508 -0.006374955 7.5e-4 7e-4 -0.005249977 7.5e-4 0.001074969 -0.00535047 7.5e-4 0.001349508 -0.005624949 7.5e-4 0.001449942 -0.005999982 7.5e-4 7e-4 -0.005249977 0.00149995 -0.002499997 -0.005249977 0.00149995 -0.002499997 -0.005249977 2e-4 7e-4 -0.006749987 0.00149995 0.001074969 -0.006649494 0.00149995 0.001349508 -0.006374955 0.00149995 0.001449942 -0.005999982 0.00149995 0.001349508 -0.005624949 0.00149995 0.001074969 -0.00535047 0.00149995 -0.002499997 -0.006749987 2e-4 -0.002499997 -0.006749987 0.00149995 -0.002825379 -0.005324244 2e-4 -0.002825379 -0.005324244 0.00149995 -0.003086328 -0.005532324 2e-4 -0.003086328 -0.005532324 0.00149995 -0.003231167 -0.005833089 2e-4 -0.003231167 -0.005833089 0.00149995 -0.003231167 -0.006166875 2e-4 -0.003231167 -0.006166875 0.00149995 -0.003086328 -0.00646758 2e-4 -0.003086328 -0.00646758 0.00149995 -0.002825379 -0.00667572 2e-4 -0.002825379 -0.00667572 0.00149995 -0.002499997 -0.006949961 0 -0.002912163 -0.006855905 0 -0.003242731 -0.006592273 0 -0.003426134 -0.00621134 0 -0.003426134 -0.005788564 0 -0.003242731 -0.005407631 0 -0.002912163 -0.005144059 0 -0.002499997 -0.005049943 0 0.003899991 -0.006949961 0 0.003899991 -0.005049943 0 0.004312157 -0.005144059 0 0.004642724 -0.005407631 0 0.004826128 -0.005788564 0 0.004826128 -0.00621134 0 0.004642724 -0.006592273 0 0.004312157 -0.006855905 0 0.003899991 0.005249977 2e-4 0.003899991 0.005249977 7.5e-4 0.004225373 0.005324244 2e-4 0.004225373 0.005324244 7.5e-4 0.004486322 0.005532324 2e-4 0.004486322 0.005532324 7.5e-4 0.004631161 0.005833089 2e-4 0.004631161 0.005833089 7.5e-4 0.004631161 0.006166875 2e-4 0.004631161 0.006166875 7.5e-4 0.004486322 0.00646758 2e-4 0.004486322 0.00646758 7.5e-4 0.004225373 0.00667572 2e-4 0.004225373 0.00667572 7.5e-4 0.003899991 0.006749987 2e-4 0.003899991 0.006749987 7.5e-4 0.001074969 0.006649494 7.5e-4 7e-4 0.006749987 7.5e-4 0.001349508 0.006374955 7.5e-4 0.001349508 0.005624949 7.5e-4 0.001074969 0.00535047 7.5e-4 7e-4 0.005249977 7.5e-4 0.001449942 0.005999982 7.5e-4 7e-4 0.006749987 0.00149995 -0.002499997 0.006749987 0.00149995 -0.002499997 0.006749987 2e-4 7e-4 0.005249977 0.00149995 0.001074969 0.00535047 0.00149995 0.001349508 0.005624949 0.00149995 0.001449942 0.005999982 0.00149995 0.001349508 0.006374955 0.00149995 0.001074969 0.006649494 0.00149995 -0.002499997 0.005249977 2e-4 -0.002499997 0.005249977 0.00149995 -0.002825379 0.00667572 2e-4 -0.002825379 0.00667572 0.00149995 -0.003086328 0.00646758 2e-4 -0.003086328 0.00646758 0.00149995 -0.003231167 0.006166875 2e-4 -0.003231167 0.006166875 0.00149995 -0.003231167 0.005833089 2e-4 -0.003231167 0.005833089 0.00149995 -0.003086328 0.005532324 2e-4 -0.003086328 0.005532324 0.00149995 -0.002825379 0.005324244 2e-4 -0.002825379 0.005324244 0.00149995 -0.002499997 0.005049943 0 -0.002912163 0.005144059 0 -0.003242731 0.005407631 0 -0.003426134 0.005788564 0 -0.003426134 0.00621134 0 -0.003242731 0.006592273 0 -0.002912163 0.006855905 0 -0.002499997 0.006949961 0 0.003899991 0.005049943 0 0.003899991 0.006949961 0 0.004312157 0.006855905 0 0.004642724 0.006592273 0 0.004826128 0.00621134 0 0.004826128 0.005788564 0 0.004642724 0.005407631 0 0.004312157 0.005144059 0 0.003899991 0.008249998 2e-4 0.003899991 0.008249998 7.5e-4 0.004225373 0.008324265 2e-4 0.004225373 0.008324265 7.5e-4 0.004486322 0.008532345 2e-4 0.004486322 0.008532345 7.5e-4 0.004631161 0.00883311 2e-4 0.004631161 0.00883311 7.5e-4 0.004631161 0.009166836 2e-4 0.004631161 0.009166836 7.5e-4 0.004486322 0.009467601 2e-4 0.004486322 0.009467601 7.5e-4 0.004225373 0.009675681 2e-4 0.004225373 0.009675681 7.5e-4 0.003899991 0.009749948 2e-4 0.003899991 0.009749948 7.5e-4 0.001349508 0.00862497 7.5e-4 0.001074969 0.008350431 7.5e-4 7e-4 0.008249998 7.5e-4 7e-4 0.009749948 7.5e-4 0.001074969 0.009649515 7.5e-4 0.001349508 0.009374976 7.5e-4 0.001449942 0.008999943 7.5e-4 7e-4 0.009749948 0.00149995 -0.002499997 0.009749948 0.00149995 -0.002499997 0.009749948 2e-4 7e-4 0.008249998 0.00149995 0.001074969 0.008350431 0.00149995 0.001349508 0.00862497 0.00149995 0.001449942 0.008999943 0.00149995 0.001349508 0.009374976 0.00149995 0.001074969 0.009649515 0.00149995 -0.002499997 0.008249998 2e-4 -0.002499997 0.008249998 0.00149995 -0.002825379 0.009675681 2e-4 -0.002825379 0.009675681 0.00149995 -0.003086328 0.009467601 2e-4 -0.003086328 0.009467601 0.00149995 -0.003231167 0.009166836 2e-4 -0.003231167 0.009166836 0.00149995 -0.003231167 0.00883311 2e-4 -0.003231167 0.00883311 0.00149995 -0.003086328 0.008532345 2e-4 -0.003086328 0.008532345 0.00149995 -0.002825379 0.008324265 2e-4 -0.002825379 0.008324265 0.00149995 -0.002499997 0.008049964 0 -0.002912163 0.00814408 0 -0.003242731 0.008407652 0 -0.003426134 0.008788585 0 -0.003426134 0.009211361 0 -0.003242731 0.009592294 0 -0.002912163 0.009855866 0 -0.002499997 0.009949982 0 0.003899991 0.008049964 0 0.003899991 0.009949982 0 0.004312157 0.009855866 0 0.004642724 0.009592294 0 0.004826128 0.009211361 0 0.004826128 0.008788585 0 0.004642724 0.008407652 0 0.004312157 0.00814408 0 0.003899991 0.01124995 2e-4 0.003899991 0.01124995 7.5e-4 0.004225373 0.01132422 2e-4 0.004225373 0.01132422 7.5e-4 0.004486322 0.01153236 2e-4 0.004486322 0.01153236 7.5e-4 0.004631161 0.01183307 2e-4 0.004631161 0.01183307 7.5e-4 0.004631161 0.01216685 2e-4 0.004631161 0.01216685 7.5e-4 0.004486322 0.01246756 2e-4 0.004486322 0.01246756 7.5e-4 0.004225373 0.0126757 2e-4 0.004225373 0.0126757 7.5e-4 0.003899991 0.01274996 2e-4 0.003899991 0.01274996 7.5e-4 0.001074969 0.01264947 7.5e-4 7e-4 0.01274996 7.5e-4 0.001349508 0.01237499 7.5e-4 0.001349508 0.01162499 7.5e-4 0.001074969 0.01135045 7.5e-4 7e-4 0.01124995 7.5e-4 0.001449942 0.01199996 7.5e-4 7e-4 0.01274996 0.00149995 -0.002499997 0.01274996 0.00149995 -0.002499997 0.01274996 2e-4 7e-4 0.01124995 0.00149995 0.001074969 0.01135045 0.00149995 0.001349508 0.01162499 0.00149995 0.001449942 0.01199996 0.00149995 0.001349508 0.01237499 0.00149995 0.001074969 0.01264947 0.00149995 -0.002499997 0.01124995 2e-4 -0.002499997 0.01124995 0.00149995 -0.002825379 0.0126757 2e-4 -0.002825379 0.0126757 0.00149995 -0.003086328 0.01246756 2e-4 -0.003086328 0.01246756 0.00149995 -0.003231167 0.01216685 2e-4 -0.003231167 0.01216685 0.00149995 -0.003231167 0.01183307 2e-4 -0.003231167 0.01183307 0.00149995 -0.003086328 0.01153236 2e-4 -0.003086328 0.01153236 0.00149995 -0.002825379 0.01132422 2e-4 -0.002825379 0.01132422 0.00149995 -0.002499997 0.01104998 0 -0.002912163 0.01114404 0 -0.003242731 0.01140767 0 -0.003426134 0.0117886 0 -0.003426134 0.01221138 0 -0.003242731 0.01259231 0 -0.002912163 0.01285588 0 -0.002499997 0.01295 0 0.003899991 0.01104998 0 0.003899991 0.01295 0 0.004312157 0.01285588 0 0.004642724 0.01259231 0 0.004826128 0.01221138 0 0.004826128 0.0117886 0 0.004642724 0.01140767 0 0.004312157 0.01114404 0 0.003899991 0.01424998 2e-4 0.003899991 0.01424998 7.5e-4 0.004225373 0.01432424 2e-4 0.004225373 0.01432424 7.5e-4 0.004486322 0.01453238 2e-4 0.004486322 0.01453238 7.5e-4 0.004631161 0.01483309 2e-4 0.004631161 0.01483309 7.5e-4 0.004631161 0.01516687 2e-4 0.004631161 0.01516687 7.5e-4 0.004486322 0.01546758 2e-4 0.004486322 0.01546758 7.5e-4 0.004225373 0.01567572 2e-4 0.004225373 0.01567572 7.5e-4 0.003899991 0.01574999 2e-4 0.003899991 0.01574999 7.5e-4 0.001074969 0.01564949 7.5e-4 7e-4 0.01574999 7.5e-4 0.001349508 0.01537495 7.5e-4 7e-4 0.01424998 7.5e-4 0.001074969 0.01435047 7.5e-4 0.001349508 0.01462495 7.5e-4 0.001449942 0.01499998 7.5e-4 7e-4 0.01574999 0.00149995 -0.002499997 0.01574999 0.00149995 -0.002499997 0.01574999 2e-4 7e-4 0.01424998 0.00149995 0.001074969 0.01435047 0.00149995 0.001349508 0.01462495 0.00149995 0.001449942 0.01499998 0.00149995 0.001349508 0.01537495 0.00149995 0.001074969 0.01564949 0.00149995 -0.002499997 0.01424998 2e-4 -0.002499997 0.01424998 0.00149995 -0.002825379 0.01567572 2e-4 -0.002825379 0.01567572 0.00149995 -0.003086328 0.01546758 2e-4 -0.003086328 0.01546758 0.00149995 -0.003231167 0.01516687 2e-4 -0.003231167 0.01516687 0.00149995 -0.003231167 0.01483309 2e-4 -0.003231167 0.01483309 0.00149995 -0.003086328 0.01453238 2e-4 -0.003086328 0.01453238 0.00149995 -0.002825379 0.01432424 2e-4 -0.002825379 0.01432424 0.00149995 -0.002499997 0.01404994 0 -0.002912163 0.01414406 0 -0.003242731 0.01440763 0 -0.003426134 0.01478856 0 -0.003426134 0.01521134 0 -0.003242731 0.01559227 0 -0.002912163 0.0158559 0 -0.002499997 0.01594996 0 0.003899991 0.01404994 0 0.003899991 0.01594996 0 0.004312157 0.0158559 0 0.004642724 0.01559227 0 0.004826128 0.01521134 0 0.004826128 0.01478856 0 0.004642724 0.01440763 0 0.004312157 0.01414406 0 0.003899991 0.01725 2e-4 0.003899991 0.01725 7.5e-4 0.004225373 0.01732426 2e-4 0.004225373 0.01732426 7.5e-4 0.004486322 0.01753234 2e-4 0.004486322 0.01753234 7.5e-4 0.004631161 0.01783311 2e-4 0.004631161 0.01783311 7.5e-4 0.004631161 0.01816684 2e-4 0.004631161 0.01816684 7.5e-4 0.004486322 0.0184676 2e-4 0.004486322 0.0184676 7.5e-4 0.004225373 0.01867568 2e-4 0.004225373 0.01867568 7.5e-4 0.003899991 0.01874995 2e-4 0.003899991 0.01874995 7.5e-4 0.001074969 0.01864951 7.5e-4 7e-4 0.01874995 7.5e-4 0.001349508 0.01837497 7.5e-4 7e-4 0.01725 7.5e-4 0.001074969 0.01735043 7.5e-4 0.001349508 0.01762497 7.5e-4 0.001449942 0.01799994 7.5e-4 7e-4 0.01874995 0.00149995 -0.002499997 0.01874995 0.00149995 -0.002499997 0.01874995 2e-4 7e-4 0.01725 0.00149995 0.001074969 0.01735043 0.00149995 0.001349508 0.01762497 0.00149995 0.001449942 0.01799994 0.00149995 0.001349508 0.01837497 0.00149995 0.001074969 0.01864951 0.00149995 -0.002499997 0.01725 2e-4 -0.002499997 0.01725 0.00149995 -0.002825379 0.01867568 2e-4 -0.002825379 0.01867568 0.00149995 -0.003086328 0.0184676 2e-4 -0.003086328 0.0184676 0.00149995 -0.003231167 0.01816684 2e-4 -0.003231167 0.01816684 0.00149995 -0.003231167 0.01783311 2e-4 -0.003231167 0.01783311 0.00149995 -0.003086328 0.01753234 2e-4 -0.003086328 0.01753234 0.00149995 -0.002825379 0.01732426 2e-4 -0.002825379 0.01732426 0.00149995 -0.002499997 0.01704996 0 -0.002912163 0.01714408 0 -0.003242731 0.01740765 0 -0.003426134 0.01778858 0 -0.003426134 0.01821136 0 -0.003242731 0.01859229 0 -0.002912163 0.01885586 0 -0.002499997 0.01894998 0 0.003899991 0.01704996 0 0.003899991 0.01894998 0 0.004312157 0.01885586 0 0.004642724 0.01859229 0 0.004826128 0.01821136 0 0.004826128 0.01778858 0 0.004642724 0.01740765 0 0.004312157 0.01714408 0 0.003899991 0.02024996 2e-4 0.003899991 0.02024996 7.5e-4 0.004225373 0.02032423 2e-4 0.004225373 0.02032423 7.5e-4 0.004486322 0.02053236 2e-4 0.004486322 0.02053236 7.5e-4 0.004631161 0.02083307 2e-4 0.004631161 0.02083307 7.5e-4 0.004631161 0.02116686 2e-4 0.004631161 0.02116686 7.5e-4 0.004486322 0.02146756 2e-4 0.004486322 0.02146756 7.5e-4 0.004225373 0.0216757 2e-4 0.004225373 0.0216757 7.5e-4 0.003899991 0.02174997 2e-4 0.003899991 0.02174997 7.5e-4 0.001074969 0.02164947 7.5e-4 7e-4 0.02174997 7.5e-4 0.001349508 0.021375 7.5e-4 7e-4 0.02024996 7.5e-4 0.001074969 0.02035045 7.5e-4 0.001349508 0.02062499 7.5e-4 0.001449942 0.02099996 7.5e-4 7e-4 0.02174997 0.00149995 -0.002499997 0.02174997 0.00149995 -0.002499997 0.02174997 2e-4 7e-4 0.02024996 0.00149995 0.001074969 0.02035045 0.00149995 0.001349508 0.02062499 0.00149995 0.001449942 0.02099996 0.00149995 0.001349508 0.021375 0.00149995 0.001074969 0.02164947 0.00149995 -0.002499997 0.02024996 2e-4 -0.002499997 0.02024996 0.00149995 -0.002825379 0.0216757 2e-4 -0.002825379 0.0216757 0.00149995 -0.003086328 0.02146756 2e-4 -0.003086328 0.02146756 0.00149995 -0.003231167 0.02116686 2e-4 -0.003231167 0.02116686 0.00149995 -0.003231167 0.02083307 2e-4 -0.003231167 0.02083307 0.00149995 -0.003086328 0.02053236 2e-4 -0.003086328 0.02053236 0.00149995 -0.002825379 0.02032423 2e-4 -0.002825379 0.02032423 0.00149995 -0.002499997 0.02004998 0 -0.002912163 0.02014404 0 -0.003242731 0.02040767 0 -0.003426134 0.0207886 0 -0.003426134 0.02121138 0 -0.003242731 0.02159231 0 -0.002912163 0.02185589 0 -0.002499997 0.02195 0 0.003899991 0.02004998 0 0.003899991 0.02195 0 0.004312157 0.02185589 0 0.004642724 0.02159231 0 0.004826128 0.02121138 0 0.004826128 0.0207886 0 0.004642724 0.02040767 0 0.004312157 0.02014404 0 0.003899991 0.02324998 2e-4 0.003899991 0.02324998 7.5e-4 0.004225373 0.02332425 2e-4 0.004225373 0.02332425 7.5e-4 0.004486322 0.02353233 2e-4 0.004486322 0.02353233 7.5e-4 0.004631161 0.02383309 2e-4 0.004631161 0.02383309 7.5e-4 0.004631161 0.02416688 2e-4 0.004631161 0.02416688 7.5e-4 0.004486322 0.02446758 2e-4 0.004486322 0.02446758 7.5e-4 0.004225373 0.02467572 2e-4 0.004225373 0.02467572 7.5e-4 0.003899991 0.02474999 2e-4 0.003899991 0.02474999 7.5e-4 0.001074969 0.0246495 7.5e-4 7e-4 0.02474999 7.5e-4 0.001349508 0.02362495 7.5e-4 0.001074969 0.02335047 7.5e-4 7e-4 0.02324998 7.5e-4 0.001349508 0.02437496 7.5e-4 0.001449942 0.02399998 7.5e-4 7e-4 0.02474999 0.00149995 -0.002499997 0.02474999 0.00149995 -0.002499997 0.02474999 2e-4 7e-4 0.02324998 0.00149995 0.001074969 0.02335047 0.00149995 0.001349508 0.02362495 0.00149995 0.001449942 0.02399998 0.00149995 0.001349508 0.02437496 0.00149995 0.001074969 0.0246495 0.00149995 -0.002499997 0.02324998 2e-4 -0.002499997 0.02324998 0.00149995 -0.002825379 0.02467572 2e-4 -0.002825379 0.02467572 0.00149995 -0.003086328 0.02446758 2e-4 -0.003086328 0.02446758 0.00149995 -0.003231167 0.02416688 2e-4 -0.003231167 0.02416688 0.00149995 -0.003231167 0.02383309 2e-4 -0.003231167 0.02383309 0.00149995 -0.003086328 0.02353233 2e-4 -0.003086328 0.02353233 0.00149995 -0.002825379 0.02332425 2e-4 -0.002825379 0.02332425 0.00149995 -0.002499997 0.02304995 0 -0.002912163 0.02314406 0 -0.003242731 0.02340763 0 -0.003426134 0.02378857 0 -0.003426134 0.02421134 0 -0.003242731 0.02459228 0 -0.002912163 0.02485591 0 -0.002499997 0.02494996 0 0.003899991 0.02304995 0 0.003899991 0.02494996 0 0.004312157 0.02485591 0 0.004642724 0.02459228 0 0.004826128 0.02421134 0 0.004826128 0.02378857 0 0.004642724 0.02340763 0 0.004312157 0.02314406 0 0.003899991 0.02625 2e-4 0.003899991 0.02625 7.5e-4 0.004225373 0.02632427 2e-4 0.004225373 0.02632427 7.5e-4 0.004486322 0.02653235 2e-4 0.004486322 0.02653235 7.5e-4 0.004631161 0.02683305 2e-4 0.004631161 0.02683305 7.5e-4 0.004631161 0.02716684 2e-4 0.004631161 0.02716684 7.5e-4 0.004486322 0.0274676 2e-4 0.004486322 0.0274676 7.5e-4 0.004225373 0.02767568 2e-4 0.004225373 0.02767568 7.5e-4 0.003899991 0.02774995 2e-4 0.003899991 0.02774995 7.5e-4 0.001074969 0.02764952 7.5e-4 7e-4 0.02774995 7.5e-4 0.001349508 0.02662497 7.5e-4 0.001074969 0.02635043 7.5e-4 7e-4 0.02625 7.5e-4 0.001349508 0.02737498 7.5e-4 0.001449942 0.02699995 7.5e-4 7e-4 0.02774995 0.00149995 -0.002499997 0.02774995 0.00149995 -0.002499997 0.02774995 2e-4 7e-4 0.02625 0.00149995 0.001074969 0.02635043 0.00149995 0.001349508 0.02662497 0.00149995 0.001449942 0.02699995 0.00149995 0.001349508 0.02737498 0.00149995 0.001074969 0.02764952 0.00149995 -0.002499997 0.02625 2e-4 -0.002499997 0.02625 0.00149995 -0.002825379 0.02767568 2e-4 -0.002825379 0.02767568 0.00149995 -0.003086328 0.0274676 2e-4 -0.003086328 0.0274676 0.00149995 -0.003231167 0.02716684 2e-4 -0.003231167 0.02716684 0.00149995 -0.003231167 0.02683305 2e-4 -0.003231167 0.02683305 0.00149995 -0.003086328 0.02653235 2e-4 -0.003086328 0.02653235 0.00149995 -0.002825379 0.02632427 2e-4 -0.002825379 0.02632427 0.00149995 -0.002499997 0.02604997 0 -0.002912163 0.02614402 0 -0.003242731 0.02640765 0 -0.003426134 0.02678859 0 -0.003426134 0.02721136 0 -0.003242731 0.0275923 0 -0.002912163 0.02785587 0 -0.002499997 0.02794998 0 0.003899991 0.02604997 0 0.003899991 0.02794998 0 0.004312157 0.02785587 0 0.004642724 0.0275923 0 0.004826128 0.02721136 0 0.004826128 0.02678859 0 0.004642724 0.02640765 0 0.004312157 0.02614402 0 0.003899991 -0.02774995 2e-4 0.003899991 -0.02774995 7.5e-4 0.004225373 -0.02767568 2e-4 0.004225373 -0.02767568 7.5e-4 0.004486322 -0.0274676 2e-4 0.004486322 -0.0274676 7.5e-4 0.004631161 -0.02716684 2e-4 0.004631161 -0.02716684 7.5e-4 0.004631161 -0.02683305 2e-4 0.004631161 -0.02683305 7.5e-4 0.004486322 -0.02653235 2e-4 0.004486322 -0.02653235 7.5e-4 0.004225373 -0.02632427 2e-4 0.004225373 -0.02632427 7.5e-4 0.003899991 -0.02625 2e-4 0.003899991 -0.02625 7.5e-4 7e-4 -0.02774995 7.5e-4 0.001074969 -0.02764952 7.5e-4 0.001349508 -0.02737498 7.5e-4 7e-4 -0.02625 7.5e-4 0.001074969 -0.02635043 7.5e-4 0.001349508 -0.02662497 7.5e-4 0.001449942 -0.02699995 7.5e-4 7e-4 -0.02625 0.00149995 -0.002499997 -0.02625 0.00149995 -0.002499997 -0.02625 2e-4 7e-4 -0.02774995 0.00149995 0.001074969 -0.02764952 0.00149995 0.001349508 -0.02737498 0.00149995 0.001449942 -0.02699995 0.00149995 0.001349508 -0.02662497 0.00149995 0.001074969 -0.02635043 0.00149995 -0.002499997 -0.02774995 2e-4 -0.002499997 -0.02774995 0.00149995 -0.002825379 -0.02632427 2e-4 -0.002825379 -0.02632427 0.00149995 -0.003086328 -0.02653235 2e-4 -0.003086328 -0.02653235 0.00149995 -0.003231167 -0.02683305 2e-4 -0.003231167 -0.02683305 0.00149995 -0.003231167 -0.02716684 2e-4 -0.003231167 -0.02716684 0.00149995 -0.003086328 -0.0274676 2e-4 -0.003086328 -0.0274676 0.00149995 -0.002825379 -0.02767568 2e-4 -0.002825379 -0.02767568 0.00149995 -0.002499997 -0.02794998 0 -0.002912163 -0.02785587 0 -0.003242731 -0.0275923 0 -0.003426134 -0.02721136 0 -0.003426134 -0.02678859 0 -0.003242731 -0.02640765 0 -0.002912163 -0.02614402 0 -0.002499997 -0.02604997 0 0.003899991 -0.02794998 0 0.003899991 -0.02604997 0 0.004312157 -0.02614402 0 0.004642724 -0.02640765 0 0.004826128 -0.02678859 0 0.004826128 -0.02721136 0 0.004642724 -0.0275923 0 0.004312157 -0.02785587 0 -0.005645453 -0.004349172 0 -0.004547774 -0.004329979 0 -0.004547774 -0.01049995 0 -0.005645453 -0.01049995 0 -0.004547774 -0.01349997 0 -0.005645453 -0.01349997 0 -0.004547774 -0.01649999 0 -0.005645453 -0.01649999 0 -0.004547774 -0.01949995 0 -0.005645453 -0.01949995 0 -0.004547774 -0.02249997 0 -0.005645453 -0.02249997 0 -0.004547774 -0.02549999 0 -0.005645453 -0.02549999 0 -0.004547774 -0.02921962 0 -0.005645453 -0.02921962 0 -0.005014657 -0.03043919 0 -0.005645513 -0.03048932 0 -8.44792e-4 -0.02993488 0 -0.003088235 -0.03024077 0 -0.004050552 -0.03034812 0 0.005852341 -0.02764689 0 0.005466222 -0.02834624 0 0.003977715 -0.02911114 0 0.004228413 -0.02906644 0 0.004846811 -0.02885073 0 -0.004547774 0.02549999 0 -0.005645453 0.02549999 0 -0.004547774 0.02249997 0 -0.005645453 0.02249997 0 -0.004547774 0.01949995 0 -0.005645453 0.01949995 0 -0.004547774 0.01649999 0 -0.005645453 0.01649999 0 -0.004547774 0.01349997 0 -0.005645453 0.01349997 0 -0.004547774 0.01049995 0 -0.005645453 0.01049995 0 -0.004547774 0.007499992 0 -0.004547774 0.004329979 0 -0.005645453 0.007499992 0 -0.005645453 0.004349172 0 0.003342509 0.002624869 0 0.004145741 9.3538e-4 0 0.004249989 0 0 7.41726e-5 0.004249334 0 0.001891553 0.003805816 0 7.41726e-5 -0.004249334 0 0.001891553 -0.003805816 0 0.003342509 -0.002624869 0 0.004145741 -9.3538e-4 0 -8.37412e-4 -0.02998352 8.30255e-6 0.003987431 -0.02916651 1.0954e-5 0.003995954 -0.02921503 4.33585e-5 0.003364622 -0.02937102 1.31823e-4 0.004001677 -0.02924746 9.22212e-5 0.004003703 -0.02925884 1.5e-4 -0.005013227 -0.03045654 1.00937e-6 -0.00554949 -0.03048598 0 -0.003474414 -0.03033578 8.48602e-6 -0.004046797 -0.03038489 4.64153e-6 -0.003180146 -0.03030765 1.06588e-5 -0.00323069 -0.03031253 1.02639e-5 -0.003082394 -0.03028964 8.30255e-6 -0.003253102 -0.03031474 1.00916e-5 0.001827359 -0.02963322 9.08242e-5 0.001260757 -0.02972531 7.7863e-5 -3.57701e-4 -0.02996933 4.63489e-5 -5.08782e-4 -0.02999043 4.38213e-5 -6.70763e-4 -0.03001272 4.1182e-5 -8.29714e-4 -0.03003424 3.86646e-5 -8.90457e-4 -0.0300424 3.77212e-5 -0.00308144 -0.03029787 1.14588e-5 0.004238426 -0.02912175 1.0954e-5 0.004247188 -0.02917021 4.33585e-5 0.004253089 -0.02920264 9.22212e-5 0.004255115 -0.02921402 1.5e-4 0.005953252 -0.02767956 4.3934e-5 0.005986213 -0.02769023 9.8082e-5 0.00491333 -0.02897477 9.8082e-5 0.004917681 -0.02898293 1.5e-4 0.005161345 -0.02883154 1.5e-4 0.005574226 -0.02843642 9.8082e-5 0.005581319 -0.02844238 1.5e-4 0.005889475 -0.02795982 1.5e-4 0.005995035 -0.02769309 1.5e-4 0.005901753 -0.02766287 9.27113e-6 0.005506038 -0.02837949 9.27113e-6 0.004871368 -0.02889645 9.27113e-6 0.005547583 -0.02841418 4.3934e-5 0.004896938 -0.02894419 4.3934e-5 0.00596702 -0.02777439 4.9746e-4 0.005889296 -0.02796024 4.81923e-4 0.005572736 -0.02845257 4.19939e-4 0.005161046 -0.02883172 3.42408e-4 0.004971683 -0.02895301 3.07899e-4 0.004255115 -0.02921402 1.83982e-4 0.00605452 -0.02853953 9.42074e-4 0.005876719 -0.02877539 9.13846e-4 0.005779504 -0.02868872 8.80193e-4 0.004247426 -0.02921986 2.49383e-4 0.004237592 -0.0292533 3.67582e-4 0.004235744 -0.02936822 5.36296e-4 0.005074739 -0.02925157 7.66783e-4 0.004245281 -0.02948266 6.20259e-4 0.004986107 -0.02947294 7.79001e-4 0.004277944 -0.02970558 6.79579e-4 0.005553603 -0.02910101 8.63659e-4 0.005147039 -0.02938723 8.02561e-4 0.00636214 -0.02792716 9.9195e-4 0.006249427 -0.0279057 9.59352e-4 0.006514608 -0.02720832 0.001017153 0.005659639 -0.02857255 7.6906e-4 0.005004405 -0.0291 6.5598e-4 0.004234313 -0.02930307 4.58868e-4 0.00609523 -0.02784246 8.47824e-4 0.005995929 -0.02779591 6.79788e-4 0.00558716 -0.02848899 6.0162e-4 0.004968702 -0.0289945 4.89039e-4 0.001823842 -0.029742 2.47297e-4 -0.003180086 -0.0303111 1.20278e-5 -6.64824e-4 -0.03017461 1.42848e-4 -0.005645453 -0.03050345 1.49757e-7 -0.002720534 -0.03047561 6.30615e-5 1.93317e-4 -0.03027689 2.39488e-4 0.001834988 -0.02991312 3.57602e-4 0.001285016 -0.03015798 3.34974e-4 0.003093183 -0.02990698 5.28591e-4 0.008149981 0.03250008 0.001307904 0.006081819 0.03250008 9.46442e-4 0.002190887 0.03250002 4.2643e-4 -0.001721858 0.03250002 1.10711e-4 -0.005645453 0.03250002 1.49757e-7 0.008149981 0.04080826 0.01999896 0.008149981 0.04134094 0.01936292 0.00363636 0.04190373 0.01979982 0.008149981 0.03663641 0.002100348 0.008149981 0.03656613 0.002072632 0.00363636 0.036825 0.001408874 0.00363636 0.03470039 8.00565e-4 0.008149981 0.03401219 0.001410543 0.008149981 0.03549736 0.001716732 0.00363636 0.04055893 0.003738045 0.008149981 0.03951925 0.00378257 0.00363636 0.03880053 0.002399384 0.008149981 0.03827637 0.002913773 0.008149981 0.03692752 0.002220869 0.008149981 0.0415979 0.005981504 0.008149981 0.0406332 0.004811465 0.008149981 0.04033905 0.004511713 0.008149981 0.04281979 0.00816828 0.008149981 0.04239553 0.00727117 0.00363636 0.04319155 0.007264673 0.00363636 0.04203963 0.005378663 0.008149981 0.04301154 0.008656859 0.00363636 0.04397505 0.009331107 0.008149981 0.04328823 0.009520769 0.00363636 0.04436302 0.01150673 0.008149981 0.04365688 0.01161313 0.008149981 0.04343456 0.01011306 0.00363636 0.04434221 0.01371657 0.00363636 0.04391324 0.01588457 0.008149981 0.04323017 0.01568198 0.008149981 0.04348671 0.01463419 0.008149981 0.04367434 0.01312941 0.008149981 0.04369205 0.01249998 0.008149981 0.04174572 0.01880699 0.008149981 0.04176169 0.01878356 0.00363636 0.04309099 0.01793587 0.008149981 0.04251343 0.01749926 0.008149981 0.04309731 0.01609981 0.008149981 0.03971832 0.02105325 0.00363636 0.04039239 0.02141225 0.008149981 0.03860789 0.02187842 0.00363636 0.03860908 0.02271747 0.008149981 0.03849583 0.02195048 0.008149981 0.03716325 0.02267426 0.00363636 0.03661519 0.02367061 0.008149981 0.0363689 0.02300208 0.008149981 0.03283667 0.023687 0.008149981 0.03426736 0.02355164 0.00363636 0.03447955 0.02423882 0.008149981 0.03450214 0.02351152 0.008149981 0.03574514 0.02321124 -9.95309e-4 0.03455299 0.02467429 3.73079e-4 0.03250002 0.02474588 0.004275441 0.03250008 0.02432072 -0.005645453 0.0345785 0.02482581 -0.005645453 0.03250002 0.02499979 -0.003546178 0.03250002 0.02496623 0.008149981 0.03250008 0.02369207 -9.95309e-4 0.03676789 0.02408504 -9.95309e-4 0.0388357 0.02309656 -9.95309e-4 0.04068523 0.02174288 -9.95309e-4 0.04225265 0.02007067 -9.95309e-4 0.04348391 0.01813751 -9.95309e-4 0.04433673 0.0160101 -9.95309e-4 0.04478156 0.01376175 -9.95309e-4 0.04480314 0.0114699 -9.95309e-4 0.04440075 0.009213507 -9.95309e-4 0.04358822 0.007070422 -9.95309e-4 0.04239356 0.005114436 -9.95309e-4 0.04085797 0.003412961 -9.95309e-4 0.0390343 0.00202465 -9.95309e-4 0.03698545 9.974e-4 -9.95309e-4 0.03478205 3.6651e-4 -0.005645453 0.03481042 2.15538e-4 -0.005645453 0.03704124 8.54278e-4 -0.005645453 0.0391156 0.001894354 -0.005645453 0.04096192 0.003299891 -0.005645453 0.04251664 0.005022525 -0.005645453 0.0437262 0.00700283 -0.005645453 0.0445488 0.009172618 -0.005645453 0.04495626 0.01145708 -0.005645453 0.04493439 0.01377743 -0.005645453 0.04448401 0.01605379 -0.005645453 0.04362058 0.01820766 -0.005645453 0.04237395 0.02016484 -0.005645453 0.04078704 0.02185785 -0.005645453 0.03891456 0.0232284 -0.005645453 0.036821 0.02422922 -0.005645453 0.01096332 0.02499979 -0.005645453 0.03249996 0.02429997 -0.005645453 0.03555405 0.00110203 -0.005645453 0.03249996 7e-4 -0.005645453 0.04429996 0.01249998 -0.005645453 0.04389792 0.009445905 -0.005645453 0.04271906 0.006599962 -0.005645453 0.03555405 0.02389788 -0.005645453 0.04084384 0.004156112 -0.005645453 0.03839999 0.00228089 -0.005645453 0.03839999 0.02271908 -0.005645453 0.04084384 0.02084386 -0.005645453 0.04271906 0.01839995 -0.005645453 0.04389792 0.01555401 -0.005645453 0.004349172 7e-4 7.41726e-5 0.004249334 0.00149995 -0.004645466 0.004331707 0.00149995 -0.004645466 0.004331707 7e-4 7.41726e-5 -0.004249334 0.00149995 0.001891553 -0.003805816 0.00149995 0.003342509 -0.002624869 0.00149995 0.004145741 -9.3538e-4 0.00149995 0.004145741 9.3538e-4 0.00149995 0.001891553 0.003805816 0.00149995 0.003342509 0.002624869 0.00149995 -0.004645466 -0.004331707 7e-4 -0.004645466 -0.004331707 0.00149995 -0.005645453 -0.004349172 7e-4 -0.005645453 -0.03344994 7.38304e-4 -0.005645453 -0.03249996 7e-4 -0.005594074 -0.03371328 7.62543e-4 -0.005442738 -0.03394263 7.88518e-4 -0.005214869 -0.03409606 8.08443e-4 -0.004945456 -0.03415 8.1593e-4 -0.00296998 -0.03415 8.1593e-4 -0.002067208 -0.03432625 8.42178e-4 -0.001280903 -0.03484493 9.35349e-4 -7.5486e-4 -0.03562629 0.00112164 -5.7e-4 -0.03654998 0.001416742 -5.7e-4 -0.04421651 0.01349449 -5.7e-4 -0.04411238 0.0133149 -5.7e-4 -0.04428207 0.01314997 -5.7e-4 -0.04394435 0.01319307 -5.7e-4 -0.04374128 0.01314997 -5.7e-4 -0.04428207 0.01184999 -5.7e-4 -0.04374128 0.01184999 -5.7e-4 -0.04394435 0.0118069 -5.7e-4 -0.04411238 0.01168507 -5.7e-4 -0.04423868 0.01370084 -5.7e-4 -0.04421651 0.01150548 -5.7e-4 -0.04423868 0.01129907 -5.7e-4 -0.04367983 0.008724868 -5.7e-4 -0.04256379 0.006338834 -5.7e-4 -0.04256379 0.01866114 -5.7e-4 -0.04094624 0.02074015 -5.7e-4 -0.03890776 0.02240854 -5.7e-4 -0.03654998 0.02358317 -5.7e-4 -0.04367983 0.01627504 -5.7e-4 -0.03890776 0.002591371 -5.7e-4 -0.04094624 0.004259765 -0.00296998 -0.03415 0.02418404 -0.002067208 -0.03432625 0.02415782 -0.001280903 -0.03484493 0.0240646 -7.5486e-4 -0.03562629 0.02387827 -0.004945456 -0.03415 0.02418404 -0.005645453 -0.03344994 0.02426165 -0.005592167 -0.03371787 0.02423697 -0.005440413 -0.03394496 0.02421116 -0.00521332 -0.03409671 0.02419143 -0.005645453 -0.03249996 0.02429997 -0.005645453 -0.009028911 0.02429997 -0.005645453 -0.01096332 0.02499979 -0.005645453 -0.00913006 0.02499979 -0.005645453 -0.009106814 0.02499711 -0.005645453 -0.009095013 0.02499365 -0.005645453 -0.009075582 0.02498406 -0.005645453 -0.009059429 0.02497136 -0.005645453 -0.009028911 0.02489978 -0.005645453 -0.009050667 0.0249617 -0.005645453 -0.009034514 0.02493262 -0.00456357 -0.008433282 0.02488857 -0.004298329 -0.008031189 0.02488315 -0.004645466 -0.00852102 0.02429997 -0.004234552 -0.007881879 0.02488172 -0.004298329 -0.008031189 0.0234847 -0.004645466 -0.00852102 0.02349096 -0.004900574 -0.00873351 0.02489393 -0.004900574 -0.00873351 0.02429997 -0.005065083 -0.008834004 0.02489596 -0.004017591 -0.007249951 0.02497887 -0.004056572 -0.007249951 0.02497196 -0.00417304 -0.007904112 0.02497553 -0.004119575 -0.007863402 0.02498126 -0.004513621 -0.008475422 0.02498239 -0.004414796 -0.008411943 0.02498728 -0.004872322 -0.008835911 0.02499431 -0.005033314 -0.008891165 0.02498972 -0.005443751 -0.009089589 0.02499914 -0.005050241 -0.00886023 0.02496749 -0.005061447 -0.008840024 0.0249328 -0.004557967 -0.008437573 0.02492541 -0.004227817 -0.007884085 0.02491855 -0.004112124 -0.007249951 0.02491772 -0.004089832 -0.007249951 0.02495044 -0.00420612 -0.007891952 0.02495324 -0.004540324 -0.008452475 0.0249601 0.003899991 -0.02625 0.02416896 0.003899991 -0.02625 0.02379995 0.004204273 -0.02631449 0.02411752 0.004274964 -0.02635043 0.02379995 0.004274904 -0.02635037 0.02410531 0.004549503 -0.02662497 0.02379995 0.004549443 -0.02662491 0.02405679 0.004412531 -0.02645242 0.02408117 0.004638016 -0.0271334 0.02404075 0.004649996 -0.02700001 0.02403855 0.004649996 -0.02699995 0.02379995 0.004640936 -0.02688401 0.02404022 0.004562854 -0.02664917 0.02405434 0.004551887 -0.02737081 0.02405631 0.004549503 -0.02737498 0.02379995 0.004389882 -0.02756786 0.02408522 0.004274964 -0.02764952 0.02379995 0.004274845 -0.02764958 0.02410531 0.003899991 -0.02774995 0.02379995 0.003899991 -0.02774995 0.02416896 0.004170477 -0.02769947 0.02412337 0.001025378 -0.02767568 0.02379995 7e-4 -0.02774995 0.02379995 0.001286327 -0.02653235 0.02379995 0.001025378 -0.02632427 0.02379995 7e-4 -0.02625 0.02379995 0.001431167 -0.02683305 0.02379995 0.001431167 -0.02716684 0.02379995 0.001286327 -0.0274676 0.02379995 7e-4 -0.02774995 0.02321237 -0.002499997 -0.02774995 0.02342605 -0.002499997 -0.02774995 0.02472734 0.001431167 -0.02683305 0.02314382 0.001431167 -0.02716684 0.02314382 0.001286327 -0.0274676 0.02315801 0.001025378 -0.02767568 0.0231828 0.001286327 -0.02653235 0.02315801 0.001025378 -0.02632427 0.0231828 7e-4 -0.02625 0.02321237 -0.002499997 -0.02625 0.02472734 -0.002499997 -0.02625 0.02342605 -0.002756476 -0.02770471 0.02474099 -0.00287497 -0.02764952 0.02344191 -0.00287497 -0.02764952 0.02474677 -0.002975642 -0.02757984 0.02475148 -0.003030359 -0.02753025 0.02344793 -0.003140866 -0.02738952 0.02475875 -0.003149509 -0.02737498 0.02345234 -0.003233671 -0.02715545 0.02476257 -0.003224372 -0.02719432 0.02345496 -0.003249943 -0.02699995 0.02476316 -0.003249943 -0.02699995 0.02345585 -0.003243803 -0.02690398 0.02476292 -0.003224372 -0.02680581 0.02345502 -0.003170192 -0.02666336 0.02475994 -0.003149509 -0.02662497 0.02345234 -0.003149509 -0.02662497 0.02475911 -0.00302118 -0.0264607 0.02475351 -0.0030303 -0.02646964 0.02344793 -0.00287497 -0.02635043 0.02474677 -0.00287497 -0.02635043 0.02344191 -0.002813518 -0.02631866 0.02474379 -0.002491176 -0.02604997 0.02492713 -0.002900302 -0.02614206 0.02494406 -0.003437101 -0.02688825 0.0249629 -0.003347158 -0.02658325 0.02495998 -0.00316143 -0.02632498 0.02495372 -0.003420948 -0.0272063 0.02496236 -0.003300011 -0.02750176 0.02495843 -0.003087162 -0.02774101 0.02495104 -0.002806842 -0.02789628 0.02494043 -0.002491176 -0.02794998 0.02492713 0.001282513 -0.02604997 0.02466523 0.003925919 -0.02604997 0.02436727 0.004875719 -0.02707159 0.02423691 0.004846394 -0.02675569 0.02424114 0.004628658 -0.02764129 0.02427202 0.004800081 -0.0273773 0.02424776 0.004378676 -0.02783578 0.02430665 0.004075646 -0.02793818 0.02434754 0.003925919 -0.02794998 0.02436727 0.004487514 -0.02623265 0.02429169 0.004712641 -0.0264644 0.02426016 0.004197895 -0.02608954 0.02433121 0.001282513 -0.02794998 0.02466523 0.004274964 -0.02335047 0.02379995 0.004274904 -0.02335041 0.02410531 0.004204273 -0.02331447 0.02411752 0.003899991 -0.02324998 0.02379995 0.003959298 -0.0232523 0.02415907 0.003899991 -0.02324998 0.02416896 0.004549503 -0.02362495 0.02379995 0.004549443 -0.02362489 0.02405679 0.004412531 -0.02345246 0.02408117 0.004638016 -0.02413338 0.02404075 0.004649996 -0.02399998 0.02403855 0.004649996 -0.02399998 0.02379995 0.004640936 -0.02388399 0.02404022 0.004562854 -0.02364915 0.02405434 0.004551887 -0.02437084 0.02405631 0.004549503 -0.02437496 0.02379995 0.004389882 -0.02456784 0.02408522 0.004274964 -0.0246495 0.02379995 0.004274845 -0.02464956 0.02410531 0.003899991 -0.02474999 0.02379995 0.003899991 -0.02474999 0.02416896 0.004170477 -0.0246995 0.02412337 0.001025378 -0.02467572 0.02379995 7e-4 -0.02474999 0.02379995 0.001286327 -0.02353233 0.02379995 0.001025378 -0.02332425 0.02379995 7e-4 -0.02324998 0.02379995 0.001431167 -0.02383309 0.02379995 0.001431167 -0.02416688 0.02379995 0.001286327 -0.02446758 0.02379995 7e-4 -0.02474999 0.02321237 -0.002499997 -0.02474999 0.02342605 -0.002499997 -0.02474999 0.02472734 0.001431167 -0.02383309 0.02314382 0.001431167 -0.02416688 0.02314382 0.001286327 -0.02446758 0.02315801 0.001025378 -0.02467572 0.0231828 0.001286327 -0.02353233 0.02315801 0.001025378 -0.02332425 0.0231828 7e-4 -0.02324998 0.02321237 -0.002499997 -0.02324998 0.02472734 -0.002499997 -0.02324998 0.02342605 -0.002756476 -0.02470475 0.02474099 -0.00287497 -0.0246495 0.02344191 -0.00287497 -0.0246495 0.02474677 -0.002975642 -0.02457982 0.02475148 -0.003030359 -0.02453023 0.02344793 -0.003140866 -0.02438956 0.02475875 -0.003149509 -0.02437496 0.02345234 -0.003233671 -0.02415549 0.02476257 -0.003224372 -0.0241943 0.02345496 -0.003249943 -0.02399998 0.02476316 -0.003249943 -0.02399998 0.02345585 -0.003243803 -0.02390396 0.02476292 -0.003224372 -0.02380579 0.02345502 -0.003170192 -0.0236634 0.02475994 -0.003149509 -0.02362495 0.02345234 -0.003149509 -0.02362495 0.02475911 -0.00302118 -0.02346068 0.02475351 -0.0030303 -0.02346968 0.02344793 -0.00287497 -0.02335047 0.02474677 -0.00287497 -0.02335047 0.02344191 -0.002813518 -0.02331864 0.02474379 -0.002491176 -0.02304995 0.02492713 -0.002900302 -0.02314209 0.02494406 -0.003437101 -0.02388828 0.0249629 -0.003347158 -0.02358329 0.02495998 -0.00316143 -0.02332496 0.02495372 -0.003420948 -0.02420628 0.02496236 -0.003300011 -0.02450174 0.02495843 -0.003087162 -0.02474105 0.02495104 -0.002806842 -0.02489626 0.02494043 -0.002491176 -0.02494996 0.02492713 0.001282513 -0.02304995 0.02466523 0.003925919 -0.02304995 0.02436727 0.003925919 -0.02494996 0.02436727 0.004378676 -0.02483576 0.02430665 0.004628658 -0.02464127 0.02427202 0.004800081 -0.02437734 0.02424776 0.004875719 -0.02407163 0.02423691 0.004846394 -0.02375566 0.02424114 0.004712641 -0.02346438 0.02426016 0.004487514 -0.02323269 0.02429169 0.004197895 -0.02308952 0.02433121 0.001282513 -0.02494996 0.02466523 0.004274964 -0.02035045 0.02379995 0.004274904 -0.02035039 0.02410531 0.004204273 -0.02031451 0.02411752 0.003899991 -0.02024996 0.02379995 0.003959298 -0.02025234 0.02415907 0.003899991 -0.02024996 0.02416896 0.004549503 -0.02062499 0.02379995 0.004549443 -0.02062493 0.02405679 0.004412531 -0.02045243 0.02408117 0.004638016 -0.02113342 0.02404075 0.004649996 -0.02099996 0.02403855 0.004649996 -0.02099996 0.02379995 0.004640936 -0.02088397 0.02404022 0.004562854 -0.02064919 0.02405434 0.004551887 -0.02137082 0.02405631 0.004549503 -0.021375 0.02379995 0.004389882 -0.02156788 0.02408522 0.004274964 -0.02164947 0.02379995 0.004274845 -0.02164953 0.02410531 0.003899991 -0.02174997 0.02379995 0.003899991 -0.02174997 0.02416896 0.004170477 -0.02169948 0.02412337 0.001025378 -0.0216757 0.02379995 7e-4 -0.02174997 0.02379995 0.001286327 -0.02053236 0.02379995 0.001025378 -0.02032423 0.02379995 7e-4 -0.02024996 0.02379995 0.001431167 -0.02083307 0.02379995 0.001431167 -0.02116686 0.02379995 0.001286327 -0.02146756 0.02379995 7e-4 -0.02174997 0.02321237 -0.002499997 -0.02174997 0.02342605 -0.002499997 -0.02174997 0.02472734 0.001431167 -0.02083307 0.02314382 0.001431167 -0.02116686 0.02314382 0.001286327 -0.02146756 0.02315801 0.001025378 -0.0216757 0.0231828 0.001286327 -0.02053236 0.02315801 0.001025378 -0.02032423 0.0231828 7e-4 -0.02024996 0.02321237 -0.002499997 -0.02024996 0.02472734 -0.002499997 -0.02024996 0.02342605 -0.002756476 -0.02170473 0.02474099 -0.00287497 -0.02164947 0.02344191 -0.00287497 -0.02164947 0.02474677 -0.002975642 -0.02157986 0.02475148 -0.003030359 -0.02153021 0.02344793 -0.003140866 -0.02138954 0.02475875 -0.003149509 -0.021375 0.02345234 -0.003233671 -0.02115547 0.02476257 -0.003224372 -0.02119427 0.02345496 -0.003249943 -0.02099996 0.02476316 -0.003249943 -0.02099996 0.02345585 -0.003243803 -0.020904 0.02476292 -0.003224372 -0.02080583 0.02345502 -0.003170192 -0.02066338 0.02475994 -0.003149509 -0.02062499 0.02345234 -0.003149509 -0.02062499 0.02475911 -0.00302118 -0.02046066 0.02475351 -0.0030303 -0.02046966 0.02344793 -0.00287497 -0.02035045 0.02474677 -0.00287497 -0.02035045 0.02344191 -0.002813518 -0.02031862 0.02474379 -0.002491176 -0.02004998 0.02492713 -0.002900302 -0.02014207 0.02494406 -0.003437101 -0.02088826 0.0249629 -0.003347158 -0.02058327 0.02495998 -0.00316143 -0.02032494 0.02495372 -0.003420948 -0.02120625 0.02496236 -0.003300011 -0.02150177 0.02495843 -0.003087162 -0.02174103 0.02495104 -0.002806842 -0.0218963 0.02494043 -0.002491176 -0.02195 0.02492713 0.001282513 -0.02004998 0.02466523 0.003925919 -0.02004998 0.02436727 0.004378676 -0.0218358 0.02430665 0.004075646 -0.02193814 0.02434754 0.003925919 -0.02195 0.02436727 0.004628658 -0.02164131 0.02427202 0.004800081 -0.02137732 0.02424776 0.004875719 -0.02107161 0.02423691 0.004846394 -0.0207557 0.02424114 0.004712641 -0.02046442 0.02426016 0.004487514 -0.02023267 0.02429169 0.004197895 -0.0200895 0.02433121 0.001282513 -0.02195 0.02466523 0.004274964 -0.01735043 0.02379995 0.004274904 -0.01735037 0.02410531 0.004204273 -0.01731449 0.02411752 0.003899991 -0.01725 0.02379995 0.003959298 -0.01725232 0.02415907 0.003899991 -0.01725 0.02416896 0.004549503 -0.01762497 0.02379995 0.004549443 -0.01762491 0.02405679 0.004412531 -0.01745241 0.02408117 0.004638016 -0.0181334 0.02404075 0.004649996 -0.018 0.02403855 0.004649996 -0.01799994 0.02379995 0.004640936 -0.01788401 0.02404022 0.004562854 -0.01764917 0.02405434 0.004551887 -0.0183708 0.02405631 0.004549503 -0.01837497 0.02379995 0.004389882 -0.01856786 0.02408522 0.004274964 -0.01864951 0.02379995 0.004274845 -0.01864957 0.02410531 0.003899991 -0.01874995 0.02379995 0.003899991 -0.01874995 0.02416896 0.004170477 -0.01869946 0.02412337 7e-4 -0.01725 0.02379995 0.001025378 -0.01732426 0.02379995 7e-4 -0.01874995 0.02379995 0.001025378 -0.01867568 0.02379995 0.001286327 -0.0184676 0.02379995 0.001286327 -0.01753234 0.02379995 0.001431167 -0.01783311 0.02379995 0.001431167 -0.01816684 0.02379995 7e-4 -0.01874995 0.02321237 -0.002499997 -0.01874995 0.02342605 -0.002499997 -0.01874995 0.02472734 0.001431167 -0.01783311 0.02314382 0.001431167 -0.01816684 0.02314382 0.001286327 -0.0184676 0.02315801 0.001025378 -0.01867568 0.0231828 0.001286327 -0.01753234 0.02315801 0.001025378 -0.01732426 0.0231828 7e-4 -0.01725 0.02321237 -0.002499997 -0.01725 0.02472734 -0.002499997 -0.01725 0.02342605 -0.002756476 -0.01870477 0.02474099 -0.00287497 -0.01864951 0.02344191 -0.00287497 -0.01864951 0.02474677 -0.002975642 -0.01857984 0.02475148 -0.003030359 -0.01853024 0.02344793 -0.003140866 -0.01838958 0.02475875 -0.003149509 -0.01837497 0.02345234 -0.003233671 -0.01815545 0.02476257 -0.003224372 -0.01819431 0.02345496 -0.003249943 -0.018 0.02476316 -0.003249943 -0.01799994 0.02345585 -0.003243803 -0.01790398 0.02476292 -0.003224372 -0.01780581 0.02345502 -0.003170192 -0.01766335 0.02475994 -0.003149509 -0.01762497 0.02345234 -0.003149509 -0.01762497 0.02475911 -0.00302118 -0.0174607 0.02475351 -0.0030303 -0.01746964 0.02344793 -0.00287497 -0.01735043 0.02474677 -0.00287497 -0.01735043 0.02344191 -0.002813518 -0.01731866 0.02474379 -0.002491176 -0.01704996 0.02492713 -0.002900302 -0.01714205 0.02494406 -0.003437101 -0.01788824 0.0249629 -0.003347158 -0.01758325 0.02495998 -0.00316143 -0.01732498 0.02495372 -0.003420948 -0.01820629 0.02496236 -0.003300011 -0.01850175 0.02495843 -0.003087162 -0.01874101 0.02495104 -0.002806842 -0.01889628 0.02494043 -0.002491176 -0.01894998 0.02492713 0.001282513 -0.01704996 0.02466523 0.003925919 -0.01704996 0.02436727 0.003925919 -0.01894998 0.02436727 0.004378676 -0.01883578 0.02430665 0.004628658 -0.01864129 0.02427202 0.004800081 -0.01837736 0.02424776 0.004875719 -0.01807159 0.02423691 0.004846394 -0.01775568 0.02424114 0.004712641 -0.01746439 0.02426016 0.004487514 -0.01723265 0.02429169 0.004197895 -0.01708954 0.02433121 0.001282513 -0.01894998 0.02466523 0.003899991 -0.01424998 0.02416896 0.003899991 -0.01424998 0.02379995 0.004204273 -0.01431447 0.02411752 0.004274964 -0.01435047 0.02379995 0.004274904 -0.01435041 0.02410531 0.004549503 -0.01462495 0.02379995 0.004549443 -0.01462489 0.02405679 0.004412531 -0.01445245 0.02408117 0.004638016 -0.01513344 0.02404075 0.004649996 -0.01499998 0.02403855 0.004649996 -0.01499998 0.02379995 0.004640936 -0.01488399 0.02404022 0.004562854 -0.01464915 0.02405434 0.004551887 -0.01537084 0.02405631 0.004549503 -0.01537495 0.02379995 0.004389882 -0.01556789 0.02408522 0.004274964 -0.01564949 0.02379995 0.004274845 -0.01564955 0.02410531 0.003899991 -0.01574999 0.02379995 0.003899991 -0.01574999 0.02416896 0.004170477 -0.0156995 0.02412337 7e-4 -0.01424998 0.02379995 0.001025378 -0.01432424 0.02379995 7e-4 -0.01574999 0.02379995 0.001025378 -0.01567572 0.02379995 0.001286327 -0.01546758 0.02379995 0.001286327 -0.01453238 0.02379995 0.001431167 -0.01483309 0.02379995 0.001431167 -0.01516687 0.02379995 7e-4 -0.01574999 0.02321237 -0.002499997 -0.01574999 0.02342605 -0.002499997 -0.01574999 0.02472734 0.001431167 -0.01483309 0.02314382 0.001431167 -0.01516687 0.02314382 0.001286327 -0.01546758 0.02315801 0.001025378 -0.01567572 0.0231828 0.001286327 -0.01453238 0.02315801 0.001025378 -0.01432424 0.0231828 7e-4 -0.01424998 0.02321237 -0.002499997 -0.01424998 0.02472734 -0.002499997 -0.01424998 0.02342605 -0.002756476 -0.01570475 0.02474099 -0.00287497 -0.01564949 0.02344191 -0.00287497 -0.01564949 0.02474677 -0.002975642 -0.01557981 0.02475148 -0.003030359 -0.01553022 0.02344793 -0.003140866 -0.01538956 0.02475875 -0.003149509 -0.01537495 0.02345234 -0.003233671 -0.01515549 0.02476257 -0.003224372 -0.01519429 0.02345496 -0.003249943 -0.01499998 0.02476316 -0.003249943 -0.01499998 0.02345585 -0.003243803 -0.01490396 0.02476292 -0.003224372 -0.01480579 0.02345502 -0.003170192 -0.01466339 0.02475994 -0.003149509 -0.01462495 0.02345234 -0.003149509 -0.01462495 0.02475911 -0.00302118 -0.01446068 0.02475351 -0.0030303 -0.01446968 0.02344793 -0.00287497 -0.01435047 0.02474677 -0.00287497 -0.01435047 0.02344191 -0.002813518 -0.01431864 0.02474379 -0.002491176 -0.01404994 0.02492713 -0.002900302 -0.01414209 0.02494406 -0.003437101 -0.01488828 0.0249629 -0.003347158 -0.01458328 0.02495998 -0.00316143 -0.01432496 0.02495372 -0.003420948 -0.01520627 0.02496236 -0.003300011 -0.01550173 0.02495843 -0.003087162 -0.01574105 0.02495104 -0.002806842 -0.01589626 0.02494043 -0.002491176 -0.01594996 0.02492713 0.001282513 -0.01404994 0.02466523 0.003925919 -0.01404994 0.02436727 0.004875719 -0.01507163 0.02423691 0.004846394 -0.01475566 0.02424114 0.004628658 -0.01564127 0.02427202 0.004800081 -0.01537734 0.02424776 0.004378676 -0.01583576 0.02430665 0.004075646 -0.01593816 0.02434754 0.003925919 -0.01594996 0.02436727 0.004487514 -0.01423269 0.02429169 0.004712641 -0.01446437 0.02426016 0.004197895 -0.01408952 0.02433121 0.001282513 -0.01594996 0.02466523 0.003899991 -0.01124995 0.02416896 0.003899991 -0.01124995 0.02379995 0.004204273 -0.01131451 0.02411752 0.004274964 -0.01135045 0.02379995 0.004274904 -0.01135039 0.02410531 0.004549503 -0.01162499 0.02379995 0.004549443 -0.01162493 0.02405679 0.004412531 -0.01145243 0.02408117 0.004638016 -0.01213341 0.02404075 0.004649996 -0.01199996 0.02403855 0.004649996 -0.01199996 0.02379995 0.004640936 -0.01188397 0.02404022 0.004562854 -0.01164919 0.02405434 0.004551887 -0.01237082 0.02405631 0.004549503 -0.01237499 0.02379995 0.004389882 -0.01256787 0.02408522 0.004274964 -0.01264947 0.02379995 0.004274845 -0.01264953 0.02410531 0.003899991 -0.01274996 0.02379995 0.003899991 -0.01274996 0.02416896 0.004170477 -0.01269948 0.02412337 0.001025378 -0.0126757 0.02379995 7e-4 -0.01274996 0.02379995 0.001286327 -0.01153236 0.02379995 0.001025378 -0.01132422 0.02379995 7e-4 -0.01124995 0.02379995 0.001431167 -0.01183307 0.02379995 0.001431167 -0.01216685 0.02379995 0.001286327 -0.01246756 0.02379995 7e-4 -0.01274996 0.02321237 -0.002499997 -0.01274996 0.02342605 -0.002499997 -0.01274996 0.02472734 0.001431167 -0.01183307 0.02314382 0.001431167 -0.01216685 0.02314382 0.001286327 -0.01246756 0.02315801 0.001025378 -0.0126757 0.0231828 0.001286327 -0.01153236 0.02315801 0.001025378 -0.01132422 0.0231828 7e-4 -0.01124995 0.02321237 -0.002499997 -0.01124995 0.02472734 -0.002499997 -0.01124995 0.02342605 -0.002756476 -0.01270473 0.02474099 -0.00287497 -0.01264947 0.02344191 -0.00287497 -0.01264947 0.02474677 -0.002975642 -0.01257985 0.02475148 -0.003030359 -0.0125302 0.02344793 -0.003140866 -0.01238954 0.02475875 -0.003149509 -0.01237499 0.02345234 -0.003233671 -0.01215547 0.02476257 -0.003224372 -0.01219427 0.02345496 -0.003249943 -0.01199996 0.02476316 -0.003249943 -0.01199996 0.02345585 -0.003243803 -0.011904 0.02476292 -0.003224372 -0.01180583 0.02345502 -0.003170192 -0.01166337 0.02475994 -0.003149509 -0.01162499 0.02345234 -0.003149509 -0.01162499 0.02475911 -0.00302118 -0.01146066 0.02475351 -0.0030303 -0.01146966 0.02344793 -0.00287497 -0.01135045 0.02474677 -0.00287497 -0.01135045 0.02344191 -0.002813518 -0.01131862 0.02474379 -0.002491176 -0.01104998 0.02492713 -0.002900302 -0.01114207 0.02494406 -0.003437101 -0.01188826 0.0249629 -0.003347158 -0.01158326 0.02495998 -0.00316143 -0.011325 0.02495372 -0.003420948 -0.01220625 0.02496236 -0.003300011 -0.01250177 0.02495843 -0.003087162 -0.01274102 0.02495104 -0.002806842 -0.01289629 0.02494043 -0.002491176 -0.01295 0.02492713 0.001282513 -0.01104998 0.02466523 0.003925919 -0.01104998 0.02436727 0.004875719 -0.0120716 0.02423691 0.004846394 -0.0117557 0.02424114 0.004628658 -0.01264131 0.02427202 0.004800081 -0.01237732 0.02424776 0.004378676 -0.0128358 0.02430665 0.004075646 -0.01293814 0.02434754 0.003925919 -0.01295 0.02436727 0.004487514 -0.01123267 0.02429169 0.004712641 -0.01146441 0.02426016 0.004197895 -0.0110895 0.02433121 0.001282513 -0.01295 0.02466523 0.003899991 -0.008249998 0.02416896 0.003899991 -0.008249998 0.02379995 0.004204273 -0.00831449 0.02411752 0.004274964 -0.008350431 0.02379995 0.004274904 -0.008350372 0.02410531 0.004549503 -0.00862497 0.02379995 0.004549443 -0.008624911 0.02405679 0.004412531 -0.008452415 0.02408117 0.004638016 -0.009133398 0.02404075 0.004649996 -0.009000003 0.02403855 0.004649996 -0.008999943 0.02379995 0.004640936 -0.008884012 0.02404022 0.004562854 -0.00864917 0.02405434 0.004551887 -0.009370803 0.02405631 0.004549503 -0.009374976 0.02379995 0.004389882 -0.009567856 0.02408522 0.004274964 -0.009649515 0.02379995 0.004274845 -0.009649574 0.02410531 0.003899991 -0.009749948 0.02379995 0.003899991 -0.009749948 0.02416896 0.004170477 -0.009699463 0.02412337 0.001025378 -0.009675681 0.02379995 7e-4 -0.009749948 0.02379995 0.001286327 -0.008532345 0.02379995 0.001025378 -0.008324265 0.02379995 7e-4 -0.008249998 0.02379995 0.001431167 -0.00883311 0.02379995 0.001431167 -0.009166836 0.02379995 0.001286327 -0.009467601 0.02379995 7e-4 -0.009749948 0.02321237 -0.002499997 -0.009749948 0.02342605 -0.002499997 -0.009749948 0.02472734 0.001431167 -0.00883311 0.02314382 0.001431167 -0.009166836 0.02314382 0.001286327 -0.009467601 0.02315801 0.001025378 -0.009675681 0.0231828 0.001286327 -0.008532345 0.02315801 0.001025378 -0.008324265 0.0231828 7e-4 -0.008249998 0.02321237 -0.002499997 -0.008249998 0.02472734 -0.002499997 -0.008249998 0.02342605 -0.002756476 -0.009704709 0.02474099 -0.00287497 -0.009649515 0.02344191 -0.00287497 -0.009649515 0.02474677 -0.002975642 -0.009579837 0.02475148 -0.003030359 -0.009530246 0.02344793 -0.003140866 -0.009389519 0.02475875 -0.003149509 -0.009374976 0.02345234 -0.003233671 -0.009155452 0.02476257 -0.003224372 -0.009194314 0.02345496 -0.003249943 -0.008999943 0.02476316 -0.003249943 -0.008999943 0.02345585 -0.003243803 -0.00890398 0.02476292 -0.003224372 -0.008805811 0.02345502 -0.003170192 -0.008663356 0.02475994 -0.003149509 -0.00862497 0.02345234 -0.003149509 -0.00862497 0.02475911 -0.00302118 -0.0084607 0.02475351 -0.0030303 -0.008469641 0.02344793 -0.00287497 -0.008350431 0.02474677 -0.00287497 -0.008350431 0.02344191 -0.002813518 -0.008318662 0.02474379 -0.002491176 -0.008049964 0.02492713 -0.002900302 -0.008142054 0.02494406 -0.003437101 -0.008888244 0.0249629 -0.003347158 -0.008583247 0.02495998 -0.00316143 -0.00832498 0.02495372 -0.003420948 -0.009206295 0.02496236 -0.003300011 -0.009501755 0.02495843 -0.003087162 -0.009741008 0.02495104 -0.002806842 -0.009896278 0.02494043 -0.002491176 -0.009949982 0.02492713 0.001282513 -0.008049964 0.02466523 0.003925919 -0.008049964 0.02436727 0.004875719 -0.009071588 0.02423691 0.004846394 -0.008755683 0.02424114 0.004628658 -0.009641289 0.02427202 0.004800081 -0.0093773 0.02424776 0.004378676 -0.009835779 0.02430665 0.004075646 -0.00993818 0.02434754 0.003925919 -0.009949982 0.02436727 0.004487514 -0.008232653 0.02429169 0.004712641 -0.008464395 0.02426016 0.004197895 -0.008089542 0.02433121 0.001282513 -0.009949982 0.02466523 0.003899991 -0.005249977 0.02416896 0.003899991 -0.005249977 0.02379995 0.004204273 -0.005314469 0.02411752 0.004274964 -0.00535047 0.02379995 0.004274904 -0.00535041 0.02410531 0.004549503 -0.005624949 0.02379995 0.004549443 -0.00562489 0.02405679 0.004412531 -0.005452454 0.02408117 0.004638016 -0.006133437 0.02404075 0.004649996 -0.005999982 0.02403855 0.004649996 -0.005999982 0.02379995 0.004640936 -0.005883991 0.02404022 0.004562854 -0.005649149 0.02405434 0.004551887 -0.006370842 0.02405631 0.004549503 -0.006374955 0.02379995 0.004389882 -0.006567835 0.02408522 0.004274964 -0.006649494 0.02379995 0.004274845 -0.006649553 0.02410531 0.003899991 -0.006749987 0.02379995 0.003899991 -0.006749987 0.02416896 0.004170477 -0.006699502 0.02412337 0.001025378 -0.00667572 0.02379995 7e-4 -0.006749987 0.02379995 0.001286327 -0.005532324 0.02379995 0.001025378 -0.005324244 0.02379995 7e-4 -0.005249977 0.02379995 0.001431167 -0.005833089 0.02379995 0.001431167 -0.006166875 0.02379995 0.001286327 -0.00646758 0.02379995 7e-4 -0.006749987 0.02321237 -0.002499997 -0.006749987 0.02342605 -0.002499997 -0.006749987 0.02472734 0.001431167 -0.005833089 0.02314382 0.001431167 -0.006166875 0.02314382 0.001286327 -0.00646758 0.02315801 0.001025378 -0.00667572 0.0231828 0.001286327 -0.005532324 0.02315801 0.001025378 -0.005324244 0.0231828 7e-4 -0.005249977 0.02321237 -0.002499997 -0.005249977 0.02472734 -0.002499997 -0.005249977 0.02342605 -0.002813518 -0.005318641 0.02474379 -0.00287497 -0.00535047 0.02474677 -0.00287497 -0.00535047 0.02344191 -0.002756476 -0.006704747 0.02474099 -0.00287497 -0.006649494 0.02344191 -0.003149509 -0.005624949 0.02345234 -0.003170192 -0.005663394 0.02475994 -0.003224372 -0.00580579 0.02345502 -0.003243803 -0.005903959 0.02476292 -0.003249943 -0.005999982 0.02345585 -0.003249943 -0.005999982 0.02476316 -0.003224372 -0.006194293 0.02345496 -0.003233671 -0.00615549 0.02476257 -0.003149509 -0.006374955 0.02345234 -0.003140866 -0.006389558 0.02475875 -0.003030359 -0.006530225 0.02344793 -0.002975642 -0.006579816 0.02475148 -0.00287497 -0.006649494 0.02474677 -0.0030303 -0.005469679 0.02344793 -0.00302118 -0.005460679 0.02475351 -0.003149509 -0.005624949 0.02475911 -0.00257045 -0.005253314 0.02473121 -0.003437101 -0.005888283 0.0249629 -0.003347158 -0.005583286 0.02495998 -0.00316143 -0.005324959 0.02495372 -0.002900302 -0.005142092 0.02494406 -0.002856314 -0.005122542 0.02494233 -0.002491176 -0.005049943 0.02492713 -0.003420948 -0.006206274 0.02496236 -0.003300011 -0.006501734 0.02495843 -0.003087162 -0.006741046 0.02495104 -0.002806842 -0.006896257 0.02494043 -0.002491176 -0.006949961 0.02492713 0.001282513 -0.005049943 0.02466523 0.003925919 -0.005049943 0.02436727 0.004875719 -0.006071627 0.02423691 0.004846394 -0.005755662 0.02424114 0.004628658 -0.006641268 0.02427202 0.004800081 -0.006377339 0.02424776 0.003925919 -0.006949961 0.02436727 0.004378676 -0.006835758 0.02430665 0.004487514 -0.005232691 0.02429169 0.004712641 -0.005464375 0.02426016 0.004197895 -0.005089521 0.02433121 0.001282513 -0.006949961 0.02466523 0.004274964 -0.002350449 0.02379995 0.004274904 -0.002350389 0.02410531 0.004204273 -0.002314507 0.02411752 0.003899991 -0.002249956 0.02379995 0.003959298 -0.00225234 0.02415907 0.003899991 -0.002249956 0.02416896 0.004549503 -0.002624988 0.02379995 0.004549443 -0.002624928 0.02405679 0.004412531 -0.002452433 0.02408117 0.004638016 -0.003133416 0.02404075 0.004649996 -0.002999961 0.02403855 0.004649996 -0.002999961 0.02379995 0.004640936 -0.00288397 0.02404022 0.004562854 -0.002649188 0.02405434 0.004551887 -0.003370821 0.02405631 0.004549503 -0.003374993 0.02379995 0.004389882 -0.003567874 0.02408522 0.004274964 -0.003649473 0.02379995 0.004274845 -0.003649532 0.02410531 0.003899991 -0.003749966 0.02379995 0.003899991 -0.003749966 0.02416896 0.004170477 -0.003699481 0.02412337 7e-4 -0.002249956 0.02379995 0.001025378 -0.002324223 0.02379995 7e-4 -0.003749966 0.02379995 0.001025378 -0.003675699 0.02379995 0.001286327 -0.003467559 0.02379995 0.001286327 -0.002532362 0.02379995 0.001431167 -0.002833068 0.02379995 0.001431167 -0.003166854 0.02379995 7e-4 -0.003749966 0.02321237 -0.002499997 -0.003749966 0.02342605 -0.002499997 -0.003749966 0.02472734 0.001431167 -0.002833068 0.02314382 0.001431167 -0.003166854 0.02314382 0.001286327 -0.003467559 0.02315801 0.001025378 -0.003675699 0.0231828 0.001286327 -0.002532362 0.02315801 0.001025378 -0.002324223 0.0231828 7e-4 -0.002249956 0.02321237 -0.002499997 -0.002249956 0.02472734 -0.002499997 -0.002249956 0.02342605 -0.002756476 -0.003704726 0.02474099 -0.00287497 -0.003649473 0.02344191 -0.00287497 -0.003649473 0.02474677 -0.002975642 -0.003579854 0.02475148 -0.003030359 -0.003530204 0.02344793 -0.003140866 -0.003389537 0.02475875 -0.003149509 -0.003374993 0.02345234 -0.003233671 -0.003155469 0.02476257 -0.003224372 -0.003194272 0.02345496 -0.003249943 -0.002999961 0.02476316 -0.003249943 -0.002999961 0.02345585 -0.003243803 -0.002903997 0.02476292 -0.003224372 -0.002805829 0.02345502 -0.003170192 -0.002663373 0.02475994 -0.003149509 -0.002624988 0.02345234 -0.003149509 -0.002624988 0.02475911 -0.00302118 -0.002460658 0.02475351 -0.0030303 -0.002469658 0.02344793 -0.00287497 -0.002350449 0.02474677 -0.00287497 -0.002350449 0.02344191 -0.002813518 -0.00231862 0.02474379 -0.002491176 -0.002049982 0.02492713 -0.002900302 -0.002142071 0.02494406 -0.003437101 -0.002888262 0.0249629 -0.003347158 -0.002583265 0.02495998 -0.00316143 -0.002324938 0.02495372 -0.003420948 -0.003206253 0.02496236 -0.003300011 -0.003501772 0.02495843 -0.003087162 -0.003741025 0.02495104 -0.002806842 -0.003896296 0.02494043 -0.002491176 -0.003949999 0.02492713 0.001282513 -0.002049982 0.02466523 0.003925919 -0.002049982 0.02436727 0.003925919 -0.003949999 0.02436727 0.004378676 -0.003835797 0.02430665 0.004628658 -0.003641307 0.02427202 0.004800081 -0.003377318 0.02424776 0.004875719 -0.003071606 0.02423691 0.004846394 -0.002755701 0.02424114 0.004712641 -0.002464413 0.02426016 0.004487514 -0.00223267 0.02429169 0.004197895 -0.0020895 0.02433121 0.001282513 -0.003949999 0.02466523 0.003899991 7.5e-4 0.02416896 0.003899991 7.5e-4 0.02379995 0.004204273 6.85485e-4 0.02411752 0.004274964 6.49519e-4 0.02379995 0.004274904 6.49572e-4 0.02410531 0.004549503 3.75e-4 0.02379995 0.004549443 3.75054e-4 0.02405679 0.004412531 5.47541e-4 0.02408117 0.004638016 -1.33437e-4 0.02404075 0.004649996 0 0.02403855 0.004649996 0 0.02379995 0.004640936 1.15986e-4 0.02404022 0.004562854 3.50798e-4 0.02405434 0.004551887 -3.70851e-4 0.02405631 0.004549503 -3.75e-4 0.02379995 0.004389882 -5.67894e-4 0.02408522 0.004274964 -6.49519e-4 0.02379995 0.004274845 -6.4958e-4 0.02410531 0.003899991 -7.5e-4 0.02379995 0.003899991 -7.5e-4 0.02416896 0.004170477 -6.99509e-4 0.02412337 7e-4 7.5e-4 0.02379995 0.001025378 6.75727e-4 0.02379995 0.001431167 -1.66891e-4 0.02379995 0.001286327 -4.67617e-4 0.02379995 0.001025378 -6.75727e-4 0.02379995 7e-4 -7.5e-4 0.02379995 0.001286327 4.67617e-4 0.02379995 0.001431167 1.66891e-4 0.02379995 0.004649996 0 0.02379995 7e-4 -7.5e-4 0.02321237 -0.002499997 -7.5e-4 0.02342605 -0.002499997 -7.5e-4 0.02472734 0.001431167 1.66891e-4 0.02314382 0.001431167 -1.66891e-4 0.02314382 0.001286327 -4.67617e-4 0.02315801 0.001025378 -6.75727e-4 0.0231828 0.001286327 4.67617e-4 0.02315801 0.001025378 6.75727e-4 0.0231828 7e-4 7.5e-4 0.02321237 -0.002499997 7.5e-4 0.02472734 -0.002499997 7.5e-4 0.02342605 -0.002756476 -7.04766e-4 0.02474099 -0.00287497 -6.49519e-4 0.02344191 -0.00287497 -6.49527e-4 0.02474677 -0.002975642 -5.79869e-4 0.02475148 -0.003030359 -5.30256e-4 0.02344793 -0.003140866 -3.89577e-4 0.02475875 -0.003149509 -3.75e-4 0.02345234 -0.003233671 -1.55493e-4 0.02476257 -0.003224372 -1.94315e-4 0.02345496 -0.003249943 0 0.02476316 -0.003249943 0 0.02345585 -0.003243803 9.5992e-5 0.02476292 -0.003224372 1.9417e-4 0.02345502 -0.003170192 3.366e-4 0.02475994 -0.003149509 3.75e-4 0.02345234 -0.003149509 3.75005e-4 0.02475911 -0.00302118 5.39299e-4 0.02475351 -0.0030303 5.30318e-4 0.02344793 -0.00287497 6.49525e-4 0.02474677 -0.00287497 6.49519e-4 0.02344191 -0.002813518 6.81323e-4 0.02474379 -0.002491176 9.5e-4 0.02492713 -0.002900302 8.57901e-4 0.02494406 -0.003437101 1.11708e-4 0.0249629 -0.003347158 4.16708e-4 0.02495998 -0.00316143 6.75003e-4 0.02495372 -0.003420948 -2.06303e-4 0.02496236 -0.003300011 -5.01783e-4 0.02495843 -0.003087162 -7.41064e-4 0.02495104 -0.002806842 -8.96304e-4 0.02494043 -0.002491176 -9.5e-4 0.02492713 0.001282513 9.5e-4 0.02466523 0.003925919 9.5e-4 0.02436727 0.004875719 -7.16386e-5 0.02423691 0.004846394 2.44284e-4 0.02424114 0.004628658 -6.41313e-4 0.02427202 0.004800081 -3.77358e-4 0.02424776 0.003925919 -9.5e-4 0.02436727 0.004378676 -8.35811e-4 0.02430665 0.004487514 7.67294e-4 0.02429169 0.004712641 5.35577e-4 0.02426016 0.004197895 9.10448e-4 0.02433121 0.001282513 -9.5e-4 0.02466523 0.003899991 0.003749966 0.02416896 0.003899991 0.003749966 0.02379995 0.004204273 0.003685474 0.02411752 0.004274964 0.003649473 0.02379995 0.004274904 0.003649532 0.02410531 0.004549503 0.003374993 0.02379995 0.004549443 0.003375053 0.02405679 0.004412531 0.003547489 0.02408117 0.004638016 0.002866506 0.02404075 0.004649996 0.002999961 0.02403855 0.004649996 0.002999961 0.02379995 0.004640936 0.003115952 0.02404022 0.004562854 0.003350794 0.02405434 0.004551887 0.002629101 0.02405631 0.004549503 0.002624988 0.02379995 0.004389882 0.002432048 0.02408522 0.004274964 0.002350449 0.02379995 0.004274845 0.002350389 0.02410531 0.003899991 0.002249956 0.02379995 0.003899991 0.002249956 0.02416896 0.004170477 0.002300441 0.02412337 0.001025378 0.002324223 0.02379995 7e-4 0.002249956 0.02379995 0.001286327 0.003467559 0.02379995 0.001025378 0.003675699 0.02379995 7e-4 0.003749966 0.02379995 0.001431167 0.003166854 0.02379995 0.001431167 0.002833068 0.02379995 0.001286327 0.002532362 0.02379995 7e-4 0.002249956 0.02321237 -0.002499997 0.002249956 0.02342605 -0.002499997 0.002249956 0.02472734 0.001431167 0.003166854 0.02314382 0.001431167 0.002833068 0.02314382 0.001286327 0.002532362 0.02315801 0.001025378 0.002324223 0.0231828 0.001286327 0.003467559 0.02315801 0.001025378 0.003675699 0.0231828 7e-4 0.003749966 0.02321237 -0.002499997 0.003749966 0.02472734 -0.002499997 0.003749966 0.02342605 -0.002756476 0.002295196 0.02474099 -0.00287497 0.002350449 0.02344191 -0.00287497 0.002350449 0.02474677 -0.002975642 0.002420127 0.02475148 -0.003030359 0.002469718 0.02344793 -0.003140866 0.002610385 0.02475875 -0.003149509 0.002624988 0.02345234 -0.003233671 0.002844452 0.02476257 -0.003224372 0.00280565 0.02345496 -0.003249943 0.002999961 0.02476316 -0.003249943 0.002999961 0.02345585 -0.003243803 0.003095984 0.02476292 -0.003224372 0.003194153 0.02345502 -0.003170192 0.003336548 0.02475994 -0.003149509 0.003374993 0.02345234 -0.003149509 0.003374993 0.02475911 -0.00302118 0.003539264 0.02475351 -0.0030303 0.003530263 0.02344793 -0.00287497 0.003649473 0.02474677 -0.00287497 0.003649473 0.02344191 -0.002813518 0.003681302 0.02474379 -0.002491176 0.003949999 0.02492713 -0.002900302 0.003857851 0.02494406 -0.003437101 0.00311166 0.0249629 -0.003347158 0.003416657 0.02495998 -0.00316143 0.003674983 0.02495372 -0.003420948 0.002793669 0.02496236 -0.003300011 0.002498209 0.02495843 -0.003087162 0.002258896 0.02495104 -0.002806842 0.002103686 0.02494043 -0.002491176 0.002049982 0.02492713 0.001282513 0.003949999 0.02466523 0.003925919 0.003949999 0.02436727 0.004875719 0.002928316 0.02423691 0.004846394 0.00324428 0.02424114 0.004628658 0.002358675 0.02427202 0.004800081 0.002622604 0.02424776 0.003925919 0.002049982 0.02436727 0.004378676 0.002164185 0.02430665 0.004487514 0.003767251 0.02429169 0.004712641 0.003535568 0.02426016 0.004197895 0.003910422 0.02433121 0.001282513 0.002049982 0.02466523 0.003899991 0.006749987 0.02416896 0.003899991 0.006749987 0.02379995 0.004204273 0.006685435 0.02411752 0.004274964 0.006649494 0.02379995 0.004274904 0.006649553 0.02410531 0.004549503 0.006374955 0.02379995 0.004549443 0.006375014 0.02405679 0.004412531 0.00654751 0.02408117 0.004638016 0.005866527 0.02404075 0.004649996 0.005999982 0.02403855 0.004649996 0.005999982 0.02379995 0.004640936 0.006115972 0.02404022 0.004562854 0.006350755 0.02405434 0.004551887 0.005629122 0.02405631 0.004549503 0.005624949 0.02379995 0.004389882 0.005432069 0.02408522 0.004274964 0.00535047 0.02379995 0.004274845 0.00535041 0.02410531 0.003899991 0.005249977 0.02379995 0.003899991 0.005249977 0.02416896 0.004170477 0.005300462 0.02412337 7e-4 0.006749987 0.02379995 0.001025378 0.00667572 0.02379995 0.001431167 0.005833089 0.02379995 0.001286327 0.005532324 0.02379995 0.001025378 0.005324244 0.02379995 7e-4 0.005249977 0.02379995 0.001286327 0.00646758 0.02379995 0.001431167 0.006166875 0.02379995 7e-4 0.005249977 0.02321237 -0.002499997 0.005249977 0.02342605 -0.002499997 0.005249977 0.02472734 0.001431167 0.006166875 0.02314382 0.001431167 0.005833089 0.02314382 0.001286327 0.005532324 0.02315801 0.001025378 0.005324244 0.0231828 0.001286327 0.00646758 0.02315801 0.001025378 0.00667572 0.0231828 7e-4 0.006749987 0.02321237 -0.002499997 0.006749987 0.02472734 -0.002499997 0.006749987 0.02342605 -0.002756476 0.005295217 0.02474099 -0.00287497 0.00535047 0.02344191 -0.00287497 0.00535047 0.02474677 -0.002975642 0.005420088 0.02475148 -0.003030359 0.005469739 0.02344793 -0.003140866 0.005610406 0.02475875 -0.003149509 0.005624949 0.02345234 -0.003233671 0.005844473 0.02476257 -0.003224372 0.005805671 0.02345496 -0.003249943 0.005999982 0.02476316 -0.003249943 0.005999982 0.02345585 -0.003243803 0.006095945 0.02476292 -0.003224372 0.006194114 0.02345502 -0.003170192 0.006336569 0.02475994 -0.003149509 0.006374955 0.02345234 -0.003149509 0.006374955 0.02475911 -0.00302118 0.006539285 0.02475351 -0.0030303 0.006530284 0.02344793 -0.00287497 0.006649494 0.02474677 -0.00287497 0.006649494 0.02344191 -0.002813518 0.006681323 0.02474379 -0.002491176 0.006949961 0.02492713 -0.002900302 0.006857872 0.02494406 -0.003437101 0.006111681 0.0249629 -0.003347158 0.006416678 0.02495998 -0.00316143 0.006674945 0.02495372 -0.003420948 0.00579369 0.02496236 -0.003300011 0.00549817 0.02495843 -0.003087162 0.005258917 0.02495104 -0.002806842 0.005103647 0.02494043 -0.002491176 0.005049943 0.02492713 0.001282513 0.006949961 0.02466523 0.003925919 0.006949961 0.02436727 0.004875719 0.005928337 0.02423691 0.004846394 0.006244242 0.02424114 0.004628658 0.005358636 0.02427202 0.004800081 0.005622625 0.02424776 0.003925919 0.005049943 0.02436727 0.004378676 0.005164146 0.02430665 0.004487514 0.006767272 0.02429169 0.004712641 0.00653553 0.02426016 0.004197895 0.006910443 0.02433121 0.001282513 0.005049943 0.02466523 0.003899991 0.009749948 0.02416896 0.003899991 0.009749948 0.02379995 0.004204273 0.009685456 0.02411752 0.004274964 0.009649515 0.02379995 0.004274904 0.009649515 0.02410531 0.004549503 0.009374976 0.02379995 0.004549443 0.009375035 0.02405679 0.004412531 0.009547531 0.02408117 0.004638016 0.008866548 0.02404075 0.004649996 0.008999943 0.02403855 0.004649996 0.008999943 0.02379995 0.004640936 0.009115934 0.02404022 0.004562854 0.009350776 0.02405434 0.004551887 0.008629143 0.02405631 0.004549503 0.00862497 0.02379995 0.004389882 0.00843209 0.02408522 0.004274964 0.008350431 0.02379995 0.004274845 0.008350372 0.02410531 0.003899991 0.008249998 0.02379995 0.003899991 0.008249998 0.02416896 0.004170477 0.008300483 0.02412337 7e-4 0.009749948 0.02379995 0.001025378 0.009675681 0.02379995 0.001286327 0.009467601 0.02379995 0.001431167 0.009166836 0.02379995 0.001431167 0.00883311 0.02379995 0.001286327 0.008532345 0.02379995 0.001025378 0.008324265 0.02379995 7e-4 0.008249998 0.02379995 7e-4 0.008249998 0.02321237 -0.002499997 0.008249998 0.02342605 -0.002499997 0.008249998 0.02472734 0.001431167 0.009166836 0.02314382 0.001431167 0.00883311 0.02314382 0.001286327 0.008532345 0.02315801 0.001025378 0.008324265 0.0231828 0.001286327 0.009467601 0.02315801 0.001025378 0.009675681 0.0231828 7e-4 0.009749948 0.02321237 -0.002499997 0.009749948 0.02472734 -0.002499997 0.009749948 0.02342605 -0.002756476 0.008295178 0.02474099 -0.00287497 0.008350431 0.02344191 -0.00287497 0.008350431 0.02474677 -0.002975642 0.008420109 0.02475148 -0.003030359 0.0084697 0.02344793 -0.003140866 0.008610367 0.02475875 -0.003149509 0.00862497 0.02345234 -0.003233671 0.008844494 0.02476257 -0.003224372 0.008805632 0.02345496 -0.003249943 0.008999943 0.02476316 -0.003249943 0.008999943 0.02345585 -0.003243803 0.009095966 0.02476292 -0.003224372 0.009194135 0.02345502 -0.003170192 0.00933659 0.02475994 -0.003149509 0.009374976 0.02345234 -0.003149509 0.009374976 0.02475911 -0.00302118 0.009539246 0.02475351 -0.0030303 0.009530305 0.02344793 -0.00287497 0.009649515 0.02474677 -0.00287497 0.009649515 0.02344191 -0.002813518 0.009681284 0.02474379 -0.002491176 0.009949982 0.02492713 -0.002900302 0.009857892 0.02494406 -0.003437101 0.009111702 0.0249629 -0.003347158 0.009416699 0.02495998 -0.00316143 0.009674966 0.02495372 -0.003420948 0.008793652 0.02496236 -0.003300011 0.008498191 0.02495843 -0.003087162 0.008258879 0.02495104 -0.002806842 0.008103668 0.02494043 -0.002491176 0.008049964 0.02492713 0.001282513 0.009949982 0.02466523 0.003925919 0.009949982 0.02436727 0.004875719 0.008928358 0.02423691 0.004846394 0.009244263 0.02424114 0.004628658 0.008358657 0.02427202 0.004800081 0.008622586 0.02424776 0.003925919 0.008049964 0.02436727 0.004378676 0.008164167 0.02430665 0.004487514 0.009767293 0.02429169 0.004712641 0.009535551 0.02426016 0.004197895 0.009910404 0.02433121 0.001282513 0.008049964 0.02466523 0.003899991 0.01274996 0.02416896 0.003899991 0.01274996 0.02379995 0.004204273 0.01268547 0.02411752 0.004274964 0.01264947 0.02379995 0.004274904 0.01264953 0.02410531 0.004549503 0.01237499 0.02379995 0.004549443 0.01237505 0.02405679 0.004412531 0.01254749 0.02408117 0.004638016 0.0118665 0.02404075 0.004649996 0.01199996 0.02403855 0.004649996 0.01199996 0.02379995 0.004640936 0.01211595 0.02404022 0.004562854 0.01235079 0.02405434 0.004551887 0.0116291 0.02405631 0.004549503 0.01162499 0.02379995 0.004389882 0.01143205 0.02408522 0.004274964 0.01135045 0.02379995 0.004274845 0.01135039 0.02410531 0.003899991 0.01124995 0.02379995 0.003899991 0.01124995 0.02416896 0.004170477 0.01130044 0.02412337 7e-4 0.01274996 0.02379995 0.001025378 0.0126757 0.02379995 0.001431167 0.01183307 0.02379995 0.001286327 0.01153236 0.02379995 0.001025378 0.01132422 0.02379995 7e-4 0.01124995 0.02379995 0.001286327 0.01246756 0.02379995 0.001431167 0.01216685 0.02379995 7e-4 0.01124995 0.02321237 -0.002499997 0.01124995 0.02342605 -0.002499997 0.01124995 0.02472734 0.001431167 0.01216685 0.02314382 0.001431167 0.01183307 0.02314382 0.001286327 0.01153236 0.02315801 0.001025378 0.01132422 0.0231828 0.001286327 0.01246756 0.02315801 0.001025378 0.0126757 0.0231828 7e-4 0.01274996 0.02321237 -0.002499997 0.01274996 0.02472734 -0.002499997 0.01274996 0.02342605 -0.002756476 0.01129519 0.02474099 -0.00287497 0.01135045 0.02344191 -0.00287497 0.01135045 0.02474677 -0.002975642 0.01142013 0.02475148 -0.003030359 0.01146972 0.02344793 -0.003140866 0.01161038 0.02475875 -0.003149509 0.01162499 0.02345234 -0.003233671 0.01184445 0.02476257 -0.003224372 0.01180565 0.02345496 -0.003249943 0.01199996 0.02476316 -0.003249943 0.01199996 0.02345585 -0.003243803 0.01209598 0.02476292 -0.003224372 0.01219415 0.02345502 -0.003170192 0.01233655 0.02475994 -0.003149509 0.01237499 0.02345234 -0.003149509 0.01237499 0.02475911 -0.00302118 0.01253926 0.02475351 -0.0030303 0.01253026 0.02344793 -0.00287497 0.01264947 0.02474677 -0.00287497 0.01264947 0.02344191 -0.002813518 0.0126813 0.02474379 -0.002491176 0.01295 0.02492713 -0.002900302 0.01285785 0.02494406 -0.003437101 0.01211166 0.0249629 -0.003347158 0.01241666 0.02495998 -0.00316143 0.01267498 0.02495372 -0.003420948 0.01179367 0.02496236 -0.003300011 0.01149821 0.02495843 -0.003087162 0.0112589 0.02495104 -0.002806842 0.01110368 0.02494043 -0.002491176 0.01104998 0.02492713 0.001282513 0.01295 0.02466523 0.003925919 0.01295 0.02436727 0.004875719 0.01192831 0.02423691 0.004846394 0.01224428 0.02424114 0.004628658 0.01135867 0.02427202 0.004800081 0.0116226 0.02424776 0.004378676 0.01116418 0.02430665 0.004075646 0.01106178 0.02434754 0.003925919 0.01104998 0.02436727 0.004487514 0.01276725 0.02429169 0.004712641 0.01253557 0.02426016 0.004197895 0.01291042 0.02433121 0.001282513 0.01104998 0.02466523 0.003899991 0.01574999 0.02416896 0.003899991 0.01574999 0.02379995 0.004204273 0.01568543 0.02411752 0.004274964 0.01564949 0.02379995 0.004274904 0.01564955 0.02410531 0.004549503 0.01537495 0.02379995 0.004549443 0.01537501 0.02405679 0.004412531 0.01554751 0.02408117 0.004638016 0.01486653 0.02404075 0.004649996 0.01499998 0.02403855 0.004649996 0.01499998 0.02379995 0.004640936 0.01511597 0.02404022 0.004562854 0.01535075 0.02405434 0.004551887 0.01462912 0.02405631 0.004549503 0.01462495 0.02379995 0.004389882 0.01443207 0.02408522 0.004274964 0.01435047 0.02379995 0.004274845 0.01435041 0.02410531 0.003899991 0.01424998 0.02379995 0.003899991 0.01424998 0.02416896 0.004170477 0.01430046 0.02412337 7e-4 0.01574999 0.02379995 0.001025378 0.01567572 0.02379995 7e-4 0.01424998 0.02379995 0.001025378 0.01432424 0.02379995 0.001286327 0.01453238 0.02379995 0.001286327 0.01546758 0.02379995 0.001431167 0.01516687 0.02379995 0.001431167 0.01483309 0.02379995 7e-4 0.01424998 0.02321237 -0.002499997 0.01424998 0.02342605 -0.002499997 0.01424998 0.02472734 0.001431167 0.01516687 0.02314382 0.001431167 0.01483309 0.02314382 0.001286327 0.01453238 0.02315801 0.001025378 0.01432424 0.0231828 0.001286327 0.01546758 0.02315801 0.001025378 0.01567572 0.0231828 7e-4 0.01574999 0.02321237 -0.002499997 0.01574999 0.02472734 -0.002499997 0.01574999 0.02342605 -0.002756476 0.01429522 0.02474099 -0.00287497 0.01435047 0.02344191 -0.00287497 0.01435047 0.02474677 -0.002975642 0.01442009 0.02475148 -0.003030359 0.01446974 0.02344793 -0.003140866 0.0146104 0.02475875 -0.003149509 0.01462495 0.02345234 -0.003233671 0.01484447 0.02476257 -0.003224372 0.01480567 0.02345496 -0.003249943 0.01499998 0.02476316 -0.003249943 0.01499998 0.02345585 -0.003243803 0.01509594 0.02476292 -0.003224372 0.01519411 0.02345502 -0.003170192 0.01533657 0.02475994 -0.003149509 0.01537495 0.02345234 -0.003149509 0.01537495 0.02475911 -0.00302118 0.01553928 0.02475351 -0.0030303 0.01553028 0.02344793 -0.00287497 0.01564949 0.02474677 -0.00287497 0.01564949 0.02344191 -0.002813518 0.01568132 0.02474379 -0.002491176 0.01594996 0.02492713 -0.002900302 0.01585787 0.02494406 -0.003437101 0.01511168 0.0249629 -0.003347158 0.01541668 0.02495998 -0.00316143 0.015675 0.02495372 -0.003420948 0.01479369 0.02496236 -0.003300011 0.01449817 0.02495843 -0.003087162 0.01425892 0.02495104 -0.002806842 0.01410365 0.02494043 -0.002491176 0.01404994 0.02492713 0.001282513 0.01594996 0.02466523 0.003925919 0.01594996 0.02436727 0.004875719 0.01492834 0.02423691 0.004846394 0.01524424 0.02424114 0.004628658 0.01435863 0.02427202 0.004800081 0.01462262 0.02424776 0.004378676 0.01416414 0.02430665 0.004075646 0.0140618 0.02434754 0.003925919 0.01404994 0.02436727 0.004487514 0.01576727 0.02429169 0.004712641 0.01553553 0.02426016 0.004197895 0.01591044 0.02433121 0.001282513 0.01404994 0.02466523 0.004274964 0.01864951 0.02379995 0.004274904 0.01864957 0.02410531 0.004204273 0.01868546 0.02411752 0.003899991 0.01874995 0.02379995 0.003959298 0.01874762 0.02415907 0.003899991 0.01874995 0.02416896 0.004549503 0.01837497 0.02379995 0.004549443 0.01837503 0.02405679 0.004412531 0.01854753 0.02408117 0.004638016 0.01786655 0.02404075 0.004649996 0.01799994 0.02403855 0.004649996 0.01799994 0.02379995 0.004640936 0.01811593 0.02404022 0.004562854 0.01835078 0.02405434 0.004551887 0.01762914 0.02405631 0.004549503 0.01762497 0.02379995 0.004389882 0.01743209 0.02408522 0.004274964 0.01735043 0.02379995 0.004274845 0.01735037 0.02410531 0.003899991 0.01725 0.02379995 0.003899991 0.01725 0.02416896 0.004170477 0.01730048 0.02412337 7e-4 0.01874995 0.02379995 0.001025378 0.01867568 0.02379995 7e-4 0.01725 0.02379995 0.001025378 0.01732426 0.02379995 0.001286327 0.01753234 0.02379995 0.001286327 0.0184676 0.02379995 0.001431167 0.01816684 0.02379995 0.001431167 0.01783311 0.02379995 7e-4 0.01725 0.02321237 -0.002499997 0.01725 0.02342605 -0.002499997 0.01725 0.02472734 0.001431167 0.01816684 0.02314382 0.001431167 0.01783311 0.02314382 0.001286327 0.01753234 0.02315801 0.001025378 0.01732426 0.0231828 0.001286327 0.0184676 0.02315801 0.001025378 0.01867568 0.0231828 7e-4 0.01874995 0.02321237 -0.002499997 0.01874995 0.02472734 -0.002499997 0.01874995 0.02342605 -0.002756476 0.01729518 0.02474099 -0.00287497 0.01735043 0.02344191 -0.00287497 0.01735043 0.02474677 -0.002975642 0.01742011 0.02475148 -0.003030359 0.0174697 0.02344793 -0.003140866 0.01761037 0.02475875 -0.003149509 0.01762497 0.02345234 -0.003233671 0.01784449 0.02476257 -0.003224372 0.01780563 0.02345496 -0.003249943 0.01799994 0.02476316 -0.003249943 0.01799994 0.02345585 -0.003243803 0.01809597 0.02476292 -0.003224372 0.01819413 0.02345502 -0.003170192 0.01833659 0.02475994 -0.003149509 0.01837497 0.02345234 -0.003149509 0.01837497 0.02475911 -0.00302118 0.01853924 0.02475351 -0.0030303 0.0185303 0.02344793 -0.00287497 0.01864951 0.02474677 -0.00287497 0.01864951 0.02344191 -0.002813518 0.01868128 0.02474379 -0.002491176 0.01894998 0.02492713 -0.002900302 0.01885789 0.02494406 -0.003437101 0.0181117 0.0249629 -0.003347158 0.0184167 0.02495998 -0.00316143 0.01867496 0.02495372 -0.003420948 0.01779365 0.02496236 -0.003300011 0.01749819 0.02495843 -0.003087162 0.01725894 0.02495104 -0.002806842 0.01710367 0.02494043 -0.002491176 0.01704996 0.02492713 0.001282513 0.01894998 0.02466523 0.003925919 0.01894998 0.02436727 0.003925919 0.01704996 0.02436727 0.004378676 0.01716417 0.02430665 0.004628658 0.01735866 0.02427202 0.004800081 0.01762259 0.02424776 0.004875719 0.01792836 0.02423691 0.004846394 0.01824426 0.02424114 0.004712641 0.01853555 0.02426016 0.004487514 0.01876729 0.02429169 0.004197895 0.0189104 0.02433121 0.001282513 0.01704996 0.02466523 0.003899991 0.02174997 0.02416896 0.003899991 0.02174997 0.02379995 0.004204273 0.02168548 0.02411752 0.004274964 0.02164947 0.02379995 0.004274904 0.02164953 0.02410531 0.004549503 0.021375 0.02379995 0.004549443 0.02137506 0.02405679 0.004412531 0.02154749 0.02408117 0.004638016 0.02086651 0.02404075 0.004649996 0.02099996 0.02403855 0.004649996 0.02099996 0.02379995 0.004640936 0.02111595 0.02404022 0.004562854 0.0213508 0.02405434 0.004551887 0.0206291 0.02405631 0.004549503 0.02062499 0.02379995 0.004389882 0.02043205 0.02408522 0.004274964 0.02035045 0.02379995 0.004274845 0.02035039 0.02410531 0.003899991 0.02024996 0.02379995 0.003899991 0.02024996 0.02416896 0.004170477 0.02030044 0.02412337 0.001025378 0.02032423 0.02379995 7e-4 0.02024996 0.02379995 0.001286327 0.02146756 0.02379995 0.001025378 0.0216757 0.02379995 7e-4 0.02174997 0.02379995 0.001431167 0.02116686 0.02379995 0.001431167 0.02083307 0.02379995 0.001286327 0.02053236 0.02379995 7e-4 0.02024996 0.02321237 -0.002499997 0.02024996 0.02342605 -0.002499997 0.02024996 0.02472734 0.001431167 0.02116686 0.02314382 0.001431167 0.02083307 0.02314382 0.001286327 0.02053236 0.02315801 0.001025378 0.02032423 0.0231828 0.001286327 0.02146756 0.02315801 0.001025378 0.0216757 0.0231828 7e-4 0.02174997 0.02321237 -0.002499997 0.02174997 0.02472734 -0.002499997 0.02174997 0.02342605 -0.002756476 0.0202952 0.02474099 -0.00287497 0.02035045 0.02344191 -0.00287497 0.02035045 0.02474677 -0.002975642 0.02042013 0.02475148 -0.003030359 0.02046972 0.02344793 -0.003140866 0.02061039 0.02475875 -0.003149509 0.02062499 0.02345234 -0.003233671 0.02084445 0.02476257 -0.003224372 0.02080565 0.02345496 -0.003249943 0.02099996 0.02476316 -0.003249943 0.02099996 0.02345585 -0.003243803 0.02109599 0.02476292 -0.003224372 0.02119415 0.02345502 -0.003170192 0.02133655 0.02475994 -0.003149509 0.021375 0.02345234 -0.003149509 0.021375 0.02475911 -0.00302118 0.02153927 0.02475351 -0.0030303 0.02153027 0.02344793 -0.00287497 0.02164947 0.02474677 -0.00287497 0.02164947 0.02344191 -0.002813518 0.0216813 0.02474379 -0.002491176 0.02195 0.02492713 -0.002900302 0.02185785 0.02494406 -0.003437101 0.02111166 0.0249629 -0.003347158 0.02141666 0.02495998 -0.00316143 0.02167499 0.02495372 -0.003420948 0.02079367 0.02496236 -0.003300011 0.02049821 0.02495843 -0.003087162 0.0202589 0.02495104 -0.002806842 0.02010369 0.02494043 -0.002491176 0.02004998 0.02492713 0.001282513 0.02195 0.02466523 0.003925919 0.02195 0.02436727 0.004875719 0.02092832 0.02423691 0.004846394 0.02124428 0.02424114 0.004628658 0.02035868 0.02427202 0.004800081 0.02062261 0.02424776 0.004378676 0.02016419 0.02430665 0.004075646 0.02006179 0.02434754 0.003925919 0.02004998 0.02436727 0.004487514 0.02176725 0.02429169 0.004712641 0.02153557 0.02426016 0.004197895 0.02191042 0.02433121 0.001282513 0.02004998 0.02466523 0.004274964 0.0246495 0.02379995 0.004274904 0.02464956 0.02410531 0.004204273 0.02468544 0.02411752 0.003899991 0.02474999 0.02379995 0.003959298 0.02474761 0.02415907 0.003899991 0.02474999 0.02416896 0.004549503 0.02437496 0.02379995 0.004549443 0.02437502 0.02405679 0.004412531 0.02454751 0.02408117 0.004638016 0.02386653 0.02404075 0.004649996 0.02399998 0.02403855 0.004649996 0.02399998 0.02379995 0.004640936 0.02411597 0.02404022 0.004562854 0.02435076 0.02405434 0.004551887 0.02362912 0.02405631 0.004549503 0.02362495 0.02379995 0.004389882 0.02343207 0.02408522 0.004274964 0.02335047 0.02379995 0.004274845 0.02335041 0.02410531 0.003899991 0.02324998 0.02379995 0.003899991 0.02324998 0.02416896 0.004170477 0.02330046 0.02412337 0.001025378 0.02332425 0.02379995 7e-4 0.02324998 0.02379995 0.001286327 0.02446758 0.02379995 0.001025378 0.02467572 0.02379995 7e-4 0.02474999 0.02379995 0.001431167 0.02416688 0.02379995 0.001431167 0.02383309 0.02379995 0.001286327 0.02353233 0.02379995 7e-4 0.02324998 0.02321237 -0.002499997 0.02324998 0.02342605 -0.002499997 0.02324998 0.02472734 0.001431167 0.02416688 0.02314382 0.001431167 0.02383309 0.02314382 0.001286327 0.02353233 0.02315801 0.001025378 0.02332425 0.0231828 0.001286327 0.02446758 0.02315801 0.001109242 0.02462846 0.02317494 0.001025378 0.02467572 0.02320015 7e-4 0.02474999 0.02323627 4.24905e-4 0.02474999 0.02323627 -0.002499997 0.02474999 0.02472734 -0.002499997 0.02474999 0.02342605 -0.002756476 0.02329522 0.02474099 -0.00287497 0.02335047 0.02344191 -0.00287497 0.02335047 0.02474677 -0.002975642 0.02342009 0.02475148 -0.003030359 0.02346974 0.02344793 -0.003140866 0.02361041 0.02475875 -0.003149509 0.02362495 0.02345234 -0.003233671 0.02384448 0.02476257 -0.003224372 0.02380567 0.02345496 -0.003249943 0.02399998 0.02476316 -0.003249943 0.02399998 0.02345585 -0.003243803 0.02409595 0.02476292 -0.003224372 0.02419412 0.02345502 -0.003170192 0.02433657 0.02475994 -0.003149509 0.02437496 0.02345234 -0.003149509 0.02437496 0.02475911 -0.00302118 0.02453929 0.02475351 -0.0030303 0.02453029 0.02344793 -0.00287497 0.0246495 0.02474677 -0.00287497 0.0246495 0.02344191 -0.002813518 0.02468127 0.02474379 -0.002491176 0.02494996 0.02492713 -0.002900302 0.02485787 0.02494406 -0.003437101 0.02411168 0.0249629 -0.003347158 0.02441668 0.02495998 -0.00316143 0.02467495 0.02495372 -0.003420948 0.02379369 0.02496236 -0.003300011 0.02349817 0.02495843 -0.003087162 0.02325892 0.02495104 -0.002806842 0.02310365 0.02494043 -0.002491176 0.02304995 0.02492713 0.001282513 0.02494996 0.02466523 0.003925919 0.02494996 0.02436727 0.003925919 0.02304995 0.02436727 0.004378676 0.02316415 0.02430665 0.004628658 0.02335864 0.02427202 0.004800081 0.02362263 0.02424776 0.004875719 0.02392834 0.02423691 0.004846394 0.02424424 0.02424114 0.004712641 0.02453553 0.02426016 0.004487514 0.02476727 0.02429169 0.004197895 0.02491044 0.02433121 0.001282513 0.02304995 0.02466523 0.003899991 0.02774995 0.02416896 0.003899991 0.02774995 0.02379995 0.004204273 0.02768546 0.02411752 0.004274964 0.02764952 0.02379995 0.004274904 0.02764952 0.02410531 0.004549503 0.02737498 0.02379995 0.004549443 0.02737504 0.02405679 0.004412531 0.02754753 0.02408117 0.004638016 0.02686655 0.02404075 0.004649996 0.02699995 0.02403855 0.004649996 0.02699995 0.02379995 0.004640936 0.02711594 0.02404022 0.004562854 0.02735078 0.02405434 0.004551887 0.02662914 0.02405631 0.004549503 0.02662497 0.02379995 0.004389882 0.02643209 0.02408522 0.004274964 0.02635043 0.02379995 0.004274845 0.02635037 0.02410531 0.003899991 0.02625 0.02379995 0.003899991 0.02625 0.02416896 0.004170477 0.02630048 0.02412337 7e-4 0.02625 0.02379995 0.001025378 0.02632427 0.02379995 0.001286327 0.02653235 0.02379995 7e-4 0.02774995 0.02379995 0.001025378 0.02767568 0.02379995 0.001286327 0.0274676 0.02379995 0.001431167 0.02716684 0.02379995 0.001431167 0.02683305 0.02379995 7e-4 0.02625 0.02323627 4.24905e-4 0.02625 0.02323627 -0.002499997 0.02625 0.02472734 -0.002499997 0.02625 0.02342605 0.001431167 0.02716684 0.02314382 0.001431167 0.02683305 0.02314382 0.001286327 0.02653235 0.02315801 0.00110948 0.02637165 0.02317482 0.001025378 0.02632427 0.02320015 0.001286327 0.0274676 0.02315801 0.001025378 0.02767568 0.0231828 -0.002499997 0.02774995 0.02472734 -0.002499997 0.02774995 0.02342605 -0.002756476 0.02629518 0.02474099 -0.00287497 0.02635043 0.02344191 -0.00287497 0.02635043 0.02474677 -0.002975642 0.02642011 0.02475148 -0.003030359 0.0264697 0.02344793 -0.003140866 0.02661037 0.02475875 -0.003149509 0.02662497 0.02345234 -0.003233671 0.0268445 0.02476257 -0.003224372 0.02680563 0.02345496 -0.003249943 0.02699995 0.02476316 -0.003249943 0.02699995 0.02345585 -0.003243803 0.02709597 0.02476292 -0.003224372 0.02719414 0.02345502 -0.003170192 0.02733659 0.02475994 -0.003149509 0.02737498 0.02345234 -0.003149509 0.02737498 0.02475911 -0.00302118 0.02753925 0.02475351 -0.0030303 0.02753031 0.02344793 -0.00287497 0.02764952 0.02474677 -0.00287497 0.02764952 0.02344191 -0.002813518 0.02768129 0.02474379 -0.002491176 0.02794998 0.02492713 -0.002900302 0.02785789 0.02494406 -0.003437101 0.0271117 0.0249629 -0.003347158 0.0274167 0.02495998 -0.00316143 0.02767497 0.02495372 -0.003420948 0.02679365 0.02496236 -0.003300011 0.02649819 0.02495843 -0.003087162 0.02625888 0.02495104 -0.002806842 0.02610367 0.02494043 -0.002491176 0.02604997 0.02492713 0.001282513 0.02794998 0.02466523 0.003925919 0.02794998 0.02436727 0.004875719 0.02692836 0.02423691 0.004846394 0.02724426 0.02424114 0.004628658 0.02635866 0.02427202 0.004800081 0.02662259 0.02424776 0.003925919 0.02604997 0.02436727 0.004378676 0.02616417 0.02430665 0.004487514 0.02776724 0.02429169 0.004712641 0.02753555 0.02426016 0.004197895 0.02791041 0.02433121 0.001282513 0.02604997 0.02466523 0.003899991 0.03074997 0.02416896 0.003899991 0.03074997 0.02379995 0.004204273 0.03068548 0.02411752 0.004274964 0.03064948 0.02379995 0.004274904 0.03064954 0.02410531 0.004549503 0.030375 0.02379995 0.004549443 0.030375 0.02405679 0.004412531 0.03054749 0.02408117 0.004638016 0.02986651 0.02404075 0.004649996 0.02999997 0.02403855 0.004649996 0.02999997 0.02379995 0.004640936 0.03011596 0.02404022 0.004562854 0.03035074 0.02405434 0.004551887 0.02962911 0.02405631 0.004549503 0.02962499 0.02379995 0.004389882 0.02943205 0.02408522 0.004274964 0.02935045 0.02379995 0.004274845 0.02935039 0.02410531 0.003899991 0.02924996 0.02379995 0.003899991 0.02924996 0.02416896 0.004170477 0.02930045 0.02412337 7e-4 0.03074997 0.02379995 0.001025378 0.0306757 0.02379995 7e-4 0.02924996 0.02379995 0.001025378 0.02932423 0.02379995 0.001286327 0.02953237 0.02379995 0.001286327 0.03046756 0.02379995 0.001431167 0.03016686 0.02379995 0.001431167 0.02983307 0.02379995 7e-4 0.02924996 0.02321237 -0.002499997 0.02924996 0.02342605 -0.002499997 0.02924996 0.02472734 0.001431167 0.03016686 0.02314382 0.001431167 0.02983307 0.02314382 0.001286327 0.02953237 0.02315801 0.001025378 0.02932423 0.0231828 0.001286327 0.03046756 0.02315801 0.001025378 0.0306757 0.0231828 7e-4 0.03074997 0.02321237 -0.002499997 0.03074997 0.02472734 -0.002499997 0.03074997 0.02342605 -0.002756476 0.0292952 0.02474099 -0.00287497 0.02935045 0.02344191 -0.00287497 0.02935045 0.02474677 -0.002975642 0.02942013 0.02475148 -0.003030359 0.02946972 0.02344793 -0.003140866 0.02961039 0.02475875 -0.003149509 0.02962499 0.02345234 -0.003233671 0.02984446 0.02476257 -0.003224372 0.02980566 0.02345496 -0.003249943 0.02999997 0.02476316 -0.003249943 0.02999997 0.02345585 -0.003243803 0.03009599 0.02476292 -0.003224372 0.03019416 0.02345502 -0.003170192 0.03033655 0.02475994 -0.003149509 0.030375 0.02345234 -0.003149509 0.030375 0.02475911 -0.00302118 0.03053927 0.02475351 -0.0030303 0.03053027 0.02344793 -0.00287497 0.03064948 0.02474677 -0.00287497 0.03064948 0.02344191 -0.002813518 0.03068131 0.02474379 -0.002491176 0.03094995 0.02492713 -0.002900302 0.03085786 0.02494406 -0.003437101 0.03011167 0.0249629 -0.003347158 0.03041666 0.02495998 -0.00316143 0.03067499 0.02495372 -0.003420948 0.02979367 0.02496236 -0.003300011 0.02949821 0.02495843 -0.003087162 0.0292589 0.02495104 -0.002806842 0.02910369 0.02494043 -0.002491176 0.02904999 0.02492713 0.001282513 0.03094995 0.02466523 0.003925919 0.03094995 0.02436727 0.004875719 0.02992832 0.02423691 0.004846394 0.03024423 0.02424114 0.004628658 0.02935868 0.02427202 0.004800081 0.02962261 0.02424776 0.004378676 0.02916419 0.02430665 0.004075646 0.02906179 0.02434754 0.003925919 0.02904999 0.02436727 0.004487514 0.03076726 0.02429169 0.004712641 0.03053557 0.02426016 0.004197895 0.03091043 0.02433121 0.001282513 0.02904999 0.02466523 0.003899991 -0.02924996 0.02416896 0.003899991 -0.02924996 0.02379995 0.004204273 -0.02931451 0.02411752 0.004274964 -0.02935045 0.02379995 0.004274904 -0.02935039 0.02410531 0.004549503 -0.02962499 0.02379995 0.004549443 -0.02962493 0.02405679 0.004412531 -0.02945244 0.02408117 0.004638016 -0.03013342 0.02404075 0.004649996 -0.02999997 0.02403855 0.004649996 -0.02999997 0.02379995 0.004640936 -0.02988398 0.02404022 0.004562854 -0.02964919 0.02405434 0.004551887 -0.03037083 0.02405631 0.004549503 -0.030375 0.02379995 0.004389882 -0.03056788 0.02408522 0.004274964 -0.03064948 0.02379995 0.004274845 -0.03064954 0.02410531 0.003899991 -0.03074997 0.02379995 0.003899991 -0.03074997 0.02416896 0.004170477 -0.03069949 0.02412337 0.001025378 -0.0306757 0.02379995 7e-4 -0.03074997 0.02379995 0.001286327 -0.02953237 0.02379995 0.001025378 -0.02932423 0.02379995 7e-4 -0.02924996 0.02379995 0.001431167 -0.02983307 0.02379995 0.001431167 -0.03016686 0.02379995 0.001286327 -0.03046756 0.02379995 7e-4 -0.03074997 0.02323627 4.24905e-4 -0.03074997 0.02323627 -0.002499997 -0.03074997 0.02472734 -0.002499997 -0.03074997 0.02342605 0.001431167 -0.02983307 0.02314382 0.001431167 -0.03016686 0.02314382 0.001286327 -0.03046756 0.02315801 0.00110948 -0.03062832 0.02317482 0.001025378 -0.0306757 0.02320015 0.001286327 -0.02953237 0.02315801 0.001025378 -0.02932423 0.0231828 7e-4 -0.02924996 0.02321237 -0.002499997 -0.02924996 0.02472734 -0.002499997 -0.02924996 0.02342605 -0.002756476 -0.03070473 0.02474099 -0.00287497 -0.03064948 0.02344191 -0.00287497 -0.03064948 0.02474677 -0.002975642 -0.03057986 0.02475148 -0.003030359 -0.03053021 0.02344793 -0.003140866 -0.03038954 0.02475875 -0.003149509 -0.030375 0.02345234 -0.003233671 -0.03015547 0.02476257 -0.003224372 -0.03019428 0.02345496 -0.003249943 -0.02999997 0.02476316 -0.003249943 -0.02999997 0.02345585 -0.003243803 -0.029904 0.02476292 -0.003224372 -0.02980577 0.02345502 -0.003170192 -0.02966338 0.02475994 -0.003149509 -0.02962499 0.02345234 -0.003149509 -0.02962499 0.02475911 -0.00302118 -0.02946066 0.02475351 -0.0030303 -0.02946966 0.02344793 -0.00287497 -0.02935045 0.02474677 -0.00287497 -0.02935045 0.02344191 -0.002813518 -0.02931863 0.02474379 -0.002491176 -0.02904999 0.02492713 -0.002900302 -0.02914208 0.02494406 -0.003437101 -0.02988827 0.0249629 -0.003347158 -0.02958327 0.02495998 -0.00316143 -0.02932494 0.02495372 -0.003420948 -0.03020626 0.02496236 -0.003300011 -0.03050178 0.02495843 -0.003087162 -0.03074103 0.02495104 -0.002806842 -0.0308963 0.02494043 -0.002491176 -0.03094995 0.02492713 0.001282513 -0.02904999 0.02466523 0.003925919 -0.02904999 0.02436727 0.004875719 -0.03007161 0.02423691 0.004846394 -0.02975571 0.02424114 0.004628658 -0.03064131 0.02427202 0.004800081 -0.03037732 0.02424776 0.004378676 -0.0308358 0.02430665 0.004075646 -0.03093814 0.02434754 0.003925919 -0.03094995 0.02436727 0.004487514 -0.02923268 0.02429169 0.004712641 -0.02946442 0.02426016 0.004197895 -0.02908951 0.02433121 0.001282513 -0.03094995 0.02466523 0.001282513 0.01096332 0.02466523 0.008149981 0.01096332 0.02369207 0.008149981 -0.01096332 0.02369207 0.001282513 -0.01096332 0.02466523 0.01479047 0.03249996 0.02213579 0.01088511 0.03250002 0.02312421 0.011487 0.03437572 0.02281647 0.011487 0.03637534 0.0222432 0.011487 0.03822237 0.02128648 0.011487 0.03984421 0.01998394 0.011487 0.04117709 0.01838696 0.011487 0.04216843 0.01655822 0.011487 0.04277926 0.01456981 0.011487 0.04298561 0.01249998 0.011487 0.04277926 0.01043009 0.011487 0.04216843 0.008441686 0.011487 0.04117703 0.006612956 0.011487 0.03984421 0.005015969 0.011487 0.03822237 0.003713488 0.011487 0.03637528 0.002756774 0.011487 0.03437572 0.002183496 0.01208788 0.03250002 0.002157628 0.01479047 0.03513079 0.003230273 0.01479047 0.03307062 0.002881109 0.01479047 0.03249996 0.002864181 0.01479047 0.03865021 0.01991772 0.01479047 0.039249 0.01937741 0.01479047 0.04010468 0.01841747 0.01479047 0.04120153 0.01663893 0.01479047 0.04188919 0.01466578 0.01479047 0.04213535 0.01259076 0.01479047 0.04192835 0.01051151 0.01479047 0.041278 0.008525729 0.01479047 0.04021489 0.006726861 0.01479047 0.03878891 0.005199491 0.01479047 0.03775858 0.004425585 0.01479047 0.03706729 0.004015386 0.01479047 0.03606122 0.003546416 0.01479047 0.03775858 0.02057433 0.01479047 0.03690654 0.02106916 0.01479047 0.03606122 0.02145349 0.01479047 0.03495562 0.02181762 0.01479047 0.03288924 0.02212792 0.01483511 -0.03250002 0.002885103 0.01484477 0.03249996 0.002892374 0.01484477 -0.03250002 0.002892374 0.01488751 0.03249996 0.002948701 0.0148828 -0.03250002 0.002938866 0.01489996 0.03249996 0.003008604 0.01489996 -0.03249996 0.003008604 0.01483511 0.03249996 0.02211481 0.01484477 0.03249996 0.0221076 0.01484477 0.03288811 0.02209973 0.01488751 0.03306561 0.00296545 0.01489996 0.0330621 0.003025293 0.01488751 0.03510773 0.003311574 0.01489996 0.0350914 0.003369212 0.01488751 0.03702718 0.004089772 0.01489996 0.0369988 0.004142522 0.01488751 0.03873378 0.005263507 0.01489996 0.03869467 0.005308866 0.01488751 0.04014718 0.006777524 0.01489996 0.04009926 0.006813406 0.01488751 0.04120099 0.008560597 0.01489996 0.04114645 0.008585333 0.01488751 0.04184567 0.01052898 0.01489996 0.04178702 0.01054131 0.01488751 0.04205083 0.01258999 0.01489996 0.04199093 0.01258945 0.01488751 0.04180687 0.01464676 0.01489996 0.04174846 0.01463335 0.01488751 0.04112523 0.01660263 0.01489996 0.04107111 0.01657688 0.01488751 0.04003798 0.01836556 0.01489996 0.03999072 0.01832878 0.01488751 0.03859627 0.01985263 0.01489996 0.038558 0.01980656 0.01488751 0.03686785 0.020994 0.01489996 0.03684049 0.02094072 0.01488751 0.0349341 0.02173584 0.01489996 0.03491884 0.02167797 0.01488751 0.03288584 0.02204346 0.01489996 0.0328834 0.02198356 0.0148828 0.03249996 0.02206104 0.01489996 0.03249996 0.02199131 0.01484477 0.03494846 0.02179032 0.01484477 0.03689366 0.02104407 0.01484477 0.03863221 0.01989603 0.01484477 0.04008245 0.01840013 0.01484477 0.04117608 0.01662683 0.01484477 0.04186171 0.01465946 0.01484477 0.04210716 0.01259052 0.01484477 0.04190075 0.01051735 0.01484477 0.04125231 0.008537352 0.01484477 0.0401923 0.006743729 0.01484477 0.03877055 0.00522083 0.01484477 0.03705388 0.004040181 0.01484477 0.0351231 0.003257393 0.01484477 0.03306895 0.002909243 0.01483511 -0.03250002 0.02211481 0.01484477 -0.03250002 0.02210754 0.0148828 -0.03250002 0.02206104 0.01489996 -0.03249996 0.02199131 0.01484477 -0.03276801 0.00289613 0.01488751 -0.03276646 0.02204751 0.01489996 -0.03276479 0.02198761 0.01488751 -0.03471112 0.02179175 0.01489996 -0.03469729 0.02173352 0.01488751 -0.03656256 0.02114415 0.01489996 -0.03653705 0.02108997 0.01488751 -0.03824263 0.02013206 0.01489996 -0.03820663 0.02008414 0.01488751 -0.03968054 0.01879805 0.01489996 -0.03963553 0.01875853 0.01488751 -0.04081565 0.01719844 0.01489996 -0.04076349 0.01716899 0.01488751 -0.0416001 0.0154007 0.01489996 -0.041543 0.01538252 0.01488751 -0.04200077 0.01348066 0.01489996 -0.04194116 0.01347452 0.01488751 -0.04200077 0.01151925 0.01489996 -0.04194116 0.01152539 0.01488751 -0.0416001 0.009599208 0.01489996 -0.041543 0.009617388 0.01488751 -0.04081565 0.007801473 0.01489996 -0.04076349 0.007830977 0.01488751 -0.03968054 0.006201922 0.01489996 -0.03963553 0.006241381 0.01488751 -0.03824263 0.004867911 0.01489996 -0.03820663 0.004915773 0.01488751 -0.03656256 0.003855764 0.01489996 -0.03653705 0.003910005 0.01488751 -0.03471112 0.00320816 0.01489996 -0.03469729 0.003266453 0.01488751 -0.03276646 0.002952396 0.01489996 -0.03276479 0.003012299 0.01484477 -0.03472417 0.003153383 0.01484477 -0.03658652 0.003804802 0.01484477 -0.03827649 0.004822909 0.01484477 -0.03972291 0.006164729 0.01484477 -0.0408647 0.007773756 0.01484477 -0.04165375 0.009582102 0.01484477 -0.04205679 0.01151347 0.01484477 -0.04205679 0.01348644 0.01484477 -0.04165375 0.01541781 0.01484477 -0.03276801 0.02210384 0.01484477 -0.0408647 0.01722615 0.01484477 -0.03972291 0.01883518 0.01484477 -0.03827649 0.02017706 0.01484477 -0.03658652 0.02119517 0.01484477 -0.03472417 0.02184659 0.01409494 0.03249996 0.004394948 0.01409494 -0.03249996 0.004394948 0.01489996 0.03249996 0.004394948 0.01489996 -0.03249996 0.004394948 0.01409494 -0.03249996 0.02060496 0.01489996 -0.03249996 0.02060496 0.01409494 -0.03500455 0.02020829 0.01489996 -0.03500455 0.02020829 0.01409494 -0.03726398 0.01905703 0.01489996 -0.03726398 0.01905703 0.01409494 -0.03905707 0.01726394 0.01489996 -0.03905707 0.01726394 0.01409494 -0.04020828 0.01500457 0.01489996 -0.04020828 0.01500457 0.01409494 -0.04060494 0.01249998 0.01489996 -0.04060494 0.01249998 0.01409494 -0.04020828 0.0099954 0.01489996 -0.04020828 0.0099954 0.01409494 -0.03905707 0.007735967 0.01489996 -0.03905707 0.007735967 0.01409494 -0.03726398 0.005942881 0.01489996 -0.03726398 0.005942881 0.01409494 -0.03500455 0.004791676 0.01489996 -0.03500455 0.004791676 0.01409494 0.03249996 0.02060496 0.01489996 0.03249996 0.02060496 0.01489996 0.03905707 0.007735967 0.01489996 0.04020828 0.0099954 0.01489996 0.04060494 0.01249998 0.01489996 0.04020828 0.01500457 0.01489996 0.03500455 0.02020829 0.01489996 0.03726398 0.005942881 0.01489996 0.03726398 0.01905703 0.01489996 0.03500455 0.004791676 0.01489996 0.03905707 0.01726394 0.01409494 0.03500455 0.004791676 0.01409494 0.03726398 0.005942881 0.01409494 0.03905707 0.007735967 0.01409494 0.04020828 0.0099954 0.01409494 0.04060494 0.01249998 0.01409494 0.04020828 0.01500457 0.01409494 0.03905707 0.01726394 0.01409494 0.03726398 0.01905703 0.01409494 0.03500455 0.02020829 0.012995 -0.008416533 0.00575 0.012995 -0.0145834 0.00575 0.012995 -0.0145834 0.01924997 0.003579974 -0.003790378 0.001734852 0.003579974 0.02379035 0.001734852 0.003656625 -0.003815293 0.001748383 0.004507243 0.02404779 0.001898348 0.004604458 -0.004070401 0.001915514 0.004604458 0.02407038 0.001915514 0.01409494 -0.03249996 0.004804968 0.01422494 -0.03249996 0.004804968 0.01422494 -0.03487783 0.00518161 0.01409494 -0.03487783 0.00518161 0.01422494 -0.037023 0.00627458 0.01409494 -0.037023 0.00627458 0.01422494 -0.03872537 0.007976949 0.01409494 -0.03872537 0.007976949 0.01422494 -0.03981834 0.01012206 0.01409494 -0.03981834 0.01012206 0.01422494 -0.04019498 0.01249998 0.01409494 -0.04019498 0.01249998 0.01422494 -0.03981834 0.01487785 0.01409494 -0.03981834 0.01487785 0.01422494 -0.03872537 0.01702296 0.01409494 -0.03872537 0.01702296 0.01422494 -0.037023 0.01872533 0.01409494 -0.037023 0.01872533 0.01422494 -0.03487783 0.01981836 0.01409494 -0.03487783 0.01981836 0.01422494 -0.03249996 0.02019494 0.01409494 -0.03249996 0.02019494 0.01422494 -0.0145834 0.00554496 0.01422494 -0.01673263 0.005885362 0.01422494 -0.008416533 0.00554496 0.01409494 -0.008416533 0.00554496 0.01409494 -0.0145834 0.00554496 0.01264494 -0.004077732 0.007329165 0.01264494 -0.00324577 0.008161127 0.01264494 -0.002073645 0.01019132 0.01264494 -0.001666545 0.01249998 0.01264494 -0.001769125 0.01367211 0.01264494 -0.002073645 0.01480859 0.01264494 -0.002570867 0.01587498 0.01264494 -0.00324577 0.01683878 0.01264494 -0.004077732 0.01767075 0.01264494 -0.005041539 0.01834565 0.01264494 -0.006107926 0.01884287 0.01264494 -0.007244408 0.01914745 0.01264494 -0.0179584 0.01834565 0.01264494 -0.02709996 0.01249998 0.01264494 -0.02716988 0.01336622 0.01264494 -0.0273779 0.01420998 0.01264494 -0.02771848 0.01500946 0.01264494 -0.02818298 0.01574397 0.01264494 -0.02875924 0.01639449 0.012115 -0.02943241 0.01694411 0.01264494 -0.02943241 0.01694411 0.012115 -0.03018504 0.01737862 0.01264494 -0.03018504 0.01737862 0.012115 -0.03099757 0.01768678 0.01264494 -0.03099757 0.01768678 0.012115 -0.03184908 0.01786059 0.01264494 -0.03184908 0.01786059 0.012115 -0.0327174 0.01789557 0.01264494 -0.0327174 0.01789557 0.012115 -0.03358012 0.01779085 0.01264494 -0.03358012 0.01779085 0.012115 -0.03441482 0.01754903 0.01264494 -0.03441482 0.01754903 0.012115 -0.03519999 0.0171765 0.01264494 -0.03519999 0.0171765 0.01264494 -0.03591519 0.01668286 0.012115 -0.03654193 0.01608085 0.01264494 -0.03654193 0.01608085 0.01264494 -0.03706401 0.0153861 0.01264494 -0.03746783 0.0146166 0.01264494 -0.03774303 0.01379227 0.012115 -0.03788244 0.0129345 0.01264494 -0.03788244 0.0129345 0.012115 -0.03788244 0.01206547 0.01264494 -0.03788244 0.01206547 0.01264494 -0.03774303 0.01120769 0.012115 -0.03746783 0.01038336 0.01264494 -0.03746783 0.01038336 0.01264494 -0.03706401 0.009613871 0.01264494 -0.03654193 0.008919119 0.01264494 -0.03591519 0.008317112 0.01264494 -0.03519999 0.007823407 0.01264494 -0.03441482 0.007450878 0.01264494 -0.03358012 0.007209122 0.012115 -0.0327174 0.007104337 0.01264494 -0.0327174 0.007104337 0.012115 -0.03184908 0.007139325 0.01264494 -0.03184908 0.007139325 0.012115 -0.03099757 0.007313191 0.01264494 -0.03099757 0.007313191 0.012115 -0.03018504 0.007621347 0.01264494 -0.03018504 0.007621347 0.012115 -0.02943241 0.008055865 0.01264494 -0.02943241 0.008055865 0.012115 -0.02875924 0.00860548 0.01264494 -0.02875924 0.00860548 0.012115 -0.02818298 0.009255945 0.01264494 -0.02818298 0.009255945 0.012115 -0.02771848 0.009990453 0.01264494 -0.02771848 0.009990453 0.012115 -0.0273779 0.01078999 0.01264494 -0.0273779 0.01078999 0.012115 -0.02716988 0.01163375 0.01264494 -0.02716988 0.01163375 0.01264494 0.03634947 0.01312559 0.01264494 0.03619927 0.01373499 0.01264494 0.03595328 0.01431238 0.01264494 0.03561782 0.01484286 0.01264494 0.0352016 0.01531267 0.01264494 0.03471541 0.01570963 0.01264494 0.03417187 0.01602345 0.012115 0.03358501 0.01624602 0.01264494 0.03358501 0.01624602 0.012115 0.03297007 0.01637154 0.01264494 0.03297007 0.01637154 0.012115 0.03234291 0.01639682 0.01264494 0.03234291 0.01639682 0.012115 0.03171986 0.01632118 0.01264494 0.03171986 0.01632118 0.012115 0.03111702 0.01614654 0.01264494 0.03111702 0.01614654 0.012115 0.03055 0.01587748 0.01264494 0.03055 0.01587748 0.012115 0.03003346 0.01552093 0.01264494 0.03003346 0.01552093 0.01264494 0.02958077 0.01508617 0.01264494 0.02920371 0.01458436 0.01264494 0.02891206 0.01402866 0.01264494 0.02871328 0.01343327 0.01264494 0.02861261 0.0128138 0.01264494 0.02861261 0.01218616 0.01264494 0.03171986 0.008678793 0.01264494 0.03234291 0.008603155 0.01264494 0.03297007 0.008628427 0.01264494 0.03358501 0.008753955 0.01264494 0.03417187 0.008976519 0.01264494 0.03471541 0.009290337 0.01264494 0.0352016 0.009687304 0.01264494 0.03561782 0.0101571 0.01264494 0.03634947 0.01187437 0.01264494 0.02289998 0.01249998 0.01264494 0.02283006 0.01336622 0.01264494 0.02262204 0.01420998 0.012115 0.02228146 0.01500946 0.01264494 0.02228146 0.01500946 0.012115 0.02181696 0.01574397 0.01264494 0.02181696 0.01574397 0.012115 0.02124071 0.01639449 0.01264494 0.02124071 0.01639449 0.012115 0.02056753 0.01694411 0.01264494 0.02056753 0.01694411 0.01264494 0.0198149 0.01737862 0.012115 0.01900237 0.01768678 0.01264494 0.01900237 0.01768678 0.012115 0.01815086 0.01786059 0.01264494 0.01815086 0.01786059 0.012115 0.01728254 0.01789557 0.01264494 0.01728254 0.01789557 0.012115 0.01641982 0.01779085 0.01264494 0.01641982 0.01779085 0.012115 0.01558512 0.01754903 0.01264494 0.01558512 0.01754903 0.012115 0.01479995 0.0171765 0.01264494 0.01479995 0.0171765 0.012115 0.01408475 0.01668286 0.01264494 0.01408475 0.01668286 0.01264494 0.01345801 0.01608085 0.01264494 0.01293593 0.0153861 0.012115 0.01225686 0.01379227 0.01264494 0.01225686 0.01379227 0.012115 0.0121175 0.0129345 0.01264494 0.0121175 0.0129345 0.01264494 0.0121175 0.01206547 0.01264494 0.01225686 0.01120769 0.01264494 0.01253211 0.01038336 0.01264494 0.01293593 0.009613871 0.01264494 0.01345801 0.008919119 0.01264494 0.01408475 0.008317112 0.01264494 0.01479995 0.007823407 0.01264494 0.01558512 0.007450878 0.01264494 0.01641982 0.007209122 0.01264494 0.01728254 0.007104337 0.01264494 0.01815086 0.007139325 0.01264494 0.01900237 0.007313191 0.01264494 0.0198149 0.007621347 0.01264494 0.02056753 0.008055865 0.01264494 0.02124071 0.00860548 0.01264494 0.02181696 0.009255945 0.01264494 0.02228146 0.009990453 0.01264494 0.02262204 0.01078999 0.01264494 0.02283006 0.01163375 0.01269495 0.02289998 0.01249998 0.01269495 0.02283006 0.01336622 0.01269495 0.02262204 0.01420998 0.01269495 0.02228146 0.01500946 0.01269495 0.02181696 0.01574397 0.01269495 0.02124071 0.01639449 0.01269495 0.02056753 0.01694411 0.01269495 0.0198149 0.01737862 0.01269495 0.01900237 0.01768678 0.01269495 0.01815086 0.01786059 0.01269495 0.01728254 0.01789557 0.01269495 0.01641982 0.01779085 0.01269495 0.01558512 0.01754903 0.01269495 0.01479995 0.0171765 0.01269495 0.01408475 0.01668286 0.01269495 0.01345801 0.01608085 0.01269495 0.01293593 0.0153861 0.01269495 0.01253211 0.0146166 0.01269495 0.01225686 0.01379227 0.01269495 0.0121175 0.0129345 0.01269495 0.0121175 0.01206547 0.01269495 0.01225686 0.01120769 0.01269495 0.01253211 0.01038336 0.01269495 0.01293593 0.009613871 0.01269495 0.01408475 0.008317112 0.01269495 0.01479995 0.007823407 0.01269495 0.01558512 0.007450878 0.01269495 0.01641982 0.007209122 0.01269495 0.01728254 0.007104337 0.01269495 0.01815086 0.007139325 0.01269495 0.01900237 0.007313191 0.01269495 0.0198149 0.007621347 0.01269495 0.02056753 0.008055865 0.01269495 0.02124071 0.00860548 0.01269495 0.02181696 0.009255945 0.01269495 0.02228146 0.009990453 0.01269495 0.02262204 0.01078999 0.01269495 0.02283006 0.01163375 0.01269495 -0.007244408 0.00585252 0.01269495 -0.005041539 0.006654322 0.01269495 -0.004077732 0.007329165 0.01269495 -0.00324577 0.008161127 0.01269495 -0.002570867 0.009124994 0.01269495 -0.002073645 0.01019132 0.01269495 -0.001769125 0.01132786 0.01269495 -0.001666545 0.01249998 0.01269495 -0.001769125 0.01367211 0.01269495 -0.002073645 0.01480859 0.01269495 -0.002570867 0.01587498 0.01269495 -0.00324577 0.01683878 0.01269495 -0.004077732 0.01767075 0.01269495 -0.005041539 0.01834565 0.01269495 -0.006107926 0.01884287 0.01269495 -0.007244408 0.01914745 0.01269495 -0.01575553 0.01914745 0.01269495 -0.01689201 0.01884287 0.01269495 -0.0179584 0.01834565 0.01269495 -0.01975417 0.01683878 0.01269495 -0.02709996 0.01249998 0.01269495 -0.02716988 0.01336622 0.01269495 -0.0273779 0.01420998 0.01269495 -0.02771848 0.01500946 0.01269495 -0.02818298 0.01574397 0.01269495 -0.02875924 0.01639449 0.01269495 -0.02943241 0.01694411 0.01269495 -0.03018504 0.01737862 0.01269495 -0.03099757 0.01768678 0.01269495 -0.03184908 0.01786059 0.01269495 -0.0327174 0.01789557 0.01269495 -0.03358012 0.01779085 0.01269495 -0.03441482 0.01754903 0.01269495 -0.03519999 0.0171765 0.01269495 -0.03591519 0.01668286 0.01269495 -0.03654193 0.01608085 0.01269495 -0.03746783 0.0146166 0.01269495 -0.03774303 0.01379227 0.01269495 -0.03788244 0.0129345 0.01269495 -0.03788244 0.01206547 0.01269495 -0.03774303 0.01120769 0.01269495 -0.03746783 0.01038336 0.01269495 -0.03706401 0.009613871 0.01269495 -0.03654193 0.008919119 0.01269495 -0.03591519 0.008317112 0.01269495 -0.03519999 0.007823407 0.01269495 -0.03441482 0.007450878 0.01269495 -0.03358012 0.007209122 0.01269495 -0.0327174 0.007104337 0.01269495 -0.03184908 0.007139325 0.01269495 -0.03099757 0.007313191 0.01269495 -0.03018504 0.007621347 0.01269495 -0.02943241 0.008055865 0.01269495 -0.02875924 0.00860548 0.01269495 -0.02818298 0.009255945 0.01269495 -0.02771848 0.009990453 0.01269495 -0.0273779 0.01078999 0.01269495 -0.02716988 0.01163375 0.01269495 0.03639996 0.01249998 0.01269495 0.03634947 0.01312559 0.01269495 0.03619927 0.01373499 0.01269495 0.03595328 0.01431238 0.01269495 0.03561782 0.01484286 0.01269495 0.0352016 0.01531267 0.01269495 0.03471541 0.01570963 0.01269495 0.03417187 0.01602345 0.01269495 0.03358501 0.01624602 0.01269495 0.03297007 0.01637154 0.01269495 0.03234291 0.01639682 0.01269495 0.03171986 0.01632118 0.01269495 0.03111702 0.01614654 0.01269495 0.03055 0.01587748 0.01269495 0.03003346 0.01552093 0.01269495 0.02958077 0.01508617 0.01269495 0.02920371 0.01458436 0.01269495 0.02891206 0.01402866 0.01269495 0.02871328 0.01343327 0.01269495 0.02861261 0.0128138 0.01269495 0.02861261 0.01218616 0.01269495 0.02891206 0.0109713 0.01269495 0.02920371 0.01041555 0.01269495 0.03003346 0.009478986 0.01269495 0.03055 0.00912249 0.01269495 0.03171986 0.008678793 0.01269495 0.03234291 0.008603155 0.01269495 0.03297007 0.008628427 0.01269495 0.03358501 0.008753955 0.01269495 0.03417187 0.008976519 0.01269495 0.03471541 0.009290337 0.01269495 0.0352016 0.009687304 0.01269495 0.03561782 0.0101571 0.01269495 0.03619927 0.01126497 0.01269495 0.03634947 0.01187437 0.01294499 -0.008416533 0.00575 0.01294499 -0.007244408 0.00585252 0.01294499 -0.006107926 0.00615704 0.01294499 -0.005041539 0.006654322 0.01294499 -0.004077732 0.007329165 0.01294499 -0.00324577 0.008161127 0.01294499 -0.002570867 0.009124994 0.01294499 -0.002073645 0.01019132 0.01294499 -0.001769125 0.01132786 0.01294499 -0.001666545 0.01249998 0.01294499 -0.001769125 0.01367211 0.01294499 -0.002073645 0.01480859 0.01294499 -0.002570867 0.01587498 0.01294499 -0.00324577 0.01683878 0.01294499 -0.004077732 0.01767075 0.01294499 -0.005041539 0.01834565 0.01294499 -0.006107926 0.01884287 0.01294499 -0.007244408 0.01914745 0.01294499 -0.0145834 0.01924997 0.01294499 -0.01575553 0.01914745 0.01294499 -0.01689201 0.01884287 0.01294499 -0.0179584 0.01834565 0.01294499 -0.0189222 0.01767075 0.01294499 -0.01975417 0.01683878 0.01294499 -0.0145834 0.00575 0.01294499 -0.02709996 0.01249998 0.01294499 -0.02716988 0.01336622 0.01294499 -0.0273779 0.01420998 0.01294499 -0.02771848 0.01500946 0.01294499 -0.02818298 0.01574397 0.01294499 -0.02875924 0.01639449 0.01294499 -0.02943241 0.01694411 0.01294499 -0.03018504 0.01737862 0.01294499 -0.03099757 0.01768678 0.01294499 -0.03184908 0.01786059 0.01294499 -0.0327174 0.01789557 0.01294499 -0.03358012 0.01779085 0.01294499 -0.03441482 0.01754903 0.01294499 -0.03519999 0.0171765 0.01294499 -0.03591519 0.01668286 0.01294499 -0.03654193 0.01608085 0.01294499 -0.03706401 0.0153861 0.01294499 -0.03746783 0.0146166 0.01294499 -0.03774303 0.01379227 0.01294499 -0.03788244 0.0129345 0.01294499 -0.03788244 0.01206547 0.01294499 -0.03774303 0.01120769 0.01294499 -0.03746783 0.01038336 0.01294499 -0.03706401 0.009613871 0.01294499 -0.03654193 0.008919119 0.01294499 -0.03591519 0.008317112 0.01294499 -0.03519999 0.007823407 0.01294499 -0.03441482 0.007450878 0.01294499 -0.03358012 0.007209122 0.01294499 -0.0327174 0.007104337 0.01294499 -0.03184908 0.007139325 0.01294499 -0.03099757 0.007313191 0.01294499 -0.03018504 0.007621347 0.01294499 -0.02943241 0.008055865 0.01294499 -0.02875924 0.00860548 0.01294499 -0.02818298 0.009255945 0.01294499 -0.02771848 0.009990453 0.01294499 -0.0273779 0.01078999 0.01294499 -0.02716988 0.01163375 0.01294499 0.03639996 0.01249998 0.01294499 0.03634947 0.01312559 0.01294499 0.03619927 0.01373499 0.01294499 0.03595328 0.01431238 0.01294499 0.03561782 0.01484286 0.01294499 0.0352016 0.01531267 0.01294499 0.03471541 0.01570963 0.01294499 0.03417187 0.01602345 0.01294499 0.03358501 0.01624602 0.01294499 0.03297007 0.01637154 0.01294499 0.03234291 0.01639682 0.01294499 0.03171986 0.01632118 0.01294499 0.03111702 0.01614654 0.01294499 0.03055 0.01587748 0.01294499 0.03003346 0.01552093 0.01294499 0.02958077 0.01508617 0.01294499 0.02920371 0.01458436 0.01294499 0.02891206 0.01402866 0.01294499 0.02871328 0.01343327 0.01294499 0.02861261 0.0128138 0.01294499 0.02861261 0.01218616 0.01294499 0.02871328 0.01156663 0.01294499 0.02891206 0.0109713 0.01294499 0.02920371 0.01041555 0.01294499 0.02958077 0.009913802 0.01294499 0.03003346 0.009478986 0.01294499 0.03055 0.00912249 0.01294499 0.03111702 0.008853435 0.01294499 0.03171986 0.008678793 0.01294499 0.03234291 0.008603155 0.01294499 0.03297007 0.008628427 0.01294499 0.03358501 0.008753955 0.01294499 0.03417187 0.008976519 0.01294499 0.03471541 0.009290337 0.01294499 0.0352016 0.009687304 0.01294499 0.03561782 0.0101571 0.01294499 0.03595328 0.01068753 0.01294499 0.03619927 0.01126497 0.01294499 0.03634947 0.01187437 0.01294499 0.02289998 0.01249998 0.01294499 0.02283006 0.01336622 0.01294499 0.02262204 0.01420998 0.01294499 0.02228146 0.01500946 0.01294499 0.02181696 0.01574397 0.01294499 0.02124071 0.01639449 0.01294499 0.02056753 0.01694411 0.01294499 0.0198149 0.01737862 0.01294499 0.01900237 0.01768678 0.01294499 0.01815086 0.01786059 0.01294499 0.01728254 0.01789557 0.01294499 0.01641982 0.01779085 0.01294499 0.01558512 0.01754903 0.01294499 0.01479995 0.0171765 0.01294499 0.01408475 0.01668286 0.01294499 0.01345801 0.01608085 0.01294499 0.01293593 0.0153861 0.01294499 0.01253211 0.0146166 0.01294499 0.01225686 0.01379227 0.01294499 0.0121175 0.0129345 0.01294499 0.0121175 0.01206547 0.01294499 0.01225686 0.01120769 0.01294499 0.01253211 0.01038336 0.01294499 0.01293593 0.009613871 0.01294499 0.01345801 0.008919119 0.01294499 0.01408475 0.008317112 0.01294499 0.01479995 0.007823407 0.01294499 0.01558512 0.007450878 0.01294499 0.01641982 0.007209122 0.01294499 0.01728254 0.007104337 0.01294499 0.01815086 0.007139325 0.01294499 0.01900237 0.007313191 0.01294499 0.0198149 0.007621347 0.01294499 0.02056753 0.008055865 0.01294499 0.02124071 0.00860548 0.01294499 0.02181696 0.009255945 0.01294499 0.02228146 0.009990453 0.01294499 0.02262204 0.01078999 0.01294499 0.02283006 0.01163375 0.01294499 -0.01666927 0.01891958 0.012995 -0.01666927 0.01891958 0.01294499 -0.006330668 0.006080329 0.012995 -0.006330668 0.006080329 0.01294499 -0.004449009 0.007039129 0.012995 -0.004449009 0.007039129 0.01294499 -0.002955675 0.008532404 0.012995 -0.002955675 0.008532404 0.012995 -0.001666545 0.01249998 0.01294499 -0.002955675 0.01646751 0.012995 -0.002955675 0.01646751 0.01294499 -0.004449009 0.01796084 0.012995 -0.004449009 0.01796084 0.012995 -0.02363342 0.01836597 0.012995 -0.02223342 0.01819998 0.012995 -0.02223342 0.02033495 0.012995 -0.02326738 0.006999969 0.012995 -0.02363342 0.006633937 0.012995 -0.02223342 0.006799995 0.012995 -0.0248 0.006633937 0.012995 -0.02619999 0.006799995 0.012995 -0.02619999 0.005207479 0.012995 0.009199976 0.01836597 0.012995 0.01089996 0.01819998 0.012995 0.01089996 0.02033495 0.012995 0.009566009 0.006999969 0.012995 0.009199976 0.006633937 0.012995 0.01089996 0.006799995 0.012995 0.001233398 0.006633937 0.012995 -4.66579e-4 0.006799995 0.012995 -4.66579e-4 0.005207479 0.012995 0.02368086 0.004664957 0.012995 0.02408158 0.004768133 0.012995 0.02438271 0.00505197 0.012995 0.02218085 0.02033495 0.012995 -0.01031911 0.004664957 0.012995 -0.01000177 0.004728019 0.012995 -0.009732663 0.004907608 0.012995 -0.02223342 0.005207479 0.012995 -0.009408414 0.005123972 0.012995 -0.00902611 0.005199968 0.012995 -0.02223342 0.004664957 0.012995 -0.004973828 0.005199968 0.012995 -0.00399816 0.004728019 0.012995 -0.003680825 0.004664957 0.012995 -0.004267275 0.004907608 0.012995 -0.004591524 0.005123972 0.012995 -0.03008157 0.004768133 0.012995 -0.02968084 0.004664957 0.012995 -0.03038275 0.00505197 0.012995 -0.03043872 0.005137503 0.012995 -0.0310387 0.005675554 0.012995 -0.03182071 0.005869984 0.012995 -0.03675794 0.005922973 0.012995 -0.03667205 0.005883514 0.012995 -0.03657859 0.005869984 0.012995 -0.03675794 0.019077 0.012995 -0.02619999 0.01819998 0.012995 -0.03918284 0.01658976 0.012995 -0.03918284 0.008410215 0.012995 -0.0396316 0.0157445 0.012995 -0.0396316 0.009255409 0.012995 -0.04025578 0.01361131 0.012995 -0.04025578 0.01138865 0.012995 -0.02619999 0.02033495 0.012995 -0.02818083 0.02033495 0.012995 -0.0303207 0.01912999 0.012995 -0.03657859 0.01912999 0.012995 -0.03667205 0.01911646 0.012995 -0.02888274 0.019948 0.012995 -0.02858161 0.02023184 0.012995 0.02258157 0.02023184 0.012995 0.02288269 0.019948 0.012995 0.02400565 0.0188896 0.012995 0.02574998 0.01819998 0.012995 0.02549999 0.01850497 0.012995 0.02699434 0.0188896 0.012995 0.03780746 0.01826351 0.012995 0.02811723 0.019948 0.012995 0.02881908 0.02033495 0.012995 0.02841836 0.02023184 0.012995 0.02849429 0.00611031 0.012995 0.02961724 0.00505197 0.012995 0.0349211 0.005048453 0.012995 0.02991837 0.004768133 0.012995 0.03031909 0.004664957 0.012995 0.03249996 0.004664957 0.012995 0.01089996 0.004664957 0.012995 -4.66579e-4 0.02033495 0.012995 -4.66579e-4 0.01819998 0.012995 7.33421e-4 0.01749998 0.012995 7.33421e-4 0.007499992 0.012995 8.67396e-4 0.006999969 0.012995 0.01089996 0.005207479 0.012995 0.008699953 0.006499946 0.012995 0.001733362 0.006499946 0.012995 0.009566009 0.01799994 0.012995 0.0097 0.01749998 0.012995 0.0097 0.007499992 0.012995 8.67396e-4 0.01799994 0.012995 0.001233398 0.01836597 0.012995 0.001733362 0.01849997 0.012995 0.008699953 0.01849997 0.012995 -0.02529996 0.01749998 0.012995 -0.02529996 0.007499992 0.012995 -0.02516597 0.006999969 0.012995 -0.02413338 0.006499946 0.012995 -0.02429997 0.006499946 0.012995 -0.02326738 0.01799994 0.012995 -0.02313339 0.01749998 0.012995 -0.02313339 0.007499992 0.012995 -0.02516597 0.01799994 0.012995 -0.0248 0.01836597 0.012995 -0.02429997 0.01849997 0.012995 -0.02413338 0.01849997 0.012995 0.01290881 0.01534271 0.012995 0.01424574 0.008190691 0.012995 0.01290881 0.009657263 0.012995 0.01219189 0.01150774 0.012995 0.01219189 0.01349222 0.012995 -4.66579e-4 0.004664957 0.012995 0.03710526 0.006161332 0.012995 -0.02619999 0.004664957 0.003686428 -0.03934997 0.006860733 0.003644287 -0.03934997 0.006924211 0.003629982 -0.03934997 0.006999969 0.003629982 -0.03934997 0.00879997 0.003829956 -0.03934997 0.008999943 0.003630042 -0.03934997 0.008806824 0.01065939 -0.03934997 0.007599949 0.01128 -0.03934997 0.01739996 0.01066279 -0.03934997 0.007599949 0.01128 -0.03934997 0.007599949 0.01052379 -0.03934997 0.01745617 0.01058685 -0.03934997 0.01741427 0.004879951 -0.03934997 0.009499967 0.003646135 -0.03934997 0.008880555 0.003690719 -0.03934997 0.008943498 0.003754198 -0.03934997 0.008985638 0.01058524 -0.03934997 0.007584989 0.01052141 -0.03934997 0.007541418 0.009926438 -0.03934997 0.006946444 0.009901523 -0.03934997 0.006923079 0.01052141 -0.03934997 0.01745855 0.01066279 -0.03934997 0.01739996 0.00374937 -0.03934997 0.006816148 0.003629982 -0.03934997 0.0162 0.003629982 -0.03934997 0.018 0.003829956 -0.03934997 0.01819998 0.003630042 -0.03934997 0.01800686 0.004279971 -0.03934997 0.009499967 0.004279971 -0.03934997 0.01549994 0.004879951 -0.03934997 0.01549994 0.009807229 -0.03934997 0.00685817 0.009693145 -0.03934997 0.006814658 0.004879951 -0.03934997 0.008999943 0.009572863 -0.03934997 0.006799995 0.003829956 -0.03934997 0.006799995 0.003823101 -0.03934997 0.006800055 0.003646135 -0.03934997 0.01808059 0.003690719 -0.03934997 0.01814353 0.003754198 -0.03934997 0.01818561 0.003823101 -0.03934997 0.01600009 0.00374937 -0.03934997 0.01601612 0.003686428 -0.03934997 0.0160607 0.003644287 -0.03934997 0.01612418 0.003829956 -0.03934997 0.01599997 0.004879951 -0.03934997 0.01599997 0.009572863 -0.03934997 0.01819998 0.009606957 -0.03934997 0.01819884 0.00971955 -0.03934997 0.0181781 0.009831011 -0.03934997 0.01812821 0.009926438 -0.03934997 0.01805353 0.01128 0.02434998 0.007599949 0.01128 0.02434998 0.01739996 0.01066279 0.02434998 0.01739996 0.003629982 0.02434998 0.018 0.003629982 0.02434998 0.0162 0.003829956 0.02434998 0.01599997 0.003646135 0.02434998 0.01808059 0.003630042 0.02434998 0.01800686 0.003690719 0.02434998 0.01814353 0.003829956 0.02434998 0.01819998 0.003754198 0.02434998 0.01818561 0.003644287 0.02434998 0.01612418 0.003686428 0.02434998 0.0160607 0.01058727 0.02434998 0.01741474 0.01052331 0.02434998 0.01745629 0.004879951 0.02434998 0.01549994 0.01051366 0.02434998 0.0174663 0.009926438 0.02434998 0.01805353 0.01052141 0.02434998 0.007541418 0.01065939 0.02434998 0.007599949 0.003823101 0.02434998 0.01600009 0.00374937 0.02434998 0.01601612 0.004879951 0.02434998 0.009499967 0.01066279 0.02434998 0.007599949 0.009572863 0.02434998 0.01819998 0.004879951 0.02434998 0.01599997 0.009606957 0.02434998 0.01819884 0.003629982 0.02434998 0.00879997 0.003629982 0.02434998 0.006999969 0.003829956 0.02434998 0.006799995 0.009831011 0.02434998 0.01812821 0.00971955 0.02434998 0.0181781 0.009807229 0.02434998 0.00685817 0.009901523 0.02434998 0.006923079 0.009926438 0.02434998 0.006946444 0.003646135 0.02434998 0.008880555 0.003630042 0.02434998 0.008806824 0.003690719 0.02434998 0.008943498 0.003829956 0.02434998 0.008999943 0.003754198 0.02434998 0.008985638 0.003644287 0.02434998 0.006924211 0.003686428 0.02434998 0.006860733 0.003823101 0.02434998 0.006800055 0.00374937 0.02434998 0.006816148 0.004879951 0.02434998 0.008999943 0.009572863 0.02434998 0.006799995 0.009693145 0.02434998 0.006814658 0.01069611 -0.008252978 0.01308923 0.01069611 -0.01164805 0.01579666 0.01069611 -0.008252978 0.01191073 0.01069611 -0.01478672 0.0127958 0.01113718 -0.008252978 0.01308923 0.01113718 -0.01105701 0.01577013 0.01113718 -0.01135993 0.01579701 0.01113718 -0.01164805 0.01579666 0.01113718 -0.01478672 0.0127958 0.01113718 -0.01478809 0.01277983 0.01113718 -0.008252978 0.01191073 0.01113718 -0.008247435 0.01194226 0.01113718 -0.008247435 0.01305764 0.01136499 -0.009541571 0.009127318 0.01136499 -0.009366869 0.009235024 0.01136499 -0.008858561 0.00963062 0.01136499 -0.008422315 0.01010453 0.01136499 -0.008310437 0.01071822 0.01136499 -0.008127331 0.01054155 0.01136499 -0.008308172 0.01072233 0.01139497 -0.008273959 0.01068812 0.01139497 -0.008269846 0.01069551 0.0113759 -0.008295655 0.01070994 0.01139497 -0.008127331 0.01054155 0.01139497 -0.008070051 0.01064378 0.01139497 -0.007599949 0.01249998 0.01139497 -0.01306658 0.008928477 0.01139497 -0.01245737 0.008719325 0.01139497 -0.01182204 0.008613288 0.01139497 -0.01117789 0.008613288 0.01139497 -0.01054257 0.008719325 0.01139497 -0.009933352 0.008928477 0.01139497 -0.009541571 0.009127318 0.00919497 -0.009933352 0.008928477 0.00919497 -0.009366869 0.009235024 0.00919497 -0.008858561 0.00963062 0.00919497 -0.008422315 0.01010453 0.00919497 -0.008070051 0.01064378 0.00919497 -0.007599949 0.01249998 0.00919497 -0.007653176 0.01314187 0.00919497 -0.01306658 0.008928477 0.00919497 -0.01245737 0.008719325 0.00919497 -0.01182204 0.008613288 0.00919497 -0.01117789 0.008613288 0.00919497 -0.01054257 0.008719325 0.01270592 0.01749998 0.01631522 0.01270592 0.0180121 0.01628071 0.01280498 0.01732724 0.01634609 0.01280498 0.01801675 0.01631516 0.01280498 0.01868969 0.01616156 0.01353043 0.01868969 0.01616156 0.01353043 0.01831108 0.01626354 0.01353043 0.01801675 0.01631516 0.01353043 0.01766335 0.01634651 0.01353043 0.01732724 0.01634609 0.01353043 0.01951855 0.009221613 0.01391994 0.01976823 0.008817493 0.01391994 0.01989531 0.008690476 0.01391994 0.02014166 0.009075522 0.01391994 0.02055823 0.009441733 0.01391994 0.02092444 0.00985825 0.01391994 0.02118247 0.01023173 0.01391994 0.02130949 0.01010465 0.013929 0.02118247 0.01023173 0.013929 0.02086496 0.00978291 0.013929 0.02055823 0.009441733 0.013929 0.02035737 0.009253323 0.013929 0.01976823 0.008817493 0.01394999 0.01978069 0.008795797 0.01394999 0.01978641 0.008799314 0.01394999 0.01989531 0.008690476 0.01394999 0.01930761 0.008378982 0.01394999 0.01712834 0.008015334 0.01394999 0.01569235 0.008378982 0.01394999 0.01639527 0.008137643 0.01394999 0.02130949 0.01010465 0.01394999 0.02145761 0.01035821 0.01052498 0.01569235 0.008378982 0.01052498 0.01639527 0.008137643 0.01052498 0.01712834 0.008015334 0.01280498 -0.03633445 0.01284509 0.01353043 -0.03633445 0.01284509 0.01353043 -0.03633612 0.0128265 0.01391994 -0.02985829 0.009075522 0.01391994 -0.02944171 0.009441733 0.01391994 -0.0290755 0.00985825 0.01391994 -0.02881747 0.01023173 0.013929 -0.02881747 0.01023173 0.013929 -0.02913498 0.00978291 0.013929 -0.02944171 0.009441733 0.013929 -0.02964258 0.009253323 0.013929 -0.03023171 0.008817493 0.01394999 -0.03021925 0.008795797 0.01394999 -0.03021353 0.008799314 0.01137995 0.02249997 0.01249998 0.01187998 0.02249997 0.01249998 0.01137995 0.02243524 0.01330202 0.01187998 0.02243524 0.01330202 0.01187998 0.0209636 0.016106 0.01137995 0.02034032 0.01661491 0.01187998 0.02034032 0.01661491 0.01137995 0.01964342 0.01701724 0.01187998 0.01964342 0.01701724 0.01137995 0.01889103 0.01730257 0.01187998 0.01889103 0.01730257 0.01137995 0.01810264 0.0174635 0.01187998 0.01810264 0.0174635 0.01137995 0.01749998 0.01749998 0.01187998 0.01749998 0.01749998 0.01137995 0.01729863 0.01749593 0.01187998 0.01729863 0.01749593 0.01137995 0.01649987 0.01739895 0.01187998 0.01649987 0.01739895 0.01137995 0.01572692 0.01717507 0.01187998 0.01572692 0.01717507 0.01187998 0.01499998 0.01683008 0.01187998 0.01433777 0.01637297 0.01137995 0.0137574 0.01581561 0.01187998 0.0137574 0.01581561 0.01187998 0.01290005 0.01445978 0.01187998 0.01264524 0.01369655 0.01137995 0.0125162 0.01209765 0.01187998 0.0125162 0.01209765 0.01137995 0.01264524 0.01130342 0.01187998 0.01264524 0.01130342 0.01137995 0.01290005 0.01054012 0.01187998 0.01290005 0.01054012 0.01137995 0.01327401 0.009827613 0.01187998 0.01327401 0.009827613 0.01137995 0.0137574 0.00918436 0.01187998 0.0137574 0.00918436 0.01187998 0.01572692 0.007824897 0.01137995 0.01649987 0.007601022 0.01187998 0.01649987 0.007601022 0.01137995 0.01729863 0.007504045 0.01187998 0.01729863 0.007504045 0.01137995 0.01749998 0.007499992 0.01187998 0.01749998 0.007499992 0.01137995 0.01810264 0.007536411 0.01187998 0.01810264 0.007536411 0.01187998 0.02034032 0.008385062 0.01187998 0.0209636 0.008893966 0.01187998 0.02149718 0.009496271 0.01137995 0.02192723 0.01017636 0.01187998 0.02192723 0.01017636 0.01187998 0.02224266 0.01091665 0.01137995 0.02243524 0.01169794 0.01187998 0.02243524 0.01169794 0.01187998 -0.02749997 0.01249998 0.01137995 -0.0275647 0.01330202 0.01187998 -0.0275647 0.01330202 0.01137995 -0.02775728 0.01408332 0.01137995 -0.0373547 0.01369655 0.01187998 -0.0373547 0.01369655 0.01137995 -0.03748375 0.01290231 0.01187998 -0.03748375 0.01290231 0.01137995 -0.03748375 0.01209765 0.01187998 -0.03748375 0.01209765 0.01137995 -0.0373547 0.01130342 0.01137995 -0.03709989 0.01054012 0.01187998 -0.03709989 0.01054012 0.01137995 -0.03672593 0.009827613 0.01187998 -0.03672593 0.009827613 0.01187998 -0.03624254 0.00918436 0.01137995 -0.03566217 0.008626937 0.01187998 -0.03566217 0.008626937 0.01187998 -0.03499996 0.008169829 0.01137995 -0.03427302 0.007824897 0.01187998 -0.03427302 0.007824897 0.01137995 -0.03270131 0.007504045 0.01187998 -0.03270131 0.007504045 0.01137995 -0.03249996 0.007499992 0.01187998 -0.03249996 0.007499992 0.004889965 0.0241 0.006499946 0.004889965 0.0241 0.006707489 0.004889965 0.02257543 0.006707489 0.004889965 -0.02751421 0.009415388 0.004889965 -0.02749997 0.009349942 0.004889965 -0.02705353 0.009557723 0.004889965 0.02248835 0.009409785 0.004889965 0.02249997 0.009349942 0.004889965 0.02257543 0.009557723 0.004889965 0.006649851 0.01071476 0.004889965 0.007650077 0.01071476 0.004889965 0.007749497 0.01076275 0.004889965 -0.003121972 0.01004499 0.004889965 -0.002447068 0.01004499 0.004889965 -0.002447068 0.01016408 0.004889965 0.007650077 0.007414758 0.004889965 0.007650077 0.007307887 0.004889965 0.007749497 0.007307887 0.004889965 0.006649851 0.006914973 0.004889965 0.006649851 0.007307887 0.004889965 0.005714774 0.007307887 0.004889965 0.004779696 0.01071316 0.004889965 0.004779696 0.01021337 0.004889965 0.005714774 0.01021414 0.004889965 -0.02660799 0.01769196 0.004889965 -0.02660799 0.0173211 0.004889965 -0.02007102 0.0173211 0.004889965 -0.02660799 0.01721411 0.004889965 -0.02705353 0.01721411 0.004889965 -0.02705353 0.01695728 0.004889965 -0.02705353 0.007785856 0.004889965 -0.02705353 0.008005797 0.004889965 0.009988069 0.01224631 0.004889965 0.009812235 0.01204705 0.004889965 0.0102964 0.01209998 0.004889965 -0.03845 0.01009994 0.004889965 -0.03842097 0.01009994 0.004889965 -0.03842097 0.01016408 0.004889965 -0.03815603 0.01015603 0.004889965 -0.0381 0.0101915 0.004889965 -0.0381 0.01021414 0.004889965 -0.0381 0.01504999 0.004889965 -0.0381 0.01530849 0.004889965 -0.03815603 0.01534396 0.004889965 0.02339196 0.01721411 0.004889965 0.02257543 0.01721411 0.004889965 0.02257543 0.01695728 0.004889965 -0.00999999 0.007407844 0.004889965 -0.01023536 0.007350385 0.004889965 -0.0103026 0.007307827 0.004889965 -4.001e-4 0.01304996 0.004889965 -1.7365e-4 0.01304996 0.004889965 -1.7365e-4 0.01375764 0.004889965 -0.003149986 0.01344996 0.004889965 -0.003135979 0.01344996 0.004889965 -0.003135979 0.01375764 0.004889965 0.001377642 0.01021337 0.004889965 0.001377642 0.01071316 0.004889965 0.001052975 0.0107606 0.004889965 0.002377867 0.01071316 0.004889965 5.28e-5 0.0107606 0.004889965 -1.7365e-4 0.01076275 0.004889965 5.28e-5 0.01026076 0.004889965 -1.7365e-4 0.01021414 0.004889965 0.001052975 0.01026076 0.004889965 0.003450095 0.01071476 0.004889965 0.003450095 0.01021498 0.004889965 0.003614783 0.01021414 0.004889965 0.008978366 0.01016408 0.004889965 0.008978366 0.009632468 0.004889965 0.009249866 0.009632468 0.004889965 0.009249866 0.01011478 0.004889965 0.01025009 0.01011478 0.004889965 0.0102964 0.01016408 0.004889965 0.0102964 0.009632468 0.004889965 0.01025009 0.009632468 0.004889965 0.0102964 0.009557723 0.004889965 0.01025009 0.009614944 0.004889965 0.009249866 0.009614944 0.004889965 0.0102964 0.008005797 0.004889965 0.008978366 0.008005797 0.004889965 0.009249866 0.007914781 0.004889965 0.009249866 0.007414877 0.004889965 0.008978366 0.007307887 0.004889965 0.009249866 0.007307887 0.004889965 0.01025009 0.007914781 0.004889965 0.01025009 0.007414877 0.004889965 0.0102964 0.007307887 0.004889965 0.01025009 0.007307887 0.004889965 0.01025009 0.006914973 0.004889965 -0.002447068 0.01144999 0.004889965 -0.002447068 0.01111245 0.004889965 -0.001149952 0.01144999 0.004889965 -5.8605e-4 0.01111245 0.004889965 -0.001149952 0.01194995 0.004889965 -5.8605e-4 0.01194995 0.004889965 -0.001149952 0.01209998 0.004889965 -5.8605e-4 0.01209998 0.004889965 -0.001149952 0.01344996 0.004889965 -5.8605e-4 0.01375764 0.004889965 -0.002447068 0.01344996 0.004889965 -0.00597912 0.01375764 0.004889965 -0.00597912 0.01209998 0.004889965 -0.003149986 0.01209998 0.004889965 -0.003135979 0.01111245 0.004889965 -0.003135979 0.01144999 0.004889965 -0.003149986 0.01144999 0.004889965 -0.003149986 0.01194995 0.004889965 -0.00597912 0.01194995 0.004889965 -0.00597912 0.01111245 0.004889965 0.002949893 0.01209998 0.004889965 0.002949893 0.01375764 0.004889965 3.999e-4 0.01304996 0.004889965 -0.003135979 0.008005797 0.004889965 -0.003135979 0.009557723 0.004889965 -0.003450453 0.009557723 0.004889965 -0.003450453 0.009632468 0.004889965 -0.003135979 0.009632468 0.004889965 -0.003450453 0.01016408 0.004889965 -0.003135979 0.01016408 0.004889965 -0.003450453 0.01021414 0.004889965 -0.003135979 0.01021414 0.004889965 -0.003450453 0.01076275 0.004889965 -0.003135979 0.01076275 0.004889965 -0.003450453 0.01077497 0.004889965 -0.005450487 0.01077497 0.004889965 -0.005450487 0.01076275 0.004889965 -0.00597912 0.01076275 0.004889965 -0.005450487 0.01021414 0.004889965 -0.00597912 0.01021414 0.004889965 -0.005450487 0.01016408 0.004889965 -0.00597912 0.01016408 0.004889965 -0.005450487 0.009632468 0.004889965 -0.00597912 0.009632468 0.004889965 -0.005450487 0.009557723 0.004889965 -0.00597912 0.009557723 0.004889965 -0.005450487 0.008774995 0.004889965 -0.00597912 0.008005797 0.004889965 -0.003450453 0.008774995 0.004889965 0.01034277 0.009432852 0.004889965 0.01034277 0.008096754 0.004889965 0.01205354 0.008005797 0.004889965 0.009006798 0.009432852 0.004889965 0.008978366 0.009557723 0.004889965 0.0102964 0.008096754 0.004889965 0.009006798 0.008096754 0.004889965 0.0102964 0.009432852 0.004889965 0.003614783 0.01406538 0.004889965 0.004004955 0.01406538 0.004889965 0.005714774 0.01539498 0.004889965 0.004049956 0.01281499 0.004889965 0.005714774 0.01209998 0.004889965 0.004049956 0.01375764 0.004889965 0.005714774 0.01375764 0.004889965 0.004049956 0.01391476 0.004889965 0.004004955 0.01391476 0.004889965 0.003614783 0.01266437 0.004889965 0.003494977 0.01266437 0.004889965 0.003494977 0.01281499 0.004889965 0.003449976 0.01281499 0.004889965 0.003449976 0.01375764 0.004889965 0.002949893 0.01539498 0.004889965 0.003449976 0.01391476 0.004889965 0.003494977 0.01391476 0.004889965 -0.01649212 0.0173211 0.004889965 -0.01649212 0.01769214 0.004889965 -0.02007102 0.01849997 0.004889965 -0.01470255 0.01769214 0.004889965 -0.01447927 0.01759797 0.004889965 -0.01439994 0.01759213 0.004889965 -0.01269733 0.01769214 0.004889965 -0.01299995 0.01759213 0.004889965 -0.01276457 0.01764959 0.004889965 -0.00597912 0.01849997 0.004889965 -0.006507813 0.01769214 0.004889965 -0.00597912 0.0173211 0.004889965 -0.006507813 0.0173211 0.004889965 -0.00597912 0.01721882 0.004889965 -0.006507813 0.01722353 0.004889965 -0.01649212 0.01722353 0.004889965 -0.02007102 0.01721882 0.004889965 -0.01649212 0.007307827 0.004889965 -0.02007102 0.006707489 0.004889965 -0.00597912 0.006707489 0.004889965 -0.008297383 0.007307827 0.004889965 -0.008520662 0.007401943 0.004889965 -0.008599996 0.007407844 0.004889965 0.011608 0.0173211 0.004889965 0.011608 0.01769196 0.004889965 0.0102964 0.01849997 0.004889965 0.01205354 0.01849997 0.004889965 0.0102964 0.01695728 0.004889965 0.011608 0.01721411 0.004889965 0.0102964 0.01721882 0.004889965 0.011608 0.01721882 0.004889965 0.0102964 0.0173211 0.004889965 0.0241 0.01695728 0.004889965 0.0241 0.01721882 0.004889965 0.02339196 0.01721882 0.004889965 0.02339196 0.0173211 0.004889965 0.0241 0.0173211 0.004889965 0.02339196 0.01769196 0.004889965 0.0241 0.01849997 0.004889965 0.02257543 0.01769196 0.004889965 0.01205354 0.01769196 0.004889965 0.01425677 0.01769196 0.004889965 0.01425677 0.01849997 0.004889965 0.02049314 0.01769196 0.004889965 0.02049314 0.01849997 0.004889965 0.02257543 0.01849997 0.004889965 0.0241 0.008005797 0.004889965 0.02339196 0.007785856 0.004889965 0.0241 0.007307887 0.004889965 0.02339196 0.007308006 0.004889965 0.02257543 0.007307887 0.004889965 0.02257543 0.008005797 0.004889965 0.02257543 0.007785856 0.004889965 0.01425677 0.007785856 0.004889965 0.01205354 0.007785856 0.004889965 0.011608 0.007785856 0.004889965 0.011608 0.007308006 0.004889965 0.01205354 0.007307887 0.004889965 -0.02419996 0.01304996 0.004889965 -0.02394634 0.01298809 0.004889965 -0.02007102 0.01375764 0.004889965 -0.02534997 0.01249998 0.004889965 -0.02705353 0.01209998 0.004889965 -0.02534478 0.01242387 0.004889965 -0.02364999 0.01249998 0.004889965 -0.02007102 0.01209998 0.004889965 -0.02365517 0.0125761 0.004889965 -0.02374702 0.01281219 0.004889965 -0.02371186 0.01224631 0.004889965 -0.02388775 0.01204705 0.004889965 -0.02007102 0.01194995 0.004889965 -0.02412384 0.0119552 0.004889965 -0.02419996 0.01194995 0.004889965 -0.0248 0.01194995 0.004889965 -0.02705353 0.01194995 0.004889965 -0.02505362 0.01201188 0.004889965 -0.02525287 0.01218771 0.004889965 -0.03845 0.01549994 0.004889965 -0.03842097 0.01549994 0.004889965 -0.03842097 0.0162447 0.004889965 -0.03815603 0.01555603 0.004889965 -0.03764998 0.01549994 0.004889965 -0.0381 0.01584994 0.004889965 -0.03799998 0.01584994 0.004889965 -0.03757542 0.0162447 0.004889965 -0.03790849 0.01539999 0.004889965 -0.03794395 0.01534396 0.004889965 -0.03764998 0.01539999 0.004889965 -0.03757542 0.01539498 0.004889965 -0.03909999 0.0162447 0.004889965 -0.03909999 0.01539498 0.004889965 -0.03845 0.01539999 0.004889965 -0.03842097 0.01539999 0.004889965 -0.03842097 0.01539498 0.004889965 -0.03842097 0.01375764 0.004889965 -0.03799998 0.01504999 0.004889965 -0.03757542 0.01021414 0.004889965 -0.03794395 0.01015603 0.004889965 -0.03757542 0.01016408 0.004889965 -0.03790849 0.01009994 0.004889965 -0.03799998 0.009649991 0.004889965 -0.0381 0.009649991 0.004889965 -0.03842097 0.009632468 0.004889965 -0.0381 0.009908497 0.004889965 -0.03815603 0.009943962 0.004889965 -0.03764998 0.01009994 0.004889965 -0.03764998 0.00999999 0.004889965 -0.03757542 0.009632468 0.004889965 -0.03790849 0.00999999 0.004889965 -0.03794395 0.009943962 0.004889965 -0.03799998 0.0101915 0.004889965 -0.03799998 0.01021414 0.004889965 -0.03799998 0.01044994 0.004889965 -0.03757542 0.01076275 0.004889965 -0.0381 0.01044994 0.004889965 -0.03842097 0.01076275 0.004889965 -0.03842097 0.01021414 0.004889965 -0.03819149 0.01009994 0.004889965 -0.03842097 0.00999999 0.004889965 -0.03845 0.00999999 0.004889965 -0.03909999 0.009632468 0.004889965 -0.03909999 0.01016408 0.004889965 0.0241 0.01539498 0.004889965 0.02315598 0.01534396 0.004889965 0.02309995 0.01504999 0.004889965 0.02257543 0.0162447 0.004889965 0.02290844 0.01549994 0.004889965 0.02294391 0.01555603 0.004889965 0.02315598 0.01555603 0.004889965 0.02319145 0.01549994 0.004889965 0.02344995 0.01549994 0.004889965 0.023 0.01584994 0.004889965 0.02309995 0.01584994 0.004889965 0.0241 0.0162447 0.004889965 0.02309995 0.0155915 0.004889965 0.02319145 0.01539999 0.004889965 0.02344995 0.01539999 0.004889965 0.0102964 0.01194995 0.004889965 0.009111046 0.01211106 0.004889965 0.008978366 0.01209998 0.004889965 0.009313762 0.01198244 0.004889965 0.008978366 0.01194995 0.004889965 0.009576261 0.0119552 0.004889965 0.008949995 0.01249998 0.004889965 0.009011864 0.0127536 0.004889965 0.008978366 0.01375764 0.004889965 0.009187757 0.01295292 0.004889965 0.009423673 0.01304471 0.004889965 0.0102964 0.01375764 0.004889965 0.01002502 0.01266402 0.004889965 0.01004999 0.01249998 0.004889965 0.00871396 0.01741862 0.004889965 0.008445322 0.01741862 0.004889965 0.008223474 0.0173211 0.004889965 0.00871396 0.01849997 0.004889965 0.008223474 0.01849997 0.004889965 0.008445322 0.01837861 0.004889965 0.008978366 0.01837861 0.004889965 0.009931385 0.01837861 0.004889965 0.00871396 0.01837861 0.004889965 0.008978366 0.01849997 0.004889965 -0.02007102 0.008005797 0.004889965 -0.02660799 0.007785856 0.004889965 -0.02007102 0.007307887 0.004889965 -0.02660799 0.007308006 0.004889965 -0.02705353 0.007307887 0.004889965 -0.03750091 0.008005797 0.004889965 -0.03750091 0.007785856 0.004889965 -0.03839194 0.007785856 0.004889965 -0.03757542 0.007785856 0.004889965 -0.03757542 0.008005797 0.004889965 -0.03842097 0.008005797 0.004889965 -0.03842097 0.007307887 0.004889965 -0.03839194 0.007308006 0.004889965 -0.03757542 0.007307887 0.004889965 -0.03839194 0.01769196 0.004889965 -0.03842097 0.01849997 0.004889965 -0.03842097 0.0173211 0.004889965 -0.03757542 0.01849997 0.004889965 -0.03757542 0.01695728 0.004889965 -0.03757542 0.01721411 0.004889965 -0.03842097 0.01695728 0.004889965 -0.03839194 0.01721411 0.004889965 -0.03842097 0.01721882 0.004889965 -0.03839194 0.01721882 0.004889965 -0.03839194 0.0173211 0.004889965 -0.02660799 0.01721882 0.004889965 -0.02007102 0.01695728 0.004889965 -0.03757542 0.01769196 0.004889965 -0.03750091 0.01769196 0.004889965 -0.03750091 0.01849997 0.004889965 -0.02705353 0.01769196 0.004889965 -0.02705353 0.01849997 0.004889965 -1.7365e-4 0.01016408 0.004889965 0.005714774 0.01016408 0.004889965 0.003614783 0.01016408 0.004889965 0.00377947 0.01021337 0.004889965 0.002949893 0.01021414 0.004889965 -7.72e-4 0.01026505 0.004889965 -5.8605e-4 0.01021414 0.004889965 -7.72e-4 0.01076275 0.004889965 -5.8605e-4 0.01076275 0.004889965 -7.72e-4 0.01076489 0.004889965 -0.001772165 0.01076489 0.004889965 -0.001772165 0.01076275 0.004889965 -0.002447068 0.01076275 0.004889965 -0.001772165 0.01026505 0.004889965 -0.002447068 0.01021414 0.004889965 0.007650077 0.006914973 0.004889965 0.007749497 0.006707489 0.004889965 0.005714774 0.006707489 0.004889965 0.005714774 0.007744967 0.004889965 0.006649851 0.007414758 0.004889965 0.007749497 0.007744967 0.004889965 -0.003121972 0.009557723 0.004889965 -0.003121972 0.008005797 0.004889965 -0.003121972 0.007744967 0.004889965 -0.003135979 0.007307887 0.004889965 -0.002447068 0.007744967 0.004889965 -0.002447068 0.007307887 0.004889965 -5.8605e-4 0.007307887 0.004889965 -5.8605e-4 0.007744967 0.004889965 -1.7365e-4 0.007307887 0.004889965 -1.7365e-4 0.007744967 0.004889965 0.002949893 0.007307887 0.004889965 0.002949893 0.007744967 0.004889965 0.003614783 0.007307887 0.004889965 0.003614783 0.007744967 0.004889965 0.008223474 0.007307887 0.004889965 0.008223474 0.007744967 0.004889965 0.008477985 0.007744967 0.004889965 0.00871396 0.007307887 0.004889965 0.008477985 0.008005797 0.004889965 0.00871396 0.008005797 0.004889965 0.008477985 0.009557723 0.004889965 0.00871396 0.009557723 0.004889965 0.008477985 0.009632468 0.004889965 0.00871396 0.009632468 0.004889965 0.008477985 0.01004499 0.004889965 0.00871396 0.01016408 0.004889965 0.008223474 0.01004499 0.004889965 0.005714774 0.01004499 0.004889965 0.007749497 0.01004499 0.004889965 0.007749497 0.01016408 0.004889965 0.008223474 0.01016408 0.004889965 0.002949893 0.01016408 0.004889965 0.002949893 0.01004499 0.004889965 0.003614783 0.01004499 0.004889965 0.002377867 0.01021337 0.004889965 -1.7365e-4 0.01004499 0.004889965 0.008001565 0.01837861 0.004889965 0.007848858 0.01837861 0.004889965 0.007749497 0.01849997 0.004889965 0.007848858 0.01741862 0.004889965 0.007749497 0.0173211 0.004889965 0.008001565 0.01741862 0.004889965 0.02257543 0.01639956 0.004889965 0.02248626 0.01648652 0.004889965 0.02243745 0.01642817 0.004889965 0.02049314 0.01670026 0.004889965 0.02221375 0.01661348 0.004889965 0.02226251 0.01667183 0.004889965 0.02249997 0.01655 0.004889965 0.02257543 0.01670026 0.004889965 0.02248835 0.01660984 0.004889965 0.02049314 0.01639956 0.004889965 0.02221161 0.01649016 0.004889965 0.0223788 0.01640278 0.004889965 0.02231502 0.01640409 0.004889965 0.0222581 0.01643151 0.004889965 0.0223211 0.01669716 0.004889965 0.02238488 0.01669585 0.004889965 0.0224418 0.01666843 0.004889965 0.02049314 0.01721411 0.004889965 0.01425677 0.01639956 0.004889965 0.01425677 0.01670026 0.004889965 0.01262259 0.01640248 0.004889965 0.0125637 0.01642727 0.004889965 0.01205354 0.01639956 0.004889965 0.01205354 0.01670026 0.004889965 0.01267737 0.01669746 0.004889965 0.01273626 0.01667267 0.004889965 0.01268631 0.01640444 0.004889965 0.01255702 0.01666754 0.004889965 0.01261365 0.01669549 0.004889965 0.01205354 0.01695728 0.004889965 0.01205354 0.01721411 0.004889965 -0.03249996 0.01670026 0.004889965 -0.02705353 0.01639956 0.004889965 -0.02705353 0.01670026 0.004889965 -0.02751147 0.01660948 0.004889965 -0.02749997 0.01655 0.004889965 -0.02751374 0.01648646 0.004889965 -0.02756255 0.01642817 0.004889965 -0.02767848 0.01669722 0.004889965 -0.02761465 0.01669573 0.004889965 -0.02755784 0.0166682 0.004889965 -0.02762109 0.01640278 0.004889965 -0.03750091 0.01670026 0.004889965 -0.03748619 0.01661354 0.004889965 -0.0374372 0.01667195 0.004889965 -0.03749996 0.01655 0.004889965 -0.03750091 0.01639956 0.004889965 -0.03748834 0.0164901 0.004889965 -0.03737848 0.01669722 0.004889965 -0.03732109 0.01640278 0.004889965 -0.03738486 0.01640409 0.004889965 -0.03744184 0.01643151 0.004889965 -0.03750091 0.01695728 0.004889965 -0.03750091 0.01721411 0.004889965 0.0241 0.01670026 0.004889965 0.0241 0.01639956 0.004889965 0.023 0.0155915 0.004889965 -0.03757542 0.01670026 0.004889965 -0.03842097 0.01670026 0.004889965 -0.03757542 0.01639956 0.004889965 -0.03842097 0.01639956 0.004889965 -0.0381 0.0155915 0.004889965 -0.03909999 0.01849997 0.004889965 -0.03909999 0.0173211 0.004889965 -0.03909999 0.01721882 0.004889965 -0.03909999 0.01695728 0.004889965 -0.03909999 0.01670026 0.004889965 -0.03909999 0.01639956 0.004889965 0.005714774 0.01849997 0.004889965 0.003614783 0.01849997 0.004889965 0.005714774 0.0173211 0.004889965 0.003614783 0.0173211 0.004889965 0.005714774 0.01721882 0.004889965 0.003614783 0.01721882 0.004889965 0.005714774 0.01695728 0.004889965 0.003614783 0.01695728 0.004889965 0.005714774 0.01670026 0.004889965 0.003614783 0.01670026 0.004889965 0.005714774 0.01639956 0.004889965 0.003614783 0.01639956 0.004889965 0.005714774 0.0162447 0.004889965 0.003614783 0.0162447 0.004889965 0.003614783 0.01539498 0.004889965 0.003494977 0.01406538 0.004889965 0.002949893 0.01849997 0.004889965 0.002949893 0.0173211 0.004889965 0.002949893 0.01721882 0.004889965 0.002949893 0.01695728 0.004889965 0.002949893 0.01670026 0.004889965 0.002949893 0.01639956 0.004889965 0.002949893 0.0162447 0.004889965 0.009931385 0.01741862 0.004889965 0.008978366 0.0173211 0.004889965 0.008978366 0.01721882 0.004889965 0.008978366 0.01695728 0.004889965 0.0102964 0.01670026 0.004889965 0.008978366 0.01670026 0.004889965 0.0102964 0.01639956 0.004889965 0.008978366 0.01639956 0.004889965 0.0102964 0.0162447 0.004889965 0.008978366 0.0162447 0.004889965 0.0102964 0.01539498 0.004889965 0.008978366 0.01539498 0.004889965 0.00871396 0.0173211 0.004889965 0.00871396 0.01721882 0.004889965 0.00871396 0.01695728 0.004889965 0.00871396 0.01670026 0.004889965 0.00871396 0.01639956 0.004889965 0.00871396 0.0162447 0.004889965 0.00871396 0.01539498 0.004889965 0.00871396 0.01375764 0.004889965 0.00871396 0.01209998 0.004889965 0.008974969 0.01233589 0.004889965 -1.7365e-4 0.01849997 0.004889965 -1.7365e-4 0.0173211 0.004889965 -1.7365e-4 0.01721882 0.004889965 -1.7365e-4 0.01695728 0.004889965 -1.7365e-4 0.01670026 0.004889965 -1.7365e-4 0.01639956 0.004889965 -1.7365e-4 0.0162447 0.004889965 -1.7365e-4 0.01539498 0.004889965 -5.8605e-4 0.01849997 0.004889965 -5.8605e-4 0.0173211 0.004889965 -5.8605e-4 0.01721882 0.004889965 -5.8605e-4 0.01695728 0.004889965 -5.8605e-4 0.01670026 0.004889965 -5.8605e-4 0.01639956 0.004889965 -5.8605e-4 0.0162447 0.004889965 -5.8605e-4 0.01539498 0.004889965 -4.001e-4 0.01224994 0.004889965 -1.7365e-4 0.01224994 0.004889965 -0.002447068 0.01849997 0.004889965 -0.002447068 0.0173211 0.004889965 -0.002447068 0.01721882 0.004889965 -0.002447068 0.01695728 0.004889965 -0.002447068 0.01670026 0.004889965 -0.002447068 0.01639956 0.004889965 -0.002447068 0.0162447 0.004889965 -0.002447068 0.01539498 0.004889965 -0.002447068 0.01375764 0.004889965 -0.003135979 0.01849997 0.004889965 -0.003135979 0.0173211 0.004889965 -0.003135979 0.01721882 0.004889965 -0.003135979 0.01695728 0.004889965 -0.003135979 0.01670026 0.004889965 -0.003135979 0.01639956 0.004889965 -0.003135979 0.0162447 0.004889965 -0.003135979 0.01539498 0.004889965 -0.00597912 0.01695728 0.004889965 -0.00597912 0.01670026 0.004889965 -0.00597912 0.01639956 0.004889965 -0.00597912 0.0162447 0.004889965 -0.00597912 0.01539498 0.004889965 -0.02007102 0.01670026 0.004889965 -0.02007102 0.01639956 0.004889965 -0.02007102 0.0162447 0.004889965 -0.02705353 0.0162447 0.004889965 -0.02007102 0.01539498 0.004889965 -0.02705353 0.01539498 0.004889965 0.008978366 0.01741862 0.004889965 0.008223474 0.01721882 0.004889965 0.008223474 0.01695728 0.004889965 0.008223474 0.01670026 0.004889965 0.008223474 0.01639956 0.004889965 0.008223474 0.0162447 0.004889965 0.008223474 0.01539498 0.004889965 0.008223474 0.01375764 0.004889965 0.008223474 0.01209998 0.004889965 0.00871396 0.01194995 0.004889965 0.008223474 0.01194995 0.004889965 0.00871396 0.01111245 0.004889965 0.008223474 0.01111245 0.004889965 0.00871396 0.01076275 0.004889965 0.008223474 0.01076275 0.004889965 0.007749497 0.01721882 0.004889965 0.007749497 0.01695728 0.004889965 0.007749497 0.01670026 0.004889965 0.007749497 0.01639956 0.004889965 0.007749497 0.0162447 0.004889965 0.007749497 0.01539498 0.004889965 0.007749497 0.01375764 0.004889965 0.007749497 0.01209998 0.004889965 0.007749497 0.01194995 0.004889965 0.007749497 0.01111245 0.004889965 0.003614783 0.01076275 0.004889965 0.005714774 0.01076275 0.004889965 0.003614783 0.01111245 0.004889965 0.005714774 0.01111245 0.004889965 0.003614783 0.01194995 0.004889965 0.005714774 0.01194995 0.004889965 0.003614783 0.01209998 0.004889965 0.004004955 0.01266437 0.004889965 0.004004955 0.01281499 0.004889965 0.002949893 0.01194995 0.004889965 0.002949893 0.01111245 0.004889965 0.002949893 0.01076275 0.004889965 3.999e-4 0.01224994 0.004889965 -1.7365e-4 0.01209998 0.004889965 -1.7365e-4 0.01194995 0.004889965 -1.7365e-4 0.01111245 0.004889965 -0.03799998 0.01530849 0.004889965 -0.03842097 0.01209998 0.004889965 -0.03842097 0.01194995 0.004889965 -0.03842097 0.01111245 0.004889965 0.007749497 0.01021414 0.004889965 0.008223474 0.01021414 0.004889965 0.00871396 0.01021414 0.004889965 0.006649851 0.01021498 0.004889965 0.00377947 0.01071316 0.004889965 0.007650077 0.01021498 0.004889965 0.0102964 0.01111245 0.004889965 0.008978366 0.01111245 0.004889965 0.0102964 0.01076275 0.004889965 0.008978366 0.01076275 0.004889965 0.0102964 0.01021414 0.004889965 0.008978366 0.01021414 0.004889965 0.002949893 0.01071476 0.004889965 0.00244987 0.01071476 0.004889965 0.00244987 0.01021498 0.004889965 -5.8605e-4 0.01016408 0.004889965 -5.8605e-4 0.01004499 0.004889965 -0.003121972 0.009632468 0.004889965 -0.03909999 0.01375764 0.004889965 -0.03909999 0.01209998 0.004889965 -0.03909999 0.01194995 0.004889965 -0.03909999 0.01111245 0.004889965 -0.03909999 0.01076275 0.004889965 -0.03909999 0.01021414 0.004889965 0.02049314 0.01375764 0.004889965 0.01425677 0.01375764 0.004889965 0.02049314 0.01209998 0.004889965 0.01425677 0.01209998 0.004889965 0.02049314 0.01194995 0.004889965 0.01425677 0.01194995 0.004889965 0.02049314 0.01111245 0.004889965 0.01425677 0.01111245 0.004889965 0.02049314 0.01076275 0.004889965 0.01425677 0.01076275 0.004889965 0.02049314 0.01021414 0.004889965 0.01425677 0.01021414 0.004889965 0.02049314 0.01016408 0.004889965 0.01425677 0.01016408 0.004889965 0.02049314 0.009632468 0.004889965 0.02049314 0.009557723 0.004889965 0.01425677 0.009557723 0.004889965 0.01205354 0.01539498 0.004889965 0.01205354 0.01209998 0.004889965 0.01205354 0.01194995 0.004889965 0.01205354 0.009632468 0.004889965 0.01205354 0.009557723 0.004889965 0.0241 0.009557723 0.004889965 0.02257543 0.009632468 0.004889965 0.0241 0.009632468 0.004889965 0.0241 0.01016408 0.004889965 0.02257543 0.01021414 0.004889965 0.0241 0.01021414 0.004889965 0.02257543 0.01076275 0.004889965 0.0241 0.01076275 0.004889965 0.02257543 0.01111245 0.004889965 0.0241 0.01111245 0.004889965 0.02309995 0.01530849 0.004889965 0.02232116 0.009497165 0.004889965 0.02238494 0.009495854 0.004889965 0.02244186 0.009468436 0.004889965 0.0187872 0.009339988 0.004889965 0.01251423 0.009284555 0.004889965 0.01279997 0.009349942 0.004889965 0.01267737 0.009497463 0.004889965 0.01273626 0.009472668 0.004889965 0.01278573 0.009415388 0.004889965 0.01249998 0.009349942 0.004889965 0.01251322 0.009412467 0.004889965 0.01255702 0.009467542 0.004889965 0.01261365 0.009495496 0.004889965 -0.02007102 0.01021414 0.004889965 -0.02007102 0.01016408 0.004889965 -0.02007102 0.009632468 0.004889965 -0.02007102 0.009557723 0.004889965 -0.02705353 0.01021414 0.004889965 -0.02705353 0.01016408 0.004889965 -0.02705353 0.009632468 0.004889965 -0.0275132 0.009287536 0.004889965 -0.02755707 0.009232342 0.004889965 -0.02761375 0.009204387 0.004889965 -0.02767747 0.00920248 0.004889965 -0.02768629 0.009495496 0.004889965 -0.02762258 0.009497463 0.004889965 -0.02756369 0.009472668 0.004889965 -0.03737747 0.00920248 0.004889965 -0.03743636 0.009227395 0.004889965 -0.03732258 0.009497463 0.004889965 -0.03748577 0.009284675 0.004889965 -0.03749996 0.009349942 0.004889965 -0.03750091 0.009557723 0.004889965 -0.03725707 0.009232342 0.004889965 -0.03731375 0.009204387 0.004889965 -0.03748673 0.009412467 0.004889965 -0.03744292 0.009467542 0.004889965 -0.03738629 0.009495496 0.004889965 -0.03750091 0.0162447 0.004889965 -0.03750091 0.01021414 0.004889965 -0.03750091 0.01016408 0.004889965 -0.03750091 0.009632468 0.004889965 -0.03757542 0.009557723 0.004889965 -0.03842097 0.009557723 0.004889965 -0.03799998 0.009908497 0.004889965 -0.00597912 0.007307887 0.004889965 -0.03909999 0.007307887 0.004889965 -0.03909999 0.008005797 0.004889965 -0.03909999 0.009557723 0.004889965 -0.03819149 0.00999999 0.004889965 0.009249866 0.006914973 0.004889965 0.008978366 0.006707489 0.004889965 0.0102964 0.006707489 0.004889965 0.01205354 0.006707489 0.004889965 0.01425677 0.006707489 0.004889965 0.01425677 0.007307887 0.004889965 0.008223474 0.006707489 0.004889965 0.00871396 0.006707489 0.004889965 0.003614783 0.006707489 0.004889965 0.002949893 0.006707489 0.004889965 -1.7365e-4 0.006707489 0.004889965 -5.8605e-4 0.006707489 0.004889965 -0.002447068 0.006707489 0.004889965 -0.003135979 0.006707489 0.004889965 -0.006507813 0.007307827 0.004889965 -0.006507813 0.007776379 0.004889965 -0.01649212 0.007776379 0.004889965 -0.02705353 0.006707489 0.004889965 -0.03750091 0.007307887 0.004889965 -0.03750091 0.006707489 0.004889965 -0.03757542 0.006707489 0.004889965 -0.03842097 0.006707489 0.004889965 -0.03909999 0.006707489 0.004889965 0.02257543 0.006499946 0.004889965 0.01425677 0.006499946 0.004889965 0.01205354 0.006499946 0.004889965 0.0102964 0.006499946 0.004889965 0.008978366 0.006499946 0.004889965 0.00871396 0.006499946 0.004889965 0.008223474 0.006499946 0.004889965 0.007749497 0.006499946 0.004889965 0.005714774 0.006499946 0.004889965 0.003614783 0.006499946 0.004889965 0.002949893 0.006499946 0.004889965 -1.7365e-4 0.006499946 0.004889965 -5.8605e-4 0.006499946 0.004889965 -0.002447068 0.006499946 0.004889965 -0.003135979 0.006499946 0.004889965 -0.00597912 0.006499946 0.004889965 -0.02007102 0.006499946 0.004889965 -0.02705353 0.006499946 0.004889965 -0.03750091 0.006499946 0.004889965 -0.03757542 0.006499946 0.004889965 -0.03842097 0.006499946 0.004889965 -0.03909999 0.006499946 0.004367768 -0.007251322 0.005999982 0.004451751 -0.007343471 0.005999982 0.01128 -0.004840075 0.005999982 0.003829956 -0.03854995 0.005999982 0.009572863 -0.03854995 0.005999982 0.00412321 -0.03467738 0.005999982 0.004197239 -0.03461045 0.005999982 0.003629982 -0.007009983 0.005999982 0.005139231 -0.005073726 0.005999982 0.005079746 -0.004836857 0.005999982 0.004451751 -0.0100246 0.005999982 0.004479944 -0.01014 0.005999982 0.004478812 -0.01016467 0.005999982 0.01128 -0.03774994 0.005999982 0.004438638 -0.01027774 0.005999982 0.004346489 -0.01036179 0.005999982 0.01066279 -0.03774994 0.005999982 0.01056933 -0.03777253 0.005999982 0.01128 0.02274996 0.005999982 0.01066279 0.02274996 0.005999982 0.004207432 0.01699322 0.005999982 0.01060342 0.02275842 0.005999982 0.01052141 0.02280855 0.005999982 0.004197239 0.01238948 0.005999982 0.00562334 0.01069498 0.005999982 0.004228591 0.01247501 0.005999982 0.01128 0.01020008 0.005999982 0.004229962 0.01249998 0.005999982 0.005281329 -0.005238234 0.005999982 0.003662705 -0.03846049 0.005999982 0.003736734 -0.03852742 0.005999982 0.003631353 -0.03837496 0.005999982 0.003629982 -0.03834998 0.005999982 0.003629982 -0.03489995 0.005999982 0.00412321 0.01232254 0.005999982 0.005205929 0.01052916 0.005999982 0.00538218 0.01065635 0.005999982 0.004341065 -0.007683932 0.005999982 0.004384517 -0.009943187 0.005999982 0.004431843 -0.0076074 0.005999982 0.004474937 -0.00751096 0.005999982 0.004479944 -0.007459998 0.005999982 0.003829956 -0.01038998 0.005999982 0.004029989 -0.02989995 0.005999982 0.004229962 -0.01038998 0.005999982 0.004054963 -0.02990132 0.005999982 0.009723067 -0.03852701 0.005999982 0.009926438 -0.03840351 0.005999982 0.004228591 -0.03452497 0.005999982 0.01052141 -0.03780853 0.005999982 0.003719449 -0.03473269 0.005999982 0.003652513 -0.03480672 0.005999982 0.003804981 -0.03470134 0.005999982 0.003829956 -0.03469997 0.005999982 0.004029989 -0.03469997 0.005999982 0.00562334 -0.005334973 0.005999982 0.005468666 -0.005324602 0.005999982 0.004254639 -0.007211148 0.005999982 0.004229962 -0.007209956 0.005999982 0.003829956 -0.007209956 0.005999982 0.003736734 -0.007187426 0.005999982 0.003662705 -0.00712049 0.005999982 0.003631353 -0.007034957 0.005999982 0.004029989 0.01229995 0.005999982 0.005079746 0.01019686 0.005999982 0.005103588 0.01035004 0.005999982 0.004229962 -0.009736835 0.005999982 0.004234015 -0.009777665 0.005999982 0.004268467 -0.009854793 0.005999982 0.004229962 -0.03437638 0.005999982 0.004229962 -0.0345 0.005999982 0.009926438 0.02340352 0.005999982 0.00980395 0.02349352 0.005999982 0.004140496 0.01706725 0.005999982 0.009572863 0.02354997 0.005999982 0.004054963 0.0170986 0.005999982 0.003829956 0.02354997 0.005999982 0.004029989 0.01709997 0.005999982 0.004306316 -0.007705688 0.005999982 0.004252552 -0.007770836 0.005999982 0.004229962 -0.007863104 0.005999982 0.004341065 -0.009916007 0.005999982 0.004140496 -0.02993273 0.005999982 0.004207432 -0.03000676 0.005999982 0.003719449 0.02351725 0.005999982 0.003652513 0.02344322 0.005999982 0.003804981 0.0235486 0.005999982 0.003629982 0.02335 0.005999982 0.003662705 0.0171895 0.005999982 0.003736734 0.01712256 0.005999982 0.003631353 0.01727497 0.005999982 0.003829956 0.01709997 0.005999982 0.003629982 0.01729995 0.005999982 0.004229962 0.0126236 0.005999982 0.003719449 0.01226723 0.005999982 0.003652513 0.0121932 0.005999982 0.003804981 0.01229858 0.005999982 0.003629982 0.01209998 0.005999982 0.003829956 0.01229995 0.005999982 0.003719449 -0.0104227 0.005999982 0.003652513 -0.01049673 0.005999982 0.003804981 -0.01039135 0.005999982 0.003629982 -0.01058995 0.005999982 0.003662705 -0.02981048 0.005999982 0.003736734 -0.02987742 0.005999982 0.003631353 -0.02972495 0.005999982 0.003829956 -0.02989995 0.005999982 0.003629982 -0.02969998 0.005999982 0.007017731 0.006652593 0.01899999 0.007101774 0.006744742 0.01899999 0.004346489 -0.003738164 0.01899999 0.004438638 -0.003822207 0.01899999 0.007088661 0.007299065 0.01899999 0.006996512 0.007383048 0.01899999 0.007101774 0.01014477 0.01899999 0.004197239 -0.02548944 0.01899999 0.00412321 -0.02542251 0.01899999 0.004451751 -0.006756484 0.01899999 0.01128 -0.03774994 0.01899999 0.007129967 0.01026129 0.01899999 0.01128 0.02274996 0.01899999 0.007129967 0.01056128 0.01899999 0.007128775 0.01058596 0.01899999 0.01052141 0.02280855 0.01899999 0.01056933 0.02277255 0.01899999 0.004228591 0.02142494 0.01899999 0.006879985 0.007411241 0.01899999 0.006404876 0.007411241 0.01899999 0.006404876 0.01001125 0.01899999 0.003829956 0.01081126 0.01899999 0.004029989 0.01679998 0.01899999 0.006879985 0.01081126 0.01899999 0.004054963 0.01680135 0.01899999 0.006996512 0.01078307 0.01899999 0.007088661 0.01069903 0.01899999 0.01066279 0.02274996 0.01899999 0.01066279 -0.03774994 0.01899999 0.01060342 -0.0377584 0.01899999 0.004207432 -0.03009319 0.01899999 0.007129967 0.006861269 0.01899999 0.007129967 0.007161259 0.01899999 0.007128775 0.007185935 0.01899999 0.006879985 0.01001125 0.01899999 0.006904661 0.01001244 0.01899999 0.007017731 0.01005262 0.01899999 0.009926795 0.02340316 0.01899999 0.003662705 0.02346044 0.01899999 0.003736734 0.02352744 0.01899999 0.003631353 0.02337497 0.01899999 0.003829956 0.02354997 0.01899999 0.003629982 0.02335 0.01899999 0.003629982 0.02179998 0.01899999 0.004479944 -0.006639957 0.01899999 0.004228591 -0.02557498 0.01899999 0.004474937 -0.006588935 0.01899999 0.004451751 -0.004075288 0.01899999 0.004431843 -0.006492555 0.01899999 0.004384517 -0.004156708 0.01899999 0.004341065 -0.006416022 0.01899999 0.004479944 -0.003959953 0.01899999 0.004478812 -0.003935277 0.01899999 0.004140496 -0.03016722 0.01899999 0.009572386 -0.03854995 0.01899999 0.004054963 -0.03019857 0.01899999 0.003829956 -0.03854995 0.01899999 0.004029989 -0.0302 0.01899999 0.01052141 -0.03780853 0.01899999 0.009926795 -0.03840315 0.01899999 0.00980401 -0.03849339 0.01899999 0.003662705 0.006521761 0.01899999 0.003736734 0.006588697 0.01899999 0.003631353 0.006436228 0.01899999 0.003829956 0.006611287 0.01899999 0.003629982 0.006411254 0.01899999 0.006879985 0.006611287 0.01899999 0.003719449 0.01084399 0.01899999 0.003652513 0.01091808 0.01899999 0.003804981 0.01081264 0.01899999 0.003629982 0.0110113 0.01899999 0.003662705 0.01671046 0.01899999 0.003736734 0.01677739 0.01899999 0.003631353 0.01662498 0.01899999 0.003829956 0.01679998 0.01899999 0.003629982 0.01659995 0.01899999 0.004140496 0.0168327 0.01899999 0.004207432 0.01690673 0.01899999 0.004229962 0.01699995 0.01899999 0.004229962 0.01712357 0.01899999 0.003719449 0.02163273 0.01899999 0.003652513 0.02170675 0.01899999 0.003804981 0.02160137 0.01899999 0.003829956 0.02159994 0.01899999 0.004029989 0.02159994 0.01899999 0.00412321 0.02157741 0.01899999 0.004229962 -0.02999997 0.01899999 0.004229962 -0.02987641 0.01899999 0.004229962 -0.004363059 0.01899999 0.004234015 -0.00432229 0.01899999 0.004268467 -0.004245162 0.01899999 0.003719449 -0.003677248 0.01899999 0.003652513 -0.003603219 0.01899999 0.003804981 -0.0037086 0.01899999 0.003629982 -0.003509998 0.01899999 0.003829956 -0.003709971 0.01899999 0.004229962 -0.003709971 0.01899999 0.006904661 0.00661242 0.01899999 0.004229962 0.02127635 0.01899999 0.004229962 0.02139997 0.01899999 0.004197239 0.02151048 0.01899999 0.009572386 0.02354997 0.01899999 0.009722948 0.0235269 0.01899999 0.004229962 -0.02572357 0.01899999 0.004229962 -0.02559995 0.01899999 0.004306316 -0.006394267 0.01899999 0.004252552 -0.006329119 0.01899999 0.004229962 -0.006236851 0.01899999 0.004341065 -0.004183948 0.01899999 0.003719449 -0.03851723 0.01899999 0.003652513 -0.0384432 0.01899999 0.003804981 -0.03854858 0.01899999 0.003629982 -0.03834998 0.01899999 0.003662705 -0.03028947 0.01899999 0.003736734 -0.03022253 0.01899999 0.003631353 -0.030375 0.01899999 0.003829956 -0.0302 0.01899999 0.003629982 -0.03039997 0.01899999 0.003662705 -0.006979465 0.01899999 0.003736734 -0.006912529 0.01899999 0.003631353 -0.007064998 0.01899999 0.003829956 -0.006889998 0.01899999 0.003629982 -0.007089972 0.01899999 0.004229962 -0.006889998 0.01899999 0.003629982 -0.02519994 0.01899999 0.003719449 -0.02536725 0.01899999 0.003652513 -0.02529317 0.01899999 0.003804981 -0.02539861 0.01899999 0.003829956 -0.02539998 0.01899999 0.004029989 -0.02539998 0.01899999 0.004254639 -0.006888806 0.01899999 0.004367768 -0.006848633 0.01899999 0.006289958 -0.004984557 0.01250028 0.006289958 -0.004984557 0.005499958 0.007289946 -0.004914641 0.01249998 0.007106661 -0.004927456 0.005499958 0.007106661 -0.001799941 0.005499958 0.007289946 -0.002044439 0.01249998 0.01217997 -0.02027249 0.01899999 0.01207965 0.02258473 0.01938784 0.01207965 -0.03758674 0.01938784 0.01217997 -0.03758674 0.01899999 0.01180392 0.02258473 0.01967841 0.01180392 -0.03758674 0.01967841 0.01142185 0.02258473 0.01979887 0.01142185 -0.03758674 0.01979887 0.01217997 -0.02027249 0.005999982 0.01217997 -0.03758674 0.005999982 0.01207965 -0.03758674 0.005612134 0.01207965 0.02258473 0.005612134 0.01180392 -0.03758674 0.005321562 0.01180392 0.02258473 0.005321562 0.01142185 -0.03758674 0.005201041 0.01142185 0.02258473 0.005201041 0.01217997 0.02258473 0.005999982 0.01070088 -0.007653534 0.0139901 0.01070088 -0.007374942 0.01249998 0.01120084 -0.007374942 0.01249998 0.01192998 0.02249997 0.01249998 0.01217997 0.01999998 0.01683008 0.01192998 0.01836824 0.01742398 0.01217997 0.01836824 0.01742398 0.01192998 0.01499998 0.01683008 0.01192998 0.01280152 0.01078987 0.01217997 0.01280152 0.01078987 0.01192998 0.01366972 0.009286046 0.01192998 0.01499998 0.008169829 0.01217997 -0.02419996 0.01304996 0.01217997 -0.023925 0.01297628 0.01217997 -0.02372366 0.012775 0.01217997 -0.0248 0.01304996 0.01217997 0.02434897 0.009724974 0.01217997 0.02434897 0.00776416 0.01187998 0.02243524 0.01330202 0.01192998 0.02243524 0.01330202 0.01187998 0.02224266 0.01408332 0.01192998 0.02224266 0.01408332 0.01187998 0.02192723 0.01482361 0.01192998 0.02192723 0.01482361 0.01187998 0.02149718 0.0155037 0.01192998 0.02149718 0.0155037 0.01192998 0.0209636 0.016106 0.01192998 0.02034032 0.01661491 0.01192998 0.01964342 0.01701724 0.01192998 0.01889103 0.01730257 0.01192998 0.01810264 0.0174635 0.01192998 0.01729863 0.01749593 0.01192998 0.01649987 0.01739895 0.01187998 0.01572692 0.01717507 0.01192998 0.01572692 0.01717507 0.01192998 0.01433777 0.01637297 0.01192998 0.0137574 0.01581561 0.01187998 0.01327401 0.0151723 0.01192998 0.01327401 0.0151723 0.01192998 0.01290005 0.01445978 0.01192998 0.01264524 0.01369655 0.01187998 0.0125162 0.01290231 0.01192998 0.0125162 0.01290231 0.01187998 0.0125162 0.01209765 0.01192998 0.0125162 0.01209765 0.01192998 0.01264524 0.01130342 0.01187998 0.01290005 0.01054012 0.01192998 0.01290005 0.01054012 0.01187998 0.01327401 0.009827613 0.01192998 0.01327401 0.009827613 0.01187998 0.0137574 0.00918436 0.01192998 0.0137574 0.00918436 0.01187998 0.01433777 0.008626937 0.01192998 0.01433777 0.008626937 0.01187998 0.01499998 0.008169829 0.01192998 0.01572692 0.007824897 0.01187998 0.01649987 0.007601022 0.01192998 0.01649987 0.007601022 0.01187998 0.01729863 0.007504045 0.01192998 0.01729863 0.007504045 0.01192998 0.01810264 0.007536411 0.01187998 0.01889103 0.007697403 0.01192998 0.01889103 0.007697403 0.01187998 0.01964342 0.00798273 0.01192998 0.01964342 0.00798273 0.01192998 0.02034032 0.008385062 0.01192998 0.0209636 0.008893966 0.01187998 0.02149718 0.009496271 0.01192998 0.02149718 0.009496271 0.01187998 0.02192723 0.01017636 0.01192998 0.02192723 0.01017636 0.01187998 0.02224266 0.01091665 0.01192998 0.02224266 0.01091665 0.01187998 0.02243524 0.01169794 0.01192998 0.02243524 0.01169794 0.01132601 0.03251558 0.01253783 0.01132601 0.03251165 0.01253926 0.01132673 0.03249996 0.01249998 0.01132601 0.0325194 0.01253604 0.01132601 0.03252297 0.0125339 0.01132601 0.03252637 0.01253134 0.01132601 0.03252941 0.01252847 0.01132601 0.03253215 0.01252532 0.01132601 0.03253459 0.01252186 0.01132601 0.03253668 0.01251822 0.01132601 0.03253835 0.01251435 0.01132601 0.0325396 0.01251035 0.01132601 0.0325405 0.01250624 0.01132601 0.03254091 0.01250207 0.01132601 0.03254091 0.0124979 0.01132601 0.0325405 0.01249366 0.01132601 0.0325396 0.01248955 0.01132601 0.03253835 0.01248556 0.01132601 0.03253668 0.01248174 0.01132601 0.03253459 0.01247805 0.01132601 0.03253215 0.01247465 0.01132601 0.03252941 0.01247149 0.01132601 0.03252637 0.01246857 0.01132601 0.03252297 0.01246607 0.01132601 0.0325194 0.01246386 0.01132601 0.03251558 0.01246207 0.01132601 0.03251165 0.0124607 0.01132601 0.03250753 0.01245969 0.01132601 0.03250342 0.01245915 0.0112915 0.03249996 0.01279097 0.0112915 0.03252428 0.01278996 0.01129812 0.03249996 0.01276165 0.01130503 0.03249996 0.01272743 0.01130503 0.03251898 0.0127266 0.01130837 0.03249996 0.01270872 0.01131635 0.03249996 0.01265662 0.0113157 0.03251349 0.01266086 0.01132601 0.03250342 0.01254081 0.01132559 0.03249996 0.01255184 0.01132601 0.03250753 0.01254022 0.01131933 0.03249996 0.01236778 0.0113157 0.03249996 0.01233851 0.0113157 0.03251349 0.01233905 0.011312 0.03249996 0.01231324 0.01130503 0.03249996 0.01227253 0.01130503 0.03251898 0.01227331 0.01130187 0.03249996 0.01225638 0.01129013 0.03249996 0.01220321 0.0112915 0.03252428 0.01220995 0.01132202 0.03249996 0.0123946 0.01132601 0.03249996 0.01245898 0.0113241 0.03249996 0.01242095 0.01132202 0.03250879 0.01239502 0.01132643 0.03249996 0.01247328 0.01124382 0.03296297 0.0124762 0.01127135 0.0328682 0.01248109 0.01124382 0.03296363 0.01249998 0.01127135 0.03270709 0.01219493 0.01132202 0.03251945 0.01239645 0.01132202 0.03252995 0.01239901 0.01132202 0.03254014 0.01240259 0.01132202 0.03254991 0.01240724 0.01132202 0.03255915 0.01241284 0.01132202 0.03256773 0.01241934 0.01132202 0.03257566 0.01242673 0.01132202 0.03258275 0.01243484 0.01132202 0.03258901 0.01244366 0.01132202 0.03259432 0.01245307 0.01132202 0.03259861 0.01246297 0.01132202 0.03260189 0.01247328 0.01132202 0.03260409 0.01248383 0.01132202 0.03260517 0.01249456 0.01132202 0.03260517 0.01250535 0.01132202 0.03260409 0.01251614 0.01132202 0.03260189 0.01252669 0.01132202 0.03259861 0.012537 0.01132202 0.03259432 0.01254689 0.01132202 0.03258275 0.01256513 0.01132202 0.03257566 0.01257324 0.01132202 0.03256773 0.01258063 0.01132202 0.03255915 0.01258713 0.01132202 0.03254991 0.01259273 0.01132202 0.03254014 0.01259732 0.01132202 0.03252995 0.01260095 0.01132202 0.03251945 0.01260352 0.01132202 0.03250879 0.01260495 0.01132208 0.03249996 0.01260495 0.0113157 0.0325616 0.01235067 0.0113157 0.0325765 0.01235777 0.0113157 0.03259068 0.01236635 0.0113157 0.03260385 0.01237636 0.0113157 0.03261601 0.01238763 0.0113157 0.03262686 0.01240015 0.0113157 0.03263646 0.01241362 0.0113157 0.03264456 0.01242804 0.0113157 0.03265118 0.01244324 0.0113157 0.03265619 0.01245903 0.0113157 0.03265953 0.01247525 0.0113157 0.03266125 0.0124917 0.0113157 0.03266125 0.01250827 0.0113157 0.03265953 0.01252472 0.0113157 0.03265619 0.01254093 0.0113157 0.03261601 0.01261228 0.0113157 0.03260385 0.0126236 0.0113157 0.03259068 0.01263356 0.01130503 0.03258675 0.0122897 0.01130503 0.03260779 0.01229971 0.01130503 0.03262776 0.01231181 0.01130503 0.03264635 0.01232588 0.01130503 0.0326634 0.01234179 0.01130503 0.03267872 0.01235932 0.01130503 0.03269219 0.01237839 0.01130503 0.03270363 0.01239871 0.01130503 0.03272712 0.01251161 0.01130503 0.03271996 0.01255762 0.01130503 0.0326634 0.01265817 0.01130503 0.03264635 0.01267409 0.01130503 0.03262776 0.01268815 0.0112915 0.03258287 0.01222103 0.0112915 0.03261101 0.01223093 0.0112915 0.03263795 0.01224374 0.0112915 0.03266346 0.01225918 0.0112915 0.03268724 0.01227718 0.0112915 0.03270906 0.01229757 0.0112915 0.03274589 0.01234436 0.0112915 0.03278756 0.01254457 0.0112915 0.03278148 0.01257377 0.01134175 0.03213542 0.01034218 0.01104176 0.0322321 0.01042217 0.01134175 0.03226459 0.01044106 0.01104176 0.03226459 0.01044106 0.01134175 0.03241866 0.01049333 0.01104176 0.03241866 0.01049333 0.01134175 0.03258132 0.01049333 0.01104176 0.03258132 0.01049333 0.01134175 0.03204488 0.01020705 0.01104176 0.03204488 0.01020705 0.01104176 0.03213542 0.01034218 0.01104176 0.03042221 0.01223212 0.01134175 0.0304411 0.01226454 0.01104176 0.03042221 0.01276779 0.01134175 0.0304411 0.01273536 0.01104176 0.0304411 0.01273536 0.01104176 0.0304411 0.01226454 0.01104176 0.03463715 0.01284402 0.01134175 0.03463715 0.01284402 0.01104176 0.03457778 0.01276779 0.01134175 0.03453999 0.01269602 0.01134175 0.03460651 0.01219153 0.01104176 0.03457778 0.01223218 0.01104176 0.03453999 0.01269602 0.01134175 0.03489524 0.01201111 0.01104176 0.03489524 0.01201111 0.01134175 0.03473865 0.01207375 0.01104176 0.03473865 0.01207375 0.01104176 0.03460651 0.01219153 0.01132172 0.03191 0.01249998 0.01134175 0.03191 0.01249998 0.01132172 0.03193885 0.01231765 0.01134175 0.03193885 0.01231765 0.01132172 0.03202265 0.0121532 0.01134175 0.03202265 0.0121532 0.01132172 0.03215318 0.01202267 0.01134175 0.03215318 0.01202267 0.01132172 0.03231763 0.01193886 0.01134175 0.03231763 0.01193886 0.01132172 0.03249996 0.01190996 0.01134175 0.03249996 0.01190996 0.01132172 0.03268229 0.01193886 0.01134175 0.03268229 0.01193886 0.01132172 0.03284674 0.01202267 0.01134175 0.03284674 0.01202267 0.01132172 0.03297728 0.0121532 0.01134175 0.03297728 0.0121532 0.01132172 0.03306108 0.01231765 0.01134175 0.03306108 0.01231765 0.01132172 0.03308993 0.01249998 0.01132172 0.03306108 0.01268231 0.01134175 0.03306108 0.01268231 0.01132172 0.03297728 0.01284676 0.01134175 0.03297728 0.01284676 0.01132172 0.03284674 0.0129773 0.01134175 0.03284674 0.0129773 0.01132172 0.03268229 0.0130611 0.01134175 0.03268229 0.0130611 0.01132172 0.03249996 0.01308995 0.01134175 0.03249996 0.01308995 0.01132172 0.03231763 0.0130611 0.01134175 0.03231763 0.0130611 0.01132172 0.03215318 0.0129773 0.01134175 0.03215318 0.0129773 0.01132172 0.03202265 0.01284676 0.01134175 0.03202265 0.01284676 0.01132172 0.03193885 0.01268231 0.01134175 0.03193885 0.01268231 0.01212996 0.03290128 0.008682012 0.01212996 0.0360071 0.01406145 0.01212996 0.03560578 0.0147565 0.01212996 0.03506875 0.0153529 0.01212996 0.03058046 0.01582467 0.01212996 0.02899289 0.01406145 0.01212996 0.02866095 0.01249998 0.01212996 0.02763366 0.01380461 0.01212996 0.02778273 0.01351445 0.01212996 0.0292536 0.01705878 0.01212996 0.0274018 0.01403391 0.01212996 0.0296474 0.01736932 0.01212996 0.02996182 0.0175814 0.01212996 0.03514242 0.007811844 0.01212996 0.03551834 0.00743395 0.01212996 0.04026484 0.0156911 0.01212996 0.0274018 0.010966 0.01212996 0.02711004 0.01082026 0.01212996 0.0284 0.006372213 0.01212996 0.0401979 0.01619964 0.01212996 0.04026484 0.00833708 0.01212996 0.02643513 0.009899973 0.01212996 0.02643513 0.00833708 0.01212996 0.02650207 0.007828533 0.01212996 0.02789145 0.006439149 0.01212996 0.02655601 0.01463228 0.01212996 0.02678954 0.01435279 0.01212996 0.02711004 0.0141797 0.01212996 0.03033363 0.01765596 0.01212996 0.03180789 0.006656587 0.01212996 0.03201669 0.006971359 0.01212996 0.03149425 0.006446123 0.01212996 0.03112381 0.006372213 0.01212996 0.02783411 0.01319241 0.01212996 0.02879571 0.01685398 0.01212996 0.02830171 0.01676738 0.01212996 0.0277512 0.01665967 0.01212996 0.02725356 0.01640075 0.01212996 0.03829997 0.01765596 0.01212996 0.02648299 0.0102002 0.01212996 0.02662193 0.01047056 0.01212996 0.02683812 0.01068437 0.01212996 0.02669835 0.007354617 0.01212996 0.02701061 0.006947696 0.01212996 0.02741754 0.006635487 0.01212996 0.04000157 0.0166735 0.01212996 0.03968936 0.01708042 0.01212996 0.03228157 0.00743395 0.01212996 0.03578323 0.006971359 0.01212996 0.03599208 0.006656587 0.01212996 0.03630572 0.006446123 0.01212996 0.03880852 0.006439149 0.01212996 0.03928238 0.006635487 0.01212996 0.03968936 0.006947696 0.01212996 0.03880852 0.01758897 0.01212996 0.03928238 0.01739269 0.01212996 0.0366761 0.006372213 0.01212996 0.03829997 0.006372213 0.01212996 0.0401979 0.007828533 0.01212996 0.04000157 0.007354617 0.01212996 0.02644276 0.01497852 0.01212996 0.02657157 0.01552444 0.01212996 0.02684938 0.01601177 0.01212996 0.03311866 0.008079171 0.01212996 0.0326575 0.007811844 1.22377e-4 -0.004673361 0.002016365 1.22377e-4 -0.004673361 0.002091228 -0.003669977 -0.004772663 0.002157449 -0.003669977 -0.004772663 0.002709746 -0.006344735 -0.004842698 0.002475738 -0.006344735 -0.004842698 0.001903474 8.62531e-4 -0.006899952 0.002078354 -0.002637386 -0.006899952 0.002139449 8.62532e-4 -0.006899952 0.02292162 -0.002637386 -0.006899952 0.02286052 -0.002637386 -0.005099952 0.002139449 8.62532e-4 -0.005099952 0.002078354 -0.002637386 -0.005099952 0.02286052 8.62532e-4 -0.005099952 0.02292162 8.62531e-4 -0.009899973 0.002078354 -0.002637386 -0.009899973 0.002139449 8.62532e-4 -0.009899973 0.02292162 -0.002637386 -0.009899973 0.02286052 -0.002637386 -0.008099973 0.002139449 8.62532e-4 -0.008099973 0.002078354 -0.002637386 -0.008099973 0.02286052 8.62532e-4 -0.008099973 0.02292162 8.62531e-4 -0.01289999 0.002078354 -0.002637386 -0.01289999 0.002139449 8.62532e-4 -0.01289999 0.02292162 -0.002637386 -0.01289999 0.02286052 -0.002637386 -0.01109999 0.002139449 8.62532e-4 -0.01109999 0.002078354 -0.002637386 -0.01109999 0.02286052 8.62532e-4 -0.01109999 0.02292162 8.62531e-4 -0.01589995 0.002078354 -0.002637386 -0.01589995 0.002139449 8.62532e-4 -0.01589995 0.02292162 -0.002637386 -0.01589995 0.02286052 -0.002637386 -0.01409995 0.002139449 8.62532e-4 -0.01409995 0.002078354 -0.002637386 -0.01409995 0.02286052 8.62532e-4 -0.01409995 0.02292162 8.62531e-4 -0.01889997 0.002078354 -0.002637386 -0.01889997 0.002139449 8.62532e-4 -0.01889997 0.02292162 -0.002637386 -0.01889997 0.02286052 -0.002637386 -0.01709997 0.002139449 8.62532e-4 -0.01709997 0.002078354 -0.002637386 -0.01709997 0.02286052 8.62532e-4 -0.01709997 0.02292162 -0.002637386 -0.02009999 0.002139449 8.62532e-4 -0.02009999 0.002078354 -0.002637386 -0.02009999 0.02286052 8.62532e-4 -0.02009999 0.02292162 8.62531e-4 -0.02489995 0.002078354 -0.002637386 -0.02489995 0.002139449 8.62566e-4 -0.02489995 0.02292162 -0.002637386 -0.02489995 0.02286052 -0.002637386 -0.02309995 0.002139449 8.62526e-4 -0.02309995 0.002078354 -0.002637386 -0.02309995 0.02286052 8.62524e-4 -0.02309995 0.02292162 8.62531e-4 -0.02789998 0.002078354 -0.002637386 -0.02789998 0.002139449 8.62564e-4 -0.02789998 0.02292162 -0.002637386 -0.02789998 0.02286052 -0.002637386 -0.02609997 0.002139449 8.62532e-4 -0.02609997 0.002078354 -0.002637386 -0.02609997 0.02286052 8.62566e-4 -0.02609997 0.02292162 0.003315031 -0.0032925 0.002035558 0.003429949 -0.003290474 0.002033531 0.003249406 -0.00335747 0.00203669 0.003429949 -0.007499992 0.002033531 0.002653121 -0.003848791 0.002047061 0.002314269 -0.004061996 0.002053022 0.001641988 -0.005550026 0.002064704 0.001641988 -0.006449937 0.002064704 0.001762509 -0.005999982 0.002062618 0.002596259 -0.007499992 0.002048075 -0.003416895 -0.006449878 0.002153038 -0.003669977 -0.007499992 0.002157449 -0.003537416 -0.005999922 0.002155125 -0.003416836 -0.005549967 0.002153038 0.001312553 -0.006779372 0.002070486 0.001806378 -0.004311859 0.002061843 0.001312613 -0.005220592 0.002070486 -0.003087401 -0.005220532 0.002147257 -0.00308746 -0.006779372 0.002147257 -0.003416895 -0.009449899 0.002153038 -0.003669977 -0.01049995 0.002157449 -0.003537416 -0.008999943 0.002155125 -0.003416836 -0.008549988 0.002153038 -0.003087401 -0.008220553 0.002147257 0.001641988 -0.008550047 0.002064704 0.001762509 -0.009000003 0.002062618 0.002596259 -0.01049995 0.002048075 0.001641988 -0.009449958 0.002064704 0.001312553 -0.009779393 0.002070486 0.001312613 -0.008220613 0.002070486 -0.00308746 -0.009779334 0.002147257 -0.003416895 -0.01244992 0.002153038 -0.003669977 -0.01349997 0.002157449 -0.003537416 -0.01199996 0.002155125 -0.003416836 -0.01155 0.002153038 -0.003087401 -0.01122057 0.002147257 0.001641988 -0.01155006 0.002064704 0.001762509 -0.01200002 0.002062618 0.002596259 -0.01349997 0.002048075 0.001641988 -0.01244997 0.002064704 0.001312553 -0.01277941 0.002070486 0.001312613 -0.01122057 0.002070486 -0.00308746 -0.01277935 0.002147257 -0.003416895 -0.01544988 0.002153038 -0.003669977 -0.01649999 0.002157449 -0.003537416 -0.01499992 0.002155125 -0.003416836 -0.01454997 0.002153038 -0.003087401 -0.01422053 0.002147257 0.001641988 -0.01455003 0.002064704 0.001762509 -0.01499998 0.002062618 0.002596259 -0.01649999 0.002048075 0.001641988 -0.01544994 0.002064704 0.001312553 -0.01577937 0.002070486 0.001312613 -0.01422059 0.002070486 -0.00308746 -0.01577937 0.002147257 -0.003416895 -0.0184499 0.002153038 -0.003669977 -0.01949995 0.002157449 -0.003537416 -0.01799994 0.002155125 -0.003416836 -0.01754999 0.002153038 -0.003087401 -0.01722055 0.002147257 0.001641988 -0.01755005 0.002064704 0.001762509 -0.018 0.002062618 0.002596259 -0.01949995 0.002048075 0.001641988 -0.01844996 0.002064704 0.001312553 -0.01877939 0.002070486 0.001312613 -0.01722061 0.002070486 -0.00308746 -0.01877933 0.002147257 -0.003416895 -0.02144992 0.002153038 -0.003669977 -0.02249997 0.002157449 -0.003537416 -0.02099996 0.002155125 -0.003416836 -0.02055001 0.002153038 -0.003087401 -0.02022057 0.002147257 0.001641988 -0.02055007 0.002064704 0.001762509 -0.02100002 0.002062618 0.002596259 -0.02249997 0.002048075 0.001641988 -0.02144998 0.002064704 0.001312553 -0.02177935 0.002070486 0.001312613 -0.02022057 0.002070486 -0.00308746 -0.02177935 0.002147257 -0.002637386 -0.02189999 0.002139449 8.62531e-4 -0.02189999 0.002078354 -0.003416895 -0.02444988 0.002153038 -0.003669977 -0.02549999 0.002157449 -0.003537416 -0.02399992 0.002155125 -0.003416836 -0.02354997 0.002153038 -0.003087401 -0.02322053 0.002147257 0.001641988 -0.02355003 0.002064704 0.001762509 -0.02399998 0.002062618 0.002596259 -0.02549999 0.002048075 0.001641988 -0.02444994 0.002064704 0.001312553 -0.02477937 0.002070486 0.001312613 -0.02322059 0.002070486 -0.00308746 -0.02477937 0.002147257 -0.003087401 -0.02622056 0.002147257 -0.003416836 -0.02654999 0.002153038 -0.003537416 -0.02699995 0.002155125 -0.003669977 -0.0302 0.002157449 -0.003416895 -0.0274499 0.002153038 -0.00308746 -0.02777934 0.002147257 0.001641988 -0.02655005 0.002064704 0.001762509 -0.02700001 0.002062618 0.002596259 -0.0302 0.002048075 0.001641988 -0.02744996 0.002064704 0.001312613 -0.02622061 0.002070486 0.001312553 -0.0277794 0.002070486 -0.003669977 -0.03249996 0.002157449 0.002596259 -0.03249996 0.002048075 0.003429949 -0.03249996 0.002033531 0.003429949 -0.0302 0.002033531 0.003429949 -0.02549999 0.002033531 0.003429949 -0.02249997 0.002033531 0.003429949 -0.01949995 0.002033531 0.003429949 -0.01649999 0.002033531 0.003429949 -0.01349997 0.002033531 0.003429949 -0.01049995 0.002033531 8.62532e-4 -0.02189999 0.02292162 -0.002637386 -0.02189999 0.02286052 1.22377e-4 0.004673361 0.002091228 1.22377e-4 0.004673361 0.002016365 -0.003669977 0.004772663 0.002157449 -0.006344735 0.004842698 0.001903474 -0.003669977 0.004772663 0.002709746 -0.006344735 0.004842698 0.002475738 8.62531e-4 0.02609997 0.002078354 -0.002637386 0.02609997 0.002139449 8.62529e-4 0.02609997 0.02292162 -0.002637386 0.02609997 0.02286052 -0.002637386 0.02789998 0.002139449 8.62532e-4 0.02789998 0.002078354 -0.002637386 0.02789998 0.02286052 8.62566e-4 0.02789998 0.02292162 -0.002637386 0.02489995 0.002139449 8.62532e-4 0.02489995 0.002078354 -0.002637386 0.02489995 0.02286052 8.62532e-4 0.02489995 0.02292162 8.62531e-4 0.02009999 0.002078354 -0.002637386 0.02009999 0.002139449 8.62532e-4 0.02009999 0.02292162 -0.002637386 0.02009999 0.02286052 -0.002637386 0.02189999 0.002139449 8.62532e-4 0.02189999 0.002078354 -0.002637386 0.02189999 0.02286052 8.62532e-4 0.02189999 0.02292162 8.62531e-4 0.01709997 0.002078354 -0.002637386 0.01709997 0.002139449 8.62532e-4 0.01709997 0.02292162 -0.002637386 0.01709997 0.02286052 -0.002637386 0.01889997 0.002139449 8.62532e-4 0.01889997 0.002078354 -0.002637386 0.01889997 0.02286052 8.62532e-4 0.01889997 0.02292162 8.62531e-4 0.01409995 0.002078354 -0.002637386 0.01409995 0.002139449 8.62532e-4 0.01409995 0.02292162 -0.002637386 0.01409995 0.02286052 -0.002637386 0.01589995 0.002139449 8.62532e-4 0.01589995 0.002078354 -0.002637386 0.01589995 0.02286052 8.62532e-4 0.01589995 0.02292162 8.62531e-4 0.01109999 0.002078354 -0.002637386 0.01109999 0.002139449 8.62532e-4 0.01109999 0.02292162 -0.002637386 0.01109999 0.02286052 -0.002637386 0.01289999 0.002139449 8.62532e-4 0.01289999 0.002078354 -0.002637386 0.01289999 0.02286052 8.62532e-4 0.01289999 0.02292162 8.62531e-4 0.008099973 0.002078354 -0.002637386 0.008099973 0.002139449 8.62532e-4 0.008099973 0.02292162 -0.002637386 0.008099973 0.02286052 -0.002637386 0.009899973 0.002139449 8.62532e-4 0.009899973 0.002078354 -0.002637386 0.009899973 0.02286052 8.62532e-4 0.009899973 0.02292162 8.62531e-4 0.005099952 0.002078354 -0.002637386 0.005099952 0.002139449 8.62532e-4 0.005099952 0.02292162 -0.002637386 0.005099952 0.02286052 -0.002637386 0.006899952 0.002139449 8.62532e-4 0.006899952 0.002078354 -0.002637386 0.006899952 0.02286052 8.62532e-4 0.006899952 0.02292162 0.003147006 0.003454327 0.002038478 0.002536594 0.003926813 0.002049088 0.002596259 0.004135549 0.002048075 -0.003087401 0.0277794 0.002147257 -0.003416836 0.02744996 0.002153038 -0.003669977 0.03042769 0.002157449 -0.003537416 0.02700001 0.002155125 -0.003669977 0.02549999 0.002157449 -0.003416895 0.02655005 0.002153038 0.001641988 0.0274499 0.002064704 0.002596259 0.03053706 0.002048075 0.001762509 0.02699995 0.002062618 0.002596259 0.02549999 0.002048075 0.001641988 0.02654999 0.002064704 0.001312553 0.02622056 0.002070486 0.001312613 0.02777934 0.002070486 -0.00308746 0.02622061 0.002147257 -0.003087401 0.006779372 0.002147257 -0.003416836 0.006449937 0.002153038 -0.003669977 0.007499992 0.002157449 -0.003537416 0.005999982 0.002155125 -0.003416895 0.005550026 0.002153038 0.001312553 0.005220532 0.002070486 0.001641988 0.005549967 0.002064704 0.001762509 0.005999922 0.002062618 0.002596259 0.007499992 0.002048075 0.001641988 0.006449878 0.002064704 0.001312613 0.006779372 0.002070486 0.002180039 0.004135549 0.002055346 0.001182198 0.004523038 0.002072751 -0.00308746 0.005220592 0.002147257 0.002314269 0.004061937 0.002053022 -0.003416895 0.02355003 0.002153038 -0.003669977 0.02249997 0.002157449 -0.003537416 0.02399998 0.002155125 -0.003416836 0.02444994 0.002153038 -0.003087401 0.02477937 0.002147257 0.001641988 0.02444988 0.002064704 0.001762509 0.02399992 0.002062618 0.002596259 0.02249997 0.002048075 0.001641988 0.02354997 0.002064704 0.001312553 0.02322053 0.002070486 0.001312613 0.02477937 0.002070486 -0.00308746 0.02322059 0.002147257 -0.002637386 0.02309995 0.002139449 8.62531e-4 0.02309995 0.002078354 -0.003416895 0.02055007 0.002153038 -0.003669977 0.01949995 0.002157449 -0.003537416 0.02100002 0.002155125 -0.003416836 0.02144998 0.002153038 -0.003087401 0.02177935 0.002147257 0.001641988 0.02144992 0.002064704 0.001762509 0.02099996 0.002062618 0.002596259 0.01949995 0.002048075 0.001641988 0.02055001 0.002064704 0.001312553 0.02022057 0.002070486 0.001312613 0.02177935 0.002070486 -0.00308746 0.02022057 0.002147257 -0.003416895 0.01755005 0.002153038 -0.003669977 0.01649999 0.002157449 -0.003537416 0.018 0.002155125 -0.003416836 0.01844996 0.002153038 -0.003087401 0.01877939 0.002147257 0.001641988 0.0184499 0.002064704 0.001762509 0.01799994 0.002062618 0.002596259 0.01649999 0.002048075 0.001641988 0.01754999 0.002064704 0.001312553 0.01722055 0.002070486 0.001312613 0.01877933 0.002070486 -0.00308746 0.01722061 0.002147257 -0.003416895 0.01455003 0.002153038 -0.003669977 0.01349997 0.002157449 -0.003537416 0.01499998 0.002155125 -0.003416836 0.01544994 0.002153038 -0.003087401 0.01577937 0.002147257 0.001641988 0.01544988 0.002064704 0.001762509 0.01499992 0.002062618 0.002596259 0.01349997 0.002048075 0.001641988 0.01454997 0.002064704 0.001312553 0.01422053 0.002070486 0.001312613 0.01577937 0.002070486 -0.00308746 0.01422059 0.002147257 -0.003416895 0.01155006 0.002153038 -0.003669977 0.01049995 0.002157449 -0.003537416 0.01200002 0.002155125 -0.003416836 0.01244997 0.002153038 -0.003087401 0.01277941 0.002147257 0.001641988 0.01244992 0.002064704 0.001762509 0.01199996 0.002062618 0.002596259 0.01049995 0.002048075 0.001641988 0.01155 0.002064704 0.001312553 0.01122057 0.002070486 0.001312613 0.01277935 0.002070486 -0.00308746 0.01122057 0.002147257 -0.003416895 0.008550047 0.002153038 -0.003537416 0.009000003 0.002155125 -0.003416836 0.009449958 0.002153038 -0.003087401 0.009779393 0.002147257 0.001641988 0.009449899 0.002064704 0.001762509 0.008999943 0.002062618 0.001641988 0.008549988 0.002064704 0.001312553 0.008220553 0.002070486 0.001312613 0.009779334 0.002070486 -0.00308746 0.008220613 0.002147257 0.003429949 0.03055161 0.002033531 0.003429949 0.02549999 0.002033531 0.003429949 0.02249997 0.002033531 0.003429949 0.01949995 0.002033531 0.003429949 0.01649999 0.002033531 0.003429949 0.01349997 0.002033531 0.003429949 0.01049995 0.002033531 0.003429949 0.007499992 0.002033531 0.003429949 0.004135549 0.002033531 0.003429949 0.003171145 0.002033531 8.62532e-4 0.02309995 0.02292162 -0.002637386 0.02309995 0.02286052 0.003360331 0.03032732 0.02296519 0.003429949 0.03029119 0.02296644 0.003429949 0.03055161 0.02296644 -0.003603696 -0.02719998 0.02284365 -0.003603696 -0.03249996 0.02284365 -0.00339955 -0.02747863 0.02284723 -0.002934694 -0.02784943 0.02285534 -0.003198623 -0.02770352 0.02285069 0.003429949 -0.03249996 0.02296644 0.001092731 -0.02787005 0.02292561 0.003429949 -0.0269916 0.02296644 0.003337144 -0.0270372 0.02296477 0.003429949 -0.02719998 0.02296644 0.002994835 -0.02710533 0.02295881 0.002724826 -0.02713233 0.0229541 0.001731157 -0.02723562 0.02293676 0.00149697 -0.02763837 0.0229327 -0.003416836 0.02654999 0.02284693 -0.003537416 0.02699995 0.02284479 -0.00308746 0.02477937 0.02285265 0.001429975 0.03022772 0.02293151 0.001456737 0.03032773 0.02293199 -0.003603696 0.03042888 0.02284365 0.003429949 0.02249997 0.02296644 0.001762509 0.02399998 0.02293729 0.001641988 0.02355003 0.02293521 0.00299865 0.02754461 0.02295887 0.00175935 0.02707564 0.02293723 0.00333631 0.02760624 0.02296477 0.001677036 0.02661716 0.0229358 0.001429975 0.02769857 0.02293151 0.001312613 0.02777934 0.02292948 -0.003416895 0.0274499 0.02284693 -0.00308746 0.02777934 0.02285265 0.001641988 0.02444994 0.02293521 0.002055704 0.027507 0.02294242 0.001941263 0.02750849 0.02294045 0.001601397 0.02751386 0.02293449 0.001529932 0.03040093 0.02293324 0.001626491 0.03042769 0.02293497 0.001941204 0.03043317 0.02294045 -0.003087401 0.02322053 0.02285265 -0.003416836 0.02354997 0.02284693 -0.003603696 0.02249997 0.02284365 -0.003537416 0.02399992 0.02284479 0.001312613 0.02322059 0.02292948 -0.003416895 0.02444988 0.02284693 0.003429949 0.02765053 0.02296644 0.001376509 0.02626121 0.02293056 0.001312553 0.02477937 0.02292948 9.38243e-4 0.02610313 0.02292293 -0.003087401 0.02622056 0.02285265 0.001641988 0.006449937 0.02293521 0.001762509 0.005999982 0.02293729 0.003429949 0.007499992 0.02296644 0.003429949 0.001235723 0.02296644 0.001641988 0.005550026 0.02293521 0.001312613 0.005220592 0.02292948 0.003411412 0.001249015 0.02296608 0.002724826 0.00137645 0.0229541 -0.003087401 0.005220532 0.02285265 -0.003603696 0 0.02284365 -0.003416836 0.005549967 0.02284693 -0.003537416 0.005999922 0.02284479 -0.003603696 0.007499992 0.02284365 -0.003416895 0.006449878 0.02284693 -0.00308746 0.006779372 0.02285265 0.002423107 0.001401901 0.02294886 0.001429975 0.001525342 0.02293151 0.001312553 0.006779372 0.02292948 0.001312553 -0.008220553 0.02292948 0.001312613 -0.006779372 0.02292948 0.003429949 -0.001031458 0.02296644 0.001641988 -0.005549967 0.02293521 0.001762509 -0.005999922 0.02293729 0.001641988 -0.008549988 0.02293521 0.001762509 -0.008999943 0.02293729 0.003429949 -0.01049995 0.02296644 0.001641988 -0.009449899 0.02293521 0.001641988 -0.006449878 0.02293521 -0.003087401 -0.009779393 0.02285265 -0.003416836 -0.009449958 0.02284693 -0.003603696 -0.01049995 0.02284365 -0.003537416 -0.009000003 0.02284479 -0.003416895 -0.008550047 0.02284693 -0.003537416 -0.005999982 0.02284479 0.001312553 -0.005220532 0.02292948 0.003337144 -0.001076996 0.02296477 0.002994835 -0.001145124 0.02295881 -0.003416895 -0.005550026 0.02284693 -0.00308746 -0.005220592 0.02285265 0.001429975 0 0.02293151 0.001429975 -0.001321017 0.02293151 0.001729965 -0.001275599 0.02293676 0.002724826 -0.001172184 0.0229541 0.001312613 -0.009779334 0.02292948 -0.00308746 -0.008220613 0.02285265 -0.003087401 -0.006779372 0.02285265 -0.003416836 -0.006449937 0.02284693 -0.003416895 -0.02055007 0.02284693 -0.00308746 -0.02022057 0.02285265 -0.003603696 -0.01949995 0.02284365 -0.003416836 -0.02144998 0.02284693 -0.003537416 -0.02100002 0.02284479 -0.00308746 -0.02322059 0.02285265 0.001641988 -0.02144992 0.02293521 0.003429949 -0.02472436 0.02296644 0.001762509 -0.02099996 0.02293729 0.003429949 -0.01949995 0.02296644 0.001641988 -0.02055001 0.02293521 0.001641988 -0.02354997 0.02293521 0.001762509 -0.02399992 0.02293729 0.002724826 -0.02458363 0.0229541 0.001641988 -0.02444988 0.02293521 0.001632273 -0.02446639 0.02293503 0.001312553 -0.02322053 0.02292948 0.001312613 -0.02177935 0.02292948 0.003411412 -0.02471113 0.02296608 -0.003087401 -0.02477937 0.02285265 -0.003416836 -0.02444994 0.02284693 -0.003537416 -0.02399998 0.02284479 0.001312553 -0.02022057 0.02292948 -0.003514885 -0.02719998 0.0228452 -0.003514766 -0.02679949 0.0228452 -0.003416895 -0.02355003 0.02284693 -0.003087401 -0.02177935 0.02285265 -0.003340959 -0.02643871 0.02284824 -0.003027796 -0.02618908 0.02285367 0.001004636 -0.02488869 0.02292406 0.001312613 -0.02622056 0.02292948 0.001429975 -0.02469855 0.02293151 0.001429975 -0.02630138 0.02293151 0.001641988 0.02055007 0.02293521 0.003429949 0.01949995 0.02296644 0.001762509 0.02100002 0.02293729 0.001641988 0.02144998 0.02293521 -0.003087401 0.02022057 0.02285265 -0.003416836 0.02055001 0.02284693 -0.003603696 0.01949995 0.02284365 -0.003537416 0.02099996 0.02284479 -0.003416895 0.02144992 0.02284693 -0.00308746 0.02177935 0.02285265 0.001312553 0.02177935 0.02292948 0.001312613 0.02022057 0.02292948 0.001641988 0.01755005 0.02293521 0.003429949 0.01649999 0.02296644 0.001762509 0.018 0.02293729 0.001641988 0.01844996 0.02293521 -0.003087401 0.01722055 0.02285265 -0.003416836 0.01754999 0.02284693 -0.003603696 0.01649999 0.02284365 -0.003537416 0.01799994 0.02284479 -0.003416895 0.0184499 0.02284693 -0.00308746 0.01877933 0.02285265 0.001312553 0.01877939 0.02292948 0.001312613 0.01722061 0.02292948 0.001641988 0.01455003 0.02293521 0.003429949 0.01349997 0.02296644 0.001762509 0.01499998 0.02293729 0.001641988 0.01544994 0.02293521 -0.003087401 0.01422053 0.02285265 -0.003416836 0.01454997 0.02284693 -0.003603696 0.01349997 0.02284365 -0.003537416 0.01499992 0.02284479 -0.003416895 0.01544988 0.02284693 -0.00308746 0.01577937 0.02285265 0.001312553 0.01577937 0.02292948 0.001312613 0.01422059 0.02292948 0.001641988 0.01155006 0.02293521 0.003429949 0.01049995 0.02296644 0.001762509 0.01200002 0.02293729 0.001641988 0.01244997 0.02293521 -0.003087401 0.01122057 0.02285265 -0.003416836 0.01155 0.02284693 -0.003603696 0.01049995 0.02284365 -0.003537416 0.01199996 0.02284479 -0.003416895 0.01244992 0.02284693 -0.00308746 0.01277935 0.02285265 0.001312553 0.01277941 0.02292948 0.001312613 0.01122057 0.02292948 0.001641988 0.008550047 0.02293521 0.001762509 0.009000003 0.02293729 0.001641988 0.009449958 0.02293521 -0.003087401 0.008220553 0.02285265 -0.003416836 0.008549988 0.02284693 -0.003537416 0.008999943 0.02284479 -0.003416895 0.009449899 0.02284693 -0.00308746 0.009779334 0.02285265 0.001312553 0.009779393 0.02292948 0.001312613 0.008220613 0.02292948 0.001641988 -0.01244992 0.02293521 0.003429949 -0.01349997 0.02296644 0.001762509 -0.01199996 0.02293729 0.001641988 -0.01155 0.02293521 -0.003087401 -0.01277941 0.02285265 -0.003416836 -0.01244997 0.02284693 -0.003603696 -0.01349997 0.02284365 -0.003537416 -0.01200002 0.02284479 -0.003416895 -0.01155006 0.02284693 -0.00308746 -0.01122057 0.02285265 0.001312553 -0.01122057 0.02292948 0.001312613 -0.01277935 0.02292948 0.001641988 -0.01544988 0.02293521 0.003429949 -0.01649999 0.02296644 0.001762509 -0.01499992 0.02293729 0.001641988 -0.01454997 0.02293521 -0.003087401 -0.01577937 0.02285265 -0.003416836 -0.01544994 0.02284693 -0.003603696 -0.01649999 0.02284365 -0.003537416 -0.01499998 0.02284479 -0.003416895 -0.01455003 0.02284693 -0.00308746 -0.01422059 0.02285265 0.001312553 -0.01422053 0.02292948 0.001312613 -0.01577937 0.02292948 0.001641988 -0.0184499 0.02293521 0.001762509 -0.01799994 0.02293729 0.001641988 -0.01754999 0.02293521 -0.003087401 -0.01877939 0.02285265 -0.003416836 -0.01844996 0.02284693 -0.003537416 -0.018 0.02284479 -0.003416895 -0.01755005 0.02284693 -0.00308746 -0.01722061 0.02285265 0.001312553 -0.01722055 0.02292948 0.001312613 -0.01877933 0.02292948 -0.003669977 0.03042769 0.02284246 -0.003669977 0.02249997 0.02284246 -0.003669977 0.01949995 0.02284246 -0.003669977 0.01649999 0.02284246 -0.003669977 0.01349997 0.02284246 -0.003669977 0.01049995 0.02284246 -0.003669977 0.007499992 0.02284246 -0.003669977 0 0.02284246 -0.003669977 -0.01049995 0.02284246 -0.003669977 -0.01349997 0.02284246 -0.003669977 -0.01649999 0.02284246 -0.003669977 -0.01949995 0.02284246 -0.003669977 -0.02719998 0.02284246 -0.003669977 -0.03249996 0.02284246 0.003629982 0.03046268 0.02182775 0.003429949 0.03045916 0.02182775 0.003429949 0.03055161 0.02182775 -0.005549967 0.004221618 0.001515686 -0.005549967 0.004221677 0 -0.005549967 -0.004221618 0.001515686 -0.005549967 -0.004221677 0 5.13658e-4 0.003133118 0.009499967 7.95822e-4 0.003073632 5e-4 0.001173317 0.002950191 0.009499967 0.001175165 0.002949476 5e-4 0.001471698 0.002813279 0.009494781 0.001398205 0.002850472 5e-4 0.00230503 0.002183437 5e-4 0.002250313 0.002239763 0.009481489 0.001943409 0.002510666 5e-4 0.002010881 0.002456963 0.009485602 0.001781761 0.002627909 5e-4 0.001781761 0.002627909 0.009489476 0.001750469 0.00264883 0.009490013 0.002720475 0.001636862 5e-4 0.00265634 0.001738965 0.009474515 0.00240904 0.002068102 5e-4 0.002466142 0.001999616 0.009477794 0.00230503 0.002183437 0.009480535 0.003008782 0.001013755 5e-4 0.002952396 0.001167714 0.00946927 0.002776026 0.00154078 5e-4 0.002819001 0.001460731 0.009471654 0.002720475 0.001636862 0.009473383 0.003156363 3.43278e-4 5e-4 0.003126978 5.50097e-4 0.009465992 0.003029346 9.50478e-4 5e-4 0.003055393 8.63137e-4 0.009467363 0.003008782 0.001013755 0.009468197 0.003008782 -0.001013755 5e-4 0.003008782 -0.001013755 0.009468197 0.003029346 -9.50478e-4 5e-4 0.003083467 -7.56864e-4 0.009466826 0.003156363 -3.43278e-4 5e-4 0.003146708 -4.22664e-4 0.009465575 0.003156363 -3.43278e-4 0.009465396 0.003158688 -3.21209e-4 5e-4 0.003173708 -8.88632e-5 0.009465038 0.003158688 3.21209e-4 5e-4 0.003166496 2.31913e-4 0.009465217 0.003156363 3.43278e-4 0.009465396 0.00230503 -0.002183437 5e-4 0.00230503 -0.002183437 0.009480535 0.00240904 -0.002068102 5e-4 0.002492964 -0.001966118 0.009477317 0.002720475 -0.001636862 5e-4 0.002687931 -0.001689851 0.009473979 0.002720475 -0.001636862 0.009473383 0.002776026 -0.00154078 5e-4 0.002852559 -0.001393973 0.009471058 0.002984941 -0.001081883 0.009468674 0.001173317 -0.002950191 0.009499967 0.001460373 -0.00281918 0.009495019 0.001398205 -0.002850472 5e-4 0.001781761 -0.002627909 5e-4 0.001750767 -0.002648651 0.009490013 0.001781761 -0.002627909 0.009489476 0.001943409 -0.002510666 5e-4 0.00202167 -0.002448141 0.009485423 0.002269983 -0.002219796 0.009481191 -0.003109991 6.39123e-4 5e-4 -0.003100752 6.82531e-4 0.009499967 -0.00317496 0 0.009499967 -0.003100752 6.82531e-4 5e-4 -0.002917647 0.001252055 5e-4 -0.002881526 0.001333117 0.009499967 -0.002881526 0.001333117 5e-4 -0.002605915 0.001813769 5e-4 -0.002527594 0.001921415 0.009499967 -0.002527594 0.001921415 5e-4 -0.00218743 0.002301216 5e-4 -0.002055406 0.002419829 0.009499967 -0.002055406 0.002419829 5e-4 -0.00167942 0.002694427 5e-4 -0.001487195 0.002805113 0.009499967 -0.001487195 0.002805113 5e-4 -0.001102685 0.002977311 5e-4 -8.49402e-4 0.003059267 0.009499967 -8.49402e-4 0.003059267 5e-4 -4.80783e-4 0.003138363 5e-4 -1.71891e-4 0.003170311 0.009499967 -1.71891e-4 0.003170311 5e-4 0 0.00317496 0.009499967 1.60811e-4 0.003170907 5e-4 5.13658e-4 0.003133118 5e-4 0.001175165 -0.002949476 5e-4 7.95822e-4 -0.003073632 5e-4 5.13658e-4 -0.003133118 0.009499967 5.13658e-4 -0.003133118 5e-4 0 -0.00317496 0.009499967 1.60811e-4 -0.003170907 5e-4 -1.71891e-4 -0.003170311 0.009499967 -1.71891e-4 -0.003170311 5e-4 -4.80783e-4 -0.003138363 5e-4 -8.49402e-4 -0.003059267 0.009499967 -8.49402e-4 -0.003059267 5e-4 -0.001102685 -0.002977311 5e-4 -0.001487195 -0.002805113 0.009499967 -0.001487195 -0.002805113 5e-4 -0.00167942 -0.002694427 5e-4 -0.002055406 -0.002419829 0.009499967 -0.002055406 -0.002419829 5e-4 -0.00218743 -0.002301216 5e-4 -0.002527594 -0.001921415 0.009499967 -0.002527594 -0.001921415 5e-4 -0.002605915 -0.001813769 5e-4 -0.002881526 -0.001333117 0.009499967 -0.002881526 -0.001333117 5e-4 -0.002917647 -0.001252055 5e-4 -0.003100752 -6.82531e-4 0.009499967 -0.003100752 -6.82531e-4 5e-4 -0.003109991 -6.39123e-4 5e-4 -0.00317496 0 5e-4 -0.003377139 -0.001449227 0 -0.003599762 -7.39772e-4 0 -0.003016293 -0.002099394 0 -0.002531945 -0.002663612 0 -0.001943886 -0.003118753 0 -0.001276314 -0.003446221 0 -5.56497e-4 -0.003632605 0 0 -0.003674983 0 1.86136e-4 -0.003670275 0 9.21148e-4 -0.003557682 0 0.001618444 -0.003299415 0 0.002249479 -0.002906084 0 0.002788424 -0.002393782 0 0.003213167 -0.00178343 0 0.003506422 -0.001100122 0 0.003656089 -3.71794e-4 0 0.003674983 0 0 0.003656089 3.71794e-4 0 0.003506422 0.001100122 0 0.003213167 0.00178343 0 0.002788424 0.002393782 0 0.002249479 0.002906084 0 0.001618444 0.003299415 0 9.21148e-4 0.003557682 0 1.86136e-4 0.003670275 0 0 0.003674983 0 -5.56497e-4 0.003632605 0 -0.001276314 0.003446221 0 -0.001943886 0.003118753 0 -0.002531945 0.002663612 0 -0.003016293 0.002099394 0 -0.003377139 0.001449227 0 -0.003599762 7.39772e-4 0 -0.003674983 0 0 1.06671e-4 -0.00407356 0 1.06671e-4 0.00407356 0 2.46407e-4 -0.00406754 0 0.001005351 -0.003948986 0 0.001728594 -0.003690183 0 0.002390384 -0.003300189 0 0.002967298 -0.002792954 0 0.003438711 -0.002186477 0 0.003787934 -0.001502275 0 0.004002571 -7.64743e-4 0 0.00407499 0 0 0.004002571 7.64743e-4 0 0.003787934 0.001502275 0 0.003438711 0.002186477 0 0.002967298 0.002792954 0 0.002390384 0.003300189 0 0.001728594 0.003690183 0 0.001005351 0.003948986 0 2.46407e-4 0.00406754 0 1.06671e-4 -0.00407356 0.001616239 0.003965318 9.38909e-4 0.001686871 0.004002571 7.64743e-4 0.001687586 0.004071414 1.70126e-4 0.001689672 0.004038751 5.4226e-4 0.001688241 0.004031956 5.90709e-4 0.001688122 0.003864645 0.001292288 0.001685023 0.003787934 0.001502275 0.001683592 0.003377914 0.002279281 0.001676082 0.003438711 0.002186477 0.001677155 0.003569781 0.001965224 0.001679599 0.003732442 0.001635313 0.001682579 0.00315833 0.00257498 0.001672089 0.002967298 0.002792954 0.001668572 0.002390384 0.003300189 0.001657962 0.002408564 0.003286957 0.00165832 0.002671003 0.003077507 0.001663208 0.002922594 0.002839684 0.001667797 0.002124607 0.003477275 0.001653015 0.001821756 0.003645062 0.001647412 0.001005351 0.003948986 0.001632571 0.001169919 0.003903388 0.001635551 0.001502633 0.003787815 0.001641571 0.001728594 0.003690183 0.001645743 8.26435e-4 0.003990292 0.001629292 4.75158e-4 0.004047155 0.001622915 1.06671e-4 0.00407356 0.001616239 4.41418e-4 -0.00405097 0.001622319 7.90452e-4 -0.003997564 0.001628637 0.001005351 -0.003948986 0.001632571 0.001790404 -0.003660559 0.001646876 0.001728594 -0.003690183 0.001645743 0.001467525 -0.003801524 0.001640975 0.001133322 -0.003914177 0.001634895 0.002099454 -0.003492534 0.001652538 0.002392232 -0.003298878 0.001658022 0.00264132 -0.003103017 0.001662611 0.002881586 -0.002881288 0.001667022 0.003438711 -0.002186477 0.001677155 0.003365635 -0.002297401 0.001675844 0.003137171 -0.002600669 0.001671671 0.002967298 -0.002792954 0.001668572 0.003564953 -0.001973927 0.00167948 0.003733396 -0.001633167 0.001682579 0.004002571 -7.64743e-4 0.001687586 0.003971695 -9.11475e-4 0.00168699 0.003869354 -0.001277983 0.001685082 0.003787934 -0.001502275 0.001683592 0.00407499 0 0.001690685 0.004071295 -1.7364e-4 0.001690328 0.004038751 -5.4226e-4 0.001688241 0.002614676 0.004469454 0.00189507 -0.002851009 0.0114327 0.001850068 0.002616345 0.004469454 0.001695096 -0.0028494 0.0114327 0.001650035 -0.005283892 0.01374995 0.003499627 -0.005369961 0.01374995 0.004149973 -0.005369961 0.02574998 0.004149973 -0.005319476 0.02574998 0.003650188 -0.005300462 0.02574884 0.003564536 -0.005283832 0.0257464 0.003499448 -0.005019307 0.0256437 0.002873122 -0.005031585 0.01374995 0.002894043 -0.005153715 0.02570551 0.003132939 -0.005213916 0.0257278 0.00328058 -0.00485748 0.02555459 0.002633452 -0.004771411 0.02550196 0.002526879 -0.004826486 0.01374995 0.002593696 -0.004577696 0.02537089 0.002324163 -0.004625201 0.01351404 0.002369761 -0.004105567 0.02497237 0.001976668 -0.004526615 0.01339846 0.002277612 -0.004211544 0.02507305 0.002040445 -0.00437051 0.02521115 0.002150356 -0.003994286 0.02485799 0.001917064 -0.00410676 0.01290643 0.001977324 -0.004269003 0.01309657 0.002078115 -0.003696382 0.02453869 0.001790523 -0.003627061 0.02446436 0.001767337 -0.003990411 0.01277005 0.001915097 -0.003499746 0.02432799 0.00173062 -0.003693044 0.01242148 0.001789331 -0.003308117 0.02412259 0.001688659 -0.003499746 0.01219499 0.00173062 -0.003607213 0.01232087 0.001761138 -0.002955377 0.01155692 0.001651406 -0.0028494 0.02363091 0.001650035 -0.003284633 0.01194286 0.001684606 -0.00291264 0.02369874 0.001650333 -0.00324279 0.0240525 0.00167793 0.002616345 0.01726323 0.001695096 0.002614676 0.01726323 0.00189507 -0.002851009 0.02363091 0.001850068 -0.002219974 -0.03939998 0.01854997 -0.002219974 -0.04002499 0.01838248 -0.002219974 -0.04181945 0.02070194 -0.002219974 -0.03877496 0.01621747 -0.002219974 -0.03579998 5.31902e-4 -0.002219974 -0.03814995 0.01729995 -0.002219974 -0.03579998 0.02446806 -0.002219974 -0.03831744 0.01792496 -0.002219974 -0.03877496 0.01838248 -0.002219974 -0.03877496 0.006617426 -0.002219974 -0.03831744 0.007074952 -0.002219974 -0.03814995 0.007699966 -0.002219974 -0.04313999 0.01889646 -0.002219974 -0.04048252 0.01792496 -0.002219974 -0.04411512 0.01688325 -0.002219974 -0.03626132 6.68787e-4 -0.002219974 -0.03832334 0.001535773 -0.002219974 -0.03939998 0.006449997 -0.002219974 -0.04019635 0.002758741 -0.002219974 -0.04002499 0.006617426 -0.002219974 -0.04181945 0.004297971 -0.002219974 -0.04048252 0.007074952 -0.002219974 -0.04313999 0.006103515 -0.002219974 -0.04064995 0.007699966 -0.002219974 -0.04411512 0.008116662 -0.002219974 -0.04048252 0.00832498 -0.002219974 -0.04019635 0.02224117 -0.002219974 -0.03832334 0.02346414 -0.002219974 -0.03626132 0.02433121 -0.002219974 -0.04064995 0.01729995 -0.002219974 -0.04048252 0.01667499 -0.002219974 -0.04002499 0.008782505 -0.002219974 -0.04002499 0.01621747 -0.002219974 -0.03939998 0.008949995 -0.002219974 -0.03939998 0.01604998 -0.002219974 -0.03877496 0.008782505 -0.002219974 -0.03831744 0.00832498 -0.002219974 -0.04471319 0.01027214 -0.002219974 -0.04491472 0.01249998 -0.002219974 -0.04471319 0.01472777 -0.005945444 -0.009049773 0.0241 -0.005945265 -0.009049832 0.02495121 -0.005945444 -0.03249996 0.0241 -0.005945205 -0.03250002 0.02495127 -0.005945444 -0.03401982 0.02399998 -0.005945444 -0.03400474 0.02485984 -0.005945444 -0.03429996 0.02399998 -0.005945444 -0.03429996 0.02482032 -8.69999e-4 -0.03429996 0.02395945 -0.003665447 -0.03429996 0.02395945 -0.003665447 -0.03429996 0.02399998 -8.69999e-4 -0.03429996 0.02470606 -0.002115666 -0.03429996 0.02477842 -0.005795478 -0.03429996 0.02486968 -8.69999e-4 -0.03429996 2.93919e-4 -0.004547715 -0.03429996 1.40767e-4 -0.005795359 -0.03579998 4.4348e-4 -0.005795478 -0.03429996 1.30269e-4 -8.69999e-4 -0.03623813 7.41821e-4 -8.69999e-4 -0.0382874 0.001603484 -8.69999e-4 -0.04014885 0.002818882 -8.69999e-4 -0.04176193 0.004348635 -8.69999e-4 -0.04307436 0.006142973 -8.69999e-4 -0.04404342 0.008143723 -8.69999e-4 -0.04463779 0.01028591 -8.69999e-4 -0.04483807 0.01249998 -8.69999e-4 -0.04463779 0.014714 -8.69999e-4 -0.04404342 0.01685619 -8.69999e-4 -0.04307436 0.01885694 -8.69999e-4 -0.04176193 0.02065134 -8.69999e-4 -0.04014885 0.02218103 -8.69999e-4 -0.0382874 0.02339649 -8.69999e-4 -0.03623813 0.02425813 -0.005795478 -0.03579998 0.02455651 -8.69999e-4 -0.03429996 0.001040458 -8.69999e-4 -0.03715652 0.001875638 -8.69999e-4 -0.03715652 0.02312433 -8.69999e-4 -0.0417822 0.005542933 -8.69999e-4 -0.03970652 0.0034101 -8.69999e-4 -0.03970652 0.02158981 -8.69999e-4 -0.0417822 0.01945698 -8.69999e-4 -0.04400414 0.01398801 -8.69999e-4 -0.04400414 0.01101189 -8.69999e-4 -0.04324686 0.008133709 -8.69999e-4 -0.04324686 0.0168662 -0.007719993 0.007249534 0.02415871 -0.007719993 0.007249951 0.02399998 -0.007637739 0.007787764 0.02420985 -0.007587909 0.007926762 0.02399998 -0.007407546 0.008263409 0.02434355 -0.00719887 0.008516609 0.02399998 -0.007198095 0.008517444 0.02445399 -0.006612837 0.008911311 0.02399998 -0.005919992 0.009049952 0.02399998 -0.005945444 0.009049773 0.0241 -0.005919992 0.009049952 0.0241 -0.007026255 0.008669912 0.02453732 -0.006475389 0.008962154 0.02476733 -0.005945265 0.009049832 0.02495121 -0.003665447 -0.03419995 0.02328532 -0.003665447 -0.03419995 0.01882827 -0.003665447 -0.03309994 0.02340197 -0.003665447 0.03249996 0.02399998 -0.003665447 -0.03309994 0.02399998 -0.003665447 -0.03309994 0.00159794 -0.003665447 -0.03309994 10e-4 -0.003665447 0.03547638 0.02360814 -0.003665447 -0.03469997 0.01716995 -0.003665447 -0.03469997 0.007829964 -0.003665447 0.04063171 0.02063173 -0.003665447 0.03824996 0.02245926 -0.004645466 0.009049952 0.02399998 -0.004645466 0.03249996 0.02399998 -0.00719887 -0.008516609 0.02399998 -0.006612837 -0.008911311 0.02399998 -0.007587909 -0.007926762 0.02399998 -0.005919992 -0.009049952 0.02399998 -0.007719993 -0.007249951 0.02399998 -0.004645466 -0.009049952 0.02399998 -0.004645466 -0.03309994 0.02399998 -0.007719993 -0.007249534 0.02415865 -0.007719993 0 0.02415865 -0.008139431 0.0325002 0.02386409 -0.008895576 0.03250014 0.02316665 -0.009637534 0.01636874 0.02210426 -0.01009953 0.03250002 0.02058118 -0.009977817 0.01650154 0.02122205 -0.01014906 0.03250002 0.01949995 -0.01014995 0 0.01949995 -0.009497582 0.03250008 0.0223481 -0.009816706 0.03250008 0.0216971 -0.009899616 0.03250008 0.02146953 -0.009382367 0 0.02254033 -0.008835554 0 0.02323645 -0.008067011 0 0.02392101 -0.00768119 0.03250014 0.02418118 -0.007589578 0.03250014 0.02423715 -0.007265985 0.03250014 0.02441775 -0.006129145 0.03250002 0.02488923 -0.005944967 0.03250002 0.02495098 -0.01007395 0 0.02077347 -0.009840965 0 0.02164328 -0.00963515 0 0.02210575 -0.008545458 0.02312499 0.01358252 -0.008545458 0.02358251 0.013125 -0.008545458 0.02249997 0.01249998 -0.008545458 0.02374994 0.01249998 -0.008545458 0.02358251 0.01187497 -0.008545458 0.02141743 0.013125 -0.008545458 0.02187496 0.01358252 -0.008545458 0.02249997 0.01374995 -0.008545458 0.02187496 0.01141744 -0.008545458 0.02141743 0.01187497 -0.008545458 0.02124994 0.01249998 -0.008545458 0.02312499 0.01141744 -0.008545458 0.02249997 0.01124995 -0.01014995 0.02374994 0.01249998 -0.01014995 0.02358251 0.013125 -0.01014995 0.02312499 0.01358252 -0.01014995 0.02249997 0.01374995 -0.01014995 0.02187496 0.01358252 -0.01014995 0.02141743 0.013125 -0.01014995 0.02124994 0.01249998 -0.01014995 0.02141743 0.01187497 -0.01014995 0.02187496 0.01141744 -0.01014995 0.02249997 0.01124995 -0.01014995 0.02312499 0.01141744 -0.01014995 0.02358251 0.01187497 -0.008545458 -0.02187496 0.01358252 -0.008545458 -0.02141743 0.013125 -0.008545458 -0.02249997 0.01249998 -0.008545458 -0.02124994 0.01249998 -0.008545458 -0.02141743 0.01187497 -0.008545458 -0.02358251 0.013125 -0.008545458 -0.02312499 0.01358252 -0.008545458 -0.02249997 0.01374995 -0.008545458 -0.02312499 0.01141744 -0.008545458 -0.02358251 0.01187497 -0.008545458 -0.02374994 0.01249998 -0.008545458 -0.02187496 0.01141744 -0.008545458 -0.02249997 0.01124995 -0.01014995 -0.02124994 0.01249998 -0.01014995 -0.02141743 0.013125 -0.01014995 -0.02187496 0.01358252 -0.01014995 -0.02249997 0.01374995 -0.01014995 -0.02312499 0.01358252 -0.01014995 -0.02358251 0.013125 -0.01014995 -0.02374994 0.01249998 -0.01014995 -0.02358251 0.01187497 -0.01014995 -0.02312499 0.01141744 -0.01014995 -0.02249997 0.01124995 -0.01014995 -0.02187496 0.01141744 -0.01014995 -0.02141743 0.01187497 -0.01014995 -0.03434538 0.005747616 -0.01014995 -0.03579998 0.006326615 -0.01014995 -0.03579998 0.0186733 -0.01014995 -0.03302055 0.00551933 -0.01014995 -0.03250002 0.005499958 -0.0101487 0.03334087 0.01944959 -0.01014935 0.03451144 0.01920503 -0.01014995 0.03562629 0.01876282 -0.01015055 0.036646 0.0181396 -0.01014995 0 0.005499958 -0.01014995 -0.03250002 0.01949995 -0.01014995 -0.03417515 0.01929658 -0.010149 0.03249996 0.005499958 -0.0101487 0.03369748 0.005603432 -0.01015132 0.03827989 0.008552193 -0.0101509 0.03756654 0.007669985 -0.01015084 0.03743362 0.007534205 -0.01015055 0.03698599 0.00712639 -0.01015102 0.03754514 0.01735246 -0.01015144 0.03829598 0.01642602 -0.01015174 0.0388785 0.01538527 -0.01014995 -0.03550523 0.01882207 -0.01014995 -0.03501439 0.01903277 -0.01014995 -0.0342378 0.01928085 -0.01015198 0.03927558 0.0142607 -0.01015204 0.03947567 0.01308584 -0.01015204 0.03947335 0.01189327 -0.01015001 0.03607004 0.006478786 -0.01014941 0.03502959 0.005972981 -0.01014882 0.0339235 0.005646228 -0.01015192 0.03926831 0.01071673 -0.01015168 0.03886657 0.009592115 -0.007112026 0.03250038 5.04932e-4 -0.008021771 0.03250038 0.001048207 -0.007680892 0.03257197 8.18923e-4 -0.009445846 0.03249984 0.002566337 -0.009796142 0.03249973 0.003252089 -0.009816467 0.0325551 0.003302812 -0.01003456 0.03249967 0.00402987 -0.01004123 0.03249967 0.004062175 -0.01008969 0.0325483 0.004346311 -0.009816765 0.0325551 0.02169692 -0.006574571 0.03257608 0.02472823 -0.005945444 0.03381121 0.02488124 -0.00768125 0.03257197 0.02418094 -0.01009339 0.03901642 0.007603108 -0.01009386 0.03980249 0.008879005 -0.01009422 0.04034179 0.01027727 -0.01009434 0.04061603 0.01175057 -0.0100944 0.04061603 0.01324921 -0.01009428 0.04034179 0.01472252 -0.01009398 0.03980249 0.01612073 -0.01009356 0.03901642 0.01739668 -0.01009297 0.03801012 0.01850718 -0.01009231 0.03681755 0.01941472 -0.0100916 0.035479 0.02008867 -0.01009076 0.03403973 0.02050632 -0.01008993 0.03254836 0.02065348 -0.01009279 0.03801006 0.006492614 -0.01009213 0.03681749 0.005585014 -0.01009136 0.035479 0.004911065 -0.01009052 0.03403973 0.004493474 -0.01014459 0.03249984 0.005073785 -0.008788228 0.03250014 0.001717507 -0.009399414 0.03249984 0.002492785 -0.009222507 0.03256213 0.002235472 -0.005945324 0.03250002 4.93962e-5 -0.006574213 0.03257608 2.71651e-4 -0.005945444 0.03401386 1.41908e-4 -0.006575465 0.03481274 4.92331e-4 -0.005945444 0.03549408 4.14721e-4 -0.006576716 0.03697133 0.0011186 -0.005945444 0.03662121 7.51062e-4 -0.006579756 0.04227656 0.00515598 -0.005945444 0.04140245 0.00379467 -0.006578862 0.04076731 0.003490507 -0.005945444 0.04027795 0.00277698 -0.006577849 0.03897875 0.002129375 -0.005945444 0.03932571 0.00208652 -0.005945444 0.03801918 0.001339137 -0.005945444 0.04378223 0.007231652 -0.005945444 0.04305797 0.005899131 -0.005945444 0.0423879 0.004932403 -0.006580471 0.04345548 0.007069528 -0.006580948 0.04426425 0.009166538 -0.005945444 0.04433554 0.008631467 -0.005945444 0.04415899 0.0168718 -0.005945444 0.04460138 0.01543313 -0.006581068 0.04426425 0.01583331 -0.005945444 0.04486823 0.01394015 -0.006581246 0.04467564 0.01362371 -0.005945444 0.04494893 0.01276665 -0.006581187 0.04467564 0.01137614 -0.005945444 0.04489016 0.01126265 -0.005945444 0.04464781 0.009765505 -0.005945444 0.04369443 0.01795238 -0.006580591 0.04345548 0.01793032 -0.005945444 0.04294842 0.01927286 -0.006579995 0.04227656 0.01984387 -0.005945444 0.04205477 0.02048408 -0.00657916 0.04076731 0.02150934 -0.005945444 0.04125869 0.02134996 -0.005945444 0.03497374 0.02470237 -0.006575822 0.03481274 0.02450758 -0.005945444 0.03642821 0.02431488 -0.006577014 0.03697133 0.02388125 -0.005945444 0.03783565 0.02374976 -0.006578147 0.03897875 0.02287048 -0.005945444 0.03887343 0.02319616 -0.005945444 0.04011762 0.02234905 -0.007682144 0.03470855 0.00102967 -0.007683277 0.03677052 0.001627981 -0.007684409 0.03868812 0.002593517 -0.007685363 0.04039663 0.003893733 -0.007686197 0.04183828 0.00548464 -0.007686913 0.04296445 0.007312536 -0.00768733 0.04373705 0.009315729 -0.007687628 0.04413002 0.01142644 -0.007687628 0.04413002 0.0135734 -0.007687449 0.04373705 0.01568412 -0.007687032 0.04296445 0.01768726 -0.007686436 0.04183828 0.01951515 -0.007685601 0.04039663 0.02110612 -0.007684707 0.03868812 0.02240628 -0.007683634 0.03677052 0.02337187 -0.007682442 0.03470855 0.02397012 -0.008280932 0.03250038 0.001247882 -0.008668005 0.03256648 0.001595437 -0.008669137 0.03456109 0.001792252 -0.00867021 0.03648591 0.002350747 -0.008671283 0.03827601 0.003252089 -0.008672177 0.03987097 0.004465878 -0.008672952 0.04121679 0.005951046 -0.008673548 0.04226809 0.007657408 -0.008674025 0.04298931 0.009527385 -0.008674263 0.04335612 0.01149779 -0.008674263 0.04335612 0.013502 -0.008674085 0.04298931 0.01547241 -0.008673727 0.04226809 0.01734238 -0.008673131 0.04121679 0.01904875 -0.008672416 0.03987097 0.02053391 -0.008671522 0.03827607 0.0217477 -0.008670508 0.03648591 0.02264904 -0.008669435 0.03456109 0.02320754 -0.008668303 0.03256654 0.02340435 -0.00922352 0.03443962 0.002420723 -0.009224593 0.03625154 0.002946436 -0.009225547 0.03793656 0.003794908 -0.009226441 0.03943789 0.00493741 -0.009227156 0.04070472 0.006335377 -0.009227752 0.04169434 0.007941603 -0.009228169 0.04237323 0.009701848 -0.009228348 0.04271852 0.01155656 -0.009228408 0.04271852 0.01344317 -0.009228229 0.04237323 0.01529794 -0.009227871 0.04169434 0.01705813 -0.009227335 0.04070472 0.01866436 -0.00922662 0.03943789 0.02006238 -0.009225785 0.03793656 0.02120488 -0.009224832 0.03625154 0.02205336 -0.009223818 0.03443968 0.02257907 -0.009222745 0.03256213 0.02276432 -0.009817421 0.03423732 0.003468811 -0.009818375 0.03586077 0.003939867 -0.009819209 0.03737062 0.004700064 -0.009819984 0.03871583 0.005723774 -0.00982064 0.03985095 0.006976425 -0.009821176 0.04073762 0.008415639 -0.009821534 0.04134589 0.009992778 -0.009821772 0.0416553 0.01165467 -0.009821772 0.0416553 0.01334512 -0.009821653 0.04134595 0.01500695 -0.009821295 0.04073762 0.01658415 -0.009820818 0.03985095 0.01802337 -0.009820222 0.03871583 0.01927596 -0.009819447 0.03737062 0.02029967 -0.009818613 0.03586077 0.02105993 -0.009817719 0.03423732 0.02153098 -0.01003736 0 0.004028975 -0.005945444 0 4.90926e-5 -0.006809413 0 3.68407e-4 -0.008281707 0 0.001246988 -0.009447574 0 0.002565443 -0.01010155 -0.03249967 0.004417777 -0.009501397 -0.03249979 0.002651393 -0.009902179 -0.03249955 0.003528714 -0.01003712 -0.03249961 0.004029035 -0.009448885 -0.03249984 0.002564489 -0.008900284 -0.03250026 0.001834154 -0.008282423 -0.03250056 0.001246213 -0.008145332 -0.03250062 0.001137852 -0.007272601 -0.03250056 5.842e-4 -0.006137907 -0.03250002 1.12857e-4 -0.005945384 -0.03249996 4.90079e-5 -0.005945444 0.03829997 0.02254587 -0.005945444 0.04409998 0.01249998 -0.005945444 0.04370468 0.009497702 -0.005945444 0.03249996 0.02409994 -0.005945444 0.03550225 0.0237047 -0.005945444 0.0407024 0.02070242 -0.005945444 0.04370468 0.01550227 -0.005945444 0.04254585 0.01829999 -0.005945444 0.03829997 0.002454102 -0.005945444 0.03550225 0.001295208 -0.005945444 0.04254585 0.006699979 -0.005945444 0.0407024 0.004297554 -0.005945444 0.03249996 9.00001e-4 -0.005945444 -0.03249996 9e-4 -0.005945444 -0.03429996 0.000999987 -0.005945444 -0.03429996 1.7965e-4 -0.005945444 -0.03401982 10e-4 -0.005945444 -0.03279793 5.2464e-5 -0.003665447 -0.03429996 10e-4 -0.003665447 -0.03429996 0.001040458 -0.007300257 -0.03319144 6.18784e-4 -0.008541226 -0.03316557 0.00149101 -0.009502828 -0.03312605 0.002674043 -0.01001012 -0.03308147 0.003927946 -0.0101301 -0.03305172 0.004730582 -0.01013016 -0.03447276 0.004966497 -0.01012021 -0.03579998 0.005313396 -0.01001036 -0.03459548 0.004170238 -0.009961783 -0.03579998 0.00436902 -0.009503841 -0.03477853 0.002924323 -0.008543193 -0.03494137 0.001746594 -0.008788168 -0.03579998 0.002231359 -0.009286582 -0.03579998 0.002870082 -0.00950545 -0.03579998 0.003230333 -0.009743571 -0.03579998 0.003722906 -0.006367385 -0.03579998 6.4363e-4 -0.007302284 -0.03505092 8.763e-4 -0.00740993 -0.03579998 0.001126825 -0.008038878 -0.03579998 0.001544654 -0.00446999 -0.03529995 0.01567 -0.00446999 -0.03529995 0.009329974 -0.00446999 -0.03579998 0.01567 -0.00446999 -0.03579998 0.009329974 -0.004644155 -0.03579998 0.008679986 -0.004644155 -0.03529995 0.008679986 -0.005119979 -0.03579998 0.008204162 -0.005119979 -0.03529995 0.008204162 -0.005769968 -0.03579998 0.008029997 -0.005769968 -0.03529995 0.008029997 -0.006329953 -0.03529995 0.008029997 -0.006329953 -0.03579998 0.008029997 -0.006979942 -0.03579998 0.008204162 -0.006979942 -0.03529995 0.008204162 -0.007455825 -0.03579998 0.008679986 -0.007455825 -0.03529995 0.008679986 -0.00762999 -0.03579998 0.009329974 -0.00762999 -0.03529995 0.009329974 -0.005119979 -0.03529995 0.01679581 -0.00762999 -0.03529995 0.01567 -0.004644155 -0.03529995 0.01631999 -0.006979942 -0.03529995 0.01679581 -0.007455825 -0.03529995 0.01631999 -0.006329953 -0.03529995 0.01696997 -0.005769968 -0.03529995 0.01696997 -0.00762999 -0.03579998 0.01567 -0.007455825 -0.03579998 0.01631999 -0.006979942 -0.03579998 0.01679581 -0.006329953 -0.03579998 0.01696997 -0.005769968 -0.03579998 0.01696997 -0.005119979 -0.03579998 0.01679581 -0.004644155 -0.03579998 0.01631999 -0.006449997 -0.03529995 0.02069282 -0.006742775 -0.03529995 0.02039998 -0.00604999 -0.03529995 0.01999998 -0.006849944 -0.03529995 0.01999998 -0.006742775 -0.03529995 0.01959997 -0.005357146 -0.03529995 0.02039998 -0.005649983 -0.03529995 0.02069282 -0.00604999 -0.03529995 0.02079999 -0.005649983 -0.03529995 0.01930713 -0.005357146 -0.03529995 0.01959997 -0.005249977 -0.03529995 0.01999998 -0.006449997 -0.03529995 0.01930713 -0.00604999 -0.03529995 0.01919996 -0.006849944 -0.03579998 0.01999998 -0.006742775 -0.03579998 0.02039998 -0.006449997 -0.03579998 0.02069282 -0.00604999 -0.03579998 0.02079999 -0.005649983 -0.03579998 0.02069282 -0.005357146 -0.03579998 0.02039998 -0.005249977 -0.03579998 0.01999998 -0.005357146 -0.03579998 0.01959997 -0.005649983 -0.03579998 0.01930713 -0.00604999 -0.03579998 0.01919996 -0.006449997 -0.03579998 0.01930713 -0.006742775 -0.03579998 0.01959997 -0.006449997 -0.03529995 0.00569278 -0.006742775 -0.03529995 0.005399942 -0.00604999 -0.03529995 0.004999995 -0.006849944 -0.03529995 0.004999995 -0.006742775 -0.03529995 0.004599988 -0.005357146 -0.03529995 0.005399942 -0.005649983 -0.03529995 0.00569278 -0.00604999 -0.03529995 0.005799949 -0.005649983 -0.03529995 0.00430715 -0.005357146 -0.03529995 0.004599988 -0.005249977 -0.03529995 0.004999995 -0.006449997 -0.03529995 0.00430715 -0.00604999 -0.03529995 0.004199981 -0.006849944 -0.03579998 0.004999995 -0.006742775 -0.03579998 0.005399942 -0.006449997 -0.03579998 0.00569278 -0.00604999 -0.03579998 0.005799949 -0.005649983 -0.03579998 0.00569278 -0.005357146 -0.03579998 0.005399942 -0.005249977 -0.03579998 0.004999995 -0.005357146 -0.03579998 0.004599988 -0.005649983 -0.03579998 0.00430715 -0.00604999 -0.03579998 0.004199981 -0.006449997 -0.03579998 0.00430715 -0.006742775 -0.03579998 0.004599988 -0.006806731 -0.03579998 0.02417796 -0.008228778 -0.03579998 0.02330404 -0.007712423 -0.03579998 0.02368694 -0.007318973 -0.03579998 0.02392446 -0.009815096 -0.03579998 0.02109569 -0.008557975 -0.03579998 0.02300721 -0.008931756 -0.03579998 0.02260434 -0.009395956 -0.03579998 0.02195835 -0.0101459 -0.03579998 0.01918298 -0.01003861 -0.03579998 0.0202912 -0.0101307 -0.03544431 0.01970028 -0.01001411 -0.03564286 0.02047556 -0.01001387 -0.03439724 0.02086222 -0.007315754 -0.03362905 0.02433943 -0.009976983 -0.03249961 0.02122282 -0.01009649 -0.03249973 0.02062141 -0.01001369 -0.03344583 0.02102404 -0.01013064 -0.03428846 0.02007204 -0.009886682 -0.03249961 0.02151703 -0.00951147 -0.03352063 0.02227789 -0.009476602 -0.03249984 0.02239006 -0.008862495 -0.03250032 0.02320736 -0.008554399 -0.0335862 0.02346324 -0.008553922 -0.0325005 0.02351748 -0.008116424 -0.03250068 0.02388405 -0.007590115 -0.03250068 0.02423858 -0.00724256 -0.03250056 0.02443134 -0.007317125 -0.03480237 0.02416747 -0.00855571 -0.03470528 0.02329254 -0.009512126 -0.03456044 0.02211076 -0.009977817 -0.01650154 0.02122217 -0.009637475 -0.01636874 0.02210444 -0.009382367 0 0.02254033 -0.007706224 -0.007472038 0.02416741 -0.00650829 -0.008951127 0.02475494 -0.006572782 -0.008927404 0.02473026 -0.007113933 -0.008597016 0.0244956 -0.007468581 -0.008167445 0.02430939 -0.007515549 -0.008083045 0.02428251 -0.007689416 -0.007580339 0.02417796 -0.005919992 -0.009049952 0.0241 -0.002176165 -0.03883475 0.00727576 -0.002219974 -0.03874999 0.007324695 -0.002219974 -0.03886759 0.007170915 -0.002219974 -0.03902471 0.007049977 -0.002125561 -0.03899747 0.007181823 -0.002142906 -0.03892225 0.007225215 -0.002219974 -0.03920799 0.006974399 -0.002125442 -0.0391519 0.007092654 -0.002119421 -0.03907495 0.00713706 -0.002219974 -0.03939998 0.006949424 -0.002176284 -0.03931558 0.006998121 -0.002142906 -0.03922772 0.007048904 -0.002176165 -0.03931522 0.008401572 -0.002219974 -0.03939998 0.008450508 -0.002219974 -0.03920799 0.008425533 -0.002219974 -0.03902471 0.008349955 -0.002125561 -0.0391525 0.008307635 -0.002142906 -0.03922772 0.008351087 -0.002219974 -0.03886759 0.008229017 -0.002125442 -0.03899806 0.008218467 -0.002119421 -0.03907495 0.008262872 -0.002219974 -0.03874999 0.008075237 -0.002176284 -0.03883439 0.008123993 -0.002142906 -0.03892225 0.008174717 -0.001379966 -0.03939998 0.008450508 -0.002120614 -0.03969079 0.008282661 -0.002131581 -0.03961563 0.008325994 -0.00212115 -0.03976577 0.008239328 -0.001379966 -0.04004997 0.008075237 -0.00213027 -0.03982836 0.008203208 -0.002148032 -0.03955602 0.008360445 -0.002182424 -0.0394712 0.00840938 -0.002219974 -0.04004997 0.008075237 -0.002181112 -0.03997594 0.008117973 -0.002150893 -0.03990221 0.008160531 -0.001379966 -0.03874999 0.008075237 -0.002219974 -0.0386756 0.007896482 -0.002176165 -0.03874999 0.007977366 -0.002142906 -0.03874999 0.007876336 -0.002125561 -0.03874999 0.007789611 -0.002219974 -0.03864943 0.007699966 -0.002119779 -0.03874999 0.007722496 -0.002219974 -0.0386756 0.007503449 -0.002124071 -0.03874999 0.007621824 -0.002119421 -0.03874999 0.007699906 -0.001379966 -0.03874999 0.007324695 -0.001379966 -0.03939998 0.006949424 -0.001379966 -0.04004997 0.007324695 -0.002125442 -0.03980189 0.007181465 -0.002119421 -0.03972494 0.00713706 -0.002125561 -0.03964745 0.007092297 -0.002176165 -0.03948473 0.00699836 -0.002142906 -0.03957223 0.007048904 -0.002142906 -0.03987771 0.007225215 -0.002176284 -0.03996556 0.007275998 -0.002219974 -0.04004997 0.007324695 -0.002219974 -0.03959196 0.006974399 -0.002219974 -0.03977525 0.007049977 -0.002219974 -0.03993237 0.007170915 -0.002219974 -0.03869074 0.009570002 -0.002219974 -0.03869074 0.00582993 -0.002219974 -0.03899991 0.005740404 -0.002219974 -0.03839999 0.009432017 -0.002219974 -0.03813511 0.00924921 -0.002219974 -0.03790295 0.009026229 -0.002219974 -0.04015052 0.007699966 -0.002219974 -0.04137408 0.008020818 -0.002219974 -0.04012495 0.007894217 -0.002219974 -0.04129707 0.008333325 -0.002219974 -0.0405361 0.006053984 -0.002219974 -0.03740644 0.007860898 -0.002219974 -0.03740644 0.007539033 -0.002219974 -0.04012495 0.007505714 -0.002219974 -0.04137408 0.007379174 -0.002219974 -0.04139995 0.007699966 -0.002219974 -0.04078543 0.006257593 -0.002219974 -0.04099887 0.006498515 -0.002219974 -0.04117089 0.006770551 -0.002219974 -0.04129707 0.007066607 -0.002219974 -0.03813511 0.006150782 -0.002219974 -0.03839999 0.005967915 -0.002219974 -0.03770959 0.006631016 -0.002219974 -0.03790295 0.006373703 -0.002219974 -0.03959423 0.008424937 -0.002219974 -0.03964102 0.009685397 -0.002219974 -0.03931945 0.009698331 -0.002219974 -0.03899991 0.009659528 -0.002219974 -0.03977525 0.008349955 -0.002219974 -0.04025733 0.009506881 -0.002219974 -0.03995639 0.009621024 -0.002219974 -0.04117089 0.008629441 -0.002219974 -0.04099887 0.008901476 -0.002219974 -0.0399307 0.008230686 -0.002219974 -0.04078543 0.009142398 -0.002219974 -0.0405361 0.009345948 -0.002219974 -0.03931945 0.005701601 -0.002219974 -0.03964102 0.005714535 -0.002219974 -0.03995639 0.005778908 -0.002219974 -0.04025733 0.005893051 -0.002219974 -0.03770959 0.008768916 -0.002219974 -0.03756004 0.008483886 -0.002219974 -0.03745812 0.008178591 -0.002176165 -0.03996521 0.01772415 -0.002219974 -0.04004997 0.01767528 -0.002219974 -0.03993237 0.017829 -0.002219974 -0.03977525 0.01794999 -0.002125561 -0.03980249 0.01781815 -0.002142906 -0.03987771 0.0177747 -0.002219974 -0.03959196 0.01802557 -0.002125442 -0.03964805 0.01790732 -0.002119421 -0.03972494 0.01786291 -0.002219974 -0.03939998 0.01805055 -0.002176284 -0.03948438 0.01800179 -0.002142906 -0.03957223 0.01795107 -0.002176165 -0.03931522 0.01800161 -0.002219974 -0.03920799 0.01802557 -0.002219974 -0.03902471 0.01794999 -0.002125561 -0.0391525 0.01790767 -0.002142906 -0.03922772 0.01795107 -0.002219974 -0.03886759 0.017829 -0.002125442 -0.03899806 0.01781851 -0.002119421 -0.03907495 0.01786291 -0.002219974 -0.03874999 0.01767528 -0.002176284 -0.03883439 0.01772397 -0.002142906 -0.03892225 0.0177747 -0.002219974 -0.0386756 0.01749652 -0.002176165 -0.03874999 0.0175774 -0.002142906 -0.03874999 0.01747632 -0.002125561 -0.03874999 0.01738959 -0.002219974 -0.03864943 0.01729995 -0.002119779 -0.03874999 0.01732254 -0.002219974 -0.0386756 0.01710343 -0.002124071 -0.03874999 0.01722186 -0.002119421 -0.03874999 0.01729989 -0.002219974 -0.03874999 0.01692467 -0.002176284 -0.03874999 0.01702225 -0.002142906 -0.03874999 0.01712363 -0.001379966 -0.03874999 0.01767528 -0.001379966 -0.03874999 0.01692467 -0.001379966 -0.03939998 0.01805055 -0.001379966 -0.04004997 0.01767528 -0.001379966 -0.03939998 0.0165494 -0.001379966 -0.04004997 0.01692467 -0.002120614 -0.03975915 0.01675683 -0.002131581 -0.03983432 0.01680016 -0.00212115 -0.03968417 0.0167135 -0.00213027 -0.03962159 0.01667737 -0.002148032 -0.03989392 0.01683461 -0.002182424 -0.03997874 0.01688355 -0.002219974 -0.04004997 0.01692467 -0.002219974 -0.03939998 0.0165494 -0.002181112 -0.03947401 0.01659214 -0.002150893 -0.03954774 0.0166347 -0.002125442 -0.0391519 0.01669263 -0.002119421 -0.03907495 0.01673704 -0.002125561 -0.03899747 0.0167818 -0.002176165 -0.03883475 0.01687574 -0.002142906 -0.03892225 0.01682525 -0.002142906 -0.03922772 0.01664888 -0.002176284 -0.03931558 0.01659816 -0.002219974 -0.03886759 0.01677089 -0.002219974 -0.03902471 0.01664996 -0.002219974 -0.03920799 0.01657438 -0.002219974 -0.03869074 0.01542991 -0.002219974 -0.03899991 0.01534038 -0.002219974 -0.03813511 0.01884919 -0.002219974 -0.03790295 0.01862621 -0.002219974 -0.03869074 0.01916998 -0.002219974 -0.03839999 0.019032 -0.002219974 -0.04015052 0.01729995 -0.002219974 -0.04137408 0.0176208 -0.002219974 -0.04012495 0.01749426 -0.002219974 -0.04129707 0.0179333 -0.002219974 -0.04012495 0.01710569 -0.002219974 -0.04137408 0.01697915 -0.002219974 -0.04139995 0.01729995 -0.002219974 -0.03740644 0.01713901 -0.002219974 -0.03964102 0.01928538 -0.002219974 -0.03931945 0.01929837 -0.002219974 -0.03899991 0.01925957 -0.002219974 -0.04025733 0.01910686 -0.002219974 -0.03995639 0.019221 -0.002219974 -0.0399307 0.01676923 -0.002219974 -0.04099887 0.01609849 -0.002219974 -0.04117089 0.01637053 -0.002219974 -0.04129707 0.01666665 -0.002219974 -0.03813511 0.01575076 -0.002219974 -0.03839999 0.01556789 -0.002219974 -0.03745812 0.01682132 -0.002219974 -0.03756004 0.01651602 -0.002219974 -0.03770959 0.01623106 -0.002219974 -0.03790295 0.01597374 -0.002219974 -0.04117089 0.01822942 -0.002219974 -0.04099887 0.01850146 -0.002219974 -0.04078543 0.01874238 -0.002219974 -0.0405361 0.01894593 -0.002219974 -0.03977525 0.01664996 -0.002219974 -0.0405361 0.01565402 -0.002219974 -0.04078543 0.01585757 -0.002219974 -0.03770959 0.01836889 -0.002219974 -0.03756004 0.01808393 -0.002219974 -0.03745812 0.01777863 -0.002219974 -0.03931945 0.01530158 -0.002219974 -0.03964102 0.01531457 -0.002219974 -0.03959423 0.01657497 -0.002219974 -0.03995639 0.01537895 -0.002219974 -0.04025733 0.01549309 -0.004219949 -0.007249951 0.02488541 -0.004219949 -0.007249951 0.02259999 -0.004219949 0.007249951 0.02488541 -0.004219949 0.007249951 0.02259999 -0.007619976 0.007249951 0.02416402 -0.007619976 0.007249951 0.02259999 -0.007619976 0 0.02416396 -0.007619976 -0.007249951 0.02259999 -0.007619976 -0.007249951 0.02416402 -0.005871176 0.008847951 0.02497535 -0.005871176 0.003997564 0.02497535 -0.005736291 0.00883919 0.02499955 -0.005753099 0.003971338 0.0249986 -0.005715787 0.008836925 0.02499991 -0.005715787 0.003956377 0.02499991 -0.006051778 0.003017663 0.02491587 -0.005919933 0.002999961 0.02495938 -0.005919992 0.002999961 0.02359998 -0.005437016 0.003629446 0.02499914 -0.005486965 0.003749966 0.02499932 -0.005486965 0.003749966 0.02259999 -0.005566358 0.00385344 0.02499961 -0.005669951 0.003933012 0.02259999 -0.005669951 0.003933012 0.02499985 -0.005419969 0.003499984 0.02499902 -0.005419969 0.003499984 0.02259999 -0.005437016 0.003370404 0.02499914 -0.005486965 0.003249943 0.02259999 -0.005486965 0.003249943 0.02359998 -0.005669951 0.003066956 0.02359998 -0.005566239 0.003146588 0.02499961 -0.005486965 0.003249943 0.02499932 -0.005832791 0.00300765 0.0249862 -0.005715787 0.003043532 0.02499991 -0.005669951 0.003066956 0.02499985 -0.005871176 0.003002345 0.02497535 -0.006352961 0.003249943 0.02359998 -0.006357133 0.003257274 0.02481061 -0.006169974 0.003066956 0.02359998 -0.006332576 0.003217577 0.02481937 -0.006245613 0.003120541 0.02485001 -0.006209433 0.003092288 0.02486252 -0.006169855 0.003066897 0.02487611 -0.006092786 0.003030776 0.02490216 -0.006352961 0.003749966 0.02259999 -0.006352901 0.003750085 0.0248121 -0.006364524 0.003728866 0.02480792 -0.006376504 0.003703892 0.02480363 -0.006413519 0.003579854 0.02479016 -0.006419956 0.003499984 0.02259999 -0.006417751 0.003547132 0.02478861 -0.006419956 0.003499925 0.02478778 -0.006352961 0.003249943 0.02259999 -0.006413221 0.003417968 0.02479028 -0.006404697 0.003377377 0.02479338 -0.006290018 0.003836214 0.02483445 -0.006169974 0.003933012 0.02259999 -0.006271123 0.003855884 0.02484107 -0.005919992 0.003999948 0.02259999 -0.005919933 0.003999948 0.02495938 -0.005974709 0.003996968 0.02494144 -0.006011664 0.003991484 0.02492922 -0.006137967 0.00394994 0.0248869 -0.006165742 0.003935396 0.02487748 -0.007430672 0.007899999 0.02433067 -0.007503926 0.007704615 0.02428919 -0.007372975 0.007774472 0.02436244 -0.007554113 0.007479846 0.02425998 -0.007571041 0.007249355 0.02424997 -0.007570981 0 0.02424997 -0.007150888 0 0.0244773 -0.006717443 0 0.0246725 -0.005871176 0 0.02497535 -0.006789863 0.008617281 0.0246424 -0.006994009 0.008472561 0.02455228 -0.007173597 0.008297979 0.02446621 -0.007318258 0.008106529 0.02439182 -0.006580054 0.008723378 0.02472746 -0.006563067 0.008730351 0.02473402 -0.006068587 0.008845686 0.02491039 -0.006225049 0.008826613 0.02485728 -0.006320238 0.008807361 0.0248239 -0.007608652 0.007249712 0.02421021 -0.007614731 0 0.02419596 -0.007595837 0 0.02422916 -0.00759828 0.007249593 0.02422618 -0.007577419 0.007249414 0.02424585 -0.007614552 0.007353186 0.02418702 -0.007602572 0.007492601 0.02417379 -0.007597684 0.007523477 0.02418136 -0.00755459 0.007716894 0.02420008 -0.00755757 0.00770533 0.02420538 -0.007472991 0.007941424 0.02424377 -0.00743097 0.008027017 0.02427858 -0.007434546 0.008022069 0.02426397 -0.007330477 0.008196055 0.02433383 -0.006765663 0.008716404 0.02460306 -0.006847023 0.008674919 0.02453249 -0.006928145 0.008611977 0.02453219 -0.007044076 0.008525252 0.02444952 -0.007077455 0.008489787 0.02446264 -0.00712192 0.008452177 0.02441483 -0.0072124 0.008350372 0.02439576 -0.007215976 0.008350133 0.0243715 -0.007358133 0.008156418 0.02430284 -0.00612992 0.008936941 0.02478843 -0.006186008 0.008929014 0.02477043 -0.00621432 0.008922934 0.02477812 -0.006396651 0.008881747 0.0247004 -0.006021201 0.008944928 0.02484363 -0.005919992 0.008949995 0.02485424 -0.005847096 0.008941233 0.02491581 -0.005835235 0.008947849 0.02488029 -0.006030797 0.008931338 0.0248748 -0.00603652 0.008913159 0.02489507 -0.005858838 0.008918821 0.02494835 -0.005867421 0.00888437 0.02496933 -0.006040692 0.008883059 0.02491277 -0.006228327 0.008861839 0.02484923 -0.006589829 0.008756518 0.02471655 -0.006760001 0.008673548 0.02464783 -0.007596135 0.007334053 0.02422749 -0.007576584 0.007514476 0.02423918 -0.007537364 0.007690489 0.0242623 -0.007413268 0.008002519 0.02433294 -0.007314682 0.00816673 0.0243864 -0.007198691 0.008316874 0.02444636 -0.00706613 0.008452653 0.02451127 -0.006919503 0.008571803 0.02457886 -0.007577419 0.007249414 0.02424585 -0.006410896 0.008865952 0.02474254 -0.006403148 0.008879125 0.02471065 -0.006592154 0.008801519 0.02467364 -0.006585061 0.008814156 0.02464145 -0.006748199 0.00873214 0.02459323 -0.007612764 0.007335841 0.02419656 -0.007592916 0.007520079 0.02420854 -0.0075531 0.007699728 0.02423232 -0.007427334 0.008017778 0.02430462 -0.007327437 0.008184969 0.02435922 -0.007210075 0.008337736 0.02442044 -0.007075846 0.00847578 0.02448666 -0.00692743 0.008596837 0.02455556 -0.006765961 0.008700251 0.02462571 -0.006593585 0.008784532 0.02469569 -0.006413578 0.008848428 0.02476394 -0.006222903 0.008909523 0.02480965 -0.006226956 0.008891522 0.02483052 -0.006634056 0.008792698 0.02461522 -0.006691753 0.008764684 0.02459335 -0.005711376 0.008871614 0.02499359 -0.005706965 0.008906126 0.02497154 -0.005704045 0.008928894 0.02493727 -0.005703151 0.008936107 0.02489995 -0.006691753 0.008764684 0.02259999 -0.005654036 0.008929014 0.02259999 -0.006185889 0.008929014 0.02259999 -0.007434666 0.008021771 0.02259999 -0.007122039 0.008452057 0.02259999 -0.007599055 0.007515907 0.02259999 -0.004238128 0.007497787 0.02488583 -0.00424087 0.007515907 0.02259999 -0.00440526 0.008021771 0.02488881 -0.004378557 0.007966876 0.02488839 -0.00440526 0.008021771 0.02259999 -0.004329442 0.00785011 0.02488756 -0.004288256 0.007726907 0.02488684 -0.004811167 0.008538603 0.02489429 -0.004717886 0.008452057 0.02489316 -0.004717886 0.008452057 0.02259999 -0.004641234 0.008370161 0.02489221 -0.004495739 0.008178174 0.02489018 -0.005006849 0.008683919 0.0248962 -0.005148172 0.008764684 0.02259999 -0.005148172 0.008764684 0.02489733 -0.005654036 0.008929014 0.02489984 -0.005465626 0.008888125 0.02489924 -0.005239486 0.008807837 0.02489799 -0.004317998 0.007249951 0.02498543 -0.004268825 0.007249951 0.02497136 -0.004308342 0.007543563 0.02497839 -0.004343986 0.007537066 0.0249859 -0.004387259 0.007827639 0.02497988 -0.004421174 0.007814824 0.02498739 -0.004515886 0.008092939 0.02498221 -0.00454694 0.008074223 0.0249896 -0.00469011 0.008330881 0.02498501 -0.00471729 0.00830686 0.02499222 -0.00490415 0.008533716 0.02498781 -0.004926621 0.008505165 0.02499496 -0.005151152 0.008694887 0.02499037 -0.005168199 0.008662819 0.02499735 -0.005423128 0.008809208 0.02499222 -0.005434095 0.008774578 0.02499908 -0.005124986 0.008745074 0.02493333 -0.0054062 0.008863329 0.02493536 -0.00486958 0.00857824 0.02493065 -0.004468202 0.008122205 0.02492463 -0.004648268 0.008368372 0.02492761 -0.004335165 0.007847666 0.02492219 -0.004253625 0.007553756 0.02492052 -0.004233062 0.007249951 0.02493488 -0.004247903 0.007249951 0.02495473 -0.004275023 0.007549762 0.02495533 -0.004355549 0.007839798 0.02495688 -0.004486858 0.008110642 0.02495926 -0.004664599 0.00835359 0.02496218 -0.00488311 0.008560657 0.02496516 -0.005135238 0.008725225 0.02496778 -0.005412817 0.008841931 0.02496969 -0.004233062 -0.007249951 0.02493488 -0.004247546 -0.007249951 0.02495437 -0.004268825 -0.007249951 0.02497136 -0.004317998 -0.007249951 0.02498543 -0.005851924 -0.008847415 0.0249812 -0.005871176 -0.008847951 0.02497535 -0.005867421 -0.00888437 0.02496933 -0.005835235 -0.008947849 0.02488029 -0.005703151 -0.008936107 0.02489995 -0.005841553 -0.00894612 0.02489954 -0.005703985 -0.008929371 0.02493607 -0.005847096 -0.008941233 0.02491581 -0.005855977 -0.008926093 0.02494066 -0.005706787 -0.008907377 0.02497029 -0.005858838 -0.008918821 0.02494835 -0.005865573 -0.008894264 0.02496522 -0.005711078 -0.008873641 0.02499282 -0.005715787 -0.008836925 0.02499991 -0.004717886 -0.008452057 0.02489316 -0.004681766 -0.008414804 0.02489274 -0.004653096 -0.008373916 0.02492743 -0.004253864 -0.007555603 0.02492034 -0.004336416 -0.007851183 0.02492195 -0.004296362 -0.007753908 0.02488696 -0.004241108 -0.007517397 0.02488589 -0.004465758 -0.008130431 0.0248897 -0.00440526 -0.008021771 0.02488881 -0.004470944 -0.008126974 0.02492445 -0.004393339 -0.00799793 0.02488863 -0.004330754 -0.007853567 0.02488756 -0.004527926 -0.008225739 0.0248906 -0.004876613 -0.008592128 0.02489495 -0.004876792 -0.008584022 0.02493053 -0.005070388 -0.008722424 0.02489674 -0.005134701 -0.008750259 0.02493321 -0.005148172 -0.008764684 0.02489733 -0.005279242 -0.008824586 0.02489823 -0.00541836 -0.008867263 0.02493518 -0.005416572 -0.008873701 0.024899 -0.005654036 -0.008929014 0.02489984 -0.005493938 -0.008895695 0.02489936 -0.004275023 -0.00755161 0.02495497 -0.004356503 -0.007843255 0.02495658 -0.004489362 -0.00811547 0.02495896 -0.004669189 -0.008359193 0.02496188 -0.004890024 -0.008566498 0.02496486 -0.005144715 -0.00873059 0.02496755 -0.005424797 -0.008846104 0.02496939 -0.004308044 -0.007545471 0.0249781 -0.004387915 -0.007831215 0.02497965 -0.004518091 -0.008097827 0.02498197 -0.004694283 -0.008336603 0.02498477 -0.004910707 -0.008539736 0.02498763 -0.005160272 -0.00870043 0.0249902 -0.005434751 -0.00881356 0.02499198 -0.005445718 -0.008778214 0.02499914 -0.005177378 -0.008667647 0.02499741 -0.004933416 -0.008510529 0.02499502 -0.004721879 -0.008312046 0.02499228 -0.004549622 -0.008078634 0.0249896 -0.004422366 -0.007818043 0.02498739 -0.004344284 -0.007538735 0.0249859 -0.00440526 -0.008021771 0.02259999 -0.00424087 -0.007515907 0.02259999 -0.007612824 -0.007405817 0.02416807 -0.007599055 -0.007515907 0.02259999 -0.007574915 -0.007638692 0.02418899 -0.007506191 -0.007861495 0.02422612 -0.007434666 -0.008021771 0.02259999 -0.007478475 -0.007928967 0.02424091 -0.00727725 -0.008273541 0.02434247 -0.007301568 -0.00824052 0.02433073 -0.007122039 -0.008452057 0.02259999 -0.007408738 -0.008070707 0.02427732 -0.007434546 -0.00802195 0.02426397 -0.006691753 -0.008764684 0.02259999 -0.006691753 -0.008764684 0.02459359 -0.006899476 -0.008639395 0.02451097 -0.007075667 -0.008496761 0.02443552 -0.007099926 -0.008473813 0.02442473 -0.00712198 -0.008452117 0.02441483 -0.006675481 -0.00877285 0.02459979 -0.006185889 -0.008929014 0.02259999 -0.006433129 -0.008870661 0.02468752 -0.005654036 -0.008929014 0.02259999 -0.005919992 -0.008949995 0.02485424 -0.006178498 -0.008930206 0.02477264 -0.005148172 -0.008764684 0.02259999 -0.004717886 -0.008452057 0.02259999 -0.006037175 -0.008930981 0.02487266 -0.006122827 -0.008840799 0.02489221 -0.006236732 -0.008860349 0.02484631 -0.00604695 -0.008882701 0.02491068 -0.007478833 -0.007926583 0.0242514 -0.006027638 -0.008944571 0.02484148 -0.006757557 -0.008726358 0.0245915 -0.006596028 -0.008809447 0.0246371 -0.0064134 -0.008876025 0.0247069 -0.006222903 -0.008921444 0.02477514 -0.007303237 -0.008235156 0.02434843 -0.007079601 -0.008487761 0.02446156 -0.007585644 -0.007589161 0.02418863 -0.007612168 -0.007411956 0.02417254 -0.007619798 -0.007249951 0.02416962 -0.007564783 -0.007578015 0.02424615 -0.007460176 -0.007905006 0.02430671 -0.007460057 -0.007830739 0.02431422 -0.00756663 -0.007367193 0.02425259 -0.007590711 -0.007406592 0.02423071 -0.007538139 -0.007569849 0.02426934 -0.007532179 -0.007597565 0.02427285 -0.007287859 -0.008204758 0.02440053 -0.007353961 -0.008048534 0.02437275 -0.00743556 -0.007889091 0.02432799 -0.007068276 -0.008450746 0.02451026 -0.0072093 -0.008255958 0.02444827 -0.007266283 -0.008182346 0.02441912 -0.006770074 -0.008667886 0.02464359 -0.006832599 -0.008590757 0.02462416 -0.007035255 -0.008437037 0.02453309 -0.006422281 -0.008816421 0.02478003 -0.006370663 -0.008794784 0.02480584 -0.006415486 -0.008782088 0.02478957 -0.006600558 -0.008751988 0.02471238 -0.006609141 -0.008710861 0.02471601 -0.00675714 -0.008636415 0.02465611 -0.006231486 -0.008908033 0.02480667 -0.006421148 -0.008862912 0.02473872 -0.006603121 -0.00879687 0.02466928 -0.006775915 -0.008710563 0.02459871 -0.006042838 -0.008912801 0.02489298 -0.00623548 -0.008890032 0.02482753 -0.006423771 -0.008845388 0.02476024 -0.006604433 -0.008779942 0.0246914 -0.006776154 -0.008694469 0.02462142 -0.007078051 -0.008473813 0.02448564 -0.007300317 -0.008223652 0.02437365 -0.007474899 -0.007918477 0.02427774 -0.007580935 -0.007584989 0.02421575 -0.007607281 -0.00740993 0.0241999 -0.00760585 -0.007249653 0.02421528 -0.007571041 -0.007249355 0.02424997 -0.007614731 0 0.02419596 -0.007619798 -0.007249951 0.02416962 -0.007595837 0 0.02422916 -0.007390737 -0.007753431 0.02435272 -0.005715787 0 0.02499991 0.01015514 -0.01999998 0.001618266 0.01013594 -0.01999998 0.001701056 0.006258368 -0.01999998 7.15576e-4 0.006239175 -0.01999998 7.98384e-4 0.01015514 0.01999998 0.001618266 0.01013594 0.01999998 0.001701056 0.006258368 0.01999998 7.15576e-4 0.006239175 0.01999998 7.98384e-4 -0.005645453 0.03250002 0.02499979 -0.003347158 0.02141666 0.02495998 -0.00316143 0.02167499 0.02495372 -0.003420948 0.02379369 0.02496236 0.001025378 0.02632427 0.02379995 0.001286327 0.02653235 0.02379995 7e-4 0.02774995 0.02379995 0.001025378 0.02767568 0.02379995 0.00110948 0.02637165 0.02317482 0.001025378 0.02767568 0.0231828 7e-4 0.02774995 0.02321237 -0.002499997 0.02774995 0.02472734 -0.002499997 0.02774995 0.02342605 0.012995 0.0349211 0.01995152 0.012995 0.03249996 0.02033495 0.012995 0.03710526 0.01883864 0.012995 0.03780746 0.01826351 0.012995 0.02811723 0.019948 0.012995 0.02881908 0.02033495 0.003429949 0.02249997 0.02296644 0.00175935 0.02707564 0.02293723 0.00333631 0.02760624 0.02296477 0.001677036 0.02661716 0.0229358 0.003629982 0.02851843 0.02182775 0.007766962 0.02851843 0.02182775 0.003629982 0.03046268 0.02182775 0.007766962 0.03539466 0.02182775 0.003429949 0.03055161 0.02182775 -0.003669977 0.03042769 0.02182775 + + + + + + + + + + -0.9666454 -0.176079 0.1859918 -0.8187928 -0.5426411 0.1874008 -0.5104334 -0.8391728 0.1877416 -0.3161323 -0.9433501 0.1007516 -0.3091249 -0.9332032 0.1832309 -0.3039665 -0.9109366 0.2789245 -0.2842905 -0.8557591 0.4322679 -0.2596727 -0.7958946 0.5469205 -0.2483807 -0.7541072 0.6079715 -0.2113499 -0.6457804 0.7336886 -0.1644731 -0.515716 0.8408244 -0.1544243 -0.4790014 0.8641244 -0.06207418 -0.1015855 0.9928883 -0.2125331 -0.158971 0.9641359 -0.1747024 -0.01053446 0.984565 -0.9648351 -0.1763321 0.1949369 -0.8172041 -0.1498181 0.5565357 -0.8221307 -0.1512723 0.5488332 -0.5403153 -0.101491 0.8353198 -0.5304889 -0.09899884 0.8418912 -0.09359794 -0.02202236 0.9953665 -0.3239107 -0.09660458 0.9411427 -0.08388119 -0.06196212 0.9945476 -0.4584198 -0.2833333 0.8423619 -0.4608057 -0.2850707 0.8404718 -0.7146447 -0.4328089 0.5495083 -0.7161755 -0.4339771 0.5465863 -0.799561 -0.4723491 -0.3709296 -0.9027028 -0.3875111 0.1869836 -0.04755246 -0.1674445 0.9847341 -0.04232865 -0.1471052 0.9882148 -0.1290718 -0.1786557 0.975409 -0.3293429 -0.4265961 0.8423473 -0.3311597 -0.4292787 0.8402697 -0.5170029 -0.6564603 0.5493342 -0.518225 -0.6581826 0.5461122 -0.5688014 -0.7038207 -0.4255601 -0.6521272 -0.7352626 0.1847138 -1 0 0 -0.8159092 -0.5781803 0 -0.3183494 -0.9479735 0 -0.3681047 -0.9281601 0.05493569 -0.9749128 -0.222587 0 -0.9836115 -0.1784384 0.02585029 -0.9195675 -0.3929321 0 -0.815911 -0.5781776 5.41625e-7 -0.8340445 -0.5506537 0.03391826 -0.63971 -0.7681912 -0.02556639 -0.6651886 -0.7466754 -1.69628e-6 -0.521374 -0.8533284 0 0.248878 -0.9575468 0.145479 0.2453327 -0.01352953 -0.9693446 0.240131 -0.08164268 -0.9673013 0.2596319 -0.1259205 -0.957463 0.237631 -0.2677088 -0.9337363 0.2605448 -0.3187652 -0.9113206 0.2368409 -0.4468482 -0.8626895 0.2613176 -0.4980933 -0.826811 0.2361842 -0.6084532 -0.7576292 0.2619494 -0.6563665 -0.7075065 0.2356562 -0.7461328 -0.6226974 0.2624405 -0.7869421 -0.5584328 0.2352613 -0.8544562 -0.463203 0.248748 -0.8696625 -0.4263936 0.2489168 -0.9088073 -0.3348276 0.2349982 -0.9291414 -0.2854335 0.2487947 -0.9375671 -0.2430413 0.2488788 -0.9575455 -0.1454855 0.2348662 -0.9672344 -0.09641414 0.2211399 -0.9739524 0.05013799 0.2231407 -0.9435974 0.2446063 0.2489164 -0.9088064 0.3348307 0.247995 -0.8516663 0.4616959 0.225134 -0.8748335 0.4289301 0.2779451 -0.7375026 0.615497 0.2173861 -0.7960227 0.5648815 0.2747359 -0.6020692 0.7496885 0.2209705 -0.6633029 0.7149834 0.2716438 -0.4426366 0.8545657 0.2244006 -0.5028633 0.8347293 0.2686695 -0.2654649 0.9259293 0.227683 -0.3214987 0.9191295 0.2664556 -0.07218044 0.9611408 0.2360487 -0.1267077 0.963445 0.245333 -0.01352953 0.9693445 0.2025933 -0.08224719 -0.975803 0.2092978 -0.09254765 -0.9734626 0.2032256 -0.2533019 -0.9458 0.2125505 -0.2693045 -0.9393069 0.2006071 -0.4249721 -0.8826979 0.2151103 -0.4491665 -0.8671661 0.1983868 -0.5819478 -0.7886567 0.2172415 -0.6112116 -0.7610693 0.1965678 -0.7187028 -0.6669539 0.2189441 -0.7491281 -0.6251965 0.1951514 -0.8304162 -0.5218478 0.2202202 -0.8575485 -0.4648804 0.1941389 -0.91315 -0.3584231 0.2210706 -0.9322577 -0.2863976 0.2068915 -0.9772948 0.04572528 0.2068914 -0.9772952 -0.04571771 0.2214952 -0.9703527 -0.09672397 0.2068346 -0.9679504 -0.1424489 0.2069435 -0.9504034 -0.2321808 0.2068349 -0.9679535 0.1424272 0.2214957 -0.9703518 0.09673213 0.2479946 -0.9639837 0.09609425 0.2488389 -0.9672643 -0.04979151 0.2479938 -0.9260474 0.2844915 0.2210696 -0.9322578 0.2863981 0.2069429 -0.9503998 0.2321956 0.2023622 -0.09497141 0.9746948 0.2094957 -0.08212512 0.9743547 0.202269 -0.2699025 0.9414032 0.2134509 -0.2527413 0.9436951 0.1979703 -0.4508287 0.8703801 0.2176374 -0.423393 0.8794159 0.1932294 -0.6143608 0.7649989 0.2222067 -0.5789089 0.7845309 0.1880453 -0.754058 0.6293138 0.2271538 -0.7138454 0.6624394 0.1824146 -0.8643766 0.4685918 0.2324731 -0.8235028 0.5174935 0.1941397 -0.9131501 0.3584226 0.05378973 -0.1698931 -0.9839935 0.01598507 -0.03802418 -0.999149 0.03505218 -0.08014929 -0.9961664 0.02466273 -0.06957173 -0.9972721 0.02223223 -0.06752109 -0.9974702 0.03440141 -0.08018523 -0.9961862 0.03742533 -0.08414566 -0.9957505 0.08884054 -0.2047693 -0.9747702 0.09485977 -0.2033416 -0.9745019 0.114 -0.2811119 -0.95288 0.1021773 -0.2573453 -0.9609023 0.09775185 -0.3366819 -0.9365309 0.09733182 -0.431728 -0.8967372 0.09733128 -0.431728 -0.8967372 0.09733146 -0.5909311 -0.8008291 0.09733211 -0.5909296 -0.80083 0.09733206 -0.7295214 -0.6769971 0.09733152 -0.7295226 -0.6769958 0.09733164 -0.8426754 -0.5295516 0.09733134 -0.8426762 -0.5295503 0.09733134 -0.9264418 -0.3636375 0.09733158 -0.9264392 -0.363644 0.09733164 -0.9778977 -0.1850477 0.09733235 -0.9778974 -0.1850492 0.09733247 -0.995252 0 0.09733164 -0.9952521 -2.9936e-6 0.09733146 -0.9778987 0.1850433 0.09733188 -0.926442 0.363637 0.09733152 -0.9264425 0.3636355 0.09733223 -0.8426774 0.5295482 0.09733146 -0.8426767 0.5295494 0.09733211 -0.7295272 0.6769909 0.09733188 -0.729527 0.6769911 0.09733164 -0.590932 0.8008284 0.09733206 -0.5909334 0.8008272 0.09733265 -0.4317322 0.8967351 0.0973317 -0.4317325 0.8967351 0.09469872 -0.0981087 0.9906598 0.09485983 -0.2033446 0.9745013 0.1081439 -0.2571871 0.9602916 0.1007815 -0.283962 0.9535244 0.09775036 -0.3366708 0.936535 0.01334327 -0.1112253 0.9937057 0.01598459 -0.03802686 0.999149 0.03507918 -0.08020853 0.9961608 0.03742527 -0.08415699 0.9957495 0.02918934 -0.07339954 0.9968754 0.02466452 -0.06957566 0.9972717 0.05604147 -0.05857217 0.9967089 0.05890381 -0.06439822 0.9961844 0.07385456 -0.08441358 0.9936901 0.05379569 -0.1698984 0.9839922 0.08882474 -0.2047756 0.9747703 0.1596139 -0.08291196 0.9836916 0.1557949 -0.9595692 0.2344249 0.1552578 -0.9195744 0.3609405 0.1552565 -0.9195739 0.3609423 0.1552574 -0.836431 0.5256221 0.1552565 -0.8364312 0.525622 0.1552569 -0.7241175 0.6719741 0.1552572 -0.7241186 0.6719729 0.1552567 -0.586552 0.7948912 0.1552572 -0.586552 0.7948912 0.1552581 -0.4285342 0.8900863 0.1552557 -0.4285303 0.8900884 0.1552569 -0.2555675 0.9542436 0.1552572 -0.255567 0.9542436 0.1554877 -0.09140676 0.9835998 0.107985 -0.07649183 0.9912055 0.09733152 -0.9778983 0.1850445 0.1552571 -0.9706495 0.1836704 0.1362103 -0.9801236 0.1442379 0.1552568 -0.2555628 -0.9542447 0.155257 -0.4285299 -0.8900886 0.1552572 -0.4285271 -0.8900898 0.1552572 -0.5865486 -0.7948938 0.1552569 -0.5865496 -0.7948931 0.1552572 -0.7241159 -0.6719758 0.1552566 -0.7241132 -0.6719787 0.1552571 -0.8364289 -0.5256252 0.1552574 -0.8364291 -0.525625 0.1552571 -0.9195712 -0.360949 0.155257 -0.9195746 -0.3609402 0.1557936 -0.9595665 -0.2344369 0.1449517 -0.9721858 -0.1839669 0.1557106 -0.9772784 -0.1438097 0.1552564 -0.9878742 -5.73057e-6 0.1334576 -0.9899719 -0.04631352 0.1557554 -0.9867163 0.04616552 0.1596137 -0.08291292 -0.9836916 0.0603643 -0.05704659 -0.996545 0.05603468 -0.06055766 -0.9965907 0.0738523 -0.08440887 -0.9936907 0.1076824 -0.106624 -0.9884512 0.0944972 -0.07223397 -0.9929011 0.1554881 -0.09140467 -0.9835999 0.1552563 -0.2555619 -0.9542452 0.1753115 0.9831052 -0.05263197 0.1803367 0.9677609 -0.1758337 0.1600567 0.9455749 -0.2833198 0.1583952 0.8272014 -0.5391188 0.1335684 0.7803729 -0.6108828 0.1010285 0.5296277 -0.8421922 0.09189862 0.5095975 -0.8554911 0.02989298 0.1732336 -0.984427 0.03166425 0.1775692 -0.9835988 0.8243972 0.1301435 -0.5508465 0.3638864 0.05744528 -0.9296702 0.9727477 0.1535656 -0.1737225 0.9727504 0.1535648 -0.173708 0.9153766 0.3623647 -0.1754351 0.6577199 0.3631815 -0.6599272 0.8299008 0.529959 -0.1743792 0.6692641 0.7222582 -0.1744383 0.4745084 0.5825479 -0.659909 0.5195727 0.8362183 -0.1754513 0.3243286 0.9298601 -0.1736986 0.3243286 0.9298532 -0.1737353 0.05859351 0.1679879 -0.9840462 0.05859011 0.1679792 -0.9840479 0.113022 0.138756 -0.9838561 0.1130241 0.1387587 -0.9838556 0.1566639 0.08650708 -0.9838562 0.1566649 0.08650755 -0.983856 0.1757267 0.02774107 -0.9840481 0.1757311 0.02774214 -0.9840472 0.1791208 0.5135437 -0.8391595 0.1791118 0.5135173 -0.8391776 0.3449622 0.4235063 -0.8376417 0.3449211 0.423457 -0.8376834 0.4781506 0.2640265 -0.8376528 0.4781375 0.2640189 -0.8376625 0.5367469 0.08645665 -0.8393021 0.553451 0.08737057 -0.8282864 0.2783587 0.7980609 -0.5344299 0.278355 0.798052 -0.5344454 0.5347125 0.6564626 -0.5321086 0.5347397 0.6564931 -0.5320436 0.7412012 0.4092772 -0.5320836 0.7411828 0.4092684 -0.5321161 0.8345385 0.1333972 -0.5345565 0.9213265 0.1454479 -0.3605583 0.9844265 0 -0.1757967 0.9312101 0 -0.3644829 0.1757966 0 -0.9844266 0.3644746 0.006858646 -0.9311881 0.1950907 0 -0.9807853 0.1950908 0 -0.9807853 0.1950906 0 -0.9807853 0.1950911 0 -0.9807852 0.1950908 0 -0.9807853 0.1950908 0 -0.9807852 0.8314672 0 -0.5555739 0.5555739 0 -0.8314673 0.1950909 0 -0.9807852 0.1950908 0 -0.9807853 0.1950909 0 -0.9807853 0.3644826 -0.00137192 -0.9312092 0.1757965 0 -0.9844266 0.1757969 0 -0.9844266 0.982577 0 -0.1858561 0.9825647 -2.26472e-7 -0.1859214 0.9125767 0 -0.4089056 0.9125505 0 -0.408964 0.8119625 0 -0.5837098 0.8118822 -3.95911e-7 -0.5838214 0.6542588 2.1178e-7 -0.7562708 0.6541509 0 -0.7563642 0.3887609 0 -0.9213387 0.3887615 0 -0.9213386 1 0 0 0.3293371 0.9442125 0 0.3316069 0.9411865 0.06484508 0.5276589 0.8492313 -0.01955378 0.5393039 0.8421113 -8.40357e-5 0.6796842 0.7335049 2.47676e-4 0.6780714 0.7349695 -0.006254673 0.8427968 0.5381935 0.006437659 0.8411667 0.5407761 -1.68496e-4 0.929797 0.3680729 9.07442e-5 0.9229037 0.3847188 -0.01550197 0.9868448 0.1557902 0.04320627 0.9846077 0.1747789 0 0.2755311 0.4274073 -0.8610492 0.2508502 0.09233689 -0.963612 0.3885601 0.03207463 -0.920865 0.26618 0.0505895 -0.9625949 0.2714371 0.03627526 -0.9617723 0.2093696 0.08093208 -0.9744816 0.1528746 0.02811932 -0.9878455 0.1493338 0.06431931 -0.9866927 0.2884742 0.5974415 -0.7482289 0.2938324 0.4711488 -0.8316738 0.3491437 0.7501972 -0.5615183 0.3479332 0.7570421 -0.5530189 0.3642674 0.8499319 -0.3806903 0.3560559 0.9121091 -0.2031777 0.3620709 0.9184586 -0.159181 0.2637937 0.07699978 -0.961501 0.2389263 0.04533064 -0.9699791 0.528518 0.2347077 -0.8158316 0.512329 0.2160068 -0.83118 0.7552176 0.3940832 -0.5237795 0.7468009 0.378754 -0.5466569 0.5860757 0.5944558 -0.5505794 0.5887599 0.6203639 -0.5181799 0.4281082 0.3535515 -0.8317 0.4399035 0.3875759 -0.8101049 0.24869 0.1176792 -0.9614078 0.1958565 0.1544643 -0.968391 0.205659 0.2263482 -0.9520877 0.284979 0.05153268 -0.9571476 0.6526165 0.06844741 -0.7545905 0.5639159 0.07479119 -0.8224387 0.805325 0.1268355 -0.5791066 0.8386943 0.1237291 -0.5303614 0.9024974 0.1480153 -0.4044625 0.9686485 0.1677079 -0.183287 0.9707276 0.1660909 -0.1734987 0.9116355 0.3656109 -0.1877483 0.8627312 0.5034796 -0.04693806 0.8384644 0.5175979 -0.1704993 0.641633 0.7406106 -0.1995072 0.6703647 0.7397585 0.0580402 0.5534551 0.8137652 -0.1774082 0.01799416 0.3021608 0.9530872 0.04699182 0.4914206 -0.8696538 0.08377671 0.5282447 -0.8449491 0.07834202 0.5358465 -0.840673 0.0741108 0.6088167 -0.7898417 0.04062896 0.2924746 -0.9554099 0.04291832 0.3699656 -0.9280536 0.08540922 0.5271046 -0.8454975 0.1279776 0.5408559 -0.8313224 0.1284453 0.5310043 -0.8375777 0.1464686 0.8134049 -0.5629561 0.14484 0.8150187 -0.5610402 0.1352481 0.8303497 -0.5405806 0.1966652 0.9629321 -0.1846202 0.1715496 0.972576 -0.1570569 0.1874967 0.8927269 -0.4097362 0.194729 0.785261 -0.5877464 0.1920012 0.8053036 -0.5609115 0.1872417 0.6175202 -0.7639434 0.1847977 0.5235587 -0.8317068 0.1739386 0.447173 -0.8773722 0.124992 0.06871128 -0.9897757 0.002517402 0.0110929 -0.9999354 0.008992135 0.09950387 -0.9949966 0.01366645 0.08541512 -0.9962518 0.04507523 0.2868517 -0.9569141 0.05804228 0.1197979 -0.9911002 0.09789568 0.2683352 -0.9583385 0.09879714 0.1348614 -0.9859268 0.1514778 0.240257 -0.9588176 0.1511688 0.2363221 -0.9598437 0.1706827 0.9839372 -0.05229681 0.03153729 0.1775617 -0.9836043 0.1533468 0.8837983 -0.4420242 0.1550759 0.8826989 -0.443615 0.1535924 0.8666483 -0.4746897 0.1678634 0.9391751 -0.2996202 0.1677096 0.9442298 -0.2833792 0.0821951 0.501499 -0.8612449 0.04404032 0.3255707 -0.9444916 0.0138781 0.09269821 -0.9955976 0.01922982 0.1807582 -0.9833396 0.01038938 0.09303259 -0.9956089 0.006589591 0.07331269 -0.9972873 0.007009685 0.08879357 -0.9960254 0.03154098 0.1775819 -0.9836005 0.03147482 0.1775968 -0.9835999 0.03147536 0.1776003 -0.9835993 0.02922672 0.1779657 -0.9836027 0.02923005 0.1779862 -0.9835988 0.02418267 0.1787285 -0.9836013 0.02448904 0.1814401 -0.9830971 0.02523481 0.1813256 -0.9830994 0.1384499 0.7794935 -0.6109187 0.1384552 0.7795253 -0.6108769 0.138164 0.7795929 -0.6108564 0.1381594 0.7795647 -0.6108934 0.1361671 0.779911 -0.6108989 0.1278573 0.770143 -0.6249259 0.07486915 0.5059344 -0.8593167 0.08236616 0.5168274 -0.8521182 0.08480882 0.5164138 -0.8521294 0.08376359 0.5109928 -0.855494 0.09035128 0.5098089 -0.8555301 0.09036022 0.5098579 -0.8554999 0.09055346 0.5098347 -0.8554933 0.09055 0.5098112 -0.8555077 -0.2225202 0.9749282 0 -0.6234896 0.7818316 0 -0.6234896 0.7818318 0 -0.9009687 0.4338842 0 -0.9009677 0.4338862 0 -0.9009677 -0.4338862 0 -0.9009687 -0.4338842 0 -0.6234896 -0.7818316 0 -0.6234896 -0.7818318 0 -0.2225202 -0.9749282 0 0 0 -1 -5.87981e-7 0 -1 0 0 -1 0 0 -1 4.19687e-7 0 -1 0 -1 0 -0.2588179 0.9659262 0 -0.2588179 0.9659261 0 -0.707108 0.7071056 0 -0.965926 0.2588185 0 -0.9659261 0.2588185 0 -0.9659264 -0.2588173 0 -0.9659263 -0.2588172 0 -0.7071055 -0.7071081 0 -0.7071056 -0.707108 0 -0.2588179 -0.9659262 0 -0.2588179 -0.9659261 0 0 1 0 0.2225194 -0.9749283 0 0.2225195 -0.9749283 0 0.6234905 -0.7818309 0 0.6234916 -0.7818301 0 0.9009684 -0.4338847 0 0.9009684 0.4338847 0 0.6234916 0.7818302 0 0.6234906 0.7818309 0 0.2225194 0.9749283 0 0.2225195 0.9749283 0 0.1593312 0.6980804 -0.698067 0.1593289 0.6980715 -0.6980763 0.4464364 0.559812 -0.6980724 0.446439 0.5598174 -0.6980665 0.6451163 0.3106726 -0.6980741 0.6451226 0.3106759 -0.6980668 0.7160232 0 -0.6980766 0.7160294 0 -0.6980702 0.6451216 -0.3106752 -0.6980682 0.6451157 -0.3106726 -0.6980748 0.4464333 -0.5598081 -0.6980774 0.446439 -0.5598174 -0.6980665 0.159329 -0.6980709 -0.698077 0.1593307 -0.698079 -0.6980684 0 0.7071117 -0.707102 -0.1593325 -0.6980839 -0.6980631 -0.1593288 -0.6980724 -0.6980754 -0.4464361 -0.5598129 -0.698072 -0.4464342 -0.5598114 -0.6980744 -0.6451136 -0.3106713 -0.6980773 -0.6451194 -0.3106734 -0.698071 -0.7160232 0 -0.6980766 -0.7160294 0 -0.6980702 -0.6451216 0.3106752 -0.6980682 -0.6451194 0.3106734 -0.698071 -0.446433 0.559809 -0.698077 -0.446439 0.5598174 -0.6980665 -0.1593292 0.6980696 -0.6980781 -0.1593288 0.6980724 -0.6980754 0 -0.7071036 -0.7071101 0 -0.7071117 -0.707102 -5.87959e-7 0 -1 0 0 -1 4.19684e-7 0 -1 -0.7071055 0.7071081 0 -0.7071056 0.707108 0 -0.9659264 0.2588173 0 -0.9659263 0.2588172 0 -0.965926 -0.2588185 0 -0.9659261 -0.2588185 0 -0.707108 -0.7071056 0 0.1593279 0.6980661 -0.6980819 0.1593337 0.6980786 -0.698068 0.4464365 0.5598143 -0.6980705 0.6451218 0.3106752 -0.6980679 0.6451157 0.3106726 -0.6980748 0.716028 0 -0.6980715 0.6451128 -0.3106709 -0.6980782 0.6451191 -0.3106743 -0.6980708 0.4464395 -0.5598158 -0.6980675 0.4464342 -0.5598114 -0.6980744 0.159329 -0.6980715 -0.6980763 0 0.7070955 -0.707118 -0.1593292 -0.6980696 -0.6980781 -0.1593304 -0.69808 -0.6980675 -0.446433 -0.559809 -0.698077 -0.6451197 -0.3106742 -0.6980704 -0.6451159 -0.3106717 -0.6980749 -0.7160329 0 -0.6980666 -0.7160256 0 -0.6980741 -0.6451172 0.310673 -0.6980732 -0.6451159 0.3106717 -0.6980749 -0.4464342 0.5598114 -0.6980744 -0.1593315 0.6980791 -0.6980682 -0.1593318 0.6980721 -0.698075 -0.2225255 0.974927 0 -0.6234863 0.7818344 0 -0.9009698 0.433882 0 -0.9009689 0.433884 0 -0.9009689 -0.433884 0 -0.9009698 -0.433882 0 0 0 -1 0 0 -1 -4.19687e-7 0 -1 -0.2588223 0.965925 0 -0.2588224 0.965925 0 -0.2588223 -0.965925 0 -0.2588224 -0.965925 0 0.9009695 -0.4338826 0 0.9009695 -0.4338825 0 0.9009695 0.4338826 0 0.9009695 0.4338825 0 0.6234882 0.7818328 0 0.6234872 0.7818337 0 0.2225247 0.9749271 0 0.159334 0.6980751 -0.6980715 0.1593303 0.6980636 -0.6980838 0.4464316 0.5598111 -0.6980763 0.4464366 0.5598143 -0.6980705 0.6451211 0.3106729 -0.6980696 0.6451209 0.3106751 -0.6980688 0.7160262 0 -0.6980735 0.7160279 0 -0.6980717 0.6451196 -0.3106722 -0.6980713 0.645114 -0.3106718 -0.6980767 0.1593301 -0.6980756 -0.6980719 0.1593346 -0.6980824 -0.6980641 0 0.7071076 -0.707106 -0.1593315 -0.6980791 -0.6980682 -0.1593335 -0.6980797 -0.6980671 -0.446439 -0.5598173 -0.6980665 -0.6451191 -0.310672 -0.6980718 -0.7160286 0 -0.698071 -0.716026 0 -0.6980738 -0.6451152 0.31067 -0.6980763 -0.6451246 0.3106759 -0.6980651 -0.4464298 0.55981 -0.6980782 -0.4464365 0.5598143 -0.6980705 -0.1593332 0.6980692 -0.6980777 -0.1593318 0.6980721 -0.698075 0 -0.7071076 -0.707106 -0.9009693 0.4338831 0 -0.9009683 0.4338851 0 -0.9009683 -0.4338851 0 -0.9009693 -0.4338831 0 0 0 -1 -5.8797e-7 0 -1 2.09841e-7 0 -1 0 0 -1 0 0 -1 -0.7071067 0.7071068 0 -0.7071068 0.7071068 0 -0.9659262 -0.2588179 0 -0.2588201 -0.9659256 0 -0.2588201 -0.9659255 0 0.9009689 -0.4338836 0 0.900969 -0.4338837 0 0.9009689 0.4338836 0 0.900969 0.4338837 0 0.4464395 0.5598158 -0.6980675 0.4464353 0.5598147 -0.698071 0.6451189 0.3106729 -0.6980717 0.6451191 0.3106743 -0.6980708 0.7160246 0 -0.6980751 0.7160286 0 -0.698071 0.6451184 -0.3106726 -0.6980723 0.6451192 -0.3106743 -0.6980708 0.4464364 -0.559812 -0.6980724 0.4464389 -0.5598174 -0.6980665 0.1593312 -0.6980804 -0.698067 0.1593314 -0.6980751 -0.6980721 -0.1593312 -0.6980761 -0.6980713 -0.4464365 -0.5598143 -0.6980705 -0.6451175 -0.3106722 -0.6980732 -0.6451176 -0.3106726 -0.698073 -0.7160295 0 -0.6980701 -0.7160248 0 -0.6980749 -0.6451184 0.3106726 -0.6980723 -0.6451177 0.3106726 -0.698073 -0.4464391 0.5598167 -0.698067 -0.4464353 0.5598147 -0.698071 -0.1593315 0.6980791 -0.6980681 -0.1593335 0.6980797 -0.6980671 0 0 -1 -5.87967e-7 0 -1 0 0 -1 -0.9659262 0.2588179 0 -0.7071067 -0.7071068 0 -0.7071068 -0.7071068 0 0.1593289 0.6980709 -0.698077 0.1593338 0.6980786 -0.698068 0.4464305 0.5598087 -0.6980788 0.6451183 0.3106731 -0.6980721 0.7160271 0 -0.6980726 0.6451172 -0.310673 -0.6980732 0.6451209 -0.3106751 -0.6980688 0.4464365 -0.5598143 -0.6980705 0.1593301 -0.6980756 -0.6980719 0.1593313 -0.6980751 -0.6980721 -0.1593298 -0.698072 -0.6980756 -0.159332 -0.6980798 -0.6980673 -0.4464354 -0.5598129 -0.6980724 -0.645118 -0.3106734 -0.6980723 -0.7160267 0 -0.6980729 -0.6451185 0.3106722 -0.6980723 -0.4464329 0.5598117 -0.6980749 -0.1593304 0.6980744 -0.6980732 -0.1593327 0.6980759 -0.6980711 -0.2225229 0.9749276 0 -0.2225229 0.9749276 0 -0.623488 0.7818329 0 -0.623488 0.7818331 0 0 0 -1 -5.87964e-7 0 -1 2.09844e-7 0 -1 0 0 -1 0 0 -1 -0.2588201 0.9659256 0 -0.2588201 0.9659255 0 0.6234899 0.7818315 0 0.6234889 0.7818323 0 0.2225221 0.9749277 0 0.159332 0.6980754 -0.6980717 0.1593314 0.6980751 -0.6980721 0.4464347 0.5598126 -0.6980732 0.645119 0.3106729 -0.6980716 0.6451174 0.3106734 -0.6980728 0.7160283 0 -0.6980713 0.7160258 0 -0.6980739 0.6451162 -0.3106716 -0.6980748 0.64512 -0.3106747 -0.6980698 0.4464365 -0.5598143 -0.6980705 0.1593295 -0.6980732 -0.6980745 -0.1593309 -0.6980767 -0.6980706 -0.1593307 -0.6980742 -0.6980732 -0.6451186 -0.3106727 -0.698072 -0.6451185 -0.310673 -0.698072 -0.7160259 0 -0.6980738 -0.7160277 0 -0.698072 -0.6451205 0.3106737 -0.6980698 -0.6451168 0.3106721 -0.6980739 -0.4464344 0.5598133 -0.6980726 -0.1593323 0.6980741 -0.6980729 -0.1593312 0.6980761 -0.6980713 0 -0.7071096 -0.707104 -0.2225216 0.9749278 0 -0.2225216 0.9749278 0 -0.6234889 0.7818323 0 -0.6234889 -0.7818323 0 -0.2225216 -0.9749278 0 -0.2225216 -0.9749278 0 -5.87966e-7 0 -1 2.09843e-7 0 -1 -0.7071062 0.7071074 0 -0.258819 -0.9659259 0 -0.2588191 -0.9659259 0 0.2225207 -0.974928 0 0.6234897 -0.7818316 0 0.6234908 -0.7818307 0 0.6234907 0.7818308 0 0.6234898 0.7818316 0 0.2225207 0.974928 0 0.1593311 0.6980755 -0.6980718 0.1593313 0.6980751 -0.6980722 0.446437 0.5598142 -0.6980703 0.6451196 0.3106732 -0.6980709 0.7160277 0 -0.698072 0.6451179 -0.3106733 -0.6980724 0.4464355 -0.5598123 -0.6980728 0.4464359 -0.5598145 -0.6980707 0.159331 -0.6980755 -0.6980718 0.1593321 -0.6980749 -0.6980721 -0.159331 -0.6980731 -0.6980743 -0.1593315 -0.6980741 -0.6980732 -0.4464344 -0.5598121 -0.6980736 -0.4464336 -0.5598115 -0.6980746 -0.6451187 -0.3106728 -0.6980718 -0.6451172 -0.310672 -0.6980736 -0.7160271 0 -0.6980726 -0.4464337 0.5598112 -0.6980748 -0.4464366 0.5598143 -0.6980705 -0.1593313 0.6980742 -0.698073 2.09843e-7 0 -1 0 0 -1 4.19685e-7 0 -1 -0.258819 0.9659259 0 -0.2588191 0.9659259 0 -0.7071062 -0.7071074 0 0.1593304 0.6980731 -0.6980744 0.1593326 0.6980769 -0.6980701 0.4464367 0.5598137 -0.698071 0.4464347 0.559813 -0.6980727 0.6451199 0.3106733 -0.6980705 0.645117 0.3106728 -0.6980734 0.446437 -0.5598142 -0.6980703 0.4464366 -0.5598143 -0.6980705 -0.1593319 -0.6980766 -0.6980705 -0.1593307 -0.6980742 -0.6980732 -0.6451177 -0.3106722 -0.698073 -0.6451181 0.3106724 -0.6980727 -0.4464341 0.5598123 -0.6980736 -0.1593315 0.6980741 -0.6980732 -0.623488 -0.7818329 0 -0.623488 -0.7818331 0 -0.2225229 -0.9749276 0 -0.2225229 -0.9749276 0 0 0 -1 2.09841e-7 0 -1 0 0 -1 0 0 -1 4.19686e-7 0 -1 0.2225221 -0.9749277 0 0.6234889 -0.7818323 0 0.6234899 -0.7818315 0 0.1593301 0.6980756 -0.6980719 0.159331 0.6980732 -0.6980742 0.4464354 0.5598129 -0.6980724 0.6451193 0.3106731 -0.6980712 0.6451183 0.3106738 -0.6980718 0.7160259 0 -0.6980738 0.6451205 -0.3106737 -0.6980698 0.6451174 -0.3106734 -0.6980727 0.4464347 -0.5598125 -0.6980731 0.159332 -0.6980754 -0.6980717 0 0.7071096 -0.707104 -0.1593323 -0.6980741 -0.6980729 -0.4464321 -0.5598105 -0.6980764 -0.7160283 0 -0.6980713 -0.7160258 0 -0.6980739 -0.6451162 0.3106716 -0.6980748 -0.4464361 0.5598129 -0.698072 -0.4464353 0.5598129 -0.6980725 -0.1593298 0.698072 -0.6980756 0 0 -1 2.09845e-7 0 -1 0 0 -1 0.1593322 0.6980788 -0.6980683 0.4464378 0.5598139 -0.69807 0.6451194 0.3106741 -0.6980707 0.7160295 0 -0.6980701 0.7160267 0 -0.6980729 0.6451201 -0.310674 -0.6980701 0.4464329 -0.5598117 -0.6980749 0.1593329 -0.6980749 -0.698072 0 0.7071036 -0.7071101 -0.1593303 -0.6980744 -0.6980732 -0.1593327 -0.6980759 -0.6980711 -0.4464305 -0.5598087 -0.6980788 -0.6451184 -0.3106726 -0.6980723 -0.6451185 -0.3106723 -0.6980723 -0.7160286 0 -0.698071 -0.6451176 0.3106726 -0.698073 -0.1593304 0.6980744 -0.6980732 -0.1593312 0.6980761 -0.6980713 2.09844e-7 0 -1 0.6451194 0.3106731 -0.698071 0.7160248 0 -0.6980749 0.4464353 -0.5598147 -0.698071 -0.1593318 -0.6980721 -0.698075 -0.4464353 -0.5598147 -0.698071 -0.6451165 -0.3106718 -0.6980744 -0.7160246 0 -0.6980751 -0.4464365 0.5598143 -0.6980705 -0.6234863 -0.7818344 0 -0.2225255 -0.974927 0 0 0 -1 0 0 -1 0.2225247 -0.9749271 0 0.6234872 -0.7818337 0 0.6234882 -0.7818328 0 0.446439 0.5598173 -0.6980665 0.6451196 0.3106722 -0.6980713 0.7160286 0 -0.698071 0.716026 0 -0.6980738 0.6451152 -0.31067 -0.6980763 0.6451261 -0.3106776 -0.6980629 0.4464301 -0.5598092 -0.6980788 0.1593351 -0.69808 -0.6980665 0.1593303 -0.6980636 -0.6980838 -0.1593343 -0.6980739 -0.6980727 -0.4464297 -0.5598101 -0.6980783 -0.4464366 -0.5598143 -0.6980705 -0.6451194 -0.3106721 -0.6980715 -0.6451211 -0.3106743 -0.698069 -0.7160262 0 -0.6980735 -0.7160279 0 -0.6980717 -0.6451196 0.3106722 -0.6980713 -0.6451141 0.3106709 -0.698077 -0.1593344 0.6980834 -0.6980631 0 0 -1 4.19681e-7 0 -1 0.1593279 0.6980661 -0.6980819 0.1593307 0.698079 -0.6980684 0.4464342 0.5598114 -0.6980744 0.6451206 0.3106747 -0.6980693 0.7160329 0 -0.6980666 0.7160256 0 -0.6980741 0.1593338 -0.6980786 -0.698068 -0.1593293 -0.6980696 -0.6980781 -0.6451188 -0.3106738 -0.6980713 -0.716028 0 -0.6980715 -0.6451128 0.3106709 -0.6980782 -0.4464318 0.5598083 -0.6980783 -0.1593305 0.69808 -0.6980675 0 -0.7070955 -0.707118 0.6451153 0.3106721 -0.6980754 0.1593312 -0.6980804 -0.698067 -0.159327 -0.698065 -0.6980833 -0.4464391 -0.5598167 -0.698067 -0.6451161 -0.3106725 -0.6980745 -0.6451228 -0.3106751 -0.6980671 -0.6451124 0.3106701 -0.6980789 0 0 -1 0 0 -1 -4.1968e-7 0 -1 -5.87936e-7 0 -1 0 0 -1 0.1593351 0.69808 -0.6980665 0.4464391 0.5598207 -0.6980637 0.6451231 0.3106739 -0.6980673 0.716031 0 -0.6980685 0.716024 0 -0.6980757 0.6451226 -0.3106759 -0.6980668 -0.6451201 -0.3106724 -0.6980707 -0.446442 0.5598253 -0.6980583 -0.1593353 0.6980786 -0.6980677 0 0 -1 4.19683e-7 0 -1 0.159329 0.6980709 -0.698077 0.159332 0.6980711 -0.6980759 0.6451199 0.3106723 -0.6980711 0.4464423 -0.5598245 -0.6980587 0.1593329 -0.6980704 -0.6980766 0.1593354 -0.6980862 -0.6980602 -0.1593353 -0.6980786 -0.6980677 -0.4464358 -0.5598177 -0.6980683 -0.6451207 -0.3106727 -0.6980701 -0.716031 0 -0.6980685 -0.716024 0 -0.6980757 -0.6451263 0.3106768 -0.6980631 2.97786e-5 1.54023e-5 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 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.82913e-5 -2.05303e-6 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.09226357 -0.5421721 -0.8351867 0.1749086 -0.9647956 -0.1964088 0.00545907 -0.05776327 -0.9983154 0.004968762 -0.05781608 -0.9983149 0.001230299 -0.01509439 -0.9998853 0.01797771 -0.161225 -0.986754 0.01724827 -0.1232779 -0.9922223 0.01289415 -0.1237182 -0.9922336 0.04118931 -0.3469846 -0.9369659 0.04030674 -0.3412889 -0.9390939 0.1692541 -0.9531327 -0.2507814 0.1463953 -0.8232064 -0.5485433 0.145264 -0.8163986 -0.5589202 0.1143566 -0.6629604 -0.739869 0.07917273 -0.4604679 -0.8841385 0.07352882 -0.4276885 -0.9009308 0.068039 -0.3955311 -0.9159289 0.08605796 -0.5019903 -0.8605812 0.08062398 -0.5028309 -0.8606167 0.06736028 -0.4940073 -0.8668446 0.05224466 -0.3519898 -0.9345446 0.04242545 -0.353204 -0.9345839 0.03217411 -0.1883583 -0.9815733 0.02830457 -0.1639592 -0.986061 0.02248007 -0.1648642 -0.9860601 0.02247786 -0.1648485 -0.9860628 0.01898914 -0.1652784 -0.9860642 0.03767502 -0.3238973 -0.9453419 0.03354561 -0.1881145 -0.9815741 0.03354847 -0.1881229 -0.9815724 0.09654355 -0.541366 -0.8352259 0.09653723 -0.5413703 -0.8352239 0.1455705 -0.816343 -0.5589216 0.1455695 -0.8163008 -0.5589837 0.1721381 -0.9652864 -0.1964449 0.1721335 -0.9652874 -0.1964443 0.553451 -0.08737057 -0.8282864 0.9213265 -0.1454479 -0.3605583 0.3215836 -0.926746 -0.1942319 0.3243326 -0.9298649 -0.1736654 0.5195744 -0.8362208 -0.175435 0.4745084 -0.5825479 -0.659909 0.669264 -0.7222581 -0.1744392 0.8299008 -0.5299589 -0.1743801 0.6577199 -0.3631815 -0.6599272 0.9153766 -0.3623647 -0.1754351 0.9727498 -0.1535659 -0.1737106 0.9727492 -0.1535646 -0.1737154 0.1757311 -0.02774214 -0.9840472 0.1757267 -0.02774107 -0.9840481 0.1566639 -0.08650708 -0.9838562 0.1566624 -0.08650612 -0.9838566 0.113022 -0.138756 -0.9838561 0.113029 -0.1387647 -0.9838541 0.05740278 -0.1685994 -0.9840118 0.06368738 -0.1825919 -0.981124 0.3638864 -0.05744528 -0.9296702 0.5367469 -0.08645665 -0.8393021 0.4781506 -0.2640265 -0.8376528 0.4781375 -0.2640189 -0.8376625 0.3449419 -0.4234815 -0.8376626 0.3449409 -0.4234813 -0.8376631 0.1803566 -0.5129071 -0.8392841 0.182892 -0.5236384 -0.8320778 0.8243972 -0.1301435 -0.5508465 0.8345385 -0.1333972 -0.5345565 0.7411876 -0.4092707 -0.5321077 0.7411962 -0.4092748 -0.5320925 0.5347318 -0.6564862 -0.53206 0.5347207 -0.6564698 -0.5320914 0.2781266 -0.7981663 -0.5343933 0.2759819 -0.7853654 -0.5541078 0.9877673 -0.1559357 0 0.9836517 -0.1759784 0.03822284 0.9297394 -0.3680525 -0.01105409 0.9225527 -0.3858714 6.79952e-5 0.8428137 -0.5382055 -1.72287e-4 0.8407827 -0.5413368 0.006253004 0.6796717 -0.7334908 -0.00614345 0.677425 -0.7355919 2.19551e-4 0.5277604 -0.8493933 -9.88692e-5 0.54252 -0.839626 -0.02646499 0.3286179 -0.9421507 0.0660488 0.342247 -0.9396101 0 0.2605148 -0.0812416 -0.9620457 0.3484125 -0.936376 -0.04252892 0.3527729 -0.9075837 -0.2276913 0.2914724 -0.5498576 -0.7827519 0.209266 -0.1372334 -0.9681812 0.207037 -0.2231454 -0.9525449 0.2177504 -0.06600081 -0.9737703 0.2353394 -0.1286355 -0.9633631 0.2158966 -0.1397857 -0.9663584 0.2409679 -0.04206866 -0.9696209 0.273438 -0.02427852 -0.9615833 0.3483404 -0.05490612 -0.9357587 0.3887457 -0.008748173 -0.9213036 0.4476742 -0.3829234 -0.808058 0.2939621 -0.4714174 -0.8314758 0.3442845 -0.7153272 -0.6080915 0.2662414 -0.062536 -0.9618757 0.5100877 -0.2221119 -0.8309494 0.5672182 -0.06522858 -0.8209804 0.7589545 -0.3886485 -0.5224372 0.579 -0.6012592 -0.5506782 0.5964277 -0.6148031 -0.5160341 0.3419175 -0.7596797 -0.5531539 0.3638262 -0.823315 -0.4356409 0.9065639 -0.1145884 -0.406216 0.8054016 -0.126851 -0.5789966 0.6514242 -0.09302341 -0.7529895 0.3565606 -0.9119403 -0.2030503 0.5534567 -0.8137824 -0.1773244 0.6352339 -0.7719589 -0.02360916 0.6840532 -0.7028126 -0.1952582 0.8575209 -0.4869958 -0.1658105 0.8414193 -0.5403625 -0.004701912 0.9116489 -0.365621 -0.1876637 0.2397407 -0.1057186 -0.9650638 0.4219079 -0.3606488 -0.831821 0.5325928 -0.2298821 -0.8145545 0.7438737 -0.3848684 -0.5463774 0.836896 -0.1317451 -0.5312706 0.970315 -0.1683469 -0.1736328 0.9690373 -0.1654382 -0.1832946 0.1837949 -0.9807549 -0.06587314 0.1738278 -0.983959 -0.04011034 0.1958366 -0.9476661 -0.2521453 0.170102 -0.9749594 -0.1432464 0.0229811 -0.2764024 0.9607673 0.1368014 -0.8147197 -0.5634866 0.1323718 -0.8963414 -0.4231429 0.04273015 -0.3634305 -0.9306409 0.04344892 -0.363842 -0.9304469 0.07374483 -0.5843582 -0.8081383 0.07314819 -0.5411655 -0.8377286 0.08380877 -0.5284872 -0.8447944 0.001122772 -0.01199162 -0.9999275 0.00302726 -0.02246832 -0.9997431 0.02336126 -0.2971963 -0.9545307 0.02377086 -0.2720694 -0.961984 0.026717 -0.2351775 -0.9715852 0.02856683 -0.2260218 -0.9737034 0.02920687 -0.2239634 -0.9741599 0.03967702 -0.1933693 -0.9803235 0.05907428 -0.1415278 -0.9881701 0.07637244 -0.2669659 -0.960675 0.09723383 -0.1179509 -0.9882476 0.100993 -0.1357734 -0.985579 0.1327001 -0.2085362 -0.9689703 0.1338315 -0.1518138 -0.9793068 0.1616222 -0.231602 -0.9592908 0.08480304 -0.5277053 -0.8451838 0.08636373 -0.5275754 -0.8451068 0.1285148 -0.5519231 -0.8239326 0.1296143 -0.5312379 -0.8372494 0.1842013 -0.5240217 -0.8315474 0.1843681 -0.5712716 -0.7997858 0.1913328 -0.8078304 -0.557496 0.1979581 -0.8636819 -0.463537 0.1920666 -0.7492423 -0.6338346 0.01599693 0 -0.9998721 0.02144873 0.005734324 -0.9997535 0.05613607 -0.008433163 -0.9983875 0.1556368 -0.01021778 -0.9877615 0.06054991 -0.001666903 -0.9981638 0.08707815 4.91152e-4 -0.9962014 0.1082983 -0.007844388 -0.9940875 0.1076553 -0.008673548 -0.9941505 0.1264178 7.12018e-6 -0.9919772 0.1601642 -2.34654e-5 -0.9870905 0.1456405 -0.02060484 -0.9891231 0.1520056 -0.01380532 -0.9882832 0.16009 -0.006728291 -0.9870795 0.163082 -0.00484997 -0.9866006 0.1661843 -0.003162145 -0.9860897 0.1750997 0 -0.9845507 0.1750997 0 -0.9845508 0.1738879 -3.70763e-4 -0.9847655 0.1702008 -0.001544475 -0.9854083 0.1714748 0.001106142 -0.9851879 0.1688253 0.002097129 -0.9856438 0.1668325 0.002906441 -0.9859811 0.1501482 6.25564e-4 -0.9886633 0.1721684 -0.001800715 -0.9850659 0.1609911 0.006162583 -0.9869367 0.1637301 0.004443943 -0.9864951 0.1427036 0.002876996 -0.9897614 0.1369943 0.006164789 -0.9905527 0.132465 0.009146988 -0.9911455 0.114273 -0.004644215 -0.9934386 0.08042562 0.007221877 -0.9967345 0.07630556 0.001765847 -0.997083 0.02816706 -0.002314984 -0.9996005 0.03769713 0.01645946 -0.9991537 0.009820103 0 -0.9999518 0.1558175 0.7573013 0.6342049 0.15592 0.3619473 -0.9190665 0.1436519 0.06701374 -0.9873567 0.1552653 0.271925 -0.9497103 0.1355357 0.3130465 -0.9400171 0.1610199 0.1992926 -0.9666205 0.1458101 0.5992544 -0.7871681 0.1579241 0.5657667 -0.8093011 0.1521253 0.443 -0.8835207 0.1480045 0.4518755 -0.8797177 0.1556042 0.3779616 -0.9126513 0.1372829 0.7642591 -0.6301282 0.1530228 0.7052744 -0.6922225 0.1584381 0.6561917 -0.7377737 0.1580349 0.892638 -0.4221639 0.1490659 0.8409762 -0.5201331 0.1513777 0.8435768 -0.5152311 0.1600531 0.7327896 -0.6613641 0.14815 0.9206172 -0.3612696 0.1450894 0.9251573 -0.3507608 0.1557964 0.940711 -0.3013144 0.1562196 0.9723797 -0.1734167 0.1423767 0.9791198 -0.1450978 0.155865 0.9589537 -0.2368839 0.1552646 0.9690866 0.1917401 0.134534 0.9624907 0.2356104 0.1608084 0.9793997 0.1221351 0.1475536 0.9890101 0.009323835 0.1409853 0.98962 0.02784895 0.1553553 0.9870818 -0.03917086 0.155849 0.7985126 0.581454 0.1509287 0.8172959 0.5561007 0.1459265 0.8344087 0.5314769 0.1573101 0.852272 0.4988847 0.1529392 0.9172846 0.3676937 0.1468628 0.9128901 0.3808717 0.1558938 0.9413285 0.2993288 0.1357564 0.6888052 0.712122 0.1612192 0.7200589 0.674925 0.151162 0.5896283 0.7934033 0.148492 0.5840769 0.7980003 0.1546239 0.534228 0.8310788 0.1592413 0.471198 0.8675338 0.1452329 0.4267181 0.8926472 0.1558104 0.3767987 0.9130969 0.1541323 0.09306776 0.9836574 0.1560494 0.1663511 0.9736406 0.1526189 0.2540837 0.9550649 0.1427149 0.2324007 0.9620927 0.1558556 0.314067 0.9365207 0.1076881 0.106232 0.9884929 0.0159409 0.08342468 0.9963867 0.1708178 0.1250487 -0.9773353 0.1320316 0.08124148 -0.9879108 0.07988584 0.1158624 -0.9900476 0.1601466 0.01485091 0.9869816 0.1531295 0.09017229 0.9840835 0.09450107 0.07161056 0.9929459 0.09452003 0.2559455 0.9620593 0.09451985 0.2559447 0.9620595 0.09451973 0.4293608 0.8981734 0.09452027 0.4293592 0.8981741 0.09451919 0.5879809 0.8033335 0.0945208 0.5879815 0.8033328 0.09451961 0.7263357 0.6808102 0.09452044 0.7263358 0.68081 0.09451991 0.8396587 0.5348263 0.0945205 0.8396626 0.5348203 0.09452033 0.9240477 0.3704078 0.09451991 0.9240487 0.3704053 0.09451997 0.9765915 0.1932229 0.09451937 0.9765919 0.1932215 0.09451943 0.9954789 0.00938332 0.09451979 0.9954788 0.009377896 0.09452003 0.9800599 -0.1747819 0.09452003 0.9800593 -0.1747849 0.09451985 0.9308646 -0.3529264 0.0945205 0.9308654 -0.3529244 0.0945205 0.8495914 -0.5189031 0.09451967 0.8495895 -0.5189065 0.09451967 0.7390359 -0.6670024 0.09452027 0.7390379 -0.6669999 0.09451997 0.6030144 -0.792111 0.09452009 0.6030157 -0.79211 0.09451973 0.4462099 -0.8899229 0.09452021 0.4462117 -0.889922 0.09451997 0.2740296 -0.9570652 0.09452003 0.2740298 -0.9570652 0.09441488 0.08116078 -0.9922191 0.02801805 0.1025376 -0.9943345 0.03287458 0.09277164 -0.9951446 0.03287464 0.2751136 -0.9608495 0.03287458 0.2751131 -0.9608497 0.03287464 0.4479745 -0.8934418 0.03287488 0.4479766 -0.8934407 0.03287476 0.6053993 -0.7952429 0.03287452 0.6053996 -0.7952425 0.03287458 0.7419582 -0.6696397 0.03287476 0.7419599 -0.6696378 0.0328747 0.8529493 -0.5209575 0.03287464 0.8529505 -0.5209557 0.03287434 0.9345445 -0.3543244 0.03287547 0.934547 -0.3543181 0.03287547 0.9839349 -0.1754749 0.03287458 0.9839344 -0.1754776 0.03287464 0.9994152 0.009421348 0.0328747 0.9994152 0.009415745 0.0328747 0.9804528 0.1939887 0.0328747 0.9804541 0.1939819 0.03287452 0.9277012 0.3718734 0.03287494 0.927702 0.3718716 0.0328744 0.8429811 0.5369379 0.03287482 0.8429824 0.5369359 0.032875 0.7292068 0.6835033 0.03287482 0.7292078 0.6835023 0.03287512 0.5903061 0.8065098 0.03287464 0.590304 0.8065114 0.03287506 0.4310585 0.901725 0.03287398 0.4310576 0.9017254 0.03287512 0.2569575 0.9658635 0.03287446 0.256958 0.9658634 0.03294509 0.1004635 0.9943951 0.05599087 0.07203042 0.9958297 -1 -1.40618e-7 0 -1 7.50529e-7 0 -0.9999005 0.004682183 -0.0133118 -1 -1.29727e-5 1.3066e-4 -1 -4.25515e-7 0 -1 -7.35923e-7 0 -1 3.69199e-7 0 -1 1.18529e-6 0 -1 -3.9305e-7 0 -1 -4.41319e-7 0 -1 7.46583e-7 0 -1 -5.75146e-7 0 -1 9.00728e-7 0 -1 1.21268e-6 0 -1 1.82963e-5 0 -1 1.5047e-5 0 -1 -3.0722e-5 0 -1 -3.02407e-5 0 -0.01745247 -0.9998477 0 -0.01745247 -0.9998478 0 -0.01745241 -0.9998478 -1.96746e-6 -0.01745218 -0.9998477 0 -0.01745223 -0.9998477 0 -0.2370802 0.9714901 0 -0.2370802 0.9714901 0 -0.6312559 0.7755746 0 -0.6312563 0.7755745 0 -0.9031212 0.4293857 0 -0.9031213 0.4293857 0 -0.9938511 0.1107254 0 -0.9975954 0 -0.06930708 -0.2370802 -0.9714901 0 -0.2370802 -0.9714901 0 -0.631256 -0.7755746 0 -0.6312562 -0.7755745 0 -0.9031213 -0.4293857 0 -0.9031212 -0.4293857 0 -0.9938511 -0.1107254 0 -0.01745247 0.9998478 0 -0.01745223 0.9998477 0 -0.01745218 0.9998477 0 -0.01745247 0.9998478 -2.24853e-6 -0.01745247 0.9998477 0 -1 -4.70234e-7 0 -1 5.1162e-5 2.40598e-4 -0.9998955 -0.004831135 -0.01363444 -0.9814649 -0.1916427 8.45227e-6 -0.981468 -0.1916261 0 -0.8347284 -0.5506621 0 -0.8347276 -0.5506632 0 -0.5585107 -0.8294974 0 -0.5585124 -0.8294963 0 -0.1962411 -0.9805558 0 -0.1962417 -0.9805557 0 0 -1 -1.12834e-5 -0.1916214 -0.9814689 -1.21171e-5 -0.1916212 -0.981469 0 -0.5506635 -0.8347274 0 -0.5506637 -0.8347274 0 -0.8295009 -0.5585055 0 -0.8295007 -0.5585057 0 -0.9805548 -0.1962462 0 -0.9805548 -0.196246 0 -1 2.98341e-7 0 -1 2.05141e-7 0 -1 0 0 -1 -2.21287e-7 0 -1 -1.73094e-7 0 -1 -2.06906e-7 0 -1 1.4732e-7 0 -1 -2.11387e-7 0 -1 0 0 -1 0 0 -1 -1.65929e-7 0 -1 -1.71787e-7 0 -1 1.71271e-7 0 -1 0 0 -1 2.20403e-7 0 -0.1916208 -0.9814692 1.21171e-5 -0.1916213 -0.981469 0 -0.5506645 -0.8347267 0 -0.5506651 -0.8347262 0 -0.829499 -0.5585084 0 -0.8295016 -0.5585045 0 -0.9805544 -0.1962473 0 -0.9805549 -0.196245 0 0 -1 1.12834e-5 -0.9807857 -0.1950888 0 -0.9807847 -0.1950935 0 -0.8314692 -0.5555708 0 -0.8314715 -0.5555675 0 -0.5555642 -0.8314737 0 -0.555563 -0.8314745 0 -0.1950982 -0.9807838 0 -0.195098 -0.9807838 0 -1 -6.81879e-7 0 -1 1.71014e-7 0 -1 -2.70876e-5 0 -1 1.34288e-5 0 -1 8.1367e-6 0 -1 6.21566e-6 0 -1 -1.06664e-4 0 -1 7.75795e-5 0 -0.8340454 0.5506522 0.0339204 -0.9839605 0.1783867 0 -0.9746813 0.2226367 0.02071881 -0.919569 0.3929288 -5.84201e-7 -0.8159105 0.5781785 5.41625e-7 -0.8159102 0.5781787 0 -0.6652386 0.7463951 -0.01876318 -0.6399156 0.7684453 -2.30609e-6 -0.5213741 0.8533283 0 -0.3681061 0.9281598 0.05493181 -0.3183479 0.947974 0 -0.1745871 0.03638714 0.9839692 -0.1251659 0.0245983 0.9918308 -0.2066623 0.1348181 0.9690794 -0.08597081 0.05717504 0.9946557 -0.1879938 0.2185083 0.9575554 -0.05973416 0.09229731 0.9939382 -0.14241 0.3386195 0.9300841 -0.01696377 0.08225828 0.9964667 -0.01966893 0.1145657 0.9932211 -0.1899551 0.6064702 0.7720823 -0.139913 0.4368812 0.8885715 -0.08869153 0.2848145 0.9544709 -0.2736409 0.8413003 0.4661917 -0.5104414 0.8391673 0.1877446 -0.5688315 0.703796 -0.4255609 -0.6521405 0.7352529 0.1847052 -0.8187846 0.5426541 0.1873989 -0.7995819 0.4723178 -0.3709242 -0.9026914 0.3875277 0.1870048 -0.9665485 0.1766138 0.1859883 -0.9649323 0.1757947 0.1949407 -0.8171009 0.1504153 0.5565262 -0.8222472 0.1507298 0.5488079 -0.7163096 0.4337565 0.5465857 -0.7145023 0.4330322 0.5495177 -0.5183072 0.6580644 0.5461768 -0.5168531 0.6565739 0.5493392 -0.2645316 0.793976 0.5473805 -0.3106181 0.9326898 0.1833201 -0.3133573 0.9360809 0.1598743 -0.5404412 0.1007225 0.8353313 -0.530295 0.09968906 0.841932 -0.4609517 0.2848482 0.8404673 -0.4581565 0.2835294 0.8424392 -0.3313075 0.4290956 0.840305 -0.3291416 0.4267253 0.8423606 -0.166709 0.514607 0.8410636 -0.2362984 0.718758 0.6538732 -0.9801999 0 0.1980105 -0.9801959 0 0.1980302 -0.8264866 0 0.5629566 -0.8265508 0 0.5628622 -0.5431656 0 0.8396257 -0.1746658 0 0.9846279 -0.174764 0 0.9846104 -0.2073935 -0.9782577 0 -0.2584766 -0.9646323 0.05171668 -0.4534406 -0.8912865 1.34794e-5 -0.7071011 -0.7071125 6.38614e-5 -0.7645564 -0.6277378 0.1462833 -0.595537 -0.8033279 -3.47713e-5 -0.9960039 0.0893101 1.77838e-6 -0.9969885 -0.07754927 -2.04778e-6 -0.9621509 -0.2578031 0.0883376 -0.9483788 -0.3165228 0.01977908 -0.875064 -0.4840074 -7.9862e-6 -0.9269175 0.3458608 0.1456171 -0.9659147 0.2588166 0.004770219 -0.7726629 0.6348089 -0.00309503 -0.7047132 0.7047152 0.08219426 -0.5790925 0.815262 -3.73666e-5 -0.2588194 0.9659258 0 -0.1666229 0.9811552 0.09783291 -0.431576 0.9020767 3.86198e-5 0 0 1 1.4726e-6 0 1 -0.9009698 0.4338822 0 -0.9009691 0.4338834 0 -0.6234915 0.7818301 0 -0.6234883 0.7818327 0 -0.2225196 0.9749283 0 -0.2225204 0.9749281 0 -0.9009689 -0.433884 0 -0.9009701 -0.4338814 0 -0.6234888 -0.7818323 0 -0.6234859 -0.7818347 0 -0.2225258 -0.9749269 0 -0.2225247 -0.974927 0 0.1736574 0.9848062 0 0.2594649 0.9655957 0.01740181 0.4226107 0.9063113 1.4246e-6 0.5690003 0.8223375 -2.84671e-6 0.6089229 0.7932161 0.004618525 0.7549499 0.6557478 -0.006747007 0.793415 0.6086791 0.00154531 0.9295721 0.3686347 -0.002034366 0.9237908 0.3828681 -0.004787027 0.9945466 0.104217 0.003988981 0.9914267 0.1306648 0 0.9979416 -0.06413042 0 0.991431 -0.1305389 0.004907488 0.9561987 -0.2926149 -0.00778073 0.9238778 -0.3826727 0.003391504 0.8801984 -0.4746059 1.78602e-6 0.7881312 -0.6155073 0 0.7933385 -0.6087794 -0.001362502 0.6020098 -0.7984877 0.001277744 0.6087645 -0.793351 0 0.4594988 -0.8881785 0 0.2592543 -0.9657424 0.01135498 0.2139743 -0.9768394 0 0.1858271 -0.6985371 0.6910241 0.1885973 -0.6946445 0.6941902 0.7165106 -0.04426592 0.6961704 0.6957223 -0.2042745 0.6886526 0.6934916 -0.1979054 0.6927502 0.6382445 -0.3285126 0.6962208 0.6030678 -0.4170942 0.6799571 0.5778889 -0.4278416 0.6949791 0.430371 -0.57794 0.6933732 0.4663983 -0.5776128 0.6699523 0.3545957 -0.6197567 0.7001169 0.7483816 0.07567691 0.658937 0.7246308 0.03564321 0.688215 0.6722484 0.2552382 0.6949357 0.6748943 0.2671816 0.6878458 0.5542995 0.4547295 0.6971178 0.5007066 0.6882103 0.5250329 0.5181216 0.438156 0.7345539 0.3445379 0.6696373 0.6579359 0.3704319 0.6214333 0.6903629 0.1476829 0.6944414 0.7042308 0.1605275 0.701135 0.6947234 0.04896646 -0.706998 0.7055184 0.05212157 -0.8002566 0.5973882 0.07921081 -0.7070545 0.7027088 -0.6738889 -0.07233494 0.7352833 -0.490088 0.3899494 0.7795853 -0.369553 0.6011665 0.7085404 -0.308639 0.6136716 0.7267388 -0.1953877 0.6677065 0.7183256 -0.1457403 0.7074896 0.6915333 -0.005320668 0.6857371 0.7278298 0.03748166 0.706061 0.7071585 -0.6698917 -0.06258988 0.739816 -0.6457341 0.07031571 0.7603179 -0.6537579 0.1877716 0.7330364 -0.584966 0.2626067 0.7673674 -0.5125622 0.5213442 0.6822612 -0.2282318 -0.6842066 0.6926555 -0.3144621 -0.5984681 0.7368512 -0.448826 -0.5334641 0.716918 -0.4646909 -0.4748088 0.7474082 -0.5977275 -0.3225101 0.733968 -0.6041989 -0.4026597 0.6876109 -0.5957858 -0.2441527 0.7651332 -0.2367665 -0.6726123 0.7010952 -0.004025638 -0.6887171 0.725019 -0.02859634 -0.7019391 0.7116627 0.07921028 0.7070495 0.7027139 0.05212157 0.8002566 0.5973882 0.0489664 0.706997 0.7055193 -0.453462 -0.8912757 1.88049e-5 -0.2584697 -0.9646337 0.05172413 -0.2405022 -0.9700736 0.03340417 -0.0396052 -0.9992154 0 -0.7071011 -0.7071125 5.47384e-5 -0.7645534 -0.6277353 0.14631 -0.5955314 -0.8033322 -4.34644e-5 -0.9969885 -0.07754927 -1.02389e-6 -0.9621517 -0.2578033 0.08832794 -0.9483784 -0.3165227 0.01979345 -0.8750827 -0.4839736 -7.98564e-6 -0.9269195 0.3458616 0.1456021 -0.9659147 0.2588166 0.004774808 -0.772663 0.6348089 -0.003108859 -0.5790925 0.815262 -4.21715e-5 -0.1666225 0.9811531 0.09785431 -0.431576 0.9020767 2.57465e-5 7.36299e-7 0 1 2.20741e-6 0 1 -1.0999e-6 0 1 -0.9009681 0.4338853 0 -0.9009681 -0.4338856 0 -0.9009686 -0.4338847 0 -0.6234913 -0.7818304 0 -0.2225206 -0.9749281 0 -0.2225192 -0.9749284 0 0.4226107 0.9063113 -1.32729e-6 0.6089229 0.7932161 0.004615008 0.754947 0.6557513 -0.006745696 0.7934157 0.6086783 0.001547098 0.9295721 0.3686347 -0.002032995 0.9237913 0.3828668 -0.004786133 0.9945467 0.104216 0.003989517 0.9979415 -0.06413155 0 0.9914308 -0.1305403 0.004907548 0.9561994 -0.292613 -0.007781386 0.9238784 -0.3826715 0.003391504 0.8801984 -0.4746059 -1.41995e-6 0.7881312 -0.6155073 1.66938e-6 0.7933359 -0.6087828 -0.00136429 0.6020026 -0.7984932 0.001277744 0.6087712 -0.7933459 0 0.4594998 -0.888178 -2.51811e-6 0.2592501 -0.9657436 0.0113514 0.1858274 -0.6985526 0.6910084 0.188594 -0.6946321 0.6942036 0.7165044 -0.04426634 0.6961768 0.6957213 -0.2042703 0.688655 0.6934966 -0.1979068 0.6927448 0.6382293 -0.3285144 0.696234 0.6030649 -0.4170922 0.679961 0.5778993 -0.4278377 0.6949729 0.4664026 -0.5776068 0.6699545 0.3545547 -0.619767 0.7001285 0.7484021 0.07567673 0.6589138 0.7246324 0.03564327 0.6882133 0.6722424 0.2552359 0.6949424 0.6748958 0.2671864 0.6878424 0.554295 0.4547312 0.6971204 0.5006896 0.6881868 0.5250799 0.3704326 0.6214344 0.6903616 0.1605254 0.7011258 0.6947332 0.05212116 -0.8002502 0.597397 0.07921141 -0.7070596 0.7027035 -0.08025234 0.6965737 0.712983 -0.3086141 0.6136659 0.7267542 -0.1953895 0.6677129 0.7183192 -0.04011642 0.7794926 0.6251257 -0.3695545 0.6011648 0.708541 -0.4900844 0.3899466 0.779589 -0.5125626 0.5213505 0.682256 -0.5849581 0.2626023 0.7673748 -0.6537627 0.1877728 0.7330319 -0.6457305 0.07031399 0.7603211 -0.6738734 -0.07233434 0.7352976 -0.5957836 -0.2441561 0.7651339 -0.6042658 -0.4026812 0.6875396 -0.5977307 -0.322509 0.7339659 -0.4646847 -0.4748045 0.7474147 -0.4488345 -0.5334753 0.7169043 -0.3144521 -0.5984656 0.7368574 -0.2282255 -0.6841879 0.692676 -0.2367629 -0.6726158 0.701093 -0.05205667 -0.6885079 0.7233582 -0.01214885 -0.7179998 0.6959373 0.08871507 -0.7071073 0.7015191 0.0792092 0.7070399 0.7027237 0.04896658 0.7069998 0.7055166 -0.2584697 -0.9646341 0.05171674 -0.2405022 -0.970074 0.03339439 -0.7071056 -0.707108 5.4738e-5 -0.9621496 -0.257808 0.08833682 -0.9483786 -0.3165228 0.01978272 -0.875064 -0.4840074 0 -0.9659159 0.258812 0.004774749 -0.772663 0.6348089 -0.003115832 -0.7047081 0.7047184 0.08221101 -0.579098 0.815258 -4.69967e-5 -0.4315655 0.9020816 1.28733e-5 2.20739e-6 0 1 -1.09991e-6 0 1 -4.41741e-6 0 1 2.0403e-5 0 1 0.1736503 0.9848074 0 0.2594658 0.9655955 0.01740181 0.4226217 0.9063062 1.25372e-6 0.5689896 0.8223448 2.84673e-6 0.7549493 0.6557485 -0.006747066 0.7934118 0.6086835 0.001547098 0.9295721 0.3686347 -0.002030909 0.9237923 0.3828642 -0.004787862 0.9561994 -0.292613 -0.007779955 0.8801887 -0.4746242 -1.63518e-6 0.7881338 -0.615504 0 0.7933391 -0.6087785 -0.001362502 0.6020026 -0.7984932 0.001281559 0.4594998 -0.888178 2.51811e-6 0.2592502 -0.9657437 0.01134783 0.1858214 -0.6985301 0.6910327 0.1885963 -0.6946408 0.6941943 0.7165213 -0.04426735 0.6961593 0.6934942 -0.1979061 0.6927475 0.6382848 -0.3285526 0.6961651 0.6030665 -0.4170933 0.6799589 0.430374 -0.5779441 0.6933678 0.3545576 -0.619772 0.7001225 0.7246282 0.0356431 0.6882177 0.6748999 0.2671798 0.687841 0.5181288 0.4381622 0.7345451 0.3445373 0.6695977 0.6579765 0.3704352 0.6214388 0.6903562 0.1476851 0.6944513 0.7042205 0.1605126 0.7011242 0.6947379 0.04896599 -0.7069911 0.7055252 0.07921147 -0.7070601 0.7027031 -0.3086366 0.6136667 0.726744 -0.1953794 0.667701 0.718333 -0.1457486 0.7074812 0.6915401 -0.005309581 0.6857427 0.7278247 0.03745949 0.7060443 0.7071763 -0.512562 0.5213507 0.6822563 -0.5849608 0.2626035 0.7673724 -0.6537533 0.1877701 0.733041 -0.6457415 0.07031518 0.7603116 -0.6698787 -0.06258869 0.7398279 -0.6738824 -0.0723353 0.7352892 -0.5957782 -0.2441539 0.7651388 -0.6043022 -0.4026673 0.6875157 -0.5977244 -0.3225108 0.7339702 -0.4646954 -0.4748015 0.74741 -0.4488282 -0.5334678 0.7169138 -0.3144481 -0.5984579 0.7368655 -0.2282381 -0.6842254 0.6926349 -0.01214873 -0.7179939 0.6959434 0.08871424 -0.7071006 0.7015259 0.07921093 0.7070446 0.7027187 0.05212205 0.8002501 0.5973969 0.04896628 0.7069958 0.7055206 -0.4534433 -0.8912852 1.88051e-5 -0.258475 -0.9646331 0.05170935 -0.2405068 -0.9700726 0.03340411 -0.5955314 -0.8033322 -2.60786e-5 -0.9960039 0.08931016 1.77838e-6 -0.9969884 -0.07755053 -1.0239e-6 -0.9621498 -0.257808 0.08833438 -0.9483786 -0.3165228 0.01978629 -0.875064 -0.4840074 -1.19793e-5 -0.9269218 0.345851 0.145613 -0.9659159 0.258812 0.004770159 -0.772663 0.6348089 -0.003101944 -0.7047095 0.7047197 0.08218663 -0.579098 0.815258 -3.0685e-5 -0.2588223 0.965925 0 -0.1666332 0.9811524 0.09784346 -0.4315655 0.9020816 3.862e-5 -1.20688e-5 0 1 2.41366e-5 0 1 -1.76696e-5 0 1 2.36727e-6 0 1 -0.6234863 0.7818344 0 -0.2225248 0.9749271 0 -0.2225258 0.9749268 0 0.2594699 0.9655944 0.01740354 0.4226105 0.9063115 3.83474e-6 0.5690003 0.8223375 -1.42335e-6 0.6089229 0.7932161 0.004616796 0.7549494 0.6557486 -0.006745636 0.7934118 0.6086835 0.00154531 0.9945466 0.104217 0.003989517 0.9914269 0.1306634 0 0.9979416 -0.06413042 -2.26015e-7 0.9914308 -0.1305403 0.004907786 0.8801887 -0.4746242 1.43121e-7 0.7881338 -0.615504 1.66937e-6 0.6020026 -0.7984932 0.001279652 0.4594988 -0.8881785 2.51811e-6 0.2592543 -0.9657424 0.0113514 0.1885976 -0.6946458 0.6941889 0.7165191 -0.04426646 0.6961616 0.6957181 -0.2042694 0.6886584 0.6935015 -0.1979082 0.6927395 0.6382182 -0.3285183 0.6962423 0.603068 -0.4170943 0.6799569 0.4303771 -0.5779483 0.6933624 0.4663854 -0.5776082 0.6699653 0.3545928 -0.6197516 0.7001229 0.7483979 0.07567852 0.6589184 0.7246317 0.03564327 0.688214 0.6722363 0.2552336 0.6949492 0.6749047 0.2671817 0.6878355 0.5542944 0.4547254 0.6971245 0.5181252 0.4381591 0.7345495 0.3704293 0.6214289 0.6903682 0.1605281 0.7011377 0.6947206 0.0521214 -0.8002533 0.5973926 0.07921153 -0.7070605 0.7027027 -0.08025157 0.6965668 0.7129898 -0.1953831 0.6677137 0.7183201 -0.04012274 0.7794982 0.6251182 -0.5125448 0.521345 0.6822736 -0.5849635 0.2626047 0.76737 -0.6537604 0.1877721 0.7330342 -0.6738895 -0.072335 0.7352827 -0.5957913 -0.2441544 0.7651284 -0.6041705 -0.4026177 0.6876606 -0.5977349 -0.3225113 0.7339615 -0.4646907 -0.4747967 0.747416 -0.3144562 -0.5984734 0.7368493 -0.2282131 -0.6842097 0.6926586 -0.2367659 -0.6726104 0.7010973 -0.05206775 -0.6884955 0.7233692 0.08871465 -0.7071039 0.7015225 0.07920974 0.7070447 0.7027188 0.04896599 0.7069917 0.7055246 -0.2073917 -0.9782581 0 -0.4534502 -0.8912817 2.09169e-5 -0.7645599 -0.6277294 0.1463018 -0.9960039 0.08931016 1.77838e-6 -0.9621506 -0.2578057 0.08833116 -0.9483785 -0.3165227 0.01978987 -0.8750752 -0.4839871 -3.99293e-6 -0.9269228 0.3458514 0.1456055 -0.7047168 0.7047107 0.08220195 -0.5790925 0.815262 -4.07847e-5 -6.0342e-6 0 1 2.4137e-5 0 1 2.36728e-6 0 1 -0.9009689 0.4338837 0 -0.9009693 -0.433883 0 0.4226107 0.9063113 1.08318e-6 0.5689954 0.8223408 -1.42336e-6 0.6089251 0.7932143 0.004618525 0.9237913 0.3828668 -0.004787027 0.9914268 0.1306644 0 0.9979415 -0.06413084 0 0.9561994 -0.292613 -0.007781028 0.9238778 -0.3826727 0.00339061 0.8801935 -0.474615 0 0.7881325 -0.6155056 0 0.7933366 -0.6087819 -0.001362502 0.6087679 -0.7933484 1.77985e-6 0.4594988 -0.8881785 1.25906e-6 0.2592518 -0.9657431 0.0113514 0.1858281 -0.6985408 0.69102 0.1885953 -0.6946371 0.6941983 0.7165203 -0.04426747 0.6961603 0.6957228 -0.2042708 0.6886532 0.6382515 -0.3285354 0.6962037 0.6030738 -0.4170911 0.6799536 0.5779009 -0.4278389 0.6949709 0.4303893 -0.5779369 0.6933643 0.4663739 -0.5776166 0.669966 0.3546 -0.6197643 0.7001079 0.7483925 0.07567799 0.6589246 0.7246232 0.03564387 0.688223 0.6749002 0.267184 0.687839 0.3445318 0.6696256 0.6579508 0.1605246 0.7011224 0.6947368 0.04896622 -0.7069946 0.7055218 0.07921159 -0.707061 0.7027022 -0.6738815 -0.07233518 0.73529 -0.4900791 0.3899498 0.7795907 -0.3695531 0.6011666 0.7085403 -0.1953858 0.6677001 0.7183321 -0.1457397 0.7074872 0.6915359 -0.005320727 0.6857482 0.7278194 0.0374816 0.7060596 0.7071598 -0.6698881 -0.06259018 0.7398192 -0.645729 0.07031518 0.7603223 -0.6537603 0.1877722 0.7330341 -0.5849633 0.2626055 0.7673698 -0.5125601 0.521342 0.6822645 -0.2282287 -0.6841973 0.6926658 -0.3144441 -0.5984675 0.7368593 -0.4488362 -0.5334703 0.7169069 -0.4646838 -0.4748015 0.7474172 -0.5977318 -0.3225123 0.7339636 -0.60422 -0.4026641 0.6875899 -0.5957885 -0.2441538 0.7651308 -0.2367767 -0.6726129 0.7010912 -0.004025578 -0.6887117 0.7250242 -0.02858644 -0.7019507 0.7116518 0.0521214 0.8002533 0.5973926 0.04896622 0.7069945 0.7055219 -0.2073879 -0.9782588 0 -0.4534597 -0.8912768 2.04301e-5 -0.7071056 -0.707108 6.3861e-5 -0.764561 -0.6277303 0.1462917 -0.5955314 -0.8033322 -3.91179e-5 -0.9483785 -0.3165227 0.01978808 -0.8750752 -0.4839871 -1.19788e-5 -0.9269185 0.3458611 0.1456096 -0.9659147 0.2588166 0.004772543 -0.704717 0.7047109 0.08219784 -0.5790917 0.8152624 -4.03155e-5 -0.1666228 0.9811547 0.09783828 -0.4315655 0.9020816 3.21833e-5 2.0403e-5 0 1 0.1736541 0.9848068 0 0.2594649 0.9655957 0.0174036 0.4226162 0.9063088 9.97902e-7 0.7934137 0.6086809 0.001546204 0.9914309 -0.1305398 0.004907786 0.956199 -0.2926142 -0.007781028 0.9238773 -0.382674 0.003391504 0.8801935 -0.474615 -1.28441e-6 0.7881325 -0.6155056 1.66938e-6 0.7933379 -0.6087802 -0.00136429 0.608769 -0.7933477 8.89922e-7 0.4595097 -0.8881728 1.25905e-6 0.2139712 -0.97684 0 0.1858261 -0.6985333 0.6910281 0.1885871 -0.6946446 0.6941929 0.7165201 -0.0442664 0.6961606 0.6957189 -0.2042697 0.6886576 0.6382605 -0.3285304 0.6961978 0.6030666 -0.4170934 0.6799587 0.5778977 -0.4278365 0.6949749 0.4303725 -0.577942 0.6933705 0.4664012 -0.577605 0.6699571 0.3545745 -0.6197707 0.7001153 0.724629 0.0356431 0.6882168 0.6722382 0.2552393 0.6949451 0.6748978 0.2671831 0.6878417 0.3445435 0.6696226 0.6579478 0.3704322 0.6214339 0.6903622 0.147684 0.6944463 0.7042257 0.1605145 0.7011326 0.6947289 0.05212181 -0.8002535 0.5973926 0.079212 -0.7070541 0.702709 -0.6738809 -0.07233512 0.7352906 -0.4900863 0.389948 0.7795872 -0.3695548 0.6011692 0.7085372 -0.1457493 0.7074849 0.6915362 -0.005309581 0.68574 0.7278273 0.0374602 0.7060575 0.707163 -0.645733 0.07031559 0.7603188 -0.5849657 0.2626013 0.7673693 -0.5125666 0.5213486 0.6822546 -0.314451 -0.5984639 0.7368593 -0.4488323 -0.5334715 0.7169085 -0.4646921 -0.4747962 0.7474155 -0.5977244 -0.322511 0.7339702 -0.6042335 -0.4026731 0.6875729 -0.5957808 -0.2441555 0.7651362 -0.2367687 -0.6726185 0.7010884 -0.004033744 -0.6887144 0.7250216 -0.02859675 -0.7019495 0.7116525 0.05212181 0.8002535 0.5973926 0.04896593 0.7069905 0.7055259 -0.2584696 -0.9646335 0.05172777 -0.4534502 -0.8912817 1.99482e-5 -0.7071011 -0.7071125 5.92999e-5 -0.5955314 -0.8033322 -3.47715e-5 -0.9960039 0.08931016 2.22297e-6 -0.9969884 -0.07755053 -1.53586e-6 -0.9621505 -0.2578056 0.0883336 -0.9483786 -0.3165228 0.01978451 -0.8750752 -0.4839871 -7.98587e-6 -0.9269226 0.3458513 0.1456074 -0.772663 0.6348089 -0.003105401 -0.7047088 0.7047191 0.08219879 -0.5790917 0.8152624 -3.98516e-5 -0.166628 0.9811534 0.09784352 -0.4315655 0.9020816 2.57467e-5 -6.03442e-6 0 1 3.73401e-6 0 1 -0.2225217 0.9749278 0 -0.2225236 0.9749273 0 0.2594674 0.9655951 0.01740086 0.4226112 0.9063112 2.24561e-6 0.5689954 0.8223408 0 0.6089196 0.7932186 0.004615902 0.7549493 0.6557485 -0.006746351 0.9295721 0.3686347 -0.002032637 0.9237912 0.3828667 -0.004787445 0.9945467 0.104216 0.003989338 0.9914268 0.1306644 2.21848e-7 0.9979415 -0.06413084 0 0.9914308 -0.1305403 0.004907667 0.9561994 -0.292613 -0.007780671 0.9238778 -0.3826727 0.003391981 0.8801935 -0.474615 -1.49982e-6 0.7881325 -0.6155056 8.34688e-7 0.6087679 -0.7933484 -8.89923e-7 0.2592518 -0.9657431 0.0113523 0.1885967 -0.6946421 0.6941929 0.7165118 -0.04426693 0.696169 0.6934991 -0.1979076 0.6927422 0.6382328 -0.3285258 0.6962254 0.6030759 -0.4170925 0.679951 0.4303925 -0.5779411 0.693359 0.4663725 -0.5776149 0.6699685 0.3545971 -0.6197592 0.7001139 0.7246227 0.03564381 0.6882234 0.6748991 0.2671836 0.6878404 0.5542969 0.4547274 0.6971212 0.5181303 0.4381554 0.734548 0.3445377 0.6696307 0.6579426 0.3704221 0.621434 0.6903675 0.1605259 0.7011281 0.6947308 0.05212152 -0.8002551 0.5973904 0.07921087 -0.7070546 0.7027087 -0.6738791 -0.07233494 0.7352923 -0.4900764 0.3899477 0.7795935 -0.3695611 0.6011633 0.7085389 -0.1953995 0.6677016 0.718327 -0.1457498 0.7074868 0.6915342 -0.005315124 0.6857427 0.7278246 0.03748154 0.7060583 0.7071611 -0.645732 0.07031548 0.7603196 -0.6537592 0.1877719 0.7330353 -0.5849606 0.2626044 0.7673722 -0.5125687 0.5213508 0.6822512 -0.2282333 -0.6842113 0.6926503 -0.3144431 -0.5984656 0.7368614 -0.464685 -0.4748027 0.7474157 -0.5977297 -0.3225112 0.7339658 -0.6042498 -0.402684 0.687552 -0.5957851 -0.2441524 0.7651338 -0.2367779 -0.6726163 0.7010874 -0.02858632 -0.7019484 0.711654 0.04896634 0.7069967 0.7055197 -0.4534494 -0.8912822 1.71063e-5 -0.7071056 -0.707108 6.15803e-5 -0.76456 -0.6277295 0.1463001 -0.5955314 -0.8033322 -4.12911e-5 -0.9960039 0.0893101 1.33378e-6 -0.9621506 -0.2578056 0.08833235 -0.8750677 -0.4840006 -5.98957e-6 -0.9269183 0.3458611 0.1456115 -0.9659147 0.2588166 0.004769086 -0.7047127 0.7047148 0.08220243 -0.5790913 0.8152627 -3.6748e-5 -0.1666253 0.9811535 0.09784626 -0.4315655 0.9020816 2.8965e-5 1.10446e-6 0 1 1.4726e-6 0 1 -0.623489 0.7818322 0 -0.623491 0.7818306 0 -0.2225206 0.9749281 0 -0.2225214 0.9749279 0 -0.2225214 -0.9749279 0 0.4594988 -0.8881785 1.10506e-6 0.1736555 0.9848065 0 0.2594683 0.9655949 0.01740175 0.923878 -0.3826723 0.003391265 0.9561987 -0.2926149 -0.007780849 0.9914309 -0.1305397 0.004907608 0.9979414 -0.06413412 0 0.9914269 0.1306632 0 0.9945469 0.104215 0.003989458 0.923791 0.3828675 -0.004787921 0.9295722 0.3686348 -0.002031922 0.7934137 0.6086808 0.001546204 0.7549484 0.6557496 -0.006747066 0.608922 0.7932167 0.004616796 0.568997 0.8223397 7.11678e-7 0.4226129 0.9063103 1.99971e-6 0.6087701 -0.7933468 0 0.6020044 -0.7984918 0.001280605 0.7933385 -0.6087794 -0.001362919 0.7881323 -0.6155061 4.17344e-7 0.8801903 -0.4746211 -4.98477e-7 0.2601983 -0.965489 0.01129931 0.2592576 -0.9657393 0.0115422 0.04702132 -0.9988939 0 0.716516 -0.04426717 0.6961647 0.6957193 -0.2042698 0.6886571 0.6934964 -0.1979082 0.6927446 0.6030685 -0.4170947 0.6799562 0.5779001 -0.4278383 0.6949719 0.4303728 -0.5779426 0.6933698 0.4663947 -0.5776084 0.6699587 0.3088876 -0.633834 0.7091143 0.356969 -0.6249936 0.6942306 0.1654829 -0.683624 0.710826 0.2275742 -0.7202327 0.6553433 0.07208091 -0.7065111 0.7040216 0.7246312 0.03564321 0.6882146 0.6722438 0.2552365 0.6949407 0.6748984 0.2671833 0.687841 0.5006981 0.6881986 0.5250564 0.5181234 0.4381576 0.7345517 0.3445377 0.6696241 0.6579493 0.3704317 0.621433 0.6903632 0.1476889 0.6944459 0.7042251 0.1605141 0.7011308 0.6947308 0.04896533 -0.7069946 0.7055219 0.07921105 -0.7070563 0.702707 -0.6738797 -0.072335 0.7352917 -0.08025211 0.6965723 0.7129845 -0.04011672 0.7794987 0.625118 -0.3695535 0.6011672 0.7085396 -0.3086481 0.6136691 0.726737 -0.6698849 -0.06258988 0.7398222 -0.6457334 0.07031565 0.7603185 -0.6537523 0.1877728 0.7330411 -0.584971 0.2626037 0.7673645 -0.3144515 -0.5984648 0.7368583 -0.448835 -0.5334719 0.7169066 -0.4646939 -0.474798 0.7474133 -0.5977255 -0.3225116 0.733969 -0.6042599 -0.4026715 0.6875506 -0.5957875 -0.2441533 0.7651317 -0.2367768 -0.6726133 0.7010906 -0.004022896 -0.6887117 0.7250242 -0.02858638 -0.7019498 0.7116525 0.07921051 0.7070519 0.7027114 0.04896628 0.7069961 0.7055204 -0.4534546 -0.8912795 1.8805e-5 -0.2584731 -0.9646329 0.05172133 -0.2405068 -0.9700728 0.03339433 -0.03960132 -0.9992156 0 -0.7645546 -0.6277362 0.1463 -0.9960039 0.08931076 1.77839e-6 -0.9969884 -0.07755053 -1.40787e-6 -0.9621513 -0.2578032 0.08833217 -0.8750715 -0.4839939 -6.98773e-6 -0.9659147 0.2588166 0.004769682 -0.7726686 0.6348021 -0.00310713 -0.7047087 0.7047189 0.08220082 -0.5790951 0.8152601 -3.8926e-5 -0.1666253 0.9811537 0.09784358 -0.4315655 0.9020816 3.05742e-5 1.47261e-6 0 1 2.4137e-5 0 1 -1.76696e-5 0 1 -2.36728e-6 0 1 1.2935e-5 0 1 -9.82386e-7 0 1 -1.09991e-6 0 1 0.1736548 0.9848066 0 0.2594666 0.9655953 0.01740223 0.4226148 0.9063095 7.41877e-7 0.5689945 0.8223415 -7.11681e-7 0.6089218 0.7932168 0.004617214 0.7549499 0.6557478 -0.00674653 0.7934131 0.6086817 0.001546204 0.9295721 0.3686347 -0.002032458 0.9237912 0.3828667 -0.004787683 0.9945467 0.1042165 0.003989517 0.9914268 0.1306644 0 0.9979416 -0.06413066 0 0.9914309 -0.1305398 0.004907548 0.9561992 -0.2926134 -0.007780611 0.9238778 -0.3826727 0.003391325 0.8801934 -0.4746152 -5.59632e-7 0.7881325 -0.6155056 4.17344e-7 0.7933372 -0.608781 -0.001362919 0.6020038 -0.7984922 0.001280605 0.6087701 -0.7933468 -4.44961e-7 0.4595047 -0.8881753 1.25905e-6 0.2592518 -0.9657431 0.01135116 0.2139733 -0.9768396 0 0.1858275 -0.6985385 0.6910226 0.188586 -0.6946408 0.6941971 0.7165222 -0.04426652 0.6961584 0.6957215 -0.2042704 0.6886548 0.6934942 -0.1979076 0.6927469 0.6382424 -0.3285307 0.6962143 0.6030676 -0.417094 0.6799575 0.4303901 -0.577938 0.693363 0.4663732 -0.5776158 0.6699672 0.3545821 -0.6197637 0.7001175 0.7483938 0.07567811 0.6589231 0.7246323 0.03564327 0.6882134 0.6748963 0.2671825 0.6878434 0.5007002 0.6882015 0.5250505 0.5181225 0.4381569 0.7345528 0.3704321 0.6214337 0.6903624 0.1605141 0.7011307 0.6947309 0.04896628 -0.7069954 0.7055209 0.0521214 -0.8002539 0.597392 0.07921195 -0.7070536 0.7027096 -0.08025211 0.696572 0.7129846 -0.3086578 0.6136649 0.7267364 -0.1953933 0.6677032 0.7183271 -0.04011958 0.7794954 0.6251219 -0.3695537 0.6011675 0.7085392 -0.5125591 0.5213457 0.6822623 -0.5849627 0.2626044 0.7673706 -0.6537529 0.1877728 0.7330406 -0.6457379 0.07031416 0.7603148 -0.6698901 -0.06258976 0.7398175 -0.6738798 -0.072335 0.7352917 -0.5957795 -0.2441544 0.7651375 -0.6042844 -0.4026554 0.6875385 -0.5977261 -0.3225117 0.7339686 -0.4646932 -0.4747976 0.7474139 -0.4488325 -0.533473 0.7169072 -0.3144516 -0.5984647 0.7368584 -0.2367676 -0.672615 0.7010922 -0.05205643 -0.6885049 0.723361 -0.01214581 -0.7179969 0.6959404 0.08866119 -0.7071037 0.7015294 0.07921171 0.7070518 0.7027114 0.04896628 0.7069954 0.7055209 -0.2073898 -0.9782584 0 -0.2584731 -0.9646329 0.05172038 -0.4534513 -0.8912811 1.84796e-5 -0.7071056 -0.707108 6.10101e-5 -0.7645545 -0.6277361 0.1463012 -0.9960038 0.08931136 1.52137e-6 -0.9969884 -0.07755053 -1.31988e-6 -0.9621491 -0.2578104 0.08833426 -0.8750752 -0.4839871 -6.36374e-6 -0.9269226 0.3458513 0.1456072 -0.9659147 0.2588166 0.004769921 -0.7726686 0.6348021 -0.003107786 -0.7047087 0.7047189 0.08220058 -0.579102 0.8152551 -3.71401e-5 -0.1666306 0.981153 0.09784251 -0.4315603 0.9020842 3.09765e-5 -1.09991e-6 0 1 2.2074e-6 0 1 9.33505e-6 0 1 -1.02016e-5 0 1 1.20686e-5 0 1 0.2594666 0.9655953 0.01740199 0.422614 0.9063098 1.23981e-6 0.5689954 0.8223408 -7.1168e-7 0.6089207 0.7932177 0.004617631 0.7549505 0.6557472 -0.006746888 0.7934131 0.6086817 0.001546382 0.9295721 0.3686347 -0.002032339 0.9237912 0.3828667 -0.004787683 0.9945467 0.1042165 0.003989517 0.9914268 0.1306644 0 0.9979416 -0.06413066 0 0.9914308 -0.1305403 0.004907608 0.9561991 -0.2926138 -0.007780611 0.8801936 -0.474615 -5.41328e-7 0.7881325 -0.6155056 2.86924e-7 0.7933372 -0.608781 -0.001362562 0.6020038 -0.7984922 0.001281082 0.6087701 -0.7933468 -6.67441e-7 0.4595038 -0.8881759 8.65599e-7 0.2592518 -0.9657431 0.01135098 0.2139728 -0.9768397 0 0.188596 -0.6946395 0.6941956 0.7165129 -0.04426699 0.6961678 0.6957213 -0.2042704 0.6886548 0.6934886 -0.1979089 0.6927523 0.638249 -0.3285294 0.6962088 0.6030741 -0.4170913 0.6799533 0.5778992 -0.4278377 0.694973 0.4303897 -0.5779374 0.6933636 0.4663736 -0.5776162 0.6699666 0.354592 -0.6197605 0.7001154 0.748395 0.07567822 0.6589216 0.7246219 0.03564381 0.6882244 0.6722376 0.255239 0.6949458 0.6748971 0.2671828 0.6878426 0.5542933 0.4547298 0.6971224 0.5006881 0.6882071 0.5250548 0.5181226 0.4381569 0.7345527 0.3445402 0.6696226 0.6579496 0.3704235 0.6214364 0.6903647 0.1476888 0.6944449 0.7042261 0.1605139 0.7011301 0.6947315 0.07921189 -0.7070528 0.7027103 -0.6738851 -0.07233452 0.7352868 -0.4900863 0.3899481 0.779587 -0.0802555 0.6965718 0.7129845 -0.04012256 0.7794962 0.6251208 -0.3695537 0.6011676 0.7085391 -0.3086375 0.6136699 0.7267408 -0.1953804 0.6677044 0.7183296 -0.6698833 -0.06259036 0.7398236 -0.6457376 0.07031488 0.760315 -0.6537527 0.1877729 0.7330409 -0.58497 0.2626033 0.7673655 -0.512553 0.5213475 0.6822655 -0.228233 -0.6842101 0.6926516 -0.3144514 -0.5984645 0.7368587 -0.4488325 -0.5334725 0.7169077 -0.4646942 -0.4747983 0.7474129 -0.5977266 -0.3225122 0.733968 -0.6042483 -0.4026638 0.6875653 -0.5957874 -0.2441533 0.7651317 -0.2367678 -0.6726158 0.7010914 -0.004022896 -0.6887139 0.7250221 -0.02859669 -0.7019491 0.7116529 0.07921183 0.7070528 0.7027105 0.04896622 0.7069946 0.7055218 -0.2584697 -0.964634 0.05171859 -0.4534531 -0.8912802 1.79901e-5 -0.9960039 0.0893101 1.55608e-6 -0.9969884 -0.07755053 -1.15189e-6 -0.9483786 -0.3165228 0.01978361 -0.9269225 0.3458512 0.1456083 -0.7726686 0.6348021 -0.003107964 -0.5790951 0.8152601 -3.79955e-5 -0.1666306 0.981153 0.09784215 -9.82386e-7 0 1 1.02016e-5 0 1 -0.2225204 -0.9749281 0 0.2594674 0.9655951 0.01740199 0.4226148 0.9063095 1.23782e-6 0.6089218 0.7932168 0.004617452 0.7549499 0.6557478 -0.006746888 0.7934131 0.6086817 0.00154668 0.9237912 0.3828667 -0.004787564 0.9561992 -0.2926134 -0.007780671 0.8801934 -0.4746152 -3.67226e-7 0.7881325 -0.6155056 2.08672e-7 0.602005 -0.7984914 0.001280605 0.4595047 -0.8881753 6.29526e-7 0.2592509 -0.9657433 0.0113514 0.2139722 -0.9768398 0 0.1858239 -0.6985395 0.6910226 0.1885962 -0.6946405 0.6941946 0.6957208 -0.2042702 0.6886554 0.6934939 -0.1979076 0.6927473 0.6382437 -0.3285315 0.6962128 0.4303903 -0.5779382 0.6933627 0.3545814 -0.6197625 0.700119 0.7483952 0.07567828 0.6589215 0.7246313 0.03564321 0.6882145 0.6722446 0.2552368 0.6949399 0.6748972 0.2671828 0.6878424 0.5542944 0.4547306 0.6971212 0.3445406 0.6696234 0.6579486 0.3704234 0.6214361 0.6903649 0.1476863 0.6944454 0.704226 0.1605138 0.7011296 0.6947321 0.07921171 -0.7070514 0.7027118 -0.08025199 0.6965714 0.7129853 -0.04012256 0.779496 0.625121 -0.3695538 0.6011677 0.7085389 -0.3086472 0.6136672 0.7267389 -0.1953809 0.6677058 0.7183282 -0.6698812 -0.06259018 0.7398255 -0.6457312 0.07031542 0.7603204 -0.6537535 0.1877731 0.73304 -0.584963 0.2626054 0.7673702 -0.5125616 0.5213436 0.682262 -0.2282326 -0.684209 0.6926529 -0.6042544 -0.4026584 0.687563 -0.5957794 -0.2441549 0.7651374 -0.2367774 -0.6726149 0.701089 -0.004025638 -0.6887144 0.7250216 -0.02859675 -0.7019491 0.7116528 0.07921195 0.7070536 0.7027095 0.0521214 0.8002539 0.597392 0.04896622 0.706995 0.7055214 -0.2584697 -0.964634 0.05172044 -0.4534502 -0.8912817 1.98518e-5 -0.7645542 -0.6277359 0.1463033 -0.9960039 0.0893101 1.77838e-6 -0.8750752 -0.4839871 -5.9894e-6 -0.9269223 0.3458512 0.1456092 -0.7726686 0.6348021 -0.003108859 -0.7047169 0.7047108 0.08219987 -0.5790917 0.8152624 -3.75316e-5 1.47261e-6 0 1 -3.23376e-6 0 1 4.82742e-5 0 1 -8.83481e-6 0 1 1.02015e-5 0 1 0.2594666 0.9655953 0.0174027 0.4226137 0.9063099 1.81907e-6 0.5689945 0.8223415 -1.42336e-6 0.6089229 0.7932161 0.004618108 0.7549499 0.6557478 -0.006747364 0.7934137 0.6086809 0.001547098 0.9295721 0.3686347 -0.002032279 0.9237912 0.3828667 -0.004787921 0.9945467 0.104216 0.003989636 0.9979416 -0.06413066 0 0.9561992 -0.2926134 -0.007780492 0.9238784 -0.3826715 0.003391087 0.8801935 -0.474615 -5.82572e-7 0.6020026 -0.7984932 0.001280605 0.608769 -0.7933477 -8.89922e-7 0.2592518 -0.9657431 0.01135051 0.1858276 -0.698539 0.6910221 0.1885957 -0.6946383 0.6941969 0.69572 -0.20427 0.6886562 0.6934952 -0.1979079 0.692746 0.6382307 -0.3285247 0.6962278 0.6030679 -0.4170943 0.679957 0.4303733 -0.5779431 0.6933691 0.4663868 -0.57761 0.6699628 0.3545824 -0.6197643 0.7001168 0.7246305 0.03564321 0.6882153 0.6722454 0.2552371 0.694939 0.5006859 0.6882041 0.5250607 0.3445392 0.6696271 0.6579456 0.1605261 0.7011288 0.6947301 0.04896634 -0.7069963 0.7055202 0.07921057 -0.7070519 0.7027114 -0.6738786 -0.07233488 0.7352927 -0.49008 0.3899505 0.7795899 -0.08025193 0.6965705 0.7129861 -0.3695535 0.6011672 0.7085395 -0.6457313 0.07031542 0.7603203 -0.584969 0.2626028 0.7673663 -0.5125536 0.5213481 0.6822647 -0.4488357 -0.5334728 0.7169054 -0.4646927 -0.4747968 0.7474148 -0.6042669 -0.4026572 0.6875528 -0.2367771 -0.6726143 0.7010896 -0.004025578 -0.688713 0.7250229 -0.02858638 -0.7019495 0.7116528 0.07921105 0.7070567 0.7027065 0.04896539 0.7069953 0.7055212 -0.4534502 -0.8912817 2.17111e-5 -0.7645538 -0.6277356 0.1463066 -0.9960039 0.0893101 1.33378e-6 -0.9621512 -0.2578032 0.08833277 -0.9659147 0.2588166 0.004771351 -0.579091 0.815263 -4.23468e-5 -4.04221e-6 0 1 1.02016e-5 0 1 -0.6234862 -0.7818344 0 -0.6234886 -0.7818325 0 -0.2225227 -0.9749276 0 -0.2225226 -0.9749276 0 0.2594683 0.9655949 0.0174036 0.4226155 0.9063091 4.00658e-7 0.6089196 0.7932186 0.004618585 0.7549493 0.6557485 -0.006747364 0.7934137 0.6086809 0.00154531 0.9238778 -0.3826727 0.003391087 0.8801935 -0.4746152 -1.29634e-6 0.7933366 -0.6087819 -0.001363396 0.6020074 -0.7984895 0.001280605 0.6087679 -0.7933484 8.89923e-7 0.1885951 -0.6946365 0.6941989 0.6382563 -0.3285283 0.6962026 0.6030673 -0.4170939 0.6799578 0.4303717 -0.577941 0.6933718 0.4663882 -0.5776117 0.6699603 0.3545985 -0.6197618 0.700111 0.7246219 0.03564381 0.6882243 0.6749023 0.2671808 0.6878383 0.5007024 0.6882044 0.5250447 0.5181207 0.4381553 0.734555 0.3704314 0.6214324 0.6903639 0.1605143 0.7011315 0.6947301 0.07921034 -0.70705 0.7027134 -0.6738806 -0.07233512 0.7352909 -0.4900871 0.3899487 0.7795862 -0.04011642 0.7794929 0.6251252 -0.3695545 0.6011688 0.7085377 -0.3086475 0.6136679 0.7267383 -0.1953803 0.6677042 0.7183298 -0.6457355 0.07031589 0.7603167 -0.6537568 0.1877712 0.7330375 -0.584967 0.2626019 0.7673681 -0.5125644 0.5213464 0.6822579 -0.228235 -0.684216 0.6926452 -0.4488378 -0.5334722 0.7169046 -0.4646944 -0.4747985 0.7474125 -0.5977223 -0.3225098 0.7339724 -0.6042363 -0.4026845 0.6875637 -0.2367765 -0.6726125 0.7010916 -0.02858638 -0.7019497 0.7116527 0.07921081 0.7070543 0.702709 0.05212152 0.8002551 0.5973904 0.04896622 0.7069946 0.7055218 -0.4534485 -0.8912826 1.65278e-5 -0.9960039 0.0893101 8.89189e-7 -0.9969884 -0.07755178 -1.02392e-6 -0.5790917 0.8152624 -3.65985e-5 -1.09991e-6 0 1 -2.42532e-6 0 1 4.82736e-5 0 1 -8.83485e-6 0 1 1.02015e-5 0 1 0.4226162 0.9063088 1.64836e-6 0.6089229 0.7932161 0.004617631 0.7549487 0.6557492 -0.006747066 0.9295721 0.3686347 -0.002031624 0.9237906 0.382868 -0.004787921 0.9561994 -0.292613 -0.007780313 0.8801935 -0.474615 -1.01326e-6 0.7165034 -0.0442664 0.6961778 0.6957204 -0.2042701 0.6886558 0.6382286 -0.3285237 0.6962302 0.6030766 -0.417093 0.6799501 0.354573 -0.6197682 0.7001182 0.5542905 0.4547328 0.6971229 0.1605142 0.7011313 0.6947303 0.07921105 -0.7070454 0.7027179 -0.6738862 -0.0723347 0.7352858 -0.3695608 0.6011629 0.7085393 -0.1457499 0.7074874 0.6915336 0.03746002 0.7060536 0.707167 -0.6699019 -0.06259024 0.7398067 -0.6457296 0.07031404 0.7603218 -0.584962 0.2626049 0.7673709 -0.314442 -0.5984636 0.7368633 -0.6042603 -0.402691 0.6875389 -0.5957844 -0.2441521 0.7651345 -0.2367771 -0.6726142 0.7010897 -0.004022896 -0.6887144 0.7250216 -0.02859681 -0.7019514 0.7116506 0.079212 0.7070542 0.7027089 0.04896605 0.7069923 0.7055242 -0.453441 -0.8912863 1.60413e-5 -0.7645606 -0.62773 0.1462951 -0.7047086 0.7047188 0.08220291 -0.579091 0.815263 -3.08605e-5 6.03435e-6 0 1 -2.41368e-5 0 1 1.76696e-5 0 1 0.4226155 0.9063091 1.56293e-6 0.9945467 0.104216 0.003989756 0.9914309 -0.1305398 0.00490731 0.956199 -0.2926142 -0.007780373 0.8801935 -0.4746152 -2.31715e-7 0.6020075 -0.7984896 0.001279652 0.4594998 -0.888178 0 0.2592501 -0.9657436 0.01135319 0.1858264 -0.6985489 0.6910125 0.6382397 -0.3285198 0.6962219 0.6030671 -0.4170936 0.6799582 0.7246311 0.03564321 0.6882147 0.6722352 0.2552381 0.6949484 0.6748967 0.2671826 0.6878431 0.1605142 0.7011312 0.6947304 0.0792104 -0.7070508 0.7027125 -0.6738803 -0.07233506 0.7352911 -0.3695539 0.6011678 0.7085389 -0.1953813 0.6677074 0.7183266 -0.005315124 0.6857372 0.7278299 0.0374816 0.7060603 0.7071592 -0.6698816 -0.06258958 0.7398252 -0.5849723 0.2626043 0.7673633 -0.5125579 0.5213398 0.6822679 -0.3144541 -0.5984697 0.7368533 -0.4488354 -0.5334752 0.7169038 -0.5977287 -0.3225133 0.7339657 -0.6042199 -0.4026736 0.6875845 -0.236765 -0.672608 0.7010998 -0.02859658 -0.7019449 0.7116569 0.07921135 0.7070591 0.7027041 0.04896622 0.7069951 0.7055214 -0.2584748 -0.9646323 0.05172401 -0.240507 -0.9700732 0.03338462 -0.7071011 -0.7071125 4.56153e-5 -0.579091 0.815263 -3.56757e-5 -0.431576 0.9020767 4.50564e-5 -1.20683e-5 0 1 -2.41375e-5 0 1 1.76696e-5 0 1 0.2594699 0.9655944 0.01740175 0.4226105 0.9063115 1.44836e-7 0.5690003 0.8223375 1.42335e-6 0.6089162 0.7932212 0.004616796 0.7549499 0.6557478 -0.006748437 0.793415 0.6086791 0.001548886 0.9237906 0.382868 -0.004788815 0.991431 -0.1305389 0.004907727 0.9561987 -0.2926149 -0.007780015 0.8801984 -0.4746059 -1.44381e-6 0.7933385 -0.6087794 -0.00136429 0.6020098 -0.7984877 0.001281559 0.7165275 -0.04426699 0.6961529 0.6957129 -0.2042717 0.688663 0.6382653 -0.3285233 0.6961967 0.6030664 -0.4170932 0.6799591 0.3546015 -0.6197668 0.700105 0.724635 0.03564339 0.6882105 0.3704332 0.6214355 0.6903603 0.1605249 0.7011235 0.6947356 0.07920992 -0.7070464 0.702717 -0.08025312 0.6965806 0.7129761 -0.3086377 0.613669 0.7267414 -0.5125583 0.5213461 0.6822627 -0.6537592 0.1877717 0.7330353 -0.6738829 -0.07233434 0.7352889 -0.5957859 -0.2441521 0.7651334 -0.6043612 -0.4027448 0.6874185 -0.5977286 -0.3225079 0.7339682 -0.314456 -0.5984562 0.7368634 -0.05206865 -0.6885074 0.7233577 0.0887134 -0.707094 0.7015327 0.04896646 0.7069978 0.7055186 -0.2584695 -0.9646333 0.05173146 -0.4534597 -0.8912768 1.50586e-5 -0.9483788 -0.3165228 0.0197755 -0.8750827 -0.4839736 0 -0.5790925 0.815262 -4.04908e-5 7.36316e-7 0 1 -1.09992e-6 0 1 0.259465 0.9655959 0.01740002 0.4226107 0.9063113 0 0.5690003 0.8223375 0 0.7549469 0.6557512 -0.006748437 0.7934157 0.6086783 0.00154531 0.9914309 -0.1305403 0.004907131 0.9238784 -0.3826715 0.00339061 0.8801984 -0.4746059 -6.62515e-7 0.7881312 -0.6155073 -1.66938e-6 0.7933359 -0.6087828 -0.001360714 0.6020026 -0.7984932 0.001283466 0.6087712 -0.7933459 -3.55968e-6 0.2592502 -0.9657437 0.01134425 0.6957244 -0.2042713 0.6886515 0.60307 -0.4170957 0.6799543 0.5779024 -0.4278401 0.6949688 0.4664055 -0.5776103 0.6699495 0.6748886 0.2671835 0.6878506 0.5543 0.4547353 0.6971137 0.1605269 0.7011324 0.6947262 0.05212205 -0.8002501 0.5973969 0.07921117 -0.7070468 0.7027165 -0.6738842 -0.07233548 0.7352875 -0.3695507 0.6011626 0.7085449 -0.3086165 0.6136708 0.726749 -0.6698954 -0.06258964 0.7398127 -0.6457251 0.07031476 0.7603255 -0.5849673 0.2626073 0.7673662 -0.31445 -0.5984619 0.7368613 -0.4488291 -0.5334678 0.7169133 -0.4646862 -0.474804 0.7474142 -0.6042323 -0.4026532 0.6875855 -0.5957753 -0.2441533 0.7651411 -0.2367695 -0.6726208 0.7010859 -0.004033744 -0.6887171 0.725019 -0.02859646 -0.7019423 0.7116595 0.05212116 0.8002502 0.597397 0.04896616 0.7069938 0.7055226 -0.7645549 -0.6277365 0.1462966 -0.9621502 -0.2578082 0.08832961 -0.875064 -0.4840074 -1.59724e-5 -0.7047091 0.7047193 0.08219474 -0.579098 0.815258 -3.47372e-5 -1.0999e-6 0 1 -8.83478e-6 0 1 5.60098e-6 0 1 -2.42533e-6 0 1 -0.6723578 -0.7402263 0 -0.623303 -0.7815949 -0.02455347 -0.4907833 -0.8712816 0 -0.2225207 -0.974928 0 -0.2225201 -0.9749282 0 0.4226217 0.9063062 2.64024e-6 0.5689896 0.8223448 0 0.9237923 0.3828642 -0.00478518 0.9945467 0.104216 0.003990054 0.8801887 -0.4746242 -8.77709e-7 0.2592501 -0.9657436 0.01135504 0.6382099 -0.328514 0.6962519 0.5778962 -0.4278354 0.6949769 0.4663969 -0.5775997 0.6699647 0.3545518 -0.6197619 0.7001345 0.7483913 0.07567566 0.6589262 0.7246347 0.03564339 0.6882109 0.5543045 0.4547336 0.6971111 0.3445433 0.6696094 0.6579614 0.1605141 0.7011306 0.694731 0.07920897 -0.7070376 0.702726 -0.04011672 0.7794985 0.6251183 -0.4900916 0.3899523 0.7795816 -0.512549 0.5213374 0.6822762 -0.653758 0.1877714 0.7330365 -0.673874 -0.0723344 0.735297 -0.595789 -0.2441583 0.7651289 -0.6042546 -0.4026355 0.6875762 0.04896634 0.7069966 0.7055198 -0.453441 -0.8912863 3.28906e-5 -0.9960039 0.08931016 3.55676e-6 -0.9969884 -0.07755053 -2.04781e-6 -0.965916 0.258812 0.00476557 -0.579098 0.815258 -3.95626e-5 -6.03427e-6 0 1 2.41368e-5 0 1 -1.76697e-5 0 1 0 1 8.83461e-7 -0.2225258 0.9749268 0 -0.6725016 0.7400956 0 -0.4909466 0.8711898 0 -0.222525 0.9749271 0 0.4226105 0.9063115 2.55498e-6 0.5690003 0.8223375 2.84671e-6 0.9914269 0.1306634 4.43693e-7 0.8801887 -0.4746242 -2.08985e-6 0.6382764 -0.3285483 0.6961748 0.6030687 -0.4170948 0.679956 0.4663912 -0.5776153 0.6699552 0.3546043 -0.6197719 0.700099 0.7484033 0.07567906 0.6589122 0.6722545 0.2552405 0.694929 0.6748974 0.2671788 0.6878437 0.3445258 0.669614 0.6579659 0.1605241 0.7011201 0.6947392 0.07921063 -0.7070525 0.7027108 -0.6738841 -0.07233446 0.7352877 -0.4900773 0.3899409 0.7795963 -0.08025312 0.6965808 0.7129759 -0.04012238 0.7794927 0.6251251 -0.3086363 0.6136675 0.7267434 -0.1953775 0.6676946 0.7183394 -0.6537533 0.1877702 0.733041 -0.5125709 0.521353 0.6822479 -0.2282443 -0.684244 0.6926143 -0.314448 -0.5984581 0.7368654 -0.4488385 -0.533479 0.716899 -0.6043272 -0.4027451 0.6874483 -0.5957803 -0.2441504 0.7651382 -0.2367675 -0.6726151 0.7010922 -0.02859681 -0.7019507 0.7116512 0.04896652 0.7069994 0.7055171 -0.4534406 -0.8912865 -4.95838e-7 -0.7071011 -0.7071125 7.29845e-5 -0.7645558 -0.6277372 0.14629 -0.595537 -0.8033279 -1.73857e-5 -0.7047137 0.7047157 0.08218616 -0.5790925 0.815262 -3.38197e-5 -0.1666227 0.9811542 0.09784364 1.47263e-6 0 1 -1.32522e-5 0 1 0.4226107 0.9063113 -1.96587e-7 0.6089229 0.7932161 0.004622101 0.9561987 -0.2926149 -0.007781386 0.9238778 -0.3826727 0.003389716 0.8801984 -0.4746059 6.85394e-7 0.7933385 -0.6087794 -0.001360714 0.6087656 -0.7933502 -3.5597e-6 0.4595206 -0.8881671 2.51808e-6 0.6382321 -0.3285062 0.6962353 0.3545803 -0.6197605 0.7001212 0.7246314 0.03564321 0.6882143 0.6749014 0.2671845 0.6878376 0.0792101 -0.7070481 0.7027153 -0.6738871 -0.07233476 0.7352849 -0.3695542 0.6011683 0.7085382 -0.3086415 0.6136765 0.7267336 -0.1457413 0.7074946 0.6915281 -0.005320668 0.6857427 0.7278246 0.0374813 0.7060543 0.7071651 -0.6457327 0.07031559 0.7603191 -0.3144642 -0.5984719 0.7368471 -0.597736 -0.3225147 0.7339591 -0.6041816 -0.4026194 0.6876498 -0.2367656 -0.6726096 0.701098 -0.02859663 -0.7019475 0.7116544 0.04896628 0.7069953 0.7055211 -0.453441 -0.8912863 2.80791e-5 -0.7645527 -0.6277347 0.1463167 -0.5955314 -0.8033322 -5.21572e-5 -0.7047076 0.7047178 0.08221912 -0.579098 0.815258 -4.31096e-5 7.36282e-7 0 1 0 1 2.65038e-6 -0.6233 0.7815963 -0.02458703 0.2594699 0.9655944 0.01740539 0.4226105 0.9063115 1.50988e-6 0.8801887 -0.4746242 -9.89187e-7 0.7933391 -0.6087785 -0.001360714 0.4594998 -0.888178 5.03622e-6 0.6382889 -0.3285547 0.6961603 0.6030662 -0.4170931 0.6799592 0.4663997 -0.5776032 0.6699596 0.3545605 -0.6197771 0.7001166 0.7246353 0.03564345 0.6882102 0.5181179 0.438153 0.7345582 0.07921135 -0.7070589 0.7027043 -0.6738805 -0.07233405 0.7352911 -0.4900808 0.3899437 0.7795926 -0.3695527 0.6011659 0.708541 -0.1457481 0.7074788 0.6915428 0.03748184 0.7060649 0.7071545 -0.6537627 0.1877729 0.7330319 -0.3144521 -0.5984659 0.7368573 -0.6043242 -0.4027431 0.6874521 -0.5957831 -0.2441515 0.7651358 -0.2367668 -0.672613 0.7010945 -0.02859705 -0.7019579 0.7116442 0.04896616 0.7069942 0.7055221 0.02186167 -4.90234e-4 0.9997609 0.01705896 -0.01928752 0.9996685 0.01484096 -0.05733555 0.9982447 0.0166077 -0.006498634 0.999841 0.01763921 0 0.9998444 0.02372282 -0.009769797 0.9996709 0.03153872 0.001691639 0.9995012 0.02689647 -6.42932e-4 0.9996381 0.02848076 0.001054048 0.9995938 0.02398329 -0.001941919 0.9997105 0.0216307 -0.006770551 0.9997432 0.03419637 0.003811061 0.9994079 0.03006911 -0.001364588 0.999547 0.02801811 -1.7896e-4 0.9996074 0.03197044 0.001364886 0.999488 0.03772169 -4.71557e-4 0.9992882 0.02989888 6.31749e-4 0.9995527 0.03457492 -1.26496e-4 0.9994021 0.0268194 3.17881e-4 0.9996403 0.03121054 -5.19714e-4 0.9995128 0.02864944 -1.45e-4 0.9995895 0.03131949 -5.17325e-5 0.9995095 0.03380191 5.12598e-5 0.9994286 0.03658747 3.91248e-4 0.9993304 0.0306217 4.23806e-4 0.999531 0.03000003 3.29569e-4 0.9995499 0.02529895 -3.13586e-4 0.9996799 0.02768301 0 0.9996169 0.02722769 2.57006e-5 0.9996293 0.02758884 0 0.9996194 0.03202247 0 0.9994872 0.03802347 8.96876e-5 0.9992769 0.03425467 -4.1749e-4 0.9994131 0.0272116 -0.002092301 0.9996276 0.0380634 8.96875e-5 0.9992754 0.03423321 -4.1749e-4 0.9994138 0.02725696 -0.002092301 0.9996263 0.02634978 0.01502025 0.99954 0.03425467 -4.1749e-4 0.9994131 0.02730214 -0.002092301 0.9996252 0.03277647 7.90913e-4 0.9994625 0.03582602 0.001487255 0.9993569 0.1022965 0.02247667 0.9945 -0.004919469 -0.01079148 0.9999297 0.02560228 -2.99543e-4 0.9996722 0.01700061 0.03460216 0.9992566 0.01975005 0.008771717 0.9997665 0.02420443 -3.71384e-4 0.9997071 0.02881556 9.52993e-4 0.9995843 0.03100883 0.002081334 0.999517 0.1311579 0.07750773 0.988327 0.03313159 0.005335211 0.9994368 0.0246883 -0.002813041 0.9996913 0.01672399 0 0.9998602 0.01976853 0.003625214 0.999798 0.02272272 0.008031666 0.9997096 0.03422605 -4.1749e-4 0.9994141 0.02726846 -0.002092361 0.9996261 0.03213626 -3.25404e-6 0.9994836 0.03379404 5.12598e-5 0.9994289 0.03206241 -1.62406e-4 0.9994859 0.03672641 1.91701e-4 0.9993253 0.03425467 -4.1749e-4 0.999413 0.03804343 8.96875e-5 0.9992761 0.02231538 -0.02828055 0.9993509 0.02554881 -0.09545481 0.9951059 0.03377109 0.03350085 0.9988681 0.04809069 0.07827782 0.9957711 0.03552836 -0.6764253 0.7356539 0.02051299 -0.01262474 0.9997099 0.01890635 -0.005557835 0.9998059 0.01710224 -7.31499e-4 0.9998535 0.01800763 -6.8547e-4 0.9998377 0.01144671 -0.001016676 0.999934 0.009530246 -0.001121282 0.9999541 0.01672405 0 0.9998602 0.03659051 3.91248e-4 0.9993304 -0.05369776 -0.01066595 0.9985003 0.03126186 0.001877963 0.9995095 0.02746552 0.001361012 0.9996219 0.01324111 -9.29916e-4 0.9999119 0.02598142 0.001793682 0.9996609 0.03660243 3.91246e-4 0.9993299 0.02481901 0.002132654 0.9996898 0.02919077 0.003376603 0.9995682 0.03354585 0.004754781 0.9994258 0.02679556 0.001547694 0.9996398 0.03081876 0.00220406 0.9995226 -0.01325327 -0.00571537 0.9998959 0.03659963 3.91249e-4 0.9993299 0.02724504 -0.002092242 0.9996266 0.03802359 8.96879e-5 0.9992769 0.02734738 -0.002092301 0.9996239 0.03422611 -4.17505e-4 0.999414 0.02726793 -0.002092301 0.9996261 -0.02394723 -0.01588785 0.999587 0.01461464 -8.56808e-4 0.9998928 0.02313965 0.002629518 0.9997289 0.02749216 0.004600346 0.9996114 0.03201383 0.006927907 0.9994634 0.01394313 0.005340516 0.9998886 0.003502905 0.02185893 0.999755 0.01971858 -0.001677036 0.9998042 0.03659051 3.91248e-4 0.9993303 0.02733612 -0.002092301 0.9996241 0.03802329 8.96872e-5 0.9992769 0.03422611 -4.17491e-4 0.999414 0.0272687 -0.002092361 0.9996261 0.03425449 -4.17502e-4 0.9994131 0.00933212 -0.00648719 0.9999355 0.001281976 -0.0127691 0.9999178 0.01587545 -7.94346e-4 0.9998737 0.02042347 0.00342828 0.9997856 0.0238614 0.007215023 0.9996893 0.01599776 -0.003494083 0.999866 0.1411388 -0.005010783 0.9899772 0.1488008 0.0101239 0.9888154 0.0363065 7.91474e-4 0.9993404 0.04075115 0.002544283 0.9991661 0.05613303 0.01303088 0.9983384 0.06923258 -0.01126921 0.997537 0.108294 0.01182943 0.9940486 0.1120131 0.004569411 0.9936962 0.1314502 1.15048e-4 0.9913228 0.1601653 -0.001314282 0.9870893 0.1486439 0.02788823 0.9884974 0.1543411 0.01562875 0.987894 0.1585016 0.008207857 0.9873247 0.1626634 0.001948297 0.9866797 0.1695045 -0.007016301 0.9855045 0.1677572 -0.004917144 0.9858161 0.1404917 -2.19924e-4 0.9900819 0.1372509 6.97846e-5 0.9905364 0.1351388 -9.96414e-5 0.9908267 0.1335883 1.26479e-4 0.9910369 0.1314151 -1.08562e-4 0.9913275 0.1306324 0 0.9914309 0.1120126 0 0.9937068 0.1120156 0 0.9937065 0.06923675 0 0.9976003 0.06923764 0 0.9976003 0.04132699 0 0.9991458 0.0419057 -2.02608e-4 0.9991216 0.0380308 8.96872e-5 0.9992766 0.1542893 0.006234347 0.9880061 0.1611681 0.001805603 0.9869254 0.1641525 0 0.9864351 0.151966 -0.002569019 0.9883825 0.1459811 -0.003876388 0.9892798 0.1351301 -9.96418e-5 0.990828 0.1325734 2.76442e-4 0.9911732 0.04192125 -2.02609e-4 0.9991209 0.0413258 0 0.9991458 0.06923741 0 0.9976003 0.1120132 0 0.9937068 0.1314254 0 0.9913262 0.1767824 0.003296434 0.9842444 0.802246 0.1759002 0.5704916 0.1435484 0.001179754 0.9896426 0.1387985 1.91384e-4 0.9903206 0.1531251 -0.002862572 0.9882028 0.1469805 -0.004528403 0.989129 0.141887 -0.00600326 0.9898648 0.1387739 1.69057e-4 0.9903241 0.1473695 -0.001394927 0.9890806 0.1404914 -2.19924e-4 0.990082 0.1372581 6.97845e-5 0.9905354 0.1351302 -9.96419e-5 0.9908279 0.1335899 1.2648e-4 0.9910368 0.1314155 -1.08563e-4 0.9913275 0.130632 0 0.991431 0.1120129 0 0.9937068 0.1120154 0 0.9937065 0.03803086 8.96874e-5 0.9992766 0.1351297 -9.96416e-5 0.990828 0.1325678 2.76442e-4 0.9911739 0.04132902 0 0.9991456 0.06923651 0 0.9976003 0.1314373 0 0.9913245 0.1695644 0.002601385 0.9855157 0.141009 1.22089e-5 0.9900084 0.1634463 -2.38088e-4 0.9865523 0.1727142 0.002908051 0.9849678 0.2405893 0.02548766 0.9702924 0.1435527 0.001179814 0.989642 0.1387987 1.91384e-4 0.9903206 0.1564469 -0.003711104 0.9876795 0.1504315 -0.006823897 0.9885969 0.1449035 -0.009941518 0.9893959 0.1472758 -0.001394987 0.9890945 0.1372559 6.97846e-5 0.9905356 0.1351386 -9.96413e-5 0.9908267 0.133589 1.2648e-4 0.9910369 0.1314039 -1.08563e-4 0.991329 0.1306431 0 0.9914295 0.06923753 0 0.9976003 0.04192185 -2.02609e-4 0.9991209 0.03803098 8.96877e-5 0.9992766 0.04192113 -2.02608e-4 0.9991209 0.1387978 1.91334e-4 0.9903208 0.1435303 0.001179695 0.9896453 0.1754623 0.009138941 0.9844438 0.1669122 0.002353131 0.985969 0.1387861 1.69105e-4 0.9903225 0.1410209 1.22089e-5 0.9900066 0.1638656 -2.42774e-4 0.9864827 0.164773 0.00214827 0.9863293 0.162635 -0.005274295 0.9866723 0.1609835 -0.01383769 0.9868601 0.1592832 -0.0288906 0.9868102 0.1567683 -0.07085812 0.9850903 0.1466393 -0.2690091 0.9519091 0.1055593 -0.6587842 0.7448897 0.1120133 0 0.9937068 0.06923508 0 0.9976004 0.1435508 0.001179754 0.9896423 0.1416353 -0.005657196 0.9899028 0.06923693 0 0.9976003 0.1120157 0 0.9937065 0.1399147 0.07465285 0.9873454 0.1410949 0.06987833 0.9875269 0.1510278 0.03285098 0.9879835 0.1560398 0.01731258 0.9875991 0.1595424 0.008700668 0.9871528 0.1629579 0.001976132 0.9866311 0.1614072 0.001829624 0.9868863 0.1681866 -0.006681203 0.9857326 0.1829116 -0.02845329 0.9827176 0.1609544 0.002158284 0.9869595 0.1375526 -3.03916e-4 0.9904944 0.1435511 0.001179754 0.9896422 0.1423668 1.39158e-5 0.9898141 0.1401669 -2.76758e-5 0.990128 0.1375524 -3.03916e-4 0.9904944 0.1777764 -0.009111225 0.9840287 0.1627153 6.00751e-4 0.9866729 0.1641511 0 0.9864352 0.1527364 -0.002765059 0.9882631 0.14664 -0.004304707 0.9891806 0.132567 2.76442e-4 0.9911741 0.1351355 -9.96778e-5 0.9908272 0.1387952 1.91432e-4 0.9903212 0.04190289 -2.02608e-4 0.9991217 0.04132908 0 0.9991456 0.06923758 0 0.9976002 0.06923669 0 0.9976003 0.1120129 0 0.9937068 0.1314256 0 0.991326 0.1325671 2.76442e-4 0.991174 0.1351355 -9.96778e-5 0.9908272 0.138795 1.91432e-4 0.9903211 0.04191201 -2.02608e-4 0.9991213 0.0413351 0 0.9991454 0.1120142 0 0.9937067 0.112014 0 0.9937067 0.1351208 -9.96418e-5 0.9908292 0.1325702 2.76442e-4 0.9911736 0.04190289 -2.02608e-4 0.9991217 0.04132705 0 0.9991458 0.06923675 0 0.9976003 0.1120154 0 0.9937065 0.1120129 0 0.9937068 0.131419 0 0.9913269 0.1388472 1.91334e-4 0.9903138 0.1434267 0.001179695 0.9896603 0.278757 0.03514087 0.9597185 0.1738663 0.003017783 0.9847648 0.1540654 -0.003108143 0.9880558 0.1478858 -0.005123972 0.9889912 0.1426045 -0.006955385 0.9897553 0.1351299 -9.96417e-5 0.9908279 0.1325743 2.76442e-4 0.9911731 0.04132705 0 0.9991458 0.06923764 0 0.9976002 0.1314278 0 0.9913258 0.1387982 1.91335e-4 0.9903207 0.1435289 0.001179635 0.9896454 0.201928 0.01576012 0.9792736 0.1704456 0.002688884 0.9853635 0.1558398 -0.003548622 0.987776 0.14968 -0.006328403 0.9887143 0.1441968 -0.009026885 0.9895079 0.1120145 0 0.9937066 0.069238 0 0.9976002 0.04809015 -0.07827693 0.9957711 0.03538173 -0.03851419 0.9986315 0.02782183 -0.01835203 0.9994444 0.135139 -9.96416e-5 0.9908266 0.1325702 2.76442e-4 0.9911736 0.03673028 1.87157e-4 0.9993253 0.03880649 2.54699e-5 0.9992468 0.04195183 -9.78913e-5 0.9991196 0.04161858 0 0.9991336 0.1120154 0 0.9937065 0.1435289 0.001179635 0.9896454 0.1794972 0.0101453 0.9837062 0.1676664 0.002424597 0.9858409 0.1581289 -0.004134654 0.9874099 0.1688126 0.007478892 0.9856199 0.1471163 -0.01285552 0.9890357 0.152618 -0.008273005 0.9882507 0.1653957 0.002207696 0.9862248 0.1613623 -0.004952311 0.9868828 0.1581339 -0.01194202 0.9873455 0.1543071 -0.0223214 0.9877708 0.1479705 -0.04364556 0.9880283 0.1368812 -0.08695554 0.9867636 0.1325669 2.76442e-4 0.991174 0.1351354 -9.96777e-5 0.9908272 0.1387953 1.91433e-4 0.9903212 0.04133504 0 0.9991454 0.06923663 0 0.9976003 0.1414897 -0.005474388 0.9899247 0.1399151 -0.07465231 0.9873454 0.1055522 0.6588254 0.7448543 0.1525985 0.1602472 0.9752101 0.1579952 0.0474109 0.9863011 0.1600115 0.0212692 0.9868861 0.1616829 0.009706854 0.9867951 0.1634854 0.002026319 0.9865437 0.1661858 -0.006172835 0.9860752 0.1655085 -0.004529356 0.986198 0.1509168 0.01222449 0.988471 0.1560611 0.007062733 0.9877222 0.1618635 0.001872479 0.9868114 0.174149 -0.008191108 0.9846853 0.1705671 -0.005402743 0.9853312 0.1472514 0.00857675 0.989062 0.1528501 0.005550682 0.9882339 0.1604761 0.001740396 0.9870383 0.1641522 0 0.9864351 0.1525051 -0.002711236 0.988299 0.1464529 -0.004184961 0.9892088 0.1438546 -0.008570313 0.9895617 0.1387737 1.69057e-4 0.9903241 0.1474335 -0.001394927 0.989071 0.1351299 -9.96417e-5 0.990828 0.1325739 2.76443e-4 0.9911731 0.3172469 0.04493641 0.9472777 0.1746309 0.003084659 0.9846292 0.1410089 1.22089e-5 0.9900084 0.1420712 0 0.9898566 0.1641508 0 0.9864353 0.1554828 -0.003460705 0.9878326 0.1492878 -0.006073057 0.9887751 0.1325747 2.76443e-4 0.9911731 0.1314258 0 0.991326 0.147275 -0.001394987 0.9890947 0.1822579 0.01083636 0.9831911 0.1681107 0.002467513 0.985765 0.138786 1.69105e-4 0.9903224 0.141021 1.22089e-5 0.9900067 0.1637636 -2.41564e-4 0.9864996 0.1657631 0.002243101 0.9861631 0.1606962 -0.004782497 0.9869924 0.1568121 -0.01106441 0.9875665 0.1601634 -0.00456351 0.98708 0.1374434 -1.55718e-4 0.9905096 0.1336007 8.64187e-5 0.9910353 0.1306443 -2.98699e-4 0.9914293 0.1082992 -0.005418956 0.9941036 0.112004 -0.01402848 0.9936088 0.0561282 0.01899492 0.9982429 0.06922096 -0.0219627 0.9973596 0.04142767 -0.00301063 0.999137 0.01599806 0.008730709 0.999834 0.02953869 -0.01525056 0.9994473 0.02498602 -0.008638262 0.9996505 0.02147877 -0.004504919 0.9997592 0.03207975 0 0.9994853 0.03082984 -5.1732e-5 0.9995247 0.01048892 -0.001067698 0.9999445 0.01755243 -7.0832e-4 0.9998458 0.01672601 0 0.9998602 0.01672518 0 0.9998602 0.0123437 -9.72426e-4 0.9999234 0.02545279 0.001944422 0.9996742 0.02974778 0.002971708 0.999553 0.03399938 0.004096627 0.9994135 0.04132717 0 0.9991458 0.04192394 -2.02608e-4 0.9991208 0.02726888 -0.002092361 0.999626 -0.1114825 -0.03938263 0.9929857 0.01394712 -8.92782e-4 0.9999024 0.02406173 0.002349138 0.9997078 0.02850127 0.003880083 0.9995862 0.03293997 0.005613803 0.9994416 0.02643465 0.001658678 0.9996492 0.0305413 0.002407968 0.9995306 -0.004617691 -0.004659175 0.9999786 0.03660267 3.91249e-4 0.9993298 0.02724564 -0.002092301 0.9996266 0.03422582 -4.17488e-4 0.999414 0.1404609 -2.19924e-4 0.9900863 0.04132682 0 0.9991458 0.04192411 -2.02608e-4 0.9991208 0.1404906 -2.19923e-4 0.990082 0.1314153 -1.08562e-4 0.9913275 0.02730274 -0.002092361 0.999625 -0.002477169 -0.01011872 0.9999458 0.01527899 -8.25172e-4 0.9998829 0.02199643 0.002966701 0.9997537 0.026111 0.005588233 0.9996435 0.03062748 0.008915424 0.9994912 0.02001631 0.009982526 0.9997499 0.03425461 -4.17503e-4 0.9994131 0.02721178 -0.002092301 0.9996276 0.01359385 -0.005798876 0.9998909 0.0164048 -7.67081e-4 0.9998652 0.0184037 0.004024624 0.9998226 0.1372556 6.97845e-5 0.9905357 0.1351391 -9.96417e-5 0.9908266 0.1335887 1.2648e-4 0.991037 0.04191488 -2.02608e-4 0.9991212 0.02713727 0.001446127 0.9996308 0.03106504 0.002023994 0.9995154 -0.02783209 -0.007499337 0.9995845 0.03659951 3.91247e-4 0.9993299 0.02724629 -0.002092361 0.9996266 0.03425461 -4.17489e-4 0.9994131 0.03380393 5.12675e-5 0.9994285 0.02733546 -0.002092242 0.9996241 0.1306316 0 0.991431 0.1120151 0 0.9937065 0.02170979 0.02164381 0.99953 0.02495783 0.07233983 0.9970678 0.03552591 0.6764742 0.735609 0.06923735 0 0.9976003 0.1120119 0 0.9937069 0.2281813 0 0.9736188 0.2453556 -0.005598962 0.969417 0.2032806 0 0.9791206 0.2032824 0 0.9791202 0.2453556 0.005599021 0.9694171 0.2281815 0 0.9736187 0.2032597 0.0147317 0.979014 0.2115149 0.0917651 0.9730573 0.2113788 0.09206426 0.9730587 0.2070943 0.1647627 0.9643471 0.2067874 0.2297296 0.9510328 0.2211986 0.2687708 0.9374611 0.2101954 0.3108501 0.9269252 0.2096163 0.4497124 0.8682281 0.220642 0.4655266 0.8570894 0.2050329 0.3733526 0.9047483 0.2206285 0.6107348 0.7604776 0.2067282 0.5835968 0.7852888 0.2070984 0.5289949 0.8229671 0.2070535 0.8087252 0.5505383 0.2072557 0.7908464 0.5758533 0.2196014 0.7490122 0.6251047 0.2189217 0.7480642 0.6264769 0.1999544 0.6811991 0.7042628 0.2066714 0.8443863 0.4942659 0.2197811 0.8576354 0.4649277 0.199884 0.9042716 0.3772792 0.2182552 0.9300063 0.2957243 0.2214003 0.9321861 0.2863757 0.2059775 0.9504911 0.2326802 0.2080855 0.9705923 0.1210423 0.2186604 0.9709891 0.09678739 0.2070302 0.9779474 0.02751922 0.2069532 0.9775815 -0.03879129 0.2209242 0.9704816 -0.09673672 0.2038047 0.9684357 -0.1435132 0.2087215 0.9494329 -0.2345477 0.220274 0.9324298 -0.2864508 0.2157434 0.929914 -0.2978501 0.2213714 0.857317 -0.4647605 0.2069137 0.8844356 -0.4182828 0.2070547 0.9107164 -0.357385 0.215595 0.7496965 -0.6256788 0.2127021 0.7539095 -0.6215935 0.2025082 0.8328567 -0.5151119 0.2215458 0.6106006 -0.7603186 0.2068716 0.6502134 -0.731045 0.2070716 0.6982005 -0.6853011 0.2136471 0.4493073 -0.8674549 0.2153909 0.4461839 -0.8686349 0.2014706 0.5612089 -0.8027791 0.2079234 0.3090564 -0.9280368 0.2071116 0.3584969 -0.9102663 0.2070878 0.3743312 -0.9038755 0.2006908 0.1978192 -0.9594742 0.2163229 0.08269768 -0.9728132 0.2104699 0.0661996 -0.9753565 0.2214468 0.2687528 -0.9374077 0.2348591 0.267887 -0.9343864 0.2791065 0.1025601 -0.9547676 0.2228914 0.1629068 -0.9611352 0.2528289 0.02866297 -0.9670864 0.2489426 0.6488389 0.719052 0.2486274 0.7230415 0.6445119 0.2364147 0.7459871 0.6225845 0.2619744 0.8214229 0.5065903 0.2385739 0.853746 0.4628179 0.2591748 0.9120299 0.3178523 0.2416478 0.9275793 0.2849615 0.2553827 0.9601094 0.1138843 0.2456294 0.9645836 0.09614968 0.2505878 0.963333 -0.09589272 0.2505086 0.9633404 -0.09602588 0.2447811 0.9214215 -0.3017692 0.2562723 0.9239845 -0.2838613 0.2379532 0.8361644 -0.4941734 0.262906 0.8482031 -0.4598176 0.2300893 0.7113568 -0.6641012 0.2703905 0.7391524 -0.6168814 0.2299328 0.5844561 -0.7781659 0.2479938 0.6066 -0.7553381 0.2489461 0.4942488 -0.8329129 0.2351872 0.4470261 -0.8630498 0.2487588 0.4092082 -0.8778768 0.2488415 0.3116027 -0.9170506 0.2245919 0.5778302 0.7846469 0.2479949 0.6066048 0.7553339 0.2488417 0.4863839 0.837561 0.2348595 0.4470643 0.863119 0.2488753 0.4009051 0.8816667 0.247994 0.2669888 0.9312443 0.2262691 0.3046765 0.9251889 0.263318 0.1432577 0.9540131 0.238662 0.08216154 0.9676207 0.2453109 0.01958292 0.9692468 0.2032828 0 -0.9791201 0.2109318 3.36006e-4 -0.9775008 0.2453594 -3.3602e-4 -0.9694321 0.2529313 0 -0.9674842 0.4246125 0 -0.9053753 0.4607202 3.05822e-5 -0.8875455 0.600369 0 -0.7997232 0.7968708 0 -0.6041499 0.7744387 3.94869e-5 -0.632649 0.9789751 -4.01567e-5 -0.20398 0.9709287 0 -0.2393687 0.6002685 0.01615774 0.7996355 0.9789569 0.006047844 -0.2039772 0.9789564 0.006044805 -0.2039803 0.978733 0.03427791 -0.2022548 0.9787326 0.03427928 -0.2022564 0.9787326 0.07707238 -0.1901118 0.9787322 0.07707273 -0.1901133 0.9787319 0.1162452 -0.1690294 0.978735 0.1162293 -0.1690219 0.9787282 0.1499829 -0.1399866 0.9787326 0.149948 -0.1399934 0.9787321 0.1766051 -0.1043757 0.9787362 0.1765839 -0.1043724 0.9787316 0.1949568 -0.06384664 0.9787297 0.1949653 -0.06384938 0.9787191 0.2041964 -0.0203197 0.9787411 0.2040909 -0.02031958 0.9787289 0.2037298 0.02416366 0.9787387 0.2036828 0.02416408 0.9787325 0.1937144 0.06750941 0.9787332 0.1937099 0.06751281 0.9787266 0.1746386 0.1076833 0.978734 0.1745989 0.1076806 0.978731 0.1472989 0.1427887 0.9787351 0.1472704 0.1427907 0.9787325 0.1130394 0.1711869 0.9787346 0.1130264 0.1711831 0.9787335 0.07348871 0.1915206 0.9787303 0.07348328 0.1915393 0.9787321 0.0304681 0.2028678 0.9787334 0.03045976 0.2028625 0.9789153 -0.002631008 0.2042497 0.9709175 0.004838883 0.2393654 0.4245144 0.01829272 0.9052365 0.4606823 0.02304106 0.887266 0.4585537 0.1319735 0.8788126 0.4586027 0.1319594 0.8787891 0.4600441 0.2777176 0.8433461 0.8400917 0.1943013 0.5064516 0.4602934 0.3674628 0.8081467 0.4602488 0.4458397 0.7677227 0.8416242 0.2975862 0.4506788 0.4601283 0.5264838 0.7149105 0.4604059 0.594694 0.6590642 0.8332334 0.3969827 0.3848725 0.4599292 0.6628379 0.5908562 0.4585716 0.7563818 0.4664747 0.458576 0.7563793 0.4664747 0.4585527 0.8391658 0.2924559 0.4585771 0.839152 0.2924569 0.458551 0.8824819 0.1046747 0.4585738 0.8824702 0.1046729 0.4585826 0.8842818 -0.08802247 0.458621 0.8842617 -0.08802241 0.4586117 0.8444986 -0.2765819 0.4586054 0.8445039 -0.2765765 0.4585952 0.76503 -0.4521278 0.458603 0.7650208 -0.4521355 0.4586032 0.6495641 -0.6064236 0.4585559 0.6495867 -0.6064352 0.4598852 0.5332845 -0.7100094 0.8330137 0.3135118 -0.4558492 0.4604231 0.4530012 -0.7634137 0.4601403 0.3751068 -0.8047148 0.8415814 0.202937 -0.5005572 0.4602482 0.2856189 -0.8405912 0.4585762 0.1484994 -0.8761598 0.4585725 0.1485049 -0.8761607 0.4605543 0.02629584 -0.887242 0.4605664 0.026295 -0.8872357 0.7743892 0.01278132 0.6325804 0.7968389 0.01784306 0.6039284 0.7951453 0.09005141 0.5996956 0.795128 0.09005612 0.5997179 0.7951648 0.2172012 0.5661597 0.795126 0.2172267 0.5662043 0.7951793 0.3341429 0.5060026 0.7951247 0.3341829 0.5060617 0.7951309 0.4354164 0.4221134 0.7951393 0.4353948 0.4221192 0.7951492 0.5161477 0.3183228 0.7951575 0.5161378 0.318318 0.7951609 0.572621 0.1995604 0.7951547 0.5726282 0.1995649 0.7951623 0.6021753 0.07142865 0.7951371 0.602208 0.0714333 0.795138 0.6034461 -0.06006932 0.7951699 0.6034041 -0.06007039 0.7951524 0.576291 -0.1887367 0.7951469 0.5762955 -0.1887458 0.7951363 0.5220736 -0.3085407 0.7951471 0.5220584 -0.3085388 0.7951377 0.4432914 -0.4138222 0.7951663 0.4432389 -0.4138233 0.7951484 0.3436382 -0.4996518 0.7951485 0.3436444 -0.4996474 0.7951475 0.2278456 -0.5619848 0.7951534 0.2278405 -0.5619785 0.7951463 0.1013451 -0.5978893 0.7951492 0.1013383 -0.5978865 0.7967458 0.01790064 -0.6040495 0.7967444 0.01790559 -0.6040513 0.4245696 0 0.9053954 0.4245679 0 0.9053961 0.6002119 0 0.7998411 0.6003689 0 0.7997232 0.7744577 0 0.6326258 0.7744274 0 0.632663 0.9709306 0 0.2393612 0.9709287 0 0.2393687 0.6003383 -0.01115882 -0.7996683 0.9709169 0.004999399 0.2393651 0.9789723 -0.002848505 0.203974 0.978761 -0.02672654 0.2032551 0.9787603 -0.02673548 0.2032573 0.9787636 -0.0676769 0.1934986 0.9787612 -0.06768113 0.1935095 0.9787615 -0.1057791 0.1756041 0.9787622 -0.1057941 0.1755912 0.9787615 -0.1394183 0.1502951 0.9787595 -0.1394461 0.1502824 0.9787652 -0.1671642 0.1186374 0.9787585 -0.1672008 0.1186413 0.9787679 -0.1878595 0.08198863 0.9787564 -0.187922 0.08198368 0.9787624 -0.2006757 0.0418747 0.9787554 -0.2007088 0.04187816 0.9787663 -0.2049801 0 0.9787582 -0.2050188 0 0.9787608 -0.2006831 -0.04187721 0.9787591 -0.2006915 -0.0418756 0.9787639 -0.187882 -0.08198601 0.9787611 -0.187897 -0.08198601 0.9787645 -0.1671667 -0.1186392 0.9787592 -0.1671978 -0.1186399 0.9787635 -0.1394121 -0.1502884 0.9787604 -0.1394363 -0.1502852 0.9787618 -0.1057894 -0.1755959 0.9787603 -0.1057937 -0.1756016 0.9787604 -0.06769609 -0.1935082 0.9787618 -0.06768029 -0.1935063 0.9787619 -0.02672237 -0.2032516 0.978761 -0.02673786 -0.2032542 0.9789001 0.006926655 -0.2042219 0.9709233 -0.003335714 -0.2393681 0.4245816 -0.01263868 -0.9053016 0.4607805 -0.01979827 -0.8872934 0.4588577 -0.1158551 -0.8809241 0.4588559 -0.1158553 -0.8809249 0.4588575 -0.2933653 -0.8386815 0.4588779 -0.2933582 -0.8386729 0.4588873 -0.4584801 -0.7610641 0.4588783 -0.45848 -0.7610695 0.4588764 -0.6042833 -0.6513633 0.4588704 -0.604271 -0.6513791 0.4588661 -0.7245985 -0.5141975 0.4588824 -0.724588 -0.5141977 0.4601656 -0.7971767 -0.3908417 0.8207775 -0.5235737 -0.2284622 0.4604204 -0.8329635 -0.3068955 0.4602354 -0.8593927 -0.2227727 0.8231827 -0.5558054 -0.1159775 0.460384 -0.8776471 -0.1333497 0.4603143 -0.8865828 -0.04562717 0.8239911 -0.5666029 0 0.4603226 -0.8865783 0.04563039 0.4603887 -0.8776441 0.1333535 0.8231858 -0.555801 0.1159766 0.4602406 -0.8593903 0.2227708 0.6002748 -0.01115727 0.7997161 0.4604188 -0.8329651 0.3068938 0.8207716 -0.5235823 0.2284635 0.460191 -0.7971597 0.3908464 0.458868 -0.7246078 0.5141827 0.4588467 -0.724608 0.5142014 0.4588276 -0.6042985 0.6513835 0.458898 -0.6042647 0.6513655 0.4588497 -0.4585028 0.7610729 0.4589076 -0.4584743 0.7610552 0.4588985 -0.2933577 0.8386618 0.4588575 -0.2933602 0.8386834 0.458947 -0.1158491 0.8808783 0.4588797 -0.1158561 0.8809124 0.4607975 -0.01979446 0.8872846 0.4245845 -0.01263862 0.9053002 0.7743996 -0.008829355 -0.6326352 0.7969001 -0.01659792 -0.6038831 0.7953523 -0.07903856 -0.6009722 0.7953511 -0.07903414 -0.6009745 0.7953482 -0.200136 -0.57216 0.7953481 -0.2001189 -0.572166 0.7953386 -0.3128088 -0.5192179 0.7953408 -0.3127887 -0.5192267 0.7953358 -0.4122674 -0.4443833 0.7953674 -0.4122304 -0.4443614 0.7953476 -0.4943472 -0.350775 0.7953581 -0.4943161 -0.3507955 0.7953469 -0.5555688 -0.2424184 0.7953624 -0.5555485 -0.2424139 0.7953454 -0.5933762 -0.1238169 0.7953532 -0.5933653 -0.1238185 0.7953317 -0.6061745 0 0.7953602 -0.6061372 0 0.7953405 -0.5933824 0.1238182 0.7953605 -0.5933559 0.1238166 0.7953518 -0.5555631 0.2424159 0.79536 -0.5555514 0.2424152 0.7953295 -0.4943586 0.3508 0.7953714 -0.4943097 0.3507739 0.7953599 -0.412246 0.4443603 0.7953481 -0.4122476 0.44438 0.7953508 -0.3127902 0.5192104 0.79534 -0.3127803 0.5192331 0.7953323 -0.2001419 0.57218 0.7953548 -0.2001288 0.5721533 0.7953526 -0.07903528 0.6009724 0.7953535 -0.07903373 0.6009714 0.7968673 -0.008425712 0.6040958 0.7742972 -0.01845878 0.6325529 0 0.156434 -0.9876885 0 0.156435 -0.9876883 0 0.4539893 -0.8910071 0 0.4539915 -0.8910061 0 0.7071077 -0.7071059 0 0.7071068 -0.7071068 0 0.8910053 -0.4539929 0 0.8910068 -0.4539901 0 0.9876883 -0.1564351 0 0.9876882 -0.1564357 0 0.9876883 0.1564351 0 0.9876882 0.1564357 0 0.8910075 0.4539886 0 0.8910053 0.4539929 0 0.7071068 0.7071068 0 0.7071077 0.7071059 0 0.4539901 0.8910068 0 0.4539908 0.8910065 0 0.1564345 0.9876884 0 0.156434 0.9876885 1 9.71942e-7 0 1 -1.32854e-6 0 1 -9.73358e-7 0 1 1.28992e-6 0 1 -9.68491e-7 0 1 -3.03467e-7 0 1 -2.44676e-7 0 1 6.83078e-7 0 1 -9.6849e-7 0 1 1.36616e-6 0 1 -2.06003e-6 0 1 2.6199e-6 0 1 1.34881e-6 0 1 -1.35792e-6 0 1 -6.13453e-7 0 1 9.95747e-7 0 1 -6.2371e-7 0 1 -9.50917e-7 0 1 -5.45774e-6 0 1 1.45885e-7 0 1 1.39633e-6 0 1 2.08307e-6 0 1 7.74147e-7 0 1 3.16972e-7 0 1 -6.97377e-7 0 1 -2.97416e-7 0 1 -1.32675e-6 0 1 9.6764e-7 0 1 5.07619e-7 0 1 1.32052e-6 0 0 -0.156434 0.9876885 0 -0.1564345 0.9876884 0 -0.4539893 0.8910071 0 -0.4539915 0.8910061 0 -0.7071086 0.7071051 0 -0.7071059 0.7071077 0 -0.8910061 0.4539915 0 -0.8910068 0.4539901 0 -0.9876883 0.1564351 0 -0.9876882 0.1564357 0 -0.9876883 -0.1564351 0 -0.9876882 -0.1564357 0 -0.8910068 -0.4539901 0 -0.8910053 -0.4539929 0 -0.7071059 -0.7071077 0 -0.7071086 -0.7071051 0 -0.4539901 -0.8910068 0 -0.4539908 -0.8910065 0 -0.1564345 -0.9876884 0 -0.1564344 -0.9876884 0.1736532 0 -0.9848069 0.1736478 0 -0.9848079 0.1736479 0 -0.9848079 0.1736479 0 -0.9848078 0 -0.1564359 -0.9876881 0 -0.1564326 -0.9876887 0 -0.4539902 -0.8910068 0 -0.453989 -0.8910073 0 -0.7071068 -0.7071068 0 -0.7071083 -0.7071053 0 -0.8910073 -0.453989 0 -0.9876884 -0.1564345 0 -0.9876883 -0.1564353 0 -0.9876883 0.1564353 0 -0.9876884 0.1564345 0 -0.8910073 0.453989 0 -0.8910049 0.4539937 0 -0.7071083 0.7071053 0 -0.7071068 0.7071068 0 -0.4539982 0.8910027 0 -0.4539902 0.8910068 0 -0.1564354 0.9876883 0 -0.1564331 0.9876887 0 0.1564353 0.9876883 0 -0.6324473 -0.7746035 0 -0.4999982 -0.8660266 0 -0.3546033 -0.9350169 0 -0.2000285 -0.9797902 0 -0.2000276 -0.9797903 0 0.1205372 -0.9927088 0 0.2782182 -0.960518 0 0.2782164 -0.9605185 0 0.4286932 -0.9034503 0 0.428693 -0.9034503 0 0.6927273 -0.7211996 0 0.9485387 0.3166614 0 0.1205368 0.9927089 0 -0.04026567 0.999189 0 -0.2000266 0.9797906 0 -0.3546059 0.9350159 0 -0.3546033 0.9350169 0 -0.5000001 0.8660254 0 -0.4999966 0.8660274 0 -0.6324496 0.7746015 0 -0.6324446 0.7746057 0 -0.8451894 0.5344669 0 -0.8451883 0.5344687 0 -0.9709414 0.2393172 0 -0.2000257 -0.9797907 0 -0.04026538 -0.999189 0 0.1205363 -0.992709 0 0.120536 -0.9927091 0 0.2782168 -0.9605183 0 0.428691 -0.9034513 0 0.5680683 -0.8229814 0 0.5680633 -0.8229849 0 -0.9199771 -0.3919723 0 -0.8451912 -0.5344641 0 -0.7485102 -0.6631234 0 -0.6324453 -0.774605 0 -0.6324434 -0.7746067 0 -0.354602 -0.9350174 0 -0.200026 -0.9797907 0 -0.0402649 -0.9991891 0 -0.04026472 -0.9991891 0 0.1205368 -0.9927089 0 0.2782143 -0.9605191 0 0.4286947 -0.9034495 0 0.5680655 -0.8229834 0 0.5680629 -0.8229853 0 0.9870507 -0.1604091 0 0.98705 -0.1604129 0 -0.996757 -0.08047103 0 -0.9967578 -0.08046251 0 -0.9709413 -0.2393182 0 -0.9709448 -0.2393037 0 -0.9199771 -0.391972 0 -0.9199818 -0.3919613 0 -0.8451806 -0.5344808 0 -0.8451926 -0.5344619 0 -0.748504 -0.6631304 0 -0.7485224 -0.6631096 0 -0.6324393 -0.7746099 0 -0.6324493 -0.7746018 0 -0.4999998 -0.8660255 0 -0.5000021 -0.8660242 0 -0.3545962 -0.9350196 0 -0.3546119 -0.9350137 0 -0.200018 -0.9797922 0 -0.2000371 -0.9797884 0 -0.04026371 -0.9991891 0 -0.04026603 -0.999189 0 0.1205317 -0.9927095 0 0.120542 -0.9927083 0 0.2782171 -0.9605183 0 0.278215 -0.9605189 0 0.4286899 -0.9034518 0 0.428708 -0.9034432 0 0.5680526 -0.8229923 0 0.568068 -0.8229817 0 0.6927196 -0.721207 0 0.6927305 -0.7211966 0 0.7994434 -0.6007416 0 0.7994409 -0.6007449 0 0.9870498 -0.1604144 0 0.9870508 -0.1604078 0 0.9870508 0.1604078 0 0.9485338 0.3166759 0 0.8854591 0.4647175 0 0.7994409 0.6007449 0 0.5680538 0.8229914 0 0.5680668 0.8229825 0 0.278215 0.9605189 0 0.2782171 0.9605183 0 0.1205317 0.9927095 0 0.120542 0.9927083 0 -0.04026472 0.9991891 0 -0.04026764 0.999189 0 -0.2000281 0.9797902 0 -0.3545936 0.9350206 0 -0.5000021 0.8660242 0 -0.4999998 0.8660255 0 -0.6324368 0.7746121 0 -0.6324519 0.7745997 0 -0.7485224 0.6631096 0 -0.8451806 0.5344808 0 -0.8451926 0.5344619 0 -0.97094 0.2393231 0 -0.9709461 0.2392987 0 -0.9967575 0.08046585 0 -0.9967573 0.0804677 0 -0.7071012 0.7071124 0 -0.707117 0.7070966 0 -0.9063081 0.4226178 0 -0.996195 0.08715325 0 -0.9961946 -0.08715862 0 -0.996195 -0.08715325 0 -0.9659236 -0.2588278 0 -0.9659277 -0.2588123 0 -0.9063081 -0.4226178 0 -0.9063082 -0.4226176 0 -0.7071015 -0.7071121 0 -0.7071167 -0.7070969 0 -0.5735833 -0.8191474 0 -0.4226209 -0.9063066 0 -0.2588116 -0.9659279 0 0.4226206 -0.9063068 0 -0.9967575 -0.08046585 0 -0.9709388 -0.239328 0 -0.8451903 -0.5344656 0 -0.6324368 -0.7746121 0 -0.6324519 -0.7745997 0 -0.3545944 -0.9350202 0 -0.3546128 -0.9350134 0 -0.2000381 -0.9797882 0 -0.04026341 -0.9991891 0 -0.04026621 -0.9991891 0 0.4286888 -0.9034522 0 0.692717 -0.7212095 0 0.7994421 -0.6007432 0 0.9485346 -0.3166736 0 0.9485388 -0.316661 0 0.9870489 0.1604195 0 0.9485346 0.3166736 0 0.9485388 0.316661 0 0.8854479 0.4647387 0 0.7994421 0.6007432 0 0.6927196 0.721207 0 0.6927279 0.7211991 0 0.4286909 0.9034512 0 0.4287059 0.9034441 0 -0.0402649 0.9991891 0 -0.04026734 0.999189 0 -0.3545944 0.9350202 0 -0.3546128 0.9350134 0 -0.6324393 0.7746099 0 -0.6324493 0.7746018 0 -0.7485066 0.6631274 0 -0.8451783 0.5344846 0 -0.9199771 0.391972 0 -0.9199836 0.3919569 0 -0.9709436 0.2393086 0 -0.9967578 0.08046251 0 -0.9967581 -0.08045732 0 -0.9709419 -0.2393156 0 -0.9709385 -0.2393292 0 -0.8451827 -0.5344776 0 -0.845196 -0.5344566 0 -0.7485069 -0.6631271 0 -0.7485195 -0.6631127 0 -0.6324361 -0.7746126 0 -0.4999918 -0.8660303 0 -0.5000166 -0.8660159 0 -0.3546035 -0.9350168 0 -0.3546162 -0.9350119 0 -0.2000229 -0.9797913 0 -0.04026621 -0.9991891 0 -0.04026591 -0.9991891 0 0.1205347 -0.9927092 0 0.120541 -0.9927085 0 0.2782236 -0.9605164 0 0.2782198 -0.9605175 0 0.4286805 -0.9034562 0 0.428707 -0.9034437 0 0.5680478 -0.8229956 0 0.5680871 -0.8229684 0 0.6927189 -0.7212078 0 0.692734 -0.7211933 0 0.7994468 -0.600737 0 0.8854551 -0.4647248 0 0.8854585 -0.4647186 0 0.9485347 -0.3166733 0 0.1205339 0.9927092 0 0.1205419 0.9927083 0 -0.04026591 0.9991891 0 -0.04026621 0.9991891 0 -0.2000229 0.9797913 0 -0.3546035 0.9350168 0 -0.3546162 0.9350119 0 -0.4999949 0.8660284 0 -0.7485069 0.6631271 0 -0.7485195 0.6631127 0 -0.9709419 0.2393156 0 -0.0871554 0.9961948 0 -0.4226171 0.9063084 0 -0.7071062 0.7071074 0 -0.9063076 0.4226186 0 -0.9063085 0.422617 0 -0.9659258 0.2588191 0 -0.9961948 0.08715587 0 -0.9961948 0.08715564 0 -0.9961948 -0.08715564 0 -0.9961948 -0.08715587 0 -0.9659258 -0.2588191 0 -0.9659258 -0.2588195 0 -0.9063074 -0.4226193 0 -0.9063088 -0.4226163 0 -0.8191519 -0.5735767 0 -0.7071062 -0.7071074 0 -0.5735777 -0.8191512 0 -0.4226171 -0.9063084 0 -0.4226174 -0.9063082 0 -0.2588191 -0.9659259 0 0.08715528 -0.9961948 0 0.4226168 -0.9063085 0 -0.9967576 -0.08046346 0 -0.9709415 -0.2393173 0 -0.8451917 -0.5344634 0 -0.8451874 -0.5344702 0 -0.6324433 -0.7746068 0 -0.6324453 -0.774605 0 -0.4999985 -0.8660264 0 -0.3546058 -0.9350159 0 -0.354603 -0.935017 0 -0.2000275 -0.9797904 0 -0.04026472 -0.9991891 0 -0.04026442 -0.9991891 0 0.1205366 -0.9927089 0 0.1205376 -0.9927088 0 0.2782177 -0.960518 0 0.4286894 -0.9034519 0 0.4286927 -0.9034504 0 0.692722 -0.7212048 0 0.6927261 -0.7212008 0 0.8854547 -0.4647258 0 0.9485393 -0.3166598 0 0.9485359 -0.3166698 0 0.9485367 0.3166673 0 0.9485384 0.3166623 0 0.7994431 0.6007419 0 0.6927261 0.7212008 0 0.692722 0.7212048 0 0.4286927 0.9034504 0 0.4286894 0.9034519 0 0.1205366 0.9927089 0 -0.04026544 0.9991891 0 -0.2000275 0.9797904 0 -0.354603 0.935017 0 -0.3546058 0.9350159 0 -0.5000003 0.8660253 0 -0.4999985 0.8660264 0 -0.6324453 0.774605 0 -0.6324458 0.7746047 0 -0.7485119 0.6631215 0 -0.7485135 0.6631196 0 -0.8451899 0.5344664 0 -0.8451893 0.5344672 0 -0.919979 0.3919677 0 -0.9199804 0.3919647 0 -0.9709415 0.2393173 0 -0.9967577 0.08046281 0 -0.9967574 0.08046698 0 -0.9967576 -0.08046346 0 -0.9709419 -0.2393156 0 -0.9709392 -0.2393266 0 -0.9199824 -0.3919597 0 -0.9199792 -0.3919674 0 -0.8451966 -0.5344557 0 -0.8451861 -0.5344723 0 -0.7485065 -0.6631276 0 -0.748509 -0.6631246 0 -0.5000004 -0.8660252 0 -0.5000048 -0.8660227 0 -0.3546032 -0.9350169 0 -0.3546071 -0.9350154 0 -0.2000265 -0.9797906 0 -0.2000251 -0.9797909 0 -0.04026532 -0.999189 0 -0.04026579 -0.9991891 0 0.1205369 -0.9927089 0 0.1205355 -0.9927091 0 0.2782167 -0.9605184 0 0.4286957 -0.9034489 0 0.4286912 -0.9034512 0 0.5680668 -0.8229825 0 0.5680641 -0.8229843 0 0.6927219 -0.7212049 0 0.7994412 -0.6007445 0 0.7994461 -0.600738 0 0.8854565 -0.4647222 0 0.8854553 -0.4647246 0 0.9485349 -0.3166729 0 0.9485366 -0.3166677 0 0.9870501 -0.1604123 0 0.9485349 0.3166729 0 0.8854565 0.4647222 0 0.8854553 0.4647246 0 0.5680641 0.8229843 0 0.2782167 0.9605184 0 0.1205369 0.9927089 0 0.1205355 0.9927091 0 -0.04026579 0.9991891 0 -0.04026532 0.999189 0 -0.2000265 0.9797906 0 -0.2000251 0.9797909 0 -0.3546071 0.9350154 0 -0.3546032 0.9350169 0 -0.5000004 0.8660252 0 -0.6324452 0.7746051 0 -0.7485065 0.6631276 0 -0.748509 0.6631246 0 -0.9199833 0.3919576 0 -0.9709392 0.2393266 0 -0.9709419 0.2393156 0 -0.996757 -0.08047109 0 -0.9709424 -0.2393134 0 -0.919979 -0.3919677 0 -0.9199789 -0.3919683 0 -0.8451893 -0.5344672 0 -0.7485098 -0.6631238 0 -0.7485135 -0.6631196 0 -0.5000003 -0.8660253 0 -0.3546044 -0.9350165 0 -0.2000266 -0.9797905 0 -0.0402646 -0.9991891 0 0.2782166 -0.9605184 0 0.2782147 -0.960519 0 0.4286919 -0.9034509 0 0.5680665 -0.8229827 0 0.5680637 -0.8229847 0 0.6927241 -0.7212028 0 0.6927251 -0.7212018 0 0.7994431 -0.6007419 0 0.8854565 -0.4647225 0 0.9485366 -0.3166679 0 0.9870502 -0.1604114 0 0.9870502 0.1604114 0 0.9870505 0.1604101 0 0.8854565 0.4647225 0 0.6927241 0.7212028 0 0.5680665 0.8229827 0 0.5680637 0.8229847 0 0.4286919 0.9034509 0 0.2782186 0.9605178 0 0.2782166 0.9605184 0 -0.04026561 0.999189 0 -0.04026579 0.9991891 0 -0.2000246 0.9797909 0 -0.3546044 0.9350165 0 -0.6324433 0.7746068 0 -0.6324478 0.7746031 0 -0.7485098 0.6631238 0 -0.8451917 0.5344634 0 -0.9199776 0.3919713 0 -0.9709424 0.2393134 0 -0.996757 0.08047109 0 0.1564331 -0.9876886 0 -0.1564246 0.98769 0 -0.4539859 0.8910089 0 -0.7071081 0.7071055 0 -0.7071083 0.7071053 0 -0.7071083 -0.7071053 0 -0.7071081 -0.7071055 1 -1.21712e-6 0 1 -1.63175e-6 0 1 -1.00234e-6 0 1 -1.34379e-6 0 1 5.50017e-6 0 1 2.25957e-7 0 1 -3.70393e-7 0 1 -1.1239e-5 0 1 -1.79643e-6 0 1 2.62236e-6 0 1 1.1239e-5 0 1 2.74997e-6 0 1 1.24206e-7 0 1 -2.99489e-7 0 1 0 0 1 -1.31092e-6 0 1 1.34379e-6 0 1 -2.41631e-7 0 1 2.41631e-7 0 1 1.31092e-6 0 1 1.00234e-6 0 1 1.87565e-7 0 1 -1.87564e-7 0 1 -1.67254e-6 0 1 1.63174e-6 0 1 -2.52413e-7 0 1 2.52412e-7 0 1 1.67254e-6 0 1 1.21712e-6 0 1 1.93996e-7 0 1 -1.93997e-7 0 1 -6.30977e-7 0 1 1.41895e-6 0 1 -6.30977e-7 0 1 1.92048e-7 0 0 1 1.4951e-4 0 0.9999998 -6.71919e-4 0 1 -1.60908e-6 0 1 -6.77506e-5 0 1 -5.96935e-6 0 0.9999998 -6.72006e-4 0 1 2.8207e-5 0 1 -5.7285e-5 0 0.9999998 6.30658e-4 0 1 -7.27991e-5 0 1 1.99347e-4 0 1 1.54219e-4 0 1 -3.39352e-5 0 1 5.39022e-5 0 1 1.46578e-6 0 1 1.60908e-6 0 -1 5.82708e-5 0 -1 -9.96885e-5 0 -1 9.96847e-5 0 -1 1.54416e-4 0 -1 -1.22271e-6 0 -1 -1.45677e-5 0 -1 -4.97611e-6 0 -1 1.25991e-5 0 -1 1.26337e-5 0 -1 -2.03614e-5 0 -1 2.38303e-5 0 -1 -2.01135e-6 0 -1 5.82712e-5 0 -1 9.96885e-5 0 -1 -1.45676e-5 0 -1 -2.30355e-6 0 -1 1.15555e-6 0 -1 6.17056e-6 0.05844396 -0.08827513 -0.9943801 0 0.001208901 -0.9999994 0 0.9961917 -0.08719056 0 -0.9847756 0.1738312 0 -0.9847756 -0.1738312 0.8405948 -0.4725713 0.2647203 -0.0167191 0.5246611 -0.8511471 0 0.4759494 -0.8794728 0 0.6142119 -0.7891411 0 0.6142122 -0.789141 0 0.7357243 -0.6772812 0 0.8722226 -0.4891095 0 0.828854 -0.559465 -0.00365132 0.8371601 -0.5469458 0 0.872226 -0.4891031 0 0.9965845 0.08257877 0 -0.3246994 -0.9458173 0 -0.3246996 -0.9458172 0 -0.1645941 -0.9863615 0 0.1645941 -0.9863615 0 0.3246994 -0.9458173 0 0.3246996 -0.9458172 0 0.4526447 -0.8916911 0 0.4526526 -0.891687 0.3303309 -0.0634917 -0.9417273 0 -0.2601822 -0.9655597 0 -0.1725865 -0.9849944 0 -0.08843123 -0.9960824 0 0.00121355 -0.9999993 0 0.8227667 -0.5683794 -0.491585 0.6539695 -0.5750375 0 0.7436457 -0.668574 0 0.6842851 -0.7292147 -0.7022082 0.4701444 -0.5346663 0 0.5684458 -0.8227209 0.7660126 -0.3372955 0.5472263 0.7659099 -0.3360242 0.5481513 1 6.38103e-5 0 0 0.8634849 -0.5043749 0 -0.3247007 -0.9458169 0 -0.324698 -0.9458178 0 -0.1645951 -0.9863612 0 -0.164595 -0.9863613 0 0.468261 -0.8835903 0 0.9961625 -0.08752268 0 0.822757 -0.5683935 -0.4915264 0.6539968 -0.5750566 0 0.6842964 -0.7292039 -0.7021709 0.4701626 -0.5346993 0.7657958 -0.3373148 0.5475179 0 -0.9967574 -0.08046644 0 -0.6324421 -0.7746078 0 -0.3546056 -0.935016 0 -0.3546041 -0.9350166 0 -0.2000249 -0.9797909 0 -0.06037861 -0.9981756 0 -0.06037855 -0.9981756 0 0.02013701 -0.9997973 0 0.02013683 -0.9997973 0 0.1205372 -0.9927089 0 0.2782167 -0.9605184 0 0.6927231 -0.7212038 0 0.9870504 0.1604108 0 0.9870502 0.1604115 0 0.9485368 0.3166672 0 0.9485363 0.3166685 0 0.8854561 0.4647232 0 0.8854561 0.4647232 0 0.7994425 0.6007426 0 0.7994439 0.6007409 0 0.1205372 0.9927089 0 0.1205362 0.992709 0 0.02013927 0.9997972 0 0.02013915 0.9997972 0 -0.06037896 0.9981756 0 -0.06037819 0.9981756 0 -0.845188 0.5344692 0 -0.9709417 0.2393163 0 -0.9967574 0.08046644 0 -0.996757 -0.08047097 0 -0.9709433 -0.2393099 0 0.9870522 -0.1603997 0 0.9870492 -0.1604181 0 0.9870493 0.1604173 0 0.8854551 0.464725 0 0.6927264 0.7212005 0 0.4286907 0.9034513 0 0.02013963 0.9997972 0 0.0201388 0.9997973 1 7.07094e-6 0 1 -2.79359e-7 0 1 1.304e-6 0 1 -1.11717e-5 0 1 -4.61493e-6 0 1 -7.00537e-7 0 1 1.58609e-6 0 1 1.7518e-5 0 1 3.35057e-6 0 1 -2.40013e-6 0 1 -4.90655e-6 0 1 1.94574e-6 0 1 2.15152e-7 0 1 2.0635e-5 0 1 1.15903e-6 0 1 -1.09719e-6 0 1 -1.01301e-5 0 1 -6.92342e-6 0 1 9.23054e-6 0 1 9.22969e-6 0 1 1.8698e-6 0 1 6.42175e-7 0 1 -1.08962e-6 0 1 1.34414e-6 0 1 -3.81175e-7 0 1 1.7259e-6 0 1 1.68214e-6 0 1 5.44658e-7 0 1 -3.65728e-7 0 1 0 0 1 -1.89456e-7 0 1 1.00693e-5 0 1 -2.41292e-5 0 1 -1.53948e-6 0 1 3.58704e-6 0 1 1.7917e-6 0 1 -3.34699e-6 0 1 -2.52222e-6 0 1 1.5001e-6 0 1 7.82502e-7 0 1 -4.02084e-7 0 1 -2.48143e-6 0 1 7.46922e-6 0 1 -2.60552e-6 0 1 1.45586e-7 0 1 -1.72297e-5 0 1 2.6588e-5 0 1 2.90271e-5 0 1 0 0 1 7.00539e-7 0 1 3.87881e-7 0 1 7.31405e-7 0 1 4.84393e-6 0 1 1.13774e-6 0 1 3.62472e-6 0 1 1.30386e-6 0 1 -6.01569e-6 0 1 -5.43709e-7 0 1 9.0675e-6 0 1 -1.2969e-6 0 1 3.05295e-7 0 1 1.26334e-6 0 1 -1.65136e-6 0 1 4.57725e-6 0 1 -1.86782e-6 0 1 1.82938e-6 0 1 1.11321e-5 0 1 -5.33869e-5 0 1 1.08552e-6 0 1 -6.8157e-5 0 1 -9.73311e-7 0 1 -4.64956e-6 0 1 4.6684e-6 0 1 -5.90104e-6 0 1 -3.82116e-6 0 1 -4.7625e-7 0 1 -7.38073e-6 0 1 -1.60116e-6 0 1 2.78639e-7 0 1 -1.38109e-6 0 1 -2.54533e-7 0 1 -3.16407e-7 0 1 -1.2134e-6 0 1 -1.88753e-6 0 1 0 0 1 1.2637e-5 0 1 -1.2637e-5 0 1 -1.9835e-6 0 1 -6.1103e-5 0 1 1.73622e-6 0 1 4.33467e-6 0 1 -3.70722e-6 0 1 -5.23345e-7 0 1 1.12148e-5 0 1 0 0 1 2.0895e-6 0 1 3.07435e-6 0 1 2.08821e-5 0 1 -1.60843e-6 0 1 -1.94898e-6 0 1 -1.23591e-5 0 1 1.42007e-5 0 1 -3.26626e-5 0 1 3.19737e-4 0 1 4.98558e-6 0 1 3.13227e-6 0 1 -4.04302e-5 0 1 1.35597e-5 0 1 1.43255e-6 0 1 -1.83567e-6 0 1 1.23257e-6 0 1 -2.11615e-7 0 5.58335e-6 0 1 -9.61981e-7 0 1 1.77652e-5 0 1 1.30029e-7 0 1 5.96483e-6 0 1 1.00433e-6 0 1 5.58532e-6 0 1 1.45462e-7 0 1 -4.80418e-6 0 1 2.24297e-6 0 1 -3.37089e-6 0 1 -8.72677e-6 0 1 -2.1197e-6 0 1 1.71622e-5 0 1 1.90972e-5 0 1 -6.41502e-6 0 1 -5.08502e-6 0 1 -8.45816e-7 0 1 4.78872e-7 0 1 -3.70043e-6 0 1 -9.60855e-6 0 1 4.72466e-6 0 1 -1.02656e-5 0 1 1.51567e-6 0 1 -1.98455e-6 0 1 3.64578e-5 0 1 -3.95687e-6 0 1 4.16181e-5 0 1 8.27801e-6 0 1 -1.73001e-6 0 1 -5.19588e-5 0 1 -5.80359e-7 0 1 -1.9186e-6 0 1 -1.00822e-6 0 1 9.62165e-7 0 1 -1.8898e-7 0 1 6.28071e-6 0 1 4.7735e-5 0 1 -1.83073e-5 0 1 8.6616e-6 0 1 1.62991e-6 0 1 -9.60781e-6 0 1 9.60799e-6 0 1 -4.81464e-5 0 1 -1.50479e-6 0 1 1.30461e-7 0 1 -9.6073e-6 0 1 4.02343e-7 0 1 -9.22048e-7 0 1 -9.60739e-6 0 1 9.60725e-6 0 1 -4.8151e-5 0 1 -3.69151e-6 0 1 -1.50485e-6 0 1 -4.64232e-5 0 -1 2.43008e-5 0 -1 4.14529e-5 0 -1 -1.41078e-5 0 -1 -1.31491e-5 0 -1 -8.76608e-5 0 -1 6.06558e-5 0 -1 -2.35372e-5 0 -1 -3.26411e-6 0 -1 -6.68505e-5 0 -1 7.15905e-5 0 -1 0.001536965 0 -0.9999988 -5.50082e-5 0 -1 7.17067e-5 0 -1 -4.15379e-6 0 -1 1.02258e-5 0 -1 1.59402e-6 0 -1 -4.80326e-6 0 -1 4.29851e-7 0 -1 -5.33795e-5 0 -1 2.78885e-5 0 -1 7.02893e-6 0 -1 -3.84786e-5 0 -1 3.6068e-7 0 -1 -1.32399e-4 0 -1 -2.06861e-5 0 -1 2.18048e-7 0 -1 -1.33469e-5 0 -1 4.44822e-6 0 -1 1.07417e-4 0 -1 -4.80372e-6 0 -1 -4.804e-6 0 -1 4.66457e-5 0 -1 1.29101e-5 0 -1 1.67802e-5 0 -1 -1.16098e-6 0 -1 4.10456e-5 0 -1 -1.03846e-5 0 -1 -1.04386e-6 0 -1 7.30037e-7 0 -1 -2.27855e-5 0 -1 4.70515e-5 0 -1 2.32072e-5 0 -1 1.74101e-6 0 -1 -1.77337e-5 0 -1 -1.23089e-6 0 -1 1.56558e-6 0 -1 2.78068e-5 0 -1 -9.54688e-5 0 -1 -1.92145e-5 0 -1 -4.80344e-6 0 -1 -1.70198e-5 0 -1 4.66688e-5 0 -1 -4.80367e-6 0 -1 -1.53907e-5 0 -1 2.1726e-4 0 -1 -3.36329e-5 0 -1 1.18533e-5 0 -1 -1.74429e-5 0 -1 0.0697565 -0.9975641 0 0.06975656 -0.997564 1.58701e-7 0.9996574 0 -0.02617698 0.9996573 3.62016e-7 -0.02617686 0.9681482 0 0.2503782 0.7253746 0 0.6883544 0.3007022 0 0.9537182 0.300711 0 0.9537154 0.9681481 0 -0.2503787 0.7253735 0 -0.6883556 0.3007066 0 -0.9537167 0.3007044 0 -0.9537174 0.7253746 0 -0.6883544 0 -0.9829731 -0.1837497 0 -0.3420183 -0.9396934 0 0.8660259 0.4999994 1 -3.50172e-6 0 0 -0.9967573 -0.0804671 0 -0.9967572 -0.08046913 0 -0.9709404 -0.2393215 0 -0.9709417 -0.2393164 0 -0.919977 -0.3919724 0 -0.9199839 -0.3919562 0 -0.8451849 -0.5344741 0 -0.8452003 -0.5344496 0 -0.7485027 -0.6631317 0 -0.6324275 -0.7746197 0 -0.6324518 -0.7745997 0 -0.5000097 -0.8660199 0 -0.4999927 -0.8660297 0 -0.3546023 -0.9350173 0 -0.3546112 -0.9350138 0 -0.2000151 -0.9797928 0 -0.2000249 -0.9797908 0 -0.04026472 -0.9991891 0 -0.0402677 -0.999189 0 0.1205329 -0.9927093 0 0.1205384 -0.9927088 0 0.2782073 -0.9605211 0 0.2782289 -0.9605148 0 0.4286733 -0.9034596 0 0.4287102 -0.9034421 0 0.5680583 -0.8229883 0 0.5680736 -0.8229778 0 0.692713 -0.7212134 0 0.6927365 -0.7211908 0 0.8854475 -0.4647396 0 0.8854671 -0.4647024 0 0.948536 -0.3166694 0 0.9485406 -0.3166558 0 0.9870502 -0.160412 0 0.987049 0.1604192 0 0.9870514 0.1604049 0 0.948536 0.3166694 0 0.9485406 0.3166558 0 0.8854573 0.464721 0 0.7994341 0.6007539 0 0.7994531 0.6007286 0 0.692713 0.7212134 0 0.6927365 0.7211908 0 0.5680583 0.8229883 0 0.5680736 0.8229778 0 0.4286918 0.9034509 0 0.278208 0.9605209 0 0.2782282 0.960515 0 0.1205329 0.9927093 0 0.1205384 0.9927088 0 -0.04026484 0.9991891 0 -0.04026758 0.999189 0 -0.2000249 0.9797908 0 -0.200026 0.9797906 0 -0.3545914 0.9350214 0 -0.3546122 0.9350135 0 -0.5000097 0.8660199 0 -0.4999927 0.8660297 0 -0.6324383 0.7746108 0 -0.6324546 0.7745976 0 -0.7485027 0.6631317 0 -0.8451874 0.53447 0 -0.8451979 0.5344537 0 -0.919977 0.3919724 0 -0.9199839 0.3919562 0 -0.9709391 0.2393268 0 -0.970943 0.239311 0 -0.9967569 0.08047276 0 -0.9967576 0.08046352 0.9998493 0.007274031 0.01576727 0.9998493 0.008924245 0.01489442 0.9998474 0.01058036 0.01390743 0.999852 0.01156848 0.01274603 0.9998487 0.01421272 0.0100398 0.9998478 0.01519423 0.008588016 0.9998475 0.01603591 0.006922662 0.9998496 0.01652097 0.005286693 0.999848 0.01734697 0.001796603 0.9998484 0.01742047 0 0.9998478 0.01735842 -0.001797795 0.9998492 0.01700532 -0.003549635 0.9998475 0.0160253 -0.006938755 0.9998501 0.01504403 -0.008575916 0.999847 0.01321673 -0.01146137 0.999852 0.01156848 -0.01274603 0.9998463 0.009254753 -0.01489436 0.9998469 0.007602095 -0.01576203 0.9998497 0.005619883 -0.01640516 0.9998469 0.004293262 -0.01696681 0.9998485 0.002314805 -0.01725798 0.9802747 0.008248269 0.1974676 0.9885355 -3.79254e-4 0.150988 0.9983002 -0.0539751 0.02198725 0.999848 0.002312541 0.01728218 0.9998473 0.004297554 0.01694232 0.985463 0.007135033 -0.1697403 0.9765294 0.005154073 -0.215323 0.9935438 0.05422729 -0.09965044 0.9952764 0.08277779 -0.05072247 0.9973504 0.07185876 -0.01134407 0.960426 0.2784417 -0.007213056 0.9995872 0.001383125 -0.02869749 0.9980817 0.002572 -0.06185764 0.998076 0.008369386 -0.06143701 0.9980688 0.01469522 -0.06035542 0.9980745 0.0146448 -0.06027513 0.9980739 0.02647519 -0.05610221 0.9980745 0.03740149 -0.04948347 0.9980785 0.03733444 -0.0494523 0.998081 0.04662752 -0.04074656 0.998079 0.04667127 -0.04074537 0.9980811 0.05042934 -0.03593087 0.998076 0.05400115 -0.03046756 0.9980713 0.05691862 -0.02478373 0.9980783 0.05681639 -0.02472943 0.9980759 0.0590716 -0.01884567 0.9980738 0.06203812 0 0.9980769 0.06166434 0.006333947 0.9980723 0.06072479 0.01281732 0.9980779 0.05901932 0.01890295 0.9980857 0.0567094 0.02467906 0.9980757 0.05686235 0.02473163 0.9980776 0.0539785 0.03045481 0.9980794 0.04664707 0.04076361 0.9980733 0.04675561 0.04078853 0.9980764 0.04223436 0.04538619 0.9980717 0.03750377 0.04946005 0.9980916 0.02604991 0.0559864 0.9980739 0.02059179 0.05851864 0.998077 0.01429122 0.06031751 0.998076 0.01464843 0.06024914 0.9966566 0.0584805 0.0570591 0.9937258 0.00479865 -0.1117406 0.9937193 0.01492977 -0.1109005 0.9937222 0.04784178 -0.1011313 0.9937224 0.05801934 -0.09565436 0.9937287 0.08413994 -0.07364577 0.9937144 0.09142321 -0.06460261 0.9937074 0.09759789 -0.05495715 0.9937264 0.09743875 -0.05489677 0.993721 0.1066076 -0.03396344 0.9937133 0.109635 -0.02267342 0.9937215 0.1095311 -0.02281898 0.9937238 0.111278 -0.01141077 0.9937184 0.1113199 0.0114724 0.9937219 0.1112918 0.0114426 0.9937125 0.1066725 0.03401011 0.9937219 0.07631093 0.08181506 0.9937282 0.06747418 0.08917236 0.9937161 0.05802583 0.09571462 0.9938932 0.01285481 0.1095952 0.9895199 0.00594598 -0.144274 0.9869185 0.03280097 -0.1578481 0.987073 0.09674662 -0.1277776 0.9870835 0.1091729 -0.1172502 0.9870774 0.1469502 -0.06390482 0.9870684 0.1594519 0.01646482 0.987073 0.1092974 0.117222 0.987078 0.09669321 0.1277797 0.9815686 0.007982432 -0.1909437 0.9781321 0.06939381 -0.1960667 0.9781202 0.1078745 -0.1778878 0.9781308 0.1566872 -0.1367821 0.9781284 0.181235 -0.1020714 0.9781291 0.2036338 0.0423882 0.9755434 0.009211242 0.2196137 0.9677659 0.1519919 -0.2008176 -0.01571065 0.607971 -0.7938038 0 0.5036383 -0.8639147 0 5.72535e-6 -1 0 5.72496e-6 -1 0 0.8307305 -0.5566748 0 0.8307492 -0.556647 0 -0.8639945 -0.5035012 0 -0.8639753 0.5035342 0 0.788721 -0.6147513 0 0.8851002 -0.4654006 0 0.3713589 0.9284895 0 0.3713752 0.9284829 0 0.6653331 0.7465466 0 0.6653015 0.7465749 0 0.8167032 0.577058 0 0.9876947 0.1563942 0 0.7071376 0.707076 0 0.707076 0.7071376 0 0.4539756 0.8910141 0 0.1564338 0.9876885 0 0.156429 0.9876893 0 -0.1564385 0.9876878 0 -0.707153 0.7070606 0 -0.890989 0.454025 0 -0.9876918 0.1564133 0 -0.8910144 -0.4539752 0 -0.707076 -0.7071376 0 -0.4539756 -0.8910141 0 -0.1564338 -0.9876885 0 -0.1564385 -0.9876878 0 0.1564488 -0.9876862 0 0.4540245 -0.8909893 0 0.4539881 -0.8910079 0 0.7071376 -0.707076 0 0.707076 -0.7071376 0 0.8910144 -0.4539752 0 0.8909766 -0.4540495 0 0.9876947 -0.1563942 0 0.987687 -0.1564433 1 -1.05123e-6 0 1 0 0 1 -2.09641e-6 0 1 8.12816e-7 0 1 -1.13217e-6 0 1 5.16108e-6 0 1 -3.94176e-6 0 1 -8.93469e-7 0 1 -8.77118e-7 0 1 8.51516e-7 0 1 5.74728e-6 0 1 4.55558e-6 0 1 -2.35814e-6 0 1 3.72569e-7 0 1 -5.3634e-7 0 1 -3.6632e-6 0 1 4.19283e-6 0 1 -1.29709e-6 0 1 -4.55562e-6 0 1 1.81428e-6 0 1 -5.72015e-6 0 0.02617686 -0.9996573 0 0.02617686 -0.9996573 0 0.02617692 -0.9996573 0 0 1 0 0 1 0 0 -1 0 0 -1 1.21601e-7 -0.01745909 2.17997e-6 -0.9998476 -0.01745337 0 -0.9998477 -0.01745319 1.99895e-7 -0.9998478 -0.01745337 3.93662e-7 -0.9998478 -0.01745373 -4.21684e-7 -0.9998478 -0.0174517 2.65917e-7 -0.9998478 -0.01745027 0 -0.9998478 -0.01745343 -5.13289e-7 -0.9998478 -0.01745134 1.54943e-6 -0.9998477 -0.0174511 0 -0.9998478 -0.01745176 0 -0.9998477 -0.01745384 1.30384e-6 -0.9998477 -0.01745223 -3.01722e-7 -0.9998477 -0.01745223 0 -0.9998477 -0.01745223 -2.59057e-7 -0.9998477 -0.01745235 -2.35224e-7 -0.9998478 -0.01745182 -2.51149e-7 -0.9998478 -0.01745337 7.28195e-7 -0.9998478 -0.01745188 -2.16032e-7 -0.9998477 -0.01745235 3.75788e-7 -0.9998478 -0.01745229 1.29911e-6 -0.9998478 -0.01745331 -2.59496e-6 -0.9998478 -0.0174517 2.65917e-7 -0.9998478 -0.0174486 0 -0.9998478 -0.0174542 -4.43114e-7 -0.9998477 -0.01745229 -1.98593e-7 -0.9998477 -0.01745241 0 -0.9998478 -0.01745265 0 -0.9998478 -0.01745373 -4.21685e-7 -0.9998477 -0.01745128 1.54942e-6 -0.9998478 -0.01745182 -7.63945e-7 -0.9998477 -0.01745337 2.19414e-6 -0.9998477 -0.01745235 -1.02037e-6 -0.9998478 -0.01745223 -1.8607e-7 -0.9998478 -0.017452 -1.62054e-7 -0.9998478 -0.01745223 7.28193e-7 -0.9998478 -0.01745241 -2.16033e-7 -0.9998477 -0.01745223 3.75787e-7 -0.9998478 -0.01745367 -2.59498e-6 -0.9998477 -0.0174517 2.65917e-7 -0.9998478 -0.01744627 0 -0.9998479 -0.0174542 -4.43115e-7 -0.9998478 -0.0174517 -1.98592e-7 -0.9998478 -0.01745241 0 -0.9998478 -0.01745265 0 -0.9998478 -0.01745378 -4.21686e-7 -0.9998477 -0.01745092 1.54942e-6 -0.9998478 -0.01745343 2.19415e-6 -0.9998478 -0.01745229 -1.8607e-7 -0.9998478 -0.01745229 -1.62054e-7 -0.9998477 -0.01745283 7.28195e-7 -0.9998478 -0.017452 -2.16032e-7 -0.9998478 -0.01745235 3.75789e-7 -0.9998477 -0.01745235 1.29911e-6 -0.9998478 -0.01745361 -2.59497e-6 -0.9998477 -0.01745164 2.65916e-7 -0.9998478 -0.01745265 0 -0.9998478 -0.0174514 -7.63941e-7 -0.9998477 -0.01745355 2.19416e-6 -0.9998477 -0.01745229 -1.02037e-6 -0.9998477 -0.01745265 -1.62055e-7 -0.9998478 -0.01745229 7.28195e-7 -0.9998478 -0.017452 -2.16031e-7 -0.9998477 -0.01745241 3.7579e-7 -0.9998477 -0.01745355 -2.59497e-6 -0.9998478 -0.01745164 2.65916e-7 -0.9998478 -0.01744633 0 -0.9998479 -0.01745122 -1.98593e-7 -0.9998478 -0.01745253 0 -0.9998478 -0.01745301 0 -0.9998478 -0.01745355 -4.2168e-7 -0.9998477 -0.01745098 1.54943e-6 -0.9998478 -0.01745212 -7.63941e-7 -0.9998477 -0.01745367 2.19418e-6 -0.9998477 -0.01745229 -1.02036e-6 -0.9998477 -0.01745235 -1.86071e-7 -0.9998478 -0.01745247 -1.62056e-7 -0.9998478 -0.01745194 -2.16031e-7 -0.9998478 -0.01745241 3.75789e-7 -0.9998477 -0.01745343 -2.59494e-6 -0.9998477 -0.01745176 2.65918e-7 -0.9998477 -0.01744627 0 -0.9998478 -0.01745235 -4.43116e-7 -0.9998477 -0.01745235 0 -0.9998478 -0.01745301 0 -0.9998478 -0.01745367 -4.21683e-7 -0.9998477 -0.01745218 -7.63945e-7 -0.9998477 -0.01745325 2.19413e-6 -0.9998477 -0.01745235 -1.02037e-6 -0.9998477 -0.01745271 7.28191e-7 -0.9998477 -0.01745212 -2.16033e-7 -0.9998477 -0.01745223 3.75784e-7 -0.9998477 -0.01745241 1.29912e-6 -0.9998478 -0.01745367 -2.59498e-6 -0.9998478 -0.01744979 2.65917e-7 -0.9998478 -0.0174486 0 -0.9998478 -0.01745223 -4.43113e-7 -0.9998477 -0.01745241 -1.98594e-7 -0.9998477 -0.01745247 0 -0.9998478 -0.0174511 1.54944e-6 -0.9998478 -0.01745319 1.9458e-6 -0.9998477 -0.01745241 -8.61648e-7 -0.9998477 -0.01745229 -2.33433e-7 -0.9998478 -0.01745223 -1.62054e-7 -0.9998477 -0.01745325 7.28191e-7 -0.9998477 -0.01745176 -1.98593e-7 -0.9998477 -0.01745516 -4.46807e-7 -0.9998477 -0.01744681 0 -0.9998479 -0.01745212 1.45565e-7 -0.9998477 -0.01745301 3.12404e-7 -0.9998478 -0.01745164 0 -0.9998478 -0.01745247 0 -0.9998478 -0.01745378 -3.08101e-7 -0.9998477 -0.01745229 -7.6395e-7 -0.9998478 -0.01745313 2.19411e-6 -0.9998478 -0.01745235 -1.02037e-6 -0.9998477 -0.01745218 -1.86069e-7 -0.9998477 -0.01745229 3.38897e-7 -0.9998477 -0.01745378 -9.99245e-7 -0.9998478 -0.01745063 8.41274e-7 -0.9998478 -0.017452 0 -0.9998477 -0.01745229 0 -0.9998477 -0.01745235 0 -0.9998477 -0.01745307 0 -0.9998478 -0.01745253 0 -0.9998478 -0.01745253 0 -0.9998478 -0.01745301 0 -0.9998478 -0.01745271 0 -0.9998478 -0.01745271 0 -0.9998477 -0.01745283 1.48053e-7 -0.9998477 -0.01745218 1.45296e-7 -0.9998477 -0.01745235 0 -0.9998478 0 1 -1.99478e-7 0.02617686 0.9996573 0 0.02617692 0.9996573 0 0.02617686 0.9996573 0 0.02617686 0.9996573 0 -0.01745516 -2.07994e-6 -0.9998477 -0.01745223 0 -0.9998477 -0.01745516 -2.27218e-7 -0.9998477 -0.01744788 0 -0.9998479 -0.0174517 2.69611e-7 -0.9998478 -0.01745152 0 -0.9998477 -0.01745295 0 -0.9998477 -0.01745176 -3.78891e-7 -0.9998477 -0.0174539 7.53112e-7 -0.9998478 -0.01745235 -2.34851e-7 -0.9998477 -0.01745223 0 -0.9998478 -0.01745182 0 -0.9998477 -0.01745355 -2.59496e-6 -0.9998478 -0.01745283 -1.98593e-7 -0.9998477 -0.01745325 -4.46807e-7 -0.9998477 -0.01744902 0 -0.9998478 -0.0174508 3.12301e-7 -0.9998478 -0.01745098 1.32016e-6 -0.9998478 -0.01745384 -3.8858e-7 -0.9998477 -0.01745247 0 -0.9998477 -0.01745277 0 -0.9998477 -0.01745319 2.19415e-6 -0.9998477 -0.01745212 -1.62054e-7 -0.9998477 -0.01745253 1.25983e-6 -0.9998478 -0.01745283 8.95295e-7 -0.9998477 -0.01745223 0 -0.9998477 -0.01745223 2.5377e-7 -0.9998477 -0.01745271 -3.13567e-7 -0.9998477 -0.01745277 9.10429e-7 -0.9998477 -0.01745337 -1.31801e-6 -0.9998478 -0.01745223 3.77537e-7 -0.9998478 -0.01745188 -9.21904e-6 -0.9998478 -0.01745378 -2.33905e-6 -0.9998478 -0.01745235 -1.98593e-7 -0.9998478 -0.01745241 -1.02037e-6 -0.9998477 -0.01745241 -1.86071e-7 -0.9998478 -0.01744985 2.65917e-7 -0.9998478 -0.01745301 0 -0.9998478 -0.01745361 2.19417e-6 -0.9998477 -0.0174514 0 -0.9998477 -0.01745331 2.19414e-6 -0.9998478 -0.01745247 -1.02037e-6 -0.9998477 -0.01745212 -1.62053e-7 -0.9998478 -0.01745223 -2.16035e-7 -0.9998478 -0.01745229 3.75786e-7 -0.9998477 -0.01745283 -4.21683e-7 -0.9998477 -0.01745128 1.54942e-6 -0.9998478 -0.01745152 -7.63945e-7 -0.9998477 -0.01745349 2.19415e-6 -0.9998477 -0.01745241 -2.16033e-7 -0.9998478 -0.01745223 3.75786e-7 -0.9998477 -0.01745426 -4.43116e-7 -0.9998477 -0.01745176 -7.63941e-7 -0.9998477 -0.01745349 -2.59496e-6 -0.9998477 -0.01745283 -1.98593e-7 -0.9998477 -0.01745265 0 -0.9998478 -0.0174517 1.54943e-6 -0.9998477 -0.01745235 -1.62055e-7 -0.9998478 -0.01745337 7.28196e-7 -0.9998477 -0.01745176 -2.16032e-7 -0.9998477 -0.01745241 3.75788e-7 -0.9998478 -0.01745212 1.2991e-6 -0.9998478 -0.01745343 -2.59495e-6 -0.9998478 -0.01745253 0 -0.9998478 -0.01745277 0 -0.9998477 -0.01745265 0 -0.9998477 -0.01745295 0 -0.9998478 -0.01745259 -5.75417e-7 -0.9998478 -0.01745402 0 -0.9998478 -0.01745229 0 0.9998478 -0.017443 0 0.999848 -0.01746141 -1.70522e-7 0.9998476 -0.01744544 -3.51173e-7 0.9998478 -0.01746451 0 0.9998475 -0.01745164 2.42698e-7 0.9998477 -0.01745283 0 0.9998477 -0.01743489 1.06336e-6 0.9998481 -0.0174632 0 0.9998476 -0.01744252 1.18495e-5 0.999848 -0.01745659 -1.42806e-5 0.9998477 -0.01745223 1.96845e-5 0.9998478 -0.01745218 0 0.9998477 -0.01746183 -7.3334e-7 0.9998475 -0.01745301 0 0.9998478 -0.01738286 -2.99247e-6 0.999849 -0.01745128 5.02759e-7 0.9998478 -0.01744937 -1.5976e-6 0.9998478 -0.01745361 1.14352e-5 0.9998477 -0.01747155 0 0.9998475 -0.01745128 0 0.9998478 -0.01746177 6.77835e-6 0.9998475 -0.01745188 -4.39055e-7 0.9998477 -0.01746839 0 0.9998475 -0.01745748 -4.66682e-7 0.9998477 -0.0174598 -1.69845e-7 0.9998477 -0.01745259 8.23483e-7 0.9998477 -0.01745116 2.6937e-7 0.9998478 -0.01745891 4.72378e-6 0.9998476 -0.01744031 6.7166e-7 0.999848 -0.01745182 -8.27214e-7 0.9998477 -0.01745158 -3.15202e-5 0.9998477 -0.01745313 -5.39709e-6 0.9998478 -0.01743471 -6.84057e-5 0.999848 -0.01745396 -4.49297e-6 0.9998478 -0.01744419 0 0.999848 -0.01749062 2.48708e-7 0.9998471 -0.01738619 0 0.9998489 -0.01745271 3.13063e-6 0.9998477 -0.0174542 -6.09018e-6 0.9998478 -0.01745301 2.71027e-6 0.9998477 -0.0174514 1.27205e-6 0.9998478 -0.0174514 -1.42431e-6 0.9998478 -0.0174877 0 0.9998472 -0.01747334 0 0.9998474 -0.01745283 -4.15924e-7 0.9998477 -0.01746636 0 0.9998475 -0.01745033 -1.84101e-7 0.9998478 -0.0174492 -1.25112e-7 0.9998478 -0.01745861 5.41079e-7 0.9998477 -0.01744532 4.77787e-7 0.9998478 -0.01745939 -6.33416e-7 0.9998476 -0.01744198 0 0.999848 -0.01745218 0 0.9998478 -0.01745218 0 0.9998478 -0.0174551 0 0.9998477 -0.01744657 -5.47638e-7 0.9998478 -0.01746201 -5.46168e-7 0.9998476 -0.01745468 5.03585e-7 0.9998477 -0.01745235 0 0.9998477 -0.01746612 -1.12639e-6 0.9998475 -0.01744568 1.45611e-6 0.9998479 -0.0174455 -3.40733e-6 0.9998478 -0.01745831 -1.31147e-6 0.9998476 -0.01745855 -2.26815e-7 0.9998476 -0.0174306 0 0.9998481 -0.01751071 0 0.9998467 -0.0173853 0 0.999849 -0.0174598 1.47569e-7 0.9998477 -0.0174514 -1.19443e-6 0.9998477 -0.01746332 6.44742e-7 0.9998475 -0.01745039 -1.18099e-6 0.9998478 -0.01745545 0 0.9998477 -0.01745647 -5.51249e-7 0.9998477 -0.01745128 -1.27204e-6 0.9998478 -0.01745265 -2.71028e-6 0.9998478 -0.01745384 2.52482e-6 0.9998478 -0.01745444 -2.03272e-7 0.9998477 -0.01747393 -5.6067e-7 0.9998474 -0.01745539 3.46521e-7 0.9998477 -0.01745253 8.23478e-7 0.9998478 -0.01745337 -1.59761e-6 0.9998478 -0.01745301 0 0.9998478 -0.01744914 -1.28356e-7 0.9998478 -0.01744824 0 0.9998478 -0.01760601 5.76292e-6 0.9998451 -0.01743048 -5.57484e-7 0.9998482 -0.01744407 0 0.999848 -0.01746332 0 0.9998476 -0.01745265 0 0.9998477 -0.01744979 1.23125e-5 0.9998478 -0.01744496 -2.14731e-6 0.9998479 -0.01750791 2.48708e-7 0.9998468 -0.0174877 0 0.9998471 -0.01743543 0 0.9998481 -0.01747196 0 0.9998474 -0.01744478 -2.57529e-7 0.9998478 -0.01745128 0 0.9998478 -0.01745206 1.44448e-7 0.9998478 -0.01745212 0 0.9998477 -0.01745241 0 0.9998477 -0.01745349 0 0.9998477 -0.01745474 -6.04581e-7 0.9998478 -0.0174517 0 0.9998477 -0.01745331 5.67502e-7 0.9998477 -0.0174539 0 0.9998478 -0.01744949 -3.53258e-7 0.9998478 -0.01747447 2.03379e-6 0.9998474 -0.01744896 3.13065e-6 0.9998478 -0.01745563 -6.09013e-6 0.9998477 -0.01745259 2.71027e-6 0.9998477 -0.01745128 1.27204e-6 0.9998478 -0.01745152 -1.42432e-6 0.9998478 -0.01739078 5.91402e-5 0.9998489 -0.01751816 -1.11416e-5 0.9998466 -0.01745092 -1.32339e-6 0.9998478 -0.01745247 0 0.9998477 -0.01744735 -5.4764e-7 0.9998478 -0.01745533 -5.53742e-7 0.9998477 -0.01745057 -5.90475e-7 0.9998477 -0.017439 -5.92694e-7 0.999848 -0.01745361 -1.20315e-6 0.9998477 -0.01745945 -1.24411e-6 0.9998476 -0.01745188 0 0.9998477 -0.01745092 5.03589e-7 0.9998478 -0.01745527 1.01885e-6 0.9998477 -0.01744872 -2.16305e-6 0.9998478 -0.01745712 4.97088e-5 0.9998477 -0.01747709 1.4757e-7 0.9998473 -0.01745235 -4.7883e-7 0.9998478 -0.01744794 -2.92844e-7 0.9998478 -0.01746219 1.02809e-6 0.9998475 -0.01745516 -8.78513e-7 0.9998477 -0.01712852 -3.22406e-6 0.9998533 -0.01744544 0 0.9998479 -0.01749008 1.26061e-7 0.9998471 -0.01738983 0 0.9998488 -0.01745641 -5.51246e-7 0.9998477 -0.01745307 -2.71028e-6 0.9998478 -0.01745182 2.52486e-6 0.9998477 -0.0174551 -2.03268e-7 0.9998477 -0.01745796 1.25623e-6 0.9998477 -0.017493 0 0.9998471 -0.01727229 -6.32531e-6 0.9998509 -0.0174877 0 0.9998472 -0.01745283 -4.15924e-7 0.9998478 -0.01746273 -4.81921e-7 0.9998476 -0.01744836 0 0.9998478 -0.01745223 0 0.9998478 -0.01745212 0 0.9998477 -0.01746207 -5.46169e-7 0.9998476 -0.01746845 -3.33607e-7 0.9998474 -0.01743948 -6.69475e-7 0.999848 -0.01745522 -7.24885e-7 0.9998477 -0.01745206 0 0.9998478 -0.01745206 0 0.9998477 -0.01745283 0 0.9998478 -0.01745206 0 0.9998478 -0.01745206 3.69574e-7 0.9998477 -0.0174455 0 0.9998478 -0.01745909 0 0.9998476 -0.01744729 -1.60235e-6 0.9998479 -0.01745158 0 0.9998478 -0.01744401 0 0.9998479 -0.01749932 2.48708e-7 0.9998469 -0.0174511 0 0.9998478 -0.01744252 1.4757e-7 0.999848 -0.01745146 -1.19443e-6 0.9998477 -0.01746112 -5.51246e-7 0.9998476 -0.01745301 -2.71027e-6 0.9998477 -0.01744842 2.52482e-6 0.9998478 -0.01745736 -2.03272e-7 0.9998477 -0.01745283 3.13065e-6 0.9998477 -0.01745402 -6.09012e-6 0.9998478 -0.01745307 2.71028e-6 0.9998478 -0.01744747 -1.60237e-6 0.9998478 -0.01745158 0 0.9998478 -0.0174511 0 0.9998478 -0.01745116 1.47569e-7 0.9998478 -0.01745581 -1.19443e-6 0.9998477 -0.01745623 -5.51241e-7 0.9998477 -0.01745116 -1.27203e-6 0.9998478 -0.01745313 -2.71029e-6 0.9998478 -0.01744818 2.52479e-6 0.9998478 -0.01745742 -2.03273e-7 0.9998477 -0.01745361 -6.09024e-6 0.9998478 -0.01745295 2.71026e-6 0.9998478 -0.01745265 -1.42432e-6 0.9998477 -0.01745158 0 0.9998478 -0.01745474 5.03587e-7 0.9998478 -0.01744407 0 0.9998479 -0.01745975 1.47569e-7 0.9998476 -0.01744914 -1.19443e-6 0.9998478 -0.0174514 -1.27205e-6 0.9998478 -0.01745307 -2.71028e-6 0.9998478 -0.01745146 2.52481e-6 0.9998477 -0.01745444 -2.03272e-7 0.9998478 -0.01745581 -6.0902e-6 0.9998477 -0.01745259 2.71027e-6 0.9998478 -0.0174539 -1.42433e-6 0.9998477 -0.01745527 -1.60237e-6 0.9998477 -0.01744407 0 0.9998479 -0.01749068 2.48708e-7 0.9998471 -0.0174511 0 0.9998478 -0.01745975 1.47569e-7 0.9998477 -0.01745134 -1.27205e-6 0.9998478 -0.01745259 -2.71027e-6 0.9998478 -0.01744848 2.52483e-6 0.9998478 -0.01745826 -2.03271e-7 0.9998476 -0.01745724 -6.09015e-6 0.9998477 -0.01745134 1.27205e-6 0.9998478 -0.01744741 -1.60237e-6 0.9998479 -0.01745158 0 0.9998477 -0.01744407 0 0.9998479 -0.01741456 0 0.9998484 -0.0174598 1.4757e-7 0.9998477 -0.01744914 -1.19443e-6 0.9998478 -0.01745259 -2.71027e-6 0.9998477 -0.01744848 2.52483e-6 0.9998478 -0.01745742 -2.03272e-7 0.9998477 -0.01745289 3.13066e-6 0.9998477 -0.01745551 -6.09009e-6 0.9998477 -0.01745128 1.27204e-6 0.9998478 -0.01744669 -1.42432e-6 0.9998478 -0.01749062 2.48707e-7 0.9998471 -0.0174514 -1.19443e-6 0.9998477 -0.01745259 -2.71028e-6 0.9998478 -0.0174486 2.52485e-6 0.9998478 -0.0174582 -2.0327e-7 0.9998477 -0.01744908 3.13068e-6 0.9998478 -0.01745706 -6.09008e-6 0.9998477 -0.01745152 -1.42433e-6 0.9998477 -0.01744413 0 0.9998479 -0.01745116 0 0.9998478 -0.01745337 2.52486e-6 0.9998478 -0.01745438 -2.03271e-7 0.9998477 -0.0174539 -6.09006e-6 0.9998477 -0.01745522 -1.60237e-6 0.9998477 -0.01743513 0 0.999848 -0.01745975 1.47569e-7 0.9998477 -0.01745659 -5.51252e-7 0.9998477 -0.01745295 -2.71026e-6 0.9998478 -0.0174517 2.52485e-6 0.9998478 -0.01745539 -2.03272e-7 0.9998477 -0.01745307 -6.09006e-6 0.9998477 -0.01745313 2.71029e-6 0.9998478 -0.01745116 1.27203e-6 0.9998478 -0.01745599 -1.42431e-6 0.9998477 -0.01744103 0 0.999848 -0.01744359 0 0.999848 -0.01741403 0 0.9998484 -0.01748722 0 0.9998472 -0.01748722 0 0.9998471 -0.01741409 0 0.9998484 -0.01741409 0 0.9998484 -0.01748722 0 0.9998472 -0.01744329 0 0.999848 -0.01750183 0 0.9998469 -0.01743495 0 0.999848 -0.01747673 0 0.9998473 -0.01744633 0 0.9998479 -0.01739472 0 0.9998487 -0.01747757 0 0.9998473 -1 0 -1.22888e-6 -1 -1.42131e-7 -2.45775e-6 -0.2672252 -0.9636321 -0.002004027 -0.3110103 -0.9504066 1.37976e-5 -0.4171028 -0.9088593 -1.13884e-5 -0.4055655 -0.914066 -4.70691e-4 -0.6710331 -0.7414273 5.63847e-4 -0.6719286 -0.7406158 6.18919e-4 -0.5869373 -0.8096324 -4.32254e-4 -0.5978825 -0.8015838 0 -0.5020159 -0.8648584 0 -0.5562403 -0.8310156 0.003151893 -0.5080928 -0.8613021 5.85307e-4 -0.8106566 -0.5855215 8.71175e-4 -0.807746 -0.5895305 6.43971e-4 -0.7425993 -0.669736 -3.82501e-4 -0.7519334 -0.6592391 0 -0.7174319 -0.6966288 0 -0.9147721 -0.4039686 0.00118792 -0.9100617 -0.4144725 6.58393e-4 -0.8657369 -0.5004996 -3.21832e-4 -0.8728077 -0.4880643 0 -0.8469136 -0.5317306 0 -0.9788193 -0.2047207 0.001511931 -0.9748542 -0.2228425 6.59556e-4 -0.9509488 -0.3093485 -2.5241e-4 -0.95529 -0.2956706 0 -0.9390923 -0.343665 0 -0.9509486 0.309349 0 -0.9602652 0.279089 -2.34986e-4 -0.9788193 0.2047207 0.001482665 -0.9825456 0.1860216 5.89941e-4 -0.9926978 0.1206288 0 -0.9945108 0.1046344 0 -0.997678 0.06810915 -9.07183e-5 -0.9999986 0 0.001678287 -0.9997454 -0.0225563 6.46155e-4 -0.9945105 -0.1046367 -1.75891e-4 -0.9958877 -0.09059679 0 -0.9900427 -0.1407675 0 -0.7425994 0.6697359 0 -0.7563719 0.6541419 -3.59798e-4 -0.8106563 0.5855216 9.2719e-4 -0.8170486 0.5765687 4.36808e-4 -0.8517674 0.5239202 0 -0.8657361 0.5005008 0 -0.8784894 0.4777619 -3.22354e-4 -0.9147721 0.4039685 0.001194775 -0.920617 0.3904666 5.20734e-4 -0.9439625 0.3300528 0 -0.4152815 0.909693 -2.99823e-4 -0.5020161 0.8648583 4.55739e-4 -0.5064097 0.862293 2.44268e-4 -0.556316 0.830971 0 -0.5869379 0.809632 0 -0.5996414 0.8002688 -3.50576e-4 -0.6710328 0.7414274 6.80836e-4 -0.676814 0.736154 3.43154e-4 -0.7204999 0.6934551 0 0.9941378 -0.1081196 -4.98823e-4 0.9781013 -0.2081293 0 0.9520238 -0.3060244 0 0.9476528 -0.3193017 -9.29117e-4 0.9133551 -0.4071641 0 0.8674774 -0.4974768 0 0.8568565 -0.5155533 -0.001290619 0.8086073 -0.5883488 0 0.744936 -0.667136 0 0.7259951 -0.6876981 -0.001583456 0.6684377 -0.7437682 0 0.5897611 -0.8075779 0 0.5611858 -0.827688 -0.001807332 0.498991 -0.8666072 0 0.4087581 -0.9126429 0 0.3701376 -0.9289749 -0.001962482 0.3076869 -0.9514878 0 0.2098481 -0.977734 0 0.1617816 -0.9868245 -0.002048552 0.1029068 -0.9946911 0 0.0270791 -0.9996333 0 0.001747429 -0.9999984 4.84085e-4 -0.08115845 -0.9967007 -9.98866e-4 -0.1063816 -0.9943255 0 -0.2064307 -0.9784613 0 -0.4055655 0.914066 -8.68079e-6 -0.3110103 0.9504066 1.37976e-5 -0.2672252 0.9636321 -0.002004027 -0.2064307 0.9784613 0 -0.08115851 0.9967013 0 -0.1063815 0.9943245 -0.001450598 0.0270791 0.999633 9.36622e-4 0.001747429 0.9999985 0 0.1029068 0.9946911 0 0.1617816 0.9868245 -0.002048552 0.2098481 0.977734 0 0.3076869 0.9514878 0 0.3701376 0.9289749 -0.001962482 0.4087581 0.9126429 0 0.498991 0.8666072 0 0.5611858 0.827688 -0.001807332 0.5897611 0.8075779 0 0.6684377 0.7437682 0 0.7259951 0.6876981 -0.001583456 0.744936 0.667136 0 0.8086073 0.5883488 0 0.8568566 0.5155534 -0.001290559 0.8674774 0.4974768 0 0.9133551 0.4071641 0 0.9476527 0.3193017 -9.29116e-4 0.9520238 0.3060244 0 0.9781013 0.2081293 0 0.9941378 0.1081196 -4.98824e-4 0.9948692 0.1011697 0 0.9948692 -0.1011697 0 0.6792452 0.2131148 -0.7022878 0.6746811 0.2168738 -0.705529 0.6458714 0.2879222 -0.7070721 0.6246628 0.3467169 -0.6997027 0.6145699 0.3524406 -0.7057546 0.5718346 0.4160704 -0.7070295 0.5436816 0.4667339 -0.6975455 0.5276004 0.4724989 -0.7059622 0.4727493 0.5260264 -0.7069685 0.4396191 0.5679414 -0.6958287 0.4175857 0.5718123 -0.7061536 0.3529478 0.6129707 -0.706891 0.3168339 0.6459103 -0.6945619 0.2893541 0.6460474 -0.7063264 0.2176633 0.673099 -0.706796 0.1805235 0.697223 -0.6937516 0.1485158 0.6919725 -0.7064822 0.05377048 0.7060838 -0.7060839 0.07391816 0.7144891 -0.695731 -0.01775538 0.700652 -0.7132823 0.001236438 0.7075913 -0.7066208 -0.1073505 0.7007474 -0.7052865 -0.07786536 0.7277904 -0.6813648 -0.1460437 0.6922332 -0.7067422 -0.2462127 0.6647943 -0.7052857 -0.2265123 0.6921922 -0.6852461 -0.2868841 0.6465809 -0.7068456 -0.374995 0.6016241 -0.7052853 -0.3638171 0.6267734 -0.6890517 -0.4151302 0.5726374 -0.7069324 -0.4884247 0.5138222 -0.7052858 -0.4839125 0.5346767 -0.692784 -0.5251744 0.473647 -0.707001 -0.5818583 0.4049857 -0.7052855 -0.5817369 0.4201775 -0.6964432 -0.6122146 0.3539336 -0.7070533 -0.6514705 0.279567 -0.7052862 -0.6532498 0.2884787 -0.700032 -0.6724401 0.2187527 -0.7070867 -0.6944119 0.142705 -0.7052853 -0.6955935 0.1454839 -0.7035511 -0.7032282 0.07397592 -0.7071052 -0.7066528 0.03583812 -0.7066522 -0.6956835 0 -0.7183485 -0.7066528 -0.03583812 -0.7066522 -0.7032282 -0.07397592 -0.7071052 -0.6959189 -0.1430152 -0.7037355 -0.6937884 -0.1451058 -0.7054091 -0.6724401 -0.2187527 -0.7070867 -0.6554175 -0.2812609 -0.7009425 -0.6481771 -0.2862385 -0.7056444 -0.6122146 -0.3539336 -0.7070533 -0.5872905 -0.4087667 -0.6985698 -0.5742294 -0.4147549 -0.7058604 -0.5251744 -0.473647 -0.707001 -0.4942853 -0.5199871 -0.6966316 -0.4751931 -0.5250432 -0.7060603 -0.4151302 -0.5726374 -0.7069324 -0.3802593 -0.61007 -0.6951385 -0.3554127 -0.6122944 -0.7062418 -0.2868841 -0.6465809 -0.7068456 -0.2500178 -0.6750684 -0.6940993 -0.220135 -0.6727038 -0.7064065 -0.1460437 -0.6922332 -0.7067422 -0.1090942 -0.7121292 -0.6935203 -0.07528191 -0.7036436 -0.7065539 -0.01791608 -0.7069928 -0.7069938 0.00123018 -0.704033 -0.7101662 0.05422449 -0.7120462 -0.7000357 0.07280963 -0.7037734 -0.7066837 0.1776934 -0.6862925 -0.7052856 0.1532152 -0.7138676 -0.6833143 0.2176633 -0.673099 -0.706796 0.3122055 -0.6364746 -0.7052856 0.2969657 -0.6630422 -0.6871582 0.3529478 -0.6129707 -0.706891 0.4339358 -0.5605989 -0.7052862 0.4263532 -0.5838181 -0.6909265 0.4727493 -0.5260264 -0.7069685 0.5379021 -0.4617724 -0.7052855 0.5358883 -0.4799212 -0.6946218 0.5718346 -0.4160704 -0.7070295 0.6198444 -0.3440425 -0.7052856 0.62099 -0.3561224 -0.6982465 0.6458714 -0.2879222 -0.7070721 0.6764111 -0.2122256 -0.705286 0.6781962 -0.2180038 -0.7018007 0.6916291 -0.1471711 -0.7070996 0.7052855 -0.07171964 -0.7052862 0.7052865 -0.07172167 -0.7052851 0.7052866 0.07171976 -0.7052852 0.7052852 0.07172155 -0.7052863 0.6916291 0.1471711 -0.7070996 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.02616453 -0.9996577 0 0.02617686 -0.9996574 4.60833e-5 0.9778968 0.2090884 0 0.9961443 0.0874738 -0.006712436 0.9955089 0.09424984 -0.008902668 0.9902854 0.1390203 -0.002891838 0.9860667 0.1663508 0 0.9617026 0.2740045 -0.007059752 0.9601342 0.2793987 -0.008877515 0.9393267 0.3430241 0 0.8364772 0.5480017 4.13202e-7 0.860369 0.5096716 2.63611e-7 0.8906351 0.4546171 -0.009612858 0.8969007 0.4421995 -0.005376636 0.9228959 0.3850497 0 0.8028331 0.5961913 -0.003889262 0.7894892 0.6136799 -0.01019012 0.7520878 0.6590631 0 0.5888583 0.8082363 0 0.6238005 0.7815836 -5.9523e-4 0.6602907 0.7509317 -0.01085543 0.6869756 0.7266779 -0.001952528 0.7227157 0.6911455 -2.63498e-7 0.5544207 0.8322365 -2.14697e-7 0.5076352 0.8615062 -0.01065808 0.4847066 0.8746699 -0.003469765 0.2669729 0.9637041 0 0.3283417 0.9445352 -0.006710529 0.3369424 0.9414762 -0.009616613 0.3966591 0.9179661 5.61344e-7 0.4356692 0.9001069 3.33635e-7 0.2248179 0.9744009 0 0.1542744 0.987995 -0.008091866 0.1600299 0.9870597 -0.01018387 0.04332679 0.9990404 0.0064134 0.07146292 0.9974433 0 0.06730759 -0.9977323 0 0.04332715 -0.9990487 0.004965424 0.1514304 -0.9884344 -0.008135795 0.1542731 -0.9879864 -0.009104728 0.2204272 -0.9754034 0 0.431803 -0.9019681 2.11738e-7 0.3924083 -0.9197911 4.86797e-7 0.3369401 -0.9414699 -0.01029485 0.3195081 -0.9475712 -0.004836678 0.2624561 -0.964944 0 0.4777647 -0.8784853 -0.002147495 0.5076339 -0.8615041 -0.01088136 0.5516416 -0.8340814 5.80158e-5 0.6180869 -0.7861099 -5.27953e-5 0.6602924 -0.7509339 -0.01059389 0.6782488 -0.7348212 -0.004070222 0.8350036 -0.5502447 2.55164e-7 0.7987837 -0.6015978 -0.004977822 0.7894936 -0.6136831 -0.009647965 0.7493892 -0.6621298 0 0.71774 -0.6963113 0 0.859745 -0.5107235 2.74219e-7 0.8906369 -0.4546177 -0.009420871 0.8964881 -0.4430351 -0.005391299 0.9786134 -0.2057079 0 0.9631488 -0.2689075 -0.005779564 0.9601313 -0.2793979 -0.009213626 0.9399588 -0.3412882 0 0.9230054 -0.3847873 0 0.999782 0.02088028 0 0.999773 -0.02131015 0 0.9955203 -0.09425044 -0.007502138 0.9960839 -0.08787304 -0.009755313 0.9870473 -0.1604294 0 0.02617698 0.9996574 4.62334e-5 0.02616453 0.9996577 0 -0.7865747 -0.6174613 -0.006480872 -0.7865751 -0.6174607 -0.006482481 -0.9913554 0 -0.1312047 -0.9949389 -0.00169152 -0.1004674 -0.9761525 -1.7266e-4 -0.2170863 -0.9689631 1.41048e-7 -0.2472057 -0.8881305 1.09479e-4 -0.4595915 -0.9230883 -0.001746356 -0.3845843 -0.9260985 -0.00148952 -0.3772791 -0.9525747 -6.01339e-7 -0.3043047 -0.8287719 -1.27762e-4 -0.5595865 -0.7786504 -0.00236535 -0.6274536 -0.8258156 6.63056e-4 -0.5639401 -0.7231524 -5.38559e-4 -0.6906883 -0.7434861 4.05583e-4 -0.6687512 -0.5179651 -0.003403186 -0.8553949 -0.6804337 0.003471672 -0.7328016 -0.5706005 -0.00297755 -0.8212224 -0.6427652 -3.71948e-4 -0.7660632 -0.4721444 -2.93899e-6 -0.8815214 -0.5275446 4.26736e-6 -0.8495274 -0.6112201 0.001651406 -0.791459 -0.3918334 -9.52952e-4 -0.9200358 -0.3204855 -0.003907144 -0.9472454 -0.4685171 0.003396153 -0.883448 -0.2808299 -0.003399789 -0.9597516 -0.3877758 0.001746773 -0.9217522 -0.2137608 0 -0.9768861 -0.2734706 0 -0.9618804 -0.3117166 3.71996e-4 -0.9501751 -0.01297545 0 -0.9999158 -0.09936028 7.59104e-4 -0.9950513 -0.007306456 -0.002683639 -0.9999697 -0.2050181 0.003634333 -0.9787514 -0.08600544 -0.002561986 -0.9962914 -0.1630962 -8.48046e-4 -0.9866098 0.008237183 0 -0.9999661 0.008237063 0 -0.9999661 0.7587609 0.6513392 0.006251215 0.7587615 0.6513386 0.006259918 -1 5.1966e-7 0 -1 0 0 -1 0 0 -1 0 0 -1 -1.36941e-7 0 -1 0 0 -1 -5.59403e-7 0 -1 0 0 -1 -7.45374e-7 0 -1 0 0 -1 0 0 -1 0 0 -1 -2.3681e-7 0 -1 0 0 -1 -1.33681e-7 0 -1 -2.69006e-7 0 -1 2.56887e-7 0 -1 -1.06945e-6 0 -1 3.51236e-6 0 -1 -4.61899e-7 0 1 0 -2.58196e-4 1 1.02591e-6 -2.86635e-4 1 1.96827e-5 -2.86638e-4 1 -1.6237e-4 2.85038e-6 1 -2.34706e-6 0 0 1 -4.84097e-6 0.1454839 -0.2814194 -0.9484923 0.04082989 -0.1923073 -0.9804851 0.02413398 -0.2170128 -0.9758704 0.008236944 -0.2043918 -0.9788545 0.05649197 -0.2248052 -0.9727649 0.05644613 -0.3869813 -0.9203584 0.05644613 -0.3869811 -0.9203583 0.05644673 -0.5458582 -0.8359742 0.05644536 -0.5458561 -0.8359755 0.05644547 -0.6870113 -0.7244511 0.05644428 -0.6870115 -0.724451 0.05644428 -0.8058621 -0.5894069 0.05644559 -0.8058613 -0.5894079 0.05644589 -0.8985462 -0.4352341 0.05644398 -0.898549 -0.4352284 0.05644398 -0.9620648 -0.2669184 0.05644625 -0.9620634 -0.266923 0.0564469 -0.9943458 -0.08994573 0.05644416 -0.9943459 -0.08994621 0.05644422 -0.994346 0.08994579 0.05644673 -0.9943458 0.08994626 0.05644661 -0.9620634 0.2669228 0.05644434 -0.9620648 0.2669187 0.05644476 -0.8985472 0.435232 0.05644541 -0.8985481 0.4352303 0.05644726 -0.8058605 0.5894088 0.05644559 -0.8058614 0.5894078 0.05644607 -0.6870114 0.724451 0.05644398 -0.6870127 0.7244499 0.05644834 -0.5458555 0.8359758 0.05644482 -0.545857 0.8359751 0.05644601 -0.3869813 0.9203584 0.0564444 -0.3869817 0.9203582 0.02427846 -0.2043289 0.9786013 0.02420294 -0.2041539 0.9786396 0.05666524 -0.2839906 0.9571512 0.07818365 -0.2244751 0.9713385 0.05674421 -0.2060574 0.9768933 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1.33715e-7 0 1 -1.99007e-7 0 1 1.27104e-7 0 0.9885367 -0.1509799 -3.8932e-4 0.9759852 -0.190465 0.1057173 0.9051852 -0.420282 -0.06326895 0.8305542 -0.5477407 0.1007972 0.7715362 -0.6361855 -2.35189e-4 0.1960498 -0.979407 0.04823344 0.007086277 -0.9999749 0 0.6636343 -0.7480572 1.61479e-4 0.5576713 -0.8280997 0.05704176 0.4773566 -0.878286 -0.02728837 0.1989145 -0.9795792 0.02928745 0.163187 -0.9865952 0 1 -7.42029e-7 0 1 0 0 1 -3.89904e-7 0 0 0 1 4.15743e-6 0 1 2.61497e-7 0 1 3.71048e-6 0 1 -3.32598e-6 0 1 1 -3.55751e-6 1.64335e-4 -0.6779844 -0.002685844 0.7350714 -0.9326013 0.00736171 0.3608334 -0.9989339 -0.00576204 0.04580384 -0.9950674 2.71014e-5 0.09920197 -0.8979294 0.001135945 0.4401381 -0.939572 -0.001794874 0.3423467 -0.9755852 -0.007213592 0.2195026 -0.8646094 -9.4876e-5 0.5024448 -0.7864157 8.63994e-4 0.6176971 -0.805568 -2.14754e-4 0.5925033 -0.6651263 3.75763e-4 0.7467308 -0.606716 0.002983033 0.7949131 -0.5649763 -5.07065e-6 0.8251072 -0.5690398 1.41988e-4 0.8223101 -0.5285761 5.62078e-5 0.8488859 -0.5215317 7.35234e-5 0.8532319 -0.5022573 2.31824e-5 0.8647182 -0.4667149 3.76555e-4 0.8844077 -0.4371271 9.95226e-4 0.8993992 -0.3864524 0.002481102 0.922306 -0.4873518 -0.003401219 0.8731991 -0.3281457 0.003007709 0.9446223 -0.3830513 -5.60963e-4 0.923727 -0.3179622 1.41302e-5 0.9481035 -0.9982134 0.004192471 0.0596022 -0.96595 -0.001408278 0.2587252 -0.9329239 0.001452386 0.360071 -0.9136403 -9.54957e-5 0.4065236 -0.864367 -7.99005e-5 0.5028615 -1 -5.82077e-7 0 -1 5.82076e-7 0 0 -0.9659264 -0.2588171 0 -0.9659247 -0.2588234 0 -0.707109 -0.7071046 0 -0.7071051 -0.7071086 0 -0.2588193 -0.9659258 0 -0.2588211 -0.9659253 0 0.2588193 -0.9659258 0 0.2588176 -0.9659262 0 0.707109 -0.7071046 0 0.7071051 -0.7071086 0 0.9659264 -0.2588171 0 0.9659265 -0.2588169 0 0.9659265 0.2588167 0 0.7071055 0.7071081 0 0.7071086 0.7071051 0 0.2588164 0.9659267 0 0.2588179 0.9659262 0 -0.2588198 0.9659256 0 -0.2588179 0.9659262 0 -0.7071055 0.7071081 0 -0.9659247 0.2588232 0 -0.9659265 0.2588167 -1 -5.82076e-7 0 -1 5.82077e-7 0 0 -0.9659265 -0.2588169 0 -0.7071055 -0.7071081 0 -0.2588176 -0.9659262 0 0.2588211 -0.9659253 0 0.7071055 -0.7071081 0 0.7071086 -0.7071051 0 0.9659247 -0.2588236 0 0.9659247 0.2588232 0 0.707109 0.7071046 0 0.7071051 0.7071086 0 0.2588181 0.9659261 0 0.2588196 0.9659258 0 -0.2588181 0.9659261 0 -0.2588161 0.9659267 0 -0.707109 0.7071046 0 -0.7071051 0.7071086 -1 3.51928e-7 0 -1 2.5009e-5 -3.5248e-5 -1 0 0 -0.9999998 4.58391e-4 -4.97831e-4 -0.9999997 -3.94582e-4 8.12011e-4 -1 5.19128e-5 1.35522e-5 -0.9999998 -3.19516e-4 6.06754e-4 -0.9999999 -2.57e-4 4.90183e-4 -1 0 0 -1 0 0 -1 -1.0399e-6 -8.52606e-7 -1 -6.47365e-7 -1.54678e-6 -1 0 -2.26757e-6 -1 0 -2.14795e-6 -1 5.61548e-5 5.79776e-5 -1 2.90882e-5 1.0518e-4 -1 2.72155e-5 1.0685e-4 -1 0 3.06851e-7 -1 0 0 -1 0 1.58134e-7 -1 0 3.23938e-7 -1 0 2.20968e-7 -1 6.156e-7 1.74144e-6 -1 -4.74301e-7 0 -1 -5.72195e-7 -4.69141e-7 -1 -4.63283e-7 -1.10694e-6 -1 3.00577e-5 -1.19782e-4 -1 3.10305e-5 -1.17334e-4 -1 2.30309e-4 1.97627e-4 -1 7.81229e-5 -7.84328e-5 -1 -1.81037e-4 -3.24503e-4 -1 -1.99561e-4 -3.80012e-4 -1 -2.09552e-4 -4.04948e-4 -1 -2.13665e-4 3.90019e-4 -1 -1.81295e-4 2.97467e-4 -1 -1.58673e-4 2.13716e-4 -1 1.9557e-6 0 -1 -8.9448e-7 0 -1 -5.51342e-7 0 -1 1.75599e-5 0 -1 -1.4364e-4 1.34815e-4 -1 -1.34914e-4 5.94505e-5 -1 -1.32304e-4 -1.37942e-5 -1 -2.38345e-4 -4.76631e-4 -0.9999999 -2.89302e-4 -5.81897e-4 -1 4.02095e-5 -1.08412e-5 -0.9999997 -3.45065e-4 -7.58594e-4 -0.9999996 -4.07222e-4 -8.59515e-4 -1 -1.35179e-4 -8.8856e-5 -1 -1.4397e-4 -1.65541e-4 -1 -1.58972e-4 -2.43462e-4 -0.4898567 -0.2952868 -0.820272 -0.8870282 0.08874809 -0.4531056 -0.9599133 0.1986159 -0.1977837 -0.9395757 6.12681e-4 0.3423408 -0.368065 -0.2771339 0.8875387 -0.3175382 0.05025368 0.946913 -0.5690411 0.002345263 0.8223057 -0.5215319 0.00246948 0.8532283 -0.9987854 0.04178804 -0.0261088 -0.9986774 0.04834973 -0.0174883 -0.998764 0.04629683 -0.01808786 -0.9987062 0.05008053 -0.008838117 -0.9987435 0.04924762 -0.00928682 -0.9987296 0.05039215 -1.1382e-4 -0.9987238 0.05050837 -1.51478e-5 -0.9987485 0.04929208 0.008478164 -0.9987058 0.04998505 0.009397447 -0.9987635 0.04681879 0.01671701 -0.9986907 0.04766082 0.01858592 -0.9987754 0.04304403 0.02439385 -0.9986783 0.04360997 0.02720278 -0.9987838 0.03808671 0.0313093 -0.9986689 0.03797411 0.03490877 -0.9987895 0.03208529 0.03728586 -0.9986619 0.03096491 0.04141908 -0.9987907 0.02523314 0.04219615 -0.9986561 0.02286261 0.04651367 -0.9987879 0.01766508 0.04594188 -0.9986516 0.01394706 0.05000537 -0.9987815 0.009552538 0.04841744 -0.998651 0.004540264 0.05172616 -0.9986887 0.003542542 0.05107194 -0.9906542 0.1286141 0.04541784 -0.9986665 0.03799271 -0.03495436 -0.9987801 0.03816574 -0.03133082 -0.9986426 0.0452212 -0.02584612 -0.9986358 0.02975863 -0.04290598 -0.9987531 0.03330349 -0.03718984 -0.9987154 0.03592544 -0.0357359 -0.9987635 0.02974122 -0.03983694 -0.9986936 0.02252376 -0.04586845 -0.9987318 0.02154779 -0.04550242 -0.998713 0.01360857 -0.04886132 -0.9986979 0.01393067 -0.04907661 -0.9242402 -0.3699678 -0.09436023 -0.717073 0.6969561 -0.007649779 -0.9986819 0.004477083 -0.0511322 -0.998694 0.004642546 -0.05088138 -0.9987305 0.008829116 -0.04959213 -0.7463745 -0.3107083 -0.5885453 -0.3264563 0.05762469 -0.9434542 -0.3945115 0.0900011 -0.9144728 -0.3023185 0.1727681 -0.9374192 -0.3867899 0.2567702 -0.885699 -0.3709165 0.265549 -0.8898903 -0.3875746 0.6829891 -0.6191219 -0.302026 0.6396687 -0.7068271 -0.3940982 0.5564395 -0.7314792 -0.3527108 0.5492889 -0.7575467 -0.2936654 0.4297608 -0.8538539 -0.4621133 0.4403576 -0.769764 -0.3062431 0.3691251 -0.8774747 -0.4633548 0.778598 -0.4231873 -0.3262349 0.7769299 -0.5384708 -0.3416397 0.7103968 -0.61532 -0.2909632 0.8145042 -0.5019198 -0.3618704 0.8697487 -0.3355402 -0.3823634 0.8593135 -0.3396742 -0.3063994 0.9098628 0.2797661 -0.3803807 0.910401 0.1627284 -0.3624766 0.9162453 0.1706029 -0.318825 0.9455798 0.06503635 -0.3949503 0.9187026 -4.67793e-6 -0.3254347 0.9448431 -0.03692954 -0.3424064 0.923675 -0.1719956 -0.406663 0.9018373 -0.1459954 -0.3147824 0.915108 -0.2519714 -0.44232 0.8239358 0.3542357 -0.3416203 0.8768523 0.3382686 -0.3258247 0.8231525 0.4650359 -0.3945039 0.7822781 0.4820868 -0.3028389 0.766884 0.5658423 -0.3861654 0.6834329 0.6195124 -0.3718684 0.6833693 0.6282678 -0.3315415 0.05218589 0.9419963 -0.4744054 0.1338533 0.8700706 -0.3156077 0.09299248 0.9443221 -0.3423744 0.2418909 0.9078924 -0.3872228 0.2567231 0.8855235 -0.3019455 0.3552137 0.8846764 -0.3944315 0.4130901 0.8208412 -0.3518666 0.4405413 0.8259015 -0.2951749 0.5785071 0.7603957 -0.4602336 0.4996417 0.733855 -0.3061527 0.6271369 0.7162193 -0.3497492 -0.2749959 -0.895574 -0.4130955 0.3691467 -0.832516 -0.4418158 0.08783549 -0.8927955 -0.4418144 0.08783501 -0.8927963 -0.4419083 0.249745 -0.8615943 -0.4419075 0.2497444 -0.8615947 -0.441995 0.4032092 -0.8012883 -0.4419944 0.4032089 -0.8012888 -0.4420752 0.5430452 -0.7139129 -0.4420752 0.5430442 -0.7139136 -0.4421457 0.6645261 -0.6024221 -0.4421455 0.6645277 -0.6024204 -0.4422037 0.7635518 -0.4705793 -0.4422046 0.7635498 -0.4705815 -0.4422485 0.8367743 -0.3228393 -0.4422463 0.8367744 -0.322842 -0.4422727 0.8817223 -0.1641973 -0.4422762 0.8817202 -0.1641989 -0.4422875 0.8968734 -7.87265e-6 -0.4422858 0.8968741 -5.19804e-6 -0.4422809 0.8817207 0.164184 -0.4422795 0.8817205 0.1641885 -0.4422572 0.8367747 0.3228261 -0.4422574 0.8367739 0.3228277 -0.4422169 0.7635508 0.4705682 -0.4422158 0.7635528 0.470566 -0.4421629 0.6645263 0.6024092 -0.4421659 0.6645249 0.6024087 -0.4420979 0.5430433 0.7139003 -0.4420949 0.5430441 0.7139015 -0.4420176 0.4032101 0.8012753 -0.4420171 0.4032092 0.8012761 -0.4419332 0.2497444 0.8615816 -0.4419317 0.2497459 0.8615819 -0.441839 0.08783602 0.892784 -0.4418406 0.08783608 0.8927832 -0.4148328 0.3588696 0.8361378 -0.4864613 0.06166684 0.8715232 -0.5727151 0.3460201 -0.7431471 -0.5558176 0.443017 -0.7034222 -0.6167428 0.0769419 -0.7833954 -0.6167427 0.07694143 -0.7833955 -0.6168245 0.2190116 -0.7560169 -0.6168243 0.2190115 -0.7560172 -0.6169016 0.3536705 -0.7030999 -0.6169011 0.3536694 -0.703101 -0.6169717 0.4763695 -0.6264328 -0.6169719 0.4763697 -0.6264324 -0.6170323 0.5829655 -0.5286043 -0.6170331 0.5829656 -0.5286032 -0.6170835 0.6698565 -0.4129169 -0.6170818 0.6698563 -0.4129198 -0.6171203 0.7341064 -0.2832852 -0.6171233 0.7341061 -0.2832794 -0.6171464 0.773544 -0.1440842 -0.617147 0.7735449 -0.1440764 -0.6171564 0.7868406 -8.108e-6 -0.6171563 0.7868406 -8.75664e-6 -0.6171516 0.7735447 0.1440577 -0.6171489 0.773546 0.1440619 -0.6171287 0.7341063 0.283267 -0.6171309 0.7341052 0.283265 -0.6170958 0.6698545 0.4129017 -0.6170961 0.6698557 0.4128992 -0.6170484 0.5829637 0.5285874 -0.6170473 0.5829671 0.528585 -0.6169888 0.4763715 0.6264144 -0.6169891 0.4763684 0.6264165 -0.6169216 0.3536703 0.7030826 -0.6169189 0.3536706 0.7030848 -0.6168438 0.2190119 0.756001 -0.6168485 0.2190123 0.7559971 -0.6167647 0.07694321 0.783378 -0.6167678 0.07694226 0.7833757 -0.555854 0.4430271 0.703387 -0.6474118 -0.2968686 0.7019451 -0.6745191 -0.1182737 -0.7287217 -0.7460007 0.1649159 -0.6452021 -0.7544679 0.06401944 -0.6532073 -0.7544692 0.06401926 -0.6532059 -0.7545355 0.1824771 -0.6303796 -0.7545365 0.1824772 -0.6303784 -0.7546008 0.2947589 -0.5862551 -0.7545994 0.2947582 -0.5862571 -0.7546579 0.3970658 -0.5223318 -0.7546584 0.3970669 -0.5223302 -0.7547089 0.4859475 -0.4407604 -0.7547121 0.4859474 -0.440755 -0.7547534 0.558395 -0.3443002 -0.7547537 0.5583955 -0.3442986 -0.7547852 0.6119688 -0.2362064 -0.7547829 0.61197 -0.2362107 -0.7548041 0.6448552 -0.120136 -0.7548035 0.6448549 -0.1201409 -0.75481 0.6559436 -1.07435e-5 -0.754811 0.6559423 -1.04707e-5 -0.754807 0.6448557 0.1201146 -0.7548083 0.6448534 0.1201194 -0.7547914 0.6119682 0.2361882 -0.7547917 0.6119679 0.2361881 -0.7547628 0.5583974 0.3442753 -0.7547622 0.5583985 0.3442749 -0.7547219 0.485947 0.4407386 -0.7547221 0.4859477 0.4407374 -0.7546715 0.3970673 0.5223108 -0.7546717 0.3970673 0.5223104 -0.754617 0.2947579 0.5862346 -0.7546167 0.2947582 0.5862349 -0.7545521 0.1824787 0.6303591 -0.7545545 0.1824782 0.6303566 -0.7544857 0.06401973 0.6531868 -0.7544858 0.06401997 0.6531866 -0.7341484 0.242141 0.6343452 -0.7463728 -0.3762462 0.5489686 -0.8293797 0.1973404 -0.5226722 -0.7603141 0.495628 -0.4198517 -0.8729525 0.04740554 -0.4854964 -0.8729503 0.04740476 -0.4855003 -0.8730017 0.1354489 -0.4685314 -0.8730019 0.1354497 -0.468531 -0.8730491 0.2189011 -0.435738 -0.8730497 0.2189007 -0.4357371 -0.8730936 0.2949413 -0.3882235 -0.8730925 0.2949415 -0.3882254 -0.8731312 0.3610016 -0.327597 -0.8731311 0.3610029 -0.3275958 -0.873162 0.41485 -0.2559055 -0.8731629 0.41485 -0.2559028 -0.8731872 0.4546666 -0.1755631 -0.8731873 0.4546658 -0.1755653 -0.873202 0.479108 -0.08929634 -0.8732024 0.4791074 -0.08929568 -0.8732076 0.4873486 -1.1086e-5 -0.8732081 0.4873478 -1.32286e-5 -0.8732045 0.479108 0.08927261 -0.8732041 0.4791088 0.08927285 -0.8731921 0.4546663 0.1755399 -0.8731899 0.4546696 0.1755421 -0.8731703 0.4148498 0.2558773 -0.8731707 0.4148493 0.2558773 -0.8731397 0.3610027 0.3275734 -0.8731409 0.3610001 0.3275728 -0.8731044 0.2949423 0.3881981 -0.8731049 0.2949415 0.3881976 -0.8730612 0.2189019 0.4357134 -0.873061 0.2189015 0.4357138 -0.8730143 0.1354494 0.4685078 -0.8730143 0.1354491 0.4685077 -0.8729646 0.04740619 0.4854747 -0.8729661 0.04740613 0.4854719 -0.7380098 0.5381169 0.4071508 -0.897932 9.46895e-4 0.4401333 -0.9527866 -0.08292204 -0.2920989 -0.8556802 0.4679359 -0.2210147 -0.9671401 0.02441948 -0.253069 -0.9671404 0.02441871 -0.2530673 -0.9671663 0.07031118 -0.2442248 -0.9671666 0.07031184 -0.2442239 -0.9671915 0.1138104 -0.2271295 -0.9671909 0.1138105 -0.2271318 -0.9672139 0.1534445 -0.2023663 -0.9672142 0.1534438 -0.202365 -0.9672341 0.1878784 -0.170763 -0.9672343 0.187879 -0.1707617 -0.9672506 0.2159457 -0.1333935 -0.9672499 0.2159475 -0.1333957 -0.967262 0.2367036 -0.09151893 -0.9672629 0.2367 -0.09151881 -0.9672706 0.2494406 -0.04655158 -0.9672706 0.2494412 -0.04655027 -0.9672741 0.2537341 -1.40216e-5 -0.9672734 0.2537366 -1.44819e-5 -0.9672722 0.2494395 0.04652452 -0.9672717 0.2494412 0.04652529 -0.9672653 0.2367007 0.09149193 -0.9672652 0.2367015 0.09149074 -0.9672538 0.2159478 0.1333669 -0.9672549 0.2159427 0.1333668 -0.9672393 0.1878768 0.1707354 -0.9672386 0.1878791 0.1707368 -0.9672197 0.1534463 0.2023376 -0.9672201 0.1534433 0.2023373 -0.9671983 0.1138086 0.2271015 -0.9671972 0.1138123 0.2271043 -0.9671731 0.07031238 0.2441974 -0.9671736 0.07031077 0.2441958 -0.9671477 0.02441853 0.2530402 -0.9671471 0.02442049 0.2530419 -0.8918304 0.3889744 0.230949 -0.966856 -0.1336448 0.2175513 -0.9999463 3.00057e-5 -0.01036173 -0.9970833 -8.35356e-4 -0.07631605 -0.3637053 9.83096e-6 -0.9315142 -0.3466703 7.12082e-4 -0.9379868 -0.5127498 -0.001168131 -0.8585374 -0.5124419 -0.001152813 -0.8587212 -0.749123 5.94992e-5 -0.662431 -0.8459765 -0.008657753 -0.53315 -0.7852886 -0.003275394 -0.6191212 -0.6793017 3.75645e-5 -0.7338591 -0.6103473 3.75279e-5 -0.792134 -0.9948222 -1.40736e-5 -0.1016315 -0.9794265 9.01142e-5 -0.2018018 -0.9275203 9.00943e-5 -0.3737727 -0.9560693 -0.00405997 -0.2931126 -0.8905384 6.13083e-5 -0.4549081 -0.9990015 0 -0.04467779 -0.9970832 0.001056253 -0.07631611 -0.9095652 0.002613723 -0.4155533 -0.9655098 -7.77642e-6 -0.2603667 -0.9865394 -7.81184e-6 -0.1635243 -0.8559333 0.007799386 -0.5170274 -0.9275204 4.78136e-5 -0.3737726 -0.7995482 4.93556e-5 -0.600602 -0.749121 0.002289712 -0.6624292 -0.6893505 3.20704e-5 -0.7244281 -0.6201249 3.19707e-5 -0.7845031 -0.5124421 7.3298e-4 -0.8587215 -0.5357223 0.00202918 -0.8443919 -0.3836008 -6.64245e-4 -0.9234988 -0.3466704 2.12734e-4 -0.937987 -0.3148387 2.31441e-6 -0.9491453 1 -2.30635e-7 0 1 -1.18003e-5 -2.58197e-4 0.9999998 0 -5.82209e-4 1 0 0 1 -3.51183e-7 0 1 -6.32027e-7 0 1 7.02498e-7 0 1 6.32517e-7 0 1 1.44225e-6 0 1 6.58906e-7 0 1 4.83912e-7 0 1 -1.63204e-7 0 1 -1.98969e-7 0 0.9999998 3.47583e-4 -5.82229e-4 1 -4.30554e-7 0 1 -6.36446e-7 0 1 -7.20452e-7 0 1 -5.8219e-7 0 1 -1.30527e-6 0 1 -7.29433e-7 0 1 1.57506e-6 0 1 -7.11699e-7 0 1 3.16412e-7 0 1 -1.04845e-6 0 1 4.59468e-7 0 1 0 5.03472e-5 1 -3.11115e-6 1.68614e-4 1 8.47569e-5 1.68618e-4 1 -1.98299e-4 7.00431e-5 1 5.27472e-7 7.00413e-5 0 1 -9.62129e-6 -2.94534e-6 1 6.69506e-6 2.48362e-5 1 0 -0.3148157 -0.01094609 -0.9490898 -0.4053068 -0.07713365 -0.9109209 -0.3824906 -0.07506507 -0.9209051 -0.3331272 -0.03385126 -0.9422741 -0.5356037 -0.02084678 -0.8442122 -0.5739244 -0.09049767 -0.8138926 -0.6194321 -0.04731816 -0.783623 -0.8558458 -0.016698 -0.5169615 -0.7759886 -0.04323416 -0.6292634 -0.7937257 -0.1208056 -0.5961591 -0.6893501 0.001676976 -0.7244264 -0.9094943 -0.01290619 -0.4155162 -0.9248267 -0.08314687 -0.3711902 -0.9655106 4.37336e-4 -0.2603636 -0.988916 -0.02033233 -0.1470772 -0.9856832 -0.04160314 -0.1633951 -0.999454 -0.01516038 -0.02935969 -0.988883 -0.0444886 -0.1418848 -0.9840037 -0.06695592 -0.1650873 -0.7771704 -0.1263243 -0.6164808 -0.7812854 -0.1338389 -0.6096559 -0.8446237 -0.1524327 -0.5132009 -0.9264546 -0.1066958 -0.3609681 -0.8996673 -0.03773808 -0.4349421 -0.9435347 -0.09065538 -0.3186281 -0.3279688 -0.1182016 -0.9372646 -0.4086195 -0.2361449 -0.8816269 -0.5752491 -0.183904 -0.797037 -0.5488015 -0.1280348 -0.8260897 -0.6594043 -0.2180715 -0.7194657 -0.9990001 -0.00163871 -0.04467803 -0.9989762 0.03659498 -0.02660048 -0.9996782 -0.00430876 -0.02500259 -0.9996712 -0.009483695 -0.02382344 -0.9996865 -0.004073858 -0.02470582 -0.9891289 -0.02405834 -0.1450697 -0.9888669 -0.02335375 -0.1469592 -0.9277533 -0.05882292 -0.3685292 -0.9262509 -0.05588501 -0.3727412 -0.7777933 -0.09364831 -0.6215044 -0.7743622 -0.08933198 -0.6264049 -0.5771785 -0.1157374 -0.8083749 -0.57297 -0.1118193 -0.8119125 -0.3324785 -0.1290224 -0.9342437 -0.4451703 -0.1981337 -0.8732506 -0.3067387 -0.1945633 -0.9316955 -0.9659252 0 0.2588217 -0.9659264 0 0.2588173 -0.7071 0 0.7071136 -0.7071095 0 0.7071041 -0.2588164 0 0.9659265 -0.2588193 0 0.9659258 0.2588139 0 0.9659272 0.2588191 0 0.9659258 0.7071041 0 0.7071095 0.7071109 0 0.7071028 0.965925 0 0.2588223 0.9659258 0 0.2588191 0 -1 -1.47029e-6 0.9659248 0 -0.258823 0.9659258 0 -0.2588191 0.7071068 0 -0.7071068 0.7071095 0 -0.7071041 0.2588089 0 -0.9659286 0.2588217 0 -0.9659252 -0.2588189 0 -0.9659259 -0.2588143 0 -0.9659272 -0.7070987 0 -0.7071149 -0.7071122 0 -0.7071014 -0.9659252 0 -0.2588217 -0.9659262 0 -0.258818 0 -1 -1.42109e-6 0 -1 1.42109e-6 0 -1 -5.68435e-6 0 -1 -8.52652e-6 0 -1 8.52652e-6 0.965926 0 -0.2588188 0.965927 0 -0.2588148 0.7071068 0 -0.7071068 0.258825 0 -0.9659243 0.2588189 0 -0.9659259 -0.2588145 0 -0.9659271 -0.2588272 0 -0.9659237 -0.7071024 0 -0.7071112 -0.7071156 0 -0.707098 -0.9659254 0 -0.258821 -0.965926 0 -0.2588188 -0.9659254 0 0.258821 -0.7071068 0 0.7071068 -0.7071112 0 0.7071024 -0.2588227 0 0.9659249 -0.2588189 0 0.9659259 0.2588167 0 0.9659265 0.2588272 0 0.9659237 0.7071024 0 0.7071112 0.7071112 0 0.7071024 0.9659254 0 0.258821 0.965927 0 0.2588148 0 -1 -1.42109e-6 0 -1 1.42109e-6 0 -1 -8.52651e-6 0 -1 8.52651e-6 0.9659258 0 -0.2588194 0.9659272 0 -0.2588143 0.7071057 0 -0.7071079 0.7071079 0 -0.7071057 0.2588167 0 -0.9659265 0.258823 0 -0.9659248 -0.2588186 0 -0.9659259 -0.2588189 0 -0.9659259 -0.7071035 0 -0.7071101 -0.7071145 0 -0.7070991 -0.9659255 0 -0.2588204 -0.9659258 0 -0.2588194 -0.9659257 0 0.2588199 -0.7071046 0 0.707109 -0.7071134 0 0.7071002 -0.2588145 0 0.9659271 -0.258821 0 0.9659254 0.2588188 0 0.965926 0.2588189 0 0.9659259 0.7071046 0 0.707109 0.707109 0 0.7071046 0.9659257 0 0.2588199 0.9659273 0 0.2588137 0 -1 -2.02802e-6 0 -1 -1.64746e-6 0 -1 -1.18896e-6 0 -1 -3.58541e-6 0 -1 -1.36462e-6 0 -1 4.75325e-6 0 -1 -1.89263e-6 0 -1 1.54994e-5 0 -1 -3.44857e-6 0 -1 -1.07576e-6 0 -1 1.32288e-6 0 -1 -1.55793e-5 0 -1 8.3729e-6 0 -1 4.404e-6 0 -1 -2.48803e-6 0 -1 -2.4812e-6 0 -1 1.07576e-6 0 -1 4.22202e-6 0 -1 -4.7888e-6 0 -1 3.38714e-6 0 -1 1.07826e-6 0 -1 -9.83221e-6 0 -1 1.13115e-5 0 -1 -4.47813e-6 0 -1 -6.05885e-6 0 -1 1.6834e-6 0 -1 2.58758e-6 0 -1 -5.53241e-6 -0.9895318 -0.0426011 0.1378847 -0.9999605 -0.004007279 0.007937192 -0.3815923 -0.1226947 0.9161513 -0.9808102 -0.002871811 0.194944 -0.9892625 -0.02531301 0.1439412 -0.9556878 -0.02451944 0.2933593 -0.9275879 -0.06695038 0.3675574 -0.9050188 -0.01579552 0.4250784 -0.7988774 -0.03866547 0.60025 -0.7779159 -0.07366573 0.6240354 -0.7084137 -0.03488552 0.7049348 -0.6418467 -0.03796446 0.7658927 -0.5774453 -0.08193969 0.8123072 -0.5575845 -0.06158477 0.8278326 -0.4845566 -0.03971636 0.8738579 -0.3669585 -0.05182069 0.9287928 -0.3713999 -0.05623114 0.9267687 -0.2923113 -0.3555907 0.8877553 -0.4333868 -0.2125045 0.8757956 -0.3456461 -0.1671192 0.9233634 -0.3587035 -0.1907888 0.9137458 -0.5776969 -0.1640929 0.7995872 -0.5889564 -0.1492081 0.7942715 -0.50608 -0.2032105 0.8382055 -0.8910047 -0.1367534 0.4329079 -0.8033552 -0.1462836 0.5772536 -0.7788489 -0.1194934 0.6157239 -0.7220277 -0.1730571 0.6698711 -0.6575973 -0.188696 0.7293556 -0.9287139 -0.07104325 0.3639279 -0.9547368 -0.08801054 0.2841334 -0.9507919 -0.1619372 0.2641422 -0.9893468 -0.01581388 0.1447166 -0.9906312 -0.09717315 0.09595471 -0.999576 4.19182e-4 0.02911859 -0.9999592 -0.003562986 0.008297801 -0.9988555 0.004453361 0.04762172 -0.9996966 -0.002967238 0.02445042 -0.9996938 -0.006040751 0.02400076 -0.385682 -0.1333661 0.9129419 -0.5761891 -0.117878 0.8087713 -0.5790159 -0.1223048 0.8060908 -0.7771309 -0.09404093 0.6222731 -0.7793898 -0.0989452 0.6186773 -0.9279075 -0.05858731 0.3681786 -0.9288728 -0.06195133 0.3651814 -0.9894397 -0.02413785 0.1429219 -0.9891276 -0.04499667 0.1400067 -0.9996851 -0.007652521 0.0238983 -0.9996845 -0.007642686 0.02392846 -0.9659495 0.001408278 0.2587273 -0.9982222 0 0.05960255 -0.9988653 4.70889e-4 0.04762351 -0.9797101 -2.57136e-4 0.2004201 -0.9136375 -0.002797365 0.4065206 -0.9329934 1.01533e-4 0.3598939 -0.8643686 8.03421e-5 0.5028588 -0.5649847 3.28099e-6 0.8251014 -0.7994639 1.24574e-4 0.6007143 -0.7088357 -4.41051e-5 0.7053737 -0.6651263 6.92327e-4 0.7467305 -0.6422997 1.05491e-4 0.7664537 -0.566107 -7.62181e-5 0.8243318 -0.5422954 -6.24639e-4 0.8401878 -0.3720086 3.60751e-7 0.9282294 -0.3295753 -0.002699732 0.9441255 -0.4849509 0.003100872 0.8745359 -0.3590897 -0.003969252 0.9332946 -0.3988502 -0.001913189 0.9170141 -0.4649943 -2.54812e-4 0.8853138 -0.4971492 -4.34843e-5 0.8676651 -0.5586438 2.13287e-4 0.8294078 -0.5180478 -0.001209497 0.8553509 -0.5348951 -7.92372e-4 0.8449182 -0.7864151 -5.75085e-4 0.6176983 -0.8663691 2.03738e-4 0.4994043 -0.9051293 -0.001497864 0.4251339 -0.9330541 0.001314818 0.3597338 -0.955975 -3.76774e-5 0.2934483 -0.9808148 -4.32979e-5 0.1949422 0.9980884 0.06180447 2.00839e-6 0.9670454 0.1887188 0.1709054 0.007086277 0.9999749 0 0.1960512 0.9794078 0.04821246 0.1726973 0.9849749 -1.86915e-6 0.199703 0.9795621 0.02401918 0.3441926 0.9388972 0.00187534 0.5585348 0.8293901 -0.01229125 0.5033627 0.8624116 0.05359452 0.9613008 0.1704608 0.2164347 0.9471955 0.3130923 -0.06923848 0.8313788 0.5482794 0.09054923 0.8425002 0.5171685 0.1507657 0.7773638 0.6282689 -0.03136307 -0.6510128 -0.6029407 0.4611345 -0.6811699 -0.4465969 0.5801368 -0.7063795 -0.4691368 0.5300365 -0.7062519 -0.5354754 0.4631139 -0.6811895 -0.2790994 0.6768193 -0.7063083 -0.3115628 0.635655 -0.7062841 -0.3950569 0.5874461 -0.6508451 -0.09791851 0.7528696 -0.7062401 -0.1331155 0.6953454 -0.7063634 -0.2248197 0.6711982 -0.6510124 -0.09789437 -0.7527281 -0.6811744 -0.2791088 -0.6768307 -0.7063863 -0.2244559 -0.6712958 -0.7062542 -0.1333174 -0.6952924 -0.6811979 -0.4465883 -0.5801107 -0.7062901 -0.3947487 -0.587646 -0.7062697 -0.3112275 -0.6358622 -0.6508265 -0.6030601 -0.4612412 -0.7062472 -0.5356224 -0.4629511 -0.7063696 -0.4688347 -0.5303169 0 0.5000025 -0.8660241 0 0.4999636 -0.8660465 -1.63498e-6 0.5000036 -0.8660234 8.03669e-6 0.4999859 -0.8660335 8.14451e-6 0.5000619 -0.8659897 -1.39591e-6 0.5000102 -0.8660196 0 0.4999846 -0.8660343 0 0.5000182 -0.866015 1.60615e-6 0.4999678 -0.8660441 -1.64206e-6 0.5000215 -0.8660131 6.69406e-6 -0.5000495 -0.8659969 -1.63874e-6 -0.4999985 -0.8660263 0 -0.5000059 -0.8660221 0 -0.5000206 -0.8660135 2.71625e-6 -0.500011 -0.8660191 0 -0.4999473 -0.8660559 -3.23592e-6 -0.4999842 -0.8660346 0 -0.4999821 -0.8660358 0 -0.5000029 -0.8660238 -0.6510121 -0.7008225 -0.2916009 -0.7062639 -0.6687802 -0.2322162 -0.7063856 -0.6935781 -0.141312 -0.6811838 -0.7257017 -0.09667307 -0.7004303 -0.7111824 -0.06014138 -0.6817966 -0.7251357 0.09660071 -0.7064655 -0.7064809 0.04232537 -0.7070838 -0.7070241 -0.0122255 0 -1 8.69181e-5 0 -1 1.70501e-5 0 -0.4999761 0.8660392 0 -0.4999979 0.8660266 -3.31992e-6 -0.5000519 0.8659955 0 -0.5000171 0.8660156 -1.35804e-6 -0.4999814 0.8660362 -1.63088e-6 -0.5000032 0.8660235 6.47153e-6 -0.4999651 0.8660457 0 -0.5000559 0.8659932 0 -0.4999619 0.8660474 -1 4.66063e-7 0 0 0.5000263 0.8660103 1.63875e-6 0.5000008 0.866025 6.63895e-6 0.4999792 0.8660376 0 0.5000171 0.8660156 -1.35813e-6 0.500012 0.8660185 0 0.4999948 0.8660285 -3.23576e-6 0.4999651 0.8660457 2.70464e-6 0.4999716 0.8660418 0 0.5000341 0.8660057 -0.6510007 0.09789568 0.7527381 -0.6811804 0.2791067 0.6768256 -0.7063846 0.2244694 0.671293 -0.7062439 0.1333115 0.695304 -0.6812015 0.4465863 0.5801081 -0.7062783 0.394722 0.5876781 -0.7063094 0.3112338 0.635815 -0.6508353 0.6030541 0.4612366 -0.706252 0.5356193 0.4629473 -0.7063707 0.4688497 0.5303022 -1 -1.82723e-6 0 -1 4.26185e-7 0 -1 1.13446e-6 0 -1 -7.09029e-7 0 -1 2.31175e-7 0 -1 -2.84136e-7 0 -1 4.63849e-7 0 -1 1.13299e-6 0 -1 -2.83889e-7 0 -1 2.8403e-7 0 -1 -2.84135e-7 0 -1 -7.0903e-7 0 -1 7.09039e-7 0 -1 1.8482e-6 0 -1 -1.68642e-7 0 -1 -1.88249e-6 0 -1 0 0 -1 2.84124e-7 0 -1 -8.51573e-7 0 -1 -5.65846e-7 0 -1 -2.83857e-7 0 -1 5.63928e-7 0 -1 1.42086e-7 0 -1 -1.68642e-7 0 -1 9.22641e-7 0 -1 -5.63928e-7 0 -1 1.42086e-7 0 -1 2.83889e-7 0 -1 -2.83249e-7 0 -0.6510247 0.6029423 -0.4611154 -0.681158 0.4466037 -0.5801456 -0.7063966 0.4691352 -0.5300151 -0.7062429 0.535474 -0.4631294 -0.6811975 0.2791038 -0.6768095 -0.7063262 0.3115701 -0.6356316 -0.7062653 0.3950297 -0.587487 -0.6508101 0.09791862 -0.7529 -0.7062403 0.1331115 -0.6953459 -0.7063874 0.2248194 -0.6711729 -0.6510127 -0.09789127 -0.7527283 -0.6811815 -0.2791063 -0.6768246 -0.7062548 -0.1333109 -0.6952931 -0.6811895 -0.446593 -0.5801168 -0.7062856 -0.3947512 -0.5876497 -0.7062861 -0.3112257 -0.6358448 -0.7062526 -0.5356183 -0.4629476 -0.706366 -0.4688327 -0.5303234 -0.6510004 -0.7008317 -0.2916047 -0.7062627 -0.6687817 -0.2322158 -0.6811831 -0.7257024 -0.09667372 -0.7004481 -0.7111651 -0.06013888 -0.6817908 -0.7251411 0.09660118 -0.706477 -0.7064693 0.04232484 -0.7070274 -0.7070805 -0.01222699 -0.6508715 -0.7009346 0.2916454 -0.7062599 -0.6687295 0.2323747 -0.7061709 -0.6949937 0.1353016 0 -1 8.69181e-5 0 -1 -5.41393e-6 0 -1 -3.6082e-5 0 -1 1.70498e-5 0 -1 -4.39759e-5 0 -1 -1.00335e-5 1.33881e-5 -0.5000495 -0.8659969 -3.27747e-6 -0.4999985 -0.8660263 0 -0.5000131 -0.8660179 8.14878e-6 -0.5000045 -0.8660229 -6.52286e-6 -0.4999473 -0.8660559 -1.94156e-5 -0.4999765 -0.8660389 0 -0.4999825 -0.8660356 0 -0.50001 -0.8660196 -1.33863e-5 0.4999799 -0.8660371 0 0.5000014 -0.8660246 0 0.5000211 -0.8660132 0 0.5000206 -0.8660135 0 0.4999871 -0.8660328 -1.30465e-5 0.4999787 -0.8660377 0 0.4999911 -0.8660306 2.70494e-6 0.5000277 -0.8660095 0 0.5000005 -0.8660252 -1 0 0 -1 4.66061e-7 0 0 0.5000238 0.8660117 -1.42147e-5 0.5000122 0.8660185 3.26993e-6 0.4999981 0.8660266 0 0.5000229 0.8660122 -1.62844e-5 0.4999204 0.8660714 -2.79176e-6 0.4999889 0.8660318 0 0.5000417 0.8660014 0 0.5000262 0.8660103 6.42508e-6 0.4999964 0.8660275 -6.56796e-6 0.4999986 0.8660262 0 -0.4999799 0.8660371 0 -0.4999985 0.8660263 1.32796e-5 -0.5000591 0.8659913 0 -0.5000206 0.8660135 5.4322e-6 -0.499975 0.8660399 -1.30471e-5 -0.4999995 0.8660256 6.47157e-6 -0.4999541 0.8660519 0 -0.5000563 0.8659929 0 -0.4999727 0.8660411 -0.6510207 -0.6029334 0.4611328 -0.681158 -0.4466037 0.5801456 -0.7063998 -0.4691208 0.5300237 -0.7062656 -0.5354616 0.4631088 -0.7063025 -0.3115699 0.6356579 -0.7062822 -0.3950626 0.5874446 -0.6508213 -0.09792488 0.7528893 -0.7062508 -0.1331135 0.695335 -0.7063533 -0.2248104 0.671212 -1 2.84124e-7 0 -1 7.09041e-7 0 -1 -7.09025e-7 0 -1 -2.3118e-7 0 -1 -2.84132e-7 0 -1 0 0 -1 9.67469e-7 0 -1 -1.88249e-6 0 -1 -2.11914e-7 0 -1 4.26187e-7 0 -1 -1.82997e-6 0 -1 4.25832e-7 0 -1 -2.84137e-7 0 -1 -7.0903e-7 0 -1 8.50848e-7 0 -1 -5.65852e-7 0 -1 2.84027e-7 0 -1 -2.83888e-7 0 -1 9.21761e-7 0 -1 1.42086e-7 0 -1 5.66599e-7 0 -1 -2.83857e-7 0 -1 -2.84028e-7 0 -1 -1.68642e-7 0 -1 1.8482e-6 0 -1 -8.51574e-7 0 -1 1.42086e-7 0 -1 3.20832e-7 0 -1 0 -1.19094e-6 -1 -3.20833e-7 0 -0.1764921 3.4206e-7 0.9843022 -0.1929405 4.74794e-4 0.9812104 -0.01927399 -1.2951e-4 0.9998143 -0.03631448 0 0.9993405 0.1329627 0.9911211 -1.17719e-6 -0.9238581 -0.3827354 0 -0.7934145 -0.6086816 0 -0.7070864 -0.7070915 0.007099688 -0.608839 -0.7932938 0 -0.4547685 -0.8906097 0 -0.9913366 -0.1305907 0.01407146 -0.9659261 -0.2588179 0 -0.9914249 0.1306777 0 -0.9659028 0.2588081 0.00710082 -0.9238302 0.3828026 0 -0.7070494 0.7070595 0.01217168 -0.7934948 0.6085771 0 -0.9238255 0.3828141 0 -0.2942035 0.9557217 0.006346881 -0.4547621 0.890613 0 -0.6089407 0.7932158 0 -0.2588199 0.9659256 2.58494e-6 -0.06119585 0.9974061 0.0378946 -0.1431128 0.989377 0.02553385 0.7071042 0.7071071 -0.001854419 0.8451144 0.532522 0.04692727 0.7419793 0.6702281 0.01616132 0.6150496 0.7884812 0.003411233 0.5399629 0.8416888 -5.67846e-6 0.2588173 0.9659263 2.99461e-5 0.4146533 0.9093624 0.03351044 0.2996266 0.9539017 0.0171889 0.8777149 -0.4791831 -1.19547e-6 0.9013662 -0.4330574 5.62987e-4 0.9580211 -0.2866668 0.004226803 0.9659036 -0.2588177 0.00660789 0.9918724 -0.1272258 0.001731038 0.9988871 -0.04716563 -3.95456e-7 0.965925 0.2588223 2.1583e-6 0.996334 0.08292329 0.02103149 0.9413567 0.3374132 0 0.9783062 0.2061581 0.02039533 0.9296455 0.3684542 9.55113e-4 0.807621 -0.589702 6.99014e-6 0.7070884 -0.7070869 0.007368206 0.7199832 -0.6939378 0.008631706 -0.3713648 -0.928485 0.001962125 -0.2187518 -0.9757478 0.00800842 -0.2588194 -0.965916 0.004347085 -0.04888254 -0.9988046 4.93089e-7 0.0547924 -0.9984978 -2.19753e-7 0.1458671 -0.9893019 0.002139866 0.3098353 -0.9507501 0.008736968 0.2588179 -0.9659196 0.003542423 0.4639906 -0.8858402 7.76371e-5 0.6022608 -0.7982994 -2.71135e-4 -0.310748 0 0.9504923 -0.4867879 -0.003041982 0.8735149 -0.4859675 -0.005122482 0.8739619 -0.4899589 -0.001875638 0.8717435 -0.493732 -4.56897e-6 0.8696142 -0.4759539 -5.99698e-4 0.87947 -0.3402901 -0.002239644 0.9403179 -0.3106898 6.45372e-7 0.9505114 -0.3227586 -0.005195975 0.9464671 -0.3369293 -4.7348e-4 0.9415299 -0.3143222 -0.007225513 0.9492889 -0.3188858 -0.006078302 0.9477737 -0.3269045 -0.004363656 0.9450473 -0.3297064 -0.00383377 0.9440757 -0.3349635 -0.002940416 0.9422265 -0.3441767 -0.001728475 0.9389034 -0.3485902 -0.001271069 0.9372744 -0.3526972 -8.37634e-4 0.9357373 -0.3634223 2.03482e-4 0.9316245 -0.4036537 -1.93196e-4 0.9149119 -0.4106143 -4.63641e-4 0.9118092 -0.432095 2.2573e-5 0.9018281 -0.4616267 -7.79508e-5 0.8870744 -0.4526003 -0.004447162 0.8917025 -0.4795792 0.001272261 0.8774977 -0.3579776 7.21254e-4 0.93373 -0.3512825 0.00116676 0.9362689 -0.3465073 0.001629412 0.938046 -0.3289082 0.003578245 0.9443551 -0.333971 0.002947688 0.9425788 -0.3430165 0.0019809 0.9393273 -0.3417419 0.00210148 0.9397915 -0.3378678 0.002490699 0.9411903 -0.3238109 0.004331409 0.9461119 -0.3189543 0.005109548 0.9477564 -0.373403 -0.005294024 0.9276542 -0.3139725 0.002768099 0.949428 -0.3600581 -0.003888666 0.9329218 -0.3124542 1.9411e-5 0.9499328 -0.3214082 -2.8477e-4 0.9469408 -0.3120255 3.74028e-4 0.9500737 -0.3307533 -7.05881e-4 0.943717 -0.3466526 -0.001990258 0.9379916 -0.971267 -8.48339e-7 0.2379927 -0.9867657 5.07458e-4 0.1621523 -0.8688629 -2.46761e-4 0.4950528 -0.8387722 -6.46478e-5 0.5444826 -0.6857444 6.31998e-5 0.7278426 -0.6426039 -1.35058e-4 0.7661986 -0.5426468 -4.83159e-6 0.8399611 -0.9917488 0.07531541 -0.1037411 -0.9731332 0.1030964 0.2058711 -0.888622 0.2363991 -0.3930222 -0.972825 0.2226879 -0.06341618 -0.9383282 0.3119189 0.149154 -0.8550935 0.2308579 0.464241 -0.9072645 0.4131665 0.07851511 -0.8643546 0.5014365 0.03811484 -0.5961326 0.7671418 0.2368955 -0.6127783 0.789653 0.03083801 -0.6751424 0.7094002 0.202322 -0.7050301 0.7014386 0.1044828 -0.7504177 0.6287547 0.2038159 -0.7530699 0.6495645 0.1046509 -0.8105159 0.574589 0.1136283 -0.7929069 0.6056837 -0.06667774 -0.8732993 0.4303714 0.2283172 -0.1766139 0.976962 0.1198031 -0.2136771 0.9767704 -0.01617646 -0.04326111 0.9973044 -0.0592646 -0.07152032 0.9722013 0.2229563 -0.02910399 0.98422 0.1745399 -0.1305111 0.9226884 0.3627853 -0.1807796 0.7570912 0.6277991 -0.1803638 0.8396017 0.5123846 -0.3089653 0.1856716 0.9327736 -0.3070154 0.1700461 0.9363898 -0.3363661 0.1928411 0.9217756 -0.3339055 0.1816152 0.9249449 -0.3574399 0.1775825 0.9168977 -0.3995523 0.267494 0.8768153 -0.3944187 0.1952297 0.8979529 -0.4295133 0.1417228 0.8918706 -0.4391951 0.1599175 0.8840442 -0.4162037 0.1697345 0.8932888 -0.6603963 0.02289831 0.7505682 -0.6418948 0.04381859 0.7655398 -0.6369115 0.04068583 0.7698627 -0.6454009 0.08060431 0.7595793 -0.6649768 0.09681224 0.7405628 -0.5888222 0.08244544 0.8040469 -0.6064562 0.1077901 0.7877767 -0.5638153 0.1080321 0.8188049 -0.5648644 0.1096602 0.8178648 -0.5418675 0.1497939 0.8270075 -0.5106628 0.08972364 0.8550866 -0.5286152 0.2384829 0.814673 -0.4546884 0.05516278 0.8889407 -0.4813845 0.1724091 0.8593859 -0.6204307 0.003825187 0.7842521 -0.6855081 0.02467048 0.727647 -0.542613 0.003340184 0.8399762 -0.4098579 0.8742019 0.2603603 -0.4095317 0.8762148 0.2540308 -0.5001605 0.8378391 0.2187811 -0.5020539 0.7847688 0.3634281 -0.5843963 0.7826595 0.214302 -0.9712616 -0.00203979 0.2380061 -0.9898225 -0.02500927 0.1400929 -0.9264199 0.1037411 0.3619172 -0.9786617 0.09340792 0.1830205 -0.9633908 0.1870926 0.1920275 -0.9619797 0.1869427 0.1991172 -0.9238829 0.3137557 0.2190839 -0.9202562 0.3095054 0.2394472 -0.8635226 0.4244449 0.2723513 -0.8608704 0.4206149 0.286331 -0.8106595 0.4949923 0.3127522 -0.808014 0.4899494 0.3272053 -0.7510459 0.5563192 0.3555826 -0.748601 0.5504696 0.3695671 -0.684955 0.6092327 0.3995902 -0.6830795 0.6030204 0.4120302 -0.6131848 0.6540353 0.4429925 -0.6118871 0.6479957 0.4535371 -0.5362422 0.6908496 0.4849447 -0.5354709 0.6857221 0.4930074 -0.4552438 0.719707 0.5241899 -0.4549103 0.7159463 0.5296013 -0.8376829 0.04620796 0.5441987 -0.8799961 0.01534479 0.4747332 -0.8771756 0.06343269 0.4759615 -0.8753783 0.06373387 0.4792191 -0.8649497 0.1275929 0.4853683 -0.861424 0.1273611 0.4916583 -0.8356331 0.2155448 0.5052306 -0.825911 0.209989 0.5232359 -0.7853271 0.2906084 0.5466336 -0.7785335 0.285592 0.5588586 -0.7424395 0.3390505 0.5777788 -0.7356811 0.3324168 0.5901461 -0.6937778 0.3811959 0.6110336 -0.6875514 0.3734299 0.6227545 -0.6398776 0.4173734 0.6452566 -0.6347351 0.4091573 0.6555165 -0.5817371 0.4478182 0.6789999 -0.5777955 0.4399783 0.6874384 -0.5199522 0.4727531 0.7114452 -0.5172203 0.466008 0.7178578 -0.4558715 0.4919844 0.7417093 -0.4116469 0.3570528 0.8384869 -0.1863031 0.9555587 0.2284705 -0.2172608 0.9177851 0.3323677 -0.2173828 0.9172791 0.3336823 -0.2864982 0.7529324 0.5924623 -0.2865085 0.7520874 0.5935295 -0.2631536 0.5491622 0.7932031 -0.2610772 0.516139 0.8157447 -0.3270325 0.5125183 0.7939616 -0.3271853 0.5136589 0.7931611 -0.3910776 0.5025494 0.7710399 -0.3714507 0.738244 0.5630456 -0.3714831 0.7404783 0.5600823 -0.3151934 0.9008659 0.2984861 -0.3149344 0.9020994 0.2950138 -0.2553838 0.9627243 0.08911299 -0.3449313 0.938262 0.02620774 -0.228151 0.918191 -0.3238403 -0.4904436 0.8406786 0.2296181 -0.4897022 0.847366 0.205336 -0.4996225 0.8662406 -0.002136588 0.001086711 0.179314 0.9837914 -0.1507364 0.2889846 0.9453923 -0.1372247 0.1748673 0.9749826 -0.08516561 0.5444585 0.8344531 -0.0837934 0.5339143 0.8413765 -0.01479095 0.8332728 0.5526643 -0.01358395 0.8261799 0.5632426 0.05574989 0.9802435 0.1897757 0.05702346 0.9776884 0.2021731 -0.500359 0.8658181 5.14245e-7 0.0889278 0.9960374 -0.001151978 -0.2188825 0.9757512 -1.62036e-6 -0.1400153 0.9901493 0 0 0.9999936 -0.003616869 -0.0568673 0.998254 -0.0159769 0.02681416 0.9996218 -0.006119132 -0.3090162 0.9510568 -8.57813e-7 -0.426495 0.9038618 -0.03370273 -0.3468551 0.9378188 -0.01369684 -0.8090159 0.5877867 -3.08291e-5 -0.8647617 0.5011038 -0.03289914 -0.8047097 0.5936076 -0.008514165 -0.7353002 0.6777417 4.06203e-6 -0.5877861 0.8090164 -1.9786e-5 -0.6761031 0.7360445 -0.03351372 -0.6018481 0.7985309 -0.01127958 -0.9969171 0.07846254 0 -0.9974336 0.07158869 -0.001175463 -0.9779011 0.2090668 9.04685e-4 -0.9509835 0.3089933 -0.01239407 -0.9395342 0.3424162 -0.005167961 -0.9025487 0.4305879 5.7344e-6 0.9973261 0.0730803 0 0.9969174 0.07845586 -5.85973e-4 0.8990092 0.4379298 0 0.9218115 0.387636 -0.001472532 0.9510233 0.3090068 -0.008340477 0.9483535 0.3170696 -0.0096215 0.9769043 0.2136771 5.10243e-4 0.6801615 0.7330624 0 0.7300478 0.6833962 0 0.8090019 0.587775 -0.006056129 0.7969058 0.6040246 -0.009771645 0.8656147 0.5007107 0 0.5961747 0.802832 -0.006045281 0.5877683 0.8089925 -0.007724821 0.4961316 0.8682473 0 0.1420097 0.9898654 0 0.2121853 0.9772295 0 0.309005 0.9510234 -0.008399367 0.3345742 0.9423591 -0.004404783 0.4273197 0.9041007 0 0.2746162 0.01400947 0.961452 0.2041504 0.01674205 0.9787964 0.1979798 0.04974526 0.9789431 0.1969777 0.04959893 0.9791526 0.1850011 0.08122521 0.9793759 0.1835995 0.08074909 0.979679 0.1660554 0.1101202 0.9799486 0.1643462 0.1092668 0.9803322 0.141515 0.1354551 0.9806251 0.1398969 0.1342579 0.9810218 0.1120355 0.1562973 0.9813355 0.110927 0.1549156 0.9816804 0.07889074 0.1718924 0.9819518 0.0782122 0.1707202 0.9822105 0.04406195 0.1816058 0.9823838 0.04145568 0.1741284 0.98385 0.3655089 0.8630044 0.3487502 0.3335448 0.9379397 0.09495824 0.2069982 0.9315162 0.2990472 0.2047505 0.9388059 0.2769851 0.1396911 0.9717724 0.1901183 0.5149248 0.7828347 0.349317 0.491351 0.857733 0.151223 0.4189171 0.8830218 0.2116151 0.8599749 0.4963775 0.1185432 0.7566127 0.5699027 0.3205436 0.7939298 0.5785536 0.1869531 0.7196345 0.671458 0.1768344 0.6496728 0.6802176 0.3394544 0.6535919 0.7008756 0.2856414 0.5946772 0.7996433 0.08324545 0.8471571 0.4100164 0.337952 0.8446038 0.4061282 0.3488616 0.9076266 0.3803883 0.1775354 0.9337412 0.3110895 0.1770614 0.9032651 0.2487416 0.3496282 0.9729003 0.212385 0.09142041 0.9513533 0.07846206 0.297944 0.9643829 0.07024276 0.2550129 0.7992276 0.07124906 0.5967905 0.8442707 0.08214581 0.5295839 0.8179346 0.2242157 0.5298212 0.8174861 0.2239359 0.530631 0.7640032 0.3656324 0.5316128 0.763428 0.3650377 0.5328463 0.6852 0.4951326 0.5341765 0.6845847 0.4943516 0.5356868 0.5840779 0.608542 0.5371496 0.5836057 0.6075479 0.5387857 0.4639824 0.7020945 0.5401701 0.4636407 0.7012138 0.5416054 0.3287575 0.7728821 0.5427448 0.3286726 0.7721264 0.5438706 0.1819945 0.8186989 0.5446194 0.1822843 0.8116852 0.5549232 0.6203952 0.06484955 0.7816038 0.5623684 0.04938566 0.8254107 0.5446483 0.1468309 0.8257112 0.5438368 0.1464803 0.8263082 0.5087649 0.2394956 0.8269221 0.5077728 0.2387629 0.8277435 0.4562283 0.3243787 0.8286339 0.4551317 0.323255 0.8296755 0.3887693 0.3986779 0.8306108 0.3878865 0.3973262 0.8316707 0.3086301 0.4599654 0.832574 0.3080429 0.4586215 0.8335323 0.218518 0.5062509 0.8342422 0.218189 0.5050898 0.8350317 0.1201212 0.5362824 0.8354472 0.1195654 0.5239479 0.8433166 0.9667772 0 0.2556211 0.8027068 0 0.5963739 0.8012708 4.1479e-6 0.598302 0.6236226 -4.67692e-6 0.7817256 0.6216129 0 0.7833247 0.2747242 0 0.9615231 0.274642 0 0.9615465 -0.2805581 -0.1843068 0.9419757 0.07134026 -0.9909188 0.1139756 0.07037287 -0.9804748 0.1836215 0.03635019 -0.9534263 0.299428 -0.002778232 -0.8552467 0.5182135 -0.001788377 -0.8412146 0.5406984 -0.04284828 -0.7325709 0.6793408 -0.07373332 -0.5780109 0.8126911 -0.07265061 -0.5602027 0.8251636 -0.1089354 -0.4011362 0.909518 -0.1315234 -0.2047626 0.9699351 -0.1119632 -0.2603032 0.9590134 0.7017359 -0.6781865 0.2182428 0.9638479 -0.07778656 0.2548462 0.906687 -0.2513481 0.338737 0.968248 -0.2256413 0.1076201 0.9595971 -0.07545804 0.2710714 0.8606731 -0.4774442 0.1768867 0.8485246 -0.421577 0.3198104 0.8413263 -0.4072244 0.3554413 0.9034755 -0.3906551 0.1764109 0.9309754 -0.3198361 0.1760395 0.8046169 -0.5928811 0.03292262 0.6899756 -0.5563004 0.4631024 0.8250481 -0.5364483 0.1775359 0.6066993 -0.6823377 0.4078373 0.6762099 -0.7175214 0.1670426 0.5492394 -0.8140869 0.1886768 0.5182827 -0.7991535 0.3045274 0.4710448 -0.865426 0.1707478 0.4082129 -0.8897621 0.2041708 0.358765 -0.863857 0.3536084 0.3320766 -0.9254941 0.1821697 0.139831 -0.9729623 0.183825 0.2052123 -0.939503 0.2742664 0.1935044 -0.9250712 0.3268018 0.2695627 -0.9454993 0.1826664 0.799972 -0.0827803 0.5943 0.8469827 -0.07615417 0.5261378 0.81946 -0.2259556 0.5267158 0.8189975 -0.225897 0.5274596 0.7648335 -0.3683758 0.5285161 0.7640329 -0.3681749 0.5298123 0.6850169 -0.4986606 0.531121 0.6840961 -0.4982759 0.5326667 0.5825643 -0.6126242 0.5341446 0.5817508 -0.6120136 0.5357289 0.4609789 -0.7063834 0.5371416 0.4602875 -0.7057147 0.5386115 0.3241133 -0.7769287 0.5397523 0.3236942 -0.7762685 0.5409522 0.1802428 -0.8210307 0.5416838 0.1800691 -0.8206385 0.5423353 0.622606 -0.05525726 0.7805822 0.5663399 -0.05637198 0.8222417 0.5491807 -0.1489236 0.8223274 0.5483134 -0.1488349 0.8229221 0.5126942 -0.2428573 0.8235077 0.5114555 -0.2424962 0.824384 0.4591088 -0.3288765 0.8252633 0.4578451 -0.3281637 0.8262485 0.390442 -0.4040623 0.8272175 0.3891747 -0.4030181 0.8283233 0.3086727 -0.4658805 0.8292627 0.3077487 -0.4647562 0.8302365 0.2168753 -0.5123357 0.8309497 0.2162639 -0.511361 0.831709 0.1202007 -0.541184 0.8322691 0.1199572 -0.5405924 0.8326886 0.04295617 -0.1846663 0.9818621 0.04316812 -0.1853898 0.9817165 0.07822787 -0.174519 0.9815414 0.07891845 -0.1756697 0.9812809 0.1117511 -0.1585013 0.9810143 0.1129103 -0.159841 0.9806641 0.1415607 -0.1374144 0.9803458 0.1430373 -0.1386005 0.9799645 0.1667132 -0.1118728 0.9796383 0.1683537 -0.1127722 0.9792547 0.1863726 -0.0827403 0.978989 0.1880454 -0.08322393 0.978628 0.2002507 -0.05083703 0.9784249 0.2013657 -0.0509777 0.9781888 0.2074506 -0.01716291 0.9780949 0.2746724 -0.01448827 0.9614288 0.8945231 -0.4470218 0 0.9969177 -0.07845544 0 -0.9989466 -0.04588693 0 -0.9969117 -0.07846349 -0.003246665 -0.9870629 -0.1603124 0.00258708 -0.9551051 -0.2961485 -0.008391141 -0.9509962 -0.3089942 -0.01135605 -0.9248793 -0.3802476 -0.003186941 -0.8037613 -0.5948566 -0.01066398 -0.8424224 -0.5383856 -0.02157652 -0.8090077 -0.5877798 -0.004633069 -0.883467 -0.4684935 -1.85834e-6 -0.9042664 -0.4269689 4.98354e-6 -0.5164052 -0.8563444 0 -0.6249587 -0.7804777 -0.01677215 -0.6783559 -0.7339119 -0.03473758 -0.587785 -0.8090133 -0.002508461 -0.7006103 -0.7135441 -5.06331e-7 -0.7545675 -0.6562225 5.29371e-6 -0.4491845 -0.8934391 0 -0.3090155 -0.951056 -0.0013749 -0.3686757 -0.9293901 -0.0176742 0.2037562 -0.9790217 0 0.141995 -0.9898674 0 0.08893376 -0.9960369 -0.001152157 0.0268141 -0.9996218 -0.006119132 0 -0.9999569 -0.009283959 -0.07617998 -0.997094 -2.70694e-4 -0.2277218 -0.9737263 2.57255e-4 0.4770389 -0.8788823 0 0.4158099 -0.9094516 0 0.3090082 -0.9510323 -0.007175147 0.3367385 -0.9415201 -0.01212954 0.2734134 -0.9618831 -0.005098879 0.5580425 -0.8298044 -0.003647863 0.5877636 -0.8089857 -0.008729517 0.6617081 -0.7497616 0 0.8738028 -0.4862804 0 0.8375828 -0.5462972 -0.003804981 0.8089829 -0.5877629 -0.009030044 0.7755945 -0.6312285 -0.001966297 0.7178019 -0.6962475 0 0.9968825 -0.07890117 5.22362e-5 0.9737893 -0.2274521 -4.78198e-5 0.951017 -0.3090052 -0.009086132 0.9453762 -0.3259097 -0.006837666 0.9174084 -0.3979466 -6.29298e-4 -0.1538267 -0.8679849 0.4721646 -0.336002 -0.2029019 0.9197464 -0.9277812 -0.3697207 0.05028694 -0.002825081 -0.9959413 0.08996206 -0.07369953 -0.9747478 0.2107964 -0.03387653 -0.990564 -0.1327986 -0.5013533 -0.8638507 -0.04905933 -0.4980741 -0.8451725 0.193922 -0.4967347 -0.8342273 0.2394154 -0.1837943 -0.8684569 -0.4604372 -0.3858461 -0.9119258 0.1396927 -0.2086348 -0.9762497 -0.05837947 -0.1974431 -0.9754207 -0.09783071 -0.179332 -0.9649754 0.1914752 -0.7777978 -0.5672777 0.270604 -0.7779282 -0.5658496 0.2732068 -0.7255207 -0.6729295 0.1441724 -0.9083884 -0.4136376 0.06111067 -0.8516952 -0.3431256 0.3960809 -0.8116478 -0.3055238 0.4978787 -0.8539453 -0.5146334 0.07700711 -0.8179253 -0.5671862 0.09642702 -0.8763625 -0.1972219 0.4394229 -0.8566502 -0.1811616 0.4830432 -0.8247084 -0.1823874 -0.5353418 -0.9861924 -0.1532292 -0.0628128 -0.9953135 -0.04557865 0.08528548 -0.9985858 -0.0451138 0.02812588 -0.6631639 -0.07427167 0.7447801 -0.646784 -0.0278542 0.7621645 -0.6510849 -0.03015393 0.7584058 -0.6482722 -0.04439616 0.7601132 -0.6561511 -0.06955748 0.751417 -0.657896 -0.147053 0.7386125 -0.6151335 -0.09512662 0.7826634 -0.6228147 -0.07777309 0.7784942 -0.5947299 -0.1815392 0.7831602 -0.5725209 -0.1216945 0.8108085 -0.5849044 -0.104462 0.8043473 -0.5277317 -0.2210937 0.8201322 -0.5103507 -0.1739798 0.8421836 -0.5313048 -0.1179054 0.8389359 -0.3563031 -0.1050339 0.9284482 -0.3577635 -0.226647 0.9058899 -0.3801218 -0.1759187 0.9080529 -0.4026534 -0.1690901 0.8995993 -0.4023484 -0.1645326 0.9005802 -0.442147 -0.1710457 0.8804826 -0.4417976 -0.1689404 0.8810642 -0.4639229 -0.1562913 0.8719798 -0.3130091 -0.1858969 0.9313794 -0.3085294 -0.1440659 0.9402418 -0.2860406 -0.4149576 0.8637077 -0.08873099 -0.9617257 0.2592499 -0.1318085 -0.9227257 0.3622208 -0.2214558 -0.9168675 0.3321313 -0.2208592 -0.9174345 0.3309613 -0.3206315 -0.8996559 0.2963353 -0.31912 -0.9012287 0.2931712 -0.4162995 -0.8720023 0.2575013 -0.4138078 -0.8748564 0.2517728 -0.4947589 -0.8406093 0.2204309 -0.5289509 -0.7736545 0.3488119 -0.5922497 -0.7801104 0.2016636 -0.6526707 -0.6465822 0.3949083 -0.6605886 -0.7352005 0.1519964 -0.7109605 -0.6912682 0.1291649 -0.2158191 -0.74726 0.6285099 -0.2110325 -0.7566547 0.6188207 -0.2900361 -0.751708 0.5922956 -0.2896163 -0.7526415 0.5913149 -0.3761579 -0.7372331 0.5612421 -0.375203 -0.7397968 0.5585011 -0.4605759 -0.7141188 0.5271661 -0.4592159 -0.7186571 0.5221617 -0.5413854 -0.6831513 0.4901084 -0.539938 -0.6894487 0.482833 -0.6519572 -0.621854 0.4338772 -0.651197 -0.6367108 0.4129672 -0.7732 -0.5248092 0.3560016 -0.7738393 -0.5387335 0.3330752 -0.8690111 -0.4055281 0.28349 -0.8711767 -0.4166306 0.2597502 -0.940952 -0.2566233 0.2208029 -0.9433473 -0.2622585 0.2032647 -0.9737246 -0.1286944 0.1878784 -0.9744524 -0.1299679 0.1831693 -0.9830138 -0.04328006 0.1783557 -0.9559816 -0.01947706 0.2927795 -0.2497358 -0.5935246 0.7650887 -0.2765942 -0.5155804 0.8109701 -0.3297366 -0.512239 0.7930228 -0.3293689 -0.5134876 0.7923678 -0.3943463 -0.5019154 0.769787 -0.3937111 -0.5052685 0.7679163 -0.4592329 -0.4855626 0.7438643 -0.4586422 -0.4914023 0.7403859 -0.5225171 -0.4638675 0.715404 -0.5224214 -0.4720889 0.710076 -0.6096279 -0.4204403 0.6719999 -0.6135699 -0.4400408 0.6556646 -0.7069749 -0.3541675 0.6121699 -0.7135299 -0.3722858 0.5935305 -0.7843367 -0.2735542 0.5567622 -0.7931745 -0.2880756 0.5365507 -0.8432784 -0.1735532 0.5086855 -0.8508011 -0.1808027 0.4934045 -0.8712558 -0.08731693 0.4830002 -0.8734025 -0.08898407 0.4788005 -0.8786276 -0.03771138 0.4760161 -0.6785424 0.0070315 0.7345275 -0.7062197 -0.01058971 0.7079136 -0.9867648 2.41877e-7 0.1621583 -0.9996199 6.03979e-4 0.02756351 -0.9561913 -3.91541e-4 0.2927424 -0.7063004 5.89799e-6 0.7079123 -0.6425734 -5.79406e-4 0.766224 -0.8688498 2.53754e-4 0.495076 -0.3541116 0.002162277 0.9352008 -0.3369285 5.17684e-4 0.9415302 -0.3416266 0.00129044 0.9398349 -0.32894 4.82933e-4 0.9443508 -0.3136873 0 0.9495264 -0.4095886 3.54963e-4 0.9122704 -0.3900742 4.5464e-5 0.9207835 -0.3754009 -3.36437e-5 0.9268625 -0.4759522 4.41112e-6 0.8794713 -0.4820691 -6.39421e-4 0.876133 -0.4648939 0.002132236 0.8853639 -0.4467982 0.008780717 0.8945917 -0.4891997 0.003366827 0.8721653 -0.4366298 0.001581966 0.8996399 -0.4106035 -2.98802e-4 0.911814 -0.4656191 1.84656e-4 0.8849853 -0.492531 0.001254141 0.870294 -0.493279 8.77998e-4 0.8698707 -0.4880069 0.00462073 0.8728276 -0.4888194 0.003632366 0.8723775 -0.4870673 0.001511275 0.8733632 -0.1363505 0 0.9906607 -0.1562758 3.1269e-4 0.9877134 -0.2908721 0 0.956762 0.002942502 0 0.9999958 0.006506383 -2.08175e-4 0.9999788 0.01366335 -0.001362502 0.9999058 0.01202881 -9.92025e-4 0.9999272 0.009606122 -5.68402e-4 0.9999538 0.01204317 -6.84937e-4 0.9999274 0.01381498 -0.00138837 0.9999037 0.01431298 -0.001545369 0.9998965 0.00293076 0.003139436 0.9999908 0.004356324 0.002586901 0.9999872 0.006085336 0.001935362 0.9999797 0.00457853 -8.08237e-4 0.9999892 0.007790744 0.00138098 0.9999688 0.01005709 6.76605e-4 0.9999492 0.01235193 0 0.9999238 0.008239984 -4.29312e-4 0.999966 0.006050169 -6.55207e-4 0.9999816 0.001355767 0 0.9999992 0.002865254 0 0.9999959 0.006393492 1.09215e-4 0.9999796 0.00966227 3.11308e-4 0.9999533 0.0123943 5.60928e-4 0.9999231 0.01436805 8.00013e-4 0.9998965 0.0155133 9.60833e-4 0.9998793 0.003113746 -9.92329e-4 0.9999948 0.009730279 -1.24848e-4 0.9999527 0.01331579 5.66428e-4 0.9999113 0.01542484 9.49679e-4 0.9998806 -0.2716923 5.93833e-7 0.9623842 -0.1562885 -0.001562833 0.9877102 -0.1167328 0 0.9931634 0.9742003 0 0.2256851 0.9742001 0 0.225686 0.2256827 0 -0.9742009 0.2256827 0 -0.9742009 -0.6233 0.7815962 -0.02458924 0.03016489 0.002667129 0.9995415 0.001565814 -0.003901898 0.9999912 1 -1.95919e-6 0 1 2.27664e-6 0 -0.0174604 9.04585e-7 0.9998476 -0.01745378 1.69203e-7 0.9998478 -1.07439e-5 0 1 4.29919e-7 0 1 + + + + + + + + + + + + + + +

0 0 1 0 2 0 3 1 4 1 5 1 6 2 7 2 8 2 9 3 7 3 10 3 10 4 7 4 6 4 10 5 6 5 11 5 11 6 6 6 12 6 12 7 6 7 13 7 12 8 13 8 14 8 14 9 13 9 15 9 15 10 13 10 16 10 15 11 16 11 17 11 18 12 19 12 20 12 19 13 18 13 21 13 22 14 23 14 24 14 2 15 25 15 0 15 0 16 25 16 26 16 0 17 26 17 27 17 27 18 26 18 22 18 27 19 22 19 28 19 28 20 22 20 24 20 28 21 24 21 21 21 21 22 18 22 28 22 28 23 18 23 29 23 28 24 29 24 27 24 27 25 29 25 3 25 27 26 3 26 0 26 0 27 3 27 5 27 0 28 5 28 1 28 30 29 17 29 20 29 20 30 17 30 16 30 20 31 16 31 18 31 18 32 16 32 13 32 18 33 13 33 29 33 29 34 13 34 6 34 29 35 6 35 3 35 3 36 6 36 8 36 3 37 8 37 4 37 31 38 2 38 32 38 32 38 2 38 33 38 34 39 35 39 36 39 9 40 37 40 7 40 7 41 37 41 38 41 36 42 33 42 2 42 2 43 1 43 36 43 36 44 1 44 5 44 36 45 5 45 34 45 34 46 5 46 4 46 34 47 4 47 38 47 38 48 4 48 8 48 38 49 8 49 7 49 39 50 40 50 41 50 42 51 43 51 44 51 42 52 44 52 45 52 45 53 44 53 46 53 45 54 46 54 47 54 47 55 46 55 48 55 47 56 48 56 49 56 49 57 48 57 50 57 49 58 50 58 51 58 51 59 50 59 52 59 51 60 52 60 53 60 53 61 52 61 54 61 53 62 54 62 55 62 54 63 56 63 55 63 55 64 56 64 57 64 55 65 57 65 58 65 57 66 59 66 58 66 58 67 59 67 60 67 58 68 60 68 61 68 39 69 41 69 62 69 40 70 63 70 64 70 64 71 63 71 65 71 64 72 65 72 66 72 66 73 65 73 67 73 66 74 67 74 68 74 68 75 67 75 69 75 68 76 69 76 70 76 70 77 69 77 71 77 70 78 71 78 72 78 72 79 71 79 73 79 72 80 73 80 74 80 74 81 73 81 75 81 74 82 75 82 76 82 76 83 75 83 77 83 76 84 77 84 78 84 79 85 42 85 80 85 80 86 42 86 45 86 80 87 45 87 81 87 81 88 45 88 47 88 81 89 47 89 82 89 82 90 47 90 49 90 82 91 49 91 83 91 83 92 49 92 51 92 83 93 51 93 84 93 84 94 51 94 53 94 84 95 53 95 85 95 85 96 53 96 55 96 85 97 55 97 86 97 86 98 55 98 58 98 87 99 88 99 61 99 61 100 88 100 89 100 61 101 89 101 58 101 58 102 89 102 90 102 58 103 90 103 86 103 91 104 87 104 41 104 41 105 87 105 61 105 41 106 61 106 62 106 62 107 61 107 60 107 40 108 64 108 41 108 41 109 64 109 92 109 41 110 92 110 91 110 76 111 93 111 74 111 74 112 93 112 94 112 74 113 94 113 72 113 72 114 94 114 95 114 72 115 95 115 70 115 70 116 95 116 96 116 70 117 96 117 68 117 68 118 96 118 97 118 68 119 97 119 66 119 66 120 97 120 98 120 66 121 98 121 64 121 64 122 98 122 99 122 64 123 99 123 92 123 100 124 101 124 102 124 103 125 104 125 105 125 103 126 105 126 106 126 105 127 107 127 108 127 108 128 109 128 105 128 105 129 109 129 110 129 105 130 110 130 106 130 100 131 102 131 111 131 111 132 102 132 112 132 111 133 112 133 113 133 113 134 112 134 114 134 113 135 114 135 115 135 115 136 114 136 116 136 115 137 116 137 117 137 117 138 116 138 118 138 117 139 118 139 119 139 119 140 118 140 120 140 119 141 120 141 121 141 121 142 120 142 122 142 121 143 122 143 123 143 123 144 122 144 124 144 123 145 124 145 125 145 125 146 124 146 126 146 125 147 126 147 127 147 127 148 126 148 128 148 127 149 128 149 129 149 129 150 130 150 131 150 131 151 130 151 132 151 131 152 132 152 133 152 133 153 132 153 134 153 133 154 134 154 135 154 135 155 134 155 136 155 135 156 136 156 137 156 137 157 136 157 138 157 137 158 138 158 139 158 139 159 138 159 140 159 139 160 140 160 141 160 142 161 143 161 144 161 144 162 143 162 145 162 144 163 145 163 140 163 140 164 145 164 146 164 140 165 146 165 141 165 147 166 148 166 149 166 150 167 151 167 152 167 152 168 151 168 153 168 152 169 153 169 147 169 147 170 149 170 152 170 152 171 149 171 154 171 152 172 154 172 142 172 142 173 154 173 155 173 142 174 155 174 143 174 143 175 155 175 156 175 143 176 156 176 145 176 94 177 93 177 157 177 91 178 92 178 130 178 130 179 92 179 99 179 130 180 99 180 132 180 132 181 99 181 98 181 132 182 98 182 134 182 134 183 98 183 97 183 134 184 97 184 136 184 136 185 97 185 96 185 136 186 96 186 138 186 138 187 96 187 95 187 138 188 95 188 140 188 140 189 95 189 94 189 140 190 94 190 144 190 144 191 94 191 157 191 144 192 157 192 142 192 129 193 128 193 130 193 130 194 128 194 87 194 130 195 87 195 91 195 112 196 81 196 114 196 114 197 81 197 82 197 114 198 82 198 116 198 116 199 82 199 83 199 116 200 83 200 118 200 118 201 83 201 84 201 118 202 84 202 120 202 120 203 84 203 85 203 120 204 85 204 122 204 122 205 85 205 86 205 122 206 86 206 124 206 124 207 86 207 90 207 124 208 90 208 126 208 126 209 90 209 89 209 126 210 89 210 128 210 128 211 89 211 88 211 128 212 88 212 87 212 158 213 79 213 80 213 107 214 105 214 101 214 101 215 105 215 159 215 101 216 159 216 102 216 102 217 159 217 158 217 102 218 158 218 112 218 112 219 158 219 80 219 112 220 80 220 81 220 160 221 161 221 162 221 162 222 161 222 163 222 162 223 163 223 164 223 164 224 163 224 165 224 164 225 165 225 166 225 166 226 165 226 167 226 166 227 167 227 168 227 168 228 167 228 169 228 168 229 169 229 170 229 171 230 172 230 173 230 174 231 175 231 176 231 177 232 178 232 179 232 179 233 178 233 180 233 180 234 178 234 181 234 181 235 178 235 182 235 181 236 182 236 183 236 183 237 182 237 184 237 184 238 182 238 185 238 184 239 185 239 186 239 186 240 185 240 163 240 186 241 163 241 161 241 187 242 169 242 167 242 167 243 188 243 187 243 187 244 188 244 189 244 187 245 189 245 190 245 190 246 189 246 176 246 190 247 176 247 191 247 191 248 176 248 175 248 191 249 175 249 192 249 167 250 165 250 188 250 188 251 165 251 193 251 188 252 193 252 189 252 189 253 193 253 194 253 189 254 194 254 176 254 176 255 194 255 173 255 176 256 173 256 174 256 174 257 173 257 172 257 165 258 163 258 193 258 193 259 163 259 185 259 193 260 185 260 194 260 194 261 185 261 182 261 194 262 182 262 173 262 173 263 182 263 178 263 173 264 178 264 171 264 171 265 178 265 177 265 179 266 195 266 177 266 177 266 195 266 196 266 177 267 196 267 171 267 197 268 198 268 199 268 199 269 198 269 200 269 198 270 201 270 200 270 200 271 201 271 202 271 200 272 202 272 203 272 203 273 204 273 200 273 200 274 204 274 205 274 200 275 205 275 206 275 196 267 207 267 171 267 171 276 207 276 208 276 171 276 208 276 172 276 172 277 208 277 200 277 172 277 200 277 174 277 174 278 200 278 206 278 206 279 209 279 174 279 174 280 209 280 210 280 174 274 210 274 211 274 212 268 192 268 175 268 211 273 213 273 174 273 174 272 213 272 214 272 174 281 214 281 175 281 175 282 214 282 215 282 175 283 215 283 212 283 216 284 217 284 218 284 218 285 217 285 219 285 218 286 219 286 220 286 220 287 219 287 221 287 220 288 221 288 222 288 222 289 221 289 223 289 222 290 223 290 224 290 224 291 223 291 225 291 224 292 225 292 226 292 226 293 225 293 227 293 195 294 179 294 216 294 216 294 179 294 217 294 161 295 228 295 186 295 186 296 228 296 229 296 186 297 229 297 184 297 184 298 229 298 230 298 184 299 230 299 183 299 183 300 230 300 231 300 183 301 231 301 181 301 181 302 231 302 232 302 181 303 232 303 180 303 180 304 232 304 233 304 180 305 233 305 179 305 179 306 233 306 217 306 234 307 235 307 236 307 237 308 238 308 239 308 240 309 227 309 225 309 241 310 242 310 243 310 243 311 242 311 240 311 237 312 239 312 244 312 244 313 245 313 246 313 246 314 245 314 247 314 234 315 236 315 248 315 248 316 236 316 249 316 248 317 249 317 250 317 250 318 249 318 251 318 250 319 251 319 252 319 252 320 251 320 229 320 252 321 229 321 228 321 238 322 241 322 239 322 239 323 241 323 243 323 239 324 243 324 253 324 253 325 243 325 254 325 253 326 254 326 255 326 255 327 254 327 256 327 255 328 251 328 253 328 253 329 251 329 249 329 253 330 249 330 239 330 239 331 249 331 236 331 239 332 236 332 244 332 244 333 236 333 235 333 244 334 235 334 245 334 240 335 225 335 243 335 243 336 225 336 223 336 243 337 223 337 254 337 254 338 223 338 221 338 254 339 221 339 256 339 256 340 221 340 219 340 256 341 219 341 217 341 217 342 233 342 256 342 256 343 233 343 232 343 256 344 232 344 255 344 255 345 232 345 231 345 255 346 231 346 251 346 251 347 231 347 230 347 251 348 230 348 229 348 257 349 258 349 259 349 259 350 258 350 260 350 261 351 262 351 263 351 263 352 262 352 264 352 263 353 264 353 258 353 258 354 264 354 265 354 258 355 265 355 260 355 261 356 263 356 266 356 266 357 263 357 267 357 266 358 267 358 268 358 269 359 270 359 268 359 268 360 270 360 271 360 268 361 271 361 266 361 228 362 160 362 252 362 252 363 160 363 269 363 252 364 269 364 250 364 250 365 269 365 248 365 248 366 269 366 268 366 248 367 268 367 234 367 234 368 268 368 267 368 234 369 267 369 235 369 272 370 247 370 245 370 273 371 274 371 257 371 257 372 274 372 275 372 257 373 275 373 258 373 258 374 275 374 276 374 258 375 276 375 263 375 263 376 276 376 272 376 263 377 272 377 267 377 267 378 272 378 245 378 267 379 245 379 235 379 162 380 269 380 160 380 277 381 168 381 170 381 271 382 270 382 278 382 278 383 270 383 269 383 278 384 269 384 279 384 279 385 269 385 162 385 279 386 162 386 164 386 280 387 261 387 266 387 281 388 265 388 264 388 259 389 260 389 282 389 282 390 260 390 283 390 259 391 282 391 257 391 257 392 282 392 284 392 257 393 284 393 273 393 170 394 285 394 277 394 277 395 285 395 286 395 277 396 286 396 287 396 287 397 286 397 288 397 287 398 288 398 281 398 281 399 288 399 283 399 281 400 283 400 265 400 265 401 283 401 260 401 164 402 166 402 279 402 279 403 166 403 289 403 279 404 289 404 278 404 278 405 289 405 280 405 278 406 280 406 271 406 271 407 280 407 266 407 264 408 262 408 281 408 281 409 262 409 261 409 281 410 261 410 287 410 287 411 261 411 280 411 287 412 280 412 277 412 277 413 280 413 289 413 277 414 289 414 168 414 168 415 289 415 166 415 290 416 291 416 292 416 292 416 291 416 293 416 292 417 293 417 294 417 294 418 293 418 295 418 294 419 295 419 296 419 296 420 295 420 297 420 296 38 297 38 298 38 298 38 297 38 299 38 298 421 299 421 300 421 300 422 299 422 301 422 300 423 301 423 302 423 302 424 301 424 303 424 302 425 303 425 304 425 304 425 303 425 305 425 306 426 307 426 291 426 291 426 307 426 308 426 309 426 305 426 310 426 310 426 305 426 311 426 303 427 301 427 305 427 305 426 301 426 299 426 305 428 299 428 311 428 311 426 299 426 312 426 299 426 297 426 295 426 308 426 312 426 291 426 291 429 312 429 299 429 291 426 299 426 293 426 293 430 299 430 295 430 304 431 305 431 309 431 313 431 314 431 309 431 309 431 314 431 315 431 309 431 315 431 304 431 306 432 316 432 307 432 307 433 316 433 317 433 307 434 317 434 308 434 308 434 317 434 318 434 308 435 318 435 312 435 312 436 318 436 319 436 312 437 319 437 311 437 311 438 319 438 320 438 311 439 320 439 310 439 310 440 320 440 321 440 310 441 321 441 309 441 309 442 321 442 313 442 291 443 290 443 306 443 306 443 290 443 322 443 306 443 322 443 316 443 316 443 322 443 323 443 315 444 314 444 324 444 324 445 314 445 325 445 324 446 325 446 326 446 326 447 325 447 327 447 326 448 327 448 328 448 328 448 327 448 329 448 328 294 329 294 330 294 330 294 329 294 331 294 330 449 331 449 332 449 332 449 331 449 333 449 332 450 333 450 334 450 334 451 333 451 335 451 334 452 335 452 322 452 322 453 335 453 323 453 322 454 336 454 334 454 334 455 336 455 337 455 334 456 337 456 332 456 332 457 337 457 338 457 332 458 338 458 330 458 330 459 338 459 339 459 330 460 339 460 328 460 328 461 339 461 340 461 328 462 340 462 326 462 326 463 340 463 341 463 326 464 341 464 324 464 324 465 341 465 342 465 324 466 342 466 315 466 315 467 342 467 343 467 290 468 344 468 322 468 322 468 344 468 336 468 304 469 345 469 302 469 302 470 345 470 346 470 302 471 346 471 300 471 300 472 346 472 347 472 300 473 347 473 298 473 298 474 347 474 348 474 298 475 348 475 296 475 296 476 348 476 349 476 296 477 349 477 294 477 294 478 349 478 350 478 294 479 350 479 292 479 292 480 350 480 351 480 292 481 351 481 290 481 290 482 351 482 344 482 315 483 343 483 304 483 304 484 343 484 345 484 352 416 353 416 354 416 354 416 353 416 355 416 354 417 355 417 356 417 356 418 355 418 357 418 356 419 357 419 358 419 358 420 357 420 359 420 358 38 359 38 360 38 360 38 359 38 361 38 360 421 361 421 362 421 362 422 361 422 363 422 362 423 363 423 364 423 364 424 363 424 365 424 364 425 365 425 366 425 366 425 365 425 367 425 368 426 369 426 353 426 353 426 369 426 370 426 371 426 367 426 372 426 372 426 367 426 373 426 365 485 363 485 367 485 367 426 363 426 361 426 367 486 361 486 373 486 373 426 361 426 374 426 361 426 359 426 357 426 370 426 374 426 353 426 353 429 374 429 361 429 353 426 361 426 355 426 355 487 361 487 357 487 366 431 367 431 371 431 375 431 376 431 371 431 371 431 376 431 377 431 371 431 377 431 366 431 368 432 378 432 369 432 369 433 378 433 379 433 369 488 379 488 370 488 370 489 379 489 380 489 370 490 380 490 374 490 374 491 380 491 381 491 374 492 381 492 373 492 373 493 381 493 382 493 373 494 382 494 372 494 372 494 382 494 383 494 372 441 383 441 371 441 371 442 383 442 375 442 353 443 352 443 368 443 368 443 352 443 384 443 368 443 384 443 378 443 378 443 384 443 385 443 377 444 376 444 386 444 386 445 376 445 387 445 386 446 387 446 388 446 388 447 387 447 389 447 388 448 389 448 390 448 390 448 389 448 391 448 390 294 391 294 392 294 392 294 391 294 393 294 392 449 393 449 394 449 394 449 393 449 395 449 394 450 395 450 396 450 396 451 395 451 397 451 396 452 397 452 384 452 384 453 397 453 385 453 384 495 398 495 396 495 396 496 398 496 399 496 396 456 399 456 394 456 394 497 399 497 400 497 394 498 400 498 392 498 392 499 400 499 401 499 392 500 401 500 390 500 390 461 401 461 402 461 390 501 402 501 388 501 388 502 402 502 403 502 388 503 403 503 386 503 386 504 403 504 404 504 386 466 404 466 377 466 377 505 404 505 405 505 352 506 406 506 384 506 384 468 406 468 398 468 366 507 407 507 364 507 364 508 407 508 408 508 364 509 408 509 362 509 362 472 408 472 409 472 362 510 409 510 360 510 360 511 409 511 410 511 360 512 410 512 358 512 358 513 410 513 411 513 358 514 411 514 356 514 356 515 411 515 412 515 356 479 412 479 354 479 354 516 412 516 413 516 354 517 413 517 352 517 352 518 413 518 406 518 377 483 405 483 366 483 366 484 405 484 407 484 414 519 415 519 416 519 416 519 415 519 417 519 416 520 417 520 418 520 418 520 417 520 419 520 418 521 419 521 420 521 420 522 419 522 421 522 420 38 421 38 422 38 422 38 421 38 423 38 422 523 423 523 424 523 424 524 423 524 425 524 424 423 425 423 426 423 426 424 425 424 427 424 426 425 427 425 428 425 428 425 427 425 429 425 430 426 431 426 429 426 430 426 429 426 432 426 433 426 434 426 415 426 415 426 434 426 435 426 423 426 421 426 419 426 427 427 425 427 429 427 429 426 425 426 423 426 429 525 423 525 432 525 432 426 423 426 436 426 435 426 436 426 415 426 415 526 436 526 423 526 415 426 423 426 417 426 417 527 423 527 419 527 428 431 429 431 431 431 437 431 438 431 431 431 431 431 438 431 439 431 431 431 439 431 428 431 433 528 440 528 434 528 434 529 440 529 441 529 434 488 441 488 435 488 435 489 441 489 442 489 435 490 442 490 436 490 436 491 442 491 443 491 436 492 443 492 432 492 432 493 443 493 444 493 432 439 444 439 430 439 430 440 444 440 445 440 430 530 445 530 431 530 431 531 445 531 437 531 415 443 414 443 433 443 433 443 414 443 446 443 433 443 446 443 440 443 440 443 446 443 447 443 439 444 438 444 448 444 448 445 438 445 449 445 448 446 449 446 450 446 450 447 449 447 451 447 450 532 451 532 452 532 452 533 451 533 453 533 452 294 453 294 454 294 454 294 453 294 455 294 454 534 455 534 456 534 456 535 455 535 457 535 456 536 457 536 458 536 458 537 457 537 459 537 458 538 459 538 446 538 446 538 459 538 447 538 446 539 460 539 458 539 458 540 460 540 461 540 458 541 461 541 456 541 456 542 461 542 462 542 456 543 462 543 454 543 454 544 462 544 463 544 454 545 463 545 452 545 452 546 463 546 464 546 452 547 464 547 450 547 450 548 464 548 465 548 450 503 465 503 448 503 448 465 465 465 466 465 448 549 466 549 439 549 439 550 466 550 467 550 414 551 468 551 446 551 446 468 468 468 460 468 428 552 469 552 426 552 426 553 469 553 470 553 426 471 470 471 424 471 424 554 470 554 471 554 424 555 471 555 422 555 422 511 471 511 472 511 422 556 472 556 420 556 420 557 472 557 473 557 420 558 473 558 418 558 418 559 473 559 474 559 418 560 474 560 416 560 416 561 474 561 475 561 416 562 475 562 414 562 414 563 475 563 468 563 439 564 467 564 428 564 428 564 467 564 469 564 476 416 477 416 478 416 478 416 477 416 479 416 478 417 479 417 480 417 480 418 479 418 481 418 480 565 481 565 482 565 482 566 481 566 483 566 482 38 483 38 484 38 484 38 483 38 485 38 484 567 485 567 486 567 486 568 485 568 487 568 486 423 487 423 488 423 488 424 487 424 489 424 488 425 489 425 490 425 490 425 489 425 491 425 492 426 493 426 491 426 492 426 491 426 494 426 495 426 496 426 477 426 477 569 496 569 497 569 485 570 483 570 481 570 489 485 487 485 491 485 491 571 487 571 485 571 491 572 485 572 494 572 494 573 485 573 498 573 497 426 498 426 477 426 477 426 498 426 485 426 477 426 485 426 479 426 479 430 485 430 481 430 490 431 491 431 493 431 499 431 500 431 493 431 493 431 500 431 501 431 493 431 501 431 490 431 495 432 502 432 496 432 496 433 502 433 503 433 496 574 503 574 497 574 497 575 503 575 504 575 497 490 504 490 498 490 498 491 504 491 505 491 498 576 505 576 494 576 494 576 505 576 506 576 494 439 506 439 492 439 492 440 506 440 507 440 492 577 507 577 493 577 493 578 507 578 499 578 477 443 476 443 495 443 495 443 476 443 508 443 495 443 508 443 502 443 502 443 508 443 509 443 501 444 500 444 510 444 510 445 500 445 511 445 510 446 511 446 512 446 512 447 511 447 513 447 512 579 513 579 514 579 514 580 513 580 515 580 514 294 515 294 516 294 516 294 515 294 517 294 516 581 517 581 518 581 518 582 517 582 519 582 518 450 519 450 520 450 520 451 519 451 521 451 520 452 521 452 508 452 508 453 521 453 509 453 508 454 522 454 520 454 520 496 522 496 523 496 520 583 523 583 518 583 518 584 523 584 524 584 518 585 524 585 516 585 516 586 524 586 525 586 516 587 525 587 514 587 514 588 525 588 526 588 514 589 526 589 512 589 512 590 526 590 527 590 512 591 527 591 510 591 510 592 527 592 528 592 510 593 528 593 501 593 501 594 528 594 529 594 476 551 530 551 508 551 508 551 530 551 522 551 490 552 531 552 488 552 488 595 531 595 532 595 488 471 532 471 486 471 486 596 532 596 533 596 486 597 533 597 484 597 484 598 533 598 534 598 484 599 534 599 482 599 482 600 534 600 535 600 482 601 535 601 480 601 480 602 535 602 536 602 480 603 536 603 478 603 478 604 536 604 537 604 478 605 537 605 476 605 476 606 537 606 530 606 501 564 529 564 490 564 490 484 529 484 531 484 538 416 539 416 540 416 540 416 539 416 541 416 540 417 541 417 542 417 542 418 541 418 543 418 542 565 543 565 544 565 544 566 543 566 545 566 544 38 545 38 546 38 546 38 545 38 547 38 546 421 547 421 548 421 548 422 547 422 549 422 548 423 549 423 550 423 550 424 549 424 551 424 550 425 551 425 552 425 552 425 551 425 553 425 554 426 555 426 539 426 539 607 555 607 556 607 557 426 553 426 558 426 558 426 553 426 559 426 551 570 549 570 553 570 553 426 549 426 547 426 553 426 547 426 559 426 559 573 547 573 560 573 547 608 545 608 543 608 556 426 560 426 539 426 539 609 560 609 547 609 539 426 547 426 541 426 541 487 547 487 543 487 552 431 553 431 557 431 561 431 562 431 557 431 557 431 562 431 563 431 557 431 563 431 552 431 554 432 564 432 555 432 555 433 564 433 565 433 555 574 565 574 556 574 556 575 565 575 566 575 556 610 566 610 560 610 560 610 566 610 567 610 560 576 567 576 559 576 559 576 567 576 568 576 559 611 568 611 558 611 558 612 568 612 569 612 558 441 569 441 557 441 557 442 569 442 561 442 539 443 538 443 554 443 554 443 538 443 570 443 554 443 570 443 564 443 564 443 570 443 571 443 563 444 562 444 572 444 572 445 562 445 573 445 572 446 573 446 574 446 574 447 573 447 575 447 574 448 575 448 576 448 576 448 575 448 577 448 576 294 577 294 578 294 578 294 577 294 579 294 578 581 579 581 580 581 580 582 579 582 581 582 580 450 581 450 582 450 582 451 581 451 583 451 582 452 583 452 570 452 570 453 583 453 571 453 570 613 584 613 582 613 582 614 584 614 585 614 582 583 585 583 580 583 580 615 585 615 586 615 580 585 586 585 578 585 578 616 586 616 587 616 578 617 587 617 576 617 576 588 587 588 588 588 576 618 588 618 574 618 574 619 588 619 589 619 574 591 589 591 572 591 572 620 589 620 590 620 572 621 590 621 563 621 563 622 590 622 591 622 538 551 592 551 570 551 570 551 592 551 584 551 552 623 593 623 550 623 550 624 593 624 594 624 550 471 594 471 548 471 548 625 594 625 595 625 548 626 595 626 546 626 546 598 595 598 596 598 546 599 596 599 544 599 544 627 596 627 597 627 544 601 597 601 542 601 542 628 597 628 598 628 542 479 598 479 540 479 540 629 598 629 599 629 540 630 599 630 538 630 538 631 599 631 592 631 563 564 591 564 552 564 552 483 591 483 593 483 600 632 601 632 602 632 602 633 601 633 603 633 602 634 603 634 604 634 604 635 603 635 605 635 604 565 605 565 606 565 606 566 605 566 607 566 606 38 607 38 608 38 608 38 607 38 609 38 608 567 609 567 610 567 610 568 609 568 611 568 610 423 611 423 612 423 612 424 611 424 613 424 612 425 613 425 614 425 614 425 613 425 615 425 616 636 601 636 617 636 617 426 601 426 618 426 619 426 615 426 620 426 620 426 615 426 621 426 609 637 607 637 605 637 613 570 611 570 615 570 615 638 611 638 609 638 615 639 609 639 621 639 621 640 609 640 622 640 616 426 622 426 601 426 601 426 622 426 609 426 601 426 609 426 603 426 603 426 609 426 605 426 614 431 615 431 619 431 623 431 624 431 619 431 619 431 624 431 625 431 619 431 625 431 614 431 618 641 626 641 617 641 617 642 626 642 627 642 617 488 627 488 616 488 616 489 627 489 628 489 616 490 628 490 622 490 622 491 628 491 629 491 622 576 629 576 621 576 621 576 629 576 630 576 621 439 630 439 620 439 620 440 630 440 631 440 620 577 631 577 619 577 619 578 631 578 623 578 601 443 600 443 618 443 618 443 600 443 632 443 618 443 632 443 626 443 626 443 632 443 633 443 625 444 624 444 634 444 634 445 624 445 635 445 634 446 635 446 636 446 636 447 635 447 637 447 636 579 637 579 638 579 638 580 637 580 639 580 638 294 639 294 640 294 640 294 639 294 641 294 640 581 641 581 642 581 642 582 641 582 643 582 642 643 643 643 644 643 644 644 643 644 645 644 644 645 645 645 632 645 632 645 645 645 633 645 632 646 646 646 644 646 644 647 646 647 647 647 644 648 647 648 642 648 642 497 647 497 648 497 642 649 648 649 640 649 640 650 648 650 649 650 640 651 649 651 638 651 638 652 649 652 650 652 638 653 650 653 636 653 636 654 650 654 651 654 636 503 651 503 634 503 634 655 651 655 652 655 634 656 652 656 625 656 625 594 652 594 653 594 600 551 654 551 632 551 632 551 654 551 646 551 614 657 655 657 612 657 612 658 655 658 656 658 612 471 656 471 610 471 610 625 656 625 657 625 610 659 657 659 608 659 608 660 657 660 658 660 608 661 658 661 606 661 606 662 658 662 659 662 606 663 659 663 604 663 604 664 659 664 660 664 604 665 660 665 602 665 602 516 660 516 661 516 602 666 661 666 600 666 600 667 661 667 654 667 625 668 653 668 614 668 614 564 653 564 655 564 662 669 663 669 664 669 664 670 663 670 665 670 664 671 665 671 666 671 666 671 665 671 667 671 666 565 667 565 668 565 668 566 667 566 669 566 668 38 669 38 670 38 670 38 669 38 671 38 670 567 671 567 672 567 672 568 671 568 673 568 672 672 673 672 674 672 674 672 673 672 675 672 674 673 675 673 676 673 676 674 675 674 677 674 678 426 679 426 663 426 663 426 679 426 680 426 681 426 677 426 682 426 682 426 677 426 683 426 671 675 669 675 667 675 675 426 673 426 677 426 677 676 673 676 671 676 677 639 671 639 683 639 683 573 671 573 684 573 680 426 684 426 663 426 663 426 684 426 671 426 663 426 671 426 665 426 665 487 671 487 667 487 676 431 677 431 681 431 685 431 686 431 681 431 681 431 686 431 687 431 681 431 687 431 676 431 678 641 688 641 679 641 679 642 688 642 689 642 679 677 689 677 680 677 680 677 689 677 690 677 680 610 690 610 684 610 684 610 690 610 691 610 684 576 691 576 683 576 683 576 691 576 692 576 683 611 692 611 682 611 682 612 692 612 693 612 682 678 693 678 681 678 681 679 693 679 685 679 663 443 662 443 678 443 678 443 662 443 694 443 678 443 694 443 688 443 688 443 694 443 695 443 687 680 686 680 696 680 696 680 686 680 697 680 696 681 697 681 698 681 698 682 697 682 699 682 698 579 699 579 700 579 700 580 699 580 701 580 700 294 701 294 702 294 702 294 701 294 703 294 702 581 703 581 704 581 704 582 703 582 705 582 704 683 705 683 706 683 706 684 705 684 707 684 706 685 707 685 694 685 694 685 707 685 695 685 694 686 708 686 706 686 706 687 708 687 709 687 706 688 709 688 704 688 704 497 709 497 710 497 704 689 710 689 702 689 702 650 710 650 711 650 702 617 711 617 700 617 700 690 711 690 712 690 700 589 712 589 698 589 698 691 712 691 713 691 698 692 713 692 696 692 696 693 713 693 714 693 696 694 714 694 687 694 687 695 714 695 715 695 662 551 716 551 694 551 694 551 716 551 708 551 676 696 717 696 674 696 674 697 717 697 718 697 674 698 718 698 672 698 672 699 718 699 719 699 672 700 719 700 670 700 670 701 719 701 720 701 670 702 720 702 668 702 668 662 720 662 721 662 668 601 721 601 666 601 666 602 721 602 722 602 666 703 722 703 664 703 664 704 722 704 723 704 664 705 723 705 662 705 662 667 723 667 716 667 687 564 715 564 676 564 676 564 715 564 717 564 724 669 725 669 726 669 726 670 725 670 727 670 726 671 727 671 728 671 728 671 727 671 729 671 728 565 729 565 730 565 730 566 729 566 731 566 730 38 731 38 732 38 732 38 731 38 733 38 732 567 733 567 734 567 734 568 733 568 735 568 734 672 735 672 736 672 736 672 735 672 737 672 736 673 737 673 738 673 738 674 737 674 739 674 740 426 741 426 739 426 740 426 739 426 742 426 743 426 725 426 744 426 744 426 725 426 745 426 733 675 731 675 729 675 737 426 735 426 739 426 739 706 735 706 733 706 739 572 733 572 742 572 742 707 733 707 746 707 743 426 746 426 725 426 725 426 746 426 733 426 725 426 733 426 727 426 727 708 733 708 729 708 738 431 739 431 741 431 747 431 748 431 741 431 741 431 748 431 749 431 741 431 749 431 738 431 745 709 750 709 744 709 744 710 750 710 751 710 744 574 751 574 743 574 743 575 751 575 752 575 743 610 752 610 746 610 746 610 752 610 753 610 746 576 753 576 742 576 742 576 753 576 754 576 742 711 754 711 740 711 740 711 754 711 755 711 740 577 755 577 741 577 741 578 755 578 747 578 725 443 724 443 745 443 745 443 724 443 756 443 745 443 756 443 750 443 750 443 756 443 757 443 749 680 748 680 758 680 758 680 748 680 759 680 758 681 759 681 760 681 760 682 759 682 761 682 760 579 761 579 762 579 762 580 761 580 763 580 762 294 763 294 764 294 764 294 763 294 765 294 764 581 765 581 766 581 766 582 765 582 767 582 766 683 767 683 768 683 768 684 767 684 769 684 768 685 769 685 756 685 756 685 769 685 757 685 756 712 770 712 768 712 768 713 770 713 771 713 768 714 771 714 766 714 766 715 771 715 772 715 766 716 772 716 764 716 764 717 772 717 773 717 764 617 773 617 762 617 762 690 773 690 774 690 762 589 774 589 760 589 760 590 774 590 775 590 760 718 775 718 758 718 758 719 775 719 776 719 758 694 776 694 749 694 749 594 776 594 777 594 724 551 778 551 756 551 756 551 778 551 770 551 738 720 779 720 736 720 736 721 779 721 780 721 736 698 780 698 734 698 734 625 780 625 781 625 734 722 781 722 732 722 732 598 781 598 782 598 732 702 782 702 730 702 730 662 782 662 783 662 730 601 783 601 728 601 728 723 783 723 784 723 728 703 784 703 726 703 726 724 784 724 785 724 726 705 785 705 724 705 724 725 785 725 778 725 749 564 777 564 738 564 738 564 777 564 779 564 786 416 787 416 788 416 788 416 787 416 789 416 788 417 789 417 790 417 790 418 789 418 791 418 790 565 791 565 792 565 792 566 791 566 793 566 792 38 793 38 794 38 794 38 793 38 795 38 794 567 795 567 796 567 796 568 795 568 797 568 796 726 797 726 798 726 798 727 797 727 799 727 798 728 799 728 800 728 800 729 799 729 801 729 802 730 787 730 803 730 803 426 787 426 804 426 805 426 801 426 806 426 806 426 801 426 807 426 795 608 793 608 791 608 799 570 797 570 801 570 801 731 797 731 795 731 801 732 795 732 807 732 807 426 795 426 808 426 802 426 808 426 787 426 787 733 808 733 795 733 787 426 795 426 789 426 789 734 795 734 791 734 800 431 801 431 805 431 809 431 810 431 805 431 805 431 810 431 811 431 805 431 811 431 800 431 804 641 812 641 803 641 803 642 812 642 813 642 803 488 813 488 802 488 802 489 813 489 814 489 802 610 814 610 808 610 808 610 814 610 815 610 808 437 815 437 807 437 807 438 815 438 816 438 807 439 816 439 806 439 806 440 816 440 817 440 806 577 817 577 805 577 805 578 817 578 809 578 787 443 786 443 804 443 804 443 786 443 818 443 804 443 818 443 812 443 812 443 818 443 819 443 811 735 810 735 820 735 820 735 810 735 821 735 820 736 821 736 822 736 822 737 821 737 823 737 822 579 823 579 824 579 824 580 823 580 825 580 824 294 825 294 826 294 826 294 825 294 827 294 826 581 827 581 828 581 828 582 827 582 829 582 828 450 829 450 830 450 830 451 829 451 831 451 830 452 831 452 818 452 818 453 831 453 819 453 818 738 832 738 830 738 830 739 832 739 833 739 830 583 833 583 828 583 828 740 833 740 834 740 828 741 834 741 826 741 826 742 834 742 835 742 826 743 835 743 824 743 824 690 835 690 836 690 824 744 836 744 822 744 822 745 836 745 837 745 822 746 837 746 820 746 820 620 837 620 838 620 820 747 838 747 811 747 811 594 838 594 839 594 786 748 840 748 818 748 818 551 840 551 832 551 800 749 841 749 798 749 798 595 841 595 842 595 798 750 842 750 796 750 796 596 842 596 843 596 796 722 843 722 794 722 794 660 843 660 844 660 794 751 844 751 792 751 792 752 844 752 845 752 792 753 845 753 790 753 790 478 845 478 846 478 790 754 846 754 788 754 788 755 846 755 847 755 788 756 847 756 786 756 786 667 847 667 840 667 811 564 839 564 800 564 800 564 839 564 841 564 848 416 849 416 850 416 850 416 849 416 851 416 850 417 851 417 852 417 852 418 851 418 853 418 852 419 853 419 854 419 854 420 853 420 855 420 854 38 855 38 856 38 856 38 855 38 857 38 856 567 857 567 858 567 858 568 857 568 859 568 858 423 859 423 860 423 860 424 859 424 861 424 860 425 861 425 862 425 862 425 861 425 863 425 864 426 865 426 863 426 864 426 863 426 866 426 867 757 849 757 868 757 868 426 849 426 869 426 857 426 855 426 853 426 867 426 870 426 849 426 849 426 870 426 857 426 849 426 857 426 851 426 851 426 857 426 853 426 861 570 859 570 863 570 863 758 859 758 857 758 863 759 857 759 866 759 866 573 857 573 870 573 862 431 863 431 865 431 871 431 872 431 865 431 865 431 872 431 873 431 865 431 873 431 862 431 869 432 874 432 868 432 868 433 874 433 875 433 868 574 875 574 867 574 867 575 875 575 876 575 867 610 876 610 870 610 870 610 876 610 877 610 870 576 877 576 866 576 866 576 877 576 878 576 866 611 878 611 864 611 864 612 878 612 879 612 864 441 879 441 865 441 865 442 879 442 871 442 849 443 848 443 869 443 869 443 848 443 880 443 869 443 880 443 874 443 874 443 880 443 881 443 873 444 872 444 882 444 882 445 872 445 883 445 882 446 883 446 884 446 884 447 883 447 885 447 884 579 885 579 886 579 886 580 885 580 887 580 886 294 887 294 888 294 888 294 887 294 889 294 888 449 889 449 890 449 890 449 889 449 891 449 890 450 891 450 892 450 892 451 891 451 893 451 892 452 893 452 880 452 880 453 893 453 881 453 880 613 894 613 892 613 892 760 894 760 895 760 892 761 895 761 890 761 890 740 895 740 896 740 890 762 896 762 888 762 888 650 896 650 897 650 888 763 897 763 886 763 886 764 897 764 898 764 886 589 898 589 884 589 884 765 898 765 899 765 884 503 899 503 882 503 882 766 899 766 900 766 882 549 900 549 873 549 873 767 900 767 901 767 848 551 902 551 880 551 880 768 902 768 894 768 862 769 903 769 860 769 860 770 903 770 904 770 860 471 904 471 858 471 858 771 904 771 905 771 858 772 905 772 856 772 856 773 905 773 906 773 856 702 906 702 854 702 854 774 906 774 907 774 854 514 907 514 852 514 852 775 907 775 908 775 852 479 908 479 850 479 850 561 908 561 909 561 850 776 909 776 848 776 848 777 909 777 902 777 873 564 901 564 862 564 862 564 901 564 903 564 910 416 911 416 912 416 912 416 911 416 913 416 912 417 913 417 914 417 914 418 913 418 915 418 914 565 915 565 916 565 916 566 915 566 917 566 916 38 917 38 918 38 918 38 917 38 919 38 918 567 919 567 920 567 920 568 919 568 921 568 920 423 921 423 922 423 922 424 921 424 923 424 922 425 923 425 924 425 924 425 923 425 925 425 926 426 927 426 925 426 926 426 925 426 928 426 929 426 930 426 911 426 911 426 930 426 931 426 919 637 917 637 915 637 923 485 921 485 925 485 925 778 921 778 919 778 925 732 919 732 928 732 928 426 919 426 932 426 931 426 932 426 911 426 911 733 932 733 919 733 911 426 919 426 913 426 913 487 919 487 915 487 924 431 925 431 927 431 933 431 934 431 927 431 927 431 934 431 935 431 927 431 935 431 924 431 929 641 936 641 930 641 930 642 936 642 937 642 930 488 937 488 931 488 931 489 937 489 938 489 931 610 938 610 932 610 932 610 938 610 939 610 932 437 939 437 928 437 928 438 939 438 940 438 928 611 940 611 926 611 926 612 940 612 941 612 926 441 941 441 927 441 927 442 941 442 933 442 911 443 910 443 929 443 929 443 910 443 942 443 929 443 942 443 936 443 936 443 942 443 943 443 935 444 934 444 944 444 944 445 934 445 945 445 944 446 945 446 946 446 946 447 945 447 947 447 946 579 947 579 948 579 948 580 947 580 949 580 948 294 949 294 950 294 950 294 949 294 951 294 950 581 951 581 952 581 952 582 951 582 953 582 952 450 953 450 954 450 954 451 953 451 955 451 954 452 955 452 942 452 942 453 955 453 943 453 942 738 956 738 954 738 954 647 956 647 957 647 954 456 957 456 952 456 952 457 957 457 958 457 952 779 958 779 950 779 950 650 958 650 959 650 950 763 959 763 948 763 948 780 959 780 960 780 948 589 960 589 946 589 946 590 960 590 961 590 946 503 961 503 944 503 944 781 961 781 962 781 944 549 962 549 935 549 935 550 962 550 963 550 910 551 964 551 942 551 942 468 964 468 956 468 924 469 965 469 922 469 922 782 965 782 966 782 922 471 966 471 920 471 920 783 966 783 967 783 920 784 967 784 918 784 918 474 967 474 968 474 918 785 968 785 916 785 916 774 968 774 969 774 916 601 969 601 914 601 914 602 969 602 970 602 914 754 970 754 912 754 912 786 970 786 971 786 912 605 971 605 910 605 910 667 971 667 964 667 935 564 963 564 924 564 924 564 963 564 965 564 972 416 973 416 974 416 974 416 973 416 975 416 974 417 975 417 976 417 976 418 975 418 977 418 976 521 977 521 978 521 978 522 977 522 979 522 978 38 979 38 980 38 980 38 979 38 981 38 980 523 981 523 982 523 982 524 981 524 983 524 982 787 983 787 984 787 984 787 983 787 985 787 984 788 985 788 986 788 986 788 985 788 987 788 988 426 989 426 987 426 988 426 987 426 990 426 991 426 992 426 973 426 973 426 992 426 993 426 981 426 979 426 977 426 985 426 983 426 987 426 987 426 983 426 981 426 987 789 981 789 990 789 990 426 981 426 994 426 993 426 994 426 973 426 973 790 994 790 981 790 973 426 981 426 975 426 975 430 981 430 977 430 986 431 987 431 989 431 995 431 996 431 989 431 989 431 996 431 997 431 989 431 997 431 986 431 991 528 998 528 992 528 992 529 998 529 999 529 992 488 999 488 993 488 993 489 999 489 1000 489 993 435 1000 435 994 435 994 436 1000 436 1001 436 994 437 1001 437 990 437 990 438 1001 438 1002 438 990 439 1002 439 988 439 988 440 1002 440 1003 440 988 530 1003 530 989 530 989 531 1003 531 995 531 973 443 972 443 991 443 991 443 972 443 1004 443 991 443 1004 443 998 443 998 443 1004 443 1005 443 997 791 996 791 1006 791 1006 791 996 791 1007 791 1006 792 1007 792 1008 792 1008 793 1007 793 1009 793 1008 532 1009 532 1010 532 1010 533 1009 533 1011 533 1010 294 1011 294 1012 294 1012 294 1011 294 1013 294 1012 534 1013 534 1014 534 1014 535 1013 535 1015 535 1014 450 1015 450 1016 450 1016 451 1015 451 1017 451 1016 452 1017 452 1004 452 1004 453 1017 453 1005 453 1004 454 1018 454 1016 454 1016 496 1018 496 1019 496 1016 583 1019 583 1014 583 1014 794 1019 794 1020 794 1014 795 1020 795 1012 795 1012 499 1020 499 1021 499 1012 796 1021 796 1010 796 1010 797 1021 797 1022 797 1010 798 1022 798 1008 798 1008 799 1022 799 1023 799 1008 800 1023 800 1006 800 1006 465 1023 465 1024 465 1006 801 1024 801 997 801 997 802 1024 802 1025 802 972 551 1026 551 1004 551 1004 551 1026 551 1018 551 986 803 1027 803 984 803 984 782 1027 782 1028 782 984 804 1028 804 982 804 982 805 1028 805 1029 805 982 806 1029 806 980 806 980 807 1029 807 1030 807 980 808 1030 808 978 808 978 809 1030 809 1031 809 978 810 1031 810 976 810 976 811 1031 811 1032 811 976 754 1032 754 974 754 974 561 1032 561 1033 561 974 630 1033 630 972 630 972 812 1033 812 1026 812 997 564 1025 564 986 564 986 484 1025 484 1027 484 1034 416 1035 416 1036 416 1036 416 1035 416 1037 416 1036 417 1037 417 1038 417 1038 418 1037 418 1039 418 1038 419 1039 419 1040 419 1040 420 1039 420 1041 420 1040 38 1041 38 1042 38 1042 38 1041 38 1043 38 1042 421 1043 421 1044 421 1044 422 1043 422 1045 422 1044 423 1045 423 1046 423 1046 424 1045 424 1047 424 1046 425 1047 425 1048 425 1048 425 1047 425 1049 425 1050 426 1051 426 1049 426 1050 426 1049 426 1052 426 1053 426 1054 426 1035 426 1035 426 1054 426 1055 426 1047 485 1045 485 1049 485 1049 426 1045 426 1043 426 1049 789 1043 789 1052 789 1052 426 1043 426 1056 426 1043 426 1041 426 1039 426 1055 426 1056 426 1035 426 1035 813 1056 813 1043 813 1035 426 1043 426 1037 426 1037 814 1043 814 1039 814 1048 431 1049 431 1051 431 1057 431 1058 431 1051 431 1051 431 1058 431 1059 431 1051 431 1059 431 1048 431 1053 432 1060 432 1054 432 1054 433 1060 433 1061 433 1054 434 1061 434 1055 434 1055 434 1061 434 1062 434 1055 435 1062 435 1056 435 1056 436 1062 436 1063 436 1056 437 1063 437 1052 437 1052 438 1063 438 1064 438 1052 439 1064 439 1050 439 1050 440 1064 440 1065 440 1050 441 1065 441 1051 441 1051 442 1065 442 1057 442 1035 443 1034 443 1053 443 1053 443 1034 443 1066 443 1053 443 1066 443 1060 443 1060 443 1066 443 1067 443 1059 444 1058 444 1068 444 1068 445 1058 445 1069 445 1068 446 1069 446 1070 446 1070 447 1069 447 1071 447 1070 448 1071 448 1072 448 1072 448 1071 448 1073 448 1072 294 1073 294 1074 294 1074 294 1073 294 1075 294 1074 449 1075 449 1076 449 1076 449 1075 449 1077 449 1076 450 1077 450 1078 450 1078 451 1077 451 1079 451 1078 452 1079 452 1066 452 1066 453 1079 453 1067 453 1066 815 1080 815 1078 815 1078 816 1080 816 1081 816 1078 456 1081 456 1076 456 1076 817 1081 817 1082 817 1076 818 1082 818 1074 818 1074 499 1082 499 1083 499 1074 819 1083 819 1072 819 1072 820 1083 820 1084 820 1072 618 1084 618 1070 618 1070 502 1084 502 1085 502 1070 503 1085 503 1068 503 1068 504 1085 504 1086 504 1068 466 1086 466 1059 466 1059 821 1086 821 1087 821 1034 768 1088 768 1066 768 1066 468 1088 468 1080 468 1048 822 1089 822 1046 822 1046 553 1089 553 1090 553 1046 509 1090 509 1044 509 1044 596 1090 596 1091 596 1044 823 1091 823 1042 823 1042 474 1091 474 1092 474 1042 824 1092 824 1040 824 1040 476 1092 476 1093 476 1040 825 1093 825 1038 825 1038 478 1093 478 1094 478 1038 603 1094 603 1036 603 1036 826 1094 826 1095 826 1036 481 1095 481 1034 481 1034 827 1095 827 1088 827 1059 828 1087 828 1048 828 1048 484 1087 484 1089 484 1096 416 1097 416 1098 416 1098 416 1097 416 1099 416 1098 417 1099 417 1100 417 1100 418 1099 418 1101 418 1100 419 1101 419 1102 419 1102 420 1101 420 1103 420 1102 38 1103 38 1104 38 1104 38 1103 38 1105 38 1104 421 1105 421 1106 421 1106 422 1105 422 1107 422 1106 423 1107 423 1108 423 1108 424 1107 424 1109 424 1108 425 1109 425 1110 425 1110 425 1109 425 1111 425 1112 426 1113 426 1111 426 1114 426 1097 426 1115 426 1115 426 1097 426 1116 426 1112 426 1111 426 1117 426 1105 426 1103 426 1101 426 1114 426 1118 426 1097 426 1097 813 1118 813 1105 813 1097 426 1105 426 1099 426 1099 430 1105 430 1101 430 1109 427 1107 427 1111 427 1111 426 1107 426 1105 426 1111 789 1105 789 1117 789 1117 426 1105 426 1118 426 1110 431 1111 431 1113 431 1119 431 1120 431 1113 431 1113 431 1120 431 1121 431 1113 431 1121 431 1110 431 1116 432 1122 432 1115 432 1115 433 1122 433 1123 433 1115 488 1123 488 1114 488 1114 489 1123 489 1124 489 1114 490 1124 490 1118 490 1118 491 1124 491 1125 491 1118 492 1125 492 1117 492 1117 493 1125 493 1126 493 1117 494 1126 494 1112 494 1112 494 1126 494 1127 494 1112 441 1127 441 1113 441 1113 442 1127 442 1119 442 1097 443 1096 443 1116 443 1116 443 1096 443 1128 443 1116 443 1128 443 1122 443 1122 443 1128 443 1129 443 1121 444 1120 444 1130 444 1130 445 1120 445 1131 445 1130 446 1131 446 1132 446 1132 447 1131 447 1133 447 1132 448 1133 448 1134 448 1134 448 1133 448 1135 448 1134 294 1135 294 1136 294 1136 294 1135 294 1137 294 1136 449 1137 449 1138 449 1138 449 1137 449 1139 449 1138 450 1139 450 1140 450 1140 451 1139 451 1141 451 1140 452 1141 452 1128 452 1128 453 1141 453 1129 453 1128 454 1142 454 1140 454 1140 816 1142 816 1143 816 1140 583 1143 583 1138 583 1138 817 1143 817 1144 817 1138 829 1144 829 1136 829 1136 586 1144 586 1145 586 1136 460 1145 460 1134 460 1134 461 1145 461 1146 461 1134 462 1146 462 1132 462 1132 502 1146 502 1147 502 1132 464 1147 464 1130 464 1130 465 1147 465 1148 465 1130 830 1148 830 1121 830 1121 467 1148 467 1149 467 1096 768 1150 768 1128 768 1128 468 1150 468 1142 468 1110 552 1151 552 1108 552 1108 831 1151 831 1152 831 1108 832 1152 832 1106 832 1106 472 1152 472 1153 472 1106 833 1153 833 1104 833 1104 834 1153 834 1154 834 1104 475 1154 475 1102 475 1102 476 1154 476 1155 476 1102 477 1155 477 1100 477 1100 835 1155 835 1156 835 1100 479 1156 479 1098 479 1098 516 1156 516 1157 516 1098 517 1157 517 1096 517 1096 482 1157 482 1150 482 1121 484 1149 484 1110 484 1110 484 1149 484 1151 484 1158 519 1159 519 1160 519 1160 519 1159 519 1161 519 1160 520 1161 520 1162 520 1162 520 1161 520 1163 520 1162 521 1163 521 1164 521 1164 522 1163 522 1165 522 1164 38 1165 38 1166 38 1166 38 1165 38 1167 38 1166 523 1167 523 1168 523 1168 524 1167 524 1169 524 1168 423 1169 423 1170 423 1170 424 1169 424 1171 424 1170 425 1171 425 1172 425 1172 425 1171 425 1173 425 1174 426 1175 426 1173 426 1176 836 1159 836 1177 836 1177 426 1159 426 1178 426 1174 426 1173 426 1179 426 1167 426 1165 426 1163 426 1176 426 1180 426 1159 426 1159 837 1180 837 1167 837 1159 426 1167 426 1161 426 1161 838 1167 838 1163 838 1171 839 1169 839 1173 839 1173 426 1169 426 1167 426 1173 840 1167 840 1179 840 1179 426 1167 426 1180 426 1172 431 1173 431 1175 431 1181 431 1182 431 1175 431 1175 431 1182 431 1183 431 1175 431 1183 431 1172 431 1178 528 1184 528 1177 528 1177 529 1184 529 1185 529 1177 488 1185 488 1176 488 1176 489 1185 489 1186 489 1176 490 1186 490 1180 490 1180 491 1186 491 1187 491 1180 492 1187 492 1179 492 1179 493 1187 493 1188 493 1179 494 1188 494 1174 494 1174 494 1188 494 1189 494 1174 441 1189 441 1175 441 1175 442 1189 442 1181 442 1159 443 1158 443 1178 443 1178 443 1158 443 1190 443 1178 443 1190 443 1184 443 1184 443 1190 443 1191 443 1183 444 1182 444 1192 444 1192 445 1182 445 1193 445 1192 446 1193 446 1194 446 1194 447 1193 447 1195 447 1194 532 1195 532 1196 532 1196 533 1195 533 1197 533 1196 294 1197 294 1198 294 1198 294 1197 294 1199 294 1198 534 1199 534 1200 534 1200 535 1199 535 1201 535 1200 536 1201 536 1202 536 1202 537 1201 537 1203 537 1202 538 1203 538 1190 538 1190 538 1203 538 1191 538 1190 841 1204 841 1202 841 1202 496 1204 496 1205 496 1202 842 1205 842 1200 842 1200 794 1205 794 1206 794 1200 843 1206 843 1198 843 1198 499 1206 499 1207 499 1198 844 1207 844 1196 844 1196 845 1207 845 1208 845 1196 798 1208 798 1194 798 1194 846 1208 846 1209 846 1194 503 1209 503 1192 503 1192 465 1209 465 1210 465 1192 593 1210 593 1183 593 1183 802 1210 802 1211 802 1158 468 1212 468 1190 468 1190 768 1212 768 1204 768 1172 507 1213 507 1170 507 1170 553 1213 553 1214 553 1170 832 1214 832 1168 832 1168 554 1214 554 1215 554 1168 847 1215 847 1166 847 1166 834 1215 834 1216 834 1166 808 1216 808 1164 808 1164 809 1216 809 1217 809 1164 558 1217 558 1162 558 1162 515 1217 515 1218 515 1162 848 1218 848 1160 848 1160 516 1218 516 1219 516 1160 849 1219 849 1158 849 1158 606 1219 606 1212 606 1183 484 1211 484 1172 484 1172 483 1211 483 1213 483 1220 416 1221 416 1222 416 1222 416 1221 416 1223 416 1222 417 1223 417 1224 417 1224 418 1223 418 1225 418 1224 521 1225 521 1226 521 1226 522 1225 522 1227 522 1226 38 1227 38 1228 38 1228 38 1227 38 1229 38 1228 523 1229 523 1230 523 1230 524 1229 524 1231 524 1230 787 1231 787 1232 787 1232 787 1231 787 1233 787 1232 788 1233 788 1234 788 1234 788 1233 788 1235 788 1236 426 1237 426 1221 426 1221 426 1237 426 1238 426 1239 426 1235 426 1240 426 1240 426 1235 426 1241 426 1233 426 1231 426 1235 426 1235 426 1231 426 1229 426 1235 850 1229 850 1241 850 1241 426 1229 426 1242 426 1229 426 1227 426 1225 426 1238 426 1242 426 1221 426 1221 429 1242 429 1229 429 1221 426 1229 426 1223 426 1223 851 1229 851 1225 851 1234 431 1235 431 1239 431 1243 431 1244 431 1239 431 1239 431 1244 431 1245 431 1239 431 1245 431 1234 431 1236 432 1246 432 1237 432 1237 433 1246 433 1247 433 1237 434 1247 434 1238 434 1238 434 1247 434 1248 434 1238 435 1248 435 1242 435 1242 436 1248 436 1249 436 1242 437 1249 437 1241 437 1241 438 1249 438 1250 438 1241 439 1250 439 1240 439 1240 440 1250 440 1251 440 1240 530 1251 530 1239 530 1239 531 1251 531 1243 531 1221 443 1220 443 1236 443 1236 443 1220 443 1252 443 1236 443 1252 443 1246 443 1246 443 1252 443 1253 443 1245 791 1244 791 1254 791 1254 791 1244 791 1255 791 1254 792 1255 792 1256 792 1256 793 1255 793 1257 793 1256 532 1257 532 1258 532 1258 533 1257 533 1259 533 1258 294 1259 294 1260 294 1260 294 1259 294 1261 294 1260 534 1261 534 1262 534 1262 535 1261 535 1263 535 1262 450 1263 450 1264 450 1264 451 1263 451 1265 451 1264 452 1265 452 1252 452 1252 453 1265 453 1253 453 1252 852 1266 852 1264 852 1264 853 1266 853 1267 853 1264 583 1267 583 1262 583 1262 794 1267 794 1268 794 1262 854 1268 854 1260 854 1260 586 1268 586 1269 586 1260 545 1269 545 1258 545 1258 546 1269 546 1270 546 1258 798 1270 798 1256 798 1256 502 1270 502 1271 502 1256 855 1271 855 1254 855 1254 504 1271 504 1272 504 1254 856 1272 856 1245 856 1245 857 1272 857 1273 857 1220 468 1274 468 1252 468 1252 768 1274 768 1266 768 1234 858 1275 858 1232 858 1232 553 1275 553 1276 553 1232 859 1276 859 1230 859 1230 554 1276 554 1277 554 1230 860 1277 860 1228 860 1228 511 1277 511 1278 511 1228 861 1278 861 1226 861 1226 862 1278 862 1279 862 1226 558 1279 558 1224 558 1224 863 1279 863 1280 863 1224 603 1280 603 1222 603 1222 480 1280 480 1281 480 1222 605 1281 605 1220 605 1220 563 1281 563 1274 563 1245 484 1273 484 1234 484 1234 483 1273 483 1275 483 1282 426 1283 426 1284 426 1282 426 1284 426 1285 426 1285 426 1284 426 1286 426 1285 426 1286 426 1287 426 1287 426 1286 426 1288 426 1287 426 1288 426 1289 426 1289 426 1288 426 1290 426 1289 426 1290 426 1291 426 1291 426 1290 426 1292 426 1291 426 1292 426 1293 426 1293 426 1292 426 1294 426 1293 426 1294 426 1295 426 1295 426 1294 426 1296 426 1295 426 1296 426 1297 426 1297 426 1296 426 1298 426 1297 864 1298 864 1299 864 1300 426 1301 426 1296 426 1296 426 1301 426 1302 426 1296 865 1302 865 1298 865 1269 866 1296 866 1270 866 1270 867 1296 867 1294 867 1270 426 1294 426 1271 426 1271 426 1294 426 1272 426 1277 426 198 426 1278 426 1278 426 198 426 197 426 1278 426 197 426 1279 426 1279 426 197 426 1303 426 1279 868 1303 868 1280 868 1280 869 1303 869 1304 869 1280 870 1304 870 1281 870 1269 426 1268 426 1296 426 1296 871 1268 871 1267 871 1296 872 1267 872 1300 872 1300 873 1267 873 1266 873 1300 426 1266 426 1305 426 1305 426 1266 426 1274 426 1305 426 1274 426 1306 426 1306 874 1274 874 1281 874 1306 875 1281 875 1307 875 1307 426 1281 426 1304 426 1277 426 1276 426 198 426 198 876 1276 876 1275 876 198 426 1275 426 1294 426 1294 426 1275 426 1273 426 1294 877 1273 877 1272 877 1208 426 1207 426 1308 426 1308 426 1207 426 1206 426 1308 878 1206 878 1205 878 212 879 1218 879 192 879 192 426 1218 426 1217 426 192 426 1217 426 191 426 191 880 1217 880 1216 880 191 881 1216 881 190 881 190 426 1216 426 1215 426 190 426 1215 426 187 426 187 882 1215 882 1214 882 187 883 1214 883 169 883 169 874 1214 874 1213 874 169 426 1213 426 170 426 1209 426 284 426 1210 426 1210 884 284 884 282 884 1210 885 282 885 1211 885 1211 886 282 886 283 886 1205 426 1204 426 1308 426 1308 426 1204 426 1212 426 1308 426 1212 426 212 426 212 876 1212 876 1219 876 212 887 1219 887 1218 887 283 426 288 426 1211 426 1211 426 288 426 286 426 1211 426 286 426 1213 426 1213 888 286 888 285 888 1213 889 285 889 170 889 1309 890 273 890 284 890 1209 426 1208 426 284 426 284 891 1208 891 1308 891 284 426 1308 426 1309 426 1309 426 1308 426 1310 426 1309 426 1310 426 1311 426 1311 426 1310 426 1312 426 1311 426 1312 426 1313 426 1313 426 1312 426 1314 426 1313 426 1314 426 1315 426 1315 426 1314 426 1316 426 1315 426 1316 426 1317 426 1317 426 1316 426 1318 426 1317 426 1318 426 1319 426 1320 426 1321 426 1322 426 1322 892 1321 892 1323 892 776 426 775 426 1320 426 1320 893 775 893 774 893 1320 894 774 894 1321 894 1321 895 774 895 773 895 1321 896 773 896 772 896 785 897 784 897 206 897 206 898 784 898 783 898 206 899 783 899 209 899 209 900 783 900 782 900 209 901 782 901 781 901 781 426 780 426 209 426 209 902 780 902 779 902 209 426 779 426 1320 426 1320 426 779 426 777 426 1320 903 777 903 776 903 778 426 785 426 1324 426 1324 904 785 904 1325 904 1325 426 785 426 206 426 1325 905 206 905 1326 905 772 426 771 426 1321 426 1321 426 771 426 770 426 1321 426 770 426 1327 426 1327 426 770 426 778 426 1327 906 778 906 1328 906 1328 426 778 426 1324 426 714 426 713 426 1283 426 652 426 651 426 1283 426 1283 426 651 426 650 426 1283 907 650 907 1284 907 713 426 712 426 1283 426 1283 895 712 895 711 895 1283 426 711 426 652 426 652 426 711 426 710 426 652 426 710 426 653 426 650 426 649 426 1284 426 1284 908 649 908 648 908 1284 909 648 909 647 909 722 426 721 426 205 426 205 910 721 910 720 910 205 426 720 426 206 426 206 898 720 898 719 898 206 911 719 911 718 911 660 426 659 426 205 426 205 912 659 912 658 912 205 426 658 426 722 426 722 426 658 426 657 426 722 913 657 913 656 913 647 426 646 426 1284 426 1284 426 646 426 654 426 1284 426 654 426 205 426 205 914 654 914 661 914 205 915 661 915 660 915 710 426 709 426 653 426 653 916 709 916 708 916 653 426 708 426 655 426 655 426 708 426 716 426 655 426 716 426 656 426 656 917 716 917 723 917 656 918 723 918 722 918 714 426 1283 426 715 426 715 919 1283 919 1329 919 715 426 1329 426 717 426 717 920 1329 920 1330 920 717 426 1330 426 718 426 718 921 1330 921 1331 921 718 922 1331 922 206 922 206 426 1331 426 1332 426 206 426 1332 426 1326 426 342 923 341 923 1292 923 1292 924 341 924 340 924 1292 426 340 426 1294 426 201 925 348 925 347 925 340 926 339 926 1294 926 1294 927 339 927 338 927 1294 928 338 928 337 928 348 929 201 929 349 929 349 426 201 426 198 426 349 930 198 930 350 930 337 931 336 931 1294 931 1294 426 336 426 344 426 1294 426 344 426 198 426 198 932 344 932 351 932 198 933 351 933 350 933 347 934 346 934 201 934 201 935 346 935 345 935 201 426 345 426 1292 426 1292 426 345 426 343 426 1292 936 343 936 342 936 400 426 399 426 1292 426 404 937 403 937 1290 937 1290 938 403 938 402 938 1290 426 402 426 1292 426 1292 939 402 939 401 939 1292 426 401 426 400 426 202 940 410 940 409 940 410 929 202 929 411 929 411 941 202 941 201 941 411 426 201 426 412 426 409 942 408 942 202 942 202 943 408 943 407 943 202 426 407 426 1290 426 1290 426 407 426 405 426 1290 944 405 944 404 944 399 426 398 426 1292 426 1292 426 398 426 406 426 1292 426 406 426 201 426 201 945 406 945 413 945 201 946 413 946 412 946 462 426 461 426 1290 426 466 426 465 426 1288 426 1288 426 465 426 464 426 1288 947 464 947 1290 947 1290 948 464 948 463 948 1290 426 463 426 462 426 203 426 472 426 471 426 472 949 203 949 473 949 473 950 203 950 202 950 473 426 202 426 474 426 461 426 460 426 1290 426 1290 426 460 426 468 426 1290 426 468 426 202 426 202 951 468 951 475 951 202 952 475 952 474 952 471 426 470 426 203 426 203 953 470 953 469 953 203 426 469 426 1288 426 1288 426 469 426 467 426 1288 954 467 954 466 954 524 955 523 955 1288 955 528 426 527 426 1286 426 1286 956 527 956 526 956 1286 947 526 947 1288 947 1288 957 526 957 525 957 1288 958 525 958 524 958 204 959 534 959 533 959 534 426 204 426 535 426 535 426 204 426 203 426 535 960 203 960 536 960 533 426 532 426 204 426 204 961 532 961 531 961 204 426 531 426 1286 426 1286 426 531 426 529 426 1286 962 529 962 528 962 523 426 522 426 1288 426 1288 426 522 426 530 426 1288 426 530 426 203 426 203 963 530 963 537 963 203 964 537 964 536 964 586 955 585 955 1286 955 590 426 589 426 1284 426 1284 956 589 956 588 956 1284 947 588 947 1286 947 1286 965 588 965 587 965 1286 426 587 426 586 426 205 959 596 959 595 959 596 426 205 426 597 426 597 941 205 941 204 941 597 426 204 426 598 426 585 426 584 426 1286 426 1286 426 584 426 592 426 1286 426 592 426 204 426 204 953 592 953 599 953 204 964 599 964 598 964 595 426 594 426 205 426 205 966 594 966 593 966 205 426 593 426 1284 426 1284 426 593 426 591 426 1284 967 591 967 590 967 837 426 836 426 1318 426 1318 426 836 426 1320 426 1318 426 1320 426 1319 426 1319 426 1320 426 1322 426 846 426 845 426 209 426 209 426 845 426 210 426 845 426 844 426 210 426 210 968 844 968 843 968 210 915 843 915 842 915 836 426 835 426 1320 426 1320 426 835 426 834 426 1320 969 834 969 833 969 841 426 839 426 1318 426 1318 970 839 970 838 970 1318 909 838 909 837 909 833 971 832 971 1320 971 1320 426 832 426 840 426 1320 426 840 426 209 426 209 972 840 972 847 972 209 973 847 973 846 973 900 955 899 955 1316 955 1316 426 899 426 898 426 1316 974 898 974 1318 974 1318 975 898 975 897 975 902 426 909 426 210 426 897 976 896 976 1318 976 1318 977 896 977 895 977 1318 967 895 967 894 967 842 426 841 426 210 426 210 426 841 426 1318 426 210 426 1318 426 902 426 902 426 1318 426 894 426 909 426 908 426 210 426 210 959 908 959 907 959 210 978 907 978 211 978 211 979 907 979 906 979 211 426 906 426 905 426 905 980 904 980 211 980 211 953 904 953 903 953 211 426 903 426 1316 426 1316 426 903 426 901 426 1316 981 901 981 900 981 958 426 957 426 1316 426 962 955 961 955 1314 955 1314 958 961 958 960 958 1314 974 960 974 1316 974 1316 982 960 982 959 982 1316 956 959 956 958 956 213 983 968 983 967 983 968 426 213 426 969 426 969 426 213 426 211 426 969 984 211 984 970 984 967 980 966 980 213 980 213 963 966 963 965 963 213 426 965 426 1314 426 1314 426 965 426 963 426 1314 985 963 985 962 985 957 426 956 426 1316 426 1316 426 956 426 964 426 1316 426 964 426 211 426 211 961 964 961 971 961 211 986 971 986 970 986 1020 426 1019 426 1314 426 1024 426 1023 426 1312 426 1312 426 1023 426 1022 426 1312 974 1022 974 1314 974 1314 987 1022 987 1021 987 1314 426 1021 426 1020 426 214 426 1030 426 1029 426 1030 929 214 929 1031 929 1031 941 214 941 213 941 1031 426 213 426 1032 426 1029 426 1028 426 214 426 214 951 1028 951 1027 951 214 426 1027 426 1312 426 1312 426 1027 426 1025 426 1312 988 1025 988 1024 988 1019 426 1018 426 1314 426 1314 426 1018 426 1026 426 1314 426 1026 426 213 426 213 953 1026 953 1033 953 213 887 1033 887 1032 887 1082 937 1081 937 1312 937 1086 426 1085 426 1310 426 1310 426 1085 426 1084 426 1310 947 1084 947 1312 947 1312 989 1084 989 1083 989 1312 938 1083 938 1082 938 215 426 1092 426 1091 426 1092 426 215 426 1093 426 1093 426 215 426 214 426 1093 990 214 990 1094 990 1081 931 1080 931 1312 931 1312 426 1080 426 1088 426 1312 426 1088 426 214 426 214 943 1088 943 1095 943 214 991 1095 991 1094 991 1091 426 1090 426 215 426 215 945 1090 945 1089 945 215 426 1089 426 1310 426 1310 426 1089 426 1087 426 1310 992 1087 992 1086 992 1144 923 1143 923 1310 923 1148 923 1147 923 1308 923 1308 927 1147 927 1146 927 1308 426 1146 426 1310 426 1310 993 1146 993 1145 993 1310 924 1145 924 1144 924 1156 994 1155 994 215 994 215 426 1155 426 212 426 212 995 1155 995 1154 995 212 925 1154 925 1153 925 1153 934 1152 934 212 934 212 932 1152 932 1151 932 212 426 1151 426 1308 426 1308 426 1151 426 1149 426 1308 996 1149 996 1148 996 1143 931 1142 931 1310 931 1310 426 1142 426 1150 426 1310 426 1150 426 215 426 215 935 1150 935 1157 935 215 997 1157 997 1156 997 1333 998 1334 998 1335 998 1336 999 1337 999 1338 999 1302 1000 1339 1000 1298 1000 1298 1001 1339 1001 1340 1001 1298 1002 1340 1002 1299 1002 1301 1003 1341 1003 1302 1003 1302 1004 1341 1004 1342 1004 1302 1005 1342 1005 1339 1005 1343 1006 1344 1006 1345 1006 1345 1007 1344 1007 1346 1007 1336 1008 1347 1008 1337 1008 1337 1009 1347 1009 1348 1009 1337 1010 1348 1010 1335 1010 1335 1011 1348 1011 1349 1011 1335 1012 1349 1012 1350 1012 1350 1013 1351 1013 1335 1013 1335 1014 1351 1014 1352 1014 1335 1015 1352 1015 1333 1015 1333 1016 1352 1016 1353 1016 1333 1017 1353 1017 1345 1017 1345 1018 1353 1018 1354 1018 1345 1019 1354 1019 1343 1019 1305 1020 1334 1020 1300 1020 1300 1021 1334 1021 1333 1021 1300 1022 1333 1022 1301 1022 1301 1023 1333 1023 1345 1023 1301 1024 1345 1024 1341 1024 1341 1025 1345 1025 1346 1025 1334 1026 1305 1026 1306 1026 1306 1027 1355 1027 1334 1027 1334 1028 1355 1028 1356 1028 1334 1029 1356 1029 1335 1029 1335 1030 1356 1030 1357 1030 1335 1031 1357 1031 1337 1031 1337 1032 1357 1032 1358 1032 1337 1033 1358 1033 1338 1033 200 1034 208 1034 1359 1034 207 1035 196 1035 1360 1035 1357 1036 1361 1036 1358 1036 1358 1037 1361 1037 1362 1037 1362 1038 1361 1038 1363 1038 1363 1039 1361 1039 1364 1039 1363 1040 1364 1040 1365 1040 1365 1041 1364 1041 1366 1041 1366 1042 1364 1042 1360 1042 1366 1043 1360 1043 1367 1043 1367 1044 1360 1044 196 1044 1367 1045 196 1045 195 1045 1303 1046 197 1046 199 1046 199 1047 1368 1047 1303 1047 1303 1048 1368 1048 1369 1048 1303 1049 1369 1049 1304 1049 1304 1050 1369 1050 1370 1050 1304 1051 1370 1051 1307 1051 1307 1052 1370 1052 1355 1052 1307 1053 1355 1053 1306 1053 199 1054 200 1054 1368 1054 1368 1055 200 1055 1359 1055 1368 1056 1359 1056 1369 1056 1369 1057 1359 1057 1371 1057 1369 1058 1371 1058 1370 1058 1370 1059 1371 1059 1372 1059 1370 1060 1372 1060 1355 1060 1355 1061 1372 1061 1356 1061 208 1062 207 1062 1359 1062 1359 1063 207 1063 1360 1063 1359 1064 1360 1064 1371 1064 1371 1065 1360 1065 1364 1065 1371 1066 1364 1066 1372 1066 1372 1067 1364 1067 1361 1067 1372 1068 1361 1068 1356 1068 1356 1069 1361 1069 1357 1069 195 1070 216 1070 1367 1070 1367 1071 216 1071 1373 1071 1367 1072 1373 1072 1366 1072 1366 1073 1373 1073 1374 1073 1366 1074 1374 1074 1365 1074 1365 1075 1374 1075 1375 1075 1365 1076 1375 1076 1363 1076 1363 1077 1375 1077 1376 1077 1363 1078 1376 1078 1362 1078 1362 1079 1376 1079 1377 1079 1362 1080 1377 1080 1358 1080 1358 1081 1377 1081 1378 1081 1379 1082 1380 1082 1381 1082 1382 1083 1378 1083 1377 1083 1382 1084 1377 1084 1383 1084 1384 1085 1385 1085 1386 1085 1386 1086 1385 1086 1387 1086 1386 1087 1387 1087 1388 1087 1380 1088 1389 1088 1385 1088 1385 1089 1389 1089 1390 1089 1385 1090 1390 1090 1387 1090 1379 1091 1381 1091 1391 1091 1391 1092 1392 1092 1393 1092 1393 1093 1392 1093 224 1093 1393 1094 224 1094 226 1094 1394 1095 1385 1095 1395 1095 1395 1096 1385 1096 1384 1096 1395 1097 1384 1097 1396 1097 1391 1098 1381 1098 1392 1098 1392 1099 1381 1099 1397 1099 1392 1100 1397 1100 224 1100 1398 1101 1394 1101 1399 1101 1399 1102 1394 1102 1395 1102 1399 1103 1395 1103 1400 1103 1400 1104 1395 1104 1396 1104 1400 1105 1396 1105 1383 1105 218 1106 220 1106 1397 1106 1397 1107 220 1107 222 1107 1397 1108 222 1108 224 1108 1383 1109 1377 1109 1400 1109 1400 1110 1377 1110 1376 1110 1400 1111 1376 1111 1399 1111 1399 1112 1376 1112 1375 1112 1399 1113 1375 1113 1398 1113 1398 1114 1375 1114 1374 1114 1398 1115 1374 1115 1373 1115 1380 1116 1385 1116 1381 1116 1381 1117 1385 1117 1394 1117 1381 1118 1394 1118 1397 1118 1397 1119 1394 1119 1398 1119 1397 1120 1398 1120 218 1120 218 1121 1398 1121 1373 1121 218 1122 1373 1122 216 1122 1338 1123 1378 1123 1382 1123 1338 1124 1382 1124 1336 1124 1336 1125 1382 1125 1383 1125 1336 1126 1383 1126 1347 1126 1348 1127 1347 1127 1349 1127 1349 1128 1347 1128 1401 1128 1349 1129 1401 1129 1350 1129 1344 1130 1343 1130 1402 1130 1402 1131 1343 1131 1354 1131 1402 1132 1354 1132 1403 1132 1403 1133 1354 1133 1353 1133 1403 1134 1353 1134 1352 1134 1299 1135 1340 1135 1404 1135 1404 1136 1340 1136 1339 1136 1404 1137 1339 1137 1405 1137 1405 1138 1339 1138 1342 1138 1342 1139 1341 1139 1405 1139 1405 1140 1341 1140 1346 1140 1405 1141 1346 1141 1344 1141 1344 1142 1402 1142 1405 1142 1405 1143 1402 1143 1403 1143 1405 1144 1403 1144 1406 1144 1406 1145 1403 1145 1407 1145 1406 1146 1407 1146 1408 1146 1408 1147 1407 1147 1409 1147 1409 1148 1407 1148 1386 1148 1409 1149 1386 1149 1388 1149 1352 1150 1351 1150 1403 1150 1403 1151 1351 1151 1350 1151 1403 1152 1350 1152 1407 1152 1407 1153 1350 1153 1401 1153 1407 1154 1401 1154 1386 1154 1386 1155 1401 1155 1384 1155 1347 1156 1383 1156 1401 1156 1401 1157 1383 1157 1396 1157 1401 1158 1396 1158 1384 1158 104 1159 1404 1159 105 1159 105 1160 1404 1160 1405 1160 105 1161 1405 1161 159 1161 1390 1162 1389 1162 79 1162 1405 1163 1406 1163 159 1163 159 1164 1406 1164 1408 1164 159 1165 1408 1165 158 1165 1408 1166 1409 1166 158 1166 158 1167 1409 1167 1388 1167 158 1168 1388 1168 79 1168 79 1169 1388 1169 1387 1169 79 1170 1387 1170 1390 1170 1389 1171 1380 1171 79 1171 79 1172 1380 1172 1379 1172 79 1173 1379 1173 1391 1173 227 1174 1410 1174 226 1174 226 1175 1410 1175 79 1175 226 1176 79 1176 1393 1176 1393 1177 79 1177 1391 1177 227 1178 240 1178 1410 1178 1410 1179 240 1179 242 1179 1410 1180 242 1180 241 1180 244 1181 1411 1181 237 1181 237 1182 1411 1182 1410 1182 237 1183 1410 1183 238 1183 238 1184 1410 1184 241 1184 244 1185 246 1185 1411 1185 1411 1186 246 1186 247 1186 1411 1187 247 1187 1412 1187 1412 1188 247 1188 272 1188 1412 1189 272 1189 1413 1189 1413 1190 272 1190 276 1190 1413 1191 276 1191 1414 1191 1414 1192 276 1192 275 1192 1414 1193 275 1193 274 1193 1415 1194 1416 1194 1417 1194 1418 1195 1419 1195 1420 1195 1421 1196 1422 1196 1410 1196 1420 1197 1419 1197 1421 1197 1421 1198 1419 1198 1423 1198 1421 1199 1423 1199 1422 1199 1424 1200 1425 1200 1426 1200 1426 1201 1425 1201 1427 1201 1426 1202 1427 1202 1420 1202 1420 1203 1427 1203 1428 1203 1420 1204 1428 1204 1418 1204 1429 1205 1430 1205 1424 1205 1424 1206 1430 1206 1431 1206 1424 1207 1431 1207 1425 1207 1432 1208 1433 1208 1434 1208 1434 1209 1433 1209 1429 1209 1434 1210 1429 1210 1435 1210 1435 1211 1429 1211 1424 1211 1432 1212 1434 1212 1436 1212 1436 1213 1434 1213 1437 1213 1436 1214 1437 1214 1438 1214 1439 1215 1440 1215 1437 1215 1437 1216 1440 1216 1441 1216 1437 1217 1441 1217 1438 1217 1442 1218 1443 1218 1444 1218 1444 1219 1445 1219 1442 1219 1442 1220 1445 1220 1446 1220 1442 1221 1446 1221 1439 1221 1439 1222 1446 1222 1447 1222 1439 1223 1447 1223 1440 1223 1416 1224 1448 1224 1417 1224 1417 1225 1448 1225 1449 1225 1417 1226 1449 1226 1450 1226 1450 1227 1449 1227 1451 1227 1450 1228 1451 1228 1443 1228 1443 1229 1451 1229 1452 1229 1443 1230 1452 1230 1444 1230 1415 1231 1417 1231 1453 1231 1453 1232 1417 1232 1454 1232 1453 1233 1454 1233 1455 1233 1455 1234 1454 1234 1456 1234 1455 1235 1456 1235 1457 1235 1457 1236 1456 1236 1458 1236 1458 1237 1456 1237 1459 1237 1458 1238 1459 1238 1460 1238 1461 1239 1462 1239 1463 1239 1463 1240 1462 1240 1464 1240 1463 1241 1464 1241 1459 1241 1459 1242 1464 1242 1465 1242 1459 1243 1465 1243 1460 1243 1466 1244 1467 1244 1468 1244 1469 1245 1470 1245 1471 1245 1410 1246 1411 1246 1421 1246 1421 1247 1411 1247 1412 1247 1421 1248 1412 1248 1413 1248 1472 1249 1461 1249 1468 1249 1468 1250 1461 1250 1463 1250 1468 1251 1463 1251 1466 1251 1466 1252 1463 1252 1459 1252 1466 1253 1459 1253 1473 1253 1473 1254 1459 1254 1456 1254 1473 1255 1456 1255 1474 1255 1474 1256 1456 1256 1454 1256 1474 1257 1454 1257 1475 1257 1475 1258 1454 1258 1417 1258 1475 1259 1417 1259 1476 1259 1476 1260 1417 1260 1450 1260 1476 1261 1450 1261 1477 1261 1477 1262 1450 1262 1443 1262 1477 1263 1443 1263 1478 1263 1478 1264 1443 1264 1442 1264 1478 1265 1442 1265 1479 1265 1479 1266 1442 1266 1439 1266 1479 1267 1439 1267 1480 1267 1480 1268 1439 1268 1437 1268 1480 1269 1437 1269 1481 1269 1481 1270 1437 1270 1434 1270 1481 1271 1434 1271 1482 1271 1482 1272 1434 1272 1435 1272 1482 1273 1435 1273 1483 1273 1483 1274 1435 1274 1424 1274 1483 1275 1424 1275 1484 1275 1484 1276 1424 1276 1426 1276 1484 1277 1426 1277 1485 1277 1485 1278 1426 1278 1420 1278 1485 1279 1420 1279 1486 1279 1486 1280 1420 1280 1421 1280 1486 1281 1421 1281 1487 1281 1487 1282 1421 1282 1413 1282 1487 1283 1413 1283 1414 1283 1414 1284 1488 1284 1487 1284 1487 1285 1488 1285 1489 1285 1487 1286 1489 1286 1486 1286 1486 1287 1489 1287 1490 1287 1486 1288 1490 1288 1485 1288 1485 1289 1490 1289 1491 1289 1485 1290 1491 1290 1484 1290 1484 1291 1491 1291 1492 1291 1484 1292 1492 1292 1483 1292 1483 1293 1492 1293 1493 1293 1483 1294 1493 1294 1482 1294 1482 1295 1493 1295 1494 1295 1482 1296 1494 1296 1481 1296 1481 1297 1494 1297 1495 1297 1481 1298 1495 1298 1480 1298 1480 1299 1495 1299 1496 1299 1480 1300 1496 1300 1479 1300 1479 1301 1496 1301 1497 1301 1479 1302 1497 1302 1478 1302 1478 1303 1497 1303 1498 1303 1478 1304 1498 1304 1477 1304 1477 1305 1498 1305 1499 1305 1477 1306 1499 1306 1476 1306 1476 1307 1499 1307 1500 1307 1476 1308 1500 1308 1475 1308 1475 1309 1500 1309 1501 1309 1475 1310 1501 1310 1474 1310 1474 1311 1501 1311 1502 1311 1474 1312 1502 1312 1473 1312 1473 1313 1502 1313 1469 1313 1473 1314 1469 1314 1466 1314 1466 1315 1469 1315 1471 1315 1466 1316 1471 1316 1467 1316 1503 38 1470 38 1504 38 1505 38 1488 38 1506 38 1506 1317 1488 1317 1414 1317 1507 1318 1495 1318 1508 1318 1508 38 1495 38 1494 38 1508 38 1494 38 1509 38 1414 38 274 38 1506 38 1506 1319 274 1319 273 1319 1506 1320 273 1320 1309 1320 1504 1321 1470 1321 1510 1321 1494 1322 1493 1322 1509 1322 1509 38 1493 38 1492 38 1509 1323 1492 1323 1511 1323 1511 1324 1492 1324 1491 1324 1511 1325 1491 1325 1512 1325 1512 38 1491 38 1490 38 1512 38 1490 38 1505 38 1505 1326 1490 1326 1489 1326 1505 38 1489 38 1488 38 1470 38 1469 38 1510 38 1510 38 1469 38 1502 38 1510 1327 1502 1327 1513 1327 1513 1328 1502 1328 1501 1328 1513 38 1501 38 1514 38 1501 38 1500 38 1514 38 1514 38 1500 38 1499 38 1514 38 1499 38 1515 38 1515 38 1499 38 1498 38 1515 38 1498 38 1516 38 1516 38 1498 38 1497 38 1516 38 1497 38 1507 38 1507 1329 1497 1329 1496 1329 1507 1330 1496 1330 1495 1330 15 1331 17 1331 30 1331 1309 38 1311 38 1506 38 1506 38 1311 38 1313 38 1506 38 1313 38 1517 38 1517 38 1313 38 1315 38 1517 38 1315 38 1317 38 1317 38 1319 38 1517 38 1517 38 1319 38 1322 38 1517 38 1322 38 1323 38 1504 38 37 38 1503 38 1503 38 37 38 9 38 1503 38 9 38 30 38 30 1332 9 1332 10 1332 30 38 10 38 11 38 11 38 12 38 30 38 30 1333 12 1333 14 1333 30 1334 14 1334 15 1334 1518 1335 1519 1335 1327 1335 1327 1336 1519 1336 1520 1336 1327 1337 1520 1337 1321 1337 1321 1338 1520 1338 1517 1338 1321 1339 1517 1339 1323 1339 1329 1340 1521 1340 1330 1340 1330 1341 1521 1341 1522 1341 1330 1342 1522 1342 1331 1342 1331 1343 1522 1343 1523 1343 1331 1344 1523 1344 1332 1344 1332 1345 1523 1345 1524 1345 1332 1346 1524 1346 1326 1346 1326 1347 1524 1347 1525 1347 1518 1348 1327 1348 1526 1348 1526 1349 1327 1349 1328 1349 1526 1350 1328 1350 1527 1350 1527 1351 1328 1351 1324 1351 1527 1352 1324 1352 1525 1352 1525 1353 1324 1353 1325 1353 1525 1354 1325 1354 1326 1354 1528 1355 1529 1355 1521 1355 1282 1356 1530 1356 1283 1356 1283 1357 1530 1357 1528 1357 1283 1358 1528 1358 1329 1358 1329 1359 1528 1359 1521 1359 103 38 1531 38 104 38 104 1360 1531 1360 1532 1360 1295 38 1297 38 1532 38 1297 1361 1299 1361 1532 1361 1532 1362 1299 1362 1404 1362 1532 38 1404 38 104 38 1282 38 1285 38 1530 38 1530 38 1285 38 1287 38 1287 38 1289 38 1530 38 1530 38 1289 38 1291 38 1530 38 1291 38 1532 38 1532 38 1291 38 1293 38 1532 38 1293 38 1295 38 1531 1363 103 1363 106 1363 1531 1364 106 1364 1533 1364 1533 1365 106 1365 110 1365 1533 1366 110 1366 1534 1366 1534 1367 110 1367 109 1367 1534 1368 109 1368 1535 1368 1535 1369 109 1369 108 1369 1535 1370 108 1370 1536 1370 1536 431 108 431 1537 431 1537 1371 108 1371 107 1371 1537 1372 107 1372 101 1372 1537 1373 101 1373 1538 1373 1538 1374 101 1374 100 1374 1538 1375 100 1375 1539 1375 1539 1376 100 1376 111 1376 1539 1377 111 1377 1540 1377 1540 1378 111 1378 113 1378 1540 1379 113 1379 1541 1379 1542 1380 1543 1380 1544 1380 1544 38 1543 38 1545 38 1544 38 1545 38 1546 38 1547 38 1548 38 1549 38 1549 38 1550 38 1547 38 1547 38 1550 38 127 38 1547 38 127 38 1544 38 1544 1381 127 1381 129 1381 1544 38 129 38 1542 38 1542 1382 129 1382 1551 1382 1541 1383 113 1383 115 1383 1550 1384 1552 1384 127 1384 127 38 1552 38 1553 38 127 38 1553 38 125 38 125 38 1553 38 1554 38 125 1385 1554 1385 123 1385 123 1386 1554 1386 1555 1386 1556 38 135 38 1557 38 1557 1387 135 1387 137 1387 1557 1388 137 1388 1558 1388 1558 1389 137 1389 139 1389 1558 38 139 38 1559 38 1559 38 139 38 141 38 1559 1390 141 1390 146 1390 1551 1391 129 1391 1560 1391 1560 1392 129 1392 131 1392 1560 38 131 38 1556 38 1556 38 131 38 133 38 1556 38 133 38 135 38 1541 1393 115 1393 1561 1393 1561 38 115 38 117 38 1561 38 117 38 1562 38 1562 38 117 38 119 38 1562 1394 119 1394 1555 1394 1555 38 119 38 121 38 1555 38 121 38 123 38 154 1395 1563 1395 1564 1395 154 1396 1564 1396 155 1396 155 1397 1564 1397 1565 1397 155 1398 1565 1398 156 1398 156 1399 1565 1399 1566 1399 156 1400 1566 1400 145 1400 145 1401 1566 1401 1559 1401 145 1402 1559 1402 146 1402 149 431 1567 431 154 431 154 1403 1567 1403 1563 1403 151 1404 1568 1404 1569 1404 151 1405 1569 1405 153 1405 153 1406 1569 1406 1570 1406 153 1407 1570 1407 147 1407 147 1408 1570 1408 1571 1408 147 1409 1571 1409 148 1409 148 1410 1571 1410 1567 1410 148 1411 1567 1411 149 1411 1568 1412 151 1412 1572 1412 1572 1413 151 1413 150 1413 1572 38 150 38 1573 38 1573 38 150 38 1574 38 1574 38 1575 38 1573 38 1573 1414 1575 1414 1576 1414 1573 1415 1576 1415 1577 1415 1577 38 1578 38 1573 38 1573 1416 1578 1416 1579 1416 1573 1417 1579 1417 1580 1417 1580 1418 1579 1418 1581 1418 1580 1419 1581 1419 1582 1419 1583 1420 1584 1420 1585 1420 31 1421 32 1421 1586 1421 1586 1422 32 1422 1587 1422 1586 1423 1587 1423 1584 1423 1584 1424 1587 1424 1588 1424 1584 1425 1588 1425 1585 1425 1583 1426 1585 1426 1589 1426 1589 1427 1585 1427 1590 1427 1589 1428 1590 1428 1591 1428 1591 1429 1590 1429 1573 1429 1591 1430 1573 1430 1580 1430 1592 1431 1593 1431 1594 1431 1592 1432 1594 1432 1595 1432 1595 1433 1594 1433 1596 1433 1595 1434 1596 1434 1597 1434 1597 1435 1596 1435 1598 1435 1598 1436 1596 1436 1599 1436 1598 1437 1599 1437 1600 1437 1600 1438 1599 1438 1576 1438 1600 1439 1576 1439 1575 1439 1579 1440 1578 1440 1599 1440 1599 1441 1578 1441 1577 1441 1599 1442 1577 1442 1576 1442 1582 1443 1581 1443 1601 1443 1591 1444 1602 1444 1589 1444 1589 1445 1602 1445 1603 1445 1589 1446 1603 1446 1583 1446 1583 1447 1603 1447 1584 1447 1584 1448 1603 1448 1604 1448 1584 1449 1604 1449 1586 1449 1586 1450 1604 1450 1605 1450 1586 1451 1605 1451 31 1451 1606 1452 1605 1452 1607 1452 1607 1453 1605 1453 1604 1453 1607 1454 1604 1454 1608 1454 1608 1455 1604 1455 1603 1455 1608 1456 1603 1456 1601 1456 1601 1457 1603 1457 1602 1457 1601 1458 1602 1458 1582 1458 1582 1459 1602 1459 1591 1459 1582 1460 1591 1460 1580 1460 1593 1461 1606 1461 1594 1461 1594 1462 1606 1462 1607 1462 1594 1463 1607 1463 1596 1463 1596 1464 1607 1464 1608 1464 1596 1465 1608 1465 1599 1465 1599 1466 1608 1466 1601 1466 1599 1467 1601 1467 1579 1467 1579 1468 1601 1468 1581 1468 2 1469 31 1469 1605 1469 2 1470 1605 1470 25 1470 25 1471 1605 1471 1606 1471 25 1472 1606 1472 26 1472 26 1473 1606 1473 1593 1473 26 1473 1593 1473 22 1473 22 1474 1593 1474 1592 1474 22 1475 1592 1475 23 1475 1609 1476 1610 1476 1611 1476 1611 1477 1610 1477 1612 1477 1611 1478 1612 1478 1613 1478 1614 1479 1615 1479 1612 1479 1612 1480 1615 1480 1616 1480 1612 1481 1616 1481 1613 1481 1617 1482 1618 1482 1619 1482 1619 1483 1618 1483 1620 1483 1619 1484 1620 1484 1614 1484 1614 1485 1620 1485 1621 1485 1614 1486 1621 1486 1615 1486 1617 1487 1619 1487 1622 1487 1622 1488 1619 1488 1623 1488 1622 1489 1623 1489 1624 1489 1624 1490 1623 1490 1625 1490 1624 1491 1625 1491 1626 1491 1627 1492 1628 1492 1625 1492 1625 1493 1628 1493 1629 1493 1625 1494 1629 1494 1626 1494 1630 1495 1631 1495 1627 1495 1632 1496 1610 1496 1633 1496 1633 1495 1610 1495 1634 1495 1612 1495 1610 1495 1627 1495 1632 1495 1635 1495 1610 1495 1610 1495 1635 1495 1636 1495 1610 1495 1636 1495 1627 1495 1627 1495 1636 1495 1637 1495 1627 1495 1637 1495 1630 1495 1619 1495 1614 1495 1623 1495 1623 1495 1614 1495 1612 1495 1623 1495 1612 1495 1625 1495 1625 1495 1612 1495 1627 1495 1628 443 1627 443 1631 443 1638 443 1639 443 1631 443 1631 443 1639 443 1640 443 1631 443 1640 443 1628 443 1641 38 1642 38 1636 38 1636 1497 1642 1497 1643 1497 1636 1498 1643 1498 1637 1498 1637 1499 1643 1499 1644 1499 1637 1500 1644 1500 1630 1500 1630 1501 1644 1501 1638 1501 1630 1502 1638 1502 1631 1502 1636 38 1635 38 1641 38 1641 1503 1635 1503 1632 1503 1641 1504 1632 1504 1645 1504 1645 1505 1632 1505 1633 1505 1645 1506 1633 1506 1646 1506 1646 1507 1633 1507 1634 1507 1646 1508 1634 1508 1647 1508 1610 431 1609 431 1634 431 1634 431 1609 431 1648 431 1634 431 1648 431 1647 431 1647 431 1648 431 1649 431 1640 1509 1639 1509 1650 1509 1650 1510 1639 1510 1651 1510 1650 1511 1651 1511 1652 1511 1652 1512 1651 1512 1653 1512 1653 1513 1651 1513 1654 1513 1653 1514 1654 1514 1655 1514 1655 1515 1654 1515 1656 1515 1655 1516 1656 1516 1657 1516 1657 1517 1656 1517 1658 1517 1657 1518 1658 1518 1659 1518 1659 1519 1658 1519 1660 1519 1659 1520 1660 1520 1661 1520 1661 1521 1660 1521 1662 1521 1661 1522 1662 1522 1663 1522 1663 1523 1662 1523 1664 1523 1663 1524 1664 1524 1665 1524 1665 1525 1664 1525 1666 1525 1666 1526 1664 1526 1667 1526 1666 1527 1667 1527 1668 1527 1668 1528 1667 1528 1669 1528 1668 1529 1669 1529 1670 1529 1670 1530 1669 1530 1649 1530 1670 1531 1649 1531 1648 1531 1671 1532 1672 1532 1648 1532 1648 1533 1672 1533 1670 1533 1659 1534 1661 1534 1673 1534 1673 1535 1661 1535 1663 1535 1673 1536 1663 1536 1674 1536 1674 1537 1663 1537 1665 1537 1674 1538 1665 1538 1675 1538 1675 1539 1665 1539 1666 1539 1675 1540 1666 1540 1672 1540 1672 1541 1666 1541 1668 1541 1672 1542 1668 1542 1670 1542 1659 1543 1673 1543 1657 1543 1657 1544 1673 1544 1676 1544 1657 1545 1676 1545 1655 1545 1655 1546 1676 1546 1677 1546 1655 1547 1677 1547 1653 1547 1653 1548 1677 1548 1652 1548 1652 1549 1677 1549 1678 1549 1652 1550 1678 1550 1650 1550 1678 1551 1679 1551 1650 1551 1650 1552 1679 1552 1680 1552 1650 1553 1680 1553 1640 1553 1671 1554 1648 1554 1681 1554 1681 1555 1648 1555 1609 1555 1681 1556 1609 1556 1682 1556 1620 1557 1683 1557 1684 1557 1624 1558 1685 1558 1686 1558 1685 1559 1624 1559 1687 1559 1624 1560 1626 1560 1687 1560 1687 1561 1626 1561 1629 1561 1687 1562 1629 1562 1688 1562 1688 1563 1629 1563 1628 1563 1688 1564 1628 1564 1689 1564 1620 1565 1618 1565 1683 1565 1683 1566 1618 1566 1617 1566 1683 1567 1617 1567 1686 1567 1686 1568 1617 1568 1622 1568 1686 1569 1622 1569 1624 1569 1611 1570 1613 1570 1690 1570 1690 1571 1613 1571 1616 1571 1690 1572 1616 1572 1691 1572 1691 1573 1616 1573 1615 1573 1691 1574 1615 1574 1684 1574 1684 1575 1615 1575 1621 1575 1684 1576 1621 1576 1620 1576 1690 1577 1692 1577 1611 1577 1611 1578 1692 1578 1682 1578 1611 1579 1682 1579 1609 1579 1689 1580 1628 1580 1693 1580 1693 1581 1628 1581 1640 1581 1693 1582 1640 1582 1680 1582 1694 1583 1695 1583 1696 1583 1694 1584 1696 1584 1697 1584 1697 1585 1696 1585 1698 1585 1697 1586 1698 1586 1699 1586 1700 1587 1701 1587 1694 1587 1694 1588 1701 1588 1702 1588 1694 1589 1702 1589 1695 1589 1703 1482 1704 1482 1705 1482 1705 1590 1704 1590 1706 1590 1705 1591 1706 1591 1700 1591 1700 1592 1706 1592 1707 1592 1700 1593 1707 1593 1701 1593 1703 1594 1705 1594 1708 1594 1708 1595 1705 1595 1709 1595 1708 1596 1709 1596 1710 1596 1710 1490 1709 1490 1711 1490 1710 1597 1711 1597 1712 1597 1713 1492 1714 1492 1711 1492 1711 1598 1714 1598 1715 1598 1711 1599 1715 1599 1712 1599 1716 1495 1717 1495 1713 1495 1718 1600 1697 1600 1719 1600 1719 1495 1697 1495 1720 1495 1694 1495 1697 1495 1713 1495 1718 1495 1721 1495 1697 1495 1697 1601 1721 1601 1722 1601 1697 1495 1722 1495 1713 1495 1713 1602 1722 1602 1723 1602 1713 1495 1723 1495 1716 1495 1705 1495 1700 1495 1709 1495 1709 1495 1700 1495 1694 1495 1709 1495 1694 1495 1711 1495 1711 1495 1694 1495 1713 1495 1714 443 1713 443 1717 443 1724 443 1725 443 1717 443 1717 443 1725 443 1726 443 1717 443 1726 443 1714 443 1727 38 1728 38 1722 38 1722 1603 1728 1603 1729 1603 1722 566 1729 566 1723 566 1723 1499 1729 1499 1730 1499 1723 1500 1730 1500 1716 1500 1716 1501 1730 1501 1724 1501 1716 1502 1724 1502 1717 1502 1722 38 1721 38 1727 38 1727 1604 1721 1604 1718 1604 1727 1605 1718 1605 1731 1605 1731 1505 1718 1505 1719 1505 1731 1606 1719 1606 1732 1606 1732 1607 1719 1607 1720 1607 1732 1608 1720 1608 1733 1608 1697 431 1699 431 1720 431 1720 431 1699 431 1734 431 1720 431 1734 431 1733 431 1733 431 1734 431 1735 431 1726 1509 1725 1509 1736 1509 1736 1510 1725 1510 1737 1510 1736 1609 1737 1609 1738 1609 1738 1512 1737 1512 1739 1512 1739 1610 1737 1610 1740 1610 1739 1611 1740 1611 1741 1611 1741 1612 1740 1612 1742 1612 1741 1613 1742 1613 1743 1613 1743 1614 1742 1614 1744 1614 1743 1615 1744 1615 1745 1615 1745 1519 1744 1519 1746 1519 1745 1616 1746 1616 1747 1616 1747 1617 1746 1617 1748 1617 1747 1618 1748 1618 1749 1618 1749 1619 1748 1619 1750 1619 1749 1620 1750 1620 1751 1620 1751 1621 1750 1621 1752 1621 1752 1622 1750 1622 1753 1622 1752 1623 1753 1623 1754 1623 1754 1624 1753 1624 1755 1624 1754 1625 1755 1625 1756 1625 1756 1626 1755 1626 1735 1626 1756 1531 1735 1531 1734 1531 1757 1627 1758 1627 1734 1627 1734 1628 1758 1628 1756 1628 1745 1629 1747 1629 1759 1629 1759 1630 1747 1630 1749 1630 1759 1631 1749 1631 1760 1631 1760 1632 1749 1632 1751 1632 1760 1633 1751 1633 1761 1633 1761 1634 1751 1634 1752 1634 1761 1540 1752 1540 1758 1540 1758 1635 1752 1635 1754 1635 1758 1636 1754 1636 1756 1636 1745 1637 1759 1637 1743 1637 1743 1638 1759 1638 1762 1638 1743 1639 1762 1639 1741 1639 1741 1640 1762 1640 1763 1640 1741 1641 1763 1641 1739 1641 1739 1642 1763 1642 1738 1642 1738 1549 1763 1549 1764 1549 1738 1550 1764 1550 1736 1550 1764 1643 1765 1643 1736 1643 1736 1552 1765 1552 1766 1552 1736 1644 1766 1644 1726 1644 1757 1554 1734 1554 1767 1554 1767 1645 1734 1645 1699 1645 1767 1646 1699 1646 1768 1646 1714 1647 1769 1647 1770 1647 1710 1648 1712 1648 1770 1648 1770 1649 1712 1649 1715 1649 1770 1650 1715 1650 1714 1650 1770 1651 1771 1651 1710 1651 1710 1652 1771 1652 1772 1652 1710 1653 1772 1653 1708 1653 1708 1654 1772 1654 1703 1654 1703 1655 1772 1655 1773 1655 1703 1656 1773 1656 1704 1656 1704 1565 1773 1565 1706 1565 1706 1657 1773 1657 1774 1657 1706 1658 1774 1658 1707 1658 1707 1659 1774 1659 1701 1659 1701 1660 1774 1660 1775 1660 1701 1661 1775 1661 1702 1661 1702 1662 1775 1662 1776 1662 1702 1663 1776 1663 1695 1663 1695 1664 1776 1664 1696 1664 1696 1665 1776 1665 1777 1665 1696 1666 1777 1666 1698 1666 1698 1667 1777 1667 1768 1667 1698 1668 1768 1668 1699 1668 1769 1669 1714 1669 1778 1669 1778 1581 1714 1581 1726 1581 1778 1670 1726 1670 1766 1670 1779 1583 1780 1583 1781 1583 1779 1671 1781 1671 1782 1671 1782 1672 1781 1672 1783 1672 1782 1586 1783 1586 1784 1586 1785 1673 1786 1673 1779 1673 1779 1588 1786 1588 1787 1588 1779 1589 1787 1589 1780 1589 1788 1482 1789 1482 1790 1482 1790 1590 1789 1590 1791 1590 1790 1674 1791 1674 1785 1674 1785 1675 1791 1675 1792 1675 1785 1676 1792 1676 1786 1676 1788 1487 1790 1487 1793 1487 1793 1677 1790 1677 1794 1677 1793 1678 1794 1678 1795 1678 1795 1679 1794 1679 1796 1679 1795 1680 1796 1680 1797 1680 1798 1492 1799 1492 1796 1492 1796 1493 1799 1493 1800 1493 1796 1681 1800 1681 1797 1681 1801 1495 1802 1495 1798 1495 1803 1600 1782 1600 1804 1600 1804 1495 1782 1495 1805 1495 1779 1495 1782 1495 1798 1495 1803 1495 1806 1495 1782 1495 1782 1682 1806 1682 1807 1682 1782 1495 1807 1495 1798 1495 1798 1683 1807 1683 1808 1683 1798 1495 1808 1495 1801 1495 1790 1495 1785 1495 1794 1495 1794 1684 1785 1684 1779 1684 1794 1685 1779 1685 1796 1685 1796 1495 1779 1495 1798 1495 1799 443 1798 443 1802 443 1809 443 1810 443 1802 443 1802 443 1810 443 1811 443 1802 443 1811 443 1799 443 1812 38 1813 38 1807 38 1807 1603 1813 1603 1814 1603 1807 566 1814 566 1808 566 1808 1499 1814 1499 1815 1499 1808 1500 1815 1500 1801 1500 1801 1501 1815 1501 1809 1501 1801 1502 1809 1502 1802 1502 1807 38 1806 38 1812 38 1812 1604 1806 1604 1803 1604 1812 1605 1803 1605 1816 1605 1816 1505 1803 1505 1804 1505 1816 1606 1804 1606 1817 1606 1817 1607 1804 1607 1805 1607 1817 1608 1805 1608 1818 1608 1782 431 1784 431 1805 431 1805 431 1784 431 1819 431 1805 431 1819 431 1818 431 1818 431 1819 431 1820 431 1811 1686 1810 1686 1821 1686 1821 1687 1810 1687 1822 1687 1821 1688 1822 1688 1823 1688 1823 1689 1822 1689 1824 1689 1824 1513 1822 1513 1825 1513 1824 1690 1825 1690 1826 1690 1826 1691 1825 1691 1827 1691 1826 1692 1827 1692 1828 1692 1828 1693 1827 1693 1829 1693 1828 1615 1829 1615 1830 1615 1830 1519 1829 1519 1831 1519 1830 1616 1831 1616 1832 1616 1832 1617 1831 1617 1833 1617 1832 1694 1833 1694 1834 1694 1834 1523 1833 1523 1835 1523 1834 1695 1835 1695 1836 1695 1836 1696 1835 1696 1837 1696 1837 1697 1835 1697 1838 1697 1837 1698 1838 1698 1839 1698 1839 1624 1838 1624 1840 1624 1839 1699 1840 1699 1841 1699 1841 1700 1840 1700 1820 1700 1841 1531 1820 1531 1819 1531 1842 1701 1843 1701 1819 1701 1819 1702 1843 1702 1841 1702 1830 1703 1832 1703 1844 1703 1844 1630 1832 1630 1834 1630 1844 1704 1834 1704 1845 1704 1845 1705 1834 1705 1836 1705 1845 1706 1836 1706 1846 1706 1846 1634 1836 1634 1837 1634 1846 1707 1837 1707 1843 1707 1843 1635 1837 1635 1839 1635 1843 1708 1839 1708 1841 1708 1830 1637 1844 1637 1828 1637 1828 1709 1844 1709 1847 1709 1828 1545 1847 1545 1826 1545 1826 1710 1847 1710 1848 1710 1826 1547 1848 1547 1824 1547 1824 1642 1848 1642 1823 1642 1823 1711 1848 1711 1849 1711 1823 1712 1849 1712 1821 1712 1849 1713 1850 1713 1821 1713 1821 1714 1850 1714 1851 1714 1821 1715 1851 1715 1811 1715 1842 1716 1819 1716 1852 1716 1852 1645 1819 1645 1784 1645 1852 1717 1784 1717 1853 1717 1795 1718 1797 1718 1854 1718 1854 1719 1797 1719 1800 1719 1854 1720 1800 1720 1855 1720 1855 1721 1800 1721 1799 1721 1855 1722 1799 1722 1856 1722 1854 1651 1857 1651 1795 1651 1795 1558 1857 1558 1858 1558 1795 1723 1858 1723 1793 1723 1793 1724 1858 1724 1788 1724 1788 1725 1858 1725 1859 1725 1788 1726 1859 1726 1789 1726 1789 1727 1859 1727 1791 1727 1791 1728 1859 1728 1860 1728 1791 1729 1860 1729 1792 1729 1792 1730 1860 1730 1786 1730 1786 1731 1860 1731 1861 1731 1786 1732 1861 1732 1787 1732 1787 1733 1861 1733 1862 1733 1787 1734 1862 1734 1780 1734 1780 1735 1862 1735 1781 1735 1781 1665 1862 1665 1863 1665 1781 1666 1863 1666 1783 1666 1783 1736 1863 1736 1853 1736 1783 1737 1853 1737 1784 1737 1856 1738 1799 1738 1864 1738 1864 1739 1799 1739 1811 1739 1864 1740 1811 1740 1851 1740 1865 1741 1866 1741 1867 1741 1865 1742 1867 1742 1868 1742 1868 1743 1867 1743 1869 1743 1868 1586 1869 1586 1870 1586 1871 1479 1872 1479 1865 1479 1865 1588 1872 1588 1873 1588 1865 1744 1873 1744 1866 1744 1874 1745 1875 1745 1876 1745 1876 1746 1875 1746 1877 1746 1876 1747 1877 1747 1871 1747 1871 1748 1877 1748 1878 1748 1871 1749 1878 1749 1872 1749 1874 1750 1876 1750 1879 1750 1879 1751 1876 1751 1880 1751 1879 1752 1880 1752 1881 1752 1881 1753 1880 1753 1882 1753 1881 1754 1882 1754 1883 1754 1884 1755 1885 1755 1882 1755 1882 1756 1885 1756 1886 1756 1882 1757 1886 1757 1883 1757 1868 1495 1887 1495 1888 1495 1889 1495 1884 1495 1890 1495 1890 1496 1884 1496 1891 1496 1871 1758 1865 1758 1868 1758 1888 1495 1892 1495 1868 1495 1868 1495 1892 1495 1893 1495 1868 1495 1893 1495 1894 1495 1882 1759 1880 1759 1876 1759 1876 1760 1871 1760 1882 1760 1882 1761 1871 1761 1868 1761 1882 1495 1868 1495 1884 1495 1884 1495 1868 1495 1894 1495 1884 1495 1894 1495 1891 1495 1885 443 1884 443 1889 443 1895 443 1896 443 1889 443 1889 443 1896 443 1897 443 1889 443 1897 443 1885 443 1898 38 1899 38 1894 38 1894 1497 1899 1497 1900 1497 1894 1498 1900 1498 1891 1498 1891 1762 1900 1762 1901 1762 1891 1500 1901 1500 1890 1500 1890 1763 1901 1763 1895 1763 1890 1764 1895 1764 1889 1764 1894 38 1893 38 1898 38 1898 1503 1893 1503 1892 1503 1898 1504 1892 1504 1902 1504 1902 1505 1892 1505 1888 1505 1902 1606 1888 1606 1903 1606 1903 1607 1888 1607 1887 1607 1903 1608 1887 1608 1904 1608 1868 431 1870 431 1887 431 1887 431 1870 431 1905 431 1887 431 1905 431 1904 431 1904 431 1905 431 1906 431 1897 1509 1896 1509 1907 1509 1907 1765 1896 1765 1908 1765 1907 1766 1908 1766 1909 1766 1909 1767 1908 1767 1910 1767 1910 1768 1908 1768 1911 1768 1910 1769 1911 1769 1912 1769 1912 1770 1911 1770 1913 1770 1912 1613 1913 1613 1914 1613 1914 1517 1913 1517 1915 1517 1914 1771 1915 1771 1916 1771 1916 1772 1915 1772 1917 1772 1916 1773 1917 1773 1918 1773 1918 1774 1917 1774 1919 1774 1918 1618 1919 1618 1920 1618 1920 1523 1919 1523 1921 1523 1920 1775 1921 1775 1922 1775 1922 1776 1921 1776 1923 1776 1923 1697 1921 1697 1924 1697 1923 1777 1924 1777 1925 1777 1925 1528 1924 1528 1926 1528 1925 1778 1926 1778 1927 1778 1927 1779 1926 1779 1906 1779 1927 1531 1906 1531 1905 1531 1928 1532 1929 1532 1905 1532 1905 1780 1929 1780 1927 1780 1916 1781 1918 1781 1930 1781 1930 1782 1918 1782 1920 1782 1930 1783 1920 1783 1931 1783 1931 1784 1920 1784 1922 1784 1931 1785 1922 1785 1932 1785 1932 1634 1922 1634 1923 1634 1932 1786 1923 1786 1929 1786 1929 1787 1923 1787 1925 1787 1929 1788 1925 1788 1927 1788 1916 1789 1930 1789 1914 1789 1914 1790 1930 1790 1933 1790 1914 1791 1933 1791 1912 1791 1912 1792 1933 1792 1934 1792 1912 1793 1934 1793 1910 1793 1910 1642 1934 1642 1909 1642 1909 1794 1934 1794 1935 1794 1909 1550 1935 1550 1907 1550 1935 1795 1936 1795 1907 1795 1907 1552 1936 1552 1937 1552 1907 1796 1937 1796 1897 1796 1928 1554 1905 1554 1938 1554 1938 1797 1905 1797 1870 1797 1938 1798 1870 1798 1939 1798 1885 1799 1940 1799 1941 1799 1881 1560 1883 1560 1941 1560 1941 1800 1883 1800 1886 1800 1941 1801 1886 1801 1885 1801 1941 1651 1942 1651 1881 1651 1881 1558 1942 1558 1943 1558 1881 1802 1943 1802 1879 1802 1879 1803 1943 1803 1874 1803 1874 1804 1943 1804 1944 1804 1874 1656 1944 1656 1875 1656 1875 1727 1944 1727 1877 1727 1877 1805 1944 1805 1945 1805 1877 1806 1945 1806 1878 1806 1878 1807 1945 1807 1872 1807 1872 1808 1945 1808 1946 1808 1872 1809 1946 1809 1873 1809 1873 1662 1946 1662 1947 1662 1873 1810 1947 1810 1866 1810 1866 1811 1947 1811 1867 1811 1867 1812 1947 1812 1948 1812 1867 1813 1948 1813 1869 1813 1869 1667 1948 1667 1939 1667 1869 1814 1939 1814 1870 1814 1940 1815 1885 1815 1949 1815 1949 1581 1885 1581 1897 1581 1949 1816 1897 1816 1937 1816 1950 1817 1951 1817 1952 1817 1952 1671 1951 1671 1953 1671 1952 1818 1953 1818 1954 1818 1955 1479 1956 1479 1953 1479 1953 1819 1956 1819 1957 1819 1953 1589 1957 1589 1954 1589 1958 1820 1959 1820 1960 1820 1960 1746 1959 1746 1961 1746 1960 1821 1961 1821 1955 1821 1955 1822 1961 1822 1962 1822 1955 1823 1962 1823 1956 1823 1958 1824 1960 1824 1963 1824 1963 1488 1960 1488 1964 1488 1963 1678 1964 1678 1965 1678 1965 1825 1964 1825 1966 1825 1965 1826 1966 1826 1967 1826 1968 1492 1969 1492 1966 1492 1966 1598 1969 1598 1970 1598 1966 1599 1970 1599 1967 1599 1951 1495 1971 1495 1972 1495 1973 1495 1968 1495 1974 1495 1974 1495 1968 1495 1975 1495 1955 1827 1953 1827 1951 1827 1972 1495 1976 1495 1951 1495 1951 1495 1976 1495 1977 1495 1951 1495 1977 1495 1978 1495 1966 1828 1964 1828 1960 1828 1960 1760 1955 1760 1966 1760 1966 1829 1955 1829 1951 1829 1966 1495 1951 1495 1968 1495 1968 1495 1951 1495 1978 1495 1968 1495 1978 1495 1975 1495 1969 443 1968 443 1973 443 1979 443 1980 443 1973 443 1973 443 1980 443 1981 443 1973 443 1981 443 1969 443 1982 38 1983 38 1978 38 1978 1830 1983 1830 1984 1830 1978 1498 1984 1498 1975 1498 1975 1499 1984 1499 1985 1499 1975 1500 1985 1500 1974 1500 1974 1501 1985 1501 1979 1501 1974 1502 1979 1502 1973 1502 1978 38 1977 38 1982 38 1982 1503 1977 1503 1976 1503 1982 1831 1976 1831 1986 1831 1986 1505 1976 1505 1972 1505 1986 1606 1972 1606 1987 1606 1987 1607 1972 1607 1971 1607 1987 1608 1971 1608 1988 1608 1951 431 1950 431 1971 431 1971 431 1950 431 1989 431 1971 431 1989 431 1988 431 1988 431 1989 431 1990 431 1981 1509 1980 1509 1991 1509 1991 1510 1980 1510 1992 1510 1991 1832 1992 1832 1993 1832 1993 1833 1992 1833 1994 1833 1994 1834 1992 1834 1995 1834 1994 1690 1995 1690 1996 1690 1996 1691 1995 1691 1997 1691 1996 1613 1997 1613 1998 1613 1998 1835 1997 1835 1999 1835 1998 1615 1999 1615 2000 1615 2000 1836 1999 1836 2001 1836 2000 1837 2001 1837 2002 1837 2002 1617 2001 1617 2003 1617 2002 1838 2003 1838 2004 1838 2004 1839 2003 1839 2005 1839 2004 1840 2005 1840 2006 1840 2006 1841 2005 1841 2007 1841 2007 1842 2005 1842 2008 1842 2007 1698 2008 1698 2009 1698 2009 1843 2008 1843 2010 1843 2009 1844 2010 1844 2011 1844 2011 1845 2010 1845 1990 1845 2011 1531 1990 1531 1989 1531 2012 1846 2013 1846 1989 1846 1989 1847 2013 1847 2011 1847 2000 1848 2002 1848 2014 1848 2014 1849 2002 1849 2004 1849 2014 1536 2004 1536 2015 1536 2015 1850 2004 1850 2006 1850 2015 1851 2006 1851 2016 1851 2016 1852 2006 1852 2007 1852 2016 1853 2007 1853 2013 1853 2013 1854 2007 1854 2009 1854 2013 1855 2009 1855 2011 1855 2000 1856 2014 1856 1998 1856 1998 1857 2014 1857 2017 1857 1998 1639 2017 1639 1996 1639 1996 1858 2017 1858 2018 1858 1996 1547 2018 1547 1994 1547 1994 1642 2018 1642 1993 1642 1993 1549 2018 1549 2019 1549 1993 1859 2019 1859 1991 1859 2019 1643 2020 1643 1991 1643 1991 1714 2020 1714 2021 1714 1991 1860 2021 1860 1981 1860 2012 1861 1989 1861 2022 1861 2022 1797 1989 1797 1950 1797 2022 1862 1950 1862 2023 1862 1961 1863 2024 1863 2025 1863 1965 1864 2026 1864 2027 1864 2026 1865 1965 1865 2028 1865 1965 1560 1967 1560 2028 1560 2028 1866 1967 1866 1970 1866 2028 1867 1970 1867 2029 1867 2029 1868 1970 1868 1969 1868 2029 1869 1969 1869 2030 1869 1961 1870 1959 1870 2024 1870 2024 1871 1959 1871 1958 1871 2024 1872 1958 1872 2027 1872 2027 1873 1958 1873 1963 1873 2027 1874 1963 1874 1965 1874 1952 1875 1954 1875 2031 1875 2031 1876 1954 1876 1957 1876 2031 1877 1957 1877 2032 1877 2032 1878 1957 1878 1956 1878 2032 1879 1956 1879 2025 1879 2025 1880 1956 1880 1962 1880 2025 1881 1962 1881 1961 1881 2031 1882 2033 1882 1952 1882 1952 1883 2033 1883 2023 1883 1952 1884 2023 1884 1950 1884 2030 1580 1969 1580 2034 1580 2034 1885 1969 1885 1981 1885 2034 1886 1981 1886 2021 1886 2035 1887 2036 1887 2037 1887 2037 1671 2036 1671 2038 1671 2037 1888 2038 1888 2039 1888 2040 1889 2041 1889 2038 1889 2038 1890 2041 1890 2042 1890 2038 1891 2042 1891 2039 1891 2043 1482 2044 1482 2045 1482 2045 1590 2044 1590 2046 1590 2045 1821 2046 1821 2040 1821 2040 1892 2046 1892 2047 1892 2040 1893 2047 1893 2041 1893 2043 1894 2045 1894 2048 1894 2048 1895 2045 1895 2049 1895 2048 1596 2049 1596 2050 1596 2050 1896 2049 1896 2051 1896 2050 1897 2051 1897 2052 1897 2053 1492 2054 1492 2051 1492 2051 1898 2054 1898 2055 1898 2051 1899 2055 1899 2052 1899 2056 1495 2057 1495 2053 1495 2058 1600 2036 1600 2059 1600 2059 1495 2036 1495 2060 1495 2038 1495 2036 1495 2053 1495 2058 1495 2061 1495 2036 1495 2036 1495 2061 1495 2062 1495 2036 1495 2062 1495 2053 1495 2053 1495 2062 1495 2063 1495 2053 1495 2063 1495 2056 1495 2045 1495 2040 1495 2049 1495 2049 1495 2040 1495 2038 1495 2049 1900 2038 1900 2051 1900 2051 1495 2038 1495 2053 1495 2054 443 2053 443 2057 443 2064 443 2065 443 2057 443 2057 443 2065 443 2066 443 2057 443 2066 443 2054 443 2067 38 2068 38 2062 38 2062 1830 2068 1830 2069 1830 2062 1498 2069 1498 2063 1498 2063 1499 2069 1499 2070 1499 2063 1500 2070 1500 2056 1500 2056 1501 2070 1501 2064 1501 2056 1502 2064 1502 2057 1502 2062 38 2061 38 2067 38 2067 1604 2061 1604 2058 1604 2067 1605 2058 1605 2071 1605 2071 1505 2058 1505 2059 1505 2071 1606 2059 1606 2072 1606 2072 1607 2059 1607 2060 1607 2072 1608 2060 1608 2073 1608 2036 431 2035 431 2060 431 2060 431 2035 431 2074 431 2060 431 2074 431 2073 431 2073 431 2074 431 2075 431 2066 1901 2065 1901 2076 1901 2076 1902 2065 1902 2077 1902 2076 1903 2077 1903 2078 1903 2078 1833 2077 1833 2079 1833 2079 1768 2077 1768 2080 1768 2079 1690 2080 1690 2081 1690 2081 1904 2080 1904 2082 1904 2081 1613 2082 1613 2083 1613 2083 1835 2082 1835 2084 1835 2083 1771 2084 1771 2085 1771 2085 1519 2084 1519 2086 1519 2085 1520 2086 1520 2087 1520 2087 1905 2086 1905 2088 1905 2087 1906 2088 1906 2089 1906 2089 1907 2088 1907 2090 1907 2089 1908 2090 1908 2091 1908 2091 1909 2090 1909 2092 1909 2092 1910 2090 1910 2093 1910 2092 1777 2093 1777 2094 1777 2094 1911 2093 1911 2095 1911 2094 1912 2095 1912 2096 1912 2096 1626 2095 1626 2075 1626 2096 1913 2075 1913 2074 1913 2097 1914 2098 1914 2074 1914 2074 1915 2098 1915 2096 1915 2085 1916 2087 1916 2099 1916 2099 1917 2087 1917 2089 1917 2099 1631 2089 1631 2100 1631 2100 1918 2089 1918 2091 1918 2100 1919 2091 1919 2101 1919 2101 1920 2091 1920 2092 1920 2101 1921 2092 1921 2098 1921 2098 1922 2092 1922 2094 1922 2098 1923 2094 1923 2096 1923 2085 1789 2099 1789 2083 1789 2083 1924 2099 1924 2102 1924 2083 1925 2102 1925 2081 1925 2081 1926 2102 1926 2103 1926 2081 1793 2103 1793 2079 1793 2079 1548 2103 1548 2078 1548 2078 1549 2103 1549 2104 1549 2078 1927 2104 1927 2076 1927 2104 1928 2105 1928 2076 1928 2076 1929 2105 1929 2106 1929 2076 1930 2106 1930 2066 1930 2097 1716 2074 1716 2107 1716 2107 1931 2074 1931 2035 1931 2107 1932 2035 1932 2108 1932 2046 1933 2109 1933 2110 1933 2050 1934 2111 1934 2112 1934 2111 1935 2050 1935 2113 1935 2050 1718 2052 1718 2113 1718 2113 1561 2052 1561 2055 1561 2113 1936 2055 1936 2114 1936 2114 1937 2055 1937 2054 1937 2114 1938 2054 1938 2115 1938 2046 1870 2044 1870 2109 1870 2109 1939 2044 1939 2043 1939 2109 1567 2043 1567 2112 1567 2112 1940 2043 1940 2048 1940 2112 1941 2048 1941 2050 1941 2037 1570 2039 1570 2116 1570 2116 1942 2039 1942 2042 1942 2116 1943 2042 1943 2117 1943 2117 1944 2042 1944 2041 1944 2117 1945 2041 1945 2110 1945 2110 1946 2041 1946 2047 1946 2110 1947 2047 1947 2046 1947 2116 1948 2118 1948 2037 1948 2037 1949 2118 1949 2108 1949 2037 1950 2108 1950 2035 1950 2115 1738 2054 1738 2119 1738 2119 1951 2054 1951 2066 1951 2119 1952 2066 1952 2106 1952 2120 1817 2121 1817 2122 1817 2122 1953 2121 1953 2123 1953 2122 1954 2123 1954 2124 1954 2125 1955 2126 1955 2123 1955 2123 1819 2126 1819 2127 1819 2123 1956 2127 1956 2124 1956 2128 1957 2129 1957 2130 1957 2130 1958 2129 1958 2131 1958 2130 1959 2131 1959 2125 1959 2125 1960 2131 1960 2132 1960 2125 1961 2132 1961 2126 1961 2128 1962 2130 1962 2133 1962 2133 1488 2130 1488 2134 1488 2133 1963 2134 1963 2135 1963 2135 1964 2134 1964 2136 1964 2135 1965 2136 1965 2137 1965 2138 1492 2139 1492 2136 1492 2136 1966 2139 1966 2140 1966 2136 1967 2140 1967 2137 1967 2141 1495 2142 1495 2138 1495 2125 1968 2123 1968 2121 1968 2143 1600 2121 1600 2144 1600 2144 1495 2121 1495 2145 1495 2143 1495 2146 1495 2121 1495 2121 1495 2146 1495 2147 1495 2121 1495 2147 1495 2138 1495 2138 1495 2147 1495 2148 1495 2138 1495 2148 1495 2141 1495 2130 1495 2125 1495 2134 1495 2134 1969 2125 1969 2121 1969 2134 1495 2121 1495 2136 1495 2136 1495 2121 1495 2138 1495 2139 443 2138 443 2142 443 2149 443 2150 443 2142 443 2142 443 2150 443 2151 443 2142 443 2151 443 2139 443 2152 38 2153 38 2147 38 2147 1830 2153 1830 2154 1830 2147 1498 2154 1498 2148 1498 2148 1762 2154 1762 2155 1762 2148 1500 2155 1500 2141 1500 2141 1970 2155 1970 2149 1970 2141 1971 2149 1971 2142 1971 2147 38 2146 38 2152 38 2152 1503 2146 1503 2143 1503 2152 1831 2143 1831 2156 1831 2156 1505 2143 1505 2144 1505 2156 1606 2144 1606 2157 1606 2157 1607 2144 1607 2145 1607 2157 1608 2145 1608 2158 1608 2121 431 2120 431 2145 431 2145 431 2120 431 2159 431 2145 431 2159 431 2158 431 2158 431 2159 431 2160 431 2151 1509 2150 1509 2161 1509 2161 1972 2150 1972 2162 1972 2161 1973 2162 1973 2163 1973 2163 1974 2162 1974 2164 1974 2164 1975 2162 1975 2165 1975 2164 1976 2165 1976 2166 1976 2166 1904 2165 1904 2167 1904 2166 1977 2167 1977 2168 1977 2168 1978 2167 1978 2169 1978 2168 1979 2169 1979 2170 1979 2170 1980 2169 1980 2171 1980 2170 1981 2171 1981 2172 1981 2172 1982 2171 1982 2173 1982 2172 1983 2173 1983 2174 1983 2174 1984 2173 1984 2175 1984 2174 1985 2175 1985 2176 1985 2176 1986 2175 1986 2177 1986 2177 1842 2175 1842 2178 1842 2177 1698 2178 1698 2179 1698 2179 1987 2178 1987 2180 1987 2179 1529 2180 1529 2181 1529 2181 1988 2180 1988 2160 1988 2181 1531 2160 1531 2159 1531 2182 1846 2183 1846 2159 1846 2159 1989 2183 1989 2181 1989 2170 1990 2172 1990 2184 1990 2184 1917 2172 1917 2174 1917 2184 1991 2174 1991 2185 1991 2185 1992 2174 1992 2176 1992 2185 1993 2176 1993 2186 1993 2186 1852 2176 1852 2177 1852 2186 1994 2177 1994 2183 1994 2183 1995 2177 1995 2179 1995 2183 1996 2179 1996 2181 1996 2170 1856 2184 1856 2168 1856 2168 1997 2184 1997 2187 1997 2168 1639 2187 1639 2166 1639 2166 1998 2187 1998 2188 1998 2166 1999 2188 1999 2164 1999 2164 1548 2188 1548 2163 1548 2163 2000 2188 2000 2189 2000 2163 2001 2189 2001 2161 2001 2189 2002 2190 2002 2161 2002 2161 1929 2190 1929 2191 1929 2161 2003 2191 2003 2151 2003 2182 1861 2159 1861 2192 1861 2192 2004 2159 2004 2120 2004 2192 2005 2120 2005 2193 2005 2131 2006 2194 2006 2195 2006 2135 2007 2196 2007 2197 2007 2196 2008 2135 2008 2198 2008 2135 1718 2137 1718 2198 1718 2198 2009 2137 2009 2140 2009 2198 2010 2140 2010 2199 2010 2199 2011 2140 2011 2139 2011 2199 2012 2139 2012 2200 2012 2131 1870 2129 1870 2194 1870 2194 2013 2129 2013 2128 2013 2194 2014 2128 2014 2197 2014 2197 2015 2128 2015 2133 2015 2197 2016 2133 2016 2135 2016 2122 2017 2124 2017 2201 2017 2201 2018 2124 2018 2127 2018 2201 1877 2127 1877 2202 1877 2202 2019 2127 2019 2126 2019 2202 2020 2126 2020 2195 2020 2195 2021 2126 2021 2132 2021 2195 2022 2132 2022 2131 2022 2201 2023 2203 2023 2122 2023 2122 1578 2203 1578 2193 1578 2122 2024 2193 2024 2120 2024 2200 1580 2139 1580 2204 1580 2204 1885 2139 1885 2151 1885 2204 2025 2151 2025 2191 2025 2205 1817 2206 1817 2207 1817 2207 1584 2206 1584 2208 1584 2207 2026 2208 2026 2209 2026 2210 2027 2211 2027 2208 2027 2208 2028 2211 2028 2212 2028 2208 2029 2212 2029 2209 2029 2213 2030 2214 2030 2215 2030 2215 1958 2214 1958 2216 1958 2215 2031 2216 2031 2210 2031 2210 1748 2216 1748 2217 1748 2210 2032 2217 2032 2211 2032 2213 2033 2215 2033 2218 2033 2218 2034 2215 2034 2219 2034 2218 1963 2219 1963 2220 1963 2220 2035 2219 2035 2221 2035 2220 2036 2221 2036 2222 2036 2223 1492 2224 1492 2221 1492 2221 2037 2224 2037 2225 2037 2221 2038 2225 2038 2222 2038 2226 1495 2227 1495 2223 1495 2228 2039 2206 2039 2229 2039 2229 1495 2206 1495 2230 1495 2208 1495 2206 1495 2223 1495 2228 1495 2231 1495 2206 1495 2206 1495 2231 1495 2232 1495 2206 1495 2232 1495 2223 1495 2223 1495 2232 1495 2233 1495 2223 2040 2233 2040 2226 2040 2215 1495 2210 1495 2219 1495 2219 1495 2210 1495 2208 1495 2219 1495 2208 1495 2221 1495 2221 1495 2208 1495 2223 1495 2224 443 2223 443 2227 443 2234 443 2235 443 2227 443 2227 443 2235 443 2236 443 2227 443 2236 443 2224 443 2237 38 2238 38 2232 38 2232 1830 2238 1830 2239 1830 2232 1498 2239 1498 2233 1498 2233 2041 2239 2041 2240 2041 2233 2042 2240 2042 2226 2042 2226 2043 2240 2043 2234 2043 2226 2044 2234 2044 2227 2044 2232 38 2231 38 2237 38 2237 1503 2231 1503 2228 1503 2237 1831 2228 1831 2241 1831 2241 1505 2228 1505 2229 1505 2241 1606 2229 1606 2242 1606 2242 1607 2229 1607 2230 1607 2242 2045 2230 2045 2243 2045 2206 431 2205 431 2230 431 2230 431 2205 431 2244 431 2230 431 2244 431 2243 431 2243 431 2244 431 2245 431 2246 2046 2247 2046 2248 2046 2236 2047 2235 2047 2249 2047 2249 2048 2235 2048 2250 2048 2251 2049 2252 2049 2253 2049 2253 2050 2252 2050 2254 2050 2253 2051 2254 2051 2255 2051 2255 2052 2254 2052 2256 2052 2255 2053 2256 2053 2257 2053 2257 2054 2256 2054 2258 2054 2257 2055 2258 2055 2259 2055 2259 2056 2258 2056 2260 2056 2259 2057 2260 2057 2261 2057 2261 2058 2260 2058 2262 2058 2261 2059 2262 2059 2250 2059 2250 2060 2262 2060 2263 2060 2250 2061 2263 2061 2249 2061 2248 2062 2247 2062 2264 2062 2264 2063 2247 2063 2265 2063 2264 2064 2265 2064 2251 2064 2251 2065 2265 2065 2266 2065 2251 2066 2266 2066 2252 2066 2246 2067 2248 2067 2267 2067 2267 2068 2248 2068 2245 2068 2267 2069 2245 2069 2244 2069 2256 2070 2254 2070 2268 2070 2268 2071 2254 2071 2252 2071 2268 2072 2252 2072 2269 2072 2269 1992 2252 1992 2266 1992 2269 2073 2266 2073 2270 2073 2270 2074 2266 2074 2265 2074 2270 2075 2265 2075 2271 2075 2271 2076 2265 2076 2247 2076 2271 2077 2247 2077 2272 2077 2272 2078 2247 2078 2246 2078 2272 2079 2246 2079 2273 2079 2273 2080 2246 2080 2267 2080 2273 2081 2267 2081 2244 2081 2256 1856 2268 1856 2258 1856 2258 2082 2268 2082 2274 2082 2258 2083 2274 2083 2260 2083 2260 2084 2274 2084 2275 2084 2260 1641 2275 1641 2262 1641 2262 2085 2275 2085 2263 2085 2263 2086 2275 2086 2276 2086 2263 2087 2276 2087 2249 2087 2276 2088 2277 2088 2249 2088 2249 2089 2277 2089 2278 2089 2249 2090 2278 2090 2236 2090 2273 2091 2244 2091 2279 2091 2279 1931 2244 1931 2205 1931 2279 2092 2205 2092 2280 2092 2216 2093 2281 2093 2282 2093 2220 1864 2283 1864 2284 1864 2285 2094 2286 2094 2224 2094 2224 2095 2286 2095 2225 2095 2283 2096 2220 2096 2286 2096 2286 2097 2220 2097 2222 2097 2286 1866 2222 1866 2225 1866 2216 2098 2214 2098 2281 2098 2281 2099 2214 2099 2213 2099 2281 2100 2213 2100 2284 2100 2284 2101 2213 2101 2218 2101 2284 1569 2218 1569 2220 1569 2207 2017 2209 2017 2287 2017 2287 2102 2209 2102 2212 2102 2287 2103 2212 2103 2288 2103 2288 2104 2212 2104 2211 2104 2288 2105 2211 2105 2282 2105 2282 2106 2211 2106 2217 2106 2282 2107 2217 2107 2216 2107 2287 2108 2289 2108 2207 2108 2207 2109 2289 2109 2280 2109 2207 2110 2280 2110 2205 2110 2285 2111 2224 2111 2290 2111 2290 1885 2224 1885 2236 1885 2290 2112 2236 2112 2278 2112 2291 2113 2292 2113 2293 2113 2291 2114 2293 2114 2294 2114 2294 2115 2293 2115 2295 2115 2294 2116 2295 2116 2296 2116 2297 2027 2298 2027 2291 2027 2291 2117 2298 2117 2299 2117 2291 1891 2299 1891 2292 1891 2300 2118 2301 2118 2302 2118 2302 2119 2301 2119 2303 2119 2302 2120 2303 2120 2297 2120 2297 1960 2303 1960 2304 1960 2297 2121 2304 2121 2298 2121 2300 1962 2302 1962 2305 1962 2305 2122 2302 2122 2306 2122 2305 2123 2306 2123 2307 2123 2307 2124 2306 2124 2308 2124 2307 2125 2308 2125 2309 2125 2310 1492 2311 1492 2308 1492 2308 2126 2311 2126 2312 2126 2308 2127 2312 2127 2309 2127 2294 1495 2313 1495 2314 1495 2315 1495 2310 1495 2316 1495 2316 2128 2310 2128 2317 2128 2297 1495 2291 1495 2294 1495 2314 1495 2318 1495 2294 1495 2294 1495 2318 1495 2319 1495 2294 1495 2319 1495 2320 1495 2308 2129 2306 2129 2302 2129 2302 2130 2297 2130 2308 2130 2308 2131 2297 2131 2294 2131 2308 2132 2294 2132 2310 2132 2310 2133 2294 2133 2320 2133 2310 2134 2320 2134 2317 2134 2311 443 2310 443 2315 443 2321 443 2322 443 2315 443 2315 443 2322 443 2323 443 2315 443 2323 443 2311 443 2324 38 2325 38 2320 38 2320 1830 2325 1830 2326 1830 2320 566 2326 566 2317 566 2317 2041 2326 2041 2327 2041 2317 2042 2327 2042 2316 2042 2316 1501 2327 1501 2321 1501 2316 2044 2321 2044 2315 2044 2320 38 2319 38 2324 38 2324 1604 2319 1604 2318 1604 2324 1831 2318 1831 2328 1831 2328 1505 2318 1505 2314 1505 2328 1606 2314 1606 2329 1606 2329 1607 2314 1607 2313 1607 2329 2045 2313 2045 2330 2045 2294 431 2296 431 2313 431 2313 431 2296 431 2331 431 2313 431 2331 431 2330 431 2330 431 2331 431 2332 431 2323 2135 2322 2135 2333 2135 2333 2136 2322 2136 2334 2136 2333 2137 2334 2137 2335 2137 2335 2138 2334 2138 2336 2138 2336 2139 2334 2139 2337 2139 2336 2140 2337 2140 2338 2140 2338 2141 2337 2141 2339 2141 2338 2142 2339 2142 2340 2142 2340 2143 2339 2143 2341 2143 2340 2144 2341 2144 2342 2144 2342 2145 2341 2145 2343 2145 2342 2146 2343 2146 2344 2146 2344 2147 2343 2147 2345 2147 2344 2148 2345 2148 2346 2148 2346 2149 2345 2149 2347 2149 2346 2150 2347 2150 2348 2150 2348 2151 2347 2151 2349 2151 2349 2152 2347 2152 2350 2152 2349 2153 2350 2153 2351 2153 2351 2154 2350 2154 2352 2154 2351 2155 2352 2155 2353 2155 2353 2156 2352 2156 2332 2156 2353 2157 2332 2157 2331 2157 2354 2158 2355 2158 2331 2158 2331 2159 2355 2159 2353 2159 2342 2160 2344 2160 2356 2160 2356 2161 2344 2161 2346 2161 2356 2162 2346 2162 2357 2162 2357 2163 2346 2163 2348 2163 2357 2164 2348 2164 2358 2164 2358 1634 2348 1634 2349 1634 2358 2165 2349 2165 2355 2165 2355 2166 2349 2166 2351 2166 2355 2167 2351 2167 2353 2167 2342 2168 2356 2168 2340 2168 2340 2169 2356 2169 2359 2169 2340 1925 2359 1925 2338 1925 2338 2170 2359 2170 2360 2170 2338 1641 2360 1641 2336 1641 2336 2171 2360 2171 2335 2171 2335 2172 2360 2172 2361 2172 2335 1927 2361 1927 2333 1927 2361 2173 2362 2173 2333 2173 2333 2089 2362 2089 2363 2089 2333 2174 2363 2174 2323 2174 2354 2175 2331 2175 2364 2175 2364 2176 2331 2176 2296 2176 2364 2177 2296 2177 2365 2177 2311 2178 2366 2178 2367 2178 2307 2179 2309 2179 2367 2179 2367 2180 2309 2180 2312 2180 2367 2181 2312 2181 2311 2181 2367 2182 2368 2182 2307 2182 2307 1864 2368 1864 2369 1864 2307 2183 2369 2183 2305 2183 2305 2184 2369 2184 2300 2184 2300 2185 2369 2185 2370 2185 2300 2186 2370 2186 2301 2186 2301 2187 2370 2187 2303 2187 2303 2188 2370 2188 2371 2188 2303 2189 2371 2189 2304 2189 2304 2190 2371 2190 2298 2190 2298 2191 2371 2191 2372 2191 2298 2192 2372 2192 2299 2192 2299 2193 2372 2193 2373 2193 2299 2194 2373 2194 2292 2194 2292 2017 2373 2017 2293 2017 2293 2195 2373 2195 2374 2195 2293 2196 2374 2196 2295 2196 2295 2197 2374 2197 2365 2197 2295 2198 2365 2198 2296 2198 2366 2199 2311 2199 2375 2199 2375 1885 2311 1885 2323 1885 2375 2200 2323 2200 2363 2200 2376 2201 2377 2201 2378 2201 2378 2202 2377 2202 2379 2202 2378 2203 2379 2203 2380 2203 2381 2204 2382 2204 2379 2204 2379 2205 2382 2205 2383 2205 2379 1891 2383 1891 2380 1891 2384 2206 2385 2206 2386 2206 2386 2207 2385 2207 2387 2207 2386 2208 2387 2208 2381 2208 2381 1960 2387 1960 2388 1960 2381 2209 2388 2209 2382 2209 2384 2210 2386 2210 2389 2210 2389 2211 2386 2211 2390 2211 2389 2212 2390 2212 2391 2212 2391 2213 2390 2213 2392 2213 2391 2214 2392 2214 2393 2214 2394 1492 2395 1492 2392 1492 2392 2215 2395 2215 2396 2215 2392 2216 2396 2216 2393 2216 2377 1495 2397 1495 2398 1495 2399 2217 2400 2217 2394 2217 2394 1495 2400 1495 2401 1495 2394 1495 2401 1495 2402 1495 2398 1495 2403 1495 2377 1495 2377 2217 2403 2217 2404 2217 2377 2218 2404 2218 2399 2218 2399 1495 2394 1495 2377 1495 2377 1495 2394 1495 2392 1495 2377 2219 2392 2219 2390 2219 2390 2220 2405 2220 2377 2220 2377 1495 2405 1495 2381 1495 2377 2221 2381 2221 2379 2221 2395 443 2394 443 2402 443 2406 443 2407 443 2402 443 2402 443 2407 443 2408 443 2402 443 2408 443 2395 443 2409 38 2410 38 2399 38 2399 1603 2410 1603 2411 1603 2399 1498 2411 1498 2400 1498 2400 2041 2411 2041 2412 2041 2400 2042 2412 2042 2401 2042 2401 2043 2412 2043 2406 2043 2401 2044 2406 2044 2402 2044 2399 38 2404 38 2409 38 2409 1503 2404 1503 2403 1503 2409 1605 2403 1605 2413 1605 2413 1505 2403 1505 2398 1505 2413 1606 2398 1606 2414 1606 2414 1607 2398 1607 2397 1607 2414 2045 2397 2045 2415 2045 2377 431 2376 431 2397 431 2397 431 2376 431 2416 431 2397 431 2416 431 2415 431 2415 431 2416 431 2417 431 2408 2047 2407 2047 2418 2047 2418 2222 2407 2222 2419 2222 2418 2223 2419 2223 2420 2223 2420 2224 2419 2224 2421 2224 2421 2225 2419 2225 2422 2225 2421 2226 2422 2226 2423 2226 2423 2227 2422 2227 2424 2227 2423 2228 2424 2228 2425 2228 2425 2229 2424 2229 2426 2229 2425 2230 2426 2230 2427 2230 2427 2231 2426 2231 2428 2231 2427 2232 2428 2232 2429 2232 2429 2233 2428 2233 2430 2233 2429 2234 2430 2234 2431 2234 2431 2149 2430 2149 2432 2149 2431 2235 2432 2235 2433 2235 2433 2236 2432 2236 2434 2236 2434 2237 2432 2237 2435 2237 2434 2238 2435 2238 2436 2238 2436 2239 2435 2239 2437 2239 2436 2240 2437 2240 2438 2240 2438 2241 2437 2241 2417 2241 2438 2242 2417 2242 2416 2242 2439 2158 2440 2158 2416 2158 2416 2243 2440 2243 2438 2243 2427 2244 2429 2244 2441 2244 2441 2245 2429 2245 2431 2245 2441 2246 2431 2246 2442 2246 2442 2247 2431 2247 2433 2247 2442 2248 2433 2248 2443 2248 2443 2249 2433 2249 2434 2249 2443 2250 2434 2250 2440 2250 2440 2251 2434 2251 2436 2251 2440 2252 2436 2252 2438 2252 2427 2253 2441 2253 2425 2253 2425 2254 2441 2254 2444 2254 2425 2255 2444 2255 2423 2255 2423 2256 2444 2256 2445 2256 2423 2257 2445 2257 2421 2257 2421 2258 2445 2258 2420 2258 2420 2259 2445 2259 2446 2259 2420 2260 2446 2260 2418 2260 2446 2261 2447 2261 2418 2261 2418 2262 2447 2262 2448 2262 2418 2263 2448 2263 2408 2263 2439 1861 2416 1861 2449 1861 2449 1797 2416 1797 2376 1797 2449 2264 2376 2264 2450 2264 2387 2265 2451 2265 2452 2265 2391 2266 2453 2266 2454 2266 2455 2267 2456 2267 2395 2267 2395 2268 2456 2268 2396 2268 2453 2269 2391 2269 2456 2269 2456 2270 2391 2270 2393 2270 2456 2271 2393 2271 2396 2271 2387 2272 2385 2272 2451 2272 2451 2273 2385 2273 2384 2273 2451 2274 2384 2274 2454 2274 2454 2275 2384 2275 2389 2275 2454 2276 2389 2276 2391 2276 2378 2277 2380 2277 2457 2277 2457 2278 2380 2278 2383 2278 2457 2279 2383 2279 2458 2279 2458 2280 2383 2280 2382 2280 2458 2281 2382 2281 2452 2281 2452 2282 2382 2282 2388 2282 2452 2283 2388 2283 2387 2283 2457 2284 2459 2284 2378 2284 2378 2285 2459 2285 2450 2285 2378 2286 2450 2286 2376 2286 2455 2287 2395 2287 2460 2287 2460 1885 2395 1885 2408 1885 2460 2288 2408 2288 2448 2288 2461 1817 2462 1817 2463 1817 2463 2289 2462 2289 2464 2289 2463 2290 2464 2290 2465 2290 2466 2027 2467 2027 2464 2027 2464 2117 2467 2117 2468 2117 2464 2029 2468 2029 2465 2029 2469 2291 2470 2291 2471 2291 2471 2292 2470 2292 2472 2292 2471 2031 2472 2031 2466 2031 2466 2293 2472 2293 2473 2293 2466 2121 2473 2121 2467 2121 2469 2294 2471 2294 2474 2294 2474 1488 2471 1488 2475 1488 2474 2295 2475 2295 2476 2295 2476 2124 2475 2124 2477 2124 2476 2296 2477 2296 2478 2296 2479 1492 2480 1492 2477 1492 2477 2297 2480 2297 2481 2297 2477 1899 2481 1899 2478 1899 2482 1495 2483 1495 2479 1495 2484 2039 2462 2039 2485 2039 2485 1495 2462 1495 2486 1495 2484 1495 2487 1495 2462 1495 2462 1495 2487 1495 2488 1495 2462 2298 2488 2298 2479 2298 2479 1495 2488 1495 2489 1495 2479 1495 2489 1495 2482 1495 2475 1495 2471 1495 2466 1495 2479 1495 2477 1495 2462 1495 2462 1495 2477 1495 2475 1495 2462 2299 2475 2299 2464 2299 2464 1495 2475 1495 2466 1495 2480 443 2479 443 2483 443 2490 443 2491 443 2483 443 2483 443 2491 443 2492 443 2483 443 2492 443 2480 443 2493 38 2494 38 2488 38 2488 1830 2494 1830 2495 1830 2488 566 2495 566 2489 566 2489 2041 2495 2041 2496 2041 2489 2042 2496 2042 2482 2042 2482 2043 2496 2043 2490 2043 2482 2044 2490 2044 2483 2044 2488 38 2487 38 2493 38 2493 1604 2487 1604 2484 1604 2493 1831 2484 1831 2497 1831 2497 1505 2484 1505 2485 1505 2497 1606 2485 1606 2498 1606 2498 1607 2485 1607 2486 1607 2498 2300 2486 2300 2499 2300 2462 431 2461 431 2486 431 2486 431 2461 431 2500 431 2486 431 2500 431 2499 431 2499 431 2500 431 2501 431 2492 2047 2491 2047 2502 2047 2502 2301 2491 2301 2503 2301 2502 2302 2503 2302 2504 2302 2504 2138 2503 2138 2505 2138 2505 2303 2503 2303 2506 2303 2505 2304 2506 2304 2507 2304 2507 2305 2506 2305 2508 2305 2507 2142 2508 2142 2509 2142 2509 2306 2508 2306 2510 2306 2509 2144 2510 2144 2511 2144 2511 2145 2510 2145 2512 2145 2511 2146 2512 2146 2513 2146 2513 2147 2512 2147 2514 2147 2513 2307 2514 2307 2515 2307 2515 2149 2514 2149 2516 2149 2515 2308 2516 2308 2517 2308 2517 2309 2516 2309 2518 2309 2518 1842 2516 1842 2519 1842 2518 2310 2519 2310 2520 2310 2520 2154 2519 2154 2521 2154 2520 2311 2521 2311 2522 2311 2522 2312 2521 2312 2501 2312 2522 2313 2501 2313 2500 2313 2523 2314 2524 2314 2500 2314 2500 2315 2524 2315 2522 2315 2511 2160 2513 2160 2525 2160 2525 2316 2513 2316 2515 2316 2525 2317 2515 2317 2526 2317 2526 2318 2515 2318 2517 2318 2526 2164 2517 2164 2527 2164 2527 1634 2517 1634 2518 1634 2527 2319 2518 2319 2524 2319 2524 2166 2518 2166 2520 2166 2524 2320 2520 2320 2522 2320 2511 2321 2525 2321 2509 2321 2509 2322 2525 2322 2528 2322 2509 2323 2528 2323 2507 2323 2507 2324 2528 2324 2529 2324 2507 2325 2529 2325 2505 2325 2505 2171 2529 2171 2504 2171 2504 2172 2529 2172 2530 2172 2504 2326 2530 2326 2502 2326 2530 2327 2531 2327 2502 2327 2502 2328 2531 2328 2532 2328 2502 2329 2532 2329 2492 2329 2523 2175 2500 2175 2533 2175 2533 1797 2500 1797 2461 1797 2533 2330 2461 2330 2534 2330 2472 2265 2535 2265 2536 2265 2476 1864 2537 1864 2538 1864 2539 2331 2540 2331 2480 2331 2480 2332 2540 2332 2481 2332 2537 2333 2476 2333 2540 2333 2540 2334 2476 2334 2478 2334 2540 2335 2478 2335 2481 2335 2472 2336 2470 2336 2535 2336 2535 2337 2470 2337 2469 2337 2535 2338 2469 2338 2538 2338 2538 2339 2469 2339 2474 2339 2538 2340 2474 2340 2476 2340 2463 2341 2465 2341 2541 2341 2541 1942 2465 1942 2468 1942 2541 2103 2468 2103 2542 2103 2542 2104 2468 2104 2467 2104 2542 2281 2467 2281 2536 2281 2536 2342 2467 2342 2473 2342 2536 2343 2473 2343 2472 2343 2541 2344 2543 2344 2463 2344 2463 2345 2543 2345 2534 2345 2463 2346 2534 2346 2461 2346 2539 2347 2480 2347 2544 2347 2544 2348 2480 2348 2492 2348 2544 2349 2492 2349 2532 2349 2545 1817 2546 1817 2547 1817 2547 2350 2546 2350 2548 2350 2547 2351 2548 2351 2549 2351 2550 1889 2551 1889 2548 1889 2548 2352 2551 2352 2552 2352 2548 2029 2552 2029 2549 2029 2553 2353 2554 2353 2555 2353 2555 1958 2554 1958 2556 1958 2555 1821 2556 1821 2550 1821 2550 1748 2556 1748 2557 1748 2550 2354 2557 2354 2551 2354 2553 2355 2555 2355 2558 2355 2558 1488 2555 1488 2559 1488 2558 2356 2559 2356 2560 2356 2560 2357 2559 2357 2561 2357 2560 2358 2561 2358 2562 2358 2563 1492 2564 1492 2561 1492 2561 2037 2564 2037 2565 2037 2561 2038 2565 2038 2562 2038 2546 1495 2566 1495 2567 1495 2568 1495 2569 1495 2563 1495 2563 2359 2569 2359 2570 2359 2563 1495 2570 1495 2571 1495 2567 2128 2572 2128 2546 2128 2546 1495 2572 1495 2573 1495 2546 1495 2573 1495 2568 1495 2568 1495 2563 1495 2546 1495 2546 2360 2563 2360 2561 2360 2546 1495 2561 1495 2548 1495 2559 2361 2555 2361 2561 2361 2561 2362 2555 2362 2550 2362 2561 2363 2550 2363 2548 2363 2564 443 2563 443 2571 443 2574 443 2575 443 2571 443 2571 443 2575 443 2576 443 2571 443 2576 443 2564 443 2577 38 2578 38 2568 38 2568 1830 2578 1830 2579 1830 2568 1498 2579 1498 2569 1498 2569 2041 2579 2041 2580 2041 2569 2042 2580 2042 2570 2042 2570 2043 2580 2043 2574 2043 2570 2044 2574 2044 2571 2044 2568 38 2573 38 2577 38 2577 1503 2573 1503 2572 1503 2577 1831 2572 1831 2581 1831 2581 1505 2572 1505 2567 1505 2581 1606 2567 1606 2582 1606 2582 1607 2567 1607 2566 1607 2582 2045 2566 2045 2583 2045 2546 431 2545 431 2566 431 2566 431 2545 431 2584 431 2566 431 2584 431 2583 431 2583 431 2584 431 2585 431 2576 2047 2575 2047 2586 2047 2586 2364 2575 2364 2587 2364 2586 2365 2587 2365 2588 2365 2588 2366 2587 2366 2589 2366 2589 2367 2587 2367 2590 2367 2589 2368 2590 2368 2591 2368 2591 2369 2590 2369 2592 2369 2591 2370 2592 2370 2593 2370 2593 2371 2592 2371 2594 2371 2593 2372 2594 2372 2595 2372 2595 1836 2594 1836 2596 1836 2595 2373 2596 2373 2597 2373 2597 2147 2596 2147 2598 2147 2597 2374 2598 2374 2599 2374 2599 2375 2598 2375 2600 2375 2599 2376 2600 2376 2601 2376 2601 2151 2600 2151 2602 2151 2602 2152 2600 2152 2603 2152 2602 2377 2603 2377 2604 2377 2604 2378 2603 2378 2605 2378 2604 2311 2605 2311 2606 2311 2606 2379 2605 2379 2585 2379 2606 1531 2585 1531 2584 1531 2607 2380 2608 2380 2584 2380 2584 2381 2608 2381 2606 2381 2595 2070 2597 2070 2609 2070 2609 2382 2597 2382 2599 2382 2609 2383 2599 2383 2610 2383 2610 2384 2599 2384 2601 2384 2610 2385 2601 2385 2611 2385 2611 1634 2601 1634 2602 1634 2611 2386 2602 2386 2608 2386 2608 2387 2602 2387 2604 2387 2608 2388 2604 2388 2606 2388 2595 2321 2609 2321 2593 2321 2593 2389 2609 2389 2612 2389 2593 2390 2612 2390 2591 2390 2591 1926 2612 1926 2613 1926 2591 1999 2613 1999 2589 1999 2589 2391 2613 2391 2588 2391 2588 2086 2613 2086 2614 2086 2588 2392 2614 2392 2586 2392 2614 1551 2615 1551 2586 1551 2586 1929 2615 1929 2616 1929 2586 2393 2616 2393 2576 2393 2607 2394 2584 2394 2617 2394 2617 1797 2584 1797 2545 1797 2617 2395 2545 2395 2618 2395 2556 2396 2619 2396 2620 2396 2560 2397 2621 2397 2622 2397 2623 2398 2624 2398 2564 2398 2564 2095 2624 2095 2565 2095 2621 2399 2560 2399 2624 2399 2624 2097 2560 2097 2562 2097 2624 1866 2562 1866 2565 1866 2556 1870 2554 1870 2619 1870 2619 2400 2554 2400 2553 2400 2619 2100 2553 2100 2622 2100 2622 2401 2553 2401 2558 2401 2622 2402 2558 2402 2560 2402 2547 2017 2549 2017 2625 2017 2625 1942 2549 1942 2552 1942 2625 2403 2552 2403 2626 2403 2626 2404 2552 2404 2551 2404 2626 2281 2551 2281 2620 2281 2620 2405 2551 2405 2557 2405 2620 1947 2557 1947 2556 1947 2625 2406 2627 2406 2547 2406 2547 2407 2627 2407 2618 2407 2547 2408 2618 2408 2545 2408 2623 2409 2564 2409 2628 2409 2628 1951 2564 1951 2576 1951 2628 2410 2576 2410 2616 2410 2629 1817 2630 1817 2631 1817 2631 1671 2630 1671 2632 1671 2631 2411 2632 2411 2633 2411 2634 1955 2635 1955 2632 1955 2632 2412 2635 2412 2636 2412 2632 1589 2636 1589 2633 1589 2637 2413 2638 2413 2639 2413 2639 1590 2638 1590 2640 1590 2639 2414 2640 2414 2634 2414 2634 1960 2640 1960 2641 1960 2634 1486 2641 1486 2635 1486 2637 2033 2639 2033 2642 2033 2642 2415 2639 2415 2643 2415 2642 1963 2643 1963 2644 1963 2644 1964 2643 1964 2645 1964 2644 2416 2645 2416 2646 2416 2647 1492 2648 1492 2645 1492 2645 1966 2648 1966 2649 1966 2645 1899 2649 1899 2646 1899 2630 1495 2650 1495 2651 1495 2651 1495 2652 1495 2630 1495 2630 1495 2652 1495 2653 1495 2630 1495 2653 1495 2654 1495 2654 1495 2655 1495 2647 1495 2647 1495 2655 1495 2656 1495 2647 1495 2656 1495 2657 1495 2654 1495 2647 1495 2630 1495 2630 2417 2647 2417 2645 2417 2630 1495 2645 1495 2643 1495 2643 2418 2639 2418 2630 2418 2630 1495 2639 1495 2634 1495 2630 1495 2634 1495 2632 1495 2648 443 2647 443 2657 443 2658 443 2659 443 2657 443 2657 443 2659 443 2660 443 2657 443 2660 443 2648 443 2661 38 2662 38 2654 38 2654 1830 2662 1830 2663 1830 2654 1498 2663 1498 2655 1498 2655 1499 2663 1499 2664 1499 2655 1500 2664 1500 2656 1500 2656 1501 2664 1501 2658 1501 2656 1502 2658 1502 2657 1502 2654 38 2653 38 2661 38 2661 1503 2653 1503 2652 1503 2661 1831 2652 1831 2665 1831 2665 2419 2652 2419 2651 2419 2665 2420 2651 2420 2666 2420 2666 2421 2651 2421 2650 2421 2666 2422 2650 2422 2667 2422 2630 431 2629 431 2650 431 2650 431 2629 431 2668 431 2650 431 2668 431 2667 431 2667 431 2668 431 2669 431 2660 1901 2659 1901 2670 1901 2670 2423 2659 2423 2671 2423 2670 2424 2671 2424 2672 2424 2672 1833 2671 1833 2673 1833 2673 2425 2671 2425 2674 2425 2673 2426 2674 2426 2675 2426 2675 2427 2674 2427 2676 2427 2675 2370 2676 2370 2677 2370 2677 1835 2676 1835 2678 1835 2677 2372 2678 2372 2679 2372 2679 1519 2678 1519 2680 1519 2679 1837 2680 1837 2681 1837 2681 1905 2680 1905 2682 1905 2681 1906 2682 1906 2683 1906 2683 2428 2682 2428 2684 2428 2683 2429 2684 2429 2685 2429 2685 1841 2684 1841 2686 1841 2686 2430 2684 2430 2687 2430 2686 2431 2687 2431 2688 2431 2688 2432 2687 2432 2689 2432 2688 1844 2689 1844 2690 1844 2690 2379 2689 2379 2669 2379 2690 1531 2669 1531 2668 1531 2691 1846 2692 1846 2668 1846 2668 2433 2692 2433 2690 2433 2679 1848 2681 1848 2693 1848 2693 1917 2681 1917 2683 1917 2693 1631 2683 1631 2694 1631 2694 2434 2683 2434 2685 2434 2694 2435 2685 2435 2695 2435 2695 1634 2685 1634 2686 1634 2695 2436 2686 2436 2692 2436 2692 2437 2686 2437 2688 2437 2692 2438 2688 2438 2690 2438 2679 2321 2693 2321 2677 2321 2677 2439 2693 2439 2696 2439 2677 2390 2696 2390 2675 2390 2675 2440 2696 2440 2697 2440 2675 1999 2697 1999 2673 1999 2673 2441 2697 2441 2672 2441 2672 2442 2697 2442 2698 2442 2672 1927 2698 1927 2670 1927 2698 2443 2699 2443 2670 2443 2670 1929 2699 1929 2700 1929 2670 2444 2700 2444 2660 2444 2691 1554 2668 1554 2701 1554 2701 1797 2668 1797 2629 1797 2701 2445 2629 2445 2702 2445 2640 2446 2703 2446 2704 2446 2644 2447 2705 2447 2706 2447 2707 2398 2708 2398 2648 2398 2648 2448 2708 2448 2649 2448 2705 2449 2644 2449 2708 2449 2708 2450 2644 2450 2646 2450 2708 2451 2646 2451 2649 2451 2640 1870 2638 1870 2703 1870 2703 2452 2638 2452 2637 2452 2703 2453 2637 2453 2706 2453 2706 2454 2637 2454 2642 2454 2706 2455 2642 2455 2644 2455 2631 2456 2633 2456 2709 2456 2709 1876 2633 1876 2636 1876 2709 2457 2636 2457 2710 2457 2710 2458 2636 2458 2635 2458 2710 2459 2635 2459 2704 2459 2704 2460 2635 2460 2641 2460 2704 1881 2641 1881 2640 1881 2709 2461 2711 2461 2631 2461 2631 1883 2711 1883 2702 1883 2631 2462 2702 2462 2629 2462 2707 2463 2648 2463 2712 2463 2712 2464 2648 2464 2660 2464 2712 2465 2660 2465 2700 2465 2713 1817 2714 1817 2715 1817 2715 1671 2714 1671 2716 1671 2715 2466 2716 2466 2717 2466 2718 1889 2719 1889 2716 1889 2716 1890 2719 1890 2720 1890 2716 1891 2720 1891 2717 1891 2721 2467 2722 2467 2723 2467 2723 2468 2722 2468 2724 2468 2723 1959 2724 1959 2718 1959 2718 1748 2724 1748 2725 1748 2718 1961 2725 1961 2719 1961 2721 1894 2723 1894 2726 1894 2726 1488 2723 1488 2727 1488 2726 1963 2727 1963 2728 1963 2728 1896 2727 1896 2729 1896 2728 2469 2729 2469 2730 2469 2731 1492 2732 1492 2729 1492 2729 1898 2732 1898 2733 1898 2729 1899 2733 1899 2730 1899 2714 1495 2734 1495 2735 1495 2736 2470 2737 2470 2731 2470 2731 1495 2737 1495 2738 1495 2731 1495 2738 1495 2739 1495 2735 1495 2740 1495 2714 1495 2714 1495 2740 1495 2741 1495 2714 1495 2741 1495 2736 1495 2736 1495 2731 1495 2714 1495 2714 2471 2731 2471 2729 2471 2714 1495 2729 1495 2716 1495 2727 2472 2723 2472 2729 2472 2729 2473 2723 2473 2718 2473 2729 2474 2718 2474 2716 2474 2732 443 2731 443 2739 443 2742 443 2743 443 2739 443 2739 443 2743 443 2744 443 2739 443 2744 443 2732 443 2745 38 2746 38 2736 38 2736 1603 2746 1603 2747 1603 2736 566 2747 566 2737 566 2737 1499 2747 1499 2748 1499 2737 1500 2748 1500 2738 1500 2738 1501 2748 1501 2742 1501 2738 1502 2742 1502 2739 1502 2736 38 2741 38 2745 38 2745 1503 2741 1503 2740 1503 2745 1831 2740 1831 2749 1831 2749 1505 2740 1505 2735 1505 2749 1606 2735 1606 2750 1606 2750 1607 2735 1607 2734 1607 2750 1608 2734 1608 2751 1608 2714 431 2713 431 2734 431 2734 431 2713 431 2752 431 2734 431 2752 431 2751 431 2751 431 2752 431 2753 431 2744 1901 2743 1901 2754 1901 2754 1510 2743 1510 2755 1510 2754 2475 2755 2475 2756 2475 2756 1833 2755 1833 2757 1833 2757 2476 2755 2476 2758 2476 2757 2477 2758 2477 2759 2477 2759 1904 2758 1904 2760 1904 2759 2478 2760 2478 2761 2478 2761 2479 2760 2479 2762 2479 2761 1615 2762 1615 2763 1615 2763 1980 2762 1980 2764 1980 2763 1981 2764 1981 2765 1981 2765 1617 2764 1617 2766 1617 2765 2480 2766 2480 2767 2480 2767 1523 2766 1523 2768 1523 2767 2481 2768 2481 2769 2481 2769 1909 2768 1909 2770 1909 2770 1842 2768 1842 2771 1842 2770 1698 2771 1698 2772 1698 2772 1624 2771 1624 2773 1624 2772 1912 2773 1912 2774 1912 2774 1626 2773 1626 2753 1626 2774 1913 2753 1913 2752 1913 2775 1532 2776 1532 2752 1532 2752 1915 2776 1915 2774 1915 2763 2482 2765 2482 2777 2482 2777 2483 2765 2483 2767 2483 2777 1991 2767 1991 2778 1991 2778 2484 2767 2484 2769 2484 2778 2485 2769 2485 2779 2485 2779 1634 2769 1634 2770 1634 2779 2386 2770 2386 2776 2386 2776 1635 2770 1635 2772 1635 2776 2486 2772 2486 2774 2486 2763 1789 2777 1789 2761 1789 2761 1997 2777 1997 2780 1997 2761 1639 2780 1639 2759 1639 2759 1926 2780 1926 2781 1926 2759 2487 2781 2487 2757 2487 2757 2085 2781 2085 2756 2085 2756 1549 2781 1549 2782 1549 2756 1927 2782 1927 2754 1927 2782 1643 2783 1643 2754 1643 2754 1929 2783 1929 2784 1929 2754 2488 2784 2488 2744 2488 2775 1716 2752 1716 2785 1716 2785 1931 2752 1931 2713 1931 2785 2489 2713 2489 2786 2489 2724 2490 2787 2490 2788 2490 2728 1864 2789 1864 2790 1864 2789 2491 2728 2491 2791 2491 2728 1718 2730 1718 2791 1718 2791 2009 2730 2009 2733 2009 2791 2492 2733 2492 2792 2492 2792 1937 2733 1937 2732 1937 2792 2493 2732 2493 2793 2493 2724 2494 2722 2494 2787 2494 2787 2495 2722 2495 2721 2495 2787 1567 2721 1567 2790 1567 2790 2496 2721 2496 2726 2496 2790 2455 2726 2455 2728 2455 2715 2456 2717 2456 2794 2456 2794 2497 2717 2497 2720 2497 2794 2457 2720 2457 2795 2457 2795 2019 2720 2019 2719 2019 2795 1574 2719 1574 2788 1574 2788 2498 2719 2498 2725 2498 2788 2499 2725 2499 2724 2499 2794 2500 2796 2500 2715 2500 2715 2501 2796 2501 2786 2501 2715 2502 2786 2502 2713 2502 2793 2503 2732 2503 2797 2503 2797 1951 2732 1951 2744 1951 2797 2504 2744 2504 2784 2504 2798 1476 2799 1476 2800 1476 2800 1671 2799 1671 2801 1671 2800 2505 2801 2505 2802 2505 2803 1889 2804 1889 2801 1889 2801 2506 2804 2506 2805 2506 2801 1589 2805 1589 2802 1589 2806 1482 2807 1482 2808 1482 2808 1590 2807 1590 2809 1590 2808 2414 2809 2414 2803 2414 2803 1748 2809 1748 2810 1748 2803 1486 2810 1486 2804 1486 2806 1894 2808 1894 2811 1894 2811 1488 2808 1488 2812 1488 2811 1596 2812 1596 2813 1596 2813 2507 2812 2507 2814 2507 2813 2508 2814 2508 2815 2508 2816 1492 2817 1492 2814 1492 2814 1966 2817 1966 2818 1966 2814 1899 2818 1899 2815 1899 2799 1495 2819 1495 2820 1495 2821 1495 2816 1495 2822 1495 2822 1495 2816 1495 2823 1495 2803 2509 2801 2509 2799 2509 2820 1495 2824 1495 2799 1495 2799 1495 2824 1495 2825 1495 2799 1495 2825 1495 2826 1495 2814 2510 2812 2510 2808 2510 2808 2511 2803 2511 2814 2511 2814 1761 2803 1761 2799 1761 2814 1495 2799 1495 2816 1495 2816 1495 2799 1495 2826 1495 2816 1495 2826 1495 2823 1495 2817 443 2816 443 2821 443 2827 443 2828 443 2821 443 2821 443 2828 443 2829 443 2821 443 2829 443 2817 443 2830 38 2831 38 2826 38 2826 1830 2831 1830 2832 1830 2826 1498 2832 1498 2823 1498 2823 1499 2832 1499 2833 1499 2823 1500 2833 1500 2822 1500 2822 1501 2833 1501 2827 1501 2822 1502 2827 1502 2821 1502 2826 38 2825 38 2830 38 2830 1503 2825 1503 2824 1503 2830 1831 2824 1831 2834 1831 2834 1505 2824 1505 2820 1505 2834 1606 2820 1606 2835 1606 2835 1607 2820 1607 2819 1607 2835 1608 2819 1608 2836 1608 2799 431 2798 431 2819 431 2819 431 2798 431 2837 431 2819 431 2837 431 2836 431 2836 431 2837 431 2838 431 2829 1901 2828 1901 2839 1901 2839 2048 2828 2048 2840 2048 2839 2512 2840 2512 2841 2512 2841 1974 2840 1974 2842 1974 2842 2425 2840 2425 2843 2425 2842 1976 2843 1976 2844 1976 2844 1904 2843 1904 2845 1904 2844 2370 2845 2370 2846 2370 2846 2371 2845 2371 2847 2371 2846 2513 2847 2513 2848 2513 2848 1519 2847 1519 2849 1519 2848 1837 2849 1837 2850 1837 2850 2514 2849 2514 2851 2514 2850 2515 2851 2515 2852 2515 2852 1839 2851 1839 2853 1839 2852 2516 2853 2516 2854 2516 2854 1841 2853 1841 2855 1841 2855 1842 2853 1842 2856 1842 2855 2517 2856 2517 2857 2517 2857 1624 2856 1624 2858 1624 2857 2518 2858 2518 2859 2518 2859 2519 2858 2519 2838 2519 2859 1531 2838 1531 2837 1531 2860 2520 2861 2520 2837 2520 2837 1847 2861 1847 2859 1847 2848 1990 2850 1990 2862 1990 2862 1849 2850 1849 2852 1849 2862 1991 2852 1991 2863 1991 2863 2521 2852 2521 2854 2521 2863 2522 2854 2522 2864 2522 2864 1634 2854 1634 2855 1634 2864 1921 2855 1921 2861 1921 2861 1787 2855 1787 2857 1787 2861 1636 2857 1636 2859 1636 2848 1856 2862 1856 2846 1856 2846 2523 2862 2523 2865 2523 2846 2524 2865 2524 2844 2524 2844 2525 2865 2525 2866 2525 2844 1547 2866 1547 2842 1547 2842 1642 2866 1642 2841 1642 2841 1794 2866 1794 2867 1794 2841 1927 2867 1927 2839 1927 2867 1928 2868 1928 2839 1928 2839 1552 2868 1552 2869 1552 2839 2526 2869 2526 2829 2526 2860 1861 2837 1861 2870 1861 2870 1797 2837 1797 2798 1797 2870 2527 2798 2527 2871 2527 2809 2528 2872 2528 2873 2528 2813 1558 2874 1558 2875 1558 2874 2529 2813 2529 2876 2529 2813 1560 2815 1560 2876 1560 2876 2530 2815 2530 2818 2530 2876 1720 2818 1720 2877 1720 2877 2531 2818 2531 2817 2531 2877 2532 2817 2532 2878 2532 2809 2533 2807 2533 2872 2533 2872 1939 2807 1939 2806 1939 2872 1567 2806 1567 2875 1567 2875 2534 2806 2534 2811 2534 2875 2535 2811 2535 2813 2535 2800 1735 2802 1735 2879 1735 2879 2536 2802 2536 2805 2536 2879 2537 2805 2537 2880 2537 2880 1944 2805 1944 2804 1944 2880 2538 2804 2538 2873 2538 2873 2539 2804 2539 2810 2539 2873 1576 2810 1576 2809 1576 2879 2540 2881 2540 2800 2540 2800 1578 2881 1578 2871 1578 2800 2541 2871 2541 2798 2541 2878 2542 2817 2542 2882 2542 2882 1885 2817 1885 2829 1885 2882 2543 2829 2543 2869 2543 2883 1741 2884 1741 2885 1741 2883 2544 2885 2544 2886 2544 2886 2545 2885 2545 2887 2545 2886 1586 2887 1586 2888 1586 2889 2546 2890 2546 2883 2546 2883 1588 2890 1588 2891 1588 2883 1481 2891 1481 2884 1481 2892 1482 2893 1482 2894 1482 2894 1590 2893 1590 2895 1590 2894 1591 2895 1591 2889 1591 2889 1822 2895 1822 2896 1822 2889 1486 2896 1486 2890 1486 2892 1594 2894 1594 2897 1594 2897 1895 2894 1895 2898 1895 2897 1596 2898 1596 2899 1596 2899 2507 2898 2507 2900 2507 2899 2547 2900 2547 2901 2547 2902 1755 2903 1755 2900 1755 2900 2126 2903 2126 2904 2126 2900 2548 2904 2548 2901 2548 2886 1495 2905 1495 2906 1495 2907 1495 2902 1495 2908 1495 2908 1495 2902 1495 2909 1495 2889 2549 2883 2549 2886 2549 2906 1496 2910 1496 2886 1496 2886 1495 2910 1495 2911 1495 2886 1495 2911 1495 2912 1495 2900 2550 2898 2550 2894 2550 2894 2551 2889 2551 2900 2551 2900 1829 2889 1829 2886 1829 2900 1495 2886 1495 2902 1495 2902 1495 2886 1495 2912 1495 2902 1495 2912 1495 2909 1495 2903 443 2902 443 2907 443 2913 443 2914 443 2907 443 2907 443 2914 443 2915 443 2907 443 2915 443 2903 443 2916 38 2917 38 2912 38 2912 1497 2917 1497 2918 1497 2912 1498 2918 1498 2909 1498 2909 1499 2918 1499 2919 1499 2909 1500 2919 1500 2908 1500 2908 1501 2919 1501 2913 1501 2908 1502 2913 1502 2907 1502 2912 38 2911 38 2916 38 2916 1503 2911 1503 2910 1503 2916 1504 2910 1504 2920 1504 2920 1505 2910 1505 2906 1505 2920 1506 2906 1506 2921 1506 2921 1507 2906 1507 2905 1507 2921 1508 2905 1508 2922 1508 2886 431 2888 431 2905 431 2905 431 2888 431 2923 431 2905 431 2923 431 2922 431 2922 431 2923 431 2924 431 2915 1509 2914 1509 2925 1509 2925 2552 2914 2552 2926 2552 2925 2553 2926 2553 2927 2553 2927 2554 2926 2554 2928 2554 2928 2555 2926 2555 2929 2555 2928 2556 2929 2556 2930 2556 2930 2557 2929 2557 2931 2557 2930 1692 2931 1692 2932 1692 2932 2558 2931 2558 2933 2558 2932 1771 2933 1771 2934 1771 2934 1519 2933 1519 2935 1519 2934 1520 2935 1520 2936 1520 2936 2559 2935 2559 2937 2559 2936 2560 2937 2560 2938 2560 2938 1839 2937 1839 2939 1839 2938 2561 2939 2561 2940 2561 2940 1621 2939 1621 2941 1621 2941 2562 2939 2562 2942 2562 2941 2563 2942 2563 2943 2563 2943 1528 2942 1528 2944 1528 2943 1529 2944 1529 2945 1529 2945 1779 2944 1779 2924 1779 2945 1531 2924 1531 2923 1531 2946 1846 2947 1846 2923 1846 2923 2381 2947 2381 2945 2381 2934 2564 2936 2564 2948 2564 2948 2565 2936 2565 2938 2565 2948 1631 2938 1631 2949 1631 2949 2566 2938 2566 2940 2566 2949 2567 2940 2567 2950 2567 2950 1539 2940 1539 2941 1539 2950 1540 2941 1540 2947 1540 2947 1541 2941 1541 2943 1541 2947 2568 2943 2568 2945 2568 2934 1789 2948 1789 2932 1789 2932 2569 2948 2569 2951 2569 2932 1639 2951 1639 2930 1639 2930 2525 2951 2525 2952 2525 2930 1793 2952 1793 2928 1793 2928 2085 2952 2085 2927 2085 2927 1549 2952 1549 2953 1549 2927 1859 2953 1859 2925 1859 2953 2570 2954 2570 2925 2570 2925 1714 2954 1714 2955 1714 2925 2571 2955 2571 2915 2571 2946 1716 2923 1716 2956 1716 2956 1555 2923 1555 2888 1555 2956 2572 2888 2572 2957 2572 2903 2573 2958 2573 2959 2573 2899 2574 2901 2574 2959 2574 2959 1866 2901 1866 2904 1866 2959 1801 2904 1801 2903 1801 2959 1651 2960 1651 2899 1651 2899 1558 2960 1558 2961 1558 2899 2575 2961 2575 2897 2575 2897 1724 2961 1724 2892 1724 2892 2576 2961 2576 2962 2576 2892 1656 2962 1656 2893 1656 2893 1565 2962 1565 2895 1565 2895 2577 2962 2577 2963 2577 2895 2578 2963 2578 2896 2578 2896 2579 2963 2579 2890 2579 2890 2580 2963 2580 2964 2580 2890 1661 2964 1661 2891 1661 2891 1662 2964 1662 2965 1662 2891 2581 2965 2581 2884 2581 2884 1811 2965 1811 2885 1811 2885 2195 2965 2195 2966 2195 2885 2582 2966 2582 2887 2582 2887 1736 2966 1736 2957 1736 2887 2583 2957 2583 2888 2583 2958 2542 2903 2542 2967 2542 2967 1885 2903 1885 2915 1885 2967 2584 2915 2584 2955 2584 2968 1887 2969 1887 2970 1887 2970 2585 2969 2585 2971 2585 2970 2586 2971 2586 2972 2586 2973 1479 2974 1479 2971 1479 2971 1480 2974 1480 2975 1480 2971 1956 2975 1956 2972 1956 2976 1482 2977 1482 2978 1482 2978 1590 2977 1590 2979 1590 2978 1484 2979 1484 2973 1484 2973 2587 2979 2587 2980 2587 2973 2588 2980 2588 2974 2588 2976 1487 2978 1487 2981 1487 2981 1488 2978 1488 2982 1488 2981 1752 2982 1752 2983 1752 2983 1490 2982 1490 2984 1490 2983 2589 2984 2589 2985 2589 2986 1492 2987 1492 2984 1492 2984 1493 2987 1493 2988 1493 2984 1494 2988 1494 2985 1494 2989 1495 2990 1495 2986 1495 2991 2590 2969 2590 2992 2590 2992 1495 2969 1495 2993 1495 2971 1495 2969 1495 2986 1495 2991 1495 2994 1495 2969 1495 2969 1601 2994 1601 2995 1601 2969 1495 2995 1495 2986 1495 2986 2591 2995 2591 2996 2591 2986 1495 2996 1495 2989 1495 2978 1495 2973 1495 2982 1495 2982 1495 2973 1495 2971 1495 2982 1495 2971 1495 2984 1495 2984 1495 2971 1495 2986 1495 2987 443 2986 443 2990 443 2997 443 2998 443 2990 443 2990 443 2998 443 2999 443 2990 443 2999 443 2987 443 3000 38 3001 38 2995 38 2995 1603 3001 1603 3002 1603 2995 566 3002 566 2996 566 2996 1499 3002 1499 3003 1499 2996 1500 3003 1500 2989 1500 2989 1501 3003 1501 2997 1501 2989 1502 2997 1502 2990 1502 2995 38 2994 38 3000 38 3000 1604 2994 1604 2991 1604 3000 1605 2991 1605 3004 1605 3004 1505 2991 1505 2992 1505 3004 1606 2992 1606 3005 1606 3005 1607 2992 1607 2993 1607 3005 1608 2993 1608 3006 1608 2969 431 2968 431 2993 431 2993 431 2968 431 3007 431 2993 431 3007 431 3006 431 3006 431 3007 431 3008 431 2999 1509 2998 1509 3009 1509 3009 2592 2998 2592 3010 2592 3009 2593 3010 2593 3011 2593 3011 2594 3010 2594 3012 2594 3012 1513 3010 1513 3013 1513 3012 2595 3013 2595 3014 2595 3014 2596 3013 2596 3015 2596 3014 1692 3015 1692 3016 1692 3016 1835 3015 1835 3017 1835 3016 1615 3017 1615 3018 1615 3018 1519 3017 1519 3019 1519 3018 1616 3019 1616 3020 1616 3020 2597 3019 2597 3021 2597 3020 1694 3021 1694 3022 1694 3022 2598 3021 2598 3023 2598 3022 2599 3023 2599 3024 2599 3024 2600 3023 2600 3025 2600 3025 2601 3023 2601 3026 2601 3025 2602 3026 2602 3027 2602 3027 2603 3026 2603 3028 2603 3027 1699 3028 1699 3029 1699 3029 2604 3028 2604 3008 2604 3029 1531 3008 1531 3007 1531 3030 1532 3031 1532 3007 1532 3007 1847 3031 1847 3029 1847 3018 1703 3020 1703 3032 1703 3032 2605 3020 2605 3022 2605 3032 1631 3022 1631 3033 1631 3033 2434 3022 2434 3024 2434 3033 2606 3024 2606 3034 2606 3034 2607 3024 2607 3025 2607 3034 1921 3025 1921 3031 1921 3031 2608 3025 2608 3027 2608 3031 1708 3027 1708 3029 1708 3018 1637 3032 1637 3016 1637 3016 1709 3032 1709 3035 1709 3016 1545 3035 1545 3014 1545 3014 2609 3035 2609 3036 2609 3014 2610 3036 2610 3012 2610 3012 1642 3036 1642 3011 1642 3011 1794 3036 1794 3037 1794 3011 1859 3037 1859 3009 1859 3037 1551 3038 1551 3009 1551 3009 1552 3038 1552 3039 1552 3009 2611 3039 2611 2999 2611 3030 1554 3007 1554 3040 1554 3040 2612 3007 2612 2968 2612 3040 2613 2968 2613 3041 2613 2979 2614 3042 2614 3043 2614 2983 1652 3044 1652 3045 1652 3044 2615 2983 2615 3046 2615 2983 2616 2985 2616 3046 2616 3046 1866 2985 1866 2988 1866 3046 1867 2988 1867 3047 1867 3047 1563 2988 1563 2987 1563 3047 1869 2987 1869 3048 1869 2979 2617 2977 2617 3042 2617 3042 2618 2977 2618 2976 2618 3042 1567 2976 1567 3045 1567 3045 2619 2976 2619 2981 2619 3045 2455 2981 2455 2983 2455 2970 1570 2972 1570 3049 1570 3049 2620 2972 2620 2975 2620 3049 2621 2975 2621 3050 2621 3050 2622 2975 2622 2974 2622 3050 1879 2974 1879 3043 1879 3043 2623 2974 2623 2980 2623 3043 2624 2980 2624 2979 2624 3049 2625 3051 2625 2970 2625 2970 2626 3051 2626 3041 2626 2970 2627 3041 2627 2968 2627 3048 2542 2987 2542 3052 2542 3052 2628 2987 2628 2999 2628 3052 2629 2999 2629 3039 2629 3053 1583 3054 1583 3055 1583 3053 1584 3055 1584 3056 1584 3056 1585 3055 1585 3057 1585 3056 1586 3057 1586 3058 1586 3059 1889 3060 1889 3053 1889 3053 2630 3060 2630 3061 2630 3053 1589 3061 1589 3054 1589 3062 1482 3063 1482 3064 1482 3064 1590 3063 1590 3065 1590 3064 2631 3065 2631 3059 2631 3059 1592 3065 1592 3066 1592 3059 2632 3066 2632 3060 2632 3062 1594 3064 1594 3067 1594 3067 1677 3064 1677 3068 1677 3067 1678 3068 1678 3069 1678 3069 2633 3068 2633 3070 2633 3069 2634 3070 2634 3071 2634 3072 1492 3073 1492 3070 1492 3070 1598 3073 1598 3074 1598 3070 1967 3074 1967 3071 1967 3075 1495 3076 1495 3072 1495 3077 1600 3056 1600 3078 1600 3078 1495 3056 1495 3079 1495 3077 1495 3080 1495 3056 1495 3056 1682 3080 1682 3081 1682 3056 1495 3081 1495 3072 1495 3072 2635 3081 2635 3082 2635 3072 1495 3082 1495 3075 1495 3068 2361 3064 2361 3070 2361 3070 2636 3064 2636 3059 2636 3070 1495 3059 1495 3072 1495 3072 2637 3059 2637 3053 2637 3072 2638 3053 2638 3056 2638 3073 443 3072 443 3076 443 3083 443 3084 443 3076 443 3076 443 3084 443 3085 443 3076 443 3085 443 3073 443 3086 38 3087 38 3081 38 3081 1603 3087 1603 3088 1603 3081 566 3088 566 3082 566 3082 1499 3088 1499 3089 1499 3082 1500 3089 1500 3075 1500 3075 1501 3089 1501 3083 1501 3075 1502 3083 1502 3076 1502 3081 38 3080 38 3086 38 3086 1604 3080 1604 3077 1604 3086 1605 3077 1605 3090 1605 3090 2639 3077 2639 3091 2639 3091 2640 3077 2640 3078 2640 3091 2641 3078 2641 3092 2641 3092 2642 3078 2642 3079 2642 3092 2643 3079 2643 3093 2643 3094 431 3093 431 3079 431 3056 431 3058 431 3079 431 3079 431 3058 431 3095 431 3079 431 3095 431 3094 431 3094 431 3095 431 3096 431 3085 1686 3084 1686 3097 1686 3097 1687 3084 1687 3098 1687 3097 2644 3098 2644 3099 2644 3099 2645 3098 2645 3100 2645 3100 1768 3098 1768 3101 1768 3100 1690 3101 1690 3102 1690 3102 1770 3101 1770 3103 1770 3102 1613 3103 1613 3104 1613 3104 2646 3103 2646 3105 2646 3104 2647 3105 2647 3106 2647 3106 1519 3105 1519 3107 1519 3106 1616 3107 1616 3108 1616 3108 1617 3107 1617 3109 1617 3108 1983 3109 1983 3110 1983 3110 1523 3109 1523 3111 1523 3110 2648 3111 2648 3112 2648 3112 1696 3111 1696 3113 1696 3113 1697 3111 1697 3114 1697 3113 1623 3114 1623 3115 1623 3115 1624 3114 1624 3116 1624 3115 1625 3116 1625 3117 1625 3117 2649 3116 2649 3096 2649 3117 1531 3096 1531 3095 1531 3118 1627 3119 1627 3095 1627 3095 1847 3119 1847 3117 1847 3106 1703 3108 1703 3120 1703 3120 1782 3108 1782 3110 1782 3120 1783 3110 1783 3121 1783 3121 2650 3110 2650 3112 2650 3121 2435 3112 2435 3122 2435 3122 2651 3112 2651 3113 2651 3122 1707 3113 1707 3119 1707 3119 2652 3113 2652 3115 2652 3119 2653 3115 2653 3117 2653 3106 2654 3120 2654 3104 2654 3104 2655 3120 2655 3123 2655 3104 1791 3123 1791 3102 1791 3102 1792 3123 1792 3124 1792 3102 2656 3124 2656 3100 2656 3100 1548 3124 1548 3099 1548 3099 1549 3124 1549 3125 1549 3099 2657 3125 2657 3097 2657 3125 1643 3126 1643 3097 1643 3097 1929 3126 1929 3127 1929 3097 2658 3127 2658 3085 2658 3118 1554 3095 1554 3128 1554 3128 1555 3095 1555 3058 1555 3128 2659 3058 2659 3129 2659 3073 1647 3130 1647 3131 1647 3069 1560 3071 1560 3131 1560 3131 2530 3071 2530 3074 2530 3131 2660 3074 2660 3073 2660 3131 1651 3132 1651 3069 1651 3069 2661 3132 2661 3133 2661 3069 2662 3133 2662 3067 2662 3067 1803 3133 1803 3062 1803 3062 2663 3133 2663 3134 2663 3062 1726 3134 1726 3063 1726 3063 1727 3134 1727 3065 1727 3065 2664 3134 2664 3135 2664 3065 2665 3135 2665 3066 2665 3066 2666 3135 2666 3060 2666 3060 1731 3135 1731 3136 1731 3060 1809 3136 1809 3061 1809 3061 1662 3136 1662 3137 1662 3061 1663 3137 1663 3054 1663 3054 1664 3137 1664 3055 1664 3055 1665 3137 1665 3138 1665 3055 1666 3138 1666 3057 1666 3057 1667 3138 1667 3129 1667 3057 1668 3129 1668 3058 1668 3130 2542 3073 2542 3139 2542 3139 2628 3073 2628 3085 2628 3139 2667 3085 2667 3127 2667 3140 1476 3141 1476 3142 1476 3142 1671 3141 1671 3143 1671 3142 2668 3143 2668 3144 2668 3145 1673 3146 1673 3143 1673 3143 1588 3146 1588 3147 1588 3143 1589 3147 1589 3144 1589 3148 2669 3149 2669 3150 2669 3150 2670 3149 2670 3151 2670 3150 1747 3151 1747 3145 1747 3145 1748 3151 1748 3152 1748 3145 1486 3152 1486 3146 1486 3148 1487 3150 1487 3153 1487 3153 2671 3150 2671 3154 2671 3153 1596 3154 1596 3155 1596 3155 1679 3154 1679 3156 1679 3155 2672 3156 2672 3157 2672 3158 1755 3159 1755 3156 1755 3156 1756 3159 1756 3160 1756 3156 1967 3160 1967 3157 1967 3145 2673 3143 2673 3141 2673 3161 1495 3158 1495 3162 1495 3162 1496 3158 1496 3163 1496 3141 1495 3164 1495 3165 1495 3165 1495 3166 1495 3141 1495 3141 1495 3166 1495 3167 1495 3141 1495 3167 1495 3168 1495 3156 2674 3154 2674 3150 2674 3150 2675 3145 2675 3156 2675 3156 1829 3145 1829 3141 1829 3156 1495 3141 1495 3158 1495 3158 1495 3141 1495 3168 1495 3158 1495 3168 1495 3163 1495 3159 443 3158 443 3161 443 3161 443 3169 443 3170 443 3159 443 3161 443 3171 443 3171 2676 3161 2676 3170 2676 3171 443 3170 443 3172 443 3169 2677 3161 2677 3162 2677 3173 38 3174 38 3168 38 3168 1497 3174 1497 3175 1497 3168 1498 3175 1498 3163 1498 3163 2678 3175 2678 3176 2678 3162 2679 3176 2679 3177 2679 3162 2680 3177 2680 3169 2680 3168 38 3167 38 3173 38 3173 1503 3167 1503 3166 1503 3173 1504 3166 1504 3178 1504 3178 1505 3166 1505 3165 1505 3178 1606 3165 1606 3179 1606 3141 431 3140 431 3164 431 3164 431 3140 431 3180 431 3171 1509 3172 1509 3182 1509 3182 2552 3172 2552 3183 2552 3182 2681 3183 2681 3184 2681 3184 2682 3183 2682 3185 2682 3185 1513 3183 1513 3186 1513 3185 1769 3186 1769 3187 1769 3187 1770 3186 1770 3188 1770 3187 2478 3188 2478 3189 2478 3189 2558 3188 2558 3190 2558 3189 1771 3190 1771 3191 1771 3191 2683 3190 2683 3192 2683 3191 1520 3192 1520 3193 1520 3193 2597 3192 2597 3194 2597 3193 1983 3194 1983 3195 1983 3195 1523 3194 1523 3196 1523 3195 2684 3196 2684 3197 2684 3197 1696 3196 1696 3198 1696 3198 1697 3196 1697 3199 1697 3198 1698 3199 1698 3200 1698 3200 1624 3199 1624 3201 1624 3200 1699 3201 1699 3202 1699 3202 1700 3201 1700 3181 1700 3202 1531 3181 1531 3180 1531 3203 1532 3204 1532 3180 1532 3180 1989 3204 1989 3202 1989 3191 2564 3193 2564 3205 2564 3205 1849 3193 1849 3195 1849 3205 1536 3195 1536 3206 1536 3206 2685 3195 2685 3197 2685 3206 2686 3197 2686 3207 2686 3207 1634 3197 1634 3198 1634 3207 1707 3198 1707 3204 1707 3204 2687 3198 2687 3200 2687 3204 2688 3200 2688 3202 2688 3191 2689 3205 2689 3189 2689 3189 2389 3205 2389 3208 2389 3189 2690 3208 2690 3187 2690 3187 2691 3208 2691 3209 2691 3187 1547 3209 1547 3185 1547 3185 1548 3209 1548 3184 1548 3184 1549 3209 1549 3210 1549 3184 2692 3210 2692 3182 2692 3210 2570 3211 2570 3182 2570 3182 1714 3211 1714 3212 1714 3182 2693 3212 2693 3171 2693 3203 1554 3180 1554 3213 1554 3213 1555 3180 1555 3140 1555 3213 2694 3140 2694 3214 2694 3151 2695 3215 2695 3216 2695 3155 2696 3217 2696 3218 2696 3219 2697 3220 2697 3159 2697 3159 2698 3220 2698 3160 2698 3217 2529 3155 2529 3220 2529 3220 2699 3155 2699 3157 2699 3220 2700 3157 2700 3160 2700 3151 1565 3149 1565 3215 1565 3215 1566 3149 1566 3148 1566 3215 2701 3148 2701 3218 2701 3218 1568 3148 1568 3153 1568 3218 2702 3153 2702 3155 2702 3142 2703 3144 2703 3221 2703 3221 2704 3144 2704 3147 2704 3221 2705 3147 2705 3222 2705 3222 2458 3147 2458 3146 2458 3222 1574 3146 1574 3216 1574 3216 2706 3146 2706 3152 2706 3216 2707 3152 2707 3151 2707 3221 2708 3223 2708 3142 2708 3142 1883 3223 1883 3214 1883 3142 2709 3214 2709 3140 2709 3219 2542 3159 2542 3224 2542 3224 1581 3159 1581 3171 1581 3224 2710 3171 2710 3212 2710 3225 1476 3226 1476 3227 1476 3227 1477 3226 1477 3228 1477 3227 2711 3228 2711 3229 2711 3230 2712 3231 2712 3228 2712 3228 2713 3231 2713 3232 2713 3228 2714 3232 2714 3229 2714 3233 1482 3234 1482 3235 1482 3235 1483 3234 1483 3236 1483 3235 1484 3236 1484 3230 1484 3230 1485 3236 1485 3237 1485 3230 2588 3237 2588 3231 2588 3233 1487 3235 1487 3238 1487 3238 1488 3235 1488 3239 1488 3238 1596 3239 1596 3240 1596 3240 2715 3239 2715 3241 2715 3240 2716 3241 2716 3242 2716 3243 1492 3244 1492 3241 1492 3241 2717 3244 2717 3245 2717 3241 1599 3245 1599 3242 1599 3226 1495 3246 1495 3247 1495 3248 1495 3243 1495 3249 1495 3249 1495 3243 1495 3250 1495 3247 2718 3251 2718 3226 2718 3226 1495 3251 1495 3252 1495 3226 1495 3252 1495 3253 1495 3241 1495 3226 1495 3243 1495 3243 1495 3226 1495 3253 1495 3243 1495 3253 1495 3250 1495 3230 2361 3228 2361 3235 2361 3235 2719 3228 2719 3226 2719 3235 1495 3226 1495 3239 1495 3239 1495 3226 1495 3241 1495 3244 443 3243 443 3248 443 3254 443 3255 443 3248 443 3248 443 3255 443 3256 443 3248 443 3256 443 3244 443 3257 38 3258 38 3253 38 3253 1497 3258 1497 3259 1497 3253 1498 3259 1498 3250 1498 3250 1499 3259 1499 3260 1499 3250 1500 3260 1500 3249 1500 3249 1501 3260 1501 3254 1501 3249 1502 3254 1502 3248 1502 3253 38 3252 38 3257 38 3257 1503 3252 1503 3251 1503 3257 1504 3251 1504 3261 1504 3261 1505 3251 1505 3247 1505 3261 1506 3247 1506 3262 1506 3262 1507 3247 1507 3246 1507 3262 1508 3246 1508 3263 1508 3226 431 3225 431 3246 431 3246 431 3225 431 3264 431 3246 431 3264 431 3263 431 3263 431 3264 431 3265 431 3256 1509 3255 1509 3266 1509 3266 1510 3255 1510 3267 1510 3266 2720 3267 2720 3268 2720 3268 1512 3267 1512 3269 1512 3269 2721 3267 2721 3270 2721 3269 2556 3270 2556 3271 2556 3271 1515 3270 1515 3272 1515 3271 1516 3272 1516 3273 1516 3273 1517 3272 1517 3274 1517 3273 1771 3274 1771 3275 1771 3275 1519 3274 1519 3276 1519 3275 1520 3276 1520 3277 1520 3277 1521 3276 1521 3278 1521 3277 2722 3278 2722 3279 2722 3279 2723 3278 2723 3280 2723 3279 2724 3280 2724 3281 2724 3281 1525 3280 1525 3282 1525 3282 2725 3280 2725 3283 2725 3282 1698 3283 1698 3284 1698 3284 2726 3283 2726 3285 2726 3284 2727 3285 2727 3286 2727 3286 1779 3285 1779 3265 1779 3286 1531 3265 1531 3264 1531 3287 1532 3288 1532 3264 1532 3264 1533 3288 1533 3286 1533 3275 2564 3277 2564 3289 2564 3289 1535 3277 1535 3279 1535 3289 1536 3279 1536 3290 1536 3290 2728 3279 2728 3281 2728 3290 2606 3281 2606 3291 2606 3291 1539 3281 1539 3282 1539 3291 1921 3282 1921 3288 1921 3288 2608 3282 2608 3284 2608 3288 2729 3284 2729 3286 2729 3275 1856 3289 1856 3273 1856 3273 2730 3289 2730 3292 2730 3273 1791 3292 1791 3271 1791 3271 2731 3292 2731 3293 2731 3271 1547 3293 1547 3269 1547 3269 1548 3293 1548 3268 1548 3268 1794 3293 1794 3294 1794 3268 2692 3294 2692 3266 2692 3294 1713 3295 1713 3266 1713 3266 1552 3295 1552 3296 1552 3266 1553 3296 1553 3256 1553 3287 1716 3264 1716 3297 1716 3297 1555 3264 1555 3225 1555 3297 2732 3225 2732 3298 2732 3236 2733 3299 2733 3300 2733 3240 1558 3301 1558 3302 1558 3301 2734 3240 2734 3303 2734 3240 2735 3242 2735 3303 2735 3303 1866 3242 1866 3245 1866 3303 2736 3245 2736 3304 2736 3304 2737 3245 2737 3244 2737 3304 2738 3244 2738 3305 2738 3236 1565 3234 1565 3299 1565 3299 2739 3234 2739 3233 2739 3299 1567 3233 1567 3302 1567 3302 1568 3233 1568 3238 1568 3302 2535 3238 2535 3240 2535 3227 1735 3229 1735 3306 1735 3306 2740 3229 2740 3232 2740 3306 1572 3232 1572 3307 1572 3307 2622 3232 2622 3231 2622 3307 2741 3231 2741 3300 2741 3300 2742 3231 2742 3237 2742 3300 2624 3237 2624 3236 2624 3306 2743 3308 2743 3227 2743 3227 1883 3308 1883 3298 1883 3227 2744 3298 2744 3225 2744 3305 2542 3244 2542 3309 2542 3309 2628 3244 2628 3256 2628 3309 2745 3256 2745 3296 2745 3310 1476 3311 1476 3312 1476 3312 1671 3311 1671 3313 1671 3312 2746 3313 2746 3314 2746 3315 1673 3316 1673 3313 1673 3313 2747 3316 2747 3317 2747 3313 2748 3317 2748 3314 2748 3318 2669 3319 2669 3320 2669 3320 2670 3319 2670 3321 2670 3320 1747 3321 1747 3315 1747 3315 1748 3321 1748 3322 1748 3315 1676 3322 1676 3316 1676 3318 1894 3320 1894 3323 1894 3323 1751 3320 1751 3324 1751 3323 1596 3324 1596 3325 1596 3325 2749 3324 2749 3326 2749 3325 2750 3326 2750 3327 2750 3328 1755 3329 1755 3326 1755 3326 1756 3329 1756 3330 1756 3326 1967 3330 1967 3327 1967 3331 1495 3332 1495 3328 1495 3333 2751 3311 2751 3334 2751 3334 1495 3311 1495 3335 1495 3333 1495 3336 1495 3311 1495 3311 1495 3336 1495 3337 1495 3311 1495 3337 1495 3328 1495 3328 1495 3337 1495 3338 1495 3328 2718 3338 2718 3331 2718 3324 1495 3320 1495 3315 1495 3328 1495 3326 1495 3311 1495 3311 1495 3326 1495 3324 1495 3311 2363 3324 2363 3313 2363 3313 1495 3324 1495 3315 1495 3329 443 3328 443 3332 443 3332 443 3339 443 3340 443 3329 443 3332 443 3341 443 3341 2752 3332 2752 3340 2752 3341 443 3340 443 3342 443 3339 2677 3332 2677 3331 2677 3343 38 3344 38 3337 38 3337 1497 3344 1497 3345 1497 3337 1498 3345 1498 3338 1498 3338 2678 3345 2678 3346 2678 3338 2753 3346 2753 3331 2753 3331 2679 3346 2679 3347 2679 3331 2680 3347 2680 3339 2680 3337 38 3336 38 3343 38 3343 1503 3336 1503 3333 1503 3343 1504 3333 1504 3348 1504 3348 1505 3333 1505 3334 1505 3348 1606 3334 1606 3349 1606 3349 1607 3334 1607 3335 1607 3349 1608 3335 1608 3350 1608 3311 431 3310 431 3335 431 3335 431 3310 431 3351 431 3335 431 3351 431 3350 431 3350 431 3351 431 3352 431 3341 1509 3342 1509 3353 1509 3353 2754 3342 2754 3354 2754 3353 2755 3354 2755 3355 2755 3355 2594 3354 2594 3356 2594 3356 1513 3354 1513 3357 1513 3356 1769 3357 1769 3358 1769 3358 1691 3357 1691 3359 1691 3358 2478 3359 2478 3360 2478 3360 2558 3359 2558 3361 2558 3360 1518 3361 1518 3362 1518 3362 2683 3361 2683 3363 2683 3362 1520 3363 1520 3364 1520 3364 2597 3363 2597 3365 2597 3364 1694 3365 1694 3366 1694 3366 2723 3365 2723 3367 2723 3366 2756 3367 2756 3368 2756 3368 1696 3367 1696 3369 1696 3369 2757 3367 2757 3370 2757 3369 1698 3370 1698 3371 1698 3371 2603 3370 2603 3372 2603 3371 2758 3372 2758 3373 2758 3373 1700 3372 1700 3352 1700 3373 1531 3352 1531 3351 1531 3374 1701 3375 1701 3351 1701 3351 1847 3375 1847 3373 1847 3362 1534 3364 1534 3376 1534 3376 1849 3364 1849 3366 1849 3376 1536 3366 1536 3377 1536 3377 2759 3366 2759 3368 2759 3377 2760 3368 2760 3378 2760 3378 1634 3368 1634 3369 1634 3378 1921 3369 1921 3375 1921 3375 2761 3369 2761 3371 2761 3375 2762 3371 2762 3373 2762 3362 2689 3376 2689 3360 2689 3360 2763 3376 2763 3379 2763 3360 1545 3379 1545 3358 1545 3358 2440 3379 2440 3380 2440 3358 1547 3380 1547 3356 1547 3356 1548 3380 1548 3355 1548 3355 2764 3380 2764 3381 2764 3355 2692 3381 2692 3353 2692 3381 1713 3382 1713 3353 1713 3353 1714 3382 1714 3383 1714 3353 2611 3383 2611 3341 2611 3374 1554 3351 1554 3384 1554 3384 1645 3351 1645 3310 1645 3384 2765 3310 2765 3385 2765 3321 2766 3386 2766 3387 2766 3325 2767 3388 2767 3389 2767 3388 2768 3325 2768 3390 2768 3325 1718 3327 1718 3390 1718 3390 1719 3327 1719 3330 1719 3390 2769 3330 2769 3391 2769 3391 2737 3330 2737 3329 2737 3391 2770 3329 2770 3392 2770 3321 1565 3319 1565 3386 1565 3386 2452 3319 2452 3318 2452 3386 2771 3318 2771 3389 2771 3389 2015 3318 2015 3323 2015 3389 2702 3323 2702 3325 2702 3312 1570 3314 1570 3393 1570 3393 2772 3314 2772 3317 2772 3393 1943 3317 1943 3394 1943 3394 1944 3317 1944 3316 1944 3394 1574 3316 1574 3387 1574 3387 2773 3316 2773 3322 2773 3387 2774 3322 2774 3321 2774 3393 2775 3395 2775 3312 2775 3312 1883 3395 1883 3385 1883 3312 2776 3385 2776 3310 2776 3392 1580 3329 1580 3396 1580 3396 1581 3329 1581 3341 1581 3396 2777 3341 2777 3383 2777 2187 2778 2184 2778 1598 2778 1598 2779 1600 2779 2187 2779 2187 2780 1600 2780 1575 2780 2187 2781 1575 2781 2188 2781 2188 2782 1575 2782 1574 2782 2188 2783 1574 2783 2189 2783 2186 2784 1592 2784 2185 2784 2185 2785 1592 2785 1595 2785 2185 2786 1595 2786 2184 2786 2184 2787 1595 2787 1597 2787 2184 2788 1597 2788 1598 2788 2186 2789 2183 2789 1592 2789 1592 2790 2183 2790 2274 2790 1592 2791 2274 2791 2268 2791 2270 2792 2362 2792 2269 2792 2269 2793 2362 2793 2361 2793 2269 2794 2361 2794 2268 2794 2268 2795 2361 2795 2360 2795 2268 2796 2360 2796 1592 2796 1592 2797 2360 2797 2359 2797 1592 2798 2359 2798 2356 2798 2441 2799 2357 2799 2444 2799 2444 2800 2357 2800 2358 2800 2444 2801 2358 2801 2355 2801 2526 2802 24 2802 2525 2802 2525 2803 24 2803 23 2803 2525 2804 23 2804 2528 2804 2528 2805 23 2805 1592 2805 2528 2806 1592 2806 2441 2806 2441 2807 1592 2807 2356 2807 2441 2808 2356 2808 2357 2808 2277 2809 2276 2809 2183 2809 2183 2810 2276 2810 2275 2810 2183 2811 2275 2811 2274 2811 2447 2812 2446 2812 2355 2812 2355 2813 2446 2813 2445 2813 2355 2814 2445 2814 2444 2814 2695 2815 2692 2815 1503 2815 2615 2809 2614 2809 2524 2809 2524 2816 2614 2816 2613 2816 2524 2817 2613 2817 2612 2817 2526 2818 2527 2818 24 2818 24 2819 2527 2819 2524 2819 24 2820 2524 2820 21 2820 21 2821 2524 2821 2612 2821 21 2822 2612 2822 2609 2822 30 2823 20 2823 2693 2823 2693 2824 20 2824 19 2824 2693 2825 19 2825 2696 2825 2609 2826 2610 2826 21 2826 21 2827 2610 2827 2611 2827 21 2828 2611 2828 19 2828 19 2829 2611 2829 2608 2829 19 2830 2608 2830 2696 2830 30 2831 2693 2831 1503 2831 1503 2832 2693 2832 2694 2832 1503 2833 2694 2833 2695 2833 2699 2809 2698 2809 2608 2809 2608 2834 2698 2834 2697 2834 2608 2835 2697 2835 2696 2835 2441 2836 2442 2836 2528 2836 2528 2837 2442 2837 2443 2837 2528 2838 2443 2838 2529 2838 2529 2839 2443 2839 2440 2839 2529 2840 2440 2840 2530 2840 2530 2841 2440 2841 2531 2841 2783 2842 2782 2842 1503 2842 2783 2843 1503 2843 2784 2843 2692 2844 2691 2844 1503 2844 1503 2845 2691 2845 3397 2845 1503 2846 3397 2846 2784 2846 2782 2847 2781 2847 1503 2847 1503 2848 2781 2848 2780 2848 1503 2849 2780 2849 2777 2849 2865 2850 2862 2850 1503 2850 3035 2851 3032 2851 1470 2851 2951 2852 2948 2852 1470 2852 1503 2853 2862 2853 1470 2853 2861 2854 2951 2854 2864 2854 2864 2855 2951 2855 1470 2855 2864 2856 1470 2856 2863 2856 2863 2857 1470 2857 2862 2857 3123 2858 3120 2858 1470 2858 3032 2859 3033 2859 1470 2859 3123 2860 3034 2860 3031 2860 3120 2861 3121 2861 1470 2861 1470 2862 3121 2862 3122 2862 1470 2863 3122 2863 3119 2863 2948 2864 2949 2864 1470 2864 1470 2865 2949 2865 2950 2865 1470 2866 2950 2866 3035 2866 3035 2867 2950 2867 2947 2867 3035 2868 2947 2868 3036 2868 3036 2810 2947 2810 3037 2810 2954 2869 2953 2869 2861 2869 2861 2834 2953 2834 2952 2834 2861 2870 2952 2870 2951 2870 3211 2869 3210 2869 3119 2869 3210 2871 3209 2871 3119 2871 3119 2872 3209 2872 3208 2872 3119 2873 3208 2873 1470 2873 1470 2874 3208 2874 3205 2874 3205 2875 3206 2875 1470 2875 1470 2876 3206 2876 3207 2876 1470 2877 3207 2877 3204 2877 2777 2878 2778 2878 1503 2878 1503 2879 2778 2879 2779 2879 1503 2880 2779 2880 2865 2880 2865 2881 2779 2881 2776 2881 2865 2882 2776 2882 2866 2882 2866 2834 2776 2834 2867 2834 3126 2883 3125 2883 3031 2883 3031 2884 3125 2884 3124 2884 3031 2885 3124 2885 3123 2885 3294 2886 3293 2886 3204 2886 3204 2887 3293 2887 1470 2887 1470 2888 3293 2888 3292 2888 1470 2889 3292 2889 3289 2889 3289 2890 3290 2890 1470 2890 1470 2891 3290 2891 3291 2891 1470 2892 3291 2892 1471 2892 3217 2893 3220 2893 3398 2893 3221 2894 3222 2894 1472 2894 3291 2895 3288 2895 1471 2895 1471 2896 3288 2896 3287 2896 1471 2897 3287 2897 1467 2897 1467 2898 3287 2898 3297 2898 1467 2899 3297 2899 1468 2899 3297 2900 3298 2900 1468 2900 1468 2901 3298 2901 3308 2901 1468 2902 3308 2902 1472 2902 3308 2903 3306 2903 1472 2903 1472 2904 3306 2904 3307 2904 1472 2905 3307 2905 3300 2905 3300 2906 3299 2906 1472 2906 1472 2907 3299 2907 3302 2907 1472 2908 3302 2908 3221 2908 3302 2909 3301 2909 3221 2909 3221 2910 3301 2910 3303 2910 3221 2911 3303 2911 3223 2911 3223 2912 3303 2912 3304 2912 3223 2913 3304 2913 3214 2913 3214 2914 3304 2914 3305 2914 3214 2915 3305 2915 3213 2915 3213 2916 3305 2916 3309 2916 3213 2917 3309 2917 3203 2917 3203 2918 3309 2918 3296 2918 3203 2919 3296 2919 3204 2919 3204 2920 3296 2920 3295 2920 3204 2921 3295 2921 3294 2921 3222 2922 3216 2922 1472 2922 1472 2923 3216 2923 3215 2923 1472 2924 3215 2924 3398 2924 3398 2925 3215 2925 3218 2925 3398 2926 3218 2926 3217 2926 3137 2927 3220 2927 3138 2927 3138 2928 3220 2928 3219 2928 3211 2929 3119 2929 3212 2929 3212 2930 3119 2930 3118 2930 3212 2931 3118 2931 3224 2931 3224 2917 3118 2917 3128 2917 3224 2916 3128 2916 3219 2916 3219 2932 3128 2932 3129 2932 3219 2933 3129 2933 3138 2933 3134 2934 3398 2934 3135 2934 3135 2935 3398 2935 3220 2935 3135 2936 3220 2936 3136 2936 3136 2937 3220 2937 3137 2937 3134 2938 3133 2938 3398 2938 3398 2939 3133 2939 3132 2939 3398 2940 3132 2940 3131 2940 2964 2941 3042 2941 2965 2941 2965 2942 3042 2942 3045 2942 3045 2943 3044 2943 2965 2943 2965 2944 3044 2944 3046 2944 2965 2945 3046 2945 2966 2945 2966 2946 3046 2946 3047 2946 2966 2947 3047 2947 2957 2947 2957 2948 3047 2948 3048 2948 2957 2949 3048 2949 2956 2949 2956 2950 3048 2950 3052 2950 2956 2917 3052 2917 2946 2917 2946 2918 3052 2918 3039 2918 2946 2919 3039 2919 2947 2919 2947 2920 3039 2920 3038 2920 2947 2951 3038 2951 3037 2951 3049 2952 3131 2952 3051 2952 3051 2953 3131 2953 3130 2953 3126 2929 3031 2929 3127 2929 3127 2954 3031 2954 3030 2954 3127 2918 3030 2918 3139 2918 3139 2955 3030 2955 3040 2955 3139 2950 3040 2950 3130 2950 3130 2932 3040 2932 3041 2932 3130 2956 3041 2956 3051 2956 2963 2957 2962 2957 3398 2957 2964 2958 2963 2958 3042 2958 3042 2959 2963 2959 3398 2959 3042 2960 3398 2960 3043 2960 3043 2961 3398 2961 3131 2961 3043 2962 3131 2962 3050 2962 3050 2963 3131 2963 3049 2963 2962 2964 2961 2964 3398 2964 3398 2965 2961 2965 2960 2965 3398 2966 2960 2966 2959 2966 2794 2967 2872 2967 2875 2967 2875 2943 2874 2943 2794 2943 2794 2968 2874 2968 2876 2968 2794 2969 2876 2969 2796 2969 2796 2970 2876 2970 2877 2970 2796 2971 2877 2971 2786 2971 2786 2972 2877 2972 2878 2972 2786 2949 2878 2949 2785 2949 2785 2950 2878 2950 2882 2950 2785 2917 2882 2917 2775 2917 2775 2973 2882 2973 2869 2973 2775 2919 2869 2919 2776 2919 2776 2974 2869 2974 2868 2974 2776 2975 2868 2975 2867 2975 2879 2911 2959 2911 2881 2911 2881 2928 2959 2928 2958 2928 2954 2976 2861 2976 2955 2976 2955 2930 2861 2930 2860 2930 2955 2918 2860 2918 2967 2918 2967 2917 2860 2917 2870 2917 2967 2950 2870 2950 2958 2950 2958 2949 2870 2949 2871 2949 2958 2933 2871 2933 2881 2933 2879 2977 2880 2977 2959 2977 2959 2978 2880 2978 2873 2978 2959 2979 2873 2979 3398 2979 3398 2980 2873 2980 2872 2980 2794 2981 2795 2981 2872 2981 2872 2982 2795 2982 2788 2982 2872 2983 2788 2983 3398 2983 3398 2984 2788 2984 2787 2984 2787 2985 2790 2985 3398 2985 3398 2986 2790 2986 2789 2986 3398 2987 2789 2987 2791 2987 2791 2988 2792 2988 3398 2988 3398 2989 2792 2989 2793 2989 3398 2990 2793 2990 3397 2990 3397 2991 2793 2991 2797 2991 3397 2992 2797 2992 2784 2992 2542 2993 2536 2993 2624 2993 2537 2994 2540 2994 3399 2994 2691 2995 2701 2995 3397 2995 3397 2996 2701 2996 2702 2996 3397 2997 2702 2997 3398 2997 3398 2998 2702 2998 2711 2998 3398 2999 2711 2999 2709 2999 2709 3000 2710 3000 3398 3000 3398 3001 2710 3001 2704 3001 3398 3002 2704 3002 2703 3002 2620 3003 2619 3003 3398 3003 2703 3004 2706 3004 3398 3004 3398 3005 2706 3005 2705 3005 3398 3006 2705 3006 2620 3006 2620 3007 2705 3007 2708 3007 2620 3008 2708 3008 2626 3008 2535 3009 2622 3009 2536 3009 2536 3010 2622 3010 2621 3010 2536 3011 2621 3011 2624 3011 2619 3012 2622 3012 3398 3012 3398 3013 2622 3013 2535 3013 3398 3014 2535 3014 3399 3014 3399 3015 2535 3015 2538 3015 3399 3016 2538 3016 2537 3016 2623 3017 2543 3017 2624 3017 2624 3018 2543 3018 2541 3018 2624 3019 2541 3019 2542 3019 2615 3020 2524 3020 2616 3020 2616 3021 2524 3021 2523 3021 2616 3022 2523 3022 2628 3022 2628 3023 2523 3023 2533 3023 2628 2950 2533 2950 2623 2950 2623 3024 2533 3024 2534 3024 2623 3025 2534 3025 2543 3025 2707 3026 2627 3026 2708 3026 2708 3027 2627 3027 2625 3027 2708 3028 2625 3028 2626 3028 2699 3029 2608 3029 2700 3029 2700 3030 2608 3030 2607 3030 2700 3023 2607 3023 2712 3023 2712 2973 2607 2973 2617 2973 2712 3031 2617 3031 2707 3031 2707 3032 2617 3032 2618 3032 2707 2933 2618 2933 2627 2933 2457 3033 2540 3033 2459 3033 2459 3034 2540 3034 2539 3034 2531 3035 2440 3035 2532 3035 2532 3036 2440 3036 2439 3036 2532 3022 2439 3022 2544 3022 2544 3037 2439 3037 2449 3037 2544 3038 2449 3038 2539 3038 2539 3039 2449 3039 2450 3039 2539 3040 2450 3040 2459 3040 2457 3041 2458 3041 2540 3041 2540 3042 2458 3042 2452 3042 2540 3043 2452 3043 3399 3043 3399 3044 2452 3044 2451 3044 2451 3045 2454 3045 3399 3045 3399 3046 2454 3046 2453 3046 3399 3047 2453 3047 2456 3047 2373 3048 2456 3048 2374 3048 2374 3049 2456 3049 2455 3049 2447 3020 2355 3020 2448 3020 2448 3050 2355 3050 2354 3050 2448 3051 2354 3051 2460 3051 2460 3023 2354 3023 2364 3023 2460 3038 2364 3038 2455 3038 2455 3039 2364 3039 2365 3039 2455 3052 2365 3052 2374 3052 2373 3053 2372 3053 2456 3053 2456 3054 2372 3054 2371 3054 2456 3055 2371 3055 3399 3055 3399 3056 2371 3056 2370 3056 2370 3057 2369 3057 3399 3057 3399 3058 2369 3058 2368 3058 3399 3059 2368 3059 2367 3059 2200 3060 2204 3060 3400 3060 3400 3061 2204 3061 2191 3061 3400 3062 2191 3062 1574 3062 1574 3063 2191 3063 2190 3063 1574 3064 2190 3064 2189 3064 2287 3065 2367 3065 2289 3065 2289 3066 2367 3066 2366 3066 2270 3067 2271 3067 2362 3067 2362 3068 2271 3068 2272 3068 2362 3069 2272 3069 2363 3069 2363 3070 2272 3070 2273 3070 2363 3022 2273 3022 2375 3022 2375 3023 2273 3023 2279 3023 2375 3071 2279 3071 2366 3071 2366 2949 2279 2949 2280 2949 2366 3052 2280 3052 2289 3052 2287 3053 2288 3053 2367 3053 2367 3072 2288 3072 2282 3072 2367 3073 2282 3073 3399 3073 3399 3074 2282 3074 2281 3074 3399 3075 2281 3075 2284 3075 2202 3008 2195 3008 2286 3008 2286 3076 2195 3076 3399 3076 2286 3077 3399 3077 2283 3077 2283 3078 3399 3078 2284 3078 2195 3079 2194 3079 3399 3079 3399 3080 2194 3080 2197 3080 3399 3081 2197 3081 2196 3081 2196 3082 2198 3082 3399 3082 3399 3083 2198 3083 2199 3083 3399 3084 2199 3084 2200 3084 2285 3085 2203 3085 2286 3085 2286 3086 2203 3086 2201 3086 2286 3087 2201 3087 2202 3087 2277 3029 2183 3029 2278 3029 2278 3088 2183 3088 2182 3088 2278 3089 2182 3089 2290 3089 2290 3022 2182 3022 2192 3022 2290 3032 2192 3032 2285 3032 2285 3031 2192 3031 2193 3031 2285 3025 2193 3025 2203 3025 1942 3090 1941 3090 93 3090 2200 3091 3400 3091 3399 3091 3399 3092 3400 3092 2108 3092 3399 3093 2108 3093 2118 3093 2118 3094 2116 3094 3399 3094 3399 3095 2116 3095 2117 3095 3399 3096 2117 3096 2110 3096 2110 3097 2109 3097 3399 3097 3399 3098 2109 3098 2112 3098 3399 3099 2112 3099 2031 3099 2031 3100 2032 3100 3399 3100 3399 3101 2032 3101 2025 3101 3399 3102 2025 3102 2024 3102 2024 3103 2027 3103 3399 3103 3399 3104 2027 3104 1947 3104 3399 3105 1947 3105 1946 3105 1946 3106 1945 3106 3399 3106 3399 3107 1945 3107 1944 3107 3399 3108 1944 3108 93 3108 93 3109 1944 3109 1943 3109 93 3110 1943 3110 1942 3110 1771 3111 1770 3111 93 3111 1775 3112 1859 3112 1776 3112 1776 3113 1859 3113 1858 3113 1862 3114 1941 3114 1863 3114 1863 3115 1941 3115 1940 3115 1863 2933 1940 2933 1853 2933 1862 3053 1861 3053 1941 3053 1941 2978 1861 2978 1860 2978 1941 3116 1860 3116 93 3116 93 3117 1860 3117 1859 3117 1775 3118 1774 3118 1859 3118 1859 3119 1774 3119 1773 3119 1859 3120 1773 3120 93 3120 93 3121 1773 3121 1772 3121 93 3122 1772 3122 1771 3122 1690 2927 1770 2927 1692 2927 1692 3123 1770 3123 1769 3123 1692 3124 1769 3124 1682 3124 3393 3125 1683 3125 1686 3125 1690 2977 1691 2977 1770 2977 1770 2978 1691 2978 1684 2978 1770 3126 1684 3126 93 3126 93 3127 1684 3127 1683 3127 3393 3128 3394 3128 1683 3128 1683 3129 3394 3129 3387 3129 1683 3130 3387 3130 93 3130 93 3131 3387 3131 3386 3131 3386 3132 3389 3132 93 3132 93 3133 3389 3133 3388 3133 93 3134 3388 3134 157 3134 157 3135 3388 3135 3390 3135 3390 3136 3391 3136 157 3136 157 3137 3391 3137 3392 3137 157 3138 3392 3138 142 3138 142 3139 3392 3139 3396 3139 142 3140 3396 3140 152 3140 3396 3141 3383 3141 152 3141 152 3142 3383 3142 3382 3142 152 3143 3382 3143 150 3143 3382 3144 3381 3144 150 3144 150 3145 3381 3145 3380 3145 150 3146 3380 3146 3379 3146 3376 3147 3377 3147 1673 3147 1673 3148 3377 3148 1676 3148 1762 3149 1759 3149 1574 3149 3379 3150 3376 3150 150 3150 150 3151 3376 3151 1673 3151 150 3152 1673 3152 1574 3152 1847 3153 1844 3153 1574 3153 1844 3154 1845 3154 1574 3154 1574 3155 1845 3155 1846 3155 1574 3156 1846 3156 1843 3156 1853 2949 1940 2949 1852 2949 1852 2950 1940 2950 1949 2950 1852 2917 1949 2917 1842 2917 1842 2918 1949 2918 1937 2918 1842 3157 1937 3157 1843 3157 1843 3158 1937 3158 1936 3158 1843 2975 1936 2975 1935 2975 1935 2871 1934 2871 1843 2871 1843 3159 1934 3159 1933 3159 1843 3160 1933 3160 1574 3160 1574 3161 1933 3161 1930 3161 1930 3162 1931 3162 1574 3162 1574 3163 1931 3163 1932 3163 1574 3164 1932 3164 1929 3164 1759 3165 1760 3165 1574 3165 1574 3166 1760 3166 1761 3166 1574 3167 1761 3167 1847 3167 1847 3168 1761 3168 1758 3168 1847 3169 1758 3169 1848 3169 1848 3170 1758 3170 1849 3170 1858 3171 1857 3171 1776 3171 1776 2944 1857 2944 1854 2944 1776 2927 1854 2927 1777 2927 1777 2970 1854 2970 1855 2970 1777 2913 1855 2913 1768 2913 1768 2914 1855 2914 1856 2914 1768 2949 1856 2949 1767 2949 1767 2916 1856 2916 1864 2916 1767 2917 1864 2917 1757 2917 1757 2931 1864 2931 1851 2931 1757 3172 1851 3172 1758 3172 1758 3173 1851 3173 1850 3173 1758 2975 1850 2975 1849 2975 2027 3174 2026 3174 1947 3174 1947 2910 2026 2910 2028 2910 1947 2911 2028 2911 1948 2911 1948 2970 2028 2970 2029 2970 1948 3175 2029 3175 1939 3175 1939 2948 2029 2948 2030 2948 1939 2949 2030 2949 1938 2949 1938 2950 2030 2950 2034 2950 1938 2917 2034 2917 1928 2917 1928 2918 2034 2918 2021 2918 1928 2919 2021 2919 1929 2919 1929 2920 2021 2920 2020 2920 1929 2975 2020 2975 2019 2975 2019 2886 2018 2886 1929 2886 1929 3176 2018 3176 2017 3176 1929 3177 2017 3177 1574 3177 1574 3178 2017 3178 2014 3178 2014 3179 2015 3179 1574 3179 1574 3180 2015 3180 2016 3180 1574 3181 2016 3181 2013 3181 1574 3182 2100 3182 2101 3182 2104 3183 2103 3183 2013 3183 2013 3184 2103 3184 2102 3184 2013 3185 2102 3185 1574 3185 1574 3186 2102 3186 2099 3186 1574 3187 2099 3187 2100 3187 2112 3174 2111 3174 2031 3174 2031 3188 2111 3188 2113 3188 2031 3189 2113 3189 2033 3189 2033 3190 2113 3190 2114 3190 2033 3175 2114 3175 2023 3175 2023 2948 2114 2948 2115 2948 2023 2949 2115 2949 2022 2949 2022 2950 2115 2950 2119 2950 2022 3089 2119 3089 2012 3089 2012 2918 2119 2918 2106 2918 2012 2919 2106 2919 2013 2919 2013 3191 2106 3191 2105 3191 2013 2975 2105 2975 2104 2975 1673 3192 1674 3192 1574 3192 1574 3193 1674 3193 1675 3193 1574 3194 1675 3194 1762 3194 1762 3195 1675 3195 1672 3195 1762 3196 1672 3196 1763 3196 1763 3197 1672 3197 1764 3197 1682 2932 1769 2932 1681 2932 1681 2916 1769 2916 1778 2916 1681 2955 1778 2955 1671 2955 1671 2918 1778 2918 1766 2918 1671 2919 1766 2919 1672 2919 1672 2920 1766 2920 1765 2920 1672 2951 1765 2951 1764 2951 3377 3198 3378 3198 1676 3198 1676 2854 3378 2854 3375 2854 1676 3199 3375 3199 1677 3199 1677 2884 3375 2884 1678 2884 1686 2909 1685 2909 3393 2909 3393 2910 1685 2910 1687 2910 3393 3189 1687 3189 3395 3189 3395 2912 1687 2912 1688 2912 3395 2947 1688 2947 3385 2947 3385 3200 1688 3200 1689 3200 3385 2932 1689 2932 3384 2932 3384 3201 1689 3201 1693 3201 3384 2917 1693 2917 3374 2917 3374 2918 1693 2918 1680 2918 3374 3157 1680 3157 3375 3157 3375 3158 1680 3158 1679 3158 3375 2921 1679 2921 1678 2921 2101 3202 2098 3202 1574 3202 1574 3203 2098 3203 2097 3203 1574 3204 2097 3204 3400 3204 3400 3205 2097 3205 2107 3205 3400 3206 2107 3206 2108 3206 3399 3207 3401 3207 3398 3207 3398 3208 3401 3208 3402 3208 3398 3209 3402 3209 1472 3209 93 3210 76 3210 3399 3210 3399 3211 76 3211 78 3211 3399 3212 78 3212 3401 3212 1472 3213 3402 3213 1461 3213 1461 3214 3402 3214 3403 3214 1461 3215 3403 3215 1462 3215 1462 3216 3403 3216 1464 3216 1464 3217 3403 3217 1465 3217 1465 3218 3403 3218 3404 3218 1465 3219 3404 3219 1460 3219 3405 3220 1457 3220 3404 3220 3404 3221 1457 3221 1458 3221 3404 3222 1458 3222 1460 3222 3406 3223 1453 3223 3405 3223 3405 3224 1453 3224 1455 3224 3405 3225 1455 3225 1457 3225 1449 3226 1448 3226 3407 3226 3407 3227 1448 3227 1416 3227 3407 3228 1416 3228 3406 3228 3406 3229 1416 3229 1415 3229 3406 3230 1415 3230 1453 3230 1449 3231 3407 3231 1451 3231 1451 3232 3407 3232 3408 3232 1451 3233 3408 3233 1452 3233 1452 3234 3408 3234 1444 3234 1444 3235 3408 3235 3409 3235 1444 3236 3409 3236 1445 3236 1445 3237 3409 3237 1446 3237 1446 3238 3409 3238 3410 3238 1446 3239 3410 3239 1447 3239 1447 3240 3410 3240 1440 3240 1440 3241 3410 3241 3411 3241 1440 3242 3411 3242 1441 3242 1441 3243 3411 3243 1438 3243 1438 3244 3411 3244 3412 3244 1438 3245 3412 3245 1436 3245 3413 3246 1433 3246 3412 3246 3412 3247 1433 3247 1432 3247 3412 3248 1432 3248 1436 3248 3414 3249 1430 3249 3413 3249 3413 3250 1430 3250 1429 3250 3413 3251 1429 3251 1433 3251 3415 3252 1425 3252 3414 3252 3414 3253 1425 3253 1431 3253 3414 3254 1431 3254 1430 3254 3416 3255 1428 3255 3415 3255 3415 3256 1428 3256 1427 3256 3415 3257 1427 3257 1425 3257 1423 3258 1419 3258 3416 3258 3416 3259 1419 3259 1418 3259 3416 3260 1418 3260 1428 3260 1423 3261 3417 3261 1422 3261 1422 3262 3417 3262 3418 3262 1422 3263 3418 3263 1410 3263 1423 3264 3416 3264 3417 3264 3417 3265 3416 3265 3419 3265 3417 3266 3419 3266 3418 3266 3418 3267 3419 3267 3420 3267 3418 3268 3420 3268 3421 3268 3422 3269 3423 3269 3406 3269 3406 3270 3423 3270 3424 3270 3406 3271 3424 3271 3407 3271 3407 3272 3424 3272 3425 3272 3407 3273 3425 3273 3408 3273 3408 3274 3425 3274 3426 3274 3408 3275 3426 3275 3409 3275 3409 3276 3426 3276 3427 3276 3409 3277 3427 3277 3410 3277 3410 3278 3427 3278 3428 3278 3410 3279 3428 3279 3411 3279 3411 3280 3428 3280 3429 3280 3411 3281 3429 3281 3412 3281 3412 3282 3429 3282 3430 3282 3412 3283 3430 3283 3413 3283 3413 3284 3430 3284 3431 3284 3413 3285 3431 3285 3414 3285 3414 3286 3431 3286 3432 3286 3414 3287 3432 3287 3415 3287 3415 3288 3432 3288 3433 3288 3415 3289 3433 3289 3416 3289 3416 3290 3433 3290 3434 3290 3416 3291 3434 3291 3419 3291 3422 3292 3406 3292 3435 3292 3435 3293 3406 3293 3405 3293 3435 3294 3405 3294 3436 3294 3436 3295 3405 3295 3404 3295 3436 3296 3404 3296 3437 3296 3437 3297 3404 3297 3403 3297 3437 3298 3403 3298 3438 3298 3438 3299 3403 3299 3439 3299 3439 3300 3403 3300 3402 3300 3439 3301 3402 3301 3401 3301 79 3302 1410 3302 42 3302 42 3303 1410 3303 3418 3303 42 3304 3418 3304 43 3304 43 3305 3418 3305 3421 3305 43 3306 3421 3306 3440 3306 3440 3307 3421 3307 3441 3307 3440 3308 3441 3308 3442 3308 3442 3309 3441 3309 3443 3309 3442 3310 3443 3310 3444 3310 3444 3311 3443 3311 3445 3311 3444 3312 3445 3312 3446 3312 3447 3313 3448 3313 3449 3313 3445 3314 3443 3314 3450 3314 3445 3315 3450 3315 3451 3315 3451 3316 3450 3316 3452 3316 3451 3317 3452 3317 3453 3317 3453 3318 3452 3318 3454 3318 3453 3319 3454 3319 3455 3319 3455 3320 3454 3320 3456 3320 3455 3321 3456 3321 3457 3321 3457 3322 3456 3322 3458 3322 3457 3323 3458 3323 3459 3323 3459 3324 3458 3324 3460 3324 3459 3325 3460 3325 3461 3325 3461 3326 3460 3326 3462 3326 3461 3327 3462 3327 3463 3327 3463 3328 3462 3328 3464 3328 3463 3329 3464 3329 3465 3329 3465 3330 3464 3330 3466 3330 3465 3331 3466 3331 3467 3331 3467 3332 3466 3332 3468 3332 3467 3333 3468 3333 3469 3333 3469 3334 3468 3334 3470 3334 3469 3335 3470 3335 3471 3335 3471 3336 3470 3336 3472 3336 3471 3337 3472 3337 3473 3337 3473 3338 3472 3338 3474 3338 3473 3339 3474 3339 3475 3339 3475 3340 3474 3340 3476 3340 3475 3341 3476 3341 3477 3341 3477 3342 3476 3342 3478 3342 3477 3343 3478 3343 3479 3343 3479 3344 3478 3344 3480 3344 3479 3345 3480 3345 3481 3345 3439 3346 3401 3346 3447 3346 3447 3347 3449 3347 3439 3347 3439 3348 3449 3348 3482 3348 3439 3349 3482 3349 3438 3349 3438 3350 3482 3350 3437 3350 3437 3351 3482 3351 3483 3351 3437 3352 3483 3352 3436 3352 3436 3353 3483 3353 3435 3353 3435 3354 3483 3354 3484 3354 3435 3355 3484 3355 3422 3355 3422 3356 3484 3356 3423 3356 3423 3357 3484 3357 3485 3357 3423 3358 3485 3358 3424 3358 3424 3359 3485 3359 3486 3359 3424 3360 3486 3360 3425 3360 3425 3361 3486 3361 3487 3361 3425 3362 3487 3362 3426 3362 3426 3363 3487 3363 3488 3363 3426 3364 3488 3364 3427 3364 3427 3365 3488 3365 3489 3365 3427 3366 3489 3366 3428 3366 3428 3367 3489 3367 3490 3367 3428 3368 3490 3368 3429 3368 3429 3369 3490 3369 3491 3369 3429 3370 3491 3370 3430 3370 3430 3371 3491 3371 3492 3371 3430 3372 3492 3372 3431 3372 3431 3373 3492 3373 3432 3373 3432 3374 3492 3374 3493 3374 3432 3375 3493 3375 3433 3375 3433 3376 3493 3376 3434 3376 3434 3377 3493 3377 3494 3377 3434 3378 3494 3378 3419 3378 3419 3379 3494 3379 3495 3379 3419 3380 3495 3380 3420 3380 3420 3381 3495 3381 3441 3381 3420 3382 3441 3382 3421 3382 3448 3383 3480 3383 3449 3383 3449 3384 3480 3384 3478 3384 3449 3385 3478 3385 3482 3385 3482 3386 3478 3386 3476 3386 3482 3387 3476 3387 3483 3387 3483 3388 3476 3388 3474 3388 3483 3389 3474 3389 3484 3389 3484 3390 3474 3390 3472 3390 3484 3391 3472 3391 3485 3391 3485 3392 3472 3392 3470 3392 3485 3393 3470 3393 3486 3393 3486 3394 3470 3394 3468 3394 3486 3395 3468 3395 3487 3395 3487 3396 3468 3396 3466 3396 3487 3397 3466 3397 3488 3397 3488 3398 3466 3398 3464 3398 3488 3399 3464 3399 3489 3399 3489 3400 3464 3400 3462 3400 3489 3401 3462 3401 3490 3401 3490 3402 3462 3402 3460 3402 3490 3403 3460 3403 3491 3403 3491 3404 3460 3404 3458 3404 3491 3405 3458 3405 3492 3405 3492 3406 3458 3406 3456 3406 3492 3407 3456 3407 3493 3407 3493 3408 3456 3408 3454 3408 3493 3409 3454 3409 3494 3409 3494 3410 3454 3410 3452 3410 3494 3411 3452 3411 3495 3411 3495 3412 3452 3412 3450 3412 3495 3413 3450 3413 3441 3413 3441 3414 3450 3414 3443 3414 3401 3415 78 3415 3447 3415 3447 3416 78 3416 3496 3416 3447 3417 3496 3417 3448 3417 3496 3418 3497 3418 3448 3418 3448 3419 3497 3419 3498 3419 3448 3420 3498 3420 3480 3420 3480 3421 3498 3421 3499 3421 3480 3422 3499 3422 3481 3422 3440 3423 3442 3423 3500 3423 3499 3424 3498 3424 3501 3424 3499 3425 3501 3425 3502 3425 3502 3426 3501 3426 3503 3426 3502 3427 3503 3427 3504 3427 3504 3428 3503 3428 3505 3428 3504 3429 3505 3429 3506 3429 3506 3430 3505 3430 3507 3430 3506 3431 3507 3431 3508 3431 3508 3432 3507 3432 3509 3432 3508 3433 3509 3433 3510 3433 3510 3434 3509 3434 3511 3434 3510 3435 3511 3435 3512 3435 3512 3436 3511 3436 3513 3436 3512 3437 3513 3437 3514 3437 3514 3438 3513 3438 3515 3438 3514 3439 3515 3439 3516 3439 3516 3440 3515 3440 3517 3440 3516 3441 3517 3441 3518 3441 3518 3442 3517 3442 3519 3442 3518 3443 3519 3443 3520 3443 3520 3444 3519 3444 3521 3444 3520 3445 3521 3445 3522 3445 3522 3446 3521 3446 3523 3446 3522 3447 3523 3447 3524 3447 3524 3448 3523 3448 3525 3448 3524 3449 3525 3449 3526 3449 3526 3450 3525 3450 3527 3450 3526 3451 3527 3451 3528 3451 3528 3452 3527 3452 3529 3452 3528 3453 3529 3453 3530 3453 3530 3454 3529 3454 3531 3454 3530 3455 3531 3455 3532 3455 3532 3456 3531 3456 3444 3456 3532 3457 3444 3457 3446 3457 44 3458 43 3458 3440 3458 3440 3459 3500 3459 44 3459 44 3460 3500 3460 3533 3460 44 3461 3533 3461 46 3461 46 3462 3533 3462 3534 3462 46 3463 3534 3463 48 3463 48 3464 3534 3464 3535 3464 48 3465 3535 3465 50 3465 50 3466 3535 3466 3536 3466 50 3467 3536 3467 52 3467 52 3468 3536 3468 3537 3468 52 3469 3537 3469 54 3469 54 3470 3537 3470 56 3470 56 3471 3537 3471 3538 3471 56 3472 3538 3472 57 3472 57 3473 3538 3473 59 3473 59 3474 3538 3474 3539 3474 59 3475 3539 3475 60 3475 60 3476 3539 3476 62 3476 62 3477 3539 3477 3540 3477 62 3478 3540 3478 39 3478 39 3479 3540 3479 40 3479 40 3480 3540 3480 3541 3480 40 3481 3541 3481 63 3481 3542 3482 3497 3482 3496 3482 63 3483 3541 3483 65 3483 65 3484 3541 3484 3543 3484 65 3485 3543 3485 67 3485 67 3486 3543 3486 3544 3486 67 3487 3544 3487 69 3487 69 3488 3544 3488 3545 3488 69 3489 3545 3489 71 3489 71 3490 3545 3490 3546 3490 71 3491 3546 3491 73 3491 73 3492 3546 3492 3547 3492 73 3493 3547 3493 75 3493 75 3494 3547 3494 3542 3494 75 3495 3542 3495 77 3495 77 3496 3542 3496 3496 3496 77 3497 3496 3497 78 3497 3442 3498 3444 3498 3500 3498 3500 3499 3444 3499 3531 3499 3500 3500 3531 3500 3533 3500 3533 3501 3531 3501 3529 3501 3533 3502 3529 3502 3534 3502 3534 3503 3529 3503 3527 3503 3534 3504 3527 3504 3535 3504 3535 3505 3527 3505 3525 3505 3535 3506 3525 3506 3536 3506 3536 3507 3525 3507 3523 3507 3536 3508 3523 3508 3537 3508 3537 3509 3523 3509 3521 3509 3537 3510 3521 3510 3538 3510 3538 3511 3521 3511 3519 3511 3538 3512 3519 3512 3539 3512 3539 3513 3519 3513 3517 3513 3539 3514 3517 3514 3540 3514 3540 3515 3517 3515 3515 3515 3540 3516 3515 3516 3541 3516 3541 3517 3515 3517 3513 3517 3541 3518 3513 3518 3543 3518 3543 3519 3513 3519 3511 3519 3543 3520 3511 3520 3544 3520 3544 3521 3511 3521 3509 3521 3544 3522 3509 3522 3545 3522 3545 3523 3509 3523 3507 3523 3545 3524 3507 3524 3546 3524 3546 3525 3507 3525 3505 3525 3546 3526 3505 3526 3547 3526 3547 3527 3505 3527 3503 3527 3547 3528 3503 3528 3542 3528 3542 3529 3503 3529 3501 3529 3542 3530 3501 3530 3497 3530 3497 3531 3501 3531 3498 3531 3548 1495 3549 1495 3550 1495 3550 1495 3549 1495 3551 1495 3552 3532 3553 3532 3554 3532 3554 3533 3553 3533 3555 3533 3554 3534 3555 3534 3556 3534 3556 3535 3555 3535 3557 3535 3556 3536 3557 3536 3558 3536 3558 3537 3557 3537 3559 3537 3558 3538 3559 3538 3560 3538 3560 3539 3559 3539 3561 3539 3560 3540 3561 3540 3562 3540 3562 3541 3561 3541 3563 3541 3562 3542 3563 3542 3564 3542 3564 3543 3563 3543 3565 3543 3564 3544 3565 3544 3566 3544 3566 3545 3565 3545 3567 3545 3566 3546 3567 3546 3568 3546 3568 3547 3567 3547 3569 3547 3568 3548 3569 3548 3570 3548 3570 3549 3569 3549 3571 3549 3570 3550 3571 3550 3549 3550 3549 3551 3571 3551 3551 3551 3552 426 3572 426 3553 426 3553 426 3572 426 3573 426 3574 3552 3461 3552 3575 3552 3575 3553 3461 3553 3463 3553 3575 3554 3463 3554 3576 3554 3576 3555 3463 3555 3465 3555 3576 294 3465 294 3577 294 3528 3556 3571 3556 3569 3556 3565 3557 3522 3557 3567 3557 3567 294 3522 294 3524 294 3567 3558 3524 3558 3569 3558 3569 294 3524 294 3526 294 3569 3559 3526 3559 3528 3559 3555 3560 3506 3560 3557 3560 3557 3561 3506 3561 3508 3561 3557 3562 3508 3562 3559 3562 3578 294 3479 294 3573 294 3573 3563 3479 3563 3481 3563 3573 294 3481 294 3553 294 3579 294 3457 294 3574 294 3574 294 3457 294 3459 294 3574 294 3459 294 3461 294 3563 294 3518 294 3565 294 3565 3564 3518 3564 3520 3564 3565 3565 3520 3565 3522 3565 3580 294 3475 294 3578 294 3578 294 3475 294 3477 294 3578 3566 3477 3566 3479 3566 3550 3567 3451 3567 3581 3567 3581 3568 3451 3568 3453 3568 3581 294 3453 294 3579 294 3579 294 3453 294 3455 294 3579 294 3455 294 3457 294 3528 294 3530 294 3571 294 3571 3569 3530 3569 3532 3569 3571 294 3532 294 3551 294 3551 3570 3532 3570 3446 3570 3551 294 3446 294 3550 294 3550 294 3446 294 3445 294 3550 3571 3445 3571 3451 3571 3508 294 3510 294 3559 294 3559 3572 3510 3572 3512 3572 3559 294 3512 294 3561 294 3561 294 3512 294 3514 294 3561 3573 3514 3573 3563 3573 3563 294 3514 294 3516 294 3563 294 3516 294 3518 294 3481 294 3499 294 3553 294 3553 3574 3499 3574 3502 3574 3553 294 3502 294 3555 294 3555 3575 3502 3575 3504 3575 3555 3576 3504 3576 3506 3576 3465 3577 3467 3577 3577 3577 3577 3578 3467 3578 3469 3578 3577 3579 3469 3579 3582 3579 3582 294 3469 294 3471 294 3582 3580 3471 3580 3580 3580 3580 294 3471 294 3473 294 3580 3581 3473 3581 3475 3581 3548 3582 3550 3582 3583 3582 3583 3583 3550 3583 3581 3583 3583 3584 3581 3584 3584 3584 3584 3585 3581 3585 3579 3585 3584 3586 3579 3586 3585 3586 3585 3587 3579 3587 3574 3587 3585 3588 3574 3588 3586 3588 3586 3589 3574 3589 3575 3589 3586 3590 3575 3590 3587 3590 3587 3591 3575 3591 3576 3591 3587 3592 3576 3592 3588 3592 3588 3593 3576 3593 3577 3593 3588 3594 3577 3594 3589 3594 3589 3595 3577 3595 3582 3595 3589 3596 3582 3596 3590 3596 3590 3597 3582 3597 3580 3597 3590 3598 3580 3598 3591 3598 3591 3599 3580 3599 3578 3599 3591 3600 3578 3600 3572 3600 3572 3601 3578 3601 3573 3601 3595 3602 3596 3602 3597 3602 3597 3603 3596 3603 3598 3603 3597 3604 3598 3604 3599 3604 3599 3605 3598 3605 3600 3605 3601 3606 3602 3606 3603 3606 3601 3607 3603 3607 3604 3607 3604 3608 3603 3608 3605 3608 3604 3609 3605 3609 3606 3609 3606 3610 3605 3610 3607 3610 3606 3611 3607 3611 3608 3611 3608 3612 3607 3612 3609 3612 3608 3612 3609 3612 3610 3612 3610 3613 3609 3613 3611 3613 3610 3614 3611 3614 3612 3614 3612 3615 3611 3615 3613 3615 3612 3616 3613 3616 3614 3616 3614 3617 3613 3617 3615 3617 3614 3618 3615 3618 3616 3618 3616 3619 3615 3619 3617 3619 3616 3620 3617 3620 3618 3620 3618 3621 3617 3621 3619 3621 3618 3622 3619 3622 3620 3622 3620 3623 3619 3623 3621 3623 3620 3624 3621 3624 3622 3624 3627 3625 3624 3625 3623 3625 3623 1495 3625 1495 3627 1495 3627 1495 3625 1495 3626 1495 3647 3626 3646 3626 3648 3626 3647 3627 3648 3627 3649 3627 3651 3628 3650 3628 3652 3628 3651 3629 3652 3629 3653 3629 3653 3630 3652 3630 3654 3630 3655 3631 3656 3631 3657 3631 3657 3631 3656 3631 3658 3631 3657 3632 3658 3632 3659 3632 3659 3633 3658 3633 3660 3633 3659 3634 3660 3634 3661 3634 3661 3635 3660 3635 3662 3635 3664 3636 3663 3636 3665 3636 3669 443 3670 443 3671 443 3671 443 3670 443 3672 443 3674 3637 3673 3637 3675 3637 3682 3638 3681 3638 3683 3638 3682 3639 3683 3639 3684 3639 3684 3640 3685 3640 3686 3640 3686 3641 3687 3641 3688 3641 3688 3642 3687 3642 3689 3642 3688 3643 3689 3643 3690 3643 3690 3644 3689 3644 3691 3644 3690 3645 3691 3645 3692 3645 3692 3646 3691 3646 3693 3646 3694 3647 3695 3647 3696 3647 3696 3648 3695 3648 3697 3648 3698 3649 3699 3649 3700 3649 3700 3649 3699 3649 3701 3649 3709 3650 3710 3650 3711 3650 3713 3651 3712 3651 3714 3651 3713 3652 3714 3652 3715 3652 3715 3653 3714 3653 3716 3653 3717 3654 3716 3654 3718 3654 3717 3655 3718 3655 3719 3655 3719 3655 3718 3655 3720 3655 3719 3656 3720 3656 3721 3656 3721 3657 3720 3657 3722 3657 3741 3658 3740 3658 3742 3658 3741 3659 3742 3659 3743 3659 3743 3659 3742 3659 3744 3659 3745 3660 3744 3660 3746 3660 3745 3661 3746 3661 3747 3661 3747 3662 3746 3662 3748 3662 3750 3663 3749 3663 3751 3663 3750 3629 3751 3629 3752 3629 3752 3664 3751 3664 3753 3664 3752 3665 3753 3665 3754 3665 3754 3666 3753 3666 3755 3666 3754 3667 3755 3667 3756 3667 3756 3631 3755 3631 3757 3631 3756 3632 3757 3632 3758 3632 3758 3668 3757 3668 3759 3668 3758 3669 3759 3669 3760 3669 3760 3635 3759 3635 3761 3635 3760 3670 3761 3670 3762 3670 3762 3671 3761 3671 3763 3671 3766 3672 3767 3672 3768 3672 3768 3673 3767 3673 3769 3673 3738 3674 3789 3674 3739 3674 3739 3675 3789 3675 3790 3675 3739 3676 3790 3676 3740 3676 3740 3677 3790 3677 3791 3677 3740 3678 3791 3678 3742 3678 3742 3679 3791 3679 3792 3679 3742 3680 3792 3680 3744 3680 3744 3681 3792 3681 3793 3681 3744 3682 3793 3682 3746 3682 3746 3683 3793 3683 3794 3683 3746 3684 3794 3684 3748 3684 3748 3685 3794 3685 3795 3685 3748 3686 3795 3686 3749 3686 3749 3687 3795 3687 3796 3687 3749 3688 3796 3688 3751 3688 3751 3689 3796 3689 3797 3689 3751 3690 3797 3690 3753 3690 3753 3691 3797 3691 3798 3691 3753 3692 3798 3692 3755 3692 3755 3693 3798 3693 3799 3693 3755 3694 3799 3694 3757 3694 3757 3695 3799 3695 3800 3695 3757 3696 3800 3696 3759 3696 3759 3697 3800 3697 3801 3697 3759 3698 3801 3698 3761 3698 3761 3699 3801 3699 3802 3699 3761 3700 3802 3700 3763 3700 3763 3701 3802 3701 3803 3701 3763 3702 3803 3702 3764 3702 3764 3703 3803 3703 3804 3703 3764 3704 3804 3704 3765 3704 3765 3705 3804 3705 3805 3705 3767 3706 3807 3706 3769 3706 3769 3707 3807 3707 3808 3707 3769 443 3808 443 3770 443 3771 3708 3809 3708 3810 3708 3771 3709 3810 3709 3772 3709 3773 3710 3811 3710 3812 3710 3773 3711 3812 3711 3774 3711 3775 3712 3813 3712 3776 3712 3776 3713 3813 3713 3814 3713 3777 3714 3815 3714 3778 3714 3778 3715 3815 3715 3816 3715 3778 3716 3816 3716 3779 3716 3779 3717 3816 3717 3817 3717 3779 3718 3817 3718 3780 3718 3780 3719 3817 3719 3818 3719 3781 3720 3818 3720 3819 3720 3781 3721 3819 3721 3782 3721 3782 3722 3820 3722 3783 3722 3783 3723 3820 3723 3821 3723 3783 3724 3821 3724 3784 3724 3784 3725 3821 3725 3822 3725 3785 3726 3822 3726 3823 3726 3785 3727 3823 3727 3786 3727 3786 3728 3823 3728 3824 3728 3787 3729 3825 3729 3788 3729 3788 3730 3825 3730 3826 3730 3788 3731 3826 3731 3738 3731 3738 3732 3826 3732 3789 3732 3628 3733 3829 3733 3629 3733 3629 3734 3829 3734 3830 3734 3630 3735 3831 3735 3832 3735 3631 3736 3833 3736 3834 3736 3631 3737 3834 3737 3632 3737 3632 3738 3834 3738 3835 3738 3632 3739 3835 3739 3633 3739 3633 3740 3835 3740 3836 3740 3633 3741 3836 3741 3634 3741 3634 3742 3836 3742 3837 3742 3635 3743 3838 3743 3636 3743 3636 3744 3838 3744 3839 3744 3637 3745 3839 3745 3840 3745 3637 3746 3840 3746 3638 3746 3639 3747 3841 3747 3842 3747 3640 3748 3844 3748 3845 3748 3641 3749 3847 3749 3642 3749 3642 3675 3847 3675 3848 3675 3642 3750 3848 3750 3643 3750 3643 3677 3848 3677 3849 3677 3644 3680 3850 3680 3645 3680 3645 3751 3850 3751 3851 3751 3646 3752 3852 3752 3648 3752 3648 3753 3852 3753 3853 3753 3648 3686 3853 3686 3650 3686 3650 3687 3853 3687 3854 3687 3650 3754 3854 3754 3652 3754 3652 3755 3854 3755 3855 3755 3652 3690 3855 3690 3654 3690 3654 3756 3855 3756 3856 3756 3654 3757 3856 3757 3656 3757 3656 3758 3856 3758 3857 3758 3656 3694 3857 3694 3658 3694 3658 3695 3857 3695 3858 3695 3658 3633 3858 3633 3660 3633 3660 3633 3858 3633 3859 3633 3660 3759 3859 3759 3662 3759 3662 3699 3859 3699 3860 3699 3663 3760 3861 3760 3665 3760 3665 3703 3861 3703 3862 3703 3665 3761 3862 3761 3666 3761 3667 3762 3863 3762 3668 3762 3668 3763 3863 3763 3864 3763 3670 443 3865 443 3672 443 3672 443 3865 443 3866 443 3672 3764 3866 3764 3673 3764 3673 3765 3867 3765 3675 3765 3675 3766 3867 3766 3868 3766 3675 3767 3868 3767 3676 3767 3677 3768 3869 3768 3870 3768 3677 3769 3870 3769 3678 3769 3678 3770 3870 3770 3871 3770 3679 3771 3872 3771 3680 3771 3680 3772 3872 3772 3873 3772 3681 3716 3874 3716 3683 3716 3683 3717 3874 3717 3875 3717 3683 3773 3875 3773 3685 3773 3685 3774 3875 3774 3876 3774 3687 3775 3877 3775 3689 3775 3689 3776 3877 3776 3878 3776 3689 3722 3878 3722 3691 3722 3691 3723 3878 3723 3879 3723 3691 3777 3879 3777 3693 3777 3693 3778 3879 3778 3880 3778 3693 3779 3880 3779 3695 3779 3695 3726 3880 3726 3881 3726 3695 3780 3881 3780 3697 3780 3697 3728 3881 3728 3882 3728 3697 3781 3882 3781 3699 3781 3699 3782 3882 3782 3883 3782 3699 3729 3883 3729 3701 3729 3701 3783 3883 3783 3884 3783 3701 3731 3884 3731 3641 3731 3641 3784 3884 3784 3847 3784 3702 3785 3885 3785 3886 3785 3702 3786 3886 3786 3703 3786 3703 3787 3886 3787 3887 3787 3704 3788 3888 3788 3705 3788 3705 3789 3888 3789 3889 3789 3705 3790 3889 3790 3706 3790 3706 3791 3889 3791 3890 3791 3706 3792 3890 3792 3707 3792 3707 3793 3891 3793 3708 3793 3708 3794 3891 3794 3892 3794 3708 3795 3892 3795 3710 3795 3710 3796 3892 3796 3893 3796 3710 3797 3893 3797 3712 3797 3712 3797 3893 3797 3894 3797 3712 3798 3894 3798 3714 3798 3714 3799 3894 3799 3895 3799 3714 3800 3895 3800 3716 3800 3716 3801 3895 3801 3896 3801 3716 3802 3896 3802 3718 3802 3718 3803 3896 3803 3897 3803 3718 3804 3897 3804 3720 3804 3720 3805 3897 3805 3898 3805 3720 3806 3898 3806 3722 3806 3722 3807 3898 3807 3899 3807 3722 3808 3899 3808 3723 3808 3723 3809 3899 3809 3900 3809 3723 3810 3900 3810 3724 3810 3724 3810 3900 3810 3901 3810 3724 3811 3901 3811 3725 3811 3725 3812 3901 3812 3902 3812 3725 3813 3902 3813 3726 3813 3727 443 3904 443 3728 443 3728 443 3904 443 3905 443 3729 3814 3910 3814 3730 3814 3730 3815 3910 3815 3911 3815 3730 3816 3911 3816 3731 3816 3731 3817 3911 3817 3912 3817 3731 3818 3912 3818 3732 3818 3732 3818 3912 3818 3913 3818 3732 3819 3913 3819 3733 3819 3733 3820 3913 3820 3914 3820 3733 3821 3914 3821 3734 3821 3735 3822 3916 3822 3736 3822 3736 3823 3916 3823 3917 3823 3737 3824 3918 3824 3919 3824 3827 3825 3920 3825 3921 3825 3828 3826 3922 3826 3923 3826 3829 3827 3924 3827 3830 3827 3830 3827 3924 3827 3925 3827 3831 3828 3926 3828 3832 3828 3832 3829 3926 3829 3927 3829 3833 3830 3927 3830 3928 3830 3833 3831 3928 3831 3834 3831 3834 3832 3928 3832 3929 3832 3834 3833 3929 3833 3835 3833 3835 3834 3929 3834 3930 3834 3835 3835 3930 3835 3836 3835 3836 3836 3930 3836 3931 3836 3836 3837 3931 3837 3837 3837 3837 3838 3931 3838 3932 3838 3838 3839 3932 3839 3933 3839 3838 3840 3933 3840 3839 3840 3839 3840 3933 3840 3934 3840 3840 3841 3934 3841 3935 3841 3840 3842 3935 3842 3841 3842 3841 3843 3935 3843 3936 3843 3842 3844 3936 3844 3937 3844 3843 3845 3938 3845 3939 3845 3845 3846 3940 3846 3941 3846 3846 3537 3942 3537 3943 3537 3848 3847 3945 3847 3946 3847 3848 3848 3946 3848 3849 3848 3849 3848 3946 3848 3947 3848 3850 3849 3948 3849 3851 3849 3851 3850 3948 3850 3949 3850 3852 3851 3950 3851 3853 3851 3853 3852 3950 3852 3951 3852 3853 3853 3951 3853 3854 3853 3854 3854 3952 3854 3855 3854 3855 3855 3952 3855 3953 3855 3855 3856 3953 3856 3856 3856 3856 3856 3953 3856 3954 3856 3856 3857 3954 3857 3857 3857 3857 3858 3954 3858 3955 3858 3857 3859 3955 3859 3858 3859 3858 3860 3955 3860 3956 3860 3858 3861 3956 3861 3859 3861 3859 3862 3957 3862 3860 3862 3860 3863 3957 3863 3958 3863 3861 3864 3959 3864 3862 3864 3862 3865 3959 3865 3960 3865 3863 3866 3961 3866 3962 3866 3863 3867 3962 3867 3864 3867 3864 3868 3962 3868 3963 3868 3865 443 3964 443 3866 443 3866 443 3964 443 3965 443 3867 3869 3966 3869 3868 3869 3868 3870 3966 3870 3967 3870 3870 3871 3968 3871 3969 3871 3870 3872 3969 3872 3871 3872 3871 3873 3969 3873 3970 3873 3872 3874 3971 3874 3873 3874 3873 3875 3971 3875 3972 3875 3874 3876 3973 3876 3875 3876 3875 3876 3973 3876 3974 3876 3875 3877 3974 3877 3876 3877 3877 3878 3975 3878 3976 3878 3877 3879 3976 3879 3878 3879 3878 3880 3976 3880 3977 3880 3878 3881 3977 3881 3879 3881 3879 3882 3977 3882 3978 3882 3879 3883 3978 3883 3880 3883 3880 3884 3978 3884 3979 3884 3880 3885 3979 3885 3881 3885 3881 3886 3979 3886 3980 3886 3881 3887 3980 3887 3882 3887 3882 3888 3980 3888 3981 3888 3882 3889 3981 3889 3883 3889 3883 3890 3981 3890 3982 3890 3883 3891 3982 3891 3884 3891 3884 3891 3982 3891 3983 3891 3884 3892 3983 3892 3847 3892 3847 3893 3983 3893 3945 3893 3886 3894 3984 3894 3985 3894 3886 3895 3985 3895 3887 3895 3887 3896 3985 3896 3986 3896 3887 3897 3986 3897 3888 3897 3888 3898 3986 3898 3987 3898 3888 3899 3987 3899 3889 3899 3889 3900 3987 3900 3988 3900 3889 3901 3988 3901 3890 3901 3890 3902 3988 3902 3989 3902 3891 3903 3990 3903 3892 3903 3892 3904 3990 3904 3991 3904 3892 3905 3991 3905 3893 3905 3893 3906 3991 3906 3992 3906 3893 3907 3992 3907 3894 3907 3894 3908 3992 3908 3993 3908 3894 3909 3993 3909 3895 3909 3895 3910 3993 3910 3994 3910 3895 3911 3994 3911 3896 3911 3896 3912 3994 3912 3995 3912 3896 3913 3995 3913 3897 3913 3897 3913 3995 3913 3996 3913 3897 3914 3996 3914 3898 3914 3898 3915 3996 3915 3997 3915 3898 3916 3997 3916 3899 3916 3899 3917 3997 3917 3998 3917 3899 3864 3998 3864 3900 3864 3900 3918 3998 3918 3999 3918 3900 3919 3999 3919 3901 3919 3901 3920 3999 3920 4000 3920 3901 3921 4000 3921 3902 3921 3902 3922 4000 3922 4001 3922 3902 3923 4001 3923 3903 3923 3903 3924 4001 3924 4002 3924 3904 3925 4002 3925 4003 3925 3904 443 4003 443 3905 443 3905 443 4003 443 4004 443 3906 3926 4005 3926 4006 3926 3906 3927 4006 3927 3907 3927 3907 3928 4006 3928 4007 3928 3908 3873 4008 3873 4009 3873 3908 3929 4009 3929 3909 3929 3909 3713 4009 3713 4010 3713 3910 3930 4011 3930 4012 3930 3910 3931 4012 3931 3911 3931 3911 3932 4012 3932 4013 3932 3911 3933 4013 3933 3912 3933 3912 3934 4013 3934 4014 3934 3912 3935 4014 3935 3913 3935 3913 3936 4014 3936 4015 3936 3913 3937 4015 3937 3914 3937 3914 3938 4015 3938 4016 3938 3915 3939 4016 3939 4017 3939 3916 3940 4017 3940 4018 3940 3916 3941 4018 3941 3917 3941 3917 3942 4018 3942 4019 3942 3918 3943 4020 3943 4021 3943 3918 3944 4021 3944 3919 3944 3919 3945 4021 3945 4022 3945 3789 3946 4023 3946 3790 3946 3790 3847 4023 3847 4024 3847 3790 3947 4024 3947 3791 3947 3791 3848 4024 3848 4025 3848 3791 3948 4025 3948 3792 3948 3792 3949 4025 3949 4026 3949 3792 3849 4026 3849 3793 3849 3793 3950 4026 3950 4027 3950 3793 3951 4027 3951 3794 3951 3794 3952 4027 3952 4028 3952 3794 3852 4028 3852 3795 3852 3795 3851 4028 3851 4029 3851 3796 3953 4029 3953 4030 3953 3796 3954 4030 3954 3797 3954 3797 3954 4030 3954 4031 3954 3797 3856 4031 3856 3798 3856 3798 3955 4031 3955 4032 3955 3798 3857 4032 3857 3799 3857 3799 3956 4032 3956 4033 3956 3799 3859 4033 3859 3800 3859 3800 3860 4033 3860 4034 3860 3800 3957 4034 3957 3801 3957 3801 3958 4034 3958 4035 3958 3801 3959 4035 3959 3802 3959 3802 3863 4035 3863 4036 3863 3802 3960 4036 3960 3803 3960 3803 3961 4036 3961 4037 3961 3803 3962 4037 3962 3804 3962 3804 3963 4037 3963 4038 3963 3804 3761 4038 3761 3805 3761 3805 3964 4038 3964 4039 3964 3805 3965 4039 3965 3806 3965 3806 3965 4039 3965 4040 3965 3807 3966 4040 3966 4041 3966 3807 3967 4041 3967 3808 3967 3808 3967 4041 3967 4042 3967 3809 443 4042 443 4043 443 3809 3968 4043 3968 3810 3968 3810 3969 4043 3969 4044 3969 3812 3970 4045 3970 4046 3970 3813 3971 4047 3971 4048 3971 3813 3972 4048 3972 3814 3972 3814 3973 4048 3973 4049 3973 3815 3974 4049 3974 4050 3974 3815 3975 4050 3975 3816 3975 3816 3976 4050 3976 4051 3976 3816 3876 4051 3876 3817 3876 3817 3876 4051 3876 4052 3876 3817 3977 4052 3977 3818 3977 3818 3978 4052 3978 4053 3978 3818 3979 4053 3979 3819 3979 3819 3878 4053 3878 4054 3878 3819 3980 4054 3980 3820 3980 3820 3980 4054 3980 4055 3980 3820 3881 4055 3881 3821 3881 3821 3881 4055 3881 4056 3881 3821 3981 4056 3981 3822 3981 3822 3982 4056 3982 4057 3982 3822 3983 4057 3983 3823 3983 3823 3886 4057 3886 4058 3886 3823 3984 4058 3984 3824 3984 3824 3888 4058 3888 4059 3888 3824 3985 4059 3985 3825 3985 3825 3890 4059 3890 4060 3890 3825 3891 4060 3891 3826 3891 3826 3986 4060 3986 4061 3986 3826 3892 4061 3892 3789 3892 3789 3987 4061 3987 4023 3987 4062 3988 3594 3988 4063 3988 3592 1495 3920 1495 3593 1495 3593 1495 3920 1495 3944 1495 4064 3989 3592 3989 4065 3989 4066 3990 4065 3990 4067 3990 4066 3991 4067 3991 4068 3991 4068 3992 4067 3992 4069 3992 4071 3993 4072 3993 4073 3993 4073 3994 4072 3994 4074 3994 4075 3995 4076 3995 4077 3995 4078 294 4079 294 4080 294 4081 3996 4082 3996 4083 3996 4084 3997 4085 3997 4086 3997 4087 294 4088 294 4089 294 4090 3998 4091 3998 4092 3998 4093 3999 4094 3999 4095 3999 4086 294 4085 294 4096 294 4097 294 4098 294 4099 294 4100 4000 4101 4000 4102 4000 4097 294 4099 294 4103 294 4102 294 4104 294 4092 294 4105 294 4106 294 4107 294 4107 294 4106 294 4092 294 4107 294 4092 294 4108 294 4108 4001 4092 4001 4104 4001 4109 294 4110 294 4111 294 4111 294 4110 294 4083 294 4111 294 4083 294 4112 294 4112 294 4083 294 4113 294 4115 4002 4116 4002 4117 4002 4117 294 4114 294 4115 294 4121 294 4120 294 4122 294 4121 294 4122 294 4123 294 4123 4003 4122 4003 4124 4003 4123 4004 4124 4004 4125 4004 4118 294 4128 294 4129 294 4118 4005 4129 4005 4130 4005 4131 4006 4127 4006 4132 4006 4133 294 4096 294 4134 294 4134 294 4096 294 4085 294 4134 4007 4085 4007 4135 4007 4135 294 4085 294 4136 294 4135 294 4136 294 4137 294 4137 294 4136 294 4138 294 4140 4006 4141 4006 4142 4006 4136 294 4139 294 4138 294 4138 4008 4139 4008 4140 4008 4143 4009 4144 4009 4145 4009 4146 294 4147 294 4144 294 4144 294 4147 294 4148 294 4144 294 4148 294 4145 294 4093 294 4095 294 4149 294 4102 294 4092 294 4100 294 4151 294 4070 294 4091 294 4091 294 4067 294 4092 294 4152 294 4151 294 4153 294 4153 294 4151 294 4091 294 4153 4010 4091 4010 4154 4010 4154 294 4091 294 4090 294 4089 4011 4088 4011 4155 4011 4155 4012 4088 4012 4156 4012 4155 294 4156 294 4092 294 4092 294 4156 294 4157 294 4092 4013 4157 4013 4090 4013 4084 294 4158 294 4085 294 4085 294 4158 294 4159 294 4085 294 4159 294 4089 294 4089 294 4159 294 4160 294 4089 4014 4160 4014 4087 4014 4152 294 4161 294 4151 294 4151 294 4161 294 4162 294 4151 4015 4162 4015 4150 4015 4150 4016 4162 4016 4163 4016 4150 294 4163 294 4086 294 4086 294 4163 294 4164 294 4086 4017 4164 4017 4084 4017 4166 4018 4082 4018 4167 4018 4167 294 4082 294 4081 294 4080 4019 4079 4019 4100 4019 4100 4020 4079 4020 4168 4020 4100 294 4168 294 4083 294 4083 294 4168 294 4169 294 4083 4021 4169 4021 4081 4021 4075 294 4170 294 4076 294 4076 294 4170 294 4171 294 4080 4022 4172 4022 4078 4022 4165 294 4173 294 4119 294 4119 294 4173 294 4174 294 4119 4023 4174 4023 4126 4023 4126 4024 4174 4024 4175 4024 4126 294 4175 294 4077 294 4077 294 4175 294 4176 294 4077 4025 4176 4025 4075 4025 4178 294 4179 294 4089 294 4089 4026 4179 4026 4180 4026 4089 294 4180 294 4085 294 4085 4027 4180 4027 4181 4027 4085 4028 4181 4028 4177 4028 4106 294 4182 294 4092 294 4092 294 4182 294 4149 294 4092 294 4149 294 4155 294 4155 294 4149 294 4095 294 4183 4029 4143 4029 4145 4029 4110 294 4184 294 4083 294 4083 294 4184 294 4103 294 4083 294 4103 294 4100 294 4100 294 4103 294 4099 294 4100 294 4099 294 4101 294 4185 4030 4186 4030 4187 4030 4187 443 4188 443 4189 443 4189 4031 4188 4031 4190 4031 4191 443 4192 443 4193 443 4193 443 4192 443 4194 443 4195 443 4196 443 4197 443 4190 443 4198 443 4189 443 4189 443 4198 443 4199 443 4189 443 4199 443 4200 443 4201 443 4202 443 4197 443 4197 4032 4202 4032 4203 4032 4197 4033 4203 4033 4204 4033 4195 443 4197 443 4205 443 4191 443 4201 443 4192 443 4192 443 4201 443 4197 443 4192 4034 4197 4034 4206 4034 4206 443 4197 443 4196 443 4185 443 4187 443 4207 443 4208 443 4209 443 4210 443 4210 4035 4209 4035 4211 4035 4212 443 4213 443 4197 443 4197 443 4213 443 4214 443 4197 443 4214 443 4205 443 4204 443 4215 443 4197 443 4197 4036 4215 4036 4216 4036 4197 443 4216 443 4217 443 4217 4037 4216 4037 4218 4037 4217 443 4218 443 4189 443 4189 443 4218 443 4219 443 4189 443 4219 443 4187 443 4187 4038 4219 4038 4220 4038 4187 443 4220 443 4207 443 4211 443 4221 443 4210 443 4210 443 4221 443 4222 443 4210 443 4222 443 4223 443 4224 443 4225 443 4208 443 4208 4039 4225 4039 4226 4039 4208 4040 4226 4040 4227 4040 4224 443 4208 443 4228 443 4228 443 4208 443 4210 443 4228 443 4210 443 4229 443 4229 443 4210 443 4230 443 4229 443 4230 443 4214 443 4214 4041 4230 4041 4231 4041 4214 4042 4231 4042 4232 4042 4232 4043 4233 4043 4214 4043 4214 4044 4233 4044 4234 4044 4214 4045 4234 4045 4205 4045 4235 431 4236 431 4237 431 4238 431 4239 431 4240 431 4241 431 4242 431 4243 431 4243 4046 4242 4046 4244 4046 4243 4047 4244 4047 4245 4047 4239 4048 4246 4048 4247 4048 4248 431 4249 431 4250 431 4250 4049 4249 4049 4251 4049 4250 4050 4251 4050 4252 4050 4240 431 4239 431 4255 431 4255 4051 4239 4051 4247 4051 4255 431 4247 431 4256 431 4237 4052 4248 4052 4235 4052 4258 431 4250 431 4254 431 4242 431 4238 431 4244 431 4244 431 4238 431 4240 431 4244 431 4240 431 4259 431 4259 4053 4240 4053 4260 4053 4259 431 4260 431 4261 431 4261 431 4260 431 4250 431 4262 431 4263 431 4264 431 4252 431 4265 431 4250 431 4250 4054 4265 4054 4266 4054 4250 4055 4266 4055 4261 4055 4267 431 4268 431 4257 431 4257 4056 4268 4056 4269 4056 4257 4057 4269 4057 4253 4057 4270 431 4271 431 4272 431 4272 4058 4271 4058 4273 4058 4272 4047 4273 4047 4274 4047 4263 4059 4275 4059 4276 4059 4264 431 4263 431 4277 431 4277 4060 4263 4060 4276 4060 4277 431 4276 431 4278 431 4271 431 4262 431 4273 431 4273 431 4262 431 4264 431 4273 431 4264 431 4279 431 4279 4061 4264 4061 4280 4061 4279 431 4280 431 4257 431 4257 4062 4280 4062 4281 4062 4257 4063 4281 4063 4267 4063 4283 4064 4287 4064 4288 4064 4288 4065 4289 4065 4283 4065 4285 4066 4290 4066 4291 4066 4284 4067 4292 4067 4293 4067 4282 4068 4294 4068 4286 4068 4299 294 4300 294 4301 294 4302 4069 4303 4069 4304 4069 4302 294 4305 294 4303 294 4296 4070 4295 4070 4315 4070 4315 4071 4316 4071 4296 4071 4296 4072 4316 4072 4317 4072 4296 4073 4317 4073 4297 4073 4297 4074 4317 4074 4318 4074 4297 4074 4318 4074 4298 4074 4306 4075 4305 4075 4300 4075 4298 4076 4318 4076 4300 4076 4300 4077 4318 4077 4319 4077 4300 4078 4319 4078 4306 4078 4307 4079 4320 4079 4321 4079 4308 4080 4322 4080 4323 4080 4308 4081 4323 4081 4309 4081 4309 4082 4323 4082 4324 4082 4309 4082 4324 4082 4310 4082 4310 426 4324 426 4325 426 4310 426 4325 426 4311 426 4311 4083 4325 4083 4326 4083 4311 4083 4326 4083 4312 4083 4312 4084 4326 4084 4315 4084 4312 4085 4315 4085 4313 4085 4313 4086 4315 4086 4295 4086 4313 4087 4295 4087 4314 4087 4330 4088 4327 4088 4328 4088 4331 4089 4332 4089 4333 4089 4333 4090 4334 4090 4330 4090 4330 4091 4334 4091 4335 4091 4335 4092 4336 4092 4329 4092 4343 4093 4345 4093 4342 4093 4342 4094 4346 4094 4341 4094 4346 4095 4347 4095 4341 4095 4341 4096 4347 4096 4348 4096 4341 4097 4348 4097 4340 4097 4340 4098 4349 4098 4338 4098 4350 4099 4351 4099 4349 4099 4349 4100 4337 4100 4350 4100 4352 4101 4351 4101 4350 4101 4358 4102 4357 4102 4344 4102 4355 4103 4359 4103 4360 4103 4355 4104 4360 4104 4356 4104 4356 4105 4360 4105 4361 4105 4356 4106 4361 4106 4354 4106 4353 4107 4339 4107 4352 4107 4363 4108 4364 4108 4362 4108 4368 4109 4369 4109 4367 4109 4367 4110 4370 4110 4366 4110 4366 4111 4371 4111 4372 4111 4366 4112 4372 4112 4365 4112 4374 4113 4375 4113 4373 4113 4378 4114 4377 4114 4379 4114 4381 4115 4380 4115 4382 4115 4383 4116 4384 4116 4385 4116 4385 4117 4384 4117 4386 4117 4385 4118 4386 4118 4387 4118 4387 4118 4386 4118 4388 4118 4387 4119 4388 4119 4389 4119 4389 4120 4388 4120 4390 4120 4389 4121 4390 4121 4391 4121 4391 4122 4390 4122 4392 4122 4391 4123 4392 4123 4393 4123 4395 4124 4394 4124 4396 4124 4399 4125 4398 4125 4400 4125 4403 4126 4404 4126 4405 4126 4405 4127 4404 4127 4406 4127 4405 4128 4406 4128 4407 4128 4407 4129 4406 4129 4408 4129 4407 4130 4408 4130 4409 4130 4409 4131 4408 4131 4410 4131 4409 4132 4410 4132 4411 4132 4411 4133 4410 4133 4412 4133 4414 4134 4415 4134 4416 4134 4416 4135 4415 4135 4417 4135 4416 4136 4417 4136 4418 4136 4418 4137 4417 4137 4419 4137 4418 4138 4419 4138 4420 4138 4420 4139 4419 4139 4421 4139 4425 4140 4424 4140 4426 4140 4428 4141 4427 4141 4429 4141 4428 4142 4429 4142 4376 4142 4431 4143 4430 4143 4432 4143 4431 4144 4432 4144 4433 4144 4434 4145 4435 4145 4436 4145 4436 4146 4435 4146 4437 4146 4438 4147 4439 4147 4440 4147 4441 4130 4442 4130 4443 4130 4443 4148 4442 4148 4444 4148 4446 4149 4445 4149 4447 4149 4449 4150 4448 4150 4450 4150 4451 4151 4452 4151 4453 4151 4453 4152 4452 4152 4454 4152 4455 294 4456 294 4457 294 4458 4153 4459 4153 4460 4153 4461 294 4462 294 4463 294 4464 294 4465 294 4466 294 4467 294 4468 294 4469 294 4470 294 4471 294 4472 294 4473 294 4474 294 4475 294 4476 4154 4477 4154 4478 4154 4479 294 4480 294 4481 294 4482 294 4483 294 4484 294 4487 4155 4488 4155 4489 4155 4490 294 4491 294 4492 294 4493 4156 4494 4156 4495 4156 4496 294 4497 294 4498 294 4499 294 4500 294 4501 294 4502 4157 4503 4157 4504 4157 4505 294 4506 294 4507 294 4508 294 4509 294 4510 294 4511 4158 4512 4158 4513 4158 4513 294 4512 294 4514 294 4515 294 4516 294 4517 294 4517 294 4516 294 4518 294 4517 294 4518 294 4519 294 4520 4159 4521 4159 4522 4159 4523 294 4524 294 4525 294 4526 294 4527 294 4528 294 4528 294 4527 294 4529 294 4529 294 4527 294 4530 294 4529 294 4530 294 4531 294 4531 4160 4530 4160 4532 4160 4531 294 4532 294 4533 294 4534 294 4535 294 4536 294 4536 4161 4535 4161 4537 4161 4537 4162 4535 4162 4538 4162 4537 294 4538 294 4539 294 4540 4163 4541 4163 4542 4163 4542 294 4541 294 4543 294 4542 294 4543 294 4544 294 4545 294 4546 294 4547 294 4547 294 4546 294 4548 294 4547 294 4548 294 4549 294 4549 294 4548 294 4550 294 4549 294 4550 294 4551 294 4551 294 4550 294 4552 294 4551 294 4552 294 4553 294 4553 4164 4552 4164 4554 4164 4553 294 4554 294 4555 294 4556 294 4557 294 4558 294 4559 294 4560 294 4561 294 4558 294 4557 294 4562 294 4562 294 4557 294 4563 294 4562 294 4563 294 4561 294 4561 294 4563 294 4564 294 4561 294 4564 294 4559 294 4565 4165 4566 4165 4567 4165 4568 294 4569 294 4570 294 4571 294 4572 294 4573 294 4573 294 4572 294 4574 294 4573 294 4574 294 4575 294 4575 294 4574 294 4576 294 4575 294 4576 294 4577 294 4577 294 4576 294 4578 294 4577 294 4578 294 4579 294 4579 294 4578 294 4559 294 4579 294 4559 294 4580 294 4580 294 4559 294 4564 294 4580 294 4564 294 4581 294 4581 294 4564 294 4582 294 4581 294 4582 294 4583 294 4583 294 4582 294 4584 294 4583 294 4584 294 4585 294 4585 294 4584 294 4586 294 4585 294 4586 294 4587 294 4587 294 4586 294 4588 294 4587 294 4588 294 4589 294 4589 294 4588 294 4590 294 4589 294 4590 294 4591 294 4591 294 4590 294 4592 294 4591 294 4592 294 4593 294 4597 4166 4598 4166 4535 4166 4596 294 4595 294 4534 294 4534 294 4595 294 4599 294 4534 294 4599 294 4535 294 4535 294 4599 294 4600 294 4535 294 4600 294 4597 294 4525 294 4524 294 4533 294 4533 294 4524 294 4598 294 4533 294 4598 294 4531 294 4531 294 4598 294 4597 294 4531 294 4597 294 4601 294 4602 294 4603 294 4604 294 4605 4167 4606 4167 4607 4167 4607 294 4606 294 4608 294 4607 294 4608 294 4609 294 4609 294 4608 294 4604 294 4609 294 4604 294 4610 294 4610 294 4604 294 4603 294 4611 294 4612 294 4565 294 4612 294 4613 294 4565 294 4565 294 4613 294 4614 294 4565 4168 4614 4168 4566 4168 4566 294 4614 294 4615 294 4566 294 4615 294 4616 294 4616 4169 4615 4169 4617 4169 4616 294 4617 294 4618 294 4619 294 4620 294 4621 294 4622 4170 4623 4170 4624 4170 4622 294 4624 294 4625 294 4625 294 4624 294 4626 294 4625 4171 4626 4171 4627 4171 4620 294 4622 294 4621 294 4621 294 4622 294 4625 294 4621 294 4625 294 4628 294 4628 294 4625 294 4629 294 4628 294 4629 294 4630 294 4630 294 4629 294 4631 294 4630 294 4631 294 4632 294 4632 294 4631 294 4633 294 4634 294 4481 294 4635 294 4636 294 4637 294 4504 294 4504 294 4637 294 4638 294 4639 4172 4640 4172 4641 4172 4502 294 4504 294 4641 294 4642 4173 4643 4173 4644 4173 4644 294 4643 294 4645 294 4646 4174 4647 4174 4648 4174 4648 294 4647 294 4649 294 4648 294 4649 294 4650 294 4651 294 4652 294 4653 294 4653 294 4652 294 4654 294 4654 294 4652 294 4655 294 4654 294 4655 294 4656 294 4656 4175 4655 4175 4657 4175 4656 294 4657 294 4658 294 4643 294 4659 294 4645 294 4645 294 4659 294 4660 294 4645 294 4660 294 4661 294 4661 294 4660 294 4662 294 4661 294 4662 294 4663 294 4663 294 4662 294 4658 294 4663 294 4658 294 4664 294 4664 294 4658 294 4657 294 4665 294 4666 294 4667 294 4667 4176 4666 4176 4668 4176 4667 294 4668 294 4669 294 4672 294 4596 294 4673 294 4673 294 4596 294 4674 294 4674 294 4596 294 4534 294 4674 294 4534 294 4675 294 4536 294 4540 294 4534 294 4534 294 4540 294 4542 294 4534 4177 4542 4177 4675 4177 4675 294 4542 294 4676 294 4677 294 4678 294 4679 294 4680 4178 4681 4178 4682 4178 4683 4179 4684 4179 4685 4179 4685 294 4684 294 4679 294 4685 294 4679 294 4686 294 4686 4180 4679 4180 4678 4180 4683 4181 4687 4181 4684 4181 4684 294 4687 294 4688 294 4684 4182 4688 4182 4689 4182 4691 294 4692 294 4693 294 4693 294 4692 294 4694 294 4693 4183 4694 4183 4681 4183 4681 294 4694 294 4695 294 4681 294 4695 294 4682 294 4696 294 4697 294 4698 294 4701 294 4702 294 4703 294 4704 294 4705 294 4706 294 4706 4184 4705 4184 4707 4184 4706 294 4707 294 4700 294 4498 4185 4711 4185 4712 4185 4496 294 4713 294 4714 294 4715 4186 4716 4186 4717 4186 4717 294 4716 294 4718 294 4719 294 4720 294 4721 294 4721 294 4720 294 4722 294 4721 294 4722 294 4723 294 4718 294 4724 294 4717 294 4717 294 4724 294 4725 294 4717 294 4725 294 4726 294 4726 294 4725 294 4727 294 4726 4187 4727 4187 4728 4187 4729 294 4716 294 4730 294 4730 294 4716 294 4715 294 4730 294 4715 294 4731 294 4731 294 4732 294 4733 294 4734 294 4735 294 4495 294 4495 294 4735 294 4492 294 4495 4188 4492 4188 4493 4188 4493 4189 4492 4189 4491 4189 4493 294 4491 294 4736 294 4737 294 4738 294 4739 294 4739 294 4738 294 4740 294 4744 4190 4745 4190 4746 4190 4747 294 4748 294 4749 294 4750 294 4751 294 4752 294 4752 294 4751 294 4753 294 4754 294 4742 294 4755 294 4755 4191 4742 4191 4741 4191 4755 294 4741 294 4749 294 4749 294 4741 294 4752 294 4749 294 4752 294 4747 294 4747 294 4752 294 4753 294 4489 4192 4488 4192 4756 4192 4757 294 4758 294 4759 294 4759 294 4758 294 4760 294 4759 4193 4760 4193 4761 4193 4762 294 4763 294 4764 294 4764 4194 4763 4194 4765 4194 4489 4195 4768 4195 4769 4195 4489 4196 4769 4196 4487 4196 4770 294 4771 294 4772 294 4773 294 4774 294 4775 294 4776 294 4777 294 4644 294 4644 294 4777 294 4650 294 4644 294 4650 294 4642 294 4642 294 4650 294 4649 294 4775 294 4778 294 4773 294 4773 294 4778 294 4776 294 4773 294 4776 294 4779 294 4779 294 4776 294 4644 294 4780 294 4781 294 4782 294 4782 4197 4781 4197 4783 4197 4782 294 4783 294 4784 294 4787 294 4788 294 4789 294 4790 4198 4791 4198 4792 4198 4792 294 4791 294 4793 294 4794 4199 4795 4199 4796 4199 4795 294 4794 294 4797 294 4798 294 4799 294 4800 294 4800 294 4799 294 4801 294 4800 4200 4801 4200 4802 4200 4802 294 4801 294 4803 294 4802 294 4803 294 4796 294 4796 294 4803 294 4804 294 4796 294 4804 294 4794 294 4481 294 4480 294 4635 294 4635 294 4480 294 4805 294 4635 294 4805 294 4806 294 4794 294 4807 294 4797 294 4797 294 4807 294 4808 294 4797 294 4808 294 4809 294 4811 294 4810 294 4479 294 4811 294 4479 294 4621 294 4621 4201 4479 4201 4481 4201 4621 294 4481 294 4619 294 4619 294 4481 294 4634 294 4513 4202 4519 4202 4511 4202 4511 4203 4519 4203 4518 4203 4511 4204 4518 4204 4812 4204 4813 294 4477 294 4814 294 4477 294 4815 294 4814 294 4814 4205 4815 4205 4522 4205 4814 294 4522 294 4816 294 4816 294 4522 294 4521 294 4817 294 4818 294 4819 294 4819 294 4818 294 4820 294 4819 294 4820 294 4821 294 4821 294 4820 294 4548 294 4821 294 4548 294 4822 294 4822 294 4548 294 4546 294 4822 294 4546 294 4823 294 4823 294 4546 294 4824 294 4823 294 4824 294 4825 294 4825 294 4824 294 4826 294 4471 294 4827 294 4828 294 4828 294 4827 294 4473 294 4828 294 4473 294 4829 294 4830 294 4831 294 4832 294 4832 294 4831 294 4470 294 4833 294 4572 294 4569 294 4569 294 4572 294 4571 294 4569 294 4571 294 4570 294 4833 294 4569 294 4834 294 4834 294 4569 294 4568 294 4834 294 4568 294 4835 294 4835 294 4568 294 4836 294 4835 294 4836 294 4837 294 4836 294 4838 294 4837 294 4837 294 4838 294 4839 294 4837 294 4839 294 4840 294 4840 294 4839 294 4841 294 4840 294 4841 294 4842 294 4842 294 4841 294 4843 294 4842 294 4843 294 4844 294 4844 294 4843 294 4845 294 4844 294 4845 294 4846 294 4846 294 4845 294 4475 294 4846 294 4475 294 4830 294 4830 294 4475 294 4474 294 4830 4206 4474 4206 4831 4206 4470 294 4472 294 4832 294 4832 294 4472 294 4847 294 4832 294 4847 294 4848 294 4848 294 4847 294 4849 294 4849 294 4847 294 4850 294 4849 294 4850 294 4851 294 4851 294 4850 294 4852 294 4851 294 4852 294 4853 294 4853 294 4852 294 4854 294 4853 294 4854 294 4855 294 4855 294 4854 294 4856 294 4855 294 4856 294 4857 294 4857 4207 4856 4207 4858 4207 4857 294 4858 294 4859 294 4814 294 4860 294 4813 294 4813 294 4860 294 4861 294 4813 294 4861 294 4862 294 4862 294 4861 294 4859 294 4862 294 4859 294 4863 294 4863 294 4859 294 4858 294 4864 294 4865 294 4866 294 4867 294 4511 294 4864 294 4864 294 4511 294 4812 294 4864 294 4812 294 4865 294 4865 294 4812 294 4868 294 4869 294 4772 294 4774 294 4774 4208 4772 4208 4771 4208 4774 294 4771 294 4775 294 4869 294 4774 294 4870 294 4870 294 4774 294 4871 294 4870 294 4871 294 4872 294 4872 294 4871 294 4873 294 4872 294 4873 294 4874 294 4875 4209 4876 4209 4877 4209 4878 4210 4879 4210 4880 4210 4876 294 4875 294 4881 294 4881 294 4875 294 4882 294 4881 4211 4882 4211 4883 4211 4886 4212 4887 4212 4884 4212 4884 294 4888 294 4885 294 4889 294 4890 294 4882 294 4882 294 4890 294 4891 294 4882 294 4891 294 4883 294 4880 4213 4889 4213 4878 4213 4878 294 4889 294 4882 294 4892 294 4501 294 4500 294 4895 294 4896 294 4897 294 4899 294 4900 294 4894 294 4898 294 4902 294 4903 294 4903 4214 4899 4214 4898 4214 4898 294 4899 294 4894 294 4907 4215 4908 4215 4909 4215 4909 4216 4910 4216 4907 4216 4907 4217 4910 4217 4911 4217 4907 4218 4911 4218 4912 4218 4913 294 4914 294 4908 294 4908 294 4914 294 4915 294 4908 294 4915 294 4909 294 4906 294 4913 294 4908 294 4917 4219 4918 4219 4919 4219 4918 4220 4917 4220 4920 4220 4920 294 4917 294 4921 294 4920 294 4921 294 4922 294 4924 294 4925 294 4921 294 4921 294 4925 294 4926 294 4921 294 4926 294 4922 294 4919 4221 4923 4221 4917 4221 4653 4222 4499 4222 4651 4222 4651 294 4499 294 4501 294 4651 294 4501 294 4929 294 4929 294 4501 294 4882 294 4929 294 4882 294 4930 294 4930 294 4882 294 4875 294 4930 294 4875 294 4752 294 4752 294 4875 294 4744 294 4752 294 4744 294 4750 294 4750 294 4744 294 4746 294 4750 294 4746 294 4931 294 4798 294 4800 294 4932 294 4932 294 4800 294 4933 294 4932 294 4933 294 4934 294 4934 294 4933 294 4935 294 4934 294 4935 294 4703 294 4703 294 4935 294 4698 294 4703 294 4698 294 4701 294 4701 294 4699 294 4936 294 4795 294 4937 294 4796 294 4796 294 4937 294 4938 294 4796 294 4938 294 4802 294 4802 294 4938 294 4939 294 4802 294 4939 294 4800 294 4800 294 4939 294 4940 294 4800 294 4940 294 4933 294 4933 294 4940 294 4941 294 4933 294 4941 294 4935 294 4935 294 4941 294 4942 294 4935 294 4942 294 4698 294 4698 294 4942 294 4708 294 4943 294 4944 294 4945 294 4945 294 4944 294 4946 294 4945 294 4946 294 4947 294 4947 294 4946 294 4948 294 4947 294 4948 294 4949 294 4949 294 4948 294 4950 294 4949 294 4950 294 4951 294 4951 294 4950 294 4952 294 4951 294 4952 294 4953 294 4953 294 4952 294 4954 294 4953 294 4954 294 4955 294 4955 294 4954 294 4956 294 4955 294 4956 294 4604 294 4604 294 4956 294 4957 294 4604 294 4957 294 4602 294 4602 294 4957 294 4958 294 4944 294 4959 294 4946 294 4946 294 4959 294 4960 294 4946 294 4960 294 4948 294 4948 294 4960 294 4961 294 4948 294 4961 294 4950 294 4950 294 4961 294 4962 294 4950 294 4962 294 4952 294 4952 294 4962 294 4963 294 4952 294 4963 294 4954 294 4954 294 4963 294 4964 294 4954 294 4964 294 4956 294 4956 294 4964 294 4965 294 4956 294 4965 294 4957 294 4957 294 4965 294 4616 294 4957 294 4616 294 4958 294 4958 294 4616 294 4618 294 4777 4223 4966 4223 4650 4223 4650 294 4966 294 4967 294 4650 294 4967 294 4648 294 4648 294 4967 294 4968 294 4648 294 4968 294 4646 294 4646 294 4968 294 4969 294 4646 294 4969 294 4970 294 4970 294 4969 294 4971 294 4970 294 4971 294 4972 294 4972 294 4971 294 4973 294 4972 294 4973 294 4974 294 4974 294 4973 294 4975 294 4974 294 4975 294 4976 294 4976 294 4975 294 4977 294 4976 294 4977 294 4767 294 4767 294 4977 294 4764 294 4767 294 4764 294 4766 294 4766 294 4764 294 4765 294 4967 294 4978 294 4968 294 4968 294 4978 294 4979 294 4968 294 4979 294 4969 294 4969 294 4979 294 4980 294 4969 294 4980 294 4971 294 4971 294 4980 294 4981 294 4971 294 4981 294 4973 294 4973 294 4981 294 4982 294 4973 294 4982 294 4975 294 4975 294 4982 294 4983 294 4975 294 4983 294 4977 294 4977 294 4983 294 4984 294 4977 294 4984 294 4764 294 4764 294 4984 294 4985 294 4764 294 4985 294 4762 294 4762 4224 4985 4224 4986 4224 4762 4225 4986 4225 4987 4225 4959 294 4988 294 4960 294 4960 294 4988 294 4989 294 4960 294 4989 294 4961 294 4961 294 4989 294 4990 294 4961 294 4990 294 4962 294 4962 294 4990 294 4991 294 4962 294 4991 294 4963 294 4963 294 4991 294 4992 294 4963 294 4992 294 4964 294 4964 294 4992 294 4993 294 4964 294 4993 294 4965 294 4965 294 4993 294 4994 294 4965 294 4994 294 4616 294 4616 294 4994 294 4995 294 4616 294 4995 294 4566 294 4566 294 4995 294 4507 294 4566 294 4507 294 4567 294 4567 294 4507 294 4506 294 4988 294 4996 294 4989 294 4989 294 4996 294 4997 294 4989 294 4997 294 4990 294 4990 294 4997 294 4998 294 4990 294 4998 294 4991 294 4991 294 4998 294 4999 294 4991 294 4999 294 4992 294 4992 294 4999 294 5000 294 4992 294 5000 294 4993 294 4993 294 5000 294 5001 294 4993 294 5001 294 4994 294 4994 294 5001 294 5002 294 4994 294 5002 294 4995 294 4995 294 5002 294 5003 294 4995 294 5003 294 4507 294 4507 294 5003 294 4554 294 4507 294 4554 294 4505 294 4505 4226 4554 4226 4552 4226 4505 4227 4552 4227 5004 4227 5004 294 4552 294 5005 294 4996 294 5006 294 4997 294 4997 294 5006 294 5007 294 4997 294 5007 294 4998 294 4998 294 5007 294 5008 294 4998 294 5008 294 4999 294 4999 294 5008 294 5009 294 4999 294 5009 294 5000 294 5000 294 5009 294 5010 294 5000 294 5010 294 5001 294 5001 294 5010 294 5011 294 5001 294 5011 294 5002 294 5002 294 5011 294 5012 294 5002 294 5012 294 5003 294 5003 294 5012 294 5013 294 5003 294 5013 294 4554 294 4554 294 5013 294 5014 294 4554 294 5014 294 4555 294 5006 294 5015 294 5007 294 5007 294 5015 294 5016 294 5007 294 5016 294 5008 294 5008 294 5016 294 5017 294 5008 294 5017 294 5009 294 5009 294 5017 294 5018 294 5009 294 5018 294 5010 294 5010 294 5018 294 5019 294 5010 294 5019 294 5011 294 5011 294 5019 294 5020 294 5011 294 5020 294 5012 294 5012 294 5020 294 5021 294 5012 294 5021 294 5013 294 5013 294 5021 294 5022 294 5013 294 5022 294 5014 294 5014 294 5022 294 4510 294 5014 294 4510 294 4555 294 4555 294 4510 294 4509 294 5015 294 4628 294 5016 294 5016 294 4628 294 4630 294 5016 294 4630 294 5017 294 5017 294 4630 294 4632 294 5017 294 4632 294 5018 294 5018 294 4632 294 5023 294 5018 294 5023 294 5019 294 5019 294 5023 294 5024 294 5019 294 5024 294 5020 294 5020 294 5024 294 5025 294 5020 294 5025 294 5021 294 5021 294 5025 294 5026 294 5021 294 5026 294 5022 294 5022 294 5026 294 5027 294 5022 294 5027 294 4510 294 4510 294 5027 294 4556 294 4510 294 4556 294 4508 294 4508 4228 4556 4228 4558 4228 4805 4229 4482 4229 4806 4229 4806 294 4482 294 4484 294 4806 294 4484 294 5028 294 5028 294 4484 294 4908 294 5028 294 4908 294 5029 294 5029 294 4908 294 4907 294 5029 294 4907 294 5030 294 5030 294 4907 294 5031 294 5030 294 5031 294 5032 294 5032 294 5031 294 5033 294 4966 294 5034 294 4967 294 4967 294 5034 294 4770 294 4967 294 4770 294 4978 294 4978 294 4770 294 4772 294 4978 294 4772 294 4979 294 4979 294 4772 294 5035 294 4979 294 5035 294 4980 294 4980 294 5035 294 5036 294 4980 294 5036 294 4981 294 4981 294 5036 294 5037 294 4981 294 5037 294 4982 294 4982 294 5037 294 5038 294 4982 294 5038 294 4983 294 4983 294 5038 294 5039 294 4983 294 5039 294 4984 294 4984 294 5039 294 5040 294 4984 294 5040 294 4985 294 4985 294 5040 294 5041 294 4985 294 5041 294 4986 294 4986 294 5041 294 5042 294 4986 294 5042 294 5043 294 5043 294 5042 294 5044 294 5043 294 5044 294 5045 294 5045 294 5044 294 5046 294 5045 294 5046 294 5047 294 5047 294 5046 294 5048 294 4869 4230 4874 4230 4772 4230 4772 294 4874 294 4873 294 4772 294 4873 294 5035 294 5035 294 4873 294 5049 294 5035 294 5049 294 5036 294 5036 294 5049 294 5050 294 5036 294 5050 294 5037 294 5037 294 5050 294 5051 294 5037 294 5051 294 5038 294 5038 294 5051 294 5052 294 5038 294 5052 294 5039 294 5039 294 5052 294 5053 294 5039 294 5053 294 5040 294 5040 294 5053 294 5054 294 5040 294 5054 294 5041 294 5041 294 5054 294 5055 294 5041 294 5055 294 5042 294 5042 294 5055 294 5056 294 5042 294 5056 294 5044 294 5044 294 5056 294 5057 294 5044 294 5057 294 5046 294 5046 294 5057 294 5058 294 5046 294 5058 294 5048 294 5048 294 5058 294 4466 294 5059 294 5060 294 5061 294 5061 294 5060 294 5062 294 5061 294 5062 294 5063 294 5063 294 5062 294 5064 294 5063 294 5064 294 5065 294 5065 294 5064 294 4606 294 5065 294 4606 294 5066 294 5066 294 4606 294 4605 294 5066 294 4605 294 5067 294 5066 294 4611 294 5065 294 5065 294 4611 294 4565 294 5065 294 4565 294 5063 294 5063 294 4565 294 5068 294 5063 294 5068 294 5061 294 5061 294 5068 294 5069 294 5061 294 5069 294 5059 294 5059 294 5069 294 5070 294 4567 4231 5071 4231 4565 4231 4565 294 5071 294 5072 294 4565 294 5072 294 5068 294 5068 294 5072 294 5073 294 5068 294 5073 294 5069 294 5069 294 5073 294 5074 294 5069 294 5074 294 5070 294 5070 294 5074 294 4516 294 5070 294 4516 294 4513 294 4513 294 4516 294 4515 294 4705 294 5075 294 4707 294 4707 294 5075 294 4714 294 4732 294 5078 294 4734 294 4732 294 4734 294 4733 294 4733 294 4734 294 4495 294 4465 294 5079 294 4466 294 4466 294 5079 294 5080 294 4466 294 5080 294 5048 294 5048 294 5080 294 5081 294 5048 294 5081 294 5047 294 4871 294 4943 294 4873 294 4873 294 4943 294 4945 294 4873 294 4945 294 5049 294 5049 294 4945 294 4947 294 5049 294 4947 294 5050 294 5050 294 4947 294 4949 294 5050 294 4949 294 5051 294 5051 294 4949 294 4951 294 5051 294 4951 294 5052 294 5052 294 4951 294 4953 294 5052 294 4953 294 5053 294 5053 294 4953 294 4955 294 5053 294 4955 294 5054 294 5054 294 4955 294 4604 294 5054 294 4604 294 5055 294 5055 294 4604 294 4608 294 5055 294 4608 294 5056 294 5056 294 4608 294 4606 294 5056 294 4606 294 5057 294 5057 294 4606 294 5064 294 5057 294 5064 294 5058 294 5058 294 5064 294 5062 294 5058 294 5062 294 4466 294 4466 294 5062 294 5060 294 4466 294 5060 294 4464 294 4464 294 5060 294 5082 294 4815 4232 5083 4232 5059 4232 5059 294 5083 294 4476 294 5059 294 4476 294 5060 294 5060 294 4476 294 4478 294 5060 4233 4478 4233 5082 4233 5082 294 4478 294 5079 294 5082 294 5079 294 5084 294 5084 294 5079 294 4465 294 4488 4234 4761 4234 4756 4234 4756 294 4761 294 4760 294 4756 294 4760 294 5085 294 5085 294 4760 294 5086 294 5085 294 5086 294 5087 294 5087 294 5086 294 5088 294 5087 294 5088 294 5089 294 5089 294 5088 294 5090 294 5089 294 5090 294 4528 294 4528 294 5090 294 4523 294 4528 294 4523 294 4526 294 4526 294 4523 294 4525 294 4477 4235 4813 4235 4478 4235 4478 294 4813 294 4862 294 4478 294 4862 294 5079 294 5079 294 4862 294 4863 294 5079 294 4863 294 5080 294 5080 294 4863 294 4858 294 5080 294 4858 294 5081 294 4522 294 4815 294 5059 294 4522 4236 5059 4236 4520 4236 4520 294 5059 294 5070 294 4520 294 5070 294 5091 294 5091 4237 5070 4237 4513 4237 5091 294 4513 294 5092 294 5092 294 4513 294 4514 294 5092 4238 4514 4238 5093 4238 5093 4239 4514 4239 4867 4239 5093 294 4867 294 4816 294 4816 4240 4867 4240 4864 4240 4816 294 4864 294 4814 294 4814 294 4864 294 4866 294 4814 294 4866 294 4860 294 5071 294 5005 294 5072 294 5072 294 5005 294 4552 294 5072 294 4552 294 5073 294 5073 294 4552 294 4550 294 5073 294 4550 294 5074 294 5074 294 4550 294 4548 294 5074 294 4548 294 4516 294 4516 294 4548 294 4820 294 4516 294 4820 294 4518 294 4518 294 4820 294 4818 294 4518 294 4818 294 4812 294 4812 294 4818 294 5094 294 4812 294 5094 294 4868 294 4868 294 5094 294 5095 294 4817 294 4825 294 4818 294 4818 294 4825 294 4826 294 4818 294 4826 294 5094 294 5094 294 4826 294 4469 294 5094 294 4469 294 5095 294 5095 294 4469 294 4468 294 4545 294 4560 294 4546 294 4546 294 4560 294 4559 294 4546 294 4559 294 4824 294 4824 294 4559 294 4578 294 4824 294 4578 294 4826 294 4826 294 4578 294 4576 294 4826 294 4576 294 4469 294 4469 294 4576 294 4574 294 4469 294 4574 294 4467 294 4467 4241 4574 4241 4572 4241 4467 294 4572 294 5096 294 5096 294 4572 294 4833 294 4711 294 4710 294 4712 294 4712 294 4710 294 4709 294 4713 294 4709 294 5097 294 4713 294 5097 294 5076 294 5076 294 5097 294 5098 294 5076 294 5098 294 5077 294 5077 294 5098 294 5099 294 5077 294 5099 294 5078 294 5078 294 5099 294 5100 294 5078 294 5100 294 4734 294 4734 294 5100 294 5101 294 4734 294 5101 294 4735 294 4735 294 5101 294 5102 294 4735 294 5102 294 4492 294 4492 294 5102 294 4740 294 4492 294 4740 294 4490 294 4490 294 4740 294 4738 294 5103 294 5104 294 5105 294 5105 294 5104 294 5106 294 5105 294 5106 294 5107 294 5107 294 5106 294 5108 294 5107 294 5108 294 5109 294 5109 294 5108 294 5110 294 5109 294 5110 294 5111 294 5111 294 5110 294 5112 294 5111 294 5112 294 5113 294 5113 294 5114 294 5115 294 5115 294 5114 294 5116 294 5115 294 5116 294 5117 294 4905 294 4647 294 4904 294 4904 294 4647 294 4646 294 4897 294 4970 294 4972 294 5120 294 4974 294 4976 294 5121 294 4489 294 5122 294 5122 294 4489 294 4756 294 4594 294 4531 294 4601 294 4671 294 4666 294 4670 294 4670 294 4666 294 4665 294 5126 294 5125 294 5127 294 5129 294 5128 294 5130 294 5131 294 5130 294 5132 294 5131 294 5132 294 5133 294 5133 294 5132 294 5134 294 4743 294 4742 294 5135 294 4463 294 4462 294 4670 294 5136 294 5137 294 4463 294 4463 294 5137 294 5138 294 5111 294 5131 294 5109 294 4884 294 4875 294 4886 294 4886 294 4875 294 4877 294 5139 294 5118 294 5119 294 5142 294 5143 294 5119 294 5119 294 5143 294 5144 294 5119 4242 5144 4242 5141 4242 5124 4243 5140 4243 5145 4243 5145 4244 5146 4244 5124 4244 5124 294 5146 294 5147 294 5124 294 5147 294 5148 294 4901 4245 4895 4245 4893 4245 5108 294 5121 294 5122 294 5119 294 5123 294 5124 294 5119 294 5124 294 5142 294 5142 4246 5124 4246 5148 4246 4633 294 4634 294 4632 294 4632 294 4634 294 4635 294 4632 294 4635 294 5023 294 4690 4247 4691 4247 4689 4247 4689 294 4691 294 4693 294 5149 294 5153 294 5150 294 5150 294 5153 294 5154 294 5150 294 5154 294 5151 294 5151 294 5154 294 5155 294 5151 294 5155 294 5152 294 5152 294 5155 294 4460 294 5152 294 4460 294 4780 294 4780 294 4460 294 4486 294 4780 294 4486 294 4781 294 4781 294 4486 294 4485 294 4486 294 4459 294 5156 294 4486 4248 5156 4248 5157 4248 5157 294 5158 294 4486 294 4486 4249 5158 4249 5159 4249 5160 4250 5161 4250 4460 4250 4460 4251 5161 4251 5162 4251 4460 294 5162 294 4458 294 4916 4252 4907 4252 4912 4252 5163 4253 5164 4253 4785 4253 5164 4254 5166 4254 4785 4254 4785 4255 5166 4255 5167 4255 4785 4256 5167 4256 5168 4256 4785 4257 5169 4257 5170 4257 4785 4258 5170 4258 5163 4258 5167 4259 5171 4259 5168 4259 5168 294 5171 294 5172 294 5168 294 5172 294 5173 294 5165 4260 5168 4260 5173 4260 4928 294 4799 294 4927 294 4927 294 4799 294 4798 294 4927 294 4798 294 4917 294 4917 294 4798 294 4932 294 4917 294 4932 294 4921 294 4921 294 4932 294 4934 294 4921 294 4934 294 5174 294 5174 294 4934 294 4703 294 5175 294 4715 294 5176 294 5176 294 4715 294 4717 294 5176 294 4717 294 5177 294 5177 294 4717 294 4726 294 5177 294 4726 294 5168 294 5168 294 4726 294 5178 294 5168 294 5178 294 4785 294 4785 294 5178 294 4789 294 4785 294 4789 294 4786 294 4786 294 4789 294 4788 294 4792 294 4787 294 4790 294 4790 294 4787 294 4789 294 5179 294 4789 294 5178 294 5179 294 5178 294 4721 294 4721 294 5178 294 4726 294 4721 294 4726 294 4719 294 4719 294 4726 294 4728 294 4719 294 4728 294 5180 294 4757 294 4987 294 4758 294 4758 294 4987 294 4986 294 4758 294 4986 294 4760 294 4760 294 4986 294 5043 294 4760 294 5043 294 5086 294 5086 294 5043 294 5045 294 5086 294 5045 294 5088 294 5088 294 5045 294 5047 294 5088 294 5047 294 5090 294 5090 294 5047 294 5081 294 5090 294 5081 294 4523 294 4523 294 5081 294 4858 294 4523 294 4858 294 4524 294 4524 294 4858 294 4856 294 4524 294 4856 294 4598 294 4598 294 4856 294 4854 294 4598 294 4854 294 4535 294 4535 294 4854 294 4852 294 4535 294 4852 294 4538 294 4538 294 4852 294 4850 294 4570 294 4593 294 4568 294 4568 294 4593 294 4592 294 4568 294 4592 294 4836 294 4836 294 4592 294 5181 294 5182 294 4791 294 5183 294 5183 294 4791 294 4790 294 5183 294 4790 294 5184 294 5184 294 4790 294 5179 294 5184 294 5179 294 4739 294 4739 294 5179 294 4721 294 4739 294 4721 294 4737 294 4737 294 4721 294 4723 294 4737 294 4723 294 5185 294 5186 294 5187 294 4544 294 4544 294 5187 294 5188 294 4544 294 5188 294 4542 294 4542 294 5188 294 5189 294 4542 294 5189 294 4676 294 4676 294 5189 294 5190 294 4676 294 5190 294 5191 294 4669 294 4457 294 4456 294 4669 294 4456 294 4667 294 4471 294 4828 294 4472 294 4472 294 4828 294 5192 294 4472 294 5192 294 4847 294 4847 294 5192 294 5193 294 4847 294 5193 294 4850 294 4850 294 5193 294 5187 294 4850 294 5187 294 4538 294 4538 294 5187 294 5186 294 4538 294 5186 294 4539 294 4473 294 4475 294 4829 294 4829 294 4475 294 4845 294 4829 294 4845 294 5194 294 5194 294 4845 294 4843 294 5194 294 4843 294 5195 294 5195 294 4843 294 4841 294 5195 294 4841 294 5196 294 5196 294 4841 294 4839 294 5196 294 4839 294 5197 294 5197 294 4839 294 4838 294 5197 294 4838 294 5198 294 5198 294 4838 294 4836 294 5198 294 4836 294 5199 294 5199 294 4836 294 5181 294 5199 294 5181 294 4638 294 4641 294 4504 294 4639 294 4639 294 4504 294 4638 294 4639 294 4638 294 5200 294 5200 4261 4638 4261 5181 4261 5200 4262 5181 4262 5201 4262 5201 4263 5181 4263 4592 4263 5202 294 4780 294 4636 294 4636 294 4780 294 4782 294 4636 4264 4782 4264 4637 4264 4637 294 4782 294 4784 294 4637 294 4784 294 5203 294 5205 294 5204 294 4793 294 5205 294 4793 294 5206 294 5206 294 4793 294 4791 294 5206 294 4791 294 5207 294 5207 294 4791 294 5182 294 5207 294 5182 294 5208 294 4455 294 4457 294 5209 294 5210 294 5190 294 5189 294 5210 294 5189 294 5211 294 5211 294 5189 294 5188 294 5211 294 5188 294 5212 294 5212 294 5188 294 5187 294 5212 294 5187 294 5213 294 5213 294 5187 294 5193 294 5213 294 5193 294 5214 294 5214 294 5193 294 5192 294 5214 294 5192 294 5215 294 5215 294 5192 294 4828 294 5215 294 4828 294 5216 294 5216 294 4828 294 4829 294 5216 294 4829 294 5217 294 5217 294 4829 294 5194 294 5217 294 5194 294 5218 294 5218 294 5194 294 5195 294 5218 294 5195 294 5219 294 5219 294 5195 294 5196 294 5219 294 5196 294 5220 294 5220 294 5196 294 5197 294 5220 294 5197 294 5221 294 5221 294 5197 294 5198 294 5221 294 5198 294 5222 294 5222 294 5198 294 5199 294 5222 294 5199 294 5223 294 5223 294 5199 294 4638 294 5223 294 4638 294 5224 294 5224 294 4638 294 4637 294 5224 294 4637 294 5225 294 5225 294 4637 294 5203 294 5225 294 5203 294 5226 294 5227 294 5205 294 5206 294 5227 294 5206 294 5228 294 5228 294 5206 294 5207 294 5228 294 5207 294 5229 294 5229 294 5207 294 5208 294 5229 294 5208 294 5230 294 5231 1495 5232 1495 5233 1495 5234 1495 5235 1495 5236 1495 5236 4265 5235 4265 5237 4265 5238 4266 5239 4266 5240 4266 5241 1495 5242 1495 5233 1495 5233 4267 5242 4267 5243 4267 5233 4268 5243 4268 5244 4268 5243 1495 5245 1495 5244 1495 5244 4269 5245 4269 5246 4269 5244 1495 5246 1495 5247 1495 5247 1495 5246 1495 5248 1495 5249 1495 5250 1495 5251 1495 5251 4270 5250 4270 5252 4270 5251 4271 5252 4271 5253 4271 5254 1495 5255 1495 5256 1495 5256 4272 5255 4272 5257 4272 5256 1495 5257 1495 5258 1495 5239 1495 5238 1495 5259 1495 5260 1495 5261 1495 5262 1495 5262 4273 5261 4273 5234 4273 5262 1495 5234 1495 5263 1495 5263 1495 5234 1495 5264 1495 5265 1495 5266 1495 5254 1495 5254 4274 5266 4274 5267 4274 5254 4275 5267 4275 5255 4275 5268 4276 5269 4276 5270 4276 5270 4277 5269 4277 5241 4277 5270 4278 5241 4278 5271 4278 5271 1495 5241 1495 5233 1495 5271 1495 5233 1495 5272 1495 5272 1495 5233 1495 5232 1495 5273 1495 5274 1495 5275 1495 5275 4279 5274 4279 5276 4279 5275 4280 5276 4280 5246 4280 5235 4281 5277 4281 5237 4281 5237 4282 5277 4282 5278 4282 5237 1495 5278 1495 5279 1495 5279 4283 5278 4283 5280 4283 5279 4284 5280 4284 5248 4284 5281 1495 5282 1495 5283 1495 5283 4285 5282 4285 5264 4285 5283 1495 5264 1495 5284 1495 5284 4286 5264 4286 5234 4286 5284 1495 5234 1495 5285 1495 5285 4287 5234 4287 5236 4287 5233 1495 5286 1495 5231 1495 5231 4288 5286 4288 5287 4288 5231 1495 5287 1495 5288 1495 5288 4289 5287 4289 5259 4289 5288 4290 5259 4290 5289 4290 5289 1495 5259 1495 5290 1495 5291 1495 5290 1495 5292 1495 5292 4291 5290 4291 5259 4291 5292 1495 5259 1495 5293 1495 5293 4292 5259 4292 5238 4292 5294 4293 5295 4293 5265 4293 5265 4294 5295 4294 5296 4294 5265 1495 5296 1495 5266 1495 5297 4295 5298 4295 5299 4295 5248 4296 5300 4296 5301 4296 5248 4297 5301 4297 5279 4297 5253 4298 5302 4298 5251 4298 5251 4299 5302 4299 5303 4299 5251 1495 5303 1495 5304 1495 5304 4300 5303 4300 5305 4300 5304 1495 5305 1495 5306 1495 5309 1495 5310 1495 5268 1495 5268 1495 5310 1495 5311 1495 5268 1495 5311 1495 5269 1495 5269 4301 5311 4301 5297 4301 5269 4302 5297 4302 5312 4302 5312 4303 5297 4303 5299 4303 5276 4304 5313 4304 5246 4304 5246 4305 5313 4305 5314 4305 5315 1495 5316 1495 5317 1495 5317 4306 5316 4306 5318 4306 5319 1495 5320 1495 5321 1495 5321 4307 5320 4307 5322 4307 5321 4308 5322 4308 5323 4308 5323 1495 5322 1495 5308 1495 5318 4309 5307 4309 5317 4309 5257 4310 5324 4310 5258 4310 5325 1495 5326 1495 5327 1495 5327 4311 5326 4311 5328 4311 5327 1495 5328 1495 5329 1495 5329 1495 5328 1495 5238 1495 5329 1495 5238 1495 5294 1495 5294 4312 5238 4312 5240 4312 5294 4313 5240 4313 5295 4313 5330 1495 5331 1495 5332 1495 5332 4314 5331 4314 5333 4314 5334 1495 5335 1495 5336 1495 5336 4315 5335 4315 5337 4315 5336 4316 5337 4316 5338 4316 5338 1495 5337 1495 5274 1495 5338 1495 5274 1495 5333 1495 5333 4317 5274 4317 5273 4317 5333 4318 5273 4318 5332 4318 5339 4319 5340 4319 5341 4319 5341 4320 5340 4320 5342 4320 5343 426 5344 426 5345 426 5346 4321 5347 4321 5348 4321 5349 4322 5345 4322 5350 4322 5349 426 5350 426 5351 426 5351 4323 5350 4323 5352 4323 5351 4324 5352 4324 5353 4324 5354 426 5355 426 5356 426 5357 426 5358 426 5359 426 5360 426 5361 426 5362 426 5362 4325 5361 4325 5363 4325 5362 4326 5363 4326 5364 4326 5353 426 5365 426 5351 426 5351 4327 5365 4327 5364 4327 5351 426 5364 426 5366 426 5366 426 5364 426 5355 426 5367 426 5368 426 5369 426 5340 4328 5370 4328 5349 4328 5349 4329 5370 4329 5371 4329 5349 426 5371 426 5345 426 5345 4330 5371 4330 5372 4330 5345 4331 5372 4331 5343 4331 5359 426 5373 426 5357 426 5357 4332 5373 4332 5374 4332 5357 426 5374 426 5344 426 5344 4333 5374 4333 5375 4333 5344 4334 5375 4334 5345 4334 5354 4335 5356 4335 5376 4335 5377 426 5378 426 5379 426 5379 4336 5378 4336 5380 4336 5379 426 5380 426 5381 426 5381 426 5380 426 5382 426 5383 426 5349 426 5348 426 5348 4337 5349 4337 5384 4337 5348 4338 5384 4338 5346 4338 5383 426 5385 426 5386 426 5386 4339 5385 4339 5387 4339 5386 426 5387 426 5388 426 5388 426 5387 426 5389 426 5383 4340 5386 4340 5349 4340 5349 4341 5386 4341 5390 4341 5349 4342 5390 4342 5340 4342 5340 4343 5390 4343 5391 4343 5340 4344 5391 4344 5342 4344 5392 426 5393 426 5394 426 5394 426 5395 426 5396 426 5368 426 5397 426 5369 426 5369 4345 5397 4345 5398 4345 5369 426 5398 426 5392 426 5392 4346 5398 4346 5399 4346 5392 4347 5399 4347 5393 4347 5400 4348 5401 4348 5402 4348 5402 4349 5401 4349 5403 4349 5402 426 5403 426 5404 426 5404 426 5403 426 5405 426 5406 426 5407 426 5408 426 5408 426 5407 426 5409 426 5410 426 5411 426 5412 426 5412 4350 5411 4350 5413 4350 5412 426 5413 426 5414 426 5414 426 5413 426 5361 426 5414 426 5361 426 5409 426 5409 426 5361 426 5360 426 5409 4351 5360 4351 5408 4351 5363 426 5415 426 5364 426 5364 4352 5415 4352 5416 4352 5364 426 5416 426 5355 426 5355 4353 5416 4353 5417 4353 5355 4354 5417 4354 5418 4354 5419 426 5420 426 5421 426 5421 426 5420 426 5382 426 5421 426 5382 426 5422 426 5422 426 5382 426 5380 426 5422 426 5380 426 5423 426 5423 4355 5380 4355 5424 4355 5367 426 5369 426 5349 426 5349 4356 5369 4356 5425 4356 5349 4357 5425 4357 5426 4357 5427 426 5428 426 5429 426 5430 426 5431 426 5432 426 5432 426 5431 426 5433 426 5432 426 5433 426 5434 426 5434 426 5433 426 5404 426 5434 426 5404 426 5435 426 5435 4358 5404 4358 5405 4358 5435 4359 5405 4359 5341 4359 5341 4360 5405 4360 5436 4360 5341 4361 5436 4361 5339 4361 5418 426 5437 426 5355 426 5355 4362 5437 4362 5438 4362 5355 4363 5438 4363 5356 4363 5424 426 5380 426 5439 426 5439 426 5380 426 5440 426 5439 426 5440 426 5356 426 5356 426 5440 426 5441 426 5356 4364 5441 4364 5376 4364 5426 426 5442 426 5349 426 5349 4365 5442 4365 5443 4365 5349 4366 5443 4366 5384 4366 5444 426 5445 426 5389 426 5389 426 5445 426 5446 426 5389 426 5446 426 5388 426 5388 426 5446 426 5427 426 5388 4367 5427 4367 5447 4367 5447 426 5427 426 5429 426 5448 426 5449 426 5450 426 5450 4368 5449 4368 5451 4368 5452 426 5453 426 5454 426 5454 4369 5453 4369 5455 4369 5454 426 5455 426 5456 426 5456 426 5455 426 5396 426 5451 4370 5396 4370 5395 4370 5451 4371 5395 4371 5450 4371 5457 426 5458 426 5459 426 5459 4372 5458 4372 5460 4372 5459 426 5460 426 5461 426 5461 426 5460 426 5462 426 5461 426 5462 426 5463 426 5464 426 5465 426 5466 426 5466 426 5465 426 5463 426 5466 426 5463 426 5467 426 5467 4373 5463 4373 5462 4373 5467 426 5462 426 5468 426 5468 4374 5462 4374 5469 4374 5468 4375 5469 4375 5347 4375 5347 4376 5469 4376 5470 4376 5347 4377 5470 4377 5348 4377 5471 4378 5472 4378 5473 4378 5473 4379 5472 4379 5474 4379 5474 4380 5475 4380 5473 4380 5473 4381 5475 4381 5476 4381 5479 4382 5480 4382 5477 4382 5479 4383 5478 4383 5481 4383 5479 4383 5481 4383 5482 4383 5482 4384 5481 4384 5483 4384 5482 4385 5483 4385 5484 4385 5485 4386 5486 4386 5487 4386 5488 4387 5489 4387 5490 4387 5490 4388 5489 4388 5491 4388 5490 4389 5491 4389 5492 4389 5488 4390 5487 4390 5489 4390 5495 4391 5496 4391 5494 4391 5499 4392 5498 4392 5500 4392 5502 4393 5503 4393 5504 4393 5506 294 5507 294 5477 294 5477 4394 5507 4394 5508 4394 5477 294 5509 294 5506 294 5493 294 5511 294 5510 294 4377 4395 5497 4395 5512 4395 5512 4396 5497 4396 5513 4396 5512 4397 5513 4397 5514 4397 5514 4398 5513 4398 5515 4398 5514 4399 5515 4399 5516 4399 5516 4400 5515 4400 5517 4400 5516 4401 5517 4401 5518 4401 5518 4402 5517 4402 5519 4402 5518 4403 5519 4403 4380 4403 4380 4404 5520 4404 4382 4404 4382 4405 5520 4405 5521 4405 4382 4406 5521 4406 4384 4406 4384 4407 5521 4407 5522 4407 4384 4408 5522 4408 4386 4408 4386 4409 5522 4409 5523 4409 4386 4410 5523 4410 4388 4410 4388 4411 5523 4411 5524 4411 4388 4412 5524 4412 4392 4412 4392 4413 5524 4413 5525 4413 4392 4414 5525 4414 4394 4414 4394 4415 5525 4415 5526 4415 4394 4416 5526 4416 5527 4416 5527 4417 5526 4417 5528 4417 5527 4418 5528 4418 4397 4418 4397 4419 5528 4419 5501 4419 4397 4420 5501 4420 4398 4420 4398 4421 5501 4421 5529 4421 4398 4422 5529 4422 4400 4422 4400 4423 5529 4423 5530 4423 5531 4424 5532 4424 4401 4424 4401 4425 5532 4425 5533 4425 4401 4426 5533 4426 4402 4426 4402 4427 5533 4427 5534 4427 4402 4428 5534 4428 5535 4428 5535 4428 5534 4428 5536 4428 5535 443 5536 443 5537 443 5537 443 5536 443 5538 443 5537 4429 5538 4429 4406 4429 4406 4430 5538 4430 5539 4430 4406 4431 5539 4431 5540 4431 5540 4432 5539 4432 5541 4432 5540 4433 5541 4433 5542 4433 5542 4433 5541 4433 5543 4433 5542 4434 5543 4434 5544 4434 5544 4435 5543 4435 5545 4435 5544 4436 5545 4436 5546 4436 5546 4437 5545 4437 5547 4437 5546 4438 5547 4438 5548 4438 5548 4439 5547 4439 5505 4439 5548 4440 5505 4440 4413 4440 4413 4440 5505 4440 5549 4440 4413 4441 5549 4441 5550 4441 5550 4442 5549 4442 5551 4442 5550 4443 5551 4443 5552 4443 5552 4444 5551 4444 5553 4444 5552 4445 5553 4445 4421 4445 4421 4446 5553 4446 5554 4446 4421 4447 5554 4447 5555 4447 5555 4448 5554 4448 5556 4448 5555 4449 5556 4449 5557 4449 5557 4450 5556 4450 5558 4450 5557 4451 5558 4451 4422 4451 4422 4452 5558 4452 5559 4452 4422 4453 5559 4453 4423 4453 4423 4454 5559 4454 5560 4454 4423 4455 5560 4455 5561 4455 5561 4456 5562 4456 5563 4456 5563 4457 5562 4457 5564 4457 5563 4458 5564 4458 5565 4458 5565 4459 5564 4459 5566 4459 5565 4460 5566 4460 5567 4460 5567 4461 5566 4461 5568 4461 5567 4462 5568 4462 4377 4462 4377 4463 5568 4463 5497 4463 5569 4464 5571 4464 5572 4464 5573 4465 5572 4465 5571 4465 5574 4466 5573 4466 5571 4466 5575 4467 5574 4467 5571 4467 5577 4468 5576 4468 5571 4468 5578 4469 5577 4469 5571 4469 5579 4470 5578 4470 5571 4470 5580 4471 5579 4471 5571 4471 5582 4472 5581 4472 5571 4472 5583 4473 5582 4473 5571 4473 5584 4474 5583 4474 5571 4474 5585 4475 5584 4475 5571 4475 5587 4476 5586 4476 5571 4476 5588 4477 5587 4477 5571 4477 5590 4478 5589 4478 5571 4478 5591 4479 5590 4479 5571 4479 5593 4480 5592 4480 5571 4480 5594 4481 5593 4481 5571 4481 5595 4482 5594 4482 5571 4482 5596 4483 5595 4483 5571 4483 5597 4484 5596 4484 5571 4484 5600 4485 5601 4485 5602 4485 5603 4486 5604 4486 5605 4486 5571 4487 5606 4487 5607 4487 5608 4488 5606 4488 5571 4488 5570 4489 5608 4489 5571 4489 5612 4490 5613 4490 5614 4490 5615 4491 5616 4491 5617 4491 5609 4492 5611 4492 5618 4492 5619 4493 5620 4493 5621 4493 5622 4494 5597 4494 5571 4494 5624 4495 5623 4495 5625 4495 5622 4496 5619 4496 5597 4496 5597 4497 5619 4497 5621 4497 5596 4498 5621 4498 5627 4498 5596 4499 5627 4499 5595 4499 5595 4500 5627 4500 5628 4500 5594 4501 5629 4501 5593 4501 5592 4502 5631 4502 5591 4502 5591 4503 5631 4503 5632 4503 5590 4504 5633 4504 5589 4504 5589 4505 5633 4505 5634 4505 5589 4506 5634 4506 5588 4506 5588 4507 5635 4507 5587 4507 5587 4508 5636 4508 5586 4508 5586 4509 5636 4509 5637 4509 5585 4510 5637 4510 5638 4510 5583 4511 5640 4511 5582 4511 5581 4512 5641 4512 5642 4512 5581 4513 5642 4513 5580 4513 5580 4514 5643 4514 5579 4514 5579 4515 5644 4515 5578 4515 5578 4516 5644 4516 5645 4516 5578 4517 5645 4517 5577 4517 5576 4518 5646 4518 5575 4518 5575 4519 5646 4519 5647 4519 5575 4520 5647 4520 5574 4520 5573 4521 5648 4521 5649 4521 5572 4522 5650 4522 5569 4522 5569 4523 5651 4523 5570 4523 5570 4524 5652 4524 5608 4524 5608 4525 5652 4525 5653 4525 5606 4526 5654 4526 5607 4526 5621 4527 5618 4527 5611 4527 5621 4528 5611 4528 5627 4528 5630 4529 5656 4529 5657 4529 5631 4530 5657 4530 5658 4530 5633 4531 5660 4531 5634 4531 5634 4532 5661 4532 5635 4532 5635 4533 5662 4533 5636 4533 5636 4534 5662 4534 5663 4534 5638 4535 5664 4535 5665 4535 5638 4536 5665 4536 5639 4536 5639 4537 5665 4537 5666 4537 5640 4538 5666 4538 5667 4538 5641 4539 5668 4539 5642 4539 5642 4540 5668 4540 5669 4540 5643 4541 5670 4541 5644 4541 5647 4542 5671 4542 5648 4542 5648 4543 5672 4543 5649 4543 5649 4544 5673 4544 5650 4544 5655 4545 5605 4545 5604 4545 5610 4546 5612 4546 5611 4546 5611 4547 5612 4547 5614 4547 5658 4548 5676 4548 5659 4548 5659 4549 5677 4549 5660 4549 5663 4550 5681 4550 5664 4550 5668 4551 5682 4551 5669 4551 5671 4552 5684 4552 5672 4552 5673 4553 5685 4553 5686 4553 5613 4554 5615 4554 5614 4554 5674 4555 5687 4555 5688 4555 5675 4556 5689 4556 5676 4556 5678 4557 5692 4557 5679 4557 5680 4558 5693 4558 5681 4558 5683 4559 5694 4559 5695 4559 5600 4560 5599 4560 5598 4560 5690 4561 5626 4561 5691 4561 5696 4562 5697 4562 5698 4562 5698 4563 5697 4563 5699 4563 5700 4564 5701 4564 5702 4564 5702 4565 5701 4565 5703 4565 5704 4566 5705 4566 5696 4566 5696 4567 5705 4567 5706 4567 5710 4568 5709 4568 5711 4568 5708 4569 5712 4569 5707 4569 5713 4570 5714 4570 5715 4570 5716 4571 5719 4571 5715 4571 5720 4572 5721 4572 5722 4572 5722 4573 5721 4573 5723 4573 5722 4574 5723 4574 5717 4574 5717 4575 5723 4575 5724 4575 5717 4576 5724 4576 5718 4576 5727 4577 5726 4577 5728 4577 5729 4578 5730 4578 5731 4578 5731 4579 5730 4579 5732 4579 5733 4580 5732 4580 5734 4580 5733 4581 5734 4581 5735 4581 5735 4582 5734 4582 5736 4582 5737 4583 5736 4583 5738 4583 5739 4584 5740 4584 5741 4584 5743 4585 5742 4585 5744 4585 5743 4586 5744 4586 5745 4586 5746 4587 5747 4587 5748 4587 5750 4588 5749 4588 5751 4588 5752 4589 5751 4589 5753 4589 5752 4590 5753 4590 5754 4590 5754 4591 5753 4591 5755 4591 5754 4592 5755 4592 5756 4592 5756 4593 5757 4593 5758 4593 5758 4594 5757 4594 5759 4594 5758 4595 5759 4595 5760 4595 5760 4596 5759 4596 5761 4596 5760 4597 5761 4597 5762 4597 5762 4598 5761 4598 5763 4598 5762 4599 5763 4599 5725 4599 5725 4600 5763 4600 5726 4600 5772 4601 5769 4601 5771 4601 5773 294 5774 294 5775 294 5775 294 5774 294 5776 294 5777 294 5778 294 5779 294 5780 294 5781 294 5782 294 5783 294 5765 294 5779 294 5779 4602 5778 4602 5784 4602 5785 294 5786 294 5782 294 5782 4603 5786 4603 5787 4603 5782 294 5787 294 5788 294 5789 294 5790 294 5791 294 5768 4604 5792 4604 5776 4604 5768 4605 5776 4605 5771 4605 5771 4606 5776 4606 5774 4606 5793 294 5794 294 5795 294 5795 294 5794 294 5780 294 5795 294 5780 294 5796 294 5796 294 5780 294 5782 294 5770 4607 5772 4607 5797 4607 5773 294 5798 294 5774 294 5774 4608 5798 4608 5799 4608 5774 294 5799 294 5791 294 5791 4609 5799 4609 5800 4609 5791 4610 5800 4610 5801 4610 5803 294 5785 294 5804 294 5804 294 5785 294 5782 294 5804 4611 5782 4611 5805 4611 5805 294 5782 294 5781 294 5806 294 5807 294 5787 294 5787 4612 5807 4612 5808 4612 5787 4613 5808 4613 5788 4613 5783 294 5809 294 5765 294 5765 4614 5809 4614 5810 4614 5794 294 5811 294 5780 294 5778 294 5812 294 5784 294 5784 4615 5812 4615 5813 4615 5784 294 5813 294 5814 294 5815 294 5816 294 5817 294 5802 294 5767 294 5818 294 5818 294 5766 294 5819 294 5819 294 5766 294 5810 294 5814 4616 5820 4616 5784 4616 5784 294 5820 294 5821 294 5784 4617 5821 4617 5822 4617 5822 4618 5821 4618 5815 4618 5822 294 5815 294 5823 294 5823 4619 5815 4619 5817 4619 5824 294 5789 294 5825 294 5825 4620 5789 4620 5791 4620 5825 4621 5791 4621 5826 4621 5826 294 5791 294 5801 294 5827 294 5764 294 5828 294 5829 4622 5830 4622 5831 4622 5832 4622 5833 4622 5831 4622 5831 4623 5833 4623 5834 4623 5831 4624 5834 4624 5829 4624 5835 4625 5836 4625 5837 4625 5837 443 5836 443 5838 443 5839 431 5840 431 5841 431 5841 431 5840 431 5842 431 5843 4626 5844 4626 5845 4626 5845 443 5844 443 5846 443 5849 431 5848 431 5850 431 5855 431 5856 431 5857 431 5857 431 5856 431 5858 431 5859 443 5860 443 5861 443 5861 443 5860 443 5862 443 5867 443 5868 443 5869 443 5869 443 5868 443 5870 443 5871 431 5872 431 5873 431 5873 431 5872 431 5874 431 5875 431 5876 431 5877 431 5877 431 5876 431 5878 431 5879 443 5880 443 5881 443 5881 443 5880 443 5882 443 5883 431 5884 431 5885 431 5885 4627 5884 4627 5886 4627 5891 431 5892 431 5893 431 5893 4628 5892 4628 5894 4628 5895 4629 5896 4629 5897 4629 5897 4630 5896 4630 5898 4630 5897 4631 5898 4631 5899 4631 5900 4632 5899 4632 5901 4632 5902 4633 5903 4633 5904 4633 5905 4634 5906 4634 5907 4634 5907 4635 5906 4635 5831 4635 5907 4636 5831 4636 5908 4636 5902 4637 5904 4637 5909 4637 5900 4638 5901 4638 5910 4638 5901 4639 5911 4639 5910 4639 5910 4640 5911 4640 5840 4640 5910 4641 5840 4641 5830 4641 5830 4642 5840 4642 5839 4642 5830 4643 5839 4643 5831 4643 5831 4644 5839 4644 5912 4644 5831 4645 5912 4645 5908 4645 5905 4646 5913 4646 5906 4646 5906 4647 5913 4647 5836 4647 5906 4648 5836 4648 5904 4648 5904 4649 5836 4649 5835 4649 5904 4650 5835 4650 5909 4650 5914 4651 5915 4651 5916 4651 5916 4652 5915 4652 5906 4652 5916 4653 5906 4653 5917 4653 5917 4654 5906 4654 5918 4654 5919 4655 5904 4655 5920 4655 5920 4656 5904 4656 5921 4656 5920 4657 5921 4657 5922 4657 5922 4658 5921 4658 5923 4658 5919 4659 5924 4659 5904 4659 5904 4660 5924 4660 5848 4660 5904 4661 5848 4661 5906 4661 5906 4662 5848 4662 5847 4662 5906 4663 5847 4663 5918 4663 5914 4664 5925 4664 5915 4664 5915 4665 5925 4665 5844 4665 5915 4666 5844 4666 5921 4666 5921 4649 5844 4649 5843 4649 5921 4667 5843 4667 5923 4667 5926 4668 5927 4668 5928 4668 5928 4669 5927 4669 5915 4669 5928 4670 5915 4670 5929 4670 5929 4671 5915 4671 5930 4671 5931 4672 5921 4672 5932 4672 5932 4673 5921 4673 5933 4673 5932 4674 5933 4674 5934 4674 5934 4675 5933 4675 5935 4675 5931 4659 5936 4659 5921 4659 5921 4676 5936 4676 5856 4676 5921 4661 5856 4661 5915 4661 5915 4677 5856 4677 5855 4677 5915 4678 5855 4678 5930 4678 5926 4679 5937 4679 5927 4679 5927 4680 5937 4680 5852 4680 5927 4681 5852 4681 5933 4681 5933 4682 5852 4682 5851 4682 5933 4683 5851 4683 5935 4683 5938 4684 5939 4684 5940 4684 5940 4652 5939 4652 5927 4652 5940 4653 5927 4653 5941 4653 5941 4654 5927 4654 5942 4654 5943 4672 5933 4672 5944 4672 5944 4685 5933 4685 5945 4685 5944 4657 5945 4657 5946 4657 5946 4637 5945 4637 5947 4637 5943 4686 5948 4686 5933 4686 5933 4687 5948 4687 5864 4687 5933 4688 5864 4688 5927 4688 5927 4677 5864 4677 5863 4677 5927 4689 5863 4689 5942 4689 5938 4690 5949 4690 5939 4690 5939 4691 5949 4691 5860 4691 5939 4692 5860 4692 5945 4692 5945 4649 5860 4649 5859 4649 5945 4693 5859 4693 5947 4693 5950 4694 5951 4694 5952 4694 5952 4695 5951 4695 5939 4695 5952 4653 5939 4653 5953 4653 5953 4696 5939 4696 5954 4696 5955 4697 5945 4697 5956 4697 5956 4698 5945 4698 5957 4698 5956 4699 5957 4699 5958 4699 5958 4700 5957 4700 5959 4700 5955 4701 5960 4701 5945 4701 5945 4702 5960 4702 5872 4702 5945 4703 5872 4703 5939 4703 5939 4704 5872 4704 5871 4704 5939 4705 5871 4705 5954 4705 5950 4679 5961 4679 5951 4679 5951 4706 5961 4706 5868 4706 5951 4707 5868 4707 5957 4707 5957 4649 5868 4649 5867 4649 5957 4708 5867 4708 5959 4708 5962 4709 5963 4709 5964 4709 5964 4710 5963 4710 5951 4710 5964 4711 5951 4711 5965 4711 5965 4654 5951 4654 5966 4654 5967 4712 5957 4712 5968 4712 5968 4713 5957 4713 5969 4713 5968 4714 5969 4714 5970 4714 5970 4700 5969 4700 5971 4700 5967 4715 5972 4715 5957 4715 5957 4716 5972 4716 5876 4716 5957 4717 5876 4717 5951 4717 5951 4677 5876 4677 5875 4677 5951 4678 5875 4678 5966 4678 5962 4718 5973 4718 5963 4718 5963 4719 5973 4719 5974 4719 5963 4720 5974 4720 5969 4720 5969 4721 5974 4721 5975 4721 5969 4722 5975 4722 5971 4722 5976 4723 5977 4723 5978 4723 5978 4724 5977 4724 5963 4724 5978 4725 5963 4725 5979 4725 5979 4726 5963 4726 5980 4726 5981 4727 5969 4727 5982 4727 5982 4685 5969 4685 5983 4685 5982 4699 5983 4699 5984 4699 5984 4728 5983 4728 5985 4728 5981 4715 5986 4715 5969 4715 5969 4729 5986 4729 5884 4729 5969 4730 5884 4730 5963 4730 5963 4731 5884 4731 5883 4731 5963 4732 5883 4732 5980 4732 5976 4733 5987 4733 5977 4733 5977 4719 5987 4719 5880 4719 5977 4692 5880 4692 5983 4692 5983 4649 5880 4649 5879 4649 5983 4683 5879 4683 5985 4683 5988 4734 5989 4734 5977 4734 5977 4735 5989 4735 5990 4735 5977 4736 5990 4736 5991 4736 5991 4737 5990 4737 5992 4737 5991 4738 5992 4738 5993 4738 5994 4739 5983 4739 5995 4739 5995 4740 5983 4740 5996 4740 5995 4741 5996 4741 5997 4741 5994 4742 5998 4742 5983 4742 5983 4743 5998 4743 5892 4743 5983 4744 5892 4744 5977 4744 5977 4745 5892 4745 5891 4745 5977 4678 5891 4678 5988 4678 5888 4746 5887 4746 5996 4746 5996 4747 5887 4747 5999 4747 5996 4748 5999 4748 5997 4748 5993 4749 5888 4749 5991 4749 5991 4750 5888 4750 5996 4750 5991 4751 5996 4751 6000 4751 6002 4752 6001 4752 6003 4752 6003 4753 6001 4753 5996 4753 6003 4754 5996 4754 6004 4754 6004 4755 5996 4755 5983 4755 6004 4756 5983 4756 6005 4756 6005 4685 5983 4685 5969 4685 6005 4756 5969 4756 6006 4756 6006 4685 5969 4685 5957 4685 6006 4685 5957 4685 6007 4685 6007 4756 5957 4756 5945 4756 6007 4757 5945 4757 6008 4757 6008 4757 5945 4757 5933 4757 6008 4757 5933 4757 6009 4757 6009 4685 5933 4685 5921 4685 6009 4757 5921 4757 5898 4757 5898 4757 5921 4757 5904 4757 5898 4758 5904 4758 5899 4758 5899 4759 5904 4759 5903 4759 5899 4760 5903 4760 5901 4760 5975 4761 5974 4761 6010 4761 6010 443 5974 443 6011 443 6012 4762 6013 4762 6014 4762 6014 4763 6013 4763 6015 4763 6014 4764 6015 4764 6016 4764 6016 4765 6015 4765 6017 4765 6048 443 6047 443 6049 443 6062 443 6063 443 6064 443 6064 443 6063 443 6065 443 6066 431 6067 431 6068 431 6070 443 6071 443 6072 443 6072 443 6071 443 6073 443 6078 4766 6079 4766 6080 4766 6081 4767 6082 4767 6083 4767 6083 4768 6082 4768 6084 4768 6083 4769 6084 4769 6085 4769 6085 4770 6084 4770 6086 4770 6087 4771 6088 4771 6089 4771 6089 4772 6088 4772 6090 4772 6089 4714 6090 4714 6091 4714 6091 4675 6090 4675 6092 4675 6087 4773 6093 4773 6088 4773 6088 4774 6093 4774 6023 4774 6088 4775 6023 4775 6083 4775 6083 4776 6023 4776 6022 4776 6083 4777 6022 4777 6081 4777 6086 4679 6094 4679 6085 4679 6085 4680 6094 4680 6019 4680 6085 4720 6019 4720 6090 4720 6090 4721 6019 4721 6018 4721 6090 4778 6018 4778 6092 4778 6095 4779 6096 4779 6097 4779 6097 4780 6096 4780 6098 4780 6097 4781 6098 4781 6014 4781 6014 4782 6098 4782 6099 4782 6100 4783 6101 4783 6080 4783 6080 4784 6101 4784 6102 4784 6080 4785 6102 4785 6103 4785 6103 4786 6102 4786 6104 4786 6104 4659 6105 4659 6103 4659 6103 4787 6105 4787 6075 4787 6103 4661 6075 4661 6097 4661 6097 4677 6075 4677 6074 4677 6097 4788 6074 4788 6095 4788 6106 4789 6107 4789 6070 4789 6070 4790 6107 4790 6012 4790 6070 4791 6012 4791 6071 4791 6071 4792 6012 4792 6014 4792 6071 4793 6014 4793 6108 4793 6108 4794 6014 4794 6099 4794 6070 4795 6100 4795 6106 4795 6106 4796 6100 4796 6080 4796 6106 4797 6080 4797 6109 4797 6109 4798 6080 4798 6079 4798 6110 4723 6111 4723 6112 4723 6112 4724 6111 4724 6085 4724 6112 4725 6085 4725 6113 4725 6113 4799 6085 4799 6114 4799 6115 4712 6090 4712 6116 4712 6116 4685 6090 4685 6117 4685 6116 4714 6117 4714 6118 4714 6118 4728 6117 4728 6119 4728 6115 4701 6120 4701 6090 4701 6090 4687 6120 4687 6027 4687 6090 4800 6027 4800 6085 4800 6085 4801 6027 4801 6026 4801 6085 4678 6026 4678 6114 4678 6110 4646 6121 4646 6111 4646 6111 4719 6121 4719 6122 4719 6111 4692 6122 4692 6117 4692 6117 4721 6122 4721 6123 4721 6117 4708 6123 4708 6119 4708 6124 4802 6125 4802 6126 4802 6126 4695 6125 4695 6111 4695 6126 4653 6111 4653 6127 4653 6127 4734 6111 4734 6128 4734 6129 4739 6117 4739 6130 4739 6130 4803 6117 4803 6131 4803 6130 4674 6131 4674 6132 4674 6132 4675 6131 4675 6133 4675 6129 4715 6134 4715 6117 4715 6117 4804 6134 4804 6035 4804 6117 4703 6035 4703 6111 4703 6111 4745 6035 4745 6034 4745 6111 4678 6034 4678 6128 4678 6124 4733 6135 4733 6125 4733 6125 4719 6135 4719 6031 4719 6125 4681 6031 4681 6131 4681 6131 4649 6031 4649 6030 4649 6131 4708 6030 4708 6133 4708 6136 4723 6137 4723 6138 4723 6138 4710 6137 4710 6125 4710 6138 4653 6125 4653 6139 4653 6139 4734 6125 4734 6140 4734 6141 4805 6131 4805 6142 4805 6142 4713 6131 4713 6143 4713 6142 4714 6143 4714 6144 4714 6144 4700 6143 4700 6145 4700 6141 4701 6146 4701 6131 4701 6131 4806 6146 4806 6043 4806 6131 4807 6043 4807 6125 4807 6125 4745 6043 4745 6042 4745 6125 4808 6042 4808 6140 4808 6136 4646 6147 4646 6137 4646 6137 4809 6147 4809 6039 4809 6137 4810 6039 4810 6143 4810 6143 4649 6039 4649 6038 4649 6143 4683 6038 4683 6145 4683 6148 4723 6149 4723 6150 4723 6150 4724 6149 4724 6137 4724 6150 4653 6137 4653 6151 4653 6151 4799 6137 4799 6152 4799 6153 4712 6143 4712 6154 4712 6154 4685 6143 4685 6155 4685 6154 4811 6155 4811 6156 4811 6156 4812 6155 4812 6157 4812 6153 4813 6158 4813 6143 4813 6143 4814 6158 4814 6051 4814 6143 4717 6051 4717 6137 4717 6137 4801 6051 4801 6050 4801 6137 4732 6050 4732 6152 4732 6148 4646 6159 4646 6149 4646 6149 4815 6159 4815 6047 4815 6149 4816 6047 4816 6155 4816 6155 4682 6047 4682 6046 4682 6155 4683 6046 4683 6157 4683 6160 4668 6161 4668 6162 4668 6162 4710 6161 4710 6149 4710 6162 4817 6149 4817 6163 4817 6163 4734 6149 4734 6164 4734 6165 4727 6155 4727 6166 4727 6166 4673 6155 4673 6167 4673 6166 4714 6167 4714 6168 4714 6168 4637 6167 4637 6169 4637 6165 4818 6170 4818 6155 4818 6155 4687 6170 4687 6059 4687 6155 4717 6059 4717 6149 4717 6149 4677 6059 4677 6058 4677 6149 4678 6058 4678 6164 4678 6160 4679 6171 4679 6161 4679 6161 4680 6171 4680 6055 4680 6161 4681 6055 4681 6167 4681 6167 4682 6055 4682 6054 4682 6167 4819 6054 4819 6169 4819 6172 4684 6097 4684 6173 4684 6173 4669 6097 4669 6161 4669 6173 4653 6161 4653 6174 4653 6174 4820 6161 4820 6175 4820 6176 4672 6167 4672 6177 4672 6177 4821 6167 4821 6103 4821 6177 4811 6103 4811 6178 4811 6178 4822 6103 4822 6179 4822 6176 4659 6180 4659 6167 4659 6167 4676 6180 4676 6067 4676 6167 4688 6067 4688 6161 4688 6161 4677 6067 4677 6066 4677 6161 4823 6066 4823 6175 4823 6172 4824 6181 4824 6097 4824 6097 4825 6181 4825 6063 4825 6097 4826 6063 4826 6103 4826 6103 4827 6063 4827 6062 4827 6103 4828 6062 4828 6179 4828 6088 4829 6182 4829 6090 4829 6090 4830 6182 4830 6183 4830 6090 4756 6183 4756 6117 4756 6117 4685 6183 4685 6184 4685 6117 4756 6184 4756 6131 4756 6131 4685 6184 4685 6185 4685 6131 4685 6185 4685 6143 4685 6143 4756 6185 4756 6186 4756 6143 4757 6186 4757 6155 4757 6155 4757 6186 4757 6187 4757 6155 4757 6187 4757 6167 4757 6167 4685 6187 4685 6188 4685 6167 4757 6188 4757 6103 4757 6103 4757 6188 4757 6189 4757 6103 4831 6189 4831 6080 4831 6080 4832 6189 4832 6190 4832 6080 4833 6190 4833 6078 4833 6078 4834 6190 4834 6191 4834 6194 4835 6195 4835 6196 4835 6197 4836 6198 4836 6199 4836 5890 4837 6200 4837 6198 4837 6198 4838 6200 4838 6201 4838 6198 4839 6201 4839 6199 4839 5890 4840 6198 4840 5889 4840 5889 4841 6198 4841 6202 4841 5889 4842 6202 4842 6203 4842 6204 4843 6205 4843 6206 4843 6206 4844 6205 4844 6207 4844 6207 4845 6208 4845 6206 4845 6206 4846 6208 4846 6209 4846 6206 4847 6209 4847 6202 4847 6202 4848 6209 4848 6210 4848 6202 4849 6210 4849 6203 4849 6211 4850 6212 4850 6213 4850 6214 4851 6215 4851 6216 4851 6217 4852 6218 4852 6219 4852 6220 4853 6221 4853 6222 4853 6224 4854 6214 4854 6225 4854 6225 4855 6214 4855 6216 4855 6225 4856 6216 4856 6025 4856 6025 4857 6216 4857 6024 4857 6212 4858 6226 4858 6216 4858 6216 4859 6226 4859 6227 4859 6216 4860 6227 4860 6024 4860 6218 4861 6217 4861 6228 4861 6220 4862 6229 4862 6221 4862 6221 4863 6229 4863 6230 4863 6221 4864 6230 4864 6231 4864 6215 4865 6232 4865 6216 4865 6216 4866 6232 4866 6233 4866 6216 4867 6233 4867 6196 4867 6196 4868 6233 4868 6234 4868 6196 4869 6234 4869 6194 4869 6235 4870 6236 4870 6237 4870 6237 4871 6236 4871 6238 4871 6237 4872 6238 4872 6216 4872 6219 4873 6239 4873 6217 4873 6217 4874 6239 4874 6192 4874 6217 4875 6192 4875 6237 4875 6237 4876 6192 4876 6193 4876 6237 4877 6193 4877 6235 4877 6216 4878 6238 4878 6212 4878 6212 4879 6238 4879 6240 4879 6212 4880 6240 4880 6213 4880 6241 4881 6222 4881 6217 4881 6217 4882 6223 4882 6228 4882 6228 4883 6223 4883 6242 4883 6228 4884 6242 4884 6243 4884 6243 4885 6242 4885 6244 4885 6243 4886 6244 4886 6029 4886 6029 4887 6244 4887 6020 4887 6029 4888 6020 4888 6028 4888 6028 4889 6020 4889 6021 4889 6028 4890 6021 4890 6213 4890 6213 4891 6021 4891 6245 4891 6213 4892 6245 4892 6211 4892 6246 4893 6247 4893 6248 4893 6248 4894 6247 4894 6249 4894 6247 4895 6250 4895 6249 4895 6249 4896 6250 4896 6251 4896 6249 4897 6251 4897 6252 4897 6252 4898 6251 4898 6253 4898 6073 4899 6254 4899 6255 4899 6254 4900 6256 4900 6255 4900 6255 4901 6256 4901 6257 4901 6255 4902 6257 4902 6258 4902 6258 4903 6257 4903 6259 4903 6258 4904 6259 4904 6260 4904 6253 4905 6251 4905 6261 4905 6261 4906 6251 4906 6072 4906 6261 4907 6072 4907 6262 4907 6260 4908 6076 4908 6258 4908 6258 4909 6076 4909 6077 4909 6258 4910 6077 4910 6248 4910 6248 4911 6077 4911 6263 4911 6248 4912 6263 4912 6246 4912 5850 4913 6264 4913 6265 4913 6266 4914 6267 4914 6268 4914 6269 4915 6270 4915 6271 4915 6271 4916 6270 4916 6272 4916 6271 4917 6266 4917 6269 4917 6269 4918 6266 4918 6268 4918 6269 4919 6268 4919 6264 4919 6264 4920 6268 4920 6273 4920 6264 4921 6273 4921 6265 4921 6274 4922 6275 4922 6276 4922 6277 4923 6278 4923 6279 4923 6267 4924 6266 4924 6280 4924 6280 4925 6266 4925 6281 4925 6280 4926 6281 4926 6282 4926 6275 4927 6277 4927 6276 4927 6276 4928 6277 4928 6279 4928 6276 4929 6279 4929 6255 4929 6255 4930 6279 4930 6283 4930 6255 4931 6283 4931 6284 4931 6072 4932 6073 4932 6262 4932 6262 4933 6073 4933 6255 4933 6262 4934 6255 4934 6285 4934 6285 4935 6255 4935 6284 4935 6285 4936 6284 4936 6286 4936 6284 4937 5841 4937 6286 4937 6286 4938 5841 4938 5842 4938 6286 4939 5842 4939 6287 4939 6287 4940 5842 4940 6280 4940 6287 4941 6280 4941 6288 4941 6288 4942 6280 4942 6282 4942 6272 4943 6289 4943 6271 4943 6271 4944 6289 4944 5845 4944 6271 4945 5845 4945 6276 4945 6276 4946 5845 4946 5846 4946 6276 4947 5846 4947 6274 4947 5837 4948 6290 4948 6265 4948 6265 4949 6290 4949 5849 4949 6265 4950 5849 4950 5850 4950 5837 4951 5838 4951 6290 4951 6290 4952 5838 4952 6291 4952 6290 4953 6291 4953 6278 4953 6278 4954 6291 4954 6292 4954 6278 4955 6292 4955 6279 4955 6293 4956 6294 4956 6295 4956 6296 4850 6297 4850 6298 4850 6299 4957 6300 4957 6301 4957 6301 4958 6300 4958 6302 4958 6301 4959 6302 4959 6303 4959 6304 4960 6305 4960 6306 4960 6306 4961 6305 4961 6307 4961 6306 4962 6307 4962 6308 4962 6293 4963 6295 4963 6297 4963 6309 4964 6304 4964 6310 4964 6310 4965 6304 4965 6306 4965 6310 4966 6306 4966 6299 4966 6299 4967 6306 4967 6311 4967 6299 4968 6311 4968 6300 4968 6312 4969 6313 4969 6197 4969 6197 4970 6313 4970 6314 4970 6197 4971 6314 4971 6295 4971 6294 4972 5877 4972 6295 4972 6295 4909 5877 4909 5878 4909 6295 4973 5878 4973 6302 4973 6302 4974 5878 4974 6315 4974 6302 4975 6315 4975 6303 4975 6199 4976 6316 4976 6197 4976 6197 4977 6316 4977 6317 4977 6197 4978 6317 4978 6312 4978 6295 4979 6314 4979 6297 4979 6297 4879 6314 4879 6318 4879 6297 4980 6318 4980 6298 4980 6309 4981 6310 4981 5886 4981 5886 4982 6310 4982 6010 4982 5886 4983 6010 4983 5885 4983 5885 4984 6010 4984 6011 4984 5885 4890 6011 4890 6298 4890 6298 4891 6011 4891 6319 4891 6298 4985 6319 4985 6296 4985 6317 4986 6320 4986 6312 4986 6312 4987 6320 4987 6321 4987 6312 4988 6321 4988 5882 4988 5882 4989 6321 4989 5893 4989 5882 4990 5893 4990 5881 4990 5881 4991 5893 4991 5894 4991 5881 4992 5894 4992 6322 4992 6322 4993 5894 4993 6323 4993 6322 4994 6323 4994 6324 4994 6324 4995 6323 4995 6325 4995 6326 4996 6327 4996 6328 4996 6328 4997 6327 4997 6217 4997 6328 4893 6217 4893 6329 4893 6330 4998 6331 4998 6332 4998 6332 4999 6331 4999 6333 4999 6332 5000 6333 5000 6237 5000 6237 5001 6333 5001 6334 5001 6237 5002 6334 5002 6335 5002 6335 5003 6036 5003 6237 5003 6237 4909 6036 4909 6037 4909 6237 5004 6037 5004 6217 5004 6217 5005 6037 5005 6336 5005 6217 5006 6336 5006 6329 5006 6326 5007 6337 5007 6327 5007 6327 5008 6337 5008 6032 5008 6327 5009 6032 5009 6332 5009 6332 4946 6032 4946 6033 4946 6332 4877 6033 4877 6330 4877 6338 5010 6339 5010 6340 5010 6340 5011 6339 5011 6327 5011 6340 4893 6327 4893 6341 4893 6342 4870 6343 4870 6344 4870 6344 4871 6343 4871 6345 4871 6344 5012 6345 5012 6332 5012 6332 5013 6345 5013 6346 5013 6332 5014 6346 5014 6347 5014 6347 5015 6044 5015 6332 5015 6332 5016 6044 5016 6045 5016 6332 5017 6045 5017 6327 5017 6327 5018 6045 5018 6348 5018 6327 5019 6348 5019 6341 5019 6338 5007 6349 5007 6339 5007 6339 5020 6349 5020 6040 5020 6339 5021 6040 5021 6344 5021 6344 4876 6040 4876 6041 4876 6344 5022 6041 5022 6342 5022 6350 5010 6351 5010 6352 5010 6352 5023 6351 5023 6339 5023 6352 5024 6339 5024 6353 5024 6354 5025 6355 5025 6356 5025 6356 4871 6355 4871 6357 4871 6356 5012 6357 5012 6344 5012 6344 5026 6357 5026 6358 5026 6344 5027 6358 5027 6359 5027 6359 4972 6052 4972 6344 4972 6344 5028 6052 5028 6053 5028 6344 5029 6053 5029 6339 5029 6339 5030 6053 5030 6360 5030 6339 5031 6360 5031 6353 5031 6350 5007 6361 5007 6351 5007 6351 5032 6361 5032 6048 5032 6351 5033 6048 5033 6356 5033 6356 4946 6048 4946 6049 4946 6356 5034 6049 5034 6354 5034 6362 5035 6363 5035 6364 5035 6364 5023 6363 5023 6351 5023 6364 4893 6351 4893 6365 4893 6366 5036 6367 5036 6368 5036 6368 5037 6367 5037 6369 5037 6368 5038 6369 5038 6356 5038 6356 5039 6369 5039 6370 5039 6356 4904 6370 4904 6371 4904 6371 4908 6060 4908 6356 4908 6356 5040 6060 5040 6061 5040 6356 5041 6061 5041 6351 5041 6351 5042 6061 5042 6372 5042 6351 5043 6372 5043 6365 5043 6362 4943 6373 4943 6363 4943 6363 5044 6373 5044 6056 5044 6363 5033 6056 5033 6368 5033 6368 5045 6056 5045 6057 5045 6368 4947 6057 4947 6366 4947 6374 5046 6248 5046 6375 5046 6375 5047 6248 5047 6363 5047 6375 4893 6363 4893 6376 4893 6377 5048 6378 5048 6258 5048 6258 4871 6378 4871 6379 4871 6258 5049 6379 5049 6368 5049 6368 5050 6379 5050 6380 5050 6368 5051 6380 5051 6381 5051 6381 4908 6068 4908 6368 4908 6368 4909 6068 4909 6069 4909 6368 5052 6069 5052 6363 5052 6363 5053 6069 5053 6382 5053 6363 5054 6382 5054 6376 5054 6374 5055 6383 5055 6248 5055 6248 5056 6383 5056 6064 5056 6248 5009 6064 5009 6258 5009 6258 5057 6064 5057 6065 5057 6258 5058 6065 5058 6377 5058 6384 5035 6385 5035 6386 5035 6386 5011 6385 5011 6271 5011 6386 5024 6271 5024 6387 5024 6388 5036 6389 5036 6390 5036 6390 5059 6389 5059 6391 5059 6390 5038 6391 5038 6276 5038 6276 5050 6391 5050 6392 5050 6276 5060 6392 5060 6393 5060 6393 4908 5857 4908 6276 4908 6276 5040 5857 5040 5858 5040 6276 5061 5858 5061 6271 5061 6271 5062 5858 5062 6394 5062 6271 5063 6394 5063 6387 5063 6384 5064 6395 5064 6385 5064 6385 5065 6395 5065 5853 5065 6385 5033 5853 5033 6390 5033 6390 5045 5853 5045 5854 5045 6390 5066 5854 5066 6388 5066 6396 5035 6397 5035 6398 5035 6398 5011 6397 5011 6385 5011 6398 5024 6385 5024 6399 5024 6400 5067 6401 5067 6402 5067 6402 4871 6401 4871 6403 4871 6402 5068 6403 5068 6390 5068 6390 5039 6403 5039 6404 5039 6390 4904 6404 4904 6405 4904 6405 4908 5865 4908 6390 4908 6390 4909 5865 4909 5866 4909 6390 5041 5866 5041 6385 5041 6385 5069 5866 5069 6406 5069 6385 5070 6406 5070 6399 5070 6396 5064 6407 5064 6397 5064 6397 5071 6407 5071 5861 5071 6397 5009 5861 5009 6402 5009 6402 4876 5861 4876 5862 4876 6402 4877 5862 4877 6400 4877 6408 5072 6302 5072 6409 5072 6409 5023 6302 5023 6397 5023 6409 5024 6397 5024 6410 5024 6411 5073 6412 5073 6295 5073 6295 4871 6412 4871 6413 4871 6295 5012 6413 5012 6402 5012 6402 5074 6413 5074 6414 5074 6402 4904 6414 4904 6415 4904 6415 5075 5873 5075 6402 5075 6402 5028 5873 5028 5874 5028 6402 5076 5874 5076 6397 5076 6397 5077 5874 5077 6416 5077 6397 5078 6416 5078 6410 5078 6408 5064 6417 5064 6302 5064 6302 5079 6417 5079 5869 5079 6302 5080 5869 5080 6295 5080 6295 5081 5869 5081 5870 5081 6295 5082 5870 5082 6411 5082 6216 5083 6418 5083 6237 5083 6237 5084 6418 5084 6419 5084 6237 5085 6419 5085 6332 5085 6332 5086 6419 5086 6420 5086 6332 5085 6420 5085 6344 5085 6344 5087 6420 5087 6421 5087 6344 5088 6421 5088 6356 5088 6356 5085 6421 5085 6422 5085 6356 5089 6422 5089 6368 5089 6368 5086 6422 5086 6423 5086 6368 5089 6423 5089 6258 5089 6258 5090 6423 5090 6424 5090 6258 5091 6424 5091 6255 5091 6255 5092 6424 5092 6425 5092 6255 5093 6425 5093 6276 5093 6276 5094 6425 5094 6426 5094 6276 5085 6426 5085 6390 5085 6390 5090 6426 5090 6427 5090 6390 5085 6427 5085 6402 5085 6402 5088 6427 5088 6428 5088 6402 5088 6428 5088 6295 5088 6295 5086 6428 5086 6429 5086 6295 5095 6429 5095 6197 5095 6197 5095 6429 5095 6430 5095 6197 5096 6430 5096 6198 5096 6198 5097 6430 5097 6431 5097 6433 1495 6432 1495 6434 1495 6435 5098 6436 5098 6437 5098 6437 5099 6436 5099 6438 5099 6439 5100 6440 5100 6441 5100 6441 5101 6440 5101 6442 5101 6441 5102 6442 5102 6443 5102 6443 5103 6442 5103 6444 5103 6445 5104 6446 5104 6447 5104 6447 5105 6446 5105 6448 5105 6447 5106 6448 5106 6449 5106 6449 5107 6448 5107 6450 5107 6449 5108 6450 5108 6444 5108 6444 5109 6450 5109 6451 5109 6444 5110 6451 5110 6443 5110 6452 5111 6453 5111 6454 5111 6454 5112 6453 5112 6455 5112 6454 5113 6455 5113 6445 5113 6445 5114 6455 5114 6456 5114 6445 5115 6456 5115 6446 5115 6457 5116 6458 5116 6459 5116 6459 5117 6458 5117 6460 5117 6459 5118 6460 5118 6452 5118 6452 5119 6460 5119 6461 5119 6452 5120 6461 5120 6453 5120 6462 5121 6463 5121 6464 5121 6464 5122 6463 5122 6465 5122 6464 5123 6465 5123 6457 5123 6457 5124 6465 5124 6466 5124 6457 5125 6466 5125 6458 5125 6467 5126 6468 5126 6469 5126 6469 5127 6468 5127 6470 5127 6469 5128 6470 5128 6471 5128 6470 5129 6472 5129 6471 5129 6471 5130 6472 5130 6473 5130 6471 5131 6473 5131 6474 5131 6474 5132 6473 5132 6475 5132 6474 5133 6475 5133 6476 5133 6476 5134 6475 5134 6477 5134 6476 5135 6477 5135 6462 5135 6462 5136 6477 5136 6478 5136 6462 5137 6478 5137 6463 5137 6479 5138 6480 5138 6481 5138 6481 5139 6480 5139 6482 5139 6481 5140 6482 5140 6483 5140 6482 5141 6484 5141 6483 5141 6483 5142 6484 5142 6485 5142 6483 5143 6485 5143 6486 5143 6486 5144 6485 5144 6487 5144 6486 5145 6487 5145 6467 5145 6467 5146 6487 5146 6488 5146 6467 5147 6488 5147 6468 5147 6489 5148 6490 5148 6491 5148 6491 5149 6490 5149 6492 5149 6490 5150 6493 5150 6492 5150 6492 5151 6493 5151 6494 5151 6492 5152 6494 5152 6495 5152 6495 5153 6494 5153 6496 5153 6495 5154 6496 5154 6479 5154 6479 5155 6496 5155 6497 5155 6479 5156 6497 5156 6480 5156 6498 5157 6499 5157 6500 5157 6498 5158 6501 5158 6499 5158 6499 5159 6501 5159 6502 5159 6499 5160 6502 5160 6503 5160 6502 5161 6504 5161 6503 5161 6503 5162 6504 5162 6505 5162 6503 5163 6505 5163 6506 5163 6505 5164 6507 5164 6506 5164 6506 5165 6507 5165 6508 5165 6506 5166 6508 5166 6509 5166 6508 5167 6510 5167 6509 5167 6509 5168 6510 5168 6511 5168 6509 5169 6511 5169 6512 5169 6511 5170 6513 5170 6512 5170 6512 5171 6513 5171 6514 5171 6512 5172 6514 5172 6515 5172 6514 5173 6516 5173 6515 5173 6515 5174 6516 5174 6517 5174 6515 5175 6517 5175 6518 5175 6518 5176 6517 5176 6519 5176 6518 5177 6519 5177 6520 5177 6520 5178 6519 5178 6521 5178 6520 5179 6521 5179 6439 5179 6439 5180 6521 5180 6522 5180 6439 5181 6522 5181 6440 5181 6491 5182 6523 5182 6489 5182 6489 5183 6523 5183 6524 5183 6489 5184 6524 5184 6525 5184 6525 5185 6524 5185 6526 5185 6525 5186 6526 5186 6527 5186 6527 5187 6526 5187 6528 5187 6527 5188 6528 5188 6529 5188 6528 5189 6530 5189 6529 5189 6529 5190 6530 5190 6531 5190 6529 5191 6531 5191 6532 5191 6531 5192 6533 5192 6532 5192 6532 5193 6533 5193 6534 5193 6532 5194 6534 5194 6535 5194 6534 5195 6536 5195 6535 5195 6535 5196 6536 5196 6537 5196 6535 5197 6537 5197 6538 5197 6537 5198 6539 5198 6538 5198 6538 5199 6539 5199 6540 5199 6538 5200 6540 5200 6541 5200 6540 5201 6542 5201 6541 5201 6541 5202 6542 5202 6543 5202 6541 5203 6543 5203 6544 5203 6543 5204 6545 5204 6544 5204 6544 5205 6545 5205 6546 5205 6544 5206 6546 5206 6547 5206 6546 5207 6548 5207 6547 5207 6547 5208 6548 5208 6549 5208 6547 5209 6549 5209 6500 5209 6500 5210 6549 5210 6550 5210 6500 5211 6550 5211 6498 5211 6551 5212 6552 5212 6548 5212 6548 5213 6546 5213 6551 5213 6551 5214 6546 5214 6545 5214 6551 5215 6545 5215 6553 5215 6545 5216 6543 5216 6553 5216 6553 5217 6543 5217 6542 5217 6553 5218 6542 5218 6554 5218 6542 5219 6540 5219 6554 5219 6554 5220 6540 5220 6539 5220 6554 5221 6539 5221 6555 5221 6539 5222 6537 5222 6555 5222 6555 5223 6537 5223 6536 5223 6555 5224 6536 5224 6556 5224 6536 5225 6534 5225 6556 5225 6556 5226 6534 5226 6533 5226 6556 5227 6533 5227 6557 5227 6557 5228 6533 5228 6531 5228 6557 5229 6531 5229 6558 5229 6558 5230 6531 5230 6530 5230 6558 5231 6530 5231 6559 5231 6559 5232 6530 5232 6528 5232 6559 5233 6528 5233 6560 5233 6528 5234 6526 5234 6560 5234 6560 5235 6526 5235 6524 5235 6560 5236 6524 5236 6561 5236 6524 5237 6523 5237 6561 5237 6561 5238 6523 5238 6491 5238 6561 5239 6491 5239 6562 5239 6491 5240 6492 5240 6562 5240 6562 5241 6492 5241 6495 5241 6562 5242 6495 5242 6563 5242 6495 5243 6479 5243 6563 5243 6563 5244 6479 5244 6481 5244 6563 5245 6481 5245 6564 5245 6481 5246 6483 5246 6564 5246 6564 5247 6483 5247 6486 5247 6564 5248 6486 5248 6565 5248 6486 5249 6467 5249 6565 5249 6565 5250 6467 5250 6469 5250 6565 5251 6469 5251 6566 5251 6469 5252 6471 5252 6566 5252 6566 5253 6471 5253 6474 5253 6566 5254 6474 5254 6567 5254 6567 5255 6474 5255 6476 5255 6567 5256 6476 5256 6568 5256 6568 5257 6476 5257 6462 5257 6568 5258 6462 5258 6569 5258 6462 5259 6464 5259 6569 5259 6569 5260 6464 5260 6457 5260 6569 5261 6457 5261 6570 5261 6457 5262 6459 5262 6570 5262 6570 5263 6459 5263 6452 5263 6570 5264 6452 5264 6571 5264 6452 5265 6454 5265 6571 5265 6571 5266 6454 5266 6445 5266 6571 5267 6445 5267 6572 5267 6445 5268 6447 5268 6572 5268 6572 5269 6447 5269 6449 5269 6572 5270 6449 5270 6573 5270 6449 5271 6444 5271 6573 5271 6573 5272 6444 5272 6442 5272 6573 5273 6442 5273 6574 5273 6442 5274 6440 5274 6574 5274 6574 5275 6440 5275 6522 5275 6574 5276 6522 5276 6575 5276 6575 5277 6522 5277 6521 5277 6575 5278 6521 5278 6576 5278 6576 5279 6521 5279 6519 5279 6576 5280 6519 5280 6577 5280 6577 5281 6519 5281 6517 5281 6577 5282 6517 5282 6578 5282 6517 5283 6516 5283 6578 5283 6578 5284 6516 5284 6514 5284 6578 5285 6514 5285 6579 5285 6514 5286 6513 5286 6579 5286 6579 5287 6513 5287 6511 5287 6579 5288 6511 5288 6580 5288 6511 5289 6510 5289 6580 5289 6580 5290 6510 5290 6508 5290 6580 5291 6508 5291 6581 5291 6508 5292 6507 5292 6581 5292 6581 5293 6507 5293 6505 5293 6581 5294 6505 5294 6582 5294 6505 5295 6504 5295 6582 5295 6582 5296 6504 5296 6502 5296 6582 5297 6502 5297 6583 5297 6502 5298 6501 5298 6583 5298 6583 5299 6501 5299 6498 5299 6583 5300 6498 5300 6584 5300 6584 5301 6498 5301 6550 5301 6584 5302 6550 5302 6552 5302 6552 5303 6550 5303 6549 5303 6552 5304 6549 5304 6548 5304 6579 426 6580 426 6436 426 6436 5305 6580 5305 6581 5305 6436 426 6581 426 6582 426 6552 5306 6438 5306 6584 5306 6584 5307 6438 5307 6436 5307 6584 5308 6436 5308 6583 5308 6583 426 6436 426 6582 426 6552 5309 6551 5309 6438 5309 6438 5310 6551 5310 6553 5310 6438 5305 6553 5305 6554 5305 6554 5311 6555 5311 6438 5311 6438 5312 6555 5312 6556 5312 6438 5313 6556 5313 6585 5313 6586 426 6577 426 6436 426 6436 426 6577 426 6578 426 6436 426 6578 426 6579 426 6556 426 6557 426 6585 426 6585 5314 6557 5314 6558 5314 6585 426 6558 426 6587 426 6587 5315 6558 5315 6559 5315 6587 5316 6559 5316 6588 5316 6588 5317 6559 5317 6560 5317 6588 5318 6560 5318 6589 5318 6589 5319 6560 5319 6561 5319 6589 426 6561 426 6590 426 6590 426 6561 426 6562 426 6590 5320 6562 5320 6591 5320 6591 426 6562 426 6563 426 6591 5321 6563 5321 6592 5321 6592 426 6563 426 6564 426 6592 426 6564 426 6593 426 6593 5322 6564 5322 6565 5322 6593 5323 6565 5323 6594 5323 6594 426 6565 426 6566 426 6594 5324 6566 5324 6595 5324 6595 426 6566 426 6567 426 6595 426 6567 426 6596 426 6596 5325 6567 5325 6568 5325 6596 426 6568 426 6597 426 6597 5326 6568 5326 6569 5326 6597 426 6569 426 6598 426 6598 5327 6569 5327 6570 5327 6598 426 6570 426 6599 426 6599 426 6570 426 6571 426 6599 426 6571 426 6600 426 6600 426 6571 426 6572 426 6600 426 6572 426 6601 426 6601 426 6572 426 6573 426 6601 426 6573 426 6602 426 6602 5328 6573 5328 6574 5328 6602 426 6574 426 6603 426 6603 5329 6574 5329 6575 5329 6603 426 6575 426 6586 426 6586 5330 6575 5330 6576 5330 6586 5314 6576 5314 6577 5314 6604 5331 6437 5331 6585 5331 6585 5332 6437 5332 6438 5332 6605 5333 6606 5333 6596 5333 6607 5334 6595 5334 6608 5334 6608 5335 6595 5335 6596 5335 6608 5336 6596 5336 6609 5336 6609 5337 6596 5337 6606 5337 6605 5338 6596 5338 6610 5338 6610 5339 6596 5339 6597 5339 6610 5340 6597 5340 6611 5340 6612 5341 6613 5341 6598 5341 6598 5342 6613 5342 6614 5342 6598 5343 6614 5343 6597 5343 6597 5344 6614 5344 6615 5344 6597 5345 6615 5345 6611 5345 6612 5346 6598 5346 6616 5346 6616 5347 6598 5347 6599 5347 6616 5348 6599 5348 6617 5348 6618 5349 6619 5349 6600 5349 6600 5350 6619 5350 6620 5350 6600 5351 6620 5351 6599 5351 6599 5352 6620 5352 6621 5352 6599 5353 6621 5353 6617 5353 6618 5354 6600 5354 6622 5354 6622 5355 6600 5355 6601 5355 6622 5356 6601 5356 6623 5356 6624 5357 6625 5357 6602 5357 6602 5358 6625 5358 6626 5358 6602 5359 6626 5359 6601 5359 6601 5360 6626 5360 6627 5360 6601 5361 6627 5361 6623 5361 6624 5362 6602 5362 6628 5362 6628 5363 6602 5363 6603 5363 6628 5364 6603 5364 6629 5364 6629 5365 6603 5365 6586 5365 6629 5366 6586 5366 6630 5366 6604 5367 6585 5367 6631 5367 6631 5368 6585 5368 6587 5368 6631 5369 6587 5369 6632 5369 6632 5370 6587 5370 6588 5370 6632 5371 6588 5371 6633 5371 6634 5372 6635 5372 6589 5372 6589 5373 6635 5373 6636 5373 6589 5374 6636 5374 6588 5374 6588 5375 6636 5375 6637 5375 6588 5376 6637 5376 6633 5376 6634 5377 6589 5377 6638 5377 6638 5378 6589 5378 6590 5378 6638 5379 6590 5379 6639 5379 6639 5380 6590 5380 6640 5380 6640 5381 6590 5381 6591 5381 6640 5382 6591 5382 6641 5382 6642 5383 6643 5383 6592 5383 6592 5384 6643 5384 6644 5384 6592 5385 6644 5385 6591 5385 6591 5386 6644 5386 6645 5386 6591 5387 6645 5387 6641 5387 6642 5388 6592 5388 6646 5388 6646 5389 6592 5389 6593 5389 6646 5390 6593 5390 6647 5390 6648 5391 6649 5391 6594 5391 6594 5392 6649 5392 6650 5392 6594 5393 6650 5393 6593 5393 6593 5394 6650 5394 6651 5394 6593 5395 6651 5395 6647 5395 6607 5396 6652 5396 6595 5396 6595 5397 6652 5397 6653 5397 6595 5398 6653 5398 6594 5398 6594 5399 6653 5399 6654 5399 6594 5400 6654 5400 6648 5400 6436 5401 6435 5401 6586 5401 6586 5402 6435 5402 6630 5402 6655 5403 6656 5403 6657 5403 6657 5404 6656 5404 6658 5404 6659 5405 6660 5405 6661 5405 6661 5406 6662 5406 6659 5406 6659 5407 6662 5407 6663 5407 6659 5408 6663 5408 6664 5408 6665 5409 6666 5409 6667 5409 6667 5410 6666 5410 6659 5410 6667 5411 6659 5411 6668 5411 6668 5412 6659 5412 6664 5412 6665 5413 6669 5413 6666 5413 6666 5414 6669 5414 6670 5414 6666 5415 6670 5415 6671 5415 6671 5416 6670 5416 6672 5416 6671 5417 6672 5417 6673 5417 6674 5418 6675 5418 6676 5418 6676 5419 6675 5419 6673 5419 6676 5420 6673 5420 6677 5420 6677 5421 6673 5421 6672 5421 6678 5422 6679 5422 6674 5422 6674 5423 6679 5423 6680 5423 6674 5424 6680 5424 6675 5424 6678 5425 6681 5425 6679 5425 6679 5426 6681 5426 6682 5426 6679 5427 6682 5427 6683 5427 6683 5428 6682 5428 6684 5428 6683 5429 6684 5429 6685 5429 6686 5430 6687 5430 6684 5430 6684 5431 6687 5431 6688 5431 6684 5432 6688 5432 6685 5432 6658 5433 6689 5433 6690 5433 6690 5434 6689 5434 6691 5434 6690 5435 6691 5435 6692 5435 6692 5436 6691 5436 6687 5436 6692 5437 6687 5437 6693 5437 6693 5438 6687 5438 6686 5438 6694 5439 6657 5439 6690 5439 6690 5440 6657 5440 6658 5440 6695 5441 6694 5441 6696 5441 6696 5442 6694 5442 6690 5442 6697 5443 6698 5443 6699 5443 6703 5444 6702 5444 6704 5444 6703 5445 6704 5445 6705 5445 6706 38 6707 38 6701 38 6701 38 6707 38 6708 38 6699 5446 6698 5446 6709 5446 6709 5447 6698 5447 6710 5447 6709 38 6710 38 6711 38 6701 38 6712 38 6706 38 6706 5448 6712 5448 6713 5448 6706 5449 6713 5449 6714 5449 6714 5450 6713 5450 6715 5450 6714 5451 6715 5451 6716 5451 6716 5452 6715 5452 6717 5452 6716 38 6717 38 6718 38 6718 38 6717 38 6719 38 6718 38 6719 38 6720 38 6720 38 6719 38 6721 38 6720 5453 6721 5453 6722 5453 6699 38 6723 38 6697 38 6697 5454 6723 5454 6724 5454 6697 38 6724 38 6705 38 6705 38 6724 38 6725 38 6705 5455 6725 5455 6703 5455 6710 38 6726 38 6711 38 6711 5456 6726 5456 6727 5456 6728 5457 6727 5457 6729 5457 6728 38 6729 38 6730 38 6730 5458 6729 5458 6731 5458 6730 38 6731 38 6732 38 6732 5459 6731 5459 6700 5459 6732 5460 6700 5460 6733 5460 6733 5461 6700 5461 6708 5461 6721 38 6734 38 6722 38 6722 38 6734 38 6735 38 6722 5462 6735 5462 6728 5462 6728 38 6735 38 6736 38 6728 38 6736 38 6711 38 6737 5463 6738 5463 6739 5463 6739 5464 6738 5464 6740 5464 6739 5465 6740 5465 6741 5465 6741 5466 6740 5466 6742 5466 6741 294 6742 294 6743 294 6743 5467 6742 5467 6744 5467 6745 443 6746 443 6747 443 6748 443 6745 443 6749 443 6749 443 6745 443 6747 443 6749 5468 6747 5468 6750 5468 6750 443 6747 443 6743 443 6750 443 6743 443 6744 443 6712 5469 6701 5469 6751 5469 6751 5470 6701 5470 6752 5470 6752 5471 6701 5471 6753 5471 6752 5472 6753 5472 6754 5472 6751 5473 6755 5473 6712 5473 6712 5474 6755 5474 6756 5474 6712 5475 6756 5475 6713 5475 6713 5476 6756 5476 6757 5476 6713 5477 6757 5477 6715 5477 6715 5478 6757 5478 6758 5478 6715 5479 6758 5479 6717 5479 6717 5480 6758 5480 6759 5480 6717 5481 6759 5481 6719 5481 6719 5482 6759 5482 6760 5482 6719 5483 6760 5483 6721 5483 6721 5484 6760 5484 6761 5484 6721 5485 6761 5485 6734 5485 6734 5486 6761 5486 6762 5486 6734 5487 6762 5487 6735 5487 6735 5488 6762 5488 6763 5488 6735 5489 6763 5489 6736 5489 6736 5490 6763 5490 6764 5490 6736 5491 6764 5491 6711 5491 6711 5492 6764 5492 6765 5492 6711 5493 6765 5493 6709 5493 6709 5494 6765 5494 6766 5494 6709 5495 6766 5495 6699 5495 6699 5496 6766 5496 6767 5496 6699 5497 6767 5497 6723 5497 6723 5498 6767 5498 6768 5498 6723 5499 6768 5499 6724 5499 6724 5500 6768 5500 6769 5500 6724 5501 6769 5501 6725 5501 6750 5502 6770 5502 6749 5502 6749 5503 6770 5503 6703 5503 6725 5504 6769 5504 6703 5504 6703 5505 6769 5505 6748 5505 6703 5506 6748 5506 6749 5506 6751 5507 6771 5507 6755 5507 6755 5508 6771 5508 6772 5508 6773 294 6745 294 6748 294 6774 5509 6758 5509 6775 5509 6775 294 6758 294 6757 294 6775 5510 6757 5510 6772 5510 6772 294 6757 294 6756 294 6772 5511 6756 5511 6755 5511 6748 294 6769 294 6773 294 6773 294 6769 294 6768 294 6773 294 6768 294 6776 294 6776 294 6768 294 6767 294 6776 294 6767 294 6777 294 6778 5512 6762 5512 6779 5512 6779 294 6762 294 6761 294 6779 294 6761 294 6780 294 6780 5513 6761 5513 6760 5513 6780 294 6760 294 6774 294 6774 294 6760 294 6759 294 6774 294 6759 294 6758 294 6767 294 6766 294 6777 294 6777 294 6766 294 6765 294 6777 294 6765 294 6781 294 6781 294 6765 294 6764 294 6781 5514 6764 5514 6778 5514 6778 5515 6764 5515 6763 5515 6778 294 6763 294 6762 294 6782 5516 6783 5516 6784 5516 6784 5517 6783 5517 6785 5517 6784 5518 6785 5518 6786 5518 6786 5519 6785 5519 6787 5519 6786 5520 6787 5520 6788 5520 6789 5521 6790 5521 6791 5521 6791 5522 6790 5522 6792 5522 6788 5523 6787 5523 6793 5523 6793 5524 6787 5524 6789 5524 6793 5525 6789 5525 6794 5525 6794 5526 6789 5526 6791 5526 6794 5527 6791 5527 6795 5527 6796 5528 6797 5528 6798 5528 6798 5529 6799 5529 6800 5529 6801 294 6802 294 6799 294 6799 294 6804 294 6805 294 6803 5530 6806 5530 6807 5530 6800 5531 6799 5531 6808 5531 6808 1495 6799 1495 6809 1495 6790 1495 6789 1495 6787 1495 6810 1495 6811 1495 6812 1495 6812 5532 6811 5532 6813 5532 6812 1495 6813 1495 6814 1495 6814 1495 6813 1495 6815 1495 6814 1495 6815 1495 6783 1495 6816 1495 6800 1495 6815 1495 6815 1495 6800 1495 6808 1495 6815 5533 6808 5533 6783 5533 6783 1495 6808 1495 6790 1495 6783 5534 6790 5534 6785 5534 6785 5535 6790 5535 6787 5535 6817 5536 6814 5536 6818 5536 6818 294 6814 294 6783 294 6818 294 6783 294 6782 294 6819 5537 6820 5537 6782 5537 6821 5538 6822 5538 6823 5538 6823 5539 6822 5539 6824 5539 6823 5540 6824 5540 6825 5540 6826 5541 6827 5541 6821 5541 6821 5542 6827 5542 6828 5542 6821 5543 6828 5543 6822 5543 6821 5544 6829 5544 6826 5544 6826 5545 6829 5545 6830 5545 6826 5546 6830 5546 6820 5546 6820 5547 6830 5547 6831 5547 6820 5548 6831 5548 6782 5548 6782 5549 6831 5549 6818 5549 6819 5550 6782 5550 6832 5550 6832 5551 6782 5551 6784 5551 6832 5552 6784 5552 6833 5552 6833 5553 6784 5553 6786 5553 6833 5554 6786 5554 6788 5554 6788 5555 6793 5555 6833 5555 6833 5556 6793 5556 6794 5556 6833 5557 6794 5557 6834 5557 6834 5558 6794 5558 6795 5558 6834 5559 6795 5559 6835 5559 6835 5560 6795 5560 6836 5560 6825 5561 6837 5561 6823 5561 6823 5562 6837 5562 6838 5562 6823 5563 6838 5563 6821 5563 6821 5564 6838 5564 6839 5564 6821 5565 6839 5565 6829 5565 6840 38 6841 38 6842 38 6842 38 6841 38 6843 38 6842 38 6843 38 6844 38 6845 38 6846 38 6842 38 6842 38 6846 38 6847 38 6842 38 6847 38 6840 38 6848 38 6849 38 6842 38 6842 38 6849 38 6850 38 6842 38 6850 38 6845 38 6844 38 6851 38 6842 38 6842 5566 6851 5566 6852 5566 6842 5567 6852 5567 6848 5567 6853 5568 6843 5568 6854 5568 6854 5569 6843 5569 6841 5569 6854 5570 6841 5570 6855 5570 6855 5571 6841 5571 6840 5571 6855 5572 6840 5572 6856 5572 6856 5573 6840 5573 6847 5573 6856 5574 6847 5574 6857 5574 6857 5575 6847 5575 6846 5575 6857 5576 6846 5576 6858 5576 6858 5577 6846 5577 6845 5577 6858 5578 6845 5578 6859 5578 6859 5579 6845 5579 6850 5579 6859 5580 6850 5580 6860 5580 6860 5580 6850 5580 6849 5580 6860 5581 6849 5581 6861 5581 6861 5582 6849 5582 6848 5582 6861 5583 6848 5583 6862 5583 6862 5584 6848 5584 6852 5584 6862 5585 6852 5585 6863 5585 6863 5586 6852 5586 6851 5586 6863 5587 6851 5587 6864 5587 6864 3586 6851 3586 6844 3586 6864 5588 6844 5588 6853 5588 6853 5589 6844 5589 6843 5589 6865 38 6866 38 6867 38 6867 38 6866 38 6868 38 6867 38 6868 38 6869 38 6870 38 6871 38 6867 38 6867 38 6871 38 6872 38 6867 38 6872 38 6865 38 6873 38 6874 38 6867 38 6867 38 6874 38 6875 38 6867 38 6875 38 6870 38 6869 38 6876 38 6867 38 6867 5590 6876 5590 6877 5590 6867 5591 6877 5591 6873 5591 6878 5568 6868 5568 6879 5568 6879 5592 6868 5592 6866 5592 6879 5593 6866 5593 6880 5593 6880 3597 6866 3597 6865 3597 6880 5594 6865 5594 6881 5594 6881 5572 6865 5572 6872 5572 6881 5595 6872 5595 6882 5595 6882 5574 6872 5574 6871 5574 6882 5596 6871 5596 6883 5596 6883 5597 6871 5597 6870 5597 6883 5598 6870 5598 6884 5598 6884 5579 6870 5579 6875 5579 6884 5580 6875 5580 6885 5580 6885 5599 6875 5599 6874 5599 6885 5600 6874 5600 6886 5600 6886 5601 6874 5601 6873 5601 6886 5602 6873 5602 6887 5602 6887 5603 6873 5603 6877 5603 6887 5604 6877 5604 6888 5604 6888 5605 6877 5605 6876 5605 6888 5606 6876 5606 6889 5606 6889 5607 6876 5607 6869 5607 6889 5589 6869 5589 6878 5589 6878 5589 6869 5589 6868 5589 6887 38 6888 38 6857 38 6857 38 6888 38 6856 38 6890 38 6891 38 6892 38 6892 38 6884 38 6890 38 6890 5608 6884 5608 6885 5608 6890 38 6885 38 6893 38 6893 5609 6885 5609 6894 5609 6857 38 6858 38 6887 38 6887 38 6858 38 6859 38 6887 5610 6859 5610 6860 5610 6824 5611 6895 5611 6854 5611 6854 5612 6895 5612 6896 5612 6854 5613 6896 5613 6853 5613 6853 5614 6896 5614 6897 5614 6853 5615 6897 5615 6898 5615 6888 38 6889 38 6856 38 6856 5616 6889 5616 6878 5616 6856 5617 6878 5617 6879 5617 6885 5618 6886 5618 6894 5618 6894 5619 6886 5619 6887 5619 6894 5620 6887 5620 6899 5620 6899 5621 6887 5621 6860 5621 6854 5622 6855 5622 6824 5622 6824 5623 6855 5623 6856 5623 6824 5624 6856 5624 6825 5624 6825 5625 6856 5625 6879 5625 6879 5626 6880 5626 6825 5626 6825 5627 6880 5627 6881 5627 6825 5628 6881 5628 6900 5628 6900 5629 6881 5629 6882 5629 6900 5630 6882 5630 6901 5630 6901 5631 6882 5631 6883 5631 6860 5632 6861 5632 6899 5632 6899 5633 6861 5633 6862 5633 6899 5634 6862 5634 6902 5634 6902 5635 6862 5635 6863 5635 6902 5636 6863 5636 6903 5636 6903 5637 6863 5637 6864 5637 6904 5638 6905 5638 6853 5638 6853 5639 6905 5639 6906 5639 6853 5640 6906 5640 6907 5640 6898 5641 6908 5641 6853 5641 6853 5642 6908 5642 6909 5642 6853 5643 6909 5643 6910 5643 6892 38 6911 38 6884 38 6884 5644 6911 5644 6912 5644 6884 5645 6912 5645 6883 5645 6883 5646 6912 5646 6913 5646 6883 5647 6913 5647 6901 5647 6910 5648 6914 5648 6853 5648 6853 5649 6914 5649 6915 5649 6853 5650 6915 5650 6916 5650 6907 5651 6917 5651 6853 5651 6853 5652 6917 5652 6918 5652 6853 5653 6918 5653 6864 5653 6864 5654 6918 5654 6919 5654 6864 5655 6919 5655 6903 5655 6916 5656 6920 5656 6853 5656 6853 5657 6920 5657 6921 5657 6853 5658 6921 5658 6904 5658 6922 5659 6923 5659 6924 5659 6925 5660 6926 5660 6927 5660 6928 5661 6929 5661 6930 5661 6828 5662 6827 5662 6931 5662 6834 5663 6835 5663 6932 5663 6835 5664 6836 5664 6933 5664 6819 5665 6832 5665 6934 5665 6934 5666 6832 5666 6833 5666 6935 5667 6921 5667 6936 5667 6936 5668 6921 5668 6920 5668 6936 5669 6920 5669 6937 5669 6937 5670 6920 5670 6916 5670 6937 5671 6916 5671 6938 5671 6938 5672 6916 5672 6915 5672 6938 5673 6915 5673 6939 5673 6939 5674 6915 5674 6914 5674 6939 5675 6914 5675 6940 5675 6940 5676 6914 5676 6910 5676 6940 5677 6910 5677 6941 5677 6941 5678 6910 5678 6909 5678 6941 5679 6909 5679 6942 5679 6942 5680 6909 5680 6908 5680 6942 5681 6908 5681 6943 5681 6943 5682 6908 5682 6898 5682 6943 5683 6898 5683 6944 5683 6944 5684 6898 5684 6897 5684 6944 5685 6897 5685 6945 5685 6945 5686 6897 5686 6896 5686 6945 5687 6896 5687 6946 5687 6946 5688 6896 5688 6895 5688 6946 5689 6895 5689 6947 5689 6947 5690 6895 5690 6824 5690 6947 5691 6824 5691 6822 5691 6948 5692 6905 5692 6935 5692 6935 5693 6905 5693 6904 5693 6935 5694 6904 5694 6921 5694 6917 5695 6907 5695 6948 5695 6948 5696 6907 5696 6906 5696 6948 5697 6906 5697 6905 5697 6948 5698 6949 5698 6917 5698 6917 5699 6949 5699 6950 5699 6917 5700 6950 5700 6918 5700 6918 5701 6950 5701 6951 5701 6918 5702 6951 5702 6919 5702 6929 5703 6952 5703 6930 5703 6930 5704 6952 5704 6902 5704 6930 5705 6902 5705 6951 5705 6951 5706 6902 5706 6903 5706 6951 5707 6903 5707 6919 5707 6953 5708 6954 5708 6955 5708 6956 5709 6957 5709 6958 5709 6958 5710 6957 5710 6959 5710 6958 5711 6959 5711 6960 5711 6960 5712 6959 5712 6961 5712 6960 5713 6961 5713 6962 5713 6963 5714 6964 5714 6965 5714 6965 5715 6964 5715 6966 5715 6965 5716 6966 5716 6967 5716 6967 5717 6966 5717 6968 5717 6967 5718 6968 5718 6961 5718 6961 5719 6968 5719 6969 5719 6961 5720 6969 5720 6962 5720 6970 5721 6971 5721 6963 5721 6963 5722 6971 5722 6972 5722 6963 5723 6972 5723 6964 5723 6963 5724 6973 5724 6970 5724 6970 5725 6973 5725 6974 5725 6970 5726 6974 5726 6975 5726 6976 5727 6977 5727 6978 5727 6978 5728 6977 5728 6979 5728 6978 5729 6979 5729 6980 5729 6980 5730 6979 5730 6981 5730 6980 5731 6981 5731 6982 5731 6982 5732 6981 5732 6983 5732 6982 5733 6983 5733 6974 5733 6974 5734 6983 5734 6984 5734 6974 5735 6984 5735 6975 5735 6976 5736 6978 5736 6985 5736 6985 5737 6978 5737 6986 5737 6985 5738 6986 5738 6987 5738 6987 5739 6986 5739 6988 5739 6987 5740 6988 5740 6989 5740 6989 5741 6988 5741 6990 5741 6989 5742 6990 5742 6991 5742 6835 5743 6933 5743 6932 5743 6932 5744 6933 5744 6992 5744 6932 5745 6992 5745 6993 5745 6993 5746 6992 5746 6994 5746 6993 5747 6994 5747 6995 5747 6995 5748 6994 5748 6996 5748 6995 5749 6996 5749 6997 5749 6997 5750 6996 5750 6998 5750 6997 5751 6998 5751 6990 5751 6990 5752 6998 5752 6999 5752 6990 5753 6999 5753 6991 5753 6956 5754 6922 5754 6957 5754 6957 5755 6922 5755 6924 5755 6957 5756 6924 5756 6959 5756 6959 5757 6924 5757 7000 5757 6959 5758 7000 5758 6961 5758 6961 5759 7000 5759 7001 5759 6961 5760 7001 5760 6967 5760 6967 5761 7001 5761 7002 5761 6967 5762 7002 5762 6965 5762 6965 5763 7002 5763 7003 5763 6965 5764 7003 5764 6963 5764 6963 5765 7003 5765 7004 5765 6963 5766 7004 5766 6973 5766 6973 5767 7004 5767 7005 5767 6973 5768 7005 5768 6974 5768 6974 5769 7005 5769 7006 5769 6974 5770 7006 5770 6982 5770 6982 5771 7006 5771 7007 5771 6982 5772 7007 5772 6980 5772 6980 5773 7007 5773 7008 5773 6980 5774 7008 5774 6978 5774 6978 5775 7008 5775 7009 5775 6978 5776 7009 5776 6986 5776 6986 5777 7009 5777 7010 5777 6986 5778 7010 5778 6988 5778 6988 5779 7010 5779 7011 5779 6988 5780 7011 5780 6990 5780 6990 5781 7011 5781 7012 5781 6990 5782 7012 5782 6997 5782 6997 5783 7012 5783 7013 5783 6997 5784 7013 5784 6995 5784 6995 5785 7013 5785 7014 5785 6995 5786 7014 5786 6993 5786 6993 5787 7014 5787 7015 5787 6993 5788 7015 5788 6932 5788 6932 5789 7015 5789 6934 5789 6932 5790 6934 5790 6834 5790 6834 5791 6934 5791 6833 5791 6923 5792 7016 5792 6924 5792 6924 5793 7016 5793 7017 5793 6924 5794 7017 5794 7000 5794 7000 5795 7017 5795 7018 5795 7000 5796 7018 5796 7001 5796 7001 5797 7018 5797 7019 5797 7001 5798 7019 5798 7002 5798 7002 5799 7019 5799 7020 5799 7002 5800 7020 5800 7003 5800 7003 5801 7020 5801 7021 5801 7003 5802 7021 5802 7004 5802 7004 5803 7021 5803 7022 5803 7004 5804 7022 5804 7005 5804 7005 5805 7022 5805 7023 5805 7005 5806 7023 5806 7006 5806 7006 5807 7023 5807 7024 5807 7006 5808 7024 5808 7007 5808 7007 5809 7024 5809 7025 5809 7007 5810 7025 5810 7008 5810 7008 5811 7025 5811 7026 5811 7008 5812 7026 5812 7009 5812 7009 5813 7026 5813 7027 5813 7009 5814 7027 5814 7010 5814 7010 5815 7027 5815 7028 5815 7010 5816 7028 5816 7011 5816 7011 5817 7028 5817 7029 5817 7011 5818 7029 5818 7012 5818 7012 5819 7029 5819 7030 5819 7012 5820 7030 5820 7013 5820 7013 5821 7030 5821 7031 5821 7013 5822 7031 5822 7014 5822 7014 5823 7031 5823 7032 5823 7014 5824 7032 5824 7015 5824 7015 5825 7032 5825 7033 5825 7015 5826 7033 5826 6934 5826 6934 5827 7033 5827 7034 5827 6934 5828 7034 5828 6819 5828 6819 5829 7034 5829 6820 5829 7016 5830 6953 5830 7017 5830 7017 5831 6953 5831 6955 5831 7017 5832 6955 5832 7018 5832 7018 5833 6955 5833 7035 5833 7018 5834 7035 5834 7019 5834 7019 5835 7035 5835 7036 5835 7019 5836 7036 5836 7020 5836 7020 5837 7036 5837 7037 5837 7020 5838 7037 5838 7021 5838 7021 5839 7037 5839 7038 5839 7021 5840 7038 5840 7022 5840 7022 5841 7038 5841 7039 5841 7022 5842 7039 5842 7023 5842 7023 5843 7039 5843 7040 5843 7023 5844 7040 5844 7024 5844 7024 5845 7040 5845 7041 5845 7024 5846 7041 5846 7025 5846 7025 5847 7041 5847 7042 5847 7025 5848 7042 5848 7026 5848 7026 5849 7042 5849 7043 5849 7026 5850 7043 5850 7027 5850 7027 5851 7043 5851 7044 5851 7027 5852 7044 5852 7028 5852 7028 5853 7044 5853 7045 5853 7028 5854 7045 5854 7029 5854 7029 5855 7045 5855 7046 5855 7029 5856 7046 5856 7030 5856 7030 5857 7046 5857 7047 5857 7030 5858 7047 5858 7031 5858 7031 5859 7047 5859 7048 5859 7031 5860 7048 5860 7032 5860 7032 5861 7048 5861 7049 5861 7032 5862 7049 5862 7033 5862 7033 5863 7049 5863 7050 5863 7033 5864 7050 5864 7034 5864 7034 5865 7050 5865 7051 5865 7034 5866 7051 5866 6820 5866 6820 5867 7051 5867 6826 5867 6954 5868 6925 5868 6955 5868 6955 5869 6925 5869 6927 5869 6955 5870 6927 5870 7035 5870 7035 5871 6927 5871 7052 5871 7035 5872 7052 5872 7036 5872 7036 5873 7052 5873 7053 5873 7036 5874 7053 5874 7037 5874 7037 5875 7053 5875 7054 5875 7037 5876 7054 5876 7038 5876 7038 5877 7054 5877 7055 5877 7038 5878 7055 5878 7039 5878 7039 5879 7055 5879 7056 5879 7039 5880 7056 5880 7040 5880 7040 5881 7056 5881 7057 5881 7040 5882 7057 5882 7041 5882 7041 5883 7057 5883 7058 5883 7041 5884 7058 5884 7042 5884 7042 5885 7058 5885 7059 5885 7042 5886 7059 5886 7043 5886 7043 5887 7059 5887 7060 5887 7043 5888 7060 5888 7044 5888 7044 5889 7060 5889 7061 5889 7044 5890 7061 5890 7045 5890 7045 5891 7061 5891 7062 5891 7045 5892 7062 5892 7046 5892 7046 5893 7062 5893 7063 5893 7046 5894 7063 5894 7047 5894 7047 5895 7063 5895 7064 5895 7047 5896 7064 5896 7048 5896 7048 5897 7064 5897 7065 5897 7048 5898 7065 5898 7049 5898 7049 5899 7065 5899 7066 5899 7049 5900 7066 5900 7050 5900 7050 5901 7066 5901 7067 5901 7050 5902 7067 5902 7051 5902 7051 5903 7067 5903 6931 5903 7051 5904 6931 5904 6826 5904 6826 5905 6931 5905 6827 5905 6926 5906 6928 5906 6927 5906 6927 5907 6928 5907 6930 5907 6927 5908 6930 5908 7052 5908 7052 5909 6930 5909 6951 5909 7052 5910 6951 5910 7053 5910 7053 5911 6951 5911 6950 5911 7053 5912 6950 5912 7054 5912 7054 5913 6950 5913 6949 5913 7054 5914 6949 5914 7055 5914 7055 5915 6949 5915 6948 5915 7055 5916 6948 5916 7056 5916 7056 5917 6948 5917 6935 5917 7056 5918 6935 5918 7057 5918 7057 5919 6935 5919 6936 5919 7057 5920 6936 5920 7058 5920 7058 5921 6936 5921 6937 5921 7058 5922 6937 5922 7059 5922 7059 5923 6937 5923 6938 5923 7059 5924 6938 5924 7060 5924 7060 5925 6938 5925 6939 5925 7060 5926 6939 5926 7061 5926 7061 5927 6939 5927 6940 5927 7061 5928 6940 5928 7062 5928 7062 5929 6940 5929 6941 5929 7062 5930 6941 5930 7063 5930 7063 5931 6941 5931 6942 5931 7063 5932 6942 5932 7064 5932 7064 5933 6942 5933 6943 5933 7064 5934 6943 5934 7065 5934 7065 5935 6943 5935 6944 5935 7065 5936 6944 5936 7066 5936 7066 5937 6944 5937 6945 5937 7066 5938 6945 5938 7067 5938 7067 5939 6945 5939 6946 5939 7067 5940 6946 5940 6931 5940 6931 5941 6946 5941 6947 5941 6931 5942 6947 5942 6828 5942 6828 5943 6947 5943 6822 5943 6899 5944 6902 5944 6952 5944 6899 5945 6952 5945 7068 5945 6956 5946 7069 5946 6922 5946 6922 5947 7069 5947 7070 5947 6922 5948 7070 5948 6923 5948 6923 5949 7070 5949 7071 5949 7072 5950 6925 5950 7071 5950 7071 5951 6925 5951 6954 5951 6954 5952 6953 5952 7071 5952 7071 5953 6953 5953 7016 5953 7071 5954 7016 5954 6923 5954 6952 5955 6929 5955 7068 5955 7068 5956 6929 5956 6928 5956 7068 5957 6928 5957 7072 5957 7072 5958 6928 5958 6926 5958 7072 5959 6926 5959 6925 5959 6894 5960 6899 5960 7073 5960 7073 5961 6899 5961 7068 5961 7074 5962 7075 5962 7068 5962 7068 5963 7075 5963 7076 5963 7068 5964 7076 5964 7073 5964 7074 5965 7068 5965 7077 5965 7077 5966 7068 5966 7072 5966 7077 5967 7072 5967 7078 5967 7078 5968 7072 5968 7071 5968 7078 5969 7071 5969 7079 5969 7079 5970 7071 5970 7080 5970 7080 5971 7071 5971 7070 5971 7080 5972 7070 5972 7081 5972 7081 5973 7070 5973 7082 5973 7082 5974 7070 5974 7069 5974 7082 5975 7069 5975 7083 5975 7084 294 6998 294 6996 294 7085 294 6981 294 6979 294 6975 5976 6984 5976 7086 5976 6795 5977 6791 5977 6836 5977 6836 5978 6791 5978 7087 5978 7084 5979 6996 5979 7088 5979 6998 5980 7084 5980 6999 5980 6999 5981 7084 5981 7089 5981 6999 5982 7089 5982 6991 5982 7085 5983 6979 5983 7090 5983 7086 294 6984 294 7085 294 7085 294 6984 294 6983 294 7085 5984 6983 5984 6981 5984 7091 5985 6987 5985 7089 5985 7089 294 6987 294 6989 294 7089 294 6989 294 6991 294 7092 5986 7093 5986 6962 5986 6996 294 6994 294 7088 294 7088 294 6994 294 6992 294 7088 5987 6992 5987 7087 5987 7087 5988 6992 5988 6933 5988 7087 5989 6933 5989 6836 5989 6979 5990 6977 5990 7090 5990 7090 294 6977 294 6976 294 7090 5991 6976 5991 7091 5991 7091 294 6976 294 6985 294 7091 294 6985 294 6987 294 6975 294 7086 294 6970 294 6970 294 7086 294 7094 294 6970 5992 7094 5992 6971 5992 7095 294 6964 294 7094 294 7094 5993 6964 5993 6972 5993 7094 294 6972 294 6971 294 6962 5994 6969 5994 7092 5994 7092 5995 6969 5995 6968 5995 7092 294 6968 294 7095 294 7095 5996 6968 5996 6966 5996 7095 5997 6966 5997 6964 5997 7096 5998 6958 5998 7093 5998 7093 5999 6958 5999 6960 5999 7093 6000 6960 6000 6962 6000 7097 6001 7069 6001 7096 6001 7096 6002 7069 6002 6956 6002 7096 6003 6956 6003 6958 6003 7098 294 7099 294 7100 294 7100 294 7099 294 7101 294 7100 294 7101 294 7097 294 7097 6004 7101 6004 7083 6004 7097 6005 7083 6005 7069 6005 7102 443 7103 443 6771 443 6771 443 6751 443 7102 443 7102 6006 6751 6006 6752 6006 7102 443 6752 443 7098 443 7098 6007 6752 6007 6754 6007 7098 6008 6754 6008 7099 6008 7083 6009 7101 6009 7082 6009 7082 6010 7101 6010 7099 6010 7082 6011 7099 6011 7081 6011 7081 6012 7099 6012 7104 6012 7081 6013 7104 6013 7080 6013 7080 6014 7104 6014 7105 6014 7080 6015 7105 6015 7079 6015 7106 6016 7074 6016 7077 6016 7106 6017 7077 6017 7105 6017 7105 6018 7077 6018 7078 6018 7105 6019 7078 6019 7079 6019 7074 6020 7106 6020 7075 6020 7075 6021 7106 6021 7107 6021 7075 6022 7107 6022 7076 6022 7076 6023 7107 6023 7108 6023 7076 6024 7108 6024 7073 6024 6891 6025 7109 6025 7110 6025 7110 6026 7109 6026 7111 6026 7110 6027 7111 6027 7112 6027 7113 6028 7114 6028 7115 6028 7115 6029 7116 6029 7113 6029 7113 6030 7116 6030 7117 6030 7113 6031 7117 6031 7111 6031 7111 6032 7117 6032 7118 6032 7111 6033 7118 6033 7112 6033 6753 6034 7119 6034 7120 6034 7120 6035 7119 6035 7121 6035 7120 6036 7121 6036 7114 6036 7114 6037 7121 6037 7122 6037 7114 6038 7122 6038 7115 6038 6894 6039 7073 6039 6893 6039 6893 6040 7073 6040 7108 6040 6893 6041 7108 6041 6890 6041 6891 6042 6890 6042 7109 6042 7109 6043 6890 6043 7108 6043 7109 6044 7108 6044 7111 6044 7111 6045 7108 6045 7107 6045 7111 6046 7107 6046 7113 6046 7113 6047 7107 6047 7106 6047 7113 6048 7106 6048 7114 6048 7114 6049 7106 6049 7105 6049 7114 6050 7105 6050 7120 6050 7120 6051 7105 6051 7104 6051 7120 6052 7104 6052 6753 6052 6753 6053 7104 6053 7099 6053 6753 6054 7099 6054 6754 6054 7123 38 7124 38 7125 38 7125 38 7124 38 7126 38 7126 6055 7124 6055 7127 6055 7127 6056 7124 6056 7128 6056 7127 6057 7128 6057 7129 6057 7129 6058 7128 6058 7130 6058 7129 6059 7130 6059 7131 6059 7131 6060 7130 6060 7132 6060 7132 1495 7133 1495 7131 1495 7131 1495 7133 1495 7134 1495 7134 6061 7133 6061 7135 6061 7135 6062 7133 6062 7136 6062 7135 6063 7136 6063 7137 6063 7137 6064 7136 6064 7138 6064 7137 6065 7138 6065 7139 6065 7139 6066 7138 6066 7140 6066 7141 431 7133 431 7132 431 7138 431 7136 431 7140 431 7140 431 7136 431 7133 431 7140 431 7133 431 7142 431 7142 431 7133 431 7141 431 7130 431 7128 431 7132 431 7132 431 7128 431 7124 431 7132 431 7124 431 7141 431 7141 431 7124 431 7123 431 7141 431 7123 431 7143 431 7144 431 7145 431 7146 431 7146 6067 7145 6067 7142 6067 7146 431 7142 431 7147 431 7147 431 7142 431 7141 431 7148 6068 7142 6068 7149 6068 7149 6069 7142 6069 7145 6069 7149 6070 7145 6070 7150 6070 7150 6071 7145 6071 7144 6071 7150 6072 7144 6072 7151 6072 7151 6073 7144 6073 7146 6073 7146 426 7147 426 7151 426 7151 426 7147 426 7152 426 7152 6074 7147 6074 7153 6074 7153 6075 7147 6075 7141 6075 7153 6076 7141 6076 7154 6076 7154 6077 7141 6077 7143 6077 7154 6078 7143 6078 7125 6078 7125 6079 7143 6079 7123 6079 7155 431 7156 431 7157 431 7157 6080 7156 6080 7158 6080 7157 6081 7158 6081 7159 6081 7160 6082 7161 6082 7157 6082 7157 431 7161 431 7162 431 7157 431 7162 431 7155 431 7163 431 7164 431 7157 431 7157 6083 7164 6083 7165 6083 7157 6084 7165 6084 7160 6084 7159 431 7166 431 7157 431 7157 431 7166 431 7167 431 7157 431 7167 431 7163 431 7168 6085 7158 6085 7169 6085 7169 6086 7158 6086 7156 6086 7169 6070 7156 6070 7170 6070 7170 6087 7156 6087 7155 6087 7170 6088 7155 6088 7171 6088 7171 6089 7155 6089 7162 6089 7171 6090 7162 6090 7172 6090 7172 6091 7162 6091 7161 6091 7172 6092 7161 6092 7173 6092 7173 6093 7161 6093 7160 6093 7173 6094 7160 6094 7174 6094 7174 6095 7160 6095 7165 6095 7174 6096 7165 6096 7175 6096 7175 6096 7165 6096 7164 6096 7175 6097 7164 6097 7176 6097 7176 6098 7164 6098 7163 6098 7176 6099 7163 6099 7177 6099 7177 6100 7163 6100 7167 6100 7177 6101 7167 6101 7178 6101 7178 6102 7167 6102 7166 6102 7178 6103 7166 6103 7179 6103 7179 6104 7166 6104 7159 6104 7179 6105 7159 6105 7168 6105 7168 6106 7159 6106 7158 6106 7180 431 7181 431 7182 431 7182 6107 7181 6107 7183 6107 7182 6108 7183 6108 7184 6108 7185 6082 7186 6082 7182 6082 7182 431 7186 431 7187 431 7182 431 7187 431 7180 431 7188 431 7189 431 7182 431 7182 6109 7189 6109 7190 6109 7182 6110 7190 6110 7185 6110 7184 431 7191 431 7182 431 7182 431 7191 431 7192 431 7182 431 7192 431 7188 431 7193 6111 7183 6111 7194 6111 7194 6112 7183 6112 7181 6112 7194 6113 7181 6113 7195 6113 7195 6114 7181 6114 7180 6114 7195 6115 7180 6115 7196 6115 7196 6116 7180 6116 7187 6116 7196 6117 7187 6117 7197 6117 7197 6118 7187 6118 7186 6118 7197 6119 7186 6119 7198 6119 7198 6120 7186 6120 7185 6120 7198 6121 7185 6121 7199 6121 7199 6122 7185 6122 7190 6122 7199 6123 7190 6123 7200 6123 7200 6123 7190 6123 7189 6123 7200 6124 7189 6124 7201 6124 7201 6125 7189 6125 7188 6125 7201 6126 7188 6126 7202 6126 7202 6127 7188 6127 7192 6127 7202 6128 7192 6128 7203 6128 7203 6129 7192 6129 7191 6129 7203 6130 7191 6130 7204 6130 7204 6131 7191 6131 7184 6131 7204 6132 7184 6132 7193 6132 7193 6133 7184 6133 7183 6133 7200 431 7201 431 6701 431 6703 6134 6770 6134 7171 6134 7171 431 6770 431 7205 431 6701 6135 7201 6135 6753 6135 6753 6136 7201 6136 7202 6136 6753 431 7202 431 7119 431 7206 6137 7170 6137 7207 6137 7207 6138 7170 6138 7171 6138 7207 6139 7171 6139 7208 6139 7208 6140 7171 6140 7205 6140 7171 6141 7172 6141 6703 6141 6703 6142 7172 6142 7173 6142 6703 6143 7173 6143 7174 6143 7119 431 7202 431 7121 431 7121 6144 7202 6144 7203 6144 7121 431 7203 431 7122 431 7152 6145 7174 6145 7175 6145 7152 431 7175 431 7176 431 7209 6146 7168 6146 7169 6146 7110 6147 7193 6147 6891 6147 6891 6148 7193 6148 7194 6148 7134 431 7195 431 7196 431 6701 6149 7198 6149 7199 6149 6701 6150 7199 6150 7200 6150 7122 431 7203 431 7115 431 7115 6151 7203 6151 7204 6151 7115 431 7204 431 7116 431 7110 6152 7112 6152 7193 6152 7193 6153 7112 6153 7118 6153 7193 431 7118 431 7204 431 7204 6154 7118 6154 7117 6154 7204 6155 7117 6155 7116 6155 7206 431 7210 431 7170 431 7170 431 7210 431 7211 431 7170 6156 7211 6156 7169 6156 7169 6157 7211 6157 7212 6157 7169 431 7212 431 7209 431 7135 6158 7137 6158 6891 6158 6891 6159 7137 6159 7139 6159 6891 431 7139 431 6892 431 6892 431 7139 431 7148 431 6892 431 7179 431 7213 431 7213 6160 7179 6160 7168 6160 7213 431 7168 431 7214 431 7214 6161 7168 6161 7209 6161 7215 6162 7216 6162 7217 6162 6911 6163 6892 6163 7213 6163 6744 6164 6742 6164 7218 6164 7219 6165 7220 6165 7221 6165 7221 6166 7220 6166 7222 6166 7219 6167 7221 6167 7223 6167 7223 6168 7221 6168 7224 6168 7223 6169 7224 6169 7225 6169 7225 6170 7224 6170 7226 6170 7226 6171 7224 6171 7227 6171 7226 6172 7227 6172 7228 6172 7228 6173 7227 6173 7229 6173 7229 6174 7227 6174 7218 6174 7229 6175 7218 6175 7230 6175 7230 6176 7218 6176 7231 6176 7231 6177 7218 6177 6742 6177 7231 6178 6742 6178 6740 6178 6750 6179 6744 6179 7232 6179 7208 6180 7205 6180 7232 6180 7232 6181 7205 6181 6770 6181 7232 6182 6770 6182 6750 6182 7233 6183 7206 6183 7232 6183 7232 6184 7206 6184 7207 6184 7232 6185 7207 6185 7208 6185 7209 6186 7212 6186 7234 6186 7234 6187 7212 6187 7211 6187 7234 6188 7211 6188 7233 6188 7233 6189 7211 6189 7210 6189 7233 6190 7210 6190 7206 6190 7234 6191 7217 6191 7209 6191 7209 6192 7217 6192 7216 6192 7209 6193 7216 6193 7214 6193 7214 6194 7216 6194 7215 6194 7214 6195 7215 6195 7213 6195 7213 6196 7215 6196 6912 6196 7213 6197 6912 6197 6911 6197 7220 6198 6900 6198 7222 6198 7222 6199 6900 6199 6901 6199 7222 6200 6901 6200 6913 6200 6744 6201 7218 6201 7232 6201 7232 6202 7218 6202 7227 6202 7232 6203 7227 6203 7233 6203 7233 6204 7227 6204 7224 6204 7233 6205 7224 6205 7234 6205 7234 6206 7224 6206 7221 6206 7234 6207 7221 6207 7217 6207 7217 6208 7221 6208 7222 6208 7217 6209 7222 6209 7215 6209 7215 6210 7222 6210 6913 6210 7215 6211 6913 6211 6912 6211 6838 6212 6837 6212 7235 6212 6825 6213 6900 6213 6837 6213 6837 6214 6900 6214 7220 6214 6837 6215 7220 6215 7235 6215 6838 6216 7235 6216 6839 6216 6839 6217 7235 6217 7236 6217 6839 6218 7236 6218 7237 6218 6817 6219 6818 6219 6831 6219 7225 6220 7226 6220 6830 6220 6830 6221 7226 6221 7228 6221 6830 6222 7228 6222 6831 6222 6831 6223 7228 6223 7229 6223 6831 6224 7229 6224 6817 6224 6817 6225 7229 6225 7238 6225 6740 6226 6738 6226 7231 6226 7231 6227 6738 6227 7239 6227 7231 6228 7239 6228 7230 6228 7230 6229 7239 6229 7240 6229 7230 6230 7240 6230 7241 6230 7241 6231 7242 6231 7230 6231 7230 6232 7242 6232 7243 6232 7230 6233 7243 6233 7229 6233 7229 6234 7243 6234 7244 6234 7229 6235 7244 6235 7238 6235 6830 6236 7237 6236 7225 6236 7225 6237 7237 6237 7236 6237 7225 6238 7236 6238 7223 6238 7223 6239 7236 6239 7235 6239 7223 6240 7235 6240 7219 6240 7219 6241 7235 6241 7220 6241 6814 6242 6817 6242 7238 6242 6814 6243 7238 6243 6812 6243 7245 6244 6813 6244 6737 6244 6737 6245 6813 6245 6811 6245 6738 6246 6737 6246 7239 6246 7239 6247 6737 6247 6811 6247 7239 6248 6811 6248 7240 6248 7240 6249 6811 6249 6810 6249 7240 6250 6810 6250 7241 6250 7238 6251 7244 6251 6812 6251 6812 6252 7244 6252 7243 6252 6812 6253 7243 6253 6810 6253 6810 6254 7243 6254 7242 6254 6810 6255 7242 6255 7241 6255 7246 6256 7247 6256 7248 6256 7249 6257 7250 6257 7248 6257 7248 6258 7250 6258 7251 6258 7248 6259 7251 6259 7246 6259 7252 6260 7253 6260 7249 6260 7249 6261 7253 6261 7254 6261 7249 6262 7254 6262 7250 6262 7255 6263 7256 6263 7252 6263 7252 6264 7256 6264 7257 6264 7252 6265 7257 6265 7253 6265 7258 6266 7259 6266 7260 6266 7261 6267 7262 6267 7260 6267 7260 6268 7262 6268 7263 6268 7260 6269 7263 6269 7258 6269 7264 6270 7265 6270 7261 6270 7261 6271 7265 6271 7266 6271 7261 6272 7266 6272 7262 6272 7267 6273 7268 6273 7264 6273 7264 6274 7268 6274 7269 6274 7264 6275 7269 6275 7265 6275 7270 6276 7271 6276 7272 6276 7271 6277 7270 6277 7273 6277 7273 6278 7270 6278 7274 6278 7273 6279 7274 6279 7275 6279 7272 6280 7276 6280 7270 6280 7270 6281 7276 6281 7277 6281 7270 6282 7277 6282 7259 6282 7278 6283 7279 6283 7274 6283 7274 6284 7279 6284 7280 6284 7274 6285 7280 6285 7275 6285 7265 6286 7281 6286 7266 6286 7266 6287 7281 6287 7270 6287 7266 6288 7270 6288 7262 6288 7259 6289 7258 6289 7270 6289 7270 6290 7258 6290 7263 6290 7270 6291 7263 6291 7262 6291 7265 6292 7269 6292 7281 6292 7281 6293 7269 6293 7268 6293 7281 6294 7268 6294 7267 6294 7267 6295 7282 6295 7283 6295 7283 6296 7282 6296 7284 6296 7284 6297 7282 6297 7285 6297 7285 6298 7282 6298 7286 6298 7285 6299 7286 6299 7287 6299 7288 6300 7289 6300 7286 6300 7286 6301 7289 6301 7290 6301 7286 6302 7290 6302 7287 6302 7284 6303 7281 6303 7283 6303 7283 431 7281 431 7267 431 7284 431 7285 431 7281 431 7281 6304 7285 6304 7287 6304 7253 6305 7292 6305 7254 6305 7254 6306 7292 6306 7291 6306 7254 6307 7291 6307 7250 6307 7247 6308 7246 6308 7291 6308 7291 6309 7246 6309 7251 6309 7291 6310 7251 6310 7250 6310 7253 6311 7257 6311 7292 6311 7292 6312 7257 6312 7256 6312 7292 6313 7256 6313 7255 6313 7281 38 7292 38 7293 38 7281 38 7293 38 7270 38 7270 6314 7293 6314 7274 6314 7294 6315 7293 6315 7295 6315 7295 6316 7293 6316 7292 6316 7295 6317 7292 6317 7296 6317 7255 6318 7297 6318 7292 6318 7292 6319 7297 6319 7298 6319 7292 6320 7298 6320 7296 6320 7294 6321 7299 6321 7293 6321 7293 6322 7299 6322 7300 6322 7293 6323 7300 6323 7301 6323 7297 6324 7255 6324 7302 6324 7303 6325 7296 6325 7302 6325 7302 6326 7296 6326 7298 6326 7302 6327 7298 6327 7297 6327 7304 6328 7294 6328 7303 6328 7303 6329 7294 6329 7295 6329 7303 6330 7295 6330 7296 6330 7301 6331 7300 6331 7304 6331 7304 6332 7300 6332 7299 6332 7304 6333 7299 6333 7294 6333 7261 38 7260 38 7305 38 7249 6334 7306 6334 7252 6334 7252 6335 7306 6335 7307 6335 7252 38 7307 38 7255 38 7305 6336 7308 6336 7261 6336 7261 6337 7308 6337 7309 6337 7261 38 7309 38 7264 38 7264 38 7309 38 7310 38 7264 38 7310 38 7267 38 7311 6338 7312 6338 7313 6338 7313 6339 7312 6339 7314 6339 7313 6340 7314 6340 7278 6340 7304 38 7303 38 7315 38 7282 38 7316 38 7286 38 7286 38 7316 38 7317 38 7318 38 7319 38 7311 38 7311 38 7319 38 7320 38 7311 38 7320 38 7312 38 7315 6341 7321 6341 7304 6341 7304 6342 7321 6342 7322 6342 7304 38 7322 38 7301 38 7301 6343 7322 6343 7323 6343 7301 38 7323 38 7318 38 7318 38 7323 38 7324 38 7318 6344 7324 6344 7319 6344 7248 38 7325 38 7249 38 7249 6345 7325 6345 7326 6345 7249 6346 7326 6346 7306 6346 7248 38 7327 38 7328 38 7248 38 7328 38 7325 38 7329 6347 7330 6347 7259 6347 7259 6348 7330 6348 7331 6348 7259 6349 7331 6349 7260 6349 7260 6350 7331 6350 7332 6350 7260 6351 7332 6351 7305 6351 7333 38 7334 38 7329 38 7329 38 7334 38 7335 38 7329 6352 7335 6352 7330 6352 7314 6353 7336 6353 7278 6353 7278 38 7336 38 7337 38 7278 38 7337 38 7338 38 7338 6354 7337 6354 7339 6354 7338 38 7339 38 7333 38 7333 6355 7339 6355 7340 6355 7333 6356 7340 6356 7334 6356 7307 38 7341 38 7255 38 7255 6357 7341 6357 7342 6357 7255 38 7342 38 7302 38 7302 6358 7342 6358 7343 6358 7302 38 7343 38 7303 38 7303 6359 7343 6359 7344 6359 7303 6360 7344 6360 7315 6360 7310 38 7345 38 7267 38 7267 38 7345 38 7346 38 7267 38 7346 38 7282 38 7282 6361 7346 6361 7347 6361 7282 6362 7347 6362 7316 6362 7348 6363 7349 6363 7350 6363 7351 6364 7352 6364 7350 6364 7350 6365 7352 6365 7353 6365 7350 6366 7353 6366 7348 6366 7354 6367 7355 6367 7351 6367 7351 6368 7355 6368 7356 6368 7351 6369 7356 6369 7352 6369 7357 6370 7358 6370 7354 6370 7354 6371 7358 6371 7359 6371 7354 6372 7359 6372 7355 6372 7360 6373 7357 6373 7361 6373 7362 6374 7363 6374 7361 6374 7361 6268 7363 6268 7364 6268 7361 6375 7364 6375 7360 6375 7365 6376 7366 6376 7362 6376 7362 6377 7366 6377 7367 6377 7362 6378 7367 6378 7363 6378 7368 6273 7369 6273 7365 6273 7365 6379 7369 6379 7370 6379 7365 6380 7370 6380 7366 6380 7368 6381 7371 6381 7372 6381 7372 6382 7371 6382 7373 6382 7373 6297 7371 6297 7374 6297 7374 6383 7371 6383 7375 6383 7374 6384 7375 6384 7376 6384 7377 6385 7378 6385 7375 6385 7375 6386 7378 6386 7379 6386 7375 6387 7379 6387 7376 6387 7380 6388 7381 6388 7377 6388 7377 6389 7381 6389 7382 6389 7377 6390 7382 6390 7378 6390 7373 6391 7383 6391 7372 6391 7372 431 7383 431 7368 431 7378 431 7382 431 7384 431 7384 6392 7382 6392 7381 6392 7384 6393 7381 6393 7380 6393 7373 431 7374 431 7383 431 7383 6394 7374 6394 7376 6394 7383 431 7376 431 7384 431 7384 6395 7376 6395 7379 6395 7384 6396 7379 6396 7378 6396 7366 6397 7383 6397 7367 6397 7367 6398 7383 6398 7385 6398 7367 6399 7385 6399 7363 6399 7357 6289 7360 6289 7385 6289 7385 6400 7360 6400 7364 6400 7385 6401 7364 6401 7363 6401 7366 6402 7370 6402 7383 6402 7383 6403 7370 6403 7369 6403 7383 6404 7369 6404 7368 6404 7355 6405 7385 6405 7356 6405 7356 6406 7385 6406 7386 6406 7356 6407 7386 6407 7352 6407 7349 6408 7348 6408 7386 6408 7386 6409 7348 6409 7353 6409 7386 6410 7353 6410 7352 6410 7355 6411 7359 6411 7385 6411 7385 6412 7359 6412 7358 6412 7385 6413 7358 6413 7357 6413 7384 38 7387 38 7383 38 7383 6414 7387 6414 7388 6414 7383 38 7388 38 7385 38 7385 6415 7388 6415 7386 6415 7388 6416 7389 6416 7390 6416 7389 6417 7388 6417 7391 6417 7391 6418 7388 6418 7387 6418 7391 6419 7387 6419 7392 6419 7390 6420 7393 6420 7388 6420 7388 6421 7393 6421 7394 6421 7388 6422 7394 6422 7395 6422 7396 6423 7397 6423 7387 6423 7387 6424 7397 6424 7398 6424 7387 6425 7398 6425 7392 6425 7399 6426 7387 6426 7400 6426 7400 6427 7387 6427 7384 6427 7400 6428 7384 6428 7401 6428 7380 6429 7402 6429 7384 6429 7384 6430 7402 6430 7403 6430 7384 6431 7403 6431 7401 6431 7399 6432 7404 6432 7387 6432 7387 6433 7404 6433 7405 6433 7387 6434 7405 6434 7396 6434 7402 6435 7380 6435 7406 6435 7407 6436 7401 6436 7406 6436 7406 6437 7401 6437 7403 6437 7406 6438 7403 6438 7402 6438 7408 6260 7399 6260 7407 6260 7407 6439 7399 6439 7400 6439 7407 6440 7400 6440 7401 6440 7396 6441 7405 6441 7408 6441 7408 6442 7405 6442 7404 6442 7408 6443 7404 6443 7399 6443 7407 38 7409 38 7408 38 7408 6444 7409 6444 7410 6444 7408 38 7410 38 7396 38 7362 38 7411 38 7365 38 7365 38 7411 38 7412 38 7365 38 7412 38 7368 38 7361 38 7413 38 7362 38 7362 6445 7413 6445 7414 6445 7362 6446 7414 6446 7411 6446 7415 6447 7416 6447 7417 6447 7417 6448 7416 6448 7418 6448 7417 6340 7418 6340 7349 6340 7419 38 7420 38 7415 38 7415 38 7420 38 7421 38 7415 38 7421 38 7416 38 7375 6449 7422 6449 7377 6449 7354 38 7423 38 7357 38 7357 6450 7423 6450 7424 6450 7357 6451 7424 6451 7361 6451 7361 6452 7424 6452 7425 6452 7361 6453 7425 6453 7413 6453 7351 6454 7426 6454 7354 6454 7354 38 7426 38 7427 38 7354 6455 7427 6455 7423 6455 7428 38 7429 38 7395 38 7395 38 7429 38 7430 38 7395 38 7430 38 7419 38 7419 38 7430 38 7431 38 7419 6456 7431 6456 7420 6456 7406 38 7432 38 7407 38 7407 6457 7432 6457 7433 6457 7407 6458 7433 6458 7409 6458 7422 38 7434 38 7377 38 7377 6361 7434 6361 7435 6361 7377 38 7435 38 7380 38 7380 38 7435 38 7436 38 7380 38 7436 38 7406 38 7406 38 7436 38 7437 38 7406 38 7437 38 7432 38 7418 6459 7438 6459 7349 6459 7349 6460 7438 6460 7439 6460 7349 38 7439 38 7350 38 7350 6461 7439 6461 7440 6461 7350 6462 7440 6462 7351 6462 7351 38 7440 38 7441 38 7351 6463 7441 6463 7426 6463 7442 38 7443 38 7428 38 7428 6464 7443 6464 7444 6464 7428 6465 7444 6465 7429 6465 7412 38 7445 38 7368 38 7368 6466 7445 6466 7446 6466 7368 38 7446 38 7371 38 7371 38 7446 38 7447 38 7410 38 7448 38 7396 38 7396 6467 7448 6467 7449 6467 7396 6468 7449 6468 7450 6468 7450 6469 7449 6469 7451 6469 7450 38 7451 38 7442 38 7442 38 7451 38 7452 38 7442 6470 7452 6470 7443 6470 7453 294 7454 294 7455 294 7455 294 7454 294 7456 294 7457 6471 7458 6471 7459 6471 7459 6472 7458 6472 7460 6472 7459 6473 7460 6473 7461 6473 7462 6474 7463 6474 7464 6474 7464 6475 7463 6475 7465 6475 7464 6476 7465 6476 7466 6476 7466 6477 7465 6477 7467 6477 7468 6478 7469 6478 7470 6478 7471 6479 7472 6479 7473 6479 7473 6480 7472 6480 7474 6480 7473 6481 7474 6481 7475 6481 7475 6482 7474 6482 7476 6482 7475 6483 7476 6483 7467 6483 7471 6484 7473 6484 7477 6484 7477 6485 7473 6485 7478 6485 7477 6486 7478 6486 7479 6486 7479 6487 7478 6487 7480 6487 7479 6488 7480 6488 7481 6488 7482 6489 7483 6489 7481 6489 7481 6490 7483 6490 7484 6490 7481 6491 7484 6491 7479 6491 7485 6492 7486 6492 7482 6492 7482 6493 7486 6493 7487 6493 7482 6494 7487 6494 7483 6494 7470 6495 7469 6495 7482 6495 7482 6496 7469 6496 7488 6496 7482 6497 7488 6497 7485 6497 7489 6498 7490 6498 7491 6498 7491 6499 7490 6499 7492 6499 7491 6500 7492 6500 7493 6500 7493 6501 7494 6501 7491 6501 7491 6502 7494 6502 7495 6502 7491 6503 7495 6503 7470 6503 7470 6504 7495 6504 7496 6504 7470 6505 7496 6505 7468 6505 7497 6506 7498 6506 7499 6506 7499 6507 7500 6507 7497 6507 7497 6508 7500 6508 7501 6508 7497 6509 7501 6509 7502 6509 7501 6510 7503 6510 7502 6510 7502 6511 7503 6511 7504 6511 7502 6512 7504 6512 7505 6512 7505 6513 7504 6513 7506 6513 7505 6514 7506 6514 7489 6514 7489 6515 7506 6515 7507 6515 7489 6516 7507 6516 7490 6516 7498 6517 7497 6517 7508 6517 7508 6518 7497 6518 7509 6518 7508 6519 7509 6519 7510 6519 7467 6520 7465 6520 7475 6520 7475 6521 7465 6521 7463 6521 7475 6522 7463 6522 7511 6522 7511 6523 7463 6523 7512 6523 7511 6524 7512 6524 7513 6524 7513 6525 7514 6525 7511 6525 7511 6526 7514 6526 7515 6526 7511 6527 7515 6527 7509 6527 7509 6528 7515 6528 7516 6528 7509 6529 7516 6529 7510 6529 7512 6530 7463 6530 7462 6530 7517 6531 7518 6531 7519 6531 7519 6532 7518 6532 7520 6532 7520 6533 7521 6533 7519 6533 7519 6534 7521 6534 7522 6534 7519 6535 7522 6535 7523 6535 7492 6536 7490 6536 7524 6536 7525 6537 7488 6537 7469 6537 7496 6538 7495 6538 7524 6538 7525 6539 7469 6539 7524 6539 7524 6540 7469 6540 7468 6540 7524 6541 7468 6541 7496 6541 7495 6542 7494 6542 7524 6542 7524 6543 7494 6543 7493 6543 7524 6544 7493 6544 7492 6544 7490 6545 7507 6545 7524 6545 7524 6546 7507 6546 7506 6546 7524 6547 7506 6547 7504 6547 7504 6548 7526 6548 7524 6548 7524 6549 7526 6549 7527 6549 7524 6550 7527 6550 7523 6550 7523 6551 7527 6551 7528 6551 7523 6552 7528 6552 7519 6552 7519 6553 7528 6553 7529 6553 7519 6554 7529 6554 7517 6554 7504 6555 7503 6555 7526 6555 7526 6556 7503 6556 7501 6556 7526 6557 7501 6557 7500 6557 7510 6558 7516 6558 7526 6558 7510 6559 7526 6559 7508 6559 7500 6560 7499 6560 7526 6560 7526 6561 7499 6561 7498 6561 7526 6562 7498 6562 7508 6562 7516 6563 7515 6563 7526 6563 7526 6564 7515 6564 7514 6564 7526 6565 7514 6565 7530 6565 7530 6566 7514 6566 7513 6566 7530 6567 7513 6567 7531 6567 7462 6568 7532 6568 7512 6568 7512 6569 7532 6569 7533 6569 7512 6570 7533 6570 7513 6570 7513 6571 7533 6571 7534 6571 7513 6572 7534 6572 7531 6572 7535 6573 7457 6573 7459 6573 7459 6574 7536 6574 7535 6574 7535 6575 7536 6575 7537 6575 7535 6576 7537 6576 7538 6576 7538 6577 7537 6577 7539 6577 7539 6578 7537 6578 7522 6578 7539 6579 7522 6579 7521 6579 7457 6580 7540 6580 7541 6580 7541 6581 7540 6581 7542 6581 7541 6582 7542 6582 7543 6582 7543 6583 7542 6583 7544 6583 7543 6584 7544 6584 7545 6584 7545 6585 7544 6585 7546 6585 7545 6586 7546 6586 7547 6586 7547 6587 7546 6587 7548 6587 7549 6588 7550 6588 7551 6588 7551 6589 7550 6589 7552 6589 7551 6590 7552 6590 7553 6590 7553 6591 7552 6591 7554 6591 7553 6592 7554 6592 7555 6592 7555 6593 7554 6593 7556 6593 7555 6594 7556 6594 7548 6594 7548 6595 7556 6595 7557 6595 7548 6596 7557 6596 7547 6596 7558 6597 7559 6597 7560 6597 7560 6598 7559 6598 7561 6598 7558 6599 7562 6599 7563 6599 7563 6600 7562 6600 7564 6600 7563 6601 7564 6601 7565 6601 7562 6602 7566 6602 7564 6602 7564 6603 7566 6603 7567 6603 7564 6604 7567 6604 7568 6604 7462 6605 7569 6605 7532 6605 7532 6606 7569 6606 7570 6606 7532 6607 7570 6607 7533 6607 7533 6608 7570 6608 7571 6608 7533 6609 7571 6609 7534 6609 7534 6610 7571 6610 7572 6610 7534 6611 7572 6611 7531 6611 7573 6612 7526 6612 7572 6612 7572 6613 7526 6613 7530 6613 7572 6614 7530 6614 7531 6614 7574 6615 7520 6615 7575 6615 7575 6616 7520 6616 7518 6616 7575 6617 7518 6617 7576 6617 7576 6618 7518 6618 7517 6618 7576 6619 7517 6619 7577 6619 7577 6620 7517 6620 7529 6620 7577 6621 7529 6621 7578 6621 7578 6622 7529 6622 7528 6622 7578 6623 7528 6623 7579 6623 7579 6624 7528 6624 7527 6624 7579 6625 7527 6625 7580 6625 7580 6626 7527 6626 7526 6626 7580 6627 7526 6627 7581 6627 7581 6628 7526 6628 7573 6628 7574 6629 7538 6629 7520 6629 7520 6630 7538 6630 7582 6630 7520 6631 7582 6631 7521 6631 7583 6632 7584 6632 7585 6632 7585 6633 7584 6633 7586 6633 7585 6634 7586 6634 7549 6634 7549 6635 7586 6635 7587 6635 7549 6636 7587 6636 7550 6636 7457 6637 7535 6637 7540 6637 7540 6638 7535 6638 7588 6638 7540 6639 7588 6639 7542 6639 7542 6640 7588 6640 7589 6640 7542 6641 7589 6641 7544 6641 7544 6642 7589 6642 7590 6642 7544 6643 7590 6643 7546 6643 7546 6644 7590 6644 7591 6644 7546 6645 7591 6645 7548 6645 7548 6646 7591 6646 7592 6646 7548 6647 7592 6647 7555 6647 7555 6648 7592 6648 7593 6648 7555 6649 7593 6649 7553 6649 7553 6650 7593 6650 7594 6650 7553 6651 7594 6651 7551 6651 7551 6652 7594 6652 7595 6652 7551 6653 7595 6653 7549 6653 7549 6654 7595 6654 7596 6654 7549 6655 7596 6655 7585 6655 7585 6656 7596 6656 7597 6656 7585 6657 7597 6657 7583 6657 7583 6658 7597 6658 7598 6658 7535 6659 7538 6659 7588 6659 7588 6660 7538 6660 7574 6660 7588 6661 7574 6661 7589 6661 7589 6662 7574 6662 7575 6662 7589 6663 7575 6663 7590 6663 7590 6664 7575 6664 7576 6664 7590 6665 7576 6665 7591 6665 7591 6666 7576 6666 7577 6666 7591 6667 7577 6667 7592 6667 7592 6668 7577 6668 7578 6668 7592 6669 7578 6669 7593 6669 7593 6670 7578 6670 7579 6670 7593 6671 7579 6671 7594 6671 7594 6672 7579 6672 7580 6672 7594 6673 7580 6673 7595 6673 7595 6674 7580 6674 7581 6674 7595 6675 7581 6675 7596 6675 7596 6676 7581 6676 7573 6676 7596 6677 7573 6677 7597 6677 7597 6678 7573 6678 7572 6678 7597 6679 7572 6679 7598 6679 7598 6680 7572 6680 7571 6680 7558 6681 7560 6681 7562 6681 7562 6682 7560 6682 7599 6682 7562 6683 7599 6683 7566 6683 7566 6684 7599 6684 7600 6684 7566 6685 7600 6685 7567 6685 7569 6686 7568 6686 7570 6686 7570 6687 7568 6687 7567 6687 7570 6688 7567 6688 7571 6688 7571 6689 7567 6689 7600 6689 7571 6690 7600 6690 7598 6690 7598 6691 7600 6691 7599 6691 7598 6692 7599 6692 7583 6692 7583 6693 7599 6693 7560 6693 7583 6694 7560 6694 7584 6694 7584 6695 7560 6695 7561 6695 7584 6696 7561 6696 7586 6696 7586 6697 7561 6697 7601 6697 7586 6698 7601 6698 7587 6698 7587 6699 7601 6699 7602 6699 7587 6700 7602 6700 7550 6700 7464 6701 7466 6701 7603 6701 7464 6702 7603 6702 7462 6702 7462 6703 7603 6703 7569 6703 7569 6704 7603 6704 7604 6704 7569 6705 7604 6705 7568 6705 7568 6706 7604 6706 7605 6706 7568 6707 7605 6707 7564 6707 7564 6708 7605 6708 7606 6708 7564 6709 7606 6709 7565 6709 7550 6710 7602 6710 7607 6710 7565 6711 7606 6711 7608 6711 7561 6712 7559 6712 7609 6712 7609 6713 7559 6713 7558 6713 7609 6714 7558 6714 7608 6714 7608 6715 7558 6715 7563 6715 7608 6716 7563 6716 7565 6716 7607 6717 7602 6717 7609 6717 7609 6718 7602 6718 7601 6718 7609 6719 7601 6719 7561 6719 7610 6720 7547 6720 7611 6720 7611 6721 7547 6721 7557 6721 7557 6722 7556 6722 7611 6722 7611 6723 7556 6723 7554 6723 7611 6724 7554 6724 7607 6724 7607 6725 7554 6725 7552 6725 7607 6726 7552 6726 7550 6726 7612 6727 7458 6727 7457 6727 7457 6728 7541 6728 7612 6728 7612 6729 7541 6729 7543 6729 7612 6730 7543 6730 7610 6730 7610 6731 7543 6731 7545 6731 7610 6732 7545 6732 7547 6732 7455 6733 7456 6733 7613 6733 7613 6734 7456 6734 7614 6734 7615 6735 7616 6735 7617 6735 7617 6736 7616 6736 7618 6736 7617 6737 7618 6737 7614 6737 7614 6738 7618 6738 7619 6738 7614 6739 7619 6739 7613 6739 7620 6740 7621 6740 7622 6740 7622 6741 7621 6741 7623 6741 7622 6742 7623 6742 7617 6742 7617 6743 7623 6743 7624 6743 7617 6744 7624 6744 7615 6744 7620 6745 7622 6745 7625 6745 7625 6746 7622 6746 7626 6746 7625 6747 7626 6747 7627 6747 7606 6748 7628 6748 7608 6748 7608 6749 7628 6749 7629 6749 7608 6750 7629 6750 7626 6750 7626 6751 7629 6751 7630 6751 7626 6752 7630 6752 7627 6752 7631 6753 7632 6753 7633 6753 7631 6754 7633 6754 7634 6754 7634 6755 7633 6755 7635 6755 7634 6756 7635 6756 7636 6756 7636 6757 7635 6757 7637 6757 7636 6758 7637 6758 7638 6758 7638 6759 7637 6759 7639 6759 7638 6760 7639 6760 7640 6760 7640 6761 7639 6761 7641 6761 7640 6762 7641 6762 7642 6762 7642 6763 7641 6763 7643 6763 7642 6764 7643 6764 7644 6764 7644 6765 7643 6765 7645 6765 7644 6766 7645 6766 7646 6766 7646 6767 7645 6767 7603 6767 7646 6768 7603 6768 7466 6768 7647 6769 7630 6769 7648 6769 7648 6770 7630 6770 7629 6770 7648 6771 7629 6771 7605 6771 7605 6772 7629 6772 7628 6772 7605 6773 7628 6773 7606 6773 7649 6774 7625 6774 7647 6774 7647 6775 7625 6775 7627 6775 7647 6776 7627 6776 7630 6776 7615 6777 7624 6777 7650 6777 7650 6778 7624 6778 7623 6778 7650 6779 7623 6779 7651 6779 7651 6780 7623 6780 7621 6780 7651 6781 7621 6781 7649 6781 7649 6782 7621 6782 7620 6782 7649 6783 7620 6783 7625 6783 7615 6784 7650 6784 7616 6784 7616 6785 7650 6785 7652 6785 7616 6786 7652 6786 7618 6786 7618 6787 7652 6787 7619 6787 7619 6788 7652 6788 7653 6788 7619 6789 7653 6789 7613 6789 7613 6790 7653 6790 7654 6790 7613 6791 7654 6791 7455 6791 7655 6792 7654 6792 7656 6792 7656 6793 7654 6793 7653 6793 7656 6794 7653 6794 7657 6794 7657 6795 7653 6795 7652 6795 7657 6796 7652 6796 7658 6796 7658 6797 7652 6797 7650 6797 7658 6798 7650 6798 7659 6798 7659 6799 7650 6799 7651 6799 7659 6800 7651 6800 7660 6800 7660 6801 7651 6801 7649 6801 7660 6802 7649 6802 7661 6802 7661 6803 7649 6803 7647 6803 7661 6804 7647 6804 7662 6804 7662 6805 7647 6805 7648 6805 7662 6806 7648 6806 7604 6806 7604 6807 7648 6807 7605 6807 7632 6808 7655 6808 7633 6808 7633 6809 7655 6809 7656 6809 7633 6810 7656 6810 7635 6810 7635 6811 7656 6811 7657 6811 7635 6812 7657 6812 7637 6812 7637 6813 7657 6813 7658 6813 7637 6814 7658 6814 7639 6814 7639 6815 7658 6815 7659 6815 7639 6816 7659 6816 7641 6816 7641 6817 7659 6817 7660 6817 7641 6818 7660 6818 7643 6818 7643 6819 7660 6819 7661 6819 7643 6820 7661 6820 7645 6820 7645 6821 7661 6821 7662 6821 7645 6822 7662 6822 7603 6822 7603 6823 7662 6823 7604 6823 7455 6824 7654 6824 7453 6824 7453 6824 7654 6824 7663 6824 7663 6825 7654 6825 7664 6825 7664 6826 7654 6826 7655 6826 7664 6827 7655 6827 7665 6827 7655 6828 7632 6828 7665 6828 7665 6829 7632 6829 7631 6829 7665 6830 7631 6830 7666 6830 7667 6831 7668 6831 7669 6831 7670 6832 7671 6832 7672 6832 7672 6833 7671 6833 7673 6833 7672 6834 7673 6834 7674 6834 7674 6835 7673 6835 7675 6835 7675 6836 7673 6836 7676 6836 7675 6837 7676 6837 7677 6837 7677 6838 7676 6838 7678 6838 7678 6839 7676 6839 7679 6839 7678 6840 7679 6840 7669 6840 7669 6841 7679 6841 7680 6841 7669 6842 7680 6842 7667 6842 7681 6843 7682 6843 7683 6843 7453 6844 7663 6844 7684 6844 7685 6845 7686 6845 7684 6845 7684 6846 7686 6846 7687 6846 7684 6847 7687 6847 7453 6847 7688 6848 7689 6848 7690 6848 7690 6849 7689 6849 7691 6849 7690 6850 7691 6850 7685 6850 7685 6851 7691 6851 7692 6851 7685 6852 7692 6852 7686 6852 7683 6853 7682 6853 7690 6853 7690 6854 7682 6854 7693 6854 7690 6855 7693 6855 7688 6855 7681 6856 7683 6856 7694 6856 7694 6857 7683 6857 7695 6857 7694 6858 7695 6858 7696 6858 7696 6859 7695 6859 7697 6859 7696 6860 7697 6860 7698 6860 7698 6861 7697 6861 7699 6861 7699 6862 7697 6862 7700 6862 7699 6863 7700 6863 7701 6863 7673 6864 7671 6864 7702 6864 7673 6865 7702 6865 7700 6865 7700 6866 7702 6866 7703 6866 7700 6867 7703 6867 7701 6867 7663 6868 7664 6868 7684 6868 7684 6869 7664 6869 7704 6869 7684 6870 7704 6870 7685 6870 7685 6871 7704 6871 7705 6871 7685 6872 7705 6872 7690 6872 7690 6873 7705 6873 7706 6873 7690 6874 7706 6874 7683 6874 7683 6875 7706 6875 7707 6875 7683 6876 7707 6876 7695 6876 7695 6877 7707 6877 7708 6877 7695 6878 7708 6878 7697 6878 7697 6879 7708 6879 7709 6879 7697 6880 7709 6880 7700 6880 7700 6881 7709 6881 7710 6881 7700 6882 7710 6882 7673 6882 7673 6883 7710 6883 7676 6883 7664 6884 7665 6884 7704 6884 7704 6885 7665 6885 7711 6885 7704 6886 7711 6886 7705 6886 7705 6887 7711 6887 7712 6887 7705 6888 7712 6888 7706 6888 7706 6889 7712 6889 7713 6889 7706 6890 7713 6890 7707 6890 7707 6891 7713 6891 7714 6891 7707 6892 7714 6892 7708 6892 7708 6893 7714 6893 7715 6893 7708 6894 7715 6894 7709 6894 7709 6895 7715 6895 7716 6895 7709 6896 7716 6896 7710 6896 7710 6897 7716 6897 7717 6897 7710 6898 7717 6898 7676 6898 7676 6899 7717 6899 7679 6899 7680 6900 7679 6900 7718 6900 7718 6901 7679 6901 7717 6901 7718 6902 7717 6902 7719 6902 7719 6903 7717 6903 7716 6903 7719 6904 7716 6904 7720 6904 7720 6905 7716 6905 7715 6905 7720 6906 7715 6906 7721 6906 7721 6907 7715 6907 7714 6907 7721 6908 7714 6908 7722 6908 7722 6909 7714 6909 7713 6909 7722 6910 7713 6910 7723 6910 7723 6911 7713 6911 7712 6911 7723 6912 7712 6912 7724 6912 7724 6913 7712 6913 7711 6913 7724 6914 7711 6914 7666 6914 7666 6915 7711 6915 7665 6915 7691 6916 7689 6916 7725 6916 7726 6917 7454 6917 7453 6917 7461 6918 7460 6918 7727 6918 7727 6919 7460 6919 7728 6919 7727 6920 7728 6920 7729 6920 7729 6921 7728 6921 7730 6921 7730 6922 7728 6922 7731 6922 7730 6923 7731 6923 7732 6923 7733 6924 7734 6924 7735 6924 7735 6925 7734 6925 7736 6925 7735 6926 7736 6926 7731 6926 7731 6927 7736 6927 7737 6927 7731 6928 7737 6928 7732 6928 7738 6929 7739 6929 7740 6929 7740 6930 7741 6930 7738 6930 7738 6931 7741 6931 7742 6931 7738 6932 7742 6932 7735 6932 7735 6933 7742 6933 7743 6933 7735 6934 7743 6934 7733 6934 7739 6935 7738 6935 7744 6935 7744 6936 7738 6936 7745 6936 7744 6937 7745 6937 7746 6937 7703 6938 7702 6938 7747 6938 7747 6939 7702 6939 7671 6939 7671 6940 7670 6940 7747 6940 7747 6941 7670 6941 7748 6941 7747 6942 7748 6942 7745 6942 7745 6943 7748 6943 7749 6943 7745 6944 7749 6944 7746 6944 7696 6945 7698 6945 7750 6945 7750 6946 7698 6946 7699 6946 7750 6947 7699 6947 7747 6947 7747 6948 7699 6948 7701 6948 7747 6949 7701 6949 7703 6949 7696 6950 7750 6950 7694 6950 7694 6951 7750 6951 7751 6951 7694 6952 7751 6952 7681 6952 7689 6953 7688 6953 7725 6953 7725 6954 7688 6954 7693 6954 7725 6955 7693 6955 7751 6955 7751 6956 7693 6956 7682 6956 7751 6957 7682 6957 7681 6957 7453 6958 7687 6958 7726 6958 7726 6959 7687 6959 7686 6959 7726 6960 7686 6960 7725 6960 7725 6961 7686 6961 7692 6961 7725 6962 7692 6962 7691 6962 7674 6963 7675 6963 7752 6963 7753 6964 7754 6964 7755 6964 7730 6965 7732 6965 7756 6965 7670 6966 7672 6966 7748 6966 7748 6967 7672 6967 7757 6967 7748 6968 7757 6968 7749 6968 7740 6969 7739 6969 7758 6969 7758 6970 7739 6970 7744 6970 7758 6971 7744 6971 7759 6971 7759 6972 7744 6972 7746 6972 7759 6973 7746 6973 7760 6973 7760 6974 7746 6974 7749 6974 7760 6975 7749 6975 7761 6975 7761 6976 7749 6976 7757 6976 7762 6977 7733 6977 7763 6977 7763 6978 7733 6978 7743 6978 7763 6979 7743 6979 7742 6979 7732 6980 7737 6980 7756 6980 7756 6981 7737 6981 7736 6981 7756 6982 7736 6982 7762 6982 7762 6983 7736 6983 7734 6983 7762 6984 7734 6984 7733 6984 7730 6985 7756 6985 7729 6985 7729 6986 7756 6986 7764 6986 7729 6987 7764 6987 7727 6987 7764 6988 7765 6988 7727 6988 7727 6989 7765 6989 7766 6989 7727 6990 7766 6990 7461 6990 7767 6991 7768 6991 7769 6991 7770 6992 7771 6992 7772 6992 7772 6993 7771 6993 7767 6993 7772 6994 7767 6994 7773 6994 7773 6995 7767 6995 7769 6995 7774 6996 7775 6996 7768 6996 7768 6997 7775 6997 7776 6997 7768 6998 7776 6998 7769 6998 7777 6999 7778 6999 7774 6999 7774 7000 7778 7000 7779 7000 7774 7001 7779 7001 7775 7001 7780 7002 7781 7002 7777 7002 7777 7003 7781 7003 7782 7003 7777 7004 7782 7004 7778 7004 7754 7005 7753 7005 7783 7005 7753 7006 7784 7006 7783 7006 7783 7007 7784 7007 7785 7007 7783 7008 7785 7008 7786 7008 7786 7009 7785 7009 7787 7009 7786 7010 7787 7010 7780 7010 7780 7011 7787 7011 7788 7011 7780 7012 7788 7012 7781 7012 7668 7013 7753 7013 7669 7013 7669 7014 7753 7014 7755 7014 7669 7015 7755 7015 7678 7015 7672 7016 7674 7016 7757 7016 7757 7017 7674 7017 7752 7017 7757 7018 7752 7018 7761 7018 7761 7019 7752 7019 7789 7019 7761 7020 7789 7020 7760 7020 7760 7021 7789 7021 7790 7021 7760 7022 7790 7022 7759 7022 7759 7023 7790 7023 7791 7023 7759 7024 7791 7024 7758 7024 7758 7025 7791 7025 7792 7025 7758 7026 7792 7026 7740 7026 7740 7027 7792 7027 7763 7027 7740 7028 7763 7028 7741 7028 7741 7029 7763 7029 7742 7029 7675 7030 7677 7030 7752 7030 7752 7031 7677 7031 7793 7031 7752 7032 7793 7032 7789 7032 7789 7033 7793 7033 7794 7033 7789 7034 7794 7034 7790 7034 7790 7035 7794 7035 7795 7035 7790 7036 7795 7036 7791 7036 7791 7037 7795 7037 7796 7037 7791 7038 7796 7038 7792 7038 7792 7039 7796 7039 7797 7039 7792 7040 7797 7040 7763 7040 7763 7041 7797 7041 7798 7041 7763 7042 7798 7042 7762 7042 7762 7043 7798 7043 7799 7043 7762 7044 7799 7044 7756 7044 7756 7045 7799 7045 7800 7045 7756 7046 7800 7046 7764 7046 7764 7047 7800 7047 7801 7047 7764 7048 7801 7048 7765 7048 7765 7049 7801 7049 7802 7049 7765 7050 7802 7050 7766 7050 7766 7051 7802 7051 7803 7051 7677 7052 7678 7052 7793 7052 7793 7053 7678 7053 7755 7053 7793 7054 7755 7054 7794 7054 7794 7055 7755 7055 7754 7055 7794 7056 7754 7056 7795 7056 7795 7057 7754 7057 7783 7057 7795 7058 7783 7058 7796 7058 7796 7059 7783 7059 7786 7059 7796 7060 7786 7060 7797 7060 7797 7061 7786 7061 7780 7061 7797 7062 7780 7062 7798 7062 7798 7063 7780 7063 7777 7063 7798 7064 7777 7064 7799 7064 7799 7065 7777 7065 7774 7065 7799 7066 7774 7066 7800 7066 7800 7067 7774 7067 7768 7067 7800 7068 7768 7068 7801 7068 7801 7069 7768 7069 7767 7069 7801 7070 7767 7070 7802 7070 7802 7071 7767 7071 7771 7071 7802 7072 7771 7072 7803 7072 7803 7073 7771 7073 7770 7073 7803 7074 7770 7074 7804 7074 7459 7075 7461 7075 7805 7075 7805 7076 7461 7076 7806 7076 7805 7077 7806 7077 7803 7077 7804 7078 7522 7078 7803 7078 7803 7079 7522 7079 7807 7079 7803 7080 7807 7080 7805 7080 7785 7081 7525 7081 7787 7081 7787 7082 7525 7082 7524 7082 7785 7083 7784 7083 7525 7083 7525 7084 7784 7084 7753 7084 7525 7085 7753 7085 7668 7085 7782 7086 7781 7086 7524 7086 7524 7087 7781 7087 7788 7087 7524 7088 7788 7088 7787 7088 7523 7089 7522 7089 7804 7089 7776 7090 7775 7090 7808 7090 7808 7091 7775 7091 7779 7091 7808 7092 7779 7092 7778 7092 7770 7093 7772 7093 7808 7093 7782 7094 7524 7094 7778 7094 7778 7095 7524 7095 7523 7095 7778 7096 7523 7096 7808 7096 7808 7097 7523 7097 7804 7097 7808 7098 7804 7098 7770 7098 7772 7099 7773 7099 7808 7099 7808 7100 7773 7100 7769 7100 7808 7101 7769 7101 7776 7101 7680 7102 7809 7102 7667 7102 7667 7103 7809 7103 7525 7103 7667 7104 7525 7104 7668 7104 7646 7105 7466 7105 7467 7105 7646 7106 7467 7106 7644 7106 7638 7107 7640 7107 7467 7107 7467 7108 7640 7108 7642 7108 7467 7109 7642 7109 7644 7109 7631 7110 7634 7110 7467 7110 7467 7111 7634 7111 7636 7111 7467 7112 7636 7112 7638 7112 7467 7113 7476 7113 7631 7113 7631 7114 7476 7114 7474 7114 7631 7115 7474 7115 7472 7115 7484 7116 7483 7116 7666 7116 7472 7117 7471 7117 7631 7117 7631 7118 7471 7118 7477 7118 7631 7119 7477 7119 7666 7119 7666 7120 7477 7120 7479 7120 7666 7121 7479 7121 7484 7121 7487 7122 7486 7122 7809 7122 7680 7123 7718 7123 7809 7123 7809 7124 7718 7124 7719 7124 7809 7125 7719 7125 7720 7125 7720 7126 7721 7126 7809 7126 7809 7127 7721 7127 7722 7127 7809 7128 7722 7128 7723 7128 7483 7129 7487 7129 7666 7129 7666 7130 7487 7130 7809 7130 7666 7131 7809 7131 7724 7131 7724 7132 7809 7132 7723 7132 7488 7133 7525 7133 7485 7133 7485 7134 7525 7134 7809 7134 7485 7135 7809 7135 7486 7135 7810 431 7811 431 7812 431 7812 431 7811 431 7813 431 7814 7136 7815 7136 7810 7136 7810 7137 7815 7137 7811 7137 7816 443 7817 443 7814 443 7814 443 7817 443 7815 443 7810 7138 7812 7138 7814 7138 7814 7139 7812 7139 7816 7139 7823 7140 7826 7140 7822 7140 7827 1607 7825 1607 7824 1607 7827 1608 7824 1608 7828 1608 7824 431 7829 431 7828 431 7828 431 7829 431 7830 431 7818 7141 7819 7141 7820 7141 7818 7142 7820 7142 7821 7142 7831 7143 7832 7143 7833 7143 7833 7144 7832 7144 7834 7144 7834 294 7832 294 7835 294 7835 294 7832 294 7836 294 7839 7145 7838 7145 7840 7145 7837 7146 7839 7146 7840 7146 7841 1495 7842 1495 7843 1495 7843 1495 7842 1495 7844 1495 7845 7147 7843 7147 7844 7147 7845 7148 7844 7148 7846 7148

+
+
+
+
+ + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + 0.6859207 -0.3240135 0.6515582 7.358891 0.7276763 0.3054208 -0.6141704 -6.925791 0 0.8953956 0.4452714 4.958309 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 + + + + + + + +
diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/sensor/rplidar.dae b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/sensor/rplidar.dae new file mode 100644 index 0000000..53dc548 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/sensor/rplidar.dae @@ -0,0 +1,168 @@ + + + + + Blender User + Blender 2.90.1 commit date:2020-09-23, commit time:06:43, hash:3e85bb34d0d7 + + 2020-11-26T09:21:22 + 2020-11-26T09:21:22 + + Z_UP + + + + + + + 39.59775 + 1.777778 + 0.1 + 100 + + + + + + 0 + 0 + 10 + + + + + + + + + 1000 1000 1000 + 1 + 0 + 0.00111109 + + + + + 0 + 0 + 1 + 1 + 1 + 1 + 1 + 0 + 0 + 0 + 1000 + 29.99998 + 75 + 0.15 + 0 + 1 + 2 + 0.04999995 + 30.002 + 1 + 3 + 2880 + 3 + 1 + 1 + 0.1 + 0.1 + 1 + + + + + + + + + + + 0 0 0 1 + + + 0.1 0.1 0.1 1 + + + 0.1 0.1 0.1 1 + + + 0.1 0.1 0.1 1 + + + 1.45 + + + + + + + + + + + + + + + + + 0.00917989 0.00113666 0.046 0.009249985 0 0.046 0.02087116 0 0.04587322 0.008625328 0.003341436 0.046 0.008970618 0.002256155 0.046 0.02024078 0.005090713 0.04587322 0.008149325 0.004376113 0.046 0.01946181 0.00753951 0.04587322 0.006835818 0.006231665 0.046 0.007549762 0.00534439 0.046 0.017035 0.01205879 0.04587322 0.006018161 0.007024466 0.046 0.01542395 0.01406079 0.04587322 0.004123032 0.008280217 0.046 0.005109369 0.007710814 0.046 0.01152849 0.01739823 0.04587322 0.003074228 0.008724153 0.046 0.009303033 0.01868307 0.04587322 8.53482e-4 0.009210526 0.046 0.001978874 0.009035825 0.046 0.004464983 0.02038794 0.04587322 -2.84854e-4 0.009245574 0.046 0.001925706 0.02078211 0.04587322 -0.002531349 0.008896887 0.046 -0.001418828 0.009140491 0.046 -0.003201425 0.02062416 0.04587322 -0.003605484 0.008518338 0.046 -0.005711615 0.02007442 0.04587322 -0.004624962 0.008010685 0.046 -0.008135259 0.01922035 0.04587322 -0.006439208 0.006640672 0.046 -0.005574345 0.007381618 0.046 -0.01257765 0.01665556 0.04587322 -0.007206439 0.005798995 0.046 -0.0145291 0.01498365 0.04587322 -0.008403301 0.003866076 0.046 -0.007864475 0.004869461 0.046 -0.01774501 0.01098722 0.04587322 -0.008814692 0.00280416 0.046 -0.01896071 0.008723318 0.04587322 -0.009232401 5.69438e-4 0.046 -0.00909245 0.001699626 0.046 -0.02051579 0.003835022 0.04587322 -0.02083158 -0.001284837 0.04587322 -0.009232401 -5.69438e-4 0.046 -0.009249985 0 0.046 -0.00909245 -0.001699626 0.046 -0.008814692 -0.00280416 0.046 -0.02051579 -0.003835022 0.04587322 -0.007864475 -0.004869461 0.046 -0.008403301 -0.003866076 0.046 -0.01896071 -0.008723318 0.04587322 -0.007206439 -0.005798995 0.046 -0.01774501 -0.01098722 0.04587322 -0.005574345 -0.007381618 0.046 -0.006439208 -0.006640672 0.046 -0.0145291 -0.01498365 0.04587322 -0.004624962 -0.008010685 0.046 -0.01257765 -0.01665556 0.04587322 -0.003605484 -0.008518338 0.046 -0.01043558 -0.01807498 0.04587322 -0.001418828 -0.009140491 0.046 -0.002531349 -0.008896887 0.046 -0.005711615 -0.02007442 0.04587322 -2.84854e-4 -0.009245574 0.046 -0.003201425 -0.02062416 0.04587322 0.001978874 -0.009035825 0.046 8.53482e-4 -0.009210526 0.046 0.001925706 -0.02078211 0.04587322 0.003074228 -0.008724153 0.046 0.004464983 -0.02038794 0.04587322 0.005109369 -0.007710814 0.046 0.004123032 -0.008280217 0.046 0.009303033 -0.01868307 0.04587322 0.006018161 -0.007024466 0.046 0.01152849 -0.01739823 0.04587322 0.007549762 -0.00534439 0.046 0.006835818 -0.006231665 0.046 0.01542395 -0.01406079 0.04587322 0.008149325 -0.004376113 0.046 0.017035 -0.01205879 0.04587322 0.008970618 -0.002256155 0.046 0.008625328 -0.003341436 0.046 0.01946181 -0.00753951 0.04587322 0.00917989 -0.00113666 0.046 0.02024078 -0.005090713 0.04587322 0.02071297 -0.002564787 0.04587322 0.02071297 0.002564787 0.04587322 0.02459174 0 0.04569715 0.02440536 0.003022015 0.04569715 0.02833861 0 0.04533106 0.02812379 0.00348246 0.04533106 0.03069597 0 0.0448507 0.03046333 0.003772139 0.0448507 0.03219759 0 0.04428511 0.03195357 0.003956675 0.04428511 0.03326088 0 0.04357028 0.03300881 0.004087328 0.04357028 0.03417772 0 0.04255026 0.03391867 0.004200041 0.04255026 0.03481245 0 0.04132312 0.03454864 0.004278004 0.04132312 0.03540575 0 0.03912329 0.03513735 0.0043509 0.03912329 0.03584712 0 0.03571778 0.03557544 0.00440514 0.03571778 0.03611987 0 0.03072041 0.03584611 0.004438698 0.03072041 0.02384901 0.005998253 0.04569715 0.02293115 0.008883535 0.04569715 0.02748268 0.006912171 0.04533106 0.02642494 0.01023703 0.04533106 0.02976888 0.007487118 0.0448507 0.02862316 0.01108866 0.0448507 0.03122514 0.007853388 0.04428511 0.03002333 0.01163107 0.04428511 0.0322563 0.008112788 0.04357028 0.03101485 0.01201522 0.04357028 0.03314548 0.008336424 0.04255026 0.03186976 0.01234638 0.04255026 0.03376102 0.008491218 0.04132312 0.03246164 0.01257568 0.04132312 0.03433638 0.008635938 0.03912329 0.03301489 0.01279002 0.03912329 0.03476446 0.008743584 0.03571778 0.03342646 0.01294946 0.03571778 0.03502899 0.008810102 0.03072041 0.03368079 0.01304799 0.03072041 0.01838773 0.009873986 0.04587322 0.02166563 0.01163417 0.04569715 0.02496665 0.01340681 0.04533106 0.02704352 0.01452207 0.0448507 0.02836644 0.01523244 0.04428511 0.02930325 0.0157355 0.04357028 0.03011101 0.01616925 0.04255026 0.03067022 0.01646953 0.04132312 0.03119289 0.01675021 0.03912329 0.03158175 0.01695901 0.03571778 0.03182208 0.01708805 0.03072041 0.02007174 0.01420849 0.04569715 0.01817351 0.01656734 0.04569715 0.02312988 0.01637327 0.04533106 0.02094244 0.0190916 0.04533106 0.02505397 0.0177353 0.0448507 0.02268457 0.02067971 0.0448507 0.02627956 0.0186029 0.04428511 0.02379429 0.02169138 0.04428511 0.02714741 0.01921725 0.04357028 0.02458006 0.02240771 0.04357028 0.02789574 0.01974701 0.04255026 0.02525764 0.02302539 0.04255026 0.02841383 0.0201137 0.04132312 0.02572673 0.02345299 0.04132312 0.02889806 0.02045649 0.03912329 0.02616512 0.0238527 0.03912329 0.02925831 0.02071154 0.03571778 0.02649134 0.02415007 0.03571778 0.02948093 0.02086913 0.03072041 0.02669292 0.02433383 0.03072041 0.01357913 0.01584964 0.04587322 0.01599985 0.01867508 0.04569715 0.01843762 0.02152043 0.04533106 0.01997137 0.02331066 0.0448507 0.02094835 0.02445101 0.04428511 0.02164012 0.02525848 0.04357028 0.02223664 0.02595472 0.04255026 0.02264964 0.02643674 0.04132312 0.02303558 0.02688729 0.03912329 0.02332282 0.02722251 0.03571778 0.02350026 0.02742964 0.03072041 0.0135836 0.02049976 0.04569715 0.01096147 0.02201366 0.04569715 0.01565325 0.0236231 0.04533106 0.01263159 0.02536767 0.04533106 0.01695537 0.02558821 0.0448507 0.01368236 0.02747792 0.0448507 0.01778483 0.02683997 0.04428511 0.01435166 0.02882212 0.04428511 0.01837211 0.02772635 0.04357028 0.01482564 0.02977395 0.04357028 0.01887857 0.02849066 0.04255026 0.01523429 0.03059464 0.04255026 0.01922917 0.02901977 0.04132312 0.01551723 0.03116285 0.04132312 0.01955687 0.02951431 0.03912329 0.0157817 0.03169393 0.03912329 0.01980066 0.02988225 0.03571778 0.01597845 0.03208905 0.03571778 0.01995134 0.03010964 0.03072041 0.01609998 0.03233319 0.03072041 0.005260944 0.02402245 0.04569715 0.002269029 0.02448683 0.04569715 0.006062567 0.02768248 0.04533106 0.002614736 0.02821773 0.04533106 0.006566882 0.0299853 0.0448507 0.002832233 0.03056502 0.0448507 0.006888091 0.03145217 0.04428511 0.002970814 0.03206026 0.04428511 0.007115602 0.03249084 0.04357028 0.003068923 0.03311902 0.04357028 0.007311701 0.03338646 0.04255026 0.003153502 0.03403192 0.04255026 0.00744754 0.03400647 0.04132312 0.003212034 0.03466397 0.04132312 0.007574439 0.03458601 0.03912329 0.003266811 0.03525471 0.03912329 0.007668852 0.03501719 0.03571778 0.003307521 0.03569424 0.03571778 0.007727205 0.03528368 0.03072041 0.003332674 0.0359658 0.03072041 -0.003772139 0.02430075 0.04569715 -0.006729841 0.02365297 0.04569715 -0.004346907 0.02800321 0.04533106 -0.007755219 0.02725678 0.04533106 -0.004708468 0.03033268 0.0448507 -0.008400321 0.02952414 0.0448507 -0.00493884 0.03181654 0.04428511 -0.008811295 0.03096848 0.04428511 -0.005101919 0.03286725 0.04357028 -0.009102225 0.03199118 0.04357028 -0.005242526 0.03377324 0.04255026 -0.00935316 0.03287303 0.04255026 -0.00533992 0.03440046 0.04132312 -0.009526848 0.0334835 0.04132312 -0.005430936 0.03498673 0.03912329 -0.009689211 0.03405416 0.03912329 -0.005498647 0.03542292 0.03571778 -0.00981003 0.03447866 0.03571778 -0.00554049 0.03569245 0.03072041 -0.009884655 0.03474104 0.03072041 -0.01481986 0.01962465 0.04569715 -0.01711916 0.01765471 0.04569715 -0.0170778 0.02261465 0.04533106 -0.01972746 0.02034461 0.04533106 -0.01849842 0.02449589 0.0448507 -0.0213685 0.02203696 0.0448507 -0.01940339 0.02569425 0.04428511 -0.02241384 0.02311503 0.04428511 -0.02004414 0.02654278 0.04357028 -0.02315402 0.02387839 0.04357028 -0.02059668 0.02727442 0.04255026 -0.02379226 0.0245366 0.04255026 -0.02097916 0.02778095 0.04132312 -0.02423411 0.02499228 0.04132312 -0.02133673 0.02825438 0.03912329 -0.02464711 0.02541822 0.03912329 -0.02160269 0.02860665 0.03571778 -0.02495437 0.02573508 0.03571778 -0.02176707 0.02882426 0.03072041 -0.02514427 0.02593088 0.03072041 -0.02090835 0.01294589 0.04569715 -0.02234077 0.01027834 0.04569715 -0.02409392 0.01491832 0.04533106 -0.02574461 0.01184439 0.04533106 -0.02609825 0.01615935 0.0448507 -0.02788621 0.01282966 0.0448507 -0.02737492 0.01694983 0.04428511 -0.02925038 0.01345729 0.04428511 -0.02827894 0.01750957 0.04357028 -0.03021633 0.01390171 0.04357028 -0.02905851 0.01799225 0.04255026 -0.03104931 0.0142849 0.04255026 -0.02959817 0.0183264 0.04132312 -0.03162592 0.0145502 0.04132312 -0.03010255 0.01863873 0.03912329 -0.03216487 0.01479816 0.03912329 -0.03047782 0.01887106 0.03571778 -0.03256589 0.01498264 0.03571778 -0.03070974 0.01901465 0.03072041 -0.03281366 0.01509666 0.03072041 -0.02083158 0.001284837 0.04587322 -0.02417302 0.004518687 0.04569715 -0.02454513 0.001513838 0.04569715 -0.02785605 0.00520718 0.04533106 -0.02828484 0.001744508 0.04533106 -0.0301733 0.005640327 0.0448507 -0.03063774 0.001889646 0.0448507 -0.03164935 0.005916237 0.04428511 -0.03213649 0.001982092 0.04428511 -0.03269457 0.006111621 0.04357028 -0.03319782 0.002047538 0.04357028 -0.0335958 0.006280124 0.04255026 -0.03411293 0.002103984 0.04255026 -0.03421974 0.00639677 0.04132312 -0.03474646 0.002143085 0.04132312 -0.03480291 0.006505787 0.03912329 -0.03533858 0.002179563 0.03912329 -0.03523677 0.006586849 0.03571778 -0.03577911 0.002206742 0.03571778 -0.03550487 0.006636977 0.03072041 -0.03605139 0.002223551 0.03072041 -0.02454513 -0.001513838 0.04569715 -0.02417302 -0.004518687 0.04569715 -0.02828484 -0.001744508 0.04533106 -0.02785605 -0.00520718 0.04533106 -0.03063774 -0.001889646 0.0448507 -0.0301733 -0.005640327 0.0448507 -0.03213649 -0.001982092 0.04428511 -0.03164935 -0.005916237 0.04428511 -0.03319782 -0.002047538 0.04357028 -0.03269457 -0.006111621 0.04357028 -0.03411293 -0.002103984 0.04255026 -0.0335958 -0.006280124 0.04255026 -0.03474646 -0.002143085 0.04132312 -0.03421974 -0.00639677 0.04132312 -0.03533858 -0.002179563 0.03912329 -0.03480291 -0.006505787 0.03912329 -0.03577911 -0.002206742 0.03571778 -0.03523677 -0.006586849 0.03571778 -0.03605139 -0.002223551 0.03072041 -0.03550487 -0.006636977 0.03072041 -0.01988899 -0.006327152 0.04587322 -0.02343451 -0.00745505 0.04569715 -0.02700501 -0.008590877 0.04533106 -0.02925145 -0.009305536 0.0448507 -0.03068244 -0.009760737 0.04428511 -0.03169566 -0.01008307 0.04357028 -0.0325694 -0.01036107 0.04255026 -0.03317427 -0.01055347 0.04132312 -0.03373962 -0.0107333 0.03912329 -0.03416025 -0.01086711 0.03571778 -0.03442019 -0.01094985 0.03072041 -0.02234077 -0.01027834 0.04569715 -0.02090835 -0.01294589 0.04569715 -0.02574461 -0.01184439 0.04533106 -0.02409392 -0.01491832 0.04533106 -0.02788621 -0.01282966 0.0448507 -0.02609825 -0.01615935 0.0448507 -0.02925038 -0.01345729 0.04428511 -0.02737492 -0.01694983 0.04428511 -0.03021633 -0.01390171 0.04357028 -0.02827894 -0.01750957 0.04357028 -0.03104931 -0.0142849 0.04255026 -0.02905851 -0.01799225 0.04255026 -0.03162592 -0.0145502 0.04132312 -0.02959817 -0.0183264 0.04132312 -0.03216487 -0.01479816 0.03912329 -0.03010255 -0.01863873 0.03912329 -0.03256589 -0.01498264 0.03571778 -0.03047782 -0.01887106 0.03571778 -0.03281366 -0.01509666 0.03072041 -0.03070974 -0.01901465 0.03072041 -0.01626032 -0.01308465 0.04587322 -0.01915895 -0.01541715 0.04569715 -0.02207803 -0.01776611 0.04533106 -0.02391463 -0.01924401 0.0448507 -0.02508449 -0.02018541 0.04428511 -0.02591288 -0.02085202 0.04357028 -0.02662718 -0.02142679 0.04255026 -0.02712172 -0.02182477 0.04132312 -0.02758389 -0.02219671 0.03912329 -0.02792781 -0.02247339 0.03571778 -0.0281403 -0.0226444 0.03072041 -0.01711916 -0.01765471 0.04569715 -0.01481986 -0.01962465 0.04569715 -0.01972746 -0.02034461 0.04533106 -0.0170778 -0.02261465 0.04533106 -0.0213685 -0.02203696 0.0448507 -0.01849842 -0.02449589 0.0448507 -0.02241384 -0.02311503 0.04428511 -0.01940339 -0.02569425 0.04428511 -0.02315402 -0.02387839 0.04357028 -0.02004414 -0.02654278 0.04357028 -0.02379226 -0.0245366 0.04255026 -0.02059668 -0.02727442 0.04255026 -0.02423411 -0.02499228 0.04132312 -0.02097916 -0.02778095 0.04132312 -0.02464711 -0.02541822 0.03912329 -0.02133673 -0.02825438 0.03912329 -0.02495437 -0.02573508 0.03571778 -0.02160269 -0.02860665 0.03571778 -0.02514427 -0.02593088 0.03072041 -0.02176707 -0.02882426 0.03072041 -0.0122959 -0.02129709 0.04569715 -0.01416927 -0.02454191 0.04533106 -0.01534795 -0.02658349 0.0448507 -0.01609879 -0.02788394 0.04428511 -0.01663041 -0.02880477 0.04357028 -0.01708883 -0.02959877 0.04255026 -0.01740622 -0.0301485 0.04132312 -0.01770287 -0.03066223 0.03912329 -0.01792353 -0.03104454 0.03571778 -0.0180599 -0.03128075 0.03072041 -0.008135259 -0.01922035 0.04587322 -0.009585499 -0.02264672 0.04569715 -0.01104599 -0.02609717 0.04533106 -0.01196485 -0.02826809 0.0448507 -0.01255017 -0.02965092 0.04428511 -0.0129646 -0.03063011 0.04357028 -0.01332199 -0.03147447 0.04255026 -0.01356941 -0.03205901 0.04132312 -0.01380062 -0.03260535 0.03912329 -0.01397269 -0.03301179 0.03571778 -0.01407903 -0.03326302 0.03072041 -0.006729841 -0.02365297 0.04569715 -0.003772139 -0.02430075 0.04569715 -0.007755219 -0.02725678 0.04533106 -0.004346907 -0.02800321 0.04533106 -0.008400321 -0.02952414 0.0448507 -0.004708468 -0.03033268 0.0448507 -0.008811295 -0.03096848 0.04428511 -0.00493884 -0.03181654 0.04428511 -0.009102225 -0.03199118 0.04357028 -0.005101919 -0.03286725 0.04357028 -0.00935316 -0.03287303 0.04255026 -0.005242526 -0.03377324 0.04255026 -0.009526848 -0.0334835 0.04132312 -0.00533992 -0.03440046 0.04132312 -0.009689211 -0.03405416 0.03912329 -0.005430936 -0.03498673 0.03912329 -0.00981003 -0.03447866 0.03571778 -0.005498647 -0.03542292 0.03571778 -0.009884655 -0.03474104 0.03072041 -0.00554049 -0.03569245 0.03072041 -6.4273e-4 -0.02086126 0.04587322 -7.57306e-4 -0.02458012 0.04569715 -8.72689e-4 -0.02832514 0.04533106 -9.45285e-4 -0.03068143 0.0448507 -9.91527e-4 -0.03218233 0.04428511 -0.001024246 -0.03324508 0.04357028 -0.001052498 -0.0341615 0.04255026 -0.001072049 -0.03479593 0.04132312 -0.001090288 -0.03538894 0.03912329 -0.001103878 -0.03583014 0.03571778 -0.001112282 -0.03610277 0.03072041 0.002269029 -0.02448683 0.04569715 0.005260944 -0.02402245 0.04569715 0.002614736 -0.02821773 0.04533106 0.006062567 -0.02768248 0.04533106 0.002832233 -0.03056502 0.0448507 0.006566882 -0.0299853 0.0448507 0.002970814 -0.03206026 0.04428511 0.006888091 -0.03145217 0.04428511 0.003068923 -0.03311902 0.04357028 0.007115602 -0.03249084 0.04357028 0.003153502 -0.03403192 0.04255026 0.007311701 -0.03338646 0.04255026 0.003212034 -0.03466397 0.04132312 0.00744754 -0.03400647 0.04132312 0.003266811 -0.03525471 0.03912329 0.007574439 -0.03458601 0.03912329 0.003307521 -0.03569424 0.03571778 0.007668852 -0.03501719 0.03571778 0.003332674 -0.0359658 0.03072041 0.007727205 -0.03528368 0.03072041 0.006936609 -0.01968473 0.04587322 0.008173167 -0.02319383 0.04569715 0.009418427 -0.02672767 0.04533106 0.01020193 -0.02895104 0.0448507 0.010701 -0.03036731 0.04428511 0.01105439 -0.03137016 0.04357028 0.01135909 -0.0322349 0.04255026 0.01157009 -0.03283351 0.04132312 0.01176726 -0.03339308 0.03912329 0.01191395 -0.03380936 0.03571778 0.01200461 -0.03406661 0.03072041 0.01096147 -0.02201366 0.04569715 0.0135836 -0.02049976 0.04569715 0.01263159 -0.02536767 0.04533106 0.01565325 -0.0236231 0.04533106 0.01368236 -0.02747792 0.0448507 0.01695537 -0.02558821 0.0448507 0.01435166 -0.02882212 0.04428511 0.01778483 -0.02683997 0.04428511 0.01482564 -0.02977395 0.04357028 0.01837211 -0.02772635 0.04357028 0.01523429 -0.03059464 0.04255026 0.01887857 -0.02849066 0.04255026 0.01551723 -0.03116285 0.04132312 0.01922917 -0.02901977 0.04132312 0.0157817 -0.03169393 0.03912329 0.01955687 -0.02951431 0.03912329 0.01597845 -0.03208905 0.03571778 0.01980066 -0.02988225 0.03571778 0.01609998 -0.03233319 0.03072041 0.01995134 -0.03010964 0.03072041 0.01817351 -0.01656734 0.04569715 0.02007174 -0.01420849 0.04569715 0.02094244 -0.0190916 0.04533106 0.02312988 -0.01637327 0.04533106 0.02268457 -0.02067971 0.0448507 0.02505397 -0.0177353 0.0448507 0.02379429 -0.02169138 0.04428511 0.02627956 -0.0186029 0.04428511 0.02458006 -0.02240771 0.04357028 0.02714741 -0.01921725 0.04357028 0.02525764 -0.02302539 0.04255026 0.02789574 -0.01974701 0.04255026 0.02572673 -0.02345299 0.04132312 0.02841383 -0.0201137 0.04132312 0.02616512 -0.0238527 0.03912329 0.02889806 -0.02045649 0.03912329 0.02649134 -0.02415007 0.03571778 0.02925831 -0.02071154 0.03571778 0.02669292 -0.02433383 0.03072041 0.02948093 -0.02086913 0.03072041 0.02293115 -0.008883535 0.04569715 0.02384901 -0.005998253 0.04569715 0.02642494 -0.01023703 0.04533106 0.02748268 -0.006912171 0.04533106 0.02862316 -0.01108866 0.0448507 0.02976888 -0.007487118 0.0448507 0.03002333 -0.01163107 0.04428511 0.03122514 -0.007853388 0.04428511 0.03101485 -0.01201522 0.04357028 0.0322563 -0.008112788 0.04357028 0.03186976 -0.01234638 0.04255026 0.03314548 -0.008336424 0.04255026 0.03246164 -0.01257568 0.04132312 0.03376102 -0.008491218 0.04132312 0.03301489 -0.01279002 0.03912329 0.03433638 -0.008635938 0.03912329 0.03342646 -0.01294946 0.03571778 0.03476446 -0.008743584 0.03571778 0.03368079 -0.01304799 0.03072041 0.03502899 -0.008810102 0.03072041 0.03624999 0 0.01899999 0.03597521 0.004454672 0.01899999 0.03569924 0.006294727 0.01899999 0.03515511 0.008841872 0.01899999 0.03406381 0.01239818 0.01899999 0.03380209 0.01309496 0.01899999 0.03193664 0.01714962 0.01899999 0.0313934 0.01812499 0.01899999 0.02958709 0.02094429 0.01899999 0.02776908 0.023301 0.01899999 0.02678906 0.02442145 0.01899999 0.0235849 0.0275284 0.01899999 0.023301 0.02776908 0.01899999 0.02002322 0.03021806 0.01899999 0.01812499 0.0313934 0.01899999 0.01615798 0.03244966 0.01899999 0.01239818 0.03406381 0.01899999 0.006936609 0.01968473 0.04587322 0.008173167 0.02319383 0.04569715 0.009418427 0.02672767 0.04533106 0.01020193 0.02895104 0.0448507 0.010701 0.03036731 0.04428511 0.01105439 0.03137016 0.04357028 0.01135909 0.0322349 0.04255026 0.01157009 0.03283351 0.04132312 0.01176726 0.03339308 0.03912329 0.01191395 0.03380936 0.03571778 0.01200461 0.03406661 0.03072041 0.01204782 0.03418934 0.01899999 0.007755041 0.0354107 0.01899999 0.006294727 0.03569924 0.01899999 0.003344714 0.03609532 0.01899999 0 0.03624999 0.01899999 -6.4273e-4 0.02086126 0.04587322 -7.57306e-4 0.02458012 0.04569715 -8.72689e-4 0.02832514 0.04533106 -9.45285e-4 0.03068143 0.0448507 -9.91527e-4 0.03218233 0.04428511 -0.001024246 0.03324508 0.04357028 -0.001052498 0.0341615 0.04255026 -0.001072049 0.03479593 0.04132312 -0.001090288 0.03538894 0.03912329 -0.001103878 0.03583014 0.03571778 -0.001112282 0.03610277 0.03072041 -0.001116275 0.03623276 0.01899999 -0.005560398 0.03582096 0.01899999 -0.006294727 0.03569924 0.01899999 -0.009920239 0.03486615 0.01899999 -0.01239818 0.03406381 0.01899999 -0.009585499 0.02264672 0.04569715 -0.01104599 0.02609717 0.04533106 -0.01196485 0.02826809 0.0448507 -0.01255017 0.02965092 0.04428511 -0.0129646 0.03063011 0.04357028 -0.01332199 0.03147447 0.04255026 -0.01356941 0.03205901 0.04132312 -0.01380062 0.03260535 0.03912329 -0.01397269 0.03301179 0.03571778 -0.01407903 0.03326302 0.03072041 -0.01412969 0.03338277 0.01899999 -0.01043558 0.01807498 0.04587322 -0.0122959 0.02129709 0.04569715 -0.01416927 0.02454191 0.04533106 -0.01534795 0.02658349 0.0448507 -0.01609879 0.02788394 0.04428511 -0.01663041 0.02880477 0.04357028 -0.01708883 0.02959877 0.04255026 -0.01740622 0.0301485 0.04132312 -0.01770287 0.03066223 0.03912329 -0.01792353 0.03104454 0.03571778 -0.0180599 0.03128075 0.03072041 -0.01812499 0.0313934 0.01899999 -0.02184545 0.0289281 0.01899999 -0.023301 0.02776908 0.01899999 -0.02523481 0.02602428 0.01899999 -0.02776908 0.023301 0.01899999 -0.01626032 0.01308465 0.04587322 -0.01915895 0.01541715 0.04569715 -0.02207803 0.01776611 0.04533106 -0.02391463 0.01924401 0.0448507 -0.02508449 0.02018541 0.04428511 -0.02591288 0.02085202 0.04357028 -0.02662718 0.02142679 0.04255026 -0.02712172 0.02182477 0.04132312 -0.02758389 0.02219671 0.03912329 -0.02792781 0.02247339 0.03571778 -0.0281403 0.0226444 0.03072041 -0.02824163 0.02272593 0.01899999 -0.03082036 0.01908314 0.01899999 -0.0313934 0.01812499 0.01899999 -0.03293186 0.01515102 0.01899999 -0.03406381 0.01239818 0.01899999 -0.01988899 0.006327152 0.04587322 -0.02343451 0.00745505 0.04569715 -0.02700501 0.008590877 0.04533106 -0.02925145 0.009305536 0.0448507 -0.03068244 0.009760737 0.04428511 -0.03169566 0.01008307 0.04357028 -0.0325694 0.01036107 0.04255026 -0.03317427 0.01055347 0.04132312 -0.03373962 0.0107333 0.03912329 -0.03416025 0.01086711 0.03571778 -0.03442019 0.01094985 0.03072041 -0.03454411 0.01098924 0.01899999 -0.03563272 0.006660878 0.01899999 -0.03569924 0.006294727 0.01899999 -0.03618121 0.002231538 0.01899999 -0.03624999 0 0.01899999 -0.03618121 -0.002231538 0.01899999 -0.03569924 -0.006294727 0.01899999 -0.03563272 -0.006660878 0.01899999 -0.03454411 -0.01098924 0.01899999 -0.03406381 -0.01239818 0.01899999 -0.03293186 -0.01515102 0.01899999 -0.0313934 -0.01812499 0.01899999 -0.03082036 -0.01908314 0.01899999 -0.02824163 -0.02272593 0.01899999 -0.02776908 -0.023301 0.01899999 -0.02523481 -0.02602428 0.01899999 -0.023301 -0.02776908 0.01899999 -0.02184545 -0.0289281 0.01899999 -0.01812499 -0.0313934 0.01899999 -0.01412969 -0.03338277 0.01899999 -0.01239818 -0.03406381 0.01899999 -0.009920239 -0.03486615 0.01899999 -0.006294727 -0.03569924 0.01899999 -0.005560398 -0.03582096 0.01899999 -0.001116275 -0.03623276 0.01899999 0 -0.03624999 0.01899999 0.003344714 -0.03609532 0.01899999 0.006294727 -0.03569924 0.01899999 0.007755041 -0.0354107 0.01899999 0.01204782 -0.03418934 0.01899999 0.01239818 -0.03406381 0.01899999 0.01615798 -0.03244966 0.01899999 0.01812499 -0.0313934 0.01899999 0.02002322 -0.03021806 0.01899999 0.023301 -0.02776908 0.01899999 0.01357913 -0.01584964 0.04587322 0.01599985 -0.01867508 0.04569715 0.01843762 -0.02152043 0.04533106 0.01997137 -0.02331066 0.0448507 0.02094835 -0.02445101 0.04428511 0.02164012 -0.02525848 0.04357028 0.02223664 -0.02595472 0.04255026 0.02264964 -0.02643674 0.04132312 0.02303558 -0.02688729 0.03912329 0.02332282 -0.02722251 0.03571778 0.02350026 -0.02742964 0.03072041 0.0235849 -0.0275284 0.01899999 0.02678906 -0.02442145 0.01899999 0.02776908 -0.023301 0.01899999 0.02958709 -0.02094429 0.01899999 0.0313934 -0.01812499 0.01899999 0.01838773 -0.009873986 0.04587322 0.02166563 -0.01163417 0.04569715 0.02496665 -0.01340681 0.04533106 0.02704352 -0.01452207 0.0448507 0.02836644 -0.01523244 0.04428511 0.02930325 -0.0157355 0.04357028 0.03011101 -0.01616925 0.04255026 0.03067022 -0.01646953 0.04132312 0.03119289 -0.01675021 0.03912329 0.03158175 -0.01695901 0.03571778 0.03182208 -0.01708805 0.03072041 0.03193664 -0.01714962 0.01899999 0.03380209 -0.01309496 0.01899999 0.03406381 -0.01239818 0.01899999 0.03515511 -0.008841872 0.01899999 0.03569924 -0.006294727 0.01899999 0.02440536 -0.003022015 0.04569715 0.02812379 -0.00348246 0.04533106 0.03046333 -0.003772139 0.0448507 0.03195357 -0.003956675 0.04428511 0.03300881 -0.004087328 0.04357028 0.03391867 -0.004200041 0.04255026 0.03454864 -0.004278004 0.04132312 0.03513735 -0.0043509 0.03912329 0.03557544 -0.00440514 0.03571778 0.03584611 -0.004438698 0.03072041 0.03597521 -0.004454672 0.01899999 -0.009249985 0 0.046 0 0 0.046 0.02774995 0 0 -0.02949994 -0.001749992 0 -0.02862495 -0.001515507 0 -0.01992362 -0.0323581 0 -0.02510559 -0.02852553 0 -0.001749992 -0.02949994 0 0.03786307 0.003222584 0 0.03786307 -0.003222584 0 0.03101551 -8.75e-4 0 -0.02798444 8.75e-4 0 0.02798444 8.75e-4 0 -0.02774995 0 0 -0.02798444 -8.75e-4 0 0.02798444 -8.75e-4 0 0.001515507 -0.02862495 0 -8.75e-4 -0.02798444 0 0 -0.02774995 0 8.75e-4 -0.02798444 0 -0.03745335 -0.006421983 0 -0.001515507 -0.02862495 0 -0.0358293 -0.01265931 0 -0.03317451 -0.01853239 0 -0.02949994 0.001749992 0 -0.02956533 0.02387231 0 -0.02862495 0.001515507 0 -0.02510559 0.02852553 0 -0.030375 -0.001515507 0 -0.03101551 -8.75e-4 0 -0.02956533 -0.02387231 0 0.02862495 -0.001515507 0 0.001515507 -0.030375 0 0.001749992 -0.02949994 0 -0.03125 0 0 -0.03799998 0 0 -0.03101551 8.75e-4 0 -0.03745335 0.006421983 0 -0.030375 0.001515507 0 -0.0358293 0.01265931 0 -0.03317451 0.01853239 0 -0.0141685 -0.03525978 0 -0.001515507 -0.030375 0 -0.008005797 -0.03714704 0 -8.75e-4 -0.03101551 0 -0.001612722 -0.03796571 0 0 -0.03125 0 0.004826664 -0.03769218 0 8.75e-4 -0.03101551 0 0.01112723 -0.03633433 0 -8.75e-4 0.02798444 0 0.02259606 -0.03055185 0 0.02743428 -0.02629363 0 0.02949994 -0.001749992 0 0.03148335 -0.02127903 0 0.01710772 -0.03393113 0 0.030375 -0.001515507 0 0.0367738 -0.009575128 0 0.03462666 -0.01565223 0 0.03125 0 0 0.03101551 8.75e-4 0 0.0367738 0.009575128 0 0.030375 0.001515507 0 0.03462666 0.01565223 0 0.02949994 0.001749992 0 0.03148335 0.02127903 0 0.01112723 0.03633433 0 0.01710772 0.03393113 0 0.02862495 0.001515507 0 0.02259606 0.03055185 0 0.02743428 0.02629363 0 0 0.02774995 0 8.75e-4 0.02798444 0 0.001515507 0.02862495 0 0.001749992 0.02949994 0 0.001515507 0.030375 0 0.004826664 0.03769218 0 8.75e-4 0.03101551 0 -0.001612722 0.03796571 0 0 0.03125 0 -0.008005797 0.03714704 0 -8.75e-4 0.03101551 0 -0.0141685 0.03525978 0 -0.001515507 0.030375 0 -0.01992362 0.0323581 0 -0.001749992 0.02949994 0 -0.001515507 0.02862495 0 -0.03799998 0 0 -0.03745335 0.006421983 0.01874995 -0.03745335 0.006421983 0 -0.0358293 0.01265931 0.01874995 -0.0358293 0.01265931 0 -0.03317451 0.01853239 0.01874995 -0.03317451 0.01853239 0 -0.02956533 0.02387231 0.01874995 -0.02956533 0.02387231 0 -0.02510559 0.02852553 0.01874995 -0.02510559 0.02852553 0 -0.01992362 0.0323581 0.01874995 -0.01992362 0.0323581 0 -0.0141685 0.03525978 0.01874995 -0.0141685 0.03525978 0 -0.008005797 0.03714704 0.01874995 -0.008005797 0.03714704 0 -0.001612722 0.03796571 0.01874995 -0.001612722 0.03796571 0 0.004826664 0.03769218 0.01874995 0.004826664 0.03769218 0 0.01112723 0.03633433 0.01874995 0.01112723 0.03633433 0 0.01710772 0.03393113 0.01874995 0.01710772 0.03393113 0 0.02259606 0.03055185 0.01874995 0.02259606 0.03055185 0 0.02743428 0.02629363 0.01874995 0.02743428 0.02629363 0 0.03148335 0.02127903 0.01874995 0.03148335 0.02127903 0 0.03462666 0.01565223 0.01874995 0.03462666 0.01565223 0 0.0367738 0.009575128 0.01874995 0.0367738 0.009575128 0 0.03786307 0.003222584 0.01874995 0.03786307 0.003222584 0 0.03786307 -0.003222584 0.01874995 0.03786307 -0.003222584 0 0.0367738 -0.009575128 0.01874995 0.0367738 -0.009575128 0 0.03462666 -0.01565223 0.01874995 0.03462666 -0.01565223 0 0.03148335 -0.02127903 0.01874995 0.03148335 -0.02127903 0 0.02743428 -0.02629363 0.01874995 0.02743428 -0.02629363 0 0.02259606 -0.03055185 0.01874995 0.02259606 -0.03055185 0 0.01710772 -0.03393113 0.01874995 0.01710772 -0.03393113 0 0.01112723 -0.03633433 0.01874995 0.01112723 -0.03633433 0 0.004826664 -0.03769218 0.01874995 0.004826664 -0.03769218 0 -0.001612722 -0.03796571 0.01874995 -0.001612722 -0.03796571 0 -0.008005797 -0.03714704 0.01874995 -0.008005797 -0.03714704 0 -0.0141685 -0.03525978 0.01874995 -0.0141685 -0.03525978 0 -0.01992362 -0.0323581 0.01874995 -0.01992362 -0.0323581 0 -0.02510559 -0.02852553 0.01874995 -0.02510559 -0.02852553 0 -0.02956533 -0.02387231 0.01874995 -0.02956533 -0.02387231 0 -0.03317451 -0.01853239 0.01874995 -0.03317451 -0.01853239 0 -0.0358293 -0.01265931 0.01874995 -0.0358293 -0.01265931 0 -0.03745335 -0.006421983 0.01874995 -0.03745335 -0.006421983 0 -0.03799998 0 0.01874995 0.03624999 0 0.01874995 0.03569924 0.006294727 0.01874995 0.03406381 0.01239818 0.01874995 0.0313934 0.01812499 0.01874995 0.02776908 0.023301 0.01874995 0.023301 0.02776908 0.01874995 0.01812499 0.0313934 0.01874995 0.01239818 0.03406381 0.01874995 0.006294727 0.03569924 0.01874995 0 0.03624999 0.01874995 -0.006294727 0.03569924 0.01874995 -0.01239818 0.03406381 0.01874995 -0.01812499 0.0313934 0.01874995 -0.023301 0.02776908 0.01874995 -0.02776908 0.023301 0.01874995 -0.0313934 0.01812499 0.01874995 -0.03406381 0.01239818 0.01874995 -0.03569924 0.006294727 0.01874995 -0.03624999 0 0.01874995 -0.03569924 -0.006294727 0.01874995 -0.03406381 -0.01239818 0.01874995 -0.0313934 -0.01812499 0.01874995 -0.02776908 -0.023301 0.01874995 -0.023301 -0.02776908 0.01874995 -0.01812499 -0.0313934 0.01874995 -0.01239818 -0.03406381 0.01874995 -0.006294727 -0.03569924 0.01874995 0 -0.03624999 0.01874995 0.006294727 -0.03569924 0.01874995 0.01239818 -0.03406381 0.01874995 0.01812499 -0.0313934 0.01874995 0.023301 -0.02776908 0.01874995 0.02776908 -0.023301 0.01874995 0.0313934 -0.01812499 0.01874995 0.03406381 -0.01239818 0.01874995 0.03569924 -0.006294727 0.01874995 -0.03624999 0 0.01874995 0 -0.03624999 0.01874995 0.03624999 0 0.01899999 0 0.03624999 0.01874995 -0.03624999 0 0.01899999 -0.001515507 0.030375 0.02499997 -8.75e-4 0.03101551 0.02499997 0 0.02949994 0.02499997 0 0.03125 0.02499997 8.75e-4 0.03101551 0.02499997 -8.75e-4 0.02798444 0.02499997 -0.001515507 0.02862495 0.02499997 -0.001749992 0.02949994 0.02499997 0.001515507 0.02862495 0.02499997 8.75e-4 0.02798444 0.02499997 0 0.02774995 0.02499997 0.001515507 0.030375 0.02499997 0.001749992 0.02949994 0.02499997 0 0.03125 0.02499997 0 0.03125 0 8.75e-4 0.03101551 0 0.001515507 0.030375 0 0.001749992 0.02949994 0 0.001515507 0.02862495 0 8.75e-4 0.02798444 0 -8.75e-4 0.02798444 0 -0.001515507 0.02862495 0 -0.001749992 0.02949994 0 -0.001515507 0.030375 0 -8.75e-4 0.03101551 0 -0.03101551 8.75e-4 0.02499997 -0.030375 0.001515507 0.02499997 -0.02949994 0 0.02499997 -0.02949994 0.001749992 0.02499997 -0.02862495 0.001515507 0.02499997 -0.030375 -0.001515507 0.02499997 -0.03101551 -8.75e-4 0.02499997 -0.03125 0 0.02499997 -0.02798444 -8.75e-4 0.02499997 -0.02862495 -0.001515507 0.02499997 -0.02949994 -0.001749992 0.02499997 -0.02798444 8.75e-4 0.02499997 -0.02774995 0 0.02499997 -0.02949994 0.001749992 0 -0.02862495 0.001515507 0 -0.02798444 8.75e-4 0 -0.02774995 0 0 -0.02798444 -8.75e-4 0 -0.02862495 -0.001515507 0 -0.02949994 -0.001749992 0 -0.030375 -0.001515507 0 -0.03101551 -8.75e-4 0 -0.03125 0 0 -0.03101551 8.75e-4 0 -0.030375 0.001515507 0 -0.001515507 -0.02862495 0.02499997 -8.75e-4 -0.02798444 0.02499997 0 -0.02949994 0.02499997 0 -0.02774995 0.02499997 8.75e-4 -0.02798444 0.02499997 -8.75e-4 -0.03101551 0.02499997 -0.001515507 -0.030375 0.02499997 -0.001749992 -0.02949994 0.02499997 0.001515507 -0.030375 0.02499997 8.75e-4 -0.03101551 0.02499997 0 -0.03125 0.02499997 0.001515507 -0.02862495 0.02499997 0.001749992 -0.02949994 0.02499997 0 -0.02774995 0 8.75e-4 -0.02798444 0 0.001515507 -0.02862495 0 0.001749992 -0.02949994 0 0.001515507 -0.030375 0 8.75e-4 -0.03101551 0 -8.75e-4 -0.03101551 0 -0.001515507 -0.030375 0 -0.001749992 -0.02949994 0 -0.001515507 -0.02862495 0 -8.75e-4 -0.02798444 0 0.02798444 8.75e-4 0.02499997 0.02862495 0.001515507 0.02499997 0.02949994 0 0.02499997 0.02949994 0.001749992 0.02499997 0.030375 0.001515507 0.02499997 0.02862495 -0.001515507 0.02499997 0.02798444 -8.75e-4 0.02499997 0.02774995 0 0.02499997 0.03101551 -8.75e-4 0.02499997 0.030375 -0.001515507 0.02499997 0.02949994 -0.001749992 0.02499997 0.03101551 8.75e-4 0.02499997 0.03125 0 0.02499997 0.02949994 0.001749992 0 0.030375 0.001515507 0 0.03101551 8.75e-4 0 0.03125 0 0 0.03101551 -8.75e-4 0 0.030375 -0.001515507 0 0.02949994 -0.001749992 0 0.02862495 -0.001515507 0 0.02798444 -8.75e-4 0 0.02774995 0 0 0.02798444 8.75e-4 0 0.02862495 0.001515507 0 + + + + + + + + + + 0.01090776 6.72786e-4 0.9999403 0.01041591 0.003313064 0.9999403 0.009926855 0.004567742 0.9999403 0.008512496 0.006851434 0.9999403 0.007609248 0.007845878 0.9999403 0.005467891 0.009464502 0.9999403 0.004256248 0.0100643 0.9999403 0.001683115 0.0107994 0.9999403 3.34861e-4 0.0109235 0.9999403 -0.00233519 0.01067566 0.9999403 -0.003630578 0.01030743 0.9999403 -0.004873096 0.009782969 0.9999403 -0.007115781 0.00829935 0.9999403 -0.008071899 0.007362604 0.9999404 -0.009627223 0.005170285 0.9999404 -0.01018679 0.003947854 0.9999404 -0.01084661 0.001342952 0.9999403 -0.01090794 -3.36081e-4 0.9999405 -0.01084661 -0.001342952 0.9999403 -0.01059985 -0.002665638 0.9999403 -0.009627223 -0.005170285 0.9999404 -0.008922278 -0.006314337 0.9999403 -0.007115781 -0.008299291 0.9999403 -0.006036281 -0.009110152 0.9999403 -0.004873096 -0.009782969 0.9999403 -0.00233519 -0.01067566 0.9999403 -0.001013338 -0.01088207 0.9999403 0.001674294 -0.01079934 0.9999403 0.002987265 -0.01051151 0.9999404 0.005467891 -0.009464561 0.9999403 0.006582617 -0.008721292 0.9999403 0.008512496 -0.006851434 0.9999403 0.009292364 -0.005753219 0.9999403 0.01041811 -0.003313064 0.9999403 0.01074194 -0.00200808 0.9999403 0.0109083 -6.72769e-4 0.9999403 0.010908 6.72774e-4 0.9999403 0.04726839 0.002915382 0.9988781 0.04727113 0.002915561 0.9988779 0.09723049 0.00599724 0.9952439 0.09723019 0.005996942 0.9952439 0.1996655 0.01231473 0.9797868 0.1996631 0.01231455 0.9797873 0.3523924 0.02173548 0.9356 0.352392 0.02173405 0.9356001 0.5575945 0.03439098 0.8294008 0.5575927 0.03439062 0.8294021 0.7429391 0.04582232 0.6677888 0.7429416 0.04582345 0.667786 0.886879 0.05470061 0.4587521 0.8868798 0.05470073 0.4587507 0.9637977 0.0594443 0.2599243 0.9637978 0.05944627 0.2599233 0.9898549 0.06105273 0.1282958 0.9898549 0.06105178 0.128297 0.9966256 0.06146901 0.05439788 0.9966256 0.06147038 0.05439716 0.01041543 0.003313064 0.9999403 0.04513061 0.01435708 0.998878 0.04513031 0.01435708 0.998878 0.09283173 0.02953195 0.9952437 0.09283268 0.02953201 0.9952437 0.1906294 0.06064355 0.9797871 0.1906298 0.06064325 0.9797871 0.3364437 0.1070313 0.9356014 0.336448 0.1070308 0.9355999 0.5323659 0.1693586 0.8294001 0.5323642 0.1693575 0.8294013 0.7093269 0.2256498 0.6677856 0.7093256 0.2256517 0.6677863 0.8467499 0.269371 0.4587526 0.8467504 0.2693696 0.4587525 0.9201883 0.2927333 0.2599247 0.920189 0.2927325 0.2599228 0.9450667 0.3006474 0.1282967 0.9450663 0.3006492 0.1282958 0.9515311 0.3027037 0.05439758 0.9515308 0.3027045 0.05439722 0.009928703 0.004567742 0.9999403 0.04302322 0.01979434 0.9988781 0.04302567 0.01979428 0.9988779 0.08849835 0.04071629 0.9952438 0.08849954 0.04071599 0.9952437 0.1817329 0.08361011 0.979787 0.1817343 0.08360952 0.9797868 0.3207396 0.1475653 0.9356017 0.3207429 0.1475655 0.9356006 0.5075203 0.2334951 0.8293994 0.5075159 0.2334957 0.8294018 0.6762199 0.3111097 0.6677856 0.6762157 0.3111099 0.6677896 0.8072293 0.3713858 0.4587522 0.807231 0.3713844 0.4587504 0.8772401 0.4035958 0.2599238 0.8772413 0.403594 0.2599224 0.9009578 0.4145058 0.1282963 0.9009575 0.4145063 0.1282972 0.9071206 0.4173408 0.05439704 0.90712 0.4173419 0.05439752 0.008512496 0.006851434 0.9999403 0.03689527 0.02969068 0.9988781 0.03689801 0.02969062 0.9988779 0.0758934 0.06107258 0.9952439 0.07589513 0.06107264 0.9952437 0.1558494 0.1254114 0.9797872 0.1558497 0.1254113 0.9797872 0.2750604 0.2213416 0.9356014 0.2750644 0.2213421 0.9356 0.4352338 0.3502348 0.8294018 0.4352394 0.350234 0.8293991 0.5799086 0.4666512 0.6677895 0.5799105 0.4666522 0.6677871 0.6922639 0.5570612 0.4587523 0.6922628 0.5570629 0.4587518 0.7523028 0.605377 0.2599215 0.752303 0.6053754 0.2599251 0.7726419 0.6217431 0.1282967 0.7726421 0.6217431 0.1282958 0.7779274 0.6259952 0.05439728 0.7779278 0.6259947 0.05439746 0.007609844 0.007845818 0.9999403 0.03296691 0.0339998 0.9988781 0.03296804 0.03399974 0.998878 0.06781494 0.06993645 0.9952438 0.06781476 0.06993633 0.9952437 0.1392546 0.1436125 0.9797875 0.1392567 0.143613 0.9797872 0.2457777 0.2534664 0.9356005 0.2457795 0.2534666 0.9355999 0.3888989 0.4010654 0.8294 0.3888989 0.4010631 0.8294011 0.5181692 0.5343786 0.6677875 0.5181707 0.5343799 0.6677855 0.6185584 0.6379118 0.4587527 0.6185594 0.6379115 0.4587519 0.6722074 0.6932371 0.2599223 0.6722071 0.6932364 0.2599251 0.6903809 0.7119793 0.1282957 0.6903815 0.7119784 0.1282976 0.6951029 0.7168494 0.05439651 0.6951028 0.7168494 0.05439805 0.005464494 0.009464502 0.9999403 0.02367991 0.04101431 0.998878 0.0236808 0.04101437 0.998878 0.04870605 0.08436512 0.9952438 0.04870831 0.08436506 0.9952437 0.1000204 0.1732419 0.9797874 0.1000223 0.1732418 0.9797872 0.1765304 0.3057591 0.9356005 0.1765285 0.3057592 0.9356009 0.2793282 0.4838083 0.8294005 0.2793262 0.48381 0.8294003 0.3721775 0.644627 0.6677874 0.3721746 0.6446282 0.6677879 0.4442819 0.7695187 0.4587533 0.4442835 0.7695192 0.4587513 0.4828141 0.8362591 0.2599255 0.4828147 0.83626 0.2599216 0.4958679 0.8588685 0.128297 0.4958679 0.8588685 0.1282968 0.4992601 0.8647429 0.05439776 0.4992596 0.8647433 0.05439811 0.001674592 0.01079934 0.9999403 0.007265686 0.04679876 0.998878 0.007264971 0.04679882 0.998878 0.01494175 0.09626346 0.9952437 0.01494193 0.09626346 0.9952437 0.03068476 0.197676 0.9797871 0.03068494 0.1976745 0.9797874 0.05415499 0.3488826 0.9356005 0.05415785 0.3488819 0.9356006 0.08569186 0.5520437 0.8294002 0.08569169 0.5520414 0.8294019 0.1141777 0.7355445 0.6677857 0.1141776 0.7355442 0.667786 0.1362978 0.8780457 0.4587576 0.1362987 0.8780488 0.4587516 0.1481201 0.9542025 0.2599194 0.1481202 0.9542015 0.2599228 0.1521244 0.979999 0.1282979 0.1521238 0.9799992 0.1282967 0.1531646 0.9867024 0.05439656 0.1531647 0.9867024 0.0543974 -0.002338409 0.01067566 0.9999403 -0.01013237 0.0462628 0.998878 -0.01013201 0.04626274 0.998878 -0.02084076 0.09516113 0.9952437 -0.02084064 0.09516102 0.9952437 -0.04279488 0.195411 0.9797874 -0.04279613 0.1954115 0.9797872 -0.07552993 0.3448865 0.9356007 -0.0755316 0.3448863 0.9356006 -0.1195132 0.5457208 0.8294008 -0.1195167 0.5457214 0.8293998 -0.1592431 0.7271214 0.6677846 -0.1592398 0.7271155 0.6677917 -0.1900944 0.867994 0.4587488 -0.1900938 0.8679928 0.4587515 -0.2065805 0.943274 0.259921 -0.2065801 0.9432727 0.2599254 -0.2121649 0.9687755 0.1282976 -0.2121652 0.9687752 0.1282986 -0.2136163 0.975402 0.05439674 -0.2136169 0.9754019 0.05439609 -0.007110893 0.008299291 0.9999403 -0.03081458 0.03596478 0.9988779 -0.03081297 0.03596484 0.998878 -0.06338173 0.07397848 0.9952437 -0.06338173 0.07397854 0.9952437 -0.130151 0.1519134 0.9797874 -0.1301527 0.1519132 0.9797871 -0.2297104 0.2681153 0.9356001 -0.2297051 0.2681161 0.9356011 -0.3634726 0.4242444 0.8294 -0.3634689 0.4242462 0.8294007 -0.4842905 0.5652641 0.6677868 -0.4842873 0.5652654 0.667788 -0.5781139 0.6747815 0.458753 -0.5781192 0.6747786 0.4587506 -0.6282567 0.7333037 0.2599216 -0.6282567 0.7333034 0.2599228 -0.6452411 0.7531296 0.1282961 -0.6452414 0.753129 0.1282976 -0.6496546 0.7582809 0.05439811 -0.6496557 0.75828 0.0543968 -0.009627997 0.005170285 0.9999403 -0.04172241 0.02240532 0.9988781 -0.04172515 0.02240538 0.998878 -0.08582389 0.04608696 0.9952439 -0.08582675 0.0460872 0.9952436 -0.1762396 0.09463906 0.9797874 -0.1762413 0.0946387 0.9797871 -0.3110472 0.1670307 0.9356017 -0.3110496 0.1670309 0.9356008 -0.4921848 0.2642958 0.8293985 -0.4921808 0.2642962 0.8294008 -0.6557834 0.3521487 0.6677871 -0.6557856 0.3521463 0.6677862 -0.7828336 0.4203777 0.4587528 -0.7828374 0.4203727 0.4587509 -0.8507307 0.4568341 0.2599233 -0.8507313 0.4568331 0.2599229 -0.8737317 0.4691836 0.1282963 -0.873731 0.4691845 0.1282967 -0.8797075 0.4723937 0.0543974 -0.8797083 0.4723922 0.0543971 -0.01084601 0.001343011 0.9999403 -0.04699879 0.005819797 0.9988781 -0.04700219 0.005819916 0.9988778 -0.0966773 0.01197135 0.9952439 -0.09667974 0.01197129 0.9952436 -0.1985268 0.02458262 0.9797872 -0.1985217 0.02458292 0.9797882 -0.3503853 0.04338741 0.9356002 -0.350381 0.04338687 0.9356018 -0.5544239 0.06865054 0.8293981 -0.5544241 0.06865245 0.8293979 -0.7387086 0.09147125 0.6677895 -0.7387099 0.09147375 0.6677876 -0.8818281 0.1091957 0.4587544 -0.8818318 0.1091915 0.4587482 -0.9583106 0.1186639 0.2599227 -0.9583105 0.1186638 0.2599231 -0.984219 0.1218722 0.1282975 -0.9842191 0.1218721 0.1282964 -0.9909514 0.1227049 0.05439692 -0.9909509 0.1227082 0.05439782 -0.01084601 -0.001342952 0.9999403 -0.04699879 -0.005819797 0.9988781 -0.04700219 -0.005819916 0.9988779 -0.09667789 -0.01197135 0.9952437 -0.09667974 -0.01197129 0.9952436 -0.1985228 -0.02458286 0.979788 -0.1985248 -0.02458268 0.9797875 -0.3503891 -0.04338741 0.9355988 -0.3503767 -0.04338687 0.9356034 -0.5544235 -0.06865191 0.8293983 -0.5544246 -0.06865113 0.8293976 -0.7387083 -0.09147375 0.6677893 -0.7387104 -0.09147131 0.6677874 -0.8818294 -0.1091946 0.4587523 -0.8818307 -0.1091926 0.4587503 -0.9583103 -0.118664 0.2599235 -0.9583107 -0.1186638 0.2599223 -0.9842191 -0.1218719 0.1282964 -0.984219 -0.1218723 0.1282974 -0.9909511 -0.1227064 0.05439782 -0.9909511 -0.1227067 0.05439686 -0.01059901 -0.002665638 0.9999403 -0.045928 -0.01155167 0.9988781 -0.04592919 -0.01155149 0.998878 -0.09447216 -0.02376109 0.995244 -0.09447324 -0.02376121 0.9952439 -0.1940034 -0.04879337 0.9797868 -0.1939972 -0.04879289 0.979788 -0.3423961 -0.08611577 0.9356009 -0.3424009 -0.08611637 0.9355991 -0.5417788 -0.1362654 0.8294019 -0.5417842 -0.1362639 0.8293987 -0.7218718 -0.1815568 0.6677861 -0.7218691 -0.1815587 0.6677885 -0.8617261 -0.2167333 0.4587536 -0.8617278 -0.2167312 0.4587514 -0.9364645 -0.2355306 0.2599225 -0.936464 -0.2355315 0.2599236 -0.9617824 -0.2418975 0.1282975 -0.9617825 -0.2418974 0.1282968 -0.9683612 -0.2435522 0.05439692 -0.9683609 -0.2435538 0.05439668 -0.009627997 -0.005170285 0.9999403 -0.0417239 -0.02240532 0.998878 -0.04172515 -0.02240532 0.9988779 -0.08582389 -0.04608696 0.9952439 -0.08582669 -0.0460872 0.9952436 -0.1762406 -0.09463912 0.9797871 -0.1762411 -0.09463858 0.979787 -0.3110481 -0.1670306 0.9356014 -0.3110498 -0.1670309 0.9356008 -0.4921835 -0.2642955 0.8293994 -0.4921807 -0.2642968 0.8294007 -0.6557839 -0.3521473 0.6677873 -0.6557853 -0.3521474 0.6677859 -0.7828354 -0.4203757 0.4587514 -0.7828352 -0.4203754 0.4587525 -0.8507307 -0.4568339 0.2599235 -0.8507313 -0.4568331 0.2599229 -0.8737309 -0.4691848 0.1282964 -0.8737319 -0.469183 0.1282965 -0.8797079 -0.4723928 0.0543974 -0.8797078 -0.4723933 0.0543971 -0.008919596 -0.006314277 0.9999403 -0.03865313 -0.027363 0.998878 -0.03865611 -0.02736288 0.9988779 -0.0795105 -0.05628466 0.9952438 -0.07951343 -0.05628454 0.9952436 -0.1632731 -0.1155793 0.9797875 -0.1632734 -0.1155794 0.9797874 -0.2881668 -0.2039889 0.9356006 -0.2881669 -0.2039889 0.9356006 -0.4559731 -0.3227754 0.8294003 -0.4559733 -0.3227766 0.8293996 -0.6075373 -0.430067 0.667788 -0.6075375 -0.4300671 0.6677878 -0.7252435 -0.5133905 0.4587507 -0.7252463 -0.5133865 0.4587507 -0.7881431 -0.5579164 0.259923 -0.788145 -0.557913 0.2599243 -0.8094515 -0.5729995 0.1282964 -0.8094519 -0.5729989 0.1282966 -0.8149886 -0.5769183 0.05439752 -0.8149882 -0.5769189 0.05439674 -0.007110893 -0.008299291 0.9999403 -0.0308116 -0.03596484 0.9988781 -0.03081554 -0.03596484 0.998878 -0.06338173 -0.07397848 0.9952437 -0.06338173 -0.07397854 0.9952437 -0.1301527 -0.1519131 0.9797871 -0.130151 -0.1519135 0.9797872 -0.2297085 -0.2681159 0.9356003 -0.229709 -0.2681153 0.9356004 -0.3634724 -0.4242462 0.8293992 -0.3634705 -0.4242445 0.8294009 -0.4842897 -0.5652624 0.6677889 -0.484288 -0.5652668 0.6677864 -0.5781149 -0.6747805 0.4587533 -0.5781192 -0.6747786 0.4587506 -0.6282562 -0.7333033 0.2599239 -0.6282566 -0.733304 0.2599213 -0.6452414 -0.753129 0.1282976 -0.6452412 -0.7531296 0.1282956 -0.6496555 -0.7582801 0.05439734 -0.6496547 -0.7582809 0.0543974 -0.006035923 -0.009110212 0.9999403 -0.0261566 -0.03947871 0.9988781 -0.02616035 -0.03947883 0.998878 -0.05380952 -0.08120679 0.9952437 -0.05380952 -0.08120638 0.9952437 -0.1104962 -0.1667556 0.9797874 -0.1104974 -0.1667565 0.9797871 -0.1950172 -0.2943117 0.9356009 -0.1950184 -0.2943115 0.9356006 -0.3085805 -0.4656969 0.8294001 -0.3085831 -0.4656973 0.8293989 -0.4111551 -0.6204926 0.6677878 -0.4111523 -0.6204928 0.6677893 -0.4908114 -0.7407107 0.4587504 -0.4908138 -0.7407086 0.4587511 -0.5333795 -0.8049507 0.2599246 -0.5333803 -0.8049507 0.2599226 -0.5477997 -0.8267138 0.128296 -0.5478009 -0.8267129 0.1282967 -0.5515477 -0.8323678 0.0543977 -0.5515473 -0.832368 0.05439805 -0.004869878 -0.009782969 0.9999403 -0.02110868 -0.04239422 0.998878 -0.02111077 -0.04239434 0.998878 -0.04342347 -0.0872035 0.9952437 -0.04342395 -0.08720362 0.9952437 -0.08916574 -0.1790707 0.9797874 -0.08916598 -0.1790707 0.9797874 -0.1573739 -0.3160467 0.9356003 -0.1573717 -0.3160467 0.9356006 -0.2490136 -0.5000884 0.8293997 -0.2490143 -0.5000879 0.8293999 -0.3317867 -0.6663169 0.6677869 -0.3317843 -0.6663146 0.6677905 -0.3960667 -0.7954119 0.4587495 -0.3960684 -0.795409 0.4587532 -0.430418 -0.8643956 0.2599242 -0.4304188 -0.8643957 0.2599226 -0.442055 -0.8877657 0.1282951 -0.4420545 -0.8877654 0.1282986 -0.4450784 -0.8938379 0.05439698 -0.4450782 -0.8938381 0.05439746 -0.002338409 -0.01067566 0.9999403 -0.01013237 -0.04626274 0.998878 -0.01013201 -0.0462628 0.998878 -0.02084082 -0.09516131 0.9952437 -0.02084058 -0.09516084 0.9952437 -0.04279494 -0.1954112 0.9797873 -0.04279601 -0.1954112 0.9797873 -0.07553201 -0.3448852 0.935601 -0.07552951 -0.344887 0.9356005 -0.1195144 -0.5457194 0.8294014 -0.119516 -0.5457239 0.8293983 -0.1592415 -0.7271201 0.6677864 -0.1592416 -0.7271178 0.6677888 -0.1900944 -0.8679942 0.4587487 -0.190095 -0.8679925 0.4587515 -0.2065802 -0.9432725 0.2599261 -0.2065798 -0.9432743 0.2599201 -0.2121652 -0.9687753 0.1282978 -0.2121648 -0.9687753 0.1282986 -0.2136164 -0.975402 0.05439668 -0.2136166 -0.9754021 0.05439609 -0.001007974 -0.01088207 0.9999403 -0.004371583 -0.04715722 0.998878 -0.004367589 -0.04715722 0.998878 -0.008989095 -0.09700101 0.9952437 -0.008987486 -0.09700059 0.9952437 -0.01845806 -0.1991895 0.9797872 -0.01845824 -0.1991891 0.9797872 -0.03257799 -0.3515539 0.9356007 -0.0325756 -0.3515541 0.9356006 -0.05154615 -0.5562713 0.8294006 -0.05154633 -0.5562773 0.8293966 -0.0686798 -0.7411698 0.6677953 -0.06868076 -0.7411831 0.6677805 -0.08198541 -0.8847742 0.4587518 -0.08198618 -0.8847702 0.4587593 -0.0890966 -0.9615111 0.2599199 -0.08909744 -0.9615095 0.2599255 -0.09150594 -0.9875054 0.1282963 -0.09150606 -0.9875053 0.1282967 -0.09213197 -0.9942598 0.05439847 -0.09213137 -0.99426 0.05439609 0.001678466 -0.01079934 0.9999403 0.007265686 -0.04679876 0.998878 0.007264971 -0.04679888 0.998878 0.01494175 -0.09626352 0.9952438 0.01494193 -0.09626346 0.9952437 0.03068464 -0.1976753 0.9797872 0.03068506 -0.1976752 0.9797873 0.05415725 -0.3488817 0.9356007 0.0541557 -0.3488827 0.9356005 0.08569347 -0.5520448 0.8293994 0.08569097 -0.5520414 0.8294019 0.114176 -0.7355422 0.6677886 0.1141799 -0.7355466 0.6677832 0.1362983 -0.8780489 0.4587515 0.1362983 -0.8780469 0.4587555 0.14812 -0.9542019 0.2599217 0.1481202 -0.9542015 0.2599228 0.1521247 -0.9799991 0.1282963 0.1521236 -0.979999 0.1282986 0.1531646 -0.9867024 0.0543971 0.1531647 -0.9867024 0.05439609 0.002992808 -0.01051151 0.9999403 0.01295948 -0.0455513 0.998878 0.01296055 -0.0455513 0.998878 0.02666038 -0.09369754 0.9952437 0.02665835 -0.0936976 0.9952437 0.05474376 -0.1924064 0.9797872 0.05474501 -0.1924057 0.9797874 0.09662127 -0.3395826 0.9356003 0.09661936 -0.3395837 0.9356002 0.1528826 -0.5373274 0.8294011 0.1528839 -0.5373264 0.8294015 0.2037012 -0.7159373 0.6677872 0.2037017 -0.715938 0.6677863 0.2431681 -0.8546466 0.4587469 0.2431669 -0.8546423 0.4587554 0.2642567 -0.9287677 0.2599214 0.2642572 -0.9287671 0.2599228 0.2714017 -0.953877 0.1282961 0.2714011 -0.9538768 0.1282986 0.2732575 -0.9604017 0.05439734 0.2732574 -0.9604018 0.05439609 0.005464494 -0.009464502 0.9999403 0.02367687 -0.04101431 0.998878 0.02368205 -0.04101437 0.9988779 0.04870349 -0.08436512 0.995244 0.04871052 -0.08436506 0.9952437 0.100022 -0.1732419 0.9797872 0.1000208 -0.1732419 0.9797874 0.1765281 -0.3057593 0.9356009 0.1765307 -0.3057591 0.9356006 0.279326 -0.4838098 0.8294004 0.2793288 -0.4838094 0.8293998 0.3721757 -0.644629 0.6677865 0.3721768 -0.6446272 0.6677875 0.4442821 -0.7695197 0.4587516 0.4442836 -0.7695188 0.4587514 0.4828144 -0.8362597 0.2599234 0.4828144 -0.8362593 0.2599243 0.4958681 -0.8588684 0.1282967 0.4958676 -0.8588686 0.1282967 0.4992604 -0.8647428 0.05439805 0.4992595 -0.8647432 0.05439734 0.008512496 -0.006851434 0.9999403 0.03689533 -0.02969062 0.9988781 0.03689801 -0.02969062 0.9988779 0.07589477 -0.06107264 0.9952438 0.07589507 -0.06107258 0.9952437 0.1558477 -0.1254114 0.9797875 0.1558528 -0.1254113 0.9797867 0.2750602 -0.2213418 0.9356013 0.2750644 -0.2213419 0.9356001 0.4352335 -0.350235 0.8294019 0.4352388 -0.3502342 0.8293993 0.57991 -0.4666513 0.6677882 0.5799068 -0.4666527 0.6677899 0.6922646 -0.5570625 0.4587495 0.6922624 -0.5570614 0.458754 0.7523036 -0.6053755 0.2599228 0.7523021 -0.6053768 0.2599241 0.7726423 -0.6217427 0.1282963 0.7726413 -0.6217439 0.128297 0.7779279 -0.6259946 0.05439734 0.7779272 -0.6259955 0.0543974 0.01041394 -0.003313064 0.9999403 0.04512834 -0.01435703 0.9988781 0.04513287 -0.01435708 0.9988778 0.09283304 -0.02953201 0.9952437 0.09283262 -0.02953201 0.9952437 0.1906269 -0.06064337 0.9797877 0.1906298 -0.06064343 0.9797871 0.3364464 -0.1070312 0.9356004 0.336444 -0.1070309 0.9356014 0.532365 -0.1693583 0.8294005 0.5323648 -0.1693577 0.8294008 0.7093252 -0.2256513 0.6677869 0.7093261 -0.2256506 0.6677861 0.8467494 -0.2693709 0.4587538 0.8467524 -0.2693687 0.4587494 0.9201886 -0.2927334 0.2599233 0.9201887 -0.2927324 0.2599243 0.9450667 -0.3006481 0.128296 0.9450663 -0.3006488 0.1282966 0.9515312 -0.3027037 0.05439734 0.9515308 -0.3027045 0.05439746 0.9980422 0.06155562 0.01107645 0.9980421 0.06155836 0.01107662 0.9888793 0.1483061 0.01109403 0.9828347 0.1837244 0.01677817 0.981518 0.1834763 0.05439752 0.9815175 0.1834784 0.0543971 0.97485 0.1822297 0.1282965 0.9748497 0.1822309 0.128297 0.9491873 0.1774332 0.2599248 0.9491879 0.177434 0.2599223 0.8734355 0.1632736 0.4587505 0.8734337 0.1632736 0.4587541 0.7316765 0.1367752 0.667789 0.7316803 0.1367748 0.6677849 0.5491434 0.1026523 0.8293998 0.5491422 0.1026536 0.8294004 0.3470481 0.06487512 0.9356009 0.3470473 0.06487482 0.9356012 0.1966376 0.03675776 0.9797871 0.1966333 0.03675758 0.9797878 0.09575957 0.01790028 0.9952436 0.09575694 0.01790004 0.9952438 0.04655426 0.008702099 0.9988779 0.04655098 0.008702218 0.9988781 0.01074302 0.00200814 0.9999403 0.01074254 0.00200814 0.9999403 0.9778732 0.2089042 0.01109045 0.9559459 0.2933341 0.01108306 0.9528439 0.3031226 0.01433444 0.9360758 0.3516234 0.01109713 0.9084094 0.4179349 0.01107668 0.9084095 0.417935 0.01107645 0.8735682 0.4865754 0.011096 0.8501154 0.5263692 0.01547449 0.8489575 0.5256541 0.05439698 0.8489589 0.5256519 0.05439698 0.8431904 0.5220823 0.128297 0.8431908 0.5220816 0.1282978 0.8209957 0.5083373 0.2599222 0.8209941 0.5083386 0.2599241 0.7554743 0.4677673 0.4587511 0.7554719 0.4677702 0.4587517 0.6328586 0.3918516 0.6677893 0.6328618 0.3918506 0.6677867 0.4749792 0.294094 0.8293996 0.4749782 0.2940937 0.8294003 0.300179 0.1858626 0.9356002 0.3001772 0.1858621 0.9356009 0.1700811 0.1053088 0.979787 0.1700786 0.105309 0.9797874 0.08282548 0.05128324 0.9952437 0.08282446 0.05128306 0.9952438 0.04026693 0.02493143 0.9988779 0.04026472 0.02493143 0.998878 0.009293079 0.005753219 0.9999403 0.009289085 0.005753219 0.9999404 0.8419585 0.5394285 0.0110861 0.7917393 0.6107587 0.01108825 0.7789775 0.6268404 0.01628935 0.7526399 0.6583389 0.01109552 0.6960909 0.7178683 0.01107656 0.6960918 0.7178674 0.01107686 0.6466689 0.7626901 0.0110976 0.6025852 0.7979508 0.01286828 0.6017425 0.7968356 0.05439716 0.6017426 0.7968355 0.05439764 0.5976542 0.7914226 0.1282967 0.5976538 0.7914229 0.128296 0.5819219 0.7705888 0.2599233 0.5819216 0.7705893 0.2599219 0.5354797 0.7090895 0.4587522 0.5354782 0.7090901 0.4587531 0.4485739 0.5940058 0.6677864 0.4485721 0.5940045 0.6677888 0.3366646 0.4458171 0.8294 0.3366661 0.4458164 0.8293997 0.2127659 0.2817479 0.9356008 0.2127667 0.2817481 0.9356005 0.1205534 0.1596373 0.9797871 0.1205521 0.1596376 0.9797873 0.05870658 0.07773989 0.9952438 0.05870801 0.07773989 0.9952436 0.028539 0.03779345 0.9988781 0.02854204 0.03779351 0.998878 0.006584644 0.008721292 0.9999403 0.006582617 0.008721292 0.9999404 0.5984932 0.8010513 0.0110802 0.5263996 0.850165 0.01109248 0.4999282 0.8659012 0.01694077 0.4730651 0.8809577 0.01109188 0.3944836 0.9188362 0.01107984 0.004258394 0.0100643 0.9999403 0.0184583 0.04361337 0.998878 0.01846063 0.04361337 0.9988779 0.03797227 0.0897113 0.9952437 0.03797298 0.08971118 0.9952437 0.07797253 0.1842204 0.9797873 0.07797133 0.1842202 0.9797875 0.137619 0.3251351 0.9356005 0.1376172 0.3251359 0.9356005 0.2177556 0.5144671 0.8294011 0.2177551 0.5144675 0.8294009 0.2901381 0.685479 0.6677864 0.2901371 0.6854781 0.6677876 0.3463484 0.8182839 0.4587531 0.3463493 0.8182821 0.4587556 0.3763892 0.8892549 0.2599173 0.3763884 0.8892529 0.2599255 0.3865644 0.9132948 0.1282992 0.3865649 0.9132952 0.1282948 0.3892087 0.9195421 0.0543971 0.389209 0.9195418 0.05439877 0.3897541 0.9208291 0.01286774 0.337169 0.9413788 0.01109725 0.2736457 0.9617668 0.01107627 0.2732577 0.9604017 0.05439716 0.2732571 0.9604018 0.05439627 0.2714013 0.9538768 0.1282987 0.2714014 0.9538771 0.128296 0.2642565 0.9287679 0.2599211 0.264257 0.9287671 0.2599232 0.2431677 0.8546429 0.4587538 0.2431679 0.8546458 0.4587484 0.2037001 0.7159371 0.6677877 0.2037025 0.7159369 0.6677872 0.152882 0.5373246 0.8294031 0.1528846 0.5373293 0.8293995 0.09662014 0.3395825 0.9356006 0.0966205 0.3395839 0.9356001 0.05474346 0.1924059 0.9797874 0.05474454 0.1924061 0.9797872 0.02666056 0.09369748 0.9952437 0.02665847 0.09369772 0.9952437 0.0129612 0.04555135 0.998878 0.01295876 0.0455513 0.998878 0.002987682 0.01051151 0.9999403 0.002995014 0.01051151 0.9999403 0.2736463 0.9617666 0.01107728 0.1938206 0.9809743 0.0110951 0.1533714 0.9880344 0.01628941 0.1330615 0.9910458 0.01108825 0.04618078 0.9988716 0.01108539 3.3755e-4 0.0109235 0.9999403 0.001456141 0.04733681 0.998878 0.001457989 0.04733669 0.998878 0.003000617 0.09737038 0.9952437 0.00299853 0.09737008 0.9952437 0.006160199 0.1999476 0.9797872 0.006160378 0.199948 0.9797872 0.01087135 0.3528938 0.9356003 0.01087224 0.3528912 0.9356012 0.01720547 0.5583903 0.8294 0.01720398 0.5583928 0.8293983 0.02292275 0.7439953 0.6677915 0.02292269 0.7439978 0.6677889 0.02736335 0.8881445 0.4587491 0.02736306 0.8881453 0.4587477 0.02973634 0.965171 0.2599246 0.02973604 0.9651708 0.2599255 0.03054022 0.9912657 0.1282957 0.03054082 0.9912655 0.1282967 0.03074967 0.9980458 0.05439805 0.03074914 0.9980459 0.05439609 0.03079104 0.999406 0.01547509 -0.01539802 0.9998199 0.01109671 -0.09226226 0.9956732 0.01107627 -0.09213137 0.99426 0.05439698 -0.09213197 0.9942598 0.05439758 -0.09150618 0.9875053 0.128297 -0.09150594 0.9875054 0.128296 -0.08909785 0.9615103 0.2599222 -0.08909618 0.9615101 0.2599232 -0.08198577 0.8847725 0.4587549 -0.08198589 0.8847718 0.4587563 -0.06868058 0.7411809 0.6677828 -0.06867998 0.7411719 0.6677929 -0.05154693 0.556276 0.8293974 -0.05154627 0.5562726 0.8293997 -0.03257781 0.3515532 0.935601 -0.03257507 0.3515549 0.9356003 -0.01845782 0.1991891 0.9797873 -0.01845741 0.1991896 0.9797872 -0.008990406 0.09700071 0.9952437 -0.008985936 0.09700095 0.9952437 -0.004369497 0.04715722 0.998878 -0.004367411 0.04715722 0.998878 -0.001007616 0.01088207 0.9999403 -0.00101 0.01088207 0.9999403 -0.09226256 0.9956731 0.01107686 -0.1635172 0.9864782 0.01109701 -0.2139115 0.9767479 0.01433473 -0.2239368 0.9745407 0.01108336 -0.3080222 0.9513146 0.01109087 -0.003634035 0.01030743 0.9999403 -0.01573783 0.04466712 0.9988781 -0.01574194 0.044667 0.998878 -0.03237777 0.09187883 0.9952437 -0.03237509 0.09187865 0.9952439 -0.06648749 0.1886712 0.9797871 -0.06648409 0.1886709 0.9797874 -0.1173402 0.3329906 0.9356006 -0.1173408 0.3329904 0.9356006 -0.1856706 0.5268988 0.8293998 -0.1856735 0.5268977 0.8293999 -0.2473893 0.7020384 0.6677879 -0.247387 0.7020381 0.6677892 -0.2953169 0.8380541 0.4587521 -0.2953193 0.8380535 0.4587515 -0.3209314 0.9107385 0.2599202 -0.32093 0.9107366 0.2599284 -0.3296079 0.9353603 0.1282961 -0.329608 0.9353604 0.1282948 -0.3318628 0.941758 0.05439722 -0.3318627 0.941758 0.0543974 -0.3323077 0.9430218 0.01677781 -0.3660007 0.9305485 0.01109403 -0.004869878 0.009782969 0.9999403 -0.02110868 0.04239428 0.998878 -0.02110946 0.04239428 0.998878 -0.04342097 0.08720356 0.9952438 -0.04342395 0.08720362 0.9952437 -0.08916574 0.1790707 0.9797873 -0.08916598 0.1790707 0.9797874 -0.1573717 0.3160471 0.9356005 -0.1573739 0.3160466 0.9356004 -0.249013 0.5000879 0.8294002 -0.2490144 0.5000873 0.8294001 -0.3317846 0.666315 0.6677898 -0.3317876 0.6663164 0.667787 -0.3960651 0.7954112 0.4587523 -0.3960694 0.7954108 0.4587493 -0.4304185 0.8643954 0.2599241 -0.4304175 0.8643965 0.2599227 -0.4420551 0.8877654 0.1282963 -0.4420545 0.8877657 0.1282967 -0.4450787 0.8938379 0.05439758 -0.4450779 0.8938381 0.0543974 -0.4457106 0.8951087 0.01107668 -0.4457117 0.8951081 0.01107662 -0.5523312 0.8335513 0.01107627 -0.5515474 0.832368 0.05439817 -0.5515475 0.832368 0.05439758 -0.5478007 0.8267131 0.1282958 -0.5477998 0.8267136 0.128297 -0.5333802 0.8049504 0.259924 -0.5333787 0.8049517 0.2599234 -0.4908125 0.7407096 0.458751 -0.4908133 0.7407105 0.4587485 -0.4111534 0.6204928 0.6677886 -0.4111538 0.6204926 0.6677885 -0.3085818 0.4656972 0.8293995 -0.3085808 0.4656972 0.8293999 -0.1950169 0.2943117 0.935601 -0.1950187 0.2943115 0.9356006 -0.1104971 0.1667557 0.9797872 -0.1104966 0.1667563 0.9797872 -0.05380964 0.08120656 0.9952437 -0.05380815 0.08120656 0.9952439 -0.02616029 0.03947877 0.998878 -0.0261597 0.03947877 0.998878 -0.006037831 0.009110212 0.9999403 -0.006030797 0.009110212 0.9999403 -0.5523309 0.8335514 0.01107674 -0.6228779 0.7822405 0.01109403 -0.6505271 0.7592977 0.01677823 -0.669852 0.7424119 0.01109063 -0.7320083 0.6812056 0.011083 -0.008076071 0.007362604 0.9999403 -0.0349974 0.03190571 0.9988781 -0.03499895 0.03190577 0.998878 -0.07198846 0.06562894 0.995244 -0.07199251 0.06562894 0.9952437 -0.1478344 0.1347678 0.9797871 -0.1478299 0.1347677 0.9797877 -0.2609162 0.2378551 0.9356002 -0.2609165 0.2378551 0.9356001 -0.4128493 0.3763641 0.8294007 -0.4128552 0.3763625 0.8293985 -0.5500808 0.5014669 0.6677889 -0.5500829 0.5014665 0.6677876 -0.6566553 0.5986237 0.4587522 -0.6566561 0.5986225 0.4587526 -0.7136099 0.650539 0.2599229 -0.7136071 0.6505415 0.2599244 -0.7329017 0.6681282 0.1282965 -0.7329012 0.6681286 0.1282968 -0.7379145 0.6726984 0.05439656 -0.7379145 0.6726984 0.05439674 -0.7389328 0.6736267 0.01433444 -0.7725576 0.6348478 0.01109749 -0.8161465 0.577739 0.01107698 -0.8149875 0.5769197 0.05439698 -0.8149892 0.5769174 0.05439728 -0.809452 0.5729987 0.128297 -0.8094514 0.5729998 0.1282961 -0.7881441 0.5579143 0.2599244 -0.7881441 0.557915 0.2599229 -0.7252463 0.5133867 0.4587503 -0.7252434 0.5133902 0.458751 -0.607536 0.4300672 0.6677892 -0.6075389 0.4300669 0.6677866 -0.4559715 0.3227757 0.829401 -0.4559747 0.322776 0.829399 -0.2881672 0.2039892 0.9356005 -0.2881643 0.2039888 0.9356015 -0.1632739 0.1155793 0.9797873 -0.1632742 0.1155795 0.9797872 -0.07951128 0.05628466 0.9952437 -0.0795117 0.05628454 0.9952437 -0.03865486 0.02736288 0.998878 -0.03865462 0.02736294 0.998878 -0.008920133 0.006314337 0.9999403 -0.008918404 0.006314277 0.9999404 -0.8161467 0.5777387 0.01107668 -0.8581724 0.5132417 0.01109629 -0.8809064 0.4730376 0.01547467 -0.8881386 0.4594421 0.01108568 -0.9248021 0.3802872 0.01108825 -0.01019185 0.003947913 0.9999403 -0.04415953 0.01710814 0.9988781 -0.04416328 0.01710814 0.9988778 -0.09083521 0.03519082 0.995244 -0.0908392 0.03519088 0.9952437 -0.1865359 0.07226365 0.9797869 -0.1865348 0.07226377 0.9797871 -0.3292207 0.1275394 0.9356001 -0.3292166 0.1275402 0.9356014 -0.5209316 0.2018092 0.8293995 -0.5209291 0.2018092 0.829401 -0.6940875 0.2688911 0.6677874 -0.6940861 0.2688907 0.6677891 -0.8285618 0.3209856 0.4587523 -0.8285612 0.3209872 0.4587522 -0.9004228 0.3488246 0.2599235 -0.9004234 0.348824 0.2599226 -0.9247663 0.3582561 0.128297 -0.9247661 0.3582566 0.1282963 -0.9310919 0.3607062 0.0543974 -0.9310915 0.3607071 0.05439674 -0.9323488 0.3611932 0.01628947 -0.9464589 0.3226338 0.01109546 -0.9697369 0.2439008 0.0110768 -0.9683611 0.2435525 0.05439686 -0.9683609 0.2435534 0.05439674 -0.9617824 0.2418974 0.1282975 -0.9617825 0.2418975 0.1282967 -0.9364648 0.2355296 0.2599223 -0.9364637 0.2355324 0.2599238 -0.8617278 0.2167322 0.4587508 -0.8617261 0.2167323 0.4587541 -0.7218698 0.1815574 0.6677882 -0.7218712 0.1815581 0.6677864 -0.5417814 0.1362655 0.8294003 -0.5417817 0.1362637 0.8294004 -0.3423987 0.08611583 0.9355999 -0.3423985 0.08611637 0.9355999 -0.1939998 0.04879343 0.9797875 -0.1940005 0.04879277 0.9797873 -0.09447371 0.02376103 0.9952438 -0.09447282 0.02376127 0.9952439 -0.04592925 0.01155155 0.998878 -0.04592949 0.01155161 0.9988779 -0.01059848 0.002665638 0.9999403 -0.01060044 0.002665638 0.9999403 -0.9697382 0.243896 0.01107662 -0.9838391 0.1787106 0.01109749 -0.9923383 0.1228786 0.0128684 -0.9929773 0.1177858 0.01107984 -0.9994643 0.03079295 0.0110923 -0.9998565 0 0.01694089 -0.9985194 0 0.05439782 -0.9985194 0 0.0543977 -0.9917358 0 0.1282968 -0.9917359 0 0.1282962 -0.9656293 0 0.2599233 -0.9656293 0 0.2599232 -0.8885658 0 0.4587492 -0.8885647 0 0.4587515 -0.74435 0 0.6677898 -0.7443529 0 0.6677865 -0.5586581 0 0.8293982 -0.5586509 0 0.8294029 -0.3530599 0 0.9356007 -0.3530608 0 0.9356004 -0.2000418 0 0.9797875 -0.2000442 0 0.9797869 -0.09741675 0 0.9952437 -0.09741461 0 0.9952439 -0.04736161 0 0.9988778 -0.04735827 0 0.998878 -0.01094508 0 0.9999401 -0.01090794 3.36081e-4 0.9999405 -0.9994643 -0.03079295 0.0110923 -0.9929773 -0.1177858 0.01107984 -0.9923383 -0.1228786 0.0128684 -0.9838391 -0.1787106 0.01109749 -0.9697381 -0.2438968 0.01107662 -0.9697372 -0.2439002 0.0110768 -0.9464589 -0.3226338 0.01109546 -0.9323487 -0.3611933 0.01628947 -0.9310919 -0.3607061 0.05439722 -0.9310914 -0.3607072 0.05439692 -0.9247661 -0.3582565 0.1282966 -0.9247661 -0.3582562 0.1282966 -0.9004237 -0.3488228 0.2599231 -0.9004225 -0.3488258 0.2599231 -0.8285626 -0.3209847 0.4587514 -0.8285605 -0.3209882 0.4587528 -0.6940869 -0.2688915 0.667788 -0.6940869 -0.2688903 0.6677885 -0.5209296 -0.2018096 0.8294005 -0.520931 -0.2018089 0.8293999 -0.3292198 -0.1275395 0.9356004 -0.3292173 -0.1275401 0.9356012 -0.1865348 -0.07226359 0.9797872 -0.186536 -0.07226389 0.9797869 -0.09083801 -0.0351907 0.9952437 -0.09083777 -0.03519099 0.9952437 -0.04416328 -0.01710814 0.9988778 -0.04415953 -0.01710814 0.9988781 -0.01019138 -0.003947913 0.9999403 -0.01019012 -0.003947854 0.9999403 -0.924802 -0.3802872 0.01108825 -0.8881386 -0.4594421 0.01108568 -0.8809064 -0.4730376 0.01547467 -0.8581724 -0.5132417 0.01109629 -0.8161466 -0.5777388 0.01107668 -0.8161466 -0.5777388 0.01107698 -0.7725576 -0.6348478 0.01109749 -0.7389328 -0.6736267 0.01433444 -0.7379148 -0.6726982 0.05439698 -0.7379143 -0.6726987 0.05439627 -0.7329016 -0.6681279 0.1282981 -0.7329012 -0.668129 0.1282952 -0.713609 -0.6505398 0.2599236 -0.7136086 -0.65054 0.2599242 -0.6566575 -0.598622 0.4587513 -0.6566553 -0.5986232 0.4587528 -0.5500842 -0.5014666 0.6677864 -0.5500813 -0.5014662 0.6677892 -0.4128524 -0.3763631 0.8293997 -0.4128522 -0.3763635 0.8293995 -0.2609152 -0.2378549 0.9356005 -0.2609176 -0.2378553 0.9355998 -0.1478316 -0.134768 0.9797875 -0.1478325 -0.1347675 0.9797874 -0.07199132 -0.06562882 0.9952438 -0.07198989 -0.06562906 0.9952439 -0.03500026 -0.03190571 0.998878 -0.0349974 -0.03190571 0.9988781 -0.008074581 -0.007362604 0.9999403 -0.008077383 -0.007362663 0.9999403 -0.7320084 -0.6812055 0.01108294 -0.669852 -0.7424119 0.01109063 -0.6505271 -0.7592977 0.01677823 -0.6228779 -0.7822405 0.01109403 -0.5523313 -0.8335512 0.01107656 -0.5523309 -0.8335514 0.01107656 -0.4457109 -0.8951085 0.01107627 -0.4457114 -0.8951082 0.01107716 -0.3660007 -0.9305485 0.01109403 -0.3323077 -0.9430218 0.01677781 -0.3318627 -0.941758 0.05439698 -0.3318628 -0.941758 0.05439758 -0.329608 -0.9353602 0.1282968 -0.3296079 -0.9353605 0.1282941 -0.3209304 -0.9107373 0.2599254 -0.3209316 -0.9107376 0.2599232 -0.2953189 -0.8380539 0.4587512 -0.2953174 -0.8380538 0.4587524 -0.2473888 -0.7020396 0.6677868 -0.2473874 -0.7020367 0.6677903 -0.1856722 -0.5268979 0.8294001 -0.1856719 -0.5268987 0.8293997 -0.11734 -0.3329914 0.9356004 -0.117341 -0.3329895 0.9356009 -0.06648647 -0.1886711 0.9797872 -0.06648486 -0.188671 0.9797873 -0.0323767 -0.09187859 0.9952438 -0.03237521 -0.09187889 0.9952438 -0.01574063 -0.04466706 0.998878 -0.01574087 -0.04466706 0.998878 -0.003636002 -0.01030743 0.9999403 -0.003633618 -0.01030743 0.9999403 -0.3080223 -0.9513146 0.01109099 -0.2239368 -0.9745407 0.01108336 -0.2139115 -0.9767479 0.01433449 -0.1635172 -0.9864782 0.01109701 -0.09226226 -0.9956732 0.0110774 -0.09226262 -0.9956732 0.01107603 -0.01539802 -0.9998199 0.01109671 0.0307911 -0.999406 0.01547509 0.03074926 -0.9980459 0.05439788 0.03074961 -0.9980459 0.05439627 0.030541 -0.9912655 0.1282964 0.0305401 -0.9912656 0.128296 0.02973628 -0.9651712 0.2599242 0.02973622 -0.9651706 0.259926 0.02736335 -0.8881407 0.4587562 0.02736252 -0.888149 0.4587404 0.02292233 -0.7439965 0.6677903 0.02292275 -0.7439967 0.6677901 0.01720529 -0.5583898 0.8294004 0.01720362 -0.5583934 0.829398 0.01087301 -0.3528922 0.9356009 0.01087087 -0.3528928 0.9356007 0.00616008 -0.1999475 0.9797873 0.006160974 -0.1999481 0.9797872 0.003001213 -0.09737008 0.9952438 0.002998292 -0.09737038 0.9952437 0.001458227 -0.04733675 0.998878 0.001457035 -0.04733675 0.998878 3.35872e-4 -0.0109235 0.9999403 3.37391e-4 -0.0109235 0.9999403 0.04618078 -0.9988716 0.01108539 0.1330615 -0.9910458 0.01108825 0.1533714 -0.9880344 0.01628959 0.1938206 -0.9809743 0.0110951 0.2736459 -0.9617667 0.01107686 0.2736461 -0.9617667 0.01107656 0.337169 -0.9413788 0.01109725 0.3897541 -0.9208291 0.01286774 0.3892089 -0.919542 0.05439692 0.3892088 -0.919542 0.05439895 0.3865644 -0.9132949 0.1282981 0.3865649 -0.913295 0.128296 0.37639 -0.8892535 0.259921 0.3763877 -0.8892546 0.2599205 0.3463512 -0.8182821 0.4587541 0.3463465 -0.8182839 0.4587546 0.2901397 -0.6854782 0.6677864 0.2901378 -0.6854783 0.667787 0.2177562 -0.5144668 0.829401 0.2177546 -0.5144679 0.8294009 0.1376194 -0.3251358 0.9356002 0.1376166 -0.3251352 0.9356008 0.07797133 -0.1842203 0.9797874 0.07797425 -0.1842203 0.9797872 0.03797304 -0.08971124 0.9952437 0.03797227 -0.0897113 0.9952437 0.01846063 -0.04361343 0.998878 0.01845979 -0.04361337 0.998878 0.004260838 -0.0100643 0.9999403 0.004252672 -0.0100643 0.9999404 0.3944836 -0.9188362 0.01107984 0.4730651 -0.8809577 0.01109188 0.4999282 -0.8659013 0.01694077 0.5263996 -0.850165 0.01109248 0.5984932 -0.8010513 0.01108008 0.006585121 -0.008721292 0.9999403 0.02853894 -0.03779351 0.9988781 0.02854162 -0.03779351 0.998878 0.0587055 -0.07773983 0.9952438 0.05870771 -0.07773995 0.9952437 0.1205521 -0.1596374 0.9797873 0.1205533 -0.1596374 0.9797872 0.2127646 -0.2817485 0.9356009 0.2127659 -0.2817479 0.9356008 0.3366661 -0.4458173 0.8293992 0.3366652 -0.4458173 0.8293996 0.4485743 -0.5940046 0.6677871 0.4485718 -0.5940057 0.6677879 0.5354785 -0.7090898 0.4587532 0.5354796 -0.7090898 0.458752 0.5819222 -0.7705889 0.259922 0.5819213 -0.7705892 0.2599231 0.5976542 -0.7914224 0.1282969 0.5976537 -0.791423 0.1282958 0.6017431 -0.7968353 0.0543974 0.601742 -0.7968359 0.0543974 0.6025852 -0.7979508 0.01286828 0.6466689 -0.7626901 0.0110976 0.6960914 -0.7178677 0.01107656 0.6951026 -0.7168496 0.05439698 0.6951031 -0.7168491 0.05439758 0.6903808 -0.7119793 0.1282964 0.6903816 -0.7119784 0.1282969 0.6722074 -0.6932364 0.2599242 0.672207 -0.6932371 0.2599232 0.6185612 -0.6379102 0.4587513 0.6185581 -0.6379122 0.4587526 0.5181666 -0.5343796 0.6677888 0.5181707 -0.5343787 0.6677864 0.3888962 -0.4010646 0.8294015 0.3888997 -0.4010647 0.8294 0.2457795 -0.2534666 0.9355999 0.2457777 -0.2534664 0.9356005 0.1392563 -0.1436128 0.9797872 0.1392549 -0.1436126 0.9797875 0.06781697 -0.06993639 0.9952436 0.06781238 -0.06993639 0.995244 0.03296929 -0.03399974 0.9988779 0.03296542 -0.0339998 0.9988781 0.007611751 -0.007845878 0.9999403 0.007606506 -0.007845818 0.9999404 0.6960911 -0.717868 0.0110768 0.7526399 -0.6583389 0.01109552 0.7789775 -0.6268404 0.01628929 0.7917393 -0.6107587 0.01108825 0.8419585 -0.5394285 0.01108616 0.009290635 -0.005753219 0.9999403 0.04026621 -0.02493143 0.998878 0.04026561 -0.02493143 0.998878 0.08282452 -0.05128324 0.9952438 0.08282321 -0.05128306 0.9952439 0.1700786 -0.1053087 0.9797874 0.1700811 -0.105309 0.979787 0.3001777 -0.1858627 0.9356006 0.3001787 -0.1858621 0.9356004 0.4749785 -0.2940939 0.8294 0.4749784 -0.2940934 0.8294003 0.6328608 -0.3918505 0.6677877 0.6328598 -0.3918518 0.667788 0.7554714 -0.4677707 0.4587522 0.7554748 -0.4677669 0.4587506 0.8209947 -0.5083382 0.2599231 0.820995 -0.5083377 0.2599231 0.8431912 -0.5220813 0.1282968 0.8431901 -0.5220826 0.1282981 0.8489578 -0.5256536 0.05439686 0.8489586 -0.5256524 0.05439716 0.8501154 -0.5263692 0.01547467 0.8735682 -0.4865754 0.011096 0.9084094 -0.4179349 0.01107633 0.9071205 -0.4173409 0.05439734 0.9071201 -0.4173418 0.05439722 0.9009585 -0.4145047 0.128296 0.9009569 -0.4145076 0.1282974 0.8772416 -0.403593 0.2599231 0.8772399 -0.4035968 0.2599232 0.8072314 -0.3713847 0.4587494 0.8072286 -0.3713854 0.4587538 0.6762164 -0.3111104 0.6677888 0.6762192 -0.3111091 0.6677865 0.5075158 -0.2334957 0.8294019 0.5075205 -0.2334952 0.8293991 0.3207439 -0.1475654 0.9356003 0.3207386 -0.1475654 0.9356021 0.1817319 -0.08360993 0.9797872 0.1817354 -0.0836097 0.9797866 0.08849948 -0.04071611 0.9952437 0.0884971 -0.04071617 0.9952439 0.04302442 -0.01979434 0.998878 0.04302471 -0.01979428 0.998878 0.009926736 -0.004567742 0.9999403 0.009931266 -0.004567742 0.9999403 0.9084095 -0.4179348 0.0110768 0.9360758 -0.3516234 0.01109713 0.9528439 -0.3031226 0.01433444 0.9559459 -0.2933341 0.01108306 0.9778733 -0.2089042 0.01109045 0.01074302 -0.00200814 0.9999403 0.04655021 -0.008702218 0.9988781 0.04655492 -0.008702099 0.9988778 0.09575694 -0.01790034 0.9952439 0.09576064 -0.01789999 0.9952435 0.1966351 -0.03675758 0.9797875 0.196636 -0.03675776 0.9797874 0.3470467 -0.06487488 0.9356014 0.3470486 -0.06487512 0.9356007 0.5491423 -0.1026536 0.8294004 0.5491434 -0.1026523 0.8294 0.7316787 -0.1367759 0.6677865 0.7316781 -0.1367742 0.6677874 0.8734355 -0.1632735 0.4587506 0.8734337 -0.1632737 0.458754 0.9491873 -0.1774341 0.2599239 0.9491878 -0.1774331 0.2599232 0.9748501 -0.1822288 0.1282965 0.9748495 -0.1822318 0.128297 0.9815178 -0.1834772 0.05439746 0.9815177 -0.1834775 0.0543971 0.9828347 -0.1837244 0.01677817 0.9888793 -0.1483061 0.01109403 0.010908 -6.72782e-4 0.9999403 0.0472688 -0.002915501 0.998878 0.04727107 -0.002915441 0.9988779 0.09722882 -0.005997061 0.9952441 0.09723252 -0.005997061 0.9952436 0.1996642 -0.01231449 0.979787 0.1996631 -0.01231479 0.9797873 0.352391 -0.02173429 0.9356005 0.3523921 -0.02173519 0.9356001 0.5575956 -0.03439021 0.8294001 0.5575932 -0.03439134 0.8294017 0.7429418 -0.04582244 0.6677858 0.7429394 -0.04582333 0.6677883 0.886878 -0.05470037 0.4587541 0.8868803 -0.05470108 0.4587497 0.9637978 -0.05944442 0.2599233 0.9637976 -0.05944603 0.259924 0.9898549 -0.06105172 0.128297 0.989855 -0.06105279 0.1282958 0.9966256 -0.06146907 0.0543971 0.9966254 -0.06147038 0.05439788 0.9980421 -0.06155896 0.01107662 0.9980423 -0.06155502 0.01107645 0 0 1 1.38397e-6 0 1 6.91984e-7 0 1 1.38397e-6 0 1 1.38397e-6 0 1 -4.1519e-6 0 1 -1.72996e-6 0 1 4.84389e-6 0 1 -3.1788e-6 0 1 1.29747e-6 0 1 -1.03798e-6 0 1 5.53587e-6 0 1 -2.07595e-6 0 1 -1.38397e-6 0 1 0 0 1 -1.38397e-6 0 1 4.1519e-6 0 1 3.45992e-7 0 1 -5.53587e-6 0 1 6.91984e-7 0 1 -5.18988e-7 0 1 -1.38397e-6 0 1 6.91984e-7 0 1 -6.91984e-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 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.9963976 0.08480459 0 -0.9677329 0.2519786 0 -0.9677332 0.2519777 0 -0.9112284 0.4119016 0 -0.9112288 0.4119008 0 -0.8285096 0.559975 0 -0.7219561 0.6919389 0 -0.5946333 0.803997 0 -0.5946329 0.8039974 0 -0.450204 0.8929258 0 -0.4502038 0.8929259 0 -0.2928224 0.9561669 0 -0.1270179 0.9919005 0 0.04244118 0.999099 0 0.2106791 0.9775553 0 0.2106791 0.9775553 0 0.3728567 0.927889 0 0.3728568 0.927889 0 0.5243071 0.8515294 0 0.5243068 0.8515294 0 0.6606746 0.7506723 0 0.6606752 0.750672 0 0.7780357 0.6282203 0 0.8730149 0.4876938 0 0.873014 0.4876953 0 0.9428771 0.3331408 0 0.9428774 0.33314 0 0.9856161 0.1690004 0 1 0 0 0.9856161 -0.1690004 0 0.9428774 -0.33314 0 0.9428771 -0.3331408 0 0.873014 -0.4876953 0 0.8730149 -0.4876938 0 0.7780357 -0.6282203 0 0.6606752 -0.750672 0 0.6606746 -0.7506723 0 0.5243068 -0.8515294 0 0.5243071 -0.8515294 0 0.3728568 -0.927889 0 0.3728567 -0.927889 0 0.2106791 -0.9775553 0 0.2106791 -0.9775553 0 0.04244118 -0.999099 0 -0.1270179 -0.9919005 0 -0.2928224 -0.9561669 0 -0.4502038 -0.8929259 0 -0.450204 -0.8929258 0 -0.5946329 -0.8039974 0 -0.5946333 -0.803997 0 -0.7219561 -0.6919389 0 -0.8285096 -0.559975 0 -0.9112288 -0.4119008 0 -0.9112284 -0.4119016 0 -0.9677332 -0.2519777 0 -0.9677329 -0.2519786 0 -0.9963976 -0.08480459 0 -0.9963975 -0.0848065 0 -0.9963975 0.0848065 0 5.28869e-7 0 1 1.39929e-6 0 1 6.10219e-7 0 1 -1.39825e-6 0 1 -6.10768e-7 0 1 -6.11589e-7 0 1 1.39407e-6 0 1 -3.07036e-7 0 1 1.54424e-7 0 1 4.28707e-7 0 1 3.41378e-7 0 1 1.32513e-6 0 1 -1.30538e-6 0 1 -1.33327e-6 0 1 1.24868e-6 0 1 -7.04503e-7 0 1 -3.56859e-7 0 1 0 0 1 -5.78396e-7 0 1 1.54009e-6 0 1 -1.10059e-6 0 1 -1.08634e-6 0 1 -0.9838984 -0.1787288 0 -0.9930385 -0.1177904 0 -0.8895911 -0.07782852 -0.4500784 -0.9650546 -0.2427188 -0.09877985 -0.8977479 -0.2405533 -0.3690295 -0.9465177 -0.322652 0 -0.92486 -0.380308 0 -0.7941688 -0.3703255 -0.4818248 -0.8881947 -0.4594672 0 -0.8582252 -0.5132733 0 -0.780026 -0.5461823 -0.3053595 -0.7981635 -0.5650014 -0.2090657 -0.6235923 -0.6235944 -0.4714475 -0.7320541 -0.6812466 0 -0.7726036 -0.6348887 0 -0.5214474 -0.7447113 -0.4165306 -0.6229242 -0.7822823 0 -0.6698947 -0.7424561 0 -0.3842052 -0.8239485 -0.4165276 -0.4457432 -0.8951609 0 -0.5523678 -0.8336005 0 -0.1635298 -0.9865384 0 -0.2239506 -0.9746005 0 -0.2282494 -0.8518484 -0.4714409 -0.3080435 -0.9513723 0 -0.366024 -0.9306054 0 -0.09023064 -0.9737315 -0.2090582 -0.08299225 -0.9486165 -0.3053507 -0.01539897 -0.9998815 0 0.04618418 -0.998933 0 0.07637101 -0.8729343 -0.4818229 0.1330707 -0.9911066 0 0.1938363 -0.9810339 0 0.2405511 -0.8977558 -0.3690118 0.2723248 -0.9571198 -0.09879696 0.3773901 -0.809329 -0.4500704 0.3945124 -0.9188907 0 0.3371942 -0.9414352 0 0.6467127 -0.7627337 0 0.5985319 -0.8010991 0 0.5121963 -0.7314958 -0.4500766 0.5264371 -0.8502143 0 0.4731012 -0.8810082 0 0.6927299 -0.7143992 -0.09878897 0.657197 -0.6571997 -0.3690269 0.7526858 -0.65838 0 0.7917886 -0.6107952 0 0.7177931 -0.5026062 -0.4818301 0.8420121 -0.5394586 0 0.8736238 -0.4866021 0 0.8630211 -0.4024359 -0.3053522 0.8883916 -0.4087218 -0.2090621 0.851842 -0.2282549 -0.4714499 0.9560053 -0.2933495 0 0.9361326 -0.3516472 0 0.9056596 -0.07923609 -0.4165364 0.9889407 -0.1483122 0 0.9779341 -0.208914 0 0.9056596 0.07923609 -0.4165364 0.9981034 0.06156063 0 0.9981034 -0.06156063 0 0.9361326 0.3516472 0 0.9560053 0.2933495 0 0.851842 0.2282549 -0.4714499 0.9779341 0.208914 0 0.9889407 0.1483122 0 0.8883908 0.4087228 -0.2090635 0.8630211 0.4024359 -0.3053522 0.8736238 0.4866021 0 0.8420121 0.5394586 0 0.7177931 0.5026062 -0.4818301 0.7917886 0.6107952 0 0.7526858 0.65838 0 0.657197 0.6571997 -0.3690269 0.6927312 0.714398 -0.09878879 0.5121963 0.7314958 -0.4500766 0.5985319 0.8010991 0 0.6467127 0.7627337 0 0.3371942 0.9414352 0 0.3945124 0.9188907 0 0.3773887 0.809326 -0.4500769 0.4731012 0.8810082 0 0.5264371 0.8502143 0 0.272325 0.9571206 -0.09878891 0.2405511 0.8977558 -0.3690118 0.1938363 0.9810339 0 0.1330707 0.9911066 0 0.07637101 0.8729343 -0.4818229 0.04618418 0.998933 0 -0.01539897 0.9998815 0 -0.08299225 0.9486165 -0.3053507 -0.0902304 0.9737336 -0.2090491 -0.2282496 0.851845 -0.4714471 -0.2239506 0.9746005 0 -0.1635298 0.9865384 0 -0.3842056 0.8239449 -0.4165342 -0.366024 0.9306054 0 -0.3080435 0.9513723 0 -0.5214468 0.7447134 -0.4165276 -0.5523678 0.8336005 0 -0.4457432 0.8951609 0 -0.7726036 0.6348887 0 -0.7320541 0.6812466 0 -0.6235935 0.6235955 -0.4714443 -0.6698947 0.7424561 0 -0.6229242 0.7822823 0 -0.7981647 0.5649989 -0.209068 -0.780026 0.5461823 -0.3053595 -0.8582252 0.5132733 0 -0.8881947 0.4594672 0 -0.7941688 0.3703255 -0.4818248 -0.92486 0.380308 0 -0.9465177 0.322652 0 -0.8977479 0.2405533 -0.3690295 -0.9650546 0.2427182 -0.09878009 -0.9995257 -0.0307964 0 -0.9995257 0.0307964 0 -0.8895911 0.07782852 -0.4500784 -0.9930385 0.1177904 0 -0.9838984 0.1787288 0 0 0 -1 -2.96978e-6 0 -1 2.96978e-6 0 -1 2.37582e-6 0 -1 -2.37582e-6 0 -1 -0.2588183 -0.9659261 0 -0.7071072 -0.7071064 0 -0.707107 -0.7071066 0 -0.9659259 -0.2588191 0 -0.9659259 0.2588191 0 -0.707107 0.7071066 0 -0.7071072 0.7071064 0 -0.2588183 0.9659261 0 0.2588183 0.9659261 0 0.7071072 0.7071064 0 0.707107 0.7071066 0 0.9659259 0.2588191 0 0.9659259 -0.2588191 0 0.707107 -0.7071066 0 0.7071072 -0.7071064 0 0.2588183 -0.9659261 0 4.75164e-6 0 -1 -1.78187e-6 0 -1 1.78187e-6 0 -1 2.37582e-6 0 -1 -4.75164e-6 0 -1 -2.37582e-6 0 -1 -0.2588188 -0.9659259 0 -0.7071065 -0.7071071 0 -0.9659258 -0.2588193 0 -0.9659271 -0.2588145 0 -0.9659271 0.2588145 0 -0.9659258 0.2588193 0 -0.7071065 0.7071071 0 -0.2588188 0.9659259 0 0.2588188 0.9659259 0 0.2588201 0.9659256 0 0.7071065 0.7071071 0 0.9659258 0.2588193 0 0.9659258 -0.2588193 0 0.7071065 -0.7071071 0 0.2588201 -0.9659256 0 0.2588188 -0.9659259 0 -0.2588201 -0.9659256 0 -0.2588201 0.9659256 0 0.9659271 0.2588145 0 0.9659271 -0.2588145 0 + + + + + + + + + + + + + + +

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

+
+
+
+
+ + + + 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 + + + + + + + + + + 0.6859207 -0.3240135 0.6515582 7.358891 0.7276763 0.3054208 -0.6141704 -6.925791 0 0.8953956 0.4452714 4.958309 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 + + + + + + + +
diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/sensor/xtion.dae b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/sensor/xtion.dae new file mode 100644 index 0000000..a156d39 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/sensor/xtion.dae @@ -0,0 +1,172 @@ + + + + + DesignK + OpenCOLLADA for 3ds Max; Version: 1.4.1; Revision: exported; Platform: x64; Configuration: Release_Max2011_static + + 2015-02-26T12:05:50 + 2015-02-26T12:05:50 + + + + + + + + xtion_pro_camera_jpg + + + + + xtion_pro_camera_jpg-surface + + + + + + 0 0 0 1 + + + 0.5882353 0.5882353 0.5882353 1 + + + + + + 0.9 0.9 0.9 1 + + + 0 + + + 0 0 0 1 + + + 1 1 1 1 + + + 1 + + + + + + + + 0 + 0 + 0 + 1.5 + 0 + 3 + 1 + 0 + + + 1 + 1 + 0 + 0.1 + 0 + + + + + + + + + + + + + + + -76.04878 9.548895 16.21027 -74.92475 12.0339 16.21027 -77.90552 12.0339 16.21027 -77.90552 14.0577 15.21055 -78.85936 9.548895 16.21027 -80.52382 11.6932 16.21027 -80.00552 13.87671 15.21048 -73.2382 9.548895 16.21027 -71.94398 12.0339 16.21027 -74.92475 14.0577 15.21055 -70.42763 9.548895 16.21027 -68.96321 12.0339 16.21027 -71.94398 14.0577 15.21055 -67.61705 9.548895 16.21027 -65.98244 12.0339 16.21027 -68.96321 14.0577 15.21055 -64.80647 9.548895 16.21027 -63.00167 12.0339 16.21027 -65.98244 14.0577 15.21055 -61.9959 9.548895 16.21027 -60.0209 12.0339 16.21027 -63.00167 14.0577 15.21055 -59.18532 9.548895 16.21027 -57.04014 12.0339 16.21027 -60.0209 14.0577 15.21055 -56.37474 9.548895 16.21027 -54.05937 12.0339 16.21027 -57.04014 14.0577 15.21055 -52.18471 10.59909 16.21027 -51.0786 12.0339 16.21027 -54.05937 14.0577 15.21055 -53.61366 9.613695 16.21027 -49.71692 11.60407 16.21027 -48.09783 12.0339 16.21027 -51.0786 14.0577 15.21055 -47.15552 11.9339 16.21027 -45.11706 12.0339 16.21027 -48.09783 14.0577 15.21055 -44.21108 11.9339 16.21027 -42.13629 12.0339 16.21027 -45.11706 14.0577 15.21055 -41.26663 11.9339 16.21027 -39.15552 12.0339 16.21027 -42.13629 14.0577 15.21055 -38.32219 11.9339 16.21027 -36.17475 12.0339 16.21027 -39.15552 14.0577 15.21055 -35.37774 11.9339 16.21027 -33.19398 12.0339 16.21027 -36.17475 14.0577 15.21055 -32.4333 11.9339 16.21027 -30.21321 12.0339 16.21027 -33.19398 14.0577 15.21055 -29.48886 11.9339 16.21027 -27.23244 12.0339 16.21027 -30.21321 14.0577 15.21055 -26.54441 11.9339 16.21027 -24.25167 12.0339 16.21027 -27.23244 14.0577 15.21055 -23.59997 11.9339 16.21027 -21.27091 12.0339 16.21027 -24.25167 14.0577 15.21055 -20.65552 11.9339 16.21027 -18.29014 12.0339 16.21027 -21.27091 14.0577 15.21055 -15.62051 10.59577 16.21027 -15.30937 12.0339 16.21027 -18.29014 14.0577 15.21055 -18.08964 11.60283 16.21027 -14.19732 9.613679 16.21027 -12.3286 12.0339 16.21027 -15.30937 14.0577 15.21055 -11.47885 9.548895 16.21027 -9.347829 12.0339 16.21027 -12.3286 14.0577 15.21055 -8.710556 9.548895 16.21027 -6.36706 12.0339 16.21027 -9.347829 14.0577 15.21055 -5.942256 9.548895 16.21027 -3.386291 12.0339 16.21027 -6.36706 14.0577 15.21055 -0.4056587 9.548895 16.21027 -0.4055214 12.0339 16.21027 -3.386291 14.0577 15.21055 -3.173958 9.548895 16.21027 2.36264 9.548895 16.21027 2.575248 12.0339 16.21027 -0.4055214 14.0577 15.21055 5.130939 9.548895 16.21027 5.556017 12.0339 16.21027 2.575248 14.0577 15.21055 7.899239 9.548895 16.21027 8.536786 12.0339 16.21027 5.556017 14.0577 15.21055 10.66754 9.548895 16.21027 11.51756 12.0339 16.21027 8.536786 14.0577 15.21055 13.38634 9.613695 16.21027 14.49832 12.0339 16.21027 11.51756 14.0577 15.21055 17.28308 11.60407 16.21027 17.47909 12.0339 16.21027 14.49832 14.0577 15.21055 14.81529 10.59909 16.21027 19.84448 11.9339 16.21027 20.45986 12.0339 16.21027 17.47909 14.0577 15.21055 22.78892 11.9339 16.21027 23.44063 12.0339 16.21027 20.45986 14.0577 15.21055 25.73337 11.9339 16.21027 26.4214 12.0339 16.21027 23.44063 14.0577 15.21055 28.67781 11.9339 16.21027 29.40217 12.0339 16.21027 26.4214 14.0577 15.21055 31.62226 11.9339 16.21027 32.38294 12.0339 16.21027 29.40217 14.0577 15.21055 34.5667 11.9339 16.21027 35.36371 12.0339 16.21027 32.38294 14.0577 15.21055 37.51115 11.9339 16.21027 38.34448 12.0339 16.21027 35.36371 14.0577 15.21055 40.45559 11.9339 16.21027 41.32525 12.0339 16.21027 38.34448 14.0577 15.21055 43.40004 11.9339 16.21027 44.30602 12.0339 16.21027 41.32525 14.0577 15.21055 46.34448 11.9339 16.21027 47.28679 12.0339 16.21027 44.30602 14.0577 15.21055 48.91036 11.60283 16.21027 50.26756 12.0339 16.21027 47.28679 14.0577 15.21055 52.80268 9.613679 16.21027 53.24833 12.0339 16.21027 50.26756 14.0577 15.21055 51.37949 10.59577 16.21027 55.56347 9.548895 16.21027 56.2291 12.0339 16.21027 53.24833 14.0577 15.21055 58.37408 9.548895 16.21027 59.20986 12.0339 16.21027 56.2291 14.0577 15.21055 61.1847 9.548895 16.21027 62.19063 12.0339 16.21027 59.20986 14.0577 15.21055 63.99532 9.548895 16.21027 65.1714 12.0339 16.21027 62.19063 14.0577 15.21055 66.80594 9.548895 16.21027 68.15218 12.0339 16.21027 65.1714 14.0577 15.21055 69.61656 9.548895 16.21027 71.13294 12.0339 16.21027 68.15218 14.0577 15.21055 72.42718 9.548895 16.21027 74.11372 12.0339 16.21027 71.13294 14.0577 15.21055 75.23779 9.548895 16.21027 77.09448 12.0339 16.21027 74.11372 14.0577 15.21055 78.04842 9.548895 16.21027 79.71168 11.69353 16.21027 77.09448 14.0577 15.21055 80.85903 9.548895 16.21027 82.18748 10.67864 16.21027 81.24921 13.33312 15.21055 79.19334 13.87691 15.2105 83.71596 9.60755 16.21027 83.19302 12.43537 15.21055 83.25928 6.545896 16.21027 86.15452 6.576749 16.21027 84.32352 9.050505 16.21027 84.95641 11.20919 15.21055 80.4549 6.545896 16.21027 77.65053 6.545896 16.21027 74.84615 6.545896 16.21027 72.04178 6.545896 16.21027 69.2374 6.545896 16.21027 66.43303 6.545896 16.21027 63.62864 6.545896 16.21027 60.82427 6.545896 16.21027 58.01989 6.545896 16.21027 53.51077 8.971154 16.21027 55.29227 6.575278 16.21027 55.12887 6.868827 16.21027 50.93471 9.814605 15.31028 52.87562 8.334216 15.31024 48.68564 10.73272 15.31052 46.34448 11.0339 15.31027 43.40004 11.0339 15.31027 40.45559 11.0339 15.31027 37.51115 11.0339 15.31027 34.5667 11.0339 15.31027 31.62226 11.0339 15.31027 28.67781 11.0339 15.31027 25.73337 11.0339 15.31027 22.78892 11.0339 15.31027 19.84448 11.0339 15.31027 17.5076 10.73384 15.31045 15.25988 9.817821 15.31026 12.68238 8.975282 16.21027 8.129706 6.545896 16.21027 11.06257 6.873148 16.21027 10.89685 6.575631 16.21027 5.284822 6.545896 16.21027 2.439938 6.545896 16.21027 -0.4049456 6.545896 16.21027 -3.24983 6.545896 16.21027 -6.094714 6.545896 16.21027 -8.939598 6.545896 16.21027 -13.48923 8.971154 16.21027 -11.87113 6.868827 16.21027 -11.70773 6.575278 16.21027 -16.06529 9.814605 15.31028 -14.12438 8.334216 15.31024 -18.31436 10.73272 15.31052 -20.65552 11.0339 15.31027 -23.59997 11.0339 15.31027 -26.54441 11.0339 15.31027 -29.48886 11.0339 15.31027 -32.4333 11.0339 15.31027 -35.37774 11.0339 15.31027 -38.32219 11.0339 15.31027 -41.26663 11.0339 15.31027 -44.21108 11.0339 15.31027 -47.15552 11.0339 15.31027 -49.4924 10.73384 15.31045 -51.74012 9.817821 15.31026 -54.31762 8.975282 16.21027 -58.82993 6.545896 16.21027 -55.93743 6.873148 16.21027 -56.10315 6.575631 16.21027 -61.63445 6.545896 16.21027 -64.43896 6.545896 16.21027 -67.24348 6.545896 16.21027 -70.048 6.545896 16.21027 -72.85252 6.545896 16.21027 -75.65703 6.545896 16.21027 -78.46155 6.545896 16.21027 -81.66994 9.548895 16.21027 -81.26607 6.545896 16.21027 -83.00018 10.67767 16.21027 -84.52693 9.607603 16.21027 -84.07059 6.545896 16.21027 -85.76965 11.20735 15.21055 -85.13595 9.049119 16.21027 -87.29202 9.69211 15.21056 -82.06226 13.33239 15.21054 -84.00642 12.43403 15.21055 -86.77365 6.923284 16.21027 -53.68251 8.338359 15.31025 -55.15894 6.421537 15.31028 -57.13777 3.619094 16.21027 -56.08688 4.190848 15.31027 -59.63728 3.542895 16.21027 -62.4418 3.542895 16.21027 -65.2463 3.542895 16.21027 -68.05082 3.542895 16.21027 -70.85533 3.542895 16.21027 -73.65984 3.542895 16.21027 -76.46436 3.542895 16.21027 -79.26887 3.542895 16.21027 -82.07339 3.542895 16.21027 -86.96561 6.576626 16.21027 -84.8779 3.542895 16.21027 -88.52594 7.936362 15.21055 -87.59118 5.137239 16.21027 -89.43502 5.993027 15.21055 -87.99015 3.617451 16.21027 -89.99191 3.920568 15.21055 -57.30496 1.786548 16.21027 -56.40552 1.786755 15.31027 -59.77507 0.5398954 16.21027 -57.22171 0.4826936 16.21027 -62.57968 0.5398954 16.21027 -65.38428 0.5398954 16.21027 -68.18887 0.5398954 16.21027 -70.99348 0.5398954 16.21027 -73.79808 0.5398954 16.21027 -76.60268 0.5398954 16.21027 -79.40728 0.5398954 16.21027 -82.21188 0.5398954 16.21027 -85.01649 0.5398954 16.21027 -88.07237 0.4834474 16.21027 -88.15552 1.783049 16.21027 -90.17932 1.782505 15.21055 -58.96915 -2.463105 16.21027 -56.34466 -2.526088 16.21027 -56.0883 -0.6177694 15.31028 -61.77356 -2.463105 16.21027 -64.57796 -2.463105 16.21027 -67.38237 -2.463105 16.21027 -70.18678 -2.463105 16.21027 -72.99119 -2.463105 16.21027 -75.7956 -2.463105 16.21027 -78.60001 -2.463105 16.21027 -81.40442 -2.463105 16.21027 -84.20882 -2.463105 16.21027 -87.20567 -2.52502 16.21027 -87.7545 -1.053871 16.21027 -89.99142 -0.3555082 15.21055 -89.43407 -2.427822 15.21055 -57.04931 -5.466105 16.21027 -55.93991 -3.301036 16.21027 -55.16154 -2.849265 15.31029 -59.85912 -5.466105 16.21027 -62.66892 -5.466105 16.21027 -65.47872 -5.466105 16.21027 -68.28853 -5.466105 16.21027 -71.09833 -5.466105 16.21027 -73.90813 -5.466105 16.21027 -76.71794 -5.466105 16.21027 -79.52774 -5.466105 16.21027 -82.33755 -5.466105 16.21027 -85.14937 -5.467947 16.21027 -86.77275 -3.357054 16.21027 -88.52456 -4.370953 15.21055 -87.2902 -6.126472 15.21056 -54.32181 -5.403363 16.21027 -53.68666 -4.766426 15.31024 -54.24804 -5.476066 16.21027 -57.04014 -8.466105 16.21027 -54.05937 -8.466105 16.21027 -52.19053 -7.027974 16.21027 -51.74575 -6.246814 15.31028 -60.0209 -8.466105 16.21027 -63.00167 -8.466105 16.21027 -65.98244 -8.466105 16.21027 -68.96321 -8.466105 16.21027 -71.94398 -8.466105 16.21027 -74.92475 -8.466105 16.21027 -77.90552 -8.466105 16.21027 -80.52271 -8.125734 16.21027 -82.99851 -7.110848 16.21027 -84.00406 -8.867582 15.21055 -85.76745 -7.641401 15.21055 -82.06024 -9.765325 15.21055 -51.0786 -8.466105 16.21027 -49.7214 -8.035043 16.21027 -49.49669 -7.164928 15.31052 -48.09783 -8.466105 16.21027 -47.15552 -8.366104 16.21027 -45.11706 -8.466105 16.21027 -44.21108 -8.366104 16.21027 -47.15552 -7.466105 15.31027 -42.13629 -8.466105 16.21027 -41.26663 -8.366104 16.21027 -44.21108 -7.466105 15.31027 -39.15552 -8.466105 16.21027 -38.32219 -8.366104 16.21027 -41.26663 -7.466105 15.31027 -36.17475 -8.466105 16.21027 -35.37774 -8.366104 16.21027 -38.32219 -7.466105 15.31027 -33.19398 -8.466105 16.21027 -32.4333 -8.366104 16.21027 -35.37774 -7.466105 15.31027 -30.21321 -8.466105 16.21027 -29.48886 -8.366104 16.21027 -32.4333 -7.466105 15.31027 -27.23244 -8.466105 16.21027 -26.54441 -8.366104 16.21027 -29.48886 -7.466105 15.31027 -24.25167 -8.466105 16.21027 -23.59997 -8.366104 16.21027 -26.54441 -7.466105 15.31027 -21.27091 -8.466105 16.21027 -20.65552 -8.366104 16.21027 -23.59997 -7.466105 15.31027 -18.29014 -8.466105 16.21027 -18.09412 -8.036283 16.21027 -20.65552 -7.466105 15.31027 -15.30937 -8.466105 16.21027 -15.62634 -7.031301 16.21027 -18.31864 -7.166048 15.31045 -13.56244 -5.475461 16.21027 -16.07092 -6.25003 15.31026 -12.3286 -8.466105 16.21027 -10.64476 -5.466105 16.21027 -13.49342 -5.407491 16.21027 -9.347829 -8.466105 16.21027 -7.719101 -5.466105 16.21027 -8.836871 -2.463105 16.21027 -11.46647 -2.526352 16.21027 -11.87362 -3.305357 16.21027 -6.36706 -8.466105 16.21027 -4.793444 -5.466105 16.21027 -6.026567 -2.463105 16.21027 -3.386291 -8.466105 16.21027 -1.867788 -5.466105 16.21027 -3.216262 -2.463105 16.21027 -0.4055214 -8.466105 16.21027 1.057869 -5.466105 16.21027 -0.4059578 -2.463105 16.21027 2.575248 -8.466105 16.21027 3.983526 -5.466105 16.21027 2.404346 -2.463105 16.21027 5.556017 -8.466105 16.21027 6.909182 -5.466105 16.21027 5.214651 -2.463105 16.21027 8.536786 -8.466105 16.21027 9.834839 -5.466105 16.21027 8.024956 -2.463105 16.21027 11.51756 -8.466105 16.21027 12.75197 -5.476066 16.21027 12.67819 -5.403363 16.21027 10.65534 -2.526088 16.21027 11.06008 -3.301036 16.21027 14.49832 -8.466105 16.21027 14.80947 -7.027974 16.21027 15.25425 -6.246814 15.31028 13.31334 -4.766426 15.31024 17.47909 -8.466105 16.21027 17.2786 -8.035043 16.21027 17.50331 -7.164928 15.31052 19.84448 -8.366104 16.21027 20.45986 -8.466105 16.21027 22.78892 -8.366104 16.21027 19.84448 -7.466105 15.31027 23.44063 -8.466105 16.21027 25.73337 -8.366104 16.21027 22.78892 -7.466105 15.31027 26.4214 -8.466105 16.21027 28.67781 -8.366104 16.21027 25.73337 -7.466105 15.31027 29.40217 -8.466105 16.21027 31.62226 -8.366104 16.21027 28.67781 -7.466105 15.31027 32.38294 -8.466105 16.21027 34.5667 -8.366104 16.21027 31.62226 -7.466105 15.31027 35.36371 -8.466105 16.21027 37.51115 -8.366104 16.21027 34.5667 -7.466105 15.31027 38.34448 -8.466105 16.21027 40.45559 -8.366104 16.21027 37.51115 -7.466105 15.31027 41.32525 -8.466105 16.21027 43.40004 -8.366104 16.21027 40.45559 -7.466105 15.31027 44.30602 -8.466105 16.21027 46.34448 -8.366104 16.21027 43.40004 -7.466105 15.31027 47.28679 -8.466105 16.21027 48.90588 -8.036283 16.21027 46.34448 -7.466105 15.31027 50.26756 -8.466105 16.21027 51.37366 -7.031301 16.21027 48.68136 -7.166048 15.31045 53.24833 -8.466105 16.21027 53.43756 -5.475461 16.21027 50.92908 -6.25003 15.31026 56.2291 -8.466105 16.21027 56.23932 -5.466105 16.21027 53.50658 -5.407491 16.21027 59.20986 -8.466105 16.21027 59.04905 -5.466105 16.21027 58.15734 -2.463105 16.21027 55.12638 -3.305357 16.21027 55.53353 -2.526352 16.21027 61.85878 -5.466105 16.21027 60.96186 -2.463105 16.21027 62.19063 -8.466105 16.21027 64.66852 -5.466105 16.21027 63.76638 -2.463105 16.21027 65.1714 -8.466105 16.21027 67.47825 -5.466105 16.21027 66.5709 -2.463105 16.21027 68.15218 -8.466105 16.21027 70.28798 -5.466105 16.21027 69.37541 -2.463105 16.21027 71.13294 -8.466105 16.21027 73.09771 -5.466105 16.21027 72.17993 -2.463105 16.21027 74.11372 -8.466105 16.21027 75.90744 -5.466105 16.21027 74.98445 -2.463105 16.21027 77.09448 -8.466105 16.21027 78.71718 -5.466105 16.21027 77.78896 -2.463105 16.21027 79.71278 -8.125409 16.21027 81.52691 -5.466105 16.21027 80.59348 -2.463105 16.21027 82.18915 -7.10988 16.21027 84.33849 -5.467794 16.21027 83.398 -2.463105 16.21027 84.95862 -7.639563 15.21055 85.96262 -3.355493 16.21027 86.48098 -6.12432 15.21056 81.25122 -9.764601 15.21054 83.19538 -8.866236 15.21055 79.19449 -10.30892 15.21048 77.09448 -10.48991 15.21055 74.11372 -10.48991 15.21055 71.13294 -10.48991 15.21055 68.15218 -10.48991 15.21055 65.1714 -10.48991 15.21055 62.19063 -10.48991 15.21055 59.20986 -10.48991 15.21055 56.2291 -10.48991 15.21055 53.24833 -10.48991 15.21055 50.26756 -10.48991 15.21055 47.28679 -10.48991 15.21055 44.30602 -10.48991 15.21055 41.32525 -10.48991 15.21055 38.34448 -10.48991 15.21055 35.36371 -10.48991 15.21055 32.38294 -10.48991 15.21055 29.40217 -10.48991 15.21055 26.4214 -10.48991 15.21055 23.44063 -10.48991 15.21055 20.45986 -10.48991 15.21055 17.47909 -10.48991 15.21055 14.49832 -10.48991 15.21055 11.51756 -10.48991 15.21055 8.536786 -10.48991 15.21055 5.556017 -10.48991 15.21055 2.575248 -10.48991 15.21055 -0.4055214 -10.48991 15.21055 -3.386291 -10.48991 15.21055 -6.36706 -10.48991 15.21055 -9.347829 -10.48991 15.21055 -12.3286 -10.48991 15.21055 -15.30937 -10.48991 15.21055 -18.29014 -10.48991 15.21055 -21.27091 -10.48991 15.21055 -24.25167 -10.48991 15.21055 -27.23244 -10.48991 15.21055 -30.21321 -10.48991 15.21055 -33.19398 -10.48991 15.21055 -36.17475 -10.48991 15.21055 -39.15552 -10.48991 15.21055 -42.13629 -10.48991 15.21055 -45.11706 -10.48991 15.21055 -48.09783 -10.48991 15.21055 -51.0786 -10.48991 15.21055 -54.05937 -10.48991 15.21055 -57.04014 -10.48991 15.21055 -60.0209 -10.48991 15.21055 -63.00167 -10.48991 15.21055 -65.98244 -10.48991 15.21055 -68.96321 -10.48991 15.21055 -71.94398 -10.48991 15.21055 -74.92475 -10.48991 15.21055 -77.90552 -10.48991 15.21055 -80.00437 -10.30912 15.2105 86.39468 -2.524919 16.21027 87.7149 -4.368571 15.21055 52.87146 -4.770568 15.31025 54.3479 -2.853746 15.31028 56.41067 0.4827209 16.21027 55.27583 -0.6230575 15.31027 58.96469 0.5398954 16.21027 61.76921 0.5398954 16.21027 64.57372 0.5398954 16.21027 67.37823 0.5398954 16.21027 70.18275 0.5398954 16.21027 72.98726 0.5398954 16.21027 75.79177 0.5398954 16.21027 78.59629 0.5398954 16.21027 81.4008 0.5398954 16.21027 84.20531 0.5398954 16.21027 86.94347 -1.05385 16.21027 88.62399 -2.425236 15.21055 87.26134 0.4834038 16.21027 89.18088 -0.3527774 15.21055 56.49392 1.781242 16.21027 55.59448 1.781036 15.31027 61.63039 3.542895 16.21027 58.82582 3.542895 16.21027 64.43496 3.542895 16.21027 67.23953 3.542895 16.21027 70.0441 3.542895 16.21027 72.84867 3.542895 16.21027 75.65324 3.542895 16.21027 78.4578 3.542895 16.21027 81.26237 3.542895 16.21027 84.06694 3.542895 16.21027 87.17912 3.617438 16.21027 87.34448 1.784742 16.21027 89.36829 1.785286 15.21055 89.18039 3.923299 15.21055 56.32672 3.619092 16.21027 55.27726 4.18556 15.31028 86.78013 5.137288 16.21027 88.62304 5.995613 15.21055 54.3505 6.417056 15.31029 85.96172 6.924845 16.21027 87.71352 7.938744 15.21055 86.47916 9.694263 15.21056 13.3175 8.338359 15.31025 11.84106 6.421537 15.31028 9.862226 3.619094 16.21027 10.91313 4.190848 15.31027 7.523985 3.542895 16.21027 4.880738 3.542895 16.21027 2.23749 3.542895 16.21027 -0.4057581 3.542895 16.21027 -5.692254 3.542895 16.21027 -3.049006 3.542895 16.21027 -8.335502 3.542895 16.21027 -10.67328 3.619092 16.21027 -12.6495 6.417056 15.31029 -11.72274 4.18556 15.31028 -10.50608 1.781242 16.21027 -11.40552 1.781036 15.31027 9.69504 1.786548 16.21027 10.59448 1.786755 15.31027 7.048193 0.5398954 16.21027 9.778294 0.4826936 16.21027 4.066857 0.5398954 16.21027 1.085522 0.5398954 16.21027 -1.895813 0.5398954 16.21027 -4.877148 0.5398954 16.21027 -7.858483 0.5398954 16.21027 -10.58933 0.4827209 16.21027 10.9117 -0.6177694 15.31028 -11.72417 -0.6230575 15.31027 -12.6521 -2.853746 15.31028 11.83846 -2.849265 15.31029 -14.12854 -4.770568 15.31025 -80.85992 13.77038 12.21141 -77.90552 14.06953 14.71372 -83.64262 12.71504 12.21141 -86.0919 11.02442 12.21141 -88.06543 8.796774 12.21141 -89.44849 6.161568 12.21141 -90.16072 3.271946 12.21141 -90.16072 0.2958447 12.21141 -89.44849 -2.593777 12.21141 -88.06543 -5.228983 12.21141 -86.0919 -7.456628 12.21141 -83.64262 -9.147245 12.21141 -80.85992 -10.20259 12.21141 -77.90552 -10.50174 14.71372 -77.90552 -10.56132 12.21141 -74.92475 -10.50174 14.71372 -74.92475 -10.57322 11.71157 -77.90552 -10.57322 11.71157 -80.87703 -10.27199 9.209264 -77.90552 -10.6328 9.209264 -83.67584 -9.210538 9.209264 -86.13931 -7.510131 9.209264 -88.12425 -5.269589 9.209264 -89.51533 -2.619123 9.209264 -90.23167 0.2872287 9.209264 -90.23167 3.280562 9.209264 -89.51533 6.186914 9.209264 -88.12425 8.837379 9.209264 -86.13931 11.07792 9.209264 -83.67584 12.77833 9.209264 -77.90552 14.12911 12.21141 -80.87703 13.83978 9.209264 -74.92475 14.06953 14.71372 -77.90552 14.14101 11.71157 -80.89413 -10.34139 6.207115 -80.07612 -10.5262 5.710271 -77.90552 -10.7161 5.710271 -77.90552 -10.7161 2.710271 -77.90552 -10.70428 6.207115 -74.93733 -10.7161 5.710271 -74.93733 -10.7161 2.710271 -82.18077 -9.962262 5.710271 -80.68703 -10.4027 2.710271 -83.70906 -9.27383 6.207115 -84.15552 -9.041422 5.710271 -83.32906 -9.478215 2.710271 -86.18671 -7.563634 6.207115 -85.94036 -7.79166 5.710271 -85.69914 -7.988998 2.710271 -87.48107 -6.25095 5.710271 -88.18308 -5.310194 6.207115 -88.73083 -4.466105 5.710271 -87.67841 -6.009727 2.710271 -89.58216 -2.644471 6.207115 -89.65167 -2.491356 5.710271 -89.16763 -3.639651 2.710271 -90.30264 0.2786127 6.207115 -90.21561 -0.3867069 5.710271 -90.09212 -0.9976164 2.710271 -90.40552 1.783895 5.710271 -90.30264 3.289178 6.207115 -90.21561 3.954498 5.710271 -90.40552 1.783895 2.710271 -89.58216 6.212262 6.207115 -89.65167 6.059147 5.710271 -90.09212 4.565407 2.710271 -88.73083 8.033895 5.710271 -89.16763 7.207442 2.710271 -88.18308 8.877985 6.207115 -87.48107 9.818741 5.710271 -87.67841 9.577518 2.710271 -86.18671 11.13142 6.207115 -85.94036 11.35945 5.710271 -83.70906 12.84162 6.207115 -84.15552 12.60921 5.710271 -85.69914 11.55679 2.710271 -82.18077 13.53005 5.710271 -83.32906 13.04601 2.710271 -80.89413 13.90918 6.207115 -80.07612 14.09399 5.710271 -80.68703 13.97049 2.710271 -77.90552 14.27207 6.207115 -77.90552 14.2839 5.710271 -74.92475 14.21249 8.709421 -74.92475 14.2839 5.710271 -77.90552 14.2839 2.710271 -77.90552 14.21249 8.709421 -77.90552 14.20059 9.209264 -77.90552 -10.6447 8.709421 -74.92475 -10.6447 8.709421 -74.92475 14.14101 11.71157 -3.386291 -10.6447 8.709421 -3.105521 -10.7161 5.710271 -0.4055214 -10.7161 5.710271 -0.4055214 -10.7161 2.719271 -0.4055214 -10.6447 8.709421 1.861145 -10.7161 5.710271 1.494479 -13.7161 5.710271 -0.4055214 -13.60952 2.719271 -0.4055214 -13.7161 5.710271 -5.805521 -10.7161 5.710271 -3.105521 -10.7161 2.719271 -6.36706 -10.6447 8.709421 -8.072187 -10.7161 5.710271 -5.805521 -13.7161 5.710271 -5.805521 -10.7161 2.719271 -9.347829 -10.6447 8.709421 -10.33885 -10.7161 5.710271 -9.605521 -13.7161 5.710271 -7.705522 -13.7161 5.710271 -12.3286 -10.6447 8.709421 -12.60552 -10.7161 5.710271 -10.4842 -11.59478 5.710271 -15.30937 -10.6447 8.709421 -15.5737 -10.7161 5.710271 -12.60552 -10.7161 2.710271 -11.10552 -11.11803 2.710271 -18.29014 -10.6447 8.709421 -18.54188 -10.7161 5.710271 -15.5737 -10.7161 2.710271 -21.27091 -10.6447 8.709421 -21.51007 -10.7161 5.710271 -18.54189 -10.7161 2.710271 -24.25167 -10.6447 8.709421 -24.47825 -10.7161 5.710271 -21.51007 -10.7161 2.710271 -27.23244 -10.6447 8.709421 -27.44643 -10.7161 5.710271 -24.47825 -10.7161 2.710271 -30.21321 -10.6447 8.709421 -30.41461 -10.7161 5.710271 -27.44643 -10.7161 2.710271 -33.19398 -10.6447 8.709421 -33.38279 -10.7161 5.710271 -30.41461 -10.7161 2.710271 -36.17475 -10.6447 8.709421 -36.35098 -10.7161 5.710271 -33.38279 -10.7161 2.710271 -39.15552 -10.6447 8.709421 -39.31916 -10.7161 5.710271 -36.35098 -10.7161 2.710271 -42.13629 -10.6447 8.709421 -42.28734 -10.7161 5.710271 -39.31916 -10.7161 2.710271 -45.11706 -10.6447 8.709421 -45.25552 -10.7161 5.710271 -42.28734 -10.7161 2.710271 -48.09783 -10.6447 8.709421 -48.2237 -10.7161 5.710271 -45.25552 -10.7161 2.710271 -51.0786 -10.6447 8.709421 -51.19188 -10.7161 5.710271 -48.2237 -10.7161 2.710271 -54.05937 -10.6447 8.709421 -54.16006 -10.7161 5.710271 -51.19189 -10.7161 2.710271 -57.04014 -10.6447 8.709421 -57.12825 -10.7161 5.710271 -54.16007 -10.7161 2.710271 -60.0209 -10.6447 8.709421 -60.09643 -10.7161 5.710271 -57.12825 -10.7161 2.710271 -63.00167 -10.6447 8.709421 -63.06461 -10.7161 5.710271 -60.09643 -10.7161 2.710271 -65.98244 -10.6447 8.709421 -66.03279 -10.7161 5.710271 -63.06461 -10.7161 2.710271 -68.96321 -10.6447 8.709421 -69.00097 -10.7161 5.710271 -66.03279 -10.7161 2.710271 -71.94398 -10.6447 8.709421 -71.96915 -10.7161 5.710271 -69.00097 -10.7161 2.710271 -71.96915 -10.7161 2.710271 -71.94398 -10.57322 11.71157 -68.96321 -10.57322 11.71157 -65.98244 -10.57322 11.71157 -63.00167 -10.57322 11.71157 -60.0209 -10.57322 11.71157 -57.04014 -10.57322 11.71157 -54.05937 -10.57322 11.71157 -51.0786 -10.57322 11.71157 -48.09783 -10.57322 11.71157 -45.11706 -10.57322 11.71157 -42.13629 -10.57322 11.71157 -39.15552 -10.57322 11.71157 -36.17475 -10.57322 11.71157 -33.19398 -10.57322 11.71157 -30.21321 -10.57322 11.71157 -27.23244 -10.57322 11.71157 -24.25167 -10.57322 11.71157 -21.27091 -10.57322 11.71157 -18.29014 -10.57322 11.71157 -15.30937 -10.57322 11.71157 -12.3286 -10.57322 11.71157 -9.347829 -10.57322 11.71157 -6.36706 -10.57322 11.71157 -3.386291 -10.57322 11.71157 2.575248 -10.6447 8.709421 -0.4055214 -10.57322 11.71157 4.127811 -10.7161 5.710271 5.556017 -10.6447 8.709421 2.575248 -10.57322 11.71157 6.394478 -10.7161 5.710271 8.536786 -10.6447 8.709421 5.556017 -10.57322 11.71157 9.340311 -10.7161 5.710271 11.51756 -10.6447 8.709421 8.536786 -10.57322 11.71157 12.28614 -10.7161 5.710271 14.49832 -10.6447 8.709421 11.51756 -10.57322 11.71157 15.23198 -10.7161 5.710271 17.47909 -10.6447 8.709421 14.49832 -10.57322 11.71157 18.17781 -10.7161 5.710271 20.45986 -10.6447 8.709421 17.47909 -10.57322 11.71157 21.12364 -10.7161 5.710271 23.44063 -10.6447 8.709421 20.45986 -10.57322 11.71157 24.06948 -10.7161 5.710271 26.4214 -10.6447 8.709421 23.44063 -10.57322 11.71157 27.01531 -10.7161 5.710271 29.40217 -10.6447 8.709421 26.4214 -10.57322 11.71157 29.96115 -10.7161 5.710271 32.38294 -10.6447 8.709421 29.40217 -10.57322 11.71157 32.90698 -10.7161 5.710271 35.36371 -10.6447 8.709421 32.38294 -10.57322 11.71157 35.85281 -10.7161 5.710271 38.34448 -10.6447 8.709421 35.36371 -10.57322 11.71157 38.79865 -10.7161 5.710271 41.32525 -10.6447 8.709421 38.34448 -10.57322 11.71157 41.74448 -10.7161 5.710271 44.30602 -10.6447 8.709421 41.32525 -10.57322 11.71157 44.69031 -10.7161 5.710271 47.28679 -10.6447 8.709421 44.30602 -10.57322 11.71157 47.63615 -10.7161 5.710271 50.26756 -10.6447 8.709421 47.28679 -10.57322 11.71157 50.58198 -10.7161 5.710271 53.24833 -10.6447 8.709421 50.26756 -10.57322 11.71157 53.52781 -10.7161 5.710271 56.2291 -10.6447 8.709421 53.24833 -10.57322 11.71157 56.47364 -10.7161 5.710271 59.20986 -10.6447 8.709421 56.2291 -10.57322 11.71157 59.41948 -10.7161 5.710271 62.19063 -10.6447 8.709421 59.20986 -10.57322 11.71157 62.36531 -10.7161 5.710271 65.1714 -10.6447 8.709421 62.19063 -10.57322 11.71157 65.31115 -10.7161 5.710271 68.15218 -10.6447 8.709421 65.1714 -10.57322 11.71157 68.25698 -10.7161 5.710271 71.13294 -10.6447 8.709421 68.15218 -10.57322 11.71157 71.20281 -10.7161 5.710271 74.11372 -10.6447 8.709421 71.13294 -10.57322 11.71157 77.09448 -10.70428 6.207115 77.09448 -10.6447 8.709421 74.11372 -10.57322 11.71157 77.09448 -10.7161 5.710271 74.14865 -10.7161 5.710271 80.0831 -10.34139 6.207115 77.09448 -10.6328 9.209264 79.26508 -10.5262 5.710271 77.09448 -10.7161 2.710271 79.87599 -10.4027 2.710271 74.14865 -10.7161 2.710646 71.20281 -10.7161 2.711021 68.25698 -10.7161 2.711396 65.31115 -10.7161 2.711771 62.36531 -10.7161 2.712146 59.41948 -10.7161 2.712521 56.47364 -10.7161 2.712896 53.52781 -10.7161 2.713271 50.58198 -10.7161 2.713646 47.63615 -10.7161 2.714021 44.69031 -10.7161 2.714396 41.74448 -10.7161 2.714771 38.79865 -10.7161 2.715146 35.85281 -10.7161 2.715521 32.90698 -10.7161 2.715896 29.96115 -10.7161 2.716271 27.01531 -10.7161 2.716646 24.06948 -10.7161 2.717021 21.12365 -10.7161 2.717396 18.17781 -10.7161 2.717771 15.23198 -10.7161 2.718146 12.28615 -10.7161 2.718521 9.340312 -10.7161 2.718896 4.273158 -11.59478 5.710271 6.394479 -10.7161 2.719271 3.394479 -13.7161 5.710271 -71.94398 -10.50174 14.71372 -68.96321 -10.50174 14.71372 -65.98244 -10.50174 14.71372 -63.00167 -10.50174 14.71372 -60.0209 -10.50174 14.71372 -57.04014 -10.50174 14.71372 -54.05937 -10.50174 14.71372 -51.0786 -10.50174 14.71372 -48.09783 -10.50174 14.71372 -45.11706 -10.50174 14.71372 -42.13629 -10.50174 14.71372 -39.15552 -10.50174 14.71372 -36.17475 -10.50174 14.71372 -33.19398 -10.50174 14.71372 -30.21321 -10.50174 14.71372 -27.23244 -10.50174 14.71372 -24.25167 -10.50174 14.71372 -21.27091 -10.50174 14.71372 -18.29014 -10.50174 14.71372 -15.30937 -10.50174 14.71372 -12.3286 -10.50174 14.71372 -9.347829 -10.50174 14.71372 -6.36706 -10.50174 14.71372 -3.386291 -10.50174 14.71372 -0.4055214 -10.50174 14.71372 2.575248 -10.50174 14.71372 5.556017 -10.50174 14.71372 8.536786 -10.50174 14.71372 11.51756 -10.50174 14.71372 14.49832 -10.50174 14.71372 17.47909 -10.50174 14.71372 20.45986 -10.50174 14.71372 23.44063 -10.50174 14.71372 26.4214 -10.50174 14.71372 29.40217 -10.50174 14.71372 32.38294 -10.50174 14.71372 35.36371 -10.50174 14.71372 38.34448 -10.50174 14.71372 41.32525 -10.50174 14.71372 44.30602 -10.50174 14.71372 47.28679 -10.50174 14.71372 50.26756 -10.50174 14.71372 53.24833 -10.50174 14.71372 56.2291 -10.50174 14.71372 59.20986 -10.50174 14.71372 62.19063 -10.50174 14.71372 65.1714 -10.50174 14.71372 68.15218 -10.50174 14.71372 71.13294 -10.50174 14.71372 77.09448 -10.57322 11.71157 74.11372 -10.50174 14.71372 80.06599 -10.27199 9.209264 77.09448 -10.56132 12.21141 77.09448 -10.50174 14.71372 80.04888 -10.20259 12.21141 82.83159 -9.147245 12.21141 85.28087 -7.456628 12.21141 87.25439 -5.228983 12.21141 88.63746 -2.593777 12.21141 89.34969 0.2958447 12.21141 89.34969 3.271946 12.21141 88.63746 6.161568 12.21141 87.25439 8.796774 12.21141 85.28087 11.02442 12.21141 82.83159 12.71504 12.21141 80.04888 13.77038 12.21141 77.09448 14.06953 14.71372 77.09448 14.12911 12.21141 74.11372 14.06953 14.71372 74.11372 14.14101 11.71157 77.09448 14.14101 11.71157 80.06599 13.83978 9.209264 77.09448 14.20059 9.209264 82.86481 12.77833 9.209264 85.32827 11.07792 9.209264 87.31322 8.837379 9.209264 88.70429 6.186914 9.209264 89.42064 3.280562 9.209264 89.42064 0.2872287 9.209264 88.70429 -2.619123 9.209264 87.31322 -5.269589 9.209264 85.32827 -7.510131 9.209264 82.86481 -9.210538 9.209264 80.0831 13.90918 6.207115 79.26508 14.09399 5.710271 77.09448 14.2839 5.710271 77.09448 14.2839 2.710271 77.09448 14.27207 6.207115 74.11372 14.2839 5.710271 74.11372 14.2839 2.710271 81.36974 13.53005 5.710271 79.87599 13.97049 2.710271 82.89803 12.84162 6.207115 83.34448 12.60921 5.710271 82.51803 13.04601 2.710271 85.37567 11.13142 6.207115 85.12933 11.35945 5.710271 84.88811 11.55679 2.710271 86.67004 9.818741 5.710271 87.37205 8.877985 6.207115 87.9198 8.033895 5.710271 86.86738 9.577518 2.710271 88.77113 6.212262 6.207115 88.84064 6.059147 5.710271 88.35659 7.207442 2.710271 89.4916 3.289178 6.207115 89.40458 3.954498 5.710271 89.28108 4.565407 2.710271 89.59448 1.783895 5.710271 89.4916 0.2786127 6.207115 89.40458 -0.3867069 5.710271 89.59448 1.783895 2.710271 88.77113 -2.644471 6.207115 88.84064 -2.491356 5.710271 89.28108 -0.9976164 2.710271 87.9198 -4.466105 5.710271 88.35659 -3.639651 2.710271 87.37205 -5.310194 6.207115 86.67004 -6.25095 5.710271 86.86738 -6.009727 2.710271 85.37567 -7.563634 6.207115 85.12933 -7.79166 5.710271 82.89803 -9.27383 6.207115 83.34448 -9.041422 5.710271 84.88811 -7.988998 2.710271 81.36974 -9.962262 5.710271 82.51803 -9.478215 2.710271 77.09448 14.21249 8.709421 74.11372 14.21249 8.709421 71.13294 14.06953 14.71372 68.15218 14.06953 14.71372 65.1714 14.06953 14.71372 62.19063 14.06953 14.71372 59.20986 14.06953 14.71372 56.2291 14.06953 14.71372 53.24833 14.06953 14.71372 50.26756 14.06953 14.71372 47.28679 14.06953 14.71372 44.30602 14.06953 14.71372 41.32525 14.06953 14.71372 38.34448 14.06953 14.71372 35.36371 14.06953 14.71372 32.38294 14.06953 14.71372 29.40217 14.06953 14.71372 26.4214 14.06953 14.71372 23.44063 14.06953 14.71372 20.45986 14.06953 14.71372 17.47909 14.06953 14.71372 14.49832 14.06953 14.71372 11.51756 14.06953 14.71372 8.536786 14.06953 14.71372 5.556017 14.06953 14.71372 2.575248 14.06953 14.71372 -0.4055214 14.06953 14.71372 -3.386291 14.06953 14.71372 -6.36706 14.06953 14.71372 -9.347829 14.06953 14.71372 -12.3286 14.06953 14.71372 -15.30937 14.06953 14.71372 -18.29014 14.06953 14.71372 -21.27091 14.06953 14.71372 -24.25167 14.06953 14.71372 -27.23244 14.06953 14.71372 -30.21321 14.06953 14.71372 -33.19398 14.06953 14.71372 -36.17475 14.06953 14.71372 -39.15552 14.06953 14.71372 -42.13629 14.06953 14.71372 -45.11706 14.06953 14.71372 -48.09783 14.06953 14.71372 -51.0786 14.06953 14.71372 -54.05937 14.06953 14.71372 -57.04014 14.06953 14.71372 -60.0209 14.06953 14.71372 -63.00167 14.06953 14.71372 -65.98244 14.06953 14.71372 -68.96321 14.06953 14.71372 -71.94398 14.06953 14.71372 -71.94398 14.14101 11.71157 -68.96321 14.14101 11.71157 -65.98244 14.14101 11.71157 -63.00167 14.14101 11.71157 -60.0209 14.14101 11.71157 -57.04014 14.14101 11.71157 -54.05937 14.14101 11.71157 -51.0786 14.14101 11.71157 -48.09783 14.14101 11.71157 -45.11706 14.14101 11.71157 -42.13629 14.14101 11.71157 -39.15552 14.14101 11.71157 -36.17475 14.14101 11.71157 -33.19398 14.14101 11.71157 -30.21321 14.14101 11.71157 -27.23244 14.14101 11.71157 -24.25167 14.14101 11.71157 -21.27091 14.14101 11.71157 -18.29014 14.14101 11.71157 -15.30937 14.14101 11.71157 -12.3286 14.14101 11.71157 -9.347829 14.14101 11.71157 -6.36706 14.14101 11.71157 -3.386291 14.14101 11.71157 -0.4055214 14.14101 11.71157 2.575248 14.14101 11.71157 5.556017 14.14101 11.71157 8.536786 14.14101 11.71157 11.51756 14.14101 11.71157 14.49832 14.14101 11.71157 17.47909 14.14101 11.71157 20.45986 14.14101 11.71157 23.44063 14.14101 11.71157 26.4214 14.14101 11.71157 29.40217 14.14101 11.71157 32.38294 14.14101 11.71157 35.36371 14.14101 11.71157 38.34448 14.14101 11.71157 41.32525 14.14101 11.71157 44.30602 14.14101 11.71157 47.28679 14.14101 11.71157 50.26756 14.14101 11.71157 53.24833 14.14101 11.71157 56.2291 14.14101 11.71157 59.20986 14.14101 11.71157 62.19063 14.14101 11.71157 65.1714 14.14101 11.71157 68.15218 14.14101 11.71157 71.13294 14.14101 11.71157 -71.94398 14.21249 8.709421 -71.94398 14.2839 5.710271 -74.92475 14.2839 2.710271 -68.96321 14.21249 8.709421 -68.96321 14.2839 5.710271 -71.94398 14.2839 2.710271 -65.98244 14.21249 8.709421 -65.98244 14.2839 5.710271 -68.96321 14.2839 2.710271 -63.00167 14.21249 8.709421 -63.00167 14.2839 5.710271 -65.98244 14.2839 2.710271 -60.0209 14.21249 8.709421 -60.0209 14.2839 5.710271 -63.00167 14.2839 2.710271 -57.04014 14.21249 8.709421 -57.04014 14.2839 5.710271 -60.0209 14.2839 2.710271 -54.05937 14.21249 8.709421 -54.05937 14.2839 5.710271 -57.04014 14.2839 2.710271 -51.0786 14.21249 8.709421 -51.0786 14.2839 5.710271 -54.05937 14.2839 2.710271 -48.09783 14.21249 8.709421 -48.09783 14.2839 5.710271 -51.0786 14.2839 2.710271 -45.11706 14.21249 8.709421 -45.11706 14.2839 5.710271 -48.09783 14.2839 2.710271 -42.13629 14.21249 8.709421 -42.13629 14.2839 5.710271 -45.11706 14.2839 2.710271 -39.15552 14.21249 8.709421 -39.15552 14.2839 5.710271 -42.13629 14.2839 2.710271 -36.17475 14.21249 8.709421 -36.17475 14.2839 5.710271 -39.15552 14.2839 2.710271 -33.19398 14.21249 8.709421 -33.19398 14.2839 5.710271 -36.17475 14.2839 2.710271 -30.21321 14.21249 8.709421 -30.21321 14.2839 5.710271 -33.19398 14.2839 2.710271 -27.23244 14.21249 8.709421 -27.23244 14.2839 5.710271 -30.21321 14.2839 2.710271 -24.25167 14.21249 8.709421 -24.25167 14.2839 5.710271 -27.23244 14.2839 2.710271 -21.27091 14.21249 8.709421 -21.27091 14.2839 5.710271 -24.25167 14.2839 2.710271 -18.29014 14.21249 8.709421 -18.29014 14.2839 5.710271 -21.27091 14.2839 2.710271 -15.30937 14.21249 8.709421 -15.30937 14.2839 5.710271 -18.29014 14.2839 2.710271 -12.3286 14.21249 8.709421 -12.3286 14.2839 5.710271 -15.30937 14.2839 2.710271 -9.347829 14.21249 8.709421 -9.347829 14.2839 5.710271 -12.3286 14.2839 2.710271 -6.36706 14.21249 8.709421 -6.36706 14.2839 5.710271 -9.347829 14.2839 2.710271 -3.386291 14.21249 8.709421 -3.386291 14.2839 5.710271 -6.36706 14.2839 2.710271 -0.4055214 14.21249 8.709421 -0.4055214 14.2839 5.710271 -3.386291 14.2839 2.710271 2.575248 14.21249 8.709421 2.575248 14.2839 5.710271 -0.4055214 14.2839 2.710271 5.556017 14.21249 8.709421 5.556017 14.2839 5.710271 2.575248 14.2839 2.710271 8.536786 14.21249 8.709421 8.536786 14.2839 5.710271 5.556017 14.2839 2.710271 11.51756 14.21249 8.709421 11.51756 14.2839 5.710271 8.536786 14.2839 2.710271 14.49832 14.21249 8.709421 14.49832 14.2839 5.710271 11.51756 14.2839 2.710271 17.47909 14.21249 8.709421 17.47909 14.2839 5.710271 14.49832 14.2839 2.710271 20.45986 14.21249 8.709421 20.45986 14.2839 5.710271 17.47909 14.2839 2.710271 23.44063 14.21249 8.709421 23.44063 14.2839 5.710271 20.45986 14.2839 2.710271 26.4214 14.21249 8.709421 26.4214 14.2839 5.710271 23.44063 14.2839 2.710271 29.40217 14.21249 8.709421 29.40217 14.2839 5.710271 26.4214 14.2839 2.710271 32.38294 14.21249 8.709421 32.38294 14.2839 5.710271 29.40217 14.2839 2.710271 35.36371 14.21249 8.709421 35.36371 14.2839 5.710271 32.38294 14.2839 2.710271 38.34448 14.21249 8.709421 38.34448 14.2839 5.710271 35.36371 14.2839 2.710271 41.32525 14.21249 8.709421 41.32525 14.2839 5.710271 38.34448 14.2839 2.710271 44.30602 14.21249 8.709421 44.30602 14.2839 5.710271 41.32525 14.2839 2.710271 47.28679 14.21249 8.709421 47.28679 14.2839 5.710271 44.30602 14.2839 2.710271 50.26756 14.21249 8.709421 50.26756 14.2839 5.710271 47.28679 14.2839 2.710271 53.24833 14.21249 8.709421 53.24833 14.2839 5.710271 50.26756 14.2839 2.710271 56.2291 14.21249 8.709421 56.2291 14.2839 5.710271 53.24833 14.2839 2.710271 59.20986 14.21249 8.709421 59.20986 14.2839 5.710271 56.2291 14.2839 2.710271 62.19063 14.21249 8.709421 62.19063 14.2839 5.710271 59.20986 14.2839 2.710271 65.1714 14.21249 8.709421 65.1714 14.2839 5.710271 62.19063 14.2839 2.710271 68.15218 14.21249 8.709421 68.15218 14.2839 5.710271 65.1714 14.2839 2.710271 71.13294 14.21249 8.709421 71.13294 14.2839 5.710271 68.15218 14.2839 2.710271 71.13294 14.2839 2.710271 -80.07612 14.09399 -12.88973 -77.90552 14.2839 -12.30473 -77.90552 14.2839 -12.88973 -74.92475 14.2839 -12.30473 -81.02297 13.41839 -14.14576 -74.92475 14.2839 -12.88973 -77.90552 13.82881 -14.14576 -80.68703 13.97049 -12.30473 -77.90552 14.2839 -9.301729 -74.92475 14.2839 -9.301729 -82.18077 13.53005 -12.88973 -83.32906 13.04601 -12.30473 -80.68703 13.97049 -9.301729 -84.15552 12.60921 -12.88973 -85.69914 11.55679 -12.30473 -83.32906 13.04601 -9.301729 -87.48107 9.818741 -12.88973 -87.67841 9.577518 -12.30473 -85.69914 11.55679 -9.301729 -85.94036 11.35945 -12.88973 -88.73083 8.033895 -12.88973 -89.16763 7.207442 -12.30473 -87.67841 9.577518 -9.301729 -89.65167 6.059147 -12.88973 -90.09212 4.565407 -12.30473 -89.16763 7.207442 -9.301729 -90.40552 1.783895 -12.88973 -90.40552 1.783895 -12.30473 -90.09212 4.565407 -9.301729 -90.21561 3.954498 -12.88973 -90.21561 -0.3867069 -12.88973 -90.09212 -0.9976164 -12.30473 -90.40552 1.783895 -9.301729 -89.65167 -2.491356 -12.88973 -89.16763 -3.639651 -12.30473 -90.09212 -0.9976164 -9.301729 -88.73083 -4.466105 -12.88973 -87.67841 -6.009727 -12.30473 -89.16763 -3.639651 -9.301729 -85.94036 -7.79166 -12.88973 -85.69914 -7.988998 -12.30473 -87.67841 -6.009727 -9.301729 -87.48107 -6.25095 -12.88973 -84.15552 -9.041422 -12.88973 -83.32906 -9.478215 -12.30473 -85.69914 -7.988998 -9.301729 -82.18077 -9.962262 -12.88973 -80.68703 -10.4027 -12.30473 -83.32906 -9.478215 -9.301729 -77.90552 -10.7161 -12.88973 -77.90552 -10.7161 -12.30473 -80.68703 -10.4027 -9.301729 -80.07612 -10.5262 -12.88973 -74.90552 -10.7161 -12.88973 -77.90552 -10.7161 -9.301729 -75.0209 -10.7161 -12.30473 -77.90552 -10.26102 -14.14576 -75.0209 -9.694159 -15.7103 -81.02297 -9.850598 -14.14576 -83.92798 -8.647306 -14.14576 -86.42256 -6.733146 -14.14576 -88.33672 -4.238562 -14.14576 -89.54001 -1.333558 -14.14576 -89.95043 1.783895 -14.14576 -89.54001 4.901349 -14.14576 -88.33672 7.806353 -14.14576 -86.42256 10.30094 -14.14576 -83.92798 12.2151 -14.14576 -77.90552 -10.7161 -0.2927289 -74.93733 -10.7161 -0.2927289 -80.68703 -10.4027 -0.2927289 -83.32906 -9.478215 -0.2927289 -85.69914 -7.988998 -0.2927289 -87.67841 -6.009727 -0.2927289 -89.16763 -3.639651 -0.2927289 -90.09212 -0.9976164 -0.2927289 -90.40552 1.783895 -0.2927289 -90.09212 4.565407 -0.2927289 -89.16763 7.207442 -0.2927289 -87.67841 9.577518 -0.2927289 -85.69914 11.55679 -0.2927289 -83.32906 13.04601 -0.2927289 -80.68703 13.97049 -0.2927289 -77.90552 14.2839 -0.2927289 -80.68703 13.97049 -3.295729 -77.90552 14.2839 -3.295729 -74.92475 14.2839 -0.2927289 -77.90552 -10.7161 -3.295729 -74.93733 -10.7161 -3.295729 -80.68703 -10.4027 -3.295729 -83.32906 -9.478215 -3.295729 -85.69914 -7.988998 -3.295729 -87.67841 -6.009727 -3.295729 -89.16763 -3.639651 -3.295729 -90.09212 -0.9976164 -3.295729 -90.40552 1.783895 -3.295729 -90.09212 4.565407 -3.295729 -89.16763 7.207442 -3.295729 -87.67841 9.577518 -3.295729 -85.69914 11.55679 -3.295729 -83.32906 13.04601 -3.295729 -80.68703 13.97049 -6.298729 -77.90552 14.2839 -6.298729 -74.92475 14.2839 -3.295729 -77.90552 -10.7161 -6.298729 -74.93733 -10.7161 -6.298729 -80.68703 -10.4027 -6.298729 -83.32906 -9.478215 -6.298729 -85.69914 -7.988998 -6.298729 -87.67841 -6.009727 -6.298729 -89.16763 -3.639651 -6.298729 -90.09212 -0.9976164 -6.298729 -90.40552 1.783895 -6.298729 -90.09212 4.565407 -6.298729 -89.16763 7.207442 -6.298729 -87.67841 9.577518 -6.298729 -85.69914 11.55679 -6.298729 -83.32906 13.04601 -6.298729 -74.92475 14.2839 -6.298729 -75.0209 -10.7161 -9.301729 -71.94398 14.2839 -12.30473 -71.94398 14.2839 -12.88973 -74.92475 13.26195 -15.7103 -77.90552 13.26195 -15.7103 -68.96321 14.2839 -12.30473 -68.96321 14.2839 -12.88973 -71.94398 13.26195 -15.7103 -65.98244 14.2839 -12.30473 -65.98244 14.2839 -12.88973 -68.96321 13.26195 -15.7103 -63.00167 14.2839 -12.30473 -63.00167 14.2839 -12.88973 -65.98244 13.26195 -15.7103 -60.0209 14.2839 -12.30473 -60.0209 14.2839 -12.88973 -63.00167 13.26195 -15.7103 -57.04014 14.2839 -12.30473 -57.04014 14.2839 -12.88973 -60.0209 13.26195 -15.7103 -54.05937 14.2839 -12.30473 -54.05937 14.2839 -12.88973 -57.04014 13.26195 -15.7103 -51.0786 14.2839 -12.30473 -51.0786 14.2839 -12.88973 -54.05937 13.26195 -15.7103 -48.09783 14.2839 -12.30473 -48.09783 14.2839 -12.88973 -51.0786 13.26195 -15.7103 -45.11706 14.2839 -12.30473 -45.11706 14.2839 -12.88973 -48.09783 13.26195 -15.7103 -42.13629 14.2839 -12.30473 -42.13629 14.2839 -12.88973 -45.11706 13.26195 -15.7103 -39.15552 14.2839 -12.30473 -39.15552 14.2839 -12.88973 -42.13629 13.26195 -15.7103 -36.17475 14.2839 -12.30473 -36.17475 14.2839 -12.88973 -39.15552 13.26195 -15.7103 -33.19398 14.2839 -12.30473 -33.19398 14.2839 -12.88973 -36.17475 13.26195 -15.7103 -30.21321 14.2839 -12.30473 -30.21321 14.2839 -12.88973 -33.19398 13.26195 -15.7103 -27.23244 14.2839 -12.30473 -27.23244 14.2839 -12.88973 -30.21321 13.26195 -15.7103 -24.25167 14.2839 -12.30473 -24.25167 14.2839 -12.88973 -27.23244 13.26195 -15.7103 -21.27091 14.2839 -12.30473 -21.27091 14.2839 -12.88973 -24.25167 13.26195 -15.7103 -18.29014 14.2839 -12.30473 -18.29014 14.2839 -12.88973 -21.27091 13.26195 -15.7103 -15.30937 14.2839 -12.30473 -15.30937 14.2839 -12.88973 -18.29014 13.26195 -15.7103 -12.3286 14.2839 -12.30473 -12.3286 14.2839 -12.88973 -15.30937 13.26195 -15.7103 -9.347829 14.2839 -12.30473 -9.347829 14.2839 -12.88973 -12.3286 13.26195 -15.7103 -6.36706 14.2839 -12.30473 -6.36706 14.2839 -12.88973 -9.347829 13.26195 -15.7103 -3.386291 14.2839 -12.30473 -3.386291 14.2839 -12.88973 -6.36706 13.26195 -15.7103 -0.4055214 14.2839 -12.30473 -0.4055214 14.2839 -12.88973 -3.386291 13.26195 -15.7103 2.575248 14.2839 -12.30473 2.575248 14.2839 -12.88973 -0.4055214 13.26195 -15.7103 5.556017 14.2839 -12.30473 5.556017 14.2839 -12.88973 2.575248 13.26195 -15.7103 8.536786 14.2839 -12.30473 8.536786 14.2839 -12.88973 5.556017 13.26195 -15.7103 11.51756 14.2839 -12.30473 11.51756 14.2839 -12.88973 8.536786 13.26195 -15.7103 14.49832 14.2839 -12.30473 14.49832 14.2839 -12.88973 11.51756 13.26195 -15.7103 17.47909 14.2839 -12.30473 17.47909 14.2839 -12.88973 14.49832 13.26195 -15.7103 20.45986 14.2839 -12.30473 20.45986 14.2839 -12.88973 17.47909 13.26195 -15.7103 23.44063 14.2839 -12.30473 23.44063 14.2839 -12.88973 20.45986 13.26195 -15.7103 26.4214 14.2839 -12.30473 26.4214 14.2839 -12.88973 23.44063 13.26195 -15.7103 29.40217 14.2839 -12.30473 29.40217 14.2839 -12.88973 26.4214 13.26195 -15.7103 32.38294 14.2839 -12.30473 32.38294 14.2839 -12.88973 29.40217 13.26195 -15.7103 35.36371 14.2839 -12.30473 35.36371 14.2839 -12.88973 32.38294 13.26195 -15.7103 38.34448 14.2839 -12.30473 38.34448 14.2839 -12.88973 35.36371 13.26195 -15.7103 41.32525 14.2839 -12.30473 41.32525 14.2839 -12.88973 38.34448 13.26195 -15.7103 44.30602 14.2839 -12.30473 44.30602 14.2839 -12.88973 41.32525 13.26195 -15.7103 47.28679 14.2839 -12.30473 47.28679 14.2839 -12.88973 44.30602 13.26195 -15.7103 50.26756 14.2839 -12.30473 50.26756 14.2839 -12.88973 47.28679 13.26195 -15.7103 53.24833 14.2839 -12.30473 53.24833 14.2839 -12.88973 50.26756 13.26195 -15.7103 56.2291 14.2839 -12.30473 56.2291 14.2839 -12.88973 53.24833 13.26195 -15.7103 59.20986 14.2839 -12.30473 59.20986 14.2839 -12.88973 56.2291 13.26195 -15.7103 62.19063 14.2839 -12.30473 62.19063 14.2839 -12.88973 59.20986 13.26195 -15.7103 65.1714 14.2839 -12.30473 65.1714 14.2839 -12.88973 62.19063 13.26195 -15.7103 68.15218 14.2839 -12.30473 68.15218 14.2839 -12.88973 65.1714 13.26195 -15.7103 71.13294 14.2839 -12.30473 71.13294 14.2839 -12.88973 68.15218 13.26195 -15.7103 74.11372 14.2839 -12.30473 74.11372 14.2839 -12.88973 71.13294 13.26195 -15.7103 77.09448 14.2839 -12.30473 77.09448 14.2839 -12.88973 74.11372 13.26195 -15.7103 79.87599 13.97049 -12.30473 79.26508 14.09399 -12.88973 77.09448 13.82881 -14.14576 77.09448 14.2839 -9.301729 79.87599 13.97049 -9.301729 74.11372 14.2839 -9.301729 71.13294 14.2839 -9.301729 68.15218 14.2839 -9.301729 65.1714 14.2839 -9.301729 62.19063 14.2839 -9.301729 59.20986 14.2839 -9.301729 56.2291 14.2839 -9.301729 53.24833 14.2839 -9.301729 50.26756 14.2839 -9.301729 47.28679 14.2839 -9.301729 44.30602 14.2839 -9.301729 41.32525 14.2839 -9.301729 38.34448 14.2839 -9.301729 35.36371 14.2839 -9.301729 32.38294 14.2839 -9.301729 29.40217 14.2839 -9.301729 26.4214 14.2839 -9.301729 23.44063 14.2839 -9.301729 20.45986 14.2839 -9.301729 17.47909 14.2839 -9.301729 14.49832 14.2839 -9.301729 11.51756 14.2839 -9.301729 8.536786 14.2839 -9.301729 5.556017 14.2839 -9.301729 2.575248 14.2839 -9.301729 -0.4055214 14.2839 -9.301729 -3.386291 14.2839 -9.301729 -6.36706 14.2839 -9.301729 -9.347829 14.2839 -9.301729 -12.3286 14.2839 -9.301729 -15.30937 14.2839 -9.301729 -18.29014 14.2839 -9.301729 -21.27091 14.2839 -9.301729 -24.25167 14.2839 -9.301729 -27.23244 14.2839 -9.301729 -30.21321 14.2839 -9.301729 -33.19398 14.2839 -9.301729 -36.17475 14.2839 -9.301729 -39.15552 14.2839 -9.301729 -42.13629 14.2839 -9.301729 -45.11706 14.2839 -9.301729 -48.09783 14.2839 -9.301729 -51.0786 14.2839 -9.301729 -54.05937 14.2839 -9.301729 -57.04014 14.2839 -9.301729 -60.0209 14.2839 -9.301729 -63.00167 14.2839 -9.301729 -65.98244 14.2839 -9.301729 -68.96321 14.2839 -9.301729 -71.94398 14.2839 -9.301729 -71.94398 14.2839 -0.2927289 -68.96321 14.2839 -0.2927289 -65.98244 14.2839 -0.2927289 -63.00167 14.2839 -0.2927289 -60.0209 14.2839 -0.2927289 -57.04014 14.2839 -0.2927289 -54.05937 14.2839 -0.2927289 -51.0786 14.2839 -0.2927289 -48.09783 14.2839 -0.2927289 -45.11706 14.2839 -0.2927289 -42.13629 14.2839 -0.2927289 -39.15552 14.2839 -0.2927289 -36.17475 14.2839 -0.2927289 -33.19398 14.2839 -0.2927289 -30.21321 14.2839 -0.2927289 -27.23244 14.2839 -0.2927289 -24.25167 14.2839 -0.2927289 -21.27091 14.2839 -0.2927289 -18.29014 14.2839 -0.2927289 -15.30937 14.2839 -0.2927289 -12.3286 14.2839 -0.2927289 -9.347829 14.2839 -0.2927289 -6.36706 14.2839 -0.2927289 -3.386291 14.2839 -0.2927289 -0.4055214 14.2839 -0.2927289 2.575248 14.2839 -0.2927289 5.556017 14.2839 -0.2927289 8.536786 14.2839 -0.2927289 11.51756 14.2839 -0.2927289 14.49832 14.2839 -0.2927289 17.47909 14.2839 -0.2927289 20.45986 14.2839 -0.2927289 23.44063 14.2839 -0.2927289 26.4214 14.2839 -0.2927289 29.40217 14.2839 -0.2927289 32.38294 14.2839 -0.2927289 35.36371 14.2839 -0.2927289 38.34448 14.2839 -0.2927289 41.32525 14.2839 -0.2927289 44.30602 14.2839 -0.2927289 47.28679 14.2839 -0.2927289 50.26756 14.2839 -0.2927289 53.24833 14.2839 -0.2927289 56.2291 14.2839 -0.2927289 59.20986 14.2839 -0.2927289 62.19063 14.2839 -0.2927289 65.1714 14.2839 -0.2927289 68.15218 14.2839 -0.2927289 71.13294 14.2839 -0.2927289 74.11372 14.2839 -0.2927289 77.09448 14.2839 -0.2927289 74.11372 14.2839 -3.295729 77.09448 14.2839 -3.295729 79.87599 13.97049 -0.2927289 -71.94398 14.2839 -3.295729 -68.96321 14.2839 -3.295729 -65.98244 14.2839 -3.295729 -63.00167 14.2839 -3.295729 -60.0209 14.2839 -3.295729 -57.04014 14.2839 -3.295729 -54.05937 14.2839 -3.295729 -51.0786 14.2839 -3.295729 -48.09783 14.2839 -3.295729 -45.11706 14.2839 -3.295729 -42.13629 14.2839 -3.295729 -39.15552 14.2839 -3.295729 -36.17475 14.2839 -3.295729 -33.19398 14.2839 -3.295729 -30.21321 14.2839 -3.295729 -27.23244 14.2839 -3.295729 -24.25167 14.2839 -3.295729 -21.27091 14.2839 -3.295729 -18.29014 14.2839 -3.295729 -15.30937 14.2839 -3.295729 -12.3286 14.2839 -3.295729 -9.347829 14.2839 -3.295729 -6.36706 14.2839 -3.295729 -3.386291 14.2839 -3.295729 -0.4055214 14.2839 -3.295729 2.575248 14.2839 -3.295729 5.556017 14.2839 -3.295729 8.536786 14.2839 -3.295729 11.51756 14.2839 -3.295729 14.49832 14.2839 -3.295729 17.47909 14.2839 -3.295729 20.45986 14.2839 -3.295729 23.44063 14.2839 -3.295729 26.4214 14.2839 -3.295729 29.40217 14.2839 -3.295729 32.38294 14.2839 -3.295729 35.36371 14.2839 -3.295729 38.34448 14.2839 -3.295729 41.32525 14.2839 -3.295729 44.30602 14.2839 -3.295729 47.28679 14.2839 -3.295729 50.26756 14.2839 -3.295729 53.24833 14.2839 -3.295729 56.2291 14.2839 -3.295729 59.20986 14.2839 -3.295729 62.19063 14.2839 -3.295729 65.1714 14.2839 -3.295729 68.15218 14.2839 -3.295729 71.13294 14.2839 -3.295729 74.11372 14.2839 -6.298729 77.09448 14.2839 -6.298729 79.87599 13.97049 -3.295729 -71.94398 14.2839 -6.298729 -68.96321 14.2839 -6.298729 -65.98244 14.2839 -6.298729 -63.00167 14.2839 -6.298729 -60.0209 14.2839 -6.298729 -57.04014 14.2839 -6.298729 -54.05937 14.2839 -6.298729 -51.0786 14.2839 -6.298729 -48.09783 14.2839 -6.298729 -45.11706 14.2839 -6.298729 -42.13629 14.2839 -6.298729 -39.15552 14.2839 -6.298729 -36.17475 14.2839 -6.298729 -33.19398 14.2839 -6.298729 -30.21321 14.2839 -6.298729 -27.23244 14.2839 -6.298729 -24.25167 14.2839 -6.298729 -21.27091 14.2839 -6.298729 -18.29014 14.2839 -6.298729 -15.30937 14.2839 -6.298729 -12.3286 14.2839 -6.298729 -9.347829 14.2839 -6.298729 -6.36706 14.2839 -6.298729 -3.386291 14.2839 -6.298729 -0.4055214 14.2839 -6.298729 2.575248 14.2839 -6.298729 5.556017 14.2839 -6.298729 8.536786 14.2839 -6.298729 11.51756 14.2839 -6.298729 14.49832 14.2839 -6.298729 17.47909 14.2839 -6.298729 20.45986 14.2839 -6.298729 23.44063 14.2839 -6.298729 26.4214 14.2839 -6.298729 29.40217 14.2839 -6.298729 32.38294 14.2839 -6.298729 35.36371 14.2839 -6.298729 38.34448 14.2839 -6.298729 41.32525 14.2839 -6.298729 44.30602 14.2839 -6.298729 47.28679 14.2839 -6.298729 50.26756 14.2839 -6.298729 53.24833 14.2839 -6.298729 56.2291 14.2839 -6.298729 59.20986 14.2839 -6.298729 62.19063 14.2839 -6.298729 65.1714 14.2839 -6.298729 68.15218 14.2839 -6.298729 71.13294 14.2839 -6.298729 79.87599 13.97049 -6.298729 79.26508 -10.5262 -12.88973 77.09448 -10.7161 -12.30473 77.09448 -10.7161 -12.88973 74.20987 -10.7161 -12.30473 80.21194 -9.850598 -14.14576 74.09448 -10.7161 -12.88973 77.09448 -10.26102 -14.14576 79.87599 -10.4027 -12.30473 77.09448 -10.7161 -9.301729 74.20987 -10.7161 -9.301729 81.36974 -9.962262 -12.88973 82.51803 -9.478215 -12.30473 79.87599 -10.4027 -9.301729 83.34448 -9.041422 -12.88973 84.88811 -7.988998 -12.30473 82.51803 -9.478215 -9.301729 86.67004 -6.25095 -12.88973 86.86738 -6.009727 -12.30473 84.88811 -7.988998 -9.301729 85.12933 -7.79166 -12.88973 87.9198 -4.466105 -12.88973 88.35659 -3.639651 -12.30473 86.86738 -6.009727 -9.301729 88.84064 -2.491356 -12.88973 89.28108 -0.9976164 -12.30473 88.35659 -3.639651 -9.301729 89.59448 1.783895 -12.88973 89.59448 1.783895 -12.30473 89.28108 -0.9976164 -9.301729 89.40458 -0.3867069 -12.88973 89.40458 3.954498 -12.88973 89.28108 4.565407 -12.30473 89.59448 1.783895 -9.301729 88.84064 6.059147 -12.88973 88.35659 7.207442 -12.30473 89.28108 4.565407 -9.301729 87.9198 8.033895 -12.88973 86.86738 9.577518 -12.30473 88.35659 7.207442 -9.301729 85.12933 11.35945 -12.88973 84.88811 11.55679 -12.30473 86.86738 9.577518 -9.301729 86.67004 9.818741 -12.88973 83.34448 12.60921 -12.88973 82.51803 13.04601 -12.30473 84.88811 11.55679 -9.301729 81.36974 13.53005 -12.88973 82.51803 13.04601 -9.301729 80.21194 13.41839 -14.14576 83.11694 12.2151 -14.14576 85.61153 10.30094 -14.14576 87.52569 7.806353 -14.14576 88.72897 4.901349 -14.14576 89.1394 1.783895 -14.14576 88.72897 -1.333558 -14.14576 87.52569 -4.238562 -14.14576 85.61153 -6.733146 -14.14576 83.11694 -8.647306 -14.14576 82.51803 13.04601 -0.2927289 84.88811 11.55679 -0.2927289 86.86738 9.577518 -0.2927289 88.35659 7.207442 -0.2927289 89.28108 4.565407 -0.2927289 89.59448 1.783895 -0.2927289 89.28108 -0.9976164 -0.2927289 88.35659 -3.639651 -0.2927289 86.86738 -6.009727 -0.2927289 84.88811 -7.988998 -0.2927289 82.51803 -9.478215 -0.2927289 79.87599 -10.4027 -0.2927289 77.09448 -10.7161 -0.2927289 79.87599 -10.4027 -3.295729 77.09448 -10.7161 -3.295729 74.14865 -10.7161 -0.2923541 82.51803 13.04601 -3.295729 84.88811 11.55679 -3.295729 86.86738 9.577518 -3.295729 88.35659 7.207442 -3.295729 89.28108 4.565407 -3.295729 89.59448 1.783895 -3.295729 89.28108 -0.9976164 -3.295729 88.35659 -3.639651 -3.295729 86.86738 -6.009727 -3.295729 84.88811 -7.988998 -3.295729 82.51803 -9.478215 -3.295729 79.87599 -10.4027 -6.298729 77.09448 -10.7161 -6.298729 74.14865 -10.7161 -3.295354 82.51803 13.04601 -6.298729 84.88811 11.55679 -6.298729 86.86738 9.577518 -6.298729 88.35659 7.207442 -6.298729 89.28108 4.565407 -6.298729 89.59448 1.783895 -6.298729 89.28108 -0.9976164 -6.298729 88.35659 -3.639651 -6.298729 86.86738 -6.009727 -6.298729 84.88811 -7.988998 -6.298729 82.51803 -9.478215 -6.298729 74.14865 -10.7161 -6.298354 -3.105521 -10.7161 -3.286729 -2.905521 -10.7161 -5.789729 -0.4055214 -10.7161 -5.789729 -1.996151 -9.806734 -5.789729 -0.4055214 -10.7161 -3.286729 -0.4055214 -13.61132 -6.289729 -0.4055214 -10.7161 -6.289729 2.094479 -10.7161 -7.539729 -0.4055214 -10.4661 -5.789729 2.094479 -10.7161 -5.789729 -2.905521 -10.7161 -6.298729 -2.905521 -8.216105 -5.789729 -5.805521 -10.7161 -3.286729 -5.805521 -10.7161 -6.289729 -2.905521 -10.7161 -9.301729 -2.905521 -8.216105 -8.589729 -5.805521 -13.40191 -3.286729 -5.805521 -10.7161 -9.289729 -2.22581 -9.538621 -14.79573 -1.10081 -10.35598 -14.79573 -2.22581 -9.538621 -11.79273 -5.805521 -13.61132 -6.289729 -5.805521 -10.7161 -0.2837291 -5.805521 -13.40492 -0.2837291 -3.105521 -10.7161 -0.2837291 -0.4055214 -10.7161 -0.2837291 -0.4055214 -13.40191 -3.286729 -5.790137 -10.7161 -12.30473 -5.905521 -10.7161 -12.88973 -2.905521 -10.7161 -12.88973 -2.905521 -9.694159 -15.7103 -2.905521 -10.7161 -12.30473 -2.905521 -8.216105 -11.79273 -2.905521 -8.216105 -14.18973 -8.674752 -10.7161 -12.30473 -8.905521 -10.7161 -12.88973 -8.674752 -9.694159 -15.7103 -5.790137 -9.694159 -15.7103 -11.55937 -10.7161 -12.30473 -11.90552 -10.7161 -12.88973 -11.55937 -9.694159 -15.7103 -14.44398 -10.7161 -12.30473 -14.90552 -10.7161 -12.88973 -14.44398 -9.694159 -15.7103 -17.3286 -10.7161 -12.30473 -17.90552 -10.7161 -12.88973 -17.3286 -9.694159 -15.7103 -20.21321 -10.7161 -12.30473 -20.90552 -10.7161 -12.88973 -20.21321 -9.694159 -15.7103 -23.09783 -10.7161 -12.30473 -23.90552 -10.7161 -12.88973 -23.09783 -9.694159 -15.7103 -25.98244 -10.7161 -12.30473 -26.90552 -10.7161 -12.88973 -25.98244 -9.694159 -15.7103 -28.86706 -10.7161 -12.30473 -29.90552 -10.7161 -12.88973 -28.86706 -9.694159 -15.7103 -31.75167 -10.7161 -12.30473 -32.90552 -10.7161 -12.88973 -31.75167 -9.694159 -15.7103 -34.63629 -10.7161 -12.30473 -35.90552 -10.7161 -12.88973 -34.63629 -9.694159 -15.7103 -37.5209 -10.7161 -12.30473 -38.90552 -10.7161 -12.88973 -37.5209 -9.694159 -15.7103 -40.40552 -10.7161 -12.30473 -41.90552 -10.7161 -12.88973 -40.40552 -9.694159 -15.7103 -43.29014 -10.7161 -12.30473 -44.90552 -10.7161 -12.88973 -43.29014 -9.694159 -15.7103 -46.17475 -10.7161 -12.30473 -47.90552 -10.7161 -12.88973 -46.17475 -9.694159 -15.7103 -49.05937 -10.7161 -12.30473 -50.90552 -10.7161 -12.88973 -49.05937 -9.694159 -15.7103 -51.94398 -10.7161 -12.30473 -53.90552 -10.7161 -12.88973 -51.94398 -9.694159 -15.7103 -54.8286 -10.7161 -12.30473 -56.90552 -10.7161 -12.88973 -54.8286 -9.694159 -15.7103 -57.71321 -10.7161 -12.30473 -59.90552 -10.7161 -12.88973 -57.71321 -9.694159 -15.7103 -60.59783 -10.7161 -12.30473 -62.90552 -10.7161 -12.88973 -60.59783 -9.694159 -15.7103 -63.48244 -10.7161 -12.30473 -65.90552 -10.7161 -12.88973 -63.48244 -9.694159 -15.7103 -66.36706 -10.7161 -12.30473 -68.90552 -10.7161 -12.88973 -66.36706 -9.694159 -15.7103 -69.25167 -10.7161 -12.30473 -71.90552 -10.7161 -12.88973 -69.25167 -9.694159 -15.7103 -72.13628 -10.7161 -12.30473 -72.13628 -9.694159 -15.7103 -72.13628 -10.7161 -9.301729 -69.25167 -10.7161 -9.301729 -66.36706 -10.7161 -9.301729 -63.48244 -10.7161 -9.301729 -60.59783 -10.7161 -9.301729 -57.71321 -10.7161 -9.301729 -54.8286 -10.7161 -9.301729 -51.94398 -10.7161 -9.301729 -49.05937 -10.7161 -9.301729 -46.17475 -10.7161 -9.301729 -43.29014 -10.7161 -9.301729 -40.40552 -10.7161 -9.301729 -37.5209 -10.7161 -9.301729 -34.63629 -10.7161 -9.301729 -31.75167 -10.7161 -9.301729 -28.86706 -10.7161 -9.301729 -25.98244 -10.7161 -9.301729 -23.09783 -10.7161 -9.301729 -20.21321 -10.7161 -9.301729 -17.3286 -10.7161 -9.301729 -14.44398 -10.7161 -9.301729 -11.55937 -10.7161 -9.301729 -8.674752 -10.7161 -9.301729 -2.905521 -8.216105 -11.38973 -2.905521 -8.216105 -8.789729 -71.96915 -10.7161 -6.298729 -69.00097 -10.7161 -6.298729 -66.03279 -10.7161 -6.298729 -63.06461 -10.7161 -6.298729 -60.09643 -10.7161 -6.298729 -57.12825 -10.7161 -6.298729 -54.16007 -10.7161 -6.298729 -51.19189 -10.7161 -6.298729 -48.2237 -10.7161 -6.298729 -45.25552 -10.7161 -6.298729 -42.28734 -10.7161 -6.298729 -39.31916 -10.7161 -6.298729 -36.35098 -10.7161 -6.298729 -33.38279 -10.7161 -6.298729 -30.41461 -10.7161 -6.298729 -27.44643 -10.7161 -6.298729 -24.47825 -10.7161 -6.298729 -21.51007 -10.7161 -6.298729 -18.54189 -10.7161 -6.298729 -15.5737 -10.7161 -6.298729 -12.60552 -10.7161 -9.289729 -10.33885 -10.7161 -9.289729 -8.072187 -10.7161 -9.289729 0.2897669 -10.35598 -14.79573 -1.10081 -10.35598 -11.79273 -71.96915 -10.7161 -3.295729 -69.00097 -10.7161 -3.295729 -66.03279 -10.7161 -3.295729 -63.06461 -10.7161 -3.295729 -60.09643 -10.7161 -3.295729 -57.12825 -10.7161 -3.295729 -54.16007 -10.7161 -3.295729 -51.19189 -10.7161 -3.295729 -48.2237 -10.7161 -3.295729 -45.25552 -10.7161 -3.295729 -42.28734 -10.7161 -3.295729 -39.31916 -10.7161 -3.295729 -36.35098 -10.7161 -3.295729 -33.38279 -10.7161 -3.295729 -30.41461 -10.7161 -3.295729 -27.44643 -10.7161 -3.295729 -24.47825 -10.7161 -3.295729 -21.51007 -10.7161 -3.295729 -18.54189 -10.7161 -3.295729 -12.60552 -10.7161 -6.298729 -15.5737 -10.7161 -3.295729 -10.4842 -11.59478 -9.289729 -12.60552 -10.7161 -3.295729 -11.10552 -11.11803 -6.298729 -9.657963 -13.15834 -9.289729 -7.809696 -13.2131 -9.289729 -5.805521 -13.2131 -9.289729 -12.60552 -10.7161 -0.2927289 -11.10552 -11.11803 -0.2927289 -15.5737 -10.7161 -0.2927289 -18.54189 -10.7161 -0.2927289 -21.51007 -10.7161 -0.2927289 -24.47825 -10.7161 -0.2927289 -27.44643 -10.7161 -0.2927289 -30.41461 -10.7161 -0.2927289 -33.38279 -10.7161 -0.2927289 -36.35098 -10.7161 -0.2927289 -39.31916 -10.7161 -0.2927289 -42.28734 -10.7161 -0.2927289 -45.25552 -10.7161 -0.2927289 -48.2237 -10.7161 -0.2927289 -51.19189 -10.7161 -0.2927289 -54.16007 -10.7161 -0.2927289 -57.12825 -10.7161 -0.2927289 -60.09643 -10.7161 -0.2927289 -63.06461 -10.7161 -0.2927289 -66.03279 -10.7161 -0.2927289 -69.00097 -10.7161 -0.2927289 -71.96915 -10.7161 -0.2927289 -11.10552 -11.11803 -3.295729 -0.4055214 -13.40492 -0.2837291 -5.805521 -13.60952 2.719271 5.094479 -10.7161 -12.88973 2.094479 -10.7161 -12.30473 2.094479 -10.7161 -12.88973 2.094479 -8.216105 -14.18973 4.979094 -9.694159 -15.7103 2.094479 -9.694159 -15.7103 2.094479 -8.216105 -14.79573 4.979094 -10.7161 -12.30473 2.094479 -10.7161 -9.289729 2.094479 -8.216105 -11.79273 7.863709 -10.7161 -12.30473 4.979094 -10.7161 -9.301729 8.094479 -10.7161 -12.88973 10.74832 -10.7161 -12.30473 7.863709 -10.7161 -9.301729 11.09448 -10.7161 -12.88973 13.63294 -10.7161 -12.30473 10.74832 -10.7161 -9.301729 14.09448 -10.7161 -12.88973 16.51756 -10.7161 -12.30473 13.63294 -10.7161 -9.301729 17.09448 -10.7161 -12.88973 19.40217 -10.7161 -12.30473 16.51756 -10.7161 -9.301729 20.09448 -10.7161 -12.88973 22.28679 -10.7161 -12.30473 19.40217 -10.7161 -9.301729 23.09448 -10.7161 -12.88973 25.1714 -10.7161 -12.30473 22.28679 -10.7161 -9.301729 26.09448 -10.7161 -12.88973 28.05602 -10.7161 -12.30473 25.1714 -10.7161 -9.301729 29.09448 -10.7161 -12.88973 30.94063 -10.7161 -12.30473 28.05602 -10.7161 -9.301729 32.09448 -10.7161 -12.88973 33.82525 -10.7161 -12.30473 30.94063 -10.7161 -9.301729 35.09448 -10.7161 -12.88973 36.70986 -10.7161 -12.30473 33.82525 -10.7161 -9.301729 38.09448 -10.7161 -12.88973 39.59448 -10.7161 -12.30473 36.70986 -10.7161 -9.301729 41.09448 -10.7161 -12.88973 42.4791 -10.7161 -12.30473 39.59448 -10.7161 -9.301729 44.09448 -10.7161 -12.88973 45.36371 -10.7161 -12.30473 42.4791 -10.7161 -9.301729 47.09448 -10.7161 -12.88973 48.24833 -10.7161 -12.30473 45.36371 -10.7161 -9.301729 50.09448 -10.7161 -12.88973 51.13294 -10.7161 -12.30473 48.24833 -10.7161 -9.301729 53.09448 -10.7161 -12.88973 54.01756 -10.7161 -12.30473 51.13294 -10.7161 -9.301729 56.09448 -10.7161 -12.88973 56.90217 -10.7161 -12.30473 54.01756 -10.7161 -9.301729 59.09448 -10.7161 -12.88973 59.78679 -10.7161 -12.30473 56.90217 -10.7161 -9.301729 62.09448 -10.7161 -12.88973 62.6714 -10.7161 -12.30473 59.78679 -10.7161 -9.301729 65.09448 -10.7161 -12.88973 65.55602 -10.7161 -12.30473 62.6714 -10.7161 -9.301729 68.09448 -10.7161 -12.88973 68.44064 -10.7161 -12.30473 65.55602 -10.7161 -9.301729 71.09448 -10.7161 -12.88973 71.32525 -10.7161 -12.30473 68.44064 -10.7161 -9.301729 71.32525 -10.7161 -9.301729 71.32525 -9.694159 -15.7103 77.09448 -9.694159 -15.7103 74.20987 -9.694159 -15.7103 68.44064 -9.694159 -15.7103 65.55602 -9.694159 -15.7103 62.6714 -9.694159 -15.7103 59.78679 -9.694159 -15.7103 56.90217 -9.694159 -15.7103 54.01756 -9.694159 -15.7103 51.13294 -9.694159 -15.7103 48.24833 -9.694159 -15.7103 45.36371 -9.694159 -15.7103 42.4791 -9.694159 -15.7103 39.59448 -9.694159 -15.7103 36.70986 -9.694159 -15.7103 33.82525 -9.694159 -15.7103 30.94063 -9.694159 -15.7103 28.05602 -9.694159 -15.7103 25.1714 -9.694159 -15.7103 22.28679 -9.694159 -15.7103 19.40217 -9.694159 -15.7103 16.51756 -9.694159 -15.7103 13.63294 -9.694159 -15.7103 10.74832 -9.694159 -15.7103 7.863709 -9.694159 -15.7103 1.414767 -9.538621 -14.79573 0.2897669 -10.35598 -11.79273 2.094479 -8.216105 -11.38973 6.394479 -10.7161 -9.289729 4.244479 -10.7161 -9.289729 9.340312 -10.7161 -6.290104 6.394479 -10.7161 -6.289729 12.28615 -10.7161 -6.290479 15.23198 -10.7161 -6.290854 18.17781 -10.7161 -6.291229 21.12365 -10.7161 -6.291604 24.06948 -10.7161 -6.291979 27.01531 -10.7161 -6.292355 29.96115 -10.7161 -6.292729 32.90698 -10.7161 -6.293104 35.85281 -10.7161 -6.293479 38.79865 -10.7161 -6.293854 41.74448 -10.7161 -6.29423 44.69031 -10.7161 -6.294604 47.63615 -10.7161 -6.294979 50.58198 -10.7161 -6.295354 53.52781 -10.7161 -6.295729 56.47364 -10.7161 -6.296104 59.41948 -10.7161 -6.296479 62.36531 -10.7161 -6.296854 65.31115 -10.7161 -6.297229 68.25698 -10.7161 -6.297605 71.20281 -10.7161 -6.297979 3.44692 -13.15834 -9.289729 1.598653 -13.2131 -9.289729 -0.4055214 -13.2131 -9.289729 -0.4055214 -10.7161 -9.289729 2.094479 -8.216105 -8.789729 4.273158 -11.59478 -9.289729 4.894479 -11.11803 -6.289729 6.394479 -10.7161 -3.286729 4.894479 -11.11803 -3.286729 9.340312 -10.7161 -3.287104 12.28615 -10.7161 -3.287479 15.23198 -10.7161 -3.287854 18.17781 -10.7161 -3.288229 21.12365 -10.7161 -3.288604 24.06948 -10.7161 -3.28898 27.01531 -10.7161 -3.289354 29.96115 -10.7161 -3.289729 32.90698 -10.7161 -3.290104 35.85281 -10.7161 -3.290479 38.79865 -10.7161 -3.290854 41.74448 -10.7161 -3.291229 44.69031 -10.7161 -3.291604 47.63615 -10.7161 -3.291979 50.58198 -10.7161 -3.292355 53.52781 -10.7161 -3.292729 56.47364 -10.7161 -3.293104 59.41948 -10.7161 -3.293479 62.36531 -10.7161 -3.293854 65.31115 -10.7161 -3.29423 68.25698 -10.7161 -3.294604 71.20281 -10.7161 -3.294979 6.394479 -10.7161 -0.2837291 4.894479 -11.11803 -0.2837291 9.340312 -10.7161 -0.2841043 12.28615 -10.7161 -0.2844791 15.23198 -10.7161 -0.2848539 18.17781 -10.7161 -0.2852292 21.12365 -10.7161 -0.285604 24.06948 -10.7161 -0.2859793 27.01531 -10.7161 -0.2863541 29.96115 -10.7161 -0.2867293 32.90698 -10.7161 -0.2871041 35.85281 -10.7161 -0.2874789 38.79865 -10.7161 -0.2878542 41.74448 -10.7161 -0.288229 44.69031 -10.7161 -0.2886043 47.63615 -10.7161 -0.2889791 50.58198 -10.7161 -0.2893543 53.52781 -10.7161 -0.2897291 56.47364 -10.7161 -0.2901039 59.41948 -10.7161 -0.2904792 62.36531 -10.7161 -0.290854 65.31115 -10.7161 -0.2912292 68.25698 -10.7161 -0.291604 71.20281 -10.7161 -0.2919793 4.894479 -11.11803 2.719271 -1.890168 -5.216105 -19.78973 -2.172488 -6.447845 -19.78973 -2.905521 -8.216105 -19.78973 -2.905521 -8.216105 -17.79873 -4.859461 -5.216105 -19.78973 -5.905521 -8.216105 -19.78973 -5.790137 -8.67119 -18.5337 -2.905521 -8.67119 -18.5337 -0.4055214 -5.716492 -19.78973 -1.178064 -5.838463 -17.79873 -2.428064 -6.746641 -17.79873 1.079125 -5.216105 -19.78973 1.361445 -6.447845 -19.78973 0.3670211 -5.838463 -17.79873 4.048419 -5.216105 -19.78973 2.094479 -8.216105 -19.78973 1.617021 -6.746641 -17.79873 5.094479 -8.216105 -19.78973 2.094479 -8.67119 -18.5337 2.094479 -8.216105 -17.79873 7.017712 -5.216105 -19.78973 8.094479 -8.216105 -19.78973 7.863709 -8.67119 -18.5337 4.979094 -8.67119 -18.5337 9.987005 -5.216105 -19.78973 11.09448 -8.216105 -19.78973 10.74832 -8.67119 -18.5337 12.9563 -5.216105 -19.78973 14.09448 -8.216105 -19.78973 13.63294 -8.67119 -18.5337 15.92559 -5.216105 -19.78973 17.09448 -8.216105 -19.78973 16.51756 -8.67119 -18.5337 18.89488 -5.216105 -19.78973 20.09448 -8.216105 -19.78973 19.40217 -8.67119 -18.5337 21.86418 -5.216105 -19.78973 23.09448 -8.216105 -19.78973 22.28679 -8.67119 -18.5337 24.83347 -5.216105 -19.78973 26.09448 -8.216105 -19.78973 25.1714 -8.67119 -18.5337 27.80276 -5.216105 -19.78973 29.09448 -8.216105 -19.78973 28.05602 -8.67119 -18.5337 30.77206 -5.216105 -19.78973 32.09448 -8.216105 -19.78973 30.94063 -8.67119 -18.5337 33.74135 -5.216105 -19.78973 35.09448 -8.216105 -19.78973 33.82525 -8.67119 -18.5337 36.71064 -5.216105 -19.78973 38.09448 -8.216105 -19.78973 36.70986 -8.67119 -18.5337 39.67994 -5.216105 -19.78973 41.09448 -8.216105 -19.78973 39.59448 -8.67119 -18.5337 42.64923 -5.216105 -19.78973 44.09448 -8.216105 -19.78973 42.4791 -8.67119 -18.5337 45.61852 -5.216105 -19.78973 47.09448 -8.216105 -19.78973 45.36371 -8.67119 -18.5337 48.58782 -5.216105 -19.78973 50.09448 -8.216105 -19.78973 48.24833 -8.67119 -18.5337 51.55711 -5.216105 -19.78973 53.09448 -8.216105 -19.78973 51.13294 -8.67119 -18.5337 54.52641 -5.216105 -19.78973 56.09448 -8.216105 -19.78973 54.01756 -8.67119 -18.5337 57.4957 -5.216105 -19.78973 59.09448 -8.216105 -19.78973 56.90217 -8.67119 -18.5337 60.46499 -5.216105 -19.78973 62.09448 -8.216105 -19.78973 59.78679 -8.67119 -18.5337 63.43428 -5.216105 -19.78973 65.09448 -8.216105 -19.78973 62.6714 -8.67119 -18.5337 66.40358 -5.216105 -19.78973 68.09448 -8.216105 -19.78973 65.55602 -8.67119 -18.5337 69.37287 -5.216105 -19.78973 71.09448 -8.216105 -19.78973 68.44064 -8.67119 -18.5337 72.34217 -5.216105 -19.78973 74.09448 -8.216105 -19.78973 71.32525 -8.67119 -18.5337 75.31146 -5.216105 -19.78973 77.09448 -8.216105 -19.78973 74.20987 -8.67119 -18.5337 78.28075 -5.216105 -19.78973 79.68094 -7.875639 -19.78973 77.09448 -8.67119 -18.5337 81.25005 -5.216105 -19.78973 82.09303 -6.876654 -19.78973 79.94717 -8.862487 -16.96916 77.09448 -9.23805 -16.96916 84.22823 -5.223097 -19.78973 84.16513 -5.286754 -19.78973 82.60545 -7.76139 -16.96916 84.88818 -6.009798 -16.96916 83.04311 -2.213105 -19.78973 86.22995 -2.28312 -19.78973 85.75504 -3.214658 -19.78973 80.0628 -2.213105 -19.78973 77.08249 -2.213105 -19.78973 74.10218 -2.213105 -19.78973 71.12187 -2.213105 -19.78973 68.14157 -2.213105 -19.78973 65.16126 -2.213105 -19.78973 62.18095 -2.213105 -19.78973 59.20064 -2.213105 -19.78973 56.22033 -2.213105 -19.78973 53.24002 -2.213105 -19.78973 50.25972 -2.213105 -19.78973 47.27941 -2.213105 -19.78973 44.2991 -2.213105 -19.78973 41.31879 -2.213105 -19.78973 38.33848 -2.213105 -19.78973 35.35817 -2.213105 -19.78973 32.37787 -2.213105 -19.78973 29.39756 -2.213105 -19.78973 26.41725 -2.213105 -19.78973 23.43694 -2.213105 -19.78973 20.45663 -2.213105 -19.78973 17.47633 -2.213105 -19.78973 14.49602 -2.213105 -19.78973 11.51571 -2.213105 -19.78973 8.535402 -2.213105 -19.78973 5.555095 -2.213105 -19.78973 2.574787 -2.213105 -19.78973 -0.4055214 -2.213105 -19.78973 -3.385829 -2.213105 -19.78973 -7.828754 -5.216105 -19.78973 -6.366138 -2.213105 -19.78973 -8.905521 -8.216105 -19.78973 -10.79805 -5.216105 -19.78973 -9.346445 -2.213105 -19.78973 -11.90552 -8.216105 -19.78973 -13.76734 -5.216105 -19.78973 -12.32675 -2.213105 -19.78973 -14.90552 -8.216105 -19.78973 -16.73664 -5.216105 -19.78973 -15.30706 -2.213105 -19.78973 -17.90552 -8.216105 -19.78973 -19.70593 -5.216105 -19.78973 -18.28737 -2.213105 -19.78973 -20.90552 -8.216105 -19.78973 -22.67522 -5.216105 -19.78973 -21.26768 -2.213105 -19.78973 -23.90552 -8.216105 -19.78973 -25.64451 -5.216105 -19.78973 -24.24799 -2.213105 -19.78973 -26.90552 -8.216105 -19.78973 -28.61381 -5.216105 -19.78973 -27.22829 -2.213105 -19.78973 -29.90552 -8.216105 -19.78973 -31.5831 -5.216105 -19.78973 -30.2086 -2.213105 -19.78973 -32.90552 -8.216105 -19.78973 -34.55239 -5.216105 -19.78973 -33.18891 -2.213105 -19.78973 -35.90552 -8.216105 -19.78973 -37.52169 -5.216105 -19.78973 -36.16922 -2.213105 -19.78973 -38.90552 -8.216105 -19.78973 -40.49098 -5.216105 -19.78973 -39.14952 -2.213105 -19.78973 -41.90552 -8.216105 -19.78973 -43.46027 -5.216105 -19.78973 -42.12983 -2.213105 -19.78973 -44.90552 -8.216105 -19.78973 -46.42957 -5.216105 -19.78973 -45.11014 -2.213105 -19.78973 -47.90552 -8.216105 -19.78973 -49.39886 -5.216105 -19.78973 -48.09045 -2.213105 -19.78973 -50.90552 -8.216105 -19.78973 -52.36815 -5.216105 -19.78973 -51.07076 -2.213105 -19.78973 -53.90552 -8.216105 -19.78973 -55.33745 -5.216105 -19.78973 -54.05107 -2.213105 -19.78973 -56.90552 -8.216105 -19.78973 -58.30674 -5.216105 -19.78973 -57.03138 -2.213105 -19.78973 -59.90552 -8.216105 -19.78973 -61.27603 -5.216105 -19.78973 -60.01168 -2.213105 -19.78973 -62.90552 -8.216105 -19.78973 -64.24532 -5.216105 -19.78973 -62.99199 -2.213105 -19.78973 -65.90552 -8.216105 -19.78973 -67.21461 -5.216105 -19.78973 -65.9723 -2.213105 -19.78973 -68.90552 -8.216105 -19.78973 -70.18391 -5.216105 -19.78973 -68.95261 -2.213105 -19.78973 -71.90552 -8.216105 -19.78973 -73.15321 -5.216105 -19.78973 -71.93291 -2.213105 -19.78973 -74.90552 -8.216105 -19.78973 -76.1225 -5.216105 -19.78973 -74.91322 -2.213105 -19.78973 -77.90552 -8.216105 -19.78973 -79.09179 -5.216105 -19.78973 -77.89352 -2.213105 -19.78973 -80.49197 -7.875639 -19.78973 -82.06108 -5.216105 -19.78973 -80.87383 -2.213105 -19.78973 -84.97617 -5.286754 -19.78973 -85.03927 -5.223097 -19.78973 -83.85414 -2.213105 -19.78973 -82.90407 -6.876654 -19.78973 -87.45081 -3.727077 -16.96916 -86.56607 -3.214658 -19.78973 -85.69921 -6.009798 -16.96916 -83.41649 -7.76139 -16.96916 -80.75821 -8.862487 -16.96916 -77.90552 -8.67119 -18.5337 -72.13628 -8.67119 -18.5337 -75.0209 -8.67119 -18.5337 -69.25167 -8.67119 -18.5337 -66.36706 -8.67119 -18.5337 -63.48244 -8.67119 -18.5337 -60.59783 -8.67119 -18.5337 -57.71321 -8.67119 -18.5337 -54.8286 -8.67119 -18.5337 -51.94398 -8.67119 -18.5337 -49.05937 -8.67119 -18.5337 -46.17475 -8.67119 -18.5337 -43.29014 -8.67119 -18.5337 -40.40552 -8.67119 -18.5337 -37.5209 -8.67119 -18.5337 -34.63629 -8.67119 -18.5337 -31.75167 -8.67119 -18.5337 -28.86706 -8.67119 -18.5337 -25.98244 -8.67119 -18.5337 -23.09783 -8.67119 -18.5337 -20.21321 -8.67119 -18.5337 -17.3286 -8.67119 -18.5337 -14.44398 -8.67119 -18.5337 -11.55937 -8.67119 -18.5337 -8.674752 -8.67119 -18.5337 76.98152 9.798896 -19.78973 74.11372 11.7839 -19.78973 77.09448 11.7839 -19.78973 77.09448 12.23898 -18.5337 79.68094 11.44343 -19.78973 79.94717 12.43028 -16.96916 74.0051 9.798896 -19.78973 71.13294 11.7839 -19.78973 74.11372 12.23898 -18.5337 71.02867 9.798896 -19.78973 68.15218 11.7839 -19.78973 71.13294 12.23898 -18.5337 68.05225 9.798896 -19.78973 65.1714 11.7839 -19.78973 68.15218 12.23898 -18.5337 65.07582 9.798896 -19.78973 62.19063 11.7839 -19.78973 65.1714 12.23898 -18.5337 62.0994 9.798896 -19.78973 59.20986 11.7839 -19.78973 62.19063 12.23898 -18.5337 59.12297 9.798896 -19.78973 56.2291 11.7839 -19.78973 59.20986 12.23898 -18.5337 56.14655 9.798896 -19.78973 53.24833 11.7839 -19.78973 56.2291 12.23898 -18.5337 53.17012 9.798896 -19.78973 50.26756 11.7839 -19.78973 53.24833 12.23898 -18.5337 50.1937 9.798896 -19.78973 47.28679 11.7839 -19.78973 50.26756 12.23898 -18.5337 47.21727 9.798896 -19.78973 44.30602 11.7839 -19.78973 47.28679 12.23898 -18.5337 44.24085 9.798896 -19.78973 41.32525 11.7839 -19.78973 44.30602 12.23898 -18.5337 41.26442 9.798896 -19.78973 38.34448 11.7839 -19.78973 41.32525 12.23898 -18.5337 38.288 9.798896 -19.78973 35.36371 11.7839 -19.78973 38.34448 12.23898 -18.5337 35.31157 9.798896 -19.78973 32.38294 11.7839 -19.78973 35.36371 12.23898 -18.5337 32.33515 9.798896 -19.78973 29.40217 11.7839 -19.78973 32.38294 12.23898 -18.5337 29.35872 9.798896 -19.78973 26.4214 11.7839 -19.78973 29.40217 12.23898 -18.5337 26.3823 9.798896 -19.78973 23.44063 11.7839 -19.78973 26.4214 12.23898 -18.5337 23.40588 9.798896 -19.78973 20.45986 11.7839 -19.78973 23.44063 12.23898 -18.5337 20.42945 9.798896 -19.78973 17.47909 11.7839 -19.78973 20.45986 12.23898 -18.5337 17.45303 9.798896 -19.78973 14.49832 11.7839 -19.78973 17.47909 12.23898 -18.5337 14.4766 9.798896 -19.78973 11.51756 11.7839 -19.78973 14.49832 12.23898 -18.5337 11.50018 9.798896 -19.78973 8.536786 11.7839 -19.78973 11.51756 12.23898 -18.5337 8.523752 9.798896 -19.78973 5.556017 11.7839 -19.78973 8.536786 12.23898 -18.5337 5.547328 9.798896 -19.78973 2.575248 11.7839 -19.78973 5.556017 12.23898 -18.5337 -0.4055214 9.798896 -19.78973 -0.4055214 11.7839 -19.78973 2.575248 12.23898 -18.5337 2.570903 9.798896 -19.78973 -3.381946 9.798896 -19.78973 -3.386291 11.7839 -19.78973 -0.4055214 12.23898 -18.5337 -6.358371 9.798896 -19.78973 -6.36706 11.7839 -19.78973 -3.386291 12.23898 -18.5337 -9.334795 9.798896 -19.78973 -9.347829 11.7839 -19.78973 -6.36706 12.23898 -18.5337 -12.31122 9.798896 -19.78973 -12.3286 11.7839 -19.78973 -9.347829 12.23898 -18.5337 -15.28764 9.798896 -19.78973 -15.30937 11.7839 -19.78973 -12.3286 12.23898 -18.5337 -18.26407 9.798896 -19.78973 -18.29014 11.7839 -19.78973 -15.30937 12.23898 -18.5337 -21.24049 9.798896 -19.78973 -21.27091 11.7839 -19.78973 -18.29014 12.23898 -18.5337 -24.21692 9.798896 -19.78973 -24.25167 11.7839 -19.78973 -21.27091 12.23898 -18.5337 -27.19334 9.798896 -19.78973 -27.23244 11.7839 -19.78973 -24.25167 12.23898 -18.5337 -30.16977 9.798896 -19.78973 -30.21321 11.7839 -19.78973 -27.23244 12.23898 -18.5337 -33.14619 9.798896 -19.78973 -33.19398 11.7839 -19.78973 -30.21321 12.23898 -18.5337 -36.12262 9.798896 -19.78973 -36.17475 11.7839 -19.78973 -33.19398 12.23898 -18.5337 -39.09904 9.798896 -19.78973 -39.15552 11.7839 -19.78973 -36.17475 12.23898 -18.5337 -42.07547 9.798896 -19.78973 -42.13629 11.7839 -19.78973 -39.15552 12.23898 -18.5337 -45.05189 9.798896 -19.78973 -45.11706 11.7839 -19.78973 -42.13629 12.23898 -18.5337 -48.02832 9.798896 -19.78973 -48.09783 11.7839 -19.78973 -45.11706 12.23898 -18.5337 -51.00474 9.798896 -19.78973 -51.0786 11.7839 -19.78973 -48.09783 12.23898 -18.5337 -53.98116 9.798896 -19.78973 -54.05937 11.7839 -19.78973 -51.0786 12.23898 -18.5337 -56.95759 9.798896 -19.78973 -57.04014 11.7839 -19.78973 -54.05937 12.23898 -18.5337 -59.93401 9.798896 -19.78973 -60.0209 11.7839 -19.78973 -57.04014 12.23898 -18.5337 -62.91044 9.798896 -19.78973 -63.00167 11.7839 -19.78973 -60.0209 12.23898 -18.5337 -65.88686 9.798896 -19.78973 -65.98244 11.7839 -19.78973 -63.00167 12.23898 -18.5337 -68.86328 9.798896 -19.78973 -68.96321 11.7839 -19.78973 -65.98244 12.23898 -18.5337 -71.83971 9.798896 -19.78973 -71.94398 11.7839 -19.78973 -68.96321 12.23898 -18.5337 -74.81613 9.798896 -19.78973 -74.92475 11.7839 -19.78973 -71.94398 12.23898 -18.5337 -77.79256 9.798896 -19.78973 -77.90552 11.7839 -19.78973 -74.92475 12.23898 -18.5337 -80.76898 9.798896 -19.78973 -80.49197 11.44343 -19.78973 -77.90552 12.23898 -18.5337 -82.90407 10.44444 -19.78973 -80.75821 12.43028 -16.96916 -77.90552 12.80584 -16.96916 -83.79746 9.863525 -19.78973 -83.41649 11.32918 -16.96916 -83.58505 6.795896 -19.78973 -86.55753 6.797192 -19.78973 -84.97617 8.854545 -19.78973 -80.61436 6.795896 -19.78973 -77.64365 6.795896 -19.78973 -74.67296 6.795896 -19.78973 -71.70226 6.795896 -19.78973 -68.73157 6.795896 -19.78973 -65.76086 6.795896 -19.78973 -62.79017 6.795896 -19.78973 -59.81947 6.795896 -19.78973 -56.84878 6.795896 -19.78973 -53.87808 6.795896 -19.78973 -50.90738 6.795896 -19.78973 -47.93668 6.795896 -19.78973 -44.96598 6.795896 -19.78973 -41.99529 6.795896 -19.78973 -39.02459 6.795896 -19.78973 -36.05389 6.795896 -19.78973 -33.08319 6.795896 -19.78973 -30.1125 6.795896 -19.78973 -27.1418 6.795896 -19.78973 -24.1711 6.795896 -19.78973 -21.20041 6.795896 -19.78973 -18.22971 6.795896 -19.78973 -15.25901 6.795896 -19.78973 -12.28831 6.795896 -19.78973 -9.317615 6.795896 -19.78973 -6.346917 6.795896 -19.78973 -3.376219 6.795896 -19.78973 -0.4055214 6.795896 -19.78973 5.535874 6.795896 -19.78973 2.565176 6.795896 -19.78973 8.506572 6.795896 -19.78973 11.47727 6.795896 -19.78973 14.44797 6.795896 -19.78973 17.41866 6.795896 -19.78973 20.38936 6.795896 -19.78973 23.36006 6.795896 -19.78973 26.33076 6.795896 -19.78973 29.30145 6.795896 -19.78973 32.27215 6.795896 -19.78973 35.24285 6.795896 -19.78973 38.21355 6.795896 -19.78973 41.18425 6.795896 -19.78973 44.15494 6.795896 -19.78973 47.12564 6.795896 -19.78973 50.09634 6.795896 -19.78973 53.06704 6.795896 -19.78973 56.03773 6.795896 -19.78973 59.00843 6.795896 -19.78973 61.97913 6.795896 -19.78973 64.94983 6.795896 -19.78973 67.92053 6.795896 -19.78973 70.89123 6.795896 -19.78973 73.86192 6.795896 -19.78973 76.83262 6.795896 -19.78973 79.95795 9.798896 -19.78973 79.80332 6.795896 -19.78973 82.09303 10.44444 -19.78973 82.98643 9.863525 -19.78973 82.77402 6.795896 -19.78973 84.88818 9.577588 -16.96916 84.16513 8.854545 -19.78973 82.60545 11.32918 -16.96916 85.74649 6.797192 -19.78973 86.63977 7.294868 -16.96916 -85.69921 9.577588 -16.96916 -84.36849 3.792895 -19.78973 -87.68467 3.873759 -19.78973 -87.23557 5.381139 -19.78973 -87.45081 7.294868 -16.96916 -81.36981 3.792895 -19.78973 -78.37114 3.792895 -19.78973 -75.37246 3.792895 -19.78973 -72.37378 3.792895 -19.78973 -69.37511 3.792895 -19.78973 -66.37643 3.792895 -19.78973 -63.37775 3.792895 -19.78973 -60.37907 3.792895 -19.78973 -57.3804 3.792895 -19.78973 -54.38172 3.792895 -19.78973 -51.38304 3.792895 -19.78973 -48.38437 3.792895 -19.78973 -45.38568 3.792895 -19.78973 -42.38701 3.792895 -19.78973 -39.38833 3.792895 -19.78973 -36.38965 3.792895 -19.78973 -33.39098 3.792895 -19.78973 -30.3923 3.792895 -19.78973 -27.39362 3.792895 -19.78973 -24.39494 3.792895 -19.78973 -21.39627 3.792895 -19.78973 -18.39759 3.792895 -19.78973 -15.39891 3.792895 -19.78973 -12.40023 3.792895 -19.78973 -9.401554 3.792895 -19.78973 -6.402877 3.792895 -19.78973 -3.404199 3.792895 -19.78973 -0.4055214 3.792895 -19.78973 2.593156 3.792895 -19.78973 5.591834 3.792895 -19.78973 8.590511 3.792895 -19.78973 11.58919 3.792895 -19.78973 14.58787 3.792895 -19.78973 17.58654 3.792895 -19.78973 20.58522 3.792895 -19.78973 23.5839 3.792895 -19.78973 26.58258 3.792895 -19.78973 29.58125 3.792895 -19.78973 32.57993 3.792895 -19.78973 35.57861 3.792895 -19.78973 38.57729 3.792895 -19.78973 41.57597 3.792895 -19.78973 44.57464 3.792895 -19.78973 47.57332 3.792895 -19.78973 50.572 3.792895 -19.78973 53.57068 3.792895 -19.78973 56.56936 3.792895 -19.78973 59.56803 3.792895 -19.78973 62.56671 3.792895 -19.78973 65.56539 3.792895 -19.78973 68.56407 3.792895 -19.78973 71.56274 3.792895 -19.78973 74.56142 3.792895 -19.78973 77.5601 3.792895 -19.78973 80.55878 3.792895 -19.78973 83.55746 3.792895 -19.78973 86.42453 5.381139 -19.78973 86.87363 3.873759 -19.78973 87.74087 4.636585 -16.96916 -88.5519 4.636585 -16.96916 -84.68208 0.7898954 -19.78973 -87.85081 0.7449579 -19.78973 -87.90552 1.783895 -19.78973 -81.72501 0.7898954 -19.78973 -78.76794 0.7898954 -19.78973 -75.81087 0.7898954 -19.78973 -72.8538 0.7898954 -19.78973 -69.89672 0.7898954 -19.78973 -66.93965 0.7898954 -19.78973 -63.98258 0.7898954 -19.78973 -61.02551 0.7898954 -19.78973 -58.06844 0.7898954 -19.78973 -55.11136 0.7898954 -19.78973 -52.15429 0.7898954 -19.78973 -49.19722 0.7898954 -19.78973 -46.24015 0.7898954 -19.78973 -43.28307 0.7898954 -19.78973 -40.326 0.7898954 -19.78973 -37.36893 0.7898954 -19.78973 -34.41186 0.7898954 -19.78973 -31.45478 0.7898954 -19.78973 -28.49771 0.7898954 -19.78973 -25.54064 0.7898954 -19.78973 -22.58356 0.7898954 -19.78973 -19.62649 0.7898954 -19.78973 -16.66942 0.7898954 -19.78973 -13.71235 0.7898954 -19.78973 -10.75528 0.7898954 -19.78973 -7.798203 0.7898954 -19.78973 -4.84113 0.7898954 -19.78973 -1.884058 0.7898954 -19.78973 1.073015 0.7898954 -19.78973 4.030087 0.7898954 -19.78973 6.98716 0.7898954 -19.78973 9.944233 0.7898954 -19.78973 12.90131 0.7898954 -19.78973 15.85838 0.7898954 -19.78973 18.81545 0.7898954 -19.78973 21.77252 0.7898954 -19.78973 24.7296 0.7898954 -19.78973 27.68667 0.7898954 -19.78973 30.64374 0.7898954 -19.78973 33.60081 0.7898954 -19.78973 36.55788 0.7898954 -19.78973 39.51496 0.7898954 -19.78973 42.47203 0.7898954 -19.78973 45.4291 0.7898954 -19.78973 48.38618 0.7898954 -19.78973 51.34325 0.7898954 -19.78973 54.30032 0.7898954 -19.78973 57.25739 0.7898954 -19.78973 60.21447 0.7898954 -19.78973 63.17154 0.7898954 -19.78973 66.12862 0.7898954 -19.78973 69.08569 0.7898954 -19.78973 72.04276 0.7898954 -19.78973 74.99983 0.7898954 -19.78973 77.9569 0.7898954 -19.78973 80.91398 0.7898954 -19.78973 83.87105 0.7898954 -19.78973 87.03978 0.7449579 -19.78973 87.09448 1.783895 -19.78973 88.11643 1.783895 -16.96916 87.74087 -1.068794 -16.96916 -88.92747 1.783895 -16.96916 -87.56608 -0.7987455 -19.78973 -87.04099 -2.28312 -19.78973 86.75504 -0.7987455 -19.78973 -88.5519 -1.068794 -16.96916 86.63977 -3.727077 -16.96916 -77.90552 -9.694159 -15.7103 -77.90552 -9.23805 -16.96916 77.09448 13.26195 -15.7103 77.09448 12.80584 -16.96916 2.094479 -8.216105 -16.98973 -2.905521 -8.216105 -16.98973 -2.905521 -8.216105 -14.79573 -47.04023 10.5489 15.21027 -44.21108 11.0339 15.21027 -47.15552 11.0339 15.21027 -49.54824 10.719 15.21027 -44.12141 10.5489 15.21027 -41.26663 11.0339 15.21027 -41.20258 10.5489 15.21027 -38.32219 11.0339 15.21027 -38.28376 10.5489 15.21027 -35.37774 11.0339 15.21027 -32.44611 10.5489 15.21027 -32.4333 11.0339 15.21027 -35.36493 10.5489 15.21027 -29.52728 10.5489 15.21027 -29.48886 11.0339 15.21027 -26.60846 10.5489 15.21027 -26.54441 11.0339 15.21027 -23.68964 10.5489 15.21027 -23.59997 11.0339 15.21027 -20.77081 10.5489 15.21027 -20.65552 11.0339 15.21027 -17.83554 10.59305 15.21027 -18.2628 10.719 15.21027 -18.70241 7.545896 15.21027 -16.11017 7.545896 15.21027 -16.03238 9.795444 15.21027 -21.22198 7.615401 15.21027 -24.77975 9.867674 15.21027 -22.40822 8.659468 15.21027 -27.40552 10.2839 15.21027 -30.03129 9.867674 15.21027 -33.58906 7.615401 15.21027 -32.40282 8.659468 15.21027 -36.4845 7.545896 15.21027 -39.4526 7.545896 15.21027 -42.4207 7.545896 15.21027 -45.38881 7.545896 15.21027 -49.9755 10.59305 15.21027 -48.35691 7.545896 15.21027 -51.32501 7.545896 15.21027 -51.77866 9.795444 15.21027 -53.69452 8.325788 15.21027 -13.45543 7.590034 15.21027 -14.11652 8.325788 15.21027 -14.69792 4.542895 15.21027 -11.85382 4.627602 15.21027 -12.6461 6.410007 15.21027 -17.25014 4.542895 15.21027 -20.52995 6.781195 15.21027 -19.41243 4.673884 15.21027 -21.98114 8.327305 14.21027 -20.52995 6.780485 14.21027 -22.41056 8.661315 14.21027 -24.77713 9.867018 14.21027 -27.40552 10.28322 14.21027 -30.03391 9.867018 14.21027 -32.40048 8.661315 14.21027 -34.28109 6.781195 15.21027 -32.8299 8.327305 14.21027 -37.95963 4.542895 15.21027 -35.39862 4.673884 15.21027 -40.91058 4.542895 15.21027 -43.86154 4.542895 15.21027 -46.81249 4.542895 15.21027 -49.76344 4.542895 15.21027 -54.35561 7.590034 15.21027 -52.71439 4.542895 15.21027 -55.16494 6.410007 15.21027 -55.95722 4.627602 15.21027 -34.28109 6.780485 14.21027 -35.90552 1.783895 15.21027 -35.64097 3.88798 14.21027 -35.0984 5.398517 14.21027 -38.75666 1.539895 15.21027 -35.90091 1.519714 15.21027 -41.68711 1.539895 15.21027 -44.61757 1.539895 15.21027 -47.54803 1.539895 15.21027 -50.47848 1.539895 15.21027 -53.40894 1.539895 15.21027 -56.4013 1.527307 15.21027 -56.40479 1.783895 15.21027 -35.90552 1.783895 14.21027 -35.88821 2.311948 14.21027 -37.80498 -1.463105 15.21027 -35.70156 -0.06695652 15.21027 -40.75991 -1.463105 15.21027 -43.71484 -1.463105 15.21027 -46.66977 -1.463105 15.21027 -49.6247 -1.463105 15.21027 -52.57963 -1.463105 15.21027 -55.78801 -1.539135 15.21027 -56.22539 -0.02988052 15.21027 -35.2062 -1.591962 15.21027 -35.4841 -0.8577217 14.21027 -36.0127 -4.466105 15.21027 -34.28109 -3.213404 15.21027 -38.99701 -4.466105 15.21027 -41.98132 -4.466105 15.21027 -44.96563 -4.466105 15.21027 -47.94994 -4.466105 15.21027 -50.93425 -4.466105 15.21027 -53.95076 -4.491002 15.21027 -55.16494 -2.842216 15.21027 -33.09129 -4.534082 15.21027 -34.28109 -3.212694 14.21027 -35.37774 -7.466105 15.21027 -32.4333 -7.466105 15.21027 -32.40282 -5.091677 15.21027 -33.82132 -3.791702 14.21027 -38.32219 -7.466105 15.21027 -41.26663 -7.466105 15.21027 -44.21108 -7.466105 15.21027 -47.15552 -7.466105 15.21027 -49.54824 -7.151211 15.21027 -51.77866 -6.227653 15.21027 -53.69452 -4.757998 15.21027 -29.48886 -7.466105 15.21027 -30.03129 -6.299883 15.21027 -32.40048 -5.093524 14.21027 -27.40552 -6.716105 15.21027 -30.03391 -6.299227 14.21027 -26.54441 -7.466105 15.21027 -24.77975 -6.299883 15.21027 -27.40552 -6.715428 14.21027 -23.59997 -7.466105 15.21027 -22.40822 -5.091677 15.21027 -24.77713 -6.299227 14.21027 -20.65552 -7.466105 15.21027 -21.71976 -4.534082 15.21027 -22.41056 -5.093524 14.21027 -19.1526 -4.466105 15.21027 -20.52995 -3.213404 15.21027 -20.98973 -3.791702 14.21027 -18.2628 -7.151211 15.21027 -16.52254 -4.466105 15.21027 -17.39949 -1.463105 15.21027 -19.60484 -1.591962 15.21027 -14.11652 -4.757998 15.21027 -13.86028 -4.491002 15.21027 -14.83799 -1.463105 15.21027 -16.03238 -6.227653 15.21027 -12.6461 -2.842216 15.21027 -12.02303 -1.539135 15.21027 -20.52995 -3.212694 14.21027 -19.10948 -0.06695652 15.21027 -19.32694 -0.8577217 14.21027 -16.48044 1.539895 15.21027 -18.91014 1.519714 15.21027 -13.97605 1.539895 15.21027 -11.58565 -0.02988052 15.21027 -11.40974 1.527307 15.21027 -18.90552 1.783895 15.21027 -11.40626 1.783895 15.21027 -18.90552 1.783895 14.21027 -19.71264 5.398517 14.21027 -18.92283 2.311948 14.21027 -19.17007 3.88798 14.21027 43.46871 -6.299883 15.21027 43.40004 -7.466105 15.21027 46.34448 -7.466105 15.21027 46.09448 -6.716105 15.21027 48.72025 -6.299883 15.21027 48.7372 -7.151211 15.21027 40.40871 -4.534082 15.21027 40.45559 -7.466105 15.21027 41.09718 -5.091677 15.21027 37.52076 -4.466105 15.21027 37.51115 -7.466105 15.21027 34.5699 -4.466105 15.21027 34.5667 -7.466105 15.21027 31.61905 -4.466105 15.21027 31.62226 -7.466105 15.21027 28.67781 -7.466105 15.21027 28.6682 -4.466105 15.21027 25.73337 -7.466105 15.21027 25.09178 -5.091677 15.21027 22.78892 -7.466105 15.21027 25.78024 -4.534082 15.21027 20.09448 -6.716105 15.21027 19.84448 -7.466105 15.21027 22.72025 -6.299883 15.21027 17.46871 -6.299883 15.21027 17.45176 -7.151211 15.21027 15.09718 -5.091677 15.21027 15.22134 -6.227653 15.21027 14.40871 -4.534082 15.21027 13.30548 -4.757998 15.21027 13.04924 -4.491002 15.21027 13.21891 -3.213404 15.21027 11.83506 -2.842216 15.21027 12.2938 -1.591962 15.21027 13.67868 -3.791702 14.21027 13.21891 -3.212694 14.21027 15.09952 -5.093524 14.21027 17.46609 -6.299227 14.21027 20.09448 -6.715428 14.21027 22.72287 -6.299227 14.21027 25.08944 -5.093524 14.21027 26.97005 -3.213404 15.21027 26.51027 -3.791702 14.21027 30.31674 -1.463105 15.21027 27.89516 -1.591962 15.21027 33.09448 -1.463105 15.21027 35.87222 -1.463105 15.21027 39.21891 -3.213404 15.21027 38.2938 -1.591962 15.21027 39.67868 -3.791702 14.21027 39.21891 -3.212694 14.21027 41.09952 -5.093524 14.21027 43.46609 -6.299227 14.21027 46.09448 -6.715428 14.21027 50.96762 -6.227653 15.21027 51.09178 -5.091677 15.21027 48.72287 -6.299227 14.21027 52.88348 -4.757998 15.21027 51.78025 -4.534082 15.21027 51.08944 -5.093524 14.21027 53.13972 -4.491002 15.21027 52.97005 -3.213404 15.21027 52.51028 -3.791702 14.21027 53.89516 -1.591962 15.21027 54.3539 -2.842216 15.21027 54.97697 -1.539135 15.21027 52.97005 -3.212694 14.21027 54.39052 -0.06695652 15.21027 54.17306 -0.8577217 14.21027 54.58987 1.519714 15.21027 55.41434 -0.02988052 15.21027 55.59026 1.527307 15.21027 54.59448 1.783895 15.21027 55.14618 4.627602 15.21027 55.59374 1.783895 15.21027 54.08757 4.673884 15.21027 54.59448 1.783895 14.21027 54.3539 6.410007 15.21027 53.54457 7.590034 15.21027 52.97005 6.781195 15.21027 53.78736 5.398517 14.21027 54.57717 2.311948 14.21027 54.32993 3.88798 14.21027 52.27802 7.615401 15.21027 52.97005 6.780485 14.21027 52.88348 8.325788 15.21027 50.96762 9.795444 15.21027 51.09178 8.659468 15.21027 51.51886 8.327305 14.21027 49.16446 10.59305 15.21027 48.72025 9.867674 15.21027 51.08944 8.661315 14.21027 46.22919 10.5489 15.21027 46.09448 10.2839 15.21027 48.72287 9.867018 14.21027 43.31036 10.5489 15.21027 43.46871 9.867674 15.21027 46.09448 10.28322 14.21027 41.09718 8.659468 15.21027 43.46609 9.867018 14.21027 40.39154 10.5489 15.21027 39.91094 7.615401 15.21027 41.09952 8.661315 14.21027 37.47271 10.5489 15.21027 37.22795 7.545896 15.21027 39.21891 6.781195 15.21027 40.6701 8.327305 14.21027 34.55389 10.5489 15.21027 34.47231 7.545896 15.21027 35.7929 4.542895 15.21027 38.10138 4.673884 15.21027 31.63507 10.5489 15.21027 31.71665 7.545896 15.21027 33.09448 4.542895 15.21027 28.961 7.545896 15.21027 30.39606 4.542895 15.21027 28.71624 10.5489 15.21027 26.27802 7.615401 15.21027 26.97005 6.781195 15.21027 28.08757 4.673884 15.21027 25.79742 10.5489 15.21027 25.09178 8.659468 15.21027 25.51886 8.327305 14.21027 26.97005 6.780485 14.21027 22.8786 10.5489 15.21027 22.72025 9.867674 15.21027 25.08944 8.661315 14.21027 19.95977 10.5489 15.21027 20.09448 10.2839 15.21027 22.72287 9.867018 14.21027 17.46871 9.867674 15.21027 20.09448 10.28322 14.21027 15.22134 9.795444 15.21027 15.09718 8.659468 15.21027 17.46609 9.867018 14.21027 17.0245 10.59305 15.21027 13.30548 8.325788 15.21027 13.91094 7.615401 15.21027 15.09952 8.661315 14.21027 12.64439 7.590034 15.21027 13.21891 6.781195 15.21027 14.6701 8.327305 14.21027 12.10138 4.673884 15.21027 11.83506 6.410007 15.21027 17.45176 10.719 15.21027 22.78892 11.0339 15.21027 19.84448 11.0339 15.21027 25.73337 11.0339 15.21027 28.67781 11.0339 15.21027 31.62226 11.0339 15.21027 34.5667 11.0339 15.21027 37.51115 11.0339 15.21027 40.45559 11.0339 15.21027 43.40004 11.0339 15.21027 46.34448 11.0339 15.21027 48.7372 10.719 15.21027 11.04278 4.627602 15.21027 13.21891 6.780485 14.21027 11.59448 1.783895 15.21027 11.85903 3.88798 14.21027 12.4016 5.398517 14.21027 10.5987 1.527307 15.21027 10.59521 1.783895 15.21027 11.59909 1.519714 15.21027 11.59448 1.783895 14.21027 11.61178 2.311948 14.21027 11.21199 -1.539135 15.21027 11.79844 -0.06695652 15.21027 10.77461 -0.02988052 15.21027 12.0159 -0.8577217 14.21027 28.59448 1.783895 15.21027 28.59448 1.783895 14.21027 30.80482 1.539895 15.21027 28.58986 1.519714 15.21027 28.17306 -0.8577217 14.21027 27.78736 5.398517 14.21027 28.57717 2.311948 14.21027 28.32993 3.88798 14.21027 33.09448 1.539895 15.21027 35.38414 1.539895 15.21027 37.59448 1.783895 15.21027 37.59909 1.519714 15.21027 37.85903 3.88798 14.21027 39.21891 6.780485 14.21027 38.4016 5.398517 14.21027 37.59448 1.783895 14.21027 37.61179 2.311948 14.21027 37.79844 -0.06695652 15.21027 28.39052 -0.06695652 15.21027 26.97005 -3.212694 14.21027 38.0159 -0.8577217 14.21027 -21.84468 2.272182 14.21027 -22.28389 -0.7308179 14.21027 -24.6251 2.272182 14.21027 -24.84471 -0.7308179 14.21027 -23.59282 -3.733818 14.21027 -27.40552 2.272182 14.21027 -27.40552 -0.7308179 14.21027 -26.13462 -3.733818 14.21027 -30.18594 2.272182 14.21027 -29.96634 -0.7308179 14.21027 -28.67642 -3.733818 14.21027 -32.52715 -0.7308179 14.21027 -31.21823 -3.733818 14.21027 -32.96636 2.272182 14.21027 -31.8245 5.275182 14.21027 -28.87851 5.275182 14.21027 -25.93253 5.275182 14.21027 -22.98655 5.275182 14.21027 -30.09455 8.278182 14.21027 -27.40552 8.278182 14.21027 -24.7165 8.278182 14.21027 25.65532 2.272182 14.21027 25.21611 -0.7308179 14.21027 22.8749 2.272182 14.21027 22.65529 -0.7308179 14.21027 23.90718 -3.733818 14.21027 20.09448 2.272182 14.21027 20.09448 -0.7308179 14.21027 21.36538 -3.733818 14.21027 17.31406 2.272182 14.21027 17.53366 -0.7308179 14.21027 18.82358 -3.733818 14.21027 14.97285 -0.7308179 14.21027 16.28177 -3.733818 14.21027 14.53364 2.272182 14.21027 15.6755 5.275182 14.21027 18.62149 5.275182 14.21027 21.56747 5.275182 14.21027 24.51345 5.275182 14.21027 17.40545 8.278182 14.21027 20.09448 8.278182 14.21027 22.7835 8.278182 14.21027 51.65532 2.272182 14.21027 51.21611 -0.7308179 14.21027 48.8749 2.272182 14.21027 48.6553 -0.7308179 14.21027 49.90718 -3.733818 14.21027 46.09448 2.272182 14.21027 46.09448 -0.7308179 14.21027 47.36538 -3.733818 14.21027 43.31406 2.272182 14.21027 43.53366 -0.7308179 14.21027 44.82358 -3.733818 14.21027 40.97285 -0.7308179 14.21027 42.28177 -3.733818 14.21027 40.53364 2.272182 14.21027 41.6755 5.275182 14.21027 44.62149 5.275182 14.21027 47.56747 5.275182 14.21027 50.51345 5.275182 14.21027 43.40546 8.278182 14.21027 46.09448 8.278182 14.21027 48.7835 8.278182 14.21027 -9.605521 -20.72873 -6.730328 -9.605521 -20.83263 -4.893167 -9.605521 -19.2161 -5.289729 -6.605521 -19.2161 -5.289729 -9.605521 -17.72573 -6.980824 -9.605521 -17.62173 -4.9046 -6.605521 -17.4661 -4.820818 -9.605521 -23.73173 -4.769639 -9.605521 -21.69042 -4.264043 -6.605521 -20.9661 -4.820818 -9.605521 -20.82224 -9.115695 -9.605521 -23.74719 -7.765726 -9.605521 -17.72573 -9.289729 -9.605521 -19.2161 -9.289729 -6.605521 -22.08623 -8.718825 -9.605521 -23.62486 -7.856411 -9.605521 -22.289 -8.630942 -7.705522 -16.2161 -9.289729 -6.605521 -19.2161 -9.289729 -9.605521 -16.2161 -9.289729 -9.605521 -14.72273 -6.789729 -9.605521 -14.72273 -9.289729 -9.605521 -14.72273 -4.289729 -9.605521 -16.74179 -4.264043 -9.605521 -23.73173 -1.789729 -9.605521 -22.44992 -3.127375 -6.605521 -22.24719 -3.539729 -9.605521 -22.7161 -1.789729 -9.605521 -23.73173 1.190181 -9.605521 -22.44992 -0.4520836 -6.605521 -22.7161 -1.789729 -9.605521 -21.69042 0.6845841 -6.605521 -22.24719 -0.03972912 -9.605521 -20.83263 1.31371 -6.605521 -20.9661 1.24136 -9.605521 -20.72873 3.15087 -9.605521 -19.2161 1.710271 -9.605521 -22.289 5.051484 -9.605521 -20.82224 5.536237 -9.605521 -17.72573 3.401366 -9.605521 -23.62486 4.276953 -9.605521 -23.74719 4.186267 -9.605521 -17.62173 1.325142 -6.605521 -22.08623 5.139368 -9.605521 -19.2161 5.710271 -6.605521 -19.2161 5.710271 -9.605521 -25.28442 2.617587 -6.605521 -24.51941 3.513572 -9.605521 -26.34827 0.529438 -9.605521 -26.71551 -1.789729 -9.605521 -25.28442 -6.197045 -9.605521 -26.34827 -4.108896 -6.605521 -24.51941 -7.09303 -6.605521 -19.2161 1.710271 -9.605521 -14.72273 3.210271 -9.605521 -14.72273 0.7102709 -9.605521 -16.74179 0.6845841 -6.605521 -17.4661 1.24136 -9.605521 -17.72573 5.710271 -9.605521 -16.7191 5.710271 -9.605521 -14.72273 -1.789729 -9.605521 -15.98228 -0.4520836 -6.605521 -16.18501 -0.03972912 -9.605521 -15.7161 -1.789729 -9.605521 -15.98228 -3.127375 -6.605521 -15.7161 -1.789729 -6.605521 -16.18501 -3.539729 -9.605521 -13.7161 -9.289729 -9.605521 -13.7161 -6.298729 -9.605521 -13.7161 -3.295729 -9.605521 -13.7161 -0.2927289 -9.605521 -13.7161 2.710271 -9.605521 -14.72273 5.710271 -7.705522 -16.7191 5.710271 -10.00745 -12.2161 -6.298729 -10.00745 -12.2161 -3.295729 -10.00745 -12.2161 -0.2927289 -10.00745 -12.2161 2.710271 -6.605521 -26.1452 1.080397 -6.605521 -26.7161 -1.789729 -6.605521 -26.1452 -4.659855 3.394479 -20.72873 -6.730328 3.394479 -17.62173 -4.9046 3.394479 -19.2161 -5.289729 2.403479 -19.2161 -5.289729 3.394479 -20.83263 -4.893167 2.403479 -20.9661 -4.820818 3.394479 -17.72573 -6.980824 3.394479 -14.72273 -6.789729 3.394479 -14.72273 -4.289729 3.394479 -16.74179 -4.264043 2.403479 -17.4661 -4.820818 3.394479 -19.2161 -9.289729 3.394479 -17.72573 -9.289729 3.394479 -20.82224 -9.115695 2.403479 -19.2161 -9.289729 3.394479 -16.2161 -9.289729 3.394479 -22.289 -8.630942 2.403479 -22.08623 -8.718825 3.394479 -23.73173 -4.769639 3.394479 -23.62486 -7.856411 3.394479 -23.74719 -7.765726 3.394479 -21.69042 -4.264043 3.394479 -22.44992 -3.127375 2.403479 -22.24719 -3.539729 3.394479 -25.28442 -6.197045 2.403479 -24.51941 -7.09303 3.394479 -22.7161 -1.789729 3.394479 -23.73173 -1.789729 3.394479 -26.34827 -4.108896 3.394479 -21.69042 0.6845841 3.394479 -23.73173 1.190181 3.394479 -26.71551 -1.789729 3.394479 -22.44992 -0.4520836 3.394479 -20.72873 3.15087 3.394479 -23.74719 4.186267 3.394479 -25.28442 2.617587 3.394479 -20.83263 1.31371 3.394479 -26.34827 0.529438 3.394479 -20.82224 5.536237 3.394479 -23.62486 4.276953 2.403479 -24.51941 3.513572 3.394479 -22.289 5.051484 2.403479 -22.08623 5.139368 3.394479 -17.72573 3.401366 3.394479 -17.72573 5.710271 3.394479 -19.2161 5.710271 3.394479 -19.2161 1.710271 2.403479 -20.9661 1.24136 2.403479 -19.2161 1.710271 2.403479 -22.24719 -0.03972912 2.403479 -22.7161 -1.789729 3.394479 -17.62173 1.325142 2.403479 -17.4661 1.24136 1.494479 -16.7191 5.710271 2.403479 -19.2161 5.710271 3.394479 -16.7191 5.710271 3.394479 -14.72273 3.210271 3.394479 -14.72273 5.710271 3.394479 -14.72273 0.7102709 3.394479 -16.74179 0.6845841 3.394479 -15.98228 -0.4520836 2.403479 -16.18501 -0.03972912 3.394479 -13.7161 2.719271 3.394479 -15.7161 -1.789729 3.394479 -14.72273 -1.789729 3.394479 -13.7161 -0.2837291 3.394479 -13.7161 -3.286729 3.394479 -15.98228 -3.127375 3.394479 -13.7161 -6.289729 3.394479 -14.72273 -9.289729 1.494479 -16.2161 -9.289729 3.394479 -13.7161 -9.289729 2.403479 -16.18501 -3.539729 2.403479 -15.7161 -1.789729 3.796402 -12.2161 2.719271 3.796402 -12.2161 -0.2837291 3.796402 -12.2161 -3.286729 3.796402 -12.2161 -6.289729 2.403479 -26.1452 1.080397 2.403479 -26.1452 -4.659855 2.403479 -26.7161 -1.789729 -5.805521 -20.55457 1.443716 -5.805521 -19.2161 1.710271 -5.805521 -19.39634 2.719271 -5.805521 -17.87764 1.443716 -5.805521 -21.69167 0.6840239 -5.805521 -22.71556 -1.789729 -5.805521 -22.44916 -0.4493456 -5.805521 -22.36786 -0.2678337 -5.805521 -22.37256 -3.301875 -5.805521 -22.44916 -3.130113 -5.805521 -21.69167 -4.263482 -5.805521 -19.2161 -5.289729 -5.805521 -20.55457 -5.023174 -5.805521 -17.87764 -5.023174 -5.805521 -19.40174 -6.289729 -5.805521 -16.50653 -6.289729 -5.805521 -22.29696 -6.289729 -5.805521 -24.40793 -0.2837291 -5.805521 -24.41165 -3.286729 -5.805521 -22.28975 2.719271 -5.805521 -25.19868 2.733289 -0.4055214 -20.55457 1.443716 -0.4055214 -19.2161 1.710271 -0.4055214 -19.39634 2.719271 -0.4055214 -17.87764 1.443716 -0.4055214 -16.50293 2.719271 -0.4055214 -21.69167 0.6840239 -0.4055214 -22.36786 -0.2678337 -0.4055214 -22.28975 2.719271 -0.4055214 -22.44916 -0.4493456 -0.4055214 -24.40793 -0.2837291 -0.4055214 -22.71556 -1.789729 -0.4055214 -22.44916 -3.130113 -0.4055214 -24.41165 -3.286729 -0.4055214 -22.37256 -3.301875 -0.4055214 -21.69167 -4.263482 -0.4055214 -22.29696 -6.289729 -0.4055214 -25.20636 -6.302561 -0.4055214 -20.55457 -5.023174 -0.4055214 -19.2161 -5.289729 -0.4055214 -19.40174 -6.289729 -0.4055214 -17.87764 -5.023174 -5.805521 -16.74054 -4.263482 -5.805521 -15.71665 -1.789729 -5.805521 -15.98305 -3.130113 -5.805521 -16.05965 -3.301875 -5.805521 -16.06435 -0.2678337 -5.805521 -15.98305 -0.4493456 -5.805521 -16.74054 0.6840239 -5.805521 -16.50293 2.719271 -0.4055214 -16.74054 -4.263482 -0.4055214 -16.05965 -3.301875 -0.4055214 -16.50653 -6.289729 -0.4055214 -15.98305 -3.130113 -0.4055214 -15.71665 -1.789729 -0.4055214 -15.98305 -0.4493456 -0.4055214 -16.06435 -0.2678337 -0.4055214 -16.74054 0.6840239 -5.805521 -21.53296 5.343016 -5.805521 -19.2161 5.710271 -5.805521 -16.7191 5.710271 -5.805521 -23.62549 4.276953 -5.805521 -25.28279 2.619653 -5.805521 -26.34885 0.5271239 -5.805521 -26.56003 -0.2678604 -5.805521 -26.56187 -3.30267 -5.805521 -26.7161 -1.789729 -5.805521 -25.28279 -6.199111 -5.805521 -26.34885 -4.106583 -5.805521 -25.20636 -6.302561 -5.805521 -23.62549 -7.856411 -5.805521 -21.53296 -8.922475 -5.805521 -19.2161 -9.289729 -5.805521 -16.2161 -9.289729 -0.4055214 -21.53296 -8.922475 -0.4055214 -19.2161 -9.289729 -0.4055214 -16.2161 -9.289729 -0.4055214 -23.62549 -7.856411 -0.4055214 -25.28279 -6.199111 -0.4055214 -26.34885 -4.106583 -0.4055214 -26.56187 -3.30267 -0.4055214 -26.56003 -0.2678604 -0.4055214 -26.7161 -1.789729 -0.4055214 -25.28279 2.619653 -0.4055214 -26.34885 0.5271239 -0.4055214 -25.19868 2.733289 -0.4055214 -23.62549 4.276953 -0.4055214 -21.53296 5.343016 -0.4055214 -19.2161 5.710271 -0.4055214 -16.7191 5.710271 1.844479 -8.216105 -5.789729 2.094479 -8.216105 -5.789729 2.094479 -8.216105 -8.589729 1.185109 -9.806734 -5.789729 1.185109 -6.625475 -5.789729 1.361845 -6.448738 -5.789729 -0.4055214 -5.966105 -5.789729 -0.4055214 -5.716105 -5.789729 0.3670211 -5.838463 -8.789729 1.617021 -6.746641 -8.789729 -2.172888 -6.448738 -5.789729 -1.178064 -5.838463 -8.789729 -2.655521 -8.216105 -5.789729 -2.428064 -6.746641 -8.789729 -1.996151 -6.625475 -5.789729 -2.655521 -8.216105 -8.789729 -2.22581 -9.538621 -8.789729 -1.10081 -6.076227 -8.789729 -2.22581 -6.893588 -8.789729 0.2897669 -6.076227 -8.789729 1.414767 -6.893588 -8.789729 1.844479 -8.216105 -8.789729 0.2897669 -10.35598 -8.789729 1.414767 -9.538621 -8.789729 -1.10081 -10.35598 -8.789729 1.617021 -6.746641 -14.79573 1.617021 -6.746641 -11.79273 -2.428064 -6.746641 -11.79273 -2.428064 -6.746641 -14.79573 -1.178064 -5.838463 -14.79573 0.3670211 -5.838463 -14.79573 -1.178064 -5.838463 -11.79273 0.3670211 -5.838463 -11.79273 1.844479 -8.216105 -19.78973 -2.655521 -8.216105 -19.78973 -1.996151 -6.625475 -19.78973 -2.22581 -6.893588 -17.79873 1.185109 -9.806734 -19.78973 -2.655521 -8.216105 -17.79873 -1.996151 -9.806734 -19.78973 1.185109 -6.625475 -19.78973 -0.4055214 -5.966105 -19.78973 -1.10081 -6.076227 -17.79873 0.2897669 -6.076227 -17.79873 1.844479 -8.216105 -17.79873 1.414767 -6.893588 -17.79873 1.414767 -9.538621 -17.79873 1.844479 -8.216105 -14.79573 1.414767 -6.893588 -14.79573 0.2897669 -6.076227 -14.79573 -1.10081 -6.076227 -14.79573 -2.22581 -6.893588 -14.79573 -2.655521 -8.216105 -14.79573 -2.22581 -9.538621 -17.79873 -2.655521 -8.216105 -11.79273 -2.22581 -6.893588 -11.79273 -1.10081 -6.076227 -11.79273 0.2897669 -6.076227 -11.79273 1.414767 -6.893588 -11.79273 1.844479 -8.216105 -11.79273 1.414767 -9.538621 -11.79273 -0.4055214 -10.4661 -19.78973 0.2897669 -10.35598 -17.79873 -1.10081 -10.35598 -17.79873 + + + + + + + + + + 0 0 1 0 0.2274026 0.9738009 -0.01309599 0.2337711 0.9722035 -0.01860945 0.442813 0.8964209 0 0 1 -0.06136737 0.2316181 0.9708692 -0.07310043 0.4349959 0.8974603 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.8965762 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.8965762 0 0 1 0 0.2274026 0.9738009 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738009 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274025 0.9738009 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738009 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738008 0 0.4428897 0.8965761 0 0 1 0 0.2274026 0.9738008 0 0.4428897 0.8965761 0 0 1 0 0.2274025 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738008 0 0.4428897 0.8965761 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738009 0 0.4428896 0.896576 0 0 1 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738009 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738009 0 0.4428896 0.896576 0 0 1 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738009 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738009 0 0.4428897 0.8965761 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738008 0 0.4428897 0.8965761 0 0 1 0 0.2274026 0.9738008 0 0.4428897 0.8965761 0 0 1 0 0.2274025 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274025 0.9738009 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738009 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738009 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738009 0 0.4428896 0.896576 0 0 1 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738009 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.8965762 0 0 1 0 0.2274026 0.9738008 0 0.4428896 0.896576 0 0 1 0 0.2274026 0.9738009 0 0.4428896 0.8965762 0 0 1 0.01589007 0.2361596 0.9715844 0 0.4428896 0.896576 0 0 1 0.05976664 0.2330733 0.9706208 0.02325541 0.4383731 0.8984922 0 0 1 0.1172851 0.2094723 0.9707551 0.1518165 0.4139462 0.8975524 0.06622624 0.4283672 0.9011745 0.1479679 0.1843268 0.9716631 0.2201942 0.3838154 0.8967721 0 0 1 0.210251 0.103749 0.9721269 0.1729154 0.1624827 0.971442 0.2829964 0.3433636 0.8955526 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.3387462 -0.6138175 0.7130772 -0.4300033 -0.5447908 0.7199306 -0.3372152 -0.6221261 0.7065728 -0.5016677 -0.4852059 0.7161737 -0.5194196 -0.4805234 0.7066121 -0.1805791 -0.6840362 0.7067429 -0.180199 -0.684208 0.7066737 -0.04406592 -0.7064589 0.706381 -0.046646 -0.7063367 0.7063375 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0.04403958 -0.7064203 0.7064211 0.04662594 -0.7063801 0.7062954 0.1798622 -0.6842521 0.7067169 0.180234 -0.6841729 0.7066988 0.3369511 -0.6222713 0.7065708 0.3421769 -0.6128687 0.7122548 0.4197936 -0.4929709 0.7620715 0 0 1 0.4962298 -0.485882 0.7194961 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.3387464 -0.6138179 0.7130768 -0.4300032 -0.544791 0.7199306 -0.3372151 -0.6221267 0.7065724 -0.5016676 -0.4852056 0.7161739 -0.5194194 -0.4805233 0.7066123 -0.1805791 -0.6840363 0.706743 -0.1801991 -0.684208 0.7066737 -0.04406592 -0.7064589 0.706381 -0.046646 -0.7063367 0.7063375 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0 -0.7071064 0.7071071 0.04403962 -0.7064204 0.7064211 0.04662598 -0.7063801 0.7062954 0.1798621 -0.6842521 0.706717 0.1802339 -0.6841729 0.7066989 0.3369513 -0.6222709 0.7065712 0.3421768 -0.6128685 0.712255 0.4197937 -0.4929717 0.762071 0 0 1 0.49623 -0.4858827 0.7194954 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.1170179 0.2093939 0.9708043 -0.1514896 0.1842421 0.9711363 0 0 1 -0.2835878 0.340447 0.8964786 -0.1740481 0.1676786 0.9703562 -0.3370849 0.2824569 0.8981045 -0.1518809 0.4139191 0.897554 -0.22016 0.3842182 0.8966081 -0.1979463 0.1274627 0.9718902 0.4986993 -0.5015618 0.7069191 0.5917431 -0.3881135 0.7065465 0.6026621 -0.3575925 0.7133905 0.6424223 -0.2977938 0.706125 0 0 1 0.7467898 -0.1572665 0.6461983 0.6934115 -0.1342318 0.7079281 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.2102546 0.1037313 0.972128 0 0 1 -0.3842523 0.2243977 0.8955421 -0.2248933 0.07708544 0.9713295 -0.41829 0.1521309 0.895483 -0.2351453 0.04145266 0.9710759 -0.4369161 0.07648443 0.8962447 0 0 1 0.6948271 -0.004934499 0.71916 0.7072972 -0.009301203 0.7068551 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.234709 -0.03045189 0.9715886 -0.2377654 0.003086731 0.9713177 -0.4447122 0.001588632 0.8956721 0.6952155 0.1066586 0.710844 0 0 1 0 0 1 0.6947689 0.1917809 0.6931927 0.6486312 0.273727 0.7101768 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.2150143 -0.09678572 0.9718031 -0.227521 -0.0652501 0.9715846 -0.4398144 -0.07768267 0.8947227 -0.4199175 -0.1533557 0.8945118 0 0 1 0 0 1 0.5976098 0.3604528 0.7161956 0.5967479 0.3799574 0.7067703 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.1686754 -0.1718359 0.9705777 -0.2010458 -0.125667 0.9714877 -0.3843043 -0.2252725 0.8953002 -0.3390068 -0.2822664 0.8974408 0 0 1 0.4990612 0.4977159 0.7093778 0.5293533 0.4701043 0.7062486 0 0 1 0.4618995 0.5344113 0.7078514 0 -0.2274026 0.9738008 0 -0.2274026 0.9738008 0 0 1 0.3496889 0.6141769 0.7074633 0.3496439 0.6151386 0.7066495 0 -0.2274026 0.9738009 0 -0.2274026 0.9738008 0 -0.2274026 0.9738008 0 -0.2274026 0.9738008 0 -0.2274026 0.9738008 0 -0.2274026 0.9738009 -0.01589007 -0.2361596 0.9715844 -0.05976664 -0.2330733 0.9706208 -0.1232899 -0.2092309 0.9700629 -0.2220724 -0.377716 0.8988963 -0.2705705 -0.3377241 0.9015176 -0.1518165 -0.4139462 0.8975524 0 -0.2274026 0.9738008 0 0 1 0.1805791 0.6840362 0.7067429 0.180199 0.684208 0.7066737 0 -0.2274026 0.9738008 0 0 1 0.04406592 0.7064589 0.706381 0 -0.2274026 0.9738009 0 0 1 0.046646 0.7063367 0.7063375 0 0.7071064 0.7071071 0 -0.2274026 0.9738008 0 0 1 0 0.7071064 0.7071071 0 0.7071064 0.7071071 0 -0.2274025 0.9738009 0 0 1 0 0.7071064 0.7071071 0 0.7071064 0.7071071 0 -0.2274025 0.9738008 0 0 1 0 0.7071064 0.7071071 0 0.7071064 0.7071071 0 -0.2274026 0.9738008 0 0 1 0 0.7071064 0.7071071 0 0.7071064 0.7071071 0 -0.2274026 0.9738008 0 0 1 0 0.7071064 0.7071071 0 0.7071064 0.7071071 0 -0.2274026 0.9738008 0 0 1 0 0.7071064 0.7071071 0 0.7071064 0.7071071 0 -0.2274026 0.9738009 0 0 1 0 0.7071064 0.7071071 0 0.7071064 0.7071071 0 -0.2274026 0.9738008 0 0 1 0 0.7071064 0.7071071 -0.04403958 0.7064203 0.7064211 0 -0.2274026 0.9738008 0 0 1 -0.04662594 0.7063801 0.7062954 -0.1798622 0.6842521 0.7067169 0 -0.2274026 0.9738008 0 0 1 -0.180234 0.6841729 0.7066988 -0.3493939 0.6152815 0.7066488 0 0 1 -0.3498231 0.6142483 0.7073351 -0.4213087 0.4485587 0.7882221 0 -0.2274026 0.9738008 0 0 1 0 0 1 -0.4949683 0.4784091 0.7253489 0 -0.2274026 0.9738008 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.2274026 0.9738008 0 0 1 0 0 1 0 -0.2274026 0.9738009 0 0 1 0 0 1 0 -0.2274026 0.9738008 0 0 1 0 0 1 0 -0.2274026 0.9738008 0 0 1 0 0 1 0 -0.2274026 0.9738008 0 0 1 0 0 1 0 -0.2274026 0.9738008 0 0 1 0 0 1 0 -0.2274026 0.9738008 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.2274026 0.9738008 0 0 1 0.3496891 0.6141772 0.707463 0.4618947 0.5344158 0.707851 0.349644 0.6151389 0.7066492 0.499061 0.497716 0.7093777 0.5293485 0.4701091 0.7062491 0 -0.2274026 0.9738008 0 0 1 0.1805791 0.6840363 0.706743 0.1801991 0.684208 0.7066737 0 0 1 0.04406592 0.7064589 0.706381 0 -0.2274026 0.9738008 0 0 1 0.046646 0.7063367 0.7063375 0 0.7071064 0.7071071 0 -0.2274026 0.9738009 0 0 1 0 0.7071064 0.7071071 0 0.7071064 0.7071071 0 -0.2274026 0.9738008 0 0 1 0 0.7071064 0.7071071 0 0.7071064 0.7071071 0 -0.2274026 0.9738008 0 0 1 0 0.7071064 0.7071071 0 0.7071064 0.7071071 0 -0.2274026 0.9738008 0 0 1 0 0.7071064 0.7071071 0 0.7071064 0.7071071 0 -0.2274025 0.9738008 0 0 1 0 0.7071064 0.7071071 0 0.7071064 0.7071071 0 -0.2274025 0.9738009 0 0 1 0 0.7071064 0.7071071 0 0.7071064 0.7071071 0 -0.2274026 0.9738008 0 0 1 0 0.7071064 0.7071071 0 0.7071064 0.7071071 0 -0.2274026 0.9738009 0 0 1 0 0.7071064 0.7071071 -0.04403962 0.7064204 0.7064211 0 -0.2274026 0.9738008 0 0 1 -0.04662598 0.7063801 0.7062954 -0.1798621 0.6842521 0.706717 0 -0.2274026 0.9738008 0 0 1 -0.1802339 0.6841729 0.7066989 -0.3493939 0.615281 0.7066494 0 -0.2274026 0.9738008 0 0 1 -0.3498228 0.614248 0.7073355 -0.421309 0.4485638 0.7882191 0 -0.2274026 0.9738008 0 0 1 0 0 1 -0.4949685 0.4784108 0.7253476 0 -0.2274026 0.9738008 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 -0.2274026 0.9738008 0 0 1 0 0 1 0 -0.2274026 0.9738008 0 0 1 0 0 1 0 -0.2274026 0.9738009 0 0 1 0 0 1 0 -0.2274026 0.9738008 0 0 1 0 0 1 0 -0.2274026 0.9738008 0 0 1 0 0 1 0.01309599 -0.2337711 0.9722034 0 0 1 0 0 1 0.06136737 -0.2316181 0.9708692 0 0 1 0 0 1 0.1195347 -0.2084997 0.9706901 0.1693574 -0.1697378 0.9708281 0 0 1 0.2803764 -0.3401638 0.8975955 0.2010545 -0.1256415 0.9714893 0.3390608 -0.2821831 0.8974467 0.1518809 -0.4139191 0.897554 0.22016 -0.3842182 0.8966081 0.07310043 -0.4349958 0.8974603 0.01860945 -0.442813 0.8964209 0 -0.4428896 0.8965762 0 -0.4428896 0.896576 0 -0.4428896 0.8965762 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428897 0.8965761 0 -0.4428897 0.8965761 0 -0.4428896 0.896576 0 -0.4428897 0.8965761 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428897 0.8965761 0 -0.4428896 0.896576 0 -0.4428897 0.8965761 0 -0.4428897 0.8965761 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.896576 0 -0.4428896 0.8965762 0 -0.4428896 0.896576 0 -0.4428896 0.8965762 0 -0.4428896 0.896576 -0.02325541 -0.4383731 0.8984922 -0.06622624 -0.4283672 0.9011745 0.2150163 -0.09677085 0.9718042 0.3843609 -0.2251871 0.8952973 -0.4986993 0.5015618 0.7069191 -0.5965929 0.3802004 0.7067705 -0.5973867 0.3608484 0.7161826 -0.6485475 0.2738592 0.7102023 0 0 1 -0.6947276 0.1920731 0.6931534 -0.6951942 0.1067931 0.7108446 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.2275233 -0.06524715 0.9715843 0.4199511 -0.1532607 0.8945123 0.2347164 -0.03044357 0.9715871 0.4398256 -0.07758059 0.894726 0 0 1 -0.6931943 -0.00326586 0.7207434 -0.7072962 -0.009135724 0.7068583 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.2354144 0.04188092 0.9709922 0.2377719 0.003110847 0.971316 0.4447014 0.00168831 0.8956773 0.4363397 0.07695822 0.8964849 0 0 1 -0.693458 -0.1341651 0.7078952 -0.6874359 -0.1990951 0.6984218 -0.6425286 -0.2976856 0.7060738 0.2253808 0.07683749 0.9712361 0.4180028 0.1516469 0.8956991 -0.6029717 -0.3571672 0.713342 -0.5919025 -0.3878649 0.7065495 0.1979336 0.1274936 0.9718887 0.3842002 0.2244938 0.8955405 0.3388878 0.2821698 0.8975162 -0.591902 -0.3878643 0.7065504 0.4986992 -0.5015615 0.7069195 0.5917422 -0.3881152 0.7065463 0.6026619 -0.3575929 0.7133905 0.6424215 -0.2977949 0.7061253 0 0 1 0.7467934 -0.157267 0.646194 0.6934109 -0.1342314 0.7079288 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.602971 -0.3571667 0.7133429 -0.6425278 -0.2976854 0.7060747 -0.6874355 -0.1990951 0.6984222 -0.6934579 -0.1341649 0.7078954 0 0 1 -0.6931946 -0.003265708 0.7207431 -0.7072969 -0.009135719 0.7068576 0 0 1 0.6948274 -0.004934375 0.7191596 0.7072979 -0.009301011 0.7068544 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.6951942 0.1067929 0.7108447 0.6952158 0.1066583 0.7108439 0.6947688 0.191781 0.6931929 0.6486307 0.2737268 0.7101774 -0.6947271 0.1920727 0.693154 -0.6485471 0.2738592 0.7102026 -0.5973865 0.3608488 0.7161826 -0.5965926 0.3802013 0.7067703 0.5976094 0.3604522 0.7161964 0.5967475 0.3799564 0.7067712 -0.4986992 0.5015614 0.7069195 -0.2360654 0.9715852 0.01718351 -0.156345 0.9876566 0.009521633 -0.05166928 0.9985505 0.01506594 -0.06036158 0.9978938 0.02375937 0 0.9997167 0.02380273 -0.3405178 0.9399251 0.02426029 -0.4661305 0.884563 0.01645264 -0.5034738 0.8637582 0.02087665 -0.6618302 0.7494675 0.01671034 -0.6353859 0.7719041 0.02118784 -0.7627856 0.6461952 0.02428902 -0.8230378 0.5677949 0.01475457 -0.8672182 0.4973609 0.0237614 -0.9357995 0.3520376 0.01867401 -0.9419997 0.3351482 0.01767068 -0.9922225 0.1233077 0.01701869 -0.9824208 0.1860716 0.01505442 -0.9996989 -1.0154e-4 0.02453996 -0.9924654 -0.1215471 0.01545221 -0.9833119 -0.1805422 0.02240727 -0.9351256 -0.3539277 0.01658991 -0.9399868 -0.3404106 0.02335571 -0.8671167 -0.4975383 0.02375333 -0.8230418 -0.5677891 0.01475751 -0.7626526 -0.6463518 0.02429512 -0.6615816 -0.7496801 0.01701859 -0.6344706 -0.7726856 0.02009986 -0.4664099 -0.88441 0.01675871 -0.5041172 -0.8634093 0.01975837 -0.3403783 -0.9399759 0.02424757 -0.2387721 -0.9709617 0.01487446 -0.1660097 -0.985858 0.02290946 -0.04293651 -0.9987947 0.02378084 -0.0429641 -0.9987935 0.02378075 -0.05698026 -0.9981745 0.02002675 0 -0.9997167 0.02380277 0 -0.9997167 0.02380273 4.95021e-9 -0.9997167 0.02380279 -0.06036162 -0.9978938 0.0237593 -0.239248 -0.9706666 0.02380292 -0.06036152 -0.9978938 0.02375933 -0.4645918 -0.885205 0.02380287 -0.6629348 -0.7482987 0.02380288 -0.8227503 -0.5679043 0.02380277 -0.9347515 -0.3545042 0.0238024 -0.9924278 -0.1205019 0.02380217 -0.9924278 0.1205019 0.02380248 -0.9347514 0.3545043 0.02380245 -0.8227504 0.5679043 0.02380278 -0.6629349 0.7482986 0.02380312 -0.4645918 0.885205 0.02380298 -0.06036148 0.9978938 0.02375932 -0.2392481 0.9706666 0.023803 3.64107e-9 0.9997167 0.02380277 -0.06036138 0.9978938 0.02375929 -0.2409989 -0.9704291 0.01367001 -0.1429959 -0.9858828 0.08710557 -0.05108464 -0.9985466 0.0171724 -0.05358084 -0.9985598 -0.002720668 -0.06036151 -0.9978938 0.02375916 9.17564e-9 -0.9999291 0.01190222 0 -1 0 -0.3445728 -0.9356915 0.07583602 -0.2217088 -0.9750873 -0.007069145 -0.4592156 -0.8880435 0.02235587 -0.5176629 -0.8545721 0.0416116 -0.4341019 -0.9008293 -0.007878851 -0.6669028 -0.74463 0.02769094 -0.6321704 -0.7743765 0.02648539 -0.6246915 -0.780853 -0.005389195 -0.7567751 -0.6498868 0.07027372 -0.8221716 -0.5691066 0.01231883 -0.869419 -0.4894624 0.06735837 -0.7808533 -0.6246911 -0.005389246 -0.9345279 -0.3545715 0.03060394 -0.9444779 -0.3277803 0.02283811 -0.9008293 -0.434102 -0.007878794 -0.9930407 -0.1165059 0.0172175 -0.9793961 -0.192742 0.06028086 -0.9755777 -0.2195944 -0.005145491 -0.9973807 -0.002996548 0.07226954 -0.9932071 0.1150162 0.0176343 -0.980644 0.1890791 0.05085599 -0.9999931 -0.002493954 -0.002733149 -0.9332842 0.357672 0.03242406 -0.9427663 0.3329881 0.01762619 -0.9750871 0.2217094 -0.007068857 -0.869419 0.4894624 0.06735836 -0.9008293 0.4341021 -0.0078788 -0.8221717 0.5691063 0.01231897 -0.7567751 0.6498868 0.07027365 -0.7808534 0.6246911 -0.005389259 -0.6662832 0.7451974 0.02733902 -0.6305061 0.7756395 0.02907977 -0.4597864 0.8877534 0.02214127 -0.5195224 0.8532627 0.04515739 -0.6246915 0.780853 -0.005389185 -0.3445728 0.9356915 0.07583602 -0.4341019 0.9008293 -0.007878851 -0.2429353 0.9699394 0.01414494 -0.1521752 0.9867995 0.05540285 -0.2195938 0.9755779 -0.005145749 -0.05315255 0.9981644 0.02902795 -0.04657981 0.9988754 0.008848227 6.60038e-9 0.9997167 0.02380278 0 0.9999292 0.01190222 -0.05607052 0.9984268 0 -0.06036142 0.9978938 0.02375929 -0.0603614 0.9978938 0.02375929 -0.06036149 -0.9978938 0.02375929 4.95021e-9 -0.9997167 0.02380277 3.53292e-9 0.9997167 0.0238028 0 -0.9997167 0.02380277 0 -0.9999292 0.01190222 0 -0.999874 0.0158695 0 -1 0 0 -0.9997167 0.02380277 0 -0.9997167 0.02380276 0 0 1 0 0 1 0 0 1 -1 0 0 -1 0 0 -1 0 0 0 0 1 -1 0 0 0 -0.999874 0.0158695 0 -1 0 0 -0.9997167 0.02380277 0 -0.9997167 0.02380276 0 0 1 0 0 1 0 0 1 0 -1 0 1 0 0 1 0 0 1 0 0 0 -0.9997167 0.02380277 0 -0.9997167 0.02380276 0 0 1 0 0 1 0 0 1 0 -0.9997167 0.02380277 -0.08741299 -0.9961721 1.27286e-4 0 0 1 0 0 1 0 -0.9997167 0.02380277 0 -0.9999292 0.01190222 -0.1305263 -0.9914448 2.07466e-8 -0.494886 -0.8689578 -5.99812e-4 -0.7185548 -0.6944028 -0.03851869 0 -0.9997167 0.02380277 0 -0.9999292 0.01190222 0 -1 0 0 -0.9997167 0.02380278 0 -0.9999292 0.01190222 0 -1 0 0 -0.9997167 0.02380277 0 -0.9999292 0.01190222 0 -1 0 0 -0.9997167 0.02380278 0 -0.9999292 0.01190222 0 -1 0 0 -0.9997167 0.02380278 0 -0.9999292 0.01190222 0 -1 0 0 -0.9997167 0.02380277 0 -0.9999292 0.01190222 0 -1 0 0 -0.9997167 0.02380278 0 -0.9999292 0.01190222 0 -1 0 0 -0.9997167 0.02380277 0 -0.9999292 0.01190222 0 -1 0 0 -0.9997167 0.02380277 0 -0.9999292 0.01190222 0 -1 0 0 -0.9997167 0.02380278 0 -0.9999292 0.01190222 0 -1 0 0 -0.9997167 0.02380277 0 -0.9999292 0.01190222 0 -1 0 0 -0.9997167 0.02380277 0 -0.9999292 0.01190222 0 -1 0 0 -0.9997167 0.02380278 0 -0.9999292 0.01190222 0 -1 0 0 -0.9997167 0.02380278 0 -0.9999292 0.01190222 0 -1 0 0 -0.9997167 0.02380278 0 -0.9999292 0.01190222 0 -1 0 0 -0.9997167 0.02380277 0 -0.9999292 0.01190222 0 -1 0 0 -0.9997167 0.02380278 0 -0.9999292 0.01190222 0 -1 0 0 -0.9997167 0.02380278 0 -0.9999292 0.01190222 0 -1 0 0 -0.9997167 0.02380277 0 -0.9999292 0.01190222 0 -1 0 0 -1 0 0 -0.9997167 0.02380279 0 -0.9997167 0.02380279 0 -0.9997167 0.02380279 0 -0.9997167 0.0238028 0 -0.9997167 0.0238028 0 -0.9997167 0.0238028 0 -0.9997167 0.0238028 0 -0.9997167 0.0238028 0 -0.9997167 0.0238028 0 -0.9997167 0.0238028 0 -0.9997167 0.0238028 0 -0.9997167 0.0238028 0 -0.9997167 0.0238028 0 -0.9997167 0.0238028 0 -0.9997167 0.0238028 0 -0.9997167 0.0238028 0 -0.9997167 0.0238028 0 -0.9997167 0.0238028 0 -0.9997167 0.0238028 0 -0.9997167 0.0238028 0 -0.9997167 0.0238028 0 -0.9997167 0.0238028 0 -0.9997167 0.0238028 0 -0.9997167 0.0238028 0 -0.9997167 0.02380277 0 -0.9997167 0.0238028 0 -0.9997167 0.02380276 0 -0.9997167 0.02380278 0 -0.9997167 0.0238028 0.09707317 -0.995204 0.01207584 0 -0.9997167 0.02380277 0 -0.9997167 0.0238028 0 -0.9999292 0.01190222 0 -0.9997167 0.02380277 0 -0.9997167 0.0238028 0 -0.9999292 0.01190222 0 -0.9997167 0.02380278 0 -0.9997167 0.0238028 0 -0.9999292 0.01190222 0 -0.9997167 0.02380277 0 -0.9997167 0.0238028 0 -0.9999292 0.01190222 0 -0.9997167 0.02380278 0 -0.9997167 0.0238028 0 -0.9999292 0.01190222 0 -0.9997167 0.02380277 0 -0.9997167 0.0238028 0 -0.9999292 0.01190222 0 -0.9997167 0.02380278 0 -0.9997167 0.0238028 0 -0.9999292 0.01190222 0 -0.9997167 0.02380277 0 -0.9997167 0.0238028 0 -0.9999292 0.01190222 0 -0.9997167 0.02380277 0 -0.9997167 0.0238028 0 -0.9999292 0.01190222 0 -0.9997167 0.02380277 0 -0.9997167 0.0238028 0 -0.9999292 0.01190222 0 -0.9997167 0.02380278 0 -0.9997167 0.0238028 0 -0.9999292 0.01190222 0 -0.9997167 0.02380278 0 -0.9997167 0.0238028 0 -0.9999292 0.01190222 0 -0.9997167 0.02380278 0 -0.9997167 0.0238028 0 -0.9999292 0.01190222 0 -0.9997167 0.02380278 0 -0.9997167 0.0238028 0 -0.9999292 0.01190222 0 -0.9997167 0.02380277 0 -0.9997167 0.0238028 0 -0.9999292 0.01190222 0 -0.9997167 0.02380277 0 -0.9997167 0.0238028 0 -0.9999292 0.01190222 0 -0.9997167 0.02380277 0 -0.9997167 0.0238028 0 -0.9999292 0.01190222 0 -0.9997167 0.02380277 0 -0.9997167 0.0238028 0 -0.9999292 0.01190222 0 -0.9997167 0.02380278 0 -0.9997167 0.0238028 0 -0.9999292 0.01190222 0 -0.9997167 0.02380278 0 -0.9997167 0.0238028 0 -0.9999292 0.01190222 0 -0.9997167 0.02380277 0 -0.9997167 0.0238028 0 -0.9999292 0.01190222 0 -0.9997167 0.02380277 0 -0.9997167 0.02380279 0 -0.9999292 0.01190222 -6.60038e-9 -0.9997167 0.02380278 0 -0.9997167 0.02380279 0.05315255 -0.9981644 0.02902795 0.06036143 -0.9978938 0.02375929 -3.60502e-9 -0.9997167 0.02380279 0.04657981 -0.9988754 0.008848228 0 -0.9999292 0.01190222 0.2429353 -0.9699394 0.01414494 0.0603614 -0.9978938 0.02375928 0.1521752 -0.9867995 0.05540286 0.05607051 -0.9984268 0 0.2195938 -0.9755779 -0.005145749 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0.143938 -0.9894761 -0.01479879 0.6943781 -0.7185731 -0.03862482 0 0 1 0 -0.9997167 0.02380277 0 -0.9997167 0.02380276 0 -0.9997167 0.02380277 0 -0.9997167 0.02380277 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380276 0 -0.9997167 0.02380277 0 -0.9997167 0.02380276 0.0603614 -0.9978938 0.02375929 -3.60502e-9 -0.9997167 0.02380277 0.2392481 -0.9706666 0.023803 0.06036148 -0.9978938 0.02375932 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0 -0.9997167 0.02380273 0.0603616 -0.9978938 0.02375937 0 -0.9997167 0.02380273 0.2360654 -0.9715852 0.01718351 0.05166929 -0.9985505 0.01506594 0.156345 -0.9876566 0.009521633 0.3405178 -0.9399251 0.02426029 0.4661305 -0.884563 0.01645264 0.5034738 -0.8637582 0.02087665 0.6618302 -0.7494674 0.01671034 0.6353858 -0.7719041 0.02118783 0.7627856 -0.6461952 0.02428902 0.8230379 -0.5677949 0.01475458 0.8672183 -0.4973609 0.02376144 0.9357996 -0.3520376 0.01867402 0.9419997 -0.3351483 0.01767068 0.9922225 -0.1233077 0.01701869 0.9824208 -0.1860716 0.01505441 0.9996989 1.01557e-4 0.02453996 0.9924654 0.1215471 0.01545221 0.983312 0.1805422 0.02240727 0.9351256 0.3539277 0.0165899 0.9399868 0.3404105 0.02335571 0.8671167 0.4975383 0.0237533 0.8230418 0.5677891 0.01475751 0.7626527 0.6463518 0.02429513 0.6615816 0.74968 0.0170186 0.6344706 0.7726855 0.02009987 0.4664099 0.88441 0.01675871 0.5041172 0.8634093 0.01975837 0.3403783 0.9399759 0.02424757 0.2387721 0.9709617 0.01487446 0.1660097 0.985858 0.02290946 0.04293651 0.9987947 0.02378084 0.0429641 0.9987935 0.02378075 0.05698026 0.9981745 0.02002675 0 0.9997167 0.02380276 0 0.9997167 0.02380273 -4.95021e-9 0.9997167 0.02380279 0.06036162 0.9978938 0.0237593 0.239248 0.9706666 0.02380292 0.06036152 0.9978938 0.02375933 0.4645918 0.885205 0.02380287 0.6629348 0.7482986 0.02380288 0.8227504 0.5679043 0.02380281 0.9347515 0.3545042 0.02380242 0.9924278 0.1205019 0.02380217 0.9924276 -0.1205019 0.02380248 0.9347514 -0.3545042 0.02380244 0.8227504 -0.5679042 0.02380274 0.6629349 -0.7482986 0.0238031 0.4645918 -0.885205 0.02380298 0.2409989 0.9704291 0.01367001 0.1429959 0.9858828 0.08710557 0.05108465 0.9985467 0.0171724 0.05358083 0.9985598 -0.002720667 0.06036151 0.9978938 0.02375916 -9.11604e-9 0.9999292 0.01190222 0 1 0 0.3445728 0.9356915 0.07583602 0.2217088 0.9750873 -0.007069144 0.4592156 0.8880435 0.02235587 0.5176629 0.8545721 0.0416116 0.4341019 0.9008293 -0.007878851 0.6669028 0.74463 0.02769095 0.6321704 0.7743765 0.02648539 0.6246915 0.7808531 -0.005389207 0.7567751 0.6498868 0.0702737 0.8221716 0.5691066 0.01231886 0.869419 0.4894624 0.06735835 0.7808533 0.6246912 -0.00538928 0.9345279 0.3545715 0.03060394 0.9444779 0.3277802 0.0228381 0.9008293 0.434102 -0.0078788 0.9930407 0.1165059 0.01721751 0.9793961 0.192742 0.06028092 0.9755777 0.2195944 -0.005145493 0.9973807 0.002996548 0.07226954 0.9932071 -0.1150162 0.01763428 0.980644 -0.1890791 0.05085594 0.9999931 0.002493954 -0.002733149 0.9332842 -0.357672 0.03242405 0.9427663 -0.3329881 0.01762619 0.9750871 -0.2217094 -0.007068855 0.869419 -0.4894624 0.06735837 0.9008293 -0.434102 -0.007878792 0.8221717 -0.5691063 0.01231894 0.7567751 -0.6498868 0.0702737 0.7808533 -0.6246911 -0.005389234 0.6662832 -0.7451974 0.02733902 0.630506 -0.7756395 0.02907978 0.4597864 -0.8877534 0.02214127 0.5195224 -0.8532627 0.04515739 0.6246915 -0.780853 -0.005389186 0.3445728 -0.9356915 0.07583602 0.4341019 -0.9008293 -0.007878851 0.06036149 0.9978938 0.02375929 -4.95021e-9 0.9997167 0.02380277 0 0.9997167 0.02380277 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380277 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380277 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380277 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380277 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380277 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380277 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380277 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380277 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380277 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380277 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380274 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.02380277 0 0.9997167 0.02380273 0 0.9997167 0.02380276 0 0.9997167 0.02380273 0 0.9997167 0.0238028 0 0.9997167 0.02380279 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.02380279 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.02380279 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.02380279 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.02380279 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.0238028 0 0.9997167 0.02380279 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380277 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380277 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380277 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380277 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380277 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380277 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380277 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380277 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380277 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380277 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380277 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380277 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380277 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380277 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380277 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380277 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 0.9997167 0.02380278 0 0.9999292 0.01190222 0 1 0 0 1 0 -0.1400244 0.9744179 -0.1757922 -0.05088351 0.998697 0.003881948 -0.05018057 0.9827833 -0.1778172 0 1 0 -0.2390931 0.9055467 -0.3504564 -2.8526e-8 0.9849342 -0.1729296 -0.06153728 0.9384087 -0.3400031 -0.2274072 0.9737962 -0.002620345 -0.0560705 0.9984268 0 0 1 0 -0.341022 0.92901 -0.1436812 -0.4319817 0.9018539 -0.00717129 -0.2225209 0.974928 0 -0.5100903 0.8480646 -0.1435069 -0.6207247 0.7840193 0.003813089 -0.4338833 0.9009691 0 -0.7495937 0.6389683 -0.1727099 -0.7840196 0.6207243 0.003813077 -0.6234896 0.7818316 0 -0.6293057 0.753938 -0.1885519 -0.8556554 0.497246 -0.1435278 -0.901854 0.4319815 -0.007170948 -0.781832 0.6234891 0 -0.9231139 0.3498597 -0.1595585 -0.9742877 0.2252821 -0.00335453 -0.900969 0.4338837 0 -0.9848403 -0.001849107 -0.1734539 -0.9999788 0.005195808 0.003899165 -0.9749278 0.2225214 0 -0.9789031 0.1425451 -0.146388 -0.9744176 -0.1400246 -0.1757939 -0.9737961 -0.227408 -0.002621982 -1 -2.3866e-9 0 -0.9290098 -0.3410221 -0.1436826 -0.901854 -0.4319815 -0.007170964 -0.9749278 -0.2225214 0 -0.8480651 -0.5100898 -0.1435057 -0.7840196 -0.6207243 0.003812844 -0.900969 -0.4338836 0 -0.6389681 -0.7495937 -0.1727104 -0.6207247 -0.7840193 0.003813054 -0.7818321 -0.6234891 0 -0.7539378 -0.6293061 -0.1885514 -0.4972465 -0.855655 -0.1435291 -0.4319817 -0.9018538 -0.007171299 -0.6234896 -0.7818316 0 -0.3498595 -0.9231142 -0.159557 -0.2252813 -0.974288 -0.003352917 -0.4338833 -0.9009691 0 -0.04832544 -0.9845778 -0.16814 -0.05607052 -0.9984268 0 -0.2225209 -0.974928 0 -0.1425446 -0.9789036 -0.1463865 0 -0.9849342 -0.1729297 -0.05607052 -0.9984268 0 0 -1 0 -0.05446395 -0.9367444 -0.3457509 -2.77439e-8 -0.9401907 -0.3406487 -0.2457124 -0.9037731 -0.3504563 -0.4629139 -0.8159675 -0.3462772 -0.6646801 -0.6598344 -0.3504556 -0.8088794 -0.475191 -0.3462767 -0.9055467 -0.2390933 -0.350456 -0.9381054 -0.007088652 -0.3462771 -0.9037732 0.2457125 -0.3504559 -0.8159682 0.4629133 -0.3462763 -0.6598344 0.6646799 -0.3504555 -0.4751917 0.8088788 -0.3462774 -0.05607052 -0.9984268 0 0 -1 0 -0.2225209 -0.974928 0 -0.4338833 -0.9009691 0 -0.6234896 -0.7818317 0 -0.781832 -0.6234891 0 -0.900969 -0.4338837 0 -0.9749278 -0.2225214 0 -1 0 0 -0.9749278 0.2225214 0 -0.900969 0.4338837 0 -0.781832 0.6234891 0 -0.6234896 0.7818316 0 -0.4338833 0.900969 0 -0.2225209 0.974928 0 -0.05607052 0.9984268 0 -0.2225209 0.974928 0 -0.05607052 0.9984268 0 0 1 0 -0.05607051 -0.9984268 0 0 -1 0 -0.2225209 -0.974928 0 -0.4338833 -0.9009691 0 -0.6234895 -0.7818317 0 -0.7818321 -0.6234891 0 -0.900969 -0.4338836 0 -0.9749278 -0.2225214 0 -1 0 0 -0.9749278 0.2225214 0 -0.900969 0.4338836 0 -0.781832 0.6234891 0 -0.6234896 0.7818316 0 -0.4338833 0.9009691 0 -0.2225209 0.974928 0 -0.05607051 0.9984268 0 0 1 0 -0.05607051 -0.9984268 0 0 -1 0 -0.2225209 -0.974928 0 -0.4338832 -0.9009691 0 -0.6234895 -0.7818317 0 -0.7818321 -0.6234891 0 -0.900969 -0.4338836 0 -0.9749278 -0.2225214 0 -1 0 0 -0.9749278 0.2225214 0 -0.900969 0.4338836 0 -0.7818321 0.6234891 0 -0.6234896 0.7818317 0 -0.4338833 0.9009691 0 0 1 0 0 -1 0 0 1 0 0 0.9849342 -0.1729297 -2.52633e-8 0.9401907 -0.3406487 -0.06153727 0.9384087 -0.3400031 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729297 0 0.9401907 -0.3406486 0 1 0 0 0.9849342 -0.1729297 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729297 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729297 0 0.9401907 -0.3406486 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406486 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729297 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729297 0 0.9401907 -0.3406486 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406486 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729297 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729297 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729297 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729297 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729297 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729297 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729297 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729297 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729297 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729297 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729297 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729297 0 0.9401907 -0.3406486 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406486 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729297 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729297 0 0.9401907 -0.3406486 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406486 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729297 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729296 0 0.9401907 -0.3406487 0 1 0 0 0.9849342 -0.1729297 0 0.9401907 -0.3406486 0.05607051 0.9984268 0 0.04832544 0.9845778 -0.16814 2.66283e-8 0.9401907 -0.3406487 0.2252813 0.974288 -0.003352917 0.1425446 0.9789036 -0.1463865 0.05446395 0.9367444 -0.3457509 0.05607051 0.9984268 0 0.2225209 0.974928 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.05607051 0.9984268 0 0 1 0 0.05607051 0.9984268 0 0.2225209 0.974928 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.05607051 0.9984268 0 0.2225209 0.974928 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.2225209 0.974928 0 0.1400244 -0.9744179 -0.1757922 0.05088351 -0.998697 0.003881948 0.05018057 -0.9827833 -0.1778172 0 -1 0 0.2390931 -0.9055467 -0.3504564 2.82798e-8 -0.9849342 -0.1729296 0.06153728 -0.9384087 -0.3400031 0.2274072 -0.9737962 -0.002620345 0.0560705 -0.9984268 0 0 -1 0 0.341022 -0.92901 -0.1436812 0.4319817 -0.9018539 -0.00717129 0.2225209 -0.974928 0 0.5100903 -0.8480646 -0.1435069 0.6207247 -0.7840194 0.003813068 0.4338833 -0.9009691 0 0.7495937 -0.6389683 -0.1727101 0.7840196 -0.6207243 0.003812852 0.6234896 -0.7818317 0 0.6293057 -0.753938 -0.1885519 0.8556555 -0.497246 -0.1435278 0.901854 -0.4319815 -0.00717097 0.781832 -0.6234891 0 0.9231139 -0.3498597 -0.1595586 0.9742877 -0.2252822 -0.003354527 0.900969 -0.4338835 0 0.9848403 0.001849112 -0.1734539 0.9999788 -0.005195808 0.003899165 0.9749278 -0.2225214 0 0.9789031 -0.1425451 -0.146388 0.9744176 0.1400246 -0.1757939 0.973796 0.227408 -0.002621958 1 2.3866e-9 0 0.9290098 0.3410221 -0.1436826 0.901854 0.4319815 -0.007170948 0.9749278 0.2225214 0 0.8480651 0.5100899 -0.1435056 0.7840196 0.6207243 0.003813059 0.900969 0.4338836 0 0.6389682 0.7495938 -0.1727104 0.6207247 0.7840193 0.003813067 0.7818321 0.6234891 0 0.7539378 0.6293061 -0.1885511 0.4972465 0.855655 -0.1435291 0.4319817 0.9018538 -0.007171299 0.6234896 0.7818316 0 0.3498595 0.9231142 -0.159557 0.4338833 0.9009691 0 0.2457124 0.9037731 -0.3504563 0.4629139 0.8159675 -0.3462772 0.6646799 0.6598344 -0.3504556 0.8088794 0.475191 -0.3462768 0.9055467 0.2390933 -0.350456 0.9381054 0.00708866 -0.3462771 0.9037732 -0.2457125 -0.3504559 0.8159682 -0.4629134 -0.3462763 0.6598344 -0.6646799 -0.3504555 0.4751916 -0.8088788 -0.3462773 0.4338833 0.9009691 0 0.6234896 0.7818316 0 0.7818321 0.6234891 0 0.900969 0.4338837 0 0.9749278 0.2225214 0 1 0 0 0.9749278 -0.2225214 0 0.900969 -0.4338837 0 0.781832 -0.6234891 0 0.6234896 -0.7818317 0 0.4338833 -0.900969 0 0.2225209 -0.974928 0 0.05607052 -0.9984268 0 0.2225209 -0.974928 0 0.05607052 -0.9984268 0 0 -1 0 0.4338833 0.9009691 0 0.6234896 0.7818317 0 0.7818321 0.6234891 0 0.900969 0.4338837 0 0.9749278 0.2225214 0 1 0 0 0.9749278 -0.2225214 0 0.900969 -0.4338836 0 0.781832 -0.6234891 0 0.6234896 -0.7818317 0 0.4338833 -0.9009691 0 0.2225209 -0.974928 0 0.05607051 -0.9984268 0 0 -1 0 0.4338832 0.9009691 0 0.6234896 0.7818317 0 0.7818321 0.6234891 0 0.900969 0.4338837 0 0.9749278 0.2225214 0 1 0 0 0.9749278 -0.2225214 0 0.900969 -0.4338836 0 0.781832 -0.6234891 0 0.6234895 -0.7818317 0 0.4338833 -0.9009691 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 -1 0 0 -1 0 0 -1 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 0 -1 0 0 -1 0 1 0 0 -1 0 0.9829183 -0.1834791 -0.01438933 1 0 0 1 0 0 0 0 -1 0 -1 0 0 -1 0 0 -1 0 0.9876884 -0.1564344 0 1 0 0 1 0 0 1 0 0 1 0 0 0 -1 0 -0.5877855 -0.8090168 0 -0.3090172 -0.9510565 0 -0.5877855 -0.8090168 0 1 0 0 1 0 0 0 -1 0 1 0 0 1 0 0 0 -1 0 0 -1 0 -1 0 0 -1 0 0 0 -1 0 0 -0.9849342 -0.1729297 0 -0.9849342 -0.1729296 0 -0.9401907 -0.3406487 0 -1 0 0.9876884 -0.1564344 0 1 0 0 1 0 0 0.9876884 -0.1564344 0 1 0 0 0 -1 0 0 -0.9849342 -0.1729297 0 -0.9401907 -0.3406487 0 -0.9401907 -0.3406487 0 -1 0 0 -0.9849342 -0.1729297 0 -0.9401907 -0.3406487 0 -1 0 0 -0.9849342 -0.1729296 0 -0.9401907 -0.3406487 0 -1 0 0 -0.9849342 -0.1729297 0 -0.9401907 -0.3406486 0 -1 0 0 -0.9849342 -0.1729296 0 -0.9401907 -0.3406487 0 -1 0 0 -0.9849342 -0.1729297 0 -0.9401907 -0.3406487 0 -1 0 0 -0.9849342 -0.1729297 0 -0.9401907 -0.3406486 0 -1 0 0 -0.9849342 -0.1729297 0 -0.9401907 -0.3406486 0 -1 0 0 -0.9849342 -0.1729296 0 -0.9401907 -0.3406487 0 -1 0 0 -0.9849342 -0.1729296 0 -0.9401907 -0.3406487 0 -1 0 0 -0.9849342 -0.1729297 0 -0.9401907 -0.3406487 0 -1 0 0 -0.9849342 -0.1729297 0 -0.9401907 -0.3406486 0 -1 0 0 -0.9849342 -0.1729296 0 -0.9401907 -0.3406487 0 -1 0 0 -0.9849342 -0.1729296 0 -0.9401907 -0.3406487 0 -1 0 0 -0.9849342 -0.1729297 0 -0.9401907 -0.3406487 0 -1 0 0 -0.9849342 -0.1729296 0 -0.9401907 -0.3406487 0 -1 0 0 -0.9849342 -0.1729297 0 -0.9401907 -0.3406487 0 -1 0 0 -0.9849342 -0.1729297 0 -0.9401907 -0.3406487 0 -1 0 0 -0.9849342 -0.1729297 0 -0.9401907 -0.3406487 0 -1 0 0 -0.9849342 -0.1729297 0 -0.9401907 -0.3406487 0 -1 0 0 -0.9849342 -0.1729297 0 -0.9401907 -0.3406487 0 -1 0 0 -0.9849342 -0.1729297 0 -0.9401907 -0.3406487 0 -1 0 0 -0.9401907 -0.3406487 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.9876884 -0.1564344 0 0.9876884 -0.1564344 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.09706632 -0.9952779 0 0 -1 0 0 -1 0 0.3090172 -0.9510565 0 -0.3090172 -0.9510565 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.143938 -0.9894761 0.01479878 0 -1 0 -0.6659542 -0.7454885 0.02741911 -0.1305263 -0.9914448 0 -0.4819043 -0.8759385 0.02236049 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 0 0 -0.1305263 -0.9914448 0 -0.5000001 -0.8660254 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 -0.5000001 -0.8660253 0 -1 0 0 1 0 0 0 -0.9849342 -0.1729297 0 -1 0 0 -0.9849342 -0.1729297 -0.9876884 -0.1564344 0 -1 0 0 -1 0 0 0 -0.9401907 -0.3406487 0 -0.9401907 -0.3406487 -0.9876884 -0.1564344 0 -1 0 0 0 -1 0 0 -1 0 -0.9876884 -0.1564344 0 -1 0 0 0 -1 0 0 -1 0 0 -0.9849342 -0.1729297 0 -1 0 0 -1 0 0 -0.9849342 -0.1729297 0 -1 0 0 -1 0 0 -0.9849342 -0.1729296 0 -1 0 0 -1 0 0 -0.9849342 -0.1729297 0 -1 0 0 -1 0 0 -0.9849342 -0.1729296 0 -1 0 0 -1 0 0 -0.9849342 -0.1729297 0 -1 0 0 -1 0 0 -0.9849342 -0.1729297 0 -1 0 0 -1 0 0 -0.9849342 -0.1729296 0 -1 0 0 -1 0 0 -0.9849342 -0.1729296 0 -1 0 0 -1 0 0 -0.9849342 -0.1729296 0 -1 0 0 -1 0 0 -0.9849342 -0.1729297 0 -1 0 0 -1 0 0 -0.9849342 -0.1729297 0 -1 0 0 -1 0 0 -0.9849342 -0.1729296 0 -1 0 0 -1 0 0 -0.9849342 -0.1729296 0 -1 0 0 -1 0 0 -0.9849342 -0.1729297 0 -1 0 0 -1 0 0 -0.9849342 -0.1729297 0 -1 0 0 -1 0 0 -0.9849342 -0.1729297 0 -1 0 0 -1 0 0 -0.9849342 -0.1729297 0 -1 0 0 -1 0 0 -0.9849342 -0.1729297 0 -1 0 0 -1 0 0 -0.9849342 -0.1729297 0 -1 0 0 -1 0 0 -0.9849342 -0.1729297 0 -1 0 0 -1 0 0 -0.9849342 -0.1729297 0 -1 0 0 -1 0 0 -1 0 0 -0.9401907 -0.3406487 0.06153727 -0.9384087 -0.3400031 2.639e-8 -0.9401907 -0.3406487 0 -0.9401907 -0.3406487 0 -0.9401907 -0.3406487 0 -0.9401907 -0.3406486 0 -0.9401907 -0.3406487 0 -0.9401907 -0.3406487 0 -0.9401907 -0.3406486 0 -0.9401907 -0.3406487 0 -0.9401907 -0.3406487 0 -0.9401907 -0.3406487 0 -0.9401907 -0.3406487 0 -0.9401907 -0.3406486 0 -0.9401907 -0.3406487 0 -0.9401907 -0.3406487 0 -0.9401907 -0.3406486 0 -0.9401907 -0.3406486 0 -0.9401907 -0.3406486 0 -0.9401907 -0.3406487 0 -0.9401907 -0.3406487 0 -0.9401907 -0.3406487 0 -0.9401907 -0.3406486 0 -0.9401907 -0.3406487 0 -0.9401907 -0.3406487 0.5877855 -0.8090168 0 0.3090172 -0.9510565 0 -0.9876884 -0.1564344 0 0.08739417 -0.9961025 0.01191497 0 -1 0 0 -1 0 0.1305263 -0.9914448 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 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 1 0 0 1 0 -0.9865208 -0.163434 -0.008131601 -1 0 0 0 0 -1 0 0 -1 0.4948859 -0.8689578 5.9977e-4 0.678212 -0.7335861 0.04335668 0.1305263 -0.9914448 0 0.5000001 -0.8660254 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.1305263 -0.9914448 0 0.5000001 -0.8660254 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0.4819042 -0.8759385 -0.02236055 0 0 -1 0 0 -1 0 0 -1 0.9860982 -0.165872 0.009846328 0.9483693 -0.3171681 0 0.9354454 -0.3520424 0.0317481 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 1 0 0 0 0 -1 0.3122343 -0.9499813 -0.006723498 0.4688957 -0.882523 0.03591753 0 -0.9982458 0.0592066 0.9503022 -0.3087719 0.03981866 0.5876494 -0.8088303 -0.0214877 0 0 -1 0 0 -1 -0.3122343 -0.9499813 -0.006723507 -0.4688957 -0.8825229 0.0359175 0 0 -1 0 0 -1 -0.9445899 -0.327888 0.01547854 -0.9220493 -0.3822362 0.06099583 -0.9562752 -0.290996 0.02931162 -0.5876494 -0.8088303 -0.02148771 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401904 -0.3406492 -0.9876884 -0.1564344 0 -1 0 0 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 0 -1 0 0 -1 0 -0.9401906 -0.3406489 0.06238737 -0.938359 -0.3399856 0 0 -1 0 0 -1 0.06152879 -0.9384093 -0.3400033 0.243261 -0.9081538 -0.3407064 0 0 -1 0 0 -1 0.2433533 -0.9081427 -0.3406698 0.4700155 -0.8142129 -0.3407973 0.06153547 -0.9384096 -0.3400013 0 0 -1 0 0 -1 0.4700961 -0.8142013 -0.3407138 0.6208851 -0.7062298 -0.3402073 0.6648195 -0.6649556 -0.3403661 0.711677 -0.615715 -0.3382467 0 0 -1 0 0 -1 0 0 -1 0.7956151 -0.5016793 -0.3395799 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 -0.8143488 -0.4700277 -0.3404554 -0.7088913 -0.6564776 -0.2578959 -0.6493053 -0.6932189 -0.3128103 0 0 -1 -0.8108096 -0.4878435 -0.3234137 -0.6647909 -0.6647947 -0.3407362 -0.4700129 -0.8142209 -0.3407816 -0.4700927 -0.8142002 -0.3407211 -0.2432695 -0.908157 -0.3406917 -0.2433555 -0.9081396 -0.3406767 -0.06239191 -0.9383602 -0.3399814 -0.06153726 -0.9384087 -0.3400032 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 -2.63442e-8 -0.9401906 -0.3406489 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 -0.9401904 -0.3406492 0 -0.9401906 -0.3406489 0 0 -1 0 0 -1 0 0 -1 0.06153726 0.9384087 -0.3400032 0.0623919 0.9383602 -0.3399814 0 0.9401904 -0.3406492 0 0 -1 0.2433555 0.9081396 -0.3406767 0.2432695 0.908157 -0.3406917 0 0 -1 0 0 -1 2.39546e-8 0.9401906 -0.3406489 0 0.9401905 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401905 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401905 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401905 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401905 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401905 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401905 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401905 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406493 0 0 -1 0 0 -1 0 0.9401906 -0.340649 0 0.9401905 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401904 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 0 0.9401905 -0.3406492 0 0 -1 0 0 -1 0 0.9401906 -0.3406489 -0.06238738 0.938359 -0.3399856 0 0 -1 0 0 -1 -0.06152879 0.9384093 -0.3400033 -0.243261 0.9081538 -0.3407064 0 0 -1 -0.2433533 0.9081427 -0.3406698 -0.4373283 0.8323311 -0.3405422 -0.06153546 0.9384096 -0.3400013 0 0 -1 -0.4697369 0.8154145 -0.3382995 -0.5813028 0.7514997 -0.3119859 0 0 -1 0 0 -1 0 0 -1 -0.6766459 0.6586961 -0.3290439 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.6660438 0.6646817 -0.3385025 0.5552025 0.7774404 -0.2955275 0.4564144 0.8288437 -0.3235802 0 0 -1 0.6826456 0.6465551 -0.340531 0.4700927 0.8142002 -0.3407211 0 0 -1 0.8137339 0.4739049 -0.3365282 0.8006133 0.4929999 -0.3405431 -0.6647568 0.6648731 -0.3406498 -0.8006597 0.4927967 -0.3407279 0 0 -1 0 0 -1 0 0 -1 -0.8138006 0.4738495 -0.336445 -0.8774179 0.3417748 -0.3366419 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.8774179 0.3417748 -0.3366419 0 0 -1 0.9110415 0.2429103 -0.3331637 0.9230269 0.1804311 -0.339803 -0.9109317 0.2408469 -0.334957 -0.9269655 0.1743568 -0.3321664 0 0 -1 0 0 -1 0 0 -1 -0.9417574 0.03133992 -0.3348295 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0.9410457 -0.002190042 -0.3382722 0.9462388 0.006772127 -0.3233978 0.9109996 -0.2414228 -0.334357 0.9511643 -0.09102759 -0.2949584 -0.9410519 9.14101e-4 -0.338261 -0.9413815 -0.1260615 -0.3129049 0 0 -1 -0.9153152 -0.2318869 -0.3292821 0 0 -1 0 0 -1 0.908307 -0.2426961 -0.3407008 0.8665499 -0.3716357 -0.333134 -0.9091659 -0.2426608 -0.3384276 -0.8693157 -0.396631 -0.2949137 0.8137959 -0.4741545 -0.3360265 -0.06153731 -0.9384087 -0.3400031 -0.06153733 -0.9384088 -0.3400031 0.06153731 0.9384087 -0.3400031 0.06153732 0.9384087 -0.3400031 -0.9876884 -0.1564344 0 0.9876884 -0.1564344 0 0.9876884 -0.1564344 0 0 0 1 0 0 1 0 0 1 0.06380899 -0.9979622 0 0.06385002 -0.9979591 0.001004523 0 -1 0 0 0 1 0.2146561 -0.9763965 0.02392879 0.2956532 -0.9550098 -0.02335246 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 0 -1 0 0 0 1 0 0 1 0 -1 0 -0.06537978 -0.9978604 0 0 0 1 0 0 1 -0.06534361 -0.9978625 9.28297e-4 -0.2299296 -0.9731065 0.01399897 -0.1879465 -0.9821359 0.009229979 -0.3365554 -0.8401986 -0.4252019 0 0 1 0 0 1 0 0 1 -0.4850257 -0.8744987 -0.001484513 -0.5321751 -0.846549 -0.01201802 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.1069752 -0.3628961 -0.9256688 0.1069752 -0.3628961 -0.9256688 0.1069752 -0.362896 -0.9256688 0 0 1 0 0 1 0.4828595 -0.8756424 0.009850168 0.5352836 -0.8445171 -0.01620262 0.4040512 -0.9134399 0.04868412 0.3763941 -0.9235781 -0.0730138 0 0 1 0.6962395 -0.7177886 0.005486447 0.7153029 -0.698812 0.001917779 0 0 1 0 0 1 -0.6717366 -0.7407386 0.00873482 -0.6840216 -0.7294208 0.007729652 -0.7438374 -0.6683574 -0.002119784 0 0 1 0 0 1 0 0 1 -0.8718352 -0.489789 -0.003181156 -0.8246166 -0.5655694 0.01178515 -0.8750761 -0.4839663 0.004316919 -0.629643 -0.4844023 -0.6073748 -0.629643 -0.4844022 -0.6073748 -0.629643 -0.4844022 -0.6073748 0 0 1 0 0 1 0 0 1 -0.6625761 -0.7489899 0.002649301 -0.722966 -0.6903715 0.02659763 -0.5538793 -0.8325161 -0.01160828 -0.809261 -0.587227 0.01615884 -0.8223819 -0.5687901 -0.01287551 -0.5362169 -0.8440802 -3.06891e-4 -0.3088011 -0.9511266 -1.8322e-4 -0.3092951 -0.9509662 -1.374e-4 6.23532e-5 -0.9999998 6.26297e-4 6.23529e-5 -0.9999998 6.26304e-4 0.3087386 -0.9511469 -1.35724e-4 0.3092328 -0.9509864 -1.84335e-4 0.5619192 -0.8271921 -2.14578e-4 0.5523943 -0.8333982 -0.01755124 0.7388026 -0.6676815 0.09149983 0 0 1 0.6473777 -0.759895 -0.05883433 0.8183388 -0.574432 0.01869491 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.3560646 -0.3199334 -0.8779867 0.3560646 -0.3199334 -0.8779867 0.3560646 -0.3199334 -0.8779867 0 0 1 0.8756538 -0.4829291 0.003135084 0.8825446 -0.470184 -0.006483558 0.8245718 -0.5655387 0.01572393 0.7920976 -0.6101152 -0.01846052 0 0 1 0.8260434 -0.3626162 -0.4314648 0.7872869 -0.3499486 -0.5076566 0.8100736 -0.5861681 -0.0137088 0.940472 -0.3384581 -0.03096113 0 0 1 0.9743901 -0.2172788 -0.0579129 0.9982301 -0.05256418 -0.02781688 0.8853179 -0.4600491 -0.06757943 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.9998792 -0.01347133 0.007746932 0.9999012 -0.01175733 0.007698077 0.9877723 -0.1554628 0.01171849 0.8077725 -0.1070652 0.5796902 0.3322685 0.00451007 -0.9431741 0.3322685 0.00451007 -0.9431741 0.3322685 0.00451007 -0.9431741 0.9914033 0.1307932 0.003558822 0.9988644 0.04245877 0.02161752 0.9966627 0.07993998 0.01652207 0.9927186 -0.1127609 -0.04236249 0 0 1 0 0 1 0.9796962 0.1955038 0.04442411 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.8132065 0.09186756 -0.5746787 0.8132066 0.09186757 -0.5746787 0.8132065 0.09186755 -0.5746787 0.9148877 0.265132 0.3044431 0.9148876 0.265132 0.3044431 0.9148876 0.265132 0.3044431 0 0 1 0.9475685 0.3180568 0.03088184 0.8938075 0.4419465 0.07610205 0 0 1 0 0 1 0.8206083 0.5713051 0.01457264 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.8537764 0.5206393 7.55173e-4 0.8598861 0.5104417 0.006715917 0.9021738 0.4313726 -2.94598e-4 0.7350874 0.3052856 -0.6053489 0.7350873 0.3052855 -0.6053489 0.7350874 0.3052855 -0.6053489 0.7379547 0.5786819 -0.3472033 0 0 1 0.829366 0.5584232 -0.01776238 0.6604269 0.7466475 0.07971022 0 0 1 0 0 1 0 0 1 0.7528739 0.6541865 -0.07225471 0.5623961 0.8266752 0.01785398 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.6692734 0.7426297 -0.02396421 0.6710466 0.7413509 0.009752389 0.5243941 0.851433 -0.008530856 0 0 1 0 0 1 0.569745 0.8218215 -1.86332e-4 0.3088012 0.9511266 -1.83119e-4 0 0 1 0.3092951 0.9509661 -1.374e-4 -6.23532e-5 0.9999998 6.26297e-4 0 0 1 0 0 1 -6.23529e-5 0.9999998 6.26304e-4 -0.3087386 0.951147 -1.35724e-4 0 0 1 0 0 1 -0.3092327 0.9509864 -1.84436e-4 -0.5448179 0.8385543 -2.76555e-4 0 0 1 0 0 1 -0.5580876 0.8296572 0.01439045 -0.6805805 0.7325132 0.015316 0 0 1 0 0 1 -0.7397007 0.6728942 -0.007502793 -0.8176661 0.5755385 -0.01333096 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.2572781 0.2469191 -0.9342585 -0.2572781 0.2469191 -0.9342585 -0.2572781 0.2469191 -0.9342585 0 0 1 -0.866524 0.4991044 0.005555574 -0.8746384 0.4847638 0.003415428 -0.8050607 0.5928534 0.02005134 -0.6962385 0.7177895 0.005473839 -0.7153032 0.6988115 0.001904136 -0.5278878 0.8492253 -0.01228752 -0.7920967 0.6101158 -0.01847528 -0.4682173 0.8834787 0.01542371 -0.2968546 0.9546639 -0.02223382 -0.214656 0.9763966 0.02392883 -0.06384999 0.997959 0.001004557 -0.06380897 0.9979622 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0.0653798 0.9978604 0 0.0653436 0.9978623 9.28264e-4 0.2936755 0.9557056 -0.01952729 0.4724734 0.8812668 0.01173734 0.2157477 0.976187 0.02262441 0 0 1 -0.5620919 0.268764 -0.7821884 -0.5620919 0.268764 -0.7821883 -0.5620919 0.268764 -0.7821884 -0.9232435 0.3840545 -0.01111138 -0.8322252 0.5542625 0.01394302 -0.9067398 0.4200481 0.03718112 0 0 1 -0.9521548 0.3039636 0.03173832 -0.9814564 0.1770737 0.0734044 0 0 1 0 0 1 0 0 1 0 0 1 -0.9146067 0.2650501 0.3053572 -0.9146067 0.26505 0.3053572 -0.9146068 0.2650501 0.3053573 0 0 1 -0.9985071 -0.04528481 -0.03054251 -0.9733043 0.0979901 -0.2075491 -0.8552916 0.1129996 -0.5056751 -0.8524102 0.1129806 -0.5105216 -0.9460146 0.03010773 0.3227229 0 0 1 -0.9987769 -0.02381408 0.04333181 0 0 1 -0.9982333 -0.05914675 0.005657781 -0.8442581 -0.1328752 0.5192036 -0.8442581 -0.1328752 0.5192036 -0.8442581 -0.1328752 0.5192036 -0.9914033 -0.1307932 0.003558331 -0.9990199 0.007092641 -0.04369102 -0.9448402 -0.3259166 -0.03248781 -0.8980598 -0.4389355 -0.02870848 -0.9359735 -0.04624771 -0.3490196 -0.9755574 -0.2069997 -0.07374966 -0.833885 -0.3467888 -0.4293871 -0.8309924 -0.345117 -0.4362864 0 0 1 0 0 1 0 0 1 -0.06380899 0.9979622 0 -0.06385002 0.9979591 0.001004523 0 1 0 0 0 1 0 0 1 0 0 1 -0.2146561 0.9763965 0.02392879 -0.2968546 0.9546638 -0.02223398 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 0 1 0 1 0 0.06537978 0.9978604 0 0 0 1 0 0 1 0 0 1 0.06534361 0.9978625 9.28297e-4 0.2936764 0.9557053 -0.01953311 0 0 1 0 0 1 0.472474 0.8812664 0.01174226 0.5243937 0.8514332 -0.008525127 0.2157465 0.9761873 0.02262108 0 0 1 0 0 1 0.6692733 0.7426299 -0.02395866 0.6710456 0.7413518 0.009758998 0 0 1 0.7379544 0.5786809 -0.3472055 0 0 1 0 0 1 0 0 1 0.853776 0.5206401 7.39582e-4 0.8598863 0.5104417 0.006699629 0.7528728 0.6541883 -0.07225184 0.6604276 0.7466471 0.07970981 0.5623965 0.8266749 0.01785387 0.8293658 0.5584235 -0.01776237 0.8206083 0.5713054 0.0145721 0.5697454 0.8218213 -1.86332e-4 0.3088011 0.9511266 -1.83119e-4 0.3092951 0.9509662 -1.374e-4 -6.23532e-5 0.9999998 6.26297e-4 -6.23529e-5 0.9999998 6.26304e-4 -0.3087386 0.951147 -1.35724e-4 -0.3092327 0.9509864 -1.84436e-4 -0.5448179 0.8385543 -2.76555e-4 -0.5580876 0.8296572 0.01439045 -0.6805805 0.7325132 0.015316 0 0 1 -0.7397007 0.6728942 -0.007502793 -0.8176661 0.5755385 -0.01333096 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0.7528739 0.6541865 -0.07225471 0.6604269 0.7466475 0.07971022 0.5623961 0.8266752 0.01785398 0.829366 0.5584232 -0.01776238 0.8206083 0.5713051 0.01457264 0.569745 0.8218216 -1.86228e-4 0.3088012 0.9511266 -1.82619e-4 0.3092948 0.9509662 -1.36828e-4 -6.22956e-5 0.9999998 6.26331e-4 -6.23025e-5 0.9999998 6.26339e-4 -0.3087387 0.9511468 -1.3517e-4 0 0 1 0 0 1 -0.3092326 0.9509864 -1.83846e-4 -0.5448174 0.8385547 -2.75517e-4 0 0 1 0 0 1 -0.558087 0.8296577 0.0143915 -0.6805798 0.7325138 0.01531681 0 0 1 0 0 1 -0.7397016 0.6728933 -0.007502385 -0.8176667 0.5755375 -0.01333008 -0.2572818 0.2469217 -0.9342569 -0.2572818 0.2469217 -0.9342568 -0.2572817 0.2469217 -0.9342568 0 0 1 0 0 1 -0.8665236 0.4991052 0.005547813 -0.8746384 0.484764 0.003407555 -0.8050606 0.5928538 0.02004372 -0.6962395 0.7177885 0.005486447 -0.7153029 0.698812 0.001917779 -0.527888 0.8492249 -0.01229717 -0.7920976 0.6101152 -0.01846052 -0.4682159 0.8834797 0.0154158 0 0 1 -0.5621024 0.2687681 -0.7821794 -0.5621024 0.2687681 -0.7821795 -0.5621024 0.2687681 -0.7821794 -0.9232431 0.3840552 -0.01111927 -0.8322262 0.5542609 0.01394441 -0.9067398 0.4200484 0.03718167 0 0 1 -0.9521547 0.303964 0.03173835 -0.9814563 0.1770746 0.07340372 0 0 1 0 0 1 -0.9146007 0.2650489 0.3053762 -0.9146007 0.2650489 0.3053762 -0.9146007 0.2650489 0.3053762 0 0 1 -0.9985069 -0.04528748 -0.03054481 -0.9733002 0.09799027 -0.2075682 -0.8552974 0.1130001 -0.5056652 -0.8524164 0.1129811 -0.510511 -0.94601 0.03010189 0.3227366 0 0 1 -0.9987767 -0.02381459 0.04333403 0 0 1 0 0 1 -0.9982331 -0.05915045 0.005657674 -0.8442551 -0.132875 0.5192086 -0.8442551 -0.132875 0.5192086 -0.8442551 -0.132875 0.5192086 -0.9914033 -0.1307932 0.003558331 0 0 1 -0.99902 0.007092509 -0.04368972 -0.9448404 -0.3259162 -0.03248563 0 0 1 0 0 1 0 0 1 -0.8980598 -0.4389358 -0.02870683 -0.8223817 -0.5687904 -0.01287405 -0.9359768 -0.04625073 -0.3490105 -0.9755577 -0.2069994 -0.0737462 -0.8718357 -0.4897884 -0.003164528 -0.8750758 -0.4839665 0.004333676 -0.8338891 -0.3467897 -0.4293783 -0.8309966 -0.345118 -0.4362776 -0.8246163 -0.5655692 0.01180098 0 0 1 -0.8092607 -0.5872273 0.01616024 -0.7229663 -0.6903711 0.02659834 0 0 1 0 0 1 0 0 1 -0.6625756 -0.7489904 0.002649885 -0.553879 -0.8325163 -0.01160766 -0.6717364 -0.7407389 0.008728319 -0.6840219 -0.7294205 0.007723024 -0.7438374 -0.6683574 -0.002126881 -0.6296431 -0.4844033 -0.6073738 -0.6296431 -0.4844033 -0.6073738 -0.6296431 -0.4844034 -0.6073738 -0.5321759 -0.8465484 -0.01202848 0 0 1 0 0 1 -0.5362158 -0.8440808 -3.05861e-4 -0.3088013 -0.9511266 -1.82619e-4 0 0 1 0 0 1 -0.3092949 -0.9509662 -1.36828e-4 6.22956e-5 -0.9999998 6.26331e-4 0 0 1 0 0 1 6.23025e-5 -0.9999998 6.26339e-4 0.3087388 -0.9511468 -1.3517e-4 0 0 1 0.3092327 -0.9509864 -1.83846e-4 0.5619192 -0.8271922 -2.14478e-4 0 0 1 0 0 1 0.5523943 -0.8333982 -0.01755124 0.7388026 -0.6676815 0.09149983 0 0 1 0 0 1 0 0 1 0.6473777 -0.759895 -0.05883433 0.8183388 -0.574432 0.01869491 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.6625761 -0.7489899 0.002649301 -0.722966 -0.6903715 0.02659763 -0.5538793 -0.8325161 -0.01160828 -0.809261 -0.587227 0.01615884 -0.8223819 -0.5687901 -0.01287551 0 0 1 0 0 1 -0.5362169 -0.8440802 -3.06891e-4 -0.3088011 -0.9511266 -1.8322e-4 0 0 1 0 0 1 -0.3092951 -0.9509662 -1.374e-4 6.23532e-5 -0.9999998 6.26297e-4 0 0 1 6.23529e-5 -0.9999998 6.26304e-4 0.3087386 -0.951147 -1.35724e-4 0 0 1 0 0 1 0.3092328 -0.9509864 -1.84335e-4 0.5619195 -0.827192 -2.14576e-4 0 0 1 0 0 1 0 0 1 0.5523944 -0.833398 -0.01755145 0.7388024 -0.6676819 0.0914981 0 0 1 0 0 1 0.6473777 -0.759895 -0.05883541 0.8183388 -0.574432 0.01869394 0.3560657 -0.3199344 -0.8779858 0.3560657 -0.3199344 -0.8779858 0.3560658 -0.3199344 -0.8779859 0 0 1 0 0 1 0.8756542 -0.4829285 0.003142964 0.8825446 -0.470184 -0.006475694 0.8245717 -0.5655386 0.01573179 0.6962385 -0.7177895 0.005473761 0.7153032 -0.6988115 0.001904136 0.5352834 -0.8445172 -0.01619805 0.7920967 -0.6101158 -0.01847528 0.4828599 -0.8756421 0.009854292 0.4040508 -0.9134399 0.04868815 0 0 1 0.1069781 -0.3629026 -0.9256659 0.1069781 -0.3629026 -0.9256659 0.1069781 -0.3629026 -0.9256659 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 -0.4850248 -0.8744991 -0.001493515 -0.3365546 -0.8401963 -0.4252073 0 0 1 -0.1879466 -0.9821359 0.009232474 -0.2299274 -0.973107 0.01400451 -0.0653436 -0.9978623 9.28264e-4 -0.0653798 -0.9978604 0 0.214656 -0.9763965 0.02392849 0.2956533 -0.9550098 -0.02335312 0.06384999 -0.997959 0.001004557 0.3763942 -0.923578 -0.0730148 0.06380897 -0.9979622 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0 1 0.8260376 -0.362614 -0.4314775 0.7872802 -0.349946 -0.507669 0.8100736 -0.5861679 -0.01370968 0.9404718 -0.3384584 -0.03096318 0 0 1 0.9743899 -0.2172791 -0.05791527 0.9982302 -0.05256006 -0.02781763 0.8853177 -0.4600492 -0.06758122 0 0 1 0 0 1 0.9998792 -0.01347117 0.007746927 0.9999012 -0.01175717 0.007698073 0.9877723 -0.1554625 0.01171848 0.8077803 -0.1070665 0.579679 0.332287 0.004512792 -0.9431675 0.332287 0.004512792 -0.9431675 0.332287 0.004512792 -0.9431675 0.9914033 0.1307932 0.003558822 0 0 1 0.9988642 0.04246102 0.02161684 0.9966626 0.07994266 0.01652087 0.9927188 -0.1127597 -0.04236372 0 0 1 0 0 1 0.9796964 0.1955034 0.04442326 0 0 1 0.8131988 0.0918652 -0.5746899 0.8131988 0.0918652 -0.5746899 0.8131989 0.0918652 -0.5746899 0.9148911 0.2651325 0.3044321 0.9148911 0.2651324 0.3044321 0.9148912 0.2651325 0.3044321 0.9475687 0.3180564 0.03088171 0.8938074 0.4419464 0.07610285 0.9021733 0.4313737 -3.11711e-4 0.7350785 0.3052825 -0.6053612 0.7350785 0.3052825 -0.6053612 0.7350785 0.3052825 -0.6053612 0 0 1 -0.9990199 0.007092641 -0.04369102 -0.9987769 -0.02381408 0.04333181 -0.9448402 -0.3259166 -0.03248781 0 0 1 0 0 1 -0.9521549 0.3039636 0.03173833 -0.9460146 0.03010773 0.3227229 -0.8980598 -0.4389355 -0.02870848 -0.9359735 -0.04624771 -0.3490196 -0.9755574 -0.2069997 -0.07374966 0 0 1 0 0 1 0 0 1 0 0 1 0.9743901 -0.2172788 -0.0579129 0.940472 -0.3384581 -0.03096113 0.9982301 -0.05256418 -0.02781688 0.8100736 -0.586168 -0.0137088 0.8853179 -0.4600491 -0.06757943 0.9988644 0.04245877 0.02161752 0.9966627 0.07993998 0.01652207 0.9927186 -0.1127609 -0.04236249 0 0 1 0.9796962 0.1955038 0.04442411 0 0 1 -0.9814564 0.1770737 0.0734044 -0.8322252 0.5542625 0.01394302 -0.9067398 0.4200481 0.03718112 0.9475685 0.3180569 0.03088184 0.8938075 0.4419465 0.07610205 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 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 0 0 -1 0 0 -1 0 0 0.007630181 0.009131004 0.9999292 -0.005043523 -0.00250686 0.9999841 0.001264186 0.4206676 0.9072139 -1 0 0 -1 0 0 0.01091256 -0.4952654 0.8686732 -0.004003793 -0.4130892 0.9106818 -1 0 0 -1 0 0 0.005426349 0.4908768 0.8712121 0.003669887 0.7195495 0.6944314 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.003274301 -0.3883564 -0.9215035 0.05206685 -0.1845764 -0.981438 0.02195937 -0.07560229 -0.9968963 -1 0 0 -1 0 0 0.01917884 -0.4289725 -0.9031139 0 0 -1 0 0 -1 -0.006028868 -0.09030505 -0.9958959 -1 0 0 0 0 -1 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.004117954 -0.7185421 0.6954713 -1 0 0 -1 0 0 0.01504315 0.8709713 0.4911036 -0.01269601 0.9308186 0.3652609 -1 0 0 -0.01319298 0.9998493 0.01128085 -1 0 0 -1 0 0 0.003336077 0.9999815 -0.005095061 0.003755854 0.9264696 -0.3763506 -1 0 0 0.01210413 0.8698962 -0.4930863 0.003669881 0.7195498 -0.6944312 -1 0 0 0.01099414 0.4952319 -0.8686912 -0.003352294 0.4172596 -0.9087812 -1 0 0 -1 0 0 -0.004320204 0.005445315 -0.9999759 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.01388874 -0.3850897 0.9227747 0.01132153 -0.2096383 0.9777135 0.001336746 -0.4142602 0.9101576 -1 0 0 0.008190677 -0.0910905 0.995809 0 -0.05394113 0.9985441 0.05260269 -0.5643451 0.8238614 0.02562243 -0.6335309 0.773293 -1 0 0 0.01103486 -0.706201 0.7079254 -0.004727798 -0.8132898 0.5818396 -1 0 0 -1 0 0 -1 0 0 -1 0 0 0.008786663 -0.7036036 -0.7105383 0.005600756 -0.6443807 -0.7646844 0.05384839 -0.5375389 -0.8415178 -0.004727771 -0.8132898 -0.5818395 0.007306452 -0.00886854 -0.999934 0.001451409 -0.4170885 -0.9088647 -1 0 0 -1 0 0 -1 0 0 0.005075396 -0.4911265 -0.8710735 0.00411795 -0.7185422 -0.6954712 -1 0 0 0 0 1 -1 0 0 0 0 1 -1 0 0 -1 0 0 0.01508845 -0.8711696 -0.4907502 -0.012696 -0.9308186 -0.365261 -1 0 0 -0.01319298 -0.9998493 -0.01128085 -1 0 0 0.003307051 -0.999982 0.005009592 0.003755841 -0.9264697 0.3763506 0.01167425 -0.8698797 0.4931257 0 0 -1 -0.9969229 -0.07227367 -0.03035175 0 0 -1 -0.9914448 -0.1305263 0 -0.9914448 -0.1305263 0 -0.9914448 -0.1305263 0 -0.9894807 -0.1439083 -0.01477763 -1 0 0 0 0 1 0 0 1 -0.9807853 -0.1950903 0 -0.868418 -0.495802 -0.005525408 -0.9683082 -0.2472586 -0.03524945 -0.8660254 -0.5000001 0 -0.8660253 -0.5000001 0 -0.875912 -0.4819562 -0.02227872 0.004268448 -0.9233794 0.3838649 0.01138745 -0.9567654 0.290638 0.00967426 -0.9999065 0.009662329 -0.009181175 -0.9999011 -0.01065954 -0.001887653 -0.9536725 -0.3008409 0.006213435 -0.9218563 -0.387482 1 0 0 1 0 0 1 0 0 -0.002160164 -6.47615e-4 0.9999975 0.006376502 0.009005683 0.9999391 0.005037268 -0.4084438 0.9127696 1 0 0 0.004649179 0.4880339 0.8728123 0.0120616 0.4058123 0.9138768 1 0 0 1 0 0 1 0 0 1 0 0 0.01206052 -0.4877729 0.8728873 0.03382529 -0.7141544 0.6991705 1 0 0 1 0 0 1 0 0 -0.01266827 -0.08368918 -0.9964114 0 0 -1 0 -0.05394113 -0.9985441 1 0 0 0 0 -1 -0.08446532 -0.2038744 -0.9753466 1 0 0 -0.01723619 -0.3782608 -0.9255386 -0.006176777 -0.4229284 -0.9061421 1 0 0 1 0 0 1 0 0 1 0 0 0.03469731 0.7147908 0.6984771 1 0 0 0.01048769 0.8692077 0.4943358 0.01709058 0.9331159 0.3591693 -0.188836 -0.5698829 -0.7997341 -0.0932548 -0.6005384 -0.7941392 1 0 0 0.004706527 -0.7076053 -0.7065923 -0.05551191 -0.8175587 -0.5731633 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.006121013 -0.7052364 0.7089458 -0.04134322 -0.6255967 0.7790504 -0.1806058 -0.5150015 0.8379469 -0.05551187 -0.8175587 0.5731633 1 0 0 -0.03380506 -0.4488138 0.8929857 -0.006295958 -0.3852654 0.9227843 -0.198105 -0.148869 0.9688098 1 0 0 1 0 0 1 0 0 -0.02723779 -0.08881433 0.9956757 1 0 0 0.01155405 0.4869699 -0.8733423 0.004082698 0.4131053 -0.9106741 0.03469721 0.7147909 -0.698477 -0.002677274 0.001208119 -0.9999957 0.007445454 -0.006662801 -0.9999502 0.004177959 0.871294 -0.4907434 0.05431695 0.9415799 -0.3323805 0.01950387 0.9995625 -0.0222341 0.004779004 0.9999673 -0.006515855 1 0 0 0.004874261 -0.488464 -0.8725705 0.01470196 -0.3997817 -0.9164925 0 0 1 0 0 1 0.004572249 -0.09369867 0.9955901 1 0 0 0 0 1 1 0 0 1 0 0 1 0 0 1 0 0 0.0338252 -0.7141544 -0.6991705 1 0 0 0.01044598 -0.8692091 -0.4943344 0.01709055 -0.9331159 -0.3591694 0 0 1 0.9842019 -0.1754198 -0.02396787 0.9914448 -0.1305262 0 1 0 0 1 0 0 0.9914448 -0.1305262 0 0.9914448 -0.1305262 0 1 0 0 0.9920517 -0.1256383 -0.006956249 1 0 0 0 0 -1 0 0 -1 0.9989017 -0.04685552 0 0 0 -1 0.004057616 -0.8712379 0.4908444 0.05431698 -0.9415799 0.3323804 0.01950387 -0.9995625 0.0222341 0.004702512 -0.9999682 0.006427549 0.9618834 -0.2731695 0.01260042 0.8689675 -0.4948687 -6.27025e-4 0.8660253 -0.5000001 0 0.8660253 -0.5000001 0 0.8662866 -0.4994535 -0.009676157 0.0019864 -0.9240788 0.3821967 -0.02700064 -0.9600815 0.2784145 0.00499895 -0.9247197 -0.3806158 -0.05432085 -0.9646578 -0.2578463 -0.01164236 -0.9998111 -0.01556041 0.001675571 -0.9999969 -0.0018544 0.02972399 0.3526943 -0.9352664 0.02003328 -0.02394271 -0.9995126 1 0 0 1 0 0 1 0 0 0.07300483 -0.32219 -0.9438559 1 0 0 0.05285543 0.7014982 -0.7107086 0.01947231 0.9995202 -0.02408631 0.1048099 0.9578224 -0.2675652 -0.004306479 0.8776193 -0.479339 0.07442801 0.9076862 0.4129966 0.2965903 0.8870957 0.3536882 0.05245012 0.7017653 0.7104748 0.02003328 0.02394271 0.9995126 0.07300483 0.32219 0.9438559 0.02972399 -0.3526943 0.9352664 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 -0.01373063 0.3641777 -0.9312282 -0.01365562 0.01186677 -0.9998363 -1 0 0 -1 0 0 -1 0 0 0.003563681 -0.3759235 -0.9266439 -1 0 0 -1 0 0 0.005078156 0.6989776 -0.7151256 -1 0 0 -0.03534323 0.8847728 -0.4646805 -1 0 0 -1 0 0 -0.06965698 0.9402664 -0.3332373 -1 0 0 -1 0 0 -0.01354194 0.999837 0.01193665 -1 0 0 -0.0261349 0.9560156 0.2921491 -1 0 0 -1 0 0 0.002564654 0.8718346 0.4897937 -1 0 0 0.00528165 0.699417 0.7146943 -1 0 0 -1 0 0 -1 0 0 0.003563681 0.3759235 0.9266439 -1 0 0 -0.01365562 -0.01186677 0.9998363 -1 0 0 -1 0 0 -0.01373063 -0.3641777 0.9312282 -1 0 0 0.05245012 -0.7017654 0.7104748 0.01947231 -0.9995202 0.02408631 0.1051119 -0.9579381 0.2670323 -0.004199861 -0.8787448 0.4772736 0.07369988 -0.9068733 -0.4149086 0.2984864 -0.8860876 -0.3546191 0.05285543 -0.7014982 -0.7107086 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0.005281647 -0.699417 0.7146943 -1 0 0 -0.03509836 -0.8855041 0.4633039 -1 0 0 -1 0 0 -0.06916203 -0.9406434 0.3322751 -1 0 0 -0.01354194 -0.999837 -0.01193665 -1 0 0 -0.02601806 -0.9558054 -0.2928466 -1 0 0 0.002491271 -0.8709409 -0.4913816 -1 0 0 0.005078154 -0.6989776 -0.7151256 -1 0 0 -0.07424763 -0.2481597 0.9658695 -0.01221678 -0.09469728 0.9954311 1 0 0 1 0 0 0 0 1 1 0 0 -0.08396254 -0.5699072 0.8174081 1 0 0 -0.1218258 -0.7967963 0.5918397 -0.2214928 -0.7971212 0.5617282 1 0 0 -0.07399583 -0.9569374 0.2807052 1 0 0 -0.2445613 -0.9431009 0.2252788 1 0 0 1 0 0 1 0 0 -0.02972985 -0.9987981 -0.03896914 -0.2861647 -0.9502463 -0.1230516 1 0 0 1 0 0 -0.02236883 -0.9482637 -0.3166947 1 0 0 -0.1227302 -0.8290558 -0.5455307 -0.06041932 -0.7828915 -0.6192176 -0.08372398 -0.5700527 -0.8173311 1 0 0 -0.04232573 -0.2708153 -0.9617004 1 0 0 0 -0.07852224 -0.9969123 1 0 0 0 0 -1 1 0 0 0.01238333 -0.2894276 -0.9571199 0.009967769 -0.08851856 -0.9960247 -1 0 0 -1 0 0 0 0 -1 -1 0 0 -0.004078358 -0.5821435 -0.8130759 -1 0 0 0.02747396 -0.7753352 -0.6309521 0.04537329 -0.8339131 -0.5500274 -1 0 0 0.02241823 -0.9447444 -0.3270403 -1 0 0 0.05578469 -0.9775409 -0.2032286 -1 0 0 -1 0 0 -1 0 0 0.02406645 -0.9994126 0.02439704 0.07019307 -0.9851238 0.1568573 -1 0 0 -1 0 0 2.48017e-4 -0.9388539 0.3443157 -1 0 0 0.01786783 -0.8422283 0.5388249 0.006620771 -0.7659037 0.6429212 -0.003943424 -0.581884 0.8132622 -1 0 0 -0.001445882 -0.3001284 0.9538977 -1 0 0 0 -0.07852234 0.9969123 -1 0 0 0 0 1 -1 0 0 -1 0 0 -1 0 0 0 0 -1 0 0 -1 -0.9807585 -0.1952246 0 -1 0 0 -0.9807587 -0.1952244 0 0 0 -1 0 0 -1 0 0 -1 -0.9326661 -0.3604099 -0.01544197 0 0 -1 0 0 -1 -0.3109022 -0.9504011 0.008812641 -0.445047 -0.8948442 -0.03445244 0 -0.9988639 -0.04765363 -0.9507349 -0.3089125 -0.02600396 -0.587723 -0.8089317 0.01452882 0 0 -1 0.3109022 -0.9504011 0.008812641 0.445047 -0.8948442 -0.03445244 0 0 -1 0.9464777 -0.3226836 -0.007422923 0.9230163 -0.3826216 -0.04051577 0 0 -1 0.5877231 -0.8089316 0.01452883 -0.9468312 0.3213756 0.0151111 -0.9237748 0.382936 0 -0.931957 0.3623458 0.01271549 -0.9468868 -0.3215092 0.006104248 -0.9231603 -0.3826813 0.0364698 -0.9315633 -0.3626181 0.02642154 -0.9510565 -0.3090171 0 -0.3106662 0.9504787 -0.00876292 -0.4396864 0.8975412 0.03310095 0 0.9990115 0.04445454 -0.9507977 0.308933 0.02332824 -0.5877348 0.808947 -0.01313564 0.3106662 0.9504786 -0.008762917 0.4396864 0.8975412 0.03310096 0.9468868 0.3215092 0.006104248 0.9231603 0.3826813 0.0364698 0.9315633 0.3626181 0.02642154 0.5877349 0.808947 -0.01313564 0.9468312 -0.3213756 0.0151111 0.9237748 -0.382936 0 0.931957 -0.3623458 0.01271549 0.9510565 0.3090171 0 0.3106662 -0.9504787 -0.008762918 0.4396864 -0.8975412 0.03310096 0 -0.9990115 0.04445454 0.9507977 -0.308933 0.02332824 0.5877349 -0.8089469 -0.01313564 -0.3106662 -0.9504786 -0.008762919 -0.4396864 -0.8975412 0.03310095 -0.5877348 -0.808947 -0.01313564 -0.9510565 -0.309017 0 -0.9510565 -0.3090169 0 0.9510565 -0.309017 0 0.9510565 -0.3090169 0 0.5877852 -0.8090171 0 0.3090169 -0.9510565 0 -0.3090169 -0.9510566 0 -0.5877852 -0.8090171 0 0.5877852 -0.8090171 0 0.3090169 -0.9510565 0 -0.3090169 -0.9510565 0 -0.5877852 -0.8090171 0 0 0 -1 0 0 -1 0 0 -1 -0.9451226 0.3264624 -0.0128687 -0.9223815 0.3823584 -0.05490559 -0.9345184 0.3543195 -0.03366132 0 0 -1 -0.9510565 0.3090171 0 -0.9347616 -0.3542836 -0.02652923 -0.945217 -0.3259118 -0.01860845 -0.9237748 -0.382936 0 0 0 -1 0 0 -1 0 0 -1 -0.3118506 0.9500998 0.00771597 0 0.9984006 -0.05653388 -0.462528 0.8858579 -0.03638107 -0.5876752 0.8088649 0.01937818 0.3118507 0.9500998 0.007715968 0.462528 0.8858579 -0.03638108 0.945217 0.3259118 -0.01860845 0.9237748 0.382936 0 0.9347616 0.3542836 -0.02652923 0.9504519 0.3088207 -0.03565137 0.5876752 0.8088649 0.01937818 0.9451226 -0.3264624 -0.0128687 0.9345184 -0.3543195 -0.03366132 0.9510565 -0.3090171 0 0.9223815 -0.3823584 -0.05490559 0.9510565 0.3090171 0 0.9510565 -0.3090171 0 0.9510565 -0.3090172 0 0.5877855 0.8090168 0 0.9510565 0.3090172 0 0.3090172 0.9510565 0 -0.3090172 0.9510565 0 -0.9510565 0.3090171 0 -0.5877855 0.8090168 0 -0.9510565 0.3090172 0 -0.9504519 -0.3088207 -0.03565137 -0.9510565 -0.3090171 0 -0.9510565 0.3090171 0 -0.9510565 -0.3090171 0 -0.9510565 -0.3090172 0 -0.5877855 0.8090168 0 -0.9510565 0.3090171 0 -0.3090172 0.9510565 0 0.3090172 0.9510565 0 0.9510565 0.3090171 0 0.5877856 0.8090167 0 0.9510565 0.3090171 0 0.9510565 -0.3090172 0 0.9510565 -0.3090171 0 -0.9510565 -0.3090171 0 0 0 -1 0.3118507 -0.9500998 0.007715966 0 -0.9984006 -0.05653388 0.462528 -0.8858579 -0.03638109 0.5876752 -0.8088649 0.01937817 -0.3118506 -0.9500998 0.00771597 -0.462528 -0.8858579 -0.03638107 -0.5876752 -0.8088649 0.01937818 0.5877856 -0.8090167 0 + + + + + + + + + + 0.2584759 0.4960749 0 0.2618952 0.5036343 0 0.2528277 0.5036343 0 0.2528277 0.5097908 0 0.2499261 0.4960749 0 0.2448628 0.5025979 0 0.2464394 0.5092402 0 0.2670257 0.4960749 0 0.2709628 0.5036343 0 0.2618952 0.5097908 0 0.2755755 0.4960749 0 0.2800303 0.5036343 0 0.2709628 0.5097908 0 0.2841254 0.4960749 0 0.2890979 0.5036343 0 0.2800303 0.5097908 0 0.2926752 0.4960749 0 0.2981654 0.5036343 0 0.2890979 0.5097908 0 0.301225 0.4960749 0 0.307233 0.5036343 0 0.2981654 0.5097908 0 0.3097749 0.4960749 0 0.3163005 0.5036343 0 0.307233 0.5097908 0 0.3183247 0.4960749 0 0.325368 0.5036343 0 0.3163005 0.5097908 0 0.3310708 0.4992696 0 0.3344357 0.5036343 0 0.325368 0.5097908 0 0.326724 0.4962721 0 0.3385778 0.5023268 0 0.3435032 0.5036343 0 0.3344357 0.5097908 0 0.3463697 0.5033301 0 0.3525707 0.5036343 0 0.3435032 0.5097908 0 0.3553268 0.5033301 0 0.3616383 0.5036343 0 0.3525707 0.5097908 0 0.3642838 0.5033301 0 0.3707059 0.5036343 0 0.3616383 0.5097908 0 0.3732409 0.5033301 0 0.3797734 0.5036343 0 0.3707059 0.5097908 0 0.3821979 0.5033301 0 0.388841 0.5036343 0 0.3797734 0.5097908 0 0.3911549 0.5033301 0 0.3979085 0.5036343 0 0.388841 0.5097908 0 0.400112 0.5033301 0 0.406976 0.5036343 0 0.3979085 0.5097908 0 0.4090691 0.5033301 0 0.4160437 0.5036343 0 0.406976 0.5097908 0 0.4180261 0.5033301 0 0.4251111 0.5036343 0 0.4160437 0.5097908 0 0.4269832 0.5033301 0 0.4341788 0.5036343 0 0.4251111 0.5097908 0 0.4422998 0.4992595 0 0.4432463 0.5036343 0 0.4341788 0.5097908 0 0.4347886 0.502323 0 0.4466292 0.496272 0 0.4523139 0.5036343 0 0.4432463 0.5097908 0 0.4548988 0.4960749 0 0.4613814 0.5036343 0 0.4523139 0.5097908 0 0.46332 0.4960749 0 0.470449 0.5036343 0 0.4613814 0.5097908 0 0.4717412 0.4960749 0 0.4795166 0.5036343 0 0.470449 0.5097908 0 0.4885837 0.4960749 0 0.4885841 0.5036343 0 0.4795166 0.5097908 0 0.4801625 0.4960749 0 0.4970048 0.4960749 0 0.4976516 0.5036343 0 0.4885841 0.5097908 0 0.5054262 0.4960749 0 0.5067192 0.5036343 0 0.4976516 0.5097908 0 0.5138474 0.4960749 0 0.5157868 0.5036343 0 0.5067192 0.5097908 0 0.5222687 0.4960749 0 0.5248543 0.5036343 0 0.5157868 0.5097908 0 0.5305392 0.4962721 0 0.5339218 0.5036343 0 0.5248543 0.5097908 0 0.5423931 0.5023268 0 0.5429895 0.5036343 0 0.5339218 0.5097908 0 0.534886 0.4992696 0 0.550185 0.5033301 0 0.552057 0.5036343 0 0.5429895 0.5097908 0 0.559142 0.5033301 0 0.5611246 0.5036343 0 0.552057 0.5097908 0 0.568099 0.5033301 0 0.5701921 0.5036343 0 0.5611246 0.5097908 0 0.5770562 0.5033301 0 0.5792596 0.5036343 0 0.5701921 0.5097908 0 0.5860132 0.5033301 0 0.5883272 0.5036343 0 0.5792596 0.5097908 0 0.5949702 0.5033301 0 0.5973947 0.5036343 0 0.5883272 0.5097908 0 0.6039274 0.5033301 0 0.6064624 0.5036343 0 0.5973947 0.5097908 0 0.6128844 0.5033301 0 0.6155299 0.5036343 0 0.6064624 0.5097908 0 0.6218414 0.5033301 0 0.6245973 0.5036343 0 0.6155299 0.5097908 0 0.6307986 0.5033301 0 0.6336651 0.5036343 0 0.6245973 0.5097908 0 0.6386039 0.502323 0 0.6427325 0.5036343 0 0.6336651 0.5097908 0 0.6504444 0.496272 0 0.6518 0.5036343 0 0.6427325 0.5097908 0 0.6461151 0.4992595 0 0.6588428 0.4960749 0 0.6608677 0.5036343 0 0.6518 0.5097908 0 0.6673927 0.4960749 0 0.6699352 0.5036343 0 0.6608677 0.5097908 0 0.6759427 0.4960749 0 0.6790026 0.5036343 0 0.6699352 0.5097908 0 0.6844926 0.4960749 0 0.6880703 0.5036343 0 0.6790026 0.5097908 0 0.6930425 0.4960749 0 0.6971378 0.5036343 0 0.6880703 0.5097908 0 0.7015926 0.4960749 0 0.7062052 0.5036343 0 0.6971378 0.5097908 0 0.7101425 0.4960749 0 0.715273 0.5036343 0 0.7062052 0.5097908 0 0.7186925 0.4960749 0 0.7243406 0.5036343 0 0.715273 0.5097908 0 0.7272425 0.4960749 0 0.7323021 0.5025989 0 0.7243406 0.5097908 0 0.7357924 0.4960749 0 0.7398335 0.4995116 0 0.7369792 0.5075865 0 0.7307253 0.5092408 0 0.7444832 0.4962534 0 0.7428925 0.5048556 0 0.743094 0.4869397 0 0.7519014 0.4870337 0 0.7463313 0.4945588 0 0.7482567 0.5011255 0 0.734563 0.4869397 0 0.726032 0.4869397 0 0.717501 0.4869397 0 0.7089701 0.4869397 0 0.7004392 0.4869397 0 0.6919081 0.4869397 0 0.6833771 0.4869397 0 0.6748463 0.4869397 0 0.6663152 0.4869397 0 0.6525985 0.4943174 0 0.6580178 0.4870291 0 0.6575208 0.4879222 0 0.6447619 0.4968832 0 0.6506664 0.4923798 0 0.6379204 0.4996761 0 0.6307986 0.5005924 0 0.6218414 0.5005924 0 0.6128844 0.5005924 0 0.6039274 0.5005924 0 0.5949702 0.5005924 0 0.5860132 0.5005924 0 0.5770562 0.5005924 0 0.568099 0.5005924 0 0.559142 0.5005924 0 0.550185 0.5005924 0 0.5430762 0.4996795 0 0.4811184 0.5879478 0 0.5362386 0.496893 0 0.5283978 0.49433 0 0.5145484 0.4869397 0 0.5234703 0.4879352 0 0.522966 0.4870302 0 0.5058943 0.4869397 0 0.49724 0.4869397 0 0.4885859 0.4869397 0 0.4799317 0.4869397 0 0.4712774 0.4869397 0 0.4626232 0.4869397 0 0.4487832 0.4943174 0 0.4537055 0.4879222 0 0.4542026 0.4870291 0 0.4409468 0.4968832 0 0.4468511 0.4923798 0 0.4341051 0.4996761 0 0.4269832 0.5005924 0 0.4180261 0.5005924 0 0.4090691 0.5005924 0 0.400112 0.5005924 0 0.3911549 0.5005924 0 0.3821979 0.5005924 0 0.3732409 0.5005924 0 0.3642838 0.5005924 0 0.3553268 0.5005924 0 0.3463697 0.5005924 0 0.4859571 0.5907141 0 0.3392609 0.4996795 0 0.3324233 0.496893 0 0.3245825 0.49433 0 0.310856 0.4869397 0 0.319655 0.4879352 0 0.3191509 0.4870302 0 0.3023246 0.4869397 0 0.2937932 0.4869397 0 0.2852618 0.4869397 0 0.2767304 0.4869397 0 0.268199 0.4869397 0 0.2596676 0.4869397 0 0.2511362 0.4869397 0 0.2413762 0.4960749 0 0.2426048 0.4869397 0 0.2373296 0.4995087 0 0.2326852 0.4962535 0 0.2340734 0.4869397 0 0.2289048 0.50112 0 0.2308325 0.4945546 0 0.2242738 0.4965106 0 0.2401828 0.5075843 0 0.2342686 0.5048515 0 0.4783522 0.5907141 0 0.2258506 0.4880877 0 0.3265145 0.4923924 0 0.3220232 0.4865615 0 0.3160035 0.4780364 0 0.3192004 0.4797757 0 0.3083999 0.4778045 0 0.2998686 0.4778045 0 0.2913373 0.4778045 0 0.2828058 0.4778045 0 0.2742745 0.4778045 0 0.2657431 0.4778045 0 0.2572117 0.4778045 0 0.2486803 0.4778045 0 0.2401489 0.4778045 0 0.2252667 0.4870332 0 0.2316175 0.4778045 0 0.2205201 0.4911696 0 0.2233637 0.4826546 0 0.2177547 0.4852579 0 0.22215 0.4780314 0 0.2160606 0.4789534 0 0.3154949 0.4724617 0 0.3182311 0.4724623 0 0.3079808 0.4686694 0 0.3157482 0.4684953 0 0.2994492 0.4686694 0 0.2909175 0.4686694 0 0.2823859 0.4686694 0 0.2738542 0.4686694 0 0.2653226 0.4686694 0 0.2567909 0.4686694 0 0.2482593 0.4686694 0 0.2397276 0.4686694 0 0.231196 0.4686694 0 0.2218999 0.4684976 0 0.221647 0.4724511 0 0.4859571 0.5899536 0 0.2154905 0.4724494 0 0.3104325 0.4595342 0 0.3184162 0.4593426 0 0.3191961 0.4651478 0 0.3019014 0.4595342 0 0.2933703 0.4595342 0 0.2848393 0.4595342 0 0.2763082 0.4595342 0 0.2677771 0.4595342 0 0.2592461 0.4595342 0 0.250715 0.4595342 0 0.2421839 0.4595342 0 0.2336529 0.4595342 0 0.2245364 0.4593458 0 0.2228669 0.4638211 0 0.2160621 0.4659455 0 0.2177576 0.4596415 0 0.3162726 0.4503991 0 0.3196475 0.4569852 0 0.3220153 0.4583595 0 0.3077252 0.4503991 0 0.2991776 0.4503991 0 0.2906302 0.4503991 0 0.2820827 0.4503991 0 0.2735353 0.4503991 0 0.2649878 0.4503991 0 0.2564403 0.4503991 0 0.2478929 0.4503991 0 0.2393454 0.4503991 0 0.2307917 0.4503935 0 0.2258534 0.4568148 0 0.2205243 0.4537305 0 0.2242793 0.4483902 0 0.3245698 0.4505898 0 0.3265019 0.4525275 0 0.3247942 0.4503687 0 0.3163005 0.441273 0 0.325368 0.441273 0 0.3310532 0.4456478 0 0.3324061 0.4480241 0 0.307233 0.441273 0 0.2981654 0.441273 0 0.2890979 0.441273 0 0.2800303 0.441273 0 0.2709628 0.441273 0 0.2618952 0.441273 0 0.2528277 0.441273 0 0.2448661 0.4423084 0 0.2373347 0.4453957 0 0.2342758 0.4400516 0 0.2289115 0.4437817 0 0.2401889 0.4373207 0 0.3344357 0.441273 0 0.3385643 0.4425843 0 0.3392479 0.4452312 0 0.3435032 0.441273 0 0.3463697 0.4415772 0 0.3525707 0.441273 0 0.3553268 0.4415772 0 0.3463697 0.444315 0 0.3616383 0.441273 0 0.3642838 0.4415772 0 0.3553268 0.444315 0 0.3707059 0.441273 0 0.3732409 0.4415772 0 0.3642838 0.444315 0 0.3797734 0.441273 0 0.3821979 0.4415772 0 0.3732409 0.444315 0 0.388841 0.441273 0 0.3911549 0.4415772 0 0.3821979 0.444315 0 0.3979085 0.441273 0 0.400112 0.4415772 0 0.3911549 0.444315 0 0.406976 0.441273 0 0.4090691 0.4415772 0 0.400112 0.444315 0 0.4160437 0.441273 0 0.4180261 0.4415772 0 0.4090691 0.444315 0 0.4251111 0.441273 0 0.4269832 0.4415772 0 0.4180261 0.444315 0 0.4341788 0.441273 0 0.4347751 0.4425804 0 0.4269832 0.444315 0 0.4432463 0.441273 0 0.4422821 0.4456376 0 0.4340921 0.4452278 0 0.4485605 0.4503705 0 0.4409297 0.4480143 0 0.4523139 0.441273 0 0.4574361 0.4503991 0 0.4487704 0.4505773 0 0.4613814 0.441273 0 0.466336 0.4503991 0 0.4629358 0.4595342 0 0.4549365 0.4593418 0 0.4536979 0.456972 0 0.470449 0.441273 0 0.475236 0.4503991 0 0.4714848 0.4595342 0 0.4795166 0.441273 0 0.4841358 0.4503991 0 0.4800338 0.4595342 0 0.4885841 0.441273 0 0.4930357 0.4503991 0 0.4885828 0.4595342 0 0.4976516 0.441273 0 0.5019357 0.4503991 0 0.4971318 0.4595342 0 0.5067192 0.441273 0 0.5108355 0.4503991 0 0.5056808 0.4595342 0 0.5157868 0.441273 0 0.5197355 0.4503991 0 0.5142298 0.4595342 0 0.5248543 0.441273 0 0.5286094 0.4503687 0 0.528385 0.4505898 0 0.5222313 0.4593426 0 0.5234627 0.4569852 0 0.5339218 0.441273 0 0.5348684 0.4456478 0 0.5362214 0.4480241 0 0.5303171 0.4525275 0 0.5429895 0.441273 0 0.5423795 0.4425843 0 0.5430632 0.4452312 0 0.550185 0.4415772 0 0.552057 0.441273 0 0.559142 0.4415772 0 0.550185 0.444315 0 0.5611246 0.441273 0 0.568099 0.4415772 0 0.559142 0.444315 0 0.5701921 0.441273 0 0.5770562 0.4415772 0 0.568099 0.444315 0 0.5792596 0.441273 0 0.5860132 0.4415772 0 0.5770562 0.444315 0 0.5883272 0.441273 0 0.5949702 0.4415772 0 0.5860132 0.444315 0 0.5973947 0.441273 0 0.6039274 0.4415772 0 0.5949702 0.444315 0 0.6064624 0.441273 0 0.6128844 0.4415772 0 0.6039274 0.444315 0 0.6155299 0.441273 0 0.6218414 0.4415772 0 0.6128844 0.444315 0 0.6245973 0.441273 0 0.6307986 0.4415772 0 0.6218414 0.444315 0 0.6336651 0.441273 0 0.6385903 0.4425804 0 0.6307986 0.444315 0 0.6427325 0.441273 0 0.6460973 0.4456376 0 0.6379073 0.4452278 0 0.6518 0.441273 0 0.6523758 0.4503705 0 0.6447449 0.4480143 0 0.6608677 0.441273 0 0.6608988 0.4503991 0 0.6525857 0.4505773 0 0.6699352 0.441273 0 0.6694459 0.4503991 0 0.6667334 0.4595342 0 0.6575131 0.456972 0 0.6587516 0.4593418 0 0.6779932 0.4503991 0 0.6752648 0.4595342 0 0.6790026 0.441273 0 0.6865405 0.4503991 0 0.6837962 0.4595342 0 0.6880703 0.441273 0 0.6950877 0.4503991 0 0.6923276 0.4595342 0 0.6971378 0.441273 0 0.703635 0.4503991 0 0.700859 0.4595342 0 0.7062052 0.441273 0 0.7121823 0.4503991 0 0.7093904 0.4595342 0 0.715273 0.441273 0 0.7207296 0.4503991 0 0.7179219 0.4595342 0 0.7243406 0.441273 0 0.7292769 0.4503991 0 0.7264532 0.4595342 0 0.7323054 0.4423093 0 0.7378242 0.4503991 0 0.7349845 0.4595342 0 0.7398386 0.4453986 0 0.746377 0.4503938 0 0.743516 0.4595342 0 0.7482634 0.4437873 0 0.7513175 0.4568195 0 0.7528944 0.4483967 0 0.7369854 0.4373229 0 0.7428995 0.4400558 0 0.7307287 0.4356671 0 0.7243406 0.4351165 0 0.715273 0.4351165 0 0.7062052 0.4351165 0 0.6971378 0.4351165 0 0.6880703 0.4351165 0 0.6790026 0.4351165 0 0.6699352 0.4351165 0 0.6608677 0.4351165 0 0.6518 0.4351165 0 0.6427325 0.4351165 0 0.6336651 0.4351165 0 0.6245973 0.4351165 0 0.6155299 0.4351165 0 0.6064624 0.4351165 0 0.5973947 0.4351165 0 0.5883272 0.4351165 0 0.5792596 0.4351165 0 0.5701921 0.4351165 0 0.5611246 0.4351165 0 0.552057 0.4351165 0 0.5429895 0.4351165 0 0.5339218 0.4351165 0 0.5248543 0.4351165 0 0.5157868 0.4351165 0 0.5067192 0.4351165 0 0.4976516 0.4351165 0 0.4885841 0.4351165 0 0.4795166 0.4351165 0 0.470449 0.4351165 0 0.4613814 0.4351165 0 0.4523139 0.4351165 0 0.4432463 0.4351165 0 0.4341788 0.4351165 0 0.4251111 0.4351165 0 0.4160437 0.4351165 0 0.406976 0.4351165 0 0.3979085 0.4351165 0 0.388841 0.4351165 0 0.3797734 0.4351165 0 0.3707059 0.4351165 0 0.3616383 0.4351165 0 0.3525707 0.4351165 0 0.3435032 0.4351165 0 0.3344357 0.4351165 0 0.325368 0.4351165 0 0.3163005 0.4351165 0 0.307233 0.4351165 0 0.2981654 0.4351165 0 0.2890979 0.4351165 0 0.2800303 0.4351165 0 0.2709628 0.4351165 0 0.2618952 0.4351165 0 0.2528277 0.4351165 0 0.4935622 0.5907141 0 0.2464429 0.4356664 0 0.4783522 0.5831091 0 0.7526318 0.4593461 0 0.7566481 0.4537378 0 0.6506537 0.4525149 0 0.655145 0.4583459 0 0.6614201 0.4684955 0 0.6579678 0.4651316 0 0.6691893 0.4686694 0 0.6777208 0.4686694 0 0.6862521 0.4686694 0 0.6947836 0.4686694 0 0.7033148 0.4686694 0 0.7118462 0.4686694 0 0.7203777 0.4686694 0 0.728909 0.4686694 0 0.7374405 0.4686694 0 0.7459718 0.4686694 0 0.7543013 0.4638212 0 0.7594136 0.4596494 0 0.7552682 0.4684976 0 0.7611076 0.4659539 0 0.6616733 0.4724456 0 0.6589372 0.472445 0 0.6772985 0.4778045 0 0.668767 0.4778045 0 0.68583 0.4778045 0 0.6943617 0.4778045 0 0.7028931 0.4778045 0 0.7114247 0.4778045 0 0.7199563 0.4778045 0 0.7284877 0.4778045 0 0.7370193 0.4778045 0 0.7455509 0.4778045 0 0.7550181 0.4780314 0 0.7555212 0.4724562 0 0.7616777 0.4724579 0 0.761106 0.4789617 0 0.6611646 0.4780364 0 0.6579721 0.4797595 0 0.7538044 0.4826547 0 0.4552976 0.593387 0 0.7594105 0.4852657 0 0.6551529 0.4865478 0 0.7513149 0.4880925 0 0.7566439 0.4911768 0 0.7528889 0.4965172 0 0.5303297 0.4923924 0 0.5258384 0.4865615 0 0.5198188 0.4780364 0 0.5230157 0.4797757 0 0.5127058 0.4778045 0 0.5046649 0.4778045 0 0.4966242 0.4778045 0 0.4885833 0.4778045 0 0.4725018 0.4778045 0 0.4805426 0.4778045 0 0.4644609 0.4778045 0 0.4573494 0.4780364 0 0.4513376 0.4865478 0 0.4541569 0.4797595 0 0.4578581 0.4724456 0 0.4551219 0.472445 0 0.5193102 0.4724617 0 0.5220463 0.4724623 0 0.5112585 0.4686694 0 0.4488446 0.5907141 0 0.4557398 0.5907141 0 0.4578111 0.5981435 0 0.5195634 0.4684953 0 0.5021892 0.4686694 0 0.635675 0.7516277 0 0.6363586 0.7543649 0 0.6285532 0.7543649 0 0.5408309 0.7516276 0 0.2579044 0.9862302 0 0.2636942 0.9889681 0 0.2545406 0.9889681 0 0.2505911 0.9862302 0 0.2505904 0.9889681 0 0.2449997 0.9889681 0 0.6474724 0.3314818 0 0.6481561 0.3342189 0 0.6403506 0.3342189 0 0.5526283 0.3314816 0 0.5597371 0.331481 0 0.5519453 0.3342189 0 0.4436574 0.3314818 0 0.4443409 0.3342189 0 0.4365354 0.3342189 0 0.355922 0.331481 0 0.3481301 0.3342189 0 0.3488131 0.3314816 0 0.2432764 0.9862302 0 0.2360069 0.9889681 0 0.2432764 0.9862302 0 0.2449997 0.9889681 0 0.2360069 0.9889681 0 0.2505911 0.9862302 0 0.5479397 0.7516271 0 0.5401479 0.7543649 0 0.4318599 0.7516277 0 0.4325434 0.7543649 0 0.424738 0.7543649 0 0.3441244 0.7516271 0 0.2374767 0.3220544 0 0.2384638 0.3311777 0 0.2338315 0.3311777 0 0.2449275 0.3220544 0 0.243828 0.3311777 0 0.2497411 0.3311777 0 0.2533925 0.3220544 0 0.2559952 0.3311777 0 0.2623799 0.3296663 0 0.2623799 0.3311777 0 0.2623799 0.3220544 0 0.2714474 0.3296663 0 0.2714474 0.3311777 0 0.2714474 0.3205338 0 0.2623799 0.3205338 0 0.2533405 0.3129217 0 0.2505904 0.9889681 0 0.2545406 0.9889681 0 0.2579044 0.9862302 0 0.2636942 0.9889681 0 0.229249 0.9768035 0 0.2318664 0.9859267 0 0.2265254 0.9859267 0 0.2224725 0.9768035 0 0.2372654 0.9768035 0 0.2377781 0.9859267 0 0.2460557 0.9768035 0 0.2440826 0.9859267 0 0.2505866 0.9859267 0 0.255109 0.9768035 0 0.2570905 0.9859267 0 0.2638993 0.9768035 0 0.2633945 0.9859267 0 0.2693056 0.9859267 0 0.2719157 0.9768035 0 0.3363326 0.7543649 0 0.3370157 0.7516276 0 0.7310826 0.7422002 0 0.7284834 0.7513235 0 0.7220953 0.7513238 0 0.7220953 0.7498123 0 0.7130277 0.7513238 0 0.7347401 0.7513238 0 0.7395476 0.7422002 0 0.7406542 0.7513238 0 0.7469984 0.7422002 0 0.7460182 0.7513238 0 0.7506491 0.7513238 0 0.7471426 0.7330677 0 0.7396487 0.7330677 0 0.7220953 0.7422002 0 0.7311347 0.7330677 0 0.7130277 0.7498123 0 0.7220953 0.7406798 0 0.2623799 0.3129217 0 0.2448265 0.3129217 0 0.7472867 0.723935 0 0.2373325 0.3129217 0 0.2532884 0.3037892 0 0.4931199 0.4686694 0 0.2557769 0.3022777 0 0.2623799 0.3022777 0 0.4840506 0.4686694 0 0.4749813 0.4686694 0 0.2746459 0.9859267 0 0.465912 0.4686694 0 0.4576048 0.4684955 0 0.2623799 0.2931517 0 0.2623799 0.3037892 0 0.5230112 0.4651478 0 0.4541526 0.4651316 0 0.2714092 0.3022777 0 0.2714092 0.2931517 0 0.4513298 0.4583459 0 0.5258304 0.4583595 0 0.4468384 0.4525149 0 0.2493745 0.3022777 0 0.4943638 0.4253024 0 0.4954794 0.4344284 0 0.2539185 0.2931517 0 0.2447254 0.3037892 0 0.2433673 0.3022777 0 0.2458813 0.2931517 0 0.2371884 0.3037892 0 0.2379377 0.3022777 0 0.2386715 0.2931517 0 0.2332509 0.3022777 0 0.2623799 0.3114012 0 0.2714474 0.3114012 0 0.4890687 0.3114012 0 0.4899229 0.3022777 0 0.4981363 0.3022777 0 0.4981363 0.2931791 0 0.4981363 0.3114012 0 0.5050315 0.3022777 0 0.4817095 0.3022777 0 0.4899229 0.2931791 0 0.4800012 0.3114012 0 0.4748142 0.3022777 0 0.4817095 0.2931791 0 0.4709336 0.3114012 0 0.4679189 0.3022777 0 0.4618661 0.3114012 0 0.4610237 0.3022777 0 0.4527986 0.3114012 0 0.4519944 0.3022777 0 0.4610237 0.2931517 0 0.4655867 0.2931517 0 0.4674768 0.3022777 0 0.443731 0.3114012 0 0.4429652 0.3022777 0 0.4519944 0.2931517 0 0.4346634 0.3114012 0 0.4339359 0.3022777 0 0.4429652 0.2931517 0 0.4255958 0.3114012 0 0.4249066 0.3022777 0 0.4339359 0.2931517 0 0.4165283 0.3114012 0 0.4158773 0.3022777 0 0.4249066 0.2931517 0 0.4074608 0.3114012 0 0.4068481 0.3022777 0 0.4158773 0.2931517 0 0.3983932 0.3114012 0 0.3978189 0.3022777 0 0.4068481 0.2931517 0 0.3893256 0.3114012 0 0.3887896 0.3022777 0 0.3978189 0.2931517 0 0.3802581 0.3114012 0 0.3797603 0.3022777 0 0.3887896 0.2931517 0 0.3711905 0.3114012 0 0.3707311 0.3022777 0 0.3797603 0.2931517 0 0.362123 0.3114012 0 0.3617018 0.3022777 0 0.3707311 0.2931517 0 0.3530554 0.3114012 0 0.3526725 0.3022777 0 0.3617018 0.2931517 0 0.3439879 0.3114012 0 0.3436432 0.3022777 0 0.3526725 0.2931517 0 0.3349203 0.3114012 0 0.334614 0.3022777 0 0.3436432 0.2931517 0 0.3258528 0.3114012 0 0.3255847 0.3022777 0 0.334614 0.2931517 0 0.3167852 0.3114012 0 0.3165555 0.3022777 0 0.3255847 0.2931517 0 0.3077177 0.3114012 0 0.3075262 0.3022777 0 0.3165555 0.2931517 0 0.2986501 0.3114012 0 0.2984969 0.3022777 0 0.3075262 0.2931517 0 0.2895826 0.3114012 0 0.2894677 0.3022777 0 0.2984969 0.2931517 0 0.280515 0.3114012 0 0.2804384 0.3022777 0 0.2894677 0.2931517 0 0.2804384 0.2931517 0 0.4885841 0.4344284 0 0.280515 0.3205338 0 0.2895826 0.3205338 0 0.4885841 0.4253024 0 0.2986501 0.3205338 0 0.3077177 0.3205338 0 0.3167852 0.3205338 0 0.3258528 0.3205338 0 0.3349203 0.3205338 0 0.3439879 0.3205338 0 0.3530554 0.3205338 0 0.362123 0.3205338 0 0.3711905 0.3205338 0 0.3802581 0.3205338 0 0.3893256 0.3205338 0 0.3983932 0.3205338 0 0.4074608 0.3205338 0 0.4165283 0.3205338 0 0.4255958 0.3205338 0 0.4346634 0.3205338 0 0.443731 0.3205338 0 0.4527986 0.3205338 0 0.4618661 0.3205338 0 0.4709336 0.3205338 0 0.4800012 0.3205338 0 0.4890687 0.3205338 0 0.5072039 0.3114012 0 0.4981363 0.3205338 0 0.5119267 0.3022777 0 0.5162714 0.3114012 0 0.5072039 0.3205338 0 0.518822 0.3022777 0 0.5253388 0.3114012 0 0.5162714 0.3205338 0 0.5277832 0.3022777 0 0.5344065 0.3114012 0 0.5253388 0.3205338 0 0.5367447 0.3022777 0 0.5434741 0.3114012 0 0.5344065 0.3205338 0 0.5457059 0.3022777 0 0.5525417 0.3114012 0 0.5434741 0.3205338 0 0.5546671 0.3022777 0 0.5616092 0.3114012 0 0.5525417 0.3205338 0 0.5636284 0.3022777 0 0.5706767 0.3114012 0 0.5616092 0.3205338 0 0.5725897 0.3022777 0 0.5797443 0.3114012 0 0.5706767 0.3205338 0 0.581551 0.3022777 0 0.5888118 0.3114012 0 0.5797443 0.3205338 0 0.5905122 0.3022777 0 0.5978794 0.3114012 0 0.5888118 0.3205338 0 0.5994735 0.3022777 0 0.6069469 0.3114012 0 0.5978794 0.3205338 0 0.6084347 0.3022777 0 0.6160144 0.3114012 0 0.6069469 0.3205338 0 0.6173961 0.3022777 0 0.6250821 0.3114012 0 0.6160144 0.3205338 0 0.6263573 0.3022777 0 0.6341497 0.3114012 0 0.6250821 0.3205338 0 0.6353187 0.3022777 0 0.6432171 0.3114012 0 0.6341497 0.3205338 0 0.6442799 0.3022777 0 0.6522847 0.3114012 0 0.6432171 0.3205338 0 0.6532412 0.3022777 0 0.6613523 0.3114012 0 0.6522847 0.3205338 0 0.6622025 0.3022777 0 0.6704198 0.3114012 0 0.6613523 0.3205338 0 0.6711637 0.3022777 0 0.6794873 0.3114012 0 0.6704198 0.3205338 0 0.6801251 0.3022777 0 0.6885549 0.3114012 0 0.6794873 0.3205338 0 0.6890863 0.3022777 0 0.6976225 0.3114012 0 0.6885549 0.3205338 0 0.6980476 0.3022777 0 0.7066901 0.3114012 0 0.6976225 0.3205338 0 0.7070089 0.3022777 0 0.7157577 0.3114012 0 0.7066901 0.3205338 0 0.7159702 0.3022777 0 0.7248252 0.3114012 0 0.7157577 0.3205338 0 0.7338927 0.3037892 0 0.7338927 0.3114012 0 0.7248252 0.3205338 0 0.7338927 0.3022777 0 0.7249315 0.3022777 0 0.4721572 0.4253024 0 0.7429841 0.3037892 0 0.4721572 0.4344284 0 0.7338927 0.3129217 0 0.7404957 0.3022777 0 0.7338927 0.2931517 0 0.7423542 0.2931517 0 0.7249315 0.2931528 0 0.7159702 0.2931539 0 0.7070089 0.2931552 0 0.6980476 0.2931562 0 0.6890863 0.2931574 0 0.6801251 0.2931585 0 0.6711637 0.2931596 0 0.6622025 0.2931608 0 0.6532412 0.293162 0 0.6442799 0.293163 0 0.6353187 0.2931643 0 0.6263574 0.2931654 0 0.6173961 0.2931665 0 0.6084347 0.2931676 0 0.5994735 0.2931687 0 0.5905122 0.29317 0 0.581551 0.2931711 0 0.5725897 0.2931722 0 0.5636284 0.2931733 0 0.5546671 0.2931745 0 0.5457059 0.2931757 0 0.5367447 0.2931768 0 0.5277832 0.2931779 0 0.518822 0.2931791 0 0.5123689 0.3022777 0 0.280515 0.3296663 0 0.2895826 0.3296663 0 0.2986501 0.3296663 0 0.3077177 0.3296663 0 0.3167852 0.3296663 0 0.3258528 0.3296663 0 0.3349203 0.3296663 0 0.3439879 0.3296663 0 0.3530554 0.3296663 0 0.362123 0.3296663 0 0.3711905 0.3296663 0 0.3802581 0.3296663 0 0.3893256 0.3296663 0 0.3983932 0.3296663 0 0.4074608 0.3296663 0 0.4165283 0.3296663 0 0.4255958 0.3296663 0 0.4346634 0.3296663 0 0.443731 0.3296663 0 0.4527986 0.3296663 0 0.4618661 0.3296663 0 0.4709336 0.3296663 0 0.4800012 0.3296663 0 0.4890687 0.3296663 0 0.4981363 0.3296663 0 0.5072039 0.3296663 0 0.5162714 0.3296663 0 0.5253388 0.3296663 0 0.4416323 0.9862302 0 0.448887 0.9889681 0 0.4398931 0.9889681 0 0.4343191 0.9862302 0 0.4343185 0.9889681 0 0.4303521 0.9889681 0 0.7465374 0.7224237 0 0.7512243 0.7224237 0 0.7518245 0.7132976 0 0.7397497 0.723935 0 0.7411078 0.7224237 0 0.7458036 0.7132976 0 0.7351006 0.7224237 0 0.7385938 0.7132976 0 0.7311866 0.723935 0 0.7286983 0.7224237 0 0.7305567 0.7132976 0 0.7220953 0.723935 0 0.4270044 0.9862302 0 0.4211993 0.9889681 0 0.4416323 0.9862302 0 0.448887 0.9889681 0 0.4398931 0.9889681 0 0.4343191 0.9862302 0 0.5344065 0.3296663 0 0.5434741 0.3296663 0 0.7220953 0.7224237 0 0.7130277 0.7315471 0 0.7130277 0.7224237 0 0.7220953 0.7132976 0 0.7220953 0.7315471 0 0.7220953 0.7330677 0 0.7130277 0.7406798 0 0.2256792 0.7422002 0 0.2266663 0.7513238 0 0.222034 0.7513238 0 0.23313 0.7422002 0 0.2320305 0.7513238 0 0.2379436 0.7513238 0 0.241595 0.7422002 0 0.2441976 0.7513236 0 0.2505824 0.7498123 0 0.4343185 0.9889681 0 0.4303521 0.9889681 0 0.4270044 0.9862302 0 0.4211993 0.9889681 0 0.3871591 0.9570269 0 0.3962851 0.9479281 0 0.3962851 0.9570269 0 0.4129771 0.9768035 0 0.4155945 0.9859267 0 0.4102535 0.9859267 0 0.4062005 0.9768035 0 0.4209934 0.9768035 0 0.4215061 0.9859267 0 0.4297837 0.9768035 0 0.4278106 0.9859267 0 0.4343146 0.9859267 0 0.4388371 0.9768035 0 0.4408185 0.9859267 0 0.4476274 0.9768035 0 0.5525417 0.3296663 0 0.5616092 0.3296663 0 0.5706767 0.3296663 0 0.5797443 0.3296663 0 0.5888118 0.3296663 0 0.5978794 0.3296663 0 0.6069469 0.3296663 0 0.6160144 0.3296663 0 0.6250821 0.3296663 0 0.2505824 0.7513238 0 0.2505824 0.7422002 0 0.2596499 0.7498123 0 0.2596499 0.7513238 0 0.2596499 0.7406798 0 0.2505824 0.7406798 0 0.241543 0.7330677 0 0.2505824 0.7330677 0 0.2330289 0.7330677 0 0.225535 0.7330677 0 0.2414909 0.723935 0 0.2439793 0.7224237 0 0.2505824 0.7224237 0 0.2505824 0.7132976 0 0.2505824 0.723935 0 0.2596499 0.7224237 0 0.2596499 0.7132976 0 0.2375769 0.7224237 0 0.242121 0.7132976 0 0.2329279 0.723935 0 0.2315698 0.7224237 0 0.2340838 0.7132976 0 0.2253909 0.723935 0 0.2261402 0.7224237 0 0.226874 0.7132976 0 0.2214534 0.7224237 0 0.2505824 0.7315471 0 0.2596499 0.7315471 0 0.2687175 0.7498123 0 0.2687175 0.7513238 0 0.277785 0.7498123 0 0.277785 0.7513238 0 0.2868526 0.7498123 0 0.2868526 0.7513238 0 0.2959202 0.7498123 0 0.2959202 0.7513238 0 0.3049877 0.7498123 0 0.3049877 0.7513238 0 0.3140552 0.7498123 0 0.3140552 0.7513238 0 0.3231228 0.7498123 0 0.3231228 0.7513238 0 0.3321904 0.7498123 0 0.3321904 0.7513238 0 0.3412579 0.7498123 0 0.3412579 0.7513238 0 0.3503255 0.7498123 0 0.3503255 0.7513238 0 0.359393 0.7498123 0 0.359393 0.7513238 0 0.3684606 0.7498123 0 0.3684606 0.7513238 0 0.3775282 0.7498123 0 0.3775282 0.7513238 0 0.3865957 0.7498123 0 0.3865957 0.7513238 0 0.3956633 0.7498123 0 0.3956633 0.7513238 0 0.4047308 0.7498123 0 0.4047308 0.7513238 0 0.4137984 0.7498123 0 0.4137984 0.7513238 0 0.4228659 0.7498123 0 0.4228659 0.7513238 0 0.4319335 0.7498123 0 0.4319335 0.7513238 0 0.4410011 0.7498123 0 0.4410011 0.7513238 0 0.4500686 0.7498123 0 0.4500686 0.7513238 0 0.4591361 0.7498123 0 0.4591361 0.7513238 0 0.4682037 0.7498123 0 0.4682037 0.7513238 0 0.4772713 0.7498123 0 0.4772713 0.7513238 0 0.4863388 0.7498123 0 0.4863388 0.7513238 0 0.4954064 0.7498123 0 0.4954064 0.7513238 0 0.5044739 0.7498123 0 0.5044739 0.7513238 0 0.5135415 0.7498123 0 0.5135415 0.7513238 0 0.522609 0.7498123 0 0.522609 0.7513238 0 0.5316767 0.7498123 0 0.5316767 0.7513238 0 0.5407442 0.7498123 0 0.5407442 0.7513238 0 0.5498117 0.7498123 0 0.5498117 0.7513238 0 0.5588793 0.7498123 0 0.5588793 0.7513238 0 0.5679468 0.7498123 0 0.5679468 0.7513238 0 0.5770143 0.7498123 0 0.5770143 0.7513238 0 0.5860819 0.7498123 0 0.5860819 0.7513238 0 0.5951494 0.7498123 0 0.5951494 0.7513238 0 0.6042169 0.7498123 0 0.6042169 0.7513238 0 0.6132846 0.7498123 0 0.6132846 0.7513238 0 0.6223522 0.7498123 0 0.6223522 0.7513238 0 0.6314197 0.7498123 0 0.6314197 0.7513238 0 0.6404873 0.7498123 0 0.6404873 0.7513238 0 0.6495548 0.7498123 0 0.6495548 0.7513238 0 0.6586224 0.7498123 0 0.6586224 0.7513238 0 0.6676898 0.7498123 0 0.6676898 0.7513238 0 0.6767575 0.7498123 0 0.6767575 0.7513238 0 0.685825 0.7498123 0 0.685825 0.7513238 0 0.6948926 0.7498123 0 0.6948926 0.7513238 0 0.7039602 0.7498123 0 0.7039602 0.7513238 0 0.7039602 0.7406798 0 0.6948926 0.7406798 0 0.685825 0.7406798 0 0.6767575 0.7406798 0 0.6676898 0.7406798 0 0.6586224 0.7406798 0 0.6495548 0.7406798 0 0.6404873 0.7406798 0 0.6314197 0.7406798 0 0.6223522 0.7406798 0 0.6132846 0.7406798 0 0.6042169 0.7406798 0 0.5951494 0.7406798 0 0.5860819 0.7406798 0 0.5770143 0.7406798 0 0.5679468 0.7406798 0 0.5588793 0.7406798 0 0.5498117 0.7406798 0 0.5407442 0.7406798 0 0.5316767 0.7406798 0 0.522609 0.7406798 0 0.5135415 0.7406798 0 0.5044739 0.7406798 0 0.4954064 0.7406798 0 0.4863388 0.7406798 0 0.4772713 0.7406798 0 0.4682037 0.7406798 0 0.4591361 0.7406798 0 0.4500686 0.7406798 0 0.4410011 0.7406798 0 0.4319335 0.7406798 0 0.4228659 0.7406798 0 0.4137984 0.7406798 0 0.4047308 0.7406798 0 0.3956633 0.7406798 0 0.3865957 0.7406798 0 0.3775282 0.7406798 0 0.3684606 0.7406798 0 0.359393 0.7406798 0 0.3503255 0.7406798 0 0.3412579 0.7406798 0 0.3321904 0.7406798 0 0.3231228 0.7406798 0 0.3140552 0.7406798 0 0.3049877 0.7406798 0 0.2959202 0.7406798 0 0.2868526 0.7406798 0 0.277785 0.7406798 0 0.2687175 0.7406798 0 0.7039602 0.7315471 0 0.7039602 0.7224237 0 0.7130277 0.7132976 0 0.6948926 0.7315471 0 0.6948926 0.7224237 0 0.7039602 0.7132976 0 0.685825 0.7315471 0 0.685825 0.7224237 0 0.6948926 0.7132976 0 0.6767575 0.7315471 0 0.6767575 0.7224237 0 0.685825 0.7132976 0 0.6676898 0.7315471 0 0.6676898 0.7224237 0 0.6767575 0.7132976 0 0.6586224 0.7315471 0 0.6586224 0.7224237 0 0.6676898 0.7132976 0 0.6495548 0.7315471 0 0.6495548 0.7224237 0 0.6586224 0.7132976 0 0.6404873 0.7315471 0 0.6404873 0.7224237 0 0.6495548 0.7132976 0 0.6314197 0.7315471 0 0.6314197 0.7224237 0 0.6404873 0.7132976 0 0.6223522 0.7315471 0 0.6223522 0.7224237 0 0.6314197 0.7132976 0 0.6132846 0.7315471 0 0.6132846 0.7224237 0 0.6223522 0.7132976 0 0.6042169 0.7315471 0 0.6042169 0.7224237 0 0.6132846 0.7132976 0 0.5951494 0.7315471 0 0.5951494 0.7224237 0 0.6042169 0.7132976 0 0.5860819 0.7315471 0 0.5860819 0.7224237 0 0.5951494 0.7132976 0 0.5770143 0.7315471 0 0.5770143 0.7224237 0 0.5860819 0.7132976 0 0.5679468 0.7315471 0 0.5679468 0.7224237 0 0.5770143 0.7132976 0 0.5588793 0.7315471 0 0.5588793 0.7224237 0 0.5679468 0.7132976 0 0.5498117 0.7315471 0 0.5498117 0.7224237 0 0.5588793 0.7132976 0 0.5407442 0.7315471 0 0.5407442 0.7224237 0 0.5498117 0.7132976 0 0.5316767 0.7315471 0 0.5316767 0.7224237 0 0.5407442 0.7132976 0 0.522609 0.7315471 0 0.522609 0.7224237 0 0.5316767 0.7132976 0 0.5135415 0.7315471 0 0.5135415 0.7224237 0 0.522609 0.7132976 0 0.5044739 0.7315471 0 0.5044739 0.7224237 0 0.5135415 0.7132976 0 0.4954064 0.7315471 0 0.4954064 0.7224237 0 0.5044739 0.7132976 0 0.4863388 0.7315471 0 0.4863388 0.7224237 0 0.4954064 0.7132976 0 0.4772713 0.7315471 0 0.4772713 0.7224237 0 0.4863388 0.7132976 0 0.4682037 0.7315471 0 0.4682037 0.7224237 0 0.4772713 0.7132976 0 0.4591361 0.7315471 0 0.4591361 0.7224237 0 0.4682037 0.7132976 0 0.4500686 0.7315471 0 0.4500686 0.7224237 0 0.4591361 0.7132976 0 0.4410011 0.7315471 0 0.4410011 0.7224237 0 0.4500686 0.7132976 0 0.2786922 0.9768035 0 0.4319335 0.7315471 0 0.4319335 0.7224237 0 0.278855 0.9676709 0 0.2720392 0.9676709 0 0.2639764 0.9676709 0 0.2551352 0.9676709 0 0.2460295 0.9676709 0 0.2371883 0.9676709 0 0.2291255 0.9676709 0 0.2223097 0.9676709 0 0.2721627 0.9585383 0 0.269595 0.9570269 0 0.2750245 0.9570269 0 0.2742907 0.9479007 0 0.2790177 0.9585383 0 0.2803116 0.9479007 0 0.2640536 0.9585383 0 0.2635878 0.9570269 0 0.2670809 0.9479007 0 0.6341497 0.3296663 0 0.2551615 0.9585383 0 0.6432171 0.3296663 0 0.6522847 0.3296663 0 0.2571854 0.9570269 0 0.6613523 0.3296663 0 0.6704198 0.3296663 0 0.6794873 0.3296663 0 0.6885549 0.3296663 0 0.6976225 0.3296663 0 0.7066901 0.3296663 0 0.7157577 0.3296663 0 0.7338927 0.3205338 0 0.7248252 0.3296663 0 0.7429321 0.3129217 0 0.7338927 0.3220544 0 0.280515 0.3311777 0 0.2895826 0.3311777 0 0.2986501 0.3311777 0 0.3077177 0.3311777 0 0.3167852 0.3311777 0 0.3258528 0.3311777 0 0.3349203 0.3311777 0 0.3439879 0.3311777 0 0.2590438 0.9479007 0 0.2505824 0.9570269 0 0.2460033 0.9585383 0 0.2439793 0.9570269 0 0.2505824 0.9479007 0 0.4410011 0.7132976 0 0.4228659 0.7315471 0 0.3530554 0.3311777 0 0.362123 0.3311777 0 0.3711905 0.3311777 0 0.3802581 0.3311777 0 0.3893256 0.3311777 0 0.2371112 0.9585383 0 0.2375769 0.9570269 0 0.242121 0.9479007 0 0.2315698 0.9570269 0 0.2340838 0.9479007 0 0.229002 0.9585383 0 0.2261402 0.9570269 0 0.4228659 0.7224237 0 0.4319335 0.7132976 0 0.4137984 0.7315471 0 0.4137984 0.7224237 0 0.4228659 0.7132976 0 0.4047308 0.7315471 0 0.4047308 0.7224237 0 0.3983932 0.3311777 0 0.4074608 0.3311777 0 0.4165283 0.3311777 0 0.4255958 0.3311777 0 0.4346634 0.3311777 0 0.226874 0.9479007 0 0.222147 0.9585383 0 0.220853 0.9479007 0 0.2214533 0.9570269 0 0.2974094 0.9479281 0 0.2886076 0.9570269 0 0.2886076 0.9479281 0 0.4137984 0.7132976 0 0.3956633 0.7315471 0 0.3956633 0.7224237 0 0.4047308 0.7132976 0 0.3865957 0.7315471 0 0.443731 0.3311777 0 0.4527986 0.3311777 0 0.4618661 0.3311777 0 0.4709336 0.3311777 0 0.4800012 0.3311777 0 0.2977337 0.9570269 0 0.2261402 0.9004453 0 0.226874 0.9022249 0 0.220853 0.9022249 0 0.220853 0.9113601 0 0.2315698 0.9004453 0 0.2340838 0.9022249 0 0.3865957 0.7224237 0 0.3956633 0.7132976 0 0.3775282 0.7315471 0 0.4890687 0.3311777 0 0.3775282 0.7224237 0 0.3865957 0.7132976 0 0.3684606 0.7315471 0 0.3684606 0.7224237 0 0.3775282 0.7132976 0 0.359393 0.7315471 0 0.359393 0.7224237 0 0.3684606 0.7132976 0 0.3503255 0.7315471 0 0.3503255 0.7224237 0 0.359393 0.7132976 0 0.3412579 0.7315471 0 0.3412579 0.7224237 0 0.3503255 0.7132976 0 0.3321904 0.7315471 0 0.3321904 0.7224237 0 0.3412579 0.7132976 0 0.3231228 0.7315471 0 0.3231228 0.7224237 0 0.3321904 0.7132976 0 0.3140552 0.7315471 0 0.3140552 0.7224237 0 0.3231228 0.7132976 0 0.3049877 0.7315471 0 0.3049877 0.7224237 0 0.3140552 0.7132976 0 0.2959202 0.7315471 0 0.2959202 0.7224237 0 0.3049877 0.7132976 0 0.2868526 0.7315471 0 0.2868526 0.7224237 0 0.2959202 0.7132976 0 0.277785 0.7315471 0 0.277785 0.7224237 0 0.2868526 0.7132976 0 0.2687175 0.7315471 0 0.2687175 0.7224237 0 0.277785 0.7132976 0 0.2687175 0.7132976 0 0.7286983 0.6658421 0 0.7220953 0.6676217 0 0.7220953 0.6658421 0 0.7130277 0.6676217 0 0.7315786 0.6620213 0 0.7130277 0.6658421 0 0.7220953 0.6620213 0 0.7305567 0.6676217 0 0.7220953 0.6767569 0 0.7130277 0.6767569 0 0.7351006 0.6658421 0 0.7385938 0.6676217 0 0.7305567 0.6767569 0 0.7411078 0.6658421 0 0.7458036 0.6676217 0 0.7385938 0.6767569 0 0.7465374 0.6658421 0 0.7512243 0.6658421 0 0.7458036 0.6767569 0 0.7480043 0.6620213 0 0.7404156 0.6620213 0 0.7458036 0.7041625 0 0.7385938 0.7041625 0 0.7305567 0.7041625 0 0.7220953 0.7041625 0 0.7305567 0.6950272 0 0.7220953 0.6950272 0 0.7130277 0.7041625 0 0.7458036 0.6950272 0 0.7385938 0.6950272 0 0.7305567 0.685892 0 0.7220953 0.685892 0 0.7130277 0.6950272 0 0.7458036 0.685892 0 0.7385938 0.685892 0 0.7130277 0.685892 0 0.7039602 0.6676217 0 0.7039602 0.6658421 0 0.7130277 0.6572619 0 0.7220953 0.6572619 0 0.6948926 0.6676217 0 0.6948926 0.6658421 0 0.7039602 0.6572619 0 0.685825 0.6676217 0 0.685825 0.6658421 0 0.6948926 0.6572619 0 0.6767575 0.6676217 0 0.6767575 0.6658421 0 0.685825 0.6572619 0 0.6676898 0.6676217 0 0.6676898 0.6658421 0 0.6767575 0.6572619 0 0.6586224 0.6676217 0 0.6586224 0.6658421 0 0.6676898 0.6572619 0 0.6495548 0.6676217 0 0.6495548 0.6658421 0 0.6586224 0.6572619 0 0.6404873 0.6676217 0 0.6404873 0.6658421 0 0.6495548 0.6572619 0 0.6314197 0.6676217 0 0.6314197 0.6658421 0 0.6404873 0.6572619 0 0.6223522 0.6676217 0 0.6223522 0.6658421 0 0.6314197 0.6572619 0 0.6132846 0.6676217 0 0.6132846 0.6658421 0 0.6223522 0.6572619 0 0.6042169 0.6676217 0 0.6042169 0.6658421 0 0.6132846 0.6572619 0 0.5951494 0.6676217 0 0.5951494 0.6658421 0 0.6042169 0.6572619 0 0.5860819 0.6676217 0 0.5860819 0.6658421 0 0.5951494 0.6572619 0 0.5770143 0.6676217 0 0.5770143 0.6658421 0 0.5860819 0.6572619 0 0.5679468 0.6676217 0 0.5679468 0.6658421 0 0.5770143 0.6572619 0 0.5588793 0.6676217 0 0.5588793 0.6658421 0 0.5679468 0.6572619 0 0.5498117 0.6676217 0 0.5498117 0.6658421 0 0.5588793 0.6572619 0 0.5407442 0.6676217 0 0.5407442 0.6658421 0 0.5498117 0.6572619 0 0.5316767 0.6676217 0 0.5316767 0.6658421 0 0.5407442 0.6572619 0 0.522609 0.6676217 0 0.522609 0.6658421 0 0.5316767 0.6572619 0 0.5135415 0.6676217 0 0.5135415 0.6658421 0 0.522609 0.6572619 0 0.5044739 0.6676217 0 0.5044739 0.6658421 0 0.5135415 0.6572619 0 0.4954064 0.6676217 0 0.4954064 0.6658421 0 0.5044739 0.6572619 0 0.4863388 0.6676217 0 0.4863388 0.6658421 0 0.4954064 0.6572619 0 0.4772713 0.6676217 0 0.4772713 0.6658421 0 0.4863388 0.6572619 0 0.4682037 0.6676217 0 0.4682037 0.6658421 0 0.4772713 0.6572619 0 0.4591361 0.6676217 0 0.4591361 0.6658421 0 0.4682037 0.6572619 0 0.4500686 0.6676217 0 0.4500686 0.6658421 0 0.4591361 0.6572619 0 0.4410011 0.6676217 0 0.4410011 0.6658421 0 0.4500686 0.6572619 0 0.4319335 0.6676217 0 0.4319335 0.6658421 0 0.4410011 0.6572619 0 0.4228659 0.6676217 0 0.4228659 0.6658421 0 0.4319335 0.6572619 0 0.4137984 0.6676217 0 0.4137984 0.6658421 0 0.4228659 0.6572619 0 0.4047308 0.6676217 0 0.4047308 0.6658421 0 0.4137984 0.6572619 0 0.3956633 0.6676217 0 0.3956633 0.6658421 0 0.4047308 0.6572619 0 0.3865957 0.6676217 0 0.3865957 0.6658421 0 0.3956633 0.6572619 0 0.3775282 0.6676217 0 0.3775282 0.6658421 0 0.3865957 0.6572619 0 0.3684606 0.6676217 0 0.3684606 0.6658421 0 0.3775282 0.6572619 0 0.359393 0.6676217 0 0.359393 0.6658421 0 0.3684606 0.6572619 0 0.3503255 0.6676217 0 0.3503255 0.6658421 0 0.359393 0.6572619 0 0.3412579 0.6676217 0 0.3412579 0.6658421 0 0.3503255 0.6572619 0 0.3321904 0.6676217 0 0.3321904 0.6658421 0 0.3412579 0.6572619 0 0.3231228 0.6676217 0 0.3231228 0.6658421 0 0.3321904 0.6572619 0 0.3140552 0.6676217 0 0.3140552 0.6658421 0 0.3231228 0.6572619 0 0.3049877 0.6676217 0 0.3049877 0.6658421 0 0.3140552 0.6572619 0 0.2959202 0.6676217 0 0.2959202 0.6658421 0 0.3049877 0.6572619 0 0.2868526 0.6676217 0 0.2868526 0.6658421 0 0.2959202 0.6572619 0 0.277785 0.6676217 0 0.277785 0.6658421 0 0.2868526 0.6572619 0 0.2687175 0.6676217 0 0.2687175 0.6658421 0 0.277785 0.6572619 0 0.2596499 0.6676217 0 0.2596499 0.6658421 0 0.2687175 0.6572619 0 0.2505824 0.6676217 0 0.2505824 0.6658421 0 0.2596499 0.6572619 0 0.242121 0.6676217 0 0.2439793 0.6658421 0 0.2505824 0.6620213 0 0.2505824 0.6767569 0 0.242121 0.6767569 0 0.2596499 0.6767569 0 0.2687175 0.6767569 0 0.277785 0.6767569 0 0.2868526 0.6767569 0 0.2959202 0.6767569 0 0.3049877 0.6767569 0 0.3140552 0.6767569 0 0.3231228 0.6767569 0 0.3321904 0.6767569 0 0.3412579 0.6767569 0 0.3503255 0.6767569 0 0.359393 0.6767569 0 0.3684606 0.6767569 0 0.3775282 0.6767569 0 0.3865957 0.6767569 0 0.3956633 0.6767569 0 0.4047308 0.6767569 0 0.4137984 0.6767569 0 0.4228659 0.6767569 0 0.4319335 0.6767569 0 0.4410011 0.6767569 0 0.4500686 0.6767569 0 0.4591361 0.6767569 0 0.4682037 0.6767569 0 0.4772713 0.6767569 0 0.4863388 0.6767569 0 0.4954064 0.6767569 0 0.5044739 0.6767569 0 0.5135415 0.6767569 0 0.522609 0.6767569 0 0.5316767 0.6767569 0 0.5407442 0.6767569 0 0.5498117 0.6767569 0 0.5588793 0.6767569 0 0.5679468 0.6767569 0 0.5770143 0.6767569 0 0.5860819 0.6767569 0 0.5951494 0.6767569 0 0.6042169 0.6767569 0 0.6132846 0.6767569 0 0.6223522 0.6767569 0 0.6314197 0.6767569 0 0.6404873 0.6767569 0 0.6495548 0.6767569 0 0.6586224 0.6767569 0 0.6676898 0.6767569 0 0.6767575 0.6767569 0 0.685825 0.6767569 0 0.6948926 0.6767569 0 0.7039602 0.6767569 0 0.7039602 0.7041625 0 0.6948926 0.7041625 0 0.685825 0.7041625 0 0.6767575 0.7041625 0 0.6676898 0.7041625 0 0.6586224 0.7041625 0 0.6495548 0.7041625 0 0.6404873 0.7041625 0 0.6314197 0.7041625 0 0.6223522 0.7041625 0 0.6132846 0.7041625 0 0.6042169 0.7041625 0 0.5951494 0.7041625 0 0.5860819 0.7041625 0 0.5770143 0.7041625 0 0.5679468 0.7041625 0 0.5588793 0.7041625 0 0.5498117 0.7041625 0 0.5407442 0.7041625 0 0.5316767 0.7041625 0 0.522609 0.7041625 0 0.5135415 0.7041625 0 0.5044739 0.7041625 0 0.4954064 0.7041625 0 0.4863388 0.7041625 0 0.4772713 0.7041625 0 0.4682037 0.7041625 0 0.4591361 0.7041625 0 0.4500686 0.7041625 0 0.4410011 0.7041625 0 0.4319335 0.7041625 0 0.4228659 0.7041625 0 0.4137984 0.7041625 0 0.4047308 0.7041625 0 0.3956633 0.7041625 0 0.3865957 0.7041625 0 0.3775282 0.7041625 0 0.3684606 0.7041625 0 0.359393 0.7041625 0 0.3503255 0.7041625 0 0.3412579 0.7041625 0 0.3321904 0.7041625 0 0.3231228 0.7041625 0 0.3140552 0.7041625 0 0.3049877 0.7041625 0 0.2959202 0.7041625 0 0.2868526 0.7041625 0 0.277785 0.7041625 0 0.2687175 0.7041625 0 0.2596499 0.7041625 0 0.2505824 0.7041625 0 0.2596499 0.6950272 0 0.2505824 0.6950272 0 0.242121 0.7041625 0 0.7039602 0.6950272 0 0.6948926 0.6950272 0 0.685825 0.6950272 0 0.6767575 0.6950272 0 0.6676898 0.6950272 0 0.6586224 0.6950272 0 0.6495548 0.6950272 0 0.6404873 0.6950272 0 0.6314197 0.6950272 0 0.6223522 0.6950272 0 0.6132846 0.6950272 0 0.6042169 0.6950272 0 0.5951494 0.6950272 0 0.5860819 0.6950272 0 0.5770143 0.6950272 0 0.5679468 0.6950272 0 0.5588793 0.6950272 0 0.5498117 0.6950272 0 0.5407442 0.6950272 0 0.5316767 0.6950272 0 0.522609 0.6950272 0 0.5135415 0.6950272 0 0.5044739 0.6950272 0 0.4954064 0.6950272 0 0.4863388 0.6950272 0 0.4772713 0.6950272 0 0.4682037 0.6950272 0 0.4981363 0.3311777 0 0.5072039 0.3311777 0 0.5162714 0.3311777 0 0.5253388 0.3311777 0 0.5344065 0.3311777 0 0.5434741 0.3311777 0 0.5525417 0.3311777 0 0.5616092 0.3311777 0 0.5706767 0.3311777 0 0.5797443 0.3311777 0 0.5888118 0.3311777 0 0.5978794 0.3311777 0 0.6069469 0.3311777 0 0.6160144 0.3311777 0 0.6250821 0.3311777 0 0.6341497 0.3311777 0 0.6432171 0.3311777 0 0.4471225 0.9859267 0 0.6522847 0.3311777 0 0.6613523 0.3311777 0 0.4530335 0.9859267 0 0.4556436 0.9768035 0 0.4583738 0.9859267 0 0.4624203 0.9768035 0 0.462583 0.9676709 0 0.4557672 0.9676709 0 0.4477045 0.9676709 0 0.4388633 0.9676709 0 0.4297575 0.9676709 0 0.4209163 0.9676709 0 0.4128535 0.9676709 0 0.4060378 0.9676709 0 0.4558907 0.9585383 0 0.453323 0.9570269 0 0.4587525 0.9570269 0 0.4580187 0.9479007 0 0.4627458 0.9585383 0 0.4591361 0.6950272 0 0.4640397 0.9479007 0 0.4500686 0.6950272 0 0.4410011 0.6950272 0 0.4477816 0.9585383 0 0.4319335 0.6950272 0 0.4228659 0.6950272 0 0.4137984 0.6950272 0 0.4047308 0.6950272 0 0.3956633 0.6950272 0 0.3865957 0.6950272 0 0.3775282 0.6950272 0 0.3684606 0.6950272 0 0.359393 0.6950272 0 0.4473157 0.9570269 0 0.4508089 0.9479007 0 0.4388894 0.9585383 0 0.4409134 0.9570269 0 0.4427718 0.9479007 0 0.6704198 0.3311777 0 0.6794873 0.3311777 0 0.3503255 0.6950272 0 0.3412579 0.6950272 0 0.4343104 0.9570269 0 0.4297313 0.9585383 0 0.4277074 0.9570269 0 0.4343104 0.9479007 0 0.4208392 0.9585383 0 0.421305 0.9570269 0 0.4258489 0.9479007 0 0.6885549 0.3311777 0 0.6976225 0.3311777 0 0.7066901 0.3311777 0 0.7157577 0.3311777 0 0.7338927 0.3296663 0 0.7248252 0.3311777 0 0.74288 0.3220544 0 0.3321904 0.6950272 0 0.3231228 0.6950272 0 0.4152977 0.9570269 0 0.4178118 0.9479007 0 0.4127301 0.9585383 0 0.4098682 0.9570269 0 0.410602 0.9479007 0 0.405875 0.9585383 0 0.404581 0.9479007 0 0.7338927 0.3311777 0 0.7402809 0.3311776 0 0.7465376 0.3311777 0 0.7513451 0.3220544 0 0.7524517 0.3311777 0 0.3140552 0.6950272 0 0.3049877 0.6950272 0 0.4051814 0.9570269 0 0.4098682 0.9004453 0 0.410602 0.9022249 0 0.404581 0.9022249 0 0.404581 0.9113601 0 0.4152977 0.9004453 0 0.4178118 0.9022249 0 0.7587959 0.3220544 0 0.7578157 0.3311777 0 0.7624466 0.3311777 0 0.75894 0.3129217 0 0.462635 0.5907141 0 0.4634335 0.5983101 0 0.4695303 0.5907141 0 0.7514462 0.3129217 0 0.226874 0.9113601 0 0.2959202 0.6950272 0 0.2868526 0.6950272 0 0.4695303 0.5983101 0 0.4976763 0.5981435 0 0.7590842 0.3037892 0 0.4935622 0.5907141 0 0.7583349 0.3022777 0 0.7630218 0.3022777 0 0.763622 0.2931517 0 0.410602 0.9113601 0 0.421305 0.9004453 0 0.5001024 0.5907141 0 0.7515472 0.3037892 0 0.7529053 0.3022777 0 0.7576011 0.2931517 0 0.4258489 0.9022249 0 0.7468981 0.3022777 0 0.4178118 0.9113601 0 0.7503913 0.2931517 0 0.2332509 0.2456962 0 0.2375769 0.9004453 0 0.2379377 0.2456962 0 0.2326506 0.2474757 0 0.2433673 0.2456962 0 0.2458813 0.2474757 0 0.2386715 0.2474757 0 0.4343104 0.9004453 0 0.4343104 0.9022249 0 0.2386715 0.256611 0 0.2493745 0.2456962 0 0.2539185 0.2474757 0 0.2458813 0.256611 0 0.2623799 0.2456962 0 0.2623799 0.2474757 0 0.2539185 0.256611 0 0.2557769 0.2456962 0 0.271506 0.2456962 0 0.2623799 0.256611 0 0.2711549 0.2474757 0 0.2623799 0.2418753 0 0.2711549 0.2371159 0 0.2528965 0.2418753 0 0.2440595 0.2418753 0 0.2364709 0.2418753 0 0.2623799 0.2840165 0 0.2714092 0.2840165 0 0.2539185 0.2840165 0 0.2458813 0.2840165 0 0.2386715 0.2840165 0 0.2623799 0.2748813 0 0.2714092 0.2748813 0 0.2539185 0.2748813 0 0.2458813 0.2748813 0 0.2386715 0.2748813 0 0.2623799 0.2657461 0 0.2714092 0.2657461 0 0.2539185 0.2657461 0 0.2458813 0.2657461 0 0.2386715 0.2657461 0 0.2711549 0.256611 0 0.7404957 0.2456962 0 0.7338927 0.2474757 0 0.7338927 0.2456962 0 0.7251176 0.2474757 0 0.7433761 0.2418753 0 0.7247667 0.2456962 0 0.7338927 0.2418753 0 0.7423542 0.2474757 0 0.7338927 0.256611 0 0.7251176 0.256611 0 0.7468981 0.2456962 0 0.7503913 0.2474757 0 0.7423542 0.256611 0 0.7529053 0.2456962 0 0.7576011 0.2474757 0 0.7503913 0.256611 0 0.7583349 0.2456962 0 0.7630218 0.2456962 0 0.7576011 0.256611 0 0.7598018 0.2418753 0 0.7522131 0.2418753 0 0.7576011 0.2840165 0 0.7503913 0.2840165 0 0.7423542 0.2840165 0 0.7338927 0.2840165 0 0.7423542 0.2748813 0 0.7338927 0.2748813 0 0.7249315 0.2840177 0 0.7576011 0.2748813 0 0.7503913 0.2748813 0 0.7423542 0.2657461 0 0.7338927 0.2657461 0 0.7249315 0.2748825 0 0.7576011 0.2657461 0 0.7503913 0.2657461 0 0.7249315 0.2657472 0 0.4899229 0.2749087 0 0.4905313 0.2672944 0 0.4981363 0.2672944 0 0.4981363 0.2749087 0 0.4905313 0.2657461 0 0.4817095 0.2749087 0 0.4817095 0.2657735 0 0.4905313 0.256611 0 0.4817095 0.2566474 0 0.492599 0.2398982 0 0.4960212 0.2398982 0 0.492599 0.2490332 0 0.4817095 0.2840439 0 0.4899229 0.2840439 0 0.4981363 0.2840439 0 0.4817562 0.2474757 0 0.4814053 0.2456962 0 0.4905313 0.2456962 0 0.4905313 0.2371159 0 0.4905313 0.2474757 0 0.4729812 0.2474757 0 0.4722792 0.2456962 0 0.4729812 0.2371159 0 0.4817562 0.2371159 0 0.4258489 0.9113601 0 0.4277074 0.9004453 0 0.4642062 0.2474757 0 0.4631531 0.2456962 0 0.4642062 0.2371159 0 0.455431 0.2474757 0 0.454027 0.2456962 0 0.455431 0.2371159 0 0.446656 0.2474757 0 0.444901 0.2456962 0 0.446656 0.2371159 0 0.4378809 0.2474757 0 0.4357749 0.2456962 0 0.4378809 0.2371159 0 0.4291058 0.2474757 0 0.4266489 0.2456962 0 0.4291058 0.2371159 0 0.4203309 0.2474757 0 0.4175228 0.2456962 0 0.4203309 0.2371159 0 0.4115558 0.2474757 0 0.4083968 0.2456962 0 0.4920539 0.5983101 0 0.4859571 0.5983101 0 0.4859571 0.5907141 0 0.4115558 0.2371159 0 0.4027807 0.2474757 0 0.3992707 0.2456962 0 0.4027807 0.2371159 0 0.3940057 0.2474757 0 0.3901446 0.2456962 0 0.3940057 0.2371159 0 0.3852306 0.2474757 0 0.3810186 0.2456962 0 0.3852306 0.2371159 0 0.3764556 0.2474757 0 0.3718925 0.2456962 0 0.3764556 0.2371159 0 0.3676805 0.2474757 0 0.3627665 0.2456962 0 0.3676805 0.2371159 0 0.3589054 0.2474757 0 0.3536404 0.2456962 0 0.3589054 0.2371159 0 0.3501304 0.2474757 0 0.3445144 0.2456962 0 0.3501304 0.2371159 0 0.3413553 0.2474757 0 0.5001898 0.593387 0 0.3353884 0.2456962 0 0.3413553 0.2371159 0 0.5066428 0.5907141 0 0.4814409 0.573983 0 0.480582 0.57773 0 0.3325804 0.2474757 0 0.3262623 0.2456962 0 0.3325804 0.2371159 0 0.3238052 0.2474757 0 0.3171362 0.2456962 0 0.3238052 0.2371159 0 0.3150302 0.2474757 0 0.3080102 0.2456962 0 0.3150302 0.2371159 0 0.3062551 0.2474757 0 0.2988841 0.2456962 0 0.3062551 0.2371159 0 0.2974801 0.2474757 0 0.289758 0.2456962 0 0.2974801 0.2371159 0 0.2887051 0.2474757 0 0.280632 0.2456962 0 0.2887051 0.2371159 0 0.27993 0.2474757 0 0.27993 0.2371159 0 0.27993 0.256611 0 0.2887051 0.256611 0 0.2974801 0.256611 0 0.242121 0.9022249 0 0.4409134 0.9004453 0 0.3062551 0.256611 0 0.3150302 0.256611 0 0.3238052 0.256611 0 0.2340838 0.9113601 0 0.3325804 0.256611 0 0.3413553 0.256611 0 0.2505824 0.9004453 0 0.3501304 0.256611 0 0.4783522 0.5831091 0 0.2505824 0.9022249 0 0.3589054 0.256611 0 0.3676805 0.256611 0 0.3764556 0.256611 0 0.3852306 0.256611 0 0.3940057 0.256611 0 0.4027807 0.256611 0 0.4115558 0.256611 0 0.4203309 0.256611 0 0.4291058 0.256611 0 0.4378809 0.256611 0 0.446656 0.256611 0 0.455431 0.256611 0 0.4642062 0.256611 0 0.4729812 0.256611 0 0.2804384 0.2657461 0 0.2894677 0.2657461 0 0.2984969 0.2657461 0 0.3075262 0.2657461 0 0.3165555 0.2657461 0 0.3255847 0.2657461 0 0.334614 0.2657461 0 0.3436432 0.2657461 0 0.3526725 0.2657461 0 0.3617018 0.2657461 0 0.3707311 0.2657461 0 0.3797603 0.2657461 0 0.3887896 0.2657461 0 0.3978189 0.2657461 0 0.4068481 0.2657461 0 0.4158773 0.2657461 0 0.4249066 0.2657461 0 0.4339359 0.2657461 0 0.4429652 0.2657461 0 0.4519944 0.2657461 0 0.4610237 0.2566474 0 0.4679189 0.2566474 0 0.4748142 0.2566474 0 0.5002514 0.2398982 0 0.4960212 0.2490332 0 0.2804384 0.2748813 0 0.2894677 0.2748813 0 0.2984969 0.2748813 0 0.3075262 0.2748813 0 0.3165555 0.2748813 0 0.3255847 0.2748813 0 0.334614 0.2748813 0 0.3436432 0.2748813 0 0.3526725 0.2748813 0 0.3617018 0.2748813 0 0.3707311 0.2748813 0 0.3797603 0.2748813 0 0.3887896 0.2748813 0 0.3978189 0.2748813 0 0.4068481 0.2748813 0 0.4158773 0.2748813 0 0.4249066 0.2748813 0 0.4339359 0.2748813 0 0.4429652 0.2748813 0 0.4610237 0.2657461 0 0.4519944 0.2748813 0 0.4674768 0.2566474 0 0.4610237 0.2748813 0 0.4655867 0.2657461 0 0.4610237 0.2840165 0 0.4655867 0.2840165 0 0.4519944 0.2840165 0 0.4429652 0.2840165 0 0.4339359 0.2840165 0 0.4249066 0.2840165 0 0.4158773 0.2840165 0 0.4068481 0.2840165 0 0.3978189 0.2840165 0 0.3887896 0.2840165 0 0.3797603 0.2840165 0 0.3707311 0.2840165 0 0.3617018 0.2840165 0 0.3526725 0.2840165 0 0.3436432 0.2840165 0 0.334614 0.2840165 0 0.3255847 0.2840165 0 0.3165555 0.2840165 0 0.3075262 0.2840165 0 0.2984969 0.2840165 0 0.2894677 0.2840165 0 0.2804384 0.2840165 0 0.4655867 0.2748813 0 0.5148675 0.2456962 0 0.5057414 0.2474757 0 0.5057414 0.2456962 0 0.5145164 0.2371159 0 0.5057414 0.2371159 0 0.5145164 0.2474757 0 0.5057414 0.2566474 0 0.5232914 0.2474757 0 0.5145164 0.256611 0 0.5239934 0.2456962 0 0.242121 0.9113601 0 0.4724082 0.573983 0 0.4692261 0.5831091 0 0.5320665 0.2474757 0 0.5232914 0.256611 0 0.5331195 0.2456962 0 0.5408415 0.2474757 0 0.5320665 0.256611 0 0.5422454 0.2456962 0 0.5496166 0.2474757 0 0.5408415 0.256611 0 0.5513715 0.2456962 0 0.5583917 0.2474757 0 0.5496166 0.256611 0 0.5604976 0.2456962 0 0.5671666 0.2474757 0 0.5583917 0.256611 0 0.5696236 0.2456962 0 0.5759417 0.2474757 0 0.5671666 0.256611 0 0.5787497 0.2456962 0 0.5847167 0.2474757 0 0.5759417 0.256611 0 0.5878758 0.2456962 0 0.5934919 0.2474757 0 0.5847167 0.256611 0 0.4859571 0.5755051 0 0.4904735 0.573983 0 0.4913323 0.57773 0 0.4995061 0.573983 0 0.2439793 0.9004453 0 0.4935622 0.5831091 0 0.5970019 0.2456962 0 0.602267 0.2474757 0 0.5934919 0.256611 0 0.6061279 0.2456962 0 0.611042 0.2474757 0 0.602267 0.256611 0 0.6152539 0.2456962 0 0.619817 0.2474757 0 0.611042 0.256611 0 0.6243801 0.2456962 0 0.6285921 0.2474757 0 0.619817 0.256611 0 0.633506 0.2456962 0 0.6373671 0.2474757 0 0.6285921 0.256611 0 0.6426322 0.2456962 0 0.6461423 0.2474757 0 0.6373671 0.256611 0 0.6517583 0.2456962 0 0.6549172 0.2474757 0 0.6461423 0.256611 0 0.6608843 0.2456962 0 0.6636923 0.2474757 0 0.6549172 0.256611 0 0.6700103 0.2456962 0 0.6724673 0.2474757 0 0.6636923 0.256611 0 0.6791363 0.2456962 0 0.6812424 0.2474757 0 0.6724673 0.256611 0 0.6882624 0.2456962 0 0.6900175 0.2474757 0 0.6812424 0.256611 0 0.6973885 0.2456962 0 0.6987925 0.2474757 0 0.6900175 0.256611 0 0.7065145 0.2456962 0 0.7075675 0.2474757 0 0.6987925 0.256611 0 0.7156406 0.2456962 0 0.7163425 0.2474757 0 0.7075675 0.256611 0 0.7163425 0.256611 0 0.7163425 0.2371159 0 0.7338927 0.2371159 0 0.7251176 0.2371159 0 0.7075675 0.2371159 0 0.6987925 0.2371159 0 0.6900175 0.2371159 0 0.6812424 0.2371159 0 0.5026883 0.5831091 0 0.5085387 0.573983 0 0.5118142 0.5831091 0 0.4427718 0.9022249 0 0.5175714 0.573983 0 0.5209403 0.5831091 0 0.6724673 0.2371159 0 0.6636923 0.2371159 0 0.5266039 0.573983 0 0.6549172 0.2371159 0 0.6461423 0.2371159 0 0.5300664 0.5831091 0 0.5356368 0.573983 0 0.6373671 0.2371159 0 0.5391924 0.5831091 0 0.5446694 0.573983 0 0.6285921 0.2371159 0 0.5483185 0.5831091 0 0.619817 0.2371159 0 0.2571854 0.9004453 0 0.553702 0.573983 0 0.5574446 0.5831091 0 0.611042 0.2371159 0 0.602267 0.2371159 0 0.5627346 0.573983 0 0.5665706 0.5831091 0 0.5934919 0.2371159 0 0.5717672 0.573983 0 0.5756967 0.5831091 0 0.5847167 0.2371159 0 0.5807999 0.573983 0 0.5848228 0.5831091 0 0.5759417 0.2371159 0 0.5898325 0.573983 0 0.5939488 0.5831091 0 0.5671666 0.2371159 0 0.5988652 0.573983 0 0.6030749 0.5831091 0 0.5583917 0.2371159 0 0.6078979 0.573983 0 0.612201 0.5831091 0 0.5496166 0.2371159 0 0.6169305 0.573983 0 0.621327 0.5831091 0 0.5408415 0.2371159 0 0.6259632 0.573983 0 0.630453 0.5831091 0 0.5320665 0.2371159 0 0.6349958 0.573983 0 0.6395792 0.5831091 0 0.5232914 0.2371159 0 0.6440284 0.573983 0 0.6487051 0.5831091 0 0.5036737 0.2398982 0 0.653061 0.573983 0 0.6578312 0.5831091 0 0.5002514 0.2490332 0 0.6620936 0.573983 0 0.6669571 0.5831091 0 0.518822 0.2566474 0 0.6711264 0.573983 0 0.6760832 0.5831091 0 0.5122817 0.2566474 0 0.680159 0.573983 0 0.6852093 0.5831091 0 0.5277832 0.2657724 0 0.6891916 0.573983 0 0.6943353 0.5831091 0 0.518822 0.2657735 0 0.6982242 0.573983 0 0.7034614 0.5831091 0 0.5367447 0.2657712 0 0.707257 0.573983 0 0.7125875 0.5831091 0 0.5457059 0.2657701 0 0.7162896 0.573983 0 0.7217135 0.5831091 0 0.5546671 0.2657689 0 0.7253222 0.573983 0 0.7295816 0.5820734 0 0.5636284 0.2657677 0 0.7343549 0.573983 0 0.7369192 0.5790344 0 0.5725897 0.2657667 0 0.7434146 0.5740044 0 0.7432226 0.5741979 0 0.581551 0.2657655 0 0.7398094 0.5648479 0 0.7495039 0.5650608 0 0.5905122 0.2657643 0 0.7480592 0.5678946 0 0.7307433 0.5648479 0 0.5994735 0.2657633 0 0.7216771 0.5648479 0 0.7126108 0.5648479 0 0.6084347 0.2657621 0 0.7035447 0.5648479 0 0.6944786 0.5648479 0 0.6173961 0.265761 0 0.6263574 0.2657597 0 0.6854124 0.5648479 0 0.6763463 0.5648479 0 0.6353187 0.2657587 0 0.6442799 0.2657575 0 0.6672802 0.5648479 0 0.658214 0.5648479 0 0.6491479 0.5648479 0 0.6400818 0.5648479 0 0.6310155 0.5648479 0 0.6219494 0.5648479 0 0.6128832 0.5648479 0 0.603817 0.5648479 0 0.5947509 0.5648479 0 0.5856848 0.5648479 0 0.5766186 0.5648479 0 0.5675524 0.5648479 0 0.5584863 0.5648479 0 0.5494201 0.5648479 0 0.540354 0.5648479 0 0.5312878 0.5648479 0 0.5222217 0.5648479 0 0.5131556 0.5648479 0 0.5040894 0.5648479 0 0.4950233 0.5648479 0 0.4859571 0.5648479 0 0.476891 0.5648479 0 0.4633755 0.573983 0 0.4678249 0.5648479 0 0.4601 0.5831091 0 0.4543429 0.573983 0 0.4587587 0.5648479 0 0.4509739 0.5831091 0 0.4453103 0.573983 0 0.4496925 0.5648479 0 0.4418479 0.5831091 0 0.4362776 0.573983 0 0.4406264 0.5648479 0 0.4327219 0.5831091 0 0.427245 0.573983 0 0.4315602 0.5648479 0 0.4235958 0.5831091 0 0.4182123 0.573983 0 0.4224941 0.5648479 0 0.4144697 0.5831091 0 0.4091797 0.573983 0 0.4134279 0.5648479 0 0.4053437 0.5831091 0 0.400147 0.573983 0 0.4043618 0.5648479 0 0.3962176 0.5831091 0 0.3911144 0.573983 0 0.3952956 0.5648479 0 0.3870915 0.5831091 0 0.3820817 0.573983 0 0.3862295 0.5648479 0 0.3779655 0.5831091 0 0.3730491 0.573983 0 0.3771634 0.5648479 0 0.3688394 0.5831091 0 0.3640164 0.573983 0 0.3680972 0.5648479 0 0.3597134 0.5831091 0 0.3549838 0.573983 0 0.3590311 0.5648479 0 0.3505873 0.5831091 0 0.3459511 0.573983 0 0.3499649 0.5648479 0 0.3414613 0.5831091 0 0.3369185 0.573983 0 0.3408987 0.5648479 0 0.3323353 0.5831091 0 0.3278858 0.573983 0 0.3318326 0.5648479 0 0.3232092 0.5831091 0 0.3188533 0.573983 0 0.3227664 0.5648479 0 0.3140831 0.5831091 0 0.3098206 0.573983 0 0.3137003 0.5648479 0 0.304957 0.5831091 0 0.3007879 0.573983 0 0.3046342 0.5648479 0 0.295831 0.5831091 0 0.2917552 0.573983 0 0.2955679 0.5648479 0 0.286705 0.5831091 0 0.2827227 0.573983 0 0.2865018 0.5648479 0 0.2775789 0.5831091 0 0.27369 0.573983 0 0.2774357 0.5648479 0 0.2684528 0.5831091 0 0.2646573 0.573983 0 0.2683695 0.5648479 0 0.2593268 0.5831091 0 0.2556247 0.573983 0 0.2593034 0.5648479 0 0.2502007 0.5831091 0 0.2465921 0.573983 0 0.2502372 0.5648479 0 0.2423327 0.5820734 0 0.2375594 0.573983 0 0.241171 0.5648479 0 0.2286917 0.5741979 0 0.2284997 0.5740044 0 0.2321049 0.5648479 0 0.2349951 0.5790344 0 0.2238552 0.5678946 0 0.72137 0.5283071 0 0.712646 0.5222687 0 0.7217135 0.5222687 0 0.7295816 0.5233044 0 0.7123156 0.5283071 0 0.7035785 0.5222687 0 0.7032614 0.5283071 0 0.6945109 0.5222687 0 0.694207 0.5283071 0 0.2590438 0.9022249 0 0.6854434 0.5222687 0 0.6532412 0.2657564 0 0.6622025 0.2657552 0 0.6711637 0.2657541 0 0.6801251 0.2657529 0 0.6890863 0.2657518 0 0.6980476 0.2657506 0 0.7070089 0.2657495 0 0.7159702 0.2657485 0 0.514259 0.2657735 0 0.5123689 0.2566474 0 0.518822 0.2749087 0 0.514259 0.2749087 0 0.5277832 0.2749075 0 0.5367447 0.2749064 0 0.5457059 0.2749052 0 0.5546671 0.2749041 0 0.5636284 0.274903 0 0.5725897 0.2749018 0 0.581551 0.2749006 0 0.5905122 0.2748996 0 0.5994735 0.2748984 0 0.6084347 0.2748972 0 0.6173961 0.2748962 0 0.6263574 0.274895 0 0.6353187 0.2748939 0 0.6442799 0.2748927 0 0.6532412 0.2748915 0 0.6622025 0.2748904 0 0.6851526 0.5283071 0 0.6763759 0.5222687 0 0.6760982 0.5283071 0 0.277785 0.6950272 0 0.6673082 0.5222687 0 0.2687175 0.6950272 0 0.6670439 0.5283071 0 0.6582407 0.5222687 0 0.2596499 0.685892 0 0.6579896 0.5283071 0 0.649173 0.5222687 0 0.2505824 0.685892 0 0.6489352 0.5283071 0 0.6401055 0.5222687 0 0.242121 0.6950272 0 0.639881 0.5283071 0 0.631038 0.5222687 0 0.7039602 0.685892 0 0.6308266 0.5283071 0 0.6219705 0.5222687 0 0.6948926 0.685892 0 0.6217723 0.5283071 0 0.6129029 0.5222687 0 0.685825 0.685892 0 0.6127179 0.5283071 0 0.6038353 0.5222687 0 0.6767575 0.685892 0 0.6036636 0.5283071 0 0.5947678 0.5222687 0 0.6676898 0.685892 0 0.5946093 0.5283071 0 0.5857003 0.5222687 0 0.6586224 0.685892 0 0.5855547 0.5283071 0 0.5766326 0.5222687 0 0.6495548 0.685892 0 0.5765004 0.5283071 0 0.5675651 0.5222687 0 0.6404873 0.685892 0 0.5674461 0.5283071 0 0.5584975 0.5222687 0 0.6314197 0.685892 0 0.5583918 0.5283071 0 0.54943 0.5222687 0 0.6223522 0.685892 0 0.5493374 0.5283071 0 0.5403625 0.5222687 0 0.6132846 0.685892 0 0.5402831 0.5283071 0 0.5312949 0.5222687 0 0.6042169 0.685892 0 0.5312288 0.5283071 0 0.5222274 0.5222687 0 0.5951494 0.685892 0 0.5221745 0.5283071 0 0.5131598 0.5222687 0 0.5860819 0.685892 0 0.5131201 0.5283071 0 0.5040923 0.5222687 0 0.5770143 0.685892 0 0.5040658 0.5283071 0 0.4950247 0.5222687 0 0.5679468 0.685892 0 0.4859571 0.5283071 0 0.4859571 0.5222687 0 0.5588793 0.685892 0 0.4950115 0.5283071 0 0.4769029 0.5283071 0 0.5498117 0.685892 0 0.4768896 0.5222687 0 0.4678485 0.5283071 0 0.5407442 0.685892 0 0.4678221 0.5222687 0 0.4587941 0.5283071 0 0.5316767 0.685892 0 0.4587545 0.5222687 0 0.4497398 0.5283071 0 0.522609 0.685892 0 0.4496869 0.5222687 0 0.4406855 0.5283071 0 0.5135415 0.685892 0 0.4406194 0.5222687 0 0.4316311 0.5283071 0 0.4315518 0.5222687 0 0.5044739 0.685892 0 0.4225768 0.5283071 0 0.4224842 0.5222687 0 0.4954064 0.685892 0 0.4135224 0.5283071 0 0.4134167 0.5222687 0 0.4863388 0.685892 0 0.4044681 0.5283071 0 0.4043492 0.5222687 0 0.4772713 0.685892 0 0.3954138 0.5283071 0 0.3952816 0.5222687 0 0.4682037 0.685892 0 0.3863594 0.5283071 0 0.386214 0.5222687 0 0.4591361 0.685892 0 0.3773051 0.5283071 0 0.3771465 0.5222687 0 0.4500686 0.685892 0 0.3682507 0.5283071 0 0.3680789 0.5222687 0 0.4410011 0.685892 0 0.3591964 0.5283071 0 0.3590114 0.5222687 0 0.4319335 0.685892 0 0.3501421 0.5283071 0 0.3499438 0.5222687 0 0.4228659 0.685892 0 0.3410877 0.5283071 0 0.3408762 0.5222687 0 0.4137984 0.685892 0 0.3320334 0.5283071 0 0.3318087 0.5222687 0 0.4047308 0.685892 0 0.3229791 0.5283071 0 0.3227412 0.5222687 0 0.3956633 0.685892 0 0.3139247 0.5283071 0 0.3136736 0.5222687 0 0.3865957 0.685892 0 0.3048703 0.5283071 0 0.3046061 0.5222687 0 0.3775282 0.685892 0 0.295816 0.5283071 0 0.2955385 0.5222687 0 0.3684606 0.685892 0 0.2867617 0.5283071 0 0.2864709 0.5222687 0 0.359393 0.685892 0 0.2777073 0.5283071 0 0.2774034 0.5222687 0 0.3503255 0.685892 0 0.268653 0.5283071 0 0.2683358 0.5222687 0 0.3412579 0.685892 0 0.2595987 0.5283071 0 0.2592683 0.5222687 0 0.3321904 0.685892 0 0.2505444 0.5283071 0 0.2502007 0.5222687 0 0.3231228 0.685892 0 0.24149 0.5283071 0 0.2423327 0.5233044 0 0.3140552 0.685892 0 0.2349951 0.5263433 0 0.2322773 0.5281105 0 0.3049877 0.685892 0 0.2329235 0.5374423 0 0.2238811 0.5374383 0 0.2959202 0.685892 0 0.2286917 0.5311798 0 0.2419604 0.5374423 0 0.2868526 0.685892 0 0.2509973 0.5374423 0 0.2600342 0.5374423 0 0.277785 0.685892 0 0.2690712 0.5374423 0 0.2781081 0.5374423 0 0.2687175 0.685892 0 0.287145 0.5374423 0 0.242121 0.685892 0 0.2214534 0.6658421 0 0.2961819 0.5374423 0 0.2261402 0.6658421 0 0.3052188 0.5374423 0 0.3142557 0.5374423 0 0.3232926 0.5374423 0 0.3323295 0.5374423 0 0.3413664 0.5374423 0 0.3504034 0.5374423 0 0.3594403 0.5374423 0 0.3684772 0.5374423 0 0.3775141 0.5374423 0 0.3865511 0.5374423 0 0.395588 0.5374423 0 0.4046248 0.5374423 0 0.4136618 0.5374423 0 0.4226987 0.5374423 0 0.4317356 0.5374423 0 0.4407725 0.5374423 0 0.4498094 0.5374423 0 0.4588464 0.5374423 0 0.4678833 0.5374423 0 0.4769202 0.5374423 0 0.4859571 0.5374423 0 0.5040309 0.5374423 0 0.4949941 0.5374423 0 0.5130678 0.5374423 0 0.5221049 0.5374423 0 0.5311416 0.5374423 0 0.5401787 0.5374423 0 0.5492154 0.5374423 0 0.5582525 0.5374423 0 0.5672894 0.5374423 0 0.5763263 0.5374423 0 0.5853633 0.5374423 0 0.5944002 0.5374423 0 0.6034371 0.5374423 0 0.612474 0.5374423 0 0.6215109 0.5374423 0 0.6305478 0.5374423 0 0.6395848 0.5374423 0 0.6486217 0.5374423 0 0.6576586 0.5374423 0 0.6666955 0.5374423 0 0.6757324 0.5374423 0 0.6847694 0.5374423 0 0.6938062 0.5374423 0 0.7028432 0.5374423 0 0.71188 0.5374423 0 0.720917 0.5374423 0 0.7304243 0.5283071 0 0.729954 0.5374423 0 0.7369192 0.5263433 0 0.739637 0.5281105 0 0.7389908 0.5374423 0 0.7432226 0.5311798 0 0.748033 0.5374383 0 0.2305402 0.5465775 0 0.2204524 0.5463315 0 0.2218186 0.541746 0 0.2396623 0.5465775 0 0.2487843 0.5465775 0 0.2579063 0.5465775 0 0.2670284 0.5465775 0 0.2761504 0.5465775 0 0.220853 0.6676217 0 0.2852724 0.5465775 0 0.2315698 0.6658421 0 0.2943945 0.5465775 0 0.4343104 0.9113601 0 0.2340838 0.6676217 0 0.3035165 0.5465775 0 0.3126385 0.5465775 0 0.3217605 0.5465775 0 0.2505824 0.9113601 0 0.3308825 0.5465775 0 0.3400047 0.5465775 0 0.3491267 0.5465775 0 0.3582487 0.5465775 0 0.3673707 0.5465775 0 0.3764928 0.5465775 0 0.3856148 0.5465775 0 0.3947368 0.5465775 0 0.4038588 0.5465775 0 0.4129809 0.5465775 0 0.4221029 0.5465775 0 0.4312249 0.5465775 0 0.440347 0.5465775 0 0.4494691 0.5465775 0 0.4585911 0.5465775 0 0.4677131 0.5465775 0 0.4768352 0.5465775 0 0.4859571 0.5465775 0 0.4950792 0.5465775 0 0.5042013 0.5465775 0 0.5133232 0.5465775 0 0.5224453 0.5465775 0 0.5315673 0.5465775 0 0.5406893 0.5465775 0 0.5498114 0.5465775 0 0.5589333 0.5465775 0 0.5680554 0.5465775 0 0.5771775 0.5465775 0 0.5862994 0.5465775 0 0.5954216 0.5465775 0 0.6045436 0.5465775 0 0.6136656 0.5465775 0 0.6227876 0.5465775 0 0.6319096 0.5465775 0 0.6410316 0.5465775 0 0.6501538 0.5465775 0 0.6592757 0.5465775 0 0.6683978 0.5465775 0 0.6775198 0.5465775 0 0.6866418 0.5465775 0 0.6957639 0.5465775 0 0.704886 0.5465775 0 0.714008 0.5465775 0 0.72313 0.5465775 0 0.732252 0.5465775 0 0.741374 0.5465775 0 0.7500957 0.541746 0 0.7514619 0.5463315 0 0.2295863 0.5557126 0 0.2199469 0.5558494 0 0.2197805 0.5526889 0 0.2385818 0.5557126 0 0.2475772 0.5557126 0 0.2565727 0.5557126 0 0.2655682 0.5557126 0 0.2745636 0.5557126 0 0.2835591 0.5557126 0 0.2925545 0.5557126 0 0.4473157 0.9004453 0 0.2635878 0.9004453 0 0.30155 0.5557126 0 0.3105455 0.5557126 0 0.319541 0.5557126 0 0.3285364 0.5557126 0 0.3375319 0.5557126 0 0.3465273 0.5557126 0 0.3555228 0.5557126 0 0.3645183 0.5557126 0 0.3735138 0.5557126 0 0.3825092 0.5557126 0 0.3915047 0.5557126 0 0.4005001 0.5557126 0 0.4094956 0.5557126 0 0.4184912 0.5557126 0 0.4274866 0.5557126 0 0.436482 0.5557126 0 0.4454775 0.5557126 0 0.454473 0.5557126 0 0.4634685 0.5557126 0 0.4724639 0.5557126 0 0.4814594 0.5557126 0 0.4904549 0.5557126 0 0.4994504 0.5557126 0 0.5084459 0.5557126 0 0.5174413 0.5557126 0 0.5264367 0.5557126 0 0.5354322 0.5557126 0 0.5444278 0.5557126 0 0.5534232 0.5557126 0 0.5624187 0.5557126 0 0.5714141 0.5557126 0 0.5804095 0.5557126 0 0.5894049 0.5557126 0 0.5984005 0.5557126 0 0.607396 0.5557126 0 0.6163915 0.5557126 0 0.625387 0.5557126 0 0.6343824 0.5557126 0 0.6433778 0.5557126 0 0.6523733 0.5557126 0 0.6613687 0.5557126 0 0.6703643 0.5557126 0 0.6793598 0.5557126 0 0.6883552 0.5557126 0 0.6973507 0.5557126 0 0.7063462 0.5557126 0 0.7153416 0.5557126 0 0.7243371 0.5557126 0 0.7333325 0.5557126 0 0.7423279 0.5557126 0 0.7519673 0.5558494 0 0.7521337 0.5526889 0 0.2208131 0.5605454 0 0.2224104 0.5650608 0 0.7511011 0.5605454 0 0.3297963 0.5282495 0 0.3351643 0.5258913 0 0.3364641 0.5255082 0 0.3193962 0.5385811 0 0.32184 0.5350265 0 0.323851 0.5327883 0 0.3165691 0.5599948 0 0.4508089 0.9022249 0 0.4427718 0.9113601 0 0.2670809 0.9022249 0 0.315617 0.5534694 0 0.3156064 0.5526889 0 0.4487029 0.5667967 0 0.2590438 0.9113601 0 0.453323 0.9004453 0 0.6711637 0.2748893 0 0.6801251 0.2748882 0 0.226874 0.6676217 0 0.226874 0.6767569 0 0.269595 0.9004453 0 0.4580187 0.9022249 0 0.4508089 0.9113601 0 0.4652619 0.4344284 0 0.4605975 0.4253024 0 0.4583668 0.4344284 0 0.4450275 0.5717772 0 0.4663773 0.4253024 0 0.4579246 0.4317555 0 0.4514715 0.4344284 0 0.5028167 0.4317555 0 0.5092698 0.4344284 0 0.5023745 0.4344284 0 0.5001438 0.4253024 0 0.3467205 0.499117 0 0.3553268 0.5005924 0 0.3463697 0.5005924 0 0.339091 0.4996343 0 0.3555996 0.499117 0 0.3642838 0.5005924 0 0.3644787 0.499117 0 0.3732409 0.5005924 0 0.3733578 0.499117 0 0.3821979 0.5005924 0 0.391116 0.499117 0 0.3911549 0.5005924 0 0.3822369 0.499117 0 0.3999951 0.499117 0 0.400112 0.5005924 0 0.4088742 0.499117 0 0.4090691 0.5005924 0 0.4177534 0.499117 0 0.4180261 0.5005924 0 0.4266326 0.499117 0 0.4269832 0.5005924 0 0.4355616 0.4992512 0 0.4342619 0.4996343 0 0.4329246 0.4899817 0 0.4408103 0.4899817 0 0.441047 0.4968249 0 0.444248 0.5725895 0 0.42526 0.4901932 0 0.4144372 0.4970447 0 0.4216515 0.4933693 0 0.4515257 0.5600109 0 0.4064496 0.4983109 0 0.3984619 0.4970447 0 0.3876392 0.4901932 0 0.3912477 0.4933693 0 0.3788312 0.4899817 0 0.3698021 0.4899817 0 0.3607731 0.4899817 0 0.3517441 0.4899817 0 0.3377913 0.4992512 0 0.3427151 0.4899817 0 0.3336861 0.4899817 0 0.332306 0.4968249 0 0.326478 0.4923542 0 0.448886 0.4901161 0 0.446875 0.4923542 0 0.4451063 0.4808466 0 0.4537582 0.4811043 0 0.4513481 0.4865264 0 0.4373424 0.4808466 0 0.4273652 0.4876555 0 0.4307647 0.4812451 0 0.3855339 0.4876555 0 0.3743438 0.4808466 0 0.4506165 0.5627975 0 0.3821344 0.4812451 0 0.3653669 0.4808466 0 0.3563901 0.4808466 0 0.3474132 0.4808466 0 0.3384364 0.4808466 0 0.3244669 0.4901161 0 0.3294595 0.4808466 0 0.3220049 0.4865264 0 0.3195947 0.4811043 0 0.3805924 0.4724537 0 0.3719192 0.4717114 0 0.3806065 0.47165 0 0.3630047 0.4717114 0 0.3540902 0.4717114 0 0.4487211 0.5667616 0 0.652518 0.5667967 0 0.3451757 0.4717114 0 0.3362612 0.4717114 0 0.3273467 0.4717114 0 0.3182439 0.4716731 0 0.3182333 0.4724537 0 0.3748142 0.4625762 0 0.3812129 0.4668234 0 0.3658253 0.4625762 0 0.3568363 0.4625762 0 0.3478474 0.4625762 0 0.3388584 0.4625762 0 0.3298694 0.4625762 0 0.3201095 0.4623449 0 0.318779 0.4669361 0 0.3827198 0.4621842 0 0.3802663 0.4534411 0 0.3855339 0.4572518 0 0.3711881 0.4534411 0 0.3621098 0.4534411 0 0.3530314 0.4534411 0 0.3439531 0.4534411 0 0.3348748 0.4534411 0 0.3256984 0.4533653 0 0.3220049 0.458381 0 0.3891534 0.4532343 0 0.3821979 0.444315 0 0.3911549 0.444315 0 0.3912477 0.451538 0 0.3732409 0.444315 0 0.3642838 0.444315 0 0.3553268 0.444315 0 0.3463697 0.444315 0 0.339091 0.4452729 0 0.332306 0.4480824 0 0.326478 0.4525531 0 0.400112 0.444315 0 0.3984619 0.4478626 0 0.4064496 0.4465965 0 0.4090691 0.444315 0 0.4144372 0.4478626 0 0.4180261 0.444315 0 0.4216515 0.451538 0 0.4269832 0.444315 0 0.4237458 0.4532343 0 0.4315552 0.4534411 0 0.4273652 0.4572518 0 0.4342619 0.4452729 0 0.4395558 0.4534411 0 0.4368882 0.4625762 0 0.4301794 0.4621842 0 0.446875 0.4525531 0 0.4476545 0.4533653 0 0.4446802 0.4625762 0 0.441047 0.4480824 0 0.4513481 0.458381 0 0.4532433 0.4623449 0 0.6488428 0.5717772 0 0.6480632 0.5725895 0 0.4316863 0.4668234 0 0.4396839 0.4717114 0 0.6553409 0.5600109 0 0.6544316 0.5627975 0 0.4322927 0.47165 0 0.4473023 0.4717114 0 0.4545739 0.4669361 0 0.4551091 0.4716731 0 0.4323068 0.4724537 0 0.4551197 0.4724537 0 0.6220504 0.4478626 0 0.6218414 0.444315 0 0.6307986 0.444315 0 0.6300379 0.4465965 0 0.6380256 0.4478626 0 0.6380771 0.4452729 0 0.6127417 0.4532343 0 0.6128844 0.444315 0 0.6148361 0.451538 0 0.6039565 0.4534411 0 0.6039274 0.444315 0 0.59498 0.4534411 0 0.5949702 0.444315 0 0.5860034 0.4534411 0 0.5860132 0.444315 0 0.5770562 0.444315 0 0.577027 0.4534411 0 0.568099 0.444315 0 0.5661474 0.451538 0 0.559142 0.444315 0 0.5682417 0.4532343 0 0.5509454 0.4465965 0 0.550185 0.444315 0 0.5589331 0.4478626 0 0.5429579 0.4478626 0 0.5429063 0.4452729 0 0.5357436 0.451538 0 0.5361212 0.4480824 0 0.5336493 0.4532343 0 0.5302932 0.4525531 0 0.5295137 0.4533653 0 0.5300298 0.4572518 0 0.5258203 0.458381 0 0.5272156 0.4621842 0 0.571861 0.4572518 0 0.5820419 0.4625762 0 0.5746753 0.4621842 0 0.5904918 0.4625762 0 0.5989417 0.4625762 0 0.6091223 0.4572518 0 0.606308 0.4621842 0 0.6448622 0.4480824 0 0.6452398 0.451538 0 0.6506903 0.4525531 0 0.6473341 0.4532343 0 0.6514697 0.4533653 0 0.6509535 0.4572518 0 0.6537677 0.4621842 0 0.6551632 0.458381 0 0.6570587 0.4623449 0 0.6552746 0.4668234 0 0.6558812 0.47165 0 0.6583892 0.4669361 0 0.6589243 0.4716731 0 0.6558951 0.4724537 0 0.6575733 0.4811043 0 0.6589348 0.4724537 0 0.6543531 0.4812451 0 0.6551632 0.4865264 0 0.6527013 0.4901161 0 0.6509535 0.4876555 0 0.6488484 0.4901932 0 0.6506903 0.4923542 0 0.6448622 0.4968249 0 0.6452398 0.4933693 0 0.6525364 0.5667616 0 0.6393769 0.4992512 0 0.6380256 0.4970447 0 0.5232115 0.5385811 0 0.6304477 0.499117 0 0.6300379 0.4983109 0 0.6215687 0.499117 0 0.5256553 0.5350265 0 0.5276663 0.5327883 0 0.6220504 0.4970447 0 0.6148361 0.4933693 0 0.6126895 0.499117 0 0.6112275 0.4901932 0 0.6038104 0.499117 0 0.6030658 0.4899817 0 0.6091223 0.4876555 0 0.5949314 0.499117 0 0.5946831 0.4899817 0 0.5987004 0.4808466 0 0.6057228 0.4812451 0 0.5860522 0.499117 0 0.5863004 0.4899817 0 0.5904918 0.4808466 0 0.5779176 0.4899817 0 0.582283 0.4808466 0 0.577173 0.499117 0 0.5697559 0.4901932 0 0.571861 0.4876555 0 0.5752606 0.4812451 0 0.5682938 0.499117 0 0.5661474 0.4933693 0 0.5594147 0.499117 0 0.5589331 0.4970447 0 0.5505357 0.499117 0 0.5509454 0.4983109 0 0.5429579 0.4970447 0 0.5361212 0.4968249 0 0.5357436 0.4933693 0 0.5416065 0.4992512 0 0.5302932 0.4923542 0 0.532135 0.4901932 0 0.5282822 0.4901161 0 0.5300298 0.4876555 0 0.5266304 0.4812451 0 0.5258203 0.4865264 0 0.5429063 0.4996343 0 0.559142 0.5005924 0 0.550185 0.5005924 0 0.568099 0.5005924 0 0.5770562 0.5005924 0 0.5860132 0.5005924 0 0.5949702 0.5005924 0 0.6039274 0.5005924 0 0.6128844 0.5005924 0 0.6218414 0.5005924 0 0.6307986 0.5005924 0 0.6380771 0.4996343 0 0.52341 0.4811043 0 0.5250883 0.4724537 0 0.5220591 0.4716731 0 0.5220485 0.4724537 0 0.5251024 0.47165 0 0.5239247 0.4623449 0 0.5257088 0.4668234 0 0.5225943 0.4669361 0 0.5768026 0.4724537 0 0.5835265 0.4717114 0 0.5767887 0.47165 0 0.5904918 0.4717114 0 0.5974568 0.4717114 0 0.6041808 0.4724537 0 0.6041949 0.47165 0 0.6048012 0.4668234 0 0.5761821 0.4668234 0 0.4322541 0.47406 0 0.4310248 0.4644178 0 0.4323068 0.4724537 0 0.4233658 0.473939 0 0.5336115 0.5282495 0 0.5389795 0.5258913 0 0.4220297 0.4648038 0 0.4273652 0.4572539 0 0.5402793 0.5255082 0 0.4149076 0.473939 0 0.4142396 0.4648038 0 0.4180479 0.4556687 0 0.4259666 0.4554926 0 0.5203843 0.5599948 0 0.4064496 0.473939 0 0.4064496 0.4648038 0 0.4103157 0.4556687 0 0.3979915 0.473939 0 0.3986595 0.4648038 0 0.4025835 0.4556687 0 0.3908695 0.4648038 0 0.3948513 0.4556687 0 0.3895334 0.473939 0 0.3818744 0.4644178 0 0.3869326 0.4554926 0 0.3806451 0.47406 0 0.3805924 0.4724537 0 0.3855339 0.4572539 0 0.3813972 0.4788544 0 0.393007 0.4830742 0 0.5194322 0.5534694 0 0.5194216 0.5526889 0 0.3830477 0.4834494 0 0.4019687 0.4830742 0 0.4109305 0.4830742 0 0.4198922 0.4830742 0 0.4298515 0.4834494 0 0.431502 0.4788544 0 0.3855339 0.4876534 0 0.3982695 0.4922094 0 0.3899485 0.4923589 0 0.4064496 0.4922094 0 0.4146296 0.4922094 0 0.4229507 0.4923589 0 0.4273652 0.4876534 0 0.3912548 0.4933749 0 0.398454 0.4970427 0 0.4064496 0.4983087 0 0.4216444 0.4933749 0 0.4144452 0.4970427 0 0.4216444 0.4515324 0 0.4144452 0.4478646 0 0.4064496 0.4465985 0 0.398454 0.4478646 0 0.3912548 0.4515324 0 0.57675 0.47406 0 0.5755206 0.4644178 0 0.5768026 0.4724537 0 0.5678616 0.473939 0 0.5665256 0.4648038 0 0.571861 0.4572539 0 0.5594035 0.473939 0 0.5587355 0.4648038 0 0.5625439 0.4556687 0 0.5704625 0.4554926 0 0.5509454 0.473939 0 0.5509454 0.4648038 0 0.5548115 0.4556687 0 0.5424874 0.473939 0 0.5431554 0.4648038 0 0.5470793 0.4556687 0 0.5353653 0.4648038 0 0.5393471 0.4556687 0 0.5340292 0.473939 0 0.5263703 0.4644178 0 0.5314285 0.4554926 0 0.5251409 0.47406 0 0.5250883 0.4724537 0 0.5300298 0.4572539 0 0.5258931 0.4788544 0 0.5375029 0.4830742 0 0.5275437 0.4834494 0 0.5464646 0.4830742 0 0.5554264 0.4830742 0 0.5643882 0.4830742 0 0.5743474 0.4834494 0 0.5759978 0.4788544 0 0.5300298 0.4876534 0 0.5427654 0.4922094 0 0.5344445 0.4923589 0 0.5509454 0.4922094 0 0.5591255 0.4922094 0 0.5674465 0.4923589 0 0.571861 0.4876534 0 0.5357506 0.4933749 0 0.5429498 0.4970427 0 0.5509454 0.4983087 0 0.5661402 0.4933749 0 0.558941 0.4970427 0 0.5661402 0.4515324 0 0.558941 0.4478646 0 0.5509454 0.4465985 0 0.5429498 0.4478646 0 0.5357506 0.4515324 0 0.6558425 0.47406 0 0.6546131 0.4644178 0 0.6558951 0.4724537 0 0.6469541 0.473939 0 0.645618 0.4648038 0 0.6509535 0.4572539 0 0.638496 0.473939 0 0.637828 0.4648038 0 0.6416363 0.4556687 0 0.6495548 0.4554926 0 0.6300379 0.473939 0 0.6300379 0.4648038 0 0.633904 0.4556687 0 0.6215799 0.473939 0 0.6222479 0.4648038 0 0.6261718 0.4556687 0 0.6144577 0.4648038 0 0.6184396 0.4556687 0 0.6131217 0.473939 0 0.2742907 0.9022249 0 0.6054628 0.4644178 0 0.6105208 0.4554926 0 0.6042334 0.47406 0 0.2670809 0.9113601 0 0.6041808 0.4724537 0 0.6091223 0.4572539 0 0.2797114 0.9004453 0 0.6049856 0.4788544 0 0.6165953 0.4830742 0 0.4670967 0.6253023 0 0.4579706 0.6214572 0 0.4579706 0.6165713 0 0.4579706 0.625919 0 0.4637504 0.6074452 0 0.4579706 0.6120376 0 0.4670967 0.6165713 0 0.4579706 0.6074452 0 0.4670967 0.6218948 0 0.4579706 0.6240982 0 0.2803116 0.9022249 0 0.4579706 0.6214889 0 0.2742907 0.9113601 0 0.606636 0.4834494 0 0.2750245 0.9004453 0 0.2375769 0.6658421 0 0.6255571 0.4830742 0 0.2340838 0.6767569 0 0.2803116 0.9113601 0 0.241099 0.6620213 0 0.2322619 0.6620213 0 0.4670967 0.6257919 0 0.4579706 0.6165713 0 0.4670967 0.632704 0 0.4579706 0.6303549 0 0.2764914 0.8966244 0 0.4579706 0.6299828 0 0.6345189 0.4830742 0 0.6434805 0.4830742 0 0.2689028 0.8966244 0 0.6534398 0.4834494 0 0.6550903 0.4788544 0 0.4670967 0.6165713 0 0.6091223 0.4876534 0 0.6218579 0.4922094 0 0.613537 0.4923589 0 0.6890863 0.2748871 0 0.6300379 0.4922094 0 0.6980476 0.2748858 0 0.7070089 0.2748847 0 0.7159702 0.2748837 0 0.518822 0.2840439 0 0.4579706 0.6117212 0 0.4670967 0.6112477 0 0.2600657 0.8966244 0 0.2505824 0.8966244 0 0.4579706 0.6090444 0 0.4670967 0.6073506 0 0.638218 0.4922094 0 0.646539 0.4923589 0 0.241099 0.8966244 0 0.514259 0.2840439 0 0.4579706 0.6029024 0 0.5277832 0.2840427 0 0.5367447 0.2840416 0 0.5457059 0.2840404 0 0.6509535 0.4876534 0 0.4579706 0.5998401 0 0.232262 0.8966244 0 0.2246734 0.8966244 0 0.2803116 0.9387656 0 0.2742907 0.9387656 0 0.6148431 0.4933749 0 0.6220423 0.4970427 0 0.5546671 0.2840393 0 0.5636284 0.2840382 0 0.5725897 0.2840371 0 0.581551 0.2840358 0 0.5905122 0.2840347 0 0.5994735 0.2840336 0 0.6084347 0.2840325 0 0.4634394 0.9004453 0 0.6300379 0.4983087 0 0.6452327 0.4933749 0 0.6380335 0.4970427 0 0.6452327 0.4515324 0 0.6380335 0.4478646 0 0.4640397 0.9022249 0 0.4580187 0.9113601 0 0.4587525 0.9004453 0 0.6300379 0.4465985 0 0.6220423 0.4478646 0 0.4945022 0.6165713 0 0.4975168 0.6120376 0 0.4975168 0.6165713 0 0.4975168 0.6074452 0 0.4975168 0.6214572 0 0.4945022 0.6253023 0 0.4975168 0.625919 0 0.4640397 0.9113601 0 0.4975168 0.6299828 0 0.4975168 0.6303549 0 0.6148431 0.4515324 0 0.2246734 0.6620213 0 0.4697236 0.4085713 0 0.6173961 0.2840314 0 0.4945022 0.632704 0 0.2340838 0.7041625 0 0.4602194 0.8966244 0 0.6263574 0.2840301 0 0.4945022 0.6218948 0 0.4526308 0.8966244 0 0.6353187 0.284029 0 0.226874 0.7041625 0 0.4437937 0.8966244 0 0.4605975 0.4085713 0 0.6442799 0.2840279 0 0.4975168 0.6214889 0 0.6532412 0.2840268 0 0.4605975 0.4036538 0 0.4697236 0.4138948 0 0.4605975 0.4134213 0 0.4697236 0.4032478 0 0.4605975 0.4010444 0 0.4343104 0.8966244 0 0.4605975 0.4160981 0 0.4697236 0.3993506 0 0.4975168 0.6240982 0 0.4945022 0.6165713 0 0.4975168 0.6165713 0 0.4945022 0.6257919 0 0.2340838 0.6950272 0 0.4945022 0.6112477 0 0.4975168 0.6117212 0 0.4697236 0.3998403 0 0.4605975 0.4036854 0 0.4605975 0.3992234 0 0.424827 0.8966244 0 0.4697236 0.4085713 0 0.41599 0.8966244 0 0.4975168 0.6090444 0 0.6622025 0.2840256 0 0.4945022 0.6073506 0 0.4084014 0.8966244 0 0.6711637 0.2840244 0 0.4640397 0.9387656 0 0.4580187 0.9387656 0 0.4508089 0.9387656 0 0.6801251 0.2840233 0 0.4427718 0.9387656 0 0.491737 0.6074452 0 0.4975168 0.6029024 0 0.4975168 0.5998401 0 0.4605975 0.4085713 0 0.6890863 0.2840222 0 0.6980476 0.284021 0 0.7070089 0.2840199 0 0.7159702 0.2840187 0 0.514259 0.2931791 0 0.4817562 0.2285271 0 0.4814053 0.2247063 0 0.4905313 0.2247063 0 0.4695303 0.620643 0 0.4695303 0.6165713 0 0.4343104 0.9387656 0 0.4695303 0.6124996 0 0.4695303 0.624102 0 0.226874 0.6950272 0 0.2340838 0.685892 0 0.226874 0.685892 0 0.4787338 0.6821169 0 0.4863388 0.6859194 0 0.4648876 0.3973047 0 0.4648876 0.3969326 0 0.4740136 0.3945836 0 0.4605975 0.413105 0 0.4258489 0.9387656 0 0.4178118 0.9387656 0 0.410602 0.9387656 0 0.404581 0.9387656 0 0.4640397 0.9296305 0 0.4580187 0.9296305 0 0.4605975 0.4161672 0 0.4859571 0.620643 0 0.4859571 0.6165713 0 0.2670809 0.9387656 0 0.4859571 0.6124996 0 0.2590438 0.9387656 0 0.4859571 0.624102 0 0.4863388 0.6874405 0 0.2505824 0.9387656 0 0.4787338 0.6874405 0 0.242121 0.9387656 0 0.4787338 0.6767933 0 0.4863388 0.6767933 0 0.2340838 0.9387656 0 0.2505824 0.6486731 0 0.4697236 0.4177919 0 0.226874 0.9387656 0 0.4695303 0.6090406 0 0.4663773 0.4161672 0 0.4605975 0.4222402 0 0.220853 0.9387656 0 0.4971291 0.4085713 0 0.5001438 0.4085713 0 0.4905313 0.2285271 0 0.4957863 0.2307629 0 0.4927611 0.2247063 0 0.4981363 0.2247063 0 0.4919837 0.2307629 0 0.4859571 0.6090406 0 0.4508089 0.9296305 0 0.5001438 0.4134213 0 0.5004864 0.2307629 0 0.2803116 0.9296305 0 0.5035114 0.2247063 0 0.5042889 0.2307629 0 0.5057414 0.2285271 0 0.5057414 0.2247063 0 0.4695303 0.6299847 0 0.4971291 0.4032478 0 0.5001438 0.4036538 0 0.4971291 0.4138948 0 0.5001438 0.4160981 0 0.5148675 0.2247063 0 0.5232914 0.2285271 0 0.5239934 0.2247063 0 0.5145164 0.2285271 0 0.5320665 0.2285271 0 0.5331195 0.2247063 0 0.5408415 0.2285271 0 0.4695303 0.6347938 0 0.4695303 0.6236191 0 0.4695303 0.6165713 0 0.4695303 0.6074452 0 0.4859571 0.6236191 0 0.4859571 0.6165713 0 0.4859571 0.6074452 0 0.4859571 0.6299847 0 0.4859571 0.6347938 0 0.5422454 0.2247063 0 0.5496166 0.2285271 0 0.5513715 0.2247063 0 0.5583917 0.2285271 0 0.5604976 0.2247063 0 0.5671666 0.2285271 0 0.5696236 0.2247063 0 0.5001438 0.4010444 0 0.4971291 0.3993506 0 0.5014192 0.3945836 0 0.5044338 0.3969326 0 0.5044338 0.3973047 0 0.4928017 0.5831091 0 0.4935622 0.5831091 0 0.2742907 0.9296305 0 0.4907959 0.5879478 0 0.4907959 0.5782704 0 0.4913335 0.5777327 0 0.4859571 0.5762646 0 0.4859571 0.5755041 0 0.5759417 0.2285271 0 0.5787497 0.2247063 0 0.4805808 0.5777327 0 0.5847167 0.2285271 0 0.4791126 0.5831091 0 0.5878758 0.2247063 0 0.4811184 0.5782704 0 0.2670809 0.9296305 0 0.5934919 0.2285271 0 0.2505824 0.6448522 0 0.2596499 0.6448522 0 0.2419044 0.6534324 0 0.2427143 0.6448522 0 0.4427718 0.9296305 0 0.5970019 0.2247063 0 0.602267 0.2285271 0 0.6061279 0.2247063 0 0.611042 0.2285271 0 0.6152539 0.2247063 0 0.619817 0.2285271 0 0.6243801 0.2247063 0 0.6285921 0.2285271 0 0.633506 0.2247063 0 0.6373671 0.2285271 0 0.6426322 0.2247063 0 0.4928017 0.5831091 0 0.4791126 0.5831091 0 0.4811184 0.5782704 0 0.2596499 0.6486731 0 0.4907959 0.5879478 0 0.2590438 0.9296305 0 0.4811184 0.5879478 0 0.4907959 0.5782704 0 0.4859571 0.5762646 0 0.2687175 0.6448522 0 0.2687175 0.6486731 0 0.4343104 0.9296305 0 0.277785 0.6448522 0 0.6461423 0.2285271 0 0.4258489 0.9296305 0 0.277785 0.6486731 0 0.2868526 0.6448522 0 0.2868526 0.6486731 0 0.2959202 0.6448522 0 0.2505824 0.9296305 0 0.6517583 0.2247063 0 0.242121 0.9296305 0 0.2959202 0.6486731 0 0.3049877 0.6448522 0 0.3049877 0.6486731 0 0.3140552 0.6448522 0 0.4178118 0.9296305 0 0.6549172 0.2285271 0 0.4859571 0.5899536 0 0.6608843 0.2247063 0 0.6636923 0.2285271 0 0.410602 0.9296305 0 0.404581 0.9296305 0 0.4640397 0.9204953 0 0.4580187 0.9204953 0 0.4508089 0.9204953 0 0.4427718 0.9204953 0 0.4343104 0.9204953 0 0.4258489 0.9204953 0 0.4178118 0.9204953 0 0.410602 0.9204953 0 0.404581 0.9204953 0 0.4038901 0.9220437 0 0.3962851 0.9220437 0 0.3962851 0.9204953 0 0.4038901 0.913526 0 0.3962851 0.9113601 0 0.3881148 0.9296579 0 0.3962851 0.9205226 0 0.3962851 0.9296579 0 0.3874778 0.9205226 0 0.3962851 0.9113966 0 0.3881057 0.9387931 0 0.3962851 0.9387931 0 0.4038901 0.9037824 0 0.3962851 0.9022249 0 0.3962851 0.9004453 0 0.4038901 0.8964908 0 0.3993939 0.8918651 0 0.4038901 0.9050083 0 0.4038901 0.9129176 0 0.3886892 0.9113966 0 0.3874833 0.9479281 0 0.4038901 0.8855121 0 0.4038901 0.8794554 0 0.4092692 0.8794554 0 0.4025058 0.8832763 0 0.4083603 0.8855121 0 0.4106018 0.8880357 0 0.4128013 0.8794554 0 0.412995 0.8794554 0 0.4191046 0.8794554 0 0.4510748 0.8880357 0 0.449561 0.8794554 0 0.4558194 0.8794554 0 0.458019 0.8880357 0 0.4452533 0.8794554 0 0.4429883 0.8880357 0 0.4406678 0.8794554 0 0.4343104 0.8880357 0 0.4343104 0.8794554 0 0.4256324 0.8880357 0 0.43115 0.8794554 0 0.4264539 0.8794554 0 0.4219384 0.8794554 0 0.4175459 0.8880357 0 0.4038901 0.8879731 0 0.4038901 0.8946473 0 0.4542156 0.982884 0 0.4520499 0.985926 0 0.4495123 0.985926 0 0.4484182 0.9862302 0 0.4483831 0.985926 0 0.4519728 0.985926 0 0.4542492 0.9862302 0 0.4542109 0.985926 0 0.442961 0.985926 0 0.4495101 0.982884 0 0.4431018 0.985926 0 0.440711 0.982884 0 0.4343104 0.985926 0 0.4453061 0.982884 0 0.4343104 0.985926 0 0.4343104 0.982884 0 0.4335068 0.985926 0 0.4359168 0.982884 0 0.42868 0.985926 0 0.4287928 0.985926 0 0.4335298 0.985926 0 0.4242017 0.985926 0 0.4262745 0.982884 0 0.424041 0.985926 0 0.4191085 0.985926 0 0.4202163 0.9862302 0 0.4202376 0.985926 0 0.415222 0.985926 0 0.4191107 0.982884 0 0.4150909 0.985926 0 0.4173493 0.982884 0 0.4143841 0.9862302 0 0.4144098 0.985926 0 0.4143841 0.9862302 0 0.4144098 0.985926 0 0.415222 0.985926 0 0.4202163 0.9862302 0 0.4202376 0.985926 0 0.4191107 0.982884 0 0.4191085 0.985926 0 0.4150909 0.985926 0 0.4173493 0.982884 0 0.4191107 0.982884 0 0.4191085 0.985926 0 0.4150909 0.985926 0 0.4173493 0.982884 0 0.4542156 0.982884 0 0.4520499 0.985926 0 0.4495123 0.985926 0 0.4542156 0.982884 0 0.4520499 0.985926 0 0.4495123 0.985926 0 0.4484182 0.9862302 0 0.4483831 0.985926 0 0.4519728 0.985926 0 0.4542492 0.9862302 0 0.4542109 0.985926 0 0.442961 0.985926 0 0.4495101 0.982884 0 0.4431018 0.985926 0 0.440711 0.982884 0 0.4343104 0.985926 0 0.4453061 0.982884 0 0.4343104 0.985926 0 0.4343104 0.982884 0 0.4335068 0.985926 0 0.4359168 0.982884 0 0.42868 0.985926 0 0.4287928 0.985926 0 0.4335298 0.985926 0 0.4242017 0.985926 0 0.4262745 0.982884 0 0.424041 0.985926 0 0.440711 0.982884 0 0.4431018 0.985926 0 0.4343104 0.985926 0 0.4495101 0.982884 0 0.4453061 0.982884 0 0.4343104 0.982884 0 0.4335068 0.985926 0 0.4359168 0.982884 0 0.42868 0.985926 0 0.4262745 0.982884 0 0.424041 0.985926 0 0.3658265 0.9191823 0 0.3752781 0.9247363 0 0.370428 0.9235647 0 0.3655105 0.924771 0 0.3749617 0.9184203 0 0.3840969 0.9190016 0 0.3840969 0.9266067 0 0.3779549 0.9266849 0 0.370428 0.9113966 0 0.3749617 0.9113966 0 0.3655421 0.9119261 0 0.379554 0.9113966 0 0.3610802 0.9134007 0 0.3566914 0.9251468 0 0.3570165 0.9157568 0 0.3566443 0.9160326 0 0.3629011 0.9266849 0 0.3605907 0.9301426 0 0.3519681 0.9208046 0 0.359781 0.9342118 0 0.3566914 0.9342118 0 0.3487318 0.9271567 0 0.3629011 0.9417387 0 0.3566914 0.9432767 0 0.3476146 0.9342118 0 0.3605907 0.9382809 0 0.3658265 0.9492412 0 0.3566443 0.9523908 0 0.3519681 0.9476188 0 0.3655105 0.9436525 0 0.3487318 0.9412667 0 0.3655421 0.9564975 0 0.3570165 0.9526667 0 0.3610802 0.9550228 0 0.3749617 0.9500031 0 0.3749617 0.9570269 0 0.370428 0.9570269 0 0.370428 0.9448589 0 0.3752781 0.9436873 0 0.3780239 0.9570269 0 0.3840969 0.9494219 0 0.3840969 0.9570269 0 0.3840969 0.9418167 0 0.3779549 0.9417387 0 0.3802653 0.9382809 0 0.3871591 0.9570269 0 0.3871591 0.9479281 0 0.381075 0.9342118 0 0.3840969 0.9342118 0 0.3871591 0.9387931 0 0.3871591 0.9296579 0 0.3802653 0.9301426 0 0.3871591 0.9205226 0 0.3840969 0.9113966 0 0.3871591 0.9113966 0 0.3888558 0.9113966 0 0.3917221 0.9479281 0 0.3936121 0.9570269 0 0.3917221 0.9387931 0 0.3917221 0.9296579 0 0.3917221 0.9205226 0 0.3698797 0.9479281 0 0.3663563 0.944048 0 0.370428 0.9448589 0 0.3744996 0.944048 0 0.3698633 0.9205226 0 0.370428 0.9235647 0 0.3663563 0.9243756 0 0.3786705 0.9205226 0 0.3744996 0.9243756 0 0.3628973 0.9266865 0 0.3610559 0.9205226 0 0.360826 0.9296117 0 0.3546344 0.9387931 0 0.3605929 0.9301343 0 0.354623 0.9296579 0 0.3597826 0.9342118 0 0.3605929 0.9382892 0 0.3608403 0.9388413 0 0.3610779 0.9479281 0 0.3628973 0.9417369 0 0.3522289 0.9479707 0 0.3779587 0.9417369 0 0.3786815 0.9479281 0 0.3800156 0.9388413 0 0.380263 0.9382892 0 0.3810734 0.9342118 0 0.380263 0.9301343 0 0.3800299 0.9296117 0 0.3779587 0.9266865 0 0.370428 0.9570269 0 0.3633801 0.9559097 0 0.3780239 0.9570269 0 0.3570146 0.9526667 0 0.351973 0.9476251 0 0.34873 0.9412596 0 0.3480876 0.9388413 0 0.348082 0.9296093 0 0.3476128 0.9342118 0 0.351973 0.9207982 0 0.34873 0.9271638 0 0.3522055 0.9204836 0 0.3570146 0.9157568 0 0.3633801 0.9125137 0 0.370428 0.9113966 0 0.379554 0.9113966 0 0.3936121 0.9113966 0 0.4083603 0.9129176 0 0.4092665 0.9220437 0 0.4079133 0.9129176 0 0.4087289 0.9220437 0 0.4038901 0.9220437 0 0.4038901 0.9129176 0 0.3990515 0.9220437 0 0.3998671 0.9129176 0 0.4083603 0.9037824 0 0.4083603 0.8946473 0 0.4038901 0.8855121 0 0.4038901 0.8794554 0 0.4087289 0.8794554 0 0.4079133 0.8855121 0 0.3998671 0.8855121 0 0.3990515 0.8794554 0 0.4038901 0.8946473 0 0.3998671 0.8946473 0 0.4079133 0.8946473 0 0.4079133 0.9037824 0 0.4038901 0.9037824 0 0.3998671 0.9037824 0 0.2340838 0.9296305 0 0.226874 0.9296305 0 0.220853 0.9296305 0 0.2803116 0.9204953 0 0.2742907 0.9204953 0 0.2670809 0.9204953 0 0.2590438 0.9204953 0 0.2505824 0.9204953 0 0.242121 0.9204953 0 0.2340838 0.9204953 0 0.226874 0.9204953 0 0.220853 0.9204953 0 0.2974148 0.9205226 0 0.2886076 0.9296579 0 0.2886076 0.9220437 0 0.2886076 0.9205226 0 0.2967779 0.9296579 0 0.2886076 0.9387931 0 0.296787 0.9387931 0 0.2810026 0.8964908 0 0.2886076 0.9004453 0 0.2886076 0.9022249 0 0.2810026 0.8946473 0 0.2854989 0.8918651 0 0.2810026 0.9037824 0 0.2886076 0.9113966 0 0.2810026 0.9050083 0 0.2810026 0.9129176 0 0.2886076 0.9167201 0 0.2765324 0.8855121 0 0.2756235 0.8794554 0 0.2810026 0.8794554 0 0.2810026 0.8855121 0 0.282387 0.8832763 0 0.2673468 0.8880357 0 0.2718978 0.8794554 0 0.2720914 0.8794554 0 0.265788 0.8794554 0 0.2742909 0.8880357 0 0.2268738 0.8880357 0 0.2290733 0.8794554 0 0.2353318 0.8794554 0 0.2338179 0.8880357 0 0.2396395 0.8794554 0 0.2419044 0.8880357 0 0.244225 0.8794554 0 0.2505824 0.8794554 0 0.2505824 0.8880357 0 0.2537428 0.8794554 0 0.2584388 0.8794554 0 0.2592603 0.8880357 0 0.2629544 0.8794554 0 0.2810026 0.8879731 0 0.2306561 0.9862302 0 0.2306818 0.985926 0 0.23292 0.985926 0 0.2364882 0.9862302 0 0.2365096 0.985926 0 0.2353827 0.982884 0 0.2353805 0.985926 0 0.2328428 0.985926 0 0.2306772 0.982884 0 0.2675434 0.982884 0 0.2698018 0.985926 0 0.2657843 0.985926 0 0.2646902 0.9862302 0 0.2646551 0.985926 0 0.2696707 0.985926 0 0.2705212 0.9862302 0 0.2704829 0.985926 0 0.265782 0.982884 0 0.2608518 0.985926 0 0.2586182 0.982884 0 0.2562127 0.985926 0 0.2560999 0.985926 0 0.2606911 0.985926 0 0.2513629 0.985926 0 0.251386 0.985926 0 0.2505824 0.985926 0 0.2505824 0.985926 0 0.2419318 0.985926 0 0.2505824 0.982884 0 0.241791 0.985926 0 0.2395866 0.982884 0 0.248976 0.982884 0 0.2441817 0.982884 0 0.2675434 0.982884 0 0.2698018 0.985926 0 0.2657843 0.985926 0 0.2675434 0.982884 0 0.2698018 0.985926 0 0.2657843 0.985926 0 0.2646902 0.9862302 0 0.2646551 0.985926 0 0.2696707 0.985926 0 0.2705212 0.9862302 0 0.2704829 0.985926 0 0.265782 0.982884 0 0.2608518 0.985926 0 0.2586182 0.982884 0 0.2562127 0.985926 0 0.2560999 0.985926 0 0.2606911 0.985926 0 0.2513629 0.985926 0 0.251386 0.985926 0 0.2505824 0.985926 0 0.2505824 0.985926 0 0.2419318 0.985926 0 0.2505824 0.982884 0 0.241791 0.985926 0 0.2395866 0.982884 0 0.2353805 0.985926 0 0.248976 0.982884 0 0.2441817 0.982884 0 0.2364882 0.9862302 0 0.2365096 0.985926 0 0.23292 0.985926 0 0.2353827 0.982884 0 0.2328428 0.985926 0 0.2306772 0.982884 0 0.2306561 0.9862302 0 0.2306818 0.985926 0 0.2353827 0.982884 0 0.2353805 0.985926 0 0.2328428 0.985926 0 0.2306772 0.982884 0 0.2505824 0.982884 0 0.2505824 0.985926 0 0.241791 0.985926 0 0.2586182 0.982884 0 0.251386 0.985926 0 0.2395866 0.982884 0 0.248976 0.982884 0 0.2441817 0.982884 0 0.2562127 0.985926 0 0.265782 0.982884 0 0.2608518 0.985926 0 0.3190661 0.9191823 0 0.3193823 0.924771 0 0.3144648 0.9235647 0 0.309931 0.9184203 0 0.3096146 0.9247363 0 0.3282014 0.9251468 0 0.3219917 0.9266849 0 0.3193507 0.9119261 0 0.3282484 0.9160326 0 0.309931 0.9113966 0 0.3144648 0.9113966 0 0.3278763 0.9157568 0 0.3238125 0.9134007 0 0.3053387 0.9113966 0 0.3007959 0.9190016 0 0.3007959 0.9113966 0 0.3007959 0.9266067 0 0.3069378 0.9266849 0 0.3282014 0.9342118 0 0.3243021 0.9301426 0 0.3251118 0.9342118 0 0.3282014 0.9432767 0 0.3243021 0.9382809 0 0.3219917 0.9417387 0 0.3193823 0.9436525 0 0.3190661 0.9492412 0 0.3144648 0.9448589 0 0.3238125 0.9550228 0 0.3193507 0.9564975 0 0.309931 0.9500031 0 0.3278763 0.9526667 0 0.3282484 0.9523908 0 0.3096146 0.9436873 0 0.3144648 0.9570269 0 0.3329246 0.9476188 0 0.3361609 0.9412667 0 0.3372781 0.9342118 0 0.3329246 0.9208046 0 0.3361609 0.9271567 0 0.3007959 0.9494219 0 0.3007959 0.9418167 0 0.3069378 0.9417387 0 0.309931 0.9570269 0 0.3068688 0.9570269 0 0.3007959 0.9342118 0 0.3046274 0.9382809 0 0.3038177 0.9342118 0 0.3046274 0.9301426 0 0.2977337 0.9113966 0 0.2977337 0.9204953 0 0.2977337 0.9296305 0 0.2977337 0.9387656 0 0.2977337 0.9479007 0 0.3007959 0.9570269 0 0.2977337 0.9570269 0 0.2912806 0.9570269 0 0.2931706 0.9204953 0 0.2960369 0.9113966 0 0.2931706 0.9296305 0 0.2931706 0.9387656 0 0.2931706 0.9479007 0 0.3150131 0.9479281 0 0.3144648 0.9448589 0 0.3185364 0.944048 0 0.3062113 0.9479281 0 0.3103932 0.944048 0 0.3219954 0.9417369 0 0.3238148 0.9479281 0 0.3240525 0.9388413 0 0.3302584 0.9387931 0 0.3242998 0.9382892 0 0.3251102 0.9342118 0 0.3302697 0.9296579 0 0.3242998 0.9301343 0 0.3240668 0.9296117 0 0.3238368 0.9205226 0 0.3219954 0.9266865 0 0.3326872 0.9204836 0 0.3185364 0.9243756 0 0.3150294 0.9205226 0 0.3144648 0.9235647 0 0.3103932 0.9243756 0 0.306934 0.9266865 0 0.3062222 0.9205226 0 0.3048628 0.9296117 0 0.3046297 0.9301343 0 0.3038193 0.9342118 0 0.3046297 0.9382892 0 0.304877 0.9388413 0 0.306934 0.9417369 0 0.3144648 0.9113966 0 0.3215126 0.9125137 0 0.3053387 0.9113966 0 0.3278782 0.9157568 0 0.3329197 0.9207982 0 0.3361627 0.9271638 0 0.3368107 0.9296093 0 0.3368051 0.9388413 0 0.3372799 0.9342118 0 0.3329197 0.9476251 0 0.3361627 0.9412596 0 0.3326639 0.9479707 0 0.3278782 0.9526667 0 0.3215126 0.9559097 0 0.3144648 0.9570269 0 0.3068688 0.9570269 0 0.2912805 0.9113966 0 0.2962036 0.9113966 0 0.2886076 0.9113966 0 0.2810026 0.913526 0 0.2886076 0.9220437 0 0.2810026 0.9220437 0 0.2756262 0.9220437 0 0.2765324 0.9129176 0 0.2810026 0.9129176 0 0.2810026 0.9220437 0 0.2761638 0.9220437 0 0.2850257 0.9129176 0 0.2858413 0.9220437 0 0.2769794 0.9129176 0 0.2765324 0.8946473 0 0.2765324 0.9037824 0 0.2769794 0.8855121 0 0.2761638 0.8794554 0 0.2810026 0.8794554 0 0.2810026 0.8855121 0 0.2858413 0.8794554 0 0.2769794 0.8946473 0 0.2810026 0.8946473 0 0.2850257 0.8855121 0 0.2810026 0.9037824 0 0.2850257 0.9037824 0 0.2769794 0.9037824 0 0.2850257 0.8946473 0 0.3140552 0.6486731 0 0.3231228 0.6448522 0 0.3231228 0.6486731 0 0.3321904 0.6448522 0 0.3321904 0.6486731 0 0.3412579 0.6448522 0 0.3412579 0.6486731 0 0.3503255 0.6448522 0 0.3503255 0.6486731 0 0.359393 0.6448522 0 0.359393 0.6486731 0 0.3684606 0.6448522 0 0.3684606 0.6486731 0 0.3775282 0.6448522 0 0.3775282 0.6486731 0 0.3865957 0.6448522 0 0.3865957 0.6486731 0 0.3956633 0.6448522 0 0.3956633 0.6486731 0 0.4047308 0.6448522 0 0.4047308 0.6486731 0 0.4137984 0.6448522 0 0.4137984 0.6486731 0 0.4228659 0.6448522 0 0.4228659 0.6486731 0 0.4319335 0.6448522 0 0.4319335 0.6486731 0 0.4410011 0.6448522 0 0.4410011 0.6486731 0 0.4500686 0.6448522 0 0.4500686 0.6486731 0 0.4591361 0.6448522 0 0.4591361 0.6486731 0 0.4682037 0.6448522 0 0.4682037 0.6486731 0 0.4772713 0.6448522 0 0.4772713 0.6486731 0 0.4863388 0.6448522 0 0.4863388 0.6486731 0 0.4954064 0.6448522 0 0.4954064 0.6486731 0 0.5044739 0.6448522 0 0.5044739 0.6486731 0 0.5135415 0.6448522 0 0.5135415 0.6486731 0 0.522609 0.6448522 0 0.522609 0.6486731 0 0.5316767 0.6448522 0 0.5316767 0.6486731 0 0.5407442 0.6448522 0 0.5407442 0.6486731 0 0.5498117 0.6448522 0 0.5498117 0.6486731 0 0.5588793 0.6448522 0 0.5588793 0.6486731 0 0.5679468 0.6448522 0 0.5679468 0.6486731 0 0.5770143 0.6448522 0 0.5770143 0.6486731 0 0.5860819 0.6448522 0 0.5860819 0.6486731 0 0.5951494 0.6448522 0 0.5951494 0.6486731 0 0.6042169 0.6448522 0 0.6042169 0.6486731 0 0.6132846 0.6448522 0 0.6132846 0.6486731 0 0.6223522 0.6448522 0 0.6223522 0.6486731 0 0.6314197 0.6448522 0 0.6314197 0.6486731 0 0.6404873 0.6448522 0 0.6404873 0.6486731 0 0.6495548 0.6448522 0 0.6495548 0.6486731 0 0.6586224 0.6448522 0 0.6586224 0.6486731 0 0.6676898 0.6448522 0 0.6676898 0.6486731 0 0.6767575 0.6448522 0 0.6767575 0.6486731 0 0.685825 0.6448522 0 0.685825 0.6486731 0 0.6948926 0.6448522 0 0.6948926 0.6486731 0 0.7039602 0.6448522 0 0.7039602 0.6486731 0 0.7130277 0.6448522 0 0.7130277 0.6486731 0 0.7220953 0.6448522 0 0.7220953 0.6486731 0 0.7299632 0.6448522 0 0.7307732 0.6534324 0 0.737301 0.6448522 0 0.7220953 0.6534324 0 0.7388598 0.6534324 0 0.7400186 0.6448522 0 0.7436042 0.6448522 0 0.2268738 0.6534324 0 0.232659 0.6448522 0 0.2353767 0.6448522 0 0.2290733 0.6448522 0 0.2338179 0.6534324 0 0.7458038 0.6534324 0 0.2505824 0.6572619 0 0.2505824 0.6534324 0 0.5879903 0.7482808 0 0.5857694 0.7513229 0 0.5836751 0.7513229 0 0.648421 0.7516268 0 0.6426169 0.7513229 0 0.6484449 0.7513229 0 0.5836681 0.7482808 0 0.576461 0.7513229 0 0.5764689 0.7482808 0 0.5684733 0.7513229 0 0.5684733 0.7482808 0 0.5604856 0.7513229 0 0.5604777 0.7482808 0 0.5532714 0.7513229 0 0.5532786 0.7482808 0 0.551177 0.7513229 0 0.5489564 0.7482808 0 0.5280844 0.751627 0 0.5280479 0.7513229 0 0.5338761 0.7513229 0 0.5339932 0.751627 0 0.540661 0.7513229 0 0.5479397 0.7513229 0 0.5568967 0.7513229 0 0.5568967 0.7516271 0 0.5658538 0.7513229 0 0.5658538 0.7516271 0 0.5748109 0.7513229 0 0.5748109 0.7516271 0 0.5837679 0.7513229 0 0.5837679 0.7516271 0 0.592725 0.7513229 0 0.592725 0.7516271 0 0.6016819 0.7513229 0 0.6016819 0.7516271 0 0.6106391 0.7513229 0 0.6106391 0.7516271 0 0.6195961 0.7513229 0 0.6195961 0.7516271 0 0.6285532 0.7513229 0 0.6285532 0.7516271 0 0.6358318 0.7513229 0 0.6425167 0.7516271 0 0.3441244 0.7513229 0 0.3530815 0.7513229 0 0.3368458 0.7513229 0 0.3530815 0.7516271 0 0.3620386 0.7513229 0 0.3620386 0.7516271 0 0.3709956 0.7513229 0 0.3709956 0.7516271 0 0.3799526 0.7513229 0 0.3799526 0.7516271 0 0.3889097 0.7513229 0 0.3889097 0.7516271 0 0.3978668 0.7513229 0 0.3978668 0.7516271 0 0.4068238 0.7513229 0 0.4068238 0.7516271 0 0.4157809 0.7513229 0 0.4157809 0.7516271 0 0.424738 0.7513229 0 0.424738 0.7516271 0 0.4320166 0.7513229 0 0.4387015 0.7516271 0 0.4388016 0.7513229 0 0.4446058 0.7516268 0 0.4446297 0.7513229 0 0.4434944 0.7482808 0 0.4412736 0.7513229 0 0.4391794 0.7513229 0 0.4391722 0.7482808 0 0.4319651 0.7513229 0 0.4319731 0.7482808 0 0.4239774 0.7513229 0 0.4239774 0.7482808 0 0.4159898 0.7513229 0 0.4159818 0.7482808 0 0.4087756 0.7513229 0 0.4087827 0.7482808 0 0.4066813 0.7513229 0 0.4044605 0.7482808 0 0.364402 0.7482808 0 0.3621812 0.7513229 0 0.3600868 0.7513229 0 0.3600797 0.7482808 0 0.3528726 0.7513229 0 0.3528806 0.7482808 0 0.344885 0.7513229 0 0.344885 0.7482808 0 0.3368973 0.7513229 0 0.3368894 0.7482808 0 0.3296831 0.7513229 0 0.3296902 0.7482808 0 0.3275888 0.7513229 0 0.325368 0.7482808 0 0.3242693 0.751627 0 0.3242327 0.7513229 0 0.3300608 0.7513229 0 0.3301781 0.751627 0 0.5051993 0.694285 0 0.5143254 0.6920816 0 0.5143254 0.6955393 0 0.5143254 0.6996085 0 0.5051993 0.6996085 0 0.5143254 0.7036776 0 0.5051993 0.704932 0 0.5143254 0.7071355 0 0.4777938 0.694285 0 0.4747792 0.6955393 0 0.4747792 0.6920816 0 0.4777938 0.704932 0 0.4747792 0.7071355 0 0.4747792 0.7036776 0 0.4747792 0.6996085 0 0.4777938 0.6996085 0 0.5027657 0.6996085 0 0.5027657 0.7036861 0 0.5027657 0.7042382 0 0.5027657 0.7071337 0 0.5027657 0.6950085 0 0.5027657 0.695531 0 0.5027657 0.6920833 0 0.4863388 0.7042382 0 0.4863388 0.7071337 0 0.4863388 0.7036861 0 0.4863388 0.6996085 0 0.4863388 0.695531 0 0.4863388 0.6950085 0 0.4863388 0.6920833 0 0.4884539 0.6783144 0 0.4911775 0.6874405 0 0.4863388 0.6874405 0 0.4918762 0.6783144 0 0.4842238 0.6783144 0 0.4815001 0.6874405 0 0.4808015 0.6783144 0 0.4884539 0.6509088 0 0.4863388 0.6448522 0 0.4911775 0.6448522 0 0.4918762 0.6509088 0 0.4842238 0.6509088 0 0.4815001 0.6448522 0 0.4808015 0.6509088 0 0.4808015 0.660044 0 0.4842238 0.660044 0 0.4884539 0.660044 0 0.4918762 0.660044 0 0.4918762 0.6691792 0 0.4884539 0.6691792 0 0.4842238 0.6691792 0 0.4808015 0.6691792 0 0.6700103 0.2247063 0 0.6724673 0.2285271 0 0.6791363 0.2247063 0 0.6812424 0.2285271 0 0.6882624 0.2247063 0 0.6900175 0.2285271 0 0.6973885 0.2247063 0 0.6987925 0.2285271 0 0.7065145 0.2247063 0 0.7075675 0.2285271 0 0.7156406 0.2247063 0 0.7163425 0.2285271 0 0.7247667 0.2247063 0 0.7251176 0.2285271 0 0.7338927 0.2247063 0 0.7338927 0.2285271 0 0.7417607 0.2247063 0 0.7425707 0.2332864 0 0.7490985 0.2247063 0 0.7338927 0.2332864 0 0.7506573 0.2332864 0 0.7554017 0.2247063 0 0.7576013 0.2332864 0 0.2386713 0.2332864 0 0.2408708 0.2247063 0 0.2471742 0.2247063 0 0.2456154 0.2332864 0 0.2545118 0.2247063 0 0.253702 0.2332864 0 0.2623799 0.2247063 0 0.2623799 0.2285271 0 0.271506 0.2247063 0 0.27993 0.2285271 0 0.280632 0.2247063 0 0.2711549 0.2285271 0 0.2887051 0.2285271 0 0.289758 0.2247063 0 0.2974801 0.2285271 0 0.2988841 0.2247063 0 0.3062551 0.2285271 0 0.3080102 0.2247063 0 0.3150302 0.2285271 0 0.3171362 0.2247063 0 0.3238052 0.2285271 0 0.3262623 0.2247063 0 0.3325804 0.2285271 0 0.3353884 0.2247063 0 0.3413553 0.2285271 0 0.3445144 0.2247063 0 0.3501304 0.2285271 0 0.3536404 0.2247063 0 0.3589054 0.2285271 0 0.3627665 0.2247063 0 0.3676805 0.2285271 0 0.3718925 0.2247063 0 0.3764556 0.2285271 0 0.3810186 0.2247063 0 0.3852306 0.2285271 0 0.3901446 0.2247063 0 0.3940057 0.2285271 0 0.3992707 0.2247063 0 0.4027807 0.2285271 0 0.4083968 0.2247063 0 0.4115558 0.2285271 0 0.4175228 0.2247063 0 0.4203309 0.2285271 0 0.4266489 0.2247063 0 0.4291058 0.2285271 0 0.4357749 0.2247063 0 0.4378809 0.2285271 0 0.444901 0.2247063 0 0.446656 0.2285271 0 0.454027 0.2247063 0 0.455431 0.2285271 0 0.4631531 0.2247063 0 0.4642062 0.2285271 0 0.4722792 0.2247063 0 0.4729812 0.2285271 0 0.2623799 0.2371159 0 0.2623799 0.2332864 0 0.355922 0.3311768 0 0.364879 0.3311768 0 0.3486433 0.3311768 0 0.364879 0.331481 0 0.3738361 0.3311768 0 0.3738361 0.331481 0 0.3827931 0.3311768 0 0.3827931 0.331481 0 0.3917502 0.3311768 0 0.3917502 0.331481 0 0.4007072 0.3311768 0 0.4007072 0.331481 0 0.4096643 0.3311768 0 0.4096643 0.331481 0 0.4186213 0.3311768 0 0.4186213 0.331481 0 0.4275784 0.3311768 0 0.4275784 0.331481 0 0.4365354 0.3311768 0 0.4365354 0.331481 0 0.4438141 0.3311768 0 0.4451139 0.3311768 0 0.450499 0.331481 0 0.4505991 0.3311768 0 0.3419755 0.331481 0 0.3418583 0.3311768 0 0.3473435 0.3311768 0 0.3360668 0.331481 0 0.3360302 0.3311768 0 0.4564033 0.331481 0 0.4564272 0.3311768 0 0.4325028 0.3281349 0 0.4348122 0.3311768 0 0.4312036 0.3311768 0 0.4311965 0.3281349 0 0.4239894 0.3311768 0 0.4239974 0.3281349 0 0.4160018 0.3311768 0 0.4160018 0.3281349 0 0.4080142 0.3311768 0 0.4080062 0.3281349 0 0.4008 0.3311768 0 0.4008071 0.3281349 0 0.3971913 0.3311768 0 0.3995008 0.3281349 0 0.6560912 0.3281349 0 0.6584006 0.3311768 0 0.654792 0.3311768 0 0.6602185 0.331481 0 0.6544144 0.3311768 0 0.6602424 0.3311768 0 0.654785 0.3281349 0 0.6475777 0.3311768 0 0.6475858 0.3281349 0 0.6395901 0.3311768 0 0.6395901 0.3281349 0 0.6316025 0.3311768 0 0.6315945 0.3281349 0 0.6243883 0.3311768 0 0.6243953 0.3281349 0 0.6207797 0.3311768 0 0.623089 0.3281349 0 0.5769988 0.3281349 0 0.5793081 0.3311768 0 0.5756995 0.3311768 0 0.5756924 0.3281349 0 0.5684853 0.3311768 0 0.5684933 0.3281349 0 0.5604976 0.3311768 0 0.5604976 0.3281349 0 0.55251 0.3311768 0 0.552502 0.3281349 0 0.5452958 0.3311768 0 0.5453028 0.3281349 0 0.5416872 0.3311768 0 0.5439965 0.3281349 0 0.5398819 0.331481 0 0.5398454 0.3311768 0 0.5456734 0.3311768 0 0.5457907 0.331481 0 0.5511587 0.3311768 0 0.6543142 0.331481 0 0.6489291 0.3311768 0 0.6476293 0.3311768 0 0.6403506 0.331481 0 0.6403506 0.3311768 0 0.5524585 0.3311768 0 0.5597371 0.3311768 0 0.5686942 0.3311768 0 0.5686942 0.331481 0 0.5776513 0.3311768 0 0.5776513 0.331481 0 0.5866084 0.3311768 0 0.5866084 0.331481 0 0.5955654 0.3311768 0 0.5955654 0.331481 0 0.6045225 0.3311768 0 0.6045225 0.331481 0 0.6134794 0.3311768 0 0.6134794 0.331481 0 0.6224366 0.3311768 0 0.6224366 0.331481 0 0.6313936 0.3311768 0 0.6313936 0.331481 0 0.4792758 0.2955953 0 0.4701498 0.2976417 0 0.4701498 0.2928697 0 0.4792758 0.2633298 0 0.4701498 0.2660554 0 0.4701498 0.2612835 0 0.4792758 0.2847861 0 0.4701498 0.2869895 0 0.4701498 0.2835317 0 0.4701498 0.2794626 0 0.4792758 0.2794626 0 0.4701498 0.2753935 0 0.4792758 0.274139 0 0.4701498 0.2719356 0 0.4792758 0.2881936 0 0.4701498 0.2865175 0 0.4701498 0.2794626 0 0.4792758 0.2794626 0 0.4701498 0.2724077 0 0.4792758 0.2707315 0 0.5066814 0.2633298 0 0.5096959 0.2612835 0 0.5096959 0.2660554 0 0.5066814 0.2955953 0 0.5096959 0.2928697 0 0.5096959 0.2976417 0 0.5066814 0.2847861 0 0.5096959 0.2835317 0 0.5096959 0.2869895 0 0.5066814 0.274139 0 0.5096959 0.2719356 0 0.5096959 0.2753935 0 0.5096959 0.2794626 0 0.5066814 0.2794626 0 0.5066814 0.2881936 0 0.5096959 0.2865175 0 0.5066814 0.2707315 0 0.5096959 0.2724077 0 0.5096959 0.2794626 0 0.5066814 0.2794626 0 0.4817095 0.2794626 0 0.4817095 0.2753851 0 0.4817095 0.2748626 0 0.4817095 0.2719374 0 0.4817095 0.2840923 0 0.4817095 0.2835401 0 0.4817095 0.2869878 0 0.4981363 0.2748626 0 0.4981363 0.2719374 0 0.4981363 0.2753851 0 0.4981363 0.2794626 0 0.4981363 0.2835401 0 0.4981363 0.2840923 0 0.4981363 0.2869878 0 0.4817095 0.292876 0 0.4817095 0.2932217 0 0.4817095 0.2865105 0 0.4817095 0.2840922 0 0.4817095 0.2794626 0 0.4817095 0.2748602 0 0.4817095 0.2724147 0 0.4817095 0.2660492 0 0.4817095 0.2657344 0 0.4981363 0.2660492 0 0.4981363 0.2657344 0 0.4981363 0.2724147 0 0.4981363 0.2748602 0 0.4981363 0.2794626 0 0.4981363 0.2840922 0 0.4981363 0.2865105 0 0.4981363 0.292876 0 0.4981363 0.2932217 0 0.4689271 0.2657461 0 0.5109186 0.2657735 0 0.5109186 0.2931791 0 0.4689271 0.2931517 0 0.5109186 0.2749087 0 0.5109186 0.2840439 0 0.4689271 0.2840165 0 0.4689271 0.2748813 0 0.5004864 0.2581684 0 0.5035127 0.2672944 0 0.4981363 0.2672944 0 0.5042889 0.2581684 0 0.4957863 0.2581684 0 0.49276 0.2672944 0 0.4919837 0.2581684 0 0.5002514 0.2581684 0 0.502975 0.2672944 0 0.4981363 0.2672944 0 0.5036737 0.2581684 0 0.4960212 0.2581684 0 0.4932975 0.2672944 0 0.492599 0.2581684 0 0.4919837 0.2398982 0 0.4957863 0.2398982 0 0.5004864 0.2398982 0 0.5042889 0.2398982 0 0.4919837 0.2490332 0 0.4957863 0.2490332 0 0.5004864 0.2490332 0 0.5042889 0.2490332 0 0.5002514 0.2307629 0 0.4981363 0.2247063 0 0.502975 0.2247063 0 0.5036737 0.2307629 0 0.4960212 0.2307629 0 0.4932975 0.2247063 0 0.492599 0.2307629 0 0.5036737 0.2490332 0 0.5001438 0.3992234 0 0.4971291 0.3998403 0 0.5001438 0.4036854 0 0.5001438 0.4085713 0 0.4943638 0.4161672 0 0.5001438 0.413105 0 0.4971291 0.4085713 0 0.5001438 0.4161672 0 0.5001438 0.4222402 0 0.4971291 0.4177919 0 0.4721572 0.4010405 0 0.4721572 0.4085713 0 0.4721572 0.4044996 0 0.4721572 0.4126429 0 0.4885841 0.4044996 0 0.4885841 0.4010405 0 0.4885841 0.4085713 0 0.4885841 0.4126429 0 0.4721572 0.416102 0 0.4885841 0.416102 0 0.4721572 0.4015233 0 0.4721572 0.4085713 0 0.4721572 0.4161672 0 0.4721572 0.3951579 0 0.4764472 0.3925171 0 0.4885841 0.3951579 0 0.4928741 0.3925171 0 0.4885841 0.4015233 0 0.4885841 0.4085713 0 0.4885841 0.4161672 0 + + + + + + + + + + + + + + + +

0 0 0 1 1 1 2 2 2 3 3 3 2 2 2 1 1 1 4 4 4 0 0 0 2 2 2 5 5 5 4 4 4 2 2 2 6 6 6 5 5 5 2 2 2 6 6 6 2 2 2 3 3 3 7 7 7 8 8 8 1 1 1 9 9 9 1 1 1 8 8 8 0 0 0 7 7 7 1 1 1 9 9 9 3 3 3 1 1 1 10 10 10 11 11 11 8 8 8 12 12 12 8 8 8 11 11 11 7 7 7 10 10 10 8 8 8 9 9 9 8 8 8 12 12 12 13 13 13 14 14 14 11 11 11 15 15 15 11 11 11 14 14 14 10 10 10 13 13 13 11 11 11 12 12 12 11 11 11 15 15 15 16 16 16 17 17 17 14 14 14 18 18 18 14 14 14 17 17 17 13 13 13 16 16 16 14 14 14 15 15 15 14 14 14 18 18 18 19 19 19 20 20 20 17 17 17 21 21 21 17 17 17 20 20 20 16 16 16 19 19 19 17 17 17 18 18 18 17 17 17 21 21 21 22 22 22 23 23 23 20 20 20 24 24 24 20 20 20 23 23 23 19 19 19 22 22 22 20 20 20 21 21 21 20 20 20 24 24 24 25 25 25 26 26 26 23 23 23 27 27 27 23 23 23 26 26 26 22 22 22 25 25 25 23 23 23 24 24 24 23 23 23 27 27 27 28 28 28 29 29 29 26 26 26 30 30 30 26 26 26 29 29 29 31 31 31 28 28 28 26 26 26 25 25 25 31 31 31 26 26 26 27 27 27 26 26 26 30 30 30 32 32 32 33 33 33 29 29 29 34 34 34 29 29 29 33 33 33 28 28 28 32 32 32 29 29 29 30 30 30 29 29 29 34 34 34 35 35 35 36 36 36 33 33 33 37 37 37 33 33 33 36 36 36 32 32 32 35 35 35 33 33 33 34 34 34 33 33 33 37 37 37 38 38 38 39 39 39 36 36 36 40 40 40 36 36 36 39 39 39 35 35 35 38 38 38 36 36 36 37 37 37 36 36 36 40 40 40 41 41 41 42 42 42 39 39 39 43 43 43 39 39 39 42 42 42 38 38 38 41 41 41 39 39 39 40 40 40 39 39 39 43 43 43 44 44 44 45 45 45 42 42 42 46 46 46 42 42 42 45 45 45 41 41 41 44 44 44 42 42 42 43 43 43 42 42 42 46 46 46 47 47 47 48 48 48 45 45 45 49 49 49 45 45 45 48 48 48 44 44 44 47 47 47 45 45 45 46 46 46 45 45 45 49 49 49 50 50 50 51 51 51 48 48 48 52 52 52 48 48 48 51 51 51 47 47 47 50 50 50 48 48 48 49 49 49 48 48 48 52 52 52 53 53 53 54 54 54 51 51 51 55 55 55 51 51 51 54 54 54 50 50 50 53 53 53 51 51 51 52 52 52 51 51 51 55 55 55 56 56 56 57 57 57 54 54 54 58 58 58 54 54 54 57 57 57 53 53 53 56 56 56 54 54 54 55 55 55 54 54 54 58 58 58 59 59 59 60 60 60 57 57 57 61 61 61 57 57 57 60 60 60 56 56 56 59 59 59 57 57 57 58 58 58 57 57 57 61 61 61 62 62 62 63 63 63 60 60 60 64 64 64 60 60 60 63 63 63 59 59 59 62 62 62 60 60 60 61 61 61 60 60 60 64 64 64 65 65 65 66 66 66 63 63 63 67 67 67 63 63 63 66 66 66 68 68 68 65 65 65 63 63 63 62 62 62 68 68 68 63 63 63 64 64 64 63 63 63 67 67 67 69 69 69 70 70 70 66 66 66 71 71 71 66 66 66 70 70 70 65 65 65 69 69 69 66 66 66 67 67 67 66 66 66 71 71 71 72 72 72 73 73 73 70 70 70 74 74 74 70 70 70 73 73 73 69 69 69 72 72 72 70 70 70 71 71 71 70 70 70 74 74 74 75 75 75 76 76 76 73 73 73 77 77 77 73 73 73 76 76 76 72 72 72 75 75 75 73 73 73 74 74 74 73 73 73 77 77 77 78 78 78 79 79 79 76 76 76 80 80 80 76 76 76 79 79 79 75 75 75 78 78 78 76 76 76 77 77 77 76 76 76 80 80 80 81 81 81 82 82 82 79 79 79 83 83 83 79 79 79 82 82 82 84 84 84 81 81 81 79 79 79 78 78 78 84 84 84 79 79 79 80 80 80 79 79 79 83 83 83 85 85 85 86 86 86 82 82 82 87 87 87 82 82 82 86 86 86 81 81 81 85 85 85 82 82 82 83 83 83 82 82 82 87 87 87 88 88 88 89 89 89 86 86 86 90 90 90 86 86 86 89 89 89 85 85 85 88 88 88 86 86 86 87 87 87 86 86 86 90 90 90 91 91 91 92 92 92 89 89 89 93 93 93 89 89 89 92 92 92 88 88 88 91 91 91 89 89 89 90 90 90 89 89 89 93 93 93 94 94 94 95 95 95 92 92 92 96 96 96 92 92 92 95 95 95 91 91 91 94 94 94 92 92 92 93 93 93 92 92 92 96 96 96 97 97 97 98 98 98 95 95 95 99 99 99 95 95 95 98 98 98 94 94 94 97 97 97 95 95 95 96 96 96 95 95 95 99 99 99 100 100 100 101 101 101 98 98 98 102 102 102 98 98 98 101 101 101 103 103 103 100 100 100 98 98 98 97 97 97 103 103 103 98 98 98 99 99 99 98 98 98 102 102 102 104 104 104 105 105 105 101 101 101 106 106 106 101 101 101 105 105 105 100 100 100 104 104 104 101 101 101 102 102 102 101 101 101 106 106 106 107 107 107 108 108 108 105 105 105 109 109 109 105 105 105 108 108 108 104 104 104 107 107 107 105 105 105 106 106 106 105 105 105 109 109 109 110 110 110 111 111 111 108 108 108 112 112 112 108 108 108 111 111 111 107 107 107 110 110 110 108 108 108 109 109 109 108 108 108 112 112 112 113 113 113 114 114 114 111 111 111 115 115 115 111 111 111 114 114 114 110 110 110 113 113 113 111 111 111 112 112 112 111 111 111 115 115 115 116 116 116 117 117 117 114 114 114 118 118 118 114 114 114 117 117 117 113 113 113 116 116 116 114 114 114 115 115 115 114 114 114 118 118 118 119 119 119 120 120 120 117 117 117 121 121 121 117 117 117 120 120 120 116 116 116 119 119 119 117 117 117 118 118 118 117 117 117 121 121 121 122 122 122 123 123 123 120 120 120 124 124 124 120 120 120 123 123 123 119 119 119 122 122 122 120 120 120 121 121 121 120 120 120 124 124 124 125 125 125 126 126 126 123 123 123 127 127 127 123 123 123 126 126 126 122 122 122 125 125 125 123 123 123 124 124 124 123 123 123 127 127 127 128 128 128 129 129 129 126 126 126 130 130 130 126 126 126 129 129 129 125 125 125 128 128 128 126 126 126 127 127 127 126 126 126 130 130 130 131 131 131 132 132 132 129 129 129 133 133 133 129 129 129 132 132 132 128 128 128 131 131 131 129 129 129 130 130 130 129 129 129 133 133 133 134 134 134 135 135 135 132 132 132 136 136 136 132 132 132 135 135 135 131 131 131 134 134 134 132 132 132 133 133 133 132 132 132 136 136 136 137 137 137 138 138 138 135 135 135 139 139 139 135 135 135 138 138 138 140 140 140 137 137 137 135 135 135 134 134 134 140 140 140 135 135 135 136 136 136 135 135 135 139 139 139 141 141 141 142 142 142 138 138 138 143 143 143 138 138 138 142 142 142 137 137 137 141 141 141 138 138 138 139 139 139 138 138 138 143 143 143 144 144 144 145 145 145 142 142 142 146 146 146 142 142 142 145 145 145 141 141 141 144 144 144 142 142 142 143 143 143 142 142 142 146 146 146 147 147 147 148 148 148 145 145 145 149 149 149 145 145 145 148 148 148 144 144 144 147 147 147 145 145 145 146 146 146 145 145 145 149 149 149 150 150 150 151 151 151 148 148 148 152 152 152 148 148 148 151 151 151 147 147 147 150 150 150 148 148 148 149 149 149 148 148 148 152 152 152 153 153 153 154 154 154 151 151 151 155 155 155 151 151 151 154 154 154 150 150 150 153 153 153 151 151 151 152 152 152 151 151 151 155 155 155 156 156 156 157 157 157 154 154 154 158 158 158 154 154 154 157 157 157 153 153 153 156 156 156 154 154 154 155 155 155 154 154 154 158 158 158 159 159 159 160 160 160 157 157 157 161 161 161 157 157 157 160 160 160 156 156 156 159 159 159 157 157 157 158 158 158 157 157 157 161 161 161 162 162 162 163 163 163 160 160 160 164 164 164 160 160 160 163 163 163 159 159 159 162 162 162 160 160 160 161 161 161 160 160 160 164 164 164 165 165 165 166 166 166 163 163 163 167 167 167 163 163 163 166 166 166 162 162 162 165 165 165 163 163 163 164 164 164 163 163 163 167 167 167 168 168 168 169 169 169 166 166 166 170 170 170 166 166 166 169 169 169 165 165 165 168 168 168 166 166 166 171 171 171 166 166 166 170 170 170 167 167 167 166 166 166 171 171 171 168 168 168 172 172 172 169 169 169 173 173 173 169 169 169 172 172 172 170 170 170 169 169 169 173 173 173 174 174 174 172 172 172 168 168 168 175 175 175 172 172 172 174 174 174 176 176 176 172 172 172 175 175 175 177 177 177 172 172 172 176 176 176 173 173 173 172 172 172 177 177 177 178 178 178 168 168 168 165 165 165 174 174 174 168 168 168 178 178 178 179 179 179 165 165 165 162 162 162 178 178 178 165 165 165 179 179 179 180 180 180 162 162 162 159 159 159 179 179 179 162 162 162 180 180 180 181 181 181 159 159 159 156 156 156 180 180 180 159 159 159 181 181 181 182 182 182 156 156 156 153 153 153 181 181 181 156 156 156 182 182 182 183 183 183 153 153 153 150 150 150 182 182 182 153 153 153 183 183 183 184 184 184 150 150 150 147 147 147 183 183 183 150 150 150 184 184 184 185 185 185 147 147 147 144 144 144 184 184 184 147 147 147 185 185 185 186 186 186 144 144 144 141 141 141 185 185 185 144 144 144 186 186 186 187 187 187 141 141 141 137 137 137 186 186 186 141 141 141 188 188 188 189 189 189 188 188 188 141 141 141 187 187 187 189 189 189 141 141 141 190 190 190 137 191 137 140 192 140 191 193 191 187 194 187 137 191 137 191 193 191 137 191 137 190 190 190 192 195 192 140 192 140 134 196 134 190 190 190 140 192 140 192 195 192 192 195 636 134 196 637 131 197 638 193 198 193 131 197 131 128 199 128 192 195 192 131 197 131 193 198 193 194 200 194 128 199 128 125 201 125 194 200 194 193 198 193 128 199 128 195 202 195 125 201 125 122 203 122 194 200 194 125 201 125 195 202 195 196 204 196 122 203 122 119 205 119 195 202 195 122 203 122 196 204 196 197 206 197 119 205 119 116 207 116 196 204 196 119 205 119 197 206 197 198 208 198 116 207 116 113 209 113 197 206 197 116 207 116 198 208 198 199 210 199 113 209 113 110 211 110 198 208 198 113 209 113 199 210 199 200 212 200 110 211 110 107 213 107 199 210 199 110 211 110 200 212 200 201 214 201 107 213 107 104 215 104 200 212 200 107 213 107 201 214 201 202 216 202 104 215 104 100 217 100 201 214 201 104 215 104 202 216 202 203 218 203 100 217 100 103 219 103 203 218 639 202 216 640 100 217 641 204 220 205 103 219 103 97 221 97 203 218 203 103 219 103 204 220 205 205 222 206 97 97 97 94 94 94 204 220 205 97 221 97 205 223 206 206 224 207 94 94 94 91 91 91 207 225 208 205 222 206 94 94 94 208 226 209 207 225 208 94 94 94 206 224 207 208 226 209 94 94 94 209 227 210 91 91 91 88 88 88 209 227 210 206 224 207 91 91 91 210 228 211 88 88 88 85 85 85 210 228 211 209 227 210 88 88 88 211 229 212 85 85 85 81 81 81 211 229 212 210 228 211 85 85 85 211 229 212 81 81 81 84 84 84 212 230 213 84 84 84 78 78 78 212 230 213 211 229 212 84 84 84 213 231 214 78 78 78 75 75 75 213 231 214 212 230 213 78 78 78 214 232 215 75 75 75 72 72 72 214 232 215 213 231 214 75 75 75 215 233 216 72 72 72 69 69 69 216 234 217 72 72 72 215 233 216 217 235 218 214 232 215 72 72 72 216 234 217 217 235 218 72 72 72 218 236 219 69 237 69 65 238 65 219 239 220 215 240 216 69 237 69 219 239 220 69 237 69 218 236 219 220 241 221 65 238 65 68 242 68 218 236 219 65 238 65 220 241 221 220 241 642 68 242 643 62 243 644 221 244 222 62 243 62 59 245 59 220 241 221 62 243 62 221 244 222 222 246 223 59 245 59 56 247 56 222 246 223 221 244 222 59 245 59 223 248 224 56 247 56 53 249 53 222 246 223 56 247 56 223 248 224 224 250 225 53 249 53 50 251 50 223 248 224 53 249 53 224 250 225 225 252 226 50 251 50 47 253 47 224 250 225 50 251 50 225 252 226 226 254 227 47 253 47 44 255 44 225 252 226 47 253 47 226 254 227 227 256 228 44 255 44 41 257 41 226 254 227 44 255 44 227 256 228 228 258 229 41 257 41 38 259 38 227 256 228 41 257 41 228 258 229 229 260 230 38 259 38 35 261 35 228 258 229 38 259 38 229 260 230 230 262 231 35 261 35 32 263 32 229 260 230 35 261 35 230 262 231 231 264 233 32 263 32 28 265 28 230 262 645 32 263 646 231 264 647 232 266 234 28 265 28 31 267 31 231 264 233 28 265 28 232 266 234 233 268 235 31 31 31 25 25 25 232 266 234 31 267 31 233 269 235 234 270 236 25 25 25 22 22 22 235 271 237 233 268 235 25 25 25 236 272 238 235 271 237 25 25 25 234 270 236 236 272 238 25 25 25 237 273 239 22 22 22 19 19 19 237 273 239 234 270 236 22 22 22 238 274 240 19 19 19 16 16 16 238 274 240 237 273 239 19 19 19 239 275 241 16 16 16 13 13 13 239 275 241 238 274 240 16 16 16 240 276 242 13 13 13 10 10 10 240 276 242 239 275 241 13 13 13 241 277 243 10 10 10 7 7 7 241 277 243 240 276 242 10 10 10 242 278 244 7 7 7 0 0 0 242 278 244 241 277 243 7 7 7 243 279 245 0 0 0 4 4 4 243 279 245 242 278 244 0 0 0 5 5 5 244 280 246 4 4 4 245 281 247 4 4 4 244 280 246 245 281 247 243 279 245 4 4 4 246 282 248 247 283 249 244 280 246 248 284 250 244 280 246 247 283 249 5 5 5 246 282 248 244 280 246 248 284 250 245 281 247 244 280 246 249 285 251 247 283 249 246 282 248 248 284 250 247 283 249 250 286 252 251 287 253 250 286 252 247 283 249 251 287 253 247 283 249 249 285 251 252 288 254 246 282 248 5 5 5 253 289 255 246 282 248 252 288 254 249 285 251 246 282 248 253 289 255 252 288 254 5 5 5 6 6 6 254 290 257 248 284 250 250 286 252 251 287 253 254 290 257 250 286 252 255 291 258 233 269 235 235 292 237 232 266 234 233 269 235 255 291 258 256 293 259 235 292 237 236 294 238 255 291 258 235 292 237 256 293 259 257 295 260 236 272 238 234 270 236 258 296 992 236 294 993 257 297 994 256 293 259 236 294 238 258 296 261 259 298 262 234 270 236 237 273 239 259 298 262 257 295 260 234 270 236 260 299 263 237 273 239 238 274 240 260 299 263 259 298 262 237 273 239 261 300 264 238 274 240 239 275 241 261 300 264 260 299 263 238 274 240 262 301 265 239 275 241 240 276 242 262 301 265 261 300 264 239 275 241 263 302 266 240 276 242 241 277 243 263 302 266 262 301 265 240 276 242 264 303 267 241 277 243 242 278 244 264 303 267 263 302 266 241 277 243 265 304 268 242 278 244 243 279 245 265 304 268 264 303 267 242 278 244 266 305 269 243 279 245 245 281 247 266 305 269 265 304 268 243 279 245 267 306 270 245 281 247 248 284 250 267 306 270 266 305 269 245 281 247 254 290 257 268 307 271 248 284 250 269 308 272 248 284 250 268 307 271 269 308 272 267 306 270 248 284 250 270 309 273 268 307 271 254 290 257 269 308 272 268 307 271 271 310 274 272 311 275 271 310 274 268 307 271 272 311 275 268 307 271 270 309 273 270 309 273 254 290 257 251 287 253 273 312 276 269 308 272 271 310 274 274 313 277 273 312 276 271 310 274 274 313 277 271 310 274 272 311 275 275 314 278 257 295 260 259 298 262 276 315 995 257 297 994 275 316 996 258 296 261 257 297 260 276 315 279 277 317 280 259 298 262 260 299 263 278 318 281 275 314 278 259 298 262 277 317 280 278 318 281 259 298 262 279 319 282 260 299 263 261 300 264 279 319 282 277 317 280 260 299 263 280 320 283 261 300 264 262 301 265 280 320 283 279 319 282 261 300 264 281 321 284 262 301 265 263 302 266 281 321 284 280 320 283 262 301 265 282 322 285 263 302 266 264 303 267 282 322 285 281 321 284 263 302 266 283 323 286 264 303 267 265 304 268 283 323 286 282 322 285 264 303 267 284 324 287 265 304 268 266 305 269 284 324 287 283 323 286 265 304 268 285 325 288 266 305 269 267 306 270 285 325 288 284 324 287 266 305 269 286 326 289 267 306 270 269 308 272 286 326 289 285 325 288 267 306 270 287 327 290 269 308 272 273 312 276 287 327 290 286 326 289 269 308 272 288 328 291 273 312 276 289 329 292 274 313 277 289 329 292 273 312 276 288 328 291 287 327 290 273 312 276 290 330 294 288 328 291 289 329 292 290 330 294 289 329 292 274 313 277 276 315 995 275 316 996 278 331 997 291 332 295 278 318 281 277 317 280 291 332 295 292 333 296 278 318 281 293 334 1010 278 331 997 292 335 1011 276 315 279 278 331 281 293 334 297 294 336 298 277 317 280 279 319 282 294 336 298 291 332 295 277 317 280 295 337 299 279 319 282 280 320 283 295 337 299 294 336 298 279 319 282 296 338 300 280 320 283 281 321 284 296 338 300 295 337 299 280 320 283 297 339 301 281 321 284 282 322 285 297 339 301 296 338 300 281 321 284 298 340 302 282 322 285 283 323 286 298 340 302 297 339 301 282 322 285 299 341 303 283 323 286 284 324 287 299 341 303 298 340 302 283 323 286 300 342 304 284 324 287 285 325 288 300 342 304 299 341 303 284 324 287 301 343 305 285 325 288 286 326 289 301 343 305 300 342 304 285 325 288 302 344 306 286 326 289 287 327 290 302 344 306 301 343 305 286 326 289 303 345 307 287 327 290 288 328 291 303 345 307 302 344 306 287 327 290 303 345 307 288 328 291 304 346 308 305 347 309 304 346 308 288 328 291 305 347 309 288 328 291 290 330 294 306 348 310 303 345 307 304 346 308 306 348 310 304 346 308 305 347 309 307 349 311 292 333 296 291 332 295 307 349 311 308 350 312 292 333 296 309 351 313 292 335 296 308 352 312 293 334 297 292 335 296 309 351 313 310 353 314 291 332 295 294 336 298 310 353 314 307 349 311 291 332 295 311 354 315 294 336 298 295 337 299 311 354 315 310 353 314 294 336 298 312 355 316 295 337 299 296 338 300 312 355 316 311 354 315 295 337 299 313 356 317 296 338 300 297 339 301 313 356 317 312 355 316 296 338 300 314 357 318 297 339 301 298 340 302 314 357 318 313 356 317 297 339 301 315 358 319 298 340 302 299 341 303 315 358 319 314 357 318 298 340 302 316 359 320 299 341 303 300 342 304 316 359 320 315 358 319 299 341 303 317 360 321 300 342 304 301 343 305 317 360 321 316 359 320 300 342 304 318 361 322 301 343 305 302 344 306 318 361 322 317 360 321 301 343 305 319 362 323 302 344 306 303 345 307 319 362 323 318 361 322 302 344 306 319 362 323 303 345 307 320 363 324 321 364 325 320 363 324 303 345 307 321 364 325 303 345 307 306 348 310 322 365 326 319 362 323 320 363 324 322 365 326 320 363 324 321 364 325 307 349 311 323 366 327 308 350 312 324 367 328 308 352 312 323 368 327 309 351 313 308 352 312 324 367 328 307 349 311 325 369 329 323 366 327 324 367 328 323 368 327 325 370 329 326 371 330 325 369 329 307 349 311 327 372 331 328 373 332 325 369 329 329 374 333 325 370 329 328 375 332 326 371 330 327 372 331 325 369 329 324 367 328 325 370 329 329 374 333 326 371 330 307 349 311 310 353 314 330 376 334 310 353 314 311 354 315 330 376 334 326 371 330 310 353 314 331 377 335 311 354 315 312 355 316 331 377 335 330 376 334 311 354 315 332 378 336 312 355 316 313 356 317 332 378 336 331 377 335 312 355 316 333 379 337 313 356 317 314 357 318 333 379 337 332 378 336 313 356 317 334 380 338 314 357 318 315 358 319 334 380 338 333 379 337 314 357 318 335 381 339 315 358 319 316 359 320 335 381 339 334 380 338 315 358 319 336 382 340 316 359 320 317 360 321 336 382 340 335 381 339 316 359 320 337 383 341 317 360 321 318 361 322 337 383 341 336 382 340 317 360 321 338 384 342 318 361 322 319 362 323 337 383 341 318 361 322 338 384 342 339 385 343 338 384 342 319 362 323 340 386 344 319 362 323 322 365 326 339 385 343 319 362 323 340 386 344 341 387 345 337 383 341 338 384 342 341 387 345 338 384 342 339 385 343 342 388 346 343 389 347 328 373 332 344 390 348 328 375 332 343 391 347 327 372 331 342 388 346 328 373 332 329 374 333 328 375 332 344 390 348 345 392 349 346 393 350 343 389 347 344 390 626 343 391 627 346 394 628 342 388 346 345 392 349 343 389 347 347 395 351 348 396 352 346 393 350 349 397 353 346 394 350 348 398 352 345 392 349 347 395 351 346 393 350 344 390 348 346 394 350 349 397 353 350 399 354 351 400 355 348 396 352 352 401 356 348 398 352 351 402 355 347 395 351 350 399 354 348 396 352 352 401 356 349 397 353 348 398 352 353 403 357 354 404 358 351 400 355 355 405 359 351 402 355 354 406 358 350 399 354 353 403 357 351 400 355 352 401 356 351 402 355 355 405 359 356 407 360 357 408 361 354 404 358 358 409 362 354 406 358 357 410 361 353 403 357 356 407 360 354 404 358 355 405 359 354 406 358 358 409 362 359 411 363 360 412 364 357 408 361 361 413 365 357 410 361 360 414 364 356 407 360 359 411 363 357 408 361 358 409 362 357 410 361 361 413 365 362 415 366 363 416 367 360 412 364 364 417 368 360 414 364 363 418 367 359 411 363 362 415 366 360 412 364 361 413 365 360 414 364 364 417 368 365 419 369 366 420 370 363 416 367 367 421 371 363 418 367 366 422 370 362 415 366 365 419 369 363 416 367 364 417 368 363 418 367 367 421 371 368 423 372 369 424 373 366 420 370 370 425 374 366 422 370 369 426 373 365 419 369 368 423 372 366 420 370 367 421 371 366 422 370 370 425 374 371 427 375 372 428 376 369 424 373 373 429 377 369 426 373 372 430 376 368 423 372 371 427 375 369 424 373 370 425 374 369 426 373 373 429 377 374 431 378 375 432 379 372 428 376 376 433 380 372 430 376 375 434 379 371 427 375 374 431 378 372 428 376 373 429 377 372 430 376 376 433 380 377 435 381 378 436 382 375 432 379 379 437 383 375 434 379 378 438 382 374 431 378 377 435 381 375 432 379 379 437 629 376 433 654 375 434 655 377 435 381 380 439 384 378 436 382 381 440 385 378 438 382 380 441 384 379 437 383 378 438 382 381 440 385 382 442 386 383 443 387 380 439 384 384 444 388 380 439 384 383 443 387 377 435 381 382 442 386 380 439 384 381 440 385 380 441 384 384 445 388 385 446 389 386 447 390 383 443 387 387 448 391 383 443 387 386 447 390 382 442 386 385 446 389 383 443 387 387 448 391 388 449 392 383 443 387 389 450 393 383 443 387 388 449 392 384 444 388 383 443 387 389 450 393 390 451 394 391 452 395 386 447 390 392 453 396 386 447 390 391 452 395 385 446 389 390 451 394 386 447 390 387 448 391 386 447 390 392 453 396 393 454 397 394 455 398 391 452 395 395 456 399 391 452 395 394 455 398 390 451 394 393 454 397 391 452 395 392 453 396 391 452 395 395 456 399 396 457 400 397 458 401 394 455 398 398 459 402 394 455 398 397 458 401 393 454 397 396 457 400 394 455 398 395 456 399 394 455 398 398 459 402 399 460 403 400 461 404 397 458 401 401 462 405 397 458 401 400 461 404 396 457 400 399 460 403 397 458 401 398 459 402 397 458 401 401 462 405 402 463 406 403 464 407 400 461 404 404 465 408 400 461 404 403 464 407 399 460 403 402 463 406 400 461 404 401 462 405 400 461 404 404 465 408 405 466 409 406 467 410 403 464 407 407 468 411 403 464 407 406 467 410 402 463 406 405 466 409 403 464 407 404 465 408 403 464 407 407 468 411 408 469 412 409 470 413 406 467 410 410 471 414 406 467 410 409 470 413 405 466 409 408 469 412 406 467 410 407 468 411 406 467 410 411 472 415 412 473 416 411 472 415 406 467 410 410 471 414 412 473 416 406 467 410 413 474 417 414 475 418 409 470 413 415 476 419 409 477 413 414 478 418 408 469 412 413 474 417 409 470 413 416 479 420 410 480 414 409 477 413 416 479 420 409 477 413 415 476 419 417 481 421 418 482 422 414 475 418 419 483 423 414 478 418 418 484 422 413 474 417 417 481 421 414 475 418 415 476 419 414 478 418 419 483 423 417 481 421 420 485 424 418 482 422 419 483 656 418 484 657 420 486 658 421 487 425 422 488 426 420 485 424 423 489 427 420 486 424 422 490 426 417 481 421 421 487 425 420 485 424 419 483 423 420 486 424 423 489 427 424 491 428 425 492 429 422 488 426 426 493 430 422 490 426 425 494 429 421 487 425 424 491 428 422 488 426 426 493 430 423 489 427 422 490 426 427 495 431 428 496 432 425 492 429 429 497 433 425 494 429 428 498 432 424 491 428 427 495 431 425 492 429 426 493 430 425 494 429 429 497 433 430 499 434 431 500 435 428 496 432 432 501 436 428 498 432 431 502 435 427 495 431 430 499 434 428 496 432 429 497 433 428 498 432 432 501 436 433 503 437 434 504 438 431 500 435 435 505 439 431 502 435 434 506 438 430 499 434 433 503 437 431 500 435 432 501 436 431 502 435 435 505 439 436 507 440 437 508 441 434 504 438 438 509 442 434 506 438 437 510 441 433 503 437 436 507 440 434 504 438 435 505 439 434 506 438 438 509 442 439 511 443 440 512 444 437 508 441 441 513 445 437 510 441 440 514 444 436 507 440 439 511 443 437 508 441 438 509 442 437 510 441 441 513 445 442 515 446 443 516 447 440 512 444 444 517 448 440 514 444 443 518 447 439 511 443 442 515 446 440 512 444 441 513 445 440 514 444 444 517 448 445 519 449 446 520 450 443 516 447 447 521 451 443 518 447 446 522 450 442 515 446 445 519 449 443 516 447 444 517 448 443 518 447 447 521 451 448 523 452 449 524 453 446 520 450 450 525 454 446 522 450 449 526 453 445 519 449 448 523 452 446 520 450 447 521 451 446 522 450 450 525 454 451 527 455 452 528 456 449 524 453 453 529 457 449 526 453 452 530 456 448 523 452 451 527 455 449 524 453 450 525 659 449 526 695 453 529 696 454 531 458 455 532 459 452 528 456 456 533 460 452 530 456 455 534 459 451 527 455 454 531 458 452 528 456 453 529 457 452 530 456 456 533 460 457 535 461 458 536 462 455 532 459 459 537 463 455 532 459 458 536 462 454 531 458 457 535 461 455 532 459 456 533 460 455 534 459 459 538 463 460 539 464 461 540 465 458 536 462 462 541 466 458 536 462 461 540 465 457 535 461 460 539 464 458 536 462 463 542 467 459 537 463 458 536 462 464 543 468 463 542 467 458 536 462 462 541 466 464 543 468 458 536 462 460 539 464 465 544 469 461 540 465 466 545 470 461 540 465 465 544 469 466 545 470 462 541 466 461 540 465 467 546 471 468 547 472 465 544 469 469 548 473 465 544 469 468 547 472 460 539 464 467 546 471 465 544 469 469 548 473 466 545 470 465 544 469 470 549 474 471 550 475 468 547 472 472 551 476 468 547 472 471 550 475 467 546 471 470 549 474 468 547 472 472 551 476 469 548 473 468 547 472 473 552 477 474 553 478 471 550 475 475 554 479 471 550 475 474 553 478 470 549 474 473 552 477 471 550 475 475 554 479 472 551 476 471 550 475 476 555 480 477 556 481 474 553 478 478 557 482 474 553 478 477 556 481 473 552 477 476 555 480 474 553 478 478 557 482 475 554 479 474 553 478 479 558 483 480 559 484 477 556 481 481 560 485 477 556 481 480 559 484 476 555 480 479 558 483 477 556 481 481 560 485 478 557 482 477 556 481 482 561 486 483 562 487 480 559 484 484 563 488 480 559 484 483 562 487 479 558 483 482 561 486 480 559 484 484 563 488 481 560 485 480 559 484 485 564 489 486 565 490 483 562 487 487 566 491 483 562 487 486 565 490 482 561 486 485 564 489 483 562 487 487 566 491 484 563 488 483 562 487 488 567 492 489 568 493 486 565 490 490 569 494 486 565 490 489 568 493 485 564 489 488 567 492 486 565 490 490 569 494 487 566 491 486 565 490 491 570 495 489 568 493 488 567 492 490 569 494 489 568 493 492 571 496 493 572 497 492 571 496 489 568 493 493 572 497 489 568 493 491 570 495 494 573 498 488 567 492 485 564 489 495 574 499 488 567 492 494 573 498 491 570 495 488 567 492 495 574 499 496 575 500 485 564 489 482 561 486 494 573 498 485 564 489 496 575 500 497 576 501 482 561 486 479 558 483 496 575 500 482 561 486 497 576 501 498 577 502 479 558 483 476 555 480 497 576 501 479 558 483 498 577 502 499 578 503 476 555 480 473 552 477 498 577 502 476 555 480 499 578 503 500 579 504 473 552 477 470 549 474 499 578 503 473 552 477 500 579 504 501 580 505 470 549 474 467 546 471 500 579 504 470 549 474 501 580 505 502 581 506 467 546 471 460 539 464 501 580 505 467 546 471 502 581 506 503 582 507 460 539 464 457 535 461 502 581 506 460 539 464 503 582 507 504 583 508 457 535 461 454 531 458 503 582 507 457 535 461 504 583 508 505 584 509 454 531 458 451 527 455 504 583 508 454 531 458 505 584 509 506 585 510 451 527 455 448 523 452 505 584 509 451 527 455 506 585 510 507 586 511 448 523 452 445 519 449 506 585 510 448 523 452 507 586 511 508 587 512 445 519 449 442 515 446 507 586 511 445 519 449 508 587 512 509 588 513 442 515 446 439 511 443 508 587 512 442 515 446 509 588 513 510 589 514 439 511 443 436 507 440 509 588 513 439 511 443 510 589 514 511 590 515 436 507 440 433 503 437 510 589 514 436 507 440 511 590 515 512 591 516 433 503 437 430 499 434 511 590 515 433 503 437 512 591 516 513 592 517 430 499 434 427 495 431 512 591 516 430 499 434 513 592 517 514 593 518 427 495 431 424 491 428 513 592 517 427 495 431 514 593 518 515 594 519 424 491 428 421 487 425 514 593 518 424 491 428 515 594 519 516 595 520 421 487 425 417 481 421 515 594 519 421 487 425 516 595 520 517 596 521 417 481 421 413 474 417 516 595 520 417 481 421 517 596 521 518 597 522 413 474 417 408 469 412 517 596 521 413 474 417 518 597 522 519 598 523 408 469 412 405 466 409 518 597 522 408 469 412 519 598 523 520 599 524 405 466 409 402 463 406 519 598 523 405 466 409 520 599 524 521 600 525 402 463 406 399 460 403 520 599 524 402 463 406 521 600 525 522 601 526 399 460 403 396 457 400 521 600 525 399 460 403 522 601 526 523 602 527 396 457 400 393 454 397 522 601 526 396 457 400 523 602 527 524 603 528 393 454 397 390 451 394 523 602 527 393 454 397 524 603 528 525 604 529 390 451 394 385 446 389 524 603 528 390 451 394 525 604 529 526 605 530 385 446 389 382 442 386 525 604 529 385 446 389 526 605 530 527 606 531 382 442 386 377 435 381 526 605 530 382 442 386 527 606 531 528 607 532 377 435 381 374 431 378 527 606 531 377 435 381 528 607 532 529 608 533 374 431 378 371 427 375 528 607 532 374 431 378 529 608 533 530 609 534 371 427 375 368 423 372 529 608 533 371 427 375 530 609 534 531 610 535 368 423 372 365 419 369 530 609 534 368 423 372 531 610 535 532 611 536 365 419 369 362 415 366 531 610 535 365 419 369 532 611 536 533 612 537 362 415 366 359 411 363 532 611 536 362 415 366 533 612 537 534 613 538 359 411 363 356 407 360 533 612 537 359 411 363 534 613 538 535 614 539 356 407 360 353 403 357 534 613 538 356 407 360 535 614 539 536 615 540 353 403 357 350 399 354 535 614 539 353 403 357 536 615 540 537 616 541 350 399 354 347 395 351 536 615 540 350 399 354 537 616 541 538 617 542 347 395 351 345 392 349 537 616 541 347 395 351 538 617 542 539 618 543 345 392 349 342 388 346 538 617 542 345 392 349 539 618 543 540 619 544 342 388 346 327 372 331 539 618 543 342 388 346 540 619 544 541 620 545 327 372 331 326 371 330 540 619 544 327 372 331 541 620 545 542 621 546 326 371 330 330 376 334 541 620 545 326 371 330 542 621 546 543 622 547 330 376 334 331 377 335 542 621 546 330 376 334 543 622 547 544 623 548 331 377 335 332 378 336 543 622 547 331 377 335 544 623 548 545 624 549 332 378 336 333 379 337 544 623 548 332 378 336 545 624 549 546 625 550 333 379 337 334 380 338 545 624 549 333 379 337 546 625 550 547 626 551 334 380 338 335 381 339 546 625 550 334 380 338 547 626 551 548 627 552 335 381 339 336 382 340 547 626 551 335 381 339 548 627 552 549 628 553 336 382 340 337 383 341 548 627 552 336 382 340 549 628 553 550 629 555 337 383 341 341 387 345 549 628 553 337 383 341 550 629 555 551 630 557 490 569 494 492 571 496 552 631 558 551 630 557 492 571 496 552 631 558 492 571 496 493 572 497 553 632 559 459 538 463 463 633 467 456 533 460 459 538 463 553 632 559 554 634 560 463 633 467 464 635 468 553 632 559 463 633 467 554 634 560 555 636 561 464 543 468 462 541 466 556 637 630 464 635 631 555 638 632 554 634 560 464 635 468 556 637 562 557 639 563 462 541 466 466 545 470 557 639 563 555 636 561 462 541 466 558 640 564 466 545 470 469 548 473 558 640 564 557 639 563 466 545 470 559 641 565 469 548 473 472 551 476 559 641 565 558 640 564 469 548 473 560 642 566 472 551 476 475 554 479 560 642 566 559 641 565 472 551 476 561 643 567 475 554 479 478 557 482 561 643 567 560 642 566 475 554 479 562 644 568 478 557 482 481 560 485 562 644 568 561 643 567 478 557 482 563 645 569 481 560 485 484 563 488 563 645 569 562 644 568 481 560 485 564 646 570 484 563 488 487 566 491 564 646 570 563 645 569 484 563 488 565 647 571 487 566 491 490 569 494 565 647 571 564 646 570 487 566 491 566 648 572 490 569 494 551 630 557 566 648 572 565 647 571 490 569 494 566 648 572 551 630 557 567 649 573 568 650 574 567 649 573 551 630 557 568 650 574 551 630 557 552 631 558 569 651 575 566 648 572 567 649 573 570 652 576 569 651 575 567 649 573 570 652 576 567 649 573 568 650 574 571 653 577 555 636 561 557 639 563 572 654 633 555 638 632 571 655 634 556 637 562 555 638 561 572 654 578 573 656 579 557 639 563 558 640 564 574 657 580 571 653 577 557 639 563 573 656 579 574 657 580 557 639 563 575 658 581 558 640 564 559 641 565 575 658 581 573 656 579 558 640 564 576 659 582 559 641 565 560 642 566 576 659 582 575 658 581 559 641 565 577 660 583 560 642 566 561 643 567 577 660 583 576 659 582 560 642 566 578 661 584 561 643 567 562 644 568 578 661 584 577 660 583 561 643 567 579 662 585 562 644 568 563 645 569 579 662 585 578 661 584 562 644 568 580 663 586 563 645 569 564 646 570 580 663 586 579 662 585 563 645 569 581 664 587 564 646 570 565 647 571 581 664 587 580 663 586 564 646 570 582 665 588 565 647 571 566 648 572 582 665 588 581 664 587 565 647 571 583 666 589 566 648 572 569 651 575 583 666 589 582 665 588 566 648 572 583 666 589 569 651 575 584 667 590 585 668 591 584 667 590 569 651 575 585 668 591 569 651 575 570 652 576 586 669 592 583 666 589 584 667 590 586 669 592 584 667 590 585 668 591 574 657 580 587 670 593 571 653 577 572 654 633 571 655 634 587 671 635 186 186 186 587 670 593 574 657 580 186 186 186 188 188 188 587 670 593 588 672 648 587 671 635 188 673 649 572 654 578 587 671 593 588 672 594 185 185 185 574 657 580 573 656 579 185 185 185 186 186 186 574 657 580 184 184 184 573 656 579 575 658 581 184 184 184 185 185 185 573 656 579 183 183 183 575 658 581 576 659 582 183 183 183 184 184 184 575 658 581 182 182 182 576 659 582 577 660 583 182 182 182 183 183 183 576 659 582 181 181 181 577 660 583 578 661 584 181 181 181 182 182 182 577 660 583 180 180 180 578 661 584 579 662 585 180 180 180 181 181 181 578 661 584 179 179 179 579 662 585 580 663 586 179 179 179 180 180 180 579 662 585 178 178 178 580 663 586 581 664 587 178 178 178 179 179 179 580 663 586 174 174 174 581 664 587 582 665 588 174 174 174 178 178 178 581 664 587 175 175 175 582 665 588 583 666 589 175 175 175 174 174 174 582 665 588 175 175 175 583 666 589 589 674 595 590 675 597 589 674 595 583 666 589 590 675 597 583 666 589 586 669 592 590 675 597 175 175 175 589 674 595 591 676 598 188 673 188 189 677 189 588 672 594 188 673 188 591 676 598 176 176 176 175 175 175 592 678 599 593 679 600 592 678 599 175 175 175 593 679 600 175 175 175 590 675 597 594 680 601 176 176 176 592 678 599 594 680 601 592 678 599 593 679 600 191 193 191 189 677 189 187 194 187 591 676 598 189 677 189 191 193 191 177 177 177 176 176 176 594 680 601 219 239 220 216 681 217 215 240 216 595 682 602 205 223 206 207 683 208 204 220 205 205 223 206 595 682 602 596 684 603 207 683 208 208 685 209 595 682 602 207 683 208 596 684 603 597 686 604 208 226 209 206 224 207 598 687 1012 208 685 1013 597 688 1014 596 684 603 208 685 209 598 687 605 599 689 606 206 224 207 209 227 210 599 689 606 597 686 604 206 224 207 600 690 607 209 227 210 210 228 211 600 690 607 599 689 606 209 227 210 601 691 608 210 228 211 211 229 212 601 691 608 600 690 607 210 228 211 602 692 609 211 229 212 212 230 213 602 692 609 601 691 608 211 229 212 603 693 610 212 230 213 213 231 214 604 694 611 602 692 609 212 230 213 603 693 610 604 694 611 212 230 213 605 695 612 213 231 214 214 232 215 605 695 612 603 693 610 213 231 214 606 696 613 214 232 215 217 235 218 605 695 612 214 232 215 606 696 613 607 697 614 217 698 218 216 681 217 608 699 650 606 700 651 217 698 652 608 699 615 217 698 218 607 697 614 607 697 614 216 681 217 219 239 220 609 701 616 605 695 612 606 696 613 610 702 653 609 703 676 606 700 651 610 702 617 606 700 613 608 699 615 611 704 618 597 686 604 599 689 606 612 705 1015 597 688 1014 611 706 1034 598 687 605 597 688 604 612 705 619 613 707 620 599 689 606 600 690 607 614 708 624 611 704 618 599 689 606 613 707 620 614 708 624 599 689 606 615 709 625 600 690 607 601 691 608 615 709 625 613 707 620 600 690 607 616 710 719 601 691 608 602 692 609 616 710 719 615 709 625 601 691 608 617 711 722 602 692 609 604 694 611 617 711 722 616 710 719 602 692 609 618 712 723 604 694 611 603 693 610 618 712 723 617 711 722 604 694 611 619 713 725 603 693 610 605 695 612 619 713 725 618 712 723 603 693 610 619 713 725 605 695 612 609 701 616 620 714 726 619 713 725 609 701 616 610 702 653 620 715 677 609 703 676 612 705 1015 611 706 1034 614 716 1035 407 468 411 614 708 624 613 707 620 407 468 411 411 472 415 614 708 624 621 717 1036 614 716 1035 411 718 1037 612 705 619 614 716 624 621 717 729 404 465 408 613 707 620 615 709 625 404 465 408 407 468 411 613 707 620 401 462 405 615 709 625 616 710 719 401 462 405 404 465 408 615 709 625 398 459 402 616 710 719 617 711 722 398 459 402 401 462 405 616 710 719 395 456 399 617 711 722 618 712 723 395 456 399 398 459 402 617 711 722 392 453 396 618 712 723 619 713 725 392 453 396 395 456 399 618 712 723 387 448 391 619 713 725 620 714 726 387 448 391 392 453 396 619 713 725 387 448 391 620 714 726 388 449 392 622 719 678 388 720 679 620 715 677 622 719 730 620 715 726 610 702 617 623 721 733 389 722 393 388 720 392 623 721 733 388 720 392 622 719 730 624 723 734 411 718 415 412 724 416 621 717 729 411 718 415 624 723 734 625 725 735 384 445 388 389 722 393 625 725 735 389 722 393 623 721 733 416 479 420 412 724 416 410 480 414 624 723 734 412 724 416 416 479 420 381 440 385 384 445 388 625 725 735 626 726 697 6 727 698 3 728 699 627 729 700 626 726 697 3 728 699 9 730 701 627 729 700 3 728 699 626 726 697 252 731 702 6 727 698 628 732 703 253 733 704 252 731 702 626 726 697 628 732 703 252 731 702 629 734 705 249 735 706 253 733 704 628 732 703 629 734 705 253 733 704 629 734 705 251 736 707 249 735 706 630 737 680 270 738 681 251 736 682 629 734 683 630 737 680 251 736 682 631 739 684 272 740 685 270 738 681 630 737 680 631 739 684 270 738 681 632 741 686 274 742 687 272 740 685 631 739 684 632 741 686 272 740 685 632 741 686 290 743 688 274 742 687 633 744 689 305 745 690 290 743 688 632 741 686 633 744 689 290 743 688 634 746 691 306 747 692 305 745 690 633 744 689 634 746 691 305 745 690 634 746 691 321 748 693 306 747 692 635 749 694 322 750 724 321 748 693 634 746 691 635 749 694 321 748 693 636 751 660 340 752 661 322 750 662 635 749 694 636 751 1327 322 750 724 637 753 663 339 754 664 340 752 661 636 751 660 637 753 663 340 752 661 637 753 663 341 755 665 339 754 664 638 756 666 550 757 667 341 755 665 637 753 663 638 756 666 341 755 665 639 758 668 549 759 669 550 757 667 640 760 670 639 758 668 550 757 667 638 756 666 640 760 670 550 757 667 641 761 671 549 759 669 639 758 668 548 762 672 549 759 669 641 761 671 642 763 673 639 758 668 640 760 670 641 761 671 639 758 668 642 763 673 643 764 674 640 760 670 638 756 666 642 763 673 640 760 670 643 764 674 644 765 675 638 756 666 637 753 663 645 766 714 638 756 666 644 765 675 643 764 674 638 756 666 645 766 714 646 767 715 637 753 663 636 751 660 644 765 675 637 753 663 646 767 715 647 768 1330 636 751 1327 635 749 694 646 767 715 636 751 660 647 768 717 648 769 1331 635 749 694 634 746 691 647 768 1330 635 749 694 648 769 1331 649 770 1332 634 746 691 633 744 689 648 769 1331 634 746 691 649 770 1332 650 771 1333 633 744 689 632 741 686 649 770 1332 633 744 689 650 771 1333 651 772 1334 632 741 686 631 739 684 650 771 1333 632 741 686 651 772 1334 652 773 1335 631 739 684 630 737 680 651 772 1334 631 739 684 652 773 1335 653 774 1336 630 737 680 629 734 683 652 773 1335 630 737 680 653 774 1336 654 775 708 629 734 705 628 732 703 653 774 1336 629 734 683 654 775 1337 655 776 709 628 732 703 626 726 697 654 775 708 628 732 703 655 776 709 627 729 700 656 777 710 626 726 697 657 778 711 626 726 697 656 777 710 655 776 709 626 726 697 657 778 711 658 779 712 656 777 710 627 729 700 659 780 713 657 778 711 656 777 710 658 779 712 659 780 713 656 777 710 658 779 712 627 729 700 9 730 701 660 781 718 661 782 720 662 783 721 663 784 727 662 783 721 661 782 720 664 785 728 660 781 718 662 783 721 665 786 731 664 785 728 662 783 721 666 787 732 665 786 731 662 783 721 666 787 732 662 783 721 663 784 727 660 781 718 667 788 736 661 782 720 668 789 739 661 782 720 667 788 736 668 789 739 663 784 727 661 782 720 669 790 740 670 791 741 667 788 736 671 792 742 667 788 736 670 791 741 660 781 718 669 790 740 667 788 736 671 792 742 668 789 739 667 788 736 672 793 743 673 794 744 670 791 741 674 795 745 670 791 741 673 794 744 669 790 740 672 793 743 670 791 741 674 795 745 671 792 742 670 791 741 672 793 743 675 796 746 673 794 744 674 795 745 673 794 744 675 796 746 676 797 1338 677 798 1339 675 796 1340 678 799 1341 675 796 1340 677 798 1339 672 793 1342 676 797 1338 675 796 1340 678 799 1341 674 795 1343 675 796 1340 679 800 1344 680 801 1345 677 798 1339 681 802 1346 677 798 1339 680 801 1345 676 797 1338 679 800 1344 677 798 1339 681 802 1346 678 799 1341 677 798 1339 682 803 1348 683 804 1351 680 801 1345 684 805 1371 680 801 1345 683 804 1351 679 800 1344 682 803 1348 680 801 1345 684 805 1371 681 802 1346 680 801 1345 682 803 1348 685 806 1372 683 804 1351 684 805 1371 683 804 1351 685 806 1372 686 807 1373 687 808 1374 685 806 1372 688 809 1375 685 806 1372 687 808 1374 682 803 1348 686 807 1373 685 806 1372 688 809 1375 684 805 1371 685 806 1372 689 810 1383 690 811 1384 687 808 1374 691 812 1385 687 808 1374 690 811 1384 686 807 1373 689 810 1383 687 808 1374 691 812 1385 688 809 1375 687 808 1374 689 810 1383 692 813 1386 690 811 1384 693 814 1387 690 811 1384 692 813 1386 693 814 1387 691 812 1385 690 811 1384 694 815 1388 695 816 1389 692 813 1386 696 817 1402 692 813 1386 695 816 1389 689 810 1383 694 815 1388 692 813 1386 696 817 1402 693 814 1387 692 813 1386 697 818 716 698 819 998 695 816 999 696 817 1000 695 816 999 698 819 998 694 815 1388 697 818 1403 695 816 1389 699 820 1001 700 821 1002 698 819 998 701 822 1003 698 819 998 700 821 1002 697 818 716 699 820 1001 698 819 998 701 822 1404 696 817 1402 698 819 1405 699 820 1001 702 823 1004 700 821 1002 703 824 1005 700 821 1002 702 823 1004 703 824 1005 701 822 1003 700 821 1002 704 825 1006 705 826 1007 702 823 1004 706 827 1008 702 823 1004 705 826 1007 699 820 1001 704 825 1006 702 823 1004 706 827 1008 703 824 1005 702 823 1004 707 828 1009 708 829 1018 705 826 1007 706 827 1008 705 826 1007 708 829 1018 704 825 1006 707 828 1009 705 826 1007 709 830 1019 708 829 1018 707 828 1009 709 830 1019 710 831 1020 708 829 1018 711 832 1021 708 829 1018 710 831 1020 711 832 1021 706 827 1008 708 829 1018 712 833 1022 707 828 1009 704 825 1006 709 830 1019 707 828 1009 712 833 1022 657 778 711 704 825 1006 699 820 1001 713 834 1023 712 833 1022 704 825 1006 657 778 711 713 834 1023 704 825 1006 655 776 709 699 820 1001 697 818 716 655 776 709 657 778 711 699 820 1001 654 775 1337 697 818 1403 694 815 1388 654 775 708 655 776 709 697 818 716 653 774 1336 694 815 1388 689 810 1383 653 774 1336 654 775 1337 694 815 1388 652 773 1335 689 810 1383 686 807 1373 652 773 1335 653 774 1336 689 810 1383 651 772 1334 686 807 1373 682 803 1348 651 772 1334 652 773 1335 686 807 1373 650 771 1333 682 803 1348 679 800 1344 650 771 1333 651 772 1334 682 803 1348 649 770 1332 679 800 1344 676 797 1338 649 770 1332 650 771 1333 679 800 1344 648 769 1331 676 797 1338 672 793 1342 648 769 1331 649 770 1332 676 797 1338 647 768 717 672 793 743 669 790 740 647 768 1330 648 769 1331 672 793 1342 646 767 715 669 790 740 660 781 718 646 767 715 647 768 717 669 790 740 644 765 675 660 781 718 664 785 728 644 765 675 646 767 715 660 781 718 644 765 675 664 785 728 714 835 747 665 786 731 714 835 747 664 785 728 645 766 714 644 765 675 714 835 747 715 836 748 645 766 714 714 835 747 715 836 748 714 835 747 665 786 731 716 837 1024 712 833 1022 713 834 1023 716 837 1024 709 830 1019 712 833 1022 659 780 713 713 834 1023 657 778 711 716 837 1024 713 834 1023 659 780 713 715 836 748 643 764 674 645 766 714 642 763 673 643 764 674 715 836 748 716 837 1024 659 780 713 658 779 712 717 838 749 718 839 750 719 840 751 720 841 752 719 840 751 718 839 750 721 842 753 717 838 749 719 840 751 722 843 754 721 842 753 719 840 751 723 844 737 722 845 738 719 846 827 724 847 1406 719 848 1407 720 849 1408 725 850 830 723 844 737 719 846 827 724 847 1406 725 851 1419 719 848 1407 717 838 749 726 852 755 718 839 750 727 853 756 718 839 750 726 852 755 727 853 756 720 841 752 718 839 750 728 854 757 729 855 758 726 852 755 730 856 932 726 857 934 729 858 2912 717 838 749 728 854 757 726 852 755 731 859 759 727 853 756 726 852 755 730 860 1038 731 861 1039 726 862 1040 732 863 760 733 864 761 729 855 758 734 865 2913 729 858 2912 733 866 2914 728 854 757 732 863 760 729 855 758 735 867 2916 729 858 2912 734 865 2913 735 867 2916 730 856 932 729 858 2912 736 868 762 737 869 763 733 864 761 738 870 2917 733 866 2914 737 871 2918 732 863 760 736 868 762 733 864 761 738 870 2917 734 865 2913 733 866 2914 739 872 764 740 873 765 737 869 763 741 874 766 737 869 763 740 873 765 736 868 762 739 872 764 737 869 763 742 875 767 737 869 763 741 874 766 742 875 767 738 876 768 737 869 763 743 877 769 744 878 770 740 873 765 745 879 771 740 873 765 744 878 770 739 872 764 743 877 769 740 873 765 745 879 771 741 874 766 740 873 765 746 880 772 747 881 773 744 878 770 748 882 774 744 878 770 747 881 773 743 877 769 746 880 772 744 878 770 748 882 774 745 879 771 744 878 770 749 883 775 750 884 776 747 881 773 751 885 777 747 881 773 750 884 776 746 880 772 749 883 775 747 881 773 751 885 777 748 882 774 747 881 773 752 886 778 753 887 779 750 884 776 754 888 780 750 884 776 753 887 779 749 883 775 752 886 778 750 884 776 754 888 780 751 885 777 750 884 776 755 889 781 756 890 782 753 887 779 757 891 783 753 887 779 756 890 782 752 886 778 755 889 781 753 887 779 757 891 783 754 888 780 753 887 779 758 892 784 759 893 785 756 890 782 760 894 786 756 890 782 759 893 785 755 889 781 758 892 784 756 890 782 760 894 786 757 891 783 756 890 782 761 895 787 762 896 788 759 893 785 763 897 789 759 893 785 762 896 788 758 892 784 761 895 787 759 893 785 763 897 789 760 894 786 759 893 785 764 898 790 765 899 791 762 896 788 766 900 792 762 896 788 765 899 791 761 895 787 764 898 790 762 896 788 766 900 792 763 897 789 762 896 788 767 901 793 768 902 794 765 899 791 769 903 795 765 899 791 768 902 794 764 898 790 767 901 793 765 899 791 769 903 795 766 900 792 765 899 791 770 904 796 771 905 797 768 902 794 772 906 798 768 902 794 771 905 797 767 901 793 770 904 796 768 902 794 772 906 798 769 903 795 768 902 794 773 907 799 774 908 800 771 905 797 775 909 801 771 905 797 774 908 800 770 904 796 773 907 799 771 905 797 775 909 801 772 906 798 771 905 797 776 910 802 777 911 803 774 908 800 778 912 804 774 908 800 777 911 803 773 907 799 776 910 802 774 908 800 778 912 804 775 909 801 774 908 800 779 913 805 780 914 806 777 911 803 781 915 807 777 911 803 780 914 806 776 910 802 779 913 805 777 911 803 781 915 807 778 912 804 777 911 803 782 916 808 783 917 809 780 914 806 784 918 810 780 914 806 783 917 809 779 913 805 782 916 808 780 914 806 784 918 810 781 915 807 780 914 806 785 919 811 786 920 812 783 917 809 787 921 813 783 917 809 786 920 812 782 916 808 785 919 811 783 917 809 787 921 813 784 918 810 783 917 809 788 922 814 789 923 815 786 920 812 790 924 816 786 920 812 789 923 815 785 919 811 788 922 814 786 920 812 790 924 816 787 921 813 786 920 812 791 925 817 792 926 818 789 923 815 793 927 819 789 923 815 792 926 818 788 922 814 791 925 817 789 923 815 793 927 819 790 924 816 789 923 815 794 928 820 795 929 821 792 926 818 796 930 822 792 926 818 795 929 821 791 925 817 794 928 820 792 926 818 796 930 822 793 927 819 792 926 818 797 931 823 798 932 824 795 929 821 799 933 825 795 929 821 798 932 824 794 928 820 797 931 823 795 929 821 799 933 825 796 930 822 795 929 821 715 836 748 665 786 731 798 932 824 800 934 826 798 932 824 665 786 731 797 931 823 715 836 748 798 932 824 800 934 826 799 933 825 798 932 824 666 787 732 800 934 826 665 786 731 642 763 673 715 836 748 797 931 823 801 935 828 797 931 823 794 928 820 801 935 828 642 763 673 797 931 823 802 936 829 794 928 820 791 925 817 802 936 829 801 935 828 794 928 820 803 937 831 791 925 817 788 922 814 803 937 831 802 936 829 791 925 817 804 938 832 788 922 814 785 919 811 804 938 832 803 937 831 788 922 814 805 939 833 785 919 811 782 916 808 805 939 833 804 938 832 785 919 811 806 940 834 782 916 808 779 913 805 806 940 834 805 939 833 782 916 808 807 941 835 779 913 805 776 910 802 807 941 835 806 940 834 779 913 805 808 942 836 776 910 802 773 907 799 808 942 836 807 941 835 776 910 802 809 943 837 773 907 799 770 904 796 809 943 837 808 942 836 773 907 799 810 944 838 770 904 796 767 901 793 810 944 838 809 943 837 770 904 796 811 945 839 767 901 793 764 898 790 811 945 839 810 944 838 767 901 793 812 946 840 764 898 790 761 895 787 812 946 840 811 945 839 764 898 790 813 947 841 761 895 787 758 892 784 813 947 841 812 946 840 761 895 787 814 948 842 758 892 784 755 889 781 814 948 842 813 947 841 758 892 784 815 949 843 755 889 781 752 886 778 815 949 843 814 948 842 755 889 781 816 950 844 752 886 778 749 883 775 816 950 844 815 949 843 752 886 778 817 951 845 749 883 775 746 880 772 817 951 845 816 950 844 749 883 775 818 952 846 746 880 772 743 877 769 818 952 846 817 951 845 746 880 772 819 953 847 743 877 769 739 872 764 819 953 847 818 952 846 743 877 769 820 954 848 739 872 764 736 868 762 820 954 848 819 953 847 739 872 764 821 955 849 736 868 762 732 863 760 821 955 849 820 954 848 736 868 762 822 956 850 732 863 760 728 854 757 822 956 850 821 955 849 732 863 760 823 957 851 728 854 757 717 838 749 823 957 851 822 956 850 728 854 757 824 958 852 717 838 749 721 842 753 824 958 852 823 957 851 717 838 749 722 843 754 825 959 853 721 842 753 826 960 854 721 842 753 825 959 853 826 960 854 824 958 852 721 842 753 827 961 855 828 962 856 825 959 853 829 963 857 825 959 853 828 962 856 722 843 754 827 961 855 825 959 853 829 963 857 826 960 854 825 959 853 830 964 858 831 965 859 828 962 856 832 966 860 828 962 856 831 965 859 827 961 855 830 964 858 828 962 856 832 966 860 829 963 857 828 962 856 833 967 861 834 968 862 831 965 859 835 969 863 831 965 859 834 968 862 830 964 858 833 967 861 831 965 859 835 969 863 832 966 860 831 965 859 836 970 864 837 971 865 834 968 862 838 972 866 834 968 862 837 971 865 833 967 861 836 970 864 834 968 862 838 972 866 835 969 863 834 968 862 839 973 867 840 974 868 837 971 865 841 975 869 837 971 865 840 974 868 836 970 864 839 973 867 837 971 865 841 975 869 838 972 866 837 971 865 842 976 870 843 977 871 840 974 868 844 978 872 840 974 868 843 977 871 839 973 867 842 976 870 840 974 868 844 978 872 841 975 869 840 974 868 845 979 873 846 980 874 843 977 871 847 981 875 843 977 871 846 980 874 842 976 870 845 979 873 843 977 871 847 981 875 844 978 872 843 977 871 848 982 876 849 983 877 846 980 874 850 984 878 846 980 874 849 983 877 845 979 873 848 982 876 846 980 874 850 984 878 847 981 875 846 980 874 851 985 879 852 986 880 849 983 877 853 987 881 849 983 877 852 986 880 848 982 876 851 985 879 849 983 877 853 987 881 850 984 878 849 983 877 854 988 882 855 989 883 852 986 880 856 990 884 852 986 880 855 989 883 851 985 879 854 988 882 852 986 880 856 990 884 853 987 881 852 986 880 857 991 885 858 992 886 855 989 883 859 993 887 855 989 883 858 992 886 854 988 882 857 991 885 855 989 883 859 993 887 856 990 884 855 989 883 860 994 888 861 995 889 858 992 886 862 996 890 858 992 886 861 995 889 857 991 885 860 994 888 858 992 886 862 996 890 859 993 887 858 992 886 863 997 891 864 998 892 861 995 889 865 999 893 861 995 889 864 998 892 860 994 888 863 997 891 861 995 889 865 999 893 862 996 890 861 995 889 866 1000 894 867 1001 895 864 998 892 868 1002 896 864 998 892 867 1001 895 863 997 891 866 1000 894 864 998 892 868 1002 896 865 999 893 864 998 892 869 1003 897 870 1004 898 867 1001 895 871 1005 899 867 1001 895 870 1004 898 866 1000 894 869 1003 897 867 1001 895 871 1005 899 868 1002 896 867 1001 895 872 1006 900 873 1007 901 870 1004 898 874 1008 902 870 1004 898 873 1007 901 869 1003 897 872 1006 900 870 1004 898 874 1008 902 871 1005 899 870 1004 898 875 1009 903 876 1010 904 873 1007 901 877 1011 905 873 1007 901 876 1010 904 872 1006 900 875 1009 903 873 1007 901 877 1011 905 874 1008 902 873 1007 901 878 1012 906 879 1013 907 876 1010 904 880 1014 908 876 1010 904 879 1013 907 875 1009 903 878 1012 906 876 1010 904 880 1014 908 877 1011 905 876 1010 904 881 1015 909 882 1016 910 879 1013 907 883 1017 911 879 1013 907 882 1016 910 878 1012 906 881 1015 909 879 1013 907 883 1017 911 880 1014 908 879 1013 907 884 1018 912 885 1019 913 882 1016 910 886 1020 914 882 1016 910 885 1019 913 881 1015 909 884 1018 912 882 1016 910 886 1020 914 883 1017 911 882 1016 910 887 1021 915 888 1022 916 885 1019 913 889 1023 917 885 1019 913 888 1022 916 884 1018 912 887 1021 915 885 1019 913 889 1023 917 886 1020 914 885 1019 913 890 1024 918 891 1025 919 888 1022 916 892 1026 920 888 1022 916 891 1025 919 887 1021 915 890 1024 918 888 1022 916 892 1026 920 889 1023 917 888 1022 916 893 1027 921 894 1028 922 891 1025 919 895 1029 923 891 1025 919 894 1028 922 890 1024 918 893 1027 921 891 1025 919 895 1029 923 892 1026 920 891 1025 919 896 1030 924 897 1031 925 894 1028 922 898 1032 926 894 1028 922 897 1031 925 893 1027 921 896 1030 924 894 1028 922 898 1032 926 895 1029 923 894 1028 922 899 1033 927 900 1034 928 897 1031 925 901 1035 929 897 1031 925 900 1034 928 902 1036 930 899 1033 927 897 1031 925 903 1037 931 902 1036 930 897 1031 925 896 1030 924 903 1037 931 897 1031 925 901 1035 929 898 1032 926 897 1031 925 904 1038 933 900 1034 928 899 1033 927 905 1039 935 901 1035 929 900 1034 928 904 1038 933 905 1039 935 900 1034 928 906 1040 936 899 1033 927 902 1036 930 904 1038 933 899 1033 927 906 1040 936 907 1041 937 902 1036 930 903 1037 931 908 1042 938 906 1040 936 902 1036 930 907 1041 937 908 1042 938 902 1036 930 909 1043 939 903 1037 931 896 1030 924 909 1043 939 907 1041 937 903 1037 931 910 1044 940 896 1030 924 893 1027 921 909 1043 939 896 1030 924 910 1044 940 911 1045 941 893 1027 921 890 1024 918 910 1044 940 893 1027 921 911 1045 941 912 1046 942 890 1024 918 887 1021 915 911 1045 941 890 1024 918 912 1046 942 913 1047 943 887 1021 915 884 1018 912 912 1046 942 887 1021 915 913 1047 943 914 1048 944 884 1018 912 881 1015 909 913 1047 943 884 1018 912 914 1048 944 915 1049 945 881 1015 909 878 1012 906 914 1048 944 881 1015 909 915 1049 945 916 1050 946 878 1012 906 875 1009 903 915 1049 945 878 1012 906 916 1050 946 917 1051 947 875 1009 903 872 1006 900 916 1050 946 875 1009 903 917 1051 947 918 1052 948 872 1006 900 869 1003 897 917 1051 947 872 1006 900 918 1052 948 919 1053 949 869 1003 897 866 1000 894 918 1052 948 869 1003 897 919 1053 949 920 1054 950 866 1000 894 863 997 891 919 1053 949 866 1000 894 920 1054 950 921 1055 951 863 997 891 860 994 888 920 1054 950 863 997 891 921 1055 951 922 1056 952 860 994 888 857 991 885 921 1055 951 860 994 888 922 1056 952 923 1057 953 857 991 885 854 988 882 922 1056 952 857 991 885 923 1057 953 924 1058 954 854 988 882 851 985 879 923 1057 953 854 988 882 924 1058 954 925 1059 955 851 985 879 848 982 876 924 1058 954 851 985 879 925 1059 955 926 1060 956 848 982 876 845 979 873 925 1059 955 848 982 876 926 1060 956 927 1061 957 845 979 873 842 976 870 926 1060 956 845 979 873 927 1061 957 928 1062 958 842 976 870 839 973 867 927 1061 957 842 976 870 928 1062 958 929 1063 959 839 973 867 836 970 864 928 1062 958 839 973 867 929 1063 959 930 1064 960 836 970 864 833 967 861 929 1063 959 836 970 864 930 1064 960 931 1065 961 833 967 861 830 964 858 930 1064 960 833 967 861 931 1065 961 932 1066 2919 830 1067 2920 827 1068 2921 931 1065 961 830 964 858 933 1069 962 932 1070 963 933 1069 962 830 964 858 934 1071 2922 827 1068 2921 722 845 738 932 1066 2919 827 1068 2921 934 1071 2922 723 844 737 934 1071 2922 722 845 738 641 761 671 642 763 673 801 935 828 935 1072 964 801 935 828 802 936 829 935 1072 964 641 761 671 801 935 828 936 1073 965 802 936 829 803 937 831 936 1073 965 935 1072 964 802 936 829 937 1074 966 803 937 831 804 938 832 937 1074 966 936 1073 965 803 937 831 938 1075 967 804 938 832 805 939 833 938 1075 967 937 1074 966 804 938 832 939 1076 968 805 939 833 806 940 834 939 1076 968 938 1075 967 805 939 833 940 1077 969 806 940 834 807 941 835 940 1077 969 939 1076 968 806 940 834 941 1078 970 807 941 835 808 942 836 941 1078 970 940 1077 969 807 941 835 942 1079 971 808 942 836 809 943 837 942 1079 971 941 1078 970 808 942 836 943 1080 972 809 943 837 810 944 838 943 1080 972 942 1079 971 809 943 837 944 1081 973 810 944 838 811 945 839 944 1081 973 943 1080 972 810 944 838 945 1082 974 811 945 839 812 946 840 945 1082 974 944 1081 973 811 945 839 946 1083 975 812 946 840 813 947 841 946 1083 975 945 1082 974 812 946 840 947 1084 976 813 947 841 814 948 842 947 1084 976 946 1083 975 813 947 841 948 1085 977 814 948 842 815 949 843 948 1085 977 947 1084 976 814 948 842 949 1086 978 815 949 843 816 950 844 949 1086 978 948 1085 977 815 949 843 950 1087 979 816 950 844 817 951 845 950 1087 979 949 1086 978 816 950 844 951 1088 980 817 951 845 818 952 846 951 1088 980 950 1087 979 817 951 845 952 1089 981 818 952 846 819 953 847 952 1089 981 951 1088 980 818 952 846 953 1090 982 819 953 847 820 954 848 953 1090 982 952 1089 981 819 953 847 954 1091 983 820 954 848 821 955 849 954 1091 983 953 1090 982 820 954 848 955 1092 984 821 955 849 822 956 850 955 1092 984 954 1091 983 821 955 849 956 1093 985 822 956 850 823 957 851 956 1093 985 955 1092 984 822 956 850 957 1094 986 823 957 851 824 958 852 957 1094 986 956 1093 985 823 957 851 958 1095 987 824 958 852 826 960 854 958 1095 987 957 1094 986 824 958 852 959 1096 988 826 960 854 829 963 857 959 1096 988 958 1095 987 826 960 854 960 1097 989 829 963 857 832 966 860 960 1097 989 959 1096 988 829 963 857 961 1098 990 832 966 860 835 969 863 961 1098 990 960 1097 989 832 966 860 962 1099 991 835 969 863 838 972 866 962 1099 991 961 1098 990 835 969 863 963 1100 1016 838 972 866 841 975 869 963 1100 1016 962 1099 991 838 972 866 964 1101 1017 841 975 869 844 978 872 964 1101 1017 963 1100 1016 841 975 869 965 1102 1053 844 978 872 847 981 875 965 1102 1053 964 1101 1017 844 978 872 966 1103 1054 847 981 875 850 984 878 966 1103 1054 965 1102 1053 847 981 875 967 1104 1055 850 984 878 853 987 881 967 1104 1055 966 1103 1054 850 984 878 968 1105 1056 853 987 881 856 990 884 968 1105 1056 967 1104 1055 853 987 881 969 1106 1057 856 990 884 859 993 887 969 1106 1057 968 1105 1056 856 990 884 970 1107 1058 859 993 887 862 996 890 970 1107 1058 969 1106 1057 859 993 887 971 1108 1059 862 996 890 865 999 893 971 1108 1059 970 1107 1058 862 996 890 972 1109 1060 865 999 893 868 1002 896 972 1109 1060 971 1108 1059 865 999 893 973 1110 1061 868 1002 896 871 1005 899 973 1110 1061 972 1109 1060 868 1002 896 974 1111 1347 871 1005 899 874 1008 902 974 1111 1347 973 1110 1061 871 1005 899 975 1112 1349 874 1008 902 877 1011 905 975 1112 1349 974 1111 1347 874 1008 902 976 1113 1350 877 1011 905 880 1014 908 976 1113 1350 975 1112 1349 877 1011 905 977 1114 1352 880 1014 908 883 1017 911 977 1114 1352 976 1113 1350 880 1014 908 978 1115 1353 883 1017 911 886 1020 914 978 1115 1353 977 1114 1352 883 1017 911 979 1116 1354 886 1020 914 889 1023 917 979 1116 1354 978 1115 1353 886 1020 914 980 1117 1355 889 1023 917 892 1026 920 980 1117 1355 979 1116 1354 889 1023 917 981 1118 1356 892 1026 920 895 1029 923 981 1118 1356 980 1117 1355 892 1026 920 982 1119 1357 895 1029 923 898 1032 926 982 1119 1357 981 1118 1356 895 1029 923 983 1120 1358 898 1032 926 901 1035 929 983 1120 1358 982 1119 1357 898 1032 926 905 1039 935 984 1121 1359 901 1035 929 985 1122 1360 901 1035 929 984 1121 1359 985 1122 1360 983 1120 1358 901 1035 929 986 1123 1361 984 1121 1359 905 1039 935 987 1124 1362 985 1122 1360 984 1121 1359 986 1123 1361 987 1124 1362 984 1121 1359 986 1123 1361 905 1039 935 904 1038 933 548 762 672 641 761 671 935 1072 964 547 1125 1363 935 1072 964 936 1073 965 547 1125 1363 548 762 672 935 1072 964 546 1126 1364 936 1073 965 937 1074 966 546 1126 1364 547 1125 1363 936 1073 965 545 1127 1365 937 1074 966 938 1075 967 545 1127 1365 546 1126 1364 937 1074 966 544 1128 1366 938 1075 967 939 1076 968 544 1128 1366 545 1127 1365 938 1075 967 543 1129 1367 939 1076 968 940 1077 969 543 1129 1367 544 1128 1366 939 1076 968 542 1130 1368 940 1077 969 941 1078 970 542 1130 1368 543 1129 1367 940 1077 969 541 1131 1369 941 1078 970 942 1079 971 541 1131 1369 542 1130 1368 941 1078 970 540 1132 1370 942 1079 971 943 1080 972 540 1132 1370 541 1131 1369 942 1079 971 539 1133 1378 943 1080 972 944 1081 973 539 1133 1378 540 1132 1370 943 1080 972 538 1134 1379 944 1081 973 945 1082 974 538 1134 1379 539 1133 1378 944 1081 973 537 1135 1380 945 1082 974 946 1083 975 537 1135 1380 538 1134 1379 945 1082 974 536 1136 1381 946 1083 975 947 1084 976 536 1136 1381 537 1135 1380 946 1083 975 535 1137 1382 947 1084 976 948 1085 977 535 1137 1382 536 1136 1381 947 1084 976 534 1138 1397 948 1085 977 949 1086 978 534 1138 1397 535 1137 1382 948 1085 977 533 1139 1398 949 1086 978 950 1087 979 533 1139 1398 534 1138 1397 949 1086 978 532 1140 1399 950 1087 979 951 1088 980 532 1140 1399 533 1139 1398 950 1087 979 531 1141 1400 951 1088 980 952 1089 981 531 1141 1400 532 1140 1399 951 1088 980 530 1142 1401 952 1089 981 953 1090 982 530 1142 1401 531 1141 1400 952 1089 981 529 1143 1414 953 1090 982 954 1091 983 529 1143 1414 530 1142 1401 953 1090 982 528 1144 1415 954 1091 983 955 1092 984 528 1144 1415 529 1143 1414 954 1091 983 527 1145 1416 955 1092 984 956 1093 985 527 1145 1416 528 1144 1415 955 1092 984 526 1146 1417 956 1093 985 957 1094 986 526 1146 1417 527 1145 1416 956 1093 985 525 1147 1418 957 1094 986 958 1095 987 525 1147 1418 526 1146 1417 957 1094 986 524 1148 1429 958 1095 987 959 1096 988 524 1148 1429 525 1147 1418 958 1095 987 523 1149 1795 959 1096 988 960 1097 989 523 1149 1795 524 1148 1429 959 1096 988 522 1150 1796 960 1097 989 961 1098 990 522 1150 1796 523 1149 1795 960 1097 989 521 1151 1797 961 1098 990 962 1099 991 521 1151 1797 522 1150 1796 961 1098 990 520 1152 1798 962 1099 991 963 1100 1016 520 1152 1798 521 1151 1797 962 1099 991 519 1153 1799 963 1100 1016 964 1101 1017 519 1153 1799 520 1152 1798 963 1100 1016 518 1154 1800 964 1101 1017 965 1102 1053 518 1154 1800 519 1153 1799 964 1101 1017 517 1155 1801 965 1102 1053 966 1103 1054 517 1155 1801 518 1154 1800 965 1102 1053 516 1156 1802 966 1103 1054 967 1104 1055 516 1156 1802 517 1155 1801 966 1103 1054 515 1157 1803 967 1104 1055 968 1105 1056 515 1157 1803 516 1156 1802 967 1104 1055 514 1158 1804 968 1105 1056 969 1106 1057 514 1158 1804 515 1157 1803 968 1105 1056 513 1159 1805 969 1106 1057 970 1107 1058 513 1159 1805 514 1158 1804 969 1106 1057 512 1160 1806 970 1107 1058 971 1108 1059 512 1160 1806 513 1159 1805 970 1107 1058 511 1161 1807 971 1108 1059 972 1109 1060 511 1161 1807 512 1160 1806 971 1108 1059 510 1162 1808 972 1109 1060 973 1110 1061 510 1162 1808 511 1161 1807 972 1109 1060 509 1163 1809 973 1110 1061 974 1111 1347 509 1163 1809 510 1162 1808 973 1110 1061 508 1164 1810 974 1111 1347 975 1112 1349 508 1164 1810 509 1163 1809 974 1111 1347 507 1165 1811 975 1112 1349 976 1113 1350 507 1165 1811 508 1164 1810 975 1112 1349 506 1166 1813 976 1113 1350 977 1114 1352 506 1166 1813 507 1165 1811 976 1113 1350 505 1167 1814 977 1114 1352 978 1115 1353 505 1167 1814 506 1166 1813 977 1114 1352 504 1168 1851 978 1115 1353 979 1116 1354 504 1168 1851 505 1167 1814 978 1115 1353 503 1169 1852 979 1116 1354 980 1117 1355 503 1169 1852 504 1168 1851 979 1116 1354 502 1170 1862 980 1117 1355 981 1118 1356 502 1170 1862 503 1169 1852 980 1117 1355 501 1171 1863 981 1118 1356 982 1119 1357 501 1171 1863 502 1170 1862 981 1118 1356 500 1172 1864 982 1119 1357 983 1120 1358 500 1172 1864 501 1171 1863 982 1119 1357 499 1173 1865 983 1120 1358 985 1122 1360 499 1173 1865 500 1172 1864 983 1120 1358 987 1124 1362 988 1174 1866 985 1122 1360 498 1175 1867 985 1122 1360 988 1174 1866 498 1175 1867 499 1173 1865 985 1122 1360 989 1176 1868 988 1174 1866 987 1124 1362 497 1177 1878 498 1175 1867 988 1174 1866 989 1176 1868 497 1177 1878 988 1174 1866 986 1123 1361 989 1176 1868 987 1124 1362 989 1176 1868 496 1178 1879 497 1177 1878 989 1176 1868 494 1179 1880 496 1178 1879 990 1180 1881 495 1181 1882 494 1179 1880 989 1176 1868 990 1180 1881 494 1179 1880 991 1182 1892 491 1183 1893 495 1181 1882 990 1180 1881 991 1182 1892 495 1181 1882 991 1182 1892 493 1184 1894 491 1183 1893 992 1185 1041 552 1186 1042 493 1184 1043 991 1182 1044 992 1185 1041 493 1184 1043 993 1187 1045 568 1188 1046 552 1186 1042 992 1185 1041 993 1187 1045 552 1186 1042 994 1189 1047 570 1190 1048 568 1188 1046 993 1187 1045 994 1189 1047 568 1188 1046 994 1189 1047 585 1191 1049 570 1190 1048 995 1192 1050 586 1193 1051 585 1191 1049 994 1189 1047 995 1192 1050 585 1191 1049 996 1194 1052 590 1195 1812 586 1193 1051 995 1192 1050 996 1194 1052 586 1193 1051 996 1194 1052 593 1196 1815 590 1195 1812 997 1197 1816 594 1198 1817 593 1196 1815 996 1194 1052 997 1197 1816 593 1196 1815 998 1199 1025 177 1200 1026 594 1198 1027 997 1197 1816 998 1199 1818 594 1198 1817 999 1201 1028 173 1202 1029 177 1200 1026 998 1199 1025 999 1201 1028 177 1200 1026 999 1201 1028 170 1203 1030 173 1202 1029 1000 1204 1031 171 1205 1032 170 1203 1030 999 1201 1028 1000 1204 1031 170 1203 1030 1001 1206 1033 167 1207 1062 171 1205 1032 1002 1208 1063 1001 1206 1033 171 1205 1032 1000 1204 1031 1002 1208 1063 171 1205 1032 1003 1209 1064 167 1207 1062 1001 1206 1033 1003 1209 1064 164 1210 1065 167 1207 1062 1004 1211 1066 1001 1206 1033 1002 1208 1063 1004 1211 1066 1003 1209 1064 1001 1206 1033 1005 1212 1067 1002 1208 1063 1000 1204 1031 1004 1211 1066 1002 1208 1063 1005 1212 1067 1006 1213 1068 1000 1204 1031 999 1201 1028 1007 1214 1069 1000 1204 1031 1006 1213 1068 1005 1212 1067 1000 1204 1031 1007 1214 1069 1008 1215 1070 999 1201 1028 998 1199 1025 1006 1213 1068 999 1201 1028 1008 1215 1070 1009 1216 1819 998 1199 1818 997 1197 1816 1008 1215 1070 998 1199 1025 1009 1216 1071 1010 1217 1820 997 1197 1816 996 1194 1052 1009 1216 1819 997 1197 1816 1010 1217 1820 1011 1218 1821 996 1194 1052 995 1192 1050 1010 1217 1820 996 1194 1052 1011 1218 1821 1012 1219 1822 995 1192 1050 994 1189 1047 1011 1218 1821 995 1192 1050 1012 1219 1822 1013 1220 1823 994 1189 1047 993 1187 1045 1012 1219 1822 994 1189 1047 1013 1220 1823 1014 1221 1824 993 1187 1045 992 1185 1041 1013 1220 1823 993 1187 1045 1014 1221 1824 1015 1222 1825 992 1185 1041 991 1182 1044 1014 1221 1824 992 1185 1041 1015 1222 1825 1016 1223 1895 991 1182 1892 990 1180 1881 1015 1222 1825 991 1182 1044 1016 1223 1826 1017 1224 1899 990 1180 1881 989 1176 1868 1016 1223 1895 990 1180 1881 1017 1224 1899 1017 1224 1899 989 1176 1868 986 1123 1361 1018 1225 1072 1019 1226 1073 1020 1227 1074 1021 1228 1075 1020 1227 1074 1019 1226 1073 1022 1229 1076 1018 1225 1072 1020 1227 1074 1023 1230 1077 1022 1229 1076 1020 1227 1074 1024 1231 1078 1023 1230 1077 1020 1227 1074 1021 1228 1075 1024 1231 1078 1020 1227 1074 1018 1225 1072 1025 1232 1079 1019 1226 1073 1026 1233 1080 1019 1226 1073 1025 1232 1079 1026 1233 1080 1021 1228 1075 1019 1226 1073 1027 1234 1081 1028 1235 1082 1025 1232 1079 1029 1236 1083 1025 1232 1079 1028 1235 1082 1018 1225 1072 1027 1234 1081 1025 1232 1079 1029 1236 1083 1026 1233 1080 1025 1232 1079 1030 1237 1084 1031 1238 1085 1028 1235 1082 1032 1239 1086 1028 1235 1082 1031 1238 1085 1027 1234 1081 1030 1237 1084 1028 1235 1082 1032 1239 1086 1029 1236 1083 1028 1235 1082 1030 1237 1084 1033 1240 1087 1031 1238 1085 1032 1239 1086 1031 1238 1085 1033 1240 1087 1034 1241 1827 1035 1242 1828 1033 1240 1829 1036 1243 1830 1033 1240 1829 1035 1242 1828 1030 1237 1831 1034 1241 1827 1033 1240 1829 1036 1243 1830 1032 1239 1833 1033 1240 1829 1037 1244 1836 1038 1245 1846 1035 1242 1828 1039 1246 1847 1035 1242 1828 1038 1245 1846 1034 1241 1827 1037 1244 1836 1035 1242 1828 1039 1246 1847 1036 1243 1830 1035 1242 1828 1040 1247 1848 1041 1248 1849 1038 1245 1846 1042 1249 1850 1038 1245 1846 1041 1248 1849 1037 1244 1836 1040 1247 1848 1038 1245 1846 1042 1249 1850 1039 1246 1847 1038 1245 1846 1040 1247 1848 1043 1250 1855 1041 1248 1849 1042 1249 1850 1041 1248 1849 1043 1250 1855 1044 1251 1856 1045 1252 1857 1043 1250 1855 1046 1253 1858 1043 1250 1855 1045 1252 1857 1040 1247 1848 1044 1251 1856 1043 1250 1855 1046 1253 1858 1042 1249 1850 1043 1250 1855 1047 1254 1859 1048 1255 1860 1045 1252 1857 1049 1256 1861 1045 1252 1857 1048 1255 1860 1044 1251 1856 1047 1254 1859 1045 1252 1857 1049 1256 1861 1046 1253 1858 1045 1252 1857 1047 1254 1859 1050 1257 1871 1048 1255 1860 1051 1258 1872 1048 1255 1860 1050 1257 1871 1051 1258 1872 1049 1256 1861 1048 1255 1860 1052 1259 1873 1053 1260 1874 1050 1257 1871 1054 1261 1875 1050 1257 1871 1053 1260 1874 1047 1254 1859 1052 1259 1873 1050 1257 1871 1054 1261 1875 1051 1258 1872 1050 1257 1871 1055 1262 1905 1056 1263 1907 1053 1260 1908 1054 1261 1909 1053 1260 1908 1056 1263 1907 1052 1259 1873 1055 1262 1876 1053 1260 1874 1057 1264 1913 1058 1265 1914 1056 1263 1907 1059 1266 1915 1056 1263 1907 1058 1265 1914 1055 1262 1905 1057 1264 1913 1056 1263 1907 1059 1266 1877 1054 1261 1875 1056 1263 1885 1057 1264 1913 1060 1267 1917 1058 1265 1914 1061 1268 1919 1058 1265 1914 1060 1267 1917 1061 1268 1919 1059 1266 1915 1058 1265 1914 904 1038 933 906 1040 936 1060 1267 1917 908 1042 938 1060 1267 1917 906 1040 936 1057 1264 1913 904 1038 933 1060 1267 1917 908 1042 938 1061 1268 1919 1060 1267 1917 986 1123 1361 904 1038 933 1057 1264 1913 1017 1224 1899 1057 1264 1913 1055 1262 1905 1017 1224 1899 986 1123 1361 1057 1264 1913 1016 1223 1826 1055 1262 1876 1052 1259 1873 1016 1223 1895 1017 1224 1899 1055 1262 1905 1015 1222 1825 1052 1259 1873 1047 1254 1859 1015 1222 1825 1016 1223 1826 1052 1259 1873 1014 1221 1824 1047 1254 1859 1044 1251 1856 1014 1221 1824 1015 1222 1825 1047 1254 1859 1013 1220 1823 1044 1251 1856 1040 1247 1848 1013 1220 1823 1014 1221 1824 1044 1251 1856 1012 1219 1822 1040 1247 1848 1037 1244 1836 1012 1219 1822 1013 1220 1823 1040 1247 1848 1011 1218 1821 1037 1244 1836 1034 1241 1827 1011 1218 1821 1012 1219 1822 1037 1244 1836 1010 1217 1820 1034 1241 1827 1030 1237 1831 1010 1217 1820 1011 1218 1821 1034 1241 1827 1009 1216 1071 1030 1237 1084 1027 1234 1081 1009 1216 1819 1010 1217 1820 1030 1237 1831 1008 1215 1070 1027 1234 1081 1018 1225 1072 1008 1215 1070 1009 1216 1071 1027 1234 1081 1006 1213 1068 1018 1225 1072 1022 1229 1076 1006 1213 1068 1008 1215 1070 1018 1225 1072 1006 1213 1068 1022 1229 1076 1062 1269 1088 1023 1230 1077 1062 1269 1088 1022 1229 1076 1007 1214 1069 1006 1213 1068 1062 1269 1088 1063 1270 1089 1007 1214 1069 1062 1269 1088 1063 1270 1089 1062 1269 1088 1023 1230 1077 1063 1270 1089 1005 1212 1067 1007 1214 1069 1004 1211 1066 1005 1212 1067 1063 1270 1089 1064 1271 1090 161 1272 1091 164 1210 1065 1003 1209 1064 1064 1271 1090 164 1210 1065 1065 1273 1092 158 1274 1093 161 1272 1091 1064 1271 1090 1065 1273 1092 161 1272 1091 1066 1275 1094 155 1276 1095 158 1274 1093 1065 1273 1092 1066 1275 1094 158 1274 1093 1067 1277 1096 152 1278 1097 155 1276 1095 1066 1275 1094 1067 1277 1096 155 1276 1095 1068 1279 1098 149 1280 1099 152 1278 1097 1067 1277 1096 1068 1279 1098 152 1278 1097 1069 1281 1100 146 1282 1101 149 1280 1099 1068 1279 1098 1069 1281 1100 149 1280 1099 1070 1283 1102 143 1284 1103 146 1282 1101 1069 1281 1100 1070 1283 1102 146 1282 1101 1071 1285 1104 139 1286 1105 143 1284 1103 1070 1283 1102 1071 1285 1104 143 1284 1103 1072 1287 1106 136 1288 1107 139 1286 1105 1071 1285 1104 1072 1287 1106 139 1286 1105 1073 1289 1108 133 1290 1109 136 1288 1107 1072 1287 1106 1073 1289 1108 136 1288 1107 1074 1291 1110 130 1292 1111 133 1290 1109 1073 1289 1108 1074 1291 1110 133 1290 1109 1075 1293 1112 127 1294 1113 130 1292 1111 1074 1291 1110 1075 1293 1112 130 1292 1111 1076 1295 1114 124 1296 1115 127 1294 1113 1075 1293 1112 1076 1295 1114 127 1294 1113 1077 1297 1116 121 1298 1117 124 1296 1115 1076 1295 1114 1077 1297 1116 124 1296 1115 1078 1299 1118 118 1300 1119 121 1298 1117 1077 1297 1116 1078 1299 1118 121 1298 1117 1079 1301 1120 115 1302 1121 118 1300 1119 1078 1299 1118 1079 1301 1120 118 1300 1119 1080 1303 1122 112 1304 1123 115 1302 1121 1079 1301 1120 1080 1303 1122 115 1302 1121 1081 1305 1124 109 1306 1125 112 1304 1123 1080 1303 1122 1081 1305 1124 112 1304 1123 1082 1307 1126 106 1308 1127 109 1306 1125 1081 1305 1124 1082 1307 1126 109 1306 1125 1083 1309 1128 102 1310 1129 106 1308 1127 1082 1307 1126 1083 1309 1128 106 1308 1127 1084 1311 1130 99 1312 1131 102 1310 1129 1083 1309 1128 1084 1311 1130 102 1310 1129 1085 1313 1132 96 1314 1133 99 1312 1131 1084 1311 1130 1085 1313 1132 99 1312 1131 1086 1315 1134 93 1316 1135 96 1314 1133 1085 1313 1132 1086 1315 1134 96 1314 1133 1087 1317 1136 90 1318 1137 93 1316 1135 1086 1315 1134 1087 1317 1136 93 1316 1135 1088 1319 1138 87 1320 1139 90 1318 1137 1087 1317 1136 1088 1319 1138 90 1318 1137 1089 1321 1140 83 1322 1141 87 1320 1139 1088 1319 1138 1089 1321 1140 87 1320 1139 1090 1323 1142 80 1324 1143 83 1322 1141 1089 1321 1140 1090 1323 1142 83 1322 1141 1091 1325 1144 77 1326 1145 80 1324 1143 1090 1323 1142 1091 1325 1144 80 1324 1143 1092 1327 1146 74 1328 1147 77 1326 1145 1091 1325 1144 1092 1327 1146 77 1326 1145 1093 1329 1148 71 1330 1149 74 1328 1147 1092 1327 1146 1093 1329 1148 74 1328 1147 1094 1331 1150 67 1332 1151 71 1330 1149 1093 1329 1148 1094 1331 1150 71 1330 1149 1095 1333 1152 64 1334 1153 67 1332 1151 1094 1331 1150 1095 1333 1152 67 1332 1151 1096 1335 1154 61 1336 1155 64 1334 1153 1095 1333 1152 1096 1335 1154 64 1334 1153 1097 1337 1156 58 1338 1157 61 1336 1155 1096 1335 1154 1097 1337 1156 61 1336 1155 1098 1339 1158 55 1340 1159 58 1338 1157 1097 1337 1156 1098 1339 1158 58 1338 1157 1099 1341 1160 52 1342 1161 55 1340 1159 1098 1339 1158 1099 1341 1160 55 1340 1159 1100 1343 1162 49 1344 1163 52 1342 1161 1099 1341 1160 1100 1343 1162 52 1342 1161 1101 1345 1164 46 1346 1165 49 1344 1163 1100 1343 1162 1101 1345 1164 49 1344 1163 1102 1347 1166 43 1348 1167 46 1346 1165 1101 1345 1164 1102 1347 1166 46 1346 1165 1103 1349 1168 40 1350 1169 43 1348 1167 1102 1347 1166 1103 1349 1168 43 1348 1167 1104 1351 1170 37 1352 1171 40 1350 1169 1103 1349 1168 1104 1351 1170 40 1350 1169 1105 1353 1172 34 1354 1173 37 1352 1171 1104 1351 1170 1105 1353 1172 37 1352 1171 1106 1355 1174 30 1356 1175 34 1354 1173 1105 1353 1172 1106 1355 1174 34 1354 1173 1107 1357 1176 27 1358 1177 30 1356 1175 1106 1355 1174 1107 1357 1176 30 1356 1175 1108 1359 1178 24 1360 1179 27 1358 1177 1107 1357 1176 1108 1359 1178 27 1358 1177 1109 1361 1180 21 1362 1181 24 1360 1179 1108 1359 1178 1109 1361 1180 24 1360 1179 1110 1363 1182 18 1364 1183 21 1362 1181 1109 1361 1180 1110 1363 1182 21 1362 1181 1111 1365 1184 15 1366 1185 18 1364 1183 1110 1363 1182 1111 1365 1184 18 1364 1183 1112 1367 1186 12 1368 1187 15 1366 1185 1111 1365 1184 1112 1367 1186 15 1366 1185 658 779 712 9 730 701 12 1368 1187 1112 1367 1186 658 779 712 12 1368 1187 716 837 1024 658 779 712 1112 1367 1186 1113 1369 1188 1112 1367 1186 1111 1365 1184 716 837 1024 1112 1367 1186 1113 1369 1188 1114 1370 1189 1111 1365 1184 1110 1363 1182 1113 1369 1188 1111 1365 1184 1114 1370 1189 1115 1371 1190 1110 1363 1182 1109 1361 1180 1114 1370 1189 1110 1363 1182 1115 1371 1190 1116 1372 1191 1109 1361 1180 1108 1359 1178 1115 1371 1190 1109 1361 1180 1116 1372 1191 1117 1373 1192 1108 1359 1178 1107 1357 1176 1116 1372 1191 1108 1359 1178 1117 1373 1192 1118 1374 1193 1107 1357 1176 1106 1355 1174 1117 1373 1192 1107 1357 1176 1118 1374 1193 1119 1375 1194 1106 1355 1174 1105 1353 1172 1118 1374 1193 1106 1355 1174 1119 1375 1194 1120 1376 1195 1105 1353 1172 1104 1351 1170 1119 1375 1194 1105 1353 1172 1120 1376 1195 1121 1377 1196 1104 1351 1170 1103 1349 1168 1120 1376 1195 1104 1351 1170 1121 1377 1196 1122 1378 1197 1103 1349 1168 1102 1347 1166 1121 1377 1196 1103 1349 1168 1122 1378 1197 1123 1379 1198 1102 1347 1166 1101 1345 1164 1122 1378 1197 1102 1347 1166 1123 1379 1198 1124 1380 1199 1101 1345 1164 1100 1343 1162 1123 1379 1198 1101 1345 1164 1124 1380 1199 1125 1381 1200 1100 1343 1162 1099 1341 1160 1124 1380 1199 1100 1343 1162 1125 1381 1200 1126 1382 1201 1099 1341 1160 1098 1339 1158 1125 1381 1200 1099 1341 1160 1126 1382 1201 1127 1383 1202 1098 1339 1158 1097 1337 1156 1126 1382 1201 1098 1339 1158 1127 1383 1202 1128 1384 1203 1097 1337 1156 1096 1335 1154 1127 1383 1202 1097 1337 1156 1128 1384 1203 1129 1385 1204 1096 1335 1154 1095 1333 1152 1128 1384 1203 1096 1335 1154 1129 1385 1204 1130 1386 1205 1095 1333 1152 1094 1331 1150 1129 1385 1204 1095 1333 1152 1130 1386 1205 1131 1387 1206 1094 1331 1150 1093 1329 1148 1130 1386 1205 1094 1331 1150 1131 1387 1206 1132 1388 1207 1093 1329 1148 1092 1327 1146 1131 1387 1206 1093 1329 1148 1132 1388 1207 1133 1389 1208 1092 1327 1146 1091 1325 1144 1132 1388 1207 1092 1327 1146 1133 1389 1208 1134 1390 1209 1091 1325 1144 1090 1323 1142 1133 1389 1208 1091 1325 1144 1134 1390 1209 1135 1391 1210 1090 1323 1142 1089 1321 1140 1134 1390 1209 1090 1323 1142 1135 1391 1210 1136 1392 1211 1089 1321 1140 1088 1319 1138 1135 1391 1210 1089 1321 1140 1136 1392 1211 1137 1393 1212 1088 1319 1138 1087 1317 1136 1136 1392 1211 1088 1319 1138 1137 1393 1212 1138 1394 1213 1087 1317 1136 1086 1315 1134 1137 1393 1212 1087 1317 1136 1138 1394 1213 1139 1395 1214 1086 1315 1134 1085 1313 1132 1138 1394 1213 1086 1315 1134 1139 1395 1214 1140 1396 1215 1085 1313 1132 1084 1311 1130 1139 1395 1214 1085 1313 1132 1140 1396 1215 1141 1397 1216 1084 1311 1130 1083 1309 1128 1140 1396 1215 1084 1311 1130 1141 1397 1216 1142 1398 1217 1083 1309 1128 1082 1307 1126 1141 1397 1216 1083 1309 1128 1142 1398 1217 1143 1399 1218 1082 1307 1126 1081 1305 1124 1142 1398 1217 1082 1307 1126 1143 1399 1218 1144 1400 1219 1081 1305 1124 1080 1303 1122 1143 1399 1218 1081 1305 1124 1144 1400 1219 1145 1401 1220 1080 1303 1122 1079 1301 1120 1144 1400 1219 1080 1303 1122 1145 1401 1220 1146 1402 1221 1079 1301 1120 1078 1299 1118 1145 1401 1220 1079 1301 1120 1146 1402 1221 1147 1403 1222 1078 1299 1118 1077 1297 1116 1146 1402 1221 1078 1299 1118 1147 1403 1222 1148 1404 1223 1077 1297 1116 1076 1295 1114 1147 1403 1222 1077 1297 1116 1148 1404 1223 1149 1405 1224 1076 1295 1114 1075 1293 1112 1148 1404 1223 1076 1295 1114 1149 1405 1224 1150 1406 1225 1075 1293 1112 1074 1291 1110 1149 1405 1224 1075 1293 1112 1150 1406 1225 1151 1407 1226 1074 1291 1110 1073 1289 1108 1150 1406 1225 1074 1291 1110 1151 1407 1226 1152 1408 1227 1073 1289 1108 1072 1287 1106 1151 1407 1226 1073 1289 1108 1152 1408 1227 1153 1409 1228 1072 1287 1106 1071 1285 1104 1152 1408 1227 1072 1287 1106 1153 1409 1228 1154 1410 1229 1071 1285 1104 1070 1283 1102 1153 1409 1228 1071 1285 1104 1154 1410 1229 1155 1411 1230 1070 1283 1102 1069 1281 1100 1154 1410 1229 1070 1283 1102 1155 1411 1230 1156 1412 1231 1069 1281 1100 1068 1279 1098 1155 1411 1230 1069 1281 1100 1156 1412 1231 1157 1413 1232 1068 1279 1098 1067 1277 1096 1156 1412 1231 1068 1279 1098 1157 1413 1232 1158 1414 1233 1067 1277 1096 1066 1275 1094 1157 1413 1232 1067 1277 1096 1158 1414 1233 1159 1415 1234 1066 1275 1094 1065 1273 1092 1158 1414 1233 1066 1275 1094 1159 1415 1234 1160 1416 1235 1065 1273 1092 1064 1271 1090 1159 1415 1234 1065 1273 1092 1160 1416 1235 1161 1417 1236 1064 1271 1090 1003 1209 1064 1160 1416 1235 1064 1271 1090 1161 1417 1236 1161 1417 1236 1003 1209 1064 1004 1211 1066 1162 1418 1237 1163 1419 1238 710 831 1020 1164 1420 1239 710 831 1020 1163 1419 1238 709 830 1019 1162 1418 1237 710 831 1020 1164 1420 1239 711 832 1021 710 831 1020 1165 1421 1240 1166 1422 1241 1163 1419 1238 1167 1423 1242 1163 1419 1238 1166 1422 1241 1162 1418 1237 1165 1421 1240 1163 1419 1238 1167 1423 1242 1164 1420 1239 1163 1419 1238 1168 1424 1243 1169 1425 1244 1166 1422 1241 1170 1426 1245 1166 1422 1241 1169 1425 1244 1165 1421 1240 1168 1424 1243 1166 1422 1241 1170 1426 1245 1167 1423 1242 1166 1422 1241 1171 1427 1246 1172 1428 1247 1169 1425 1244 1173 1429 1248 1169 1425 1244 1172 1428 1247 1168 1424 1243 1171 1427 1246 1169 1425 1244 1173 1429 1248 1170 1426 1245 1169 1425 1244 1174 1430 1249 1175 1431 1250 1172 1428 1247 1176 1432 1251 1172 1428 1247 1175 1431 1250 1171 1427 1246 1174 1430 1249 1172 1428 1247 1176 1432 1251 1173 1429 1248 1172 1428 1247 1177 1433 1252 1178 1434 1253 1175 1431 1250 1179 1435 1254 1175 1431 1250 1178 1434 1253 1174 1430 1249 1177 1433 1252 1175 1431 1250 1179 1435 1254 1176 1432 1251 1175 1431 1250 1180 1436 1255 1181 1437 1256 1178 1434 1253 1182 1438 1257 1178 1434 1253 1181 1437 1256 1177 1433 1252 1180 1436 1255 1178 1434 1253 1182 1438 1257 1179 1435 1254 1178 1434 1253 1183 1439 1258 1184 1440 1259 1181 1437 1256 1185 1441 1260 1181 1437 1256 1184 1440 1259 1180 1436 1255 1183 1439 1258 1181 1437 1256 1185 1441 1260 1182 1438 1257 1181 1437 1256 1186 1442 1261 1187 1443 1262 1184 1440 1259 1188 1444 1263 1184 1440 1259 1187 1443 1262 1183 1439 1258 1186 1442 1261 1184 1440 1259 1188 1444 1263 1185 1441 1260 1184 1440 1259 1189 1445 1264 1190 1446 1265 1187 1443 1262 1191 1447 1266 1187 1443 1262 1190 1446 1265 1186 1442 1261 1189 1445 1264 1187 1443 1262 1191 1447 1266 1188 1444 1263 1187 1443 1262 1192 1448 1267 1193 1449 1268 1190 1446 1265 1194 1450 1269 1190 1446 1265 1193 1449 1268 1189 1445 1264 1192 1448 1267 1190 1446 1265 1194 1450 1269 1191 1447 1266 1190 1446 1265 1195 1451 1270 1196 1452 1271 1193 1449 1268 1197 1453 1272 1193 1449 1268 1196 1452 1271 1192 1448 1267 1195 1451 1270 1193 1449 1268 1197 1453 1272 1194 1450 1269 1193 1449 1268 1198 1454 1273 1199 1455 1274 1196 1452 1271 1200 1456 1275 1196 1452 1271 1199 1455 1274 1195 1451 1270 1198 1454 1273 1196 1452 1271 1200 1456 1275 1197 1453 1272 1196 1452 1271 1201 1457 1276 1202 1458 1277 1199 1455 1274 1203 1459 1278 1199 1455 1274 1202 1458 1277 1198 1454 1273 1201 1457 1276 1199 1455 1274 1203 1459 1278 1200 1456 1275 1199 1455 1274 1204 1460 1279 1205 1461 1280 1202 1458 1277 1206 1462 1281 1202 1458 1277 1205 1461 1280 1201 1457 1276 1204 1460 1279 1202 1458 1277 1206 1462 1281 1203 1459 1278 1202 1458 1277 1207 1463 1282 1208 1464 1283 1205 1461 1280 1209 1465 1284 1205 1461 1280 1208 1464 1283 1204 1460 1279 1207 1463 1282 1205 1461 1280 1209 1465 1284 1206 1462 1281 1205 1461 1280 1210 1466 1285 1211 1467 1286 1208 1464 1283 1212 1468 1287 1208 1464 1283 1211 1467 1286 1207 1463 1282 1210 1466 1285 1208 1464 1283 1212 1468 1287 1209 1465 1284 1208 1464 1283 1213 1469 1288 1214 1470 1289 1211 1467 1286 1215 1471 1290 1211 1467 1286 1214 1470 1289 1210 1466 1285 1213 1469 1288 1211 1467 1286 1215 1471 1290 1212 1468 1287 1211 1467 1286 1216 1472 1291 1217 1473 1292 1214 1470 1289 1218 1474 1293 1214 1470 1289 1217 1473 1292 1213 1469 1288 1216 1472 1291 1214 1470 1289 1218 1474 1293 1215 1471 1290 1214 1470 1289 1219 1475 1294 1220 1476 1295 1217 1473 1292 1221 1477 1296 1217 1473 1292 1220 1476 1295 1216 1472 1291 1219 1475 1294 1217 1473 1292 1221 1477 1296 1218 1474 1293 1217 1473 1292 1222 1478 1297 1223 1479 1298 1220 1476 1295 1224 1480 1299 1220 1476 1295 1223 1479 1298 1219 1475 1294 1222 1478 1297 1220 1476 1295 1224 1480 1299 1221 1477 1296 1220 1476 1295 1225 1481 1300 1226 1482 1301 1223 1479 1298 1227 1483 1302 1223 1479 1298 1226 1482 1301 1222 1478 1297 1225 1481 1300 1223 1479 1298 1227 1483 1302 1224 1480 1299 1223 1479 1298 1228 1484 1303 1229 1485 1304 1226 1482 1301 1230 1486 1305 1226 1482 1301 1229 1485 1304 1225 1481 1300 1228 1484 1303 1226 1482 1301 1230 1486 1305 1227 1483 1302 1226 1482 1301 1231 1487 1306 1232 1488 1307 1229 1485 1304 1233 1489 1308 1229 1485 1304 1232 1488 1307 1228 1484 1303 1231 1487 1306 1229 1485 1304 1233 1489 1308 1230 1486 1305 1229 1485 1304 1234 1490 1309 1235 1491 1310 1232 1488 1307 1236 1492 1311 1232 1488 1307 1235 1491 1310 1231 1487 1306 1234 1490 1309 1232 1488 1307 1236 1492 1311 1233 1489 1308 1232 1488 1307 1237 1493 1312 1238 1494 1313 1235 1491 1310 1239 1495 1314 1235 1491 1310 1238 1494 1313 1234 1490 1309 1237 1493 1312 1235 1491 1310 1239 1495 1314 1236 1492 1311 1235 1491 1310 1240 1496 1315 1241 1497 1316 1238 1494 1313 1242 1498 1317 1238 1494 1313 1241 1497 1316 1237 1493 1312 1240 1496 1315 1238 1494 1313 1242 1498 1317 1239 1495 1314 1238 1494 1313 1243 1499 1318 1244 1500 1319 1241 1497 1316 1245 1501 1320 1241 1497 1316 1244 1500 1319 1240 1496 1315 1243 1499 1318 1241 1497 1316 1245 1501 1320 1242 1498 1317 1241 1497 1316 1246 1502 1321 1247 1503 1322 1244 1500 1319 1248 1504 1323 1244 1500 1319 1247 1503 1322 1243 1499 1318 1246 1502 1321 1244 1500 1319 1248 1504 1323 1245 1501 1320 1244 1500 1319 1249 1505 1324 1250 1506 1325 1247 1503 1322 1251 1507 1326 1247 1503 1322 1250 1506 1325 1246 1502 1321 1249 1505 1324 1247 1503 1322 1251 1507 1326 1248 1504 1323 1247 1503 1322 1252 1508 1328 1253 1509 1329 1250 1506 1325 1254 1510 1376 1250 1506 1325 1253 1509 1329 1249 1505 1324 1252 1508 1328 1250 1506 1325 1254 1510 1376 1251 1507 1326 1250 1506 1325 1255 1511 1377 1256 1512 1390 1253 1509 1329 1257 1513 1391 1253 1509 1329 1256 1512 1390 1252 1508 1328 1255 1511 1377 1253 1509 1329 1257 1513 1391 1254 1510 1376 1253 1509 1329 1258 1514 1392 1259 1515 1393 1256 1512 1390 1260 1516 1394 1256 1512 1390 1259 1515 1393 1255 1511 1377 1258 1514 1392 1256 1512 1390 1260 1516 1394 1257 1513 1391 1256 1512 1390 1261 1517 1395 1262 1518 1396 1259 1515 1393 1263 1519 1409 1259 1515 1393 1262 1518 1396 1258 1514 1392 1261 1517 1395 1259 1515 1393 1263 1519 1409 1260 1516 1394 1259 1515 1393 1264 1520 1410 1265 1521 1411 1262 1518 1396 1266 1522 1412 1262 1518 1396 1265 1521 1411 1261 1517 1395 1264 1520 1410 1262 1518 1396 1266 1522 1412 1263 1519 1409 1262 1518 1396 1267 1523 1413 1268 1524 1426 1265 1521 1411 1269 1525 1427 1265 1521 1411 1268 1524 1426 1264 1520 1410 1267 1523 1413 1265 1521 1411 1269 1525 1427 1266 1522 1412 1265 1521 1411 1270 1526 1428 1271 1527 1430 1268 1524 1426 1272 1528 1431 1268 1524 1426 1271 1527 1430 1267 1523 1413 1270 1526 1428 1268 1524 1426 1272 1528 1431 1269 1525 1427 1268 1524 1426 1273 1529 1432 1274 1530 1433 1271 1527 1430 1275 1531 1434 1271 1527 1430 1274 1530 1433 1270 1526 1428 1273 1529 1432 1271 1527 1430 1275 1531 1434 1272 1528 1431 1271 1527 1430 1276 1532 1435 1277 1533 1436 1274 1530 1433 1278 1534 1437 1274 1530 1433 1277 1533 1436 1273 1529 1432 1276 1532 1435 1274 1530 1433 1278 1534 1437 1275 1531 1434 1274 1530 1433 1279 1535 1438 1280 1536 1439 1277 1533 1436 1281 1537 1440 1277 1533 1436 1280 1536 1439 1276 1532 1435 1279 1535 1438 1277 1533 1436 1281 1537 1440 1278 1534 1437 1277 1533 1436 1282 1538 1441 1283 1539 1442 1280 1536 1439 1284 1540 1443 1280 1536 1439 1283 1539 1442 1279 1535 1438 1282 1538 1441 1280 1536 1439 1284 1540 1443 1281 1537 1440 1280 1536 1439 1285 1541 1444 1286 1542 1445 1283 1539 1442 1287 1543 1446 1283 1539 1442 1286 1542 1445 1282 1538 1441 1285 1541 1444 1283 1539 1442 1287 1543 1446 1284 1540 1443 1283 1539 1442 1288 1544 1447 1289 1545 1448 1286 1542 1445 1290 1546 1449 1286 1542 1445 1289 1545 1448 1285 1541 1444 1288 1544 1447 1286 1542 1445 1290 1546 1449 1287 1543 1446 1286 1542 1445 1291 1547 1450 1292 1548 1451 1289 1545 1448 1293 1549 1452 1289 1545 1448 1292 1548 1451 1288 1544 1447 1291 1547 1450 1289 1545 1448 1293 1549 1452 1290 1546 1449 1289 1545 1448 1294 1550 1453 1295 1551 1454 1292 1548 1451 1296 1552 1455 1292 1548 1451 1295 1551 1454 1291 1547 1450 1294 1550 1453 1292 1548 1451 1296 1552 1455 1293 1549 1452 1292 1548 1451 1297 1553 1456 1298 1554 1457 1295 1551 1454 1299 1555 1458 1295 1551 1454 1298 1554 1457 1294 1550 1453 1297 1553 1456 1295 1551 1454 1299 1555 1458 1296 1552 1455 1295 1551 1454 1300 1556 1459 1301 1557 1460 1298 1554 1457 1302 1558 1461 1298 1554 1457 1301 1557 1460 1297 1553 1456 1300 1556 1459 1298 1554 1457 1302 1558 1461 1299 1555 1458 1298 1554 1457 1303 1559 1462 1304 1560 1463 1301 1557 1460 1305 1561 1464 1301 1557 1460 1304 1560 1463 1300 1556 1459 1303 1559 1462 1301 1557 1460 1305 1561 1464 1302 1558 1461 1301 1557 1460 1306 1562 1465 1307 1563 1466 1304 1560 1463 1308 1564 1467 1304 1560 1463 1307 1563 1466 1303 1559 1462 1306 1562 1465 1304 1560 1463 1308 1564 1467 1305 1561 1464 1304 1560 1463 1063 1270 1089 1023 1230 1077 1307 1563 1466 1309 1565 1468 1307 1563 1466 1023 1230 1077 1306 1562 1465 1063 1270 1089 1307 1563 1466 1309 1565 1468 1308 1564 1467 1307 1563 1466 1024 1231 1078 1309 1565 1468 1023 1230 1077 1004 1211 1066 1063 1270 1089 1306 1562 1465 1161 1417 1236 1306 1562 1465 1303 1559 1462 1161 1417 1236 1004 1211 1066 1306 1562 1465 1160 1416 1235 1303 1559 1462 1300 1556 1459 1160 1416 1235 1161 1417 1236 1303 1559 1462 1159 1415 1234 1300 1556 1459 1297 1553 1456 1159 1415 1234 1160 1416 1235 1300 1556 1459 1158 1414 1233 1297 1553 1456 1294 1550 1453 1158 1414 1233 1159 1415 1234 1297 1553 1456 1157 1413 1232 1294 1550 1453 1291 1547 1450 1157 1413 1232 1158 1414 1233 1294 1550 1453 1156 1412 1231 1291 1547 1450 1288 1544 1447 1156 1412 1231 1157 1413 1232 1291 1547 1450 1155 1411 1230 1288 1544 1447 1285 1541 1444 1155 1411 1230 1156 1412 1231 1288 1544 1447 1154 1410 1229 1285 1541 1444 1282 1538 1441 1154 1410 1229 1155 1411 1230 1285 1541 1444 1153 1409 1228 1282 1538 1441 1279 1535 1438 1153 1409 1228 1154 1410 1229 1282 1538 1441 1152 1408 1227 1279 1535 1438 1276 1532 1435 1152 1408 1227 1153 1409 1228 1279 1535 1438 1151 1407 1226 1276 1532 1435 1273 1529 1432 1151 1407 1226 1152 1408 1227 1276 1532 1435 1150 1406 1225 1273 1529 1432 1270 1526 1428 1150 1406 1225 1151 1407 1226 1273 1529 1432 1149 1405 1224 1270 1526 1428 1267 1523 1413 1149 1405 1224 1150 1406 1225 1270 1526 1428 1148 1404 1223 1267 1523 1413 1264 1520 1410 1148 1404 1223 1149 1405 1224 1267 1523 1413 1147 1403 1222 1264 1520 1410 1261 1517 1395 1147 1403 1222 1148 1404 1223 1264 1520 1410 1146 1402 1221 1261 1517 1395 1258 1514 1392 1146 1402 1221 1147 1403 1222 1261 1517 1395 1145 1401 1220 1258 1514 1392 1255 1511 1377 1145 1401 1220 1146 1402 1221 1258 1514 1392 1144 1400 1219 1255 1511 1377 1252 1508 1328 1144 1400 1219 1145 1401 1220 1255 1511 1377 1143 1399 1218 1252 1508 1328 1249 1505 1324 1143 1399 1218 1144 1400 1219 1252 1508 1328 1142 1398 1217 1249 1505 1324 1246 1502 1321 1142 1398 1217 1143 1399 1218 1249 1505 1324 1141 1397 1216 1246 1502 1321 1243 1499 1318 1141 1397 1216 1142 1398 1217 1246 1502 1321 1140 1396 1215 1243 1499 1318 1240 1496 1315 1140 1396 1215 1141 1397 1216 1243 1499 1318 1139 1395 1214 1240 1496 1315 1237 1493 1312 1139 1395 1214 1140 1396 1215 1240 1496 1315 1138 1394 1213 1237 1493 1312 1234 1490 1309 1138 1394 1213 1139 1395 1214 1237 1493 1312 1137 1393 1212 1234 1490 1309 1231 1487 1306 1137 1393 1212 1138 1394 1213 1234 1490 1309 1136 1392 1211 1231 1487 1306 1228 1484 1303 1136 1392 1211 1137 1393 1212 1231 1487 1306 1135 1391 1210 1228 1484 1303 1225 1481 1300 1135 1391 1210 1136 1392 1211 1228 1484 1303 1134 1390 1209 1225 1481 1300 1222 1478 1297 1134 1390 1209 1135 1391 1210 1225 1481 1300 1133 1389 1208 1222 1478 1297 1219 1475 1294 1133 1389 1208 1134 1390 1209 1222 1478 1297 1132 1388 1207 1219 1475 1294 1216 1472 1291 1132 1388 1207 1133 1389 1208 1219 1475 1294 1131 1387 1206 1216 1472 1291 1213 1469 1288 1131 1387 1206 1132 1388 1207 1216 1472 1291 1130 1386 1205 1213 1469 1288 1210 1466 1285 1130 1386 1205 1131 1387 1206 1213 1469 1288 1129 1385 1204 1210 1466 1285 1207 1463 1282 1129 1385 1204 1130 1386 1205 1210 1466 1285 1128 1384 1203 1207 1463 1282 1204 1460 1279 1128 1384 1203 1129 1385 1204 1207 1463 1282 1127 1383 1202 1204 1460 1279 1201 1457 1276 1127 1383 1202 1128 1384 1203 1204 1460 1279 1126 1382 1201 1201 1457 1276 1198 1454 1273 1126 1382 1201 1127 1383 1202 1201 1457 1276 1125 1381 1200 1198 1454 1273 1195 1451 1270 1125 1381 1200 1126 1382 1201 1198 1454 1273 1124 1380 1199 1195 1451 1270 1192 1448 1267 1124 1380 1199 1125 1381 1200 1195 1451 1270 1123 1379 1198 1192 1448 1267 1189 1445 1264 1123 1379 1198 1124 1380 1199 1192 1448 1267 1122 1378 1197 1189 1445 1264 1186 1442 1261 1122 1378 1197 1123 1379 1198 1189 1445 1264 1121 1377 1196 1186 1442 1261 1183 1439 1258 1121 1377 1196 1122 1378 1197 1186 1442 1261 1120 1376 1195 1183 1439 1258 1180 1436 1255 1120 1376 1195 1121 1377 1196 1183 1439 1258 1119 1375 1194 1180 1436 1255 1177 1433 1252 1119 1375 1194 1120 1376 1195 1180 1436 1255 1118 1374 1193 1177 1433 1252 1174 1430 1249 1118 1374 1193 1119 1375 1194 1177 1433 1252 1117 1373 1192 1174 1430 1249 1171 1427 1246 1117 1373 1192 1118 1374 1193 1174 1430 1249 1116 1372 1191 1171 1427 1246 1168 1424 1243 1116 1372 1191 1117 1373 1192 1171 1427 1246 1115 1371 1190 1168 1424 1243 1165 1421 1240 1115 1371 1190 1116 1372 1191 1168 1424 1243 1114 1370 1189 1165 1421 1240 1162 1418 1237 1114 1370 1189 1115 1371 1190 1165 1421 1240 1113 1369 1188 1162 1418 1237 709 830 1019 1113 1369 1188 1114 1370 1189 1162 1418 1237 716 837 1024 1113 1369 1188 709 830 1019 1310 1566 1469 1311 1567 1470 1312 1568 1471 1313 1569 1472 1312 1568 1471 1311 1567 1470 1314 1570 1473 1310 1566 1469 1312 1568 1471 1313 1569 1472 1315 1571 1474 1312 1568 1471 1316 1572 1475 1312 1568 1471 1315 1571 1474 1316 1572 1475 1314 1570 1473 1312 1568 1471 1310 1566 1469 1317 1573 1476 1311 1567 1470 1318 1574 1477 1311 1567 1470 1317 1573 1476 1319 1575 1478 1311 1567 1470 1318 1574 1477 1319 1575 1478 1313 1569 1472 1311 1567 1470 1320 1576 1479 1321 1577 1480 1317 1573 1476 1322 1578 1481 1317 1573 1476 1321 1577 1480 1310 1566 1469 1320 1576 1479 1317 1573 1476 1322 1578 1481 1318 1574 1477 1317 1573 1476 1323 1579 1482 1324 1580 1483 1321 1577 1480 1325 1581 1484 1321 1577 1480 1324 1580 1483 1320 1576 1479 1323 1579 1482 1321 1577 1480 1322 1578 1481 1321 1577 1480 1325 1581 1484 1326 1582 1420 1327 1583 1421 1324 1580 1422 1328 1584 1423 1324 1580 1422 1327 1583 1421 1329 1585 1485 1326 1582 1486 1324 1580 1483 1323 1579 1482 1329 1585 1485 1324 1580 1483 1325 1581 1484 1324 1580 1483 1328 1584 1487 1330 1586 1424 1331 1587 1425 1327 1583 1421 1332 1588 1900 1327 1583 1421 1331 1587 1425 1326 1582 1420 1330 1586 1424 1327 1583 1421 1328 1584 1423 1327 1583 1421 1332 1588 1900 1333 1589 1921 1334 1590 2098 1331 1587 1425 1335 1591 2103 1331 1587 1425 1334 1590 2098 1330 1586 1424 1333 1589 1921 1331 1587 1425 1332 1588 1900 1331 1587 1425 1335 1591 2103 1336 1592 2106 1337 1593 2109 1334 1590 2098 1338 1594 2206 1334 1590 2098 1337 1593 2109 1339 1595 2236 1336 1592 2106 1334 1590 2098 1333 1589 1921 1339 1595 2236 1334 1590 2098 1335 1591 2103 1334 1590 2098 1338 1594 2206 1340 1596 2307 1341 1597 2505 1337 1593 2109 1342 1598 2774 1337 1593 2109 1341 1597 2505 1336 1592 2106 1340 1596 2307 1337 1593 2109 1338 1594 2206 1337 1593 2109 1342 1598 2774 1343 1599 2834 1344 1600 2899 1341 1597 2505 1345 1601 2903 1341 1597 2505 1344 1600 2899 1340 1596 2307 1343 1599 2834 1341 1597 2505 1342 1598 2774 1341 1597 2505 1345 1601 2903 1346 1602 2909 1347 1603 3324 1344 1600 2899 1348 1604 3328 1344 1600 2899 1347 1603 3324 1343 1599 2834 1346 1602 2909 1344 1600 2899 1345 1601 2903 1344 1600 2899 1348 1604 3328 1349 1605 3331 1350 1606 3344 1347 1603 3324 1351 1607 3346 1347 1603 3324 1350 1606 3344 1352 1608 1920 1349 1605 1922 1347 1603 1923 1346 1602 2909 1352 1608 3348 1347 1603 3324 1348 1604 3328 1347 1603 3324 1351 1607 3346 1353 1609 1924 1354 1610 1925 1350 1606 1926 1355 1611 1929 1350 1606 1926 1354 1610 1925 1349 1605 1922 1353 1609 1924 1350 1606 1926 1351 1607 3346 1350 1606 3344 1355 1611 3352 1356 1612 1930 1357 1613 1931 1354 1610 1925 1358 1614 1932 1354 1610 1925 1357 1613 1931 1353 1609 1924 1356 1612 1930 1354 1610 1925 1355 1611 1929 1354 1610 1925 1358 1614 1932 1359 1615 1933 1360 1616 1934 1357 1613 1931 1361 1617 1935 1357 1613 1931 1360 1616 1934 1362 1618 1936 1359 1615 1933 1357 1613 1931 1356 1612 1930 1362 1618 1936 1357 1613 1931 1358 1614 1932 1357 1613 1931 1361 1617 1935 1363 1619 1937 1360 1616 1934 1359 1615 1933 1361 1617 1935 1360 1616 1934 1364 1620 1938 1365 1621 1939 1364 1620 1938 1360 1616 1934 1365 1621 1939 1360 1616 1934 1363 1619 1937 1366 1622 1940 1359 1615 1933 1362 1618 1936 1367 1623 1941 1363 1619 1937 1359 1615 1933 1367 1623 1941 1359 1615 1933 1366 1622 1940 1368 1624 1942 1362 1618 1936 1356 1612 1930 1368 1624 1942 1366 1622 1940 1362 1618 1936 1368 1624 1942 1356 1612 1930 1353 1609 1924 1369 1625 1943 1353 1609 1924 1349 1605 1922 1369 1625 1943 1368 1624 1942 1353 1609 1924 1370 1626 1944 1349 1605 1922 1352 1608 1920 1370 1626 1944 1369 1625 1943 1349 1605 1922 1370 1626 3359 1352 1608 3348 1346 1602 2909 1371 1627 3363 1346 1602 2909 1343 1599 2834 1371 1627 3363 1370 1626 3359 1346 1602 2909 1372 1628 3378 1343 1599 2834 1340 1596 2307 1372 1628 3378 1371 1627 3363 1343 1599 2834 1372 1628 3378 1340 1596 2307 1336 1592 2106 1373 1629 3379 1336 1592 2106 1339 1595 2236 1373 1629 3379 1372 1628 3378 1336 1592 2106 1374 1630 3384 1339 1595 2236 1333 1589 1921 1374 1630 3384 1373 1629 3379 1339 1595 2236 1374 1630 3384 1333 1589 1921 1330 1586 1424 1375 1631 3392 1330 1586 1424 1326 1582 1420 1375 1631 3392 1374 1630 3384 1330 1586 1424 1376 1632 1488 1326 1582 1486 1329 1585 1485 1376 1632 3393 1375 1631 3392 1326 1582 1420 1376 1632 1488 1329 1585 1485 1323 1579 1482 1377 1633 1489 1323 1579 1482 1320 1576 1479 1377 1633 1489 1376 1632 1488 1323 1579 1482 1314 1570 1473 1320 1576 1479 1310 1566 1469 1314 1570 1473 1377 1633 1489 1320 1576 1479 1378 1634 1945 663 784 727 668 789 739 1379 1635 1946 663 784 727 1378 1634 1945 1379 1635 1946 666 787 732 663 784 727 1380 1636 1947 668 789 739 671 792 742 1380 1636 1947 1378 1634 1945 668 789 739 1381 1637 1948 671 792 742 674 795 745 1381 1637 1948 1380 1636 1947 671 792 742 1382 1638 3394 674 795 1343 678 799 1341 1382 1638 1949 1381 1637 1948 674 795 745 1383 1639 3395 678 799 1341 681 802 1346 1383 1639 3395 1382 1638 3394 678 799 1341 1384 1640 3509 681 802 1346 684 805 1371 1384 1640 3509 1383 1639 3395 681 802 1346 1385 1641 3511 684 805 1371 688 809 1375 1385 1641 3511 1384 1640 3509 684 805 1371 1386 1642 3514 688 809 1375 691 812 1385 1386 1642 3514 1385 1641 3511 688 809 1375 1387 1643 3516 691 812 1385 693 814 1387 1387 1643 3516 1386 1642 3514 691 812 1385 1388 1644 3519 693 814 1387 696 817 1402 1388 1644 3519 1387 1643 3516 693 814 1387 1389 1645 3522 696 817 1402 701 822 1404 1389 1645 3522 1388 1644 3519 696 817 1402 1390 1646 1490 701 822 1003 703 824 1005 1390 1646 3526 1389 1645 3522 701 822 1404 1391 1647 1491 703 824 1005 706 827 1008 1391 1647 1491 1390 1646 1490 703 824 1005 1392 1648 1492 706 827 1008 711 832 1021 1392 1648 1492 1391 1647 1491 706 827 1008 1392 1648 1492 711 832 1021 1393 1649 1493 1164 1420 1239 1393 1649 1493 711 832 1021 1394 1650 1494 1392 1648 1492 1393 1649 1493 1394 1650 1494 1393 1649 1493 1395 1651 1495 1396 1652 1496 1395 1651 1495 1393 1649 1493 1396 1652 1496 1393 1649 1493 1164 1420 1239 1397 1653 1950 1378 1634 1945 1380 1636 1947 1398 1654 1951 1378 1634 1945 1397 1653 1950 1398 1654 1951 1379 1635 1946 1378 1634 1945 1399 1655 1952 1380 1636 1947 1381 1637 1948 1399 1655 1952 1397 1653 1950 1380 1636 1947 1400 1656 1953 1381 1637 1948 1382 1638 1949 1400 1656 1953 1399 1655 1952 1381 1637 1948 1401 1657 3538 1382 1638 3394 1383 1639 3395 1401 1657 1954 1400 1656 1953 1382 1638 1949 1402 1658 3578 1383 1639 3395 1384 1640 3509 1402 1658 3578 1401 1657 3538 1383 1639 3395 1403 1659 3591 1384 1640 3509 1385 1641 3511 1403 1659 3591 1402 1658 3578 1384 1640 3509 1404 1660 3614 1385 1641 3511 1386 1642 3514 1404 1660 3614 1403 1659 3591 1385 1641 3511 1405 1661 3628 1386 1642 3514 1387 1643 3516 1405 1661 3628 1404 1660 3614 1386 1642 3514 1406 1662 3630 1387 1643 3516 1388 1644 3519 1406 1662 3630 1405 1661 3628 1387 1643 3516 1407 1663 3910 1388 1644 3519 1389 1645 3522 1407 1663 3910 1406 1662 3630 1388 1644 3519 1408 1664 3911 1389 1645 3522 1390 1646 3526 1408 1664 3911 1407 1663 3910 1389 1645 3522 1409 1665 1497 1390 1646 1490 1391 1647 1491 1409 1665 3912 1408 1664 3911 1390 1646 3526 1410 1666 1498 1391 1647 1491 1392 1648 1492 1410 1666 1498 1409 1665 1497 1391 1647 1491 1394 1650 1494 1410 1666 1498 1392 1648 1492 1411 1667 1499 1394 1650 1494 1395 1651 1495 1411 1667 1499 1395 1651 1495 1412 1668 1500 1413 1669 1501 1412 1668 1500 1395 1651 1495 1413 1669 1501 1395 1651 1495 1396 1652 1496 1414 1670 1955 1397 1653 1950 1399 1655 1952 1415 1671 1956 1397 1653 1950 1414 1670 1955 1398 1654 1951 1397 1653 1950 1415 1671 1956 1416 1672 1957 1399 1655 1952 1400 1656 1953 1416 1672 1957 1414 1670 1955 1399 1655 1952 1417 1673 1958 1400 1656 1953 1401 1657 1954 1417 1673 1958 1416 1672 1957 1400 1656 1953 1418 1674 3913 1401 1657 3538 1402 1658 3578 1418 1674 1959 1417 1673 1958 1401 1657 1954 1419 1675 3914 1402 1658 3578 1403 1659 3591 1419 1675 3914 1418 1674 3913 1402 1658 3578 1420 1676 3915 1403 1659 3591 1404 1660 3614 1420 1676 3915 1419 1675 3914 1403 1659 3591 1421 1677 3916 1404 1660 3614 1405 1661 3628 1421 1677 3916 1420 1676 3915 1404 1660 3614 1422 1678 3917 1405 1661 3628 1406 1662 3630 1422 1678 3917 1421 1677 3916 1405 1661 3628 1423 1679 3918 1406 1662 3630 1407 1663 3910 1423 1679 3918 1422 1678 3917 1406 1662 3630 1424 1680 3919 1407 1663 3910 1408 1664 3911 1424 1680 3919 1423 1679 3918 1407 1663 3910 1425 1681 3920 1408 1664 3911 1409 1665 3912 1425 1681 3920 1424 1680 3919 1408 1664 3911 1426 1682 1502 1409 1665 1497 1410 1666 1498 1426 1682 3921 1425 1681 3920 1409 1665 3912 1427 1683 1503 1410 1666 1498 1394 1650 1494 1427 1683 1503 1426 1682 1502 1410 1666 1498 1411 1667 1499 1427 1683 1503 1394 1650 1494 1322 1578 1481 1411 1667 1499 1412 1668 1500 1322 1578 1481 1412 1668 1500 1318 1574 1477 1428 1684 1504 1318 1574 1477 1412 1668 1500 1428 1684 1504 1412 1668 1500 1413 1669 1501 1364 1620 1938 1414 1670 1955 1416 1672 1957 1429 1685 1960 1414 1670 1955 1364 1620 1938 1415 1671 1956 1414 1670 1955 1429 1685 1960 1361 1617 1935 1416 1672 1957 1417 1673 1958 1361 1617 1935 1364 1620 1938 1416 1672 1957 1358 1614 1932 1417 1673 1958 1418 1674 1959 1358 1614 1932 1361 1617 1935 1417 1673 1958 1355 1611 3352 1418 1674 3913 1419 1675 3914 1355 1611 1929 1358 1614 1932 1418 1674 1959 1351 1607 3346 1419 1675 3914 1420 1676 3915 1351 1607 3346 1355 1611 3352 1419 1675 3914 1348 1604 3328 1420 1676 3915 1421 1677 3916 1348 1604 3328 1351 1607 3346 1420 1676 3915 1345 1601 2903 1421 1677 3916 1422 1678 3917 1345 1601 2903 1348 1604 3328 1421 1677 3916 1342 1598 2774 1422 1678 3917 1423 1679 3918 1342 1598 2774 1345 1601 2903 1422 1678 3917 1338 1594 2206 1423 1679 3918 1424 1680 3919 1338 1594 2206 1342 1598 2774 1423 1679 3918 1335 1591 2103 1424 1680 3919 1425 1681 3920 1335 1591 2103 1338 1594 2206 1424 1680 3919 1332 1588 1900 1425 1681 3920 1426 1682 3921 1332 1588 1900 1335 1591 2103 1425 1681 3920 1328 1584 1487 1426 1682 1502 1427 1683 1503 1328 1584 1423 1332 1588 1900 1426 1682 3921 1325 1581 1484 1427 1683 1503 1411 1667 1499 1325 1581 1484 1328 1584 1487 1427 1683 1503 1322 1578 1481 1325 1581 1484 1411 1667 1499 1319 1575 1478 1318 1574 1477 1428 1684 1504 1429 1685 1960 1364 1620 1938 1365 1621 1939 1430 1686 1505 1431 1687 1506 1315 1571 1474 1432 1688 1507 1315 1571 1474 1431 1687 1506 1313 1569 1472 1430 1686 1505 1315 1571 1474 1433 1689 1508 1316 1572 1475 1315 1571 1474 1432 1688 1507 1433 1689 1508 1315 1571 1474 1434 1690 1509 1435 1691 1510 1431 1687 1506 1436 1692 1511 1431 1687 1506 1435 1691 1510 1430 1686 1505 1434 1690 1509 1431 1687 1506 1436 1692 1511 1432 1688 1507 1431 1687 1506 1437 1693 1512 1438 1694 1513 1435 1691 1510 1439 1695 1514 1435 1691 1510 1438 1694 1513 1434 1690 1509 1437 1693 1512 1435 1691 1510 1439 1695 1514 1436 1692 1511 1435 1691 1510 1440 1696 1515 1441 1697 1516 1438 1694 1513 1442 1698 1517 1438 1694 1513 1441 1697 1516 1437 1693 1512 1440 1696 1515 1438 1694 1513 1442 1698 1517 1439 1695 1514 1438 1694 1513 1443 1699 1518 1444 1700 1519 1441 1697 1516 1445 1701 1520 1441 1697 1516 1444 1700 1519 1440 1696 1515 1443 1699 1518 1441 1697 1516 1445 1701 1520 1442 1698 1517 1441 1697 1516 1446 1702 1521 1447 1703 1522 1444 1700 1519 1448 1704 1523 1444 1700 1519 1447 1703 1522 1443 1699 1518 1446 1702 1521 1444 1700 1519 1448 1704 1523 1445 1701 1520 1444 1700 1519 1449 1705 1524 1450 1706 1525 1447 1703 1522 1451 1707 1526 1447 1703 1522 1450 1706 1525 1446 1702 1521 1449 1705 1524 1447 1703 1522 1451 1707 1526 1448 1704 1523 1447 1703 1522 1452 1708 1527 1453 1709 1528 1450 1706 1525 1454 1710 1529 1450 1706 1525 1453 1709 1528 1449 1705 1524 1452 1708 1527 1450 1706 1525 1454 1710 1529 1451 1707 1526 1450 1706 1525 1455 1711 1530 1456 1712 1531 1453 1709 1528 1457 1713 1532 1453 1709 1528 1456 1712 1531 1452 1708 1527 1455 1711 1530 1453 1709 1528 1457 1713 1532 1454 1710 1529 1453 1709 1528 1458 1714 1533 1459 1715 1534 1456 1712 1531 1460 1716 1535 1456 1712 1531 1459 1715 1534 1455 1711 1530 1458 1714 1533 1456 1712 1531 1460 1716 1535 1457 1713 1532 1456 1712 1531 1461 1717 1536 1462 1718 1537 1459 1715 1534 1463 1719 1538 1459 1715 1534 1462 1718 1537 1458 1714 1533 1461 1717 1536 1459 1715 1534 1463 1719 1538 1460 1716 1535 1459 1715 1534 1464 1720 1539 1465 1721 1540 1462 1718 1537 1466 1722 1541 1462 1718 1537 1465 1721 1540 1461 1717 1536 1464 1720 1539 1462 1718 1537 1466 1722 1541 1463 1719 1538 1462 1718 1537 1467 1723 1542 1468 1724 1543 1465 1721 1540 1469 1725 1544 1465 1721 1540 1468 1724 1543 1464 1720 1539 1467 1723 1542 1465 1721 1540 1469 1725 1544 1466 1722 1541 1465 1721 1540 1470 1726 1545 1471 1727 1546 1468 1724 1543 1472 1728 1547 1468 1724 1543 1471 1727 1546 1467 1723 1542 1470 1726 1545 1468 1724 1543 1472 1728 1547 1469 1725 1544 1468 1724 1543 1473 1729 1548 1474 1730 1549 1471 1727 1546 1475 1731 1550 1471 1727 1546 1474 1730 1549 1470 1726 1545 1473 1729 1548 1471 1727 1546 1475 1731 1550 1472 1728 1547 1471 1727 1546 1476 1732 1551 1477 1733 1552 1474 1730 1549 1478 1734 1553 1474 1730 1549 1477 1733 1552 1473 1729 1548 1476 1732 1551 1474 1730 1549 1478 1734 1553 1475 1731 1550 1474 1730 1549 1479 1735 1554 1480 1736 1555 1477 1733 1552 1481 1737 1556 1477 1733 1552 1480 1736 1555 1476 1732 1551 1479 1735 1554 1477 1733 1552 1481 1737 1556 1478 1734 1553 1477 1733 1552 1482 1738 1557 1483 1739 1558 1480 1736 1555 1484 1740 1559 1480 1736 1555 1483 1739 1558 1479 1735 1554 1482 1738 1557 1480 1736 1555 1484 1740 1559 1481 1737 1556 1480 1736 1555 1485 1741 1560 1486 1742 1561 1483 1739 1558 1487 1743 1562 1483 1739 1558 1486 1742 1561 1482 1738 1557 1485 1741 1560 1483 1739 1558 1487 1743 1562 1484 1740 1559 1483 1739 1558 1488 1744 1563 1489 1745 1564 1486 1742 1561 1490 1746 1565 1486 1742 1561 1489 1745 1564 1485 1741 1560 1488 1744 1563 1486 1742 1561 1490 1746 1565 1487 1743 1562 1486 1742 1561 1491 1747 1566 1492 1748 1567 1489 1745 1564 1493 1749 1568 1489 1745 1564 1492 1748 1567 1488 1744 1563 1491 1747 1566 1489 1745 1564 1493 1749 1568 1490 1746 1565 1489 1745 1564 1494 1750 1569 1495 1751 1570 1492 1748 1567 1496 1752 1571 1492 1748 1567 1495 1751 1570 1491 1747 1566 1494 1750 1569 1492 1748 1567 1496 1752 1571 1493 1749 1568 1492 1748 1567 1497 1753 1572 1498 1754 1573 1495 1751 1570 1499 1755 1574 1495 1751 1570 1498 1754 1573 1494 1750 1569 1497 1753 1572 1495 1751 1570 1499 1755 1574 1496 1752 1571 1495 1751 1570 1500 1756 1575 1501 1757 1576 1498 1754 1573 1502 1758 1577 1498 1754 1573 1501 1757 1576 1497 1753 1572 1500 1756 1575 1498 1754 1573 1502 1758 1577 1499 1755 1574 1498 1754 1573 1503 1759 1578 1504 1760 1579 1501 1757 1576 1505 1761 1580 1501 1757 1576 1504 1760 1579 1500 1756 1575 1503 1759 1578 1501 1757 1576 1505 1761 1580 1502 1758 1577 1501 1757 1576 1506 1762 1581 1507 1763 1582 1504 1760 1579 1508 1764 1583 1504 1760 1579 1507 1763 1582 1503 1759 1578 1506 1762 1581 1504 1760 1579 1508 1764 1583 1505 1761 1580 1504 1760 1579 1509 1765 1584 1510 1766 1585 1507 1763 1582 1511 1767 1586 1507 1763 1582 1510 1766 1585 1506 1762 1581 1509 1765 1584 1507 1763 1582 1511 1767 1586 1508 1764 1583 1507 1763 1582 1512 1768 1587 1513 1769 1588 1510 1766 1585 1514 1770 1589 1510 1766 1585 1513 1769 1588 1509 1765 1584 1512 1768 1587 1510 1766 1585 1514 1770 1589 1511 1767 1586 1510 1766 1585 1515 1771 1590 1516 1772 1591 1513 1769 1588 1517 1773 1592 1513 1769 1588 1516 1772 1591 1512 1768 1587 1515 1771 1590 1513 1769 1588 1517 1773 1592 1514 1770 1589 1513 1769 1588 1518 1774 1593 1519 1775 1594 1516 1772 1591 1520 1776 1595 1516 1772 1591 1519 1775 1594 1515 1771 1590 1518 1774 1593 1516 1772 1591 1520 1776 1595 1517 1773 1592 1516 1772 1591 1521 1777 1596 1522 1778 1597 1519 1775 1594 1523 1779 1598 1519 1775 1594 1522 1778 1597 1518 1774 1593 1521 1777 1596 1519 1775 1594 1523 1779 1598 1520 1776 1595 1519 1775 1594 1524 1780 1599 1525 1781 1600 1522 1778 1597 1526 1782 1601 1522 1778 1597 1525 1781 1600 1521 1777 1596 1524 1780 1599 1522 1778 1597 1526 1782 1601 1523 1779 1598 1522 1778 1597 1527 1783 1602 1528 1784 1603 1525 1781 1600 1529 1785 1604 1525 1781 1600 1528 1784 1603 1524 1780 1599 1527 1783 1602 1525 1781 1600 1529 1785 1604 1526 1782 1601 1525 1781 1600 1530 1786 1605 1531 1787 1606 1528 1784 1603 1532 1788 1607 1528 1784 1603 1531 1787 1606 1527 1783 1602 1530 1786 1605 1528 1784 1603 1532 1788 1607 1529 1785 1604 1528 1784 1603 1533 1789 1608 1534 1790 1609 1531 1787 1606 1535 1791 1610 1531 1787 1606 1534 1790 1609 1530 1786 1605 1533 1789 1608 1531 1787 1606 1535 1791 1610 1532 1788 1607 1531 1787 1606 1536 1792 1611 1537 1793 1612 1534 1790 1609 1538 1794 1613 1534 1790 1609 1537 1793 1612 1533 1789 1608 1536 1792 1611 1534 1790 1609 1538 1794 1613 1535 1791 1610 1534 1790 1609 1539 1795 1614 1540 1796 1615 1537 1793 1612 1541 1797 1616 1537 1793 1612 1540 1796 1615 1536 1792 1611 1539 1795 1614 1537 1793 1612 1541 1797 1616 1538 1794 1613 1537 1793 1612 1542 1798 1617 1543 1799 1618 1540 1796 1615 1544 1800 1619 1540 1796 1615 1543 1799 1618 1539 1795 1614 1542 1798 1617 1540 1796 1615 1544 1800 1619 1541 1797 1616 1540 1796 1615 1545 1801 1620 1546 1802 1621 1543 1799 1618 1547 1803 1622 1543 1799 1618 1546 1802 1621 1542 1798 1617 1545 1801 1620 1543 1799 1618 1547 1803 1622 1544 1800 1619 1543 1799 1618 1548 1804 1623 1549 1805 1624 1546 1802 1621 1550 1806 1625 1546 1802 1621 1549 1805 1624 1545 1801 1620 1548 1804 1623 1546 1802 1621 1550 1806 1625 1547 1803 1622 1546 1802 1621 1551 1807 1626 1552 1808 1627 1549 1805 1624 1553 1809 1628 1549 1805 1624 1552 1808 1627 1548 1804 1623 1551 1807 1626 1549 1805 1624 1553 1809 1628 1550 1806 1625 1549 1805 1624 1554 1810 1629 1555 1811 1630 1552 1808 1627 1556 1812 1631 1552 1808 1627 1555 1811 1630 1551 1807 1626 1554 1810 1629 1552 1808 1627 1556 1812 1631 1553 1809 1628 1552 1808 1627 1557 1813 1632 1558 1814 1633 1555 1811 1630 1559 1815 1634 1555 1811 1630 1558 1814 1633 1554 1810 1629 1557 1813 1632 1555 1811 1630 1559 1815 1634 1556 1812 1631 1555 1811 1630 1560 1816 1635 1561 1817 1636 1558 1814 1633 1562 1818 1637 1558 1814 1633 1561 1817 1636 1557 1813 1632 1560 1816 1635 1558 1814 1633 1562 1818 1637 1559 1815 1634 1558 1814 1633 1563 1819 1638 1564 1820 1639 1561 1817 1636 1565 1821 1640 1561 1817 1636 1564 1820 1639 1560 1816 1635 1563 1819 1638 1561 1817 1636 1565 1821 1640 1562 1818 1637 1561 1817 1636 1566 1822 1641 1567 1823 1642 1564 1820 1639 1568 1824 1643 1564 1820 1639 1567 1823 1642 1563 1819 1638 1566 1822 1641 1564 1820 1639 1568 1824 1643 1565 1821 1640 1564 1820 1639 1569 1825 1644 1570 1826 1645 1567 1823 1642 1571 1827 1646 1567 1823 1642 1570 1826 1645 1566 1822 1641 1569 1825 1644 1567 1823 1642 1571 1827 1646 1568 1824 1643 1567 1823 1642 1572 1828 1647 1573 1829 1648 1570 1826 1645 1574 1830 1649 1570 1826 1645 1573 1829 1648 1569 1825 1644 1572 1828 1647 1570 1826 1645 1574 1830 1649 1571 1827 1646 1570 1826 1645 1575 1831 1650 1576 1832 1651 1573 1829 1648 1577 1833 1652 1573 1829 1648 1576 1832 1651 1572 1828 1647 1575 1831 1650 1573 1829 1648 1577 1833 1652 1574 1830 1649 1573 1829 1648 1578 1834 1653 1579 1835 1654 1576 1832 1651 1580 1836 1655 1576 1832 1651 1579 1835 1654 1575 1831 1650 1578 1834 1653 1576 1832 1651 1580 1836 1655 1577 1833 1652 1576 1832 1651 1581 1837 1656 1582 1838 1657 1579 1835 1654 1583 1839 1658 1579 1835 1654 1582 1838 1657 1578 1834 1653 1581 1837 1656 1579 1835 1654 1583 1839 1658 1580 1836 1655 1579 1835 1654 1584 1840 1659 1582 1838 1657 1581 1837 1656 1585 1841 1660 1582 1838 1657 1584 1840 1659 1586 1842 1661 1582 1838 1657 1585 1841 1660 1586 1842 1661 1583 1839 1658 1582 1838 1657 1587 1843 1662 1581 1837 1656 1578 1834 1653 1588 1844 1663 1581 1837 1656 1587 1843 1662 1588 1844 1663 1584 1840 1659 1581 1837 1656 1589 1845 1664 1578 1834 1653 1575 1831 1650 1589 1845 1664 1587 1843 1662 1578 1834 1653 1590 1846 1665 1575 1831 1650 1572 1828 1647 1589 1845 1664 1575 1831 1650 1590 1846 1665 1591 1847 1666 1572 1828 1647 1569 1825 1644 1590 1846 1665 1572 1828 1647 1591 1847 1666 1592 1848 1667 1569 1825 1644 1566 1822 1641 1591 1847 1666 1569 1825 1644 1592 1848 1667 1593 1849 1668 1566 1822 1641 1563 1819 1638 1592 1848 1667 1566 1822 1641 1593 1849 1668 1594 1850 1669 1563 1819 1638 1560 1816 1635 1593 1849 1668 1563 1819 1638 1594 1850 1669 1595 1851 1670 1560 1816 1635 1557 1813 1632 1594 1850 1669 1560 1816 1635 1595 1851 1670 1596 1852 1671 1557 1813 1632 1554 1810 1629 1595 1851 1670 1557 1813 1632 1596 1852 1671 1597 1853 1672 1554 1810 1629 1551 1807 1626 1596 1852 1671 1554 1810 1629 1597 1853 1672 1598 1854 1673 1551 1807 1626 1548 1804 1623 1597 1853 1672 1551 1807 1626 1598 1854 1673 1599 1855 1674 1548 1804 1623 1545 1801 1620 1598 1854 1673 1548 1804 1623 1599 1855 1674 1600 1856 1675 1545 1801 1620 1542 1798 1617 1599 1855 1674 1545 1801 1620 1600 1856 1675 1601 1857 1676 1542 1798 1617 1539 1795 1614 1600 1856 1675 1542 1798 1617 1601 1857 1676 1602 1858 1677 1539 1795 1614 1536 1792 1611 1601 1857 1676 1539 1795 1614 1602 1858 1677 1603 1859 1678 1536 1792 1611 1533 1789 1608 1602 1858 1677 1536 1792 1611 1603 1859 1678 1604 1860 1679 1533 1789 1608 1530 1786 1605 1603 1859 1678 1533 1789 1608 1604 1860 1679 1605 1861 1680 1530 1786 1605 1527 1783 1602 1604 1860 1679 1530 1786 1605 1605 1861 1680 1606 1862 1681 1527 1783 1602 1524 1780 1599 1605 1861 1680 1527 1783 1602 1606 1862 1681 1607 1863 1682 1524 1780 1599 1521 1777 1596 1606 1862 1681 1524 1780 1599 1607 1863 1682 1608 1864 1683 1521 1777 1596 1518 1774 1593 1607 1863 1682 1521 1777 1596 1608 1864 1683 1609 1865 1684 1518 1774 1593 1515 1771 1590 1608 1864 1683 1518 1774 1593 1609 1865 1684 1610 1866 1685 1515 1771 1590 1512 1768 1587 1609 1865 1684 1515 1771 1590 1610 1866 1685 1611 1867 1686 1512 1768 1587 1509 1765 1584 1610 1866 1685 1512 1768 1587 1611 1867 1686 1612 1868 1687 1509 1765 1584 1506 1762 1581 1611 1867 1686 1509 1765 1584 1612 1868 1687 1613 1869 1688 1506 1762 1581 1503 1759 1578 1612 1868 1687 1506 1762 1581 1613 1869 1688 1614 1870 1689 1503 1759 1578 1500 1756 1575 1613 1869 1688 1503 1759 1578 1614 1870 1689 1615 1871 1690 1500 1756 1575 1497 1753 1572 1614 1870 1689 1500 1756 1575 1615 1871 1690 1616 1872 1691 1497 1753 1572 1494 1750 1569 1615 1871 1690 1497 1753 1572 1616 1872 1691 1617 1873 1692 1494 1750 1569 1491 1747 1566 1616 1872 1691 1494 1750 1569 1617 1873 1692 1618 1874 1693 1491 1747 1566 1488 1744 1563 1617 1873 1692 1491 1747 1566 1618 1874 1693 1619 1875 1694 1488 1744 1563 1485 1741 1560 1618 1874 1693 1488 1744 1563 1619 1875 1694 1620 1876 1695 1485 1741 1560 1482 1738 1557 1619 1875 1694 1485 1741 1560 1620 1876 1695 1621 1877 1696 1482 1738 1557 1479 1735 1554 1620 1876 1695 1482 1738 1557 1621 1877 1696 1622 1878 1697 1479 1735 1554 1476 1732 1551 1621 1877 1696 1479 1735 1554 1622 1878 1697 1623 1879 1698 1476 1732 1551 1473 1729 1548 1622 1878 1697 1476 1732 1551 1623 1879 1698 1624 1880 1699 1473 1729 1548 1470 1726 1545 1623 1879 1698 1473 1729 1548 1624 1880 1699 1625 1881 1700 1470 1726 1545 1467 1723 1542 1624 1880 1699 1470 1726 1545 1625 1881 1700 1626 1882 1701 1467 1723 1542 1464 1720 1539 1625 1881 1700 1467 1723 1542 1626 1882 1701 1627 1883 1702 1464 1720 1539 1461 1717 1536 1626 1882 1701 1464 1720 1539 1627 1883 1702 1628 1884 1703 1461 1717 1536 1458 1714 1533 1627 1883 1702 1461 1717 1536 1628 1884 1703 1629 1885 1704 1458 1714 1533 1455 1711 1530 1628 1884 1703 1458 1714 1533 1629 1885 1704 1630 1886 1705 1455 1711 1530 1452 1708 1527 1629 1885 1704 1455 1711 1530 1630 1886 1705 1631 1887 1706 1452 1708 1527 1449 1705 1524 1630 1886 1705 1452 1708 1527 1631 1887 1706 1632 1888 1707 1449 1705 1524 1446 1702 1521 1631 1887 1706 1449 1705 1524 1632 1888 1707 1633 1889 1708 1446 1702 1521 1443 1699 1518 1632 1888 1707 1446 1702 1521 1633 1889 1708 1634 1890 1709 1443 1699 1518 1440 1696 1515 1633 1889 1708 1443 1699 1518 1634 1890 1709 1635 1891 1710 1440 1696 1515 1437 1693 1512 1634 1890 1709 1440 1696 1515 1635 1891 1710 1636 1892 1711 1437 1693 1512 1434 1690 1509 1635 1891 1710 1437 1693 1512 1636 1892 1711 1637 1893 1712 1434 1690 1509 1430 1686 1505 1636 1892 1711 1434 1690 1509 1637 1893 1712 1638 1894 1713 1430 1686 1505 1313 1569 1472 1637 1893 1712 1430 1686 1505 1638 1894 1713 1638 1894 1713 1313 1569 1472 1319 1575 1478 1396 1652 1496 1164 1420 1239 1167 1423 1242 1639 1895 1714 1167 1423 1242 1170 1426 1245 1639 1895 1714 1396 1652 1496 1167 1423 1242 1640 1896 1715 1170 1426 1245 1173 1429 1248 1640 1896 1715 1639 1895 1714 1170 1426 1245 1641 1897 1716 1173 1429 1248 1176 1432 1251 1641 1897 1716 1640 1896 1715 1173 1429 1248 1642 1898 1717 1176 1432 1251 1179 1435 1254 1642 1898 1717 1641 1897 1716 1176 1432 1251 1643 1899 1718 1179 1435 1254 1182 1438 1257 1643 1899 1718 1642 1898 1717 1179 1435 1254 1644 1900 1719 1182 1438 1257 1185 1441 1260 1644 1900 1719 1643 1899 1718 1182 1438 1257 1645 1901 1720 1185 1441 1260 1188 1444 1263 1645 1901 1720 1644 1900 1719 1185 1441 1260 1646 1902 1721 1188 1444 1263 1191 1447 1266 1646 1902 1721 1645 1901 1720 1188 1444 1263 1647 1903 1722 1191 1447 1266 1194 1450 1269 1647 1903 1722 1646 1902 1721 1191 1447 1266 1648 1904 1723 1194 1450 1269 1197 1453 1272 1648 1904 1723 1647 1903 1722 1194 1450 1269 1649 1905 1724 1197 1453 1272 1200 1456 1275 1649 1905 1724 1648 1904 1723 1197 1453 1272 1650 1906 1725 1200 1456 1275 1203 1459 1278 1650 1906 1725 1649 1905 1724 1200 1456 1275 1651 1907 1726 1203 1459 1278 1206 1462 1281 1651 1907 1726 1650 1906 1725 1203 1459 1278 1652 1908 1727 1206 1462 1281 1209 1465 1284 1652 1908 1727 1651 1907 1726 1206 1462 1281 1653 1909 1728 1209 1465 1284 1212 1468 1287 1653 1909 1728 1652 1908 1727 1209 1465 1284 1654 1910 1729 1212 1468 1287 1215 1471 1290 1654 1910 1729 1653 1909 1728 1212 1468 1287 1655 1911 1730 1215 1471 1290 1218 1474 1293 1655 1911 1730 1654 1910 1729 1215 1471 1290 1656 1912 1731 1218 1474 1293 1221 1477 1296 1656 1912 1731 1655 1911 1730 1218 1474 1293 1657 1913 1732 1221 1477 1296 1224 1480 1299 1657 1913 1732 1656 1912 1731 1221 1477 1296 1658 1914 1733 1224 1480 1299 1227 1483 1302 1658 1914 1733 1657 1913 1732 1224 1480 1299 1659 1915 1734 1227 1483 1302 1230 1486 1305 1659 1915 1734 1658 1914 1733 1227 1483 1302 1660 1916 1735 1230 1486 1305 1233 1489 1308 1660 1916 1735 1659 1915 1734 1230 1486 1305 1661 1917 1736 1233 1489 1308 1236 1492 1311 1661 1917 1736 1660 1916 1735 1233 1489 1308 1662 1918 1737 1236 1492 1311 1239 1495 1314 1662 1918 1737 1661 1917 1736 1236 1492 1311 1663 1919 1738 1239 1495 1314 1242 1498 1317 1663 1919 1738 1662 1918 1737 1239 1495 1314 1664 1920 1739 1242 1498 1317 1245 1501 1320 1664 1920 1739 1663 1919 1738 1242 1498 1317 1665 1921 1740 1245 1501 1320 1248 1504 1323 1665 1921 1740 1664 1920 1739 1245 1501 1320 1666 1922 1741 1248 1504 1323 1251 1507 1326 1666 1922 1741 1665 1921 1740 1248 1504 1323 1667 1923 1742 1251 1507 1326 1254 1510 1376 1667 1923 1742 1666 1922 1741 1251 1507 1326 1668 1924 1743 1254 1510 1376 1257 1513 1391 1668 1924 1743 1667 1923 1742 1254 1510 1376 1669 1925 1744 1257 1513 1391 1260 1516 1394 1669 1925 1744 1668 1924 1743 1257 1513 1391 1670 1926 1745 1260 1516 1394 1263 1519 1409 1670 1926 1745 1669 1925 1744 1260 1516 1394 1671 1927 1746 1263 1519 1409 1266 1522 1412 1671 1927 1746 1670 1926 1745 1263 1519 1409 1672 1928 1747 1266 1522 1412 1269 1525 1427 1672 1928 1747 1671 1927 1746 1266 1522 1412 1673 1929 1748 1269 1525 1427 1272 1528 1431 1673 1929 1748 1672 1928 1747 1269 1525 1427 1674 1930 1749 1272 1528 1431 1275 1531 1434 1674 1930 1749 1673 1929 1748 1272 1528 1431 1675 1931 1750 1275 1531 1434 1278 1534 1437 1675 1931 1750 1674 1930 1749 1275 1531 1434 1676 1932 1751 1278 1534 1437 1281 1537 1440 1676 1932 1751 1675 1931 1750 1278 1534 1437 1677 1933 1752 1281 1537 1440 1284 1540 1443 1677 1933 1752 1676 1932 1751 1281 1537 1440 1678 1934 1753 1284 1540 1443 1287 1543 1446 1678 1934 1753 1677 1933 1752 1284 1540 1443 1679 1935 1754 1287 1543 1446 1290 1546 1449 1679 1935 1754 1678 1934 1753 1287 1543 1446 1680 1936 1755 1290 1546 1449 1293 1549 1452 1680 1936 1755 1679 1935 1754 1290 1546 1449 1681 1937 1756 1293 1549 1452 1296 1552 1455 1681 1937 1756 1680 1936 1755 1293 1549 1452 1682 1938 1757 1296 1552 1455 1299 1555 1458 1682 1938 1757 1681 1937 1756 1296 1552 1455 1683 1939 1758 1299 1555 1458 1302 1558 1461 1683 1939 1758 1682 1938 1757 1299 1555 1458 1684 1940 1759 1302 1558 1461 1305 1561 1464 1684 1940 1759 1683 1939 1758 1302 1558 1461 1685 1941 1760 1305 1561 1464 1308 1564 1467 1685 1941 1760 1684 1940 1759 1305 1561 1464 1686 1942 1761 1308 1564 1467 1309 1565 1468 1686 1942 1761 1685 1941 1760 1308 1564 1467 1687 1943 1762 1309 1565 1468 1024 1231 1078 1687 1943 1762 1686 1942 1761 1309 1565 1468 1688 1944 1763 1024 1231 1078 1021 1228 1075 1688 1944 1763 1687 1943 1762 1024 1231 1078 1688 1944 1763 1021 1228 1075 1689 1945 1764 1026 1233 1080 1689 1945 1764 1021 1228 1075 1690 1946 1765 1688 1944 1763 1689 1945 1764 1690 1946 1765 1689 1945 1764 1691 1947 1766 1692 1948 1767 1691 1947 1766 1689 1945 1764 1692 1948 1767 1689 1945 1764 1026 1233 1080 1413 1669 1501 1396 1652 1496 1639 1895 1714 1693 1949 1768 1639 1895 1714 1640 1896 1715 1693 1949 1768 1413 1669 1501 1639 1895 1714 1694 1950 1769 1640 1896 1715 1641 1897 1716 1694 1950 1769 1693 1949 1768 1640 1896 1715 1695 1951 1770 1641 1897 1716 1642 1898 1717 1695 1951 1770 1694 1950 1769 1641 1897 1716 1696 1952 1771 1642 1898 1717 1643 1899 1718 1696 1952 1771 1695 1951 1770 1642 1898 1717 1697 1953 1772 1643 1899 1718 1644 1900 1719 1697 1953 1772 1696 1952 1771 1643 1899 1718 1698 1954 1773 1644 1900 1719 1645 1901 1720 1698 1954 1773 1697 1953 1772 1644 1900 1719 1699 1955 1774 1645 1901 1720 1646 1902 1721 1699 1955 1774 1698 1954 1773 1645 1901 1720 1700 1956 1775 1646 1902 1721 1647 1903 1722 1700 1956 1775 1699 1955 1774 1646 1902 1721 1701 1957 1776 1647 1903 1722 1648 1904 1723 1701 1957 1776 1700 1956 1775 1647 1903 1722 1702 1958 1777 1648 1904 1723 1649 1905 1724 1702 1958 1777 1701 1957 1776 1648 1904 1723 1703 1959 1778 1649 1905 1724 1650 1906 1725 1703 1959 1778 1702 1958 1777 1649 1905 1724 1704 1960 1779 1650 1906 1725 1651 1907 1726 1704 1960 1779 1703 1959 1778 1650 1906 1725 1705 1961 1780 1651 1907 1726 1652 1908 1727 1705 1961 1780 1704 1960 1779 1651 1907 1726 1706 1962 1781 1652 1908 1727 1653 1909 1728 1706 1962 1781 1705 1961 1780 1652 1908 1727 1707 1963 1782 1653 1909 1728 1654 1910 1729 1707 1963 1782 1706 1962 1781 1653 1909 1728 1708 1964 1783 1654 1910 1729 1655 1911 1730 1708 1964 1783 1707 1963 1782 1654 1910 1729 1709 1965 1784 1655 1911 1730 1656 1912 1731 1709 1965 1784 1708 1964 1783 1655 1911 1730 1710 1966 1785 1656 1912 1731 1657 1913 1732 1710 1966 1785 1709 1965 1784 1656 1912 1731 1711 1967 1786 1657 1913 1732 1658 1914 1733 1711 1967 1786 1710 1966 1785 1657 1913 1732 1712 1968 1787 1658 1914 1733 1659 1915 1734 1712 1968 1787 1711 1967 1786 1658 1914 1733 1713 1969 1788 1659 1915 1734 1660 1916 1735 1713 1969 1788 1712 1968 1787 1659 1915 1734 1714 1970 1789 1660 1916 1735 1661 1917 1736 1714 1970 1789 1713 1969 1788 1660 1916 1735 1715 1971 1790 1661 1917 1736 1662 1918 1737 1715 1971 1790 1714 1970 1789 1661 1917 1736 1716 1972 1791 1662 1918 1737 1663 1919 1738 1716 1972 1791 1715 1971 1790 1662 1918 1737 1717 1973 1792 1663 1919 1738 1664 1920 1739 1717 1973 1792 1716 1972 1791 1663 1919 1738 1718 1974 1793 1664 1920 1739 1665 1921 1740 1718 1974 1793 1717 1973 1792 1664 1920 1739 1719 1975 1794 1665 1921 1740 1666 1922 1741 1719 1975 1794 1718 1974 1793 1665 1921 1740 1720 1976 1832 1666 1922 1741 1667 1923 1742 1720 1976 1832 1719 1975 1794 1666 1922 1741 1721 1977 1834 1667 1923 1742 1668 1924 1743 1721 1977 1834 1720 1976 1832 1667 1923 1742 1722 1978 1835 1668 1924 1743 1669 1925 1744 1722 1978 1835 1721 1977 1834 1668 1924 1743 1723 1979 1837 1669 1925 1744 1670 1926 1745 1723 1979 1837 1722 1978 1835 1669 1925 1744 1724 1980 1838 1670 1926 1745 1671 1927 1746 1724 1980 1838 1723 1979 1837 1670 1926 1745 1725 1981 1839 1671 1927 1746 1672 1928 1747 1725 1981 1839 1724 1980 1838 1671 1927 1746 1726 1982 1840 1672 1928 1747 1673 1929 1748 1726 1982 1840 1725 1981 1839 1672 1928 1747 1727 1983 1841 1673 1929 1748 1674 1930 1749 1727 1983 1841 1726 1982 1840 1673 1929 1748 1728 1984 1842 1674 1930 1749 1675 1931 1750 1728 1984 1842 1727 1983 1841 1674 1930 1749 1729 1985 1843 1675 1931 1750 1676 1932 1751 1729 1985 1843 1728 1984 1842 1675 1931 1750 1730 1986 1844 1676 1932 1751 1677 1933 1752 1730 1986 1844 1729 1985 1843 1676 1932 1751 1731 1987 1845 1677 1933 1752 1678 1934 1753 1731 1987 1845 1730 1986 1844 1677 1933 1752 1732 1988 1853 1678 1934 1753 1679 1935 1754 1732 1988 1853 1731 1987 1845 1678 1934 1753 1733 1989 1854 1679 1935 1754 1680 1936 1755 1733 1989 1854 1732 1988 1853 1679 1935 1754 1734 1990 1869 1680 1936 1755 1681 1937 1756 1734 1990 1869 1733 1989 1854 1680 1936 1755 1735 1991 1870 1681 1937 1756 1682 1938 1757 1735 1991 1870 1734 1990 1869 1681 1937 1756 1736 1992 1883 1682 1938 1757 1683 1939 1758 1736 1992 1883 1735 1991 1870 1682 1938 1757 1737 1993 1884 1683 1939 1758 1684 1940 1759 1737 1993 1884 1736 1992 1883 1683 1939 1758 1738 1994 1901 1684 1940 1759 1685 1941 1760 1738 1994 1901 1737 1993 1884 1684 1940 1759 1739 1995 1902 1685 1941 1760 1686 1942 1761 1739 1995 1902 1738 1994 1901 1685 1941 1760 1740 1996 2538 1686 1942 1761 1687 1943 1762 1740 1996 2538 1739 1995 1902 1686 1942 1761 1741 1997 2540 1687 1943 1762 1688 1944 1763 1741 1997 2540 1740 1996 2538 1687 1943 1762 1690 1946 1765 1741 1997 2540 1688 1944 1763 1742 1998 2543 1690 1946 1765 1691 1947 1766 1742 1998 2543 1691 1947 1766 1743 1999 2546 1744 2000 2549 1743 1999 2546 1691 1947 1766 1744 2000 2549 1691 1947 1766 1692 1948 1767 1428 1684 1504 1413 1669 1501 1693 1949 1768 1745 2001 2552 1693 1949 1768 1694 1950 1769 1745 2001 2552 1428 1684 1504 1693 1949 1768 1746 2002 2555 1694 1950 1769 1695 1951 1770 1746 2002 2555 1745 2001 2552 1694 1950 1769 1747 2003 2558 1695 1951 1770 1696 1952 1771 1747 2003 2558 1746 2002 2555 1695 1951 1770 1748 2004 2561 1696 1952 1771 1697 1953 1772 1748 2004 2561 1747 2003 2558 1696 1952 1771 1749 2005 2564 1697 1953 1772 1698 1954 1773 1749 2005 2564 1748 2004 2561 1697 1953 1772 1750 2006 2567 1698 1954 1773 1699 1955 1774 1750 2006 2567 1749 2005 2564 1698 1954 1773 1751 2007 2570 1699 1955 1774 1700 1956 1775 1751 2007 2570 1750 2006 2567 1699 1955 1774 1752 2008 2573 1700 1956 1775 1701 1957 1776 1752 2008 2573 1751 2007 2570 1700 1956 1775 1753 2009 2576 1701 1957 1776 1702 1958 1777 1753 2009 2576 1752 2008 2573 1701 1957 1776 1754 2010 2579 1702 1958 1777 1703 1959 1778 1754 2010 2579 1753 2009 2576 1702 1958 1777 1755 2011 2582 1703 1959 1778 1704 1960 1779 1755 2011 2582 1754 2010 2579 1703 1959 1778 1756 2012 2585 1704 1960 1779 1705 1961 1780 1756 2012 2585 1755 2011 2582 1704 1960 1779 1757 2013 2588 1705 1961 1780 1706 1962 1781 1757 2013 2588 1756 2012 2585 1705 1961 1780 1758 2014 2591 1706 1962 1781 1707 1963 1782 1758 2014 2591 1757 2013 2588 1706 1962 1781 1759 2015 2594 1707 1963 1782 1708 1964 1783 1759 2015 2594 1758 2014 2591 1707 1963 1782 1760 2016 2597 1708 1964 1783 1709 1965 1784 1760 2016 2597 1759 2015 2594 1708 1964 1783 1761 2017 2600 1709 1965 1784 1710 1966 1785 1761 2017 2600 1760 2016 2597 1709 1965 1784 1762 2018 2603 1710 1966 1785 1711 1967 1786 1762 2018 2603 1761 2017 2600 1710 1966 1785 1763 2019 2606 1711 1967 1786 1712 1968 1787 1763 2019 2606 1762 2018 2603 1711 1967 1786 1764 2020 2609 1712 1968 1787 1713 1969 1788 1764 2020 2609 1763 2019 2606 1712 1968 1787 1765 2021 2612 1713 1969 1788 1714 1970 1789 1765 2021 2612 1764 2020 2609 1713 1969 1788 1766 2022 2615 1714 1970 1789 1715 1971 1790 1766 2022 2615 1765 2021 2612 1714 1970 1789 1767 2023 2619 1715 1971 1790 1716 1972 1791 1767 2023 2619 1766 2022 2615 1715 1971 1790 1768 2024 2622 1716 1972 1791 1717 1973 1792 1768 2024 2622 1767 2023 2619 1716 1972 1791 1769 2025 2625 1717 1973 1792 1718 1974 1793 1769 2025 2625 1768 2024 2622 1717 1973 1792 1770 2026 2628 1718 1974 1793 1719 1975 1794 1770 2026 2628 1769 2025 2625 1718 1974 1793 1771 2027 2631 1719 1975 1794 1720 1976 1832 1771 2027 2631 1770 2026 2628 1719 1975 1794 1772 2028 2634 1720 1976 1832 1721 1977 1834 1772 2028 2634 1771 2027 2631 1720 1976 1832 1773 2029 2637 1721 1977 1834 1722 1978 1835 1773 2029 2637 1772 2028 2634 1721 1977 1834 1774 2030 2640 1722 1978 1835 1723 1979 1837 1774 2030 2640 1773 2029 2637 1722 1978 1835 1775 2031 2643 1723 1979 1837 1724 1980 1838 1775 2031 2643 1774 2030 2640 1723 1979 1837 1776 2032 2646 1724 1980 1838 1725 1981 1839 1776 2032 2646 1775 2031 2643 1724 1980 1838 1777 2033 2649 1725 1981 1839 1726 1982 1840 1777 2033 2649 1776 2032 2646 1725 1981 1839 1778 2034 2652 1726 1982 1840 1727 1983 1841 1778 2034 2652 1777 2033 2649 1726 1982 1840 1779 2035 2655 1727 1983 1841 1728 1984 1842 1779 2035 2655 1778 2034 2652 1727 1983 1841 1780 2036 2658 1728 1984 1842 1729 1985 1843 1780 2036 2658 1779 2035 2655 1728 1984 1842 1781 2037 2661 1729 1985 1843 1730 1986 1844 1781 2037 2661 1780 2036 2658 1729 1985 1843 1782 2038 2664 1730 1986 1844 1731 1987 1845 1782 2038 2664 1781 2037 2661 1730 1986 1844 1783 2039 2667 1731 1987 1845 1732 1988 1853 1783 2039 2667 1782 2038 2664 1731 1987 1845 1784 2040 2670 1732 1988 1853 1733 1989 1854 1784 2040 2670 1783 2039 2667 1732 1988 1853 1785 2041 2673 1733 1989 1854 1734 1990 1869 1785 2041 2673 1784 2040 2670 1733 1989 1854 1786 2042 2676 1734 1990 1869 1735 1991 1870 1786 2042 2676 1785 2041 2673 1734 1990 1869 1787 2043 2679 1735 1991 1870 1736 1992 1883 1787 2043 2679 1786 2042 2676 1735 1991 1870 1788 2044 2682 1736 1992 1883 1737 1993 1884 1788 2044 2682 1787 2043 2679 1736 1992 1883 1789 2045 2685 1737 1993 1884 1738 1994 1901 1789 2045 2685 1788 2044 2682 1737 1993 1884 1790 2046 2688 1738 1994 1901 1739 1995 1902 1790 2046 2688 1789 2045 2685 1738 1994 1901 1791 2047 2691 1739 1995 1902 1740 1996 2538 1791 2047 2691 1790 2046 2688 1739 1995 1902 1792 2048 2694 1740 1996 2538 1741 1997 2540 1792 2048 2694 1791 2047 2691 1740 1996 2538 1793 2049 2697 1741 1997 2540 1690 1946 1765 1793 2049 2697 1792 2048 2694 1741 1997 2540 1742 1998 2543 1793 2049 2697 1690 1946 1765 1589 1845 1664 1742 1998 2543 1743 1999 2546 1589 1845 1664 1743 1999 2546 1587 1843 1662 1794 2050 2699 1587 1843 1662 1743 1999 2546 1794 2050 2699 1743 1999 2546 1744 2000 2549 1319 1575 1478 1428 1684 1504 1745 2001 2552 1638 1894 1713 1745 2001 2552 1746 2002 2555 1638 1894 1713 1319 1575 1478 1745 2001 2552 1637 1893 1712 1746 2002 2555 1747 2003 2558 1637 1893 1712 1638 1894 1713 1746 2002 2555 1636 1892 1711 1747 2003 2558 1748 2004 2561 1636 1892 1711 1637 1893 1712 1747 2003 2558 1635 1891 1710 1748 2004 2561 1749 2005 2564 1635 1891 1710 1636 1892 1711 1748 2004 2561 1634 1890 1709 1749 2005 2564 1750 2006 2567 1634 1890 1709 1635 1891 1710 1749 2005 2564 1633 1889 1708 1750 2006 2567 1751 2007 2570 1633 1889 1708 1634 1890 1709 1750 2006 2567 1632 1888 1707 1751 2007 2570 1752 2008 2573 1632 1888 1707 1633 1889 1708 1751 2007 2570 1631 1887 1706 1752 2008 2573 1753 2009 2576 1631 1887 1706 1632 1888 1707 1752 2008 2573 1630 1886 1705 1753 2009 2576 1754 2010 2579 1630 1886 1705 1631 1887 1706 1753 2009 2576 1629 1885 1704 1754 2010 2579 1755 2011 2582 1629 1885 1704 1630 1886 1705 1754 2010 2579 1628 1884 1703 1755 2011 2582 1756 2012 2585 1628 1884 1703 1629 1885 1704 1755 2011 2582 1627 1883 1702 1756 2012 2585 1757 2013 2588 1627 1883 1702 1628 1884 1703 1756 2012 2585 1626 1882 1701 1757 2013 2588 1758 2014 2591 1626 1882 1701 1627 1883 1702 1757 2013 2588 1625 1881 1700 1758 2014 2591 1759 2015 2594 1625 1881 1700 1626 1882 1701 1758 2014 2591 1624 1880 1699 1759 2015 2594 1760 2016 2597 1624 1880 1699 1625 1881 1700 1759 2015 2594 1623 1879 1698 1760 2016 2597 1761 2017 2600 1623 1879 1698 1624 1880 1699 1760 2016 2597 1622 1878 1697 1761 2017 2600 1762 2018 2603 1622 1878 1697 1623 1879 1698 1761 2017 2600 1621 1877 1696 1762 2018 2603 1763 2019 2606 1621 1877 1696 1622 1878 1697 1762 2018 2603 1620 1876 1695 1763 2019 2606 1764 2020 2609 1620 1876 1695 1621 1877 1696 1763 2019 2606 1619 1875 1694 1764 2020 2609 1765 2021 2612 1619 1875 1694 1620 1876 1695 1764 2020 2609 1618 1874 1693 1765 2021 2612 1766 2022 2615 1618 1874 1693 1619 1875 1694 1765 2021 2612 1617 1873 1692 1766 2022 2615 1767 2023 2619 1617 1873 1692 1618 1874 1693 1766 2022 2615 1616 1872 1691 1767 2023 2619 1768 2024 2622 1616 1872 1691 1617 1873 1692 1767 2023 2619 1615 1871 1690 1768 2024 2622 1769 2025 2625 1615 1871 1690 1616 1872 1691 1768 2024 2622 1614 1870 1689 1769 2025 2625 1770 2026 2628 1614 1870 1689 1615 1871 1690 1769 2025 2625 1613 1869 1688 1770 2026 2628 1771 2027 2631 1613 1869 1688 1614 1870 1689 1770 2026 2628 1612 1868 1687 1771 2027 2631 1772 2028 2634 1612 1868 1687 1613 1869 1688 1771 2027 2631 1611 1867 1686 1772 2028 2634 1773 2029 2637 1611 1867 1686 1612 1868 1687 1772 2028 2634 1610 1866 1685 1773 2029 2637 1774 2030 2640 1610 1866 1685 1611 1867 1686 1773 2029 2637 1609 1865 1684 1774 2030 2640 1775 2031 2643 1609 1865 1684 1610 1866 1685 1774 2030 2640 1608 1864 1683 1775 2031 2643 1776 2032 2646 1608 1864 1683 1609 1865 1684 1775 2031 2643 1607 1863 1682 1776 2032 2646 1777 2033 2649 1607 1863 1682 1608 1864 1683 1776 2032 2646 1606 1862 1681 1777 2033 2649 1778 2034 2652 1606 1862 1681 1607 1863 1682 1777 2033 2649 1605 1861 1680 1778 2034 2652 1779 2035 2655 1605 1861 1680 1606 1862 1681 1778 2034 2652 1604 1860 1679 1779 2035 2655 1780 2036 2658 1604 1860 1679 1605 1861 1680 1779 2035 2655 1603 1859 1678 1780 2036 2658 1781 2037 2661 1603 1859 1678 1604 1860 1679 1780 2036 2658 1602 1858 1677 1781 2037 2661 1782 2038 2664 1602 1858 1677 1603 1859 1678 1781 2037 2661 1601 1857 1676 1782 2038 2664 1783 2039 2667 1601 1857 1676 1602 1858 1677 1782 2038 2664 1600 1856 1675 1783 2039 2667 1784 2040 2670 1600 1856 1675 1601 1857 1676 1783 2039 2667 1599 1855 1674 1784 2040 2670 1785 2041 2673 1599 1855 1674 1600 1856 1675 1784 2040 2670 1598 1854 1673 1785 2041 2673 1786 2042 2676 1598 1854 1673 1599 1855 1674 1785 2041 2673 1597 1853 1672 1786 2042 2676 1787 2043 2679 1597 1853 1672 1598 1854 1673 1786 2042 2676 1596 1852 1671 1787 2043 2679 1788 2044 2682 1596 1852 1671 1597 1853 1672 1787 2043 2679 1595 1851 1670 1788 2044 2682 1789 2045 2685 1595 1851 1670 1596 1852 1671 1788 2044 2682 1594 1850 1669 1789 2045 2685 1790 2046 2688 1594 1850 1669 1595 1851 1670 1789 2045 2685 1593 1849 1668 1790 2046 2688 1791 2047 2691 1593 1849 1668 1594 1850 1669 1790 2046 2688 1592 1848 1667 1791 2047 2691 1792 2048 2694 1592 1848 1667 1593 1849 1668 1791 2047 2691 1591 1847 1666 1792 2048 2694 1793 2049 2697 1591 1847 1666 1592 1848 1667 1792 2048 2694 1590 1846 1665 1793 2049 2697 1742 1998 2543 1590 1846 1665 1591 1847 1666 1793 2049 2697 1589 1845 1664 1590 1846 1665 1742 1998 2543 1588 1844 1663 1587 1843 1662 1794 2050 2699 1795 2051 1961 1796 2052 1962 1797 2053 1963 1798 2054 1964 1797 2053 1963 1796 2052 1962 1799 2055 1965 1795 2051 1961 1797 2053 1963 1800 2056 1966 1797 2053 1963 1798 2054 1964 1801 2057 1967 1797 2053 1963 1800 2056 1966 1801 2057 1967 1799 2055 1965 1797 2053 1963 1795 2051 1961 1802 2058 1968 1796 2052 1962 1803 2059 1969 1796 2052 1962 1802 2058 1968 1804 2060 1970 1796 2052 1962 1803 2059 1969 1804 2060 1970 1798 2054 1964 1796 2052 1962 1805 2061 1971 1806 2062 1972 1802 2058 1968 1807 2063 1973 1802 2058 1968 1806 2062 1972 1795 2051 1961 1805 2061 1971 1802 2058 1968 1807 2063 1973 1803 2059 1969 1802 2058 1968 1808 2064 1974 1809 2065 1975 1806 2062 1972 1810 2066 1976 1806 2062 1972 1809 2065 1975 1805 2061 1971 1808 2064 1974 1806 2062 1972 1807 2063 1973 1806 2062 1972 1810 2066 1976 1811 2067 1886 1812 2068 1887 1809 2065 1888 1813 2069 1889 1809 2065 1888 1812 2068 1887 1814 2070 1977 1811 2067 1978 1809 2065 1975 1808 2064 1974 1814 2070 1977 1809 2065 1975 1810 2066 1976 1809 2065 1975 1813 2069 1979 1815 2071 1890 1816 2072 1891 1812 2068 1887 1817 2073 1910 1812 2068 1887 1816 2072 1891 1811 2067 1886 1815 2071 1890 1812 2068 1887 1813 2069 1889 1812 2068 1887 1817 2073 1910 1818 2074 1911 1819 2075 1916 1816 2072 1891 1820 2076 1918 1816 2072 1891 1819 2075 1916 1815 2071 1890 1818 2074 1911 1816 2072 1891 1817 2073 1910 1816 2072 1891 1820 2076 1918 1821 2077 1927 1822 2078 1928 1819 2075 1916 1823 2079 2021 1819 2075 1916 1822 2078 1928 1824 2080 2022 1821 2077 1927 1819 2075 1916 1818 2074 1911 1824 2080 2022 1819 2075 1916 1820 2076 1918 1819 2075 1916 1823 2079 2021 1825 2081 2099 1826 2082 2291 1822 2078 1928 1827 2083 2769 1822 2078 1928 1826 2082 2291 1821 2077 1927 1825 2081 2099 1822 2078 1928 1823 2079 2021 1822 2078 1928 1827 2083 2769 1828 2084 2833 1829 2085 2897 1826 2082 2291 1830 2086 2898 1826 2082 2291 1829 2085 2897 1825 2081 2099 1828 2084 2833 1826 2082 2291 1827 2083 2769 1826 2082 2291 1830 2086 2898 1831 2087 2904 1832 2088 2910 1829 2085 2897 1833 2089 2911 1829 2085 2897 1832 2088 2910 1828 2084 2833 1831 2087 2904 1829 2085 2897 1830 2086 2898 1829 2085 2897 1833 2089 2911 1834 2090 3405 1835 2091 3411 1832 2088 2910 1836 2092 3412 1832 2088 2910 1835 2091 3411 1837 2093 2700 1834 2090 2702 1832 2088 2765 1831 2087 2904 1837 2093 3413 1832 2088 2910 1833 2089 2911 1832 2088 2910 1836 2092 3412 1838 2094 2767 1839 2095 2770 1835 2091 2907 1840 2096 2908 1835 2091 2907 1839 2095 2770 1834 2090 2702 1838 2094 2767 1835 2091 2907 1836 2092 3412 1835 2091 3411 1840 2096 3423 1841 2097 3349 1584 1840 1659 1839 2095 2770 1842 2098 3351 1839 2095 2770 1584 1840 1659 1838 2094 2767 1841 2097 3349 1839 2095 2770 1840 2096 2908 1839 2095 2770 1842 2098 3351 1841 2097 3349 1585 1841 1660 1584 1840 1659 1842 2098 3351 1584 1840 1659 1588 1844 1663 1843 2099 3353 1585 1841 1660 1841 2097 3349 1843 2099 3353 1586 1842 1661 1585 1841 1660 1843 2099 3353 1841 2097 3349 1838 2094 2767 1844 2100 3354 1838 2094 2767 1834 2090 2702 1844 2100 3354 1843 2099 3353 1838 2094 2767 1845 2101 3427 1834 2090 2702 1837 2093 2700 1845 2101 3427 1844 2100 3354 1834 2090 2702 1845 2101 3432 1837 2093 3413 1831 2087 2904 1846 2102 3435 1831 2087 2904 1828 2084 2833 1846 2102 3435 1845 2101 3432 1831 2087 2904 1847 2103 3438 1828 2084 2833 1825 2081 2099 1847 2103 3438 1846 2102 3435 1828 2084 2833 1847 2103 3438 1825 2081 2099 1821 2077 1927 1848 2104 3448 1821 2077 1927 1824 2080 2022 1848 2104 3448 1847 2103 3438 1821 2077 1927 1849 2105 3461 1824 2080 2022 1818 2074 1911 1849 2105 3461 1848 2104 3448 1824 2080 2022 1849 2105 3461 1818 2074 1911 1815 2071 1890 1850 2106 3463 1815 2071 1890 1811 2067 1886 1850 2106 3463 1849 2105 3461 1815 2071 1890 1851 2107 1980 1811 2067 1978 1814 2070 1977 1851 2107 3467 1850 2106 3463 1811 2067 1886 1851 2107 1980 1814 2070 1977 1808 2064 1974 1852 2108 1981 1808 2064 1974 1805 2061 1971 1852 2108 1981 1851 2107 1980 1808 2064 1974 1799 2055 1965 1805 2061 1971 1795 2051 1961 1799 2055 1965 1852 2108 1981 1805 2061 1971 1692 1948 1767 1026 1233 1080 1029 1236 1083 1853 2109 3431 1029 1236 1083 1032 1239 1086 1853 2109 3431 1692 1948 1767 1029 1236 1083 1854 2110 3469 1032 1239 1833 1036 1243 1830 1854 2110 3437 1853 2109 3431 1032 1239 1086 1855 2111 3470 1036 1243 1830 1039 1246 1847 1855 2111 3470 1854 2110 3469 1036 1243 1830 1856 2112 3471 1039 1246 1847 1042 1249 1850 1856 2112 3471 1855 2111 3470 1039 1246 1847 1857 2113 3473 1042 1249 1850 1046 1253 1858 1857 2113 3473 1856 2112 3471 1042 1249 1850 1858 2114 3488 1046 1253 1858 1049 1256 1861 1858 2114 3488 1857 2113 3473 1046 1253 1858 1859 2115 3500 1049 1256 1861 1051 1258 1872 1859 2115 3500 1858 2114 3488 1049 1256 1861 1860 2116 3501 1051 1258 1872 1054 1261 1875 1860 2116 3501 1859 2115 3500 1051 1258 1872 1861 2117 3502 1054 1261 1875 1059 1266 1877 1861 2117 3502 1860 2116 3501 1054 1261 1875 1862 2118 1982 1059 1266 1915 1061 1268 1919 1862 2118 3503 1861 2117 3502 1059 1266 1877 1863 2119 1983 1061 1268 1919 908 1042 938 1863 2119 1983 1862 2118 1982 1061 1268 1919 1864 2120 1984 908 1042 938 907 1041 937 1864 2120 1984 1863 2119 1983 908 1042 938 1864 2120 1984 907 1041 937 1865 2121 1985 909 1043 939 1865 2121 1985 907 1041 937 1866 2122 1986 1864 2120 1984 1865 2121 1985 1866 2122 1986 1865 2121 1985 1867 2123 1987 1868 2124 1988 1867 2123 1987 1865 2121 1985 909 1043 939 1868 2124 1988 1865 2121 1985 1744 2000 2549 1692 1948 1767 1853 2109 3431 1869 2125 3455 1853 2109 3431 1854 2110 3437 1869 2125 3455 1744 2000 2549 1853 2109 3431 1870 2126 3504 1854 2110 3469 1855 2111 3470 1870 2126 3491 1869 2125 3455 1854 2110 3437 1871 2127 3505 1855 2111 3470 1856 2112 3471 1871 2127 3505 1870 2126 3504 1855 2111 3470 1872 2128 3535 1856 2112 3471 1857 2113 3473 1872 2128 3535 1871 2127 3505 1856 2112 3471 1873 2129 3597 1857 2113 3473 1858 2114 3488 1873 2129 3597 1872 2128 3535 1857 2113 3473 1874 2130 3620 1858 2114 3488 1859 2115 3500 1874 2130 3620 1873 2129 3597 1858 2114 3488 1875 2131 3623 1859 2115 3500 1860 2116 3501 1875 2131 3623 1874 2130 3620 1859 2115 3500 1876 2132 3635 1860 2116 3501 1861 2117 3502 1876 2132 3635 1875 2131 3623 1860 2116 3501 1877 2133 3640 1861 2117 3502 1862 2118 3503 1877 2133 3640 1876 2132 3635 1861 2117 3502 1878 2134 1989 1862 2118 1982 1863 2119 1983 1878 2134 3641 1877 2133 3640 1862 2118 3503 1879 2135 1990 1863 2119 1983 1864 2120 1984 1879 2135 1990 1878 2134 1989 1863 2119 1983 1866 2122 1986 1879 2135 1990 1864 2120 1984 1880 2136 1991 1866 2122 1986 1867 2123 1987 1880 2136 1991 1867 2123 1987 1881 2137 1992 1882 2138 1993 1881 2137 1992 1867 2123 1987 1868 2124 1988 1882 2138 1993 1867 2123 1987 1794 2050 2699 1744 2000 2549 1869 2125 3455 1883 2139 3492 1869 2125 3455 1870 2126 3491 1883 2139 3492 1794 2050 2699 1869 2125 3455 1884 2140 3642 1870 2126 3504 1871 2127 3505 1884 2140 3493 1883 2139 3492 1870 2126 3491 1885 2141 3643 1871 2127 3505 1872 2128 3535 1885 2141 3643 1884 2140 3642 1871 2127 3505 1886 2142 3644 1872 2128 3535 1873 2129 3597 1886 2142 3644 1885 2141 3643 1872 2128 3535 1887 2143 3645 1873 2129 3597 1874 2130 3620 1887 2143 3645 1886 2142 3644 1873 2129 3597 1888 2144 3646 1874 2130 3620 1875 2131 3623 1888 2144 3646 1887 2143 3645 1874 2130 3620 1889 2145 3647 1875 2131 3623 1876 2132 3635 1889 2145 3647 1888 2144 3646 1875 2131 3623 1890 2146 3648 1876 2132 3635 1877 2133 3640 1890 2146 3648 1889 2145 3647 1876 2132 3635 1891 2147 3649 1877 2133 3640 1878 2134 3641 1891 2147 3649 1890 2146 3648 1877 2133 3640 1892 2148 1994 1878 2134 1989 1879 2135 1990 1892 2148 3650 1891 2147 3649 1878 2134 3641 1893 2149 1995 1879 2135 1990 1866 2122 1986 1893 2149 1995 1892 2148 1994 1879 2135 1990 1880 2136 1991 1893 2149 1995 1866 2122 1986 1807 2063 1973 1880 2136 1991 1881 2137 1992 1807 2063 1973 1881 2137 1992 1803 2059 1969 1894 2150 1996 1803 2059 1969 1881 2137 1992 1882 2138 1993 1894 2150 1996 1881 2137 1992 1588 1844 1663 1794 2050 2699 1883 2139 3492 1842 2098 3351 1883 2139 3492 1884 2140 3493 1842 2098 3351 1588 1844 1663 1883 2139 3492 1840 2096 3423 1884 2140 3642 1885 2141 3643 1840 2096 2908 1842 2098 3351 1884 2140 3493 1836 2092 3412 1885 2141 3643 1886 2142 3644 1836 2092 3412 1840 2096 3423 1885 2141 3643 1833 2089 2911 1886 2142 3644 1887 2143 3645 1833 2089 2911 1836 2092 3412 1886 2142 3644 1830 2086 2898 1887 2143 3645 1888 2144 3646 1830 2086 2898 1833 2089 2911 1887 2143 3645 1827 2083 2769 1888 2144 3646 1889 2145 3647 1827 2083 2769 1830 2086 2898 1888 2144 3646 1823 2079 2021 1889 2145 3647 1890 2146 3648 1823 2079 2021 1827 2083 2769 1889 2145 3647 1820 2076 1918 1890 2146 3648 1891 2147 3649 1820 2076 1918 1823 2079 2021 1890 2146 3648 1817 2073 1910 1891 2147 3649 1892 2148 3650 1817 2073 1910 1820 2076 1918 1891 2147 3649 1813 2069 1979 1892 2148 1994 1893 2149 1995 1813 2069 1889 1817 2073 1910 1892 2148 3650 1810 2066 1976 1893 2149 1995 1880 2136 1991 1810 2066 1976 1813 2069 1979 1893 2149 1995 1807 2063 1973 1810 2066 1976 1880 2136 1991 1894 2150 1996 1804 2060 1970 1803 2059 1969 1895 2151 1997 1896 2152 1998 1897 2153 1999 1898 2154 204 1897 2155 232 1896 2156 256 1899 2157 2000 1895 2151 1997 1897 2153 1999 1900 2158 3922 1899 2159 3923 1897 2160 3924 1901 2161 3925 1900 2158 3922 1897 2160 3924 1902 2162 3494 1901 2163 3495 1897 2164 3513 1903 2165 293 1904 2166 554 1897 2155 232 1902 2162 3494 1897 2164 3513 1904 2167 3515 1898 2154 204 1903 2165 293 1897 2155 232 1895 2151 1997 1905 2168 2001 1896 2152 1998 1906 2169 3651 1896 2170 3652 1905 2171 3653 1898 2154 204 1896 2156 256 1906 2172 556 1907 2173 2002 1908 2174 2003 1905 2168 2001 1909 2175 2004 1905 2168 2001 1908 2174 2003 1895 2151 1997 1907 2173 2002 1905 2168 2001 1910 2176 3654 1905 2171 3653 1909 2177 3655 1910 2176 3654 1906 2169 3651 1905 2171 3653 1911 2178 3656 1908 2179 3657 1907 2180 3658 1912 2181 2005 1909 2175 2004 1908 2174 2003 1913 2182 2006 1914 2183 2007 1915 2184 2008 1916 2185 3659 1912 2186 3660 1908 2179 3657 1916 2185 3659 1908 2179 3657 1911 2178 3656 1917 2187 2009 1907 2173 2002 1895 2151 1997 1918 2188 3661 1907 2180 3658 1917 2189 3662 1911 2178 3656 1907 2180 3658 1918 2188 3661 1919 2190 2010 1895 2151 1997 1899 2157 2000 1919 2190 2010 1917 2187 2009 1895 2151 1997 1919 2190 2010 1899 2157 2000 1920 2191 2011 1921 2192 3926 1920 2193 3927 1899 2159 3923 1921 2192 3926 1899 2159 3923 1900 2158 3922 1922 2194 2012 1923 2195 2013 1924 2196 2014 1925 2197 2015 1924 2196 2014 1923 2195 2013 1926 2198 2016 1922 2194 2012 1924 2196 2014 1927 2199 3663 1926 2200 3664 1924 2201 3665 1928 2202 3666 1924 2201 3665 1925 2203 3667 1928 2202 3666 1927 2199 3663 1924 2201 3665 1929 2204 2017 1930 2205 2018 1923 2195 2013 1931 2206 2019 1923 2195 2013 1930 2205 2018 1922 2194 2012 1929 2204 2017 1923 2195 2013 1932 2207 2020 1925 2197 2015 1923 2195 2013 1931 2206 2019 1932 2207 2020 1923 2195 2013 1933 2208 2023 1934 2209 2024 1930 2205 2018 1935 2210 2025 1930 2205 2018 1934 2209 2024 1929 2204 2017 1933 2208 2023 1930 2205 2018 1935 2210 2025 1931 2206 2019 1930 2205 2018 1936 2211 2026 1937 2212 2027 1934 2209 2024 1938 2213 2028 1934 2209 2024 1937 2212 2027 1933 2208 2023 1936 2211 2026 1934 2209 2024 1938 2213 2028 1935 2210 2025 1934 2209 2024 1939 2214 2029 1940 2215 2030 1937 2212 2027 1941 2216 2031 1937 2212 2027 1940 2215 2030 1936 2211 2026 1939 2214 2029 1937 2212 2027 1941 2216 2031 1938 2213 2028 1937 2212 2027 1942 2217 2032 1943 2218 2033 1940 2215 2030 1944 2219 2034 1940 2215 2030 1943 2218 2033 1939 2214 2029 1942 2217 2032 1940 2215 2030 1944 2219 2034 1941 2216 2031 1940 2215 2030 1945 2220 2035 1946 2221 2036 1943 2218 2033 1947 2222 2037 1943 2218 2033 1946 2221 2036 1942 2217 2032 1945 2220 2035 1943 2218 2033 1947 2222 2037 1944 2219 2034 1943 2218 2033 1948 2223 2038 1949 2224 2039 1946 2221 2036 1950 2225 2040 1946 2221 2036 1949 2224 2039 1945 2220 2035 1948 2223 2038 1946 2221 2036 1950 2225 2040 1947 2222 2037 1946 2221 2036 1951 2226 2041 1952 2227 2042 1949 2224 2039 1953 2228 2046 1949 2224 2039 1952 2227 2042 1948 2223 2038 1951 2226 2041 1949 2224 2039 1953 2228 2046 1950 2225 2040 1949 2224 2039 1954 2229 2047 1955 2230 2048 1952 2227 2042 1956 2231 2049 1952 2227 2042 1955 2230 2048 1951 2226 2041 1954 2229 2047 1952 2227 2042 1956 2231 2049 1953 2228 2046 1952 2227 2042 1957 2232 2050 1958 2233 2051 1955 2230 2048 1959 2234 2052 1955 2230 2048 1958 2233 2051 1954 2229 2047 1957 2232 2050 1955 2230 2048 1959 2234 2052 1956 2231 2049 1955 2230 2048 1960 2235 2053 1961 2236 2054 1958 2233 2051 1962 2237 2055 1958 2233 2051 1961 2236 2054 1957 2232 2050 1960 2235 2053 1958 2233 2051 1962 2237 2055 1959 2234 2052 1958 2233 2051 1963 2238 2056 1964 2239 2057 1961 2236 2054 1965 2240 2058 1961 2236 2054 1964 2239 2057 1960 2235 2053 1963 2238 2056 1961 2236 2054 1965 2240 2058 1962 2237 2055 1961 2236 2054 1966 2241 2059 1967 2242 2060 1964 2239 2057 1968 2243 2061 1964 2239 2057 1967 2242 2060 1963 2238 2056 1966 2241 2059 1964 2239 2057 1968 2243 2061 1965 2240 2058 1964 2239 2057 1969 2244 2062 1970 2245 2063 1967 2242 2060 1971 2246 2064 1967 2242 2060 1970 2245 2063 1966 2241 2059 1969 2244 2062 1967 2242 2060 1971 2246 2064 1968 2243 2061 1967 2242 2060 1972 2247 2065 1973 2248 2066 1970 2245 2063 1974 2249 2067 1970 2245 2063 1973 2248 2066 1969 2244 2062 1972 2247 2065 1970 2245 2063 1974 2249 2067 1971 2246 2064 1970 2245 2063 1975 2250 2068 1976 2251 2070 1973 2248 2066 1977 2252 2071 1973 2248 2066 1976 2251 2070 1972 2247 2065 1975 2250 2068 1973 2248 2066 1977 2252 2071 1974 2249 2067 1973 2248 2066 1978 2253 2075 1979 2254 2076 1976 2251 2070 1980 2255 2077 1976 2251 2070 1979 2254 2076 1975 2250 2068 1978 2253 2075 1976 2251 2070 1980 2255 2077 1977 2252 2071 1976 2251 2070 1981 2256 2078 1982 2257 2079 1979 2254 2076 1983 2258 2080 1979 2254 2076 1982 2257 2079 1978 2253 2075 1981 2256 2078 1979 2254 2076 1983 2258 2080 1980 2255 2077 1979 2254 2076 1984 2259 2081 1985 2260 2082 1982 2257 2079 1986 2261 2083 1982 2257 2079 1985 2260 2082 1981 2256 2078 1984 2259 2081 1982 2257 2079 1986 2261 2083 1983 2258 2080 1982 2257 2079 1987 2262 2084 1988 2263 2085 1985 2260 2082 1989 2264 2086 1985 2260 2082 1988 2263 2085 1984 2259 2081 1987 2262 2084 1985 2260 2082 1989 2264 2086 1986 2261 2083 1985 2260 2082 1990 2265 2087 1991 2266 2088 1988 2263 2085 1992 2267 2089 1988 2263 2085 1991 2266 2088 1987 2262 2084 1990 2265 2087 1988 2263 2085 1992 2267 2089 1989 2264 2086 1988 2263 2085 1993 2268 2090 1994 2269 2091 1991 2266 2088 1995 2270 2092 1991 2266 2088 1994 2269 2091 1990 2265 2087 1993 2268 2090 1991 2266 2088 1995 2270 2092 1992 2267 2089 1991 2266 2088 1996 2271 2093 1363 1619 1937 1994 2269 2091 1997 2272 2094 1994 2269 2091 1363 1619 1937 1993 2268 2090 1996 2271 2093 1994 2269 2091 1997 2272 2094 1995 2270 2092 1994 2269 2091 1996 2271 2093 1365 1621 1939 1363 1619 1937 1367 1623 1941 1997 2272 2094 1363 1619 1937 1429 1685 1960 1365 1621 1939 1996 2271 2093 1998 2273 2095 1996 2271 2093 1993 2268 2090 1998 2273 2095 1429 1685 1960 1996 2271 2093 1999 2274 2096 1993 2268 2090 1990 2265 2087 1999 2274 2096 1998 2273 2095 1993 2268 2090 2000 2275 2097 1990 2265 2087 1987 2262 2084 2000 2275 2097 1999 2274 2096 1990 2265 2087 2001 2276 2100 1987 2262 2084 1984 2259 2081 2001 2276 2100 2000 2275 2097 1987 2262 2084 2002 2277 2101 1984 2259 2081 1981 2256 2078 2002 2277 2101 2001 2276 2100 1984 2259 2081 2003 2278 2102 1981 2256 2078 1978 2253 2075 2003 2278 2102 2002 2277 2101 1981 2256 2078 2004 2279 2104 1978 2253 2075 1975 2250 2068 2004 2279 2104 2003 2278 2102 1978 2253 2075 2005 2280 2105 1975 2250 2068 1972 2247 2065 2005 2280 2105 2004 2279 2104 1975 2250 2068 2006 2281 2107 1972 2247 2065 1969 2244 2062 2006 2281 2107 2005 2280 2105 1972 2247 2065 2007 2282 2110 1969 2244 2062 1966 2241 2059 2007 2282 2110 2006 2281 2107 1969 2244 2062 2008 2283 2111 1966 2241 2059 1963 2238 2056 2008 2283 2111 2007 2282 2110 1966 2241 2059 2009 2284 2112 1963 2238 2056 1960 2235 2053 2009 2284 2112 2008 2283 2111 1963 2238 2056 2010 2285 2113 1960 2235 2053 1957 2232 2050 2010 2285 2113 2009 2284 2112 1960 2235 2053 2011 2286 2114 1957 2232 2050 1954 2229 2047 2011 2286 2114 2010 2285 2113 1957 2232 2050 2012 2287 2115 1954 2229 2047 1951 2226 2041 2012 2287 2115 2011 2286 2114 1954 2229 2047 2013 2288 2116 1951 2226 2041 1948 2223 2038 2013 2288 2116 2012 2287 2115 1951 2226 2041 2014 2289 2117 1948 2223 2038 1945 2220 2035 2014 2289 2117 2013 2288 2116 1948 2223 2038 2015 2290 2118 1945 2220 2035 1942 2217 2032 2015 2290 2118 2014 2289 2117 1945 2220 2035 2016 2291 2119 1942 2217 2032 1939 2214 2029 2016 2291 2119 2015 2290 2118 1942 2217 2032 2017 2292 2120 1939 2214 2029 1936 2211 2026 2017 2292 2120 2016 2291 2119 1939 2214 2029 2018 2293 2121 1936 2211 2026 1933 2208 2023 2018 2293 2121 2017 2292 2120 1936 2211 2026 2019 2294 2122 1933 2208 2023 1929 2204 2017 2019 2294 2122 2018 2293 2121 1933 2208 2023 2020 2295 2123 1929 2204 2017 1922 2194 2012 2020 2295 2123 2019 2294 2122 1929 2204 2017 1912 2181 2005 1922 2194 2012 1926 2198 2016 1912 2181 2005 2020 2295 2123 1922 2194 2012 1912 2181 2005 1926 2198 2016 1909 2175 2004 2021 2296 3668 1909 2177 3655 1926 2200 3664 1927 2199 3663 2021 2296 3668 1926 2200 3664 2022 2297 3669 1910 2176 3654 1909 2177 3655 2021 2296 3668 2022 2297 3669 1909 2177 3655 1415 1671 1956 1429 1685 1960 1998 2273 2095 2023 2298 2124 1998 2273 2095 1999 2274 2096 2023 2298 2124 1415 1671 1956 1998 2273 2095 2024 2299 2125 1999 2274 2096 2000 2275 2097 2024 2299 2125 2023 2298 2124 1999 2274 2096 2025 2300 2126 2000 2275 2097 2001 2276 2100 2025 2300 2126 2024 2299 2125 2000 2275 2097 2026 2301 2127 2001 2276 2100 2002 2277 2101 2026 2301 2127 2025 2300 2126 2001 2276 2100 2027 2302 2128 2002 2277 2101 2003 2278 2102 2027 2302 2128 2026 2301 2127 2002 2277 2101 2028 2303 2129 2003 2278 2102 2004 2279 2104 2028 2303 2129 2027 2302 2128 2003 2278 2102 2029 2304 2130 2004 2279 2104 2005 2280 2105 2029 2304 2130 2028 2303 2129 2004 2279 2104 2030 2305 2131 2005 2280 2105 2006 2281 2107 2030 2305 2131 2029 2304 2130 2005 2280 2105 2031 2306 2132 2006 2281 2107 2007 2282 2110 2031 2306 2132 2030 2305 2131 2006 2281 2107 2032 2307 2133 2007 2282 2110 2008 2283 2111 2032 2307 2133 2031 2306 2132 2007 2282 2110 2033 2308 2134 2008 2283 2111 2009 2284 2112 2033 2308 2134 2032 2307 2133 2008 2283 2111 2034 2309 2135 2009 2284 2112 2010 2285 2113 2034 2309 2135 2033 2308 2134 2009 2284 2112 2035 2310 2136 2010 2285 2113 2011 2286 2114 2035 2310 2136 2034 2309 2135 2010 2285 2113 2036 2311 2137 2011 2286 2114 2012 2287 2115 2036 2311 2137 2035 2310 2136 2011 2286 2114 2037 2312 2138 2012 2287 2115 2013 2288 2116 2037 2312 2138 2036 2311 2137 2012 2287 2115 2038 2313 2139 2013 2288 2116 2014 2289 2117 2038 2313 2139 2037 2312 2138 2013 2288 2116 2039 2314 2140 2014 2289 2117 2015 2290 2118 2039 2314 2140 2038 2313 2139 2014 2289 2117 2040 2315 2141 2015 2290 2118 2016 2291 2119 2040 2315 2141 2039 2314 2140 2015 2290 2118 2041 2316 2142 2016 2291 2119 2017 2292 2120 2041 2316 2142 2040 2315 2141 2016 2291 2119 2042 2317 2143 2017 2292 2120 2018 2293 2121 2042 2317 2143 2041 2316 2142 2017 2292 2120 2043 2318 2144 2018 2293 2121 2019 2294 2122 2043 2318 2144 2042 2317 2143 2018 2293 2121 2044 2319 2145 2019 2294 2122 2020 2295 2123 2044 2319 2145 2043 2318 2144 2019 2294 2122 2045 2320 2146 2020 2295 2123 1912 2181 2005 2045 2320 2146 2044 2319 2145 2020 2295 2123 1914 2183 2007 2046 2321 2147 2047 2322 2148 1398 1654 1951 1415 1671 1956 2023 2298 2124 2048 2323 2149 2023 2298 2124 2024 2299 2125 1398 1654 1951 2023 2298 2124 2048 2323 2149 2049 2324 2150 2024 2299 2125 2025 2300 2126 2048 2323 2149 2024 2299 2125 2049 2324 2150 2050 2325 2151 2025 2300 2126 2026 2301 2127 2049 2324 2150 2025 2300 2126 2050 2325 2151 2051 2326 2152 2026 2301 2127 2027 2302 2128 2050 2325 2151 2026 2301 2127 2051 2326 2152 2052 2327 2153 2027 2302 2128 2028 2303 2129 2051 2326 2152 2027 2302 2128 2052 2327 2153 2053 2328 2154 2028 2303 2129 2029 2304 2130 2052 2327 2153 2028 2303 2129 2053 2328 2154 2054 2329 2155 2029 2304 2130 2030 2305 2131 2053 2328 2154 2029 2304 2130 2054 2329 2155 2055 2330 2156 2030 2305 2131 2031 2306 2132 2054 2329 2155 2030 2305 2131 2055 2330 2156 2056 2331 2157 2031 2306 2132 2032 2307 2133 2055 2330 2156 2031 2306 2132 2056 2331 2157 2057 2332 2158 2032 2307 2133 2033 2308 2134 2056 2331 2157 2032 2307 2133 2057 2332 2158 2058 2333 2159 2033 2308 2134 2034 2309 2135 2057 2332 2158 2033 2308 2134 2058 2333 2159 2059 2334 2160 2034 2309 2135 2035 2310 2136 2058 2333 2159 2034 2309 2135 2059 2334 2160 2060 2335 2161 2035 2310 2136 2036 2311 2137 2059 2334 2160 2035 2310 2136 2060 2335 2161 2061 2336 2162 2036 2311 2137 2037 2312 2138 2060 2335 2161 2036 2311 2137 2061 2336 2162 2062 2337 2163 2037 2312 2138 2038 2313 2139 2061 2336 2162 2037 2312 2138 2062 2337 2163 2063 2338 2164 2038 2313 2139 2039 2314 2140 2062 2337 2163 2038 2313 2139 2063 2338 2164 2064 2339 2165 2039 2314 2140 2040 2315 2141 2063 2338 2164 2039 2314 2140 2064 2339 2165 2065 2340 2166 2040 2315 2141 2041 2316 2142 2064 2339 2165 2040 2315 2141 2065 2340 2166 2066 2341 2167 2041 2316 2142 2042 2317 2143 2065 2340 2166 2041 2316 2142 2066 2341 2167 2043 2318 2144 2067 2342 2168 2042 2317 2143 2068 2343 2169 2042 2317 2143 2067 2342 2168 2066 2341 2167 2042 2317 2143 2068 2343 2169 2069 2344 2170 2067 2342 2168 2043 2318 2144 2068 2343 2169 2067 2342 2168 2070 2345 2171 2071 2346 2172 2070 2345 2171 2067 2342 2168 2071 2346 2172 2067 2342 2168 2069 2344 2170 2069 2347 596 2043 2348 621 2044 2349 622 2072 2350 623 2044 2349 622 2045 2351 1896 2072 2350 623 2069 2347 596 2044 2349 622 2073 2352 1897 2045 2351 1896 1912 2353 1898 2073 2352 1897 2072 2350 623 2045 2351 1896 2074 2354 1903 2073 2352 1897 1912 2353 1898 1916 2185 3659 2074 2355 3670 1912 2186 3660 2075 2356 2173 741 874 766 745 879 771 2076 2357 2174 741 874 766 2075 2356 2173 2076 2357 2174 742 875 767 741 874 766 2077 2358 2175 745 879 771 748 882 774 2077 2358 2175 2075 2356 2173 745 879 771 2078 2359 2176 748 882 774 751 885 777 2078 2359 2176 2077 2358 2175 748 882 774 2079 2360 2177 751 885 777 754 888 780 2079 2360 2177 2078 2359 2176 751 885 777 2080 2361 2178 754 888 780 757 891 783 2080 2361 2178 2079 2360 2177 754 888 780 2081 2362 2179 757 891 783 760 894 786 2081 2362 2179 2080 2361 2178 757 891 783 2082 2363 2180 760 894 786 763 897 789 2082 2363 2180 2081 2362 2179 760 894 786 2083 2364 2181 763 897 789 766 900 792 2083 2364 2181 2082 2363 2180 763 897 789 2084 2365 2182 766 900 792 769 903 795 2084 2365 2182 2083 2364 2181 766 900 792 2085 2366 2183 769 903 795 772 906 798 2085 2366 2183 2084 2365 2182 769 903 795 2086 2367 2184 772 906 798 775 909 801 2086 2367 2184 2085 2366 2183 772 906 798 2087 2368 2185 775 909 801 778 912 804 2087 2368 2185 2086 2367 2184 775 909 801 2088 2369 2186 778 912 804 781 915 807 2088 2369 2186 2087 2368 2185 778 912 804 2089 2370 2187 781 915 807 784 918 810 2089 2370 2187 2088 2369 2186 781 915 807 2090 2371 2188 784 918 810 787 921 813 2090 2371 2188 2089 2370 2187 784 918 810 2091 2372 2189 787 921 813 790 924 816 2091 2372 2189 2090 2371 2188 787 921 813 2092 2373 2190 790 924 816 793 927 819 2092 2373 2190 2091 2372 2189 790 924 816 2093 2374 2191 793 927 819 796 930 822 2093 2374 2191 2092 2373 2190 793 927 819 2094 2375 2192 796 930 822 799 933 825 2094 2375 2192 2093 2374 2191 796 930 822 2095 2376 2193 799 933 825 800 934 826 2095 2376 2193 2094 2375 2192 799 933 825 2096 2377 2194 800 934 826 666 787 732 2096 2377 2194 2095 2376 2193 800 934 826 1379 1635 1946 2096 2377 2194 666 787 732 2070 2345 2171 2075 2356 2173 2077 2358 2175 2097 2378 2195 2075 2356 2173 2070 2345 2171 2097 2378 2195 2076 2357 2174 2075 2356 2173 2068 2343 2169 2077 2358 2175 2078 2359 2176 2068 2343 2169 2070 2345 2171 2077 2358 2175 2066 2341 2167 2078 2359 2176 2079 2360 2177 2066 2341 2167 2068 2343 2169 2078 2359 2176 2065 2340 2166 2079 2360 2177 2080 2361 2178 2065 2340 2166 2066 2341 2167 2079 2360 2177 2064 2339 2165 2080 2361 2178 2081 2362 2179 2064 2339 2165 2065 2340 2166 2080 2361 2178 2063 2338 2164 2081 2362 2179 2082 2363 2180 2063 2338 2164 2064 2339 2165 2081 2362 2179 2062 2337 2163 2082 2363 2180 2083 2364 2181 2062 2337 2163 2063 2338 2164 2082 2363 2180 2061 2336 2162 2083 2364 2181 2084 2365 2182 2061 2336 2162 2062 2337 2163 2083 2364 2181 2060 2335 2161 2084 2365 2182 2085 2366 2183 2060 2335 2161 2061 2336 2162 2084 2365 2182 2059 2334 2160 2085 2366 2183 2086 2367 2184 2059 2334 2160 2060 2335 2161 2085 2366 2183 2058 2333 2159 2086 2367 2184 2087 2368 2185 2058 2333 2159 2059 2334 2160 2086 2367 2184 2057 2332 2158 2087 2368 2185 2088 2369 2186 2057 2332 2158 2058 2333 2159 2087 2368 2185 2056 2331 2157 2088 2369 2186 2089 2370 2187 2056 2331 2157 2057 2332 2158 2088 2369 2186 2055 2330 2156 2089 2370 2187 2090 2371 2188 2055 2330 2156 2056 2331 2157 2089 2370 2187 2054 2329 2155 2090 2371 2188 2091 2372 2189 2054 2329 2155 2055 2330 2156 2090 2371 2188 2053 2328 2154 2091 2372 2189 2092 2373 2190 2053 2328 2154 2054 2329 2155 2091 2372 2189 2052 2327 2153 2092 2373 2190 2093 2374 2191 2052 2327 2153 2053 2328 2154 2092 2373 2190 2051 2326 2152 2093 2374 2191 2094 2375 2192 2051 2326 2152 2052 2327 2153 2093 2374 2191 2050 2325 2151 2094 2375 2192 2095 2376 2193 2050 2325 2151 2051 2326 2152 2094 2375 2192 2049 2324 2150 2095 2376 2193 2096 2377 2194 2049 2324 2150 2050 2325 2151 2095 2376 2193 2048 2323 2149 2096 2377 2194 1379 1635 1946 2048 2323 2149 2049 2324 2150 2096 2377 2194 1398 1654 1951 2048 2323 2149 1379 1635 1946 2071 2346 2172 2097 2378 2195 2070 2345 2171 1920 2191 2011 720 841 752 727 853 756 2098 2379 3928 720 849 1408 1920 2193 3927 724 847 1406 720 849 1408 2098 2379 3928 1919 2190 2010 727 853 756 731 859 759 1919 2190 2010 1920 2191 2011 727 853 756 1919 2190 2010 731 859 759 1917 2187 2009 2099 2380 3671 1917 2189 3662 731 861 1039 2099 2380 3671 731 861 1039 730 860 1038 1918 2188 3661 1917 2189 3662 2099 2380 3671 1921 2192 3926 2098 2379 3928 1920 2193 3927 2100 2381 2196 2101 2382 2197 2102 2383 2198 2103 2384 3929 2102 2385 3930 2101 2386 3931 2104 2387 2199 2100 2381 2196 2102 2383 2198 2105 2388 2200 2104 2387 2199 2102 2383 2198 2106 2389 3932 2105 2390 3933 2102 2385 3930 2103 2384 3929 2106 2389 3932 2102 2385 3930 2100 2381 2196 2107 2391 2201 2101 2382 2197 2108 2392 2202 2101 2382 2197 2107 2391 2201 2109 2393 3934 2101 2386 3931 2108 2394 3935 2109 2393 3934 2103 2384 3929 2101 2386 3931 2100 2381 2196 2110 2395 2203 2107 2391 2201 2111 2396 2204 2107 2391 2201 2110 2395 2203 2111 2396 2204 2108 2392 2202 2107 2391 2201 2112 2397 2205 2113 2398 2209 2110 2395 2203 2114 2399 2210 2110 2395 2203 2113 2398 2209 2100 2381 2196 2112 2397 2205 2110 2395 2203 2114 2399 2210 2111 2396 2204 2110 2395 2203 2115 2400 2211 2116 2401 2212 2113 2398 2209 2117 2402 2213 2113 2398 2209 2116 2401 2212 2112 2397 2205 2115 2400 2211 2113 2398 2209 2117 2402 2213 2114 2399 2210 2113 2398 2209 2118 2403 2214 2119 2404 2215 2116 2401 2212 2120 2405 2216 2116 2401 2212 2119 2404 2215 2115 2400 2211 2118 2403 2214 2116 2401 2212 2120 2405 2216 2117 2402 2213 2116 2401 2212 2121 2406 2217 2122 2407 2218 2119 2404 2215 2123 2408 2219 2119 2404 2215 2122 2407 2218 2118 2403 2214 2121 2406 2217 2119 2404 2215 2123 2408 2219 2120 2405 2216 2119 2404 2215 2124 2409 2220 2125 2410 2221 2122 2407 2218 2126 2411 2222 2122 2407 2218 2125 2410 2221 2121 2406 2217 2124 2409 2220 2122 2407 2218 2126 2411 2222 2123 2408 2219 2122 2407 2218 2127 2412 2223 2128 2413 2224 2125 2410 2221 2129 2414 2225 2125 2410 2221 2128 2413 2224 2124 2409 2220 2127 2412 2223 2125 2410 2221 2129 2414 2225 2126 2411 2222 2125 2410 2221 2130 2415 2226 2131 2416 2227 2128 2413 2224 2132 2417 2228 2128 2413 2224 2131 2416 2227 2127 2412 2223 2130 2415 2226 2128 2413 2224 2132 2417 2228 2129 2414 2225 2128 2413 2224 2133 2418 2229 2134 2419 2230 2131 2416 2227 2135 2420 2231 2131 2416 2227 2134 2419 2230 2130 2415 2226 2133 2418 2229 2131 2416 2227 2135 2420 2231 2132 2417 2228 2131 2416 2227 2136 2421 2238 2137 2422 2239 2134 2419 2230 2138 2423 2240 2134 2419 2230 2137 2422 2239 2133 2418 2229 2136 2421 2238 2134 2419 2230 2138 2423 2240 2135 2420 2231 2134 2419 2230 2139 2424 2241 2140 2425 2242 2137 2422 2239 2141 2426 2243 2137 2422 2239 2140 2425 2242 2136 2421 2238 2139 2424 2241 2137 2422 2239 2141 2426 2243 2138 2423 2240 2137 2422 2239 2142 2427 2244 2143 2428 2245 2140 2425 2242 2144 2429 2246 2140 2425 2242 2143 2428 2245 2139 2424 2241 2142 2427 2244 2140 2425 2242 2144 2429 2246 2141 2426 2243 2140 2425 2242 2145 2430 2247 2146 2431 2248 2143 2428 2245 2147 2432 2249 2143 2428 2245 2146 2431 2248 2142 2427 2244 2145 2430 2247 2143 2428 2245 2147 2432 2249 2144 2429 2246 2143 2428 2245 2148 2433 2250 2149 2434 2251 2146 2431 2248 2150 2435 2252 2146 2431 2248 2149 2434 2251 2145 2430 2247 2148 2433 2250 2146 2431 2248 2150 2435 2252 2147 2432 2249 2146 2431 2248 2151 2436 2253 2152 2437 2254 2149 2434 2251 2153 2438 2255 2149 2434 2251 2152 2437 2254 2148 2433 2250 2151 2436 2253 2149 2434 2251 2153 2438 2255 2150 2435 2252 2149 2434 2251 2154 2439 2256 2155 2440 2257 2152 2437 2254 2156 2441 2258 2152 2437 2254 2155 2440 2257 2151 2436 2253 2154 2439 2256 2152 2437 2254 2156 2441 2258 2153 2438 2255 2152 2437 2254 2157 2442 2259 2158 2443 2260 2155 2440 2257 2159 2444 2261 2155 2440 2257 2158 2443 2260 2154 2439 2256 2157 2442 2259 2155 2440 2257 2159 2444 2261 2156 2441 2258 2155 2440 2257 2160 2445 2262 2161 2446 2263 2158 2443 2260 2162 2447 2264 2158 2443 2260 2161 2446 2263 2157 2442 2259 2160 2445 2262 2158 2443 2260 2162 2447 2264 2159 2444 2261 2158 2443 2260 2163 2448 2265 2164 2449 2266 2161 2446 2263 2165 2450 2267 2161 2446 2263 2164 2449 2266 2160 2445 2262 2163 2448 2265 2161 2446 2263 2165 2450 2267 2162 2447 2264 2161 2446 2263 2166 2451 2268 2167 2452 2269 2164 2449 2266 2168 2453 2270 2164 2449 2266 2167 2452 2269 2163 2448 2265 2166 2451 2268 2164 2449 2266 2168 2453 2270 2165 2450 2267 2164 2449 2266 2169 2454 2271 2170 2455 2272 2167 2452 2269 2171 2456 2273 2167 2452 2269 2170 2455 2272 2166 2451 2268 2169 2454 2271 2167 2452 2269 2171 2456 2273 2168 2453 2270 2167 2452 2269 2172 2457 2274 2173 2458 2275 2170 2455 2272 2174 2459 2276 2170 2455 2272 2173 2458 2275 2169 2454 2271 2172 2457 2274 2170 2455 2272 2174 2459 2276 2171 2456 2273 2170 2455 2272 2175 2460 2277 2176 2461 2278 2173 2458 2275 2177 2462 2279 2173 2458 2275 2176 2461 2278 2172 2457 2274 2175 2460 2277 2173 2458 2275 2177 2462 2279 2174 2459 2276 2173 2458 2275 1800 2056 1966 1798 2054 1964 2176 2461 2278 2178 2463 2280 2176 2461 2278 1798 2054 1964 2175 2460 2277 1800 2056 1966 2176 2461 2278 2178 2463 2280 2177 2462 2279 2176 2461 2278 1804 2060 1970 2178 2463 2280 1798 2054 1964 2179 2464 2281 1800 2056 1966 2175 2460 2277 2180 2465 2282 1801 2057 1967 1800 2056 1966 2181 2466 2283 2180 2465 2282 1800 2056 1966 2179 2464 2281 2181 2466 2283 1800 2056 1966 2182 2467 2284 2175 2460 2277 2172 2457 2274 2182 2467 2284 2179 2464 2281 2175 2460 2277 2183 2468 2285 2172 2457 2274 2169 2454 2271 2183 2468 2285 2182 2467 2284 2172 2457 2274 2184 2469 2286 2169 2454 2271 2166 2451 2268 2184 2469 2286 2183 2468 2285 2169 2454 2271 2185 2470 2287 2166 2451 2268 2163 2448 2265 2185 2470 2287 2184 2469 2286 2166 2451 2268 2186 2471 2294 2163 2448 2265 2160 2445 2262 2186 2471 2294 2185 2470 2287 2163 2448 2265 2187 2472 2295 2160 2445 2262 2157 2442 2259 2187 2472 2295 2186 2471 2294 2160 2445 2262 2188 2473 2297 2157 2442 2259 2154 2439 2256 2188 2473 2297 2187 2472 2295 2157 2442 2259 2189 2474 2298 2154 2439 2256 2151 2436 2253 2189 2474 2298 2188 2473 2297 2154 2439 2256 2190 2475 2301 2151 2436 2253 2148 2433 2250 2190 2475 2301 2189 2474 2298 2151 2436 2253 2191 2476 2304 2148 2433 2250 2145 2430 2247 2191 2476 2304 2190 2475 2301 2148 2433 2250 2192 2477 2306 2145 2430 2247 2142 2427 2244 2192 2477 2306 2191 2476 2304 2145 2430 2247 2193 2478 2310 2142 2427 2244 2139 2424 2241 2193 2478 2310 2192 2477 2306 2142 2427 2244 2194 2479 2311 2139 2424 2241 2136 2421 2238 2194 2479 2311 2193 2478 2310 2139 2424 2241 2195 2480 2314 2136 2421 2238 2133 2418 2229 2195 2480 2314 2194 2479 2311 2136 2421 2238 2196 2481 2317 2133 2418 2229 2130 2415 2226 2196 2481 2317 2195 2480 2314 2133 2418 2229 2197 2482 2320 2130 2415 2226 2127 2412 2223 2197 2482 2320 2196 2481 2317 2130 2415 2226 2198 2483 2323 2127 2412 2223 2124 2409 2220 2198 2483 2323 2197 2482 2320 2127 2412 2223 2199 2484 2326 2124 2409 2220 2121 2406 2217 2199 2484 2326 2198 2483 2323 2124 2409 2220 2200 2485 2329 2121 2406 2217 2118 2403 2214 2200 2485 2329 2199 2484 2326 2121 2406 2217 2201 2486 2332 2118 2403 2214 2115 2400 2211 2201 2486 2332 2200 2485 2329 2118 2403 2214 2202 2487 2335 2115 2400 2211 2112 2397 2205 2202 2487 2335 2201 2486 2332 2115 2400 2211 2203 2488 2338 2112 2397 2205 2100 2381 2196 2203 2488 2338 2202 2487 2335 2112 2397 2205 2104 2387 2199 2203 2488 2338 2100 2381 2196 1914 2183 2007 2047 2322 2148 1915 2184 2008 2046 2321 2147 2204 2489 2341 2205 2490 2344 2206 2491 3936 2109 2393 3934 2108 2394 3935 2207 2492 2347 2111 2396 2204 2114 2399 2210 2208 2493 2350 2108 2392 2202 2111 2396 2204 2207 2492 2347 2208 2493 2350 2111 2396 2204 2209 2494 2353 2114 2399 2210 2117 2402 2213 2210 2495 2356 2207 2492 2347 2114 2399 2210 2209 2494 2353 2210 2495 2356 2114 2399 2210 2211 2496 2359 2117 2402 2213 2120 2405 2216 2211 2496 2359 2209 2494 2353 2117 2402 2213 2212 2497 2362 2120 2405 2216 2123 2408 2219 2212 2497 2362 2211 2496 2359 2120 2405 2216 2213 2498 2365 2123 2408 2219 2126 2411 2222 2213 2498 2365 2212 2497 2362 2123 2408 2219 2214 2499 2368 2126 2411 2222 2129 2414 2225 2214 2499 2368 2213 2498 2365 2126 2411 2222 2215 2500 2371 2129 2414 2225 2132 2417 2228 2215 2500 2371 2214 2499 2368 2129 2414 2225 2216 2501 2374 2132 2417 2228 2135 2420 2231 2216 2501 2374 2215 2500 2371 2132 2417 2228 2217 2502 2377 2135 2420 2231 2138 2423 2240 2217 2502 2377 2216 2501 2374 2135 2420 2231 2218 2503 2380 2138 2423 2240 2141 2426 2243 2218 2503 2380 2217 2502 2377 2138 2423 2240 2219 2504 2383 2141 2426 2243 2144 2429 2246 2219 2504 2383 2218 2503 2380 2141 2426 2243 2220 2505 2386 2144 2429 2246 2147 2432 2249 2220 2505 2386 2219 2504 2383 2144 2429 2246 2221 2506 2387 2147 2432 2249 2150 2435 2252 2221 2506 2387 2220 2505 2386 2147 2432 2249 2222 2507 2390 2150 2435 2252 2153 2438 2255 2222 2507 2390 2221 2506 2387 2150 2435 2252 2223 2508 2391 2153 2438 2255 2156 2441 2258 2223 2508 2391 2222 2507 2390 2153 2438 2255 2224 2509 2507 2156 2441 2258 2159 2444 2261 2224 2509 2507 2223 2508 2391 2156 2441 2258 2225 2510 2508 2159 2444 2261 2162 2447 2264 2225 2510 2508 2224 2509 2507 2159 2444 2261 2226 2511 2509 2162 2447 2264 2165 2450 2267 2226 2511 2509 2225 2510 2508 2162 2447 2264 2227 2512 2510 2165 2450 2267 2168 2453 2270 2227 2512 2510 2226 2511 2509 2165 2450 2267 2228 2513 2511 2168 2453 2270 2171 2456 2273 2228 2513 2511 2227 2512 2510 2168 2453 2270 2229 2514 2512 2171 2456 2273 2174 2459 2276 2229 2514 2512 2228 2513 2511 2171 2456 2273 2230 2515 2513 2174 2459 2276 2177 2462 2279 2230 2515 2513 2229 2514 2512 2174 2459 2276 2231 2516 2514 2177 2462 2279 2178 2463 2280 2231 2516 2514 2230 2515 2513 2177 2462 2279 1894 2150 1996 2178 2463 2280 1804 2060 1970 1894 2150 1996 2231 2516 2514 2178 2463 2280 2232 2517 1904 2108 2518 1906 2208 2519 1912 2233 2520 2043 2234 2521 2044 2108 2518 1906 2235 2522 2045 2108 2518 1906 2234 2521 2044 2233 2520 2043 2108 2518 1906 2232 2517 1904 1901 2163 3495 2108 2523 3517 2235 2524 3518 1902 2162 3494 2108 2523 3517 1901 2163 3495 2236 2525 3937 2206 2491 3936 2108 2394 3935 1902 2526 3938 2236 2525 3937 2108 2394 3935 2237 2527 2069 2208 2519 1912 2207 2528 2072 2237 2527 2069 2232 2517 1904 2208 2519 1912 2238 2529 2515 2207 2492 2347 2210 2495 2356 2238 2529 2515 2237 2530 2516 2207 2492 2347 2239 2531 2517 2210 2495 2356 2209 2494 2353 2240 2532 2518 2210 2495 2356 2239 2531 2517 2240 2532 2518 2238 2529 2515 2210 2495 2356 2241 2533 2519 2209 2494 2353 2211 2496 2359 2241 2533 2519 2239 2531 2517 2209 2494 2353 2242 2534 2520 2211 2496 2359 2212 2497 2362 2242 2534 2520 2241 2533 2519 2211 2496 2359 2243 2535 2521 2212 2497 2362 2213 2498 2365 2243 2535 2521 2242 2534 2520 2212 2497 2362 2244 2536 2522 2213 2498 2365 2214 2499 2368 2244 2536 2522 2243 2535 2521 2213 2498 2365 2245 2537 2523 2214 2499 2368 2215 2500 2371 2245 2537 2523 2244 2536 2522 2214 2499 2368 2246 2538 2524 2215 2500 2371 2216 2501 2374 2246 2538 2524 2245 2537 2523 2215 2500 2371 2247 2539 2525 2216 2501 2374 2217 2502 2377 2247 2539 2525 2246 2538 2524 2216 2501 2374 2248 2540 2526 2217 2502 2377 2218 2503 2380 2248 2540 2526 2247 2539 2525 2217 2502 2377 2249 2541 2527 2218 2503 2380 2219 2504 2383 2249 2541 2527 2248 2540 2526 2218 2503 2380 2250 2542 2528 2219 2504 2383 2220 2505 2386 2250 2542 2528 2249 2541 2527 2219 2504 2383 2251 2543 2529 2220 2505 2386 2221 2506 2387 2251 2543 2529 2250 2542 2528 2220 2505 2386 2252 2544 2530 2221 2506 2387 2222 2507 2390 2252 2544 2530 2251 2543 2529 2221 2506 2387 2253 2545 2531 2222 2507 2390 2223 2508 2391 2253 2545 2531 2252 2544 2530 2222 2507 2390 2254 2546 2532 2223 2508 2391 2224 2509 2507 2254 2546 2532 2253 2545 2531 2223 2508 2391 2255 2547 2533 2224 2509 2507 2225 2510 2508 2255 2547 2533 2254 2546 2532 2224 2509 2507 2256 2548 2534 2225 2510 2508 2226 2511 2509 2256 2548 2534 2255 2547 2533 2225 2510 2508 2257 2549 2905 2226 2511 2509 2227 2512 2510 2257 2549 2905 2256 2548 2534 2226 2511 2509 2258 2550 2906 2227 2512 2510 2228 2513 2511 2258 2550 2906 2257 2549 2905 2227 2512 2510 2259 2551 3370 2228 2513 2511 2229 2514 2512 2259 2551 3370 2258 2550 2906 2228 2513 2511 2260 2552 3372 2229 2514 2512 2230 2515 2513 2260 2552 3372 2259 2551 3370 2229 2514 2512 2261 2553 3373 2230 2515 2513 2231 2516 2514 2261 2553 3373 2260 2552 3372 2230 2515 2513 2262 2554 3374 2231 2516 2514 1894 2150 1996 2262 2554 3374 2261 2553 3373 2231 2516 2514 1882 2138 1993 2262 2554 3374 1894 2150 1996 2263 2555 3375 2239 2531 2517 2241 2533 2519 2264 2556 3385 2239 2531 2517 2263 2555 3375 2264 2556 3385 2240 2532 2518 2239 2531 2517 2265 2557 3387 2241 2533 2519 2242 2534 2520 2265 2557 3387 2263 2555 3375 2241 2533 2519 2266 2558 3388 2242 2534 2520 2243 2535 2521 2266 2558 3388 2265 2557 3387 2242 2534 2520 2267 2559 3389 2243 2535 2521 2244 2536 2522 2267 2559 3389 2266 2558 3388 2243 2535 2521 2268 2560 3398 2244 2536 2522 2245 2537 2523 2268 2560 3398 2267 2559 3389 2244 2536 2522 2269 2561 3399 2245 2537 2523 2246 2538 2524 2269 2561 3399 2268 2560 3398 2245 2537 2523 2270 2562 3400 2246 2538 2524 2247 2539 2525 2270 2562 3400 2269 2561 3399 2246 2538 2524 2271 2563 3401 2247 2539 2525 2248 2540 2526 2271 2563 3401 2270 2562 3400 2247 2539 2525 2272 2564 3402 2248 2540 2526 2249 2541 2527 2272 2564 3402 2271 2563 3401 2248 2540 2526 2273 2565 3403 2249 2541 2527 2250 2542 2528 2273 2565 3403 2272 2564 3402 2249 2541 2527 2274 2566 3404 2250 2542 2528 2251 2543 2529 2274 2566 3404 2273 2565 3403 2250 2542 2528 2275 2567 3429 2251 2543 2529 2252 2544 2530 2275 2567 3429 2274 2566 3404 2251 2543 2529 2276 2568 3433 2252 2544 2530 2253 2545 2531 2276 2568 3433 2275 2567 3429 2252 2544 2530 2277 2569 3436 2253 2545 2531 2254 2546 2532 2277 2569 3436 2276 2568 3433 2253 2545 2531 2278 2570 3440 2254 2546 2532 2255 2547 2533 2278 2570 3440 2277 2569 3436 2254 2546 2532 2279 2571 3442 2255 2547 2533 2256 2548 2534 2279 2571 3442 2278 2570 3440 2255 2547 2533 2280 2572 3465 2256 2548 2534 2257 2549 2905 2280 2572 3465 2279 2571 3442 2256 2548 2534 2281 2573 3468 2257 2549 2905 2258 2550 2906 2281 2573 3468 2280 2572 3465 2257 2549 2905 2282 2574 3472 2258 2550 2906 2259 2551 3370 2282 2574 3472 2281 2573 3468 2258 2550 2906 2283 2575 3478 2259 2551 3370 2260 2552 3372 2283 2575 3478 2282 2574 3472 2259 2551 3370 2284 2576 3479 2260 2552 3372 2261 2553 3373 2284 2576 3479 2283 2575 3478 2260 2552 3372 2285 2577 3480 2261 2553 3373 2262 2554 3374 2285 2577 3480 2284 2576 3479 2261 2553 3373 2286 2578 3481 2262 2554 3374 1882 2138 1993 2286 2578 3481 2285 2577 3480 2262 2554 3374 1868 2124 1988 2286 2578 3481 1882 2138 1993 933 1069 962 2263 2555 3375 2265 2557 3387 2287 2579 3482 2263 2555 3375 933 1069 962 2287 2579 3482 2264 2556 3385 2263 2555 3375 931 1065 961 2265 2557 3387 2266 2558 3388 931 1065 961 933 1069 962 2265 2557 3387 930 1064 960 2266 2558 3388 2267 2559 3389 930 1064 960 931 1065 961 2266 2558 3388 929 1063 959 2267 2559 3389 2268 2560 3398 929 1063 959 930 1064 960 2267 2559 3389 928 1062 958 2268 2560 3398 2269 2561 3399 928 1062 958 929 1063 959 2268 2560 3398 927 1061 957 2269 2561 3399 2270 2562 3400 927 1061 957 928 1062 958 2269 2561 3399 926 1060 956 2270 2562 3400 2271 2563 3401 926 1060 956 927 1061 957 2270 2562 3400 925 1059 955 2271 2563 3401 2272 2564 3402 925 1059 955 926 1060 956 2271 2563 3401 924 1058 954 2272 2564 3402 2273 2565 3403 924 1058 954 925 1059 955 2272 2564 3402 923 1057 953 2273 2565 3403 2274 2566 3404 923 1057 953 924 1058 954 2273 2565 3403 922 1056 952 2274 2566 3404 2275 2567 3429 922 1056 952 923 1057 953 2274 2566 3404 921 1055 951 2275 2567 3429 2276 2568 3433 921 1055 951 922 1056 952 2275 2567 3429 920 1054 950 2276 2568 3433 2277 2569 3436 920 1054 950 921 1055 951 2276 2568 3433 919 1053 949 2277 2569 3436 2278 2570 3440 919 1053 949 920 1054 950 2277 2569 3436 918 1052 948 2278 2570 3440 2279 2571 3442 918 1052 948 919 1053 949 2278 2570 3440 917 1051 947 2279 2571 3442 2280 2572 3465 917 1051 947 918 1052 948 2279 2571 3442 916 1050 946 2280 2572 3465 2281 2573 3468 916 1050 946 917 1051 947 2280 2572 3465 915 1049 945 2281 2573 3468 2282 2574 3472 915 1049 945 916 1050 946 2281 2573 3468 914 1048 944 2282 2574 3472 2283 2575 3478 914 1048 944 915 1049 945 2282 2574 3472 913 1047 943 2283 2575 3478 2284 2576 3479 913 1047 943 914 1048 944 2283 2575 3478 912 1046 942 2284 2576 3479 2285 2577 3480 912 1046 942 913 1047 943 2284 2576 3479 911 1045 941 2285 2577 3480 2286 2578 3481 911 1045 941 912 1046 942 2285 2577 3480 910 1044 940 2286 2578 3481 1868 2124 1988 910 1044 940 911 1045 941 2286 2578 3481 909 1043 939 910 1044 940 1868 2124 1988 2287 2579 3482 933 1069 962 932 1070 963 2288 2580 2073 2289 2581 2074 2290 2582 2108 2291 2583 3672 2290 2584 3673 2289 2585 3674 2292 2586 2207 2288 2580 2073 2290 2582 2108 2293 2587 2208 2292 2586 2207 2290 2582 2108 2294 2588 3483 2293 2589 3484 2290 2590 3485 2294 2588 3483 2290 2590 3485 2295 2591 3529 2291 2583 3672 2295 2592 3675 2290 2584 3673 2288 2580 2073 2296 2593 2232 2289 2581 2074 2297 2594 3530 2289 2595 3531 2296 2596 3532 2298 2597 3676 2291 2583 3672 2289 2585 3674 2297 2594 3530 2298 2598 3533 2289 2595 3531 2299 2599 2233 2300 2600 2234 2296 2593 2232 2301 2601 3537 2296 2596 3532 2300 2602 3539 2288 2580 2073 2299 2599 2233 2296 2593 2232 2301 2601 3537 2297 2594 3530 2296 2596 3532 2302 2603 2235 2303 2604 2237 2300 2600 2234 2304 2605 3939 2300 2606 3940 2303 2607 3941 2299 2599 2233 2302 2603 2235 2300 2600 2234 2304 2608 3540 2301 2601 3537 2300 2602 3539 2302 2603 2235 2305 2609 2288 2303 2604 2237 2306 2610 3541 2303 2611 3542 2305 2612 3548 2307 2613 3942 2303 2607 3941 2306 2614 3943 2304 2605 3939 2303 2607 3941 2307 2613 3942 2308 2615 2289 2309 2616 2290 2305 2609 2288 2310 2617 3549 2305 2612 3548 2309 2618 3550 2302 2603 2235 2308 2615 2289 2305 2609 2288 2311 2619 3551 2306 2610 3541 2305 2612 3548 2311 2619 3551 2305 2612 3548 2310 2617 3549 2312 2620 2292 2313 2621 2293 2309 2616 2290 2314 2622 3552 2309 2618 3550 2313 2623 3553 2308 2615 2289 2312 2620 2292 2309 2616 2290 2310 2617 3549 2309 2618 3550 2314 2622 3552 2315 2624 2296 2316 2625 2299 2313 2621 2293 2317 2626 3554 2313 2623 3553 2316 2627 3564 2312 2620 2292 2315 2624 2296 2313 2621 2293 2314 2622 3552 2313 2623 3553 2317 2626 3554 2318 2628 2300 2319 2629 2302 2316 2625 2299 2320 2630 3565 2316 2627 3564 2319 2631 3566 2315 2624 2296 2318 2628 2300 2316 2625 2299 2317 2626 3554 2316 2627 3564 2320 2630 3565 2321 2632 2303 2322 2633 2305 2319 2629 2302 2323 2634 3567 2319 2631 3566 2322 2635 3568 2318 2628 2300 2321 2632 2303 2319 2629 2302 2320 2630 3565 2319 2631 3566 2323 2634 3567 2324 2636 2308 2325 2637 2309 2322 2633 2305 2326 2638 3569 2322 2635 3568 2325 2639 3570 2321 2632 2303 2324 2636 2308 2322 2633 2305 2323 2634 3567 2322 2635 3568 2326 2638 3569 2327 2640 2312 2328 2641 2313 2325 2637 2309 2329 2642 3584 2325 2639 3570 2328 2643 3585 2324 2636 2308 2327 2640 2312 2325 2637 2309 2326 2638 3569 2325 2639 3570 2329 2642 3584 2330 2644 2315 2331 2645 2316 2328 2641 2313 2332 2646 3587 2328 2643 3585 2331 2647 3589 2327 2640 2312 2330 2644 2315 2328 2641 2313 2329 2642 3584 2328 2643 3585 2332 2646 3587 2333 2648 2318 2334 2649 2319 2331 2645 2316 2335 2650 3592 2331 2647 3589 2334 2651 3598 2330 2644 2315 2333 2648 2318 2331 2645 2316 2332 2646 3587 2331 2647 3589 2335 2650 3592 2336 2652 2321 2337 2653 2322 2334 2649 2319 2338 2654 3599 2334 2651 3598 2337 2655 3600 2333 2648 2318 2336 2652 2321 2334 2649 2319 2335 2650 3592 2334 2651 3598 2338 2654 3599 2339 2656 2324 2340 2657 2325 2337 2653 2322 2341 2658 3601 2337 2655 3600 2340 2659 3602 2336 2652 2321 2339 2656 2324 2337 2653 2322 2338 2654 3599 2337 2655 3600 2341 2658 3601 2342 2660 2327 2343 2661 2328 2340 2657 2325 2344 2662 3603 2340 2659 3602 2343 2663 3604 2339 2656 2324 2342 2660 2327 2340 2657 2325 2341 2658 3601 2340 2659 3602 2344 2662 3603 2345 2664 2330 2346 2665 2331 2343 2661 2328 2347 2666 3605 2343 2663 3604 2346 2667 3606 2342 2660 2327 2345 2664 2330 2343 2661 2328 2344 2662 3603 2343 2663 3604 2347 2666 3605 2348 2668 2333 2349 2669 2334 2346 2665 2331 2350 2670 3607 2346 2667 3606 2349 2671 3608 2345 2664 2330 2348 2668 2333 2346 2665 2331 2347 2666 3605 2346 2667 3606 2350 2670 3607 2351 2672 2336 2352 2673 2337 2349 2669 2334 2353 2674 3622 2349 2671 3608 2352 2675 3629 2348 2668 2333 2351 2672 2336 2349 2669 2334 2350 2670 3607 2349 2671 3608 2353 2674 3622 2354 2676 2339 2355 2677 2340 2352 2673 2337 2356 2678 3636 2352 2675 3629 2355 2679 3638 2351 2672 2336 2354 2676 2339 2352 2673 2337 2353 2674 3622 2352 2675 3629 2356 2678 3636 2357 2680 2342 2358 2681 2343 2355 2677 2340 2359 2682 3639 2355 2679 3638 2358 2683 4439 2354 2676 2339 2357 2680 2342 2355 2677 2340 2356 2678 3636 2355 2679 3638 2359 2682 3639 2360 2684 2345 2361 2685 2346 2358 2681 2343 2362 2686 4440 2358 2683 4439 2361 2687 4441 2357 2680 2342 2360 2684 2345 2358 2681 2343 2359 2682 3639 2358 2683 4439 2362 2686 4440 2363 2688 2348 2364 2689 2349 2361 2685 2346 2365 2690 4442 2361 2687 4441 2364 2691 4443 2360 2684 2345 2363 2688 2348 2361 2685 2346 2362 2686 4440 2361 2687 4441 2365 2690 4442 2366 2692 2351 2367 2693 2352 2364 2689 2349 2368 2694 4444 2364 2691 4443 2367 2695 4445 2363 2688 2348 2366 2692 2351 2364 2689 2349 2365 2690 4442 2364 2691 4443 2368 2694 4444 2369 2696 2354 2370 2697 2355 2367 2693 2352 2371 2698 4446 2367 2695 4445 2370 2699 4447 2366 2692 2351 2369 2696 2354 2367 2693 2352 2368 2694 4444 2367 2695 4445 2371 2698 4446 2372 2700 2357 2373 2701 2358 2370 2697 2355 2374 2702 4448 2370 2699 4447 2373 2703 4449 2369 2696 2354 2372 2700 2357 2370 2697 2355 2371 2698 4446 2370 2699 4447 2374 2702 4448 2375 2704 2360 2376 2705 2361 2373 2701 2358 2377 2706 4450 2373 2703 4449 2376 2707 4451 2372 2700 2357 2375 2704 2360 2373 2701 2358 2374 2702 4448 2373 2703 4449 2377 2706 4450 2378 2708 2363 2379 2709 2364 2376 2705 2361 2380 2710 4452 2376 2707 4451 2379 2711 4453 2375 2704 2360 2378 2708 2363 2376 2705 2361 2377 2706 4450 2376 2707 4451 2380 2710 4452 2381 2712 2366 2382 2713 2367 2379 2709 2364 2383 2714 4454 2379 2711 4453 2382 2715 4455 2378 2708 2363 2381 2712 2366 2379 2709 2364 2380 2710 4452 2379 2711 4453 2383 2714 4454 2384 2716 2369 2385 2717 2370 2382 2713 2367 2386 2718 4456 2382 2715 4455 2385 2719 4457 2381 2712 2366 2384 2716 2369 2382 2713 2367 2387 2720 4458 2382 2715 4455 2386 2718 4456 2383 2714 4454 2382 2715 4455 2387 2720 4458 2388 2721 2372 2389 2722 2373 2385 2717 2370 2390 2723 4459 2385 2719 4457 2389 2724 4460 2384 2716 2369 2388 2721 2372 2385 2717 2370 2386 2718 4456 2385 2719 4457 2390 2723 4459 2391 2725 3677 2389 2724 3678 2388 2726 3679 2390 2723 4459 2389 2724 4460 2391 2725 4461 2392 2727 2375 2388 2721 2372 2384 2716 2369 2393 2728 2376 2388 2721 2372 2392 2727 2375 2394 2729 2378 2388 2721 2372 2393 2728 2376 2391 2725 3677 2388 2726 3679 2394 2730 3680 2395 2731 2379 2384 2716 2369 2381 2712 2366 2392 2727 2375 2384 2716 2369 2395 2731 2379 2396 2732 2381 2381 2712 2366 2378 2708 2363 2395 2731 2379 2381 2712 2366 2396 2732 2381 2397 2733 2382 2378 2708 2363 2375 2704 2360 2396 2732 2381 2378 2708 2363 2397 2733 2382 2398 2734 2384 2375 2704 2360 2372 2700 2357 2397 2733 2382 2375 2704 2360 2398 2734 2384 2399 2735 2385 2372 2700 2357 2369 2696 2354 2398 2734 2384 2372 2700 2357 2399 2735 2385 2400 2736 2388 2369 2696 2354 2366 2692 2351 2399 2735 2385 2369 2696 2354 2400 2736 2388 2401 2737 2389 2366 2692 2351 2363 2688 2348 2400 2736 2388 2366 2692 2351 2401 2737 2389 2402 2738 2392 2363 2688 2348 2360 2684 2345 2401 2737 2389 2363 2688 2348 2402 2738 2392 2403 2739 2393 2360 2684 2345 2357 2680 2342 2402 2738 2392 2360 2684 2345 2403 2739 2393 2404 2740 2394 2357 2680 2342 2354 2676 2339 2403 2739 2393 2357 2680 2342 2404 2740 2394 2405 2741 2395 2354 2676 2339 2351 2672 2336 2404 2740 2394 2354 2676 2339 2405 2741 2395 2406 2742 2396 2351 2672 2336 2348 2668 2333 2405 2741 2395 2351 2672 2336 2406 2742 2396 2407 2743 2397 2348 2668 2333 2345 2664 2330 2406 2742 2396 2348 2668 2333 2407 2743 2397 2408 2744 2398 2345 2664 2330 2342 2660 2327 2407 2743 2397 2345 2664 2330 2408 2744 2398 2409 2745 2399 2342 2660 2327 2339 2656 2324 2408 2744 2398 2342 2660 2327 2409 2745 2399 2410 2746 2400 2339 2656 2324 2336 2652 2321 2409 2745 2399 2339 2656 2324 2410 2746 2400 2411 2747 2401 2336 2652 2321 2333 2648 2318 2410 2746 2400 2336 2652 2321 2411 2747 2401 2412 2748 2402 2333 2648 2318 2330 2644 2315 2411 2747 2401 2333 2648 2318 2412 2748 2402 2413 2749 2403 2330 2644 2315 2327 2640 2312 2412 2748 2402 2330 2644 2315 2413 2749 2403 2414 2750 2404 2327 2640 2312 2324 2636 2308 2413 2749 2403 2327 2640 2312 2414 2750 2404 2415 2751 2405 2324 2636 2308 2321 2632 2303 2414 2750 2404 2324 2636 2308 2415 2751 2405 2416 2752 2406 2321 2632 2303 2318 2628 2300 2415 2751 2405 2321 2632 2303 2416 2752 2406 2417 2753 2407 2318 2628 2300 2315 2624 2296 2416 2752 2406 2318 2628 2300 2417 2753 2407 2418 2754 2408 2315 2624 2296 2312 2620 2292 2417 2753 2407 2315 2624 2296 2418 2754 2408 2419 2755 2409 2312 2620 2292 2308 2615 2289 2418 2754 2408 2312 2620 2292 2419 2755 2409 2420 2756 2410 2308 2615 2289 2302 2603 2235 2419 2755 2409 2308 2615 2289 2420 2756 2410 2421 2757 2411 2302 2603 2235 2299 2599 2233 2420 2756 2410 2302 2603 2235 2421 2757 2411 2422 2758 2412 2299 2599 2233 2288 2580 2073 2421 2757 2411 2299 2599 2233 2422 2758 2412 2423 2759 2413 2288 2580 2073 2292 2586 2207 2422 2758 2412 2288 2580 2073 2423 2759 2413 2293 2587 2208 2424 2760 2414 2292 2586 2207 2425 2761 2415 2292 2586 2207 2424 2760 2414 2423 2759 2413 2292 2586 2207 2425 2761 2415 2426 2762 2416 2427 2763 2417 2424 2760 2414 2428 2764 2418 2424 2760 2414 2427 2763 2417 2293 2587 2208 2426 2762 2416 2424 2760 2414 2425 2761 2415 2424 2760 2414 2428 2764 2418 2429 2765 2419 2430 2766 2420 2427 2763 2417 2431 2767 2421 2427 2763 2417 2430 2766 2420 2426 2762 2416 2429 2765 2419 2427 2763 2417 2428 2764 2418 2427 2763 2417 2431 2767 2421 2432 2768 2422 2433 2769 2423 2430 2766 2420 2434 2770 2424 2430 2766 2420 2433 2769 2423 2429 2765 2419 2432 2768 2422 2430 2766 2420 2431 2767 2421 2430 2766 2420 2434 2770 2424 2435 2771 2425 2436 2772 2426 2433 2769 2423 2437 2773 2427 2433 2769 2423 2436 2772 2426 2432 2768 2422 2435 2771 2425 2433 2769 2423 2434 2770 2424 2433 2769 2423 2437 2773 2427 2438 2774 2428 2439 2775 2429 2436 2772 2426 2440 2776 2430 2436 2772 2426 2439 2775 2429 2435 2771 2425 2438 2774 2428 2436 2772 2426 2437 2773 2427 2436 2772 2426 2440 2776 2430 2441 2777 2431 2442 2778 2432 2439 2775 2429 2443 2779 2433 2439 2775 2429 2442 2778 2432 2438 2774 2428 2441 2777 2431 2439 2775 2429 2440 2776 2430 2439 2775 2429 2443 2779 2433 2444 2780 2434 2445 2781 2435 2442 2778 2432 2446 2782 2436 2442 2778 2432 2445 2781 2435 2441 2777 2431 2444 2780 2434 2442 2778 2432 2443 2779 2433 2442 2778 2432 2446 2782 2436 2447 2783 2437 2448 2784 2438 2445 2781 2435 2449 2785 2439 2445 2781 2435 2448 2784 2438 2444 2780 2434 2447 2783 2437 2445 2781 2435 2446 2782 2436 2445 2781 2435 2449 2785 2439 2450 2786 2440 2451 2787 2441 2448 2784 2438 2452 2788 2442 2448 2784 2438 2451 2787 2441 2447 2783 2437 2450 2786 2440 2448 2784 2438 2449 2785 2439 2448 2784 2438 2452 2788 2442 2453 2789 2443 2454 2790 2444 2451 2787 2441 2455 2791 2445 2451 2787 2441 2454 2790 2444 2450 2786 2440 2453 2789 2443 2451 2787 2441 2452 2788 2442 2451 2787 2441 2455 2791 2445 2456 2792 2446 2457 2793 2447 2454 2790 2444 2458 2794 2448 2454 2790 2444 2457 2793 2447 2453 2789 2443 2456 2792 2446 2454 2790 2444 2455 2791 2445 2454 2790 2444 2458 2794 2448 2459 2795 2449 2460 2796 2450 2457 2793 2447 2461 2797 2451 2457 2793 2447 2460 2796 2450 2456 2792 2446 2459 2795 2449 2457 2793 2447 2458 2794 2448 2457 2793 2447 2461 2797 2451 2462 2798 2452 2463 2799 2453 2460 2796 2450 2464 2800 2454 2460 2796 2450 2463 2799 2453 2459 2795 2449 2462 2798 2452 2460 2796 2450 2461 2797 2451 2460 2796 2450 2464 2800 2454 2465 2801 2455 2466 2802 2456 2463 2799 2453 2467 2803 2457 2463 2799 2453 2466 2802 2456 2462 2798 2452 2465 2801 2455 2463 2799 2453 2464 2800 2454 2463 2799 2453 2467 2803 2457 2468 2804 2458 2469 2805 2459 2466 2802 2456 2470 2806 2460 2466 2802 2456 2469 2805 2459 2465 2801 2455 2468 2804 2458 2466 2802 2456 2467 2803 2457 2466 2802 2456 2470 2806 2460 2471 2807 2461 2472 2808 2462 2469 2805 2459 2473 2809 2463 2469 2805 2459 2472 2808 2462 2468 2804 2458 2471 2807 2461 2469 2805 2459 2470 2806 2460 2469 2805 2459 2473 2809 2463 2474 2810 2464 2475 2811 2465 2472 2808 2462 2476 2812 2466 2472 2808 2462 2475 2811 2465 2471 2807 2461 2474 2810 2464 2472 2808 2462 2473 2809 2463 2472 2808 2462 2476 2812 2466 2477 2813 2467 2478 2814 2468 2475 2811 2465 2479 2815 2469 2475 2811 2465 2478 2814 2468 2474 2810 2464 2477 2813 2467 2475 2811 2465 2476 2812 2466 2475 2811 2465 2479 2815 2469 2480 2816 2470 2481 2817 2471 2478 2814 2468 2482 2818 2472 2478 2814 2468 2481 2817 2471 2477 2813 2467 2480 2816 2470 2478 2814 2468 2479 2815 2469 2478 2814 2468 2482 2818 2472 2483 2819 2473 2484 2820 2474 2481 2817 2471 2485 2821 2475 2481 2817 2471 2484 2820 2474 2480 2816 2470 2483 2819 2473 2481 2817 2471 2482 2818 2472 2481 2817 2471 2485 2821 2475 2486 2822 2476 2487 2823 2477 2484 2820 2474 2488 2824 2478 2484 2820 2474 2487 2823 2477 2483 2819 2473 2486 2822 2476 2484 2820 2474 2485 2821 2475 2484 2820 2474 2488 2824 2478 2489 2825 2479 2490 2826 2480 2487 2823 2477 2491 2827 2481 2487 2823 2477 2490 2826 2480 2486 2822 2476 2489 2825 2479 2487 2823 2477 2488 2824 2478 2487 2823 2477 2491 2827 2481 2492 2828 2482 2493 2829 2483 2490 2826 2480 2494 2830 2484 2490 2826 2480 2493 2829 2483 2489 2825 2479 2492 2828 2482 2490 2826 2480 2491 2827 2481 2490 2826 2480 2494 2830 2484 2495 2831 2485 2496 2832 2486 2493 2829 2483 2497 2833 2487 2493 2829 2483 2496 2832 2486 2492 2828 2482 2495 2831 2485 2493 2829 2483 2494 2830 2484 2493 2829 2483 2497 2833 2487 2498 2834 2488 2499 2835 2489 2496 2832 2486 2500 2836 2490 2496 2832 2486 2499 2835 2489 2495 2831 2485 2498 2834 2488 2496 2832 2486 2497 2833 2487 2496 2832 2486 2500 2836 2490 2501 2837 2491 2502 2838 2492 2499 2835 2489 2503 2839 2493 2499 2835 2489 2502 2838 2492 2504 2840 2494 2501 2837 2491 2499 2835 2489 2498 2834 2488 2504 2840 2494 2499 2835 2489 2500 2836 2490 2499 2835 2489 2503 2839 2493 2505 2841 3944 2502 2842 3945 2501 2843 3946 2506 2844 2495 2503 2839 2493 2502 2838 2492 2505 2841 3944 2506 2845 3947 2502 2842 3945 2507 2846 4462 2501 2843 4463 2504 2847 4464 2505 2841 3944 2501 2843 3946 2507 2846 3948 2508 2848 4465 2504 2847 4464 2498 2849 4466 2507 2846 4462 2504 2847 4464 2508 2848 4465 2509 2850 4467 2498 2849 4466 2495 2851 4468 2508 2848 4465 2498 2849 4466 2509 2850 4467 2510 2852 4469 2495 2851 4468 2492 2853 4470 2510 2852 4469 2509 2850 4467 2495 2851 4468 2511 2854 4471 2492 2853 4470 2489 2855 4472 2512 2856 4473 2510 2852 4469 2492 2853 4470 2512 2856 4473 2492 2853 4470 2511 2854 4471 2513 2857 4474 2489 2855 4472 2486 2858 4475 2511 2854 4471 2489 2855 4472 2513 2857 4474 2514 2859 4476 2486 2858 4475 2483 2860 4477 2513 2857 4474 2486 2858 4475 2514 2859 4476 2515 2861 4478 2483 2860 4477 2480 2862 4479 2514 2859 4476 2483 2860 4477 2515 2861 4478 2516 2863 4480 2480 2862 4479 2477 2864 4481 2515 2861 4478 2480 2862 4479 2516 2863 4480 2517 2865 4482 2477 2864 4481 2474 2866 4483 2516 2863 4480 2477 2864 4481 2517 2865 4482 2518 2867 4484 2474 2866 4483 2471 2868 4485 2517 2865 4482 2474 2866 4483 2518 2867 4484 2519 2869 4486 2471 2868 4485 2468 2870 4487 2518 2867 4484 2471 2868 4485 2519 2869 4486 2520 2871 4488 2468 2870 4487 2465 2872 4489 2519 2869 4486 2468 2870 4487 2520 2871 4488 2521 2873 4490 2465 2872 4489 2462 2874 4491 2520 2871 4488 2465 2872 4489 2521 2873 4490 2522 2875 4492 2462 2874 4491 2459 2876 4493 2521 2873 4490 2462 2874 4491 2522 2875 4492 2523 2877 4494 2459 2876 4493 2456 2878 4495 2522 2875 4492 2459 2876 4493 2523 2877 4494 2524 2879 4496 2456 2878 4495 2453 2880 4497 2523 2877 4494 2456 2878 4495 2524 2879 4496 2525 2881 4498 2453 2880 4497 2450 2882 4499 2524 2879 4496 2453 2880 4497 2525 2881 4498 2526 2883 4500 2450 2882 4499 2447 2884 4501 2525 2881 4498 2450 2882 4499 2526 2883 4500 2527 2885 4502 2447 2884 4501 2444 2886 4503 2526 2883 4500 2447 2884 4501 2527 2885 4502 2528 2887 4504 2444 2886 4503 2441 2888 4505 2527 2885 4502 2444 2886 4503 2528 2887 4504 2529 2889 4506 2441 2888 4505 2438 2890 4507 2528 2887 4504 2441 2888 4505 2529 2889 4506 2530 2891 4508 2438 2890 4507 2435 2892 4509 2529 2889 4506 2438 2890 4507 2530 2891 4508 2531 2893 4510 2435 2892 4509 2432 2894 4511 2530 2891 4508 2435 2892 4509 2531 2893 4510 2532 2895 4512 2432 2894 4511 2429 2896 4513 2531 2893 4510 2432 2894 4511 2532 2895 4512 2533 2897 4514 2429 2896 4513 2426 2898 4515 2532 2895 4512 2429 2896 4513 2533 2897 4514 2534 2899 4516 2426 2898 4515 2293 2589 3484 2533 2897 4514 2426 2898 4515 2534 2899 4516 2534 2899 4516 2293 2589 3484 2294 2588 3483 2535 2900 2496 2536 2901 2497 2537 2902 2498 2538 2903 3520 2537 2904 3593 2536 2905 3594 2539 2906 2499 2535 2900 2496 2537 2902 2498 2540 2907 3595 2539 2908 3596 2537 2904 3593 2540 2907 3595 2537 2904 3593 2538 2903 3520 2541 2909 2500 2542 2910 2501 2536 2901 2497 2543 2911 3612 2536 2905 3594 2542 2912 3618 2535 2900 2496 2541 2909 2500 2536 2901 2497 2538 2903 3520 2536 2905 3594 2543 2911 3612 2544 2913 2502 2545 2914 2503 2542 2910 2501 2546 2915 3619 2542 2912 3618 2545 2916 3621 2541 2909 2500 2544 2913 2502 2542 2910 2501 2543 2911 3612 2542 2912 3618 2546 2915 3619 2547 2917 2504 2548 2918 2506 2545 2914 2503 2549 2919 3624 2545 2916 3621 2548 2920 3625 2544 2913 2502 2547 2917 2504 2545 2914 2503 2546 2915 3619 2545 2916 3621 2549 2919 3624 2550 2921 2535 2551 2922 2536 2548 2918 2506 2552 2923 3626 2548 2920 3625 2551 2924 3627 2547 2917 2504 2550 2921 2535 2548 2918 2506 2549 2919 3624 2548 2920 3625 2552 2923 3626 2553 2925 2537 2554 2926 2539 2551 2922 2536 2555 2927 3631 2551 2924 3627 2554 2928 3632 2550 2921 2535 2553 2925 2537 2551 2922 2536 2552 2923 3626 2551 2924 3627 2555 2927 3631 2556 2929 2541 2557 2930 2542 2554 2926 2539 2558 2931 3633 2554 2928 3632 2557 2932 3634 2553 2925 2537 2556 2929 2541 2554 2926 2539 2555 2927 3631 2554 2928 3632 2558 2931 3633 2559 2933 2544 2560 2934 2545 2557 2930 2542 2561 2935 4181 2557 2932 3634 2560 2936 4182 2556 2929 2541 2559 2933 2544 2557 2930 2542 2558 2931 3633 2557 2932 3634 2561 2935 4181 2562 2937 2547 2563 2938 2548 2560 2934 2545 2564 2939 4183 2560 2936 4182 2563 2940 4184 2559 2933 2544 2562 2937 2547 2560 2934 2545 2561 2935 4181 2560 2936 4182 2564 2939 4183 2565 2941 2550 2566 2942 2551 2563 2938 2548 2567 2943 4185 2563 2940 4184 2566 2944 4186 2562 2937 2547 2565 2941 2550 2563 2938 2548 2564 2939 4183 2563 2940 4184 2567 2943 4185 2568 2945 2553 2569 2946 2554 2566 2942 2551 2570 2947 4187 2566 2944 4186 2569 2948 4188 2565 2941 2550 2568 2945 2553 2566 2942 2551 2567 2943 4185 2566 2944 4186 2570 2947 4187 2571 2949 2556 2572 2950 2557 2569 2946 2554 2573 2951 4189 2569 2948 4188 2572 2952 4190 2568 2945 2553 2571 2949 2556 2569 2946 2554 2570 2947 4187 2569 2948 4188 2573 2951 4189 2574 2953 2559 2575 2954 2560 2572 2950 2557 2576 2955 4191 2572 2952 4190 2575 2956 4192 2571 2949 2556 2574 2953 2559 2572 2950 2557 2573 2951 4189 2572 2952 4190 2576 2955 4191 2577 2957 2562 2578 2958 2563 2575 2954 2560 2579 2959 4193 2575 2956 4192 2578 2960 4194 2574 2953 2559 2577 2957 2562 2575 2954 2560 2576 2955 4191 2575 2956 4192 2579 2959 4193 2580 2961 2565 2581 2962 2566 2578 2958 2563 2582 2963 4195 2578 2960 4194 2581 2964 4196 2577 2957 2562 2580 2961 2565 2578 2958 2563 2579 2959 4193 2578 2960 4194 2582 2963 4195 2583 2965 2568 2584 2966 2569 2581 2962 2566 2585 2967 4197 2581 2964 4196 2584 2968 4198 2580 2961 2565 2583 2965 2568 2581 2962 2566 2582 2963 4195 2581 2964 4196 2585 2967 4197 2586 2969 2571 2587 2970 2572 2584 2966 2569 2588 2971 4199 2584 2968 4198 2587 2972 4200 2583 2965 2568 2586 2969 2571 2584 2966 2569 2585 2967 4197 2584 2968 4198 2588 2971 4199 2589 2973 2574 2590 2974 2575 2587 2970 2572 2591 2975 4201 2587 2972 4200 2590 2976 4202 2586 2969 2571 2589 2973 2574 2587 2970 2572 2588 2971 4199 2587 2972 4200 2591 2975 4201 2592 2977 2577 2593 2978 2578 2590 2974 2575 2594 2979 4203 2590 2976 4202 2593 2980 4204 2589 2973 2574 2592 2977 2577 2590 2974 2575 2591 2975 4201 2590 2976 4202 2594 2979 4203 2595 2981 2580 2596 2982 2581 2593 2978 2578 2597 2983 4205 2593 2980 4204 2596 2984 4206 2592 2977 2577 2595 2981 2580 2593 2978 2578 2594 2979 4203 2593 2980 4204 2597 2983 4205 2598 2985 2583 2599 2986 2584 2596 2982 2581 2600 2987 4207 2596 2984 4206 2599 2988 4208 2595 2981 2580 2598 2985 2583 2596 2982 2581 2597 2983 4205 2596 2984 4206 2600 2987 4207 2601 2989 2586 2602 2990 2587 2599 2986 2584 2603 2991 4209 2599 2988 4208 2602 2992 4210 2598 2985 2583 2601 2989 2586 2599 2986 2584 2600 2987 4207 2599 2988 4208 2603 2991 4209 2604 2993 2589 2605 2994 2590 2602 2990 2587 2606 2995 4211 2602 2992 4210 2605 2996 4212 2601 2989 2586 2604 2993 2589 2602 2990 2587 2603 2991 4209 2602 2992 4210 2606 2995 4211 2607 2997 2592 2608 2998 2593 2605 2994 2590 2609 2999 4213 2605 2996 4212 2608 3000 4214 2604 2993 2589 2607 2997 2592 2605 2994 2590 2606 2995 4211 2605 2996 4212 2609 2999 4213 2610 3001 2595 2611 3002 2596 2608 2998 2593 2612 3003 4215 2608 3000 4214 2611 3004 4216 2607 2997 2592 2610 3001 2595 2608 2998 2593 2609 2999 4213 2608 3000 4214 2612 3003 4215 2613 3005 2598 2614 3006 2599 2611 3002 2596 2615 3007 4217 2611 3004 4216 2614 3008 4218 2616 3009 2601 2613 3005 2598 2611 3002 2596 2610 3001 2595 2616 3009 2601 2611 3002 2596 2612 3003 4215 2611 3004 4216 2615 3007 4217 2617 3010 2602 2618 3011 2604 2614 3006 2599 2619 3012 4219 2614 3008 4218 2618 3013 4220 2613 3005 2598 2617 3010 2602 2614 3006 2599 2615 3007 4217 2614 3008 4218 2619 3012 4219 2620 3014 2605 2621 3015 2607 2618 3011 2604 2622 3016 4221 2618 3013 4220 2621 3017 4222 2617 3010 2602 2620 3014 2605 2618 3011 2604 2619 3012 4219 2618 3013 4220 2622 3016 4221 2623 3018 2608 2624 3019 2610 2621 3015 2607 2625 3020 4223 2621 3017 4222 2624 3021 4224 2620 3014 2605 2623 3018 2608 2621 3015 2607 2622 3016 4221 2621 3017 4222 2625 3020 4223 2626 3022 2611 2627 3023 2613 2624 3019 2610 2628 3024 4225 2624 3021 4224 2627 3025 4226 2623 3018 2608 2626 3022 2611 2624 3019 2610 2625 3020 4223 2624 3021 4224 2628 3024 4225 2629 3026 2614 2630 3027 2616 2627 3023 2613 2631 3028 4227 2627 3025 4226 2630 3029 4228 2626 3022 2611 2629 3026 2614 2627 3023 2613 2628 3024 4225 2627 3025 4226 2631 3028 4227 2632 3030 2617 2633 3031 2618 2630 3027 2616 2634 3032 4229 2630 3029 4228 2633 3033 4230 2629 3026 2614 2632 3030 2617 2630 3027 2616 2631 3028 4227 2630 3029 4228 2634 3032 4229 2635 3034 2620 2636 3035 2621 2633 3031 2618 2637 3036 4231 2633 3033 4230 2636 3037 4232 2632 3030 2617 2635 3034 2620 2633 3031 2618 2634 3032 4229 2633 3033 4230 2637 3036 4231 2638 3038 2623 2639 3039 2624 2636 3035 2621 2640 3040 4233 2636 3037 4232 2639 3041 4234 2635 3034 2620 2638 3038 2623 2636 3035 2621 2637 3036 4231 2636 3037 4232 2640 3040 4233 2641 3042 2626 2642 3043 2627 2639 3039 2624 2643 3044 4235 2639 3041 4234 2642 3045 4236 2638 3038 2623 2641 3042 2626 2639 3039 2624 2640 3040 4233 2639 3041 4234 2643 3044 4235 2644 3046 2629 2645 3047 2630 2642 3043 2627 2646 3048 4237 2642 3045 4236 2645 3049 4238 2641 3042 2626 2644 3046 2629 2642 3043 2627 2643 3044 4235 2642 3045 4236 2646 3048 4237 2647 3050 2632 2648 3051 2633 2645 3047 2630 2649 3052 4239 2645 3049 4238 2648 3053 4240 2644 3046 2629 2647 3050 2632 2645 3047 2630 2646 3048 4237 2645 3049 4238 2649 3052 4239 2650 3054 2635 2651 3055 2636 2648 3051 2633 2652 3056 4241 2648 3053 4240 2651 3057 4242 2647 3050 2632 2650 3054 2635 2648 3051 2633 2649 3052 4239 2648 3053 4240 2652 3056 4241 2653 3058 2638 2654 3059 2639 2651 3055 2636 2655 3060 4243 2651 3057 4242 2654 3061 4244 2650 3054 2635 2653 3058 2638 2651 3055 2636 2652 3056 4241 2651 3057 4242 2655 3060 4243 2656 3062 2641 2657 3063 2642 2654 3059 2639 2658 3064 4245 2654 3061 4244 2657 3065 4246 2653 3058 2638 2656 3062 2641 2654 3059 2639 2655 3060 4243 2654 3061 4244 2658 3064 4245 2659 3066 2644 2660 3067 2645 2657 3063 2642 2661 3068 4247 2657 3065 4246 2660 3069 4248 2656 3062 2641 2659 3066 2644 2657 3063 2642 2658 3064 4245 2657 3065 4246 2661 3068 4247 2662 3070 2647 2663 3071 2648 2660 3067 2645 2664 3072 4249 2660 3069 4248 2663 3073 4250 2659 3066 2644 2662 3070 2647 2660 3067 2645 2661 3068 4247 2660 3069 4248 2664 3072 4249 2665 3074 2650 2666 3075 2651 2663 3071 2648 2667 3076 4251 2663 3073 4250 2666 3077 4252 2662 3070 2647 2665 3074 2650 2663 3071 2648 2664 3072 4249 2663 3073 4250 2667 3076 4251 2668 3078 2653 2669 3079 2654 2666 3075 2651 2670 3080 4253 2666 3077 4252 2669 3081 4254 2665 3074 2650 2668 3078 2653 2666 3075 2651 2667 3076 4251 2666 3077 4252 2670 3080 4253 2671 3082 2656 2672 3083 2657 2669 3079 2654 2673 3084 4255 2669 3081 4254 2672 3085 4256 2668 3078 2653 2671 3082 2656 2669 3079 2654 2670 3080 4253 2669 3081 4254 2673 3084 4255 2674 3086 2659 2675 3087 2660 2672 3083 2657 2676 3088 4257 2672 3085 4256 2675 3089 4258 2671 3082 2656 2674 3086 2659 2672 3083 2657 2673 3084 4255 2672 3085 4256 2676 3088 4257 2677 3090 2662 2678 3091 2663 2675 3087 2660 2679 3092 4259 2675 3089 4258 2678 3093 4260 2674 3086 2659 2677 3090 2662 2675 3087 2660 2676 3088 4257 2675 3089 4258 2679 3092 4259 2680 3094 2665 2681 3095 2666 2678 3091 2663 2682 3096 4261 2678 3093 4260 2681 3097 4262 2677 3090 2662 2680 3094 2665 2678 3091 2663 2679 3092 4259 2678 3093 4260 2682 3096 4261 2683 3098 2668 2684 3099 2669 2681 3095 2666 2685 3100 4263 2681 3097 4262 2684 3101 4264 2680 3094 2665 2683 3098 2668 2681 3095 2666 2682 3096 4261 2681 3097 4262 2685 3100 4263 2686 3102 2671 2687 3103 2672 2684 3099 2669 2688 3104 4265 2684 3101 4264 2687 3105 4266 2683 3098 2668 2686 3102 2671 2684 3099 2669 2685 3100 4263 2684 3101 4264 2688 3104 4265 2689 3106 2674 2690 3107 2675 2687 3103 2672 2691 3108 4267 2687 3105 4266 2690 3109 4268 2686 3102 2671 2689 3106 2674 2687 3103 2672 2688 3104 4265 2687 3105 4266 2691 3108 4267 2692 3110 2677 2693 3111 2678 2690 3107 2675 2694 3112 4269 2690 3109 4268 2693 3113 4270 2689 3106 2674 2692 3110 2677 2690 3107 2675 2691 3108 4267 2690 3109 4268 2694 3112 4269 2695 3114 2680 2696 3115 2681 2693 3111 2678 2697 3116 4271 2693 3113 4270 2696 3117 4272 2692 3110 2677 2695 3114 2680 2693 3111 2678 2694 3112 4269 2693 3113 4270 2697 3116 4271 2695 3114 2680 2698 3118 2683 2696 3115 2681 2699 3119 4273 2696 3117 4272 2698 3120 4274 2700 3121 4275 2696 3117 4272 2699 3119 4273 2697 3116 4271 2696 3117 4272 2700 3121 4275 2695 3114 2680 2701 3122 2684 2698 3118 2683 2702 3123 4276 2698 3120 4274 2701 3124 4277 2699 3119 4273 2698 3120 4274 2702 3123 4276 2703 3125 2686 2701 3122 2684 2695 3114 2680 2704 3126 2687 2705 3127 2689 2701 3122 2684 2702 3123 4276 2701 3124 4277 2705 3128 4278 2703 3125 2686 2704 3126 2687 2701 3122 2684 2706 3129 2690 2695 3114 2680 2692 3110 2677 2706 3129 2690 2703 3125 2686 2695 3114 2680 2707 3130 2692 2692 3110 2677 2689 3106 2674 2707 3130 2692 2706 3129 2690 2692 3110 2677 2708 3131 2693 2689 3106 2674 2686 3102 2671 2708 3131 2693 2707 3130 2692 2689 3106 2674 2709 3132 2695 2686 3102 2671 2683 3098 2668 2709 3132 2695 2708 3131 2693 2686 3102 2671 2710 3133 2696 2683 3098 2668 2680 3094 2665 2710 3133 2696 2709 3132 2695 2683 3098 2668 2711 3134 2698 2680 3094 2665 2677 3090 2662 2711 3134 2698 2710 3133 2696 2680 3094 2665 2712 3135 2701 2677 3090 2662 2674 3086 2659 2712 3135 2701 2711 3134 2698 2677 3090 2662 2713 3136 2703 2674 3086 2659 2671 3082 2656 2713 3136 2703 2712 3135 2701 2674 3086 2659 2714 3137 2704 2671 3082 2656 2668 3078 2653 2714 3137 2704 2713 3136 2703 2671 3082 2656 2715 3138 2705 2668 3078 2653 2665 3074 2650 2715 3138 2705 2714 3137 2704 2668 3078 2653 2716 3139 2706 2665 3074 2650 2662 3070 2647 2716 3139 2706 2715 3138 2705 2665 3074 2650 2717 3140 2707 2662 3070 2647 2659 3066 2644 2717 3140 2707 2716 3139 2706 2662 3070 2647 2718 3141 2708 2659 3066 2644 2656 3062 2641 2718 3141 2708 2717 3140 2707 2659 3066 2644 2719 3142 2709 2656 3062 2641 2653 3058 2638 2719 3142 2709 2718 3141 2708 2656 3062 2641 2720 3143 2710 2653 3058 2638 2650 3054 2635 2720 3143 2710 2719 3142 2709 2653 3058 2638 2721 3144 2711 2650 3054 2635 2647 3050 2632 2721 3144 2711 2720 3143 2710 2650 3054 2635 2722 3145 2712 2647 3050 2632 2644 3046 2629 2722 3145 2712 2721 3144 2711 2647 3050 2632 2723 3146 2713 2644 3046 2629 2641 3042 2626 2723 3146 2713 2722 3145 2712 2644 3046 2629 2724 3147 2714 2641 3042 2626 2638 3038 2623 2724 3147 2714 2723 3146 2713 2641 3042 2626 2725 3148 2715 2638 3038 2623 2635 3034 2620 2725 3148 2715 2724 3147 2714 2638 3038 2623 2726 3149 2716 2635 3034 2620 2632 3030 2617 2726 3149 2716 2725 3148 2715 2635 3034 2620 2727 3150 2717 2632 3030 2617 2629 3026 2614 2727 3150 2717 2726 3149 2716 2632 3030 2617 2728 3151 2718 2629 3026 2614 2626 3022 2611 2728 3151 2718 2727 3150 2717 2629 3026 2614 2729 3152 2719 2626 3022 2611 2623 3018 2608 2729 3152 2719 2728 3151 2718 2626 3022 2611 2730 3153 2720 2623 3018 2608 2620 3014 2605 2730 3153 2720 2729 3152 2719 2623 3018 2608 2731 3154 2721 2620 3014 2605 2617 3010 2602 2731 3154 2721 2730 3153 2720 2620 3014 2605 2732 3155 2722 2617 3010 2602 2613 3005 2598 2732 3155 2722 2731 3154 2721 2617 3010 2602 2733 3156 2723 2613 3005 2598 2616 3009 2601 2733 3156 2723 2732 3155 2722 2613 3005 2598 2734 3157 2724 2616 3009 2601 2610 3001 2595 2735 3158 2725 2733 3156 2723 2616 3009 2601 2734 3157 2724 2735 3158 2725 2616 3009 2601 2736 3159 2726 2610 3001 2595 2607 2997 2592 2736 3159 2726 2734 3157 2724 2610 3001 2595 2737 3160 2727 2607 2997 2592 2604 2993 2589 2737 3160 2727 2736 3159 2726 2607 2997 2592 2738 3161 2728 2604 2993 2589 2601 2989 2586 2738 3161 2728 2737 3160 2727 2604 2993 2589 2739 3162 2729 2601 2989 2586 2598 2985 2583 2739 3162 2729 2738 3161 2728 2601 2989 2586 2740 3163 2730 2598 2985 2583 2595 2981 2580 2740 3163 2730 2739 3162 2729 2598 2985 2583 2741 3164 2731 2595 2981 2580 2592 2977 2577 2741 3164 2731 2740 3163 2730 2595 2981 2580 2742 3165 2732 2592 2977 2577 2589 2973 2574 2742 3165 2732 2741 3164 2731 2592 2977 2577 2743 3166 2733 2589 2973 2574 2586 2969 2571 2743 3166 2733 2742 3165 2732 2589 2973 2574 2744 3167 2734 2586 2969 2571 2583 2965 2568 2744 3167 2734 2743 3166 2733 2586 2969 2571 2745 3168 2735 2583 2965 2568 2580 2961 2565 2745 3168 2735 2744 3167 2734 2583 2965 2568 2746 3169 2736 2580 2961 2565 2577 2957 2562 2746 3169 2736 2745 3168 2735 2580 2961 2565 2747 3170 2737 2577 2957 2562 2574 2953 2559 2747 3170 2737 2746 3169 2736 2577 2957 2562 2748 3171 2738 2574 2953 2559 2571 2949 2556 2748 3171 2738 2747 3170 2737 2574 2953 2559 2749 3172 2739 2571 2949 2556 2568 2945 2553 2749 3172 2739 2748 3171 2738 2571 2949 2556 2750 3173 2740 2568 2945 2553 2565 2941 2550 2750 3173 2740 2749 3172 2739 2568 2945 2553 2751 3174 2741 2565 2941 2550 2562 2937 2547 2751 3174 2741 2750 3173 2740 2565 2941 2550 2752 3175 2742 2562 2937 2547 2559 2933 2544 2752 3175 2742 2751 3174 2741 2562 2937 2547 2753 3176 2743 2559 2933 2544 2556 2929 2541 2753 3176 2743 2752 3175 2742 2559 2933 2544 2754 3177 2744 2556 2929 2541 2553 2925 2537 2754 3177 2744 2753 3176 2743 2556 2929 2541 2755 3178 2745 2553 2925 2537 2550 2921 2535 2755 3178 2745 2754 3177 2744 2553 2925 2537 2756 3179 2746 2550 2921 2535 2547 2917 2504 2756 3179 2746 2755 3178 2745 2550 2921 2535 2757 3180 2747 2547 2917 2504 2544 2913 2502 2757 3180 2747 2756 3179 2746 2547 2917 2504 2758 3181 2748 2544 2913 2502 2541 2909 2500 2758 3181 2748 2757 3180 2747 2544 2913 2502 2759 3182 2749 2541 2909 2500 2535 2900 2496 2759 3182 2749 2758 3181 2748 2541 2909 2500 2539 2906 2499 2760 3183 2750 2535 2900 2496 2761 3184 2751 2535 2900 2496 2760 3183 2750 2761 3184 2751 2759 3182 2749 2535 2900 2496 2762 3185 2752 2763 3186 2753 2760 3183 2750 2764 3187 2754 2760 3183 2750 2763 3186 2753 2539 2906 2499 2762 3185 2752 2760 3183 2750 2764 3187 2754 2761 3184 2751 2760 3183 2750 2765 3188 4279 2763 3189 4280 2762 3190 4281 2764 3187 2754 2763 3186 2753 2766 3191 2755 2765 3188 4279 2766 3192 4282 2763 3189 4280 2767 3193 4283 2762 3190 4281 2539 2908 3596 2765 3188 4279 2762 3190 4281 2767 3193 4283 2767 3193 4283 2539 2908 3596 2540 2907 3595 2768 3194 2756 2764 3187 2754 2766 3191 2755 2769 3195 3681 2768 3196 3682 2766 3192 3683 2769 3195 3681 2766 3192 3683 2765 3188 3684 2770 3197 3949 2705 3128 3950 2704 3198 3951 2702 3123 4276 2705 3128 4278 2770 3197 4284 2771 3199 2757 2704 3126 2687 2703 3125 2686 2772 3200 2758 2773 3201 2759 2704 3126 2687 2774 3202 3952 2704 3198 3951 2773 3203 3953 2771 3199 2757 2772 3200 2758 2704 3126 2687 2770 3197 3949 2704 3198 3951 2774 3202 3952 2775 3204 2760 2703 3125 2686 2706 3129 2690 2775 3204 2760 2771 3199 2757 2703 3125 2686 2776 3205 2761 2706 3129 2690 2707 3130 2692 2776 3205 2761 2775 3204 2760 2706 3129 2690 2777 3206 2762 2707 3130 2692 2708 3131 2693 2777 3206 2762 2776 3205 2761 2707 3130 2692 2778 3207 2763 2708 3131 2693 2709 3132 2695 2778 3207 2763 2777 3206 2762 2708 3131 2693 2779 3208 2764 2709 3132 2695 2710 3133 2696 2779 3208 2764 2778 3207 2763 2709 3132 2695 2780 3209 2766 2710 3133 2696 2711 3134 2698 2780 3209 2766 2779 3208 2764 2710 3133 2696 2781 3210 2768 2711 3134 2698 2712 3135 2701 2781 3210 2768 2780 3209 2766 2711 3134 2698 2782 3211 2771 2712 3135 2701 2713 3136 2703 2782 3211 2771 2781 3210 2768 2712 3135 2701 2783 3212 2772 2713 3136 2703 2714 3137 2704 2783 3212 2772 2782 3211 2771 2713 3136 2703 2784 3213 2773 2714 3137 2704 2715 3138 2705 2784 3213 2773 2783 3212 2772 2714 3137 2704 2785 3214 2775 2715 3138 2705 2716 3139 2706 2785 3214 2775 2784 3213 2773 2715 3138 2705 2786 3215 2776 2716 3139 2706 2717 3140 2707 2786 3215 2776 2785 3214 2775 2716 3139 2706 2787 3216 2777 2717 3140 2707 2718 3141 2708 2787 3216 2777 2786 3215 2776 2717 3140 2707 2788 3217 2778 2718 3141 2708 2719 3142 2709 2788 3217 2778 2787 3216 2777 2718 3141 2708 2789 3218 2779 2719 3142 2709 2720 3143 2710 2789 3218 2779 2788 3217 2778 2719 3142 2709 2790 3219 2780 2720 3143 2710 2721 3144 2711 2790 3219 2780 2789 3218 2779 2720 3143 2710 2791 3220 2781 2721 3144 2711 2722 3145 2712 2791 3220 2781 2790 3219 2780 2721 3144 2711 2792 3221 2782 2722 3145 2712 2723 3146 2713 2792 3221 2782 2791 3220 2781 2722 3145 2712 2793 3222 2783 2723 3146 2713 2724 3147 2714 2793 3222 2783 2792 3221 2782 2723 3146 2713 2794 3223 2784 2724 3147 2714 2725 3148 2715 2794 3223 2784 2793 3222 2783 2724 3147 2714 2795 3224 2785 2725 3148 2715 2726 3149 2716 2795 3224 2785 2794 3223 2784 2725 3148 2715 2796 3225 2786 2726 3149 2716 2727 3150 2717 2796 3225 2786 2795 3224 2785 2726 3149 2716 2797 3226 2787 2727 3150 2717 2728 3151 2718 2797 3226 2787 2796 3225 2786 2727 3150 2717 2798 3227 2788 2728 3151 2718 2729 3152 2719 2798 3227 2788 2797 3226 2787 2728 3151 2718 2799 3228 2789 2729 3152 2719 2730 3153 2720 2799 3228 2789 2798 3227 2788 2729 3152 2719 2800 3229 2790 2730 3153 2720 2731 3154 2721 2800 3229 2790 2799 3228 2789 2730 3153 2720 2801 3230 2791 2731 3154 2721 2732 3155 2722 2801 3230 2791 2800 3229 2790 2731 3154 2721 2801 3230 2791 2732 3155 2722 2733 3156 2723 2802 3231 2792 2733 3156 2723 2735 3158 2725 2802 3231 2792 2801 3230 2791 2733 3156 2723 2803 3232 2793 2735 3158 2725 2734 3157 2724 2803 3232 2793 2802 3231 2792 2735 3158 2725 2804 3233 2794 2734 3157 2724 2736 3159 2726 2804 3233 2794 2803 3232 2793 2734 3157 2724 2805 3234 2795 2736 3159 2726 2737 3160 2727 2805 3234 2795 2804 3233 2794 2736 3159 2726 2806 3235 2796 2737 3160 2727 2738 3161 2728 2806 3235 2796 2805 3234 2795 2737 3160 2727 2807 3236 2797 2738 3161 2728 2739 3162 2729 2807 3236 2797 2806 3235 2796 2738 3161 2728 2808 3237 2798 2739 3162 2729 2740 3163 2730 2808 3237 2798 2807 3236 2797 2739 3162 2729 2809 3238 2799 2740 3163 2730 2741 3164 2731 2809 3238 2799 2808 3237 2798 2740 3163 2730 2810 3239 2800 2741 3164 2731 2742 3165 2732 2810 3239 2800 2809 3238 2799 2741 3164 2731 2811 3240 2801 2742 3165 2732 2743 3166 2733 2811 3240 2801 2810 3239 2800 2742 3165 2732 2812 3241 2802 2743 3166 2733 2744 3167 2734 2812 3241 2802 2811 3240 2801 2743 3166 2733 2813 3242 2803 2744 3167 2734 2745 3168 2735 2813 3242 2803 2812 3241 2802 2744 3167 2734 2814 3243 2804 2745 3168 2735 2746 3169 2736 2814 3243 2804 2813 3242 2803 2745 3168 2735 2815 3244 2805 2746 3169 2736 2747 3170 2737 2815 3244 2805 2814 3243 2804 2746 3169 2736 2816 3245 2806 2747 3170 2737 2748 3171 2738 2816 3245 2806 2815 3244 2805 2747 3170 2737 2817 3246 2807 2748 3171 2738 2749 3172 2739 2817 3246 2807 2816 3245 2806 2748 3171 2738 2818 3247 2808 2749 3172 2739 2750 3173 2740 2818 3247 2808 2817 3246 2807 2749 3172 2739 2819 3248 2809 2750 3173 2740 2751 3174 2741 2819 3248 2809 2818 3247 2808 2750 3173 2740 2820 3249 2810 2751 3174 2741 2752 3175 2742 2820 3249 2810 2819 3248 2809 2751 3174 2741 2821 3250 2811 2752 3175 2742 2753 3176 2743 2821 3250 2811 2820 3249 2810 2752 3175 2742 2822 3251 2812 2753 3176 2743 2754 3177 2744 2822 3251 2812 2821 3250 2811 2753 3176 2743 2823 3252 2813 2754 3177 2744 2755 3178 2745 2823 3252 2813 2822 3251 2812 2754 3177 2744 2824 3253 2814 2755 3178 2745 2756 3179 2746 2824 3253 2814 2823 3252 2813 2755 3178 2745 2825 3254 2815 2756 3179 2746 2757 3180 2747 2825 3254 2815 2824 3253 2814 2756 3179 2746 2826 3255 2816 2757 3180 2747 2758 3181 2748 2826 3255 2816 2825 3254 2815 2757 3180 2747 2827 3256 2817 2758 3181 2748 2759 3182 2749 2827 3256 2817 2826 3255 2816 2758 3181 2748 2828 3257 2818 2759 3182 2749 2761 3184 2751 2828 3257 2818 2827 3256 2817 2759 3182 2749 2829 3258 2819 2761 3184 2751 2764 3187 2754 2829 3258 2819 2828 3257 2818 2761 3184 2751 2830 3259 2820 2764 3187 2754 2768 3194 2756 2830 3259 2820 2829 3258 2819 2764 3187 2754 2830 3259 2820 2768 3194 2756 2831 3260 2821 2769 3195 3681 2831 3261 3685 2768 3196 3682 2832 3262 2822 2830 3259 2820 2831 3260 2821 2833 3263 3686 2832 3264 3687 2831 3261 3685 2833 3263 3686 2831 3261 3685 2769 3195 3681 2834 3265 3954 2773 3203 3953 2772 3266 3955 2774 3202 3952 2773 3203 3953 2834 3265 3954 2835 3267 2823 2772 3200 2758 2771 3199 2757 2836 3268 2824 2837 3269 2825 2772 3200 2758 2834 3265 3954 2772 3266 3955 2837 3270 3956 2835 3267 2823 2836 3268 2824 2772 3200 2758 2838 3271 2826 2771 3199 2757 2775 3204 2760 2838 3271 2826 2835 3267 2823 2771 3199 2757 2839 3272 2827 2775 3204 2760 2776 3205 2761 2839 3272 2827 2838 3271 2826 2775 3204 2760 2840 3273 2828 2776 3205 2761 2777 3206 2762 2840 3273 2828 2839 3272 2827 2776 3205 2761 2841 3274 2829 2777 3206 2762 2778 3207 2763 2841 3274 2829 2840 3273 2828 2777 3206 2762 2842 3275 2830 2778 3207 2763 2779 3208 2764 2842 3275 2830 2841 3274 2829 2778 3207 2763 2843 3276 2831 2779 3208 2764 2780 3209 2766 2843 3276 2831 2842 3275 2830 2779 3208 2764 2844 3277 2832 2780 3209 2766 2781 3210 2768 2844 3277 2832 2843 3276 2831 2780 3209 2766 2845 3278 2835 2781 3210 2768 2782 3211 2771 2845 3278 2835 2844 3277 2832 2781 3210 2768 2846 3279 2836 2782 3211 2771 2783 3212 2772 2846 3279 2836 2845 3278 2835 2782 3211 2771 2847 3280 2837 2783 3212 2772 2784 3213 2773 2847 3280 2837 2846 3279 2836 2783 3212 2772 2848 3281 2838 2784 3213 2773 2785 3214 2775 2848 3281 2838 2847 3280 2837 2784 3213 2773 2849 3282 2839 2785 3214 2775 2786 3215 2776 2849 3282 2839 2848 3281 2838 2785 3214 2775 2850 3283 2840 2786 3215 2776 2787 3216 2777 2850 3283 2840 2849 3282 2839 2786 3215 2776 2851 3284 2841 2787 3216 2777 2788 3217 2778 2851 3284 2841 2850 3283 2840 2787 3216 2777 2852 3285 2842 2788 3217 2778 2789 3218 2779 2852 3285 2842 2851 3284 2841 2788 3217 2778 2853 3286 2843 2789 3218 2779 2790 3219 2780 2853 3286 2843 2852 3285 2842 2789 3218 2779 2854 3287 2844 2790 3219 2780 2791 3220 2781 2854 3287 2844 2853 3286 2843 2790 3219 2780 2855 3288 2845 2791 3220 2781 2792 3221 2782 2855 3288 2845 2854 3287 2844 2791 3220 2781 2856 3289 2846 2792 3221 2782 2793 3222 2783 2856 3289 2846 2855 3288 2845 2792 3221 2782 2857 3290 2847 2793 3222 2783 2794 3223 2784 2857 3290 2847 2856 3289 2846 2793 3222 2783 2858 3291 2848 2794 3223 2784 2795 3224 2785 2858 3291 2848 2857 3290 2847 2794 3223 2784 2859 3292 2849 2795 3224 2785 2796 3225 2786 2859 3292 2849 2858 3291 2848 2795 3224 2785 2860 3293 2850 2796 3225 2786 2797 3226 2787 2860 3293 2850 2859 3292 2849 2796 3225 2786 2861 3294 2851 2797 3226 2787 2798 3227 2788 2861 3294 2851 2860 3293 2850 2797 3226 2787 2862 3295 2852 2798 3227 2788 2799 3228 2789 2862 3295 2852 2861 3294 2851 2798 3227 2788 2863 3296 2853 2799 3228 2789 2800 3229 2790 2863 3296 2853 2862 3295 2852 2799 3228 2789 2864 3297 2854 2800 3229 2790 2801 3230 2791 2864 3297 2854 2863 3296 2853 2800 3229 2790 2865 3298 2855 2801 3230 2791 2802 3231 2792 2865 3298 2855 2864 3297 2854 2801 3230 2791 2866 3299 2856 2802 3231 2792 2803 3232 2793 2866 3299 2856 2865 3298 2855 2802 3231 2792 2867 3300 2857 2803 3232 2793 2804 3233 2794 2867 3300 2857 2866 3299 2856 2803 3232 2793 2868 3301 2858 2804 3233 2794 2805 3234 2795 2868 3301 2858 2867 3300 2857 2804 3233 2794 2869 3302 2859 2805 3234 2795 2806 3235 2796 2869 3302 2859 2868 3301 2858 2805 3234 2795 2870 3303 2860 2806 3235 2796 2807 3236 2797 2870 3303 2860 2869 3302 2859 2806 3235 2796 2871 3304 2861 2807 3236 2797 2808 3237 2798 2871 3304 2861 2870 3303 2860 2807 3236 2797 2872 3305 2862 2808 3237 2798 2809 3238 2799 2872 3305 2862 2871 3304 2861 2808 3237 2798 2873 3306 2863 2809 3238 2799 2810 3239 2800 2873 3306 2863 2872 3305 2862 2809 3238 2799 2874 3307 2864 2810 3239 2800 2811 3240 2801 2874 3307 2864 2873 3306 2863 2810 3239 2800 2875 3308 2865 2811 3240 2801 2812 3241 2802 2875 3308 2865 2874 3307 2864 2811 3240 2801 2876 3309 2866 2812 3241 2802 2813 3242 2803 2876 3309 2866 2875 3308 2865 2812 3241 2802 2877 3310 2867 2813 3242 2803 2814 3243 2804 2877 3310 2867 2876 3309 2866 2813 3242 2803 2878 3311 2868 2814 3243 2804 2815 3244 2805 2878 3311 2868 2877 3310 2867 2814 3243 2804 2879 3312 2869 2815 3244 2805 2816 3245 2806 2879 3312 2869 2878 3311 2868 2815 3244 2805 2880 3313 2870 2816 3245 2806 2817 3246 2807 2880 3313 2870 2879 3312 2869 2816 3245 2806 2881 3314 2871 2817 3246 2807 2818 3247 2808 2881 3314 2871 2880 3313 2870 2817 3246 2807 2882 3315 2872 2818 3247 2808 2819 3248 2809 2882 3315 2872 2881 3314 2871 2818 3247 2808 2883 3316 2873 2819 3248 2809 2820 3249 2810 2883 3316 2873 2882 3315 2872 2819 3248 2809 2884 3317 2874 2820 3249 2810 2821 3250 2811 2884 3317 2874 2883 3316 2873 2820 3249 2810 2885 3318 2875 2821 3250 2811 2822 3251 2812 2885 3318 2875 2884 3317 2874 2821 3250 2811 2886 3319 2876 2822 3251 2812 2823 3252 2813 2886 3319 2876 2885 3318 2875 2822 3251 2812 2887 3320 2877 2823 3252 2813 2824 3253 2814 2887 3320 2877 2886 3319 2876 2823 3252 2813 2888 3321 2878 2824 3253 2814 2825 3254 2815 2888 3321 2878 2887 3320 2877 2824 3253 2814 2889 3322 2879 2825 3254 2815 2826 3255 2816 2889 3322 2879 2888 3321 2878 2825 3254 2815 2890 3323 2880 2826 3255 2816 2827 3256 2817 2890 3323 2880 2889 3322 2879 2826 3255 2816 2891 3324 2881 2827 3256 2817 2828 3257 2818 2891 3324 2881 2890 3323 2880 2827 3256 2817 2892 3325 2882 2828 3257 2818 2829 3258 2819 2892 3325 2882 2891 3324 2881 2828 3257 2818 2893 3326 2883 2829 3258 2819 2830 3259 2820 2893 3326 2883 2892 3325 2882 2829 3258 2819 2894 3327 2884 2830 3259 2820 2832 3262 2822 2894 3327 2884 2893 3326 2883 2830 3259 2820 2895 3328 2885 2832 3262 2822 2896 3329 2886 2897 3330 3688 2896 3331 3689 2832 3264 3687 2895 3328 2885 2894 3327 2884 2832 3262 2822 2897 3330 3688 2832 3264 3687 2833 3263 3686 2898 3332 3690 2895 3333 3691 2896 3331 3689 2898 3332 3690 2896 3331 3689 2897 3330 3688 2899 3334 3957 2837 3270 3956 2836 3335 3958 2834 3265 3954 2837 3270 3956 2899 3334 3957 2900 3336 2887 2836 3268 2824 2835 3267 2823 2899 3334 3957 2836 3335 3958 2900 3337 3959 2503 2839 2493 2835 3267 2823 2838 3271 2826 2901 3338 2888 2900 3336 2887 2835 3267 2823 2503 2839 2493 2901 3338 2888 2835 3267 2823 2500 2836 2490 2838 3271 2826 2839 3272 2827 2500 2836 2490 2503 2839 2493 2838 3271 2826 2497 2833 2487 2839 3272 2827 2840 3273 2828 2497 2833 2487 2500 2836 2490 2839 3272 2827 2494 2830 2484 2840 3273 2828 2841 3274 2829 2494 2830 2484 2497 2833 2487 2840 3273 2828 2491 2827 2481 2841 3274 2829 2842 3275 2830 2491 2827 2481 2494 2830 2484 2841 3274 2829 2488 2824 2478 2842 3275 2830 2843 3276 2831 2488 2824 2478 2491 2827 2481 2842 3275 2830 2485 2821 2475 2843 3276 2831 2844 3277 2832 2485 2821 2475 2488 2824 2478 2843 3276 2831 2482 2818 2472 2844 3277 2832 2845 3278 2835 2482 2818 2472 2485 2821 2475 2844 3277 2832 2479 2815 2469 2845 3278 2835 2846 3279 2836 2479 2815 2469 2482 2818 2472 2845 3278 2835 2476 2812 2466 2846 3279 2836 2847 3280 2837 2476 2812 2466 2479 2815 2469 2846 3279 2836 2473 2809 2463 2847 3280 2837 2848 3281 2838 2473 2809 2463 2476 2812 2466 2847 3280 2837 2470 2806 2460 2848 3281 2838 2849 3282 2839 2470 2806 2460 2473 2809 2463 2848 3281 2838 2467 2803 2457 2849 3282 2839 2850 3283 2840 2467 2803 2457 2470 2806 2460 2849 3282 2839 2464 2800 2454 2850 3283 2840 2851 3284 2841 2464 2800 2454 2467 2803 2457 2850 3283 2840 2461 2797 2451 2851 3284 2841 2852 3285 2842 2461 2797 2451 2464 2800 2454 2851 3284 2841 2458 2794 2448 2852 3285 2842 2853 3286 2843 2458 2794 2448 2461 2797 2451 2852 3285 2842 2455 2791 2445 2853 3286 2843 2854 3287 2844 2455 2791 2445 2458 2794 2448 2853 3286 2843 2452 2788 2442 2854 3287 2844 2855 3288 2845 2452 2788 2442 2455 2791 2445 2854 3287 2844 2449 2785 2439 2855 3288 2845 2856 3289 2846 2449 2785 2439 2452 2788 2442 2855 3288 2845 2446 2782 2436 2856 3289 2846 2857 3290 2847 2446 2782 2436 2449 2785 2439 2856 3289 2846 2443 2779 2433 2857 3290 2847 2858 3291 2848 2443 2779 2433 2446 2782 2436 2857 3290 2847 2440 2776 2430 2858 3291 2848 2859 3292 2849 2440 2776 2430 2443 2779 2433 2858 3291 2848 2437 2773 2427 2859 3292 2849 2860 3293 2850 2437 2773 2427 2440 2776 2430 2859 3292 2849 2434 2770 2424 2860 3293 2850 2861 3294 2851 2434 2770 2424 2437 2773 2427 2860 3293 2850 2431 2767 2421 2861 3294 2851 2862 3295 2852 2431 2767 2421 2434 2770 2424 2861 3294 2851 2428 2764 2418 2862 3295 2852 2863 3296 2853 2428 2764 2418 2431 2767 2421 2862 3295 2852 2425 2761 2415 2863 3296 2853 2864 3297 2854 2425 2761 2415 2428 2764 2418 2863 3296 2853 2423 2759 2413 2864 3297 2854 2865 3298 2855 2423 2759 2413 2425 2761 2415 2864 3297 2854 2422 2758 2412 2865 3298 2855 2866 3299 2856 2422 2758 2412 2423 2759 2413 2865 3298 2855 2421 2757 2411 2866 3299 2856 2867 3300 2857 2421 2757 2411 2422 2758 2412 2866 3299 2856 2420 2756 2410 2867 3300 2857 2868 3301 2858 2420 2756 2410 2421 2757 2411 2867 3300 2857 2419 2755 2409 2868 3301 2858 2869 3302 2859 2419 2755 2409 2420 2756 2410 2868 3301 2858 2418 2754 2408 2869 3302 2859 2870 3303 2860 2418 2754 2408 2419 2755 2409 2869 3302 2859 2417 2753 2407 2870 3303 2860 2871 3304 2861 2417 2753 2407 2418 2754 2408 2870 3303 2860 2416 2752 2406 2871 3304 2861 2872 3305 2862 2416 2752 2406 2417 2753 2407 2871 3304 2861 2415 2751 2405 2872 3305 2862 2873 3306 2863 2415 2751 2405 2416 2752 2406 2872 3305 2862 2414 2750 2404 2873 3306 2863 2874 3307 2864 2414 2750 2404 2415 2751 2405 2873 3306 2863 2413 2749 2403 2874 3307 2864 2875 3308 2865 2413 2749 2403 2414 2750 2404 2874 3307 2864 2412 2748 2402 2875 3308 2865 2876 3309 2866 2412 2748 2402 2413 2749 2403 2875 3308 2865 2411 2747 2401 2876 3309 2866 2877 3310 2867 2411 2747 2401 2412 2748 2402 2876 3309 2866 2410 2746 2400 2877 3310 2867 2878 3311 2868 2410 2746 2400 2411 2747 2401 2877 3310 2867 2409 2745 2399 2878 3311 2868 2879 3312 2869 2409 2745 2399 2410 2746 2400 2878 3311 2868 2408 2744 2398 2879 3312 2869 2880 3313 2870 2408 2744 2398 2409 2745 2399 2879 3312 2869 2407 2743 2397 2880 3313 2870 2881 3314 2871 2407 2743 2397 2408 2744 2398 2880 3313 2870 2406 2742 2396 2881 3314 2871 2882 3315 2872 2406 2742 2396 2407 2743 2397 2881 3314 2871 2405 2741 2395 2882 3315 2872 2883 3316 2873 2405 2741 2395 2406 2742 2396 2882 3315 2872 2404 2740 2394 2883 3316 2873 2884 3317 2874 2404 2740 2394 2405 2741 2395 2883 3316 2873 2403 2739 2393 2884 3317 2874 2885 3318 2875 2403 2739 2393 2404 2740 2394 2884 3317 2874 2402 2738 2392 2885 3318 2875 2886 3319 2876 2402 2738 2392 2403 2739 2393 2885 3318 2875 2401 2737 2389 2886 3319 2876 2887 3320 2877 2401 2737 2389 2402 2738 2392 2886 3319 2876 2400 2736 2388 2887 3320 2877 2888 3321 2878 2400 2736 2388 2401 2737 2389 2887 3320 2877 2399 2735 2385 2888 3321 2878 2889 3322 2879 2399 2735 2385 2400 2736 2388 2888 3321 2878 2398 2734 2384 2889 3322 2879 2890 3323 2880 2398 2734 2384 2399 2735 2385 2889 3322 2879 2397 2733 2382 2890 3323 2880 2891 3324 2881 2397 2733 2382 2398 2734 2384 2890 3323 2880 2396 2732 2381 2891 3324 2881 2892 3325 2882 2396 2732 2381 2397 2733 2382 2891 3324 2881 2395 2731 2379 2892 3325 2882 2893 3326 2883 2395 2731 2379 2396 2732 2381 2892 3325 2882 2392 2727 2375 2893 3326 2883 2894 3327 2884 2392 2727 2375 2395 2731 2379 2893 3326 2883 2393 2728 2376 2894 3327 2884 2895 3328 2885 2393 2728 2376 2392 2727 2375 2894 3327 2884 2393 2728 2376 2895 3328 2885 2902 3339 2889 2898 3332 3690 2902 3340 3692 2895 3333 3691 2898 3332 3690 2393 3341 3693 2902 3340 3692 2903 3342 3960 2900 3337 3959 2901 3343 3961 2899 3334 3957 2900 3337 3959 2903 3342 3960 2506 2844 2495 2901 3338 2888 2503 2839 2493 2903 3342 3960 2901 3343 3961 2506 2845 3947 2904 3344 3694 2394 2730 3680 2393 3341 3693 2904 3344 3694 2393 3341 3693 2898 3332 3690 2391 2725 3677 2394 2730 3680 2904 3344 3694 2903 3342 3960 2506 2845 3947 2505 2841 3944 2905 3345 4517 1366 1622 1940 1368 1624 1942 1367 1623 1941 1366 1622 1940 2905 3345 4517 2509 2850 4467 1368 1624 1942 1369 1625 1943 2906 3346 4518 2905 3345 4517 1368 1624 1942 2509 2850 4467 2906 3346 4518 1368 1624 1942 2508 2848 4465 1369 1625 1943 1370 1626 1944 2508 2848 4465 2509 2850 4467 1369 1625 1943 2507 2846 3948 1370 1626 3359 1371 1627 3363 2507 2846 4462 2508 2848 4465 1370 1626 1944 2505 2841 3944 1371 1627 3363 1372 1628 3378 2505 2841 3944 2507 2846 3948 1371 1627 3363 2903 3342 3960 1372 1628 3378 1373 1629 3379 2903 3342 3960 2505 2841 3944 1372 1628 3378 2899 3334 3957 1373 1629 3379 1374 1630 3384 2899 3334 3957 2903 3342 3960 1373 1629 3379 2834 3265 3954 1374 1630 3384 1375 1631 3392 2834 3265 3954 2899 3334 3957 1374 1630 3384 2774 3202 3952 1375 1631 3392 1376 1632 3393 2774 3202 3952 2834 3265 3954 1375 1631 3392 2770 3197 4284 1376 1632 1488 1377 1633 1489 2770 3197 3949 2774 3202 3952 1376 1632 3393 2702 3123 4276 1377 1633 1489 1314 1570 1473 2702 3123 4276 2770 3197 4284 1377 1633 1489 2699 3119 4273 1314 1570 1473 1316 1572 1475 2699 3119 4273 2702 3123 4276 1314 1570 1473 1433 1689 1508 2699 3119 4273 1316 1572 1475 2512 2856 4473 2905 3345 4517 2906 3346 4518 2512 2856 4473 1367 1623 1941 2905 3345 4517 2510 2852 4469 2906 3346 4518 2509 2850 4467 2512 2856 4473 2906 3346 4518 2510 2852 4469 1433 1689 1508 2700 3121 4275 2699 3119 4273 1432 1688 1507 2700 3121 4275 1433 1689 1508 1432 1688 1507 2697 3116 4271 2700 3121 4275 2694 3112 4269 2697 3116 4271 1432 1688 1507 2694 3112 4269 1432 1688 1507 1436 1692 1511 2691 3108 4267 1436 1692 1511 1439 1695 1514 2691 3108 4267 2694 3112 4269 1436 1692 1511 2688 3104 4265 1439 1695 1514 1442 1698 1517 2688 3104 4265 2691 3108 4267 1439 1695 1514 2685 3100 4263 1442 1698 1517 1445 1701 1520 2685 3100 4263 2688 3104 4265 1442 1698 1517 2682 3096 4261 1445 1701 1520 1448 1704 1523 2682 3096 4261 2685 3100 4263 1445 1701 1520 2679 3092 4259 1448 1704 1523 1451 1707 1526 2679 3092 4259 2682 3096 4261 1448 1704 1523 2676 3088 4257 1451 1707 1526 1454 1710 1529 2676 3088 4257 2679 3092 4259 1451 1707 1526 2673 3084 4255 1454 1710 1529 1457 1713 1532 2673 3084 4255 2676 3088 4257 1454 1710 1529 2670 3080 4253 1457 1713 1532 1460 1716 1535 2670 3080 4253 2673 3084 4255 1457 1713 1532 2667 3076 4251 1460 1716 1535 1463 1719 1538 2667 3076 4251 2670 3080 4253 1460 1716 1535 2664 3072 4249 1463 1719 1538 1466 1722 1541 2664 3072 4249 2667 3076 4251 1463 1719 1538 2661 3068 4247 1466 1722 1541 1469 1725 1544 2661 3068 4247 2664 3072 4249 1466 1722 1541 2658 3064 4245 1469 1725 1544 1472 1728 1547 2658 3064 4245 2661 3068 4247 1469 1725 1544 2655 3060 4243 1472 1728 1547 1475 1731 1550 2655 3060 4243 2658 3064 4245 1472 1728 1547 2652 3056 4241 1475 1731 1550 1478 1734 1553 2652 3056 4241 2655 3060 4243 1475 1731 1550 2649 3052 4239 1478 1734 1553 1481 1737 1556 2649 3052 4239 2652 3056 4241 1478 1734 1553 2646 3048 4237 1481 1737 1556 1484 1740 1559 2646 3048 4237 2649 3052 4239 1481 1737 1556 2643 3044 4235 1484 1740 1559 1487 1743 1562 2643 3044 4235 2646 3048 4237 1484 1740 1559 2640 3040 4233 1487 1743 1562 1490 1746 1565 2640 3040 4233 2643 3044 4235 1487 1743 1562 2637 3036 4231 1490 1746 1565 1493 1749 1568 2637 3036 4231 2640 3040 4233 1490 1746 1565 2634 3032 4229 1493 1749 1568 1496 1752 1571 2634 3032 4229 2637 3036 4231 1493 1749 1568 2631 3028 4227 1496 1752 1571 1499 1755 1574 2631 3028 4227 2634 3032 4229 1496 1752 1571 2628 3024 4225 1499 1755 1574 1502 1758 1577 2628 3024 4225 2631 3028 4227 1499 1755 1574 2625 3020 4223 1502 1758 1577 1505 1761 1580 2625 3020 4223 2628 3024 4225 1502 1758 1577 2622 3016 4221 1505 1761 1580 1508 1764 1583 2622 3016 4221 2625 3020 4223 1505 1761 1580 2619 3012 4219 1508 1764 1583 1511 1767 1586 2619 3012 4219 2622 3016 4221 1508 1764 1583 2615 3007 4217 1511 1767 1586 1514 1770 1589 2615 3007 4217 2619 3012 4219 1511 1767 1586 2612 3003 4215 1514 1770 1589 1517 1773 1592 2612 3003 4215 2615 3007 4217 1514 1770 1589 2609 2999 4213 1517 1773 1592 1520 1776 1595 2609 2999 4213 2612 3003 4215 1517 1773 1592 2606 2995 4211 1520 1776 1595 1523 1779 1598 2606 2995 4211 2609 2999 4213 1520 1776 1595 2603 2991 4209 1523 1779 1598 1526 1782 1601 2603 2991 4209 2606 2995 4211 1523 1779 1598 2600 2987 4207 1526 1782 1601 1529 1785 1604 2600 2987 4207 2603 2991 4209 1526 1782 1601 2597 2983 4205 1529 1785 1604 1532 1788 1607 2597 2983 4205 2600 2987 4207 1529 1785 1604 2594 2979 4203 1532 1788 1607 1535 1791 1610 2594 2979 4203 2597 2983 4205 1532 1788 1607 2591 2975 4201 1535 1791 1610 1538 1794 1613 2591 2975 4201 2594 2979 4203 1535 1791 1610 2588 2971 4199 1538 1794 1613 1541 1797 1616 2588 2971 4199 2591 2975 4201 1538 1794 1613 2585 2967 4197 1541 1797 1616 1544 1800 1619 2585 2967 4197 2588 2971 4199 1541 1797 1616 2582 2963 4195 1544 1800 1619 1547 1803 1622 2582 2963 4195 2585 2967 4197 1544 1800 1619 2579 2959 4193 1547 1803 1622 1550 1806 1625 2579 2959 4193 2582 2963 4195 1547 1803 1622 2576 2955 4191 1550 1806 1625 1553 1809 1628 2576 2955 4191 2579 2959 4193 1550 1806 1625 2573 2951 4189 1553 1809 1628 1556 1812 1631 2573 2951 4189 2576 2955 4191 1553 1809 1628 2570 2947 4187 1556 1812 1631 1559 1815 1634 2570 2947 4187 2573 2951 4189 1556 1812 1631 2567 2943 4185 1559 1815 1634 1562 1818 1637 2567 2943 4185 2570 2947 4187 1559 1815 1634 2564 2939 4183 1562 1818 1637 1565 1821 1640 2564 2939 4183 2567 2943 4185 1562 1818 1637 2561 2935 4181 1565 1821 1640 1568 1824 1643 2561 2935 4181 2564 2939 4183 1565 1821 1640 2558 2931 3633 1568 1824 1643 1571 1827 1646 2558 2931 3633 2561 2935 4181 1568 1824 1643 2555 2927 3631 1571 1827 1646 1574 1830 1649 2555 2927 3631 2558 2931 3633 1571 1827 1646 2552 2923 3626 1574 1830 1649 1577 1833 1652 2552 2923 3626 2555 2927 3631 1574 1830 1649 2549 2919 3624 1577 1833 1652 1580 1836 1655 2549 2919 3624 2552 2923 3626 1577 1833 1652 2546 2915 3619 1580 1836 1655 1583 1839 1658 2546 2915 3619 2549 2919 3624 1580 1836 1655 1586 1842 1661 2907 3347 4285 1583 1839 1658 2543 2911 3612 1583 1839 1658 2907 3347 4285 2543 2911 3612 2546 2915 3619 1583 1839 1658 1843 2099 3353 2907 3347 4285 1586 1842 1661 2908 3348 4286 2543 2911 3612 2907 3347 4285 1843 2099 3353 2908 3348 4286 2907 3347 4285 2908 3348 4286 2538 2903 3520 2543 2911 3612 2540 2907 3595 2538 2903 3520 2908 3348 4286 2540 2907 3595 2908 3348 4286 1843 2099 3353 2540 2907 3595 1843 2099 3353 1844 2100 3354 2767 3193 4283 1844 2100 3354 1845 2101 3427 2767 3193 4283 2540 2907 3595 1844 2100 3354 2765 3188 3684 1845 2101 3432 1846 2102 3435 2765 3188 4279 2767 3193 4283 1845 2101 3427 2769 3195 3681 1846 2102 3435 1847 2103 3438 2769 3195 3681 2765 3188 3684 1846 2102 3435 2833 3263 3686 1847 2103 3438 1848 2104 3448 2833 3263 3686 2769 3195 3681 1847 2103 3438 2897 3330 3688 1848 2104 3448 1849 2105 3461 2897 3330 3688 2833 3263 3686 1848 2104 3448 2898 3332 3690 1849 2105 3461 1850 2106 3463 2898 3332 3690 2897 3330 3688 1849 2105 3461 2904 3344 3694 1850 2106 3463 1851 2107 3467 2904 3344 3694 2898 3332 3690 1850 2106 3463 2391 2725 4461 1851 2107 1980 1852 2108 1981 2391 2725 3677 2904 3344 3694 1851 2107 3467 2390 2723 4459 1852 2108 1981 1799 2055 1965 2390 2723 4459 2391 2725 4461 1852 2108 1981 2386 2718 4456 1799 2055 1965 1801 2057 1967 2386 2718 4456 2390 2723 4459 1799 2055 1965 2180 2465 2282 2386 2718 4456 1801 2057 1967 2180 2465 2282 2387 2720 4458 2386 2718 4456 2181 2466 2283 2387 2720 4458 2180 2465 2282 2181 2466 2283 2383 2714 4454 2387 2720 4458 2380 2710 4452 2383 2714 4454 2181 2466 2283 2380 2710 4452 2181 2466 2283 2179 2464 2281 2377 2706 4450 2179 2464 2281 2182 2467 2284 2377 2706 4450 2380 2710 4452 2179 2464 2281 2374 2702 4448 2182 2467 2284 2183 2468 2285 2374 2702 4448 2377 2706 4450 2182 2467 2284 2371 2698 4446 2183 2468 2285 2184 2469 2286 2371 2698 4446 2374 2702 4448 2183 2468 2285 2368 2694 4444 2184 2469 2286 2185 2470 2287 2368 2694 4444 2371 2698 4446 2184 2469 2286 2365 2690 4442 2185 2470 2287 2186 2471 2294 2365 2690 4442 2368 2694 4444 2185 2470 2287 2362 2686 4440 2186 2471 2294 2187 2472 2295 2362 2686 4440 2365 2690 4442 2186 2471 2294 2359 2682 3639 2187 2472 2295 2188 2473 2297 2359 2682 3639 2362 2686 4440 2187 2472 2295 2356 2678 3636 2188 2473 2297 2189 2474 2298 2356 2678 3636 2359 2682 3639 2188 2473 2297 2353 2674 3622 2189 2474 2298 2190 2475 2301 2353 2674 3622 2356 2678 3636 2189 2474 2298 2350 2670 3607 2190 2475 2301 2191 2476 2304 2350 2670 3607 2353 2674 3622 2190 2475 2301 2347 2666 3605 2191 2476 2304 2192 2477 2306 2347 2666 3605 2350 2670 3607 2191 2476 2304 2344 2662 3603 2192 2477 2306 2193 2478 2310 2344 2662 3603 2347 2666 3605 2192 2477 2306 2341 2658 3601 2193 2478 2310 2194 2479 2311 2341 2658 3601 2344 2662 3603 2193 2478 2310 2338 2654 3599 2194 2479 2311 2195 2480 2314 2338 2654 3599 2341 2658 3601 2194 2479 2311 2335 2650 3592 2195 2480 2314 2196 2481 2317 2335 2650 3592 2338 2654 3599 2195 2480 2314 2332 2646 3587 2196 2481 2317 2197 2482 2320 2332 2646 3587 2335 2650 3592 2196 2481 2317 2329 2642 3584 2197 2482 2320 2198 2483 2323 2329 2642 3584 2332 2646 3587 2197 2482 2320 2326 2638 3569 2198 2483 2323 2199 2484 2326 2326 2638 3569 2329 2642 3584 2198 2483 2323 2323 2634 3567 2199 2484 2326 2200 2485 2329 2323 2634 3567 2326 2638 3569 2199 2484 2326 2320 2630 3565 2200 2485 2329 2201 2486 2332 2320 2630 3565 2323 2634 3567 2200 2485 2329 2317 2626 3554 2201 2486 2332 2202 2487 2335 2317 2626 3554 2320 2630 3565 2201 2486 2332 2314 2622 3552 2202 2487 2335 2203 2488 2338 2314 2622 3552 2317 2626 3554 2202 2487 2335 2310 2617 3549 2203 2488 2338 2104 2387 2199 2310 2617 3549 2314 2622 3552 2203 2488 2338 2311 2619 3551 2104 2387 2199 2105 2388 2200 2311 2619 3551 2310 2617 3549 2104 2387 2199 2311 2619 3551 2105 2388 2200 2306 2610 3541 2307 2613 3942 2306 2614 3943 2105 2390 3933 2909 3349 3962 2307 2613 3942 2105 2390 3933 2106 2389 3932 2909 3349 3962 2105 2390 3933 2295 2591 3529 1925 2197 2015 1932 2207 2020 2910 3350 3695 1925 2203 3667 2295 2592 3675 2911 3351 3696 1928 2202 3666 1925 2203 3667 2910 3350 3695 2911 3351 3696 1925 2203 3667 2294 2588 3483 1932 2207 2020 1931 2206 2019 2294 2588 3483 2295 2591 3529 1932 2207 2020 2534 2899 4516 1931 2206 2019 1935 2210 2025 2534 2899 4516 2294 2588 3483 1931 2206 2019 2533 2897 4514 1935 2210 2025 1938 2213 2028 2533 2897 4514 2534 2899 4516 1935 2210 2025 2532 2895 4512 1938 2213 2028 1941 2216 2031 2532 2895 4512 2533 2897 4514 1938 2213 2028 2531 2893 4510 1941 2216 2031 1944 2219 2034 2531 2893 4510 2532 2895 4512 1941 2216 2031 2530 2891 4508 1944 2219 2034 1947 2222 2037 2530 2891 4508 2531 2893 4510 1944 2219 2034 2529 2889 4506 1947 2222 2037 1950 2225 2040 2529 2889 4506 2530 2891 4508 1947 2222 2037 2528 2887 4504 1950 2225 2040 1953 2228 2046 2528 2887 4504 2529 2889 4506 1950 2225 2040 2527 2885 4502 1953 2228 2046 1956 2231 2049 2527 2885 4502 2528 2887 4504 1953 2228 2046 2526 2883 4500 1956 2231 2049 1959 2234 2052 2526 2883 4500 2527 2885 4502 1956 2231 2049 2525 2881 4498 1959 2234 2052 1962 2237 2055 2525 2881 4498 2526 2883 4500 1959 2234 2052 2524 2879 4496 1962 2237 2055 1965 2240 2058 2524 2879 4496 2525 2881 4498 1962 2237 2055 2523 2877 4494 1965 2240 2058 1968 2243 2061 2523 2877 4494 2524 2879 4496 1965 2240 2058 2522 2875 4492 1968 2243 2061 1971 2246 2064 2522 2875 4492 2523 2877 4494 1968 2243 2061 2521 2873 4490 1971 2246 2064 1974 2249 2067 2521 2873 4490 2522 2875 4492 1971 2246 2064 2520 2871 4488 1974 2249 2067 1977 2252 2071 2520 2871 4488 2521 2873 4490 1974 2249 2067 2519 2869 4486 1977 2252 2071 1980 2255 2077 2519 2869 4486 2520 2871 4488 1977 2252 2071 2518 2867 4484 1980 2255 2077 1983 2258 2080 2518 2867 4484 2519 2869 4486 1980 2255 2077 2517 2865 4482 1983 2258 2080 1986 2261 2083 2517 2865 4482 2518 2867 4484 1983 2258 2080 2516 2863 4480 1986 2261 2083 1989 2264 2086 2516 2863 4480 2517 2865 4482 1986 2261 2083 2515 2861 4478 1989 2264 2086 1992 2267 2089 2515 2861 4478 2516 2863 4480 1989 2264 2086 2514 2859 4476 1992 2267 2089 1995 2270 2092 2514 2859 4476 2515 2861 4478 1992 2267 2089 2513 2857 4474 1995 2270 2092 1997 2272 2094 2513 2857 4474 2514 2859 4476 1995 2270 2092 2511 2854 4471 1997 2272 2094 1367 1623 1941 2511 2854 4471 2513 2857 4474 1997 2272 2094 2512 2856 4473 2511 2854 4471 1367 1623 1941 2291 2583 3672 2910 3350 3695 2295 2592 3675 2912 3352 2923 2913 3353 2924 2914 3354 2925 230 3355 645 2914 3356 4519 2913 3357 4520 2915 3358 2926 2912 3352 2923 2914 3354 2925 231 3359 647 2915 3360 4521 2914 3356 4519 230 3355 645 231 3359 647 2914 3356 4519 2916 3361 2927 2917 3362 2928 2913 3353 2924 229 3363 4522 2913 3357 4520 2917 3364 4523 2912 3352 2923 2916 3361 2927 2913 3353 2924 229 3363 4522 230 3355 645 2913 3357 4520 2918 3365 2929 2919 3366 2930 2917 3362 2928 228 3367 4524 2917 3364 4523 2919 3368 4525 2916 3361 2927 2918 3365 2929 2917 3362 2928 228 3367 4524 229 3363 4522 2917 3364 4523 2920 3369 2931 2921 3370 2932 2919 3366 2930 227 3371 4526 2919 3368 4525 2921 3372 4527 2918 3365 2929 2920 3369 2931 2919 3366 2930 227 3371 4526 228 3367 4524 2919 3368 4525 2922 3373 2933 2923 3374 2934 2921 3370 2932 226 3375 4528 2921 3372 4527 2923 3376 4529 2924 3377 2935 2922 3373 2933 2921 3370 2932 2920 3369 2931 2924 3377 2935 2921 3370 2932 226 3375 4528 227 3371 4526 2921 3372 4527 2925 3378 2936 2926 3379 2937 2923 3374 2934 225 3380 4530 2923 3376 4529 2926 3381 4531 2922 3373 2933 2925 3378 2936 2923 3374 2934 225 3380 4530 226 3375 4528 2923 3376 4529 2927 3382 2938 2928 3383 2939 2926 3379 2937 224 3384 4532 2926 3381 4531 2928 3385 4533 2925 3378 2936 2927 3382 2938 2926 3379 2937 224 3384 4532 225 3380 4530 2926 3381 4531 2929 3386 2940 2930 3387 2941 2928 3383 2939 223 3388 4534 2928 3385 4533 2930 3389 4535 2927 3382 2938 2929 3386 2940 2928 3383 2939 223 3388 4534 224 3384 4532 2928 3385 4533 2931 3390 2942 2932 3391 2943 2930 3387 2941 222 3392 4536 2930 3389 4535 2932 3393 4537 2929 3386 2940 2931 3390 2942 2930 3387 2941 222 3392 4536 223 3388 4534 2930 3389 4535 2933 3394 2944 2934 3395 2945 2932 3391 2943 221 3396 4538 2932 3393 4537 2934 3397 4539 2931 3390 2942 2933 3394 2944 2932 3391 2943 222 3392 4536 2932 3393 4537 221 3396 4538 220 3398 642 2934 3397 4539 2933 3399 4540 220 3398 642 221 3396 4538 2934 3397 4539 2935 3400 2946 2933 3394 2944 2931 3390 2942 2936 3401 2947 2937 3402 2948 2933 3394 2944 218 3403 4541 2933 3399 4540 2937 3404 4542 2935 3400 2946 2936 3401 2947 2933 3394 2944 218 3403 4541 220 3398 642 2933 3399 4540 2938 3405 2950 2931 3390 2942 2929 3386 2940 2938 3405 2950 2935 3400 2946 2931 3390 2942 2939 3406 2951 2929 3386 2940 2927 3382 2938 2940 3407 2952 2938 3405 2950 2929 3386 2940 2939 3406 2951 2940 3407 2952 2929 3386 2940 2941 3408 2954 2927 3382 2938 2925 3378 2936 2941 3408 2954 2939 3406 2951 2927 3382 2938 2942 3409 2955 2925 3378 2936 2922 3373 2933 2942 3409 2955 2941 3408 2954 2925 3378 2936 2943 3410 2956 2922 3373 2933 2924 3377 2935 2944 3411 2957 2942 3409 2955 2922 3373 2933 2943 3410 2956 2944 3411 2957 2922 3373 2933 2945 3412 2958 2924 3377 2935 2920 3369 2931 2945 3412 2958 2943 3410 2956 2924 3377 2935 2946 3413 2959 2920 3369 2931 2918 3365 2929 2946 3413 2959 2945 3412 2958 2920 3369 2931 2947 3414 2960 2918 3365 2929 2916 3361 2927 2947 3414 2960 2946 3413 2959 2918 3365 2929 2948 3415 2961 2916 3361 2927 2912 3352 2923 2948 3415 2961 2947 3414 2960 2916 3361 2927 2915 3358 2926 2949 3416 2962 2912 3352 2923 2950 3417 2963 2912 3352 2923 2949 3416 2962 2950 3417 2963 2948 3415 2961 2912 3352 2923 232 3418 2890 2949 3419 2891 2915 3420 2892 2951 3421 2964 2949 3416 2962 2952 3422 2965 232 3423 4543 2952 3424 4544 2949 3425 4545 2951 3421 2964 2950 3417 2963 2949 3416 2962 231 3359 647 232 3426 4543 2915 3360 4521 2953 3427 2966 2951 3421 2964 2952 3422 2965 255 3428 4546 2953 3429 4547 2952 3424 4544 232 3423 4543 255 3428 4546 2952 3424 4544 2954 3430 2967 2955 3431 2968 2937 3402 2948 219 3432 4548 2937 3404 4542 2955 3433 4549 2936 3401 2947 2954 3430 2967 2937 3402 2948 219 3432 4548 218 3403 4541 2937 3404 4542 219 3432 3963 2955 3433 3964 2954 3434 3965 2956 3435 2969 2954 3430 2967 2936 3401 2947 2957 3436 2970 2954 3430 2967 2956 3435 2969 2958 3437 2971 2954 3430 2967 2957 3436 2970 607 3438 3966 2954 3439 3965 2958 3440 3967 607 3441 3966 219 3442 3963 2954 3443 3965 2959 3444 2972 2936 3401 2947 2935 3400 2946 2956 3435 2969 2936 3401 2947 2959 3444 2972 2960 3445 2973 2935 3400 2946 2938 3405 2950 2959 3444 2972 2935 3400 2946 2961 3446 2974 2960 3445 2973 2961 3446 2974 2935 3400 2946 2962 3447 4550 2938 3448 4551 2940 3449 4552 2963 3450 3968 2960 3451 3969 2938 3448 3970 2962 3447 3971 2963 3450 3968 2938 3448 3970 2964 3452 4553 2940 3449 4552 2939 3453 4554 2964 3452 4553 2962 3447 4550 2940 3449 4552 2965 3454 4555 2939 3453 4554 2941 3455 4556 2965 3454 4555 2964 3452 4553 2939 3453 4554 2966 3456 4557 2941 3455 4556 2942 3457 4558 2965 3454 4555 2941 3455 4556 2966 3456 4557 2967 3458 4559 2942 3457 4558 2944 3459 4560 2966 3456 4557 2942 3457 4558 2967 3458 4559 2968 3460 4561 2944 3459 4560 2943 3461 4562 2967 3458 4559 2944 3459 4560 2968 3460 4561 2969 3462 2975 2943 3410 2956 2945 3412 2958 2970 3463 3697 2943 3461 3698 2969 3464 3699 2968 3460 4561 2943 3461 4562 2970 3463 4563 2971 3465 2976 2945 3412 2958 2946 3413 2959 2972 3466 2978 2969 3462 2975 2945 3412 2958 2971 3465 2976 2972 3466 2978 2945 3412 2958 2973 3467 2979 2946 3413 2959 2947 3414 2960 2973 3467 2979 2971 3465 2976 2946 3413 2959 2974 3468 2980 2947 3414 2960 2948 3415 2961 2974 3468 2980 2973 3467 2979 2947 3414 2960 2975 3469 2981 2948 3415 2961 2950 3417 2963 2975 3469 2981 2974 3468 2980 2948 3415 2961 2976 3470 2982 2950 3417 2963 2951 3421 2964 2976 3470 2982 2975 3469 2981 2950 3417 2963 2953 3427 2966 2977 3471 2983 2951 3421 2964 2978 3472 2984 2951 3421 2964 2977 3471 2983 2978 3472 2984 2976 3470 2982 2951 3421 2964 256 3473 2893 2977 3474 2894 2953 3475 2895 2978 3472 2984 2977 3471 2983 2979 3476 2985 256 3477 3700 2979 3478 3701 2977 3479 3702 255 3428 3703 256 3480 3700 2953 3429 3704 2980 3481 2986 2978 3472 2984 2979 3476 2985 258 3482 992 2980 3483 3705 2979 3478 3701 256 3477 3700 258 3482 992 2979 3478 3701 2981 3484 3706 2969 3464 3699 2972 3485 3707 2970 3463 3697 2969 3464 3699 2981 3484 3706 2982 3486 2987 2972 3466 2978 2971 3465 2976 2983 3487 3708 2972 3485 3707 2982 3488 3709 2984 3489 3710 2972 3485 3707 2983 3487 3708 2981 3484 3706 2972 3485 3707 2984 3489 3710 2985 3490 2988 2971 3465 2976 2973 3467 2979 2986 3491 2989 2982 3486 2987 2971 3465 2976 2985 3490 2988 2986 3491 2989 2971 3465 2976 2987 3492 2990 2973 3467 2979 2974 3468 2980 2987 3492 2990 2985 3490 2988 2973 3467 2979 2988 3493 2991 2974 3468 2980 2975 3469 2981 2988 3493 2991 2987 3492 2990 2974 3468 2980 2989 3494 2994 2975 3469 2981 2976 3470 2982 2989 3494 2994 2988 3493 2991 2975 3469 2981 2990 3495 2995 2976 3470 2982 2978 3472 2984 2990 3495 2995 2989 3494 2994 2976 3470 2982 2991 3496 2996 2978 3472 2984 2980 3481 2986 2991 3496 2996 2990 3495 2995 2978 3472 2984 2992 3497 2997 2980 3481 2986 2993 3498 2998 276 3499 995 2993 3500 3711 2980 3501 3705 2992 3497 2997 2991 3496 2996 2980 3481 2986 258 296 992 276 315 995 2980 3502 3705 293 3503 2896 2992 3504 2900 2993 3505 2901 276 3499 995 293 3506 1010 2993 3500 3711 2994 3507 3712 2982 3488 3709 2986 3508 3713 2995 3509 3714 2982 3488 3709 2994 3507 3712 2983 3487 3708 2982 3488 3709 2995 3509 3714 2996 3510 2999 2986 3491 2989 2985 3490 2988 2996 3510 2999 2997 3511 3000 2986 3491 2989 2994 3507 3712 2986 3508 3713 2997 3512 3715 2998 3513 3001 2985 3490 2988 2987 3492 2990 2998 3513 3001 2996 3510 2999 2985 3490 2988 2999 3514 3002 2987 3492 2990 2988 3493 2991 2999 3514 3002 2998 3513 3001 2987 3492 2990 3000 3515 3003 2988 3493 2991 2989 3494 2994 3000 3515 3003 2999 3514 3002 2988 3493 2991 3001 3516 3004 2989 3494 2994 2990 3495 2995 3001 3516 3004 3000 3515 3003 2989 3494 2994 3002 3517 3005 2990 3495 2995 2991 3496 2996 3002 3517 3005 3001 3516 3004 2990 3495 2995 3003 3518 3006 2991 3496 2996 2992 3497 2997 3003 3518 3006 3002 3517 3005 2991 3496 2996 3003 3518 3006 2992 3497 2997 3004 3519 3007 293 3520 1010 3004 3521 3716 2992 3522 3717 293 3523 1010 3003 3524 3718 3004 3525 3716 2996 3510 2999 3005 3526 3008 2997 3511 3000 3006 3527 3719 2997 3512 3715 3005 3528 3720 2994 3507 3712 2997 3512 3715 3006 3527 3719 3007 3529 3009 3005 3526 3008 2996 3510 2999 3007 3529 3009 3008 3530 3010 3005 3526 3008 3006 3527 3719 3005 3528 3720 3008 3531 3721 3009 3532 3011 2996 3510 2999 2998 3513 3001 3009 3532 3011 3007 3529 3009 2996 3510 2999 3010 3533 3012 2998 3513 3001 2999 3514 3002 3010 3533 3012 3009 3532 3011 2998 3513 3001 3011 3534 3013 2999 3514 3002 3000 3515 3003 3011 3534 3013 3010 3533 3012 2999 3514 3002 3012 3535 3014 3000 3515 3003 3001 3516 3004 3012 3535 3014 3011 3534 3013 3000 3515 3003 3013 3536 3015 3001 3516 3004 3002 3517 3005 3013 3536 3015 3012 3535 3014 3001 3516 3004 3014 3537 3016 3002 3517 3005 3003 3518 3006 3014 3537 3016 3013 3536 3015 3002 3517 3005 3014 3537 3016 3003 3518 3006 3015 3538 3017 309 3539 3722 3015 3540 3723 3003 3541 3718 293 3542 1010 309 3543 3722 3003 3544 3718 309 3539 3722 3014 3545 3724 3015 3540 3723 3007 3529 3009 3016 3546 3018 3008 3530 3010 3017 3547 3725 3008 3531 3721 3016 3548 3726 3017 3547 3725 3006 3527 3719 3008 3531 3721 3018 3549 3019 3016 3546 3018 3007 3529 3009 3019 3550 3020 3020 3551 3021 3016 3546 3018 3021 3552 4287 3016 3548 4288 3020 3553 4289 3018 3549 3019 3019 3550 3020 3016 3546 3018 3021 3552 3727 3017 3547 3725 3016 3548 3726 3022 3554 3022 3007 3529 3009 3009 3532 3011 3022 3554 3022 3018 3549 3019 3007 3529 3009 3023 3555 3023 3009 3532 3011 3010 3533 3012 3023 3555 3023 3022 3554 3022 3009 3532 3011 3024 3556 3024 3010 3533 3012 3011 3534 3013 3024 3556 3024 3023 3555 3023 3010 3533 3012 3025 3557 3025 3011 3534 3013 3012 3535 3014 3025 3557 3025 3024 3556 3024 3011 3534 3013 3026 3558 3026 3012 3535 3014 3013 3536 3015 3026 3558 3026 3025 3557 3025 3012 3535 3014 3027 3559 3027 3013 3536 3015 3014 3537 3016 3027 3559 3027 3026 3558 3026 3013 3536 3015 3027 3559 3027 3014 3537 3016 3028 3560 3028 324 3561 3728 3028 3562 3729 3014 3545 3724 309 3539 3722 324 3561 3728 3014 3545 3724 324 3561 4290 3027 3563 4291 3028 3562 4292 3029 3564 3029 3030 3565 3030 3020 3551 3021 3031 3566 4293 3020 3553 4289 3030 3567 4294 3019 3550 3020 3029 3564 3029 3020 3551 3021 3031 3566 4293 3021 3552 4287 3020 3553 4289 3029 3564 3029 3032 3568 3031 3030 3565 3030 3033 3569 4295 3030 3567 4294 3032 3570 4296 3033 3569 4295 3031 3566 4293 3030 3567 4294 3034 3571 3032 3035 3572 3033 3032 3568 3031 3036 3573 4297 3032 3570 4296 3035 3574 4298 3029 3564 3029 3034 3571 3032 3032 3568 3031 3033 3569 4295 3032 3570 4296 3036 3573 4297 3037 3575 3034 3038 3576 3035 3035 3572 3033 3039 3577 4299 3035 3574 4298 3038 3578 4300 3034 3571 3032 3037 3575 3034 3035 3572 3033 3036 3573 4297 3035 3574 4298 3039 3577 4299 3040 3579 3036 3041 3580 3037 3038 3576 3035 3042 3581 4301 3038 3578 4300 3041 3582 4302 3037 3575 3034 3040 3579 3036 3038 3576 3035 3039 3577 4299 3038 3578 4300 3042 3581 4301 3040 3579 3036 3043 3583 3038 3041 3580 3037 3044 3584 3039 3041 3580 3037 3043 3583 3038 3045 3585 3972 3041 3582 3973 3044 3586 3974 3042 3581 4301 3041 3582 4302 3045 3585 4303 3046 3587 3040 3047 3588 3041 3043 3583 3038 3048 3589 3042 3043 3583 3038 3047 3588 3041 3040 3579 3036 3046 3587 3040 3043 3583 3038 3049 3590 3043 3044 3584 3039 3043 3583 3038 3048 3589 3042 3049 3590 3043 3043 3583 3038 3050 3591 3044 3051 3592 3045 3047 3588 3041 3052 3593 3046 3047 3588 3041 3051 3592 3045 3053 3594 3047 3050 3591 3044 3047 3588 3041 3046 3587 3040 3053 3594 3047 3047 3588 3041 3052 3593 3046 3048 3589 3042 3047 3588 3041 623 3595 2902 3051 3596 2915 3050 3597 2949 3052 3593 3046 3051 3592 3045 3054 3598 3048 623 3599 3975 3054 3600 3976 3051 3601 3977 625 3602 4304 3050 3603 4305 3053 3604 4306 625 3602 3978 623 3605 3975 3050 3603 3979 381 3606 4307 3053 3604 4306 3046 3607 4308 381 3606 4307 625 3602 4304 3053 3604 4306 379 3608 629 3046 3607 4308 3040 3609 4309 379 3608 629 381 3606 4307 3046 3607 4308 376 3610 654 3040 3609 4309 3037 3611 4310 379 3608 629 3040 3609 4309 376 3610 654 373 3612 4311 3037 3611 4310 3034 3613 4312 373 3612 4311 376 3610 654 3037 3611 4310 370 3614 4313 3034 3613 4312 3029 3615 4314 370 3614 4313 373 3612 4311 3034 3613 4312 367 3616 4315 3029 3615 4314 3019 3617 4316 367 3616 4315 370 3614 4313 3029 3615 4314 364 3618 4317 3019 3617 4316 3018 3619 4318 364 3618 4317 367 3616 4315 3019 3617 4316 361 3620 4319 3018 3619 4318 3022 3621 4320 361 3620 4319 364 3618 4317 3018 3619 4318 358 3622 4321 3022 3621 4320 3023 3623 4322 358 3622 4321 361 3620 4319 3022 3621 4320 355 3624 4323 3023 3623 4322 3024 3625 4324 355 3624 4323 358 3622 4321 3023 3623 4322 352 3626 4325 3024 3625 4324 3025 3627 4326 352 3626 4325 355 3624 4323 3024 3625 4324 349 3628 4327 3025 3627 4326 3026 3629 4328 352 3626 4325 3025 3627 4326 349 3628 4327 329 3630 4329 3026 3629 4328 3027 3563 4291 344 3631 626 349 3628 4327 3026 3629 4328 329 3630 4329 344 3631 626 3026 3629 4328 324 3561 4290 329 3630 4329 3027 3563 4291 3055 3632 3049 3052 3593 3046 3054 3598 3048 622 3633 2953 3055 3634 2977 3054 3635 2992 623 3599 3975 622 3636 678 3054 3600 3976 3056 3637 3980 3044 3586 3974 3049 3638 3981 3045 3585 3972 3044 3586 3974 3056 3637 3980 3057 3639 3052 3049 3590 3043 3048 3589 3042 3058 3640 3982 3049 3638 3981 3057 3641 3983 3056 3637 3980 3049 3638 3981 3058 3640 3982 3059 3642 3053 3048 3589 3042 3052 3593 3046 3060 3643 3056 3057 3639 3052 3048 3589 3042 3059 3642 3053 3060 3643 3056 3048 3589 3042 3061 3644 3057 3052 3593 3046 3055 3632 3049 3061 3644 3057 3059 3642 3053 3052 3593 3046 3061 3644 3057 3055 3632 3049 3062 3645 3058 622 3646 678 3062 3647 3984 3055 3648 3985 3063 3649 3059 3061 3644 3057 3062 3645 3058 610 3650 653 3063 3651 3986 3062 3652 3984 622 3653 678 610 3650 653 3062 3652 3984 3058 3640 3982 3057 3641 3983 3060 3654 3987 3064 3655 3060 3060 3643 3056 3059 3642 3053 3058 3640 3982 3060 3654 3987 3064 3656 3988 2956 3435 2969 3059 3642 3053 3061 3644 3057 2959 3444 2972 3064 3655 3060 3059 3642 3053 2956 3435 2969 2959 3444 2972 3059 3642 3053 2957 3436 2970 3061 3644 3057 3063 3649 3059 2957 3436 2970 2956 3435 2969 3061 3644 3057 2957 3436 2970 3063 3649 3059 3065 3657 3061 610 3650 653 3065 3658 3989 3063 3651 3986 608 3659 650 2957 3660 3990 3065 3661 3989 610 3650 653 608 3662 650 3065 3658 3989 2959 3444 2972 2961 3446 2974 3064 3655 3060 3066 3663 3991 3064 3656 3988 2961 3664 3992 3058 3640 3982 3064 3656 3988 3066 3663 3991 3067 3665 3993 2961 3664 3992 2960 3451 3969 3068 3666 3994 3066 3663 3991 2961 3664 3992 3069 3667 3995 3068 3666 3994 2961 3664 3992 3067 3665 3993 3069 3667 3995 2961 3664 3992 607 3438 3966 2958 3440 3967 2957 3668 3990 608 3669 650 607 3438 3966 2957 3668 3990 2963 3450 3968 3067 3665 3993 2960 3451 3969 3070 3670 3062 3071 3671 3063 3072 3672 3064 450 3673 659 3072 3674 4330 3071 3675 4331 3073 3676 3065 3070 3670 3062 3072 3672 3064 3074 3677 3066 3073 3676 3065 3072 3672 3064 3075 3678 3067 3074 3677 3066 3072 3672 3064 453 3679 696 3075 3680 4332 3072 3674 4330 450 3673 659 453 3679 696 3072 3674 4330 3076 3681 3068 3077 3682 3069 3071 3671 3063 447 3683 4333 3071 3675 4331 3077 3684 4334 3078 3685 3070 3076 3681 3068 3071 3671 3063 3070 3670 3062 3078 3685 3070 3071 3671 3063 447 3683 4333 450 3673 659 3071 3675 4331 3079 3686 3071 3080 3687 3072 3077 3682 3069 444 3688 4335 3077 3684 4334 3080 3689 4336 3076 3681 3068 3079 3686 3071 3077 3682 3069 444 3688 4335 447 3683 4333 3077 3684 4334 3081 3690 3073 3082 3691 3074 3080 3687 3072 441 3692 4337 3080 3689 4336 3082 3693 4338 3079 3686 3071 3081 3690 3073 3080 3687 3072 441 3692 4337 444 3688 4335 3080 3689 4336 3083 3694 3075 3084 3695 3076 3082 3691 3074 438 3696 4339 3082 3693 4338 3084 3697 4340 3081 3690 3073 3083 3694 3075 3082 3691 3074 438 3696 4339 441 3692 4337 3082 3693 4338 3083 3694 3075 3085 3698 3077 3084 3695 3076 435 3699 4341 3084 3697 4340 3085 3700 4342 435 3699 4341 438 3696 4339 3084 3697 4340 3086 3701 3078 3087 3702 3079 3085 3698 3077 432 3703 4343 3085 3700 4342 3087 3704 4344 3083 3694 3075 3086 3701 3078 3085 3698 3077 432 3703 4343 435 3699 4341 3085 3700 4342 3088 3705 3080 3089 3706 3081 3087 3702 3079 429 3707 4345 3087 3704 4344 3089 3708 4346 3090 3709 3082 3088 3705 3080 3087 3702 3079 3086 3701 3078 3090 3709 3082 3087 3702 3079 429 3707 4345 432 3703 4343 3087 3704 4344 3091 3710 3083 3092 3711 3084 3089 3706 3081 426 3712 4347 3089 3708 4346 3092 3713 4348 3093 3714 3085 3091 3710 3083 3089 3706 3081 3088 3705 3080 3093 3714 3085 3089 3706 3081 426 3712 4347 429 3707 4345 3089 3708 4346 3094 3715 3086 3095 3716 3087 3092 3711 3084 423 3717 4349 3092 3713 4348 3095 3718 4350 3091 3710 3083 3094 3715 3086 3092 3711 3084 426 3712 4347 3092 3713 4348 423 3717 4349 3096 3719 3088 3097 3720 3089 3095 3716 3087 415 3721 4351 3095 3718 4350 3097 3722 4352 3094 3715 3086 3096 3719 3088 3095 3716 3087 419 3723 656 423 3717 4349 3095 3718 4350 415 3721 4351 419 3723 656 3095 3718 4350 3098 3724 3090 3099 3725 3091 3097 3720 3089 416 3726 4353 3097 3722 4352 3099 3727 4354 3096 3719 3088 3098 3724 3090 3097 3720 3089 416 3726 4353 415 3721 4351 3097 3722 4352 3098 3724 3090 3100 3728 3092 3099 3725 3091 416 3726 3730 3099 3727 3731 3100 3729 3732 3101 3730 3093 3100 3728 3092 3098 3724 3090 3102 3731 3094 3100 3728 3092 3103 3732 3095 3101 3730 3093 3103 3732 3095 3100 3728 3092 624 3733 3733 3100 3729 3732 3102 3734 3734 624 3733 3733 416 3726 3730 3100 3729 3732 3104 3735 4355 3098 3736 4356 3096 3737 4357 3105 3738 3735 3101 3739 3736 3098 3736 3737 3104 3735 3738 3105 3738 3735 3098 3736 3737 3106 3740 4358 3096 3737 4357 3094 3741 4359 3106 3740 4358 3104 3735 4355 3096 3737 4357 3107 3742 4360 3094 3741 4359 3091 3743 4361 3107 3742 4360 3106 3740 4358 3094 3741 4359 3108 3744 4362 3091 3743 4361 3093 3745 4363 3107 3742 4360 3091 3743 4361 3108 3744 4362 3109 3746 4364 3093 3745 4363 3088 3747 4365 3108 3744 4362 3093 3745 4363 3109 3746 4364 3110 3748 4366 3088 3747 4365 3090 3749 4367 3109 3746 4364 3088 3747 4365 3110 3748 4366 3111 3750 3096 3090 3709 3082 3086 3701 3078 3112 3751 3996 3090 3749 3997 3111 3752 3998 3110 3748 4366 3090 3749 4367 3112 3751 4368 3113 3753 3097 3086 3701 3078 3083 3694 3075 3114 3754 3098 3111 3750 3096 3086 3701 3078 3113 3753 3097 3114 3754 3098 3086 3701 3078 3115 3755 3099 3083 3694 3075 3081 3690 3073 3115 3755 3099 3113 3753 3097 3083 3694 3075 3116 3756 3100 3081 3690 3073 3079 3686 3071 3116 3756 3100 3115 3755 3099 3081 3690 3073 3117 3757 3101 3079 3686 3071 3076 3681 3068 3118 3758 3102 3116 3756 3100 3079 3686 3071 3117 3757 3101 3118 3758 3102 3079 3686 3071 3119 3759 4369 3076 3760 4370 3078 3761 4371 3120 3762 3739 3117 3763 3740 3076 3760 3741 3119 3759 3742 3120 3762 3739 3076 3760 3741 3121 3764 4372 3078 3761 4371 3070 3765 4373 3121 3764 4372 3119 3759 4369 3078 3761 4371 3122 3766 4374 3070 3765 4373 3073 3767 4375 3122 3766 4374 3121 3764 4372 3070 3765 4373 3123 3768 4376 3073 3767 4375 3074 3769 4377 3122 3766 4374 3073 3767 4375 3123 3768 4376 3124 3770 3103 3125 3771 3104 3074 3677 3066 3126 3772 4378 3074 3769 4377 3125 3773 4379 3075 3678 3067 3124 3770 3103 3074 3677 3066 3123 3768 4376 3074 3769 4377 3126 3772 4378 3127 3774 3105 3128 3775 3106 3125 3771 3104 3129 3776 4380 3125 3773 4379 3128 3777 4381 3124 3770 3103 3127 3774 3105 3125 3771 3104 3126 3772 4378 3125 3773 4379 3129 3776 4380 3127 3774 3105 3130 3778 3107 3128 3775 3106 3131 3779 3108 3128 3775 3106 3130 3778 3107 3132 3780 3999 3128 3777 4000 3131 3781 4001 3129 3776 4380 3128 3777 4381 3132 3780 4382 554 3782 2993 3130 3783 3050 3127 3784 3051 3133 3785 3109 3130 3778 3107 3134 3786 3110 554 3787 4002 3134 3788 4003 3130 3789 4004 3133 3785 3109 3131 3779 3108 3130 3778 3107 553 3790 4383 3127 3791 4384 3124 3792 4385 553 3790 4005 554 3793 4002 3127 3791 4006 456 3794 4386 3124 3792 4385 3075 3680 4332 456 3794 4386 553 3790 4383 3124 3792 4385 453 3679 696 456 3794 4386 3075 3680 4332 3135 3795 3111 3133 3785 3109 3134 3786 3110 556 3796 3054 3135 3797 3055 3134 3798 3127 554 3787 4002 556 3799 630 3134 3788 4003 3136 3800 4007 3131 3781 4001 3133 3801 4008 3132 3780 3999 3131 3781 4001 3136 3800 4007 3137 3802 3112 3133 3785 3109 3135 3795 3111 3138 3803 4009 3133 3801 4008 3137 3804 4010 3136 3800 4007 3133 3801 4008 3138 3803 4009 3139 3805 3113 3135 3795 3111 3140 3806 3114 556 3807 630 3140 3808 4011 3135 3809 4012 3139 3805 3113 3137 3802 3112 3135 3795 3111 3141 3810 3115 3139 3805 3113 3140 3806 3114 572 3811 633 3141 3812 4013 3140 3813 4011 556 3814 630 572 3811 633 3140 3813 4011 3138 3803 4009 3137 3804 4010 3139 3815 4014 3142 3816 3116 3139 3805 3113 3141 3810 3115 3138 3803 4009 3139 3815 4014 3142 3817 4015 3143 3818 3117 3141 3810 3115 3144 3819 3118 572 3811 633 3144 3820 4016 3141 3812 4013 3143 3818 3117 3142 3816 3116 3141 3810 3115 588 3821 648 3143 3822 4017 3144 3823 4016 572 3811 633 588 3824 648 3144 3820 4016 3143 3818 3117 3145 3825 3119 3142 3816 3116 3146 3826 4018 3142 3817 4015 3145 3827 4019 3138 3803 4009 3142 3817 4015 3146 3826 4018 3147 3828 3120 3145 3825 3119 3143 3818 3117 3148 3829 3121 3145 3825 3119 3147 3828 3120 3148 3829 3121 3149 3830 3122 3145 3825 3119 3150 3831 4020 3145 3827 4019 3149 3832 4021 3151 3833 4022 3146 3826 4018 3145 3827 4019 3152 3834 4023 3151 3833 4022 3145 3827 4019 3150 3831 4020 3152 3834 4023 3145 3827 4019 591 3835 4024 3147 3836 4025 3143 3837 4017 588 3838 648 591 3835 4024 3143 3837 4017 591 3835 4024 3148 3839 4026 3147 3836 4025 3148 3829 3121 3153 3840 3123 3149 3830 3122 3154 3841 4027 3149 3832 4021 3153 3842 4028 3154 3841 4027 3150 3831 4020 3149 3832 4021 3155 3843 3124 3153 3840 3123 3148 3829 3121 3156 3844 3125 3153 3840 3123 3155 3843 3124 3156 3844 3125 3157 3845 3126 3153 3840 3123 3158 3846 4564 3153 3842 4565 3157 3847 4566 3158 3846 4029 3154 3841 4027 3153 3842 4028 191 3848 4030 3155 3849 4031 3148 3850 4026 591 3851 4024 191 3852 4030 3148 3853 4026 191 3848 4567 3156 3854 4568 3155 3849 4569 3159 3855 3128 3160 3856 3129 3157 3845 3126 3161 3857 4570 3157 3847 4566 3160 3858 4571 3156 3844 3125 3159 3855 3128 3157 3845 3126 3161 3857 4570 3158 3846 4564 3157 3847 4566 3162 3859 3131 3163 3860 3132 3160 3856 3129 3164 3861 4572 3160 3858 4571 3163 3862 4573 3159 3855 3128 3162 3859 3131 3160 3856 3129 3164 3861 4572 3161 3857 4570 3160 3858 4571 3165 3863 3133 3166 3864 3136 3163 3860 3132 3167 3865 4574 3163 3862 4573 3166 3866 4575 3162 3859 3131 3165 3863 3133 3163 3860 3132 3164 3861 4572 3163 3862 4573 3167 3865 4574 3165 3863 3133 3168 3867 3137 3166 3864 3136 3169 3868 4576 3166 3866 4575 3168 3869 4577 3167 3865 4574 3166 3866 4575 3169 3868 4576 3170 3870 3138 3171 3871 3139 3168 3867 3137 3172 3872 4578 3168 3869 4577 3171 3873 4579 3165 3863 3133 3170 3870 3138 3168 3867 3137 3169 3868 4576 3168 3869 4577 3172 3872 4578 3173 3874 3140 3174 3875 3141 3171 3871 3139 3175 3876 3142 3171 3871 3139 3174 3875 3141 3170 3870 3138 3173 3874 3140 3171 3871 3139 3176 3877 3743 3171 3873 3744 3175 3878 3745 3172 3872 4578 3171 3873 4579 3176 3877 4580 3177 3879 3143 3178 3880 3144 3174 3875 3141 3179 3881 3145 3174 3875 3141 3178 3880 3144 3173 3874 3140 3177 3879 3143 3174 3875 3141 3180 3882 3146 3174 3875 3141 3179 3881 3145 3175 3876 3142 3174 3875 3141 3180 3882 3146 3181 3883 3147 3182 3884 3148 3178 3880 3144 3183 3885 3149 3178 3880 3144 3182 3884 3148 3177 3879 3143 3181 3883 3147 3178 3880 3144 3179 3881 3145 3178 3880 3144 3183 3885 3149 3181 3883 3147 3184 3886 3150 3182 3884 3148 3185 3887 3151 3182 3884 3148 3184 3886 3150 3183 3885 3149 3182 3884 3148 3185 3887 3151 3186 3888 3152 3187 3889 3153 3184 3886 3150 3188 3890 3154 3184 3886 3150 3187 3889 3153 3181 3883 3147 3186 3888 3152 3184 3886 3150 3185 3887 3151 3184 3886 3150 3189 3891 3155 3188 3890 3154 3189 3891 3155 3184 3886 3150 3190 3892 3156 3191 3893 3157 3187 3889 3153 3192 3894 4581 3187 3895 4582 3191 3896 4583 3186 3888 3152 3190 3892 3156 3187 3889 3153 3193 3897 4032 3188 3898 4033 3187 3895 4034 3192 3894 4035 3193 3897 4032 3187 3895 4034 3194 3899 3158 3195 3900 3159 3191 3893 3157 3196 3901 4584 3191 3896 4583 3195 3902 4585 3190 3892 3156 3194 3899 3158 3191 3893 3157 3196 3901 4584 3192 3894 4581 3191 3896 4583 3197 3903 3160 3198 3904 3161 3195 3900 3159 3199 3905 4586 3195 3902 4585 3198 3906 4587 3194 3899 3158 3197 3903 3160 3195 3900 3159 3199 3905 4586 3196 3901 4584 3195 3902 4585 3197 3903 3160 3200 3907 3162 3198 3904 3161 3201 3908 4588 3198 3906 4587 3200 3909 4589 3199 3905 4586 3198 3906 4587 3201 3908 4588 3202 3910 3163 3203 3911 3164 3200 3907 3162 3204 3912 4590 3200 3909 4589 3203 3913 4591 3205 3914 3165 3202 3910 3163 3200 3907 3162 3197 3903 3160 3205 3914 3165 3200 3907 3162 3201 3908 4588 3200 3909 4589 3204 3912 4590 3206 3915 3166 3207 3916 3167 3203 3911 3164 3208 3917 4592 3203 3913 4591 3207 3918 4593 3202 3910 3163 3206 3915 3166 3203 3911 3164 3204 3912 4590 3203 3913 4591 3208 3917 4592 3206 3915 3166 3209 3919 3168 3207 3916 3167 3210 3920 3169 3207 3916 3167 3209 3919 3168 3211 3921 3746 3207 3918 3747 3210 3922 3748 3208 3917 4592 3207 3918 4593 3211 3921 4594 596 3923 3130 3209 3924 3134 3206 3925 3135 3212 3926 3170 3209 3919 3168 3213 3927 3171 596 3928 3749 3213 3929 3750 3209 3930 3751 3212 3926 3170 3210 3920 3169 3209 3919 3168 595 3931 4595 3206 3932 4596 3202 3933 4597 595 3931 3752 596 3934 3749 3206 3932 3753 204 3935 4598 3202 3933 4597 3205 3936 4599 204 3935 4598 595 3931 4595 3202 3933 4597 3214 3937 3172 3205 3914 3165 3197 3903 3160 204 3938 3205 3205 3939 3206 3214 3940 3209 3215 3941 3173 3197 3903 3160 3194 3899 3158 3216 3942 3174 3214 3937 3172 3197 3903 3160 3215 3941 3173 3216 3942 3174 3197 3903 3160 3217 3943 3175 3194 3899 3158 3190 3892 3156 3217 3943 3175 3215 3941 3173 3194 3899 3158 3218 3944 3176 3190 3892 3156 3186 3888 3152 3218 3944 3176 3217 3943 3175 3190 3892 3156 3219 3945 3177 3186 3888 3152 3181 3883 3147 3219 3945 3177 3218 3944 3176 3186 3888 3152 3219 3945 3177 3181 3883 3147 3177 3879 3143 3220 3946 3178 3177 3879 3143 3173 3874 3140 3220 3946 3178 3219 3945 3177 3177 3879 3143 3221 3947 3179 3173 3874 3140 3170 3870 3138 3221 3947 3179 3220 3946 3178 3173 3874 3140 3222 3948 3180 3170 3870 3138 3165 3863 3133 3222 3948 3180 3221 3947 3179 3170 3870 3138 3223 3949 3181 3165 3863 3133 3162 3859 3131 3223 3949 3181 3222 3948 3180 3165 3863 3133 3224 3950 3182 3162 3859 3131 3159 3855 3128 3224 3950 3182 3223 3949 3181 3162 3859 3131 190 3951 4600 3159 3952 4601 3156 3854 4568 3224 3950 3182 3159 3855 3128 3225 3953 3183 192 3954 636 3225 3955 4602 3159 3952 4601 190 3951 4600 192 3954 636 3159 3952 4601 191 3848 4567 190 3951 4600 3156 3854 4568 193 3956 4603 3224 3957 4604 3225 3955 4602 192 3954 636 193 3956 4603 3225 3955 4602 203 3958 639 3214 3959 4605 3216 3960 4606 203 3958 639 204 3961 4598 3214 3959 4605 202 3962 640 3216 3960 4606 3215 3963 4607 203 3958 639 3216 3960 4606 202 3962 640 201 3964 4608 3215 3963 4607 3217 3965 4609 201 3964 4608 202 3962 640 3215 3963 4607 200 3966 4610 3217 3965 4609 3218 3967 4611 200 3966 4610 201 3964 4608 3217 3965 4609 199 3968 4612 3218 3967 4611 3219 3969 4613 199 3968 4612 200 3966 4610 3218 3967 4611 198 3970 4614 3219 3969 4613 3220 3971 4615 198 3970 4614 199 3968 4612 3219 3969 4613 197 3972 4616 3220 3971 4615 3221 3973 4617 197 3972 4616 198 3970 4614 3220 3971 4615 196 3974 4618 3221 3973 4617 3222 3975 4619 196 3974 4618 197 3972 4616 3221 3973 4617 195 3976 4620 3222 3975 4619 3223 3977 4621 195 3976 4620 196 3974 4618 3222 3975 4619 194 3978 4622 3223 3977 4621 3224 3957 4604 194 3978 4622 195 3976 4620 3223 3977 4621 194 3978 4622 3224 3957 4604 193 3956 4603 3226 3979 3184 3212 3926 3170 3213 3927 3171 598 3980 1012 3226 3981 3754 3213 3929 3750 596 3928 3749 598 3980 1012 3213 3929 3750 3227 3982 3755 3210 3922 3748 3212 3983 3756 3211 3921 3746 3210 3922 3748 3227 3982 3755 3228 3984 3185 3212 3926 3170 3226 3979 3184 3229 3985 3757 3212 3983 3756 3228 3986 3758 3230 3987 3759 3212 3983 3756 3229 3985 3757 3227 3982 3755 3212 3983 3756 3230 3987 3759 3231 3988 3186 3226 3979 3184 3232 3989 3187 612 3990 1015 3232 3991 3760 3226 3992 3754 3231 3988 3186 3228 3984 3185 3226 3979 3184 598 687 1012 612 705 1015 3226 3993 3754 621 3994 3214 3231 3995 3231 3232 3996 3232 612 3990 1015 621 3997 1036 3232 3991 3760 3231 3988 3186 3233 3998 3188 3228 3984 3185 3234 3999 3761 3228 3986 3758 3233 4000 3762 3235 4001 3763 3228 3986 3758 3234 3999 3761 3229 3985 3757 3228 3986 3758 3235 4001 3763 3236 4002 3189 3233 3998 3188 3231 3988 3186 3236 4002 3189 3237 4003 3190 3233 3998 3188 3234 3999 3761 3233 4000 3762 3237 4004 3764 3236 4002 3189 3231 3988 3186 3238 4005 3191 621 4006 1036 3238 4007 3765 3231 4008 3766 621 4009 1036 3236 4010 3767 3238 4011 3765 3236 4002 3189 3103 3732 3095 3237 4003 3190 3239 4012 3768 3237 4004 3764 3103 4013 3769 3234 3999 3761 3237 4004 3764 3239 4012 3768 3102 3731 3094 3103 3732 3095 3236 4002 3189 3239 4012 3768 3103 4013 3769 3101 3739 3736 624 3733 3733 3102 3734 3734 3236 4014 3767 621 4015 1036 624 4016 3733 3236 4017 3767 3105 3738 3735 3239 4012 3768 3101 3739 3736 3185 3887 3151 3189 3891 3155 3240 4018 3192 3241 4019 4036 3240 4020 4037 3189 4021 4038 3242 4022 3193 3185 3887 3151 3240 4018 3192 3243 4023 3194 3242 4022 3193 3240 4018 3192 3244 4024 4039 3243 4025 4040 3240 4020 4037 3244 4024 4039 3240 4020 4037 3241 4019 4036 3245 4026 4041 3189 4021 4038 3188 3898 4033 3246 4027 4042 3241 4019 4036 3189 4021 4038 3247 4028 4043 3246 4027 4042 3189 4021 4038 3245 4026 4041 3247 4028 4043 3189 4021 4038 3248 4029 3195 3183 3885 3149 3185 3887 3151 3242 4022 3193 3248 4029 3195 3185 3887 3151 3249 4030 3196 3179 3881 3145 3183 3885 3149 3248 4029 3195 3249 4030 3196 3183 3885 3149 3250 4031 3197 3180 3882 3146 3179 3881 3145 3251 4032 3198 3250 4031 3197 3179 3881 3145 3249 4030 3196 3251 4032 3198 3179 3881 3145 3252 4033 3770 3180 4034 3771 3250 4035 3772 3253 4036 3773 3175 3878 3745 3180 4034 3771 3254 4037 3774 3180 4034 3771 3252 4033 3770 3253 4036 3773 3180 4034 3771 3254 4037 3774 3255 4038 3775 3250 4035 3772 3251 4039 3776 3256 4040 3777 3250 4035 3772 3255 4038 3775 3252 4033 3770 3250 4035 3772 3256 4040 3777 3116 3756 3100 3251 4032 3198 3249 4030 3196 3257 4041 3199 3251 4032 3198 3116 3756 3100 3255 4038 3775 3251 4039 3776 3257 4042 3778 3116 3756 3100 3249 4030 3196 3248 4029 3195 3115 3755 3099 3248 4029 3195 3242 4022 3193 3116 3756 3100 3248 4029 3195 3115 3755 3099 3113 3753 3097 3242 4022 3193 3243 4023 3194 3115 3755 3099 3242 4022 3193 3113 3753 3097 3258 4043 3200 3113 3753 3097 3243 4023 3194 3244 4024 4039 3258 4044 4044 3243 4025 4040 3193 3897 4032 3245 4026 4041 3188 3898 4033 3176 3877 3743 3175 3878 3745 3253 4036 3773 3259 4045 4045 3111 3752 3998 3114 4046 4046 3112 3751 3996 3111 3752 3998 3259 4045 4045 3258 4043 3200 3114 3754 3098 3113 3753 3097 3244 4024 4039 3114 4046 4046 3258 4044 4044 3259 4045 4045 3114 4046 4046 3244 4024 4039 3257 4041 3199 3116 3756 3100 3118 3758 3102 3260 4047 3779 3118 4048 3780 3117 3763 3740 3260 4047 3779 3257 4042 3778 3118 4048 3780 3120 3762 3739 3260 4047 3779 3117 3763 3740 3255 4038 3775 3257 4042 3778 3260 4047 3779 3068 4049 3201 3058 4050 3202 3066 4051 3203 3261 4052 3204 3262 4053 3207 3058 4050 3202 3056 4054 3208 3058 4050 3202 3262 4053 3207 3068 4049 3201 3261 4052 3204 3058 4050 3202 3263 4055 3210 3264 4056 3211 3262 4053 3207 3265 4057 3212 3262 4053 3207 3264 4056 3211 3261 4052 3204 3263 4055 3210 3262 4053 3207 3045 4058 3213 3056 4054 3208 3262 4053 3207 3265 4057 3212 3045 4058 3213 3262 4053 3207 3266 4059 3215 3267 4060 3216 3264 4056 3211 3268 4061 3217 3264 4056 3211 3267 4060 3216 3263 4055 3210 3266 4059 3215 3264 4056 3211 3268 4061 3217 3265 4057 3212 3264 4056 3211 3269 4062 3218 3270 4063 3219 3267 4060 3216 3271 4064 3220 3267 4060 3216 3270 4063 3219 3266 4059 3215 3269 4062 3218 3267 4060 3216 3271 4064 3220 3268 4061 3217 3267 4060 3216 3269 4062 3218 3272 4065 3221 3270 4063 3219 3273 4066 3222 3270 4063 3219 3272 4065 3221 3273 4066 3222 3271 4064 3220 3270 4063 3219 3274 4067 3223 3006 4068 3224 3272 4065 3221 3021 4069 3225 3272 4065 3221 3006 4068 3224 3269 4062 3218 3274 4067 3223 3272 4065 3221 3021 4069 3225 3273 4066 3222 3272 4065 3221 2995 4070 3226 2994 4071 3227 3006 4068 3224 3274 4067 3223 2995 4070 3226 3006 4068 3224 3021 4069 3225 3006 4068 3224 3017 4072 3228 2983 4073 3229 2995 4070 3226 3274 4067 3223 3275 4074 3230 3274 4067 3223 3269 4062 3218 2984 4075 3233 2983 4073 3229 3274 4067 3223 3275 4074 3230 2984 4075 3233 3274 4067 3223 3276 4076 3234 3269 4062 3218 3266 4059 3215 3276 4076 3234 3275 4074 3230 3269 4062 3218 3277 4077 3235 3266 4059 3215 3263 4055 3210 3277 4077 3235 3276 4076 3234 3266 4059 3215 3278 4078 3236 3263 4055 3210 3261 4052 3204 3278 4078 3236 3277 4077 3235 3263 4055 3210 3067 4079 3237 3261 4052 3204 3068 4049 3201 3067 4079 3237 3278 4078 3236 3261 4052 3204 3067 4079 3237 3068 4049 3201 3069 4080 3238 2981 4081 3239 2984 4075 3233 3275 4074 3230 3279 4082 3240 3275 4074 3230 3276 4076 3234 2970 4083 3241 2981 4081 3239 3275 4074 3230 3279 4082 3240 2970 4083 3241 3275 4074 3230 3280 4084 3242 3276 4076 3234 3277 4077 3235 3280 4084 3242 3279 4082 3240 3276 4076 3234 3281 4085 3243 3277 4077 3235 3278 4078 3236 3281 4085 3243 3280 4084 3242 3277 4077 3235 2962 4086 3244 3278 4078 3236 3067 4079 3237 2962 4086 3244 3281 4085 3243 3278 4078 3236 2962 4086 3244 3067 4079 3237 2963 4087 3245 2968 4088 3246 2970 4083 3241 3279 4082 3240 2967 4089 3247 3279 4082 3240 3280 4084 3242 2967 4089 3247 2968 4088 3246 3279 4082 3240 2966 4090 3248 3280 4084 3242 3281 4085 3243 2966 4090 3248 2967 4089 3247 3280 4084 3242 2964 4091 3249 3281 4085 3243 2962 4086 3244 2965 4092 3250 3281 4085 3243 2964 4091 3249 2965 4092 3250 2966 4090 3248 3281 4085 3243 3042 4093 3251 3045 4058 3213 3265 4057 3212 3039 4094 3252 3265 4057 3212 3268 4061 3217 3039 4094 3252 3042 4093 3251 3265 4057 3212 3036 4095 3253 3268 4061 3217 3271 4064 3220 3036 4095 3253 3039 4094 3252 3268 4061 3217 3033 4096 3254 3271 4064 3220 3273 4066 3222 3033 4096 3254 3036 4095 3253 3271 4064 3220 3031 4097 3255 3273 4066 3222 3021 4069 3225 3033 4096 3254 3273 4066 3222 3031 4097 3255 3246 4098 3256 3244 4099 3257 3241 4100 3258 3282 4101 3259 3283 4102 3260 3244 4099 3257 3259 4103 3261 3244 4099 3257 3283 4102 3260 3246 4098 3256 3282 4101 3259 3244 4099 3257 3284 4104 3262 3285 4105 3263 3283 4102 3260 3286 4106 3264 3283 4102 3260 3285 4105 3263 3282 4101 3259 3284 4104 3262 3283 4102 3260 3112 4107 3265 3259 4103 3261 3283 4102 3260 3286 4106 3264 3112 4107 3265 3283 4102 3260 3287 4108 3266 3288 4109 3267 3285 4105 3263 3289 4110 3268 3285 4105 3263 3288 4109 3267 3284 4104 3262 3287 4108 3266 3285 4105 3263 3289 4110 3268 3286 4106 3264 3285 4105 3263 3290 4111 3269 3291 4112 3270 3288 4109 3267 3292 4113 3271 3288 4109 3267 3291 4112 3270 3287 4108 3266 3290 4111 3269 3288 4109 3267 3292 4113 3271 3289 4110 3268 3288 4109 3267 3290 4111 3269 3293 4114 3272 3291 4112 3270 3294 4115 3273 3291 4112 3270 3293 4114 3272 3294 4115 3273 3292 4113 3271 3291 4112 3270 3295 4116 3274 3239 4117 3275 3293 4114 3272 3104 4118 3276 3293 4114 3272 3239 4117 3275 3290 4111 3269 3295 4116 3274 3293 4114 3272 3104 4118 3276 3294 4115 3273 3293 4114 3272 3235 4119 3277 3234 4120 3278 3239 4117 3275 3295 4116 3274 3235 4119 3277 3239 4117 3275 3104 4118 3276 3239 4117 3275 3105 4121 3279 3229 4122 3280 3235 4119 3277 3295 4116 3274 3296 4123 3281 3295 4116 3274 3290 4111 3269 3230 4124 3282 3229 4122 3280 3295 4116 3274 3296 4123 3281 3230 4124 3282 3295 4116 3274 3297 4125 3283 3290 4111 3269 3287 4108 3266 3297 4125 3283 3296 4123 3281 3290 4111 3269 3298 4126 3284 3287 4108 3266 3284 4104 3262 3298 4126 3284 3297 4125 3283 3287 4108 3266 3299 4127 3285 3284 4104 3262 3282 4101 3259 3299 4127 3285 3298 4126 3284 3284 4104 3262 3245 4128 3286 3282 4101 3259 3246 4098 3256 3245 4128 3286 3299 4127 3285 3282 4101 3259 3245 4128 3286 3246 4098 3256 3247 4129 3287 3227 4130 3288 3230 4124 3282 3296 4123 3281 3300 4131 3289 3296 4123 3281 3297 4125 3283 3211 4132 3290 3227 4130 3288 3296 4123 3281 3300 4131 3289 3211 4132 3290 3296 4123 3281 3301 4133 3291 3297 4125 3283 3298 4126 3284 3301 4133 3291 3300 4131 3289 3297 4125 3283 3302 4134 3292 3298 4126 3284 3299 4127 3285 3302 4134 3292 3301 4133 3291 3298 4126 3284 3192 4135 3293 3299 4127 3285 3245 4128 3286 3192 4135 3293 3302 4134 3292 3299 4127 3285 3192 4135 3293 3245 4128 3286 3193 4136 3294 3208 4137 3295 3211 4132 3290 3300 4131 3289 3204 4138 3296 3300 4131 3289 3301 4133 3291 3204 4138 3296 3208 4137 3295 3300 4131 3289 3201 4139 3297 3301 4133 3291 3302 4134 3292 3201 4139 3297 3204 4138 3296 3301 4133 3291 3196 4140 3298 3302 4134 3292 3192 4135 3293 3199 4141 3299 3302 4134 3292 3196 4140 3298 3199 4141 3299 3201 4139 3297 3302 4134 3292 3110 4142 3300 3112 4107 3265 3286 4106 3264 3109 4143 3301 3286 4106 3264 3289 4110 3268 3109 4143 3301 3110 4142 3300 3286 4106 3264 3108 4144 3302 3289 4110 3268 3292 4113 3271 3108 4144 3302 3109 4143 3301 3289 4110 3268 3107 4145 3303 3292 4113 3271 3294 4115 3273 3107 4145 3303 3108 4144 3302 3292 4113 3271 3106 4146 3304 3294 4115 3273 3104 4118 3276 3107 4145 3303 3294 4115 3273 3106 4146 3304 3151 4147 3305 3138 4148 3306 3146 4149 3307 3303 4150 3308 3304 4151 3309 3138 4148 3306 3136 4152 3310 3138 4148 3306 3304 4151 3309 3151 4147 3305 3303 4150 3308 3138 4148 3306 3305 4153 3311 3306 4154 3312 3304 4151 3309 3307 4155 3313 3304 4151 3309 3306 4154 3312 3303 4150 3308 3305 4153 3311 3304 4151 3309 3132 4156 3314 3136 4152 3310 3304 4151 3309 3307 4155 3313 3132 4156 3314 3304 4151 3309 3308 4157 3315 3309 4158 3316 3306 4154 3312 3310 4159 3317 3306 4154 3312 3309 4158 3316 3305 4153 3311 3308 4157 3315 3306 4154 3312 3310 4159 3317 3307 4155 3313 3306 4154 3312 3311 4160 3318 3312 4161 3319 3309 4158 3316 3313 4162 3320 3309 4158 3316 3312 4161 3319 3308 4157 3315 3311 4160 3318 3309 4158 3316 3313 4162 3320 3310 4159 3317 3309 4158 3316 3311 4160 3318 3314 4163 3321 3312 4161 3319 3315 4164 3322 3312 4161 3319 3314 4163 3321 3315 4164 3322 3313 4162 3320 3312 4161 3319 3316 4165 3323 3260 4166 3325 3314 4163 3321 3119 4167 3326 3314 4163 3321 3260 4166 3325 3311 4160 3318 3316 4165 3323 3314 4163 3321 3119 4167 3326 3315 4164 3322 3314 4163 3321 3256 4168 3327 3255 4169 3329 3260 4166 3325 3316 4165 3323 3256 4168 3327 3260 4166 3325 3119 4167 3326 3260 4166 3325 3120 4170 3330 3252 4171 3332 3256 4168 3327 3316 4165 3323 3317 4172 3333 3316 4165 3323 3311 4160 3318 3254 4173 3347 3252 4171 3332 3316 4165 3323 3317 4172 3333 3254 4173 3347 3316 4165 3323 3318 4174 3350 3311 4160 3318 3308 4157 3315 3318 4174 3350 3317 4172 3333 3311 4160 3318 3319 4175 3361 3308 4157 3315 3305 4153 3311 3319 4175 3361 3318 4174 3350 3308 4157 3315 3320 4176 3362 3305 4153 3311 3303 4150 3308 3320 4176 3362 3319 4175 3361 3305 4153 3311 3150 4177 3364 3303 4150 3308 3151 4147 3305 3150 4177 3364 3320 4176 3362 3303 4150 3308 3150 4177 3364 3151 4147 3305 3152 4178 3365 3253 4179 3367 3254 4173 3347 3317 4172 3333 3321 4180 3368 3317 4172 3333 3318 4174 3350 3176 4181 3369 3253 4179 3367 3317 4172 3333 3321 4180 3368 3176 4181 3369 3317 4172 3333 3322 4182 3371 3318 4174 3350 3319 4175 3361 3322 4182 3371 3321 4180 3368 3318 4174 3350 3323 4183 3382 3319 4175 3361 3320 4176 3362 3323 4183 3382 3322 4182 3371 3319 4175 3361 3158 4184 3383 3320 4176 3362 3150 4177 3364 3158 4184 3383 3323 4183 3382 3320 4176 3362 3158 4184 3383 3150 4177 3364 3154 4185 3390 3172 4186 3396 3176 4181 3369 3321 4180 3368 3169 4187 3397 3321 4180 3368 3322 4182 3371 3169 4187 3397 3172 4186 3396 3321 4180 3368 3167 4188 3406 3322 4182 3371 3323 4183 3382 3167 4188 3406 3169 4187 3397 3322 4182 3371 3161 4189 3407 3323 4183 3382 3158 4184 3383 3164 4190 3408 3323 4183 3382 3161 4189 3407 3164 4190 3408 3167 4188 3406 3323 4183 3382 3129 4191 3409 3132 4156 3314 3307 4155 3313 3126 4192 3410 3307 4155 3313 3310 4159 3317 3126 4192 3410 3129 4191 3409 3307 4155 3313 3123 4193 3414 3310 4159 3317 3313 4162 3320 3123 4193 3414 3126 4192 3410 3310 4159 3317 3122 4194 3415 3313 4162 3320 3315 4164 3322 3122 4194 3415 3123 4193 3414 3313 4162 3320 3121 4195 3426 3315 4164 3322 3119 4167 3326 3122 4194 3415 3315 4164 3322 3121 4195 3426 3324 4196 4047 3325 4197 4048 3326 4198 4049 3327 4199 3428 3326 4200 3439 3325 4201 3443 3328 4202 4050 3324 4196 4047 3326 4198 4049 3329 4203 4051 3328 4202 4050 3326 4198 4049 3330 4204 3444 3329 4205 3445 3326 4200 3439 3330 4204 3444 3326 4200 3439 3327 4199 3428 3331 4206 4052 3325 4197 4048 3324 4196 4047 3331 4206 4052 3332 4207 4053 3325 4197 4048 3333 4208 3446 3325 4201 3443 3332 4209 3447 3327 4199 3428 3325 4201 3443 3333 4208 3446 3328 4202 4050 3334 4210 4054 3324 4196 4047 3335 4211 4055 3324 4196 4047 3334 4210 4054 3335 4211 4055 3331 4206 4052 3324 4196 4047 3336 4212 4056 3337 4213 4057 3334 4210 4054 3338 4214 3334 3334 4215 3335 3337 4216 3336 3328 4202 4050 3336 4212 4056 3334 4210 4054 3339 4217 4058 3335 4211 4055 3334 4210 4054 3340 4218 4059 3339 4217 4058 3334 4210 4054 3338 4214 3334 3340 4219 3337 3334 4215 3335 3341 4220 3338 3337 4216 3336 3336 4221 3339 3338 4214 3334 3337 4216 3336 3342 4222 3340 3341 4220 3338 3342 4222 3340 3337 4216 3336 3343 4223 4060 3336 4212 4056 3328 4202 4050 3341 4220 3338 3336 4221 3339 3343 4224 3341 3344 4225 4061 3328 4202 4050 3329 4203 4051 3345 4226 4062 3343 4223 4060 3328 4202 4050 3344 4225 4061 3345 4226 4062 3328 4202 4050 3346 4227 4063 3329 4203 4051 3347 4228 4064 3330 4204 3444 3347 4229 3449 3329 4205 3445 3346 4227 4063 3344 4225 4061 3329 4203 4051 3348 4230 4065 3349 4231 4066 3332 4207 4053 3350 4232 4387 3332 4209 4388 3349 4233 4389 3331 4206 4052 3348 4230 4065 3332 4207 4053 3333 4208 3446 3332 4209 3447 3350 4232 3450 3348 4230 4065 3351 4234 4067 3349 4231 4066 3350 4232 4387 3349 4233 4389 3351 4235 4390 3352 4236 4068 3353 4237 4069 3351 4234 4067 3354 4238 4391 3351 4235 4390 3353 4239 4392 3348 4230 4065 3352 4236 4068 3351 4234 4067 3350 4232 4387 3351 4235 4390 3354 4238 4391 3352 4236 4068 3355 4240 4070 3353 4237 4069 3356 4241 4393 3353 4239 4392 3355 4242 4394 3354 4238 4391 3353 4239 4392 3356 4241 4393 3352 4236 4068 3357 4243 4071 3355 4240 4070 3358 4244 3342 3355 4242 3343 3357 4245 3345 3356 4241 3355 3355 4242 3343 3358 4244 3342 3352 4236 4068 3359 4246 4072 3357 4243 4071 3360 4247 4073 3357 4243 4071 3359 4246 4072 3358 4244 3342 3357 4245 3345 3360 4248 3356 3361 4249 4074 3362 4250 4075 3359 4246 4072 3363 4251 4076 3359 4246 4072 3362 4250 4075 3364 4252 4077 3361 4249 4074 3359 4246 4072 3365 4253 4078 3364 4252 4077 3359 4246 4072 3352 4236 4068 3365 4253 4078 3359 4246 4072 3366 4254 4079 3360 4247 4073 3359 4246 4072 3363 4251 4076 3366 4254 4079 3359 4246 4072 3367 4255 3458 3362 4256 3459 3361 4257 3460 3368 4258 4080 3363 4251 4076 3362 4250 4075 3369 4259 3462 3368 4260 3477 3362 4256 3459 3369 4259 3462 3362 4256 3459 3367 4255 3458 3367 4255 3458 3361 4257 3460 3364 4261 3496 3367 4255 3458 3364 4261 3496 3365 4262 3497 3370 4263 4081 3365 4253 4078 3352 4236 4068 3371 4264 4623 3365 4262 4624 3370 4265 4625 3367 4255 3458 3365 4262 3497 3371 4264 3498 3372 4266 4082 3352 4236 4068 3348 4230 4065 3372 4266 4082 3370 4263 4081 3352 4236 4068 3373 4267 4083 3348 4230 4065 3331 4206 4052 3373 4267 4083 3372 4266 4082 3348 4230 4065 3374 4268 4084 3331 4206 4052 3335 4211 4055 3375 4269 4085 3373 4267 4083 3331 4206 4052 3374 4268 4084 3375 4269 4085 3331 4206 4052 3376 4270 3357 3335 4271 3358 3339 4272 3360 3376 4270 4626 3374 4273 4627 3335 4271 4628 3376 4270 3357 3339 4272 3360 3340 4219 3337 3376 4270 3357 3340 4219 3337 3338 4214 3334 3377 4274 3366 3360 4248 3356 3366 4275 3376 3358 4244 3342 3360 4248 3356 3377 4274 3366 3378 4276 4086 3366 4254 4079 3363 4251 4076 3379 4277 4087 3380 4278 4088 3366 4254 4079 3381 4279 3377 3366 4275 3376 3380 4280 3380 3378 4276 4086 3379 4277 4087 3366 4254 4079 3381 4279 3377 3377 4274 3366 3366 4275 3376 3368 4258 4080 3382 4281 4089 3363 4251 4076 3378 4276 4086 3363 4251 4076 3382 4281 4089 3369 4259 3462 3382 4282 3499 3368 4260 3477 3383 4283 4090 3378 4276 4086 3382 4281 4089 3369 4259 3462 3383 4284 3506 3382 4282 3499 3384 4285 4091 3385 4286 4092 3380 4278 4088 3386 4287 4629 3380 4280 4630 3385 4288 4631 3379 4277 4087 3384 4285 4091 3380 4278 4088 3381 4279 3377 3380 4280 3380 3386 4287 3381 3384 4285 4091 3387 4289 4093 3385 4286 4092 3386 4287 4629 3385 4288 4631 3387 4290 4632 3346 4227 4063 3388 4291 4094 3387 4289 4093 3389 4292 4633 3387 4290 4632 3388 4293 4634 3384 4285 4091 3346 4227 4063 3387 4289 4093 3386 4287 4629 3387 4290 4632 3389 4292 4633 3346 4227 4063 3347 4228 4064 3388 4291 4094 3390 4294 4635 3388 4293 4634 3347 4229 4636 3389 4292 4633 3388 4293 4634 3390 4294 4635 3390 4294 3521 3347 4229 3449 3330 4204 3444 2073 2352 1897 3343 4224 3341 3345 4295 3386 3341 4220 3338 3343 4224 3341 2073 2352 1897 3391 4296 4095 3345 4226 4062 3344 4225 4061 2073 2352 1897 3345 4295 3386 3391 4297 3391 3392 4298 4096 3344 4225 4061 3346 4227 4063 3392 4298 4096 3391 4296 4095 3344 4225 4061 3393 4299 4097 3346 4227 4063 3384 4285 4091 3393 4299 4097 3392 4298 4096 3346 4227 4063 3394 4300 4098 3384 4285 4091 3379 4277 4087 3394 4300 4098 3393 4299 4097 3384 4285 4091 3395 4301 4099 3379 4277 4087 3378 4276 4086 3395 4301 4099 3394 4300 4098 3379 4277 4087 3383 4283 4090 3396 4302 4100 3378 4276 4086 3395 4301 4099 3378 4276 4086 3396 4302 4100 3397 4303 3524 3396 4304 3525 3383 4284 3506 3395 4301 4099 3396 4302 4100 734 4305 4101 3397 4303 3524 734 865 2913 3396 4304 3525 3397 4303 3524 3383 4284 3506 3369 4259 3462 738 876 4102 3395 4301 4099 734 4305 4101 3397 4303 3524 735 867 2916 734 865 2913 3398 4306 4103 3391 4296 4095 3392 4298 4096 2073 2352 1897 3391 4297 3391 2072 2350 623 3398 4306 4103 2072 4307 4104 3391 4296 4095 3399 4308 4105 3392 4298 4096 3393 4299 4097 3398 4306 4103 3392 4298 4096 3399 4308 4105 3400 4309 4106 3393 4299 4097 3394 4300 4098 3399 4308 4105 3393 4299 4097 3400 4309 4106 3401 4310 4107 3394 4300 4098 3395 4301 4099 3400 4309 4106 3394 4300 4098 3401 4310 4107 3401 4310 4107 3395 4301 4099 738 876 4102 3402 4311 4637 3370 4265 4625 3372 4312 4638 3371 4264 4623 3370 4265 4625 3402 4311 4637 3402 4311 4637 3372 4312 4638 3373 4313 4639 3403 4314 4640 3373 4313 4639 3375 4315 4641 3402 4311 4637 3373 4313 4639 3403 4314 4640 3404 4316 4642 3375 4315 4641 3374 4273 4627 3403 4314 4640 3375 4315 4641 3404 4316 4642 3404 4316 4642 3374 4273 4627 3376 4270 4626 3405 4317 3781 3406 4318 3782 3407 4319 3783 3408 4320 3527 3407 4321 3528 3406 4322 3536 3409 4323 3784 3405 4317 3781 3407 4319 3783 3410 4324 3544 3409 4325 3545 3407 4321 3528 3410 4324 3544 3407 4321 3528 3408 4320 3527 3405 4317 3781 3411 4326 3785 3406 4318 3782 3412 4327 3786 3406 4318 3782 3411 4326 3785 3412 4327 3786 3413 4328 3787 3406 4318 3782 3414 4329 3788 3406 4318 3782 3413 4328 3787 3415 4330 3546 3406 4322 3536 3414 4331 3547 3415 4330 3546 3408 4320 3527 3406 4322 3536 3416 4332 3789 3417 4333 3790 3411 4326 3785 3412 4327 3786 3411 4326 3785 3417 4333 3790 3418 4334 3791 3416 4332 3789 3411 4326 3785 3405 4317 3781 3418 4334 3791 3411 4326 3785 3419 4335 3416 3417 4336 3417 3416 4337 3418 3420 4338 3792 3412 4327 3786 3417 4333 3790 3419 4335 3416 3420 4339 3419 3417 4336 3417 3419 4335 3416 3416 4337 3418 3418 4340 3420 3421 4341 3793 3418 4334 3791 3405 4317 3781 3422 4342 3421 3418 4340 3420 3421 4343 3422 3419 4335 3416 3418 4340 3420 3422 4342 3421 3423 4344 3794 3405 4317 3781 3409 4323 3784 3424 4345 3795 3421 4341 3793 3405 4317 3781 3425 4346 3796 3424 4345 3795 3405 4317 3781 3423 4344 3794 3425 4346 3796 3405 4317 3781 3423 4344 3794 3409 4323 3784 3426 4347 3797 3410 4324 3544 3426 4348 3571 3409 4325 3545 3427 4349 3798 3423 4344 3794 3426 4347 3797 3428 4350 4395 3427 4351 4396 3426 4348 4397 3428 4350 3572 3426 4348 3571 3410 4324 3544 3422 4342 3421 3421 4343 3422 3424 4352 3424 3422 4342 3421 3424 4352 3424 3425 4353 3425 3429 4354 3799 3425 4346 3796 3423 4344 3794 3430 4355 4643 3425 4353 4644 3429 4356 4645 3422 4342 3421 3425 4353 3425 3430 4355 3430 3431 4357 3800 3432 4358 3801 3423 4344 3794 3433 4359 3802 3423 4344 3794 3432 4358 3801 3427 4349 3798 3431 4357 3800 3423 4344 3794 3433 4359 3802 3429 4354 3799 3423 4344 3794 3434 4360 3803 3435 4361 3804 3432 4358 3801 3436 4362 3805 3432 4358 3801 3435 4361 3804 3437 4363 3806 3434 4360 3803 3432 4358 3801 3431 4357 3800 3437 4363 3806 3432 4358 3801 3436 4362 3805 3433 4359 3802 3432 4358 3801 3438 4364 3807 3439 4365 3808 3435 4361 3804 3440 4366 3809 3435 4361 3804 3439 4365 3808 3441 4367 3810 3438 4364 3807 3435 4361 3804 3434 4360 3803 3441 4367 3810 3435 4361 3804 3442 4368 3811 3435 4361 3804 3440 4366 3809 3442 4368 3811 3436 4362 3805 3435 4361 3804 3443 4369 3812 3444 4370 3813 3439 4365 3808 3445 4371 3573 3439 4372 3574 3444 4373 3575 3438 4364 3807 3443 4369 3812 3439 4365 3808 3445 4371 4646 3440 4374 4647 3439 4372 4648 3443 4369 3812 3446 4375 3814 3444 4370 3813 3445 4371 3573 3444 4373 3575 3446 4376 4733 3447 4377 4734 3446 4376 4733 3443 4378 4735 3445 4371 3573 3446 4376 4733 3447 4377 4734 3448 4379 3815 3443 4369 3812 3438 4364 3807 3449 4380 3816 3450 4381 3817 3443 4369 3812 3447 4377 4734 3443 4378 4735 3450 4382 4736 3448 4379 3815 3449 4380 3816 3443 4369 3812 3451 4383 3818 3438 4364 3807 3441 4367 3810 3448 4379 3815 3438 4364 3807 3451 4383 3818 3452 4384 3434 3441 4385 3441 3434 4386 3451 3453 4387 3452 3451 4388 3453 3441 4385 3441 3453 4387 3452 3441 4385 3441 3452 4384 3434 3454 4389 4398 3434 4386 4399 3437 4390 4400 3452 4384 3434 3434 4386 3451 3454 4389 3454 3454 4389 4398 3437 4390 4400 3431 4391 4401 3455 4392 4402 3431 4391 4401 3427 4351 4396 3454 4389 4398 3431 4391 4401 3455 4392 4402 3455 4392 4402 3427 4351 4396 3428 4350 4395 3456 4393 3819 3448 4379 3815 3451 4383 3818 3457 4394 3456 3456 4395 3457 3451 4388 3453 3457 4394 3456 3451 4388 3453 3453 4387 3452 3458 4396 4737 3450 4382 4736 3449 4397 4738 3447 4377 4734 3450 4382 4736 3459 4398 4739 3458 4396 4737 3459 4398 4739 3450 4382 4736 3460 4399 3820 3449 4380 3816 3448 4379 3815 3458 4396 4737 3449 4397 4738 3460 4400 4740 3461 4401 3821 3448 4379 3815 3456 4393 3819 3462 4402 3822 3460 4399 3820 3448 4379 3815 3461 4401 3821 3462 4402 3822 3448 4379 3815 3463 4403 3823 3456 4393 3819 3464 4404 3824 3457 4394 3456 3464 4405 3464 3456 4395 3457 3463 4403 3823 3461 4401 3821 3456 4393 3819 3465 4406 3825 3463 4403 3823 3464 4404 3824 3466 4407 4649 3465 4408 4650 3464 4405 4651 3466 4407 3466 3464 4405 3464 3457 4394 3456 723 844 737 3460 4400 4740 3462 4409 4741 3458 4396 4737 3460 4400 4740 723 844 737 934 4410 3826 3462 4402 3822 3461 4401 3821 723 844 737 3462 4409 4741 934 1071 2922 3467 4411 3827 3461 4401 3821 3463 4403 3823 3467 4411 3827 934 4410 3826 3461 4401 3821 3468 4412 3828 3469 4413 3829 3463 4403 3823 3470 4414 3830 3463 4403 3823 3469 4413 3829 3465 4406 3825 3468 4412 3828 3463 4403 3823 3470 4414 3830 3467 4411 3827 3463 4403 3823 3414 4329 3788 3413 4328 3787 3469 4413 3829 3471 4415 3831 3469 4413 3829 3413 4328 3787 3472 4416 3832 3414 4329 3788 3469 4413 3829 3468 4412 3828 3472 4416 3832 3469 4413 3829 3471 4415 3831 3470 4414 3830 3469 4413 3829 3473 4417 3833 3413 4328 3787 3412 4327 3786 3473 4417 3833 3471 4415 3831 3413 4328 3787 3420 4338 3792 3474 4418 3834 3412 4327 3786 3473 4417 3833 3412 4327 3786 3474 4418 3834 3475 4419 3474 3474 4420 3475 3420 4339 3419 3473 4417 3833 3474 4418 3834 3476 4421 3835 3475 4419 3474 3476 4422 3476 3474 4420 3475 3475 4419 3474 3420 4339 3419 3419 4335 3416 3477 4423 4652 3414 4331 4653 3472 4424 4654 3415 4330 3546 3414 4331 3547 3477 4423 4742 3477 4423 4652 3472 4424 4654 3468 4425 4655 3478 4426 4656 3468 4425 4655 3465 4408 4650 3477 4423 4652 3468 4425 4655 3478 4426 4656 3478 4426 4656 3465 4408 4650 3466 4407 4649 2232 4427 3836 3473 4417 3833 3476 4421 3835 2233 2520 2043 3476 4422 3476 3475 4419 3474 2233 2520 2043 2232 2517 1904 3476 4422 3476 3479 4428 3837 934 4410 3826 3467 4411 3827 3479 4428 3837 932 1070 3838 934 4410 3826 3480 4429 3839 3467 4411 3827 3470 4414 3830 3479 4428 3837 3467 4411 3827 3480 4429 3839 3481 4430 3840 3470 4414 3830 3471 4415 3831 3480 4429 3839 3470 4414 3830 3481 4430 3840 3482 4431 3841 3471 4415 3831 3473 4417 3833 3481 4430 3840 3471 4415 3831 3482 4431 3841 3482 4431 3841 3473 4417 3833 2232 4427 3836 3483 4432 4657 3442 4433 4658 3440 4374 4647 3483 4432 4657 3440 4374 4647 3445 4371 4646 3484 4434 4659 3429 4356 4645 3433 4435 4660 3430 4355 4643 3429 4356 4645 3484 4434 4659 3484 4434 4659 3433 4435 4660 3436 4436 4661 3485 4437 4662 3436 4436 4661 3442 4433 4658 3484 4434 4659 3436 4436 4661 3485 4437 4662 3485 4437 4662 3442 4433 4658 3483 4432 4657 3486 4438 3486 3377 4274 3366 3487 4439 3487 3381 4279 3377 3487 4439 3487 3377 4274 3366 3488 4440 3842 3486 4441 3843 3487 4442 3844 3489 4443 3489 3487 4439 3487 3381 4279 3377 3488 4440 3842 3487 4442 3844 3489 4444 3845 3486 4438 3486 3358 4244 3342 3377 4274 3366 3490 4445 3490 3356 4241 3355 3358 4244 3342 3486 4438 3486 3490 4445 3490 3358 4244 3342 3491 4446 4403 3354 4238 4391 3356 4241 4393 3492 4447 4404 3491 4446 4403 3356 4241 4393 3493 4448 4405 3492 4447 4404 3356 4241 4393 3490 4445 4406 3493 4448 4405 3356 4241 4393 3494 4449 4407 3350 4232 4387 3354 4238 4391 3495 4450 4408 3494 4449 4407 3354 4238 4391 3491 4446 4403 3495 4450 4408 3354 4238 4391 3496 4451 4743 3333 4208 3446 3350 4232 3450 3494 4449 4407 3496 4451 4409 3350 4232 4387 3497 4452 4744 3327 4199 3428 3333 4208 3446 3498 4453 4745 3497 4452 4744 3333 4208 3446 3496 4451 4743 3498 4453 4745 3333 4208 3446 3499 4454 4746 3327 4199 3428 3497 4452 4744 3499 4454 4746 3330 4204 3444 3327 4199 3428 3500 4455 3846 3497 4456 3847 3498 4457 3848 3501 4458 3849 3499 4459 3850 3497 4456 3847 3500 4455 3846 3501 4458 3849 3497 4456 3847 3500 4455 3846 3498 4457 3848 3496 4460 3851 3502 4461 3852 3496 4460 3851 3494 4462 3853 3502 4461 3852 3500 4455 3846 3496 4460 3851 3503 4463 3854 3494 4462 3853 3495 4464 3855 3504 4465 3856 3494 4462 3853 3503 4463 3854 3502 4461 3852 3494 4462 3853 3504 4465 3856 3503 4463 3854 3495 4464 3855 3491 4466 3857 3503 4463 3854 3491 4466 3857 3492 4467 3858 3503 4463 3854 3492 4467 3858 3493 4468 3859 3505 4469 3860 3493 4468 3859 3490 4470 3861 3503 4463 3854 3493 4468 3859 3506 4471 3862 3505 4469 3860 3506 4471 3862 3493 4468 3859 3505 4469 3860 3490 4470 3861 3486 4441 3843 3488 4440 3842 3505 4469 3860 3486 4441 3843 3452 4384 3434 3507 4472 3507 3508 4473 3508 3509 4474 4108 3508 4475 4109 3507 4476 4110 3453 4387 3452 3452 4384 3434 3508 4473 3508 3510 4477 3510 3453 4387 3452 3508 4473 3508 3511 4478 4111 3510 4479 4112 3508 4475 4109 3509 4474 4108 3511 4478 4111 3508 4475 4109 3452 4384 3434 3512 4480 3512 3507 4472 3507 3509 4474 4108 3507 4476 4110 3512 4481 4113 3454 4389 4398 3513 4482 4410 3512 4480 4411 3514 4483 4114 3512 4481 4113 3513 4484 4115 3452 4384 3434 3454 4389 3454 3512 4480 3512 3514 4483 4114 3509 4474 4108 3512 4481 4113 3455 4392 4402 3515 4485 4412 3513 4482 4410 3516 4486 4116 3513 4484 4115 3515 4487 4117 3454 4389 4398 3455 4392 4402 3513 4482 4410 3516 4486 4116 3514 4483 4114 3513 4484 4115 3455 4392 4402 3517 4488 4413 3515 4485 4412 3516 4486 4116 3515 4487 4117 3517 4489 4118 3428 4350 4395 3518 4490 4414 3517 4488 4413 3519 4491 4119 3517 4489 4118 3518 4492 4120 3455 4392 4402 3428 4350 4395 3517 4488 4413 3519 4491 4119 3516 4486 4116 3517 4489 4118 3428 4350 4395 3520 4493 4415 3518 4490 4414 3519 4491 4119 3518 4492 4120 3520 4494 4121 3428 4350 4395 3521 4495 4416 3520 4493 4415 3522 4496 4122 3520 4494 4121 3521 4497 4123 3519 4491 4119 3520 4494 4121 3523 4498 4124 3522 4496 4122 3523 4498 4124 3520 4494 4121 3410 4324 3544 3524 4499 4747 3521 4495 4748 3522 4496 4122 3521 4497 4123 3524 4500 4125 3428 4350 3572 3410 4324 3544 3521 4495 4748 3408 4320 3527 3525 4501 4749 3524 4499 4747 3526 4502 4126 3524 4500 4125 3525 4503 4127 3410 4324 3544 3408 4320 3527 3524 4499 4747 3526 4502 4126 3522 4496 4122 3524 4500 4125 3415 4330 3546 3525 4501 4749 3408 4320 3527 3415 4330 3546 3527 4504 4750 3525 4501 4749 3526 4502 4126 3525 4503 4127 3527 4505 4128 3457 4394 3456 3453 4387 3452 3510 4477 3510 3528 4506 4751 3390 4294 3521 3330 4204 3444 3499 4454 4746 3528 4506 4751 3330 4204 3444 3529 4507 4663 3389 4292 4633 3390 4294 4635 3530 4508 4664 3529 4507 4663 3390 4294 4635 3531 4509 4665 3530 4508 4664 3390 4294 4635 3528 4506 4666 3531 4509 4665 3390 4294 4635 3532 4510 4667 3386 4287 4629 3389 4292 4633 3533 4511 4668 3532 4510 4667 3389 4292 4633 3529 4507 4663 3533 4511 4668 3389 4292 4633 3534 4512 3523 3381 4279 3377 3386 4287 3381 3532 4510 4667 3534 4512 4669 3386 4287 4629 3534 4512 3523 3489 4443 3489 3381 4279 3377 3488 4440 3842 3489 4444 3845 3534 4513 3863 3535 4514 3864 3534 4513 3863 3532 4515 3865 3535 4514 3864 3488 4440 3842 3534 4513 3863 1918 2188 3661 3532 4515 3865 3533 4516 3866 2099 2380 3671 3535 4514 3864 3532 4515 3865 1918 2188 3661 2099 2380 3671 3532 4515 3865 1918 2188 3661 3533 4516 3866 3529 4517 3867 1911 2178 3656 3529 4517 3867 3530 4518 3868 1911 2178 3656 1918 2188 3661 3529 4517 3867 1911 2178 3656 3530 4518 3868 3531 4519 3869 3501 4458 3849 3531 4519 3869 3528 4520 3870 1916 2185 3659 1911 2178 3656 3531 4519 3869 3501 4458 3849 1916 2185 3659 3531 4519 3869 3501 4458 3849 3528 4520 3870 3499 4459 3850 3415 4330 3546 3536 4521 4752 3527 4504 4750 3526 4502 4126 3527 4505 4128 3536 4522 4129 3477 4423 4652 3537 4523 4670 3536 4521 4671 3538 4524 4130 3536 4522 4129 3537 4525 4131 3415 4330 3546 3477 4423 4742 3536 4521 4752 3538 4524 4130 3526 4502 4126 3536 4522 4129 3478 4426 4656 3539 4526 4672 3537 4523 4670 2098 2379 3928 3537 4525 4131 3539 4527 4132 3477 4423 4652 3478 4426 4656 3537 4523 4670 1921 2192 3926 3537 4525 4131 2098 2379 3928 1900 2158 3922 3538 4524 4130 3537 4525 4131 1921 2192 3926 1900 2158 3922 3537 4525 4131 3478 4426 4656 3540 4528 4673 3539 4526 4672 2098 2379 3928 3539 4527 4132 3540 4529 4133 3466 4407 4649 3541 4530 4674 3540 4528 4673 2098 2379 3928 3540 4529 4133 3541 4531 4134 3478 4426 4656 3466 4407 4649 3540 4528 4673 3466 4407 4649 3542 4532 4675 3541 4530 4674 2098 2379 3928 3541 4531 4134 3542 4533 4135 3466 4407 4649 3543 4534 4676 3542 4532 4675 3511 4478 4111 3542 4533 4135 3543 4535 4136 724 847 1406 2098 2379 3928 3542 4533 4135 3511 4478 4111 724 847 1406 3542 4533 4135 3457 4394 3456 3510 4477 3510 3543 4534 3534 3511 4478 4111 3543 4535 4136 3510 4479 4112 3466 4407 3466 3457 4394 3456 3543 4534 3534 3367 4255 3458 3544 4536 4753 3545 4537 4754 3488 4440 3842 3545 4538 3871 3544 4539 3872 3369 4259 3462 3367 4255 3458 3545 4537 4754 3397 4303 3524 3369 4259 3462 3545 4537 4754 3397 4303 3524 3545 4537 4754 3546 4540 4755 3535 4514 3864 3546 4541 3873 3545 4538 3871 3535 4514 3864 3545 4538 3871 3488 4440 3842 3367 4255 3458 3547 4542 4756 3544 4536 4753 3505 4469 3860 3544 4539 3872 3547 4543 3874 3488 4440 3842 3544 4539 3872 3505 4469 3860 3371 4264 3498 3506 4544 4757 3547 4542 4756 3505 4469 3860 3547 4543 3874 3506 4471 3862 3367 4255 3458 3371 4264 3498 3547 4542 4756 3402 4311 4637 3548 4545 4677 3506 4544 4678 3503 4463 3854 3506 4471 3862 3548 4546 3875 3371 4264 4623 3402 4311 4637 3506 4544 4678 3402 4311 4637 3549 4547 4679 3548 4545 4677 3503 4463 3854 3548 4546 3875 3549 4548 3876 3403 4314 4640 3550 4549 4680 3549 4547 4679 3503 4463 3854 3549 4548 3876 3550 4550 3877 3402 4311 4637 3403 4314 4640 3549 4547 4679 3551 4551 3878 3550 4550 3877 3552 4552 3879 3403 4314 4640 3552 4553 4681 3550 4549 4680 3504 4465 3856 3550 4550 3877 3551 4551 3878 3504 4465 3856 3503 4463 3854 3550 4550 3877 3404 4316 4642 3551 4554 4682 3552 4553 4681 3403 4314 4640 3404 4316 4642 3552 4553 4681 3553 4555 3880 3551 4551 3878 3554 4556 3881 3404 4316 4642 3554 4557 4683 3551 4554 4682 3555 4558 3882 3551 4551 3878 3553 4555 3880 3504 4465 3856 3551 4551 3878 3555 4558 3882 3404 4316 4642 3553 4559 4684 3554 4557 4683 3376 4270 4626 3555 4560 4685 3553 4559 4684 3404 4316 4642 3376 4270 4626 3553 4559 4684 3376 4270 3357 3556 4561 3543 3555 4560 3555 3502 4461 3852 3555 4558 3882 3556 4562 3883 3502 4461 3852 3504 4465 3856 3555 4558 3882 3338 4214 3334 3557 4563 3556 3556 4561 3543 3502 4461 3852 3556 4562 3883 3557 4564 3884 3376 4270 3357 3338 4214 3334 3556 4561 3543 3342 4222 3340 3558 4565 3557 3557 4563 3556 3500 4455 3846 3557 4564 3884 3558 4566 3885 3338 4214 3334 3342 4222 3340 3557 4563 3556 3502 4461 3852 3557 4564 3884 3500 4455 3846 3559 4567 3558 3558 4565 3557 3342 4222 3340 3501 4458 3849 3558 4566 3885 3559 4568 3886 3500 4455 3846 3558 4566 3885 3501 4458 3849 3559 4567 3558 3342 4222 3340 3341 4220 3338 3422 4342 3421 3560 4569 3559 3561 4570 3560 3526 4502 4126 3561 4571 4137 3560 4572 4138 3419 4335 3416 3422 4342 3421 3561 4570 3560 3475 4419 3474 3419 4335 3416 3561 4570 3560 3562 4573 3561 3475 4419 3474 3561 4570 3560 3538 4524 4130 3562 4574 4139 3561 4571 4137 3538 4524 4130 3561 4571 4137 3526 4502 4126 3422 4342 3421 3563 4575 3562 3560 4569 3559 3522 4496 4122 3560 4572 4138 3563 4576 4140 3526 4502 4126 3560 4572 4138 3522 4496 4122 3430 4355 3430 3523 4577 3563 3563 4575 3562 3522 4496 4122 3563 4576 4140 3523 4498 4124 3422 4342 3421 3430 4355 3430 3563 4575 3562 3484 4434 4659 3564 4578 4686 3523 4577 4687 3519 4491 4119 3523 4498 4124 3564 4579 4141 3430 4355 4643 3484 4434 4659 3523 4577 4687 3484 4434 4659 3565 4580 4688 3564 4578 4686 3519 4491 4119 3564 4579 4141 3565 4581 4142 3485 4437 4662 3566 4582 4689 3565 4580 4688 3519 4491 4119 3565 4581 4142 3566 4583 4143 3484 4434 4659 3485 4437 4662 3565 4580 4688 3567 4584 4144 3566 4583 4143 3568 4585 4145 3485 4437 4662 3568 4586 4690 3566 4582 4689 3519 4491 4119 3566 4583 4143 3567 4584 4144 3483 4432 4657 3567 4587 4691 3568 4586 4690 3485 4437 4662 3483 4432 4657 3568 4586 4690 3569 4588 4146 3567 4584 4144 3570 4589 4147 3483 4432 4657 3570 4590 4692 3567 4587 4691 3571 4591 4148 3567 4584 4144 3569 4588 4146 3516 4486 4116 3567 4584 4144 3571 4591 4148 3519 4491 4119 3567 4584 4144 3516 4486 4116 3483 4432 4657 3569 4592 4693 3570 4590 4692 3445 4371 4646 3571 4593 4694 3569 4592 4693 3483 4432 4657 3445 4371 4646 3569 4592 4693 3445 4371 3573 3572 4594 4758 3571 4593 4759 3514 4483 4114 3571 4591 4148 3572 4595 4149 3516 4486 4116 3571 4591 4148 3514 4483 4114 3447 4377 4734 3573 4596 4760 3572 4594 4758 3514 4483 4114 3572 4595 4149 3573 4597 4150 3445 4371 3573 3447 4377 4734 3572 4594 4758 3459 4398 4739 3574 4598 4761 3573 4596 4760 3509 4474 4108 3573 4597 4150 3574 4599 4151 3447 4377 4734 3459 4398 4739 3573 4596 4760 3514 4483 4114 3573 4597 4150 3509 4474 4108 3575 4600 4762 3574 4598 4761 3459 4398 4739 3509 4474 4108 3574 4599 4151 3575 4601 4152 3575 4600 4762 3459 4398 4739 3458 4396 4737 3398 4306 4103 2069 2344 4153 2072 4307 4104 2071 2346 2172 2069 2344 2170 3398 4306 4695 3341 4220 3338 2073 2352 1897 2074 2354 1903 3559 4567 3558 3341 4220 3338 2074 2354 1903 1916 2185 3659 3559 4568 3886 2074 2355 3670 3501 4458 3849 3559 4568 3886 1916 2185 3659 2233 2520 2043 3475 4419 3474 3562 4573 3561 2233 2520 2043 3562 4573 3561 2234 2521 2044 1900 2158 3922 2234 4602 4154 3562 4574 4139 1900 2158 3922 3562 4574 4139 3538 4524 4130 1901 2161 3925 2235 4603 4155 2234 4602 4154 1901 2161 3925 2234 4602 4154 1900 2158 3922 3482 4431 3841 2232 4427 3836 2237 2530 3887 2238 2529 2515 3482 4431 4696 2237 2530 2516 2287 2579 3482 932 1070 963 3479 4428 4697 3458 4396 4737 723 844 737 725 850 830 3575 4600 4762 3458 4396 4737 725 850 830 3511 4478 4111 3575 4601 4152 725 851 1419 3511 4478 4111 725 851 1419 724 847 1406 3509 4474 4108 3575 4601 4152 3511 4478 4111 742 875 767 3401 4310 4698 738 876 768 3546 4540 4755 730 856 932 735 867 2916 3535 4514 3864 730 860 1038 3546 4541 3873 2099 2380 3671 730 860 1038 3535 4514 3864 3397 4303 3524 3546 4540 4755 735 867 2916 3481 4430 4699 3482 4431 4696 2238 2529 2515 2240 2532 2518 3481 4430 4699 2238 2529 2515 3480 4429 4700 3481 4430 4699 2240 2532 2518 2264 2556 3385 3480 4429 4700 2240 2532 2518 3479 4428 4697 3480 4429 4700 2264 2556 3385 2287 2579 3482 3479 4428 4697 2264 2556 3385 3400 4309 4701 3401 4310 4698 742 875 767 2076 2357 2174 3400 4309 4701 742 875 767 3399 4308 4702 3400 4309 4701 2076 2357 2174 2097 2378 2195 3399 4308 4702 2076 2357 2174 3398 4306 4695 3399 4308 4702 2097 2378 2195 2071 2346 2172 3398 4306 4695 2097 2378 2195 3576 4604 3576 3577 4605 3577 1904 2166 554 3578 4606 4156 1904 4607 4157 3577 4608 4158 3579 4609 3579 3576 4604 3576 1904 2166 554 1903 2165 293 3579 4609 3579 1904 2166 554 1902 2526 3938 1904 4607 4157 3578 4606 4156 3580 4610 3580 3581 4611 3581 3577 4605 3577 3578 4606 4156 3577 4608 4158 3581 4612 4159 3576 4604 3576 3580 4610 3580 3577 4605 3577 3582 4613 3582 3583 4614 3583 3581 4611 3581 3584 4615 4703 3581 4616 4704 3583 4617 4705 3580 4610 3580 3582 4613 3582 3581 4611 3581 3578 4606 4156 3581 4612 4159 2236 2525 3937 3585 4618 4160 2236 2525 3937 3581 4612 4159 3585 4619 4706 3581 4616 4704 3584 4615 4703 3582 4613 3582 3586 4620 3586 3583 4614 3583 3587 4621 4707 3583 4617 4705 3586 4622 4708 3584 4615 4703 3583 4617 4705 3587 4621 4707 3588 4623 3588 1906 2172 556 3586 4620 3586 3589 4624 3888 3586 4625 3889 1906 2169 3651 3590 4626 3590 3588 4623 3588 3586 4620 3586 3582 4613 3582 3590 4626 3590 3586 4620 3586 3587 4621 4707 3586 4622 4708 3589 4627 4709 1898 2154 204 1906 2172 556 3588 4623 3588 3589 4624 3888 1906 2169 3651 1910 2176 3654 3591 4628 4161 3588 4629 4162 3590 4630 4163 3592 4631 4164 1898 4632 4165 3588 4633 4162 3592 4631 4164 3588 4633 4162 3591 4634 4161 3593 4635 4417 3590 4636 4418 3582 4637 4419 3594 4638 4166 3591 4628 4161 3590 4630 4163 3593 4635 4417 3594 4639 4420 3590 4636 4418 3595 4640 4421 3582 4637 4419 3580 4641 4422 3595 4640 4421 3593 4635 4417 3582 4637 4419 3596 4642 3890 3580 4643 3891 3576 4644 3892 3596 4645 4423 3595 4640 4421 3580 4641 4422 3597 4646 3893 3576 4647 3892 3579 4648 3894 3597 4649 3893 3596 4642 3890 3576 4644 3892 3598 4650 4710 3579 4651 4711 1903 4652 4712 3599 4653 3895 3597 4646 3893 3579 4648 3894 3598 4650 4710 3599 4654 4713 3579 4651 4711 3600 4655 4714 1903 4652 4712 1898 4656 4715 3600 4655 4714 3598 4650 4710 1903 4652 4712 3592 4657 4716 3600 4655 4714 1898 4656 4715 3601 4658 4167 2307 2613 3942 2909 3349 3962 3601 4658 4167 2304 2605 3939 2307 2613 3942 3601 4658 4167 2909 3349 3962 2106 2389 3932 3602 4659 4168 2106 2389 3932 2103 2384 3929 3602 4659 4168 3601 4658 4167 2106 2389 3932 3602 4659 4168 2103 2384 3929 2109 2393 3934 3585 4618 4160 2109 2393 3934 2206 2491 3936 3585 4618 4160 3602 4659 4168 2109 2393 3934 3585 4618 4160 2206 2491 3936 2236 2525 3937 1902 2526 3938 3578 4606 4156 2236 2525 3937 3589 4624 3888 1910 2176 3654 2022 2297 3669 3603 4660 3896 2022 2297 3669 2021 2296 3668 3589 4624 3888 2022 2297 3669 3603 4660 3896 3603 4660 3896 2021 2296 3668 1927 2199 3663 3604 4661 3897 1927 2199 3663 1928 2202 3666 3603 4660 3896 1927 2199 3663 3604 4661 3897 3604 4661 3897 1928 2202 3666 2911 3351 3696 2298 2597 3676 2911 3351 3696 2910 3350 3695 3604 4661 3897 2911 3351 3696 2298 2597 3676 2298 2597 3676 2910 3350 3695 2291 2583 3672 3604 4662 4717 2298 2598 3533 2297 2594 3530 3605 4663 4718 2297 2594 3530 2301 2601 3537 3605 4663 4718 3604 4662 4717 2297 2594 3530 3606 4664 4719 2301 2601 3537 2304 2608 3540 3606 4664 4719 3605 4663 4718 2301 2601 3537 3601 4665 4720 3606 4664 4719 2304 2608 3540 3603 4666 4721 3604 4662 4717 3605 4663 4718 3607 4667 4722 3605 4663 4718 3606 4664 4719 3607 4667 4722 3603 4666 4721 3605 4663 4718 3608 4668 4723 3606 4664 4719 3601 4665 4720 3608 4668 4723 3607 4667 4722 3606 4664 4719 3602 4669 4724 3608 4668 4723 3601 4665 4720 3589 4627 4709 3603 4666 4721 3607 4667 4722 3587 4621 4707 3607 4667 4722 3608 4668 4723 3587 4621 4707 3589 4627 4709 3607 4667 4722 3584 4615 4703 3608 4668 4723 3602 4669 4724 3584 4615 4703 3587 4621 4707 3608 4668 4723 3585 4619 4706 3584 4615 4703 3602 4669 4724 3609 4670 3609 3610 4671 3610 3611 4672 3611 3612 4673 4169 3611 4674 4170 3610 4675 4171 3613 4676 3613 3610 4671 3610 3609 4670 3609 3614 4677 4172 3612 4673 4169 3610 4675 4171 3615 4678 4173 3614 4679 4172 3610 4680 4171 3615 4681 3615 3610 4671 3610 3613 4676 3613 3616 4682 3616 3611 4672 3611 3617 4683 3617 3618 4684 4424 3617 4685 4425 3611 4686 4426 3609 4670 3609 3611 4672 3611 3616 4682 3616 3612 4687 4427 3618 4684 4424 3611 4686 4426 3619 4688 4428 3616 4689 4429 3617 4685 4425 3618 4684 4424 3619 4688 4428 3617 4685 4425 3620 4690 3898 3609 4691 3899 3616 4692 3900 3621 4693 3901 3620 4690 3898 3616 4692 3900 3619 4688 4428 3621 4694 4430 3616 4689 4429 3622 4695 3902 3609 4696 3899 3620 4697 3898 3622 4695 3902 3613 4698 3903 3609 4696 3899 3623 4699 3904 3620 4690 3898 3621 4693 3901 2204 4700 3905 3620 4697 3898 3623 4701 3904 2204 4700 3905 3622 4695 3902 3620 4697 3898 3624 4702 4431 3621 4694 4430 3619 4688 4428 3624 4703 3906 3623 4699 3904 3621 4693 3901 3625 4704 4432 3619 4688 4428 3618 4684 4424 3624 4702 4431 3619 4688 4428 3625 4704 4432 3626 4705 4433 3618 4684 4424 3612 4687 4427 3625 4704 4432 3618 4684 4424 3626 4705 4433 3627 4706 4174 3612 4673 4169 3614 4677 4172 3626 4705 4433 3612 4687 4427 3627 4707 4434 3627 4706 4174 3614 4677 4172 3628 4708 4175 3629 4709 4176 3628 4710 4175 3614 4679 4172 3629 4709 4176 3614 4679 4172 3615 4678 4173 3630 4711 4177 3591 4628 4161 3594 4638 4166 1915 4712 4178 3591 4634 4161 3630 4713 4177 1915 4712 4178 3592 4631 4164 3591 4634 4161 3631 4714 4435 3594 4639 4420 3593 4635 4417 3631 4715 4179 3630 4711 4177 3594 4638 4166 3632 4716 4436 3593 4635 4417 3595 4640 4421 3632 4716 4436 3631 4714 4435 3593 4635 4417 3633 4717 4437 3595 4640 4421 3596 4645 4423 3633 4717 4437 3632 4716 4436 3595 4640 4421 3634 4718 3907 3596 4642 3890 3597 4649 3893 3634 4719 4438 3633 4717 4437 3596 4645 4423 3634 4718 3907 3597 4649 3893 3635 4720 3908 3599 4653 3895 3635 4721 3908 3597 4646 3893 3624 4703 3906 3634 4718 3907 3635 4720 3908 3624 4703 3906 3635 4720 3908 3623 4699 3904 3636 4722 3909 3623 4701 3904 3635 4721 3908 3636 4722 3909 3635 4721 3908 3599 4653 3895 3628 4708 4175 3630 4711 4177 3631 4715 4179 1913 4723 4180 3630 4713 4177 3628 4710 4175 1913 4723 4180 1915 4712 4178 3630 4713 4177 3627 4707 4434 3631 4714 4435 3632 4716 4436 3627 4706 4174 3628 4708 4175 3631 4715 4179 3626 4705 4433 3632 4716 4436 3633 4717 4437 3626 4705 4433 3627 4707 4434 3632 4716 4436 3625 4704 4432 3633 4717 4437 3634 4719 4438 3625 4704 4432 3626 4705 4433 3633 4717 4437 3624 4702 4431 3625 4704 4432 3634 4719 4438 2204 4700 3905 3623 4701 3904 3636 4722 3909 1913 4723 4180 3628 4710 4175 3629 4709 4176 3615 4681 3615 3613 4676 3613 3637 4724 3637 3638 4725 4725 3637 4726 4726 3613 4727 4727 3622 4728 4728 3638 4725 4725 3613 4727 4727 3639 4729 4729 3615 4730 4730 3637 4726 4726 3638 4725 4725 3639 4729 4729 3637 4726 4726 3639 4729 4729 3629 4731 4731 3615 4730 4730 1913 2182 2006 3629 4731 4731 3639 4729 4729 1914 2183 2007 3639 4729 4729 3638 4725 4725 1913 2182 2006 3639 4729 4729 1914 2183 2007 2046 2321 2147 3638 4725 4725 3622 4728 4728 1914 2183 2007 3638 4725 4725 2046 2321 2147 2046 2321 2147 3622 4728 4728 2204 2489 2341 3636 4732 4732 3599 4654 4713 3598 4650 4710 2205 2490 2344 3598 4650 4710 3600 4655 4714 2205 2490 2344 3636 4732 4732 3598 4650 4710 2047 2322 2148 3600 4655 4714 3592 4657 4716 2047 2322 2148 2205 2490 2344 3600 4655 4714 1915 2184 2008 2047 2322 2148 3592 4657 4716 2204 2489 2341 3636 4732 4732 2205 2490 2344 2046 2321 2147 2205 2490 2344 2047 2322 2148

+
+
+
+
+ + + + + 0 0 0 + + + + + + + xtion.jpg + + + + + + + + + 0.4055214 -1.783895 -5.710271 + 0.5773503 0.5773503 0.5773503 -240 + + + + + + + + + + + + 1 + 1 + 1 + 1 + + + + + + + + +
diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/sensor/xtion.jpg b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/sensor/xtion.jpg new file mode 100644 index 0000000..8f4e6ee Binary files /dev/null and b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/meshes/sensor/xtion.jpg differ diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/package.xml new file mode 100644 index 0000000..47f09ce --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/package.xml @@ -0,0 +1,59 @@ + + + pibot_description + 0.0.0 + The pibot_description package + + + + + robot + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf.rviz b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf.rviz new file mode 100644 index 0000000..a484019 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf.rviz @@ -0,0 +1,158 @@ +Panels: + - Class: rviz/Displays + Help Height: 78 + Name: Displays + Property Tree Widget: + Expanded: + - /Global Options1 + - /Status1 + Splitter Ratio: 0.5 + Tree Height: 463 + - Class: rviz/Selection + Name: Selection + - Class: rviz/Tool Properties + Expanded: + - /2D Pose Estimate1 + - /2D Nav Goal1 + - /Publish Point1 + Name: Tool Properties + Splitter Ratio: 0.588679016 + - Class: rviz/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: rviz/Time + Experimental: false + Name: Time + SyncMode: 0 + SyncSource: "" +Visualization Manager: + Class: "" + Displays: + - Alpha: 0.5 + Cell Size: 1 + Class: rviz/Grid + Color: 160; 160; 164 + Enabled: true + Line Style: + Line Width: 0.0299999993 + 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/RobotModel + Collision Enabled: false + Enabled: true + Links: + All Links Enabled: true + Expand Joint Details: false + Expand Link Details: false + Expand Tree: false + Link Tree Style: Links in Alphabetic Order + base_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + laser_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + Name: RobotModel + Robot Description: robot_description + TF Prefix: "" + Update Interval: 0 + Value: true + Visual Enabled: true + - Class: rviz/TF + Enabled: true + Frame Timeout: 15 + Frames: + All Enabled: true + base_link: + Value: true + laser_link: + Value: true + Marker Scale: 1 + Name: TF + Show Arrows: true + Show Axes: true + Show Names: true + Tree: + base_link: + laser_link: + {} + Update Interval: 0 + Value: true + Enabled: true + Global Options: + Background Color: 48; 48; 48 + Fixed Frame: base_link + 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 + Topic: /initialpose + - 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: 2.15671158 + Enable Stereo Rendering: + Stereo Eye Separation: 0.0599999987 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Focal Point: + X: 0 + Y: 0 + Z: 0 + Focal Shape Fixed Size: true + Focal Shape Size: 0.0500000007 + Invert Z Axis: false + Name: Current View + Near Clip Distance: 0.00999999978 + Pitch: 0.145398423 + Target Frame: + Value: Orbit (rviz) + Yaw: 0.365398407 + Saved: ~ +Window Geometry: + Displays: + collapsed: false + Height: 744 + Hide Left Dock: false + Hide Right Dock: false + QMainWindow State: 000000ff00000000fd00000004000000000000016a0000025efc0200000008fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000006400fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c00610079007301000000280000025e000000dd00fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261000000010000010f0000025efc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a0056006900650077007301000000280000025e000000b000fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000005150000003efc0100000002fb0000000800540069006d00650100000000000005150000030000fffffffb0000000800540069006d00650100000000000004500000000000000000000002900000025e00000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: false + Width: 1301 + X: 65 + Y: 24 diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/accessories/camera.urdf.xacro b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/accessories/camera.urdf.xacro new file mode 100644 index 0000000..c123e41 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/accessories/camera.urdf.xacro @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/accessories/lidar.urdf.xacro b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/accessories/lidar.urdf.xacro new file mode 100644 index 0000000..16d0538 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/accessories/lidar.urdf.xacro @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/apollo.urdf.xacro b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/apollo.urdf.xacro new file mode 100644 index 0000000..013c2d5 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/apollo.urdf.xacro @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/apolloX.urdf.xacro b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/apolloX.urdf.xacro new file mode 100644 index 0000000..fc38261 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/apolloX.urdf.xacro @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/components/pibot_board.urdf.xacro b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/components/pibot_board.urdf.xacro new file mode 100644 index 0000000..37b406c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/components/pibot_board.urdf.xacro @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/components/pibot_pillar.urdf.xacro b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/components/pibot_pillar.urdf.xacro new file mode 100644 index 0000000..64d1e20 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/components/pibot_pillar.urdf.xacro @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/components/pibot_properties.xacro b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/components/pibot_properties.xacro new file mode 100644 index 0000000..3244430 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/components/pibot_properties.xacro @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/demo_urdf.urdf b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/demo_urdf.urdf new file mode 100644 index 0000000..4fc2d6e --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/demo_urdf.urdf @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/hades.urdf.xacro b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/hades.urdf.xacro new file mode 100644 index 0000000..33c1030 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/hades.urdf.xacro @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/hera.urdf.xacro b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/hera.urdf.xacro new file mode 100644 index 0000000..4c64e41 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/hera.urdf.xacro @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/pibot.urdf.xacro b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/pibot.urdf.xacro new file mode 100644 index 0000000..96177e1 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/pibot.urdf.xacro @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/pibot.xacro b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/pibot.xacro new file mode 100644 index 0000000..366870c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/pibot.xacro @@ -0,0 +1,7 @@ + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/zeus.urdf.xacro b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/zeus.urdf.xacro new file mode 100644 index 0000000..1adb1b7 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_description/urdf/zeus.urdf.xacro @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_imu/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_imu/CMakeLists.txt new file mode 100644 index 0000000..149a713 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_imu/CMakeLists.txt @@ -0,0 +1,206 @@ +cmake_minimum_required(VERSION 2.8.3) +project(pibot_imu) + +## 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 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 + roscpp + tf + pibot_msgs +) +## * 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 + +################################### +## 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 pibot_imu +# 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} + include ${catkin_INCLUDE_DIRS} + include include/pibot_imu/ +) + +## Declare a C++ library +# add_library(${PROJECT_NAME} +# src/${PROJECT_NAME}/pibot_imu.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/pibot_bringup_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 +# install(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables and/or libraries for installation +# install(TARGETS ${PROJECT_NAME} ${PROJECT_NAME}_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_pibot_bringup.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) + + +add_executable(pibot_imu + src/pibot_imu.cpp + src/pibot_imu_node.cpp +) +add_dependencies(pibot_imu ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) +target_link_libraries(pibot_imu + ${catkin_LIBRARIES} +) \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_imu/include/pibot_imu/pibot_imu.h b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_imu/include/pibot_imu/pibot_imu.h new file mode 100644 index 0000000..ef1d156 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_imu/include/pibot_imu/pibot_imu.h @@ -0,0 +1,55 @@ +#ifndef _PIBOT_IMU_H_ +#define _PIBOT_IMU_H_ + +#include +#include +#include +#include +#include +#include + +static double GRAVITY = -9.81; // [m/s/s] +static double MILIGAUSS_TO_TESLA_SCALE = 0.0000001; // From Milligauss [mG] to Tesla [T] +class PibotIMU +{ + private: + ros::NodeHandle nh_, pnh_; + + bool use_accelerometer_, use_gyroscope_, use_magnetometer_; + bool use_mag_msg_; + + bool perform_calibration_, is_calibrated_; + int calibration_samples_; + std::map acceleration_bias_, gyroscope_bias_; + + // Covariance + double linear_acc_stdev_, angular_vel_stdev_, magnetic_field_stdev_; + boost::array linear_acc_covar_; + boost::array angular_vel_covar_; + boost::array magnetic_field_covar_; + + // Used for mag scaling + double mag_x_min_, mag_x_max_; // [T] + double mag_y_min_, mag_y_max_; + double mag_z_min_, mag_z_max_; + + // ROS pub/sub + ros::Publisher imu_pub_; + ros::Publisher mag_pub_; + ros::Subscriber raw_sub_; + + // ROS services + ros::ServiceServer imu_cal_srv_; + + // ROS member functions + void rawCallback(const pibot_msgs::RawImuConstPtr& raw_msg); + bool calibrateCallback(std_srvs::Empty::Request& request, std_srvs::Empty::Response& response); + // Non-ROS member functions + void fillRowMajor(boost::array & covar, double stdev); + + public: + PibotIMU(ros::NodeHandle nh, ros::NodeHandle pnh); + virtual ~PibotIMU(void){}; +}; + +#endif // _RAW_IMU_BRIDGE_H_ diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_imu/launch/imu_ahrs.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_imu/launch/imu_ahrs.launch new file mode 100644 index 0000000..4348586 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_imu/launch/imu_ahrs.launch @@ -0,0 +1,6 @@ + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_imu/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_imu/package.xml new file mode 100644 index 0000000..77f6e6b --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_imu/package.xml @@ -0,0 +1,60 @@ + + + pibot_imu + 0.0.0 + The pibot_imu package + + + + + robot + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + pibot_msgs + + + + + + + + \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_imu/scripts/simple_magnometer_calibration b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_imu/scripts/simple_magnometer_calibration new file mode 100644 index 0000000..643919a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_imu/scripts/simple_magnometer_calibration @@ -0,0 +1,59 @@ +#!/usr/bin/env python + +import rospy +import pibot_msgs.msg + +class MagCalibration: + def __init__(self): + rospy.init_node("simple_magnetometer_calibration") + rospy.loginfo("Rotate the mag till there is no more output.") + self.MILIGAUSS_TO_TESLA_SCALE = 0.0000001 + self.mxh = 0 + self.myh = 0 + self.mzh = 0 + self.mxl = 0 + self.myl = 0 + self.mzl = 0 + self.raw_mag_sub = rospy.Subscriber('raw_imu', pibot_msgs.msg.RawImu, self.rawCallback) + rospy.spin() + + def rawCallback(self, raw_imu): + mx = raw_imu.raw_magnetic_field.x * self.MILIGAUSS_TO_TESLA_SCALE + my = raw_imu.raw_magnetic_field.y * self.MILIGAUSS_TO_TESLA_SCALE + mz = raw_imu.raw_magnetic_field.z * self.MILIGAUSS_TO_TESLA_SCALE + + update = False + + if (mx > self.mxh): + self.mxh = mx + update = True + elif (mx < self.mxl): + self.mxl = mx + update = True + + if (my > self.myh): + self.myh = my + update = True + elif ( my < self.myl): + self.myl = my + update = True + + if (mz > self.mzh): + self.mzh = mz + update = True + elif(mz < self.mzl): + self.mzl = mz + update = True + + if (update): + rospy.loginfo("") + print 'X-> Min: %.9f, Max: %.9f' % (self.mxl, self.mxh) + print 'Y-> Min: %.9f, Max: %.9f' % (self.myl, self.myh) + print 'Z-> Min: %.9f, Max: %.9f' % (self.mzl, self.mzh) + + +if __name__ == '__main__': + try: + MagCalibration() + except rospy.ROSInterruptException: + pass diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_imu/src/pibot_imu.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_imu/src/pibot_imu.cpp new file mode 100644 index 0000000..7c706b8 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_imu/src/pibot_imu.cpp @@ -0,0 +1,185 @@ +#include "pibot_imu/pibot_imu.h" + +PibotIMU::PibotIMU(ros::NodeHandle nh, ros::NodeHandle pnh): + // Members default values + nh_(nh), + pnh_(pnh), + use_accelerometer_(true), + use_gyroscope_(true), + use_magnetometer_(true), + use_mag_msg_(false), + perform_calibration_(true), + is_calibrated_(false) +{ + pnh_.param("imu/use_accelerometer", use_accelerometer_, use_accelerometer_); + pnh_.param("imu/use_gyroscope", use_gyroscope_, use_gyroscope_); + pnh_.param("imu/use_magnetometer", use_magnetometer_, use_magnetometer_); + pnh_.param("imu/perform_calibration", perform_calibration_, perform_calibration_); + + // 订阅pibot_driver串口读取原始imu数据 + raw_sub_ = nh_.subscribe("raw_imu", 5, &PibotIMU::rawCallback, this); + + // 创建一个服务,用于接收运行中的校准请求, 可以rosservice命令查看 + imu_cal_srv_ = nh_.advertiseService("imu/calibrate_imu", &PibotIMU::calibrateCallback, this); + + // 是否使能加速度计或陀螺仪 + if (use_accelerometer_ || use_gyroscope_) { + // 根据配置决定是否进行校准 + if (!pnh_.getParam("imu/accelerometer_bias", acceleration_bias_) || + !pnh_.getParam("imu/gyroscope_bias", gyroscope_bias_)) { + ROS_WARN("IMU calibration NOT found."); + is_calibrated_ = false; + } else { + ROS_INFO("IMU calibration found."); + pnh_.getParam("imu/accelerometer_bias", acceleration_bias_); + pnh_.getParam("imu/gyroscope_bias", gyroscope_bias_); + is_calibrated_ = true; + } + + // 校准采样点数 + pnh_.param("imu/calibration_samples", calibration_samples_, 500); + + // 转换为ROS标准的sensor_msgs::Imu类型的topic + imu_pub_ = nh_.advertise("imu/data_raw", 1000); + + // 线加速度协方差 + pnh_.param("imu/linear_acc_stdev", linear_acc_stdev_, 0.0); + PibotIMU::fillRowMajor(linear_acc_covar_, linear_acc_stdev_); + + // 角速度协方差 + pnh_.param("imu/angular_vel_stdev", angular_vel_stdev_, 0.0); + PibotIMU::fillRowMajor(angular_vel_covar_, angular_vel_stdev_); + } + + // 是否使能磁力计 + if (use_magnetometer_) { + // Magnetometer calibration values. + pnh_.param("mag/x/min", mag_x_min_, -0.000078936); + pnh_.param("mag/x/max", mag_x_max_, 0.000077924); + pnh_.param("mag/y/min", mag_y_min_, -0.000075532); + pnh_.param("mag/y/max", mag_y_max_, 0.000076360); + pnh_.param("mag/z/min", mag_z_min_, -0.000079948); + pnh_.param("mag/z/max", mag_z_max_, 0.000064216); + + pnh_.param("imu/use_mag_msg", use_mag_msg_, use_mag_msg_); + + if (use_mag_msg_) { + // 转换为ROS标准的sensor_msgs::MagneticField类型的topic + mag_pub_ = nh_.advertise("imu/mag", 5); + + pnh_.param("imu/magnetic_field_stdev", magnetic_field_stdev_, 0.0); + PibotIMU::fillRowMajor(magnetic_field_covar_, magnetic_field_stdev_); + } else { + // 未使能磁力计 则使用Vector3Stamped类型的topic + mag_pub_ = nh_.advertise("imu/mag", 5); + } + } + + ROS_INFO("Starting Raw Imu Bridge."); +} + +void PibotIMU::rawCallback(const pibot_msgs::RawImuConstPtr& raw_msg) +{ + if (!raw_msg->accelerometer && use_accelerometer_) { + ROS_ERROR_ONCE("Accelerometer not found!"); + } + if (!raw_msg->gyroscope && use_gyroscope_) { + ROS_ERROR_ONCE("Gyroscope not found!"); + } + if (!raw_msg->magnetometer && use_magnetometer_) { + ROS_ERROR_ONCE("Magnetometer not found!"); + } + + if (perform_calibration_ || !is_calibrated_) { + ROS_WARN_ONCE("Calibrating accelerometer and gyroscope, make sure robot is stationary and level."); + + static int taken_samples; + + if (taken_samples < calibration_samples_) { + acceleration_bias_["x"] += raw_msg->raw_linear_acceleration.x; + acceleration_bias_["y"] += raw_msg->raw_linear_acceleration.y; + acceleration_bias_["z"] += raw_msg->raw_linear_acceleration.z; + + gyroscope_bias_["x"] += raw_msg->raw_angular_velocity.x; + gyroscope_bias_["y"] += raw_msg->raw_angular_velocity.y; + gyroscope_bias_["z"] += raw_msg->raw_angular_velocity.z; + + taken_samples++; + } else { + acceleration_bias_["x"] /= calibration_samples_; + acceleration_bias_["y"] /= calibration_samples_; + acceleration_bias_["z"] = acceleration_bias_["z"] / calibration_samples_ + GRAVITY; + + gyroscope_bias_["x"] /= calibration_samples_; + gyroscope_bias_["y"] /= calibration_samples_; + gyroscope_bias_["z"] /= calibration_samples_; + + ROS_INFO("Calibrating accelerometer and gyroscope complete."); + ROS_INFO("Bias values can be saved for reuse."); + ROS_INFO("Accelerometer: x: %f, y: %f, z: %f", acceleration_bias_["x"], acceleration_bias_["y"], acceleration_bias_["z"]); + ROS_INFO("Gyroscope: x: %f, y: %f, z: %f", gyroscope_bias_["x"], gyroscope_bias_["y"], gyroscope_bias_["z"]); + + pnh_.setParam("imu/accelerometer_bias", acceleration_bias_); + pnh_.setParam("imu/gyroscope_bias", gyroscope_bias_); + + is_calibrated_ = true; + perform_calibration_ = false; + taken_samples = 0; + } + } else { + if (use_accelerometer_ || use_gyroscope_) { + sensor_msgs::ImuPtr imu_msg = boost::make_shared(); + imu_msg->header = raw_msg->header; + + imu_msg->angular_velocity.x = raw_msg->raw_angular_velocity.x - gyroscope_bias_["x"]; + imu_msg->angular_velocity.y = raw_msg->raw_angular_velocity.y - gyroscope_bias_["y"]; + imu_msg->angular_velocity.z = raw_msg->raw_angular_velocity.z - gyroscope_bias_["z"]; + imu_msg->orientation_covariance = angular_vel_covar_; + + imu_msg->linear_acceleration.x = raw_msg->raw_linear_acceleration.x - acceleration_bias_["x"]; + imu_msg->linear_acceleration.y = raw_msg->raw_linear_acceleration.y - acceleration_bias_["y"]; + imu_msg->linear_acceleration.z = raw_msg->raw_linear_acceleration.z - acceleration_bias_["z"]; + imu_msg->linear_acceleration_covariance = linear_acc_covar_; + + imu_pub_.publish(imu_msg); + } + + if (use_magnetometer_) { + if (use_mag_msg_) { + sensor_msgs::MagneticFieldPtr mag_msg = boost::make_shared(); + mag_msg->header = raw_msg->header; + + mag_msg->magnetic_field.x = (raw_msg->raw_magnetic_field.x * MILIGAUSS_TO_TESLA_SCALE - (mag_x_max_ - mag_x_min_) / 2 - mag_x_min_); + mag_msg->magnetic_field.y = (raw_msg->raw_magnetic_field.y * MILIGAUSS_TO_TESLA_SCALE - (mag_y_max_ - mag_y_min_) / 2 - mag_y_min_); + mag_msg->magnetic_field.z = (raw_msg->raw_magnetic_field.z * MILIGAUSS_TO_TESLA_SCALE - (mag_z_max_ - mag_z_min_) / 2 - mag_z_min_); + mag_msg->magnetic_field_covariance = magnetic_field_covar_; + + mag_pub_.publish(mag_msg); + } else { + geometry_msgs::Vector3StampedPtr mag_msg = boost::make_shared();; + mag_msg->header = raw_msg->header; + + mag_msg->vector.x = (raw_msg->raw_magnetic_field.x - (mag_x_max_ - mag_x_min_) / 2 - mag_x_min_) * MILIGAUSS_TO_TESLA_SCALE; + mag_msg->vector.y = (raw_msg->raw_magnetic_field.y - (mag_y_max_ - mag_y_min_) / 2 - mag_y_min_) * MILIGAUSS_TO_TESLA_SCALE; + mag_msg->vector.z = (raw_msg->raw_magnetic_field.z - (mag_z_max_ - mag_z_min_) / 2 - mag_z_min_) * MILIGAUSS_TO_TESLA_SCALE; + + mag_pub_.publish(mag_msg); + } + } + } +} + +bool PibotIMU::calibrateCallback(std_srvs::Empty::Request& request, std_srvs::Empty::Response& response) +{ + ROS_WARN("Calibrating accelerometer and gyroscope, make sure robot is stationary and level."); + perform_calibration_ = true; + return true; +} + +void PibotIMU::fillRowMajor(boost::array & covar, double stdev) +{ + std::fill(covar.begin(), covar.end(), 0.0); + covar[0] = pow(stdev, 2); // X(roll) + covar[4] = pow(stdev, 2); // Y(pitch) + covar[8] = pow(stdev, 2); // Z(yaw) +} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_imu/src/pibot_imu_node.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_imu/src/pibot_imu_node.cpp new file mode 100644 index 0000000..27e564d --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_imu/src/pibot_imu_node.cpp @@ -0,0 +1,12 @@ +#include "pibot_imu/pibot_imu.h" + +int main(int argc, char **argv) +{ + ros::init(argc, argv, "pibot_imu"); + ros::NodeHandle nh, pnh("~"); + PibotIMU pibot_imu(nh, pnh); + + ros::spin(); + + return 0; +} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/CMakeLists.txt new file mode 100644 index 0000000..f8b47d3 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/CMakeLists.txt @@ -0,0 +1,202 @@ +cmake_minimum_required(VERSION 3.0.2) +project(pibot_lidar) + +## 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 pibot_lidar +# 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}/pibot_lidar.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/pibot_lidar_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_pibot_lidar.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/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/astra.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/astra.launch new file mode 100644 index 0000000..86c4249 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/astra.launch @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/astra_pro.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/astra_pro.launch new file mode 100644 index 0000000..159825b --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/astra_pro.launch @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/eai-g4.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/eai-g4.launch new file mode 100644 index 0000000..1b4f260 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/eai-g4.launch @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/eai-x4.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/eai-x4.launch new file mode 100644 index 0000000..624d08b --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/eai-x4.launch @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/kinectV1.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/kinectV1.launch new file mode 100644 index 0000000..191ecd0 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/kinectV1.launch @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/kinectV2.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/kinectV2.launch new file mode 100644 index 0000000..376f7aa --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/kinectV2.launch @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/rplidar-a2m7.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/rplidar-a2m7.launch new file mode 100644 index 0000000..36a263b --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/rplidar-a2m7.launch @@ -0,0 +1,11 @@ + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/rplidar-a3.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/rplidar-a3.launch new file mode 100644 index 0000000..0604c8c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/rplidar-a3.launch @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/rplidar-s1.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/rplidar-s1.launch new file mode 100644 index 0000000..30ae09d --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/rplidar-s1.launch @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/rplidar.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/rplidar.launch new file mode 100644 index 0000000..c590883 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/rplidar.launch @@ -0,0 +1,11 @@ + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/xtion.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/xtion.launch new file mode 100644 index 0000000..9b4c276 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/launch/xtion.launch @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/package.xml new file mode 100644 index 0000000..5e6c15d --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_lidar/package.xml @@ -0,0 +1,59 @@ + + + pibot_lidar + 0.0.0 + The pibot_lidar package + + + + + david + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/CMakeLists.txt new file mode 100644 index 0000000..839266a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/CMakeLists.txt @@ -0,0 +1,32 @@ +cmake_minimum_required(VERSION 2.8.3) +project(pibot_msgs) + +find_package(catkin REQUIRED COMPONENTS message_generation std_msgs geometry_msgs) + +add_message_files( + DIRECTORY msg + FILES + Action.msg + RawImu.msg + PointArray.msg + Pose.msg + RobotState.msg + NaviStatus.msg + RelocateResult.msg +) + +add_service_files( + DIRECTORY srv + FILES + ManualLocation.srv + MappingParams.srv + ActionParams.srv + SetMapParams.srv + NaviParams.srv + Relocation.srv + SetPoseParams.srv +) + +generate_messages(DEPENDENCIES std_msgs geometry_msgs) + +catkin_package(CATKIN_DEPENDS message_runtime std_msgs geometry_msgs) diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/msg/Action.msg b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/msg/Action.msg new file mode 100644 index 0000000..066599b --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/msg/Action.msg @@ -0,0 +1,5 @@ +int16 ACTION_START = 0 +int16 ACTION_STOP = 1 +int16 ACTION_CANCEL = 2 + +int16 type diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/msg/NaviStatus.msg b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/msg/NaviStatus.msg new file mode 100644 index 0000000..2b56077 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/msg/NaviStatus.msg @@ -0,0 +1 @@ +int16 status \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/msg/PointArray.msg b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/msg/PointArray.msg new file mode 100644 index 0000000..046de3c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/msg/PointArray.msg @@ -0,0 +1,3 @@ +# An array of points with a header for global reference. +Header header +geometry_msgs/Point[] points diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/msg/Pose.msg b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/msg/Pose.msg new file mode 100644 index 0000000..40f3b27 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/msg/Pose.msg @@ -0,0 +1,5 @@ +# 地图像素坐标系 左上角为坐标原点, 水平右为0度(顺时针) + +float32 x +float32 y +float32 theta # (-180-180) diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/msg/RawImu.msg b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/msg/RawImu.msg new file mode 100644 index 0000000..3c5ad41 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/msg/RawImu.msg @@ -0,0 +1,7 @@ +Header header +bool accelerometer +bool gyroscope +bool magnetometer +geometry_msgs/Vector3 raw_linear_acceleration +geometry_msgs/Vector3 raw_angular_velocity +geometry_msgs/Vector3 raw_magnetic_field diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/msg/RelocateResult.msg b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/msg/RelocateResult.msg new file mode 100644 index 0000000..b634836 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/msg/RelocateResult.msg @@ -0,0 +1,2 @@ +bool relocate_result +geometry_msgs/Pose relocate_pose diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/msg/RobotState.msg b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/msg/RobotState.msg new file mode 100644 index 0000000..da45d13 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/msg/RobotState.msg @@ -0,0 +1,10 @@ +int16 state +Pose pose +float32 vlinear_x +float32 vlinear_y +float32 vangular +bool relocation_statu +bool laser_statu +bool odom_statu +bool pose_statu +bool pose_normal diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/package.xml new file mode 100644 index 0000000..5b34b41 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/package.xml @@ -0,0 +1,23 @@ + + pibot_msgs + 0.10.0 + + Messages and Services definitions for the PIBOT. + + PIBOT + PIBOT + BSD + + + catkin + + std_msgs + geometry_msgs + message_generation + + std_msgs + geometry_msgs + message_runtime + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/srv/ActionParams.srv b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/srv/ActionParams.srv new file mode 100644 index 0000000..d03f553 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/srv/ActionParams.srv @@ -0,0 +1,3 @@ +Action action +--- +int16 result diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/srv/ManualLocation.srv b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/srv/ManualLocation.srv new file mode 100644 index 0000000..8af5b82 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/srv/ManualLocation.srv @@ -0,0 +1,4 @@ +geometry_msgs/Pose pose +string filename +--- +int16 result diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/srv/MappingParams.srv b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/srv/MappingParams.srv new file mode 100644 index 0000000..ffa9ca2 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/srv/MappingParams.srv @@ -0,0 +1,5 @@ +string id +Action action +float32 resolution +--- +int16 result diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/srv/NaviParams.srv b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/srv/NaviParams.srv new file mode 100644 index 0000000..526a908 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/srv/NaviParams.srv @@ -0,0 +1,4 @@ +Action action +Pose goal +--- +int16 result diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/srv/Relocation.srv b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/srv/Relocation.srv new file mode 100644 index 0000000..0927236 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/srv/Relocation.srv @@ -0,0 +1,11 @@ +bool has_initial_trajectory_pose +string pbstream_filename +int32 to_trajectory_id +float32 map_resolution +geometry_msgs/Pose initial_pose +--- +bool relocation_succeed +geometry_msgs/Pose relocation_pose +float32 score +int32 trajectory_id + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/srv/SetMapParams.srv b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/srv/SetMapParams.srv new file mode 100644 index 0000000..4ea8adb --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/srv/SetMapParams.srv @@ -0,0 +1,3 @@ +string id +--- +int16 result diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/srv/SetPoseParams.srv b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/srv/SetPoseParams.srv new file mode 100644 index 0000000..034b65c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_msgs/srv/SetPoseParams.srv @@ -0,0 +1,3 @@ +Pose pose +--- +int16 result diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/CMakeLists.txt new file mode 100644 index 0000000..5d89c86 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/CMakeLists.txt @@ -0,0 +1,195 @@ +cmake_minimum_required(VERSION 2.8.3) +project(pibot_navigation) + +## 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 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 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 pibot_navigation +# 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}/pibot_navigation.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/pibot_navigation_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 +# install(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables and/or libraries for installation +# install(TARGETS ${PROJECT_NAME} ${PROJECT_NAME}_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_pibot_navigation.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/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/config/frontier_exploration.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/config/frontier_exploration.yaml new file mode 100644 index 0000000..44189bf --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/config/frontier_exploration.yaml @@ -0,0 +1,33 @@ +transform_tolerance: 0.5 +update_frequency: 5.0 +publish_frequency: 5.0 + +global_frame: map +robot_base_frame: base_link +resolution: 0.05 + +rolling_window: false +track_unknown_space: true + +plugins: + - {name: static, type: "costmap_2d::StaticLayer"} + - {name: explore_boundary, type: "frontier_exploration::BoundedExploreLayer"} + - {name: sensor, type: "costmap_2d::ObstacleLayer"} + - {name: inflation, type: "costmap_2d::InflationLayer"} + +static: + map_topic: /map + subscribe_to_updates: true + +explore_boundary: + resize_to_boundary: false + frontier_travel_point: middle + explore_clear_space: false + +sensor: + observation_sources: laser + laser: {data_type: LaserScan, clearing: true, marking: true, topic: scan, inf_is_valid: true, raytrace_range: $(arg sensor_range), obstacle_range: $(arg sensor_range)} + +inflation: + inflation_radius: 0.15 + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/configuration_files/lidar_2d_v0.2.lua b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/configuration_files/lidar_2d_v0.2.lua new file mode 100644 index 0000000..e6b4ae9 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/configuration_files/lidar_2d_v0.2.lua @@ -0,0 +1,53 @@ +-- Copyright 2016 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. + +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", + odom_frame = "odom", + provide_odom_frame = true, + use_odometry = false, + use_laser_scan = true, + use_multi_echo_laser_scan = false, + 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, +} + +MAP_BUILDER.use_trajectory_builder_2d = true + +TRAJECTORY_BUILDER_2D.min_range = 0.5 +TRAJECTORY_BUILDER_2D.max_range = 8. +TRAJECTORY_BUILDER_2D.missing_data_ray_length = 8.5 +TRAJECTORY_BUILDER_2D.use_imu_data = false +TRAJECTORY_BUILDER_2D.use_online_correlative_scan_matching = true +TRAJECTORY_BUILDER_2D.real_time_correlative_scan_matcher.linear_search_window = 0.1 +TRAJECTORY_BUILDER_2D.real_time_correlative_scan_matcher.translation_delta_cost_weight = 10. +TRAJECTORY_BUILDER_2D.real_time_correlative_scan_matcher.rotation_delta_cost_weight = 1e-1 +TRAJECTORY_BUILDER_2D.motion_filter.max_angle_radians = math.rad(0.2) +-- for current lidar only 1 is good value + +SPARSE_POSE_GRAPH.optimization_problem.huber_scale = 1e2 +SPARSE_POSE_GRAPH.optimize_every_n_scans = 35 +SPARSE_POSE_GRAPH.constraint_builder.min_score = 0.65 + +return options diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/configuration_files/lidar_2d_v0.2_odom.lua b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/configuration_files/lidar_2d_v0.2_odom.lua new file mode 100644 index 0000000..05ce39d --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/configuration_files/lidar_2d_v0.2_odom.lua @@ -0,0 +1,53 @@ +-- Copyright 2016 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. + +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", + odom_frame = "odom", + provide_odom_frame = false, + use_odometry = true, + use_laser_scan = true, + use_multi_echo_laser_scan = false, + 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, +} + +MAP_BUILDER.use_trajectory_builder_2d = true + +TRAJECTORY_BUILDER_2D.min_range = 0.5 +TRAJECTORY_BUILDER_2D.max_range = 8. +TRAJECTORY_BUILDER_2D.missing_data_ray_length = 8.5 +TRAJECTORY_BUILDER_2D.use_imu_data = false +TRAJECTORY_BUILDER_2D.use_online_correlative_scan_matching = true +TRAJECTORY_BUILDER_2D.real_time_correlative_scan_matcher.linear_search_window = 0.1 +TRAJECTORY_BUILDER_2D.real_time_correlative_scan_matcher.translation_delta_cost_weight = 10. +TRAJECTORY_BUILDER_2D.real_time_correlative_scan_matcher.rotation_delta_cost_weight = 1e-1 +TRAJECTORY_BUILDER_2D.motion_filter.max_angle_radians = math.rad(0.2) +-- for current lidar only 1 is good value + +SPARSE_POSE_GRAPH.optimization_problem.huber_scale = 1e2 +SPARSE_POSE_GRAPH.optimize_every_n_scans = 35 +SPARSE_POSE_GRAPH.constraint_builder.min_score = 0.65 + +return options diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/configuration_files/lidar_2d_v0.2_odom_imu.lua b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/configuration_files/lidar_2d_v0.2_odom_imu.lua new file mode 100644 index 0000000..698c763 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/configuration_files/lidar_2d_v0.2_odom_imu.lua @@ -0,0 +1,53 @@ +-- Copyright 2016 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. + +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", + odom_frame = "odom", + provide_odom_frame = false, + use_odometry = true, + use_laser_scan = true, + use_multi_echo_laser_scan = false, + 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, +} + +MAP_BUILDER.use_trajectory_builder_2d = true + +TRAJECTORY_BUILDER_2D.min_range = 0.5 +TRAJECTORY_BUILDER_2D.max_range = 8. +TRAJECTORY_BUILDER_2D.missing_data_ray_length = 8.5 +TRAJECTORY_BUILDER_2D.use_imu_data = true +TRAJECTORY_BUILDER_2D.use_online_correlative_scan_matching = true +TRAJECTORY_BUILDER_2D.real_time_correlative_scan_matcher.linear_search_window = 0.1 +TRAJECTORY_BUILDER_2D.real_time_correlative_scan_matcher.translation_delta_cost_weight = 10. +TRAJECTORY_BUILDER_2D.real_time_correlative_scan_matcher.rotation_delta_cost_weight = 1e-1 +TRAJECTORY_BUILDER_2D.motion_filter.max_angle_radians = math.rad(0.2) +-- for current lidar only 1 is good value + +SPARSE_POSE_GRAPH.optimization_problem.huber_scale = 1e2 +SPARSE_POSE_GRAPH.optimize_every_n_scans = 35 +SPARSE_POSE_GRAPH.constraint_builder.min_score = 0.65 + +return options diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/configuration_files/lidar_2d_v1.0.lua b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/configuration_files/lidar_2d_v1.0.lua new file mode 100644 index 0000000..498b270 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/configuration_files/lidar_2d_v1.0.lua @@ -0,0 +1,65 @@ +-- Copyright 2016 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. + +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", + odom_frame = "odom", + provide_odom_frame = true, + publish_frame_projected_to_2d = true, + use_odometry = false, + use_nav_sat = false, + use_landmarks = 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 = 1., + fixed_frame_pose_sampling_ratio = 1., + imu_sampling_ratio = 1., + landmarks_sampling_ratio = 1., +} + +MAP_BUILDER.use_trajectory_builder_2d = true + +TRAJECTORY_BUILDER_2D.min_range = 0.5 +TRAJECTORY_BUILDER_2D.submaps.num_range_data = 35 +TRAJECTORY_BUILDER_2D.max_range = 8. +TRAJECTORY_BUILDER_2D.missing_data_ray_length = 8.5 +TRAJECTORY_BUILDER_2D.use_imu_data = false +TRAJECTORY_BUILDER_2D.use_online_correlative_scan_matching = true +TRAJECTORY_BUILDER_2D.real_time_correlative_scan_matcher.linear_search_window = 0.1 +TRAJECTORY_BUILDER_2D.real_time_correlative_scan_matcher.translation_delta_cost_weight = 10. +TRAJECTORY_BUILDER_2D.real_time_correlative_scan_matcher.rotation_delta_cost_weight = 1e-1 +TRAJECTORY_BUILDER_2D.motion_filter.max_angle_radians = math.rad(0.2) +-- for current lidar only 1 is good value +TRAJECTORY_BUILDER_2D.num_accumulated_range_data = 1 + +POSE_GRAPH.constraint_builder.global_localization_min_score = 0.65 +POSE_GRAPH.optimization_problem.huber_scale = 1e2 +POSE_GRAPH.optimize_every_n_nodes = 35 +POSE_GRAPH.constraint_builder.min_score = 0.65 + +return options diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/configuration_files/lidar_2d_v1.0_odom.lua b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/configuration_files/lidar_2d_v1.0_odom.lua new file mode 100644 index 0000000..fa917b0 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/configuration_files/lidar_2d_v1.0_odom.lua @@ -0,0 +1,65 @@ +-- Copyright 2016 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. + +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", + odom_frame = "odom", + provide_odom_frame = false, + publish_frame_projected_to_2d = true, + use_odometry = true, + use_nav_sat = false, + use_landmarks = 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 = 1., + fixed_frame_pose_sampling_ratio = 1., + imu_sampling_ratio = 1., + landmarks_sampling_ratio = 1., +} + +MAP_BUILDER.use_trajectory_builder_2d = true + +TRAJECTORY_BUILDER_2D.min_range = 0.5 +TRAJECTORY_BUILDER_2D.submaps.num_range_data = 35 +TRAJECTORY_BUILDER_2D.max_range = 8. +TRAJECTORY_BUILDER_2D.missing_data_ray_length = 8.5 +TRAJECTORY_BUILDER_2D.use_imu_data = false +TRAJECTORY_BUILDER_2D.use_online_correlative_scan_matching = true +TRAJECTORY_BUILDER_2D.real_time_correlative_scan_matcher.linear_search_window = 0.1 +TRAJECTORY_BUILDER_2D.real_time_correlative_scan_matcher.translation_delta_cost_weight = 10. +TRAJECTORY_BUILDER_2D.real_time_correlative_scan_matcher.rotation_delta_cost_weight = 1e-1 +TRAJECTORY_BUILDER_2D.motion_filter.max_angle_radians = math.rad(0.2) +-- for current lidar only 1 is good value +TRAJECTORY_BUILDER_2D.num_accumulated_range_data = 1 + +POSE_GRAPH.constraint_builder.global_localization_min_score = 0.65 +POSE_GRAPH.optimization_problem.huber_scale = 1e2 +POSE_GRAPH.optimize_every_n_nodes = 35 +POSE_GRAPH.constraint_builder.min_score = 0.65 + +return options diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/configuration_files/lidar_2d_v1.0_odom_imu.lua b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/configuration_files/lidar_2d_v1.0_odom_imu.lua new file mode 100644 index 0000000..fa917b0 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/configuration_files/lidar_2d_v1.0_odom_imu.lua @@ -0,0 +1,65 @@ +-- Copyright 2016 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. + +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", + odom_frame = "odom", + provide_odom_frame = false, + publish_frame_projected_to_2d = true, + use_odometry = true, + use_nav_sat = false, + use_landmarks = 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 = 1., + fixed_frame_pose_sampling_ratio = 1., + imu_sampling_ratio = 1., + landmarks_sampling_ratio = 1., +} + +MAP_BUILDER.use_trajectory_builder_2d = true + +TRAJECTORY_BUILDER_2D.min_range = 0.5 +TRAJECTORY_BUILDER_2D.submaps.num_range_data = 35 +TRAJECTORY_BUILDER_2D.max_range = 8. +TRAJECTORY_BUILDER_2D.missing_data_ray_length = 8.5 +TRAJECTORY_BUILDER_2D.use_imu_data = false +TRAJECTORY_BUILDER_2D.use_online_correlative_scan_matching = true +TRAJECTORY_BUILDER_2D.real_time_correlative_scan_matcher.linear_search_window = 0.1 +TRAJECTORY_BUILDER_2D.real_time_correlative_scan_matcher.translation_delta_cost_weight = 10. +TRAJECTORY_BUILDER_2D.real_time_correlative_scan_matcher.rotation_delta_cost_weight = 1e-1 +TRAJECTORY_BUILDER_2D.motion_filter.max_angle_radians = math.rad(0.2) +-- for current lidar only 1 is good value +TRAJECTORY_BUILDER_2D.num_accumulated_range_data = 1 + +POSE_GRAPH.constraint_builder.global_localization_min_score = 0.65 +POSE_GRAPH.optimization_problem.huber_scale = 1e2 +POSE_GRAPH.optimize_every_n_nodes = 35 +POSE_GRAPH.constraint_builder.min_score = 0.65 + +return options diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/cartographer.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/cartographer.launch new file mode 100644 index 0000000..4d17c0f --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/cartographer.launch @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/cartographer_with_odom.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/cartographer_with_odom.launch new file mode 100644 index 0000000..eafbc8f --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/cartographer_with_odom.launch @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/depth_camera_gmapping.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/depth_camera_gmapping.launch new file mode 100644 index 0000000..0c0f051 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/depth_camera_gmapping.launch @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/depth_camera_nav.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/depth_camera_nav.launch new file mode 100644 index 0000000..fa01336 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/depth_camera_nav.launch @@ -0,0 +1,19 @@ +> + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/frontier_exploration.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/frontier_exploration.launch new file mode 100644 index 0000000..588089f --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/frontier_exploration.launch @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/gmapping.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/gmapping.launch new file mode 100644 index 0000000..a298f53 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/gmapping.launch @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/hector_mapping.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/hector_mapping.launch new file mode 100644 index 0000000..45f02f2 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/hector_mapping.launch @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/hector_mapping_without_odom.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/hector_mapping_without_odom.launch new file mode 100644 index 0000000..eaf72aa --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/hector_mapping_without_odom.launch @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/amcl.launch.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/amcl.launch.xml new file mode 100644 index 0000000..59e0b62 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/amcl.launch.xml @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/geotiff_mapper.launch.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/geotiff_mapper.launch.xml new file mode 100644 index 0000000..675a48f --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/geotiff_mapper.launch.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/gmapping.launch.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/gmapping.launch.xml new file mode 100644 index 0000000..53070a2 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/gmapping.launch.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/hector_imu_attitude_to_tf.launch.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/hector_imu_attitude_to_tf.launch.xml new file mode 100644 index 0000000..60e96f1 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/hector_imu_attitude_to_tf.launch.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/hector_mapping.launch.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/hector_mapping.launch.xml new file mode 100644 index 0000000..35ab934 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/hector_mapping.launch.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/hector_mapping_without_odom.launch.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/hector_mapping_without_odom.launch.xml new file mode 100644 index 0000000..50bc35e --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/hector_mapping_without_odom.launch.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/karto_mapping.launch.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/karto_mapping.launch.xml new file mode 100644 index 0000000..ac6debd --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/karto_mapping.launch.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/move_base.launch.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/move_base.launch.xml new file mode 100644 index 0000000..2c9bbc6 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/move_base.launch.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/rgbd_amcl.launch.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/rgbd_amcl.launch.xml new file mode 100644 index 0000000..7f9b3bf --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/rgbd_amcl.launch.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/rgbd_gmapping.launch.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/rgbd_gmapping.launch.xml new file mode 100644 index 0000000..d4dcc1f --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/rgbd_gmapping.launch.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/rgbd_move_base.launch.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/rgbd_move_base.launch.xml new file mode 100644 index 0000000..2c9bbc6 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/include/rgbd_move_base.launch.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/karto_slam.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/karto_slam.launch new file mode 100644 index 0000000..b72fc3b --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/karto_slam.launch @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/nav.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/nav.launch new file mode 100644 index 0000000..7b16655 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/nav.launch @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/save_map.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/save_map.launch new file mode 100644 index 0000000..e9eaecb --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/save_map.launch @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/view_cartographer.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/view_cartographer.launch new file mode 100644 index 0000000..8b95935 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/view_cartographer.launch @@ -0,0 +1,5 @@ + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/view_nav.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/view_nav.launch new file mode 100644 index 0000000..47996ec --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/launch/view_nav.launch @@ -0,0 +1,5 @@ + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/maps/blank.pgm b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/maps/blank.pgm new file mode 100644 index 0000000..7dcca14 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/maps/blank.pgm @@ -0,0 +1,5 @@ +P5 +# CREATOR: map_saver.cpp 0.050 m/pix +1984 1984 +255 + \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/maps/blank.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/maps/blank.yaml new file mode 100644 index 0000000..01946f6 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/maps/blank.yaml @@ -0,0 +1,7 @@ +image: blank.pgm +resolution: 0.050000 +origin: [-50.000000, -50.000000, 0.000000] +negate: 0 +occupied_thresh: 0.65 +free_thresh: 0.196 + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/maps/my_lab.pgm b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/maps/my_lab.pgm new file mode 100644 index 0000000..51e61f5 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/maps/my_lab.pgm @@ -0,0 +1,5 @@ +P5 +# CREATOR: Map_generator.cpp 0.050 m/pix +608 480 +255 + \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/maps/my_lab.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/maps/my_lab.yaml new file mode 100644 index 0000000..62b4c25 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/maps/my_lab.yaml @@ -0,0 +1,7 @@ +image: my_lab.pgm +resolution: 0.050000 +origin: [-15.400000, -12.200000, 0.000000] +negate: 0 +occupied_thresh: 0.65 +free_thresh: 0.196 + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/package.xml new file mode 100644 index 0000000..d18099c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/package.xml @@ -0,0 +1,59 @@ + + + pibot_navigation + 0.0.0 + The pibot_navigation package + + + + + robot + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/costmap_common_params_apollo.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/costmap_common_params_apollo.yaml new file mode 100644 index 0000000..dac0c8d --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/costmap_common_params_apollo.yaml @@ -0,0 +1,53 @@ +max_obstacle_height: 0.60 # assume something like an arm is mounted on top of the robot + +# Obstacle Cost Shaping (http://wiki.ros.org/costmap_2d/hydro/inflation) +#robot_radius: 0.16 # distance a circular robot should be clear of the obstacle (kobuki: 0.18) +footprint: [[-0.07, -0.10], [0.18, -0.10], [0.18, 0.10], [-0.07, 0.10]] +# footprint: [[x0, y0], [x1, y1], ... [xn, yn]] # if the robot is not circular + +map_type: voxel + +obstacle_layer: + enabled: true + max_obstacle_height: 0.6 + origin_z: 0.0 + z_resolution: 0.2 + z_voxels: 2 + unknown_threshold: 15 + mark_threshold: 0 + combination_method: 1 + track_unknown_space: true #true needed for disabling global path planning through unknown space + obstacle_range: 2.5 + raytrace_range: 3.0 + origin_z: 0.0 + z_resolution: 0.2 + z_voxels: 2 + publish_voxel_map: false + observation_sources: scan + scan: + data_type: LaserScan + topic: scan + inf_is_valid: true + marking: true + clearing: true + min_obstacle_height: 0.05 + max_obstacle_height: 0.35 + #bump: + #data_type: PointCloud2 + #topic: mobile_base/sensors/bumper_pointcloud + #marking: true + #clearing: false + #min_obstacle_height: 0.0 + #max_obstacle_height: 0.15 + # for debugging only, let's you see the entire voxel grid + +#cost_scaling_factor and inflation_radius were now moved to the inflation_layer ns +inflation_layer: + enabled: true + cost_scaling_factor: 2.5 # exponential rate at which the obstacle cost drops off (default: 10) + inflation_radius: 1.2 # max. distance from an obstacle at which costs are incurred for planning paths. + +static_layer: + enabled: true + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/costmap_common_params_apolloX.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/costmap_common_params_apolloX.yaml new file mode 100644 index 0000000..ee8201b --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/costmap_common_params_apolloX.yaml @@ -0,0 +1,53 @@ +max_obstacle_height: 0.60 # assume something like an arm is mounted on top of the robot + +# Obstacle Cost Shaping (http://wiki.ros.org/costmap_2d/hydro/inflation) +#robot_radius: 0.16 # distance a circular robot should be clear of the obstacle (kobuki: 0.18) +footprint: [[-0.07, -0.16], [0.30, -0.16], [0.30, 0.16], [-0.07, 0.16]] +# footprint: [[x0, y0], [x1, y1], ... [xn, yn]] # if the robot is not circular + +map_type: voxel + +obstacle_layer: + enabled: true + max_obstacle_height: 0.6 + origin_z: 0.0 + z_resolution: 0.2 + z_voxels: 2 + unknown_threshold: 15 + mark_threshold: 0 + combination_method: 1 + track_unknown_space: true #true needed for disabling global path planning through unknown space + obstacle_range: 2.5 + raytrace_range: 3.0 + origin_z: 0.0 + z_resolution: 0.2 + z_voxels: 2 + publish_voxel_map: false + observation_sources: scan + scan: + data_type: LaserScan + topic: scan + inf_is_valid: true + marking: true + clearing: true + min_obstacle_height: 0.05 + max_obstacle_height: 0.35 + #bump: + #data_type: PointCloud2 + #topic: mobile_base/sensors/bumper_pointcloud + #marking: true + #clearing: false + #min_obstacle_height: 0.0 + #max_obstacle_height: 0.15 + # for debugging only, let's you see the entire voxel grid + +#cost_scaling_factor and inflation_radius were now moved to the inflation_layer ns +inflation_layer: + enabled: true + cost_scaling_factor: 2.5 # exponential rate at which the obstacle cost drops off (default: 10) + inflation_radius: 1.2 # max. distance from an obstacle at which costs are incurred for planning paths. + +static_layer: + enabled: true + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/costmap_common_params_apolloXL.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/costmap_common_params_apolloXL.yaml new file mode 100644 index 0000000..a6c8ff2 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/costmap_common_params_apolloXL.yaml @@ -0,0 +1,53 @@ +max_obstacle_height: 0.60 # assume something like an arm is mounted on top of the robot + +# Obstacle Cost Shaping (http://wiki.ros.org/costmap_2d/hydro/inflation) +#robot_radius: 0.16 # distance a circular robot should be clear of the obstacle (kobuki: 0.18) +footprint: [[-0.07, -0.26], [0.47, -0.26], [0.47, 0.26], [-0.07, 0.26]] +# footprint: [[x0, y0], [x1, y1], ... [xn, yn]] # if the robot is not circular + +map_type: voxel + +obstacle_layer: + enabled: true + max_obstacle_height: 0.6 + origin_z: 0.0 + z_resolution: 0.2 + z_voxels: 2 + unknown_threshold: 15 + mark_threshold: 0 + combination_method: 1 + track_unknown_space: true #true needed for disabling global path planning through unknown space + obstacle_range: 2.5 + raytrace_range: 3.0 + origin_z: 0.0 + z_resolution: 0.2 + z_voxels: 2 + publish_voxel_map: false + observation_sources: scan + scan: + data_type: LaserScan + topic: scan + inf_is_valid: true + marking: true + clearing: true + min_obstacle_height: 0.05 + max_obstacle_height: 0.35 + #bump: + #data_type: PointCloud2 + #topic: mobile_base/sensors/bumper_pointcloud + #marking: true + #clearing: false + #min_obstacle_height: 0.0 + #max_obstacle_height: 0.15 + # for debugging only, let's you see the entire voxel grid + +#cost_scaling_factor and inflation_radius were now moved to the inflation_layer ns +inflation_layer: + enabled: true + cost_scaling_factor: 2.5 # exponential rate at which the obstacle cost drops off (default: 10) + inflation_radius: 1.2 # max. distance from an obstacle at which costs are incurred for planning paths. + +static_layer: + enabled: true + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/costmap_common_params_hades.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/costmap_common_params_hades.yaml new file mode 100644 index 0000000..a989b8b --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/costmap_common_params_hades.yaml @@ -0,0 +1,53 @@ +max_obstacle_height: 0.60 # assume something like an arm is mounted on top of the robot + +# Obstacle Cost Shaping (http://wiki.ros.org/costmap_2d/hydro/inflation) +#robot_radius: 0.16 # distance a circular robot should be clear of the obstacle (kobuki: 0.18) +footprint: [[-0.16, -0.18], [0.16, -0.18], [0.16, 0.18], [-0.16, 0.18]] +# footprint: [[x0, y0], [x1, y1], ... [xn, yn]] # if the robot is not circular + +map_type: voxel + +obstacle_layer: + enabled: true + max_obstacle_height: 0.6 + origin_z: 0.0 + z_resolution: 0.2 + z_voxels: 2 + unknown_threshold: 15 + mark_threshold: 0 + combination_method: 1 + track_unknown_space: true #true needed for disabling global path planning through unknown space + obstacle_range: 2.5 + raytrace_range: 3.0 + origin_z: 0.0 + z_resolution: 0.2 + z_voxels: 2 + publish_voxel_map: false + observation_sources: scan + scan: + data_type: LaserScan + topic: scan + inf_is_valid: true + marking: true + clearing: true + min_obstacle_height: 0.05 + max_obstacle_height: 0.35 + #bump: + #data_type: PointCloud2 + #topic: mobile_base/sensors/bumper_pointcloud + #marking: true + #clearing: false + #min_obstacle_height: 0.0 + #max_obstacle_height: 0.15 + # for debugging only, let's you see the entire voxel grid + +#cost_scaling_factor and inflation_radius were now moved to the inflation_layer ns +inflation_layer: + enabled: true + cost_scaling_factor: 2.5 # exponential rate at which the obstacle cost drops off (default: 10) + inflation_radius: 1.2 # max. distance from an obstacle at which costs are incurred for planning paths. + +static_layer: + enabled: true + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/costmap_common_params_hadesX.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/costmap_common_params_hadesX.yaml new file mode 100644 index 0000000..553ad0a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/costmap_common_params_hadesX.yaml @@ -0,0 +1,53 @@ +max_obstacle_height: 0.60 # assume something like an arm is mounted on top of the robot + +# Obstacle Cost Shaping (http://wiki.ros.org/costmap_2d/hydro/inflation) +#robot_radius: 0.16 # distance a circular robot should be clear of the obstacle (kobuki: 0.18) +footprint: [[-0.22, -0.22], [0.22, -0.22], [0.22, 0.22], [-0.22, 0.22]] +# footprint: [[x0, y0], [x1, y1], ... [xn, yn]] # if the robot is not circular + +map_type: voxel + +obstacle_layer: + enabled: true + max_obstacle_height: 0.6 + origin_z: 0.0 + z_resolution: 0.2 + z_voxels: 2 + unknown_threshold: 15 + mark_threshold: 0 + combination_method: 1 + track_unknown_space: true #true needed for disabling global path planning through unknown space + obstacle_range: 2.5 + raytrace_range: 3.0 + origin_z: 0.0 + z_resolution: 0.2 + z_voxels: 2 + publish_voxel_map: false + observation_sources: scan + scan: + data_type: LaserScan + topic: scan + inf_is_valid: true + marking: true + clearing: true + min_obstacle_height: 0.05 + max_obstacle_height: 0.35 + #bump: + #data_type: PointCloud2 + #topic: mobile_base/sensors/bumper_pointcloud + #marking: true + #clearing: false + #min_obstacle_height: 0.0 + #max_obstacle_height: 0.15 + # for debugging only, let's you see the entire voxel grid + +#cost_scaling_factor and inflation_radius were now moved to the inflation_layer ns +inflation_layer: + enabled: true + cost_scaling_factor: 2.5 # exponential rate at which the obstacle cost drops off (default: 10) + inflation_radius: 1.2 # max. distance from an obstacle at which costs are incurred for planning paths. + +static_layer: + enabled: true + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/costmap_common_params_hera.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/costmap_common_params_hera.yaml new file mode 100644 index 0000000..a989b8b --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/costmap_common_params_hera.yaml @@ -0,0 +1,53 @@ +max_obstacle_height: 0.60 # assume something like an arm is mounted on top of the robot + +# Obstacle Cost Shaping (http://wiki.ros.org/costmap_2d/hydro/inflation) +#robot_radius: 0.16 # distance a circular robot should be clear of the obstacle (kobuki: 0.18) +footprint: [[-0.16, -0.18], [0.16, -0.18], [0.16, 0.18], [-0.16, 0.18]] +# footprint: [[x0, y0], [x1, y1], ... [xn, yn]] # if the robot is not circular + +map_type: voxel + +obstacle_layer: + enabled: true + max_obstacle_height: 0.6 + origin_z: 0.0 + z_resolution: 0.2 + z_voxels: 2 + unknown_threshold: 15 + mark_threshold: 0 + combination_method: 1 + track_unknown_space: true #true needed for disabling global path planning through unknown space + obstacle_range: 2.5 + raytrace_range: 3.0 + origin_z: 0.0 + z_resolution: 0.2 + z_voxels: 2 + publish_voxel_map: false + observation_sources: scan + scan: + data_type: LaserScan + topic: scan + inf_is_valid: true + marking: true + clearing: true + min_obstacle_height: 0.05 + max_obstacle_height: 0.35 + #bump: + #data_type: PointCloud2 + #topic: mobile_base/sensors/bumper_pointcloud + #marking: true + #clearing: false + #min_obstacle_height: 0.0 + #max_obstacle_height: 0.15 + # for debugging only, let's you see the entire voxel grid + +#cost_scaling_factor and inflation_radius were now moved to the inflation_layer ns +inflation_layer: + enabled: true + cost_scaling_factor: 2.5 # exponential rate at which the obstacle cost drops off (default: 10) + inflation_radius: 1.2 # max. distance from an obstacle at which costs are incurred for planning paths. + +static_layer: + enabled: true + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/costmap_common_params_zeus.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/costmap_common_params_zeus.yaml new file mode 100644 index 0000000..5485241 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/costmap_common_params_zeus.yaml @@ -0,0 +1,53 @@ +max_obstacle_height: 0.60 # assume something like an arm is mounted on top of the robot + +# Obstacle Cost Shaping (http://wiki.ros.org/costmap_2d/hydro/inflation) +robot_radius: 0.16 # distance a circular robot should be clear of the obstacle (kobuki: 0.18) +#footprint: [[0.25, 0.25], [0.25, -0.25], [-0.25, -0.25], [-0.25, 0.25]] +# footprint: [[x0, y0], [x1, y1], ... [xn, yn]] # if the robot is not circular + +map_type: voxel + +obstacle_layer: + enabled: true + max_obstacle_height: 0.6 + origin_z: 0.0 + z_resolution: 0.2 + z_voxels: 2 + unknown_threshold: 15 + mark_threshold: 0 + combination_method: 1 + track_unknown_space: true #true needed for disabling global path planning through unknown space + obstacle_range: 2.5 + raytrace_range: 3.0 + origin_z: 0.0 + z_resolution: 0.2 + z_voxels: 2 + publish_voxel_map: false + observation_sources: scan + scan: + data_type: LaserScan + topic: scan + inf_is_valid: true + marking: true + clearing: true + min_obstacle_height: 0.05 + max_obstacle_height: 0.35 + #bump: + #data_type: PointCloud2 + #topic: mobile_base/sensors/bumper_pointcloud + #marking: true + #clearing: false + #min_obstacle_height: 0.0 + #max_obstacle_height: 0.15 + # for debugging only, let's you see the entire voxel grid + +#cost_scaling_factor and inflation_radius were now moved to the inflation_layer ns +inflation_layer: + enabled: true + cost_scaling_factor: 2.5 # exponential rate at which the obstacle cost drops off (default: 10) + inflation_radius: 1.2 # max. distance from an obstacle at which costs are incurred for planning paths. + +static_layer: + enabled: true + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/dwa_local_planner_params_apollo.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/dwa_local_planner_params_apollo.yaml new file mode 100644 index 0000000..3313f0c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/dwa_local_planner_params_apollo.yaml @@ -0,0 +1,61 @@ +DWAPlannerROS: + +# Robot Configuration Parameters - Kobuki + max_vel_x: 0.1 + min_vel_x: -0.1 + + max_vel_y: 0 + min_vel_y: 0 + + max_vel_trans: 0.35 + min_vel_trans: 0.05 + max_trans_vel: 0.35 # choose slightly less than the base's capability + min_trans_vel: 0.05 # this is the min trans velocity when there is negligible rotational velocity + trans_stopped_vel: 0.05 + + # Warning! + # do not set min_trans_vel to 0.0 otherwise dwa will always think translational velocities + # are non-negligible and small in place rotational velocities will be created. + + max_vel_theta: 1.1 + min_vel_theta: 0.5 + max_rot_vel: 1.1 # choose slightly less than the base's capability + min_rot_vel: 0.5 # this is the min angular velocity when there is negligible translational velocity + theta_stopped_vel: 0.1 + rot_stopped_vel: 0.1 + + acc_lim_x: 2.5 # maximum is theoretically 2.0, but we + acc_lim_theta: 3.6 + acc_lim_y: 0 # diff drive robot + +# Goal Tolerance Parameters + yaw_goal_tolerance: 0.2 + xy_goal_tolerance: 0.15 + # latch_xy_goal_tolerance: false + +# Forward Simulation Parameters + sim_time: 2.0 # 1.7 + vx_samples: 10 # 3 + vy_samples: 1 # diff drive robot, there is only one sample + vtheta_samples: 20 # 20 + +# Trajectory Scoring Parameters + path_distance_bias: 32.0 # 32.0 - weighting for how much it should stick to the global path plan + goal_distance_bias: 24.0 # 24.0 - wighting for how much it should attempt to reach its goal + occdist_scale: 0.4 # 0.01 - weighting for how much the controller should avoid obstacles + forward_point_distance: 0.325 # 0.325 - how far along to place an additional scoring point + stop_time_buffer: 0.2 # 0.2 - amount of time a robot must stop in before colliding for a valid traj. + scaling_speed: 0.25 # 0.25 - absolute velocity at which to start scaling the robot's footprint + max_scaling_factor: 0.2 # 0.2 - how much to scale the robot's footprint when at speed. + +# Oscillation Prevention Parameters + oscillation_reset_dist: 0.05 # 0.05 - how far to travel before resetting oscillation flags + +# Debugging + publish_traj_pc : true + publish_cost_grid_pc: true + global_frame_id: odom + + +# Differential-drive robot configuration - necessary? +# holonomic_robot: false diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/dwa_local_planner_params_apolloX.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/dwa_local_planner_params_apolloX.yaml new file mode 100644 index 0000000..d8a05c3 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/dwa_local_planner_params_apolloX.yaml @@ -0,0 +1,61 @@ +DWAPlannerROS: + +# Robot Configuration Parameters - Kobuki + max_vel_x: 0.35 + min_vel_x: 0 + + max_vel_y: 0 + min_vel_y: 0 + + max_vel_trans: 0.35 + min_vel_trans: 0.05 + max_trans_vel: 0.35 # choose slightly less than the base's capability + min_trans_vel: 0.05 # this is the min trans velocity when there is negligible rotational velocity + trans_stopped_vel: 0.05 + + # Warning! + # do not set min_trans_vel to 0.0 otherwise dwa will always think translational velocities + # are non-negligible and small in place rotational velocities will be created. + + max_vel_theta: 0.8 + min_vel_theta: 0.2 + max_rot_vel: 0.8 # choose slightly less than the base's capability + min_rot_vel: 0.2 # this is the min angular velocity when there is negligible translational velocity + theta_stopped_vel: 0.1 + rot_stopped_vel: 0.1 + + acc_lim_x: 2.5 # maximum is theoretically 2.0, but we + acc_lim_theta: 3.6 + acc_lim_y: 0 # diff drive robot + +# Goal Tolerance Parameters + yaw_goal_tolerance: 0.2 + xy_goal_tolerance: 0.15 + # latch_xy_goal_tolerance: false + +# Forward Simulation Parameters + sim_time: 2.0 # 1.7 + vx_samples: 10 # 3 + vy_samples: 1 # diff drive robot, there is only one sample + vtheta_samples: 20 # 20 + +# Trajectory Scoring Parameters + path_distance_bias: 32.0 # 32.0 - weighting for how much it should stick to the global path plan + goal_distance_bias: 24.0 # 24.0 - wighting for how much it should attempt to reach its goal + occdist_scale: 0.4 # 0.01 - weighting for how much the controller should avoid obstacles + forward_point_distance: 0.325 # 0.325 - how far along to place an additional scoring point + stop_time_buffer: 0.2 # 0.2 - amount of time a robot must stop in before colliding for a valid traj. + scaling_speed: 0.25 # 0.25 - absolute velocity at which to start scaling the robot's footprint + max_scaling_factor: 0.2 # 0.2 - how much to scale the robot's footprint when at speed. + +# Oscillation Prevention Parameters + oscillation_reset_dist: 0.05 # 0.05 - how far to travel before resetting oscillation flags + +# Debugging + publish_traj_pc : true + publish_cost_grid_pc: true + global_frame_id: odom + + +# Differential-drive robot configuration - necessary? +# holonomic_robot: false diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/dwa_local_planner_params_apolloXL.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/dwa_local_planner_params_apolloXL.yaml new file mode 100644 index 0000000..66d5490 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/dwa_local_planner_params_apolloXL.yaml @@ -0,0 +1,56 @@ +DWAPlannerROS: + +# Robot Configuration Parameters - Kobuki + max_vel_x: 0.35 + min_vel_x: -0.35 + + max_vel_y: 0 + min_vel_y: 0 + + max_trans_vel: 0.35 # choose slightly less than the base's capability + min_trans_vel: 0.001 # this is the min trans velocity when there is negligible rotational velocity + trans_stopped_vel: 0.05 + + # Warning! + # do not set min_trans_vel to 0.0 otherwise dwa will always think translational velocities + # are non-negligible and small in place rotational velocities will be created. + + max_rot_vel: 1.4 # choose slightly less than the base's capability + min_rot_vel: 0.8 # this is the min angular velocity when there is negligible translational velocity + rot_stopped_vel: 0.1 + + acc_lim_x: 1 # maximum is theoretically 2.0, but we + acc_lim_theta: 1.5 + acc_lim_y: 0 # diff drive robot + +# Goal Tolerance Parameters + yaw_goal_tolerance: 0.2 + xy_goal_tolerance: 0.15 + # latch_xy_goal_tolerance: false + +# Forward Simulation Parameters + sim_time: 2.0 # 1.7 + vx_samples: 10 # 3 + vy_samples: 1 # diff drive robot, there is only one sample + vtheta_samples: 20 # 20 + +# Trajectory Scoring Parameters + path_distance_bias: 32.0 # 32.0 - weighting for how much it should stick to the global path plan + goal_distance_bias: 24.0 # 24.0 - wighting for how much it should attempt to reach its goal + occdist_scale: 0.4 # 0.01 - weighting for how much the controller should avoid obstacles + forward_point_distance: 0.325 # 0.325 - how far along to place an additional scoring point + stop_time_buffer: 0.2 # 0.2 - amount of time a robot must stop in before colliding for a valid traj. + scaling_speed: 0.25 # 0.25 - absolute velocity at which to start scaling the robot's footprint + max_scaling_factor: 0.2 # 0.2 - how much to scale the robot's footprint when at speed. + +# Oscillation Prevention Parameters + oscillation_reset_dist: 0.05 # 0.05 - how far to travel before resetting oscillation flags + +# Debugging + publish_traj_pc : true + publish_cost_grid_pc: true + global_frame_id: odom + + +# Differential-drive robot configuration - necessary? +# holonomic_robot: false diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/dwa_local_planner_params_hades.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/dwa_local_planner_params_hades.yaml new file mode 100644 index 0000000..912e8fa --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/dwa_local_planner_params_hades.yaml @@ -0,0 +1,61 @@ +DWAPlannerROS: + +# Robot Configuration Parameters - Kobuki + max_vel_x: 0.35 + min_vel_x: -0.35 + + max_vel_y: 0.35 + min_vel_y: -0.35 + + max_vel_trans: 0.35 + min_vel_trans: 0.05 + max_trans_vel: 0.35 # choose slightly less than the base's capability + min_trans_vel: 0.05 # this is the min trans velocity when there is negligible rotational velocity + trans_stopped_vel: 0.05 + + # Warning! + # do not set min_trans_vel to 0.0 otherwise dwa will always think translational velocities + # are non-negligible and small in place rotational velocities will be created. + + max_vel_theta: 1.2 + min_vel_theta: 0.6 + max_rot_vel: 1.2 # choose slightly less than the base's capability + min_rot_vel: 0.6 # this is the min angular velocity when there is negligible translational velocity + theta_stopped_vel: 0.1 + rot_stopped_vel: 0.1 + + acc_lim_x: 2 # maximum is theoretically 2.0, but we + acc_lim_theta: 3 + acc_lim_y: 2 # diff drive robot + +# Goal Tolerance Parameters + yaw_goal_tolerance: 0.2 + xy_goal_tolerance: 0.15 + # latch_xy_goal_tolerance: false + +# Forward Simulation Parameters + sim_time: 2.0 # 1.7 + vx_samples: 5 # 3 + vy_samples: 5 # diff drive robot, there is only one sample + vtheta_samples: 20 # 20 + +# Trajectory Scoring Parameters + path_distance_bias: 32.0 # 32.0 - weighting for how much it should stick to the global path plan + goal_distance_bias: 24.0 # 24.0 - wighting for how much it should attempt to reach its goal + occdist_scale: 0.4 # 0.01 - weighting for how much the controller should avoid obstacles + forward_point_distance: 0.325 # 0.325 - how far along to place an additional scoring point + stop_time_buffer: 0.2 # 0.2 - amount of time a robot must stop in before colliding for a valid traj. + scaling_speed: 0.25 # 0.25 - absolute velocity at which to start scaling the robot's footprint + max_scaling_factor: 0.2 # 0.2 - how much to scale the robot's footprint when at speed. + +# Oscillation Prevention Parameters + oscillation_reset_dist: 0.05 # 0.05 - how far to travel before resetting oscillation flags + +# Debugging + publish_traj_pc : true + publish_cost_grid_pc: true + global_frame_id: odom + + +# Differential-drive robot configuration - necessary? + holonomic_robot: false diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/dwa_local_planner_params_hadesX.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/dwa_local_planner_params_hadesX.yaml new file mode 100644 index 0000000..4ce9972 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/dwa_local_planner_params_hadesX.yaml @@ -0,0 +1,56 @@ +DWAPlannerROS: + +# Robot Configuration Parameters - Kobuki + max_vel_x: 0.35 + min_vel_x: -0.35 + + max_vel_y: 0.35 + min_vel_y: -0.35 + + max_trans_vel: 0.35 # choose slightly less than the base's capability + min_trans_vel: 0.001 # this is the min trans velocity when there is negligible rotational velocity + trans_stopped_vel: 0.05 + + # Warning! + # do not set min_trans_vel to 0.0 otherwise dwa will always think translational velocities + # are non-negligible and small in place rotational velocities will be created. + + max_rot_vel: 1.5 # choose slightly less than the base's capability + min_rot_vel: 0.6 # this is the min angular velocity when there is negligible translational velocity + rot_stopped_vel: 0.1 + + acc_lim_x: 2 # maximum is theoretically 2.0, but we + acc_lim_theta: 3 + acc_lim_y: 2 # diff drive robot + +# Goal Tolerance Parameters + yaw_goal_tolerance: 0.3 + xy_goal_tolerance: 0.25 + # latch_xy_goal_tolerance: false + +# Forward Simulation Parameters + sim_time: 2.0 # 1.7 + vx_samples: 5 # 3 + vy_samples: 5 # diff drive robot, there is only one sample + vtheta_samples: 20 # 20 + +# Trajectory Scoring Parameters + path_distance_bias: 32.0 # 32.0 - weighting for how much it should stick to the global path plan + goal_distance_bias: 24.0 # 24.0 - wighting for how much it should attempt to reach its goal + occdist_scale: 0.4 # 0.01 - weighting for how much the controller should avoid obstacles + forward_point_distance: 0.325 # 0.325 - how far along to place an additional scoring point + stop_time_buffer: 0.2 # 0.2 - amount of time a robot must stop in before colliding for a valid traj. + scaling_speed: 0.25 # 0.25 - absolute velocity at which to start scaling the robot's footprint + max_scaling_factor: 0.2 # 0.2 - how much to scale the robot's footprint when at speed. + +# Oscillation Prevention Parameters + oscillation_reset_dist: 0.05 # 0.05 - how far to travel before resetting oscillation flags + +# Debugging + publish_traj_pc : true + publish_cost_grid_pc: true + global_frame_id: odom + + +# Differential-drive robot configuration - necessary? + holonomic_robot: false diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/dwa_local_planner_params_hera.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/dwa_local_planner_params_hera.yaml new file mode 100644 index 0000000..ce7eefe --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/dwa_local_planner_params_hera.yaml @@ -0,0 +1,61 @@ +DWAPlannerROS: + +# Robot Configuration Parameters - Kobuki + max_vel_x: 0.3 + min_vel_x: -0.3 + + max_vel_y: 0 + min_vel_y: 0 + + max_vel_trans: 0.35 + min_vel_trans: 0.05 + max_trans_vel: 0.35 # choose slightly less than the base's capability + min_trans_vel: 0.05 # this is the min trans velocity when there is negligible rotational velocity + trans_stopped_vel: 0.05 + + # Warning! + # do not set min_trans_vel to 0.0 otherwise dwa will always think translational velocities + # are non-negligible and small in place rotational velocities will be created. + + max_vel_theta: 1.0 + min_vel_theta: 0.4 + max_rot_vel: 1.0 # choose slightly less than the base's capability + min_rot_vel: 0.4 # this is the min angular velocity when there is negligible translational velocity + theta_stopped_vel: 0.1 + rot_stopped_vel: 0.1 + + acc_lim_x: 2 # maximum is theoretically 2.0, but we + acc_lim_theta: 3 + acc_lim_y: 0 # diff drive robot + +# Goal Tolerance Parameters + yaw_goal_tolerance: 0.2 + xy_goal_tolerance: 0.15 + # latch_xy_goal_tolerance: false + +# Forward Simulation Parameters + sim_time: 2.0 # 1.7 + vx_samples: 10 # 3 + vy_samples: 1 # diff drive robot, there is only one sample + vtheta_samples: 20 # 20 + +# Trajectory Scoring Parameters + path_distance_bias: 32.0 # 32.0 - weighting for how much it should stick to the global path plan + goal_distance_bias: 24.0 # 24.0 - wighting for how much it should attempt to reach its goal + occdist_scale: 0.4 # 0.01 - weighting for how much the controller should avoid obstacles + forward_point_distance: 0.325 # 0.325 - how far along to place an additional scoring point + stop_time_buffer: 0.2 # 0.2 - amount of time a robot must stop in before colliding for a valid traj. + scaling_speed: 0.25 # 0.25 - absolute velocity at which to start scaling the robot's footprint + max_scaling_factor: 0.2 # 0.2 - how much to scale the robot's footprint when at speed. + +# Oscillation Prevention Parameters + oscillation_reset_dist: 0.05 # 0.05 - how far to travel before resetting oscillation flags + +# Debugging + publish_traj_pc : true + publish_cost_grid_pc: true + global_frame_id: odom + + +# Differential-drive robot configuration - necessary? +# holonomic_robot: false diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/dwa_local_planner_params_zeus.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/dwa_local_planner_params_zeus.yaml new file mode 100644 index 0000000..65b5a9e --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/dwa_local_planner_params_zeus.yaml @@ -0,0 +1,61 @@ +DWAPlannerROS: + +# Robot Configuration Parameters - Kobuki + max_vel_x: 0.35 + min_vel_x: -0.35 + + max_vel_y: 0.35 + min_vel_y: -0.35 + + max_vel_trans: 0.35 + min_vel_trans: 0.05 + max_trans_vel: 0.35 # choose slightly less than the base's capability + min_trans_vel: 0.001 # this is the min trans velocity when there is negligible rotational velocity + trans_stopped_vel: 0.05 + + # Warning! + # do not set min_trans_vel to 0.0 otherwise dwa will always think translational velocities + # are non-negligible and small in place rotational velocities will be created. + + max_vel_theta: 1.2 + min_vel_theta: 0.6 + max_rot_vel: 1.2 # choose slightly less than the base's capability + min_rot_vel: 0.6 # this is the min angular velocity when there is negligible translational velocity + theta_stopped_vel: 0.1 + rot_stopped_vel: 0.1 + + acc_lim_x: 2 # maximum is theoretically 2.0, but we + acc_lim_theta: 3 + acc_lim_y: 2 # diff drive robot + +# Goal Tolerance Parameters + yaw_goal_tolerance: 0.2 + xy_goal_tolerance: 0.15 + # latch_xy_goal_tolerance: false + +# Forward Simulation Parameters + sim_time: 2.0 # 1.7 + vx_samples: 5 # 3 + vy_samples: 5 # diff drive robot, there is only one sample + vtheta_samples: 20 # 20 + +# Trajectory Scoring Parameters + path_distance_bias: 32.0 # 32.0 - weighting for how much it should stick to the global path plan + goal_distance_bias: 24.0 # 24.0 - wighting for how much it should attempt to reach its goal + occdist_scale: 0.4 # 0.01 - weighting for how much the controller should avoid obstacles + forward_point_distance: 0.325 # 0.325 - how far along to place an additional scoring point + stop_time_buffer: 0.2 # 0.2 - amount of time a robot must stop in before colliding for a valid traj. + scaling_speed: 0.25 # 0.25 - absolute velocity at which to start scaling the robot's footprint + max_scaling_factor: 0.2 # 0.2 - how much to scale the robot's footprint when at speed. + +# Oscillation Prevention Parameters + oscillation_reset_dist: 0.05 # 0.05 - how far to travel before resetting oscillation flags + +# Debugging + publish_traj_pc : true + publish_cost_grid_pc: true + global_frame_id: odom + + +# Differential-drive robot configuration - necessary? + holonomic_robot: false diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/global_costmap_params.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/global_costmap_params.yaml new file mode 100644 index 0000000..949eebf --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/global_costmap_params.yaml @@ -0,0 +1,13 @@ +global_costmap: + global_frame: map + robot_base_frame: base_link + update_frequency: 10 + publish_frequency: 10 + static_map: true + resolution: 0.05 + transform_tolerance: 0.5 + plugins: + - {name: static_layer, type: "costmap_2d::StaticLayer"} + - {name: obstacle_layer, type: "costmap_2d::VoxelLayer"} + - {name: inflation_layer, type: "costmap_2d::InflationLayer"} + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/global_planner_params.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/global_planner_params.yaml new file mode 100644 index 0000000..6d1cf2b --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/global_planner_params.yaml @@ -0,0 +1,20 @@ + +GlobalPlanner: # Also see: http://wiki.ros.org/global_planner + old_navfn_behavior: false # Exactly mirror behavior of navfn, use defaults for other boolean parameters, default false + use_quadratic: true # Use the quadratic approximation of the potential. Otherwise, use a simpler calculation, default true + use_dijkstra: true # Use dijkstra's algorithm. Otherwise, A*, default true + use_grid_path: false # Create a path that follows the grid boundaries. Otherwise, use a gradient descent method, default false + + allow_unknown: true # Allow planner to plan through unknown space, default true + #Needs to have track_unknown_space: true in the obstacle / voxel layer (in costmap_commons_param) to work + planner_window_x: 0.0 # default 0.0 + planner_window_y: 0.0 # default 0.0 + default_tolerance: 0.5 # If goal in obstacle, plan to the closest point in radius default_tolerance, default 0.0 + + publish_scale: 100 # Scale by which the published potential gets multiplied, default 100 + planner_costmap_publish_frequency: 0.0 # default 0.0 + + lethal_cost: 253 # default 253 + neutral_cost: 66 # default 50 + cost_factor: 0.55 # Factor to multiply each cost from costmap by, default 3.0 + publish_potential: true # Publish Potential Costmap (this is not like the navfn pointcloud2 potential), default true diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/local_costmap_params.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/local_costmap_params.yaml new file mode 100644 index 0000000..60915a3 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/local_costmap_params.yaml @@ -0,0 +1,14 @@ +local_costmap: + global_frame: odom + robot_base_frame: base_link + update_frequency: 10.0 + publish_frequency: 10.0 + static_map: false + rolling_window: true + width: 3.5 + height: 3.5 + resolution: 0.05 + transform_tolerance: 0.5 + plugins: + - {name: obstacle_layer, type: "costmap_2d::VoxelLayer"} + - {name: inflation_layer, type: "costmap_2d::InflationLayer"} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/move_base_params.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/move_base_params.yaml new file mode 100644 index 0000000..d8e7bc3 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/params/move_base_params.yaml @@ -0,0 +1,20 @@ +# Move base node parameters. For full documentation of the parameters in this file, please see +# +# http://www.ros.org/wiki/move_base +# +shutdown_costmaps: false + +controller_frequency: 10.0 +controller_patience: 3.0 + + +planner_frequency: 1.0 +planner_patience: 5.0 + +oscillation_timeout: 10.0 +oscillation_distance: 0.2 + +# local planner - default is trajectory rollout +base_local_planner: "dwa_local_planner/DWAPlannerROS" + +base_global_planner: global_planner/GlobalPlanner #"navfn/NavfnROS" #alternatives: , carrot_planner/CarrotPlanner \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/rviz/demo_2d.rviz b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/rviz/demo_2d.rviz new file mode 100644 index 0000000..8de036e --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/rviz/demo_2d.rviz @@ -0,0 +1,228 @@ +# Copyright 2016 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. + +Panels: + - Class: rviz/Displays + Help Height: 78 + Name: Displays + Property Tree Widget: + Expanded: + - /Submaps1 + - /PointCloud21 + Splitter Ratio: 0.600671 + Tree Height: 821 + - Class: rviz/Selection + Name: Selection + - Class: rviz/Tool Properties + Expanded: + - /2D Pose Estimate1 + - /2D Nav Goal1 + - /Publish Point1 + Name: Tool Properties + Splitter Ratio: 0.588679 + - Class: rviz/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: rviz/Time + Experimental: false + Name: Time + SyncMode: 0 + SyncSource: PointCloud2 +Visualization Manager: + Class: "" + Displays: + - Alpha: 0.5 + Cell Size: 1 + Class: rviz/Grid + Color: 160; 160; 164 + Enabled: true + Line Style: + Line Width: 0.03 + Value: Lines + Name: Grid + Normal Cell Count: 0 + Offset: + X: 0 + Y: 0 + Z: 0 + Plane: XY + Plane Cell Count: 100 + Reference Frame: + Value: true + - Class: rviz/TF + Enabled: true + Frame Timeout: 15 + Frames: + All Enabled: true + base_link: + Value: true + horizontal_laser_link: + Value: true + imu_link: + Value: true + map: + Value: true + odom: + Value: true + vertical_laser_link: + Value: true + Marker Scale: 1 + Name: TF + Show Arrows: true + Show Axes: true + Show Names: true + Tree: + map: + odom: + base_link: + horizontal_laser_link: + {} + imu_link: + {} + vertical_laser_link: + {} + Update Interval: 0 + Value: true + - Alpha: 1 + Class: rviz/RobotModel + Collision Enabled: false + Enabled: true + Links: + All Links Enabled: true + Expand Joint Details: false + Expand Link Details: false + Expand Tree: false + Link Tree Style: Links in Alphabetic Order + base_link: + Alpha: 1 + Show Axes: false + Show Trail: false + horizontal_laser_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + imu_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + vertical_laser_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + Name: RobotModel + Robot Description: robot_description + TF Prefix: "" + Update Interval: 0 + Value: true + Visual Enabled: true + - Class: Submaps + Enabled: true + Map frame: map + Name: Submaps + Submap query service: /submap_query + Topic: /submap_list + Tracking frame: base_link + 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/PointCloud2 + Color: 0; 255; 0 + Color Transformer: FlatColor + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 4096 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: PointCloud2 + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.05 + Style: Flat Squares + Topic: /scan_matched_points2 + Unreliable: false + Use Fixed Frame: true + Use rainbow: true + Value: true + Enabled: true + Global Options: + Background Color: 100; 100; 100 + 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 + Topic: /initialpose + - Class: rviz/SetGoal + Topic: /move_base_simple/goal + - Class: rviz/PublishPoint + Single click: true + Topic: /clicked_point + Value: true + Views: + Current: + Angle: 0 + Class: rviz/TopDownOrtho + Enable Stereo Rendering: + Stereo Eye Separation: 0.06 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Name: Current View + Near Clip Distance: 0.01 + Scale: 10 + Target Frame: + Value: TopDownOrtho (rviz) + X: 0 + Y: 0 + Saved: ~ +Window Geometry: + Displays: + collapsed: false + Height: 1123 + Hide Left Dock: false + Hide Right Dock: false + QMainWindow State: 000000ff00000000fd0000000400000000000001c5000003c0fc0200000008fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000006400fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c0061007900730100000041000003c0000000dd00fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261000000010000010f000003c0fc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a005600690065007700730100000041000003c0000000b000fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e100000197000000030000077e0000003efc0100000002fb0000000800540069006d006501000000000000077e000002f600fffffffb0000000800540069006d006501000000000000045000000000000000000000049e000003c000000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: false + Width: 1918 + X: 0 + Y: 24 diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/rviz/new.rviz b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/rviz/new.rviz new file mode 100644 index 0000000..38d1f91 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/rviz/new.rviz @@ -0,0 +1,156 @@ +Panels: + - Class: rviz/Displays + Help Height: 78 + Name: Displays + Property Tree Widget: + Expanded: + - /Global Options1 + - /Status1 + - /Map1 + - /RobotModel1 + Splitter Ratio: 0.5 + Tree Height: 725 + - 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: 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 + Class: rviz/RobotModel + Collision Enabled: false + Enabled: true + Links: + All Links Enabled: true + Expand Joint Details: false + Expand Link Details: false + Expand Tree: false + Link Tree Style: Links in Alphabetic Order + base_footprint: + Alpha: 1 + Show Axes: false + Show Trail: false + base_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + Name: RobotModel + Robot Description: robot_description + TF Prefix: "" + Update Interval: 0 + Value: true + Visual Enabled: 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: 2.652451515197754 + 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: 0 + Y: 0 + Z: 0 + Focal Shape Fixed Size: true + Focal Shape Size: 0.05000000074505806 + Invert Z Axis: false + Name: Current View + Near Clip Distance: 0.009999999776482582 + Pitch: 0.785398006439209 + Target Frame: + Yaw: 0.785398006439209 + Saved: ~ +Window Geometry: + Displays: + collapsed: false + Height: 1016 + Hide Left Dock: false + Hide Right Dock: false + QMainWindow State: 000000ff00000000fd0000000400000000000001560000035efc0200000008fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000005c00fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000003b0000035e000000c700fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261000000010000010f0000035efc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a00560069006500770073010000003b0000035e000000a000fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000007380000003efc0100000002fb0000000800540069006d00650100000000000007380000030700fffffffb0000000800540069006d00650100000000000004500000000000000000000004c70000035e00000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: false + Width: 1848 + X: 72 + Y: 27 diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/rviz/view_navigation.rviz b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/rviz/view_navigation.rviz new file mode 100644 index 0000000..f7fb909 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_navigation/rviz/view_navigation.rviz @@ -0,0 +1,428 @@ +Panels: + - Class: rviz/Displays + Help Height: 81 + Name: Displays + Property Tree Widget: + Expanded: + - /RobotModel1 + - /TF1/Frames1 + - /TF1/Tree1 + - /Global Map1/Planner1 + - /Local Map1/Planner1 + - /Odometry1 + Splitter Ratio: 0.5 + Tree Height: 481 + - Class: rviz/Selection + Name: Selection + - Class: rviz/Tool Properties + Expanded: + - /2D Pose Estimate1 + - /2D Nav Goal1 + - /Publish Point1 + Name: Tool Properties + Splitter Ratio: 0.588679016 + - Class: rviz/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: rviz/Time + Experimental: false + Name: Time + SyncMode: 0 + SyncSource: LaserScan +Visualization Manager: + Class: "" + Displays: + - Alpha: 0.5 + Cell Size: 1 + Class: rviz/Grid + Color: 160; 160; 164 + Enabled: true + Line Style: + Line Width: 0.0299999993 + 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/RobotModel + Collision Enabled: false + Enabled: true + Links: + All Links Enabled: true + Expand Joint Details: false + Expand Link Details: false + Expand Tree: false + Link Tree Style: Links in Alphabetic Order + base_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + laser_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + Name: RobotModel + Robot Description: robot_description + TF Prefix: "" + Update Interval: 0 + Value: true + Visual Enabled: true + - Class: rviz/TF + Enabled: false + Frame Timeout: 15 + Frames: + All Enabled: false + Marker Scale: 1 + Name: TF + Show Arrows: true + Show Axes: true + Show Names: false + Tree: + {} + Update Interval: 0 + 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: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 47 + Min Color: 0; 0; 0 + Min Intensity: 47 + Name: LaserScan + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.0500000007 + Style: Squares + Topic: /scan + Unreliable: false + Use Fixed Frame: true + Use rainbow: true + 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; 0; 0 + Color Transformer: FlatColor + Decay Time: 0 + Enabled: false + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 4096 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: Bumper Hit + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.0799999982 + Style: Spheres + Topic: /mobile_base/sensors/bumper_pointcloud + Unreliable: false + Use Fixed Frame: true + Use rainbow: true + Value: false + - Alpha: 0.699999988 + Class: rviz/Map + Color Scheme: map + Draw Behind: false + Enabled: true + Name: Map + Topic: /map + Unreliable: false + Use Timestamp: false + Value: true + - Class: rviz/Group + Displays: + - Alpha: 0.699999988 + Class: rviz/Map + Color Scheme: costmap + Draw Behind: true + Enabled: true + Name: Costmap + Topic: /move_base/global_costmap/costmap + Unreliable: false + Use Timestamp: false + Value: true + - Alpha: 1 + Buffer Length: 1 + Class: rviz/Path + Color: 255; 0; 0 + Enabled: true + Head Diameter: 0.300000012 + Head Length: 0.200000003 + Length: 0.300000012 + Line Style: Lines + Line Width: 0.0299999993 + Name: Planner + Offset: + X: 0 + Y: 0 + Z: 0 + Pose Color: 255; 85; 255 + Pose Style: None + Radius: 0.0299999993 + Shaft Diameter: 0.100000001 + Shaft Length: 0.100000001 + Topic: /move_base/DWAPlannerROS/global_plan + Unreliable: false + Value: true + Enabled: true + Name: Global Map + - Class: rviz/Group + Displays: + - Alpha: 0.699999988 + Class: rviz/Map + Color Scheme: costmap + Draw Behind: false + Enabled: false + Name: Costmap + Topic: /move_base/local_costmap/costmap + Unreliable: false + Use Timestamp: false + Value: false + - Alpha: 1 + Buffer Length: 1 + Class: rviz/Path + Color: 0; 12; 255 + Enabled: true + Head Diameter: 0.300000012 + Head Length: 0.200000003 + Length: 0.300000012 + Line Style: Lines + Line Width: 0.0299999993 + Name: Planner + Offset: + X: 0 + Y: 0 + Z: 0 + Pose Color: 255; 85; 255 + Pose Style: None + Radius: 0.0299999993 + Shaft Diameter: 0.100000001 + Shaft Length: 0.100000001 + Topic: /move_base/DWAPlannerROS/local_plan + Unreliable: false + Value: true + - Alpha: 0.800000012 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 10 + Min Value: -10 + Value: true + Axis: Z + Channel Name: total_cost + Class: rviz/PointCloud2 + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: false + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 291.600006 + Min Color: 0; 0; 0 + Min Intensity: 65.5999985 + Name: Cost Cloud + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.0399999991 + Style: Flat Squares + Topic: /move_base/DWAPlannerROS/cost_cloud + 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: total_cost + Class: rviz/PointCloud2 + Color: 255; 255; 255 + Color Transformer: Intensity + Decay Time: 0 + Enabled: false + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 3845.65991 + Min Color: 0; 0; 0 + Min Intensity: 5.65999985 + Name: Trajectory Cloud + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.0399999991 + Style: Flat Squares + Topic: /move_base/DWAPlannerROS/trajectory_cloud + Unreliable: false + Use Fixed Frame: true + Use rainbow: false + Value: false + Enabled: true + Name: Local Map + - Alpha: 1 + Arrow Length: 0.200000003 + Axes Length: 0.300000012 + Axes Radius: 0.00999999978 + Class: rviz/PoseArray + Color: 0; 192; 0 + Enabled: false + Head Length: 0.0700000003 + Head Radius: 0.0299999993 + Name: Amcl Particle Swarm + Shaft Length: 0.230000004 + Shaft Radius: 0.00999999978 + Shape: Arrow (Flat) + Topic: /particlecloud + Unreliable: false + Value: false + - Alpha: 1 + Buffer Length: 1 + Class: rviz/Path + Color: 25; 255; 0 + Enabled: true + Head Diameter: 0.300000012 + Head Length: 0.200000003 + Length: 0.300000012 + Line Style: Lines + Line Width: 0.0299999993 + Name: Full Plan + Offset: + X: 0 + Y: 0 + Z: 0 + Pose Color: 255; 85; 255 + Pose Style: None + Radius: 0.0299999993 + Shaft Diameter: 0.100000001 + Shaft Length: 0.100000001 + Topic: /move_base/GlobalPlanner/plan + Unreliable: false + Value: true + - Angle Tolerance: 0.100000001 + 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.300000012 + Color: 204; 51; 204 + Scale: 1 + Value: true + Value: false + Enabled: true + Keep: 1 + Name: Odometry + Position Tolerance: 0.100000001 + Shape: + Alpha: 1 + Axes Length: 1 + Axes Radius: 0.100000001 + Color: 255; 25; 0 + Head Length: 0.300000012 + Head Radius: 0.100000001 + Shaft Length: 1 + Shaft Radius: 0.0500000007 + Value: Arrow + Topic: /odom + 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/MoveCamera + - Class: rviz/Interact + Hide Inactive Objects: true + - Class: rviz/Select + - Class: rviz/SetInitialPose + Topic: /initialpose + - Class: rviz/SetGoal + Topic: /move_base_simple/goal + - Class: rviz/Measure + - Class: rviz/PublishPoint + Single click: true + Topic: /clicked_point + Value: true + Views: + Current: + Angle: -4.68503332 + Class: rviz/TopDownOrtho + Enable Stereo Rendering: + Stereo Eye Separation: 0.0599999987 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Invert Z Axis: false + Name: Current View + Near Clip Distance: 0.00999999978 + Scale: 91.187973 + Target Frame: + Value: TopDownOrtho (rviz) + X: 0.143957004 + Y: 0.922994018 + Saved: ~ +Window Geometry: + Displays: + collapsed: false + Height: 704 + Hide Left Dock: false + Hide Right Dock: true + QMainWindow State: 000000ff00000000fd0000000400000000000002300000026cfc0200000005fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000005c00fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000003a0000026c000000c600ffffff000000010000010f0000026efc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a0056006900650077007300000000430000026e0000009e00fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000004a00000003efc0100000002fb0000000800540069006d00650000000000000004a00000024400fffffffb0000000800540069006d00650100000000000004500000000000000000000001ca0000026c00000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: true + Width: 1024 + X: 65 + Y: 27 diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/CMakeLists.txt new file mode 100644 index 0000000..8d17890 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/CMakeLists.txt @@ -0,0 +1,195 @@ +cmake_minimum_required(VERSION 2.8.3) +project(pibot_simulator) + +## 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 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 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 pibot_simulator +# 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}/pibot_simulator.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/pibot_simulator_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 +# install(PROGRAMS +# scripts/my_python_script +# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +# ) + +## Mark executables and/or libraries for installation +# install(TARGETS ${PROJECT_NAME} ${PROJECT_NAME}_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_pibot_simulator.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/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/launch/bringup.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/launch/bringup.launch new file mode 100644 index 0000000..d062e43 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/launch/bringup.launch @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/launch/bringup_turtlebot.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/launch/bringup_turtlebot.launch new file mode 100644 index 0000000..c89793b --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/launch/bringup_turtlebot.launch @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/launch/nav.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/launch/nav.launch new file mode 100644 index 0000000..32ae2a7 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/launch/nav.launch @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/launch/nav_turtlebot.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/launch/nav_turtlebot.launch new file mode 100644 index 0000000..f0956af --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/launch/nav_turtlebot.launch @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/maps/blank_map.pgm b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/maps/blank_map.pgm new file mode 100644 index 0000000..c453b21 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/maps/blank_map.pgm @@ -0,0 +1,5 @@ +P5 +# CREATOR: GIMP PNM Filter Version 1.1 +600 600 +255 + \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/maps/blank_map.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/maps/blank_map.yaml new file mode 100644 index 0000000..2d3fa51 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/maps/blank_map.yaml @@ -0,0 +1,6 @@ +image: blank_map.pgm +resolution: 0.01 +origin: [-2.5, -2.5, 0] +occupied_thresh: 0.65 +free_thresh: 0.196 # Taken from the Willow Garage map in the turtlebot_navigation package +negate: 0 diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/maps/blank_map_with_obstacle.pgm b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/maps/blank_map_with_obstacle.pgm new file mode 100644 index 0000000..9a4149b --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/maps/blank_map_with_obstacle.pgm @@ -0,0 +1,5 @@ +P5 +# CREATOR: GIMP PNM Filter Version 1.1 +600 600 +255 + % % \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/maps/blank_map_with_obstacle.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/maps/blank_map_with_obstacle.yaml new file mode 100644 index 0000000..51ad600 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/maps/blank_map_with_obstacle.yaml @@ -0,0 +1,6 @@ +image: blank_map_with_obstacle.pgm +resolution: 0.01 +origin: [-2.5, -2.5, 0] +occupied_thresh: 0.65 +free_thresh: 0.195 # Taken from the Willow Garage map in the turtlebot_navigation package +negate: 0 diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/maps/test_map.pgm b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/maps/test_map.pgm new file mode 100644 index 0000000..ac9e028 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/maps/test_map.pgm @@ -0,0 +1,5 @@ +P5 +# CREATOR: GIMP PNM Filter Version 1.1 +576 544 +255 + \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/maps/test_map.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/maps/test_map.yaml new file mode 100644 index 0000000..b8337f2 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/maps/test_map.yaml @@ -0,0 +1,7 @@ +image: test_map.pgm +resolution: 0.050000 +origin: [-13.800000, -12.200000, 0.000000] +negate: 0 +occupied_thresh: 0.9 +free_thresh: 0.196 + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/package.xml new file mode 100644 index 0000000..5dc2a8b --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/package.xml @@ -0,0 +1,59 @@ + + + pibot_simulator + 0.0.0 + The pibot_simulator package + + + + + apollo + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/params/arbotix.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/params/arbotix.yaml new file mode 100644 index 0000000..9b5c233 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/params/arbotix.yaml @@ -0,0 +1,11 @@ +port: /dev/ttyUSB0 +baud: 115200 +rate: 20 +sync_write: True +sync_read: True +read_rate: 20 +write_rate: 20 + +controllers: { + base_controller: {type: diff_controller, base_frame_id: base_link, base_width: 0.26, ticks_meter: 4100, Kp: 12, Kd: 12, Ki: 0, Ko: 50, accel_limit: 1.0 } +} \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/params/costmap_common_params.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/params/costmap_common_params.yaml new file mode 100644 index 0000000..a469f42 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/params/costmap_common_params.yaml @@ -0,0 +1,53 @@ +max_obstacle_height: 0.60 # assume something like an arm is mounted on top of the robot + +# Obstacle Cost Shaping (http://wiki.ros.org/costmap_2d/hydro/inflation) +robot_radius: 0.16 # distance a circular robot should be clear of the obstacle (kobuki: 0.18) +#footprint: [[-0.07, -0.10], [0.18, -0.10], [0.18, 0.10], [-0.07, 0.10]] +# footprint: [[x0, y0], [x1, y1], ... [xn, yn]] # if the robot is not circular + +map_type: costmap + +obstacle_layer: + enabled: true + max_obstacle_height: 0.6 + origin_z: 0.0 + z_resolution: 0.2 + z_voxels: 2 + unknown_threshold: 15 + mark_threshold: 0 + combination_method: 1 + track_unknown_space: true #true needed for disabling global path planning through unknown space + obstacle_range: 2.5 + raytrace_range: 3.0 + origin_z: 0.0 + z_resolution: 0.2 + z_voxels: 2 + publish_voxel_map: false + observation_sources: scan + scan: + data_type: LaserScan + topic: scan + inf_is_valid: true + marking: true + clearing: true + min_obstacle_height: 0.05 + max_obstacle_height: 0.35 + #bump: + #data_type: PointCloud2 + #topic: mobile_base/sensors/bumper_pointcloud + #marking: true + #clearing: false + #min_obstacle_height: 0.0 + #max_obstacle_height: 0.15 + # for debugging only, let's you see the entire voxel grid + +#cost_scaling_factor and inflation_radius were now moved to the inflation_layer ns +inflation_layer: + enabled: true + cost_scaling_factor: 2.5 # exponential rate at which the obstacle cost drops off (default: 10) + inflation_radius: 1.0 # max. distance from an obstacle at which costs are incurred for planning paths. + +static_layer: + enabled: true + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/params/dwa_local_planner_params.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/params/dwa_local_planner_params.yaml new file mode 100644 index 0000000..6c5de35 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/params/dwa_local_planner_params.yaml @@ -0,0 +1,56 @@ +DWAPlannerROS: + +# Robot Configuration Parameters - Kobuki + max_vel_x: 0.45 # 0.55 + min_vel_x: 0.0 + + max_vel_y: 0.0 # diff drive robot + min_vel_y: 0.0 # diff drive robot + + max_trans_vel: 0.45 # choose slightly less than the base's capability + min_trans_vel: 0.1 # this is the min trans velocity when there is negligible rotational velocity + trans_stopped_vel: 0.1 + + # Warning! + # do not set min_trans_vel to 0.0 otherwise dwa will always think translational velocities + # are non-negligible and small in place rotational velocities will be created. + + max_rot_vel: 1.4 # choose slightly less than the base's capability + min_rot_vel: 0.4 # this is the min angular velocity when there is negligible translational velocity + rot_stopped_vel: 0.1 + + acc_lim_x: 2 # maximum is theoretically 2.0, but we + acc_lim_theta: 3.6 + acc_lim_y: 0.0 # diff drive robot + +# Goal Tolerance Parameters + yaw_goal_tolerance: 0.2 + xy_goal_tolerance: 0.15 + # latch_xy_goal_tolerance: false + +# Forward Simulation Parameters + sim_time: 2.0 # 1.7 + vx_samples: 10 # 3 + vy_samples: 1 # diff drive robot, there is only one sample + vtheta_samples: 20 # 20 + +# Trajectory Scoring Parameters + path_distance_bias: 48.0 # 32.0 - weighting for how much it should stick to the global path plan + goal_distance_bias: 24.0 # 24.0 - wighting for how much it should attempt to reach its goal + occdist_scale: 0.08 # 0.01 - weighting for how much the controller should avoid obstacles + forward_point_distance: 0.325 # 0.325 - how far along to place an additional scoring point + stop_time_buffer: 0.2 # 0.2 - amount of time a robot must stop in before colliding for a valid traj. + scaling_speed: 0.25 # 0.25 - absolute velocity at which to start scaling the robot's footprint + max_scaling_factor: 0.2 # 0.2 - how much to scale the robot's footprint when at speed. + +# Oscillation Prevention Parameters + oscillation_reset_dist: 0.05 # 0.05 - how far to travel before resetting oscillation flags + +# Debugging + publish_traj_pc : true + publish_cost_grid_pc: true + global_frame_id: odom + + +# Differential-drive robot configuration - necessary? +# holonomic_robot: false diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/params/global_costmap_params.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/params/global_costmap_params.yaml new file mode 100644 index 0000000..2c6e5e1 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/params/global_costmap_params.yaml @@ -0,0 +1,13 @@ +global_costmap: + global_frame: map + robot_base_frame: base_link + update_frequency: 1.0 + publish_frequency: 0.5 + static_map: true + resolution: 0.05 + transform_tolerance: 0.5 + # plugins: + # - {name: static_layer, type: "costmap_2d::StaticLayer"} + # - {name: obstacle_layer, type: "costmap_2d::VoxelLayer"} + # - {name: inflation_layer, type: "costmap_2d::InflationLayer"} + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/params/global_planner_params.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/params/global_planner_params.yaml new file mode 100644 index 0000000..17c4282 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/params/global_planner_params.yaml @@ -0,0 +1,20 @@ + +GlobalPlanner: # Also see: http://wiki.ros.org/global_planner + old_navfn_behavior: false # Exactly mirror behavior of navfn, use defaults for other boolean parameters, default false + use_quadratic: true # Use the quadratic approximation of the potential. Otherwise, use a simpler calculation, default true + use_dijkstra: true # Use dijkstra's algorithm. Otherwise, A*, default true + use_grid_path: false # Create a path that follows the grid boundaries. Otherwise, use a gradient descent method, default false + + allow_unknown: true # Allow planner to plan through unknown space, default true + #Needs to have track_unknown_space: true in the obstacle / voxel layer (in costmap_commons_param) to work + planner_window_x: 0.0 # default 0.0 + planner_window_y: 0.0 # default 0.0 + default_tolerance: 0.0 # If goal in obstacle, plan to the closest point in radius default_tolerance, default 0.0 + + publish_scale: 100 # Scale by which the published potential gets multiplied, default 100 + planner_costmap_publish_frequency: 0.0 # default 0.0 + + lethal_cost: 253 # default 253 + neutral_cost: 66 # default 50 + cost_factor: 0.55 # Factor to multiply each cost from costmap by, default 3.0 + publish_potential: true # Publish Potential Costmap (this is not like the navfn pointcloud2 potential), default true \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/params/local_costmap_params.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/params/local_costmap_params.yaml new file mode 100644 index 0000000..dd182a7 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/params/local_costmap_params.yaml @@ -0,0 +1,14 @@ +local_costmap: + global_frame: odom + robot_base_frame: base_link + update_frequency: 5.0 + publish_frequency: 2.0 + static_map: true + rolling_window: true + width: 6.0 + height: 6.0 + resolution: 0.05 + transform_tolerance: 0.5 +# plugins: +# - {name: obstacle_layer, type: "costmap_2d::VoxelLayer"} +# - {name: inflation_layer, type: "costmap_2d::InflationLayer"} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/params/move_base_params.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/params/move_base_params.yaml new file mode 100644 index 0000000..4f2433f --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_simulator/params/move_base_params.yaml @@ -0,0 +1,20 @@ +# Move base node parameters. For full documentation of the parameters in this file, please see +# +# http://www.ros.org/wiki/move_base +# +shutdown_costmaps: false + +controller_frequency: 5.0 +controller_patience: 3.0 + + +planner_frequency: 1.0 +planner_patience: 5.0 + +oscillation_timeout: 10.0 +oscillation_distance: 0.2 + +# local planner - default is trajectory rollout +base_local_planner: "dwa_local_planner/DWAPlannerROS" + +base_global_planner: global_planner/GlobalPlanner #"navfn/NavfnROS" #alternatives: , carrot_planner/CarrotPlanner \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/CMakeLists.txt new file mode 100644 index 0000000..6c2fb68 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/CMakeLists.txt @@ -0,0 +1,202 @@ +cmake_minimum_required(VERSION 3.0.2) +project(pibot_slam_3d) + +## 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 pibot_slam_3d +# 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}/pibot_slam_3d.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/pibot_slam_3d_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_pibot_slam_3d.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/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/config/mapping.rviz b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/config/mapping.rviz new file mode 100644 index 0000000..12b28eb --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/config/mapping.rviz @@ -0,0 +1,427 @@ +Panels: + - Class: rviz/Displays + Help Height: 0 + Name: Displays + Property Tree Widget: + Expanded: + - /TF1/Frames1 + - /TF1/Tree1 + - /Image1 + - /Global Map1/Costmap1 + - /Global Map1/Planner1 + - /Local Map1/Polygon1 + - /Local Map1/Costmap1 + - /Local Map1/Planner1 + - /MapCloud1 + Splitter Ratio: 0.5 + Tree Height: 705 + - Class: rviz/Selection + Name: Selection + - Class: rviz/Tool Properties + Expanded: + - /2D Pose Estimate1 + - /2D Nav Goal1 + Name: Tool Properties + Splitter Ratio: 0.588679016 + - Class: rviz/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: rviz/Time + Experimental: false + Name: Time + SyncMode: 0 + SyncSource: Image +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.0299999993 + Value: Lines + Name: Grid + Normal Cell Count: 0 + Offset: + X: 0 + Y: 0 + Z: 0 + Plane: XY + Plane Cell Count: 20 + Reference Frame: + Value: true + - Alpha: 1 + Class: rviz/RobotModel + Collision Enabled: false + Enabled: true + Links: + All Links Enabled: true + Expand Joint Details: false + Expand Link Details: false + Expand Tree: false + Link Tree Style: Links in Alphabetic Order + base_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + camera_1_pillar: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + camera_2_pillar: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + camera_3_pillar: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + camera_4_pillar: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + camera_board: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + camera_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + footprint: + Alpha: 1 + Show Axes: false + Show Trail: false + laser_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + Name: RobotModel + Robot Description: robot_description + TF Prefix: "" + Update Interval: 0 + Value: true + Visual Enabled: true + - Class: rviz/TF + Enabled: false + Frame Timeout: 15 + Frames: + All Enabled: false + Marker Scale: 1 + Name: TF + Show Arrows: true + Show Axes: true + Show Names: false + Tree: + {} + Update Interval: 0 + 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: 0; 255; 0 + Color Transformer: FlatColor + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 13069 + Min Color: 0; 0; 0 + Min Intensity: 28 + Name: LaserScan + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.0300000012 + Style: Flat Squares + Topic: /scan + Unreliable: false + Use Fixed Frame: true + Use rainbow: true + Value: true + - Class: rviz/Image + Enabled: true + Image Topic: /camera/rgb/image_raw + Max Value: 1 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: true + Queue Size: 2 + Transport Hint: raw + Unreliable: false + Value: true + - Alpha: 0.699999988 + Class: rviz/Map + Color Scheme: map + Draw Behind: false + Enabled: true + Name: Map + Topic: /map + Unreliable: false + Use Timestamp: false + Value: true + - Alpha: 1 + Buffer Length: 1 + Class: rviz/Path + Color: 0; 0; 0 + Enabled: true + Head Diameter: 0.300000012 + Head Length: 0.200000003 + Length: 0.300000012 + Line Style: Lines + Line Width: 0.0299999993 + Name: Planner Plan + Offset: + X: 0 + Y: 0 + Z: 0 + Pose Color: 255; 85; 255 + Pose Style: None + Radius: 0.0299999993 + Shaft Diameter: 0.100000001 + Shaft Length: 0.100000001 + Topic: /move_base/NavfnROS/plan + Unreliable: false + Value: true + - Class: rviz/Group + Displays: + - Alpha: 0.699999988 + Class: rviz/Map + Color Scheme: costmap + Draw Behind: true + Enabled: true + Name: Costmap + Topic: /move_base/global_costmap/costmap + Unreliable: false + Use Timestamp: false + Value: true + - Alpha: 1 + Buffer Length: 1 + Class: rviz/Path + Color: 255; 0; 0 + Enabled: true + Head Diameter: 0.300000012 + Head Length: 0.200000003 + Length: 0.300000012 + Line Style: Lines + Line Width: 0.0299999993 + Name: Planner + Offset: + X: 0 + Y: 0 + Z: 0 + Pose Color: 255; 85; 255 + Pose Style: None + Radius: 0.0299999993 + Shaft Diameter: 0.100000001 + Shaft Length: 0.100000001 + Topic: /move_base/DWAPlannerROS/global_plan + Unreliable: false + Value: true + Enabled: false + Name: Global Map + - Class: rviz/Group + Displays: + - Alpha: 1 + Class: rviz/Polygon + Color: 0; 0; 0 + Enabled: true + Name: Polygon + Topic: /move_base/local_costmap/footprint + Unreliable: false + Value: true + - Alpha: 0.699999988 + Class: rviz/Map + Color Scheme: costmap + Draw Behind: false + Enabled: true + Name: Costmap + Topic: /move_base/local_costmap/costmap + Unreliable: false + Use Timestamp: false + Value: true + - Alpha: 1 + Buffer Length: 1 + Class: rviz/Path + Color: 255; 255; 0 + Enabled: true + Head Diameter: 0.300000012 + Head Length: 0.200000003 + Length: 0.300000012 + Line Style: Lines + Line Width: 0.0299999993 + Name: Planner + Offset: + X: 0 + Y: 0 + Z: 0 + Pose Color: 255; 85; 255 + Pose Style: None + Radius: 0.0299999993 + Shaft Diameter: 0.100000001 + Shaft Length: 0.100000001 + Topic: /move_base/DWAPlannerROS/local_plan + Unreliable: false + Value: true + Enabled: false + Name: Local Map + - Alpha: 1 + Arrow Length: 0.0500000007 + Axes Length: 0.300000012 + Axes Radius: 0.00999999978 + Class: rviz/PoseArray + Color: 0; 192; 0 + Enabled: true + Head Length: 0.0700000003 + Head Radius: 0.0299999993 + Name: Amcl Particles + Shaft Length: 0.230000004 + Shaft Radius: 0.00999999978 + Shape: Arrow (Flat) + Topic: /particlecloud + Unreliable: false + Value: true + - Alpha: 1 + Axes Length: 1 + Axes Radius: 0.100000001 + Class: rviz/Pose + Color: 255; 25; 0 + Enabled: true + Head Length: 0.300000012 + Head Radius: 0.100000001 + Name: Goal + Shaft Length: 0.5 + Shaft Radius: 0.0500000007 + Shape: Arrow + Topic: /move_base_simple/goal + Unreliable: false + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /detection_collector/map_objects + Name: MarkerArray + 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: rtabmap_ros/MapCloud + Cloud decimation: 4 + Cloud from scan: false + Cloud max depth (m): 1.75 + Cloud min depth (m): 0 + Cloud voxel size (m): 0 + Color: 255; 255; 255 + Color Transformer: RGB8 + Download graph: false + Download map: false + Enabled: true + Filter ceiling (m): 2 + Filter floor (m): 0 + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 4096 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: MapCloud + Node filtering angle (degrees): 30 + Node filtering radius (m): 0.0500000007 + Position Transformer: XYZ + Size (Pixels): 4 + Size (m): 0.00999999978 + Style: Points + Topic: /rtabmap/mapData + Unreliable: false + Use Fixed Frame: true + Use rainbow: true + 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/MoveCamera + - Class: rviz/Interact + Hide Inactive Objects: true + - Class: rviz/Select + - Class: rviz/SetInitialPose + Topic: /initialpose + - Class: rviz/SetGoal + Topic: /move_base_simple/goal + - Class: rviz/Measure + Value: true + Views: + Current: + Class: rviz/Orbit + Distance: 10.1918488 + Enable Stereo Rendering: + Stereo Eye Separation: 0.0599999987 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Focal Point: + X: 2.07435036 + Y: -0.930790782 + Z: 0.360236198 + Focal Shape Fixed Size: true + Focal Shape Size: 0.0500000007 + Invert Z Axis: false + Name: Current View + Near Clip Distance: 0.00999999978 + Pitch: 1.56479633 + Target Frame: + Value: Orbit (rviz) + Yaw: 4.81318235 + Saved: ~ +Window Geometry: + Displays: + collapsed: false + Height: 1056 + Hide Left Dock: false + Hide Right Dock: true + Image: + collapsed: false + QMainWindow State: 000000ff00000000fd00000004000000000000016a000003dafc0200000007fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000006100fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000002800000302000000d700fffffffb0000000a0049006d0061006700650100000330000000d20000001600fffffffb0000000a0049006d0061006700650000000330000000ce0000000000000000000000010000010f000003bdfc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a005600690065007700730000000028000003bd000000ad00fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000004a00000003efc0100000002fb0000000800540069006d00650000000000000004a00000030000fffffffb0000000800540069006d00650100000000000004500000000000000000000005cf000003da00000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: true + Width: 1855 + X: 65 + Y: 24 diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/config/navigation.rviz b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/config/navigation.rviz new file mode 100644 index 0000000..12b28eb --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/config/navigation.rviz @@ -0,0 +1,427 @@ +Panels: + - Class: rviz/Displays + Help Height: 0 + Name: Displays + Property Tree Widget: + Expanded: + - /TF1/Frames1 + - /TF1/Tree1 + - /Image1 + - /Global Map1/Costmap1 + - /Global Map1/Planner1 + - /Local Map1/Polygon1 + - /Local Map1/Costmap1 + - /Local Map1/Planner1 + - /MapCloud1 + Splitter Ratio: 0.5 + Tree Height: 705 + - Class: rviz/Selection + Name: Selection + - Class: rviz/Tool Properties + Expanded: + - /2D Pose Estimate1 + - /2D Nav Goal1 + Name: Tool Properties + Splitter Ratio: 0.588679016 + - Class: rviz/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: rviz/Time + Experimental: false + Name: Time + SyncMode: 0 + SyncSource: Image +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.0299999993 + Value: Lines + Name: Grid + Normal Cell Count: 0 + Offset: + X: 0 + Y: 0 + Z: 0 + Plane: XY + Plane Cell Count: 20 + Reference Frame: + Value: true + - Alpha: 1 + Class: rviz/RobotModel + Collision Enabled: false + Enabled: true + Links: + All Links Enabled: true + Expand Joint Details: false + Expand Link Details: false + Expand Tree: false + Link Tree Style: Links in Alphabetic Order + base_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + camera_1_pillar: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + camera_2_pillar: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + camera_3_pillar: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + camera_4_pillar: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + camera_board: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + camera_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + footprint: + Alpha: 1 + Show Axes: false + Show Trail: false + laser_link: + Alpha: 1 + Show Axes: false + Show Trail: false + Value: true + Name: RobotModel + Robot Description: robot_description + TF Prefix: "" + Update Interval: 0 + Value: true + Visual Enabled: true + - Class: rviz/TF + Enabled: false + Frame Timeout: 15 + Frames: + All Enabled: false + Marker Scale: 1 + Name: TF + Show Arrows: true + Show Axes: true + Show Names: false + Tree: + {} + Update Interval: 0 + 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: 0; 255; 0 + Color Transformer: FlatColor + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 13069 + Min Color: 0; 0; 0 + Min Intensity: 28 + Name: LaserScan + Position Transformer: XYZ + Queue Size: 10 + Selectable: true + Size (Pixels): 3 + Size (m): 0.0300000012 + Style: Flat Squares + Topic: /scan + Unreliable: false + Use Fixed Frame: true + Use rainbow: true + Value: true + - Class: rviz/Image + Enabled: true + Image Topic: /camera/rgb/image_raw + Max Value: 1 + Median window: 5 + Min Value: 0 + Name: Image + Normalize Range: true + Queue Size: 2 + Transport Hint: raw + Unreliable: false + Value: true + - Alpha: 0.699999988 + Class: rviz/Map + Color Scheme: map + Draw Behind: false + Enabled: true + Name: Map + Topic: /map + Unreliable: false + Use Timestamp: false + Value: true + - Alpha: 1 + Buffer Length: 1 + Class: rviz/Path + Color: 0; 0; 0 + Enabled: true + Head Diameter: 0.300000012 + Head Length: 0.200000003 + Length: 0.300000012 + Line Style: Lines + Line Width: 0.0299999993 + Name: Planner Plan + Offset: + X: 0 + Y: 0 + Z: 0 + Pose Color: 255; 85; 255 + Pose Style: None + Radius: 0.0299999993 + Shaft Diameter: 0.100000001 + Shaft Length: 0.100000001 + Topic: /move_base/NavfnROS/plan + Unreliable: false + Value: true + - Class: rviz/Group + Displays: + - Alpha: 0.699999988 + Class: rviz/Map + Color Scheme: costmap + Draw Behind: true + Enabled: true + Name: Costmap + Topic: /move_base/global_costmap/costmap + Unreliable: false + Use Timestamp: false + Value: true + - Alpha: 1 + Buffer Length: 1 + Class: rviz/Path + Color: 255; 0; 0 + Enabled: true + Head Diameter: 0.300000012 + Head Length: 0.200000003 + Length: 0.300000012 + Line Style: Lines + Line Width: 0.0299999993 + Name: Planner + Offset: + X: 0 + Y: 0 + Z: 0 + Pose Color: 255; 85; 255 + Pose Style: None + Radius: 0.0299999993 + Shaft Diameter: 0.100000001 + Shaft Length: 0.100000001 + Topic: /move_base/DWAPlannerROS/global_plan + Unreliable: false + Value: true + Enabled: false + Name: Global Map + - Class: rviz/Group + Displays: + - Alpha: 1 + Class: rviz/Polygon + Color: 0; 0; 0 + Enabled: true + Name: Polygon + Topic: /move_base/local_costmap/footprint + Unreliable: false + Value: true + - Alpha: 0.699999988 + Class: rviz/Map + Color Scheme: costmap + Draw Behind: false + Enabled: true + Name: Costmap + Topic: /move_base/local_costmap/costmap + Unreliable: false + Use Timestamp: false + Value: true + - Alpha: 1 + Buffer Length: 1 + Class: rviz/Path + Color: 255; 255; 0 + Enabled: true + Head Diameter: 0.300000012 + Head Length: 0.200000003 + Length: 0.300000012 + Line Style: Lines + Line Width: 0.0299999993 + Name: Planner + Offset: + X: 0 + Y: 0 + Z: 0 + Pose Color: 255; 85; 255 + Pose Style: None + Radius: 0.0299999993 + Shaft Diameter: 0.100000001 + Shaft Length: 0.100000001 + Topic: /move_base/DWAPlannerROS/local_plan + Unreliable: false + Value: true + Enabled: false + Name: Local Map + - Alpha: 1 + Arrow Length: 0.0500000007 + Axes Length: 0.300000012 + Axes Radius: 0.00999999978 + Class: rviz/PoseArray + Color: 0; 192; 0 + Enabled: true + Head Length: 0.0700000003 + Head Radius: 0.0299999993 + Name: Amcl Particles + Shaft Length: 0.230000004 + Shaft Radius: 0.00999999978 + Shape: Arrow (Flat) + Topic: /particlecloud + Unreliable: false + Value: true + - Alpha: 1 + Axes Length: 1 + Axes Radius: 0.100000001 + Class: rviz/Pose + Color: 255; 25; 0 + Enabled: true + Head Length: 0.300000012 + Head Radius: 0.100000001 + Name: Goal + Shaft Length: 0.5 + Shaft Radius: 0.0500000007 + Shape: Arrow + Topic: /move_base_simple/goal + Unreliable: false + Value: true + - Class: rviz/MarkerArray + Enabled: true + Marker Topic: /detection_collector/map_objects + Name: MarkerArray + 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: rtabmap_ros/MapCloud + Cloud decimation: 4 + Cloud from scan: false + Cloud max depth (m): 1.75 + Cloud min depth (m): 0 + Cloud voxel size (m): 0 + Color: 255; 255; 255 + Color Transformer: RGB8 + Download graph: false + Download map: false + Enabled: true + Filter ceiling (m): 2 + Filter floor (m): 0 + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 4096 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: MapCloud + Node filtering angle (degrees): 30 + Node filtering radius (m): 0.0500000007 + Position Transformer: XYZ + Size (Pixels): 4 + Size (m): 0.00999999978 + Style: Points + Topic: /rtabmap/mapData + Unreliable: false + Use Fixed Frame: true + Use rainbow: true + 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/MoveCamera + - Class: rviz/Interact + Hide Inactive Objects: true + - Class: rviz/Select + - Class: rviz/SetInitialPose + Topic: /initialpose + - Class: rviz/SetGoal + Topic: /move_base_simple/goal + - Class: rviz/Measure + Value: true + Views: + Current: + Class: rviz/Orbit + Distance: 10.1918488 + Enable Stereo Rendering: + Stereo Eye Separation: 0.0599999987 + Stereo Focal Distance: 1 + Swap Stereo Eyes: false + Value: false + Focal Point: + X: 2.07435036 + Y: -0.930790782 + Z: 0.360236198 + Focal Shape Fixed Size: true + Focal Shape Size: 0.0500000007 + Invert Z Axis: false + Name: Current View + Near Clip Distance: 0.00999999978 + Pitch: 1.56479633 + Target Frame: + Value: Orbit (rviz) + Yaw: 4.81318235 + Saved: ~ +Window Geometry: + Displays: + collapsed: false + Height: 1056 + Hide Left Dock: false + Hide Right Dock: true + Image: + collapsed: false + QMainWindow State: 000000ff00000000fd00000004000000000000016a000003dafc0200000007fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000006100fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000002800000302000000d700fffffffb0000000a0049006d0061006700650100000330000000d20000001600fffffffb0000000a0049006d0061006700650000000330000000ce0000000000000000000000010000010f000003bdfc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a005600690065007700730000000028000003bd000000ad00fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000004a00000003efc0100000002fb0000000800540069006d00650000000000000004a00000030000fffffffb0000000800540069006d00650100000000000004500000000000000000000005cf000003da00000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: true + Width: 1855 + X: 65 + Y: 24 diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/launch/astra.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/launch/astra.launch new file mode 100644 index 0000000..46b6e66 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/launch/astra.launch @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/launch/d435i.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/launch/d435i.launch new file mode 100644 index 0000000..adbe0fd --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/launch/d435i.launch @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/launch/kinectV1.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/launch/kinectV1.launch new file mode 100644 index 0000000..8e8383c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/launch/kinectV1.launch @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/launch/rtabmap.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/launch/rtabmap.launch new file mode 100644 index 0000000..6e31c04 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/launch/rtabmap.launch @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/launch/view.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/launch/view.launch new file mode 100644 index 0000000..8eeef07 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/launch/view.launch @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/launch/xtion.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/launch/xtion.launch new file mode 100644 index 0000000..46b6e66 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/launch/xtion.launch @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/package.xml new file mode 100644 index 0000000..6444196 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/pibot_slam_3d/package.xml @@ -0,0 +1,59 @@ + + + pibot_slam_3d + 0.0.0 + The pibot_slam_3d package + + + + + david + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/CHANGELOG.rst b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/CHANGELOG.rst new file mode 100644 index 0000000..dafad8a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/CHANGELOG.rst @@ -0,0 +1,70 @@ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Changelog for package rplidar_ros +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +1.10.0 (2019-02-22) +------------------ +* Update RPLIDAR SDK to 1.10.0 +* [new feature] support Rplidar S1 +* Contributors: tony,WubinXia + +1.9.0 (2018-08-24) +------------------ +* Update RPLIDAR SDK to 1.9.0 +* [new feature] support baudrate 57600 and 1382400, support HQ scan response +* [bugfix] TCP channel doesn't work +* [improvement] Print warning messages when deprecated APIs are called; imporve angular accuracy for ultra capsuled scan points +* Contributors: tony,kint + +1.7.0 (2018-07-19) +------------------ +* Update RPLIDAR SDK to 1.7.0 +* support scan points farther than 16.38m +* upport display and set scan mode +* Contributors: kint + + +1.6.0 (2018-05-21) +------------------ +* Release 1.6.0. +* Update RPLIDAR SDK to 1.6.0 +* Support new product RPLIDAR A3(default 16K model and max_distance 25m) +* Contributors: kint + + +1.5.7 (2016-12-15) +------------------ +* Release 1.5.7. +* Update RPLIDAR SDK to 1.5.7 +* Fixed the motor default speed at 10 HZ. Extend the measurement of max_distance from 6m to 8m. +* Contributors: kint + +1.5.5 (2016-08-23) +------------------ +* Release 1.5.5. +* Update RPLIDAR SDK to 1.5.5 +* Add RPLIDAR information print, and fix the standard motor speed of RPLIDAR A2. +* Contributors: kint + +1.5.4 (2016-06-02) +------------------ +* Release 1.5.4. +* Update RPLIDAR SDK to 1.5.4 +* Support RPLIDAR A2 +* Contributors: kint + +1.5.2 (2016-04-29) +------------------ +* Release 1.5.2. +* Update RPLIDAR SDK to 1.5.2 +* Support RPLIDAR A2 +* Contributors: kint + +1.0.1 (2014-06-03) +------------------ +* Release 1.0.1. +* Add angle compensate mechanism to compatible with ROS scan message +* Add RPLIDAR sdk to the repo. +* First release of RPLIDAR ROS package (1.0.0) +* Initial commit +* Contributors: Ling, RoboPeak Public Repos diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/CMakeLists.txt new file mode 100644 index 0000000..a5f2248 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/CMakeLists.txt @@ -0,0 +1,41 @@ +cmake_minimum_required(VERSION 2.8.3) +project(rplidar_ros) + +set(RPLIDAR_SDK_PATH "./sdk/") + +FILE(GLOB RPLIDAR_SDK_SRC + "${RPLIDAR_SDK_PATH}/src/arch/linux/*.cpp" + "${RPLIDAR_SDK_PATH}/src/hal/*.cpp" + "${RPLIDAR_SDK_PATH}/src/*.cpp" +) + +find_package(catkin REQUIRED COMPONENTS + roscpp + rosconsole + sensor_msgs +) + +include_directories( + ${RPLIDAR_SDK_PATH}/include + ${RPLIDAR_SDK_PATH}/src + ${catkin_INCLUDE_DIRS} +) + +catkin_package() + +add_executable(rplidarNode src/node.cpp ${RPLIDAR_SDK_SRC}) +target_link_libraries(rplidarNode ${catkin_LIBRARIES}) + +add_executable(rplidarNodeClient src/client.cpp) +target_link_libraries(rplidarNodeClient ${catkin_LIBRARIES}) + +install(TARGETS rplidarNode rplidarNodeClient + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +) + +install(DIRECTORY launch rviz sdk + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} + USE_SOURCE_PERMISSIONS +) diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/LICENSE b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/LICENSE new file mode 100644 index 0000000..144df83 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/LICENSE @@ -0,0 +1,24 @@ +Copyright (c) 2009 - 2014 RoboPeak Team +Copyright (c) 2014 - 2018 Shanghai Slamtec Co., Ltd. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/README.md b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/README.md new file mode 100644 index 0000000..12d2a23 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/README.md @@ -0,0 +1,51 @@ +RPLIDAR ROS package +===================================================================== + +ROS node and test application for RPLIDAR + +Visit following Website for more details about RPLIDAR: + +rplidar roswiki: http://wiki.ros.org/rplidar + +rplidar HomePage: http://www.slamtec.com/en/Lidar + +rplidar SDK: https://github.com/Slamtec/rplidar_sdk + +rplidar Tutorial: https://github.com/robopeak/rplidar_ros/wiki + +How to build rplidar ros package +===================================================================== + 1) Clone this project to your catkin's workspace src folder + 2) Running catkin_make to build rplidarNode and rplidarNodeClient + +How to run rplidar ros package +===================================================================== +There're two ways to run rplidar ros package + +I. Run rplidar node and view in the rviz +------------------------------------------------------------ +roslaunch rplidar_ros view_rplidar.launch (for RPLIDAR A1/A2) +, +roslaunch rplidar_ros view_rplidar_a3.launch (for RPLIDAR A3) +or +roslaunch rplidar_ros view_rplidar_s1.launch (for RPLIDAR S1) + +You should see rplidar's scan result in the rviz. + +II. Run rplidar node and view using test application +------------------------------------------------------------ +roslaunch rplidar_ros rplidar.launch (for RPLIDAR A1/A2) +, +roslaunch rplidar_ros rplidar_a3.launch (for RPLIDAR A3) +or +roslaunch rplidar_ros rplidar_s1.launch (for RPLIDAR S1) + +rosrun rplidar_ros rplidarNodeClient + +You should see rplidar's scan result in the console + +Notice: the different is serial_baudrate between A1/A2 and A3/S1 + +RPLidar frame +===================================================================== +RPLidar frame must be broadcasted according to picture shown in rplidar-frame.png diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/rplidar.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/rplidar.launch new file mode 100644 index 0000000..4154781 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/rplidar.launch @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/rplidar_a3.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/rplidar_a3.launch new file mode 100644 index 0000000..32b0d35 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/rplidar_a3.launch @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/rplidar_s1.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/rplidar_s1.launch new file mode 100644 index 0000000..2daaac0 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/rplidar_s1.launch @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/rplidar_s1_tcp.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/rplidar_s1_tcp.launch new file mode 100644 index 0000000..a1e6b4b --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/rplidar_s1_tcp.launch @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/test_rplidar.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/test_rplidar.launch new file mode 100644 index 0000000..c8edd80 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/test_rplidar.launch @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/test_rplidar_a3.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/test_rplidar_a3.launch new file mode 100644 index 0000000..94ca69c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/test_rplidar_a3.launch @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/view_rplidar.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/view_rplidar.launch new file mode 100644 index 0000000..e171855 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/view_rplidar.launch @@ -0,0 +1,10 @@ + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/view_rplidar_a3.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/view_rplidar_a3.launch new file mode 100644 index 0000000..010f6d6 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/view_rplidar_a3.launch @@ -0,0 +1,10 @@ + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/view_rplidar_s1.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/view_rplidar_s1.launch new file mode 100644 index 0000000..e3c3127 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/view_rplidar_s1.launch @@ -0,0 +1,10 @@ + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/view_rplidar_s1_tcp.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/view_rplidar_s1_tcp.launch new file mode 100644 index 0000000..88b011d --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/launch/view_rplidar_s1_tcp.launch @@ -0,0 +1,10 @@ + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/package.xml new file mode 100644 index 0000000..78c1a29 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/package.xml @@ -0,0 +1,20 @@ + + + rplidar_ros + 1.10.0 + The rplidar ros package, support rplidar A2/A1 and A3/S1 + + Slamtec ROS Maintainer + BSD + + catkin + roscpp + rosconsole + sensor_msgs + std_srvs + roscpp + rosconsole + sensor_msgs + std_srvs + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/rplidar_A1.png b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/rplidar_A1.png new file mode 100644 index 0000000..994def4 Binary files /dev/null and b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/rplidar_A1.png differ diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/rplidar_A2.png b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/rplidar_A2.png new file mode 100644 index 0000000..3ca9294 Binary files /dev/null and b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/rplidar_A2.png differ diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/rviz/rplidar.rviz b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/rviz/rplidar.rviz new file mode 100644 index 0000000..ed62937 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/rviz/rplidar.rviz @@ -0,0 +1,128 @@ +Panels: + - Class: rviz/Displays + Help Height: 78 + Name: Displays + Property Tree Widget: + Expanded: + - /Global Options1 + - /Status1 + - /RPLidarLaserScan1 + Splitter Ratio: 0.5 + Tree Height: 413 + - Class: rviz/Selection + Name: Selection + - Class: rviz/Tool Properties + Expanded: + - /2D Pose Estimate1 + - /2D Nav Goal1 + Name: Tool Properties + Splitter Ratio: 0.588679 + - Class: rviz/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: rviz/Time + Experimental: false + Name: Time + SyncMode: 0 + SyncSource: "" +Visualization Manager: + Class: "" + Displays: + - Alpha: 0.5 + Cell Size: 1 + Class: rviz/Grid + Color: 160; 160; 164 + Enabled: true + Line Style: + Line Width: 0.03 + 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 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 0 + Min Value: 0 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz/LaserScan + Color: 255; 255; 255 + Color Transformer: AxisColor + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 4096 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: RPLidarLaserScan + Position Transformer: XYZ + Queue Size: 1000 + Selectable: true + Size (Pixels): 5 + Size (m): 0.03 + Style: Squares + Topic: /scan + Use Fixed Frame: true + Use rainbow: true + Value: true + Enabled: true + Global Options: + Background Color: 48; 48; 48 + Fixed Frame: laser + Frame Rate: 30 + Name: root + Tools: + - Class: rviz/MoveCamera + - Class: rviz/Interact + Hide Inactive Objects: true + - Class: rviz/Select + - Class: rviz/SetInitialPose + Topic: /initialpose + - Class: rviz/SetGoal + Topic: /move_base_simple/goal + Value: true + Views: + Current: + Class: rviz/Orbit + Distance: 11.1184 + Focal Point: + X: -0.0344972 + Y: 0.065886 + Z: 0.148092 + Name: Current View + Near Clip Distance: 0.01 + Pitch: 0.615399 + Target Frame: + Value: Orbit (rviz) + Yaw: 5.82358 + Saved: ~ +Window Geometry: + Displays: + collapsed: false + Height: 626 + Hide Left Dock: false + Hide Right Dock: false + QMainWindow State: 000000ff00000000fd0000000400000000000001950000022cfc0200000006fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000006400fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c00610079007301000000280000022c000000dd00fffffffb0000000a0049006d006100670065000000028d000000c60000000000000000000000010000010b00000294fc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a00560069006500770073000000003300000294000000b000fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000004a00000003efc0100000002fb0000000800540069006d00650000000000000004a0000002f600fffffffb0000000800540069006d00650100000000000004500000000000000000000003240000022c00000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: false + Width: 1215 + X: 65 + Y: 24 diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/scripts/create_udev_rules.sh b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/scripts/create_udev_rules.sh new file mode 100644 index 0000000..ff260a9 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/scripts/create_udev_rules.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +echo "remap the device serial port(ttyUSBX) to rplidar" +echo "rplidar usb connection as /dev/rplidar , check it using the command : ls -l /dev|grep ttyUSB" +echo "start copy rplidar.rules to /etc/udev/rules.d/" +echo "`rospack find rplidar_ros`/scripts/rplidar.rules" +sudo cp `rospack find rplidar_ros`/scripts/rplidar.rules /etc/udev/rules.d +echo " " +echo "Restarting udev" +echo "" +sudo service udev reload +sudo service udev restart +echo "finish " diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/scripts/delete_udev_rules.sh b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/scripts/delete_udev_rules.sh new file mode 100644 index 0000000..05c77f8 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/scripts/delete_udev_rules.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +echo "delete remap the device serial port(ttyUSBX) to rplidar" +echo "sudo rm /etc/udev/rules.d/rplidar.rules" +sudo rm /etc/udev/rules.d/rplidar.rules +echo " " +echo "Restarting udev" +echo "" +sudo service udev reload +sudo service udev restart +echo "finish delete" diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/scripts/rplidar.rules b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/scripts/rplidar.rules new file mode 100644 index 0000000..d75ed81 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/scripts/rplidar.rules @@ -0,0 +1,4 @@ +# set the udev rule , make the device_port be fixed by rplidar +# +KERNEL=="ttyUSB*", ATTRS{idVendor}=="10c4", ATTRS{idProduct}=="ea60", MODE:="0777", SYMLINK+="rplidar" + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/README.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/README.txt new file mode 100644 index 0000000..b05d81f --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/README.txt @@ -0,0 +1,34 @@ +Copyright (c) 2009 - 2014 RoboPeak Team +Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + +This folder contains RPLIDAR SDK source code which is provided by RoboPeak. + +RoboPeak Website: http://www.robopeak.com +SlamTec HomePage: http://www.slamtec.com +RPLIDAR_SDK_VERSION: 1.10.0 +Note: The SDK version may not up-to-date. +rplidar product: http://www.slamtec.com/en/Lidar diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/include/rplidar.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/include/rplidar.h new file mode 100644 index 0000000..4e14aa0 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/include/rplidar.h @@ -0,0 +1,44 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#pragma once + +#include +#include "hal/types.h" +#include "rplidar_protocol.h" +#include "rplidar_cmd.h" + +#include "rplidar_driver.h" + +#define RPLIDAR_SDK_VERSION "1.10.0" diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/include/rplidar_cmd.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/include/rplidar_cmd.h new file mode 100644 index 0000000..cfe0760 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/include/rplidar_cmd.h @@ -0,0 +1,297 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#pragma once + +#include "rplidar_protocol.h" + +// Commands +//----------------------------------------- + +// Commands without payload and response +#define RPLIDAR_CMD_STOP 0x25 +#define RPLIDAR_CMD_SCAN 0x20 +#define RPLIDAR_CMD_FORCE_SCAN 0x21 +#define RPLIDAR_CMD_RESET 0x40 + + +// Commands without payload but have response +#define RPLIDAR_CMD_GET_DEVICE_INFO 0x50 +#define RPLIDAR_CMD_GET_DEVICE_HEALTH 0x52 + +#define RPLIDAR_CMD_GET_SAMPLERATE 0x59 //added in fw 1.17 + +#define RPLIDAR_CMD_HQ_MOTOR_SPEED_CTRL 0xA8 + +// Commands with payload and have response +#define RPLIDAR_CMD_EXPRESS_SCAN 0x82 //added in fw 1.17 +#define RPLIDAR_CMD_HQ_SCAN 0x83 //added in fw 1.24 +#define RPLIDAR_CMD_GET_LIDAR_CONF 0x84 //added in fw 1.24 +#define RPLIDAR_CMD_SET_LIDAR_CONF 0x85 //added in fw 1.24 +//add for A2 to set RPLIDAR motor pwm when using accessory board +#define RPLIDAR_CMD_SET_MOTOR_PWM 0xF0 +#define RPLIDAR_CMD_GET_ACC_BOARD_FLAG 0xFF + +#if defined(_WIN32) +#pragma pack(1) +#endif + + +// Payloads +// ------------------------------------------ +#define RPLIDAR_EXPRESS_SCAN_MODE_NORMAL 0 +#define RPLIDAR_EXPRESS_SCAN_MODE_FIXANGLE 0 // won't been supported but keep to prevent build fail +//for express working flag(extending express scan protocol) +#define RPLIDAR_EXPRESS_SCAN_FLAG_BOOST 0x0001 +#define RPLIDAR_EXPRESS_SCAN_FLAG_SUNLIGHT_REJECTION 0x0002 + +//for ultra express working flag +#define RPLIDAR_ULTRAEXPRESS_SCAN_FLAG_STD 0x0001 +#define RPLIDAR_ULTRAEXPRESS_SCAN_FLAG_HIGH_SENSITIVITY 0x0002 + +#define RPLIDAR_HQ_SCAN_FLAG_CCW (0x1<<0) +#define RPLIDAR_HQ_SCAN_FLAG_RAW_ENCODER (0x1<<1) +#define RPLIDAR_HQ_SCAN_FLAG_RAW_DISTANCE (0x1<<2) + +typedef struct _rplidar_payload_express_scan_t { + _u8 working_mode; + _u16 working_flags; + _u16 param; +} __attribute__((packed)) rplidar_payload_express_scan_t; + +typedef struct _rplidar_payload_hq_scan_t { + _u8 flag; + _u8 reserved[32]; +} __attribute__((packed)) rplidar_payload_hq_scan_t; + +typedef struct _rplidar_payload_get_scan_conf_t { + _u32 type; + _u8 reserved[32]; +} __attribute__((packed)) rplidar_payload_get_scan_conf_t; +#define MAX_MOTOR_PWM 1023 +#define DEFAULT_MOTOR_PWM 660 +typedef struct _rplidar_payload_motor_pwm_t { + _u16 pwm_value; +} __attribute__((packed)) rplidar_payload_motor_pwm_t; + +typedef struct _rplidar_payload_acc_board_flag_t { + _u32 reserved; +} __attribute__((packed)) rplidar_payload_acc_board_flag_t; + +// Response +// ------------------------------------------ +#define RPLIDAR_ANS_TYPE_DEVINFO 0x4 +#define RPLIDAR_ANS_TYPE_DEVHEALTH 0x6 + +#define RPLIDAR_ANS_TYPE_MEASUREMENT 0x81 +// Added in FW ver 1.17 +#define RPLIDAR_ANS_TYPE_MEASUREMENT_CAPSULED 0x82 +#define RPLIDAR_ANS_TYPE_MEASUREMENT_HQ 0x83 + + +// Added in FW ver 1.17 +#define RPLIDAR_ANS_TYPE_SAMPLE_RATE 0x15 +//added in FW ver 1.23alpha +#define RPLIDAR_ANS_TYPE_MEASUREMENT_CAPSULED_ULTRA 0x84 +//added in FW ver 1.24 +#define RPLIDAR_ANS_TYPE_GET_LIDAR_CONF 0x20 +#define RPLIDAR_ANS_TYPE_SET_LIDAR_CONF 0x21 +#define RPLIDAR_ANS_TYPE_MEASUREMENT_DENSE_CAPSULED 0x85 +#define RPLIDAR_ANS_TYPE_ACC_BOARD_FLAG 0xFF + +#define RPLIDAR_RESP_ACC_BOARD_FLAG_MOTOR_CTRL_SUPPORT_MASK (0x1) +typedef struct _rplidar_response_acc_board_flag_t { + _u32 support_flag; +} __attribute__((packed)) rplidar_response_acc_board_flag_t; + + +#define RPLIDAR_STATUS_OK 0x0 +#define RPLIDAR_STATUS_WARNING 0x1 +#define RPLIDAR_STATUS_ERROR 0x2 + +#define RPLIDAR_RESP_MEASUREMENT_SYNCBIT (0x1<<0) +#define RPLIDAR_RESP_MEASUREMENT_QUALITY_SHIFT 2 + +#define RPLIDAR_RESP_HQ_FLAG_SYNCBIT (0x1<<0) + +#define RPLIDAR_RESP_MEASUREMENT_CHECKBIT (0x1<<0) +#define RPLIDAR_RESP_MEASUREMENT_ANGLE_SHIFT 1 + +typedef struct _rplidar_response_sample_rate_t { + _u16 std_sample_duration_us; + _u16 express_sample_duration_us; +} __attribute__((packed)) rplidar_response_sample_rate_t; + +typedef struct _rplidar_response_measurement_node_t { + _u8 sync_quality; // syncbit:1;syncbit_inverse:1;quality:6; + _u16 angle_q6_checkbit; // check_bit:1;angle_q6:15; + _u16 distance_q2; +} __attribute__((packed)) rplidar_response_measurement_node_t; + +//[distance_sync flags] +#define RPLIDAR_RESP_MEASUREMENT_EXP_ANGLE_MASK (0x3) +#define RPLIDAR_RESP_MEASUREMENT_EXP_DISTANCE_MASK (0xFC) + +typedef struct _rplidar_response_cabin_nodes_t { + _u16 distance_angle_1; // see [distance_sync flags] + _u16 distance_angle_2; // see [distance_sync flags] + _u8 offset_angles_q3; +} __attribute__((packed)) rplidar_response_cabin_nodes_t; + + +#define RPLIDAR_RESP_MEASUREMENT_EXP_SYNC_1 0xA +#define RPLIDAR_RESP_MEASUREMENT_EXP_SYNC_2 0x5 + +#define RPLIDAR_RESP_MEASUREMENT_HQ_SYNC 0xA5 + +#define RPLIDAR_RESP_MEASUREMENT_EXP_SYNCBIT (0x1<<15) + +typedef struct _rplidar_response_capsule_measurement_nodes_t { + _u8 s_checksum_1; // see [s_checksum_1] + _u8 s_checksum_2; // see [s_checksum_1] + _u16 start_angle_sync_q6; + rplidar_response_cabin_nodes_t cabins[16]; +} __attribute__((packed)) rplidar_response_capsule_measurement_nodes_t; + +typedef struct _rplidar_response_dense_cabin_nodes_t { + _u16 distance; +} __attribute__((packed)) rplidar_response_dense_cabin_nodes_t; + +typedef struct _rplidar_response_dense_capsule_measurement_nodes_t { + _u8 s_checksum_1; // see [s_checksum_1] + _u8 s_checksum_2; // see [s_checksum_1] + _u16 start_angle_sync_q6; + rplidar_response_dense_cabin_nodes_t cabins[40]; +} __attribute__((packed)) rplidar_response_dense_capsule_measurement_nodes_t; + +// ext1 : x2 boost mode + +#define RPLIDAR_RESP_MEASUREMENT_EXP_ULTRA_MAJOR_BITS 12 +#define RPLIDAR_RESP_MEASUREMENT_EXP_ULTRA_PREDICT_BITS 10 + +typedef struct _rplidar_response_ultra_cabin_nodes_t { + // 31 0 + // | predict2 10bit | predict1 10bit | major 12bit | + _u32 combined_x3; +} __attribute__((packed)) rplidar_response_ultra_cabin_nodes_t; + +typedef struct _rplidar_response_ultra_capsule_measurement_nodes_t { + _u8 s_checksum_1; // see [s_checksum_1] + _u8 s_checksum_2; // see [s_checksum_1] + _u16 start_angle_sync_q6; + rplidar_response_ultra_cabin_nodes_t ultra_cabins[32]; +} __attribute__((packed)) rplidar_response_ultra_capsule_measurement_nodes_t; + +typedef struct rplidar_response_measurement_node_hq_t { + _u16 angle_z_q14; + _u32 dist_mm_q2; + _u8 quality; + _u8 flag; +} __attribute__((packed)) rplidar_response_measurement_node_hq_t; + +typedef struct _rplidar_response_hq_capsule_measurement_nodes_t{ + _u8 sync_byte; + _u64 time_stamp; + rplidar_response_measurement_node_hq_t node_hq[16]; + _u32 crc32; +}__attribute__((packed)) rplidar_response_hq_capsule_measurement_nodes_t; + + +# define RPLIDAR_CONF_SCAN_COMMAND_STD 0 +# define RPLIDAR_CONF_SCAN_COMMAND_EXPRESS 1 +# define RPLIDAR_CONF_SCAN_COMMAND_HQ 2 +# define RPLIDAR_CONF_SCAN_COMMAND_BOOST 3 +# define RPLIDAR_CONF_SCAN_COMMAND_STABILITY 4 +# define RPLIDAR_CONF_SCAN_COMMAND_SENSITIVITY 5 + +#define RPLIDAR_CONF_ANGLE_RANGE 0x00000000 +#define RPLIDAR_CONF_DESIRED_ROT_FREQ 0x00000001 +#define RPLIDAR_CONF_SCAN_COMMAND_BITMAP 0x00000002 +#define RPLIDAR_CONF_MIN_ROT_FREQ 0x00000004 +#define RPLIDAR_CONF_MAX_ROT_FREQ 0x00000005 +#define RPLIDAR_CONF_MAX_DISTANCE 0x00000060 + +#define RPLIDAR_CONF_SCAN_MODE_COUNT 0x00000070 +#define RPLIDAR_CONF_SCAN_MODE_US_PER_SAMPLE 0x00000071 +#define RPLIDAR_CONF_SCAN_MODE_MAX_DISTANCE 0x00000074 +#define RPLIDAR_CONF_SCAN_MODE_ANS_TYPE 0x00000075 +#define RPLIDAR_CONF_SCAN_MODE_TYPICAL 0x0000007C +#define RPLIDAR_CONF_SCAN_MODE_NAME 0x0000007F +#define RPLIDAR_EXPRESS_SCAN_STABILITY_BITMAP 4 +#define RPLIDAR_EXPRESS_SCAN_SENSITIVITY_BITMAP 5 + +typedef struct _rplidar_response_get_lidar_conf{ + _u32 type; + _u8 payload[0]; +}__attribute__((packed)) rplidar_response_get_lidar_conf_t; + +typedef struct _rplidar_response_set_lidar_conf{ + _u32 result; +}__attribute__((packed)) rplidar_response_set_lidar_conf_t; + + +typedef struct _rplidar_response_device_info_t { + _u8 model; + _u16 firmware_version; + _u8 hardware_version; + _u8 serialnum[16]; +} __attribute__((packed)) rplidar_response_device_info_t; + +typedef struct _rplidar_response_device_health_t { + _u8 status; + _u16 error_code; +} __attribute__((packed)) rplidar_response_device_health_t; + +// Definition of the variable bit scale encoding mechanism +#define RPLIDAR_VARBITSCALE_X2_SRC_BIT 9 +#define RPLIDAR_VARBITSCALE_X4_SRC_BIT 11 +#define RPLIDAR_VARBITSCALE_X8_SRC_BIT 12 +#define RPLIDAR_VARBITSCALE_X16_SRC_BIT 14 + +#define RPLIDAR_VARBITSCALE_X2_DEST_VAL 512 +#define RPLIDAR_VARBITSCALE_X4_DEST_VAL 1280 +#define RPLIDAR_VARBITSCALE_X8_DEST_VAL 1792 +#define RPLIDAR_VARBITSCALE_X16_DEST_VAL 3328 + +#define RPLIDAR_VARBITSCALE_GET_SRC_MAX_VAL_BY_BITS(_BITS_) \ + ( (((0x1<<(_BITS_)) - RPLIDAR_VARBITSCALE_X16_DEST_VAL)<<4) + \ + ((RPLIDAR_VARBITSCALE_X16_DEST_VAL - RPLIDAR_VARBITSCALE_X8_DEST_VAL)<<3) + \ + ((RPLIDAR_VARBITSCALE_X8_DEST_VAL - RPLIDAR_VARBITSCALE_X4_DEST_VAL)<<2) + \ + ((RPLIDAR_VARBITSCALE_X4_DEST_VAL - RPLIDAR_VARBITSCALE_X2_DEST_VAL)<<1) + \ + RPLIDAR_VARBITSCALE_X2_DEST_VAL - 1) + + +#if defined(_WIN32) +#pragma pack() +#endif diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/include/rplidar_driver.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/include/rplidar_driver.h new file mode 100644 index 0000000..b73b845 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/include/rplidar_driver.h @@ -0,0 +1,325 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#pragma once + + +#ifndef __cplusplus +#error "The RPlidar SDK requires a C++ compiler to be built" +#endif + +#ifndef DEPRECATED + #ifdef __GNUC__ + #define DEPRECATED(func) func __attribute__ ((deprecated)) + #elif defined(_MSC_VER) + #define DEPRECATED(func) __declspec(deprecated) func + #else + #pragma message("WARNING: You need to implement DEPRECATED for this compiler") + #define DEPRECATED(func) func + #endif +#endif + +namespace rp { namespace standalone{ namespace rplidar { + +struct RplidarScanMode { + _u16 id; + float us_per_sample; // microseconds per sample + float max_distance; // max distance + _u8 ans_type; // the answer type of the scam mode, its value should be RPLIDAR_ANS_TYPE_MEASUREMENT* + char scan_mode[64]; // name of scan mode, max 63 characters +}; + +enum { + DRIVER_TYPE_SERIALPORT = 0x0, + DRIVER_TYPE_TCP = 0x1, +}; + +class ChannelDevice +{ +public: + virtual bool bind(const char*, uint32_t ) = 0; + virtual bool open() {return true;} + virtual void close() = 0; + virtual void flush() {return;} + virtual bool waitfordata(size_t data_count,_u32 timeout = -1, size_t * returned_size = NULL) = 0; + virtual int senddata(const _u8 * data, size_t size) = 0; + virtual int recvdata(unsigned char * data, size_t size) = 0; + virtual void setDTR() {return;} + virtual void clearDTR() {return;} + virtual void ReleaseRxTx() {return;} +}; + +class RPlidarDriver { +public: + enum { + DEFAULT_TIMEOUT = 2000, //2000 ms + }; + + enum { + MAX_SCAN_NODES = 8192, + }; + + enum { + LEGACY_SAMPLE_DURATION = 476, + }; + +public: + /// Create an RPLIDAR Driver Instance + /// This interface should be invoked first before any other operations + /// + /// \param drivertype the connection type used by the driver. + static RPlidarDriver * CreateDriver(_u32 drivertype = DRIVER_TYPE_SERIALPORT); + + /// Dispose the RPLIDAR Driver Instance specified by the drv parameter + /// Applications should invoke this interface when the driver instance is no longer used in order to free memory + static void DisposeDriver(RPlidarDriver * drv); + + + /// Open the specified serial port and connect to a target RPLIDAR device + /// + /// \param port_path the device path of the serial port + /// e.g. on Windows, it may be com3 or \\.\com10 + /// on Unix-Like OS, it may be /dev/ttyS1, /dev/ttyUSB2, etc + /// + /// \param baudrate the baudrate used + /// For most RPLIDAR models, the baudrate should be set to 115200 + /// + /// \param flag other flags + /// Reserved for future use, always set to Zero + virtual u_result connect(const char *, _u32, _u32 flag = 0) = 0; + + + /// Disconnect with the RPLIDAR and close the serial port + virtual void disconnect() = 0; + + /// Returns TRUE when the connection has been established + virtual bool isConnected() = 0; + + /// Ask the RPLIDAR core system to reset it self + /// The host system can use the Reset operation to help RPLIDAR escape the self-protection mode. + /// + /// \param timeout The operation timeout value (in millisecond) for the serial port communication + virtual u_result reset(_u32 timeout = DEFAULT_TIMEOUT) = 0; + + virtual u_result clearNetSerialRxCache() = 0; + // FW1.24 + /// Get all scan modes that supported by lidar + virtual u_result getAllSupportedScanModes(std::vector& outModes, _u32 timeoutInMs = DEFAULT_TIMEOUT) = 0; + + /// Get typical scan mode of lidar + virtual u_result getTypicalScanMode(_u16& outMode, _u32 timeoutInMs = DEFAULT_TIMEOUT) = 0; + + /// Start scan + /// + /// \param force Force the core system to output scan data regardless whether the scanning motor is rotating or not. + /// \param useTypicalScan Use lidar's typical scan mode or use the compatibility mode (2k sps) + /// \param options Scan options (please use 0) + /// \param outUsedScanMode The scan mode selected by lidar + virtual u_result startScan(bool force, bool useTypicalScan, _u32 options = 0, RplidarScanMode* outUsedScanMode = NULL) = 0; + + /// Start scan in specific mode + /// + /// \param force Force the core system to output scan data regardless whether the scanning motor is rotating or not. + /// \param scanMode The scan mode id (use getAllSupportedScanModes to get supported modes) + /// \param options Scan options (please use 0) + /// \param outUsedScanMode The scan mode selected by lidar + virtual u_result startScanExpress(bool force, _u16 scanMode, _u32 options = 0, RplidarScanMode* outUsedScanMode = NULL, _u32 timeout = DEFAULT_TIMEOUT) = 0; + + /// Retrieve the health status of the RPLIDAR + /// The host system can use this operation to check whether RPLIDAR is in the self-protection mode. + /// + /// \param health The health status info returned from the RPLIDAR + /// + /// \param timeout The operation timeout value (in millisecond) for the serial port communication + virtual u_result getHealth(rplidar_response_device_health_t & health, _u32 timeout = DEFAULT_TIMEOUT) = 0; + + /// Get the device information of the RPLIDAR include the serial number, firmware version, device model etc. + /// + /// \param info The device information returned from the RPLIDAR + /// \param timeout The operation timeout value (in millisecond) for the serial port communication + virtual u_result getDeviceInfo(rplidar_response_device_info_t & info, _u32 timeout = DEFAULT_TIMEOUT) = 0; + + /// Get the sample duration information of the RPLIDAR. + /// DEPRECATED, please use RplidarScanMode::us_per_sample + /// + /// \param rateInfo The sample duration information returned from the RPLIDAR + /// \param timeout The operation timeout value (in millisecond) for the serial port communication + DEPRECATED(virtual u_result getSampleDuration_uS(rplidar_response_sample_rate_t & rateInfo, _u32 timeout = DEFAULT_TIMEOUT)) = 0; + + /// Set the RPLIDAR's motor pwm when using accessory board, currently valid for A2 only. + /// + /// \param pwm The motor pwm value would like to set + virtual u_result setMotorPWM(_u16 pwm) = 0; + + /// Start RPLIDAR's motor when using accessory board + virtual u_result startMotor() = 0; + + /// Stop RPLIDAR's motor when using accessory board + virtual u_result stopMotor() = 0; + + /// Check whether the device support motor control. + /// Note: this API will disable grab. + /// + /// \param support Return the result. + /// \param timeout The operation timeout value (in millisecond) for the serial port communication. + virtual u_result checkMotorCtrlSupport(bool & support, _u32 timeout = DEFAULT_TIMEOUT) = 0; + + /// Calculate RPLIDAR's current scanning frequency from the given scan data + /// DEPRECATED, please use getFrequency(RplidarScanMode, size_t) + /// + /// Please refer to the application note doc for details + /// Remark: the calcuation will be incorrect if the specified scan data doesn't contains enough data + /// + /// \param inExpressMode Indicate whether the RPLIDAR is in express mode + /// \param count The number of sample nodes inside the given buffer + /// \param frequency The scanning frequency (in HZ) calcuated by the interface. + /// \param is4kmode Return whether the RPLIDAR is working on 4k sample rate mode. + DEPRECATED(virtual u_result getFrequency(bool inExpressMode, size_t count, float & frequency, bool & is4kmode)) = 0; + + /// Calculate RPLIDAR's current scanning frequency from the given scan data + /// Please refer to the application note doc for details + /// Remark: the calcuation will be incorrect if the specified scan data doesn't contains enough data + /// + /// \param scanMode Lidar's current scan mode + /// \param count The number of sample nodes inside the given buffer + virtual u_result getFrequency(const RplidarScanMode& scanMode, size_t count, float & frequency) = 0; + + /// Ask the RPLIDAR core system to enter the scan mode(Normal/Express, Express mode is 4k mode) + /// A background thread will be created by the RPLIDAR driver to fetch the scan data continuously. + /// User Application can use the grabScanData() interface to retrieved the scan data cached previous by this background thread. + /// + /// \param force Force the core system to output scan data regardless whether the scanning motor is rotating or not. + /// \param timeout The operation timeout value (in millisecond) for the serial port communication. + virtual u_result startScanNormal(bool force, _u32 timeout = DEFAULT_TIMEOUT) = 0; + + /// Check whether the device support express mode. + /// DEPRECATED, please use getAllSupportedScanModes + /// + /// \param support Return the result. + /// \param timeout The operation timeout value (in millisecond) for the serial port communication. + DEPRECATED(virtual u_result checkExpressScanSupported(bool & support, _u32 timeout = DEFAULT_TIMEOUT)) = 0; + + /// Ask the RPLIDAR core system to stop the current scan operation and enter idle state. The background thread will be terminated + /// + /// \param timeout The operation timeout value (in millisecond) for the serial port communication + virtual u_result stop(_u32 timeout = DEFAULT_TIMEOUT) = 0; + + + /// Wait and grab a complete 0-360 degree scan data previously received. + /// NOTE: This method only support distance less than 16.38 meters, for longer distance, please use grabScanDataHq + /// The grabbed scan data returned by this interface always has the following charactistics: + /// + /// 1) The first node of the grabbed data array (nodebuffer[0]) must be the first sample of a scan, i.e. the start_bit == 1 + /// 2) All data nodes are belong to exactly ONE complete 360-degrees's scan + /// 3) Note, the angle data in one scan may not be ascending. You can use API ascendScanData to reorder the nodebuffer. + /// + /// \param nodebuffer Buffer provided by the caller application to store the scan data + /// + /// \param count The caller must initialize this parameter to set the max data count of the provided buffer (in unit of rplidar_response_measurement_node_t). + /// Once the interface returns, this parameter will store the actual received data count. + /// + /// \param timeout Max duration allowed to wait for a complete scan data, nothing will be stored to the nodebuffer if a complete 360-degrees' scan data cannot to be ready timely. + /// + /// The interface will return RESULT_OPERATION_TIMEOUT to indicate that no complete 360-degrees' scan can be retrieved withing the given timeout duration. + /// + /// \The caller application can set the timeout value to Zero(0) to make this interface always returns immediately to achieve non-block operation. + DEPRECATED(virtual u_result grabScanData(rplidar_response_measurement_node_t * nodebuffer, size_t & count, _u32 timeout = DEFAULT_TIMEOUT)) = 0; + + /// Wait and grab a complete 0-360 degree scan data previously received. + /// The grabbed scan data returned by this interface always has the following charactistics: + /// + /// 1) The first node of the grabbed data array (nodebuffer[0]) must be the first sample of a scan, i.e. the start_bit == 1 + /// 2) All data nodes are belong to exactly ONE complete 360-degrees's scan + /// 3) Note, the angle data in one scan may not be ascending. You can use API ascendScanData to reorder the nodebuffer. + /// + /// \param nodebuffer Buffer provided by the caller application to store the scan data + /// + /// \param count The caller must initialize this parameter to set the max data count of the provided buffer (in unit of rplidar_response_measurement_node_t). + /// Once the interface returns, this parameter will store the actual received data count. + /// + /// \param timeout Max duration allowed to wait for a complete scan data, nothing will be stored to the nodebuffer if a complete 360-degrees' scan data cannot to be ready timely. + /// + /// The interface will return RESULT_OPERATION_TIMEOUT to indicate that no complete 360-degrees' scan can be retrieved withing the given timeout duration. + /// + /// \The caller application can set the timeout value to Zero(0) to make this interface always returns immediately to achieve non-block operation. + virtual u_result grabScanDataHq(rplidar_response_measurement_node_hq_t * nodebuffer, size_t & count, _u32 timeout = DEFAULT_TIMEOUT) = 0; + + /// Ascending the scan data according to the angle value in the scan. + /// + /// \param nodebuffer Buffer provided by the caller application to do the reorder. Should be retrived from the grabScanData + /// + /// \param count The caller must initialize this parameter to set the max data count of the provided buffer (in unit of rplidar_response_measurement_node_t). + /// Once the interface returns, this parameter will store the actual received data count. + /// The interface will return RESULT_OPERATION_FAIL when all the scan data is invalid. + DEPRECATED(virtual u_result ascendScanData(rplidar_response_measurement_node_t * nodebuffer, size_t count)) = 0; + + /// Ascending the scan data according to the angle value in the scan. + /// + /// \param nodebuffer Buffer provided by the caller application to do the reorder. Should be retrived from the grabScanData + /// + /// \param count The caller must initialize this parameter to set the max data count of the provided buffer (in unit of rplidar_response_measurement_node_t). + /// Once the interface returns, this parameter will store the actual received data count. + /// The interface will return RESULT_OPERATION_FAIL when all the scan data is invalid. + virtual u_result ascendScanData(rplidar_response_measurement_node_hq_t * nodebuffer, size_t count) = 0; + + /// Return received scan points even if it's not complete scan + /// + /// \param nodebuffer Buffer provided by the caller application to store the scan data + /// + /// \param count Once the interface returns, this parameter will store the actual received data count. + /// + /// The interface will return RESULT_OPERATION_TIMEOUT to indicate that not even a single node can be retrieved since last call. + DEPRECATED(virtual u_result getScanDataWithInterval(rplidar_response_measurement_node_t * nodebuffer, size_t & count)) = 0; + + /// Return received scan points even if it's not complete scan + /// + /// \param nodebuffer Buffer provided by the caller application to store the scan data + /// + /// \param count Once the interface returns, this parameter will store the actual received data count. + /// + /// The interface will return RESULT_OPERATION_TIMEOUT to indicate that not even a single node can be retrieved since last call. + virtual u_result getScanDataWithIntervalHq(rplidar_response_measurement_node_hq_t * nodebuffer, size_t & count) = 0; + + virtual ~RPlidarDriver() {} +protected: + RPlidarDriver(){} + +public: + ChannelDevice* _chanDev; +}; + + + + +}}} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/include/rplidar_protocol.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/include/rplidar_protocol.h new file mode 100644 index 0000000..2f8231b --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/include/rplidar_protocol.h @@ -0,0 +1,72 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#pragma once + +// RP-Lidar Input Packets + +#define RPLIDAR_CMD_SYNC_BYTE 0xA5 +#define RPLIDAR_CMDFLAG_HAS_PAYLOAD 0x80 + + +#define RPLIDAR_ANS_SYNC_BYTE1 0xA5 +#define RPLIDAR_ANS_SYNC_BYTE2 0x5A + +#define RPLIDAR_ANS_PKTFLAG_LOOP 0x1 + +#define RPLIDAR_ANS_HEADER_SIZE_MASK 0x3FFFFFFF +#define RPLIDAR_ANS_HEADER_SUBTYPE_SHIFT (30) + +#if defined(_WIN32) +#pragma pack(1) +#endif + +typedef struct _rplidar_cmd_packet_t { + _u8 syncByte; //must be RPLIDAR_CMD_SYNC_BYTE + _u8 cmd_flag; + _u8 size; + _u8 data[0]; +} __attribute__((packed)) rplidar_cmd_packet_t; + + +typedef struct _rplidar_ans_header_t { + _u8 syncByte1; // must be RPLIDAR_ANS_SYNC_BYTE1 + _u8 syncByte2; // must be RPLIDAR_ANS_SYNC_BYTE2 + _u32 size_q30_subtype; // see _u32 size:30; _u32 subType:2; + _u8 type; +} __attribute__((packed)) rplidar_ans_header_t; + +#if defined(_WIN32) +#pragma pack() +#endif diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/include/rptypes.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/include/rptypes.h new file mode 100644 index 0000000..34d8ecb --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/include/rptypes.h @@ -0,0 +1,116 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#pragma once + + +#ifdef _WIN32 + +//fake stdint.h for VC only + +typedef signed char int8_t; +typedef unsigned char uint8_t; + +typedef __int16 int16_t; +typedef unsigned __int16 uint16_t; + +typedef __int32 int32_t; +typedef unsigned __int32 uint32_t; + +typedef __int64 int64_t; +typedef unsigned __int64 uint64_t; + +#else + +#include + +#endif + + +//based on stdint.h +typedef int8_t _s8; +typedef uint8_t _u8; + +typedef int16_t _s16; +typedef uint16_t _u16; + +typedef int32_t _s32; +typedef uint32_t _u32; + +typedef int64_t _s64; +typedef uint64_t _u64; + +#define __small_endian + +#ifndef __GNUC__ +#define __attribute__(x) +#endif + + +// The _word_size_t uses actual data bus width of the current CPU +#ifdef _AVR_ +typedef _u8 _word_size_t; +#define THREAD_PROC +#elif defined (WIN64) +typedef _u64 _word_size_t; +#define THREAD_PROC __stdcall +#elif defined (WIN32) +typedef _u32 _word_size_t; +#define THREAD_PROC __stdcall +#elif defined (__GNUC__) +typedef unsigned long _word_size_t; +#define THREAD_PROC +#elif defined (__ICCARM__) +typedef _u32 _word_size_t; +#define THREAD_PROC +#endif + + +typedef uint32_t u_result; + +#define RESULT_OK 0 +#define RESULT_FAIL_BIT 0x80000000 +#define RESULT_ALREADY_DONE 0x20 +#define RESULT_INVALID_DATA (0x8000 | RESULT_FAIL_BIT) +#define RESULT_OPERATION_FAIL (0x8001 | RESULT_FAIL_BIT) +#define RESULT_OPERATION_TIMEOUT (0x8002 | RESULT_FAIL_BIT) +#define RESULT_OPERATION_STOP (0x8003 | RESULT_FAIL_BIT) +#define RESULT_OPERATION_NOT_SUPPORT (0x8004 | RESULT_FAIL_BIT) +#define RESULT_FORMAT_NOT_SUPPORT (0x8005 | RESULT_FAIL_BIT) +#define RESULT_INSUFFICIENT_MEMORY (0x8006 | RESULT_FAIL_BIT) + +#define IS_OK(x) ( ((x) & RESULT_FAIL_BIT) == 0 ) +#define IS_FAIL(x) ( ((x) & RESULT_FAIL_BIT) ) + +typedef _word_size_t (THREAD_PROC * thread_proc_t ) ( void * ); diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/linux/arch_linux.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/linux/arch_linux.h new file mode 100644 index 0000000..ce31343 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/linux/arch_linux.h @@ -0,0 +1,64 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2018 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#pragma once + +// libc dep +#include +#include +#include +#include +#include +#include +#include +#include + +// libc++ dep +#include +#include + +// linux specific +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "timer.h" + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/linux/net_serial.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/linux/net_serial.cpp new file mode 100644 index 0000000..eb1ca71 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/linux/net_serial.cpp @@ -0,0 +1,476 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2018 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#include "arch/linux/arch_linux.h" +#include +#include +#include +#include +#include +// linux specific + +#include +#include + +#include +#include "hal/types.h" +#include "arch/linux/net_serial.h" +#include + +#include +//__GNUC__ +#if defined(__GNUC__) +// for Linux extension +#include +#include +#include +extern "C" int tcflush(int fildes, int queue_selector); +#else +// for other standard UNIX +#include +#include + +#endif + + +namespace rp{ namespace arch{ namespace net{ + +raw_serial::raw_serial() + : rp::hal::serial_rxtx() + , _baudrate(0) + , _flags(0) + , serial_fd(-1) +{ + _init(); +} + +raw_serial::~raw_serial() +{ + close(); + +} + +bool raw_serial::open() +{ + return open(_portName, _baudrate, _flags); +} + +bool raw_serial::bind(const char * portname, uint32_t baudrate, uint32_t flags) +{ + strncpy(_portName, portname, sizeof(_portName)); + _baudrate = baudrate; + _flags = flags; + return true; +} + +bool raw_serial::open(const char * portname, uint32_t baudrate, uint32_t flags) +{ + if (isOpened()) close(); + + serial_fd = ::open(portname, O_RDWR | O_NOCTTY | O_NDELAY); + + if (serial_fd == -1) return false; + + + +#if !defined(__GNUC__) + // for standard UNIX + struct termios options, oldopt; + tcgetattr(serial_fd, &oldopt); + bzero(&options,sizeof(struct termios)); + + // enable rx and tx + options.c_cflag |= (CLOCAL | CREAD); + + _u32 termbaud = getTermBaudBitmap(baudrate); + + if (termbaud == (_u32)-1) { + close(); + return false; + } + cfsetispeed(&options, termbaud); + cfsetospeed(&options, termbaud); + + options.c_cflag &= ~PARENB; //no checkbit + options.c_cflag &= ~CSTOPB; //1bit stop bit + options.c_cflag &= ~CRTSCTS; //no flow control + + options.c_cflag &= ~CSIZE; + options.c_cflag |= CS8; /* Select 8 data bits */ + +#ifdef CNEW_RTSCTS + options.c_cflag &= ~CNEW_RTSCTS; // no hw flow control +#endif + + options.c_iflag &= ~(IXON | IXOFF | IXANY); // no sw flow control + + // raw input mode + options.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG); + // raw output mode + options.c_oflag &= ~OPOST; + + + + if (tcsetattr(serial_fd, TCSANOW, &options)) + { + close(); + return false; + } + +#else + + // using Linux extension ... + struct termios2 tio; + + ioctl(serial_fd, TCGETS2, &tio); + bzero(&tio, sizeof(struct termios2)); + + tio.c_cflag = BOTHER; + tio.c_cflag |= (CLOCAL | CREAD | CS8); //8 bit no hardware handshake + + tio.c_cflag &= ~CSTOPB; //1 stop bit + tio.c_cflag &= ~CRTSCTS; //No CTS + tio.c_cflag &= ~PARENB; //No Parity + +#ifdef CNEW_RTSCTS + tio.c_cflag &= ~CNEW_RTSCTS; // no hw flow control +#endif + + tio.c_iflag &= ~(IXON | IXOFF | IXANY); // no sw flow control + + + tio.c_cc[VMIN] = 0; //min chars to read + tio.c_cc[VTIME] = 0; //time in 1/10th sec wait + + tio.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG); + // raw output mode + tio.c_oflag &= ~OPOST; + + tio.c_ispeed = baudrate; + tio.c_ospeed = baudrate; + + + ioctl(serial_fd, TCSETS2, &tio); + +#endif + + + tcflush(serial_fd, TCIFLUSH); + + if (fcntl(serial_fd, F_SETFL, FNDELAY)) + { + close(); + return false; + } + + + _is_serial_opened = true; + _operation_aborted = false; + + //Clear the DTR bit to let the motor spin + clearDTR(); + do { + // create self pipeline for wait cancellation + if (pipe(_selfpipe) == -1) break; + + int flags = fcntl(_selfpipe[0], F_GETFL); + if (flags == -1) + break; + + flags |= O_NONBLOCK; /* Make read end nonblocking */ + if (fcntl(_selfpipe[0], F_SETFL, flags) == -1) + break; + + flags = fcntl(_selfpipe[1], F_GETFL); + if (flags == -1) + break; + + flags |= O_NONBLOCK; /* Make write end nonblocking */ + if (fcntl(_selfpipe[1], F_SETFL, flags) == -1) + break; + + } while (0); + + return true; +} + +void raw_serial::close() +{ + if (serial_fd != -1) + ::close(serial_fd); + serial_fd = -1; + + if (_selfpipe[0] != -1) + ::close(_selfpipe[0]); + + if (_selfpipe[1] != -1) + ::close(_selfpipe[1]); + + _selfpipe[0] = _selfpipe[1] = -1; + + _operation_aborted = false; + _is_serial_opened = false; +} + +int raw_serial::senddata(const unsigned char * data, size_t size) +{ +// FIXME: non-block io should be used + if (!isOpened()) return 0; + + if (data == NULL || size ==0) return 0; + + size_t tx_len = 0; + required_tx_cnt = 0; + do { + int ans = ::write(serial_fd, data + tx_len, size-tx_len); + + if (ans == -1) return tx_len; + + tx_len += ans; + required_tx_cnt = tx_len; + }while (tx_len(serial_fd, _selfpipe[0]) + 1; + + /* Initialize the timeout structure */ + timeout_val.tv_sec = timeout / 1000; + timeout_val.tv_usec = (timeout % 1000) * 1000; + + if ( isOpened() ) + { + if ( ioctl(serial_fd, FIONREAD, returned_size) == -1) return ANS_DEV_ERR; + if (*returned_size >= data_count) + { + return 0; + } + } + + while ( isOpened() ) + { + /* Do the select */ + int n = ::select(max_fd, &input_set, NULL, NULL, &timeout_val); + + if (n < 0) + { + // select error + *returned_size = 0; + return ANS_DEV_ERR; + } + else if (n == 0) + { + // time out + *returned_size =0; + return ANS_TIMEOUT; + } + else + { + if (FD_ISSET(_selfpipe[0], &input_set)) { + // require aborting the current operation + int ch; + for (;;) { + if (::read(_selfpipe[0], &ch, 1) == -1) { + break; + } + + } + + // treat as timeout + *returned_size = 0; + return ANS_TIMEOUT; + } + + // data avaliable + assert (FD_ISSET(serial_fd, &input_set)); + + + if ( ioctl(serial_fd, FIONREAD, returned_size) == -1) return ANS_DEV_ERR; + if (*returned_size >= data_count) + { + return 0; + } + else + { + int remain_timeout = timeout_val.tv_sec*1000000 + timeout_val.tv_usec; + int expect_remain_time = (data_count - *returned_size)*1000000*8/_baudrate; + if (remain_timeout > expect_remain_time) + usleep(expect_remain_time); + } + } + + } + + return ANS_DEV_ERR; +} + +size_t raw_serial::rxqueue_count() +{ + if ( !isOpened() ) return 0; + size_t remaining; + + if (::ioctl(serial_fd, FIONREAD, &remaining) == -1) return 0; + return remaining; +} + +void raw_serial::setDTR() +{ + if ( !isOpened() ) return; + + uint32_t dtr_bit = TIOCM_DTR; + ioctl(serial_fd, TIOCMBIS, &dtr_bit); +} + +void raw_serial::clearDTR() +{ + if ( !isOpened() ) return; + + uint32_t dtr_bit = TIOCM_DTR; + ioctl(serial_fd, TIOCMBIC, &dtr_bit); +} + +void raw_serial::_init() +{ + serial_fd = -1; + _portName[0] = 0; + required_tx_cnt = required_rx_cnt = 0; + _operation_aborted = false; + _selfpipe[0] = _selfpipe[1] = -1; +} + +void raw_serial::cancelOperation() +{ + _operation_aborted = true; + if (_selfpipe[1] == -1) return; + + ::write(_selfpipe[1], "x", 1); +} + +_u32 raw_serial::getTermBaudBitmap(_u32 baud) +{ +#define BAUD_CONV( _baud_) case _baud_: return B##_baud_ +switch (baud) { + BAUD_CONV(1200); + BAUD_CONV(1800); + BAUD_CONV(2400); + BAUD_CONV(4800); + BAUD_CONV(9600); + BAUD_CONV(19200); + BAUD_CONV(38400); + BAUD_CONV(57600); + BAUD_CONV(115200); + BAUD_CONV(230400); + BAUD_CONV(460800); + BAUD_CONV(500000); + BAUD_CONV(576000); + BAUD_CONV(921600); + BAUD_CONV(1000000); + BAUD_CONV(1152000); + BAUD_CONV(1500000); + BAUD_CONV(2000000); + BAUD_CONV(2500000); + BAUD_CONV(3000000); + BAUD_CONV(3500000); + BAUD_CONV(4000000); + } + return -1; +} + +}}} //end rp::arch::net + +//begin rp::hal +namespace rp{ namespace hal{ + +serial_rxtx * serial_rxtx::CreateRxTx() +{ + return new rp::arch::net::raw_serial(); +} + +void serial_rxtx::ReleaseRxTx(serial_rxtx *rxtx) +{ + delete rxtx; +} + +}} //end rp::hal diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/linux/net_serial.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/linux/net_serial.h new file mode 100644 index 0000000..627369a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/linux/net_serial.h @@ -0,0 +1,90 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2018 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#pragma once + +#include "hal/abs_rxtx.h" + +namespace rp{ namespace arch{ namespace net{ + +class raw_serial : public rp::hal::serial_rxtx +{ +public: + enum{ + SERIAL_RX_BUFFER_SIZE = 512, + SERIAL_TX_BUFFER_SIZE = 128, + }; + + raw_serial(); + virtual ~raw_serial(); + virtual bool bind(const char * portname, uint32_t baudrate, uint32_t flags = 0); + virtual bool open(); + virtual void close(); + virtual void flush( _u32 flags); + + virtual int waitfordata(size_t data_count,_u32 timeout = -1, size_t * returned_size = NULL); + + virtual int senddata(const unsigned char * data, size_t size); + virtual int recvdata(unsigned char * data, size_t size); + + virtual int waitforsent(_u32 timeout = -1, size_t * returned_size = NULL); + virtual int waitforrecv(_u32 timeout = -1, size_t * returned_size = NULL); + + virtual size_t rxqueue_count(); + + virtual void setDTR(); + virtual void clearDTR(); + + _u32 getTermBaudBitmap(_u32 baud); + + virtual void cancelOperation(); + +protected: + bool open(const char * portname, uint32_t baudrate, uint32_t flags = 0); + void _init(); + + char _portName[200]; + uint32_t _baudrate; + uint32_t _flags; + + int serial_fd; + + size_t required_tx_cnt; + size_t required_rx_cnt; + + int _selfpipe[2]; + bool _operation_aborted; +}; + +}}} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/linux/net_socket.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/linux/net_socket.cpp new file mode 100644 index 0000000..0124a13 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/linux/net_socket.cpp @@ -0,0 +1,856 @@ +/* + * RoboPeak Project + * HAL Layer - Socket Interface + * Copyright 2009 - 2013 RoboPeak Project + * + * POXIS Implementation + */ + + +#include "sdkcommon.h" +#include "../../hal/socket.h" + +#include +#include +#include +#include +#include + +namespace rp{ namespace net { + + +static inline int _halAddrTypeToOSType(SocketAddress::address_type_t type) +{ + switch (type) { + case SocketAddress::ADDRESS_TYPE_INET: + return AF_INET; + case SocketAddress::ADDRESS_TYPE_INET6: + return AF_INET6; + case SocketAddress::ADDRESS_TYPE_UNSPEC: + return AF_UNSPEC; + + default: + assert(!"should not reach here"); + return AF_UNSPEC; + } +} + + +SocketAddress::SocketAddress() +{ + _platform_data = reinterpret_cast(new sockaddr_storage); + memset(_platform_data, 0, sizeof(sockaddr_storage)); + + reinterpret_cast(_platform_data)->ss_family = AF_INET; +} + +SocketAddress::SocketAddress(const SocketAddress & src) +{ + _platform_data = reinterpret_cast(new sockaddr_storage); + memcpy(_platform_data, src._platform_data, sizeof(sockaddr_storage)); +} + + + +SocketAddress::SocketAddress(const char * addrString, int port, SocketAddress::address_type_t type) +{ + _platform_data = reinterpret_cast(new sockaddr_storage); + memset(_platform_data, 0, sizeof(sockaddr_storage)); + + // default to ipv4 in case the following operation fails + reinterpret_cast(_platform_data)->ss_family = AF_INET; + + setAddressFromString(addrString, type); + setPort(port); +} + +SocketAddress::SocketAddress(void * platform_data) + : _platform_data(platform_data) +{} + +SocketAddress & SocketAddress::operator = (const SocketAddress &src) +{ + memcpy(_platform_data, src._platform_data, sizeof(sockaddr_storage)); + return *this; +} + + +SocketAddress::~SocketAddress() +{ + delete reinterpret_cast(_platform_data); +} + +SocketAddress::address_type_t SocketAddress::getAddressType() const +{ + switch(reinterpret_cast(_platform_data)->ss_family) { + case AF_INET: + return ADDRESS_TYPE_INET; + case AF_INET6: + return ADDRESS_TYPE_INET6; + default: + assert(!"should not reach here"); + return ADDRESS_TYPE_INET; + } +} + +int SocketAddress::getPort() const +{ + switch (getAddressType()) { + case ADDRESS_TYPE_INET: + return (int)ntohs(reinterpret_cast(_platform_data)->sin_port); + case ADDRESS_TYPE_INET6: + return (int)ntohs(reinterpret_cast(_platform_data)->sin6_port); + default: + return 0; + } +} + +u_result SocketAddress::setPort(int port) +{ + switch (getAddressType()) { + case ADDRESS_TYPE_INET: + reinterpret_cast(_platform_data)->sin_port = htons((short)port); + break; + case ADDRESS_TYPE_INET6: + reinterpret_cast(_platform_data)->sin6_port = htons((short)port); + break; + default: + return RESULT_OPERATION_FAIL; + } + return RESULT_OK; +} + +u_result SocketAddress::setAddressFromString(const char * address_string, SocketAddress::address_type_t type) +{ + int ans = 0; + int prevPort = getPort(); + switch (type) { + case ADDRESS_TYPE_INET: + reinterpret_cast(_platform_data)->ss_family = AF_INET; + ans = inet_pton(AF_INET, + address_string, + &reinterpret_cast(_platform_data)->sin_addr); + break; + + + case ADDRESS_TYPE_INET6: + + reinterpret_cast(_platform_data)->ss_family = AF_INET6; + ans = inet_pton(AF_INET6, + address_string, + &reinterpret_cast(_platform_data)->sin6_addr); + break; + + default: + return RESULT_INVALID_DATA; + + } + setPort(prevPort); + + return ans<=0?RESULT_INVALID_DATA:RESULT_OK; +} + + +u_result SocketAddress::getAddressAsString(char * buffer, size_t buffersize) const +{ + int net_family = reinterpret_cast(_platform_data)->ss_family; + const char *ans = NULL; + switch (net_family) { + case AF_INET: + ans = inet_ntop(net_family, &reinterpret_cast(_platform_data)->sin_addr, + buffer, buffersize); + break; + + case AF_INET6: + ans = inet_ntop(net_family, &reinterpret_cast(_platform_data)->sin6_addr, + buffer, buffersize); + + break; + } + return ans<=0?RESULT_OPERATION_FAIL:RESULT_OK; +} + + + +size_t SocketAddress::LoopUpHostName(const char * hostname, const char * sevicename, std::vector &addresspool , bool performDNS, SocketAddress::address_type_t type) +{ + struct addrinfo hints; + struct addrinfo *result; + int ans; + + memset(&hints, 0, sizeof(struct addrinfo)); + hints.ai_family = _halAddrTypeToOSType(type); + hints.ai_flags = AI_PASSIVE; + + if (!performDNS) { + hints.ai_family |= AI_NUMERICSERV | AI_NUMERICHOST; + + } + + ans = getaddrinfo(hostname, sevicename, &hints, &result); + + addresspool.clear(); + + if (ans != 0) { + // hostname loopup failed + return 0; + } + + + for (struct addrinfo * cursor = result; cursor != NULL; cursor = cursor->ai_next) { + if (cursor->ai_family == ADDRESS_TYPE_INET || cursor->ai_family == ADDRESS_TYPE_INET6) { + sockaddr_storage * storagebuffer = new sockaddr_storage; + assert(sizeof(sockaddr_storage) >= cursor->ai_addrlen); + memcpy(storagebuffer, cursor->ai_addr, cursor->ai_addrlen); + addresspool.push_back(SocketAddress(storagebuffer)); + } + } + + + freeaddrinfo(result); + + return addresspool.size(); +} + + +u_result SocketAddress::getRawAddress(_u8 * buffer, size_t bufferSize) const +{ + switch (getAddressType()) { + case ADDRESS_TYPE_INET: + if (bufferSize < sizeof(in_addr::s_addr)) return RESULT_INSUFFICIENT_MEMORY; + + memcpy(buffer, &reinterpret_cast(_platform_data)->sin_addr.s_addr, sizeof(reinterpret_cast(_platform_data)->sin_addr.s_addr)); + + + break; + case ADDRESS_TYPE_INET6: + if (bufferSize < sizeof(in6_addr::s6_addr)) return RESULT_INSUFFICIENT_MEMORY; + memcpy(buffer, reinterpret_cast(_platform_data)->sin6_addr.s6_addr, sizeof(reinterpret_cast(_platform_data)->sin6_addr.s6_addr)); + + break; + default: + return RESULT_OPERATION_FAIL; + } + return RESULT_OK; +} + + +void SocketAddress::setLoopbackAddress(SocketAddress::address_type_t type) +{ + + int prevPort = getPort(); + switch (type) { + case ADDRESS_TYPE_INET: + { + sockaddr_in * addrv4 = reinterpret_cast(_platform_data); + addrv4->sin_family = AF_INET; + addrv4->sin_addr.s_addr = htonl(INADDR_LOOPBACK); + } + break; + case ADDRESS_TYPE_INET6: + { + sockaddr_in6 * addrv6 = reinterpret_cast(_platform_data); + addrv6->sin6_family = AF_INET6; + addrv6->sin6_addr = in6addr_loopback; + + } + break; + default: + return; + } + + setPort(prevPort); +} + +void SocketAddress::setBroadcastAddressIPv4() +{ + + int prevPort = getPort(); + sockaddr_in * addrv4 = reinterpret_cast(_platform_data); + addrv4->sin_family = AF_INET; + addrv4->sin_addr.s_addr = htonl(INADDR_BROADCAST); + setPort(prevPort); + +} + +void SocketAddress::setAnyAddress(SocketAddress::address_type_t type) +{ + int prevPort = getPort(); + switch (type) { + case ADDRESS_TYPE_INET: + { + sockaddr_in * addrv4 = reinterpret_cast(_platform_data); + addrv4->sin_family = AF_INET; + addrv4->sin_addr.s_addr = htonl(INADDR_ANY); + } + break; + case ADDRESS_TYPE_INET6: + { + sockaddr_in6 * addrv6 = reinterpret_cast(_platform_data); + addrv6->sin6_family = AF_INET6; + addrv6->sin6_addr = in6addr_any; + + } + break; + default: + return; + } + + setPort(prevPort); + + +} + + +}} + + + +///-------------------------------- + + +namespace rp { namespace arch { namespace net{ + +using namespace rp::net; + +class _single_thread StreamSocketImpl : public StreamSocket +{ +public: + + StreamSocketImpl(int fd) + : _socket_fd(fd) + { + assert(fd>=0); + int bool_true = 1; + ::setsockopt( _socket_fd, SOL_SOCKET, SO_REUSEADDR , (char *)&bool_true, sizeof(bool_true) ); + + enableNoDelay(true); + this->setTimeout(DEFAULT_SOCKET_TIMEOUT, SOCKET_DIR_BOTH); + } + + virtual ~StreamSocketImpl() + { + close(_socket_fd); + } + + virtual void dispose() + { + delete this; + } + + + virtual u_result bind(const SocketAddress & localaddr) + { + const struct sockaddr * addr = reinterpret_cast(localaddr.getPlatformData()); + assert(addr); + int ans = ::bind(_socket_fd, addr, sizeof(sockaddr_storage)); + if (ans) { + return RESULT_OPERATION_FAIL; + } else { + return RESULT_OK; + } + } + + virtual u_result getLocalAddress(SocketAddress & localaddr) + { + struct sockaddr * addr = reinterpret_cast( const_cast(localaddr.getPlatformData())); //donnot do this at home... + assert(addr); + + size_t actualsize = sizeof(sockaddr_storage); + int ans = ::getsockname(_socket_fd, addr, (socklen_t*)&actualsize); + + assert(actualsize <= sizeof(sockaddr_storage)); + assert(addr->sa_family == AF_INET || addr->sa_family == AF_INET6); + + return ans?RESULT_OPERATION_FAIL:RESULT_OK; + } + + virtual u_result setTimeout(_u32 timeout, socket_direction_mask msk) + { + int ans; + timeval tv; + tv.tv_sec = timeout / 1000; + tv.tv_usec = (timeout % 1000) * 1000; + + if (msk & SOCKET_DIR_RD) { + ans = ::setsockopt( _socket_fd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv) ); + if (ans) return RESULT_OPERATION_FAIL; + } + + if (msk & SOCKET_DIR_WR) { + ans = ::setsockopt( _socket_fd, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv) ); + if (ans) return RESULT_OPERATION_FAIL; + } + + return RESULT_OK; + } + + virtual u_result connect(const SocketAddress & pairAddress) + { + const struct sockaddr * addr = reinterpret_cast(pairAddress.getPlatformData()); + int ans = ::connect(_socket_fd, addr, sizeof(sockaddr_storage)); + if (!ans) return RESULT_OK; + + + switch (errno) { + case EAFNOSUPPORT: + return RESULT_OPERATION_NOT_SUPPORT; +#if 0 + case EINPROGRESS: + return RESULT_OK; //treat async connection as good status +#endif + case ETIMEDOUT: + return RESULT_OPERATION_TIMEOUT; + default: + return RESULT_OPERATION_FAIL; + } + } + + virtual u_result listen(int backlog) + { + int ans = ::listen( _socket_fd, backlog); + + return ans?RESULT_OPERATION_FAIL:RESULT_OK; + } + + virtual StreamSocket * accept(SocketAddress * pairAddress) + { + size_t addrsize; + addrsize = sizeof(sockaddr_storage); + int pair_socket = ::accept( _socket_fd, pairAddress?reinterpret_cast(const_cast(pairAddress->getPlatformData())):NULL + , (socklen_t*)&addrsize); + + if (pair_socket>=0) { + return new StreamSocketImpl(pair_socket); + } else { + return NULL; + } + } + + virtual u_result waitforIncomingConnection(_u32 timeout) + { + return waitforData(timeout); + } + + virtual u_result send(const void * buffer, size_t len) + { + size_t ans = ::send( _socket_fd, buffer, len, MSG_NOSIGNAL); + if (ans == (int)len) { + return RESULT_OK; + } else { + switch (errno) { + case EAGAIN: +#if EWOULDBLOCK!=EAGAIN + case EWOULDBLOCK: +#endif + return RESULT_OPERATION_TIMEOUT; + default: + return RESULT_OPERATION_FAIL; + } + } + + } + + + virtual u_result recv(void *buf, size_t len, size_t & recv_len) + { + size_t ans = ::recv( _socket_fd, buf, len, 0); + if (ans == (size_t)-1) { + recv_len = 0; + + switch (errno) { + case EAGAIN: +#if EWOULDBLOCK!=EAGAIN + case EWOULDBLOCK: +#endif + return RESULT_OPERATION_TIMEOUT; + default: + return RESULT_OPERATION_FAIL; + } + + + + } else { + recv_len = ans; + return RESULT_OK; + } + } + +#if 0 + virtual u_result recvNoWait(void *buf, size_t len, size_t & recv_len) + { + size_t ans = ::recv( _socket_fd, buf, len, MSG_DONTWAIT); + if (ans == (size_t)-1) { + recv_len = 0; + if (errno == EAGAIN || errno == EWOULDBLOCK) { + return RESULT_OK; + } else { + return RESULT_OPERATION_FAIL; + } + + + } else { + recv_len = ans; + return RESULT_OK; + } + + } +#endif + + virtual u_result getPeerAddress(SocketAddress & peerAddr) + { + struct sockaddr * addr = reinterpret_cast(const_cast(peerAddr.getPlatformData())); //donnot do this at home... + assert(addr); + size_t actualsize = sizeof(sockaddr_storage); + int ans = ::getpeername(_socket_fd, addr, (socklen_t*)&actualsize); + + assert(actualsize <= sizeof(sockaddr_storage)); + assert(addr->sa_family == AF_INET || addr->sa_family == AF_INET6); + + return ans?RESULT_OPERATION_FAIL:RESULT_OK; + + } + + virtual u_result shutdown(socket_direction_mask mask) + { + int shutdw_opt ; + + switch (mask) { + case SOCKET_DIR_RD: + shutdw_opt = SHUT_RD; + break; + case SOCKET_DIR_WR: + shutdw_opt = SHUT_WR; + break; + case SOCKET_DIR_BOTH: + default: + shutdw_opt = SHUT_RDWR; + } + + int ans = ::shutdown(_socket_fd, shutdw_opt); + return ans?RESULT_OPERATION_FAIL:RESULT_OK; + } + + virtual u_result enableKeepAlive(bool enable) + { + int bool_true = enable?1:0; + return ::setsockopt( _socket_fd, SOL_SOCKET, SO_KEEPALIVE , &bool_true, sizeof(bool_true) )?RESULT_OPERATION_FAIL:RESULT_OK; + } + + virtual u_result enableNoDelay(bool enable ) + { + int bool_true = enable?1:0; + return ::setsockopt( _socket_fd, IPPROTO_TCP, TCP_NODELAY,&bool_true, sizeof(bool_true) )?RESULT_OPERATION_FAIL:RESULT_OK; + } + + virtual u_result waitforSent(_u32 timeout ) + { + fd_set wrset; + FD_ZERO(&wrset); + FD_SET(_socket_fd, &wrset); + + timeval tv; + tv.tv_sec = timeout / 1000; + tv.tv_usec = (timeout % 1000) * 1000; + int ans = ::select(_socket_fd+1, NULL, &wrset, NULL, &tv); + + switch (ans) { + case 1: + // fired + return RESULT_OK; + case 0: + // timeout + return RESULT_OPERATION_TIMEOUT; + default: + delay(0); //relax cpu + return RESULT_OPERATION_FAIL; + } + } + + virtual u_result waitforData(_u32 timeout ) + { + fd_set rdset; + FD_ZERO(&rdset); + FD_SET(_socket_fd, &rdset); + + timeval tv; + tv.tv_sec = timeout / 1000; + tv.tv_usec = (timeout % 1000) * 1000; + int ans = ::select(_socket_fd+1, &rdset, NULL, NULL, &tv); + + switch (ans) { + case 1: + // fired + return RESULT_OK; + case 0: + // timeout + return RESULT_OPERATION_TIMEOUT; + default: + delay(0); //relax cpu + return RESULT_OPERATION_FAIL; + } + } + +protected: + int _socket_fd; + + +}; + + +class _single_thread DGramSocketImpl : public DGramSocket +{ +public: + + DGramSocketImpl(int fd) + : _socket_fd(fd) + { + assert(fd>=0); + int bool_true = 1; + ::setsockopt( _socket_fd, SOL_SOCKET, SO_REUSEADDR | SO_BROADCAST , (char *)&bool_true, sizeof(bool_true) ); + setTimeout(DEFAULT_SOCKET_TIMEOUT, SOCKET_DIR_BOTH); + } + + virtual ~DGramSocketImpl() + { + close(_socket_fd); + } + + virtual void dispose() + { + delete this; + } + + + virtual u_result bind(const SocketAddress & localaddr) + { + const struct sockaddr * addr = reinterpret_cast(localaddr.getPlatformData()); + assert(addr); + int ans = ::bind(_socket_fd, addr, sizeof(sockaddr_storage)); + if (ans) { + return RESULT_OPERATION_FAIL; + } else { + return RESULT_OK; + } + } + + virtual u_result getLocalAddress(SocketAddress & localaddr) + { + struct sockaddr * addr = reinterpret_cast(const_cast((localaddr.getPlatformData()))); //donnot do this at home... + assert(addr); + + size_t actualsize = sizeof(sockaddr_storage); + int ans = ::getsockname(_socket_fd, addr, (socklen_t*)&actualsize); + + assert(actualsize <= sizeof(sockaddr_storage)); + assert(addr->sa_family == AF_INET || addr->sa_family == AF_INET6); + + return ans?RESULT_OPERATION_FAIL:RESULT_OK; + } + + virtual u_result setTimeout(_u32 timeout, socket_direction_mask msk) + { + int ans; + timeval tv; + tv.tv_sec = timeout / 1000; + tv.tv_usec = (timeout % 1000) * 1000; + + if (msk & SOCKET_DIR_RD) { + ans = ::setsockopt( _socket_fd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv) ); + if (ans) return RESULT_OPERATION_FAIL; + } + + if (msk & SOCKET_DIR_WR) { + ans = ::setsockopt( _socket_fd, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv) ); + if (ans) return RESULT_OPERATION_FAIL; + } + + return RESULT_OK; + } + + + virtual u_result waitforSent(_u32 timeout ) + { + fd_set wrset; + FD_ZERO(&wrset); + FD_SET(_socket_fd, &wrset); + + timeval tv; + tv.tv_sec = timeout / 1000; + tv.tv_usec = (timeout % 1000) * 1000; + int ans = ::select(_socket_fd+1, NULL, &wrset, NULL, &tv); + + switch (ans) { + case 1: + // fired + return RESULT_OK; + case 0: + // timeout + return RESULT_OPERATION_TIMEOUT; + default: + delay(0); //relax cpu + return RESULT_OPERATION_FAIL; + } + } + + virtual u_result waitforData(_u32 timeout ) + { + fd_set rdset; + FD_ZERO(&rdset); + FD_SET(_socket_fd, &rdset); + + timeval tv; + tv.tv_sec = timeout / 1000; + tv.tv_usec = (timeout % 1000) * 1000; + int ans = ::select(_socket_fd+1, &rdset, NULL, NULL, &tv); + + switch (ans) { + case 1: + // fired + return RESULT_OK; + case 0: + // timeout + return RESULT_OPERATION_TIMEOUT; + default: + delay(0); //relax cpu + return RESULT_OPERATION_FAIL; + } + } + + virtual u_result sendTo(const SocketAddress & target, const void * buffer, size_t len) + { + const struct sockaddr * addr = reinterpret_cast(target.getPlatformData()); + assert(addr); + size_t ans = ::sendto( _socket_fd, buffer, len, 0, addr, sizeof(sockaddr_storage)); + if (ans != (size_t)-1) { + assert(ans == (int)len); + return RESULT_OK; + } else { + switch (errno) { + case EAGAIN: +#if EWOULDBLOCK!=EAGAIN + case EWOULDBLOCK: +#endif + return RESULT_OPERATION_TIMEOUT; + + case EMSGSIZE: + return RESULT_INVALID_DATA; + default: + return RESULT_OPERATION_FAIL; + } + + } + + } + + + virtual u_result recvFrom(void *buf, size_t len, size_t & recv_len, SocketAddress * sourceAddr) + { + struct sockaddr * addr = (sourceAddr?reinterpret_cast(const_cast(sourceAddr->getPlatformData())):NULL); + size_t source_addr_size = (sourceAddr?sizeof(sockaddr_storage):0); + + size_t ans = ::recvfrom( _socket_fd, buf, len, 0, addr, (socklen_t*)&source_addr_size); + if (ans == (size_t)-1) { + recv_len = 0; + switch (errno) { + case EAGAIN: +#if EWOULDBLOCK!=EAGAIN + case EWOULDBLOCK: +#endif + return RESULT_OPERATION_TIMEOUT; + default: + return RESULT_OPERATION_FAIL; + } + + } else { + recv_len = ans; + return RESULT_OK; + } + + } + +#if 0 + virtual u_result recvFromNoWait(void *buf, size_t len, size_t & recv_len, SocketAddress * sourceAddr) + { + struct sockaddr * addr = (sourceAddr?reinterpret_cast(const_cast(sourceAddr->getPlatformData())):NULL); + size_t source_addr_size = (sourceAddr?sizeof(sockaddr_storage):0); + + + size_t ans = ::recvfrom( _socket_fd, buf, len, MSG_DONTWAIT, addr, &source_addr_size); + + if (ans == (size_t)-1) { + recv_len = 0; + if (errno == EAGAIN || errno == EWOULDBLOCK) { + return RESULT_OK; + } else { + return RESULT_OPERATION_FAIL; + } + + + } else { + recv_len = ans; + return RESULT_OK; + } + + } +#endif + +protected: + int _socket_fd; + +}; + + +}}} + + +namespace rp { namespace net{ + + +static inline int _socketHalFamilyToOSFamily(SocketBase::socket_family_t family) +{ + switch (family) { + case SocketBase::SOCKET_FAMILY_INET: + return AF_INET; + case SocketBase::SOCKET_FAMILY_INET6: + return AF_INET6; + case SocketBase::SOCKET_FAMILY_RAW: + return AF_PACKET; + default: + assert(!"should not reach here"); + return AF_INET; // force treating as IPv4 in release mode + } + +} + +StreamSocket * StreamSocket::CreateSocket(SocketBase::socket_family_t family) +{ + if (family == SOCKET_FAMILY_RAW) return NULL; + + + int socket_family = _socketHalFamilyToOSFamily(family); + int socket_fd = ::socket(socket_family, SOCK_STREAM, 0); + if (socket_fd == -1) return NULL; + + StreamSocket * newborn = static_cast(new rp::arch::net::StreamSocketImpl(socket_fd)); + return newborn; + +} + + +DGramSocket * DGramSocket::CreateSocket(SocketBase::socket_family_t family) +{ + int socket_family = _socketHalFamilyToOSFamily(family); + + + int socket_fd = ::socket(socket_family, (family==SOCKET_FAMILY_RAW)?SOCK_RAW:SOCK_DGRAM, 0); + if (socket_fd == -1) return NULL; + + DGramSocket * newborn = static_cast(new rp::arch::net::DGramSocketImpl(socket_fd)); + return newborn; + +} + + +}} + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/linux/thread.hpp b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/linux/thread.hpp new file mode 100644 index 0000000..dc77ce7 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/linux/thread.hpp @@ -0,0 +1,137 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2018 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#include "arch/linux/arch_linux.h" + +#include + +namespace rp{ namespace hal{ + +Thread Thread::create(thread_proc_t proc, void * data) +{ + Thread newborn(proc, data); + + // tricky code, we assume pthread_t is not a structure but a word size value + assert( sizeof(newborn._handle) >= sizeof(pthread_t)); + + pthread_create((pthread_t *)&newborn._handle, NULL, (void * (*)(void *))proc, data); + + return newborn; +} + +u_result Thread::terminate() +{ + if (!this->_handle) return RESULT_OK; + + return pthread_cancel((pthread_t)this->_handle)==0?RESULT_OK:RESULT_OPERATION_FAIL; +} + +u_result Thread::setPriority( priority_val_t p) +{ + if (!this->_handle) return RESULT_OPERATION_FAIL; + + // check whether current schedule policy supports priority levels + + int current_policy; + struct sched_param current_param; + int ans; + if (pthread_getschedparam( (pthread_t) this->_handle, ¤t_policy, ¤t_param)) + { + // cannot retreieve values + return RESULT_OPERATION_FAIL; + } + + //int pthread_priority = 0 ; + + switch(p) + { + case PRIORITY_REALTIME: + //pthread_priority = pthread_priority_max; + current_policy = SCHED_RR; + break; + case PRIORITY_HIGH: + //pthread_priority = (pthread_priority_max + pthread_priority_min)/2; + current_policy = SCHED_RR; + break; + case PRIORITY_NORMAL: + case PRIORITY_LOW: + case PRIORITY_IDLE: + //pthread_priority = 0; + current_policy = SCHED_OTHER; + break; + } + + current_param.__sched_priority = current_policy; + if ( (ans = pthread_setschedparam( (pthread_t) this->_handle, current_policy, ¤t_param)) ) + { + return RESULT_OPERATION_FAIL; + } + return RESULT_OK; +} + +Thread::priority_val_t Thread::getPriority() +{ + if (!this->_handle) return PRIORITY_NORMAL; + + int current_policy; + struct sched_param current_param; + if (pthread_getschedparam( (pthread_t) this->_handle, ¤t_policy, ¤t_param)) + { + // cannot retreieve values + return PRIORITY_NORMAL; + } + + int pthread_priority_max = sched_get_priority_max(SCHED_RR); + int pthread_priority_min = sched_get_priority_min(SCHED_RR); + + if (current_param.__sched_priority ==(pthread_priority_max )) + { + return PRIORITY_REALTIME; + } + if (current_param.__sched_priority >=(pthread_priority_max + pthread_priority_min)/2) + { + return PRIORITY_HIGH; + } + return PRIORITY_NORMAL; +} + +u_result Thread::join(unsigned long timeout) +{ + if (!this->_handle) return RESULT_OK; + + pthread_join((pthread_t)(this->_handle), NULL); + return RESULT_OK; +} + +}} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/linux/timer.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/linux/timer.cpp new file mode 100644 index 0000000..1507cb6 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/linux/timer.cpp @@ -0,0 +1,52 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2018 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#include "arch/linux/arch_linux.h" + +namespace rp{ namespace arch{ +_u64 rp_getus() +{ + struct timespec t; + t.tv_sec = t.tv_nsec = 0; + clock_gettime(CLOCK_MONOTONIC, &t); + return t.tv_sec*1000000LL + t.tv_nsec/1000; +} +_u32 rp_getms() +{ + struct timespec t; + t.tv_sec = t.tv_nsec = 0; + clock_gettime(CLOCK_MONOTONIC, &t); + return t.tv_sec*1000L + t.tv_nsec/1000000L; +} +}} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/linux/timer.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/linux/timer.h new file mode 100644 index 0000000..32342a9 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/linux/timer.h @@ -0,0 +1,57 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2018 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#pragma once + +#include "hal/types.h" + +#include +static inline void delay(_word_size_t ms){ + while (ms>=1000){ + usleep(1000*1000); + ms-=1000; + }; + if (ms!=0) + usleep(ms*1000); +} + +// TODO: the highest timer interface should be clock_gettime +namespace rp{ namespace arch{ + +_u64 rp_getus(); +_u32 rp_getms(); + +}} + +#define getms() rp::arch::rp_getms() diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/macOS/arch_macOS.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/macOS/arch_macOS.h new file mode 100644 index 0000000..950ab97 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/macOS/arch_macOS.h @@ -0,0 +1,66 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2018 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#pragma once + +// libc dep +#include +#include +#include +#include +#include +#include +#include +#include + +// libc++ dep +#include +#include + + +// POSIX specific +extern "C" { +#include +#include +#include +#include +#include +#include +#include +#include +#include +} + +#include "arch/macOS/timer.h" + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/macOS/net_serial.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/macOS/net_serial.cpp new file mode 100644 index 0000000..f645a1f --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/macOS/net_serial.cpp @@ -0,0 +1,348 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2018 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#include "arch/macOS/arch_macOS.h" +#include "arch/macOS/net_serial.h" +#include +#include + +namespace rp{ namespace arch{ namespace net{ + +raw_serial::raw_serial() + : rp::hal::serial_rxtx() + , _baudrate(0) + , _flags(0) + , serial_fd(-1) +{ + _init(); +} + +raw_serial::~raw_serial() +{ + close(); + +} + +bool raw_serial::open() +{ + return open(_portName, _baudrate, _flags); +} + +bool raw_serial::bind(const char * portname, uint32_t baudrate, uint32_t flags) +{ + strncpy(_portName, portname, sizeof(_portName)); + _baudrate = baudrate; + _flags = flags; + return true; +} + +bool raw_serial::open(const char * portname, uint32_t baudrate, uint32_t flags) +{ + if (isOpened()) close(); + + serial_fd = ::open(portname, O_RDWR | O_NOCTTY | O_NDELAY); + + if (serial_fd == -1) return false; + + struct termios options, oldopt; + tcgetattr(serial_fd, &oldopt); + bzero(&options,sizeof(struct termios)); + + _u32 termbaud = getTermBaudBitmap(baudrate); + + if (termbaud == (_u32)-1) { + fprintf(stderr, "Baudrate %d is not supported on macOS\r\n", baudrate); + close(); + return false; + } + cfsetispeed(&options, termbaud); + cfsetospeed(&options, termbaud); + + // enable rx and tx + options.c_cflag |= (CLOCAL | CREAD); + + + options.c_cflag &= ~PARENB; //no checkbit + options.c_cflag &= ~CSTOPB; //1bit stop bit + + options.c_cflag &= ~CSIZE; + options.c_cflag |= CS8; /* Select 8 data bits */ + +#ifdef CNEW_RTSCTS + options.c_cflag &= ~CNEW_RTSCTS; // no hw flow control +#endif + + options.c_iflag &= ~(IXON | IXOFF | IXANY); // no sw flow control + + // raw input mode + options.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG); + // raw output mode + options.c_oflag &= ~OPOST; + + tcflush(serial_fd,TCIFLUSH); +/* + if (fcntl(serial_fd, F_SETFL, FNDELAY)) + { + close(); + return false; + } +*/ + if (tcsetattr(serial_fd, TCSANOW, &options)) + { + close(); + return false; + } + + _is_serial_opened = true; + + //Clear the DTR bit to let the motor spin + clearDTR(); + + return true; +} + +void raw_serial::close() +{ + if (serial_fd != -1) + ::close(serial_fd); + serial_fd = -1; + + _is_serial_opened = false; +} + +int raw_serial::senddata(const unsigned char * data, _word_size_t size) +{ +// FIXME: non-block io should be used + if (!isOpened()) return 0; + + if (data == NULL || size ==0) return 0; + + size_t tx_len = 0; + required_tx_cnt = 0; + do { + int ans = ::write(serial_fd, data + tx_len, size-tx_len); + + if (ans == -1) return tx_len; + + tx_len += ans; + required_tx_cnt = tx_len; + }while (tx_len= data_count) + { + return 0; + } + } + + while ( isOpened() ) + { + /* Do the select */ + int n = ::select(max_fd, &input_set, NULL, NULL, &timeout_val); + + if (n < 0) + { + // select error + return ANS_DEV_ERR; + } + else if (n == 0) + { + // time out + return ANS_TIMEOUT; + } + else + { + // data avaliable + assert (FD_ISSET(serial_fd, &input_set)); + + + if ( ioctl(serial_fd, FIONREAD, returned_size) == -1) return ANS_DEV_ERR; + if (*returned_size >= data_count) + { + return 0; + } + else + { + int remain_timeout = timeout_val.tv_sec*1000000 + timeout_val.tv_usec; + int expect_remain_time = (data_count - *returned_size)*1000000*8/_baudrate; + if (remain_timeout > expect_remain_time) + usleep(expect_remain_time); + } + } + + } + return ANS_DEV_ERR; +} + +size_t raw_serial::rxqueue_count() +{ + if ( !isOpened() ) return 0; + size_t remaining; + + if (::ioctl(serial_fd, FIONREAD, &remaining) == -1) return 0; + return remaining; +} + +void raw_serial::setDTR() +{ + if ( !isOpened() ) return; + + uint32_t dtr_bit = TIOCM_DTR; + ioctl(serial_fd, TIOCMBIS, &dtr_bit); +} + +void raw_serial::clearDTR() +{ + if ( !isOpened() ) return; + + uint32_t dtr_bit = TIOCM_DTR; + ioctl(serial_fd, TIOCMBIC, &dtr_bit); +} + +void raw_serial::_init() +{ + serial_fd = 0; + _portName[0] = 0; + required_tx_cnt = required_rx_cnt = 0; +} + + + +_u32 raw_serial::getTermBaudBitmap(_u32 baud) +{ +#define BAUD_CONV(_baud_) case _baud_: return _baud_ + switch (baud) + { + BAUD_CONV(1200); + BAUD_CONV(1800); + BAUD_CONV(2400); + BAUD_CONV(4800); + BAUD_CONV(9600); + BAUD_CONV(19200); + BAUD_CONV(38400); + BAUD_CONV(57600); + BAUD_CONV(115200); + BAUD_CONV(230400); + BAUD_CONV(460800); + BAUD_CONV(500000); + BAUD_CONV(576000); + BAUD_CONV(921600); + BAUD_CONV(1000000); + BAUD_CONV(1152000); + BAUD_CONV(1500000); + BAUD_CONV(2000000); + BAUD_CONV(2500000); + BAUD_CONV(3000000); + BAUD_CONV(3500000); + BAUD_CONV(4000000); + } + return -1; +} + +}}} //end rp::arch::net + + + +//begin rp::hal +namespace rp{ namespace hal{ + + serial_rxtx * serial_rxtx::CreateRxTx() + { + return new rp::arch::net::raw_serial(); + } + + void serial_rxtx::ReleaseRxTx(serial_rxtx *rxtx) + { + delete rxtx; + } + +}} //end rp::hal diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/macOS/net_serial.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/macOS/net_serial.h new file mode 100644 index 0000000..df8e1d4 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/macOS/net_serial.h @@ -0,0 +1,84 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2018 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#pragma once + +#include "hal/abs_rxtx.h" + +namespace rp{ namespace arch{ namespace net{ + +class raw_serial : public rp::hal::serial_rxtx +{ +public: + enum{ + SERIAL_RX_BUFFER_SIZE = 512, + SERIAL_TX_BUFFER_SIZE = 128, + }; + + raw_serial(); + virtual ~raw_serial(); + virtual bool bind(const char * portname, uint32_t baudrate, uint32_t flags = 0); + virtual bool open(); + virtual void close(); + virtual void flush( _u32 flags); + + virtual int waitfordata(_word_size_t data_count,_u32 timeout = -1, _word_size_t * returned_size = NULL); + + virtual int senddata(const unsigned char * data, _word_size_t size); + virtual int recvdata(unsigned char * data, _word_size_t size); + + virtual int waitforsent(_u32 timeout = -1, _word_size_t * returned_size = NULL); + virtual int waitforrecv(_u32 timeout = -1, _word_size_t * returned_size = NULL); + + virtual size_t rxqueue_count(); + + virtual void setDTR(); + virtual void clearDTR(); + + _u32 getTermBaudBitmap(_u32 baud); +protected: + bool open(const char * portname, uint32_t baudrate, uint32_t flags = 0); + void _init(); + + char _portName[200]; + uint32_t _baudrate; + uint32_t _flags; + + int serial_fd; + + size_t required_tx_cnt; + size_t required_rx_cnt; +}; + +}}} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/macOS/net_socket.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/macOS/net_socket.cpp new file mode 100644 index 0000000..bc55d86 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/macOS/net_socket.cpp @@ -0,0 +1,858 @@ +/* + * RoboPeak Project + * HAL Layer - Socket Interface + * Copyright 2018 RoboPeak Project + * + * macOS Implementation + */ + + +#include "sdkcommon.h" +#include "../../hal/socket.h" + +#include +#include +#include +#include +#include + +namespace rp{ namespace net { + + +static inline int _halAddrTypeToOSType(SocketAddress::address_type_t type) +{ + switch (type) { + case SocketAddress::ADDRESS_TYPE_INET: + return AF_INET; + case SocketAddress::ADDRESS_TYPE_INET6: + return AF_INET6; + case SocketAddress::ADDRESS_TYPE_UNSPEC: + return AF_UNSPEC; + + default: + assert(!"should not reach here"); + return AF_UNSPEC; + } +} + + +SocketAddress::SocketAddress() +{ + _platform_data = reinterpret_cast(new sockaddr_storage); + memset(_platform_data, 0, sizeof(sockaddr_storage)); + + reinterpret_cast(_platform_data)->ss_family = AF_INET; +} + +SocketAddress::SocketAddress(const SocketAddress & src) +{ + _platform_data = reinterpret_cast(new sockaddr_storage); + memcpy(_platform_data, src._platform_data, sizeof(sockaddr_storage)); +} + + + +SocketAddress::SocketAddress(const char * addrString, int port, SocketAddress::address_type_t type) +{ + _platform_data = reinterpret_cast(new sockaddr_storage); + memset(_platform_data, 0, sizeof(sockaddr_storage)); + + // default to ipv4 in case the following operation fails + reinterpret_cast(_platform_data)->ss_family = AF_INET; + + setAddressFromString(addrString, type); + setPort(port); +} + +SocketAddress::SocketAddress(void * platform_data) + : _platform_data(platform_data) +{} + +SocketAddress & SocketAddress::operator = (const SocketAddress &src) +{ + memcpy(_platform_data, src._platform_data, sizeof(sockaddr_storage)); + return *this; +} + + +SocketAddress::~SocketAddress() +{ + delete reinterpret_cast(_platform_data); +} + +SocketAddress::address_type_t SocketAddress::getAddressType() const +{ + switch(reinterpret_cast(_platform_data)->ss_family) { + case AF_INET: + return ADDRESS_TYPE_INET; + case AF_INET6: + return ADDRESS_TYPE_INET6; + default: + assert(!"should not reach here"); + return ADDRESS_TYPE_INET; + } +} + +int SocketAddress::getPort() const +{ + switch (getAddressType()) { + case ADDRESS_TYPE_INET: + return (int)ntohs(reinterpret_cast(_platform_data)->sin_port); + case ADDRESS_TYPE_INET6: + return (int)ntohs(reinterpret_cast(_platform_data)->sin6_port); + default: + return 0; + } +} + +u_result SocketAddress::setPort(int port) +{ + switch (getAddressType()) { + case ADDRESS_TYPE_INET: + reinterpret_cast(_platform_data)->sin_port = htons((short)port); + break; + case ADDRESS_TYPE_INET6: + reinterpret_cast(_platform_data)->sin6_port = htons((short)port); + break; + default: + return RESULT_OPERATION_FAIL; + } + return RESULT_OK; +} + +u_result SocketAddress::setAddressFromString(const char * address_string, SocketAddress::address_type_t type) +{ + int ans = 0; + int prevPort = getPort(); + switch (type) { + case ADDRESS_TYPE_INET: + reinterpret_cast(_platform_data)->ss_family = AF_INET; + ans = inet_pton(AF_INET, + address_string, + &reinterpret_cast(_platform_data)->sin_addr); + break; + + + case ADDRESS_TYPE_INET6: + + reinterpret_cast(_platform_data)->ss_family = AF_INET6; + ans = inet_pton(AF_INET6, + address_string, + &reinterpret_cast(_platform_data)->sin6_addr); + break; + + default: + return RESULT_INVALID_DATA; + + } + setPort(prevPort); + + return ans<=0?RESULT_INVALID_DATA:RESULT_OK; +} + + +u_result SocketAddress::getAddressAsString(char * buffer, size_t buffersize) const +{ + int net_family = reinterpret_cast(_platform_data)->ss_family; + const char *ans = NULL; + switch (net_family) { + case AF_INET: + ans = inet_ntop(net_family, &reinterpret_cast(_platform_data)->sin_addr, + buffer, buffersize); + break; + + case AF_INET6: + ans = inet_ntop(net_family, &reinterpret_cast(_platform_data)->sin6_addr, + buffer, buffersize); + + break; + } + return !ans?RESULT_OPERATION_FAIL:RESULT_OK; +} + + + +size_t SocketAddress::LoopUpHostName(const char * hostname, const char * sevicename, std::vector &addresspool , bool performDNS, SocketAddress::address_type_t type) +{ + struct addrinfo hints; + struct addrinfo *result; + int ans; + + memset(&hints, 0, sizeof(struct addrinfo)); + hints.ai_family = _halAddrTypeToOSType(type); + hints.ai_flags = AI_PASSIVE; + + if (!performDNS) { + hints.ai_family |= AI_NUMERICSERV | AI_NUMERICHOST; + + } + + ans = getaddrinfo(hostname, sevicename, &hints, &result); + + addresspool.clear(); + + if (ans != 0) { + // hostname loopup failed + return 0; + } + + + for (struct addrinfo * cursor = result; cursor != NULL; cursor = cursor->ai_next) { + if (cursor->ai_family == ADDRESS_TYPE_INET || cursor->ai_family == ADDRESS_TYPE_INET6) { + sockaddr_storage * storagebuffer = new sockaddr_storage; + assert(sizeof(sockaddr_storage) >= cursor->ai_addrlen); + memcpy(storagebuffer, cursor->ai_addr, cursor->ai_addrlen); + addresspool.push_back(SocketAddress(storagebuffer)); + } + } + + + freeaddrinfo(result); + + return addresspool.size(); +} + + +u_result SocketAddress::getRawAddress(_u8 * buffer, size_t bufferSize) const +{ + switch (getAddressType()) { + case ADDRESS_TYPE_INET: + if (bufferSize < sizeof(in_addr_t)) return RESULT_INSUFFICIENT_MEMORY; + + memcpy(buffer, &reinterpret_cast(_platform_data)->sin_addr.s_addr, sizeof(reinterpret_cast(_platform_data)->sin_addr.s_addr)); + + + break; + case ADDRESS_TYPE_INET6: + if (bufferSize < sizeof(in6_addr)) return RESULT_INSUFFICIENT_MEMORY; + memcpy(buffer, reinterpret_cast(_platform_data)->sin6_addr.s6_addr, sizeof(reinterpret_cast(_platform_data)->sin6_addr.s6_addr)); + + break; + default: + return RESULT_OPERATION_FAIL; + } + return RESULT_OK; +} + + +void SocketAddress::setLoopbackAddress(SocketAddress::address_type_t type) +{ + + int prevPort = getPort(); + switch (type) { + case ADDRESS_TYPE_INET: + { + sockaddr_in * addrv4 = reinterpret_cast(_platform_data); + addrv4->sin_family = AF_INET; + addrv4->sin_addr.s_addr = htonl(INADDR_LOOPBACK); + } + break; + case ADDRESS_TYPE_INET6: + { + sockaddr_in6 * addrv6 = reinterpret_cast(_platform_data); + addrv6->sin6_family = AF_INET6; + addrv6->sin6_addr = in6addr_loopback; + + } + break; + default: + return; + } + + setPort(prevPort); +} + +void SocketAddress::setBroadcastAddressIPv4() +{ + + int prevPort = getPort(); + sockaddr_in * addrv4 = reinterpret_cast(_platform_data); + addrv4->sin_family = AF_INET; + addrv4->sin_addr.s_addr = htonl(INADDR_BROADCAST); + setPort(prevPort); + +} + +void SocketAddress::setAnyAddress(SocketAddress::address_type_t type) +{ + int prevPort = getPort(); + switch (type) { + case ADDRESS_TYPE_INET: + { + sockaddr_in * addrv4 = reinterpret_cast(_platform_data); + addrv4->sin_family = AF_INET; + addrv4->sin_addr.s_addr = htonl(INADDR_ANY); + } + break; + case ADDRESS_TYPE_INET6: + { + sockaddr_in6 * addrv6 = reinterpret_cast(_platform_data); + addrv6->sin6_family = AF_INET6; + addrv6->sin6_addr = in6addr_any; + + } + break; + default: + return; + } + + setPort(prevPort); + + +} + + +}} + + + +///-------------------------------- + + +namespace rp { namespace arch { namespace net{ + +using namespace rp::net; + +class _single_thread StreamSocketImpl : public StreamSocket +{ +public: + + StreamSocketImpl(int fd) + : _socket_fd(fd) + { + assert(fd>=0); + int bool_true = 1; + ::setsockopt( _socket_fd, SOL_SOCKET, SO_REUSEADDR , (char *)&bool_true, sizeof(bool_true) ); + ::setsockopt( _socket_fd, SOL_SOCKET, SO_NOSIGPIPE, (char*)&bool_true, sizeof(bool_true)); + + enableNoDelay(true); + this->setTimeout(DEFAULT_SOCKET_TIMEOUT, SOCKET_DIR_BOTH); + } + + virtual ~StreamSocketImpl() + { + close(_socket_fd); + } + + virtual void dispose() + { + delete this; + } + + + virtual u_result bind(const SocketAddress & localaddr) + { + const struct sockaddr * addr = reinterpret_cast(localaddr.getPlatformData()); + assert(addr); + int ans = ::bind(_socket_fd, addr, sizeof(sockaddr_storage)); + if (ans) { + return RESULT_OPERATION_FAIL; + } else { + return RESULT_OK; + } + } + + virtual u_result getLocalAddress(SocketAddress & localaddr) + { + struct sockaddr * addr = reinterpret_cast( const_cast(localaddr.getPlatformData())); //donnot do this at home... + assert(addr); + + size_t actualsize = sizeof(sockaddr_storage); + int ans = ::getsockname(_socket_fd, addr, (socklen_t*)&actualsize); + + assert(actualsize <= sizeof(sockaddr_storage)); + assert(addr->sa_family == AF_INET || addr->sa_family == AF_INET6); + + return ans?RESULT_OPERATION_FAIL:RESULT_OK; + } + + virtual u_result setTimeout(_u32 timeout, socket_direction_mask msk) + { + int ans; + timeval tv; + tv.tv_sec = timeout / 1000; + tv.tv_usec = (timeout % 1000) * 1000; + + if (msk & SOCKET_DIR_RD) { + ans = ::setsockopt( _socket_fd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv) ); + if (ans) return RESULT_OPERATION_FAIL; + } + + if (msk & SOCKET_DIR_WR) { + ans = ::setsockopt( _socket_fd, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv) ); + if (ans) return RESULT_OPERATION_FAIL; + } + + return RESULT_OK; + } + + virtual u_result connect(const SocketAddress & pairAddress) + { + const struct sockaddr * addr = reinterpret_cast(pairAddress.getPlatformData()); + int ans = ::connect(_socket_fd, addr, sizeof(sockaddr_storage)); + if (!ans) return RESULT_OK; + + + switch (errno) { + case EAFNOSUPPORT: + return RESULT_OPERATION_NOT_SUPPORT; +#if 0 + case EINPROGRESS: + return RESULT_OK; //treat async connection as good status +#endif + case ETIMEDOUT: + return RESULT_OPERATION_TIMEOUT; + default: + return RESULT_OPERATION_FAIL; + } + } + + virtual u_result listen(int backlog) + { + int ans = ::listen( _socket_fd, backlog); + + return ans?RESULT_OPERATION_FAIL:RESULT_OK; + } + + virtual StreamSocket * accept(SocketAddress * pairAddress) + { + size_t addrsize; + addrsize = sizeof(sockaddr_storage); + int pair_socket = ::accept( _socket_fd, pairAddress?reinterpret_cast(const_cast(pairAddress->getPlatformData())):NULL + , (socklen_t*)&addrsize); + + if (pair_socket>=0) { + return new StreamSocketImpl(pair_socket); + } else { + return NULL; + } + } + + virtual u_result waitforIncomingConnection(_u32 timeout) + { + return waitforData(timeout); + } + + virtual u_result send(const void * buffer, size_t len) + { + size_t ans = ::send( _socket_fd, buffer, len, 0); + if (ans == (int)len) { + return RESULT_OK; + } else { + switch (errno) { + case EAGAIN: +#if EWOULDBLOCK!=EAGAIN + case EWOULDBLOCK: +#endif + return RESULT_OPERATION_TIMEOUT; + default: + return RESULT_OPERATION_FAIL; + } + } + + } + + + virtual u_result recv(void *buf, size_t len, size_t & recv_len) + { + size_t ans = ::recv( _socket_fd, buf, len, 0); + if (ans == (size_t)-1) { + recv_len = 0; + + switch (errno) { + case EAGAIN: +#if EWOULDBLOCK!=EAGAIN + case EWOULDBLOCK: +#endif + return RESULT_OPERATION_TIMEOUT; + default: + return RESULT_OPERATION_FAIL; + } + + + + } else { + recv_len = ans; + return RESULT_OK; + } + } + +#if 0 + virtual u_result recvNoWait(void *buf, size_t len, size_t & recv_len) + { + size_t ans = ::recv( _socket_fd, buf, len, MSG_DONTWAIT); + if (ans == (size_t)-1) { + recv_len = 0; + if (errno == EAGAIN || errno == EWOULDBLOCK) { + return RESULT_OK; + } else { + return RESULT_OPERATION_FAIL; + } + + + } else { + recv_len = ans; + return RESULT_OK; + } + + } +#endif + + virtual u_result getPeerAddress(SocketAddress & peerAddr) + { + struct sockaddr * addr = reinterpret_cast(const_cast(peerAddr.getPlatformData())); //donnot do this at home... + assert(addr); + size_t actualsize = sizeof(sockaddr_storage); + int ans = ::getpeername(_socket_fd, addr, (socklen_t*)&actualsize); + + assert(actualsize <= sizeof(sockaddr_storage)); + assert(addr->sa_family == AF_INET || addr->sa_family == AF_INET6); + + return ans?RESULT_OPERATION_FAIL:RESULT_OK; + + } + + virtual u_result shutdown(socket_direction_mask mask) + { + int shutdw_opt ; + + switch (mask) { + case SOCKET_DIR_RD: + shutdw_opt = SHUT_RD; + break; + case SOCKET_DIR_WR: + shutdw_opt = SHUT_WR; + break; + case SOCKET_DIR_BOTH: + default: + shutdw_opt = SHUT_RDWR; + } + + int ans = ::shutdown(_socket_fd, shutdw_opt); + return ans?RESULT_OPERATION_FAIL:RESULT_OK; + } + + virtual u_result enableKeepAlive(bool enable) + { + int bool_true = enable?1:0; + return ::setsockopt( _socket_fd, SOL_SOCKET, SO_KEEPALIVE , &bool_true, sizeof(bool_true) )?RESULT_OPERATION_FAIL:RESULT_OK; + } + + virtual u_result enableNoDelay(bool enable ) + { + int bool_true = enable?1:0; + return ::setsockopt( _socket_fd, IPPROTO_TCP, TCP_NODELAY,&bool_true, sizeof(bool_true) )?RESULT_OPERATION_FAIL:RESULT_OK; + } + + virtual u_result waitforSent(_u32 timeout ) + { + fd_set wrset; + FD_ZERO(&wrset); + FD_SET(_socket_fd, &wrset); + + timeval tv; + tv.tv_sec = timeout / 1000; + tv.tv_usec = (timeout % 1000) * 1000; + int ans = ::select(_socket_fd+1, NULL, &wrset, NULL, &tv); + + switch (ans) { + case 1: + // fired + return RESULT_OK; + case 0: + // timeout + return RESULT_OPERATION_TIMEOUT; + default: + delay(0); //relax cpu + return RESULT_OPERATION_FAIL; + } + } + + virtual u_result waitforData(_u32 timeout ) + { + fd_set rdset; + FD_ZERO(&rdset); + FD_SET(_socket_fd, &rdset); + + timeval tv; + tv.tv_sec = timeout / 1000; + tv.tv_usec = (timeout % 1000) * 1000; + int ans = ::select(_socket_fd+1, &rdset, NULL, NULL, &tv); + + switch (ans) { + case 1: + // fired + return RESULT_OK; + case 0: + // timeout + return RESULT_OPERATION_TIMEOUT; + default: + delay(0); //relax cpu + return RESULT_OPERATION_FAIL; + } + } + +protected: + int _socket_fd; + + +}; + + +class _single_thread DGramSocketImpl : public DGramSocket +{ +public: + + DGramSocketImpl(int fd) + : _socket_fd(fd) + { + assert(fd>=0); + int bool_true = 1; + ::setsockopt( _socket_fd, SOL_SOCKET, SO_REUSEADDR | SO_BROADCAST , (char *)&bool_true, sizeof(bool_true) ); + setTimeout(DEFAULT_SOCKET_TIMEOUT, SOCKET_DIR_BOTH); + } + + virtual ~DGramSocketImpl() + { + close(_socket_fd); + } + + virtual void dispose() + { + delete this; + } + + + virtual u_result bind(const SocketAddress & localaddr) + { + const struct sockaddr * addr = reinterpret_cast(localaddr.getPlatformData()); + assert(addr); + int ans = ::bind(_socket_fd, addr, sizeof(sockaddr_storage)); + if (ans) { + return RESULT_OPERATION_FAIL; + } else { + return RESULT_OK; + } + } + + virtual u_result getLocalAddress(SocketAddress & localaddr) + { + struct sockaddr * addr = reinterpret_cast(const_cast((localaddr.getPlatformData()))); //donnot do this at home... + assert(addr); + + size_t actualsize = sizeof(sockaddr_storage); + int ans = ::getsockname(_socket_fd, addr, (socklen_t*)&actualsize); + + assert(actualsize <= sizeof(sockaddr_storage)); + assert(addr->sa_family == AF_INET || addr->sa_family == AF_INET6); + + return ans?RESULT_OPERATION_FAIL:RESULT_OK; + } + + virtual u_result setTimeout(_u32 timeout, socket_direction_mask msk) + { + int ans; + timeval tv; + tv.tv_sec = timeout / 1000; + tv.tv_usec = (timeout % 1000) * 1000; + + if (msk & SOCKET_DIR_RD) { + ans = ::setsockopt( _socket_fd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv) ); + if (ans) return RESULT_OPERATION_FAIL; + } + + if (msk & SOCKET_DIR_WR) { + ans = ::setsockopt( _socket_fd, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv) ); + if (ans) return RESULT_OPERATION_FAIL; + } + + return RESULT_OK; + } + + + virtual u_result waitforSent(_u32 timeout ) + { + fd_set wrset; + FD_ZERO(&wrset); + FD_SET(_socket_fd, &wrset); + + timeval tv; + tv.tv_sec = timeout / 1000; + tv.tv_usec = (timeout % 1000) * 1000; + int ans = ::select(_socket_fd+1, NULL, &wrset, NULL, &tv); + + switch (ans) { + case 1: + // fired + return RESULT_OK; + case 0: + // timeout + return RESULT_OPERATION_TIMEOUT; + default: + delay(0); //relax cpu + return RESULT_OPERATION_FAIL; + } + } + + virtual u_result waitforData(_u32 timeout ) + { + fd_set rdset; + FD_ZERO(&rdset); + FD_SET(_socket_fd, &rdset); + + timeval tv; + tv.tv_sec = timeout / 1000; + tv.tv_usec = (timeout % 1000) * 1000; + int ans = ::select(_socket_fd+1, &rdset, NULL, NULL, &tv); + + switch (ans) { + case 1: + // fired + return RESULT_OK; + case 0: + // timeout + return RESULT_OPERATION_TIMEOUT; + default: + delay(0); //relax cpu + return RESULT_OPERATION_FAIL; + } + } + + virtual u_result sendTo(const SocketAddress & target, const void * buffer, size_t len) + { + const struct sockaddr * addr = reinterpret_cast(target.getPlatformData()); + assert(addr); + size_t ans = ::sendto( _socket_fd, buffer, len, 0, addr, sizeof(sockaddr_storage)); + if (ans != (size_t)-1) { + assert(ans == (int)len); + return RESULT_OK; + } else { + switch (errno) { + case EAGAIN: +#if EWOULDBLOCK!=EAGAIN + case EWOULDBLOCK: +#endif + return RESULT_OPERATION_TIMEOUT; + + case EMSGSIZE: + return RESULT_INVALID_DATA; + default: + return RESULT_OPERATION_FAIL; + } + + } + + } + + + virtual u_result recvFrom(void *buf, size_t len, size_t & recv_len, SocketAddress * sourceAddr) + { + struct sockaddr * addr = (sourceAddr?reinterpret_cast(const_cast(sourceAddr->getPlatformData())):NULL); + size_t source_addr_size = (sourceAddr?sizeof(sockaddr_storage):0); + + size_t ans = ::recvfrom( _socket_fd, buf, len, 0, addr, (socklen_t*)&source_addr_size); + if (ans == (size_t)-1) { + recv_len = 0; + switch (errno) { + case EAGAIN: +#if EWOULDBLOCK!=EAGAIN + case EWOULDBLOCK: +#endif + return RESULT_OPERATION_TIMEOUT; + default: + return RESULT_OPERATION_FAIL; + } + + } else { + recv_len = ans; + return RESULT_OK; + } + + } + +#if 0 + virtual u_result recvFromNoWait(void *buf, size_t len, size_t & recv_len, SocketAddress * sourceAddr) + { + struct sockaddr * addr = (sourceAddr?reinterpret_cast(const_cast(sourceAddr->getPlatformData())):NULL); + size_t source_addr_size = (sourceAddr?sizeof(sockaddr_storage):0); + + + size_t ans = ::recvfrom( _socket_fd, buf, len, MSG_DONTWAIT, addr, &source_addr_size); + + if (ans == (size_t)-1) { + recv_len = 0; + if (errno == EAGAIN || errno == EWOULDBLOCK) { + return RESULT_OK; + } else { + return RESULT_OPERATION_FAIL; + } + + + } else { + recv_len = ans; + return RESULT_OK; + } + + } +#endif + +protected: + int _socket_fd; + +}; + + +}}} + + +namespace rp { namespace net{ + + +static inline int _socketHalFamilyToOSFamily(SocketBase::socket_family_t family) +{ + switch (family) { + case SocketBase::SOCKET_FAMILY_INET: + return AF_INET; + case SocketBase::SOCKET_FAMILY_INET6: + return AF_INET6; + case SocketBase::SOCKET_FAMILY_RAW: + assert(!"should not reach here, AF_PACKET is not supported on macOS"); + return AF_INET; + default: + assert(!"should not reach here"); + return AF_INET; // force treating as IPv4 in release mode + } + +} + +StreamSocket * StreamSocket::CreateSocket(SocketBase::socket_family_t family) +{ + if (family == SOCKET_FAMILY_RAW) return NULL; + + + int socket_family = _socketHalFamilyToOSFamily(family); + int socket_fd = ::socket(socket_family, SOCK_STREAM, 0); + if (socket_fd == -1) return NULL; + + StreamSocket * newborn = static_cast(new rp::arch::net::StreamSocketImpl(socket_fd)); + return newborn; + +} + + +DGramSocket * DGramSocket::CreateSocket(SocketBase::socket_family_t family) +{ + int socket_family = _socketHalFamilyToOSFamily(family); + + + int socket_fd = ::socket(socket_family, (family==SOCKET_FAMILY_RAW)?SOCK_RAW:SOCK_DGRAM, 0); + if (socket_fd == -1) return NULL; + + DGramSocket * newborn = static_cast(new rp::arch::net::DGramSocketImpl(socket_fd)); + return newborn; + +} + + +}} + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/macOS/thread.hpp b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/macOS/thread.hpp new file mode 100644 index 0000000..88b81c8 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/macOS/thread.hpp @@ -0,0 +1,79 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2018 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#include "arch/macOS/arch_macOS.h" + +namespace rp{ namespace hal{ + +Thread Thread::create(thread_proc_t proc, void * data) +{ + Thread newborn(proc, data); + + // tricky code, we assume pthread_t is not a structure but a word size value + assert( sizeof(newborn._handle) >= sizeof(pthread_t)); + + pthread_create((pthread_t *)&newborn._handle, NULL,(void * (*)(void *))proc, data); + + return newborn; +} + +u_result Thread::terminate() +{ + if (!this->_handle) return RESULT_OK; + + // return pthread_cancel((pthread_t)this->_handle)==0?RESULT_OK:RESULT_OPERATION_FAIL; + return RESULT_OK; +} + +u_result Thread::setPriority( priority_val_t p) +{ + if (!this->_handle) return RESULT_OPERATION_FAIL; + // simply ignore this request + return RESULT_OK; +} + +Thread::priority_val_t Thread::getPriority() +{ + return PRIORITY_NORMAL; +} + +u_result Thread::join(unsigned long timeout) +{ + if (!this->_handle) return RESULT_OK; + + pthread_join((pthread_t)(this->_handle), NULL); + return RESULT_OK; +} + +}} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/macOS/timer.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/macOS/timer.cpp new file mode 100644 index 0000000..810457a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/macOS/timer.cpp @@ -0,0 +1,53 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2018 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#include "arch/macOS/arch_macOS.h" + + +namespace rp{ namespace arch{ +_u64 getus() +{ + timeval now; + gettimeofday(&now,NULL); + return now.tv_sec*1000000 + now.tv_usec; +} + +_u32 rp_getms() +{ + timeval now; + gettimeofday(&now,NULL); + return now.tv_sec*1000L + now.tv_usec/1000L; +} + +}} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/macOS/timer.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/macOS/timer.h new file mode 100644 index 0000000..8de8a0c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/macOS/timer.h @@ -0,0 +1,57 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2018 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#pragma once + +#include "rptypes.h" + +#include +static inline void delay(_word_size_t ms){ + while (ms>=1000){ + usleep(1000*1000); + ms-=1000; + }; + if (ms!=0) + usleep(ms*1000); +} + +// TODO: the highest timer interface should be clock_gettime +namespace rp{ namespace arch{ + +_u64 rp_getus(); +_u32 rp_getms(); + +}} + +#define getms() rp::arch::rp_getms() diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/win32/arch_win32.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/win32/arch_win32.h new file mode 100644 index 0000000..10852f3 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/win32/arch_win32.h @@ -0,0 +1,66 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#pragma once + +#pragma warning (disable: 4996) +#define _CRT_SECURE_NO_WARNINGS + +#ifndef WINVER +#define WINVER 0x0500 +#endif + +#ifndef _WIN32_WINNT +#define _WIN32_WINNT 0x0501 +#endif + + +#ifndef _WIN32_IE +#define _WIN32_IE 0x0501 +#endif + +#ifndef _RICHEDIT_VER +#define _RICHEDIT_VER 0x0200 +#endif + + +#include +#include +#include +#include //for memcpy etc.. +#include +#include + + +#include "timer.h" diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/win32/net_serial.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/win32/net_serial.cpp new file mode 100644 index 0000000..7a35a17 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/win32/net_serial.cpp @@ -0,0 +1,358 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#include "sdkcommon.h" +#include "net_serial.h" + +namespace rp{ namespace arch{ namespace net{ + +raw_serial::raw_serial() + : rp::hal::serial_rxtx() + , _serial_handle(NULL) + , _baudrate(0) + , _flags(0) +{ + _init(); +} + +raw_serial::~raw_serial() +{ + close(); + + CloseHandle(_ro.hEvent); + CloseHandle(_wo.hEvent); + CloseHandle(_wait_o.hEvent); +} + +bool raw_serial::open() +{ + return open(_portName, _baudrate, _flags); +} + +bool raw_serial::bind(const char * portname, _u32 baudrate, _u32 flags) +{ + strncpy(_portName, portname, sizeof(_portName)); + _baudrate = baudrate; + _flags = flags; + return true; +} + +bool raw_serial::open(const char * portname, _u32 baudrate, _u32 flags) +{ + if (isOpened()) close(); + + _serial_handle = CreateFile( + portname, + GENERIC_READ | GENERIC_WRITE, + 0, + NULL, + OPEN_EXISTING, + FILE_ATTRIBUTE_NORMAL | FILE_FLAG_OVERLAPPED, + NULL + ); + + if (_serial_handle == INVALID_HANDLE_VALUE) return false; + + if (!SetupComm(_serial_handle, SERIAL_RX_BUFFER_SIZE, SERIAL_TX_BUFFER_SIZE)) + { + close(); + return false; + } + + _dcb.BaudRate = baudrate; + _dcb.ByteSize = 8; + _dcb.Parity = NOPARITY; + _dcb.StopBits = ONESTOPBIT; + _dcb.fDtrControl = DTR_CONTROL_ENABLE; + + if (!SetCommState(_serial_handle, &_dcb)) + { + close(); + return false; + } + + if (!SetCommTimeouts(_serial_handle, &_co)) + { + close(); + return false; + } + + if (!SetCommMask(_serial_handle, EV_RXCHAR | EV_ERR )) + { + close(); + return false; + } + + if (!PurgeComm(_serial_handle, PURGE_TXABORT | PURGE_RXABORT | PURGE_TXCLEAR | PURGE_RXCLEAR )) + { + close(); + return false; + } + + Sleep(30); + _is_serial_opened = true; + + //Clear the DTR bit set DTR=high + clearDTR(); + + return true; +} + +void raw_serial::close() +{ + SetCommMask(_serial_handle, 0); + ResetEvent(_wait_o.hEvent); + + CloseHandle(_serial_handle); + _serial_handle = INVALID_HANDLE_VALUE; + + _is_serial_opened = false; +} + +int raw_serial::senddata(const unsigned char * data, size_t size) +{ + DWORD error; + DWORD w_len = 0, o_len = -1; + if (!isOpened()) return ANS_DEV_ERR; + + if (data == NULL || size ==0) return 0; + + if(ClearCommError(_serial_handle, &error, NULL) && error > 0) + PurgeComm(_serial_handle, PURGE_TXABORT | PURGE_TXCLEAR); + + if(!WriteFile(_serial_handle, data, size, &w_len, &_wo)) + if(GetLastError() != ERROR_IO_PENDING) + w_len = ANS_DEV_ERR; + + return w_len; +} + +int raw_serial::recvdata(unsigned char * data, size_t size) +{ + if (!isOpened()) return 0; + DWORD r_len = 0; + + + if(!ReadFile(_serial_handle, data, size, &r_len, &_ro)) + { + if(GetLastError() == ERROR_IO_PENDING) + { + if(!GetOverlappedResult(_serial_handle, &_ro, &r_len, FALSE)) + { + if(GetLastError() != ERROR_IO_INCOMPLETE) + r_len = 0; + } + } + else + r_len = 0; + } + + return r_len; +} + +void raw_serial::flush( _u32 flags) +{ + PurgeComm(_serial_handle, PURGE_TXABORT | PURGE_RXABORT | PURGE_TXCLEAR | PURGE_RXCLEAR ); +} + +int raw_serial::waitforsent(_u32 timeout, size_t * returned_size) +{ + if (!isOpened() ) return ANS_DEV_ERR; + DWORD w_len = 0; + _word_size_t ans =0; + + if (WaitForSingleObject(_wo.hEvent, timeout) == WAIT_TIMEOUT) + { + ans = ANS_TIMEOUT; + goto _final; + } + if(!GetOverlappedResult(_serial_handle, &_wo, &w_len, FALSE)) + { + ans = ANS_DEV_ERR; + } +_final: + if (returned_size) *returned_size = w_len; + return ans; +} + +int raw_serial::waitforrecv(_u32 timeout, size_t * returned_size) +{ + if (!isOpened() ) return -1; + DWORD r_len = 0; + _word_size_t ans =0; + + if (WaitForSingleObject(_ro.hEvent, timeout) == WAIT_TIMEOUT) + { + ans = ANS_TIMEOUT; + } + if(!GetOverlappedResult(_serial_handle, &_ro, &r_len, FALSE)) + { + ans = ANS_DEV_ERR; + } + if (returned_size) *returned_size = r_len; + return ans; +} + +int raw_serial::waitfordata(size_t data_count, _u32 timeout, size_t * returned_size) +{ + COMSTAT stat; + DWORD error; + DWORD msk,length; + size_t dummy_length; + + if (returned_size==NULL) returned_size=(size_t *)&dummy_length; + + + if ( isOpened()) { + size_t rxqueue_remaining = rxqueue_count(); + if (rxqueue_remaining >= data_count) { + *returned_size = rxqueue_remaining; + return 0; + } + } + + while ( isOpened() ) + { + msk = 0; + SetCommMask(_serial_handle, EV_RXCHAR | EV_ERR ); + if(!WaitCommEvent(_serial_handle, &msk, &_wait_o)) + { + if(GetLastError() == ERROR_IO_PENDING) + { + if (WaitForSingleObject(_wait_o.hEvent, timeout) == WAIT_TIMEOUT) + { + *returned_size =0; + return ANS_TIMEOUT; + } + + GetOverlappedResult(_serial_handle, &_wait_o, &length, TRUE); + + ::ResetEvent(_wait_o.hEvent); + }else + { + ClearCommError(_serial_handle, &error, &stat); + *returned_size = stat.cbInQue; + return ANS_DEV_ERR; + } + } + + if(msk & EV_ERR){ + // FIXME: may cause problem here + ClearCommError(_serial_handle, &error, &stat); + } + + if(msk & EV_RXCHAR){ + ClearCommError(_serial_handle, &error, &stat); + if(stat.cbInQue >= data_count) + { + *returned_size = stat.cbInQue; + return 0; + } + } + } + *returned_size=0; + return ANS_DEV_ERR; +} + +size_t raw_serial::rxqueue_count() +{ + if ( !isOpened() ) return 0; + COMSTAT com_stat; + DWORD error; + DWORD r_len = 0; + + if(ClearCommError(_serial_handle, &error, &com_stat) && error > 0) + { + PurgeComm(_serial_handle, PURGE_RXABORT | PURGE_RXCLEAR); + return 0; + } + return com_stat.cbInQue; +} + +void raw_serial::setDTR() +{ + if ( !isOpened() ) return; + + EscapeCommFunction(_serial_handle, SETDTR); +} + +void raw_serial::clearDTR() +{ + if ( !isOpened() ) return; + + EscapeCommFunction(_serial_handle, CLRDTR); +} + + +void raw_serial::_init() +{ + memset(&_dcb, 0, sizeof(_dcb)); + _dcb.DCBlength = sizeof(_dcb); + _serial_handle = INVALID_HANDLE_VALUE; + memset(&_co, 0, sizeof(_co)); + _co.ReadIntervalTimeout = 0; + _co.ReadTotalTimeoutMultiplier = 0; + _co.ReadTotalTimeoutConstant = 0; + _co.WriteTotalTimeoutMultiplier = 0; + _co.WriteTotalTimeoutConstant = 0; + + memset(&_ro, 0, sizeof(_ro)); + memset(&_wo, 0, sizeof(_wo)); + memset(&_wait_o, 0, sizeof(_wait_o)); + + _ro.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL); + _wo.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL); + _wait_o.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL); + + _portName[0] = 0; +} + +}}} //end rp::arch::net + + +//begin rp::hal +namespace rp{ namespace hal{ + +serial_rxtx * serial_rxtx::CreateRxTx() +{ + return new rp::arch::net::raw_serial(); +} + +void serial_rxtx::ReleaseRxTx( serial_rxtx * rxtx) +{ + delete rxtx; +} + + +}} //end rp::hal diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/win32/net_serial.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/win32/net_serial.h new file mode 100644 index 0000000..a390f94 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/win32/net_serial.h @@ -0,0 +1,86 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#pragma once + +#include "hal/abs_rxtx.h" + +namespace rp{ namespace arch{ namespace net{ + +class raw_serial : public rp::hal::serial_rxtx +{ +public: + enum{ + SERIAL_RX_BUFFER_SIZE = 512, + SERIAL_TX_BUFFER_SIZE = 128, + SERIAL_RX_TIMEOUT = 2000, + SERIAL_TX_TIMEOUT = 2000, + }; + + raw_serial(); + virtual ~raw_serial(); + virtual bool bind(const char * portname, _u32 baudrate, _u32 flags = 0); + virtual bool open(); + virtual void close(); + virtual void flush( _u32 flags); + + virtual int waitfordata(size_t data_count,_u32 timeout = -1, size_t * returned_size = NULL); + + virtual int senddata(const unsigned char * data, size_t size); + virtual int recvdata(unsigned char * data, size_t size); + + virtual int waitforsent(_u32 timeout = -1, size_t * returned_size = NULL); + virtual int waitforrecv(_u32 timeout = -1, size_t * returned_size = NULL); + + virtual size_t rxqueue_count(); + + virtual void setDTR(); + virtual void clearDTR(); + +protected: + bool open(const char * portname, _u32 baudrate, _u32 flags); + void _init(); + + char _portName[20]; + uint32_t _baudrate; + uint32_t _flags; + + OVERLAPPED _ro, _wo; + OVERLAPPED _wait_o; + volatile HANDLE _serial_handle; + DCB _dcb; + COMMTIMEOUTS _co; +}; + +}}} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/win32/net_socket.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/win32/net_socket.cpp new file mode 100644 index 0000000..c2968b6 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/win32/net_socket.cpp @@ -0,0 +1,876 @@ +/* + * RoboPeak Project + * HAL Layer - Socket Interface + * Copyright 2009 - 2013 RoboPeak Project + * + * Win32 Implementation + */ + +#define _WINSOCKAPI_ + +#include "sdkcommon.h" +#include "..\..\hal\socket.h" +#include +#include +#include + +#include +#include +#pragma comment (lib, "Ws2_32.lib") + +namespace rp{ namespace net { + +static volatile bool _isWSAStartupCalled = false; + +static inline bool _checkWSAStartup() { + int iResult; + WSADATA wsaData; + if (!_isWSAStartupCalled) { + iResult = WSAStartup(MAKEWORD(2,2), &wsaData); + if (iResult != 0) { + return false; + } + _isWSAStartupCalled = true; + } + return true; +} + +static const char* _inet_ntop(int af, const void* src, char* dst, int cnt){ + + struct sockaddr_storage srcaddr; + + + memset(dst, 0, cnt); + + memset(&srcaddr, 0, sizeof(struct sockaddr_storage)); + + + srcaddr.ss_family = af; + + switch (af) { + case AF_INET: + { + struct sockaddr_in * ipv4 = reinterpret_cast< struct sockaddr_in *>(&srcaddr); + memcpy(&(ipv4->sin_addr), src, sizeof(ipv4->sin_addr)); + } + break; + case AF_INET6: + { + struct sockaddr_in6 * ipv6 = reinterpret_cast< struct sockaddr_in6 *>(&srcaddr); + memcpy(&(ipv6->sin6_addr), src, sizeof(ipv6->sin6_addr)); + } + break; + } + + if (WSAAddressToStringA((struct sockaddr*) &srcaddr, sizeof(struct sockaddr_storage), 0, dst, (LPDWORD) &cnt) != 0) { + DWORD rv = WSAGetLastError(); + return NULL; + } + return dst; +} + +static int _inet_pton(int Family, const char * pszAddrString, void* pAddrBuf) +{ + struct sockaddr_storage tmpholder; + int actualSize = sizeof(sockaddr_storage); + + int result = WSAStringToAddressA((char *)pszAddrString, Family, NULL, (sockaddr*)&tmpholder, &actualSize); + if (result) return -1; + + switch (Family) { + case AF_INET: + { + struct sockaddr_in * ipv4 = reinterpret_cast< struct sockaddr_in *>(&tmpholder); + memcpy(pAddrBuf, &(ipv4->sin_addr), sizeof(ipv4->sin_addr)); + } + break; + case AF_INET6: + { + struct sockaddr_in6 * ipv6 = reinterpret_cast< struct sockaddr_in6 *>(&tmpholder); + memcpy(pAddrBuf, &(ipv6->sin6_addr), sizeof(ipv6->sin6_addr)); + } + break; + } + return 1; +} + +static inline int _halAddrTypeToOSType(SocketAddress::address_type_t type) +{ + switch (type) { + case SocketAddress::ADDRESS_TYPE_INET: + return AF_INET; + case SocketAddress::ADDRESS_TYPE_INET6: + return AF_INET6; + case SocketAddress::ADDRESS_TYPE_UNSPEC: + return AF_UNSPEC; + + default: + assert(!"should not reach here"); + return AF_UNSPEC; + } +} + + +SocketAddress::SocketAddress() +{ + _checkWSAStartup(); + _platform_data = reinterpret_cast(new sockaddr_storage); + memset(_platform_data, 0, sizeof(sockaddr_storage)); + + reinterpret_cast(_platform_data)->ss_family = AF_INET; +} + +SocketAddress::SocketAddress(const SocketAddress & src) +{ + _platform_data = reinterpret_cast(new sockaddr_storage); + memcpy(_platform_data, src._platform_data, sizeof(sockaddr_storage)); +} + + + +SocketAddress::SocketAddress(const char * addrString, int port, SocketAddress::address_type_t type) +{ + _checkWSAStartup(); + _platform_data = reinterpret_cast(new sockaddr_storage); + memset(_platform_data, 0, sizeof(sockaddr_storage)); + + // default to ipv4 in case the following operation fails + reinterpret_cast(_platform_data)->ss_family = AF_INET; + + setAddressFromString(addrString, type); + setPort(port); +} + +SocketAddress::SocketAddress(void * platform_data) + : _platform_data(platform_data) +{ _checkWSAStartup(); } + +SocketAddress & SocketAddress::operator = (const SocketAddress &src) +{ + memcpy(_platform_data, src._platform_data, sizeof(sockaddr_storage)); + return *this; +} + + +SocketAddress::~SocketAddress() +{ + delete reinterpret_cast(_platform_data); +} + +SocketAddress::address_type_t SocketAddress::getAddressType() const +{ + switch(reinterpret_cast(_platform_data)->ss_family) { + case AF_INET: + return ADDRESS_TYPE_INET; + case AF_INET6: + return ADDRESS_TYPE_INET6; + default: + assert(!"should not reach here"); + return ADDRESS_TYPE_INET; + } +} + +int SocketAddress::getPort() const +{ + switch (getAddressType()) { + case ADDRESS_TYPE_INET: + return (int)ntohs(reinterpret_cast(_platform_data)->sin_port); + case ADDRESS_TYPE_INET6: + return (int)ntohs(reinterpret_cast(_platform_data)->sin6_port); + default: + return 0; + } +} + +u_result SocketAddress::setPort(int port) +{ + switch (getAddressType()) { + case ADDRESS_TYPE_INET: + reinterpret_cast(_platform_data)->sin_port = htons((short)port); + break; + case ADDRESS_TYPE_INET6: + reinterpret_cast(_platform_data)->sin6_port = htons((short)port); + break; + default: + return RESULT_OPERATION_FAIL; + } + return RESULT_OK; +} + +u_result SocketAddress::setAddressFromString(const char * address_string, SocketAddress::address_type_t type) +{ + int ans = 0; + int prevPort = getPort(); + switch (type) { + case ADDRESS_TYPE_INET: + reinterpret_cast(_platform_data)->ss_family = AF_INET; + ans = _inet_pton(AF_INET, + address_string, + &reinterpret_cast(_platform_data)->sin_addr); + break; + + + case ADDRESS_TYPE_INET6: + + reinterpret_cast(_platform_data)->ss_family = AF_INET6; + ans = _inet_pton(AF_INET6, + address_string, + &reinterpret_cast(_platform_data)->sin6_addr); + break; + + default: + return RESULT_INVALID_DATA; + + } + setPort(prevPort); + + return ans<=0?RESULT_INVALID_DATA:RESULT_OK; +} + + +u_result SocketAddress::getAddressAsString(char * buffer, size_t buffersize) const +{ + int net_family = reinterpret_cast(_platform_data)->ss_family; + const char *ans = NULL; + switch (net_family) { + case AF_INET: + ans = _inet_ntop(net_family, &reinterpret_cast(_platform_data)->sin_addr, + buffer, buffersize); + break; + + case AF_INET6: + ans = _inet_ntop(net_family, &reinterpret_cast(_platform_data)->sin6_addr, + buffer, buffersize); + + break; + } + return ans<=0?RESULT_OPERATION_FAIL:RESULT_OK; +} + + + +size_t SocketAddress::LoopUpHostName(const char * hostname, const char * sevicename, std::vector &addresspool , bool performDNS, SocketAddress::address_type_t type) +{ + struct addrinfo hints; + struct addrinfo *result; + int ans; + _checkWSAStartup(); + memset(&hints, 0, sizeof(struct addrinfo)); + hints.ai_family = _halAddrTypeToOSType(type); + hints.ai_flags = AI_PASSIVE; + + if (!performDNS) { + hints.ai_family |= AI_NUMERICSERV | AI_NUMERICHOST; + + } + + ans = getaddrinfo(hostname, sevicename, &hints, &result); + + addresspool.clear(); + + if (ans != 0) { + // hostname loopup failed + return 0; + } + + + for (struct addrinfo * cursor = result; cursor != NULL; cursor = cursor->ai_next) { + if (cursor->ai_family == ADDRESS_TYPE_INET || cursor->ai_family == ADDRESS_TYPE_INET6) { + sockaddr_storage * storagebuffer = new sockaddr_storage; + assert(sizeof(sockaddr_storage) >= cursor->ai_addrlen); + memcpy(storagebuffer, cursor->ai_addr, cursor->ai_addrlen); + addresspool.push_back(SocketAddress(storagebuffer)); + } + } + + + freeaddrinfo(result); + + return addresspool.size(); +} + + +u_result SocketAddress::getRawAddress(_u8 * buffer, size_t bufferSize) const +{ + switch (getAddressType()) { + case ADDRESS_TYPE_INET: + if (bufferSize < sizeof(reinterpret_cast(_platform_data)->sin_addr.s_addr)) return RESULT_INSUFFICIENT_MEMORY; + + memcpy(buffer, &reinterpret_cast(_platform_data)->sin_addr.s_addr, sizeof(reinterpret_cast(_platform_data)->sin_addr.s_addr)); + + + break; + case ADDRESS_TYPE_INET6: + if (bufferSize < sizeof(reinterpret_cast(_platform_data)->sin6_addr.s6_addr)) return RESULT_INSUFFICIENT_MEMORY; + memcpy(buffer, reinterpret_cast(_platform_data)->sin6_addr.s6_addr, sizeof(reinterpret_cast(_platform_data)->sin6_addr.s6_addr)); + + break; + default: + return RESULT_OPERATION_FAIL; + } + return RESULT_OK; +} + + +void SocketAddress::setLoopbackAddress(SocketAddress::address_type_t type) +{ + + int prevPort = getPort(); + switch (type) { + case ADDRESS_TYPE_INET: + { + sockaddr_in * addrv4 = reinterpret_cast(_platform_data); + addrv4->sin_family = AF_INET; + addrv4->sin_addr.s_addr = htonl(INADDR_LOOPBACK); + } + break; + case ADDRESS_TYPE_INET6: + { + sockaddr_in6 * addrv6 = reinterpret_cast(_platform_data); + addrv6->sin6_family = AF_INET6; + addrv6->sin6_addr = in6addr_loopback; + + } + break; + default: + return; + } + + setPort(prevPort); +} + +void SocketAddress::setBroadcastAddressIPv4() +{ + + int prevPort = getPort(); + sockaddr_in * addrv4 = reinterpret_cast(_platform_data); + addrv4->sin_family = AF_INET; + addrv4->sin_addr.s_addr = htonl(INADDR_BROADCAST); + setPort(prevPort); + +} + +void SocketAddress::setAnyAddress(SocketAddress::address_type_t type) +{ + int prevPort = getPort(); + switch (type) { + case ADDRESS_TYPE_INET: + { + sockaddr_in * addrv4 = reinterpret_cast(_platform_data); + addrv4->sin_family = AF_INET; + addrv4->sin_addr.s_addr = htonl(INADDR_ANY); + } + break; + case ADDRESS_TYPE_INET6: + { + sockaddr_in6 * addrv6 = reinterpret_cast(_platform_data); + addrv6->sin6_family = AF_INET6; + addrv6->sin6_addr = in6addr_any; + + } + break; + default: + return; + } + + setPort(prevPort); + + +} + + +}} + + + +///-------------------------------- + + +namespace rp { namespace arch { namespace net{ + +using namespace rp::net; + +class _single_thread StreamSocketImpl : public StreamSocket +{ +public: + + StreamSocketImpl(SOCKET fd) + : _socket_fd(fd) + { + assert(fd>=0); + int bool_true = 1; + ::setsockopt( _socket_fd, SOL_SOCKET, SO_REUSEADDR , (char *)&bool_true, (int)sizeof(bool_true) ); + + enableNoDelay(true); + this->setTimeout(DEFAULT_SOCKET_TIMEOUT, SOCKET_DIR_BOTH); + } + + virtual ~StreamSocketImpl() + { + closesocket(_socket_fd); + } + + virtual void dispose() + { + delete this; + } + + + virtual u_result bind(const SocketAddress & localaddr) + { + const struct sockaddr * addr = reinterpret_cast(localaddr.getPlatformData()); + assert(addr); + int ans = ::bind(_socket_fd, addr, (int)sizeof(sockaddr_storage)); + if (ans) { + return RESULT_OPERATION_FAIL; + } else { + return RESULT_OK; + } + } + + virtual u_result getLocalAddress(SocketAddress & localaddr) + { + struct sockaddr * addr = reinterpret_cast( const_cast(localaddr.getPlatformData())); //donnot do this at home... + assert(addr); + + int actualsize = sizeof(sockaddr_storage); + int ans = ::getsockname(_socket_fd, addr, &actualsize); + + assert(actualsize <= sizeof(sockaddr_storage)); + assert(addr->sa_family == AF_INET || addr->sa_family == AF_INET6); + + return ans?RESULT_OPERATION_FAIL:RESULT_OK; + } + + virtual u_result setTimeout(_u32 timeout, socket_direction_mask msk) + { + int ans; + timeval tv; + tv.tv_sec = timeout / 1000; + tv.tv_usec = (timeout % 1000) * 1000; + + if (msk & SOCKET_DIR_RD) { + ans = ::setsockopt( _socket_fd, SOL_SOCKET, SO_RCVTIMEO, (char *)&tv, (int)sizeof(tv) ); + if (ans) return RESULT_OPERATION_FAIL; + } + + if (msk & SOCKET_DIR_WR) { + ans = ::setsockopt( _socket_fd, SOL_SOCKET, SO_SNDTIMEO, (char *)&tv, (int)sizeof(tv) ); + if (ans) return RESULT_OPERATION_FAIL; + } + + return RESULT_OK; + } + + virtual u_result connect(const SocketAddress & pairAddress) + { + const struct sockaddr * addr = reinterpret_cast(pairAddress.getPlatformData()); + int ans = ::connect(_socket_fd, addr, (int)sizeof(sockaddr_storage)); + if (!ans) return RESULT_OK; + + + switch (WSAGetLastError()) { + case WSAEAFNOSUPPORT: + return RESULT_OPERATION_NOT_SUPPORT; +#if 0 + case EINPROGRESS: + return RESULT_OK; //treat async connection as good status +#endif + case WSAETIMEDOUT: + return RESULT_OPERATION_TIMEOUT; + default: + return RESULT_OPERATION_FAIL; + } + } + + virtual u_result listen(int backlog) + { + int ans = ::listen( _socket_fd, backlog); + + return ans?RESULT_OPERATION_FAIL:RESULT_OK; + } + + virtual StreamSocket * accept(SocketAddress * pairAddress) + { + int addrsize; + addrsize = sizeof(sockaddr_storage); + SOCKET pair_socket = ::accept( _socket_fd, pairAddress?reinterpret_cast(const_cast(pairAddress->getPlatformData())):NULL + , &addrsize); + + if (pair_socket>=0) { + return new StreamSocketImpl(pair_socket); + } else { + return NULL; + } + } + + virtual u_result waitforIncomingConnection(_u32 timeout) + { + return waitforData(timeout); + } + + virtual u_result send(const void * buffer, size_t len) + { + int ans = ::send( _socket_fd, (const char *)buffer, len, 0); + if (ans != SOCKET_ERROR ) { + assert(ans == (int)len); + + return RESULT_OK; + } else { + switch(WSAGetLastError()) { + case WSAETIMEDOUT: + return RESULT_OPERATION_TIMEOUT; + default: + return RESULT_OPERATION_FAIL; + } + + } + + } + + virtual u_result recv(void *buf, size_t len, size_t & recv_len) + { + int ans = ::recv( _socket_fd, (char *)buf, len, 0); + //::setsockopt(_socket_fd, IPPROTO_TCP, TCP_QUICKACK, (const char *)1, sizeof(int)); + //::setsockopt(_socket_fd, IPPROTO_TCP, TCP_QUICKACK, (int[]){1}, sizeof(int)) + if (ans == SOCKET_ERROR) { + recv_len = 0; + switch(WSAGetLastError()) { + case WSAETIMEDOUT: + return RESULT_OPERATION_TIMEOUT; + default: + return RESULT_OPERATION_FAIL; + } + } else { + recv_len = ans; + return RESULT_OK; + } + } + + virtual u_result getPeerAddress(SocketAddress & peerAddr) + { + struct sockaddr * addr = reinterpret_cast(const_cast(peerAddr.getPlatformData())); //donnot do this at home... + assert(addr); + int actualsize = (int)sizeof(sockaddr_storage); + int ans = ::getpeername(_socket_fd, addr, &actualsize); + + assert(actualsize <= (int)sizeof(sockaddr_storage)); + assert(addr->sa_family == AF_INET || addr->sa_family == AF_INET6); + + return ans?RESULT_OPERATION_FAIL:RESULT_OK; + + } + + virtual u_result shutdown(socket_direction_mask mask) + { + int shutdw_opt ; + + switch (mask) { + case SOCKET_DIR_RD: + shutdw_opt = SD_RECEIVE; + break; + case SOCKET_DIR_WR: + shutdw_opt = SD_SEND; + break; + case SOCKET_DIR_BOTH: + default: + shutdw_opt = SD_BOTH; + } + + int ans = ::shutdown(_socket_fd, shutdw_opt); + return ans?RESULT_OPERATION_FAIL:RESULT_OK; + } + + virtual u_result enableKeepAlive(bool enable) + { + int bool_true = enable?1:0; + return ::setsockopt( _socket_fd, SOL_SOCKET, SO_KEEPALIVE , (const char *)&bool_true, (int)sizeof(bool_true) )?RESULT_OPERATION_FAIL:RESULT_OK; + } + + virtual u_result enableNoDelay(bool enable ) + { + int bool_true = enable?1:0; + return ::setsockopt( _socket_fd, IPPROTO_TCP, TCP_NODELAY, (const char *)&bool_true, (int)sizeof(bool_true) )?RESULT_OPERATION_FAIL:RESULT_OK; + } + + virtual u_result waitforSent(_u32 timeout ) + { + fd_set wrset; + FD_ZERO(&wrset); + FD_SET(_socket_fd, &wrset); + + timeval tv; + tv.tv_sec = timeout / 1000; + tv.tv_usec = (timeout % 1000) * 1000; + int ans = ::select(NULL, NULL, &wrset, NULL, &tv); + + switch (ans) { + case 1: + // fired + return RESULT_OK; + case 0: + // timeout + return RESULT_OPERATION_TIMEOUT; + default: + delay(0); //relax cpu + return RESULT_OPERATION_FAIL; + } + } + + virtual u_result waitforData(_u32 timeout ) + { + fd_set rdset; + FD_ZERO(&rdset); + FD_SET(_socket_fd, &rdset); + + timeval tv; + tv.tv_sec = timeout / 1000; + tv.tv_usec = (timeout % 1000) * 1000; + int ans = ::select(_socket_fd+1, &rdset, NULL, NULL, &tv); + + switch (ans) { + case 1: + // fired + return RESULT_OK; + case 0: + // timeout + return RESULT_OPERATION_TIMEOUT; + default: + delay(0); //relax cpu + return RESULT_OPERATION_FAIL; + } + } + +protected: + + SOCKET _socket_fd; + + +}; + + +class _single_thread DGramSocketImpl : public DGramSocket +{ +public: + + DGramSocketImpl(SOCKET fd) + : _socket_fd(fd) + { + assert(fd>=0); + int bool_true = 1; + ::setsockopt( _socket_fd, SOL_SOCKET, SO_REUSEADDR | SO_BROADCAST , (char *)&bool_true, (int)sizeof(bool_true) ); + setTimeout(DEFAULT_SOCKET_TIMEOUT, SOCKET_DIR_BOTH); + } + + virtual ~DGramSocketImpl() + { + closesocket(_socket_fd); + } + + virtual void dispose() + { + delete this; + } + + + virtual u_result bind(const SocketAddress & localaddr) + { + const struct sockaddr * addr = reinterpret_cast(localaddr.getPlatformData()); + assert(addr); + int ans = ::bind(_socket_fd, addr, (int)sizeof(sockaddr_storage)); + if (ans) { + return RESULT_OPERATION_FAIL; + } else { + return RESULT_OK; + } + } + + virtual u_result getLocalAddress(SocketAddress & localaddr) + { + struct sockaddr * addr = reinterpret_cast(const_cast((localaddr.getPlatformData()))); //donnot do this at home... + assert(addr); + + int actualsize = (int)sizeof(sockaddr_storage); + int ans = ::getsockname(_socket_fd, addr, &actualsize); + + assert(actualsize <= (int)sizeof(sockaddr_storage)); + assert(addr->sa_family == AF_INET || addr->sa_family == AF_INET6); + + return ans?RESULT_OPERATION_FAIL:RESULT_OK; + } + + virtual u_result setTimeout(_u32 timeout, socket_direction_mask msk) + { + int ans; + timeval tv; + tv.tv_sec = timeout / 1000; + tv.tv_usec = (timeout % 1000) * 1000; + + if (msk & SOCKET_DIR_RD) { + ans = ::setsockopt( _socket_fd, SOL_SOCKET, SO_RCVTIMEO, (const char *)&tv, (int)sizeof(tv) ); + if (ans) return RESULT_OPERATION_FAIL; + } + + if (msk & SOCKET_DIR_WR) { + ans = ::setsockopt( _socket_fd, SOL_SOCKET, SO_SNDTIMEO, (const char *)&tv, (int)sizeof(tv) ); + if (ans) return RESULT_OPERATION_FAIL; + } + + return RESULT_OK; + } + + + virtual u_result waitforSent(_u32 timeout ) + { + fd_set wrset; + FD_ZERO(&wrset); + FD_SET(_socket_fd, &wrset); + + timeval tv; + tv.tv_sec = timeout / 1000; + tv.tv_usec = (timeout % 1000) * 1000; + int ans = ::select(NULL, NULL, &wrset, NULL, &tv); + + switch (ans) { + case 1: + // fired + return RESULT_OK; + case 0: + // timeout + return RESULT_OPERATION_TIMEOUT; + default: + delay(0); //relax cpu + return RESULT_OPERATION_FAIL; + } + } + + virtual u_result waitforData(_u32 timeout ) + { + fd_set rdset; + FD_ZERO(&rdset); + FD_SET(_socket_fd, &rdset); + + timeval tv; + tv.tv_sec = timeout / 1000; + tv.tv_usec = (timeout % 1000) * 1000; + int ans = ::select(NULL, &rdset, NULL, NULL, &tv); + + switch (ans) { + case 1: + // fired + return RESULT_OK; + case 0: + // timeout + return RESULT_OPERATION_TIMEOUT; + default: + delay(0); //relax cpu + return RESULT_OPERATION_FAIL; + } + } + + virtual u_result sendTo(const SocketAddress & target, const void * buffer, size_t len) + { + const struct sockaddr * addr = reinterpret_cast(target.getPlatformData()); + assert(addr); + int ans = ::sendto( _socket_fd, (const char *)buffer, (int)len, 0, addr, (int)sizeof(sockaddr_storage)); + if (ans != SOCKET_ERROR) { + assert(ans == (int)len); + return RESULT_OK; + } else { + switch(WSAGetLastError()) { + case WSAETIMEDOUT: + return RESULT_OPERATION_TIMEOUT; + case WSAEMSGSIZE: + return RESULT_INVALID_DATA; + default: + return RESULT_OPERATION_FAIL; + } + } + + } + + + virtual u_result recvFrom(void *buf, size_t len, size_t & recv_len, SocketAddress * sourceAddr) + { + struct sockaddr * addr = (sourceAddr?reinterpret_cast(const_cast(sourceAddr->getPlatformData())):NULL); + int source_addr_size = (sourceAddr?sizeof(sockaddr_storage):0); + + int ans = ::recvfrom( _socket_fd, (char *)buf, (int)len, 0, addr, addr?&source_addr_size:NULL); + if (ans == SOCKET_ERROR) { + recv_len = 0; + int errCode = WSAGetLastError(); + switch(errCode) { + case WSAETIMEDOUT: + return RESULT_OPERATION_TIMEOUT; + default: + return RESULT_OPERATION_FAIL; + } + } else { + recv_len = ans; + return RESULT_OK; + } + + } + + + +protected: + SOCKET _socket_fd; + +}; + + +}}} + + +namespace rp { namespace net{ + + + +static inline int _socketHalFamilyToOSFamily(SocketBase::socket_family_t family) +{ + switch (family) { + case SocketBase::SOCKET_FAMILY_INET: + return AF_INET; + case SocketBase::SOCKET_FAMILY_INET6: + return AF_INET6; + case SocketBase::SOCKET_FAMILY_RAW: + return AF_UNSPEC; //win32 doesn't support RAW Packet + default: + assert(!"should not reach here"); + return AF_INET; // force treating as IPv4 in release mode + } + +} + +StreamSocket * StreamSocket::CreateSocket(SocketBase::socket_family_t family) +{ + _checkWSAStartup(); + if (family == SOCKET_FAMILY_RAW) return NULL; + + + int socket_family = _socketHalFamilyToOSFamily(family); + int socket_fd = ::socket(socket_family, SOCK_STREAM, 0); + if (socket_fd == -1) return NULL; + StreamSocket * newborn = static_cast(new rp::arch::net::StreamSocketImpl(socket_fd)); + return newborn; + +} + + +DGramSocket * DGramSocket::CreateSocket(SocketBase::socket_family_t family) +{ + _checkWSAStartup(); + int socket_family = _socketHalFamilyToOSFamily(family); + + + int socket_fd = ::socket(socket_family, (family==SOCKET_FAMILY_RAW)?SOCK_RAW:SOCK_DGRAM, 0); + if (socket_fd == -1) return NULL; + DGramSocket * newborn = static_cast(new rp::arch::net::DGramSocketImpl(socket_fd)); + return newborn; + +} + + +}} + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/win32/timer.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/win32/timer.cpp new file mode 100644 index 0000000..b95c054 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/win32/timer.cpp @@ -0,0 +1,62 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#include "sdkcommon.h" +#include +#pragma comment(lib, "Winmm.lib") + +namespace rp{ namespace arch{ + +static LARGE_INTEGER _current_freq; + +void HPtimer_reset() +{ + BOOL ans=QueryPerformanceFrequency(&_current_freq); + _current_freq.QuadPart/=1000; +} + +_u32 getHDTimer() +{ + LARGE_INTEGER current; + QueryPerformanceCounter(¤t); + + return (_u32)(current.QuadPart/_current_freq.QuadPart); +} + +BEGIN_STATIC_CODE(timer_cailb) +{ + HPtimer_reset(); +}END_STATIC_CODE(timer_cailb) + +}} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/win32/timer.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/win32/timer.h new file mode 100644 index 0000000..59b3982 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/win32/timer.h @@ -0,0 +1,47 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#pragma once + +#include "hal/types.h" + +#define delay(x) ::Sleep(x) + +namespace rp{ namespace arch{ + void HPtimer_reset(); + _u32 getHDTimer(); +}} + +#define getms() rp::arch::getHDTimer() + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/win32/winthread.hpp b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/win32/winthread.hpp new file mode 100644 index 0000000..604f1d3 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/arch/win32/winthread.hpp @@ -0,0 +1,144 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#include "sdkcommon.h" +#include + +namespace rp{ namespace hal{ + +Thread Thread::create(thread_proc_t proc, void * data) +{ + Thread newborn(proc, data); + + newborn._handle = (_word_size_t)( + _beginthreadex(NULL, 0, (unsigned int (_stdcall * )( void * ))proc, + data, 0, NULL)); + return newborn; +} + +u_result Thread::terminate() +{ + if (!this->_handle) return RESULT_OK; + if (TerminateThread( reinterpret_cast(this->_handle), -1)) + { + CloseHandle(reinterpret_cast(this->_handle)); + this->_handle = NULL; + return RESULT_OK; + }else + { + return RESULT_OPERATION_FAIL; + } +} + +u_result Thread::setPriority( priority_val_t p) +{ + if (!this->_handle) return RESULT_OPERATION_FAIL; + + int win_priority = THREAD_PRIORITY_NORMAL; + switch(p) + { + case PRIORITY_REALTIME: + win_priority = THREAD_PRIORITY_TIME_CRITICAL; + break; + case PRIORITY_HIGH: + win_priority = THREAD_PRIORITY_HIGHEST; + break; + case PRIORITY_NORMAL: + win_priority = THREAD_PRIORITY_NORMAL; + break; + case PRIORITY_LOW: + win_priority = THREAD_PRIORITY_LOWEST; + break; + case PRIORITY_IDLE: + win_priority = THREAD_PRIORITY_IDLE; + break; + } + + if (SetThreadPriority(reinterpret_cast(this->_handle), win_priority)) + { + return RESULT_OK; + } + return RESULT_OPERATION_FAIL; +} + +Thread::priority_val_t Thread::getPriority() +{ + if (!this->_handle) return PRIORITY_NORMAL; + int win_priority = ::GetThreadPriority(reinterpret_cast(this->_handle)); + + if (win_priority == THREAD_PRIORITY_ERROR_RETURN) + { + return PRIORITY_NORMAL; + } + + if (win_priority >= THREAD_PRIORITY_TIME_CRITICAL ) + { + return PRIORITY_REALTIME; + } + else if (win_priority=THREAD_PRIORITY_ABOVE_NORMAL) + { + return PRIORITY_HIGH; + } + else if (win_priorityTHREAD_PRIORITY_BELOW_NORMAL) + { + return PRIORITY_NORMAL; + }else if (win_priority<=THREAD_PRIORITY_BELOW_NORMAL && win_priority>THREAD_PRIORITY_IDLE) + { + return PRIORITY_LOW; + }else if (win_priority<=THREAD_PRIORITY_IDLE) + { + return PRIORITY_IDLE; + } + return PRIORITY_NORMAL; +} + +u_result Thread::join(unsigned long timeout) +{ + if (!this->_handle) return RESULT_OK; + switch ( WaitForSingleObject(reinterpret_cast(this->_handle), timeout)) + { + case WAIT_OBJECT_0: + CloseHandle(reinterpret_cast(this->_handle)); + this->_handle = NULL; + return RESULT_OK; + case WAIT_ABANDONED: + return RESULT_OPERATION_FAIL; + case WAIT_TIMEOUT: + return RESULT_OPERATION_TIMEOUT; + } + + return RESULT_OK; +} + +}} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/abs_rxtx.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/abs_rxtx.h new file mode 100644 index 0000000..3c0e837 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/abs_rxtx.h @@ -0,0 +1,88 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#pragma once + +#include "hal/types.h" + +namespace rp{ namespace hal{ + +class serial_rxtx +{ +public: + enum{ + ANS_OK = 0, + ANS_TIMEOUT = -1, + ANS_DEV_ERR = -2, + }; + + static serial_rxtx * CreateRxTx(); + static void ReleaseRxTx( serial_rxtx * ); + + serial_rxtx():_is_serial_opened(false){} + virtual ~serial_rxtx(){} + + virtual void flush( _u32 flags) = 0; + + virtual bool bind(const char * portname, _u32 baudrate, _u32 flags = 0) = 0; + virtual bool open() = 0; + virtual void close() = 0; + + virtual int waitfordata(size_t data_count,_u32 timeout = -1, size_t * returned_size = NULL) = 0; + + virtual int senddata(const unsigned char * data, size_t size) = 0; + virtual int recvdata(unsigned char * data, size_t size) = 0; + + virtual int waitforsent(_u32 timeout = -1, size_t * returned_size = NULL) = 0; + virtual int waitforrecv(_u32 timeout = -1, size_t * returned_size = NULL) = 0; + + virtual size_t rxqueue_count() = 0; + + virtual void setDTR() = 0; + virtual void clearDTR() = 0; + virtual void cancelOperation() {} + + virtual bool isOpened() + { + return _is_serial_opened; + } + +protected: + volatile bool _is_serial_opened; +}; + +}} + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/assert.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/assert.h new file mode 100644 index 0000000..37cfdd5 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/assert.h @@ -0,0 +1,18 @@ +#ifndef _INFRA_HAL_ASSERT_H +#define _INFRA_HAL_ASSERT_H + +#ifdef WIN32 +#include +#ifndef assert +#define assert(x) _ASSERT(x) +#endif +#elif defined(_AVR_) +#define assert(x) +#elif defined(__GNUC__) +#ifndef assert +#define assert(x) +#endif +#else +#error assert.h cannot identify your platform +#endif +#endif diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/byteops.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/byteops.h new file mode 100644 index 0000000..c86bde3 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/byteops.h @@ -0,0 +1,94 @@ +/* + * RoboPeak Project + * Copyright 2009 - 2013 + * + * RPOS - Byte Operations + * + */ + +#pragma once + +// byte swapping operations for compiling time + +#define __static_byteswap_16(x) ((_u16)( \ + (((_u16)(x) & (_u16)0x00FFU) << 8) | \ + (((_u16)(x) & (_u16)0xFF00U) >> 8))) + +#define __static_byteswap_32(x) ((_u32)( \ + (((_u32)(x) & (_u32)0x000000FFUL) << 24) | \ + (((_u32)(x) & (_u32)0x0000FF00UL) << 8) | \ + (((_u32)(x) & (_u32)0x00FF0000UL) >> 8) | \ + (((_u32)(x) & (_u32)0xFF000000UL) >> 24))) + +#define __static_byteswap_64(x) ((_u64)( \ + (((_u64)(x) & (_u64)0x00000000000000ffULL) << 56) | \ + (((_u64)(x) & (_u64)0x000000000000ff00ULL) << 40) | \ + (((_u64)(x) & (_u64)0x0000000000ff0000ULL) << 24) | \ + (((_u64)(x) & (_u64)0x00000000ff000000ULL) << 8) | \ + (((_u64)(x) & (_u64)0x000000ff00000000ULL) >> 8) | \ + (((_u64)(x) & (_u64)0x0000ff0000000000ULL) >> 24) | \ + (((_u64)(x) & (_u64)0x00ff000000000000ULL) >> 40) | \ + (((_u64)(x) & (_u64)0xff00000000000000ULL) >> 56))) + + +#define __fast_swap(a, b) do { (a) ^= (b); (b) ^= (a); (a) ^= (b); } while(0) + + +static inline _u16 __byteswap_16(_u16 x) +{ +#ifdef __arch_byteswap_16 + return __arch_byteswap_16(x); +#else + return __static_byteswap_16(x); +#endif +} + +static inline _u32 __byteswap_32(_u32 x) +{ +#ifdef __arch_byteswap_32 + return __arch_byteswap_32(x); +#else + return __static_byteswap_32(x); +#endif +} + +static inline _u64 __byteswap_64(_u64 x) +{ +#ifdef __arch_byteswap_64 + return __arch_byteswap_64(x); +#else + return __static_byteswap_64(x); +#endif +} + + +#ifdef float +static inline float __byteswap_float(float x) +{ +#ifdef __arch_byteswap_float + return __arch_byteswap_float(x); +#else + _u8 * raw = (_u8 *)&x; + __fast_swap(raw[0], raw[3]); + __fast_swap(raw[1], raw[2]); + return x; +#endif +} +#endif + + +#ifdef double +static inline double __byteswap_double(double x) +{ +#ifdef __arch_byteswap_double + return __arch_byteswap_double(x); +#else + _u8 * raw = (_u8 *)&x; + __fast_swap(raw[0], raw[7]); + __fast_swap(raw[1], raw[6]); + __fast_swap(raw[2], raw[5]); + __fast_swap(raw[3], raw[4]); + return x; +#endif +} +#endif diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/event.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/event.h new file mode 100644 index 0000000..5e05234 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/event.h @@ -0,0 +1,186 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#pragma once +namespace rp{ namespace hal{ + +class Event +{ +public: + + enum + { + EVENT_OK = 1, + EVENT_TIMEOUT = -1, + EVENT_FAILED = 0, + }; + + Event(bool isAutoReset = true, bool isSignal = false) +#ifdef _WIN32 + : _event(NULL) +#else + : _is_signalled(isSignal) + , _isAutoReset(isAutoReset) +#endif + { +#ifdef _WIN32 + _event = CreateEvent(NULL, isAutoReset?FALSE:TRUE, isSignal?TRUE:FALSE, NULL); +#else + pthread_mutex_init(&_cond_locker, NULL); + pthread_cond_init(&_cond_var, NULL); +#endif + } + + ~ Event() + { + release(); + } + + void set( bool isSignal = true ) + { + if (isSignal){ +#ifdef _WIN32 + SetEvent(_event); +#else + pthread_mutex_lock(&_cond_locker); + + if ( _is_signalled == false ) + { + _is_signalled = true; + pthread_cond_signal(&_cond_var); + } + pthread_mutex_unlock(&_cond_locker); +#endif + } + else + { +#ifdef _WIN32 + ResetEvent(_event); +#else + pthread_mutex_lock(&_cond_locker); + _is_signalled = false; + pthread_mutex_unlock(&_cond_locker); +#endif + } + } + + unsigned long wait( unsigned long timeout = 0xFFFFFFFF ) + { +#ifdef _WIN32 + switch (WaitForSingleObject(_event, timeout==0xFFFFFFF?INFINITE:(DWORD)timeout)) + { + case WAIT_FAILED: + return EVENT_FAILED; + case WAIT_OBJECT_0: + return EVENT_OK; + case WAIT_TIMEOUT: + return EVENT_TIMEOUT; + } + return EVENT_OK; +#else + unsigned long ans = EVENT_OK; + pthread_mutex_lock( &_cond_locker ); + + if ( !_is_signalled ) + { + + if (timeout == 0xFFFFFFFF){ + pthread_cond_wait(&_cond_var,&_cond_locker); + }else + { + timespec wait_time; + timeval now; + gettimeofday(&now,NULL); + + wait_time.tv_sec = timeout/1000 + now.tv_sec; + wait_time.tv_nsec = (timeout%1000)*1000000ULL + now.tv_usec*1000; + + if (wait_time.tv_nsec >= 1000000000) + { + ++wait_time.tv_sec; + wait_time.tv_nsec -= 1000000000; + } + switch (pthread_cond_timedwait(&_cond_var,&_cond_locker,&wait_time)) + { + case 0: + // signalled + break; + case ETIMEDOUT: + // time up + ans = EVENT_TIMEOUT; + goto _final; + break; + default: + ans = EVENT_FAILED; + goto _final; + } + + } + } + + assert(_is_signalled); + + if ( _isAutoReset ) + { + _is_signalled = false; + } +_final: + pthread_mutex_unlock( &_cond_locker ); + + return ans; +#endif + + } +protected: + + void release() + { +#ifdef _WIN32 + CloseHandle(_event); +#else + pthread_mutex_destroy(&_cond_locker); + pthread_cond_destroy(&_cond_var); +#endif + } + +#ifdef _WIN32 + HANDLE _event; +#else + pthread_cond_t _cond_var; + pthread_mutex_t _cond_locker; + bool _is_signalled; + bool _isAutoReset; +#endif +}; +}} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/locker.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/locker.h new file mode 100644 index 0000000..d7a13fb --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/locker.h @@ -0,0 +1,186 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#pragma once +namespace rp{ namespace hal{ + +class Locker +{ +public: + enum LOCK_STATUS + { + LOCK_OK = 1, + LOCK_TIMEOUT = -1, + LOCK_FAILED = 0 + }; + + Locker(){ +#ifdef _WIN32 + _lock = NULL; +#endif + init(); + } + + ~Locker() + { + release(); + } + + Locker::LOCK_STATUS lock(unsigned long timeout = 0xFFFFFFFF) + { +#ifdef _WIN32 + switch (WaitForSingleObject(_lock, timeout==0xFFFFFFF?INFINITE:(DWORD)timeout)) + { + case WAIT_ABANDONED: + return LOCK_FAILED; + case WAIT_OBJECT_0: + return LOCK_OK; + case WAIT_TIMEOUT: + return LOCK_TIMEOUT; + } + +#else +#ifdef _MACOS + if (timeout !=0 ) { + if (pthread_mutex_lock(&_lock) == 0) return LOCK_OK; + } +#else + if (timeout == 0xFFFFFFFF){ + if (pthread_mutex_lock(&_lock) == 0) return LOCK_OK; + } +#endif + else if (timeout == 0) + { + if (pthread_mutex_trylock(&_lock) == 0) return LOCK_OK; + } +#ifndef _MACOS + else + { + timespec wait_time; + timeval now; + gettimeofday(&now,NULL); + + wait_time.tv_sec = timeout/1000 + now.tv_sec; + wait_time.tv_nsec = (timeout%1000)*1000000 + now.tv_usec*1000; + + if (wait_time.tv_nsec >= 1000000000) + { + ++wait_time.tv_sec; + wait_time.tv_nsec -= 1000000000; + } + switch (pthread_mutex_timedlock(&_lock,&wait_time)) + { + case 0: + return LOCK_OK; + case ETIMEDOUT: + return LOCK_TIMEOUT; + } + } +#endif +#endif + + return LOCK_FAILED; + } + + + void unlock() + { +#ifdef _WIN32 + ReleaseMutex(_lock); +#else + pthread_mutex_unlock(&_lock); +#endif + } + +#ifdef _WIN32 + HANDLE getLockHandle() + { + return _lock; + } +#else + pthread_mutex_t *getLockHandle() + { + return &_lock; + } +#endif + + + +protected: + void init() + { +#ifdef _WIN32 + _lock = CreateMutex(NULL,FALSE,NULL); +#else + pthread_mutex_init(&_lock, NULL); +#endif + } + + void release() + { + unlock(); //force unlock before release +#ifdef _WIN32 + + if (_lock) CloseHandle(_lock); + _lock = NULL; +#else + pthread_mutex_destroy(&_lock); +#endif + } + +#ifdef _WIN32 + HANDLE _lock; +#else + pthread_mutex_t _lock; +#endif +}; + +class AutoLocker +{ +public : + AutoLocker(Locker &l): _binded(l) + { + _binded.lock(); + } + + void forceUnlock() { + _binded.unlock(); + } + ~AutoLocker() {_binded.unlock();} + Locker & _binded; +}; + + +}} + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/socket.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/socket.h new file mode 100644 index 0000000..55f94b5 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/socket.h @@ -0,0 +1,151 @@ +/* + * RoboPeak Project + * HAL Layer - Socket Interface + * Copyright 2009 - 2013 RoboPeak Project + */ + +#pragma once + +#include + +namespace rp{ namespace net { + +class _single_thread SocketAddress +{ + +public: + enum address_type_t { + ADDRESS_TYPE_UNSPEC = 0, + ADDRESS_TYPE_INET = 1, + ADDRESS_TYPE_INET6 = 2, + }; + +public: + + + + SocketAddress(); + SocketAddress(const char * addrString, int port, address_type_t = ADDRESS_TYPE_INET); + // do not use this function, internal usage + SocketAddress(void * platform_data); + SocketAddress(const SocketAddress &); + + SocketAddress & operator = (const SocketAddress &); + + virtual ~SocketAddress(); + + virtual int getPort() const; + virtual u_result setPort(int port); + + virtual u_result setAddressFromString(const char * address_string, address_type_t = ADDRESS_TYPE_INET); + virtual u_result getAddressAsString(char * buffer, size_t buffersize) const; + + virtual address_type_t getAddressType() const; + + virtual u_result getRawAddress(_u8 * buffer, size_t bufferSize) const; + + const void * getPlatformData() const { + return _platform_data; + } + + virtual void setLoopbackAddress(address_type_t = ADDRESS_TYPE_INET); + virtual void setBroadcastAddressIPv4(); + virtual void setAnyAddress(address_type_t = ADDRESS_TYPE_INET); + +public: + static size_t LoopUpHostName(const char * hostname, const char * sevicename, std::vector &addresspool , bool performDNS = true, address_type_t = ADDRESS_TYPE_INET); + +protected: + void * _platform_data; +}; + + + +class SocketBase +{ +public: + enum socket_family_t { + SOCKET_FAMILY_INET = 0, + SOCKET_FAMILY_INET6 = 1, + SOCKET_FAMILY_RAW = 2, + }; + + + enum socket_direction_mask { + SOCKET_DIR_RD = 0x1, + SOCKET_DIR_WR = 0x2, + SOCKET_DIR_BOTH = (SOCKET_DIR_RD | SOCKET_DIR_WR), + }; + + enum { + DEFAULT_SOCKET_TIMEOUT = 10000, //10sec + }; + + virtual ~SocketBase() {} + virtual void dispose() = 0; + virtual u_result bind(const SocketAddress & ) = 0; + + virtual u_result getLocalAddress(SocketAddress & ) = 0; + virtual u_result setTimeout(_u32 timeout, socket_direction_mask msk = SOCKET_DIR_BOTH) = 0; + + virtual u_result waitforSent(_u32 timeout = DEFAULT_SOCKET_TIMEOUT) = 0; + virtual u_result waitforData(_u32 timeout = DEFAULT_SOCKET_TIMEOUT) = 0; +protected: + SocketBase() {} +}; + + +class _single_thread StreamSocket : public SocketBase +{ +public: + + enum { + MAX_BACKLOG = 128, + }; + + static StreamSocket * CreateSocket(socket_family_t family = SOCKET_FAMILY_INET); + + virtual u_result connect(const SocketAddress & pairAddress) = 0; + + virtual u_result listen(int backlog = MAX_BACKLOG) = 0; + virtual StreamSocket * accept(SocketAddress * pairAddress = NULL) = 0; + virtual u_result waitforIncomingConnection(_u32 timeout = DEFAULT_SOCKET_TIMEOUT) = 0; + + virtual u_result send(const void * buffer, size_t len) = 0; + + virtual u_result recv(void *buf, size_t len, size_t & recv_len) = 0; + + virtual u_result getPeerAddress(SocketAddress & ) = 0; + + virtual u_result shutdown(socket_direction_mask mask) = 0; + + virtual u_result enableKeepAlive(bool enable = true) = 0; + + virtual u_result enableNoDelay(bool enable = true) = 0; + +protected: + virtual ~StreamSocket() {} // use dispose(); + StreamSocket() {} +}; + +class _single_thread DGramSocket: public SocketBase +{ + +public: + + static DGramSocket * CreateSocket(socket_family_t family = SOCKET_FAMILY_INET); + + + + virtual u_result sendTo(const SocketAddress & target, const void * buffer, size_t len) = 0; + + virtual u_result recvFrom(void *buf, size_t len, size_t & recv_len, SocketAddress * sourceAddr = NULL) = 0; + + +protected: + virtual ~DGramSocket() {} // use dispose(); + + DGramSocket() {} +}; + +}} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/thread.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/thread.cpp new file mode 100644 index 0000000..16ccb90 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/thread.cpp @@ -0,0 +1,48 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#include "sdkcommon.h" +#include "hal/thread.h" + +#if defined(_WIN32) +#include "arch/win32/winthread.hpp" +#elif defined(_MACOS) +#include "arch/macOS/thread.hpp" +#elif defined(__GNUC__) +#include "arch/linux/thread.hpp" +#else +#error no threading implemention found for this platform. +#endif + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/thread.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/thread.h new file mode 100644 index 0000000..94074b8 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/thread.h @@ -0,0 +1,87 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#pragma once + +#include "hal/types.h" +#define CLASS_THREAD(c , x ) \ + rp::hal::Thread::create_member(this ) + +namespace rp{ namespace hal{ + +class Thread +{ +public: + enum priority_val_t + { + PRIORITY_REALTIME = 0, + PRIORITY_HIGH = 1, + PRIORITY_NORMAL = 2, + PRIORITY_LOW = 3, + PRIORITY_IDLE = 4, + }; + + template + static Thread create_member(T * pthis) + { + return create(_thread_thunk, pthis); + } + + template + static _word_size_t THREAD_PROC _thread_thunk(void * data) + { + return (static_cast(data)->*PROC)(); + } + static Thread create(thread_proc_t proc, void * data = NULL ); + +public: + ~Thread() { } + Thread(): _data(NULL),_func(NULL),_handle(0) {} + _word_size_t getHandle(){ return _handle;} + u_result terminate(); + void *getData() { return _data;} + u_result join(unsigned long timeout = -1); + u_result setPriority( priority_val_t p); + priority_val_t getPriority(); + + bool operator== ( const Thread & right) { return this->_handle == right._handle; } +protected: + Thread( thread_proc_t proc, void * data ): _data(data),_func(proc), _handle(0) {} + void * _data; + thread_proc_t _func; + _word_size_t _handle; +}; + +}} + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/types.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/types.h new file mode 100644 index 0000000..c9bb902 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/types.h @@ -0,0 +1,119 @@ +/* + * Common Data Types for RP + */ + +#ifndef _INFRA_HAL_TYPES_H_ +#define _INFRA_HAL_TYPES_H_ + +//Basic types +// +#ifdef WIN32 + +//fake stdint.h for VC only + +typedef signed char int8_t; +typedef unsigned char uint8_t; + +typedef __int16 int16_t; +typedef unsigned __int16 uint16_t; + +typedef __int32 int32_t; +typedef unsigned __int32 uint32_t; + +typedef __int64 int64_t; +typedef unsigned __int64 uint64_t; + + +#define RPMODULE_EXPORT __declspec(dllexport) +#define RPMODULE_IMPORT __declspec(dllimport) + +#else + +#include + +#define RPMODULE_EXPORT +#define RPMODULE_IMPORT + +#endif + + +//based on stdint.h +typedef int8_t _s8; +typedef uint8_t _u8; + +typedef int16_t _s16; +typedef uint16_t _u16; + +typedef int32_t _s32; +typedef uint32_t _u32; + +typedef int64_t _s64; +typedef uint64_t _u64; + +#define __small_endian + +#ifndef __GNUC__ +#define __attribute__(x) +#endif + + +// The _word_size_t uses actual data bus width of the current CPU +#ifdef _AVR_ +typedef _u8 _word_size_t; +#define THREAD_PROC +#elif defined (WIN64) +typedef _u64 _word_size_t; +#define THREAD_PROC __stdcall +#elif defined (WIN32) +typedef _u32 _word_size_t; +#define THREAD_PROC __stdcall +#elif defined (__GNUC__) +typedef unsigned long _word_size_t; +#define THREAD_PROC +#elif defined (__ICCARM__) +typedef _u32 _word_size_t; +#define THREAD_PROC +#endif + + + +#define __le +#define __be + +#define _multi_thread +#define _single_thread + +typedef uint32_t u_result; + +#define RESULT_OK 0 +#define RESULT_FAIL_BIT 0x80000000 +#define RESULT_ALREADY_DONE 0x20 +#define RESULT_INVALID_DATA (0x8000 | RESULT_FAIL_BIT) +#define RESULT_OPERATION_FAIL (0x8001 | RESULT_FAIL_BIT) +#define RESULT_OPERATION_TIMEOUT (0x8002 | RESULT_FAIL_BIT) +#define RESULT_OPERATION_STOP (0x8003 | RESULT_FAIL_BIT) +#define RESULT_OPERATION_NOT_SUPPORT (0x8004 | RESULT_FAIL_BIT) +#define RESULT_FORMAT_NOT_SUPPORT (0x8005 | RESULT_FAIL_BIT) +#define RESULT_INSUFFICIENT_MEMORY (0x8006 | RESULT_FAIL_BIT) +#define RESULT_OPERATION_ABORTED (0x8007 | RESULT_FAIL_BIT) +#define RESULT_NOT_FOUND (0x8008 | RESULT_FAIL_BIT) +#define RESULT_RECONNECTING (0x8009 | RESULT_FAIL_BIT) + +#define IS_OK(x) ( ((x) & RESULT_FAIL_BIT) == 0 ) +#define IS_FAIL(x) ( ((x) & RESULT_FAIL_BIT) ) + + +typedef _word_size_t (THREAD_PROC * thread_proc_t ) ( void * ); + + +#if defined (_BUILD_AS_DLL) +#if defined (_BUILD_DLL_EXPORT) +#define RPMODULE_IMPEXP RPMODULE_EXPORT +#else +#define RPMODULE_IMPEXP RPMODULE_IMPORT +#endif +#else +#define RPMODULE_IMPEXP +#endif + +#endif diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/util.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/util.h new file mode 100644 index 0000000..2882b1d --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/hal/util.h @@ -0,0 +1,67 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#pragma once + + +//------ +/* _countof helper */ +#if !defined(_countof) +#if !defined(__cplusplus) +#define _countof(_Array) (sizeof(_Array) / sizeof(_Array[0])) +#else +extern "C++" +{ +template +char (*__countof_helper( _CountofType (&_Array)[_SizeOfArray]))[_SizeOfArray]; +#define _countof(_Array) sizeof(*__countof_helper(_Array)) +} +#endif +#endif + +/* _offsetof helper */ +#if !defined(offsetof) +#define offsetof(_structure, _field) ((_word_size_t)&(((_structure *)0x0)->_field)) +#endif + + +#define BEGIN_STATIC_CODE( _blockname_ ) \ + static class _static_code_##_blockname_ { \ + public: \ + _static_code_##_blockname_ () + + +#define END_STATIC_CODE( _blockname_ ) \ + } _instance_##_blockname_; + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/rplidar_driver.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/rplidar_driver.cpp new file mode 100644 index 0000000..1cc6774 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/rplidar_driver.cpp @@ -0,0 +1,2263 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#include "sdkcommon.h" + +#include "hal/abs_rxtx.h" +#include "hal/thread.h" +#include "hal/types.h" +#include "hal/assert.h" +#include "hal/locker.h" +#include "hal/socket.h" +#include "hal/event.h" +#include "rplidar_driver_impl.h" +#include "rplidar_driver_serial.h" +#include "rplidar_driver_TCP.h" + +#include + +#ifndef min +#define min(a,b) (((a) < (b)) ? (a) : (b)) +#endif + +namespace rp { namespace standalone{ namespace rplidar { + +#define DEPRECATED_WARN(fn, replacement) do { \ + static bool __shown__ = false; \ + if (!__shown__) { \ + printDeprecationWarn(fn, replacement); \ + __shown__ = true; \ + } \ + } while (0) + + static void printDeprecationWarn(const char* fn, const char* replacement) + { + fprintf(stderr, "*WARN* YOU ARE USING DEPRECATED API: %s, PLEASE MOVE TO %s\n", fn, replacement); + } + +static void convert(const rplidar_response_measurement_node_t& from, rplidar_response_measurement_node_hq_t& to) +{ + to.angle_z_q14 = (((from.angle_q6_checkbit) >> RPLIDAR_RESP_MEASUREMENT_ANGLE_SHIFT) << 8) / 90; //transfer to q14 Z-angle + to.dist_mm_q2 = from.distance_q2; + to.flag = (from.sync_quality & RPLIDAR_RESP_MEASUREMENT_SYNCBIT); // trasfer syncbit to HQ flag field + to.quality = (from.sync_quality >> RPLIDAR_RESP_MEASUREMENT_QUALITY_SHIFT) << RPLIDAR_RESP_MEASUREMENT_QUALITY_SHIFT; //remove the last two bits and then make quality from 0-63 to 0-255 +} + +static void convert(const rplidar_response_measurement_node_hq_t& from, rplidar_response_measurement_node_t& to) +{ + to.sync_quality = (from.flag & RPLIDAR_RESP_MEASUREMENT_SYNCBIT) | ((from.quality >> RPLIDAR_RESP_MEASUREMENT_QUALITY_SHIFT) << RPLIDAR_RESP_MEASUREMENT_QUALITY_SHIFT); + to.angle_q6_checkbit = 1 | (((from.angle_z_q14 * 90) >> 8) << RPLIDAR_RESP_MEASUREMENT_ANGLE_SHIFT); + to.distance_q2 = from.dist_mm_q2 > _u16(-1) ? _u16(0) : _u16(from.dist_mm_q2); +} + +// Factory Impl +RPlidarDriver * RPlidarDriver::CreateDriver(_u32 drivertype) +{ + switch (drivertype) { + case DRIVER_TYPE_SERIALPORT: + return new RPlidarDriverSerial(); + case DRIVER_TYPE_TCP: + return new RPlidarDriverTCP(); + default: + return NULL; + } +} + + +void RPlidarDriver::DisposeDriver(RPlidarDriver * drv) +{ + delete drv; +} + + +RPlidarDriverImplCommon::RPlidarDriverImplCommon() + : _isConnected(false) + , _isScanning(false) + , _isSupportingMotorCtrl(false) +{ + _cached_scan_node_hq_count = 0; + _cached_scan_node_hq_count_for_interval_retrieve = 0; + _cached_sampleduration_std = LEGACY_SAMPLE_DURATION; + _cached_sampleduration_express = LEGACY_SAMPLE_DURATION; +} + +bool RPlidarDriverImplCommon::isConnected() +{ + return _isConnected; +} + + +u_result RPlidarDriverImplCommon::reset(_u32 timeout) +{ + u_result ans; + + { + rp::hal::AutoLocker l(_lock); + + if (IS_FAIL(ans = _sendCommand(RPLIDAR_CMD_RESET))) { + return ans; + } + } + return RESULT_OK; +} + + +u_result RPlidarDriverImplCommon::clearNetSerialRxCache() +{ + if (!isConnected()) return RESULT_OPERATION_FAIL; + + _chanDev->flush(); + + return RESULT_OK; +} + +u_result RPlidarDriverImplCommon::_waitResponseHeader(rplidar_ans_header_t * header, _u32 timeout) +{ + int recvPos = 0; + _u32 startTs = getms(); + _u8 recvBuffer[sizeof(rplidar_ans_header_t)]; + _u8 *headerBuffer = reinterpret_cast<_u8 *>(header); + _u32 waitTime; + + while ((waitTime=getms() - startTs) <= timeout) { + size_t remainSize = sizeof(rplidar_ans_header_t) - recvPos; + size_t recvSize; + + bool ans = _chanDev->waitfordata(remainSize, timeout - waitTime, &recvSize); + if(!ans) return RESULT_OPERATION_TIMEOUT; + + if(recvSize > remainSize) recvSize = remainSize; + + recvSize = _chanDev->recvdata(recvBuffer, recvSize); + + for (size_t pos = 0; pos < recvSize; ++pos) { + _u8 currentByte = recvBuffer[pos]; + switch (recvPos) { + case 0: + if (currentByte != RPLIDAR_ANS_SYNC_BYTE1) { + continue; + } + + break; + case 1: + if (currentByte != RPLIDAR_ANS_SYNC_BYTE2) { + recvPos = 0; + continue; + } + break; + } + headerBuffer[recvPos++] = currentByte; + + if (recvPos == sizeof(rplidar_ans_header_t)) { + return RESULT_OK; + } + } + } + + return RESULT_OPERATION_TIMEOUT; +} + + + +u_result RPlidarDriverImplCommon::getHealth(rplidar_response_device_health_t & healthinfo, _u32 timeout) +{ + u_result ans; + + if (!isConnected()) return RESULT_OPERATION_FAIL; + + _disableDataGrabbing(); + + { + rp::hal::AutoLocker l(_lock); + + if (IS_FAIL(ans = _sendCommand(RPLIDAR_CMD_GET_DEVICE_HEALTH))) { + return ans; + } + + rplidar_ans_header_t response_header; + if (IS_FAIL(ans = _waitResponseHeader(&response_header, timeout))) { + return ans; + } + + // verify whether we got a correct header + if (response_header.type != RPLIDAR_ANS_TYPE_DEVHEALTH) { + return RESULT_INVALID_DATA; + } + + _u32 header_size = (response_header.size_q30_subtype & RPLIDAR_ANS_HEADER_SIZE_MASK); + if ( header_size < sizeof(rplidar_response_device_health_t)) { + return RESULT_INVALID_DATA; + } + + if (!_chanDev->waitfordata(header_size, timeout)) { + return RESULT_OPERATION_TIMEOUT; + } + _chanDev->recvdata(reinterpret_cast<_u8 *>(&healthinfo), sizeof(healthinfo)); + } + return RESULT_OK; +} + + + +u_result RPlidarDriverImplCommon::getDeviceInfo(rplidar_response_device_info_t & info, _u32 timeout) +{ + u_result ans; + + if (!isConnected()) return RESULT_OPERATION_FAIL; + + _disableDataGrabbing(); + + { + rp::hal::AutoLocker l(_lock); + + if (IS_FAIL(ans = _sendCommand(RPLIDAR_CMD_GET_DEVICE_INFO))) { + return ans; + } + + rplidar_ans_header_t response_header; + if (IS_FAIL(ans = _waitResponseHeader(&response_header, timeout))) { + return ans; + } + + // verify whether we got a correct header + if (response_header.type != RPLIDAR_ANS_TYPE_DEVINFO) { + return RESULT_INVALID_DATA; + } + + _u32 header_size = (response_header.size_q30_subtype & RPLIDAR_ANS_HEADER_SIZE_MASK); + if (header_size < sizeof(rplidar_response_device_info_t)) { + return RESULT_INVALID_DATA; + } + + if (!_chanDev->waitfordata(header_size, timeout)) { + return RESULT_OPERATION_TIMEOUT; + } + _chanDev->recvdata(reinterpret_cast<_u8 *>(&info), sizeof(info)); + } + return RESULT_OK; +} + +u_result RPlidarDriverImplCommon::getFrequency(bool inExpressMode, size_t count, float & frequency, bool & is4kmode) +{ + DEPRECATED_WARN("getFrequency(bool,size_t,float&,bool&)", "getFrequency(const RplidarScanMode&,size_t,float&)"); + + _u16 sample_duration = inExpressMode?_cached_sampleduration_express:_cached_sampleduration_std; + frequency = 1000000.0f/(count * sample_duration); + + if (sample_duration <= 277) { + is4kmode = true; + } else { + is4kmode = false; + } + + return RESULT_OK; +} + +u_result RPlidarDriverImplCommon::getFrequency(const RplidarScanMode& scanMode, size_t count, float & frequency) +{ + float sample_duration = scanMode.us_per_sample; + frequency = 1000000.0f / (count * sample_duration); + return RESULT_OK; +} + +u_result RPlidarDriverImplCommon::_waitNode(rplidar_response_measurement_node_t * node, _u32 timeout) +{ + int recvPos = 0; + _u32 startTs = getms(); + _u8 recvBuffer[sizeof(rplidar_response_measurement_node_t)]; + _u8 *nodeBuffer = (_u8*)node; + _u32 waitTime; + + while ((waitTime=getms() - startTs) <= timeout) { + size_t remainSize = sizeof(rplidar_response_measurement_node_t) - recvPos; + size_t recvSize; + + bool ans = _chanDev->waitfordata(remainSize, timeout-waitTime, &recvSize); + if(!ans) return RESULT_OPERATION_FAIL; + + if (recvSize > remainSize) recvSize = remainSize; + + recvSize = _chanDev->recvdata(recvBuffer, recvSize); + + for (size_t pos = 0; pos < recvSize; ++pos) { + _u8 currentByte = recvBuffer[pos]; + switch (recvPos) { + case 0: // expect the sync bit and its reverse in this byte + { + _u8 tmp = (currentByte>>1); + if ( (tmp ^ currentByte) & 0x1 ) { + // pass + } else { + continue; + } + + } + break; + case 1: // expect the highest bit to be 1 + { + if (currentByte & RPLIDAR_RESP_MEASUREMENT_CHECKBIT) { + // pass + } else { + recvPos = 0; + continue; + } + } + break; + } + nodeBuffer[recvPos++] = currentByte; + + if (recvPos == sizeof(rplidar_response_measurement_node_t)) { + return RESULT_OK; + } + } + } + + return RESULT_OPERATION_TIMEOUT; +} + +u_result RPlidarDriverImplCommon::_waitScanData(rplidar_response_measurement_node_t * nodebuffer, size_t & count, _u32 timeout) +{ + if (!_isConnected) { + count = 0; + return RESULT_OPERATION_FAIL; + } + + size_t recvNodeCount = 0; + _u32 startTs = getms(); + _u32 waitTime; + u_result ans; + + while ((waitTime = getms() - startTs) <= timeout && recvNodeCount < count) { + rplidar_response_measurement_node_t node; + if (IS_FAIL(ans = _waitNode(&node, timeout - waitTime))) { + return ans; + } + + nodebuffer[recvNodeCount++] = node; + + if (recvNodeCount == count) return RESULT_OK; + } + count = recvNodeCount; + return RESULT_OPERATION_TIMEOUT; +} + + +u_result RPlidarDriverImplCommon::_waitCapsuledNode(rplidar_response_capsule_measurement_nodes_t & node, _u32 timeout) +{ + int recvPos = 0; + _u32 startTs = getms(); + _u8 recvBuffer[sizeof(rplidar_response_capsule_measurement_nodes_t)]; + _u8 *nodeBuffer = (_u8*)&node; + _u32 waitTime; + + + while ((waitTime=getms() - startTs) <= timeout) { + size_t remainSize = sizeof(rplidar_response_capsule_measurement_nodes_t) - recvPos; + size_t recvSize; + + bool ans = _chanDev->waitfordata(remainSize, timeout-waitTime, &recvSize); + if(!ans) + { + return RESULT_OPERATION_TIMEOUT; + } + if (recvSize > remainSize) recvSize = remainSize; + + recvSize = _chanDev->recvdata(recvBuffer, recvSize); + + for (size_t pos = 0; pos < recvSize; ++pos) { + _u8 currentByte = recvBuffer[pos]; + + switch (recvPos) { + case 0: // expect the sync bit 1 + { + _u8 tmp = (currentByte>>4); + if ( tmp == RPLIDAR_RESP_MEASUREMENT_EXP_SYNC_1 ) { + // pass + } else { + _is_previous_capsuledataRdy = false; + continue; + } + + } + break; + case 1: // expect the sync bit 2 + { + _u8 tmp = (currentByte>>4); + if (tmp == RPLIDAR_RESP_MEASUREMENT_EXP_SYNC_2) { + // pass + } else { + recvPos = 0; + _is_previous_capsuledataRdy = false; + continue; + } + } + break; + } + nodeBuffer[recvPos++] = currentByte; + if (recvPos == sizeof(rplidar_response_capsule_measurement_nodes_t)) { + // calc the checksum ... + _u8 checksum = 0; + _u8 recvChecksum = ((node.s_checksum_1 & 0xF) | (node.s_checksum_2<<4)); + for (size_t cpos = offsetof(rplidar_response_capsule_measurement_nodes_t, start_angle_sync_q6); + cpos < sizeof(rplidar_response_capsule_measurement_nodes_t); ++cpos) + { + checksum ^= nodeBuffer[cpos]; + } + if (recvChecksum == checksum) + { + // only consider vaild if the checksum matches... + if (node.start_angle_sync_q6 & RPLIDAR_RESP_MEASUREMENT_EXP_SYNCBIT) + { + // this is the first capsule frame in logic, discard the previous cached data... + _is_previous_capsuledataRdy = false; + return RESULT_OK; + } + return RESULT_OK; + } + _is_previous_capsuledataRdy = false; + return RESULT_INVALID_DATA; + } + } + } + _is_previous_capsuledataRdy = false; + return RESULT_OPERATION_TIMEOUT; +} + +u_result RPlidarDriverImplCommon::_waitUltraCapsuledNode(rplidar_response_ultra_capsule_measurement_nodes_t & node, _u32 timeout) +{ + if (!_isConnected) { + return RESULT_OPERATION_FAIL; + } + + int recvPos = 0; + _u32 startTs = getms(); + _u8 recvBuffer[sizeof(rplidar_response_ultra_capsule_measurement_nodes_t)]; + _u8 *nodeBuffer = (_u8*)&node; + _u32 waitTime; + + while ((waitTime=getms() - startTs) <= timeout) { + size_t remainSize = sizeof(rplidar_response_ultra_capsule_measurement_nodes_t) - recvPos; + size_t recvSize; + + bool ans = _chanDev->waitfordata(remainSize, timeout-waitTime, &recvSize); + if(!ans) + { + return RESULT_OPERATION_TIMEOUT; + } + if (recvSize > remainSize) recvSize = remainSize; + + recvSize = _chanDev->recvdata(recvBuffer, recvSize); + + for (size_t pos = 0; pos < recvSize; ++pos) { + _u8 currentByte = recvBuffer[pos]; + switch (recvPos) { + case 0: // expect the sync bit 1 + { + _u8 tmp = (currentByte>>4); + if ( tmp == RPLIDAR_RESP_MEASUREMENT_EXP_SYNC_1 ) { + // pass + } + else { + _is_previous_capsuledataRdy = false; + continue; + } + } + break; + case 1: // expect the sync bit 2 + { + _u8 tmp = (currentByte>>4); + if (tmp == RPLIDAR_RESP_MEASUREMENT_EXP_SYNC_2) { + // pass + } + else { + recvPos = 0; + _is_previous_capsuledataRdy = false; + continue; + } + } + break; + } + nodeBuffer[recvPos++] = currentByte; + if (recvPos == sizeof(rplidar_response_ultra_capsule_measurement_nodes_t)) { + // calc the checksum ... + _u8 checksum = 0; + _u8 recvChecksum = ((node.s_checksum_1 & 0xF) | (node.s_checksum_2 << 4)); + + for (size_t cpos = offsetof(rplidar_response_ultra_capsule_measurement_nodes_t, start_angle_sync_q6); + cpos < sizeof(rplidar_response_ultra_capsule_measurement_nodes_t); ++cpos) + { + checksum ^= nodeBuffer[cpos]; + } + + if (recvChecksum == checksum) + { + // only consider vaild if the checksum matches... + if (node.start_angle_sync_q6 & RPLIDAR_RESP_MEASUREMENT_EXP_SYNCBIT) + { + // this is the first capsule frame in logic, discard the previous cached data... + _is_previous_capsuledataRdy = false; + return RESULT_OK; + } + return RESULT_OK; + } + _is_previous_capsuledataRdy = false; + return RESULT_INVALID_DATA; + } + } + } + _is_previous_capsuledataRdy = false; + return RESULT_OPERATION_TIMEOUT; +} + +u_result RPlidarDriverImplCommon::_cacheScanData() +{ + rplidar_response_measurement_node_t local_buf[128]; + size_t count = 128; + rplidar_response_measurement_node_hq_t local_scan[MAX_SCAN_NODES]; + size_t scan_count = 0; + u_result ans; + memset(local_scan, 0, sizeof(local_scan)); + + _waitScanData(local_buf, count); // // always discard the first data since it may be incomplete + + while(_isScanning) + { + if (IS_FAIL(ans=_waitScanData(local_buf, count))) { + if (ans != RESULT_OPERATION_TIMEOUT) { + _isScanning = false; + return RESULT_OPERATION_FAIL; + } + } + + for (size_t pos = 0; pos < count; ++pos) + { + if (local_buf[pos].sync_quality & RPLIDAR_RESP_MEASUREMENT_SYNCBIT) + { + // only publish the data when it contains a full 360 degree scan + + if ((local_scan[0].flag & RPLIDAR_RESP_MEASUREMENT_SYNCBIT)) { + _lock.lock(); + memcpy(_cached_scan_node_hq_buf, local_scan, scan_count*sizeof(rplidar_response_measurement_node_hq_t)); + _cached_scan_node_hq_count = scan_count; + _dataEvt.set(); + _lock.unlock(); + } + scan_count = 0; + } + + rplidar_response_measurement_node_hq_t nodeHq; + convert(local_buf[pos], nodeHq); + local_scan[scan_count++] = nodeHq; + if (scan_count == _countof(local_scan)) scan_count-=1; // prevent overflow + + //for interval retrieve + { + rp::hal::AutoLocker l(_lock); + _cached_scan_node_hq_buf_for_interval_retrieve[_cached_scan_node_hq_count_for_interval_retrieve++] = nodeHq; + if(_cached_scan_node_hq_count_for_interval_retrieve == _countof(_cached_scan_node_hq_buf_for_interval_retrieve)) _cached_scan_node_hq_count_for_interval_retrieve-=1; // prevent overflow + } + } + } + _isScanning = false; + return RESULT_OK; +} + +u_result RPlidarDriverImplCommon::startScanNormal(bool force, _u32 timeout) +{ + u_result ans; + if (!isConnected()) return RESULT_OPERATION_FAIL; + if (_isScanning) return RESULT_ALREADY_DONE; + + stop(); //force the previous operation to stop + + { + rp::hal::AutoLocker l(_lock); + + if (IS_FAIL(ans = _sendCommand(force?RPLIDAR_CMD_FORCE_SCAN:RPLIDAR_CMD_SCAN))) { + return ans; + } + + // waiting for confirmation + rplidar_ans_header_t response_header; + if (IS_FAIL(ans = _waitResponseHeader(&response_header, timeout))) { + return ans; + } + + // verify whether we got a correct header + if (response_header.type != RPLIDAR_ANS_TYPE_MEASUREMENT) { + return RESULT_INVALID_DATA; + } + + _u32 header_size = (response_header.size_q30_subtype & RPLIDAR_ANS_HEADER_SIZE_MASK); + if (header_size < sizeof(rplidar_response_measurement_node_t)) { + return RESULT_INVALID_DATA; + } + + _isScanning = true; + _cachethread = CLASS_THREAD(RPlidarDriverImplCommon, _cacheScanData); + if (_cachethread.getHandle() == 0) { + return RESULT_OPERATION_FAIL; + } + } + return RESULT_OK; +} + +u_result RPlidarDriverImplCommon::checkExpressScanSupported(bool & support, _u32 timeout) +{ + DEPRECATED_WARN("checkExpressScanSupported(bool&,_u32)", "getAllSupportedScanModes()"); + + rplidar_response_device_info_t devinfo; + + support = false; + u_result ans = getDeviceInfo(devinfo, timeout); + + if (IS_FAIL(ans)) return ans; + + if (devinfo.firmware_version >= ((0x1<<8) | 17)) { + support = true; + rplidar_response_sample_rate_t sample_rate; + getSampleDuration_uS(sample_rate); + _cached_sampleduration_express = sample_rate.express_sample_duration_us; + _cached_sampleduration_std = sample_rate.std_sample_duration_us; + } + + return RESULT_OK; +} + +u_result RPlidarDriverImplCommon::_cacheCapsuledScanData() +{ + rplidar_response_capsule_measurement_nodes_t capsule_node; + rplidar_response_measurement_node_hq_t local_buf[128]; + size_t count = 128; + rplidar_response_measurement_node_hq_t local_scan[MAX_SCAN_NODES]; + size_t scan_count = 0; + u_result ans; + memset(local_scan, 0, sizeof(local_scan)); + + _waitCapsuledNode(capsule_node); // // always discard the first data since it may be incomplete + + + + + while(_isScanning) + { + if (IS_FAIL(ans=_waitCapsuledNode(capsule_node))) { + if (ans != RESULT_OPERATION_TIMEOUT && ans != RESULT_INVALID_DATA) { + _isScanning = false; + return RESULT_OPERATION_FAIL; + } else { + // current data is invalid, do not use it. + continue; + } + } + switch (_cached_express_flag) + { + case 0: + _capsuleToNormal(capsule_node, local_buf, count); + break; + case 1: + _dense_capsuleToNormal(capsule_node, local_buf, count); + break; + } + // + + for (size_t pos = 0; pos < count; ++pos) + { + if (local_buf[pos].flag & RPLIDAR_RESP_MEASUREMENT_SYNCBIT) + { + // only publish the data when it contains a full 360 degree scan + + if ((local_scan[0].flag & RPLIDAR_RESP_MEASUREMENT_SYNCBIT)) { + _lock.lock(); + memcpy(_cached_scan_node_hq_buf, local_scan, scan_count*sizeof(rplidar_response_measurement_node_hq_t)); + _cached_scan_node_hq_count = scan_count; + _dataEvt.set(); + _lock.unlock(); + } + scan_count = 0; + } + local_scan[scan_count++] = local_buf[pos]; + if (scan_count == _countof(local_scan)) scan_count-=1; // prevent overflow + + //for interval retrieve + { + rp::hal::AutoLocker l(_lock); + _cached_scan_node_hq_buf_for_interval_retrieve[_cached_scan_node_hq_count_for_interval_retrieve++] = local_buf[pos]; + if(_cached_scan_node_hq_count_for_interval_retrieve == _countof(_cached_scan_node_hq_buf_for_interval_retrieve)) _cached_scan_node_hq_count_for_interval_retrieve-=1; // prevent overflow + } + } + } + _isScanning = false; + + return RESULT_OK; +} + +u_result RPlidarDriverImplCommon::_cacheUltraCapsuledScanData() +{ + rplidar_response_ultra_capsule_measurement_nodes_t ultra_capsule_node; + rplidar_response_measurement_node_hq_t local_buf[128]; + size_t count = 128; + rplidar_response_measurement_node_hq_t local_scan[MAX_SCAN_NODES]; + size_t scan_count = 0; + u_result ans; + memset(local_scan, 0, sizeof(local_scan)); + + _waitUltraCapsuledNode(ultra_capsule_node); + + while(_isScanning) + { + if (IS_FAIL(ans=_waitUltraCapsuledNode(ultra_capsule_node))) { + if (ans != RESULT_OPERATION_TIMEOUT && ans != RESULT_INVALID_DATA) { + _isScanning = false; + return RESULT_OPERATION_FAIL; + } else { + // current data is invalid, do not use it. + continue; + } + } + + _ultraCapsuleToNormal(ultra_capsule_node, local_buf, count); + + for (size_t pos = 0; pos < count; ++pos) + { + if (local_buf[pos].flag & RPLIDAR_RESP_MEASUREMENT_SYNCBIT) + { + // only publish the data when it contains a full 360 degree scan + + if ((local_scan[0].flag & RPLIDAR_RESP_MEASUREMENT_SYNCBIT)) { + _lock.lock(); + memcpy(_cached_scan_node_hq_buf, local_scan, scan_count*sizeof(rplidar_response_measurement_node_hq_t)); + _cached_scan_node_hq_count = scan_count; + _dataEvt.set(); + _lock.unlock(); + } + scan_count = 0; + } + local_scan[scan_count++] = local_buf[pos]; + if (scan_count == _countof(local_scan)) scan_count-=1; // prevent overflow + + //for interval retrieve + { + rp::hal::AutoLocker l(_lock); + _cached_scan_node_hq_buf_for_interval_retrieve[_cached_scan_node_hq_count_for_interval_retrieve++] = local_buf[pos]; + if(_cached_scan_node_hq_count_for_interval_retrieve == _countof(_cached_scan_node_hq_buf_for_interval_retrieve)) _cached_scan_node_hq_count_for_interval_retrieve-=1; // prevent overflow + } + } + } + + _isScanning = false; + + return RESULT_OK; +} + +void RPlidarDriverImplCommon::_capsuleToNormal(const rplidar_response_capsule_measurement_nodes_t & capsule, rplidar_response_measurement_node_hq_t *nodebuffer, size_t &nodeCount) +{ + nodeCount = 0; + if (_is_previous_capsuledataRdy) { + int diffAngle_q8; + int currentStartAngle_q8 = ((capsule.start_angle_sync_q6 & 0x7FFF)<< 2); + int prevStartAngle_q8 = ((_cached_previous_capsuledata.start_angle_sync_q6 & 0x7FFF) << 2); + + diffAngle_q8 = (currentStartAngle_q8) - (prevStartAngle_q8); + if (prevStartAngle_q8 > currentStartAngle_q8) { + diffAngle_q8 += (360<<8); + } + + int angleInc_q16 = (diffAngle_q8 << 3); + int currentAngle_raw_q16 = (prevStartAngle_q8 << 8); + for (size_t pos = 0; pos < _countof(_cached_previous_capsuledata.cabins); ++pos) + { + int dist_q2[2]; + int angle_q6[2]; + int syncBit[2]; + + dist_q2[0] = (_cached_previous_capsuledata.cabins[pos].distance_angle_1 & 0xFFFC); + dist_q2[1] = (_cached_previous_capsuledata.cabins[pos].distance_angle_2 & 0xFFFC); + + int angle_offset1_q3 = ( (_cached_previous_capsuledata.cabins[pos].offset_angles_q3 & 0xF) | ((_cached_previous_capsuledata.cabins[pos].distance_angle_1 & 0x3)<<4)); + int angle_offset2_q3 = ( (_cached_previous_capsuledata.cabins[pos].offset_angles_q3 >> 4) | ((_cached_previous_capsuledata.cabins[pos].distance_angle_2 & 0x3)<<4)); + + angle_q6[0] = ((currentAngle_raw_q16 - (angle_offset1_q3<<13))>>10); + syncBit[0] = (( (currentAngle_raw_q16 + angleInc_q16) % (360<<16)) < angleInc_q16 )?1:0; + currentAngle_raw_q16 += angleInc_q16; + + + angle_q6[1] = ((currentAngle_raw_q16 - (angle_offset2_q3<<13))>>10); + syncBit[1] = (( (currentAngle_raw_q16 + angleInc_q16) % (360<<16)) < angleInc_q16 )?1:0; + currentAngle_raw_q16 += angleInc_q16; + + for (int cpos = 0; cpos < 2; ++cpos) { + + if (angle_q6[cpos] < 0) angle_q6[cpos] += (360<<6); + if (angle_q6[cpos] >= (360<<6)) angle_q6[cpos] -= (360<<6); + + rplidar_response_measurement_node_hq_t node; + + node.angle_z_q14 = _u16((angle_q6[cpos] << 8) / 90); + node.flag = (syncBit[cpos] | ((!syncBit[cpos]) << 1)); + node.quality = dist_q2[cpos] ? (0x2f << RPLIDAR_RESP_MEASUREMENT_QUALITY_SHIFT) : 0; + node.dist_mm_q2 = dist_q2[cpos]; + + nodebuffer[nodeCount++] = node; + } + + } + } + + _cached_previous_capsuledata = capsule; + _is_previous_capsuledataRdy = true; +} + +void RPlidarDriverImplCommon::_dense_capsuleToNormal(const rplidar_response_capsule_measurement_nodes_t & capsule, rplidar_response_measurement_node_hq_t *nodebuffer, size_t &nodeCount) +{ + const rplidar_response_dense_capsule_measurement_nodes_t *dense_capsule = reinterpret_cast(&capsule); + nodeCount = 0; + if (_is_previous_capsuledataRdy) { + int diffAngle_q8; + int currentStartAngle_q8 = ((dense_capsule->start_angle_sync_q6 & 0x7FFF) << 2); + int prevStartAngle_q8 = ((_cached_previous_dense_capsuledata.start_angle_sync_q6 & 0x7FFF) << 2); + + diffAngle_q8 = (currentStartAngle_q8)-(prevStartAngle_q8); + if (prevStartAngle_q8 > currentStartAngle_q8) { + diffAngle_q8 += (360 << 8); + } + + int angleInc_q16 = (diffAngle_q8 << 8)/40; + int currentAngle_raw_q16 = (prevStartAngle_q8 << 8); + for (size_t pos = 0; pos < _countof(_cached_previous_dense_capsuledata.cabins); ++pos) + { + int dist_q2; + int angle_q6; + int syncBit; + const int dist = static_cast(_cached_previous_dense_capsuledata.cabins[pos].distance); + dist_q2 = dist << 2; + angle_q6 = (currentAngle_raw_q16 >> 10); + syncBit = (((currentAngle_raw_q16 + angleInc_q16) % (360 << 16)) < angleInc_q16) ? 1 : 0; + currentAngle_raw_q16 += angleInc_q16; + + if (angle_q6 < 0) angle_q6 += (360 << 6); + if (angle_q6 >= (360 << 6)) angle_q6 -= (360 << 6); + + + + rplidar_response_measurement_node_hq_t node; + + node.angle_z_q14 = _u16((angle_q6 << 8) / 90); + node.flag = (syncBit | ((!syncBit) << 1)); + node.quality = dist_q2 ? (0x2f << RPLIDAR_RESP_MEASUREMENT_QUALITY_SHIFT) : 0; + node.dist_mm_q2 = dist_q2; + + nodebuffer[nodeCount++] = node; + + + } + } + + _cached_previous_dense_capsuledata = *dense_capsule; + _is_previous_capsuledataRdy = true; +} + +u_result RPlidarDriverImplCommon::_cacheHqScanData() +{ + rplidar_response_hq_capsule_measurement_nodes_t hq_node; + rplidar_response_measurement_node_hq_t local_buf[128]; + size_t count = 128; + rplidar_response_measurement_node_hq_t local_scan[MAX_SCAN_NODES]; + size_t scan_count = 0; + u_result ans; + memset(local_scan, 0, sizeof(local_scan)); + _waitHqNode(hq_node); + while (_isScanning) { + if (IS_FAIL(ans = _waitHqNode(hq_node))) { + if (ans != RESULT_OPERATION_TIMEOUT && ans != RESULT_INVALID_DATA) { + _isScanning = false; + return RESULT_OPERATION_FAIL; + } + else { + // current data is invalid, do not use it. + continue; + } + } + + _HqToNormal(hq_node, local_buf, count); + for (size_t pos = 0; pos < count; ++pos) + { + if (local_buf[pos].flag & RPLIDAR_RESP_MEASUREMENT_SYNCBIT) + { + // only publish the data when it contains a full 360 degree scan + if ((local_scan[0].flag & RPLIDAR_RESP_MEASUREMENT_SYNCBIT)) { + _lock.lock(); + memcpy(_cached_scan_node_hq_buf, local_scan, scan_count * sizeof(rplidar_response_measurement_node_hq_t)); + _cached_scan_node_hq_count = scan_count; + _dataEvt.set(); + _lock.unlock(); + } + scan_count = 0; + } + local_scan[scan_count++] = local_buf[pos]; + if (scan_count == _countof(local_scan)) scan_count -= 1; // prevent overflow + //for interval retrieve + { + rp::hal::AutoLocker l(_lock); + _cached_scan_node_hq_buf_for_interval_retrieve[_cached_scan_node_hq_count_for_interval_retrieve++] = local_buf[pos]; + if (_cached_scan_node_hq_count_for_interval_retrieve == _countof(_cached_scan_node_hq_buf_for_interval_retrieve)) _cached_scan_node_hq_count_for_interval_retrieve -= 1; // prevent overflow + } + } + + } + return RESULT_OK; +} + +//CRC calculate +static _u32 table[256];//crc32_table + +//reflect +static _u32 _bitrev(_u32 input, _u16 bw) +{ + _u16 i; + _u32 var; + var = 0; + for (i = 0; i>= 1; + } + return var; +} + +// crc32_table init +static void _crc32_init(_u32 poly) +{ + _u16 i; + _u16 j; + _u32 c; + + poly = _bitrev(poly, 32); + for (i = 0; i<256; i++){ + c = i; + for (j = 0; j<8; j++){ + if (c & 1) + c = poly ^ (c >> 1); + else + c = c >> 1; + } + table[i] = c; + } +} + +static _u32 _crc32cal(_u32 crc, void* input, _u16 len) +{ + _u16 i; + _u8 index; + _u8* pch; + pch = (unsigned char*)input; + _u8 leftBytes = 4 - len & 0x3; + + for (i = 0; i> 8) ^ table[index]; + pch++; + } + + for (i = 0; i < leftBytes; i++) {//zero padding + index = (unsigned char)(crc^0); + crc = (crc >> 8) ^ table[index]; + } + return crc^0xffffffff; +} + +//crc32cal +static u_result _crc32(_u8 *ptr, _u32 len) { + static _u8 tmp; + if (tmp != 1) { + _crc32_init(0x4C11DB7); + tmp = 1; + } + + return _crc32cal(0xFFFFFFFF, ptr,len); +} + +u_result RPlidarDriverImplCommon::_waitHqNode(rplidar_response_hq_capsule_measurement_nodes_t & node, _u32 timeout) +{ + if (!_isConnected) { + return RESULT_OPERATION_FAIL; + } + + int recvPos = 0; + _u32 startTs = getms(); + _u8 recvBuffer[sizeof(rplidar_response_hq_capsule_measurement_nodes_t)]; + _u8 *nodeBuffer = (_u8*)&node; + _u32 waitTime; + + while ((waitTime=getms() - startTs) <= timeout) { + size_t remainSize = sizeof(rplidar_response_hq_capsule_measurement_nodes_t) - recvPos; + size_t recvSize; + + bool ans = _chanDev->waitfordata(remainSize, timeout-waitTime, &recvSize); + if(!ans) + { + return RESULT_OPERATION_TIMEOUT; + } + if (recvSize > remainSize) recvSize = remainSize; + + recvSize = _chanDev->recvdata(recvBuffer, recvSize); + + for (size_t pos = 0; pos < recvSize; ++pos) { + _u8 currentByte = recvBuffer[pos]; + switch (recvPos) { + case 0: // expect the sync byte + { + _u8 tmp = (currentByte); + if ( tmp == RPLIDAR_RESP_MEASUREMENT_HQ_SYNC ) { + // pass + } + else { + recvPos = 0; + _is_previous_HqdataRdy = false; + continue; + } + } + break; + case sizeof(rplidar_response_hq_capsule_measurement_nodes_t) - 1 - 4: + { + + } + break; + case sizeof(rplidar_response_hq_capsule_measurement_nodes_t) - 1: + { + + } + break; + } + nodeBuffer[recvPos++] = currentByte; + if (recvPos == sizeof(rplidar_response_hq_capsule_measurement_nodes_t)) { + _u32 crcCalc2 = _crc32(nodeBuffer, sizeof(rplidar_response_hq_capsule_measurement_nodes_t) - 4); + + if(crcCalc2 == node.crc32){ + _is_previous_HqdataRdy = true; + return RESULT_OK; + } + else { + _is_previous_HqdataRdy = false; + return RESULT_INVALID_DATA; + } + + } + } + } + _is_previous_HqdataRdy = false; + return RESULT_OPERATION_TIMEOUT; +} + +void RPlidarDriverImplCommon::_HqToNormal(const rplidar_response_hq_capsule_measurement_nodes_t & node_hq, rplidar_response_measurement_node_hq_t *nodebuffer, size_t &nodeCount) +{ + nodeCount = 0; + if (_is_previous_HqdataRdy) { + for (size_t pos = 0; pos < _countof(_cached_previous_Hqdata.node_hq); ++pos) + { + nodebuffer[nodeCount++] = node_hq.node_hq[pos]; + } + } + _cached_previous_Hqdata = node_hq; + _is_previous_HqdataRdy = true; + +} +//*******************************************HQ support********************************// + +static _u32 _varbitscale_decode(_u32 scaled, _u32 & scaleLevel) +{ + static const _u32 VBS_SCALED_BASE[] = { + RPLIDAR_VARBITSCALE_X16_DEST_VAL, + RPLIDAR_VARBITSCALE_X8_DEST_VAL, + RPLIDAR_VARBITSCALE_X4_DEST_VAL, + RPLIDAR_VARBITSCALE_X2_DEST_VAL, + 0, + }; + + static const _u32 VBS_SCALED_LVL[] = { + 4, + 3, + 2, + 1, + 0, + }; + + static const _u32 VBS_TARGET_BASE[] = { + (0x1 << RPLIDAR_VARBITSCALE_X16_SRC_BIT), + (0x1 << RPLIDAR_VARBITSCALE_X8_SRC_BIT), + (0x1 << RPLIDAR_VARBITSCALE_X4_SRC_BIT), + (0x1 << RPLIDAR_VARBITSCALE_X2_SRC_BIT), + 0, + }; + + for (size_t i = 0; i < _countof(VBS_SCALED_BASE); ++i) + { + int remain = ((int)scaled - (int)VBS_SCALED_BASE[i]); + if (remain >= 0) { + scaleLevel = VBS_SCALED_LVL[i]; + return VBS_TARGET_BASE[i] + (remain << scaleLevel); + } + } + return 0; +} + +void RPlidarDriverImplCommon::_ultraCapsuleToNormal(const rplidar_response_ultra_capsule_measurement_nodes_t & capsule, rplidar_response_measurement_node_hq_t *nodebuffer, size_t &nodeCount) +{ + nodeCount = 0; + if (_is_previous_capsuledataRdy) { + int diffAngle_q8; + int currentStartAngle_q8 = ((capsule.start_angle_sync_q6 & 0x7FFF) << 2); + int prevStartAngle_q8 = ((_cached_previous_ultracapsuledata.start_angle_sync_q6 & 0x7FFF) << 2); + + diffAngle_q8 = (currentStartAngle_q8)-(prevStartAngle_q8); + if (prevStartAngle_q8 > currentStartAngle_q8) { + diffAngle_q8 += (360 << 8); + } + + int angleInc_q16 = (diffAngle_q8 << 3) / 3; + int currentAngle_raw_q16 = (prevStartAngle_q8 << 8); + for (size_t pos = 0; pos < _countof(_cached_previous_ultracapsuledata.ultra_cabins); ++pos) + { + int dist_q2[3]; + int angle_q6[3]; + int syncBit[3]; + + + _u32 combined_x3 = _cached_previous_ultracapsuledata.ultra_cabins[pos].combined_x3; + + // unpack ... + int dist_major = (combined_x3 & 0xFFF); + + // signed partical integer, using the magic shift here + // DO NOT TOUCH + + int dist_predict1 = (((int)(combined_x3 << 10)) >> 22); + int dist_predict2 = (((int)combined_x3) >> 22); + + int dist_major2; + + _u32 scalelvl1, scalelvl2; + + // prefetch next ... + if (pos == _countof(_cached_previous_ultracapsuledata.ultra_cabins) - 1) + { + dist_major2 = (capsule.ultra_cabins[0].combined_x3 & 0xFFF); + } + else { + dist_major2 = (_cached_previous_ultracapsuledata.ultra_cabins[pos + 1].combined_x3 & 0xFFF); + } + + // decode with the var bit scale ... + dist_major = _varbitscale_decode(dist_major, scalelvl1); + dist_major2 = _varbitscale_decode(dist_major2, scalelvl2); + + + int dist_base1 = dist_major; + int dist_base2 = dist_major2; + + if ((!dist_major) && dist_major2) { + dist_base1 = dist_major2; + scalelvl1 = scalelvl2; + } + + + dist_q2[0] = (dist_major << 2); + if ((dist_predict1 == 0xFFFFFE00) || (dist_predict1 == 0x1FF)) { + dist_q2[1] = 0; + } else { + dist_predict1 = (dist_predict1 << scalelvl1); + dist_q2[1] = (dist_predict1 + dist_base1) << 2; + + } + + if ((dist_predict2 == 0xFFFFFE00) || (dist_predict2 == 0x1FF)) { + dist_q2[2] = 0; + } else { + dist_predict2 = (dist_predict2 << scalelvl2); + dist_q2[2] = (dist_predict2 + dist_base2) << 2; + } + + + for (int cpos = 0; cpos < 3; ++cpos) + { + + syncBit[cpos] = (((currentAngle_raw_q16 + angleInc_q16) % (360 << 16)) < angleInc_q16) ? 1 : 0; + + int offsetAngleMean_q16 = (int)(7.5 * 3.1415926535 * (1 << 16) / 180.0); + + if (dist_q2[cpos] >= (50 * 4)) + { + const int k1 = 98361; + const int k2 = int(k1 / dist_q2[cpos]); + + offsetAngleMean_q16 = (int)(8 * 3.1415926535 * (1 << 16) / 180) - (k2 << 6) - (k2 * k2 * k2) / 98304; + } + + angle_q6[cpos] = ((currentAngle_raw_q16 - int(offsetAngleMean_q16 * 180 / 3.14159265)) >> 10); + currentAngle_raw_q16 += angleInc_q16; + + if (angle_q6[cpos] < 0) angle_q6[cpos] += (360 << 6); + if (angle_q6[cpos] >= (360 << 6)) angle_q6[cpos] -= (360 << 6); + + rplidar_response_measurement_node_hq_t node; + + node.flag = (syncBit[cpos] | ((!syncBit[cpos]) << 1)); + node.quality = dist_q2[cpos] ? (0x2F << RPLIDAR_RESP_MEASUREMENT_QUALITY_SHIFT) : 0; + node.angle_z_q14 = _u16((angle_q6[cpos] << 8) / 90); + node.dist_mm_q2 = dist_q2[cpos]; + + nodebuffer[nodeCount++] = node; + } + + } + } + + _cached_previous_ultracapsuledata = capsule; + _is_previous_capsuledataRdy = true; +} + +u_result RPlidarDriverImplCommon::checkSupportConfigCommands(bool& outSupport, _u32 timeoutInMs) +{ + u_result ans; + + rplidar_response_device_info_t devinfo; + ans = getDeviceInfo(devinfo, timeoutInMs); + if (IS_FAIL(ans)) return ans; + + // if lidar firmware >= 1.24 + if (devinfo.firmware_version >= ((0x1 << 8) | 24)) { + outSupport = true; + } + return ans; +} + +u_result RPlidarDriverImplCommon::getLidarConf(_u32 type, std::vector<_u8> &outputBuf, const std::vector<_u8> &reserve, _u32 timeout) +{ + rplidar_payload_get_scan_conf_t query; + memset(&query, 0, sizeof(query)); + query.type = type; + int sizeVec = reserve.size(); + + int maxLen = sizeof(query.reserved) / sizeof(query.reserved[0]); + if (sizeVec > maxLen) sizeVec = maxLen; + + if (sizeVec > 0) + memcpy(query.reserved, &reserve[0], reserve.size()); + + u_result ans; + { + rp::hal::AutoLocker l(_lock); + if (IS_FAIL(ans = _sendCommand(RPLIDAR_CMD_GET_LIDAR_CONF, &query, sizeof(query)))) { + return ans; + } + + // waiting for confirmation + rplidar_ans_header_t response_header; + if (IS_FAIL(ans = _waitResponseHeader(&response_header, timeout))) { + return ans; + } + + // verify whether we got a correct header + if (response_header.type != RPLIDAR_ANS_TYPE_GET_LIDAR_CONF) { + return RESULT_INVALID_DATA; + } + + _u32 header_size = (response_header.size_q30_subtype & RPLIDAR_ANS_HEADER_SIZE_MASK); + if (header_size < sizeof(type)) { + return RESULT_INVALID_DATA; + } + + if (!_chanDev->waitfordata(header_size, timeout)) { + return RESULT_OPERATION_TIMEOUT; + } + + std::vector<_u8> dataBuf; + dataBuf.resize(header_size); + _chanDev->recvdata(reinterpret_cast<_u8 *>(&dataBuf[0]), header_size); + + //check if returned type is same as asked type + _u32 replyType = -1; + memcpy(&replyType, &dataBuf[0], sizeof(type)); + if (replyType != type) { + return RESULT_INVALID_DATA; + } + + //copy all the payload into &outputBuf + int payLoadLen = header_size - sizeof(type); + + //do consistency check + if (payLoadLen <= 0) { + return RESULT_INVALID_DATA; + } + //copy all payLoadLen bytes to outputBuf + outputBuf.resize(payLoadLen); + memcpy(&outputBuf[0], &dataBuf[0] + sizeof(type), payLoadLen); + } + return ans; +} + +u_result RPlidarDriverImplCommon::getTypicalScanMode(_u16& outMode, _u32 timeoutInMs) +{ + u_result ans; + std::vector<_u8> answer; + bool lidarSupportConfigCmds = false; + ans = checkSupportConfigCommands(lidarSupportConfigCmds); + if (IS_FAIL(ans)) return RESULT_INVALID_DATA; + + if (lidarSupportConfigCmds) + { + ans = getLidarConf(RPLIDAR_CONF_SCAN_MODE_TYPICAL, answer, std::vector<_u8>(), timeoutInMs); + if (IS_FAIL(ans)) { + return ans; + } + if (answer.size() < sizeof(_u16)) { + return RESULT_INVALID_DATA; + } + + const _u16 *p_answer = reinterpret_cast(&answer[0]); + outMode = *p_answer; + return ans; + } + //old version of triangle lidar + else + { + outMode = RPLIDAR_CONF_SCAN_COMMAND_EXPRESS; + return ans; + } + return ans; +} + +u_result RPlidarDriverImplCommon::getLidarSampleDuration(float& sampleDurationRes, _u16 scanModeID, _u32 timeoutInMs) +{ + u_result ans; + std::vector<_u8> reserve(2); + memcpy(&reserve[0], &scanModeID, sizeof(scanModeID)); + + std::vector<_u8> answer; + ans = getLidarConf(RPLIDAR_CONF_SCAN_MODE_US_PER_SAMPLE, answer, reserve, timeoutInMs); + if (IS_FAIL(ans)) + { + return ans; + } + if (answer.size() < sizeof(_u32)) + { + return RESULT_INVALID_DATA; + } + const _u32 *result = reinterpret_cast(&answer[0]); + sampleDurationRes = (float)(*result >> 8); + return ans; +} + +u_result RPlidarDriverImplCommon::getMaxDistance(float &maxDistance, _u16 scanModeID, _u32 timeoutInMs) +{ + u_result ans; + std::vector<_u8> reserve(2); + memcpy(&reserve[0], &scanModeID, sizeof(scanModeID)); + + std::vector<_u8> answer; + ans = getLidarConf(RPLIDAR_CONF_SCAN_MODE_MAX_DISTANCE, answer, reserve, timeoutInMs); + if (IS_FAIL(ans)) + { + return ans; + } + if (answer.size() < sizeof(_u32)) + { + return RESULT_INVALID_DATA; + } + const _u32 *result = reinterpret_cast(&answer[0]); + maxDistance = (float)(*result >> 8); + return ans; +} + +u_result RPlidarDriverImplCommon::getScanModeAnsType(_u8 &ansType, _u16 scanModeID, _u32 timeoutInMs) +{ + u_result ans; + std::vector<_u8> reserve(2); + memcpy(&reserve[0], &scanModeID, sizeof(scanModeID)); + + std::vector<_u8> answer; + ans = getLidarConf(RPLIDAR_CONF_SCAN_MODE_ANS_TYPE, answer, reserve, timeoutInMs); + if (IS_FAIL(ans)) + { + return ans; + } + if (answer.size() < sizeof(_u8)) + { + return RESULT_INVALID_DATA; + } + const _u8 *result = reinterpret_cast(&answer[0]); + ansType = *result; + return ans; +} + +u_result RPlidarDriverImplCommon::getScanModeName(char* modeName, _u16 scanModeID, _u32 timeoutInMs) +{ + u_result ans; + std::vector<_u8> reserve(2); + memcpy(&reserve[0], &scanModeID, sizeof(scanModeID)); + + std::vector<_u8> answer; + ans = getLidarConf(RPLIDAR_CONF_SCAN_MODE_NAME, answer, reserve, timeoutInMs); + if (IS_FAIL(ans)) + { + return ans; + } + int len = answer.size(); + if (0 == len) return RESULT_INVALID_DATA; + memcpy(modeName, &answer[0], len); + return ans; +} + +u_result RPlidarDriverImplCommon::getAllSupportedScanModes(std::vector& outModes, _u32 timeoutInMs) +{ + u_result ans; + bool confProtocolSupported = false; + ans = checkSupportConfigCommands(confProtocolSupported); + if (IS_FAIL(ans)) return RESULT_INVALID_DATA; + + if (confProtocolSupported) + { + // 1. get scan mode count + _u16 modeCount; + ans = getScanModeCount(modeCount); + if (IS_FAIL(ans)) + { + return RESULT_INVALID_DATA; + } + // 2. for loop to get all fields of each scan mode + for (_u16 i = 0; i < modeCount; i++) + { + RplidarScanMode scanModeInfoTmp; + memset(&scanModeInfoTmp, 0, sizeof(scanModeInfoTmp)); + scanModeInfoTmp.id = i; + ans = getLidarSampleDuration(scanModeInfoTmp.us_per_sample, i); + if (IS_FAIL(ans)) + { + return RESULT_INVALID_DATA; + } + ans = getMaxDistance(scanModeInfoTmp.max_distance, i); + if (IS_FAIL(ans)) + { + return RESULT_INVALID_DATA; + } + ans = getScanModeAnsType(scanModeInfoTmp.ans_type, i); + if (IS_FAIL(ans)) + { + return RESULT_INVALID_DATA; + } + ans = getScanModeName(scanModeInfoTmp.scan_mode, i); + if (IS_FAIL(ans)) + { + return RESULT_INVALID_DATA; + } + outModes.push_back(scanModeInfoTmp); + } + return ans; + } + else + { + rplidar_response_sample_rate_t sampleRateTmp; + ans = getSampleDuration_uS(sampleRateTmp); + if (IS_FAIL(ans)) return RESULT_INVALID_DATA; + //judge if support express scan + bool ifSupportExpScan = false; + ans = checkExpressScanSupported(ifSupportExpScan); + if (IS_FAIL(ans)) return RESULT_INVALID_DATA; + + RplidarScanMode stdScanModeInfo; + stdScanModeInfo.id = RPLIDAR_CONF_SCAN_COMMAND_STD; + stdScanModeInfo.us_per_sample = sampleRateTmp.std_sample_duration_us; + stdScanModeInfo.max_distance = 16; + stdScanModeInfo.ans_type = RPLIDAR_ANS_TYPE_MEASUREMENT; + strcpy(stdScanModeInfo.scan_mode, "Standard"); + outModes.push_back(stdScanModeInfo); + if (ifSupportExpScan) + { + RplidarScanMode expScanModeInfo; + expScanModeInfo.id = RPLIDAR_CONF_SCAN_COMMAND_EXPRESS; + expScanModeInfo.us_per_sample = sampleRateTmp.express_sample_duration_us; + expScanModeInfo.max_distance = 16; + expScanModeInfo.ans_type = RPLIDAR_ANS_TYPE_MEASUREMENT_CAPSULED; + strcpy(expScanModeInfo.scan_mode, "Express"); + outModes.push_back(expScanModeInfo); + } + return ans; + } + return ans; +} + +u_result RPlidarDriverImplCommon::getScanModeCount(_u16& modeCount, _u32 timeoutInMs) +{ + u_result ans; + std::vector<_u8> answer; + ans = getLidarConf(RPLIDAR_CONF_SCAN_MODE_COUNT, answer, std::vector<_u8>(), timeoutInMs); + + if (IS_FAIL(ans)) { + return ans; + } + if (answer.size() < sizeof(_u16)) { + return RESULT_INVALID_DATA; + } + const _u16 *p_answer = reinterpret_cast(&answer[0]); + modeCount = *p_answer; + + return ans; +} + + +u_result RPlidarDriverImplCommon::startScan(bool force, bool useTypicalScan, _u32 options, RplidarScanMode* outUsedScanMode) +{ + u_result ans; + + bool ifSupportLidarConf = false; + ans = checkSupportConfigCommands(ifSupportLidarConf); + if (IS_FAIL(ans)) return RESULT_INVALID_DATA; + + if (useTypicalScan) + { + //if support lidar config protocol + if (ifSupportLidarConf) + { + _u16 typicalMode; + ans = getTypicalScanMode(typicalMode); + if (IS_FAIL(ans)) return RESULT_INVALID_DATA; + + //call startScanExpress to do the job + return startScanExpress(false, typicalMode, 0, outUsedScanMode); + } + //if old version of triangle lidar + else + { + bool isExpScanSupported = false; + ans = checkExpressScanSupported(isExpScanSupported); + if (IS_FAIL(ans)) { + return ans; + } + if (isExpScanSupported) + { + return startScanExpress(false, RPLIDAR_CONF_SCAN_COMMAND_EXPRESS, 0, outUsedScanMode); + } + } + } + + // 'useTypicalScan' is false, just use normal scan mode + if(ifSupportLidarConf) + { + if(outUsedScanMode) + { + outUsedScanMode->id = RPLIDAR_CONF_SCAN_COMMAND_STD; + ans = getLidarSampleDuration(outUsedScanMode->us_per_sample, outUsedScanMode->id); + if(IS_FAIL(ans)) + { + return RESULT_INVALID_DATA; + } + + ans = getMaxDistance(outUsedScanMode->max_distance, outUsedScanMode->id); + if(IS_FAIL(ans)) + { + return RESULT_INVALID_DATA; + } + + ans = getScanModeAnsType(outUsedScanMode->ans_type, outUsedScanMode->id); + if(IS_FAIL(ans)) + { + return RESULT_INVALID_DATA; + } + + ans = getScanModeName(outUsedScanMode->scan_mode, outUsedScanMode->id); + if(IS_FAIL(ans)) + { + return RESULT_INVALID_DATA; + } + } + } + else + { + if(outUsedScanMode) + { + rplidar_response_sample_rate_t sampleRateTmp; + ans = getSampleDuration_uS(sampleRateTmp); + if(IS_FAIL(ans)) return RESULT_INVALID_DATA; + outUsedScanMode->us_per_sample = sampleRateTmp.std_sample_duration_us; + outUsedScanMode->max_distance = 16; + outUsedScanMode->ans_type = RPLIDAR_ANS_TYPE_MEASUREMENT; + strcpy(outUsedScanMode->scan_mode, "Standard"); + } + } + + return startScanNormal(force); +} + +u_result RPlidarDriverImplCommon::startScanExpress(bool force, _u16 scanMode, _u32 options, RplidarScanMode* outUsedScanMode, _u32 timeout) +{ + u_result ans; + if (!isConnected()) return RESULT_OPERATION_FAIL; + if (_isScanning) return RESULT_ALREADY_DONE; + + stop(); //force the previous operation to stop + + if (scanMode == RPLIDAR_CONF_SCAN_COMMAND_STD) + { + return startScan(force, false, 0, outUsedScanMode); + } + + + bool ifSupportLidarConf = false; + ans = checkSupportConfigCommands(ifSupportLidarConf); + if (IS_FAIL(ans)) return RESULT_INVALID_DATA; + + if (outUsedScanMode) + { + outUsedScanMode->id = scanMode; + if (ifSupportLidarConf) + { + ans = getLidarSampleDuration(outUsedScanMode->us_per_sample, outUsedScanMode->id); + if (IS_FAIL(ans)) + { + return RESULT_INVALID_DATA; + } + + ans = getMaxDistance(outUsedScanMode->max_distance, outUsedScanMode->id); + if (IS_FAIL(ans)) + { + return RESULT_INVALID_DATA; + } + + ans = getScanModeAnsType(outUsedScanMode->ans_type, outUsedScanMode->id); + if (IS_FAIL(ans)) + { + return RESULT_INVALID_DATA; + } + + ans = getScanModeName(outUsedScanMode->scan_mode, outUsedScanMode->id); + if (IS_FAIL(ans)) + { + return RESULT_INVALID_DATA; + } + + + } + else + { + rplidar_response_sample_rate_t sampleRateTmp; + ans = getSampleDuration_uS(sampleRateTmp); + if (IS_FAIL(ans)) return RESULT_INVALID_DATA; + + outUsedScanMode->us_per_sample = sampleRateTmp.express_sample_duration_us; + outUsedScanMode->max_distance = 16; + outUsedScanMode->ans_type = RPLIDAR_ANS_TYPE_MEASUREMENT_CAPSULED; + strcpy(outUsedScanMode->scan_mode, "Express"); + } + } + + //get scan answer type to specify how to wait data + _u8 scanAnsType; + if (ifSupportLidarConf) + { + getScanModeAnsType(scanAnsType, scanMode); + } + else + { + scanAnsType = RPLIDAR_ANS_TYPE_MEASUREMENT_CAPSULED; + } + + { + rp::hal::AutoLocker l(_lock); + + rplidar_payload_express_scan_t scanReq; + memset(&scanReq, 0, sizeof(scanReq)); + if (scanMode != RPLIDAR_CONF_SCAN_COMMAND_STD && scanMode != RPLIDAR_CONF_SCAN_COMMAND_EXPRESS) + scanReq.working_mode = _u8(scanMode); + scanReq.working_flags = options; + + if (IS_FAIL(ans = _sendCommand(RPLIDAR_CMD_EXPRESS_SCAN, &scanReq, sizeof(scanReq)))) { + return ans; + } + + // waiting for confirmation + rplidar_ans_header_t response_header; + if (IS_FAIL(ans = _waitResponseHeader(&response_header, timeout))) { + return ans; + } + + // verify whether we got a correct header + if (response_header.type != scanAnsType) { + return RESULT_INVALID_DATA; + } + + _u32 header_size = (response_header.size_q30_subtype & RPLIDAR_ANS_HEADER_SIZE_MASK); + + if (scanAnsType == RPLIDAR_ANS_TYPE_MEASUREMENT_CAPSULED) + { + if (header_size < sizeof(rplidar_response_capsule_measurement_nodes_t)) { + return RESULT_INVALID_DATA; + } + _cached_express_flag = 0; + _isScanning = true; + _cachethread = CLASS_THREAD(RPlidarDriverImplCommon, _cacheCapsuledScanData); + } + else if (scanAnsType == RPLIDAR_ANS_TYPE_MEASUREMENT_DENSE_CAPSULED) + { + if (header_size < sizeof(rplidar_response_capsule_measurement_nodes_t)) { + return RESULT_INVALID_DATA; + } + _cached_express_flag = 1; + _isScanning = true; + _cachethread = CLASS_THREAD(RPlidarDriverImplCommon, _cacheCapsuledScanData); + } + else if (scanAnsType == RPLIDAR_ANS_TYPE_MEASUREMENT_HQ) { + if (header_size < sizeof(rplidar_response_hq_capsule_measurement_nodes_t)) { + return RESULT_INVALID_DATA; + } + _isScanning = true; + _cachethread = CLASS_THREAD(RPlidarDriverImplCommon, _cacheHqScanData); + } + else + { + if (header_size < sizeof(rplidar_response_ultra_capsule_measurement_nodes_t)) { + return RESULT_INVALID_DATA; + } + _isScanning = true; + _cachethread = CLASS_THREAD(RPlidarDriverImplCommon, _cacheUltraCapsuledScanData); + } + + if (_cachethread.getHandle() == 0) { + return RESULT_OPERATION_FAIL; + } + } + return RESULT_OK; +} + +u_result RPlidarDriverImplCommon::stop(_u32 timeout) +{ + u_result ans; + _disableDataGrabbing(); + + { + rp::hal::AutoLocker l(_lock); + + if (IS_FAIL(ans = _sendCommand(RPLIDAR_CMD_STOP))) { + return ans; + } + } + + return RESULT_OK; +} + +u_result RPlidarDriverImplCommon::grabScanData(rplidar_response_measurement_node_t * nodebuffer, size_t & count, _u32 timeout) +{ + DEPRECATED_WARN("grabScanData()", "grabScanDataHq()"); + + switch (_dataEvt.wait(timeout)) + { + case rp::hal::Event::EVENT_TIMEOUT: + count = 0; + return RESULT_OPERATION_TIMEOUT; + case rp::hal::Event::EVENT_OK: + { + if(_cached_scan_node_hq_count == 0) return RESULT_OPERATION_TIMEOUT; //consider as timeout + + rp::hal::AutoLocker l(_lock); + + size_t size_to_copy = min(count, _cached_scan_node_hq_count); + + for (size_t i = 0; i < size_to_copy; i++) + convert(_cached_scan_node_hq_buf[i], nodebuffer[i]); + + count = size_to_copy; + _cached_scan_node_hq_count = 0; + } + return RESULT_OK; + + default: + count = 0; + return RESULT_OPERATION_FAIL; + } +} + +u_result RPlidarDriverImplCommon::grabScanDataHq(rplidar_response_measurement_node_hq_t * nodebuffer, size_t & count, _u32 timeout) +{ + switch (_dataEvt.wait(timeout)) + { + case rp::hal::Event::EVENT_TIMEOUT: + count = 0; + return RESULT_OPERATION_TIMEOUT; + case rp::hal::Event::EVENT_OK: + { + if (_cached_scan_node_hq_count == 0) return RESULT_OPERATION_TIMEOUT; //consider as timeout + + rp::hal::AutoLocker l(_lock); + + size_t size_to_copy = min(count, _cached_scan_node_hq_count); + memcpy(nodebuffer, _cached_scan_node_hq_buf, size_to_copy * sizeof(rplidar_response_measurement_node_hq_t)); + + count = size_to_copy; + _cached_scan_node_hq_count = 0; + } + return RESULT_OK; + + default: + count = 0; + return RESULT_OPERATION_FAIL; + } +} + +u_result RPlidarDriverImplCommon::getScanDataWithInterval(rplidar_response_measurement_node_t * nodebuffer, size_t & count) +{ + DEPRECATED_WARN("getScanDataWithInterval(rplidar_response_measurement_node_t*, size_t&)", "getScanDataWithInterval(rplidar_response_measurement_node_hq_t*, size_t&)"); + + size_t size_to_copy = 0; + { + rp::hal::AutoLocker l(_lock); + if(_cached_scan_node_hq_count_for_interval_retrieve == 0) + { + return RESULT_OPERATION_TIMEOUT; + } + //copy all the nodes(_cached_scan_node_count_for_interval_retrieve nodes) in _cached_scan_node_buf_for_interval_retrieve + size_to_copy = _cached_scan_node_hq_count_for_interval_retrieve; + for (size_t i = 0; i < size_to_copy; i++) + { + convert(_cached_scan_node_hq_buf_for_interval_retrieve[i], nodebuffer[i]); + } + _cached_scan_node_hq_count_for_interval_retrieve = 0; + } + count = size_to_copy; + + return RESULT_OK; +} + +u_result RPlidarDriverImplCommon::getScanDataWithIntervalHq(rplidar_response_measurement_node_hq_t * nodebuffer, size_t & count) +{ + size_t size_to_copy = 0; + { + rp::hal::AutoLocker l(_lock); + if (_cached_scan_node_hq_count_for_interval_retrieve == 0) + { + return RESULT_OPERATION_TIMEOUT; + } + //copy all the nodes(_cached_scan_node_count_for_interval_retrieve nodes) in _cached_scan_node_buf_for_interval_retrieve + size_to_copy = _cached_scan_node_hq_count_for_interval_retrieve; + memcpy(nodebuffer, _cached_scan_node_hq_buf_for_interval_retrieve, size_to_copy * sizeof(rplidar_response_measurement_node_hq_t)); + _cached_scan_node_hq_count_for_interval_retrieve = 0; + } + count = size_to_copy; + + return RESULT_OK; +} + +static inline float getAngle(const rplidar_response_measurement_node_t& node) +{ + return (node.angle_q6_checkbit >> RPLIDAR_RESP_MEASUREMENT_ANGLE_SHIFT) / 64.f; +} + +static inline void setAngle(rplidar_response_measurement_node_t& node, float v) +{ + _u16 checkbit = node.angle_q6_checkbit & RPLIDAR_RESP_MEASUREMENT_CHECKBIT; + node.angle_q6_checkbit = (((_u16)(v * 64.0f)) << RPLIDAR_RESP_MEASUREMENT_ANGLE_SHIFT) | checkbit; +} + +static inline float getAngle(const rplidar_response_measurement_node_hq_t& node) +{ + return node.angle_z_q14 * 90.f / 16384.f; +} + +static inline void setAngle(rplidar_response_measurement_node_hq_t& node, float v) +{ + node.angle_z_q14 = _u32(v * 16384.f / 90.f); +} + +static inline _u16 getDistanceQ2(const rplidar_response_measurement_node_t& node) +{ + return node.distance_q2; +} + +static inline _u32 getDistanceQ2(const rplidar_response_measurement_node_hq_t& node) +{ + return node.dist_mm_q2; +} + +template +static bool angleLessThan(const TNode& a, const TNode& b) +{ + return getAngle(a) < getAngle(b); +} + +template < class TNode > +static u_result ascendScanData_(TNode * nodebuffer, size_t count) +{ + float inc_origin_angle = 360.f/count; + size_t i = 0; + + //Tune head + for (i = 0; i < count; i++) { + if(getDistanceQ2(nodebuffer[i]) == 0) { + continue; + } else { + while(i != 0) { + i--; + float expect_angle = getAngle(nodebuffer[i+1]) - inc_origin_angle; + if (expect_angle < 0.0f) expect_angle = 0.0f; + setAngle(nodebuffer[i], expect_angle); + } + break; + } + } + + // all the data is invalid + if (i == count) return RESULT_OPERATION_FAIL; + + //Tune tail + for (i = count - 1; i >= 0; i--) { + if(getDistanceQ2(nodebuffer[i]) == 0) { + continue; + } else { + while(i != (count - 1)) { + i++; + float expect_angle = getAngle(nodebuffer[i-1]) + inc_origin_angle; + if (expect_angle > 360.0f) expect_angle -= 360.0f; + setAngle(nodebuffer[i], expect_angle); + } + break; + } + } + + //Fill invalid angle in the scan + float frontAngle = getAngle(nodebuffer[0]); + for (i = 1; i < count; i++) { + if(getDistanceQ2(nodebuffer[i]) == 0) { + float expect_angle = frontAngle + i * inc_origin_angle; + if (expect_angle > 360.0f) expect_angle -= 360.0f; + setAngle(nodebuffer[i], expect_angle); + } + } + + // Reorder the scan according to the angle value + std::sort(nodebuffer, nodebuffer + count, &angleLessThan); + + return RESULT_OK; +} + +u_result RPlidarDriverImplCommon::ascendScanData(rplidar_response_measurement_node_t * nodebuffer, size_t count) +{ + DEPRECATED_WARN("ascendScanData(rplidar_response_measurement_node_t*, size_t)", "ascendScanData(rplidar_response_measurement_node_hq_t*, size_t)"); + + return ascendScanData_(nodebuffer, count); +} + +u_result RPlidarDriverImplCommon::ascendScanData(rplidar_response_measurement_node_hq_t * nodebuffer, size_t count) +{ + return ascendScanData_(nodebuffer, count); +} + +u_result RPlidarDriverImplCommon::_sendCommand(_u8 cmd, const void * payload, size_t payloadsize) +{ + _u8 pkt_header[10]; + rplidar_cmd_packet_t * header = reinterpret_cast(pkt_header); + _u8 checksum = 0; + + if (!_isConnected) return RESULT_OPERATION_FAIL; + + if (payloadsize && payload) { + cmd |= RPLIDAR_CMDFLAG_HAS_PAYLOAD; + } + + header->syncByte = RPLIDAR_CMD_SYNC_BYTE; + header->cmd_flag = cmd; + + // send header first + _chanDev->senddata(pkt_header, 2) ; + + if (cmd & RPLIDAR_CMDFLAG_HAS_PAYLOAD) { + checksum ^= RPLIDAR_CMD_SYNC_BYTE; + checksum ^= cmd; + checksum ^= (payloadsize & 0xFF); + + // calc checksum + for (size_t pos = 0; pos < payloadsize; ++pos) { + checksum ^= ((_u8 *)payload)[pos]; + } + + // send size + _u8 sizebyte = payloadsize; + _chanDev->senddata(&sizebyte, 1); + + // send payload + _chanDev->senddata((const _u8 *)payload, sizebyte); + + // send checksum + _chanDev->senddata(&checksum, 1); + } + + return RESULT_OK; +} + +u_result RPlidarDriverImplCommon::getSampleDuration_uS(rplidar_response_sample_rate_t & rateInfo, _u32 timeout) +{ + DEPRECATED_WARN("getSampleDuration_uS", "RplidarScanMode::us_per_sample"); + + if (!isConnected()) return RESULT_OPERATION_FAIL; + + _disableDataGrabbing(); + + rplidar_response_device_info_t devinfo; + // 1. fetch the device version first... + u_result ans = getDeviceInfo(devinfo, timeout); + + rateInfo.express_sample_duration_us = _cached_sampleduration_express; + rateInfo.std_sample_duration_us = _cached_sampleduration_std; + + if (devinfo.firmware_version < ((0x1<<8) | 17)) { + // provide fake data... + + return RESULT_OK; + } + + + { + rp::hal::AutoLocker l(_lock); + + if (IS_FAIL(ans = _sendCommand(RPLIDAR_CMD_GET_SAMPLERATE))) { + return ans; + } + + rplidar_ans_header_t response_header; + if (IS_FAIL(ans = _waitResponseHeader(&response_header, timeout))) { + return ans; + } + + // verify whether we got a correct header + if (response_header.type != RPLIDAR_ANS_TYPE_SAMPLE_RATE) { + return RESULT_INVALID_DATA; + } + + _u32 header_size = (response_header.size_q30_subtype & RPLIDAR_ANS_HEADER_SIZE_MASK); + if ( header_size < sizeof(rplidar_response_sample_rate_t)) { + return RESULT_INVALID_DATA; + } + + if (!_chanDev->waitfordata(header_size, timeout)) { + return RESULT_OPERATION_TIMEOUT; + } + _chanDev->recvdata(reinterpret_cast<_u8 *>(&rateInfo), sizeof(rateInfo)); + } + return RESULT_OK; +} + +u_result RPlidarDriverImplCommon::checkMotorCtrlSupport(bool & support, _u32 timeout) +{ + u_result ans; + support = false; + + if (!isConnected()) return RESULT_OPERATION_FAIL; + + _disableDataGrabbing(); + + { + rp::hal::AutoLocker l(_lock); + + rplidar_payload_acc_board_flag_t flag; + flag.reserved = 0; + + if (IS_FAIL(ans = _sendCommand(RPLIDAR_CMD_GET_ACC_BOARD_FLAG, &flag, sizeof(flag)))) { + return ans; + } + + rplidar_ans_header_t response_header; + if (IS_FAIL(ans = _waitResponseHeader(&response_header, timeout))) { + return ans; + } + + // verify whether we got a correct header + if (response_header.type != RPLIDAR_ANS_TYPE_ACC_BOARD_FLAG) { + return RESULT_INVALID_DATA; + } + + _u32 header_size = (response_header.size_q30_subtype & RPLIDAR_ANS_HEADER_SIZE_MASK); + if ( header_size < sizeof(rplidar_response_acc_board_flag_t)) { + return RESULT_INVALID_DATA; + } + + if (!_chanDev->waitfordata(header_size, timeout)) { + return RESULT_OPERATION_TIMEOUT; + } + rplidar_response_acc_board_flag_t acc_board_flag; + _chanDev->recvdata(reinterpret_cast<_u8 *>(&acc_board_flag), sizeof(acc_board_flag)); + + if (acc_board_flag.support_flag & RPLIDAR_RESP_ACC_BOARD_FLAG_MOTOR_CTRL_SUPPORT_MASK) { + support = true; + } + } + return RESULT_OK; +} + +u_result RPlidarDriverImplCommon::setMotorPWM(_u16 pwm) +{ + u_result ans; + rplidar_payload_motor_pwm_t motor_pwm; + motor_pwm.pwm_value = pwm; + + { + rp::hal::AutoLocker l(_lock); + + if (IS_FAIL(ans = _sendCommand(RPLIDAR_CMD_SET_MOTOR_PWM,(const _u8 *)&motor_pwm, sizeof(motor_pwm)))) { + return ans; + } + } + + return RESULT_OK; +} + +u_result RPlidarDriverImplCommon::startMotor() +{ + if (_isSupportingMotorCtrl) { // RPLIDAR A2 + setMotorPWM(DEFAULT_MOTOR_PWM); + delay(500); + return RESULT_OK; + } else { // RPLIDAR A1 + rp::hal::AutoLocker l(_lock); + _chanDev->clearDTR(); + delay(500); + return RESULT_OK; + } +} + +u_result RPlidarDriverImplCommon::stopMotor() +{ + if (_isSupportingMotorCtrl) { // RPLIDAR A2 + setMotorPWM(0); + delay(500); + return RESULT_OK; + } else { // RPLIDAR A1 + rp::hal::AutoLocker l(_lock); + _chanDev->setDTR(); + delay(500); + return RESULT_OK; + } +} + +void RPlidarDriverImplCommon::_disableDataGrabbing() +{ + _isScanning = false; + _cachethread.join(); +} + +// Serial Driver Impl + +RPlidarDriverSerial::RPlidarDriverSerial() +{ + _chanDev = new SerialChannelDevice(); +} + +RPlidarDriverSerial::~RPlidarDriverSerial() +{ + // force disconnection + disconnect(); + + _chanDev->close(); + _chanDev->ReleaseRxTx(); +} + +void RPlidarDriverSerial::disconnect() +{ + if (!_isConnected) return ; + stop(); +} + +u_result RPlidarDriverSerial::connect(const char * port_path, _u32 baudrate, _u32 flag) +{ + if (isConnected()) return RESULT_ALREADY_DONE; + + if (!_chanDev) return RESULT_INSUFFICIENT_MEMORY; + + { + rp::hal::AutoLocker l(_lock); + + // establish the serial connection... + if (!_chanDev->bind(port_path, baudrate) || !_chanDev->open()) { + return RESULT_INVALID_DATA; + } + _chanDev->flush(); + } + + _isConnected = true; + + checkMotorCtrlSupport(_isSupportingMotorCtrl); + stopMotor(); + + return RESULT_OK; +} + +RPlidarDriverTCP::RPlidarDriverTCP() +{ + _chanDev = new TCPChannelDevice(); +} + +RPlidarDriverTCP::~RPlidarDriverTCP() +{ + // force disconnection + disconnect(); +} + +void RPlidarDriverTCP::disconnect() +{ + if (!_isConnected) return ; + stop(); + _chanDev->close(); +} + +u_result RPlidarDriverTCP::connect(const char * ipStr, _u32 port, _u32 flag) +{ + if (isConnected()) return RESULT_ALREADY_DONE; + + if (!_chanDev) return RESULT_INSUFFICIENT_MEMORY; + + { + rp::hal::AutoLocker l(_lock); + + // establish the serial connection... + if(!_chanDev->bind(ipStr, port)) + return RESULT_INVALID_DATA; + } + + _isConnected = true; + + checkMotorCtrlSupport(_isSupportingMotorCtrl); + stopMotor(); + + return RESULT_OK; +} + +}}} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/rplidar_driver_TCP.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/rplidar_driver_TCP.h new file mode 100644 index 0000000..0bd7ffd --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/rplidar_driver_TCP.h @@ -0,0 +1,85 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#pragma once + +namespace rp { namespace standalone{ namespace rplidar { + +class TCPChannelDevice :public ChannelDevice +{ +public: + rp::net::StreamSocket * _binded_socket; + TCPChannelDevice():_binded_socket(rp::net::StreamSocket::CreateSocket()){} + + bool bind(const char * ipStr, uint32_t port) + { + rp::net::SocketAddress socket(ipStr, port); + return IS_OK(_binded_socket->connect(socket)); + } + void close() + { + _binded_socket->dispose(); + _binded_socket = NULL; + } + bool waitfordata(size_t data_count,_u32 timeout = -1, size_t * returned_size = NULL) + { + if(returned_size) + *returned_size = data_count; + return (_binded_socket->waitforData(timeout) == RESULT_OK); + } + int senddata(const _u8 * data, size_t size) + { + return _binded_socket->send(data, size) ; + } + int recvdata(unsigned char * data, size_t size) + { + size_t lenRec = 0; + _binded_socket->recv(data, size, lenRec); + return lenRec; + } +}; + + +class RPlidarDriverTCP : public RPlidarDriverImplCommon +{ +public: + + RPlidarDriverTCP(); + virtual ~RPlidarDriverTCP(); + virtual u_result connect(const char * ipStr, _u32 port, _u32 flag = 0); + virtual void disconnect(); +}; + + +}}} \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/rplidar_driver_impl.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/rplidar_driver_impl.h new file mode 100644 index 0000000..a8db47d --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/rplidar_driver_impl.h @@ -0,0 +1,133 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#pragma once + +namespace rp { namespace standalone{ namespace rplidar { + class RPlidarDriverImplCommon : public RPlidarDriver +{ +public: + + virtual bool isConnected(); + virtual u_result reset(_u32 timeout = DEFAULT_TIMEOUT); + virtual u_result clearNetSerialRxCache(); + virtual u_result getAllSupportedScanModes(std::vector& outModes, _u32 timeoutInMs = DEFAULT_TIMEOUT); + virtual u_result getTypicalScanMode(_u16& outMode, _u32 timeoutInMs = DEFAULT_TIMEOUT); + virtual u_result checkSupportConfigCommands(bool& outSupport, _u32 timeoutInMs = DEFAULT_TIMEOUT); + + virtual u_result getScanModeCount(_u16& modeCount, _u32 timeoutInMs = DEFAULT_TIMEOUT); + virtual u_result getLidarSampleDuration(float& sampleDurationRes, _u16 scanModeID, _u32 timeoutInMs = DEFAULT_TIMEOUT); + virtual u_result getMaxDistance(float &maxDistance, _u16 scanModeID, _u32 timeoutInMs = DEFAULT_TIMEOUT); + virtual u_result getScanModeAnsType(_u8 &ansType, _u16 scanModeID, _u32 timeoutInMs = DEFAULT_TIMEOUT); + virtual u_result getScanModeName(char* modeName, _u16 scanModeID, _u32 timeoutInMs = DEFAULT_TIMEOUT); + virtual u_result getLidarConf(_u32 type, std::vector<_u8> &outputBuf, const std::vector<_u8> &reserve = std::vector<_u8>(), _u32 timeout = DEFAULT_TIMEOUT); + + virtual u_result startScan(bool force, bool useTypicalScan, _u32 options = 0, RplidarScanMode* outUsedScanMode = NULL); + virtual u_result startScanExpress(bool force, _u16 scanMode, _u32 options = 0, RplidarScanMode* outUsedScanMode = NULL, _u32 timeout = DEFAULT_TIMEOUT); + + + virtual u_result getHealth(rplidar_response_device_health_t & health, _u32 timeout = DEFAULT_TIMEOUT); + virtual u_result getDeviceInfo(rplidar_response_device_info_t & info, _u32 timeout = DEFAULT_TIMEOUT); + virtual u_result getSampleDuration_uS(rplidar_response_sample_rate_t & rateInfo, _u32 timeout = DEFAULT_TIMEOUT); + virtual u_result setMotorPWM(_u16 pwm); + virtual u_result startMotor(); + virtual u_result stopMotor(); + virtual u_result checkMotorCtrlSupport(bool & support, _u32 timeout = DEFAULT_TIMEOUT); + virtual u_result getFrequency(bool inExpressMode, size_t count, float & frequency, bool & is4kmode); + virtual u_result getFrequency(const RplidarScanMode& scanMode, size_t count, float & frequency); + virtual u_result startScanNormal(bool force, _u32 timeout = DEFAULT_TIMEOUT); + virtual u_result checkExpressScanSupported(bool & support, _u32 timeout = DEFAULT_TIMEOUT); + virtual u_result stop(_u32 timeout = DEFAULT_TIMEOUT); + virtual u_result grabScanData(rplidar_response_measurement_node_t * nodebuffer, size_t & count, _u32 timeout = DEFAULT_TIMEOUT); + virtual u_result grabScanDataHq(rplidar_response_measurement_node_hq_t * nodebuffer, size_t & count, _u32 timeout = DEFAULT_TIMEOUT); + virtual u_result ascendScanData(rplidar_response_measurement_node_t * nodebuffer, size_t count); + virtual u_result ascendScanData(rplidar_response_measurement_node_hq_t * nodebuffer, size_t count); + virtual u_result getScanDataWithInterval(rplidar_response_measurement_node_t * nodebuffer, size_t & count); + virtual u_result getScanDataWithIntervalHq(rplidar_response_measurement_node_hq_t * nodebuffer, size_t & count); + +protected: + + virtual u_result _sendCommand(_u8 cmd, const void * payload = NULL, size_t payloadsize = 0); + void _disableDataGrabbing(); + + virtual u_result _waitResponseHeader(rplidar_ans_header_t * header, _u32 timeout = DEFAULT_TIMEOUT); + virtual u_result _cacheScanData(); + virtual u_result _waitScanData(rplidar_response_measurement_node_t * nodebuffer, size_t & count, _u32 timeout = DEFAULT_TIMEOUT); + virtual u_result _waitNode(rplidar_response_measurement_node_t * node, _u32 timeout = DEFAULT_TIMEOUT); + virtual u_result _cacheCapsuledScanData(); + virtual u_result _waitCapsuledNode(rplidar_response_capsule_measurement_nodes_t & node, _u32 timeout = DEFAULT_TIMEOUT); + virtual void _capsuleToNormal(const rplidar_response_capsule_measurement_nodes_t & capsule, rplidar_response_measurement_node_hq_t *nodebuffer, size_t &nodeCount); + virtual void _dense_capsuleToNormal(const rplidar_response_capsule_measurement_nodes_t & capsule, rplidar_response_measurement_node_hq_t *nodebuffer, size_t &nodeCount); + + //FW1.23 + virtual u_result _cacheUltraCapsuledScanData(); + virtual u_result _waitUltraCapsuledNode(rplidar_response_ultra_capsule_measurement_nodes_t & node, _u32 timeout = DEFAULT_TIMEOUT); + virtual void _ultraCapsuleToNormal(const rplidar_response_ultra_capsule_measurement_nodes_t & capsule, rplidar_response_measurement_node_hq_t *nodebuffer, size_t &nodeCount); + + virtual u_result _cacheHqScanData(); + virtual u_result _waitHqNode(rplidar_response_hq_capsule_measurement_nodes_t & node, _u32 timeout = DEFAULT_TIMEOUT); + virtual void _HqToNormal(const rplidar_response_hq_capsule_measurement_nodes_t & node_hq, rplidar_response_measurement_node_hq_t *nodebuffer, size_t &nodeCount); + + bool _isConnected; + bool _isScanning; + bool _isSupportingMotorCtrl; + + rplidar_response_measurement_node_hq_t _cached_scan_node_hq_buf[8192]; + size_t _cached_scan_node_hq_count; + + rplidar_response_measurement_node_hq_t _cached_scan_node_hq_buf_for_interval_retrieve[8192]; + size_t _cached_scan_node_hq_count_for_interval_retrieve; + + _u16 _cached_sampleduration_std; + _u16 _cached_sampleduration_express; + _u8 _cached_express_flag; + + rplidar_response_capsule_measurement_nodes_t _cached_previous_capsuledata; + rplidar_response_dense_capsule_measurement_nodes_t _cached_previous_dense_capsuledata; + rplidar_response_ultra_capsule_measurement_nodes_t _cached_previous_ultracapsuledata; + rplidar_response_hq_capsule_measurement_nodes_t _cached_previous_Hqdata; + bool _is_previous_capsuledataRdy; + bool _is_previous_HqdataRdy; + + + + rp::hal::Locker _lock; + rp::hal::Event _dataEvt; + rp::hal::Thread _cachethread; + +protected: + RPlidarDriverImplCommon(); + virtual ~RPlidarDriverImplCommon() {} +}; +}}} \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/rplidar_driver_serial.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/rplidar_driver_serial.h new file mode 100644 index 0000000..abc1468 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/rplidar_driver_serial.h @@ -0,0 +1,106 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#pragma once + +namespace rp { namespace standalone{ namespace rplidar { + +class SerialChannelDevice :public ChannelDevice +{ +public: + rp::hal::serial_rxtx * _rxtxSerial; + bool _closePending; + + SerialChannelDevice():_rxtxSerial(rp::hal::serial_rxtx::CreateRxTx()){} + + bool bind(const char * portname, uint32_t baudrate) + { + _closePending = false; + return _rxtxSerial->bind(portname, baudrate); + } + bool open() + { + return _rxtxSerial->open(); + } + void close() + { + _closePending = true; + _rxtxSerial->cancelOperation(); + _rxtxSerial->close(); + } + void flush() + { + _rxtxSerial->flush(0); + } + bool waitfordata(size_t data_count,_u32 timeout = -1, size_t * returned_size = NULL) + { + if (_closePending) return false; + return (_rxtxSerial->waitfordata(data_count, timeout, returned_size) == rp::hal::serial_rxtx::ANS_OK); + } + int senddata(const _u8 * data, size_t size) + { + return _rxtxSerial->senddata(data, size) ; + } + int recvdata(unsigned char * data, size_t size) + { + size_t lenRec = 0; + lenRec = _rxtxSerial->recvdata(data, size); + return lenRec; + } + void setDTR() + { + _rxtxSerial->setDTR(); + } + void clearDTR() + { + _rxtxSerial->clearDTR(); + } + void ReleaseRxTx() + { + rp::hal::serial_rxtx::ReleaseRxTx(_rxtxSerial); + } +}; + +class RPlidarDriverSerial : public RPlidarDriverImplCommon +{ +public: + + RPlidarDriverSerial(); + virtual ~RPlidarDriverSerial(); + virtual u_result connect(const char * port_path, _u32 baudrate, _u32 flag = 0); + virtual void disconnect(); + +}; + +}}} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/sdkcommon.h b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/sdkcommon.h new file mode 100644 index 0000000..d025dfb --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/sdk/src/sdkcommon.h @@ -0,0 +1,50 @@ +/* + * RPLIDAR SDK + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2019 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#if defined(_WIN32) +#include "arch\win32\arch_win32.h" +#elif defined(_MACOS) +#include "arch/macOS/arch_macOS.h" +#elif defined(__GNUC__) +#include "arch/linux/arch_linux.h" +#else +#error "unsupported target" +#endif + +#include "hal/types.h" +#include "hal/assert.h" + +#include "rplidar.h" + +#include "hal/util.h" \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/src/client.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/src/client.cpp new file mode 100644 index 0000000..4020101 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/src/client.cpp @@ -0,0 +1,65 @@ +/* + * Copyright (c) 2014, RoboPeak + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ +/* + * RoboPeak LIDAR System + * RPlidar ROS Node client test app + * + * Copyright 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * + */ + + +#include "ros/ros.h" +#include "sensor_msgs/LaserScan.h" + +#define RAD2DEG(x) ((x)*180./M_PI) + +void scanCallback(const sensor_msgs::LaserScan::ConstPtr& scan) +{ + int count = scan->scan_time / scan->time_increment; + ROS_INFO("I heard a laser scan %s[%d]:", scan->header.frame_id.c_str(), count); + ROS_INFO("angle_range, %f, %f", RAD2DEG(scan->angle_min), RAD2DEG(scan->angle_max)); + + for(int i = 0; i < count; i++) { + float degree = RAD2DEG(scan->angle_min + scan->angle_increment * i); + ROS_INFO(": [%f, %f]", degree, scan->ranges[i]); + } +} + +int main(int argc, char **argv) +{ + ros::init(argc, argv, "rplidar_node_client"); + ros::NodeHandle n; + + ros::Subscriber sub = n.subscribe("/scan", 1000, scanCallback); + + ros::spin(); + + return 0; +} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/src/node.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/src/node.cpp new file mode 100644 index 0000000..ea70ea2 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/rplidar_ros/src/node.cpp @@ -0,0 +1,384 @@ +/* + * RPLIDAR ROS NODE + * + * Copyright (c) 2009 - 2014 RoboPeak Team + * http://www.robopeak.com + * Copyright (c) 2014 - 2016 Shanghai Slamtec Co., Ltd. + * http://www.slamtec.com + * + */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, + * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + */ + +#include "ros/ros.h" +#include "sensor_msgs/LaserScan.h" +#include "std_srvs/Empty.h" +#include "rplidar.h" + +#ifndef _countof +#define _countof(_Array) (int)(sizeof(_Array) / sizeof(_Array[0])) +#endif + +#define DEG2RAD(x) ((x)*M_PI/180.) + +using namespace rp::standalone::rplidar; + +RPlidarDriver * drv = NULL; + +void publish_scan(ros::Publisher *pub, + rplidar_response_measurement_node_hq_t *nodes, + size_t node_count, ros::Time start, + double scan_time, bool inverted, + float angle_min, float angle_max, + float max_distance, + std::string frame_id) +{ + static int scan_count = 0; + sensor_msgs::LaserScan scan_msg; + + scan_msg.header.stamp = start; + scan_msg.header.frame_id = frame_id; + scan_count++; + + bool reversed = (angle_max > angle_min); + if ( reversed ) { + scan_msg.angle_min = M_PI - angle_max; + scan_msg.angle_max = M_PI - angle_min; + } else { + scan_msg.angle_min = M_PI - angle_min; + scan_msg.angle_max = M_PI - angle_max; + } + scan_msg.angle_increment = + (scan_msg.angle_max - scan_msg.angle_min) / (double)(node_count-1); + + scan_msg.scan_time = scan_time; + scan_msg.time_increment = scan_time / (double)(node_count-1); + scan_msg.range_min = 0.15; + scan_msg.range_max = max_distance;//8.0; + + scan_msg.intensities.resize(node_count); + scan_msg.ranges.resize(node_count); + bool reverse_data = (!inverted && reversed) || (inverted && !reversed); + if (!reverse_data) { + for (size_t i = 0; i < node_count; i++) { + float read_value = (float) nodes[i].dist_mm_q2/4.0f/1000; + if (read_value == 0.0) + scan_msg.ranges[i] = std::numeric_limits::infinity(); + else + scan_msg.ranges[i] = read_value; + scan_msg.intensities[i] = (float) (nodes[i].quality >> 2); + } + } else { + for (size_t i = 0; i < node_count; i++) { + float read_value = (float)nodes[i].dist_mm_q2/4.0f/1000; + if (read_value == 0.0) + scan_msg.ranges[node_count-1-i] = std::numeric_limits::infinity(); + else + scan_msg.ranges[node_count-1-i] = read_value; + scan_msg.intensities[node_count-1-i] = (float) (nodes[i].quality >> 2); + } + } + + pub->publish(scan_msg); +} + +bool getRPLIDARDeviceInfo(RPlidarDriver * drv) +{ + u_result op_result; + rplidar_response_device_info_t devinfo; + + op_result = drv->getDeviceInfo(devinfo); + if (IS_FAIL(op_result)) { + if (op_result == RESULT_OPERATION_TIMEOUT) { + ROS_ERROR("Error, operation time out. RESULT_OPERATION_TIMEOUT! "); + } else { + ROS_ERROR("Error, unexpected error, code: %x",op_result); + } + return false; + } + + // print out the device serial number, firmware and hardware version number.. + printf("RPLIDAR S/N: "); + for (int pos = 0; pos < 16 ;++pos) { + printf("%02X", devinfo.serialnum[pos]); + } + printf("\n"); + ROS_INFO("Firmware Ver: %d.%02d",devinfo.firmware_version>>8, devinfo.firmware_version & 0xFF); + ROS_INFO("Hardware Rev: %d",(int)devinfo.hardware_version); + return true; +} + +bool checkRPLIDARHealth(RPlidarDriver * drv) +{ + u_result op_result; + rplidar_response_device_health_t healthinfo; + + op_result = drv->getHealth(healthinfo); + if (IS_OK(op_result)) { + ROS_INFO("RPLidar health status : %d", healthinfo.status); + if (healthinfo.status == RPLIDAR_STATUS_ERROR) { + ROS_ERROR("Error, rplidar internal error detected. Please reboot the device to retry."); + return false; + } else { + return true; + } + + } else { + ROS_ERROR("Error, cannot retrieve rplidar health code: %x", op_result); + return false; + } +} + +bool stop_motor(std_srvs::Empty::Request &req, + std_srvs::Empty::Response &res) +{ + if(!drv) + return false; + + ROS_DEBUG("Stop motor"); + drv->stop(); + drv->stopMotor(); + return true; +} + +bool start_motor(std_srvs::Empty::Request &req, + std_srvs::Empty::Response &res) +{ + if(!drv) + return false; + ROS_DEBUG("Start motor"); + drv->startMotor(); + drv->startScan(0,1); + return true; +} + +static float getAngle(const rplidar_response_measurement_node_hq_t& node) +{ + return node.angle_z_q14 * 90.f / 16384.f; +} + +int main(int argc, char * argv[]) { + ros::init(argc, argv, "rplidar_node"); + + std::string channel_type; + std::string tcp_ip; + std::string serial_port; + int tcp_port = 20108; + int serial_baudrate = 115200; + std::string frame_id; + bool inverted = false; + bool angle_compensate = true; + float max_distance = 8.0; + int angle_compensate_multiple = 1;//it stand of angle compensate at per 1 degree + std::string scan_mode; + ros::NodeHandle nh; + ros::Publisher scan_pub = nh.advertise("scan", 1000); + ros::NodeHandle nh_private("~"); + nh_private.param("channel_type", channel_type, "serial"); + nh_private.param("tcp_ip", tcp_ip, "192.168.0.7"); + nh_private.param("tcp_port", tcp_port, 20108); + nh_private.param("serial_port", serial_port, "/dev/ttyUSB0"); + nh_private.param("serial_baudrate", serial_baudrate, 115200/*256000*/);//ros run for A1 A2, change to 256000 if A3 + nh_private.param("frame_id", frame_id, "laser_frame"); + nh_private.param("inverted", inverted, false); + nh_private.param("angle_compensate", angle_compensate, false); + nh_private.param("scan_mode", scan_mode, std::string()); + + ROS_INFO("RPLIDAR running on ROS package rplidar_ros. SDK Version:%s", RPLIDAR_SDK_VERSION); + + u_result op_result; + + // create the driver instance + if(channel_type == "tcp"){ + drv = RPlidarDriver::CreateDriver(rp::standalone::rplidar::DRIVER_TYPE_TCP); + } + else{ + drv = RPlidarDriver::CreateDriver(rp::standalone::rplidar::DRIVER_TYPE_SERIALPORT); + } + + + if (!drv) { + ROS_ERROR("Create Driver fail, exit"); + return -2; + } + + if(channel_type == "tcp"){ + // make connection... + if (IS_FAIL(drv->connect(tcp_ip.c_str(), (_u32)tcp_port))) { + ROS_ERROR("Error, cannot bind to the specified serial port %s.",serial_port.c_str()); + RPlidarDriver::DisposeDriver(drv); + return -1; + } + + } + else{ + // make connection... + if (IS_FAIL(drv->connect(serial_port.c_str(), (_u32)serial_baudrate))) { + ROS_ERROR("Error, cannot bind to the specified serial port %s.",serial_port.c_str()); + RPlidarDriver::DisposeDriver(drv); + return -1; + } + + } + + // get rplidar device info + if (!getRPLIDARDeviceInfo(drv)) { + return -1; + } + + // check health... + if (!checkRPLIDARHealth(drv)) { + RPlidarDriver::DisposeDriver(drv); + return -1; + } + + ros::ServiceServer stop_motor_service = nh.advertiseService("stop_motor", stop_motor); + ros::ServiceServer start_motor_service = nh.advertiseService("start_motor", start_motor); + + drv->startMotor(); + + RplidarScanMode current_scan_mode; + if (scan_mode.empty()) { + op_result = drv->startScan(false /* not force scan */, true /* use typical scan mode */, 0, ¤t_scan_mode); + } else { + std::vector allSupportedScanModes; + op_result = drv->getAllSupportedScanModes(allSupportedScanModes); + + if (IS_OK(op_result)) { + _u16 selectedScanMode = _u16(-1); + for (std::vector::iterator iter = allSupportedScanModes.begin(); iter != allSupportedScanModes.end(); iter++) { + if (iter->scan_mode == scan_mode) { + selectedScanMode = iter->id; + break; + } + } + + if (selectedScanMode == _u16(-1)) { + ROS_ERROR("scan mode `%s' is not supported by lidar, supported modes:", scan_mode.c_str()); + for (std::vector::iterator iter = allSupportedScanModes.begin(); iter != allSupportedScanModes.end(); iter++) { + ROS_ERROR("\t%s: max_distance: %.1f m, Point number: %.1fK", iter->scan_mode, + iter->max_distance, (1000/iter->us_per_sample)); + } + op_result = RESULT_OPERATION_FAIL; + } else { + op_result = drv->startScanExpress(false /* not force scan */, selectedScanMode, 0, ¤t_scan_mode); + } + } + } + + if(IS_OK(op_result)) + { + //default frequent is 10 hz (by motor pwm value), current_scan_mode.us_per_sample is the number of scan point per us + angle_compensate_multiple = (int)(1000*1000/current_scan_mode.us_per_sample/10.0/360.0); + if(angle_compensate_multiple < 1) + angle_compensate_multiple = 1; + max_distance = current_scan_mode.max_distance; + ROS_INFO("current scan mode: %s, max_distance: %.1f m, Point number: %.1fK , angle_compensate: %d", current_scan_mode.scan_mode, + current_scan_mode.max_distance, (1000/current_scan_mode.us_per_sample), angle_compensate_multiple); + } + else + { + ROS_ERROR("Can not start scan: %08x!", op_result); + } + + ros::Time start_scan_time; + ros::Time end_scan_time; + double scan_duration; + while (ros::ok()) { + rplidar_response_measurement_node_hq_t nodes[360*8]; + size_t count = _countof(nodes); + + start_scan_time = ros::Time::now(); + op_result = drv->grabScanDataHq(nodes, count); + end_scan_time = ros::Time::now(); + scan_duration = (end_scan_time - start_scan_time).toSec(); + + if (op_result == RESULT_OK) { + op_result = drv->ascendScanData(nodes, count); + float angle_min = DEG2RAD(0.0f); + float angle_max = DEG2RAD(359.0f); + if (op_result == RESULT_OK) { + if (angle_compensate) { + //const int angle_compensate_multiple = 1; + const int angle_compensate_nodes_count = 360*angle_compensate_multiple; + int angle_compensate_offset = 0; + rplidar_response_measurement_node_hq_t angle_compensate_nodes[angle_compensate_nodes_count]; + memset(angle_compensate_nodes, 0, angle_compensate_nodes_count*sizeof(rplidar_response_measurement_node_hq_t)); + + int i = 0, j = 0; + for( ; i < count; i++ ) { + if (nodes[i].dist_mm_q2 != 0) { + float angle = getAngle(nodes[i]); + int angle_value = (int)(angle * angle_compensate_multiple); + if ((angle_value - angle_compensate_offset) < 0) angle_compensate_offset = angle_value; + for (j = 0; j < angle_compensate_multiple; j++) { + angle_compensate_nodes[angle_value-angle_compensate_offset+j] = nodes[i]; + } + } + } + + publish_scan(&scan_pub, angle_compensate_nodes, angle_compensate_nodes_count, + start_scan_time, scan_duration, inverted, + angle_min, angle_max, max_distance, + frame_id); + } else { + int start_node = 0, end_node = 0; + int i = 0; + // find the first valid node and last valid node + while (nodes[i++].dist_mm_q2 == 0); + start_node = i-1; + i = count -1; + while (nodes[i--].dist_mm_q2 == 0); + end_node = i+1; + + angle_min = DEG2RAD(getAngle(nodes[start_node])); + angle_max = DEG2RAD(getAngle(nodes[end_node])); + + publish_scan(&scan_pub, &nodes[start_node], end_node-start_node +1, + start_scan_time, scan_duration, inverted, + angle_min, angle_max, max_distance, + frame_id); + } + } else if (op_result == RESULT_OPERATION_FAIL) { + // All the data is invalid, just publish them + float angle_min = DEG2RAD(0.0f); + float angle_max = DEG2RAD(359.0f); + + publish_scan(&scan_pub, nodes, count, + start_scan_time, scan_duration, inverted, + angle_min, angle_max, max_distance, + frame_id); + } + } + + ros::spinOnce(); + } + + // done! + drv->stop(); + drv->stopMotor(); + RPlidarDriver::DisposeDriver(drv); + return 0; +} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/CMakeLists.txt new file mode 100644 index 0000000..88fc168 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/CMakeLists.txt @@ -0,0 +1,192 @@ +cmake_minimum_required(VERSION 2.8.3) +project(simple_follower) + +## 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 + sensor_msgs + geometry_msgs + message_generation +) + +## 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 + position.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 + sensor_msgs + geometry_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 simple_follower + CATKIN_DEPENDS roscpp rospy std_msgs message_runtime +# DEPENDS system_lib +) + +########### +## Build ## +########### + +## Specify additional locations of header files +## Your package locations should be listed before other locations +# include_directories(include) +include_directories( + ${catkin_INCLUDE_DIRS} +) + +## Declare a C++ library +# add_library(simple_follower +# src/${PROJECT_NAME}/simple_follower.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(simple_follower ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Declare a C++ executable +# add_executable(simple_follower_node src/simple_follower_node.cpp) + +## Add cmake target dependencies of the executable +## same as for the library above +# add_dependencies(simple_follower_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) + +## Specify libraries to link a library or executable target against +# target_link_libraries(simple_follower_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 simple_follower simple_follower_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_simple_follower.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/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/launch/laser_follower.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/launch/laser_follower.launch new file mode 100644 index 0000000..5c48954 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/launch/laser_follower.launch @@ -0,0 +1,4 @@ + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/launch/nodes/follower.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/launch/nodes/follower.launch new file mode 100644 index 0000000..1103af5 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/launch/nodes/follower.launch @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/launch/nodes/laserTracker.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/launch/nodes/laserTracker.launch new file mode 100644 index 0000000..7f21ccf --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/launch/nodes/laserTracker.launch @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/launch/nodes/visualTracker.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/launch/nodes/visualTracker.launch new file mode 100644 index 0000000..73dd9d0 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/launch/nodes/visualTracker.launch @@ -0,0 +1,17 @@ + + + + + upper : [0, 120, 100] + lower : [9, 255, 255] + + + + pictureHeight: 480 + pictureWidth: 640 + + verticalAngle: 0.43196898986859655 + horizontalAngle: 0.5235987755982988 + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/launch/visual_follower.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/launch/visual_follower.launch new file mode 100644 index 0000000..5c4025e --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/launch/visual_follower.launch @@ -0,0 +1,4 @@ + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/msg/position.msg b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/msg/position.msg new file mode 100644 index 0000000..67dde10 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/msg/position.msg @@ -0,0 +1,3 @@ +float32 angleX +float32 angleY +float32 distance diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/package.xml new file mode 100644 index 0000000..a37c8b6 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/package.xml @@ -0,0 +1,61 @@ + + + simple_follower + 0.0.0 + Makes a mobile robot follow a target. either using rgb-d or laser range finder + + + + + clemens + + + + + + TODO + + + + + + + + + + + + + + + + + + + message_generation + + + + + + catkin + roscpp + rospy + std_msgs + sensor_msgs + geometry_msgs + message_runtime + message_generation + roscpp + rospy + std_msgs + sensor_msgs + geometry_msgs + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/parameters/PID_param.yaml b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/parameters/PID_param.yaml new file mode 100644 index 0000000..c03fd6a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/parameters/PID_param.yaml @@ -0,0 +1,3 @@ +P: [0.7, 0.6] +I: [0.07,0.04] +D: [0.00, 0.000] diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/scripts/follower.py b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/scripts/follower.py new file mode 100644 index 0000000..0f92486 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/scripts/follower.py @@ -0,0 +1,213 @@ +#!/usr/bin/env python +# test mail: chutter@uos.de + +import rospy +import thread, threading +import time +import numpy as np +from sensor_msgs.msg import Joy, LaserScan +from geometry_msgs.msg import Twist, Vector3 +from simple_follower.msg import position as PositionMsg +from std_msgs.msg import String as StringMsg + +class Follower: + def __init__(self): + # as soon as we stop receiving Joy messages from the ps3 controller we stop all movement: + self.controllerLossTimer = threading.Timer(1, self.controllerLoss) #if we lose connection + self.controllerLossTimer.start() + self.switchMode= rospy.get_param('~switchMode') # if this is set to False the O button has to be kept pressed in order for it to move + self.max_speed = rospy.get_param('~maxSpeed') + self.controllButtonIndex = rospy.get_param('~controllButtonIndex') + + self.buttonCallbackBusy=False + self.active=False + + self.cmdVelPublisher = rospy.Publisher('/cmd_vel', Twist, queue_size =3) + # the topic for the messages from the ps3 controller (game pad) + self.joySubscriber = rospy.Subscriber('joy', Joy, self.buttonCallback) + + # the topic for the tracker that gives us the current position of the object we are following + self.positionSubscriber = rospy.Subscriber('/object_tracker/current_position', PositionMsg, self.positionUpdateCallback) + # an info string from that tracker. E.g. telling us if we lost the object + self.trackerInfoSubscriber = rospy.Subscriber('/object_tracker/info', StringMsg, self.trackerInfoCallback) + + # PID parameters first is angular, dist + targetDist = rospy.get_param('~targetDist') + PID_param = rospy.get_param('~PID_controller') + # the first parameter is the angular target (0 degrees always) the second is the target distance (say 1 meter) + self.PID_controller = simplePID([0, targetDist], PID_param['P'], PID_param['I'], PID_param['D']) + + # this method gets called when the process is killed with Ctrl+C + rospy.on_shutdown(self.controllerLoss) + + def trackerInfoCallback(self, info): + # we do not handle any info from the object tracker specifically at the moment. just ignore that we lost the object for example + rospy.logwarn(info.data) + + def positionUpdateCallback(self, position): + # gets called whenever we receive a new position. It will then update the motorcomand + + #if(not(self.active)): + # return #if we are not active we will return imediatly without doing anything + + angleX= position.angleX + distance = position.distance + + rospy.loginfo('Angle: {}, Distance: {}, '.format(angleX, distance)) + + # call the PID controller to update it and get new speeds + [uncliped_ang_speed, uncliped_lin_speed] = self.PID_controller.update([angleX, distance]) + + # clip these speeds to be less then the maximal speed specified above + angularSpeed = np.clip(-uncliped_ang_speed, -self.max_speed, self.max_speed) + linearSpeed = np.clip(-uncliped_lin_speed, -self.max_speed, self.max_speed) + + # create the Twist message to send to the cmd_vel topic + velocity = Twist() + velocity.linear = Vector3(linearSpeed,0,0.) + velocity.angular= Vector3(0., 0.,angularSpeed) + rospy.loginfo('linearSpeed: {}, angularSpeed: {}'.format(linearSpeed, angularSpeed)) + self.cmdVelPublisher.publish(velocity) + + + def buttonCallback(self, joy_data): + # this method gets called whenever we receive a message from the joy stick + + # there is a timer that always gets reset if we have a new joy stick message + # if it runs out we know that we have lost connection and the controllerLoss function + # will be called + self.controllerLossTimer.cancel() + self.controllerLossTimer = threading.Timer(0.5, self.controllerLoss) + self.controllerLossTimer.start() + + # if we are in switch mode, one button press will make the follower active / inactive + # but 'one' button press will be visible in roughly 10 joy messages (since they get published to fast) + # so we need to drop the remaining 9 + + if self.buttonCallbackBusy: + # we are busy with dealing with the last message + return + else: + # we are not busy. i.e. there is a real 'new' button press + # we deal with it in a seperate thread to be able to drop the other joy messages arriving in the mean + # time + thread.start_new_thread(self.threadedButtonCallback, (joy_data, )) + + def threadedButtonCallback(self, joy_data): + self.buttonCallbackBusy = True + + if(joy_data.buttons[self.controllButtonIndex]==self.switchMode and self.active): + # we are active + # switchMode = false: we will always be inactive whenever the button is not pressed (buttons[index]==false) + # switchMode = true: we will only become inactive if we press the button. (if we keep pressing it, + # we would alternate between active and not in 0.5 second intervalls) + rospy.loginfo('stoping') + self.stopMoving() + self.active = False + rospy.sleep(0.5) + elif(joy_data.buttons[self.controllButtonIndex]==True and not(self.active)): + # if we are not active and just pressed the button (or are constantly pressing it) we become active + rospy.loginfo('activating') + self.active = True #enable response + rospy.sleep(0.5) + + self.buttonCallbackBusy = False + + def stopMoving(self): + velocity = Twist() + velocity.linear = Vector3(0.,0.,0.) + velocity.angular= Vector3(0.,0.,0.) + self.cmdVelPublisher.publish(velocity) + + def controllerLoss(self): + # we lost connection so we will stop moving and become inactive + self.stopMoving() + self.active = False + rospy.loginfo('lost connection') + + + +class simplePID: + '''very simple discrete PID controller''' + def __init__(self, target, P, I, D): + '''Create a discrete PID controller + each of the parameters may be a vector if they have the same length + + Args: + target (double) -- the target value(s) + P, I, D (double)-- the PID parameter + + ''' + + # check if parameter shapes are compatabile. + if(not(np.size(P)==np.size(I)==np.size(D)) or ((np.size(target)==1) and np.size(P)!=1) or (np.size(target )!=1 and (np.size(P) != np.size(target) and (np.size(P) != 1)))): + raise TypeError('input parameters shape is not compatable') + rospy.loginfo('PID initialised with P:{}, I:{}, D:{}'.format(P,I,D)) + self.Kp =np.array(P) + self.Ki =np.array(I) + self.Kd =np.array(D) + self.setPoint =np.array(target) + + self.last_error=0 + self.integrator = 0 + self.integrator_max = float('inf') + self.timeOfLastCall = None + + + def update(self, current_value): + '''Updates the PID controller. + + Args: + current_value (double): vector/number of same legth as the target given in the constructor + + Returns: + controll signal (double): vector of same length as the target + + ''' + current_value=np.array(current_value) + if(np.size(current_value) != np.size(self.setPoint)): + raise TypeError('current_value and target do not have the same shape') + if(self.timeOfLastCall is None): + # the PID was called for the first time. we don't know the deltaT yet + # no controll signal is applied + self.timeOfLastCall = time.clock() + return np.zeros(np.size(current_value)) + + + error = self.setPoint - current_value + P = error + + currentTime = time.clock() + deltaT = (currentTime-self.timeOfLastCall) + + # integral of the error is current error * time since last update + self.integrator = self.integrator + (error*deltaT) + I = self.integrator + + # derivative is difference in error / time since last update + D = (error-self.last_error)/deltaT + + self.last_error = error + self.timeOfLastCall = currentTime + + # return controll signal + return self.Kp*P + self.Ki*I + self.Kd*D + + + + + + + + + +if __name__ == '__main__': + print('starting') + rospy.init_node('follower') + follower = Follower() + try: + rospy.spin() + except rospy.ROSInterruptException: + print('exception') + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/scripts/laserTracker.py b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/scripts/laserTracker.py new file mode 100644 index 0000000..1d1caf8 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/scripts/laserTracker.py @@ -0,0 +1,85 @@ +#!/usr/bin/env python +# test mail: chutter@uos.de + +import rospy +import thread, threading +import time +import numpy as np +from sensor_msgs.msg import Joy, LaserScan +from geometry_msgs.msg import Twist, Vector3 +from std_msgs.msg import String as StringMsg +from simple_follower.msg import position as PositionMsg + +class laserTracker: + def __init__(self): + self.lastScan=None + self.winSize = rospy.get_param('~winSize') + self.deltaDist = rospy.get_param('~deltaDist') + self.scanSubscriber = rospy.Subscriber('/scan', LaserScan, self.registerScan) + self.positionPublisher = rospy.Publisher('/object_tracker/current_position', PositionMsg,queue_size=3) + self.infoPublisher = rospy.Publisher('/object_tracker/info', StringMsg, queue_size=3) + + def registerScan(self, scan_data): + # registers laser scan and publishes position of closest object (or point rather) + ranges = np.array(scan_data.ranges) + # sort by distance to check from closer to further away points if they might be something real + sortedIndices = np.argsort(ranges) + + minDistanceID = None + minDistance = float('inf') + + if(not(self.lastScan is None)): + # if we already have a last scan to compare to: + for i in sortedIndices: + # check all distance measurements starting from the closest one + tempMinDistance = ranges[i] + + # now we check if this might be noise: + # get a window. in it we will check if there has been a scan with similar distance + # in the last scan within that window + + # we kneed to clip the window so we don't have an index out of bounds + windowIndex = np.clip([i-self.winSize, i+self.winSize+1],0,len(self.lastScan)) + window = self.lastScan[windowIndex[0]:windowIndex[1]] + + with np.errstate(invalid='ignore'): + # check if any of the scans in the window (in the last scan) has a distance close enough to the current one + if(np.any(abs(window-tempMinDistance)<=self.deltaDist)): + # this will also be false for all tempMinDistance = NaN or inf + + # we found a plausible distance + minDistanceID = i + minDistance = ranges[minDistanceID] + break # at least one point was equally close + # so we found a valid minimum and can stop the loop + + self.lastScan=ranges + + #catches no scan, no minimum found, minimum is actually inf + if(minDistance > scan_data.range_max): + #means we did not really find a plausible object + + # publish warning that we did not find anything + rospy.logwarn('laser no object found') + self.infoPublisher.publish(StringMsg('laser:nothing found')) + + else: + # calculate angle of the objects location. 0 is straight ahead + minDistanceAngle = scan_data.angle_min + minDistanceID * scan_data.angle_increment + # here we only have an x angle, so the y is set arbitrarily + self.positionPublisher.publish(PositionMsg(minDistanceAngle, 42, minDistance)) + + + + +if __name__ == '__main__': + print('starting') + rospy.init_node('laser_tracker') + tracker = laserTracker() + print('seems to do something') + try: + rospy.spin() + except rospy.ROSInterruptException: + print('exception') + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/scripts/testCode.py b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/scripts/testCode.py new file mode 100644 index 0000000..9f77b59 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/scripts/testCode.py @@ -0,0 +1,114 @@ +import numpy as np +import copy +from unsafe_runaway import * +import time +from nose.tools import assert_raises + + + + +class mockup: + pass + + +def makeLaserData(): + laser_data = mockup() + laser_data.range_max = 5.6 + laser_data.angle_min = -2.1 + laser_data.angle_increment = 0.06136 + laser_data.ranges = list(1+np.random.rand(69)*5) + return laser_data + +class Test_simpleTracker: + + + def setUp(self): + self.tracker = simpleTracker() + + def test_ignor_first_scan(self): + laser_data = makeLaserData() + tracker = simpleTracker() + assert_raises(UserWarning, self.tracker.registerScan,laser_data) + + def test_unmuted(self): + laser_data = makeLaserData() + backup = copy.copy(laser_data) + try: + angle, distance = self.tracker.registerScan(laser_data) + except: + pass + assert backup.ranges == laser_data.ranges + #print(laser_data.ranges) + #print('angle: {}, dist: {}'.format(angle, distance)) + + def test_nan(self): + laser_data = makeLaserData() + assert_raises(UserWarning, self.tracker.registerScan,laser_data) + laser_data.ranges[12] = float('nan') + angle, dist=self.tracker.registerScan(laser_data) + #print('angle: {}, dist: {}'.format(angle, dist)) + + def test_only_nan(self): + laser_data = makeLaserData() + laser_data.ranges = [float('nan') for _ in laser_data.ranges] + assert_raises(UserWarning, self.tracker.registerScan,laser_data) + assert_raises(UserWarning, self.tracker.registerScan,laser_data) + + + + def test_real_real_min(self): + laser_data = makeLaserData() + laser_data.ranges[-1]=0.5 #real min + assert_raises(UserWarning, self.tracker.registerScan,laser_data) + laser_data.ranges[-1]=0.6 + laser_data.ranges[42]=0.1 #fake min + ang, dist = self.tracker.registerScan(laser_data) + assert dist == 0.6 + #print('ang: {}, target: {}'.format(ang, (laser_data.angle_min+ 23*laser_data.angle_increment))) + assert ang == laser_data.angle_min+ 68*laser_data.angle_increment + + +class Test_PID: + def setUp(self): + pass + + def test_convergence(self): + self.pid = simplePID([0,30], 0.8, 0.001, 0.0001) + x =np.array([23, 12]) + for i in range(20): + update= self.pid.update(x) + print('added {} to current x {}'.format(update, x)) + x = x+update + time.sleep(0.1) + assert np.all(abs(x-[0,30])<=0.01) + + def test_convergence_differentParamShape(self): + self.pid = simplePID([0,30],0.8, 0.001, 0.0001) + x =np.array([23, 12]) + for i in range(20): + update= self.pid.update(x) + print('added {} to current x {}'.format(update, x)) + x = x+update + time.sleep(0.1) + assert np.all(abs(x-[0,30])<=0.01) + + + def test_raises_unequal_param_shape_at_creation(self): + assert_raises(TypeError, simplePID, [0,30],[0.8, 0.7, 0.1], 0.001, 0.0001) + assert_raises(TypeError, simplePID, [0,30],[0.8, 0.7], 0.001, 0.0001) + assert_raises(TypeError, simplePID, 0,[0.8, 0.7], 0.001, 0.0001) + assert_raises(TypeError, simplePID, 0, [0.8, 0.7], [0.001, 0.001], [0.0001, 0,0001]) + _ = simplePID([0,30],[0.8, 0.7], [0.001, 0.001], [0.0001, 0.0001]) + _ = simplePID([0,30],0.8, 0.001, 0.0001) + _ = simplePID(0,0.8, 0.001, 0.0001) + + def test_raise_incompatable_input(self): + self.pid = simplePID([0,30], 0.8, 0.001, 0.0001) + _ = assert_raises(TypeError, self.pid.update, 3) + x =np.array([23, 12]) + for i in range(50): + update= self.pid.update(x) + print('added {} to current x {}'.format(update, x)) + x = x+update + time.sleep(0.1) + assert np.all(abs(x-[0,30])<=0.001) diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/scripts/visualTracker.py b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/scripts/visualTracker.py new file mode 100644 index 0000000..b04c9f9 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/simple_follower/scripts/visualTracker.py @@ -0,0 +1,206 @@ +#!/usr/bin/env python + +from __future__ import division +import rospy +import message_filters +import numpy as np +import cv2 +from matplotlib import pyplot as plt +from cv_bridge import CvBridge + +from sensor_msgs.msg import Image +from simple_follower.msg import position as PositionMsg +from std_msgs.msg import String as StringMsg +np.seterr(all='raise') +displayImage=False + +plt.close('all') +class visualTracker: + def __init__(self): + self.bridge = CvBridge() + self.targetUpper = np.array(rospy.get_param('~target/upper')) + self.targetLower = np.array(rospy.get_param('~target/lower')) + self.pictureHeight= rospy.get_param('~pictureDimensions/pictureHeight') + self.pictureWidth = rospy.get_param('~pictureDimensions/pictureWidth') + vertAngle =rospy.get_param('~pictureDimensions/verticalAngle') + horizontalAngle = rospy.get_param('~pictureDimensions/horizontalAngle') + # precompute tangens since thats all we need anyways: + self.tanVertical = np.tan(vertAngle) + self.tanHorizontal = np.tan(horizontalAngle) + + self.lastPosition =None + + # one callback that deals with depth and rgb at the same time + im_sub = message_filters.Subscriber('/orbbec_astra/rgb/image_rect_color', Image) + dep_sub = message_filters.Subscriber('/orbbec_astra/depth/image', Image) + self.timeSynchronizer = message_filters.ApproximateTimeSynchronizer([im_sub, dep_sub], 10, 0.5) + self.timeSynchronizer.registerCallback(self.trackObject) + + + self.positionPublisher = rospy.Publisher('/object_tracker/current_position', PositionMsg, queue_size=3) + self.infoPublisher = rospy.Publisher('/object_tracker/info', StringMsg, queue_size=3) + rospy.logwarn(self.targetUpper) + + + def trackObject(self, image_data, depth_data): + if(image_data.encoding != 'rgb8'): + raise ValueError('image is not rgb8 as expected') + + #convert both images to numpy arrays + frame = self.bridge.imgmsg_to_cv2(image_data, desired_encoding='rgb8') + depthFrame = self.bridge.imgmsg_to_cv2(depth_data, desired_encoding='passthrough')#"32FC1") + + if(np.shape(frame)[0:2] != (self.pictureHeight, self.pictureWidth)): + raise ValueError('image does not have the right shape. shape(frame): {}, shape parameters:{}'.format(np.shape(frame)[0:2], (self.pictureHeight, self.pictureWidth))) + + # blure a little and convert to HSV color space + blurred = cv2.GaussianBlur(frame, (11,11), 0) + hsv = cv2.cvtColor(blurred, cv2.COLOR_RGB2HSV) + + # select all the pixels that are in the range specified by the target + org_mask = cv2.inRange(hsv, self.targetUpper, self.targetLower) + + # clean that up a little, the iterations are pretty much arbitrary + mask = cv2.erode(org_mask, None, iterations=4) + mask = cv2.dilate(mask,None, iterations=3) + + # find contours of the object + contours = cv2.findContours(mask.copy(), cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)[-2] + newPos = None #if no contour at all was found the last position will again be set to none + + # lets you display the image for debuging. Not in realtime though + if displayImage: + backConverted = cv2.cvtColor(hsv, cv2.COLOR_HSV2BGR) + #cv2.imshow('frame', backConverted) + #cv2.waitKey(0) + #print(backConverted) + plt.figure() + plt.subplot(2,2,1) + plt.imshow(frame) + plt.xticks([]),plt.yticks([]) + plt.subplot(2,2,2) + plt.imshow(org_mask, cmap='gray', interpolation = 'bicubic') + plt.xticks([]),plt.yticks([]) + plt.subplot(2,2,3) + plt.imshow(mask, cmap='gray', interpolation = 'bicubic') + plt.xticks([]),plt.yticks([]) + plt.show() + rospy.sleep(0.2) + + # go threw all the contours. starting with the bigest one + for contour in sorted(contours, key=cv2.contourArea, reverse=True): + # get position of object for this contour + pos = self.analyseContour(contour, depthFrame) + + # if it's the first one we found it will be the fall back for the next scan if we don't find a plausible one + if newPos is None: + newPos = pos + + # check if the position is plausible + if self.checkPosPlausible(pos): + self.lastPosition = pos + self.publishPosition(pos) + return + + self.lastPosition = newPos #we didn't find a plossible last position, so we just save the biggest contour + # and publish warnings + rospy.loginfo('no position found') + self.infoPublisher.publish(StringMsg('visual:nothing found')) + + + + + + def publishPosition(self, pos): + # calculate the angles from the raw position + angleX = self.calculateAngleX(pos) + angleY = self.calculateAngleY(pos) + # publish the position (angleX, angleY, distance) + posMsg = PositionMsg(angleX, angleY, pos[1]) + self.positionPublisher.publish(posMsg) + + def checkPosPlausible(self, pos): + '''Checks if a position is plausible. i.e. close enough to the last one.''' + + # for the first scan we cant tell + if self.lastPosition is None: + return False + + # unpack positions + ((centerX, centerY), dist)=pos + ((PcenterX, PcenterY), Pdist)=self.lastPosition + + if np.isnan(dist): + return False + + # distance changed to much + if abs(dist-Pdist)>0.5: + return False + + # location changed to much (5 is arbitrary) + if abs(centerX-PcenterX)>(self.pictureWidth /5): + return False + + if abs(centerY-PcenterY)>(self.pictureHeight/5): + return False + + return True + + + def calculateAngleX(self, pos): + '''calculates the X angle of displacement from straight ahead''' + + centerX = pos[0][0] + displacement = 2*centerX/self.pictureWidth-1 + angle = -1*np.arctan(displacement*self.tanHorizontal) + return angle + + def calculateAngleY(self, pos): + centerY = pos[0][1] + displacement = 2*centerY/self.pictureHeight-1 + angle = -1*np.arctan(displacement*self.tanVertical) + return angle + + def analyseContour(self, contour, depthFrame): + '''Calculates the centers coordinates and distance for a given contour + + Args: + contour (opencv contour): contour of the object + depthFrame (numpy array): the depth image + + Returns: + centerX, centerY (doubles): center coordinates + averageDistance : distance of the object + ''' + # get a rectangle that completely contains the object + centerRaw, size, rotation = cv2.minAreaRect(contour) + + # get the center of that rounded to ints (so we can index the image) + center = np.round(centerRaw).astype(int) + + # find out how far we can go in x/y direction without leaving the object (min of the extension of the bounding rectangle/2 (here 3 for safety)) + minSize = int(min(size)/3) + + # get all the depth points within this area (that is within the object) + depthObject = depthFrame[(center[1]-minSize):(center[1]+minSize), (center[0]-minSize):(center[0]+minSize)] + + # get the average of all valid points (average to have a more reliable distance measure) + depthArray = depthObject[~np.isnan(depthObject)] + averageDistance = np.mean(depthArray) + + if len(depthArray) == 0: + rospy.logwarn('empty depth array. all depth values are nan') + + return (centerRaw, averageDistance) + + +if __name__ == '__main__': + print('starting') + rospy.init_node('visual_tracker') + tracker=visualTracker() + print('seems to do something') + try: + rospy.spin() + except rospy.ROSInterruptException: + print('exception') + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/.gitignore b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/.gitignore new file mode 100644 index 0000000..4581ef2 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/.gitignore @@ -0,0 +1,29 @@ +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/CMakeLists.txt new file mode 100644 index 0000000..a15c01f --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/CMakeLists.txt @@ -0,0 +1,52 @@ +cmake_minimum_required(VERSION 2.8.3) +project(ydlidar) + +add_definitions(-std=c++11) # Use C++11 + +find_package(catkin REQUIRED COMPONENTS + rosconsole + roscpp + sensor_msgs +) + +#add_subdirectory(sdk) + +set(SDK_PATH "./sdk/") + +FILE(GLOB SDK_SRC + "${SDK_PATH}/src/impl/unix/*.cpp" + "${SDK_PATH}/src/*.cpp" +) + +catkin_package() + +include_directories( + ${catkin_INCLUDE_DIRS} + ${PROJECT_SOURCE_DIR}/src + ${PROJECT_SOURCE_DIR}/sdk/include + ${PROJECT_SOURCE_DIR}/sdk/src +) + +add_executable(ydlidar_node src/ydlidar_node.cpp ${SDK_SRC}) +add_executable(ydlidar_client src/ydlidar_client.cpp) + +target_link_libraries(ydlidar_node + ${catkin_LIBRARIES} + ) +target_link_libraries(ydlidar_client + ${catkin_LIBRARIES} + ) + +install(TARGETS ydlidar_node ydlidar_client + ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} + RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} +) + + +install(DIRECTORY launch startup sdk + DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} + USE_SOURCE_PERMISSIONS +) + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/README.md b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/README.md new file mode 100644 index 0000000..55c08e1 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/README.md @@ -0,0 +1,60 @@ +YDLIDAR ROS PACKAGE V1.2.1 +===================================================================== + +ROS node and test application for YDLIDAR + +Visit EAI Website for more details about YDLIDAR. + +How to build YDLIDAR ros package +===================================================================== + 1) Clone this project to your catkin's workspace src folder + 2) Running catkin_make to build ydlidar_node and ydlidar_client + 3) Create the name "/dev/ydlidar" for YDLIDAR + --$ roscd ydlidar/startup + --$ sudo chmod 777 ./* + --$ sudo sh initenv.sh + +How to run YDLIDAR ros package +===================================================================== +There're two ways to run YDLIDAR ros package + +1. Run YDLIDAR node and view in the rviz +------------------------------------------------------------ +roslaunch ydlidar lidar_view.launch + +You should see YDLIDAR's scan result in the rviz. + +2. Run YDLIDAR node and view using test application +------------------------------------------------------------ +roslaunch ydlidar lidar.launch + +rosrun ydlidar ydlidar_client + +You should see YDLIDAR's scan result in the console + + + + + +雷达驱动升级日志 +===================================================================== +2017-11-30 version:1.1.2 + +新增 + + 1.增加对现有所有EAI雷达支持 + + 2.增加Linux下非标准波特率的支持 + + 3.增加串口异常检测 + +改进 + + 1.修复雷达数据不稳定 + + 2.修复雷达没有数据 + +2017-12-16 version:1.2.0 + + 1.SDK统一平台 + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/f4.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/f4.launch new file mode 100644 index 0000000..b5c03e5 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/f4.launch @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/f4_view.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/f4_view.launch new file mode 100644 index 0000000..5546499 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/f4_view.launch @@ -0,0 +1,4 @@ + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/g4.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/g4.launch new file mode 100644 index 0000000..67e95ab --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/g4.launch @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/g4_view.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/g4_view.launch new file mode 100644 index 0000000..29f61e7 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/g4_view.launch @@ -0,0 +1,4 @@ + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/lidar.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/lidar.launch new file mode 100644 index 0000000..dde2618 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/lidar.launch @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/lidar.rviz b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/lidar.rviz new file mode 100644 index 0000000..7c630f9 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/lidar.rviz @@ -0,0 +1,128 @@ +Panels: + - Class: rviz/Displays + Help Height: 78 + Name: Displays + Property Tree Widget: + Expanded: + - /Global Options1 + - /Status1 + - /LidarLaserScan1 + Splitter Ratio: 0.5 + Tree Height: 413 + - Class: rviz/Selection + Name: Selection + - Class: rviz/Tool Properties + Expanded: + - /2D Pose Estimate1 + - /2D Nav Goal1 + Name: Tool Properties + Splitter Ratio: 0.588679 + - Class: rviz/Views + Expanded: + - /Current View1 + Name: Views + Splitter Ratio: 0.5 + - Class: rviz/Time + Experimental: false + Name: Time + SyncMode: 0 + SyncSource: "" +Visualization Manager: + Class: "" + Displays: + - Alpha: 0.5 + Cell Size: 1 + Class: rviz/Grid + Color: 160; 160; 164 + Enabled: true + Line Style: + Line Width: 0.03 + 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 + Autocompute Intensity Bounds: true + Autocompute Value Bounds: + Max Value: 0 + Min Value: 0 + Value: true + Axis: Z + Channel Name: intensity + Class: rviz/LaserScan + Color: 255; 255; 255 + Color Transformer: AxisColor + Decay Time: 0 + Enabled: true + Invert Rainbow: false + Max Color: 255; 255; 255 + Max Intensity: 4096 + Min Color: 0; 0; 0 + Min Intensity: 0 + Name: LidarLaserScan + Position Transformer: XYZ + Queue Size: 1000 + Selectable: true + Size (Pixels): 5 + Size (m): 0.03 + Style: Squares + Topic: /scan + Use Fixed Frame: true + Use rainbow: true + Value: true + Enabled: true + Global Options: + Background Color: 48; 48; 48 + Fixed Frame: laser_frame + Frame Rate: 30 + Name: root + Tools: + - Class: rviz/MoveCamera + - Class: rviz/Interact + Hide Inactive Objects: true + - Class: rviz/Select + - Class: rviz/SetInitialPose + Topic: /initialpose + - Class: rviz/SetGoal + Topic: /move_base_simple/goal + Value: true + Views: + Current: + Class: rviz/Orbit + Distance: 11.1184 + Focal Point: + X: -0.0344972 + Y: 0.065886 + Z: 0.148092 + Name: Current View + Near Clip Distance: 0.01 + Pitch: 0.615399 + Target Frame: + Value: Orbit (rviz) + Yaw: 5.82358 + Saved: ~ +Window Geometry: + Displays: + collapsed: false + Height: 626 + Hide Left Dock: false + Hide Right Dock: false + QMainWindow State: 000000ff00000000fd0000000400000000000001950000022cfc0200000006fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000006400fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c00610079007301000000280000022c000000dd00fffffffb0000000a0049006d006100670065000000028d000000c60000000000000000000000010000010b00000294fc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a00560069006500770073000000003300000294000000b000fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000004a00000003efc0100000002fb0000000800540069006d00650000000000000004a0000002f600fffffffb0000000800540069006d00650100000000000004500000000000000000000003240000022c00000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000 + Selection: + collapsed: false + Time: + collapsed: false + Tool Properties: + collapsed: false + Views: + collapsed: false + Width: 1215 + X: 65 + Y: 24 diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/lidar_rviz.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/lidar_rviz.launch new file mode 100644 index 0000000..5859511 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/lidar_rviz.launch @@ -0,0 +1,3 @@ + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/lidar_view.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/lidar_view.launch new file mode 100644 index 0000000..fd9c6ee --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/lidar_view.launch @@ -0,0 +1,4 @@ + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/x4.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/x4.launch new file mode 100644 index 0000000..1ee6030 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/x4.launch @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/x4_view.launch b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/x4_view.launch new file mode 100644 index 0000000..7b6a2a6 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/launch/x4_view.launch @@ -0,0 +1,4 @@ + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/package.xml b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/package.xml new file mode 100644 index 0000000..4a01468 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/package.xml @@ -0,0 +1,56 @@ + + + ydlidar + 1.2.1 + The ydlidar package + + + + + shao + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + rosconsole + roscpp + sensor_msgs + rosconsole + roscpp + sensor_msgs + + + + + + + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/CMakeLists.txt new file mode 100644 index 0000000..37f7a1a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/CMakeLists.txt @@ -0,0 +1,29 @@ + +add_definitions(-std=c++11) # Use C++11 +include_directories(include) +include_directories(src) + +IF (WIN32) +FILE(GLOB SDK_SRC + "src/*.cpp" + "src/*.h" + "src/impl/windows/*.cpp" + "src/impl/windows/*.h" +) + +ELSE() +FILE(GLOB SDK_SRC + "src/*.cpp" + "src/*.h" + "src/impl/unix/*.cpp" + "src/impl/unix/*.h" +) + + +ENDIF() + +add_library(ydlidar_driver ${SDK_SRC}) +IF (WIN32) +ELSE() +target_link_libraries(ydlidar_driver rt pthread) +ENDIF() diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/include/locker.h b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/include/locker.h new file mode 100644 index 0000000..d499caf --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/include/locker.h @@ -0,0 +1,317 @@ +#pragma once +#ifdef _WIN32 +#include +#include +#include +#include +#include +#include +#include +#else +#include +#include +#include +#include +#include +#include +#endif + + +class Locker +{ +public: + enum LOCK_STATUS { + LOCK_OK = 0, + LOCK_TIMEOUT = -1, + LOCK_FAILED = -2 + }; + + Locker(){ +#ifdef _WIN32 + _lock = NULL; +#endif + init(); + } + + ~Locker(){ + release(); + } + + Locker::LOCK_STATUS lock(unsigned long timeout = 0xFFFFFFFF) { +#ifdef _WIN32 + switch (WaitForSingleObject(_lock, timeout==0xFFFFFFF?INFINITE:(DWORD)timeout)) { + case WAIT_ABANDONED: + return LOCK_FAILED; + case WAIT_OBJECT_0: + return LOCK_OK; + case WAIT_TIMEOUT: + return LOCK_TIMEOUT; + } + +#else +#ifdef _MACOS + if (timeout !=0 ) { + if (pthread_mutex_lock(&_lock) == 0) return LOCK_OK; + } +#else + if (timeout == 0xFFFFFFFF){ + if (pthread_mutex_lock(&_lock) == 0) return LOCK_OK; + } +#endif + else if (timeout == 0) { + if (pthread_mutex_trylock(&_lock) == 0) return LOCK_OK; + } +#ifndef _MACOS + else{ + timespec wait_time; + timeval now; + gettimeofday(&now,NULL); + + wait_time.tv_sec = timeout/1000 + now.tv_sec; + wait_time.tv_nsec = (timeout%1000)*1000000 + now.tv_usec*1000; + + if (wait_time.tv_nsec >= 1000000000){ + ++wait_time.tv_sec; + wait_time.tv_nsec -= 1000000000; + } + +#if !defined(__ANDROID__) + + switch (pthread_mutex_timedlock(&_lock,&wait_time)){ + case 0: + return LOCK_OK; + case ETIMEDOUT: + return LOCK_TIMEOUT; + } + +#else + struct timeval timenow; + struct timespec sleepytime; + /* This is just to avoid a completely busy wait */ + sleepytime.tv_sec = 0; + sleepytime.tv_nsec = 10000000; /* 10ms */ + + while (pthread_mutex_trylock (&_lock) == EBUSY) { + gettimeofday (&timenow, NULL); + + if (timenow.tv_sec >= wait_time.tv_sec && + (timenow.tv_usec * 1000) >= wait_time.tv_nsec) { + return LOCK_TIMEOUT; + } + + nanosleep (&sleepytime, NULL); + } + + return LOCK_OK; + +#endif + + } +#endif +#endif + + return LOCK_FAILED; + } + + + void unlock(){ +#ifdef _WIN32 + ReleaseMutex(_lock); +#else + pthread_mutex_unlock(&_lock); +#endif + } + +#ifdef _WIN32 + HANDLE getLockHandle(){ + return _lock; + } +#else + pthread_mutex_t *getLockHandle(){ + return &_lock; + } +#endif + + + +protected: + void init(){ +#ifdef _WIN32 + _lock = CreateMutex(NULL,FALSE,NULL); +#else + pthread_mutex_init(&_lock, NULL); +#endif + } + + void release(){ + unlock(); +#ifdef _WIN32 + + if(_lock){ + CloseHandle(_lock); + } + _lock = NULL; +#else + pthread_mutex_destroy(&_lock); +#endif + } + +#ifdef _WIN32 + HANDLE _lock; +#else + pthread_mutex_t _lock; +#endif +}; + + +class Event +{ +public: + + enum { + EVENT_OK = 1, + EVENT_TIMEOUT = 2, + EVENT_FAILED = 0, + }; + + Event(bool isAutoReset = true, bool isSignal = false) +#ifdef _WIN32 + : _event(NULL) +#else + : _is_signalled(isSignal) + , _isAutoReset(isAutoReset) +#endif + { +#ifdef _WIN32 + _event = CreateEvent(NULL, isAutoReset?FALSE:TRUE, isSignal?TRUE:FALSE, NULL); +#else + pthread_mutex_init(&_cond_locker, NULL); + pthread_cond_init(&_cond_var, NULL); +#endif + } + + ~ Event(){ + release(); + } + + void set( bool isSignal = true ){ + if (isSignal){ +#ifdef _WIN32 + SetEvent(_event); +#else + pthread_mutex_lock(&_cond_locker); + + if ( _is_signalled == false ){ + _is_signalled = true; + pthread_cond_signal(&_cond_var); + } + pthread_mutex_unlock(&_cond_locker); +#endif + }else{ +#ifdef _WIN32 + ResetEvent(_event); +#else + pthread_mutex_lock(&_cond_locker); + _is_signalled = false; + pthread_mutex_unlock(&_cond_locker); +#endif + } + } + + unsigned long wait( unsigned long timeout = 0xFFFFFFFF ){ +#ifdef _WIN32 + switch (WaitForSingleObject(_event, timeout==0xFFFFFFF?INFINITE:(DWORD)timeout)){ + case WAIT_FAILED: + return EVENT_FAILED; + case WAIT_OBJECT_0: + return EVENT_OK; + case WAIT_TIMEOUT: + return EVENT_TIMEOUT; + } + return EVENT_OK; +#else + unsigned long ans = EVENT_OK; + pthread_mutex_lock( &_cond_locker ); + + if (!_is_signalled){ + if (timeout == 0xFFFFFFFF){ + pthread_cond_wait(&_cond_var,&_cond_locker); + }else{ + timespec wait_time; + timeval now; + gettimeofday(&now,NULL); + + wait_time.tv_sec = timeout/1000 + now.tv_sec; + wait_time.tv_nsec = (timeout%1000)*1000000ULL + now.tv_usec*1000; + + if (wait_time.tv_nsec >= 1000000000){ + ++wait_time.tv_sec; + wait_time.tv_nsec -= 1000000000; + } + switch (pthread_cond_timedwait(&_cond_var,&_cond_locker,&wait_time)){ + case 0: + // signalled + break; + case ETIMEDOUT: + // time up + ans = EVENT_TIMEOUT; + goto _final; + break; + default: + ans = EVENT_FAILED; + goto _final; + } + + } + } + + assert(_is_signalled); + + if (_isAutoReset){ + _is_signalled = false; + } +_final: + pthread_mutex_unlock( &_cond_locker ); + + return ans; +#endif + + } +protected: + + void release() { +#ifdef _WIN32 + CloseHandle(_event); +#else + pthread_mutex_destroy(&_cond_locker); + pthread_cond_destroy(&_cond_var); +#endif + } + +#ifdef _WIN32 + HANDLE _event; +#else + pthread_cond_t _cond_var; + pthread_mutex_t _cond_locker; + bool _is_signalled; + bool _isAutoReset; +#endif +}; + +class ScopedLocker +{ +public : + ScopedLocker(Locker &l): _binded(l) { + _binded.lock(); + } + + void forceUnlock() { + _binded.unlock(); + } + ~ScopedLocker() { + _binded.unlock(); + } + Locker & _binded; +}; + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/include/serial.h b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/include/serial.h new file mode 100644 index 0000000..4bc0f60 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/include/serial.h @@ -0,0 +1,593 @@ +#ifndef SERIAL_H +#define SERIAL_H + +#include +#include +#include +#include +#include +#include "v8stdint.h" + +namespace serial { + + /*! + * Enumeration defines the possible bytesizes for the serial port. + */ + typedef enum { + fivebits = 5, + sixbits = 6, + sevenbits = 7, + eightbits = 8 + } bytesize_t; + + /*! + * Enumeration defines the possible parity types for the serial port. + */ + typedef enum { + parity_none = 0, + parity_odd = 1, + parity_even = 2, + parity_mark = 3, + parity_space = 4 + } parity_t; + + /*! + * Enumeration defines the possible stopbit types for the serial port. + */ + typedef enum { + stopbits_one = 1, + stopbits_two = 2, + stopbits_one_point_five + } stopbits_t; + + /*! + * Enumeration defines the possible flowcontrol types for the serial port. + */ + typedef enum { + flowcontrol_none = 0, + flowcontrol_software, + flowcontrol_hardware + } flowcontrol_t; + + /*! + * Structure for setting the timeout of the serial port, times are + * in milliseconds. + * + * In order to disable the interbyte timeout, set it to Timeout::max(). + */ + struct Timeout { +#ifdef max +# undef max +#endif + static uint32_t max() {return std::numeric_limits::max();} + /*! + * Convenience function to generate Timeout structs using a + * single absolute timeout. + * + * \param timeout A long that defines the time in milliseconds until a + * timeout occurs after a call to read or write is made. + * + * \return Timeout struct that represents this simple timeout provided. + */ + static Timeout simpleTimeout(uint32_t timeout) { + return Timeout(max(), timeout, 0, timeout, 0); + } + + /*! Number of milliseconds between bytes received to timeout on. */ + uint32_t inter_byte_timeout; + /*! A constant number of milliseconds to wait after calling read. */ + uint32_t read_timeout_constant; + /*! A multiplier against the number of requested bytes to wait after + * calling read. + */ + uint32_t read_timeout_multiplier; + /*! A constant number of milliseconds to wait after calling write. */ + uint32_t write_timeout_constant; + /*! A multiplier against the number of requested bytes to wait after + * calling write. + */ + uint32_t write_timeout_multiplier; + + explicit Timeout (uint32_t inter_byte_timeout_=0, + uint32_t read_timeout_constant_=0, + uint32_t read_timeout_multiplier_=0, + uint32_t write_timeout_constant_=0, + uint32_t write_timeout_multiplier_=0) + : inter_byte_timeout(inter_byte_timeout_), + read_timeout_constant(read_timeout_constant_), + read_timeout_multiplier(read_timeout_multiplier_), + write_timeout_constant(write_timeout_constant_), + write_timeout_multiplier(write_timeout_multiplier_) + {} + }; + + /*! + * Class that provides a portable serial port interface. + */ + class Serial { + public: + /*! + * Creates a Serial object and opens the port if a port is specified, + * otherwise it remains closed until serial::Serial::open is called. + * + * \param port A std::string containing the address of the serial port, + * which would be something like 'COM1' on Windows and '/dev/ttyS0' + * on Linux. + * + * \param baudrate An unsigned 32-bit integer that represents the baudrate + * + * \param timeout A serial::Timeout struct that defines the timeout + * conditions for the serial port. \see serial::Timeout + * + * \param bytesize Size of each byte in the serial transmission of data, + * default is eightbits, possible values are: fivebits, sixbits, sevenbits, + * eightbits + * + * \param parity Method of parity, default is parity_none, possible values + * are: parity_none, parity_odd, parity_even + * + * \param stopbits Number of stop bits used, default is stopbits_one, + * possible values are: stopbits_one, stopbits_one_point_five, stopbits_two + * + * \param flowcontrol Type of flowcontrol used, default is + * flowcontrol_none, possible values are: flowcontrol_none, + * flowcontrol_software, flowcontrol_hardware + * + * \throw serial::PortNotOpenedException + * \throw serial::IOException + * \throw std::invalid_argument + */ + Serial (const std::string &port = "", + uint32_t baudrate = 9600, + Timeout timeout = Timeout(), + bytesize_t bytesize = eightbits, + parity_t parity = parity_none, + stopbits_t stopbits = stopbits_one, + flowcontrol_t flowcontrol = flowcontrol_none); + + /*! Destructor */ + virtual ~Serial (); + + /*! + * Opens the serial port as long as the port is set and the port isn't + * already open. + * + * If the port is provided to the constructor then an explicit call to open + * is not needed. + * + * \see Serial::Serial + * \return Returns true if the port is open, false otherwise. + */ + bool open (); + + /*! Gets the open status of the serial port. + * + * \return Returns true if the port is open, false otherwise. + */ + bool isOpen () const; + + /*! Closes the serial port. */ + void close (); + + /*! Return the number of characters in the buffer. */ + size_t available (); + + /*! Block until there is serial data to read or read_timeout_constant + * number of milliseconds have elapsed. The return value is true when + * the function exits with the port in a readable state, false otherwise + * (due to timeout or select interruption). */ + bool waitReadable (); + + /*! Block for a period of time corresponding to the transmission time of + * count characters at present serial settings. This may be used in con- + * junction with waitReadable to read larger blocks of data from the + * port. */ + void waitByteTimes (size_t count); + + + int waitfordata(size_t data_count, uint32_t timeout, size_t * returned_size); + + /*! Read a given amount of bytes from the serial port into a given buffer. + * + * The read function will return in one of three cases: + * * The number of requested bytes was read. + * * In this case the number of bytes requested will match the size_t + * returned by read. + * * A timeout occurred, in this case the number of bytes read will not + * match the amount requested, but no exception will be thrown. One of + * two possible timeouts occurred: + * * The inter byte timeout expired, this means that number of + * milliseconds elapsed between receiving bytes from the serial port + * exceeded the inter byte timeout. + * * The total timeout expired, which is calculated by multiplying the + * read timeout multiplier by the number of requested bytes and then + * added to the read timeout constant. If that total number of + * milliseconds elapses after the initial call to read a timeout will + * occur. + * * An exception occurred, in this case an actual exception will be thrown. + * + * \param buffer An uint8_t array of at least the requested size. + * \param size A size_t defining how many bytes to be read. + * + * \return A size_t representing the number of bytes read as a result of the + * call to read. + * + */ + size_t read (uint8_t *buffer, size_t size); + + /*! Read a given amount of bytes from the serial port into a give buffer. + * + * \param buffer A reference to a std::vector of uint8_t. + * \param size A size_t defining how many bytes to be read. + * + * \return A size_t representing the number of bytes read as a result of the + * call to read. + * + */ + size_t read (std::vector &buffer, size_t size = 1); + + /*! Read a given amount of bytes from the serial port into a give buffer. + * + * \param buffer A reference to a std::string. + * \param size A size_t defining how many bytes to be read. + * + * \return A size_t representing the number of bytes read as a result of the + * call to read. + * + */ + size_t read (std::string &buffer, size_t size = 1); + + /*! Read a given amount of bytes from the serial port and return a string + * containing the data. + * + * \param size A size_t defining how many bytes to be read. + * + * \return A std::string containing the data read from the port. + * + */ + std::string read (size_t size = 1); + + /*! Reads in a line or until a given delimiter has been processed. + * + * Reads from the serial port until a single line has been read. + * + * \param buffer A std::string reference used to store the data. + * \param size A maximum length of a line, defaults to 65536 (2^16) + * \param eol A string to match against for the EOL. + * + * \return A size_t representing the number of bytes read. + * + */ + size_t readline (std::string &buffer, size_t size = 65536, std::string eol = "\n"); + + /*! Reads in a line or until a given delimiter has been processed. + * + * Reads from the serial port until a single line has been read. + * + * \param size A maximum length of a line, defaults to 65536 (2^16) + * \param eol A string to match against for the EOL. + * + * \return A std::string containing the line. + * + */ + std::string readline (size_t size = 65536, std::string eol = "\n"); + + /*! Reads in multiple lines until the serial port times out. + * + * This requires a timeout > 0 before it can be run. It will read until a + * timeout occurs and return a list of strings. + * + * \param size A maximum length of combined lines, defaults to 65536 (2^16) + * + * \param eol A string to match against for the EOL. + * + * \return A vector containing the lines. + * + */ + std::vector readlines (size_t size = 65536, std::string eol = "\n"); + + /*! Write a string to the serial port. + * + * \param data A const reference containing the data to be written + * to the serial port. + * + * \param size A size_t that indicates how many bytes should be written from + * the given data buffer. + * + * \return A size_t representing the number of bytes actually written to + * the serial port. + * + * \throw serial::PortNotOpenedException + * \throw serial::SerialException + * \throw serial::IOException + */ + size_t write (const uint8_t *data, size_t size); + + /*! Write a string to the serial port. + * + * \param data A const reference containing the data to be written + * to the serial port. + * + * \return A size_t representing the number of bytes actually written to + * the serial port. + * + */ + size_t write (const std::vector &data); + + /*! Write a string to the serial port. + * + * \param data A const reference containing the data to be written + * to the serial port. + * + * \return A size_t representing the number of bytes actually written to + * the serial port. + * + */ + size_t write (const std::string &data); + + /*! Sets the serial port identifier. + * + * \param port A const std::string reference containing the address of the + * serial port, which would be something like 'COM1' on Windows and + * '/dev/ttyS0' on Linux. + * + * \throw std::invalid_argument + */ + void setPort (const std::string &port); + + /*! Gets the serial port identifier. + * + * \see Serial::setPort + * + * \throw std::invalid_argument + */ + std::string getPort () const; + + /*! Sets the timeout for reads and writes using the Timeout struct. + * + * There are two timeout conditions described here: + * * The inter byte timeout: + * * The inter_byte_timeout component of serial::Timeout defines the + * maximum amount of time, in milliseconds, between receiving bytes on + * the serial port that can pass before a timeout occurs. Setting this + * to zero will prevent inter byte timeouts from occurring. + * * Total time timeout: + * * The constant and multiplier component of this timeout condition, + * for both read and write, are defined in serial::Timeout. This + * timeout occurs if the total time since the read or write call was + * made exceeds the specified time in milliseconds. + * * The limit is defined by multiplying the multiplier component by the + * number of requested bytes and adding that product to the constant + * component. In this way if you want a read call, for example, to + * timeout after exactly one second regardless of the number of bytes + * you asked for then set the read_timeout_constant component of + * serial::Timeout to 1000 and the read_timeout_multiplier to zero. + * This timeout condition can be used in conjunction with the inter + * byte timeout condition with out any problems, timeout will simply + * occur when one of the two timeout conditions is met. This allows + * users to have maximum control over the trade-off between + * responsiveness and efficiency. + * + * Read and write functions will return in one of three cases. When the + * reading or writing is complete, when a timeout occurs, or when an + * exception occurs. + * + * A timeout of 0 enables non-blocking mode. + * + * \param timeout A serial::Timeout struct containing the inter byte + * timeout, and the read and write timeout constants and multipliers. + * + * \see serial::Timeout + */ + void setTimeout (Timeout &timeout); + + /*! Sets the timeout for reads and writes. */ + void setTimeout (uint32_t inter_byte_timeout, uint32_t read_timeout_constant, + uint32_t read_timeout_multiplier, uint32_t write_timeout_constant, + uint32_t write_timeout_multiplier) + { + Timeout timeout(inter_byte_timeout, read_timeout_constant, + read_timeout_multiplier, write_timeout_constant, + write_timeout_multiplier); + return setTimeout(timeout); + } + + /*! Gets the timeout for reads in seconds. + * + * \return A Timeout struct containing the inter_byte_timeout, and read + * and write timeout constants and multipliers. + * + * \see Serial::setTimeout + */ + Timeout getTimeout () const; + + /*! Sets the baudrate for the serial port. + * + * Possible baudrates depends on the system but some safe baudrates include: + * 110, 300, 600, 1200, 2400, 4800, 9600, 14400, 19200, 28800, 38400, 56000, + * 57600, 115200 + * Some other baudrates that are supported by some comports: + * 128000, 153600, 230400, 256000, 460800, 921600 + * + * \param baudrate An integer that sets the baud rate for the serial port. + * + */ + bool setBaudrate (uint32_t baudrate); + + /*! Gets the baudrate for the serial port. + * + * \return An integer that sets the baud rate for the serial port. + * + * \see Serial::setBaudrate + * + * \ + */ + uint32_t getBaudrate () const; + + /*! Sets the bytesize for the serial port. + * + * \param bytesize Size of each byte in the serial transmission of data, + * default is eightbits, possible values are: fivebits, sixbits, sevenbits, + * eightbits + * + * \ + */ + bool setBytesize (bytesize_t bytesize); + + /*! Gets the bytesize for the serial port. + * + * \see Serial::setBytesize + * + * \ + */ + bytesize_t getBytesize () const; + + /*! Sets the parity for the serial port. + * + * \param parity Method of parity, default is parity_none, possible values + * are: parity_none, parity_odd, parity_even + * + * \ + */ + bool setParity (parity_t parity); + + /*! Gets the parity for the serial port. + * + * \see Serial::setParity + * + * \ + */ + parity_t getParity () const; + + /*! Sets the stopbits for the serial port. + * + * \param stopbits Number of stop bits used, default is stopbits_one, + * possible values are: stopbits_one, stopbits_one_point_five, stopbits_two + * + * \ + */ + bool setStopbits (stopbits_t stopbits); + + /*! Gets the stopbits for the serial port. + * + * \see Serial::setStopbits + * + * \ + */ + stopbits_t getStopbits () const; + + /*! Sets the flow control for the serial port. + * + * \param flowcontrol Type of flowcontrol used, default is flowcontrol_none, + * possible values are: flowcontrol_none, flowcontrol_software, + * flowcontrol_hardware + * + * \ + */ + bool setFlowcontrol (flowcontrol_t flowcontrol); + + /*! Gets the flow control for the serial port. + * + * \see Serial::setFlowcontrol + * + * \ + */ + flowcontrol_t getFlowcontrol () const; + + /*! Flush the input and output buffers */ + void flush (); + + /*! Flush only the input buffer */ + void flushInput (); + + /*! Flush only the output buffer */ + void flushOutput (); + + /*! Sends the RS-232 break signal. See tcsendbreak(3). */ + void sendBreak (int duration); + + /*! Set the break condition to a given level. Defaults to true. */ + bool setBreak (bool level = true); + + /*! Set the RTS handshaking line to the given level. Defaults to true. */ + bool setRTS (bool level = true); + + /*! Set the DTR handshaking line to the given level. Defaults to true. */ + bool setDTR (bool level = true); + + /*! + * Blocks until CTS, DSR, RI, CD changes or something interrupts it. + * + * Can throw an exception if an error occurs while waiting. + * You can check the status of CTS, DSR, RI, and CD once this returns. + * Uses TIOCMIWAIT via ioctl if available (mostly only on Linux) with a + * resolution of less than +-1ms and as good as +-0.2ms. Otherwise a + * polling method is used which can give +-2ms. + * + * \return Returns true if one of the lines changed, false if something else + * occurred. + * + */ + bool waitForChange (); + + /*! Returns the current status of the CTS line. */ + bool getCTS (); + + /*! Returns the current status of the DSR line. */ + bool getDSR (); + + /*! Returns the current status of the RI line. */ + bool getRI (); + + /*! Returns the current status of the CD line. */ + bool getCD (); + + private: + // Disable copy constructors + Serial(const Serial&); + Serial& operator=(const Serial&); + + // Pimpl idiom, d_pointer + class SerialImpl; + SerialImpl *pimpl_; + + // Scoped Lock Classes + class ScopedReadLock; + class ScopedWriteLock; + + // Read common function + size_t read_ (uint8_t *buffer, size_t size); + // Write common function + size_t write_ (const uint8_t *data, size_t length); + }; + + + /*! + * Structure that describes a serial device. + */ + struct PortInfo { + + /*! Address of the serial port (this can be passed to the constructor of Serial). */ + std::string port; + + /*! Human readable description of serial device if available. */ + std::string description; + + /*! Hardware ID (e.g. VID:PID of USB serial devices) or "n/a" if not available. */ + std::string hardware_id; + + }; + + /* Lists the serial ports available on the system + * + * Returns a vector of available serial ports, each represented + * by a serial::PortInfo data structure: + * + * \return vector of serial::PortInfo. + */ + std::vector + list_ports(); + +} // namespace serial + +#endif diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/include/thread.h b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/include/thread.h new file mode 100644 index 0000000..643e415 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/include/thread.h @@ -0,0 +1,105 @@ +#pragma once +#include "v8stdint.h" + +#ifdef _WIN32 +#include +#include +#include +#include +#else +#include +#include +#endif + +#define UNUSED(x) (void)x + +#if defined(__ANDROID__) +#define pthread_cancel(x) 0 +#endif + +#define CLASS_THREAD(c , x ) Thread::ThreadCreateObjectFunctor(this) + +class Thread +{ +public: + + template static Thread ThreadCreateObjectFunctor(CLASS * pthis){ + return createThread(createThreadAux, pthis); + } + + template static _size_t THREAD_PROC createThreadAux(void * param){ + return (static_cast(param)->*PROC)(); + } + + static Thread createThread(thread_proc_t proc, void * param = NULL ){ + Thread thread_(proc, param); +#if defined(_WIN32) + thread_._handle = (_size_t)( _beginthreadex(NULL, 0, (unsigned int (__stdcall * )( void * ))proc, param, 0, NULL)); +#else + assert( sizeof(thread_._handle) >= sizeof(pthread_t)); + + pthread_create((pthread_t *)&thread_._handle, NULL, (void * (*)(void *))proc, param); +#endif + return thread_; + } + +public: + explicit Thread(): _param(NULL),_func(NULL),_handle(0){} + virtual ~Thread(){} + _size_t getHandle(){ + return _handle; + } + int terminate(){ +#if defined(_WIN32) + if (!this->_handle){ + return 0; + } + if (TerminateThread( reinterpret_cast(this->_handle), -1)){ + CloseHandle(reinterpret_cast(this->_handle)); + this->_handle = NULL; + return 0; + }else{ + return -2; + } + +#else + if (!this->_handle) return 0; + + return pthread_cancel((pthread_t)this->_handle); +#endif + } + void *getParam() { + return _param; + } + int join(unsigned long timeout = -1){ + if (!this->_handle){ + return 0; + } +#if defined(_WIN32) + switch ( WaitForSingleObject(reinterpret_cast(this->_handle), timeout)){ + case WAIT_OBJECT_0: + CloseHandle(reinterpret_cast(this->_handle)); + this->_handle = NULL; + return 0; + case WAIT_ABANDONED: + return -2; + case WAIT_TIMEOUT: + return -1; + } +#else + UNUSED(timeout); + pthread_join((pthread_t)(this->_handle), NULL); +#endif + return 0; + } + + bool operator== ( const Thread & right) { + return this->_handle == right._handle; + } +protected: + explicit Thread( thread_proc_t proc, void * param ):_param(param),_func(proc), _handle(0){} + void * _param; + thread_proc_t _func; + _size_t _handle; +}; + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/include/v8stdint.h b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/include/v8stdint.h new file mode 100644 index 0000000..973d57b --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/include/v8stdint.h @@ -0,0 +1,54 @@ +#ifndef V8STDINT_H_ +#define V8STDINT_H_ + +#include +#include + +#if defined(_WIN32) && !defined(__MINGW32__) +typedef signed char int8_t; +typedef unsigned char uint8_t; +typedef short int16_t; +typedef unsigned short uint16_t; +typedef int int32_t; +typedef unsigned int uint32_t; +typedef __int64 int64_t; +typedef unsigned __int64 uint64_t; +#else + +#include + +#endif + +#define __small_endian + +#ifndef __GNUC__ +#define __attribute__(x) +#endif + + +#ifdef _AVR_ +typedef uint8_t _size_t; +#define THREAD_PROC +#elif defined (WIN64) +typedef uint64_t _size_t; +#define THREAD_PROC __stdcall +#elif defined (WIN32) +typedef uint32_t _size_t; +#define THREAD_PROC __stdcall +#elif defined (__GNUC__) +typedef unsigned long _size_t; +#define THREAD_PROC +#elif defined (__ICCARM__) +typedef uint32_t _size_t; +#define THREAD_PROC +#endif + +typedef _size_t (THREAD_PROC * thread_proc_t ) ( void * ); + +typedef int32_t result_t; + +#define RESULT_OK 0 +#define RESULT_TIMEOUT -1 +#define RESULT_FAIL -2 + +#endif // V8STDINT_H_ diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/include/ydlidar_driver.h b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/include/ydlidar_driver.h new file mode 100644 index 0000000..ec5da24 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/include/ydlidar_driver.h @@ -0,0 +1,280 @@ +#ifndef YDLIDAR_DRIVER_H +#define YDLIDAR_DRIVER_H + +#include "locker.h" +#include "serial.h" +#include "thread.h" + +#if !defined(__cplusplus) +#ifndef __cplusplus +#error "The YDLIDAR SDK requires a C++ compiler to be built" +#endif +#endif +#if !defined(_countof) +#define _countof(_Array) (int)(sizeof(_Array) / sizeof(_Array[0])) +#endif + +#define LIDAR_CMD_STOP 0x65 +#define LIDAR_CMD_SCAN 0x60 +#define LIDAR_CMD_FORCE_SCAN 0x61 +#define LIDAR_CMD_RESET 0x80 +#define LIDAR_CMD_FORCE_STOP 0x00 +#define LIDAR_CMD_GET_EAI 0x55 +#define LIDAR_CMD_GET_DEVICE_INFO 0x90 +#define LIDAR_CMD_GET_DEVICE_HEALTH 0x92 +#define LIDAR_ANS_TYPE_DEVINFO 0x4 +#define LIDAR_ANS_TYPE_DEVHEALTH 0x6 +#define LIDAR_CMD_SYNC_BYTE 0xA5 +#define LIDAR_CMDFLAG_HAS_PAYLOAD 0x80 +#define LIDAR_ANS_SYNC_BYTE1 0xA5 +#define LIDAR_ANS_SYNC_BYTE2 0x5A +#define LIDAR_ANS_TYPE_MEASUREMENT 0x81 +#define LIDAR_RESP_MEASUREMENT_SYNCBIT (0x1<<0) +#define LIDAR_RESP_MEASUREMENT_QUALITY_SHIFT 2 +#define LIDAR_RESP_MEASUREMENT_CHECKBIT (0x1<<0) +#define LIDAR_RESP_MEASUREMENT_ANGLE_SHIFT 1 + +#define LIDAR_CMD_RUN_POSITIVE 0x06 +#define LIDAR_CMD_RUN_INVERSION 0x07 +#define LIDAR_CMD_SET_AIMSPEED_ADDMIC 0x09 +#define LIDAR_CMD_SET_AIMSPEED_DISMIC 0x0A +#define LIDAR_CMD_SET_AIMSPEED_ADD 0x0B +#define LIDAR_CMD_SET_AIMSPEED_DIS 0x0C +#define LIDAR_CMD_GET_AIMSPEED 0x0D + +#define LIDAR_CMD_SET_SAMPLING_RATE 0xD0 +#define LIDAR_CMD_GET_SAMPLING_RATE 0xD1 +#define LIDAR_STATUS_OK 0x0 +#define LIDAR_STATUS_WARNING 0x1 +#define LIDAR_STATUS_ERROR 0x2 + +#define PackageSampleMaxLngth 0x100 +typedef enum { + CT_Normal = 0, + CT_RingStart = 1, + CT_Tail, +}CT; +#define Node_Default_Quality (10<<2) +#define Node_Sync 1 +#define Node_NotSync 2 +#define PackagePaidBytes 10 +#define PH 0x55AA + +#if defined(_WIN32) +#pragma pack(1) +#endif + +struct node_info { + uint8_t sync_quality; + uint16_t angle_q6_checkbit; + uint16_t distance_q2; +} __attribute__((packed)) ; + +struct PackageNode { + uint8_t PakageSampleQuality; + uint16_t PakageSampleDistance; +}__attribute__((packed)); + +struct node_package { + uint16_t package_Head; + uint8_t package_CT; + uint8_t nowPackageNum; + uint16_t packageFirstSampleAngle; + uint16_t packageLastSampleAngle; + uint16_t checkSum; + PackageNode packageSample[PackageSampleMaxLngth]; +} __attribute__((packed)) ; + +struct node_packages { + uint16_t package_Head; + uint8_t package_CT; + uint8_t nowPackageNum; + uint16_t packageFirstSampleAngle; + uint16_t packageLastSampleAngle; + uint16_t checkSum; + uint16_t packageSampleDistance[PackageSampleMaxLngth]; +} __attribute__((packed)) ; + + +struct device_info{ + uint8_t model; + uint16_t firmware_version; + uint8_t hardware_version; + uint8_t serialnum[16]; +} __attribute__((packed)) ; + +struct device_health { + uint8_t status; + uint16_t error_code; +} __attribute__((packed)) ; + +struct sampling_rate { + uint8_t rate; +} __attribute__((packed)) ; + +struct scan_frequency { + uint32_t frequency; +} __attribute__((packed)) ; + +struct scan_rotation { + uint8_t rotation; +} __attribute__((packed)) ; + +struct cmd_packet { + uint8_t syncByte; + uint8_t cmd_flag; + uint8_t size; + uint8_t data; +} __attribute__((packed)) ; + +struct lidar_ans_header { + uint8_t syncByte1; + uint8_t syncByte2; + uint32_t size:30; + uint32_t subType:2; + uint8_t type; +} __attribute__((packed)); + +struct scanDot { + uint8_t quality; + float angle; + float dist; +}; + + +//! A struct for returning configuration from the YDLIDAR +struct LaserConfig { + //! Start angle for the laser scan [rad]. 0 is forward and angles are measured clockwise when viewing YDLIDAR from the top. + float min_angle; + //! Stop angle for the laser scan [rad]. 0 is forward and angles are measured clockwise when viewing YDLIDAR from the top. + float max_angle; + //! Scan resolution [rad]. + float ang_increment; + //! Scan resoltuion [s] + float time_increment; + //! Time between scans + float scan_time; + //! Minimum range [m] + float min_range; + //! Maximum range [m] + float max_range; + //! Range Resolution [m] + float range_res; +}; + + +//! A struct for returning laser readings from the YDLIDAR +struct LaserScan { + //! Array of ranges + std::vector ranges; + //! Array of intensities + std::vector intensities; + //! Self reported time stamp in nanoseconds + uint64_t self_time_stamp; + //! System time when first range was measured in nanoseconds + uint64_t system_time_stamp; + //! Configuration of scan + LaserConfig config; +}; + +using namespace std; +using namespace serial; + + +namespace ydlidar{ + + class YDlidarDriver + { + public: + static YDlidarDriver* singleton(){ + return _impl; + } + static void initDriver(){ + _impl = new YDlidarDriver; + } + static void done(){ + if(_impl){ + delete _impl; + _impl = NULL; + } + } + + result_t connect(const char * port_path, uint32_t baudrate); + void disconnect(); + const std::string getSDKVersion(); + void setIntensities(const bool isintensities); + result_t getHealth(device_health & health, uint32_t timeout = DEFAULT_TIMEOUT); + result_t getDeviceInfo(device_info & info, uint32_t timeout = DEFAULT_TIMEOUT); + result_t startScan(bool force = false, uint32_t timeout = DEFAULT_TIMEOUT) ; + result_t stop(); + result_t grabScanData(node_info * nodebuffer, size_t & count, uint32_t timeout = DEFAULT_TIMEOUT) ; + result_t ascendScanData(node_info * nodebuffer, size_t count); + void simpleScanData(std::vector * scan_data , node_info *buffer, size_t count); + + result_t reset(uint32_t timeout = DEFAULT_TIMEOUT); + result_t startMotor(); + result_t stopMotor(); + result_t getScanFrequency(scan_frequency & frequency, uint32_t timeout = DEFAULT_TIMEOUT); + result_t setScanFrequencyAdd(scan_frequency & frequency, uint32_t timeout = DEFAULT_TIMEOUT); + result_t setScanFrequencyDis(scan_frequency & frequency, uint32_t timeout = DEFAULT_TIMEOUT); + result_t setScanFrequencyAddMic(scan_frequency & frequency, uint32_t timeout = DEFAULT_TIMEOUT); + result_t setScanFrequencyDisMic(scan_frequency & frequency, uint32_t timeout = DEFAULT_TIMEOUT); + result_t getSamplingRate(sampling_rate & rate, uint32_t timeout = DEFAULT_TIMEOUT); + result_t setSamplingRate(sampling_rate & rate, uint32_t timeout = DEFAULT_TIMEOUT); + result_t setRotationPositive(scan_rotation & rotation, uint32_t timeout = DEFAULT_TIMEOUT); + result_t setRotationInversion(scan_rotation & rotation, uint32_t timeout = DEFAULT_TIMEOUT); + + protected: + YDlidarDriver(); + virtual ~YDlidarDriver(); + + result_t createThread(); + result_t waitPackage(node_info * node, uint32_t timeout = DEFAULT_TIMEOUT); + result_t waitScanData(node_info * nodebuffer, size_t & count, uint32_t timeout = DEFAULT_TIMEOUT); + int cacheScanData(); + result_t sendCommand(uint8_t cmd, const void * payload = NULL, size_t payloadsize = 0); + result_t waitResponseHeader(lidar_ans_header * header, uint32_t timeout = DEFAULT_TIMEOUT); + result_t waitForData(size_t data_count,uint32_t timeout = -1, size_t * returned_size = NULL); + result_t getData(uint8_t * data, size_t size); + result_t sendData(const uint8_t * data, size_t size); + void disableDataGrabbing(); + void setDTR(); + void clearDTR(); + + + public: + bool isConnected; + bool isScanning; + + enum { + DEFAULT_TIMEOUT = 2000, + MAX_SCAN_NODES = 2048, + }; + enum { + YDLIDAR_F4=1, + YDLIDAR_T1=2, + YDLIDAR_F2=3, + YDLIDAR_S4=4, + YDLIDAR_G4=5, + YDLIDAR_X4=6, + }; + node_info scan_node_buf[2048]; + size_t scan_node_count; + Locker _scanning_lock; + Event _dataEvent; + Locker _lock; + Thread _thread; + + private: + static int PackageSampleBytes; + static YDlidarDriver* _impl; + serial::Serial *_serial; + bool m_intensities; + int _sampling_rate; + uint32_t _baudrate; + bool isSupportMotorCtrl; + + }; +} + +#endif // YDLIDAR_DRIVER_H diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/common.h b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/common.h new file mode 100644 index 0000000..d69d9f3 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/common.h @@ -0,0 +1,19 @@ +#pragma once + +#if defined(_WIN32) +#include "impl\windows\win.h" +#include "impl\windows\win_serial.h" +#include "impl\windows\win_timer.h" +#elif defined(__GNUC__) +#include "impl/unix/unix.h" +#include "impl/unix/unix_serial.h" +#include "impl/unix/unix_timer.h" +#else +#error "unsupported target" +#endif + +#include "locker.h" +#include "serial.h" +#include "thread.h" + +#define SDKVerision "1.2.1" diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/list_ports/list_ports_linux.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/list_ports/list_ports_linux.cpp new file mode 100644 index 0000000..e8e3ce4 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/list_ports/list_ports_linux.cpp @@ -0,0 +1,336 @@ +#if defined(__linux__) + +/* + * Copyright (c) 2014 Craig Lilley + * This software is made available under the terms of the MIT licence. + * A copy of the licence can be obtained from: + * http://opensource.org/licenses/MIT + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +#include +#include +#include + +#include "serial.h" + +using serial::PortInfo; +using std::istringstream; +using std::ifstream; +using std::getline; +using std::vector; +using std::string; +using std::cout; +using std::endl; + +static vector glob(const vector& patterns); +static string basename(const string& path); +static string dirname(const string& path); +static bool path_exists(const string& path); +static string realpath(const string& path); +static string usb_sysfs_friendly_name(const string& sys_usb_path); +static vector get_sysfs_info(const string& device_path); +static string read_line(const string& file); +static string usb_sysfs_hw_string(const string& sysfs_path); +static string format(const char* format, ...); + +vector +glob(const vector& patterns) +{ + vector paths_found; + + if(patterns.size() == 0) + return paths_found; + + glob_t glob_results; + + int glob_retval = glob(patterns[0].c_str(), 0, NULL, &glob_results); + + vector::const_iterator iter = patterns.begin(); + + while(++iter != patterns.end()) + { + glob_retval = glob(iter->c_str(), GLOB_APPEND, NULL, &glob_results); + } + + for(int path_index = 0; path_index < glob_results.gl_pathc; path_index++) + { + paths_found.push_back(glob_results.gl_pathv[path_index]); + } + + globfree(&glob_results); + + return paths_found; +} + +string +basename(const string& path) +{ + size_t pos = path.rfind("/"); + + if(pos == std::string::npos) + return path; + + return string(path, pos+1, string::npos); +} + +string +dirname(const string& path) +{ + size_t pos = path.rfind("/"); + + if(pos == std::string::npos) + return path; + else if(pos == 0) + return "/"; + + return string(path, 0, pos); +} + +bool +path_exists(const string& path) +{ + struct stat sb; + + if( stat(path.c_str(), &sb ) == 0 ) + return true; + + return false; +} + +string +realpath(const string& path) +{ + char* real_path = realpath(path.c_str(), NULL); + + string result; + + if(real_path != NULL) + { + result = real_path; + + free(real_path); + } + + return result; +} + +string +usb_sysfs_friendly_name(const string& sys_usb_path) +{ + unsigned int device_number = 0; + + istringstream( read_line(sys_usb_path + "/devnum") ) >> device_number; + + string manufacturer = read_line( sys_usb_path + "/manufacturer" ); + + string product = read_line( sys_usb_path + "/product" ); + + string serial = read_line( sys_usb_path + "/serial" ); + + if( manufacturer.empty() && product.empty() && serial.empty() ) + return ""; + + return format("%s %s %s", manufacturer.c_str(), product.c_str(), serial.c_str() ); +} + +vector +get_sysfs_info(const string& device_path) +{ + string device_name = basename( device_path ); + + string friendly_name; + + string hardware_id; + + string sys_device_path = format( "/sys/class/tty/%s/device", device_name.c_str() ); + + if( device_name.compare(0,6,"ttyUSB") == 0 ) + { + sys_device_path = dirname( dirname( realpath( sys_device_path ) ) ); + + if( path_exists( sys_device_path ) ) + { + friendly_name = usb_sysfs_friendly_name( sys_device_path ); + + hardware_id = usb_sysfs_hw_string( sys_device_path ); + } + } + else if( device_name.compare(0,6,"ttyACM") == 0 ) + { + sys_device_path = dirname( realpath( sys_device_path ) ); + + if( path_exists( sys_device_path ) ) + { + friendly_name = usb_sysfs_friendly_name( sys_device_path ); + + hardware_id = usb_sysfs_hw_string( sys_device_path ); + } + } + else + { + // Try to read ID string of PCI device + + string sys_id_path = sys_device_path + "/id"; + + if( path_exists( sys_id_path ) ) + hardware_id = read_line( sys_id_path ); + } + + if( friendly_name.empty() ) + friendly_name = device_name; + + if( hardware_id.empty() ) + hardware_id = "n/a"; + + vector result; + result.push_back(friendly_name); + result.push_back(hardware_id); + + return result; +} + +string +read_line(const string& file) +{ + ifstream ifs(file.c_str(), ifstream::in); + + string line; + + if(ifs) + { + getline(ifs, line); + } + + return line; +} + +string +format(const char* format, ...) +{ + va_list ap; + + size_t buffer_size_bytes = 256; + + string result; + + char* buffer = (char*)malloc(buffer_size_bytes); + + if( buffer == NULL ) + return result; + + bool done = false; + + unsigned int loop_count = 0; + + while(!done) + { + va_start(ap, format); + + int return_value = vsnprintf(buffer, buffer_size_bytes, format, ap); + + if( return_value < 0 ) + { + done = true; + } + else if( return_value >= buffer_size_bytes ) + { + // Realloc and try again. + + buffer_size_bytes = return_value + 1; + + char* new_buffer_ptr = (char*)realloc(buffer, buffer_size_bytes); + + if( new_buffer_ptr == NULL ) + { + done = true; + } + else + { + buffer = new_buffer_ptr; + } + } + else + { + result = buffer; + done = true; + } + + va_end(ap); + + if( ++loop_count > 5 ) + done = true; + } + + free(buffer); + + return result; +} + +string +usb_sysfs_hw_string(const string& sysfs_path) +{ + string serial_number = read_line( sysfs_path + "/serial" ); + + if( serial_number.length() > 0 ) + { + serial_number = format( "SNR=%s", serial_number.c_str() ); + } + + string vid = read_line( sysfs_path + "/idVendor" ); + + string pid = read_line( sysfs_path + "/idProduct" ); + + return format("USB VID:PID=%s:%s %s", vid.c_str(), pid.c_str(), serial_number.c_str() ); +} + +vector +serial::list_ports() +{ + vector results; + + vector search_globs; + search_globs.push_back("/dev/ttyACM*"); + search_globs.push_back("/dev/ttyS*"); + search_globs.push_back("/dev/ttyUSB*"); + search_globs.push_back("/dev/tty.*"); + search_globs.push_back("/dev/cu.*"); + + vector devices_found = glob( search_globs ); + + vector::iterator iter = devices_found.begin(); + + while( iter != devices_found.end() ) + { + string device = *iter++; + + vector sysfs_info = get_sysfs_info( device ); + + string friendly_name = sysfs_info[0]; + + string hardware_id = sysfs_info[1]; + + PortInfo device_entry; + device_entry.port = device; + device_entry.description = friendly_name; + device_entry.hardware_id = hardware_id; + + results.push_back( device_entry ); + + } + + return results; +} + +#endif // defined(__linux__) diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/list_ports/list_ports_osx.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/list_ports/list_ports_osx.cpp new file mode 100644 index 0000000..333c55c --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/list_ports/list_ports_osx.cpp @@ -0,0 +1,286 @@ +#if defined(__APPLE__) + +#include +#include + +#include +#include +#include +#include + +#include +#include +#include + +#include "serial/serial.h" + +using serial::PortInfo; +using std::string; +using std::vector; + +#define HARDWARE_ID_STRING_LENGTH 128 + +string cfstring_to_string( CFStringRef cfstring ); +string get_device_path( io_object_t& serial_port ); +string get_class_name( io_object_t& obj ); +io_registry_entry_t get_parent_iousb_device( io_object_t& serial_port ); +string get_string_property( io_object_t& device, const char* property ); +uint16_t get_int_property( io_object_t& device, const char* property ); +string rtrim(const string& str); + +string +cfstring_to_string( CFStringRef cfstring ) +{ + char cstring[MAXPATHLEN]; + string result; + + if( cfstring ) + { + Boolean success = CFStringGetCString( cfstring, + cstring, + sizeof(cstring), + kCFStringEncodingASCII ); + + if( success ) + result = cstring; + } + + return result; +} + +string +get_device_path( io_object_t& serial_port ) +{ + CFTypeRef callout_path; + string device_path; + + callout_path = IORegistryEntryCreateCFProperty( serial_port, + CFSTR(kIOCalloutDeviceKey), + kCFAllocatorDefault, + 0 ); + + if (callout_path) + { + if( CFGetTypeID(callout_path) == CFStringGetTypeID() ) + device_path = cfstring_to_string( static_cast(callout_path) ); + + CFRelease(callout_path); + } + + return device_path; +} + +string +get_class_name( io_object_t& obj ) +{ + string result; + io_name_t class_name; + kern_return_t kern_result; + + kern_result = IOObjectGetClass( obj, class_name ); + + if( kern_result == KERN_SUCCESS ) + result = class_name; + + return result; +} + +io_registry_entry_t +get_parent_iousb_device( io_object_t& serial_port ) +{ + io_object_t device = serial_port; + io_registry_entry_t parent = 0; + io_registry_entry_t result = 0; + kern_return_t kern_result = KERN_FAILURE; + string name = get_class_name(device); + + // Walk the IO Registry tree looking for this devices parent IOUSBDevice. + while( name != "IOUSBDevice" ) + { + kern_result = IORegistryEntryGetParentEntry( device, + kIOServicePlane, + &parent ); + + if(kern_result != KERN_SUCCESS) + { + result = 0; + break; + } + + device = parent; + + name = get_class_name(device); + } + + if(kern_result == KERN_SUCCESS) + result = device; + + return result; +} + +string +get_string_property( io_object_t& device, const char* property ) +{ + string property_name; + + if( device ) + { + CFStringRef property_as_cfstring = CFStringCreateWithCString ( + kCFAllocatorDefault, + property, + kCFStringEncodingASCII ); + + CFTypeRef name_as_cfstring = IORegistryEntryCreateCFProperty( + device, + property_as_cfstring, + kCFAllocatorDefault, + 0 ); + + if( name_as_cfstring ) + { + if( CFGetTypeID(name_as_cfstring) == CFStringGetTypeID() ) + property_name = cfstring_to_string( static_cast(name_as_cfstring) ); + + CFRelease(name_as_cfstring); + } + + if(property_as_cfstring) + CFRelease(property_as_cfstring); + } + + return property_name; +} + +uint16_t +get_int_property( io_object_t& device, const char* property ) +{ + uint16_t result = 0; + + if( device ) + { + CFStringRef property_as_cfstring = CFStringCreateWithCString ( + kCFAllocatorDefault, + property, + kCFStringEncodingASCII ); + + CFTypeRef number = IORegistryEntryCreateCFProperty( device, + property_as_cfstring, + kCFAllocatorDefault, + 0 ); + + if(property_as_cfstring) + CFRelease(property_as_cfstring); + + if( number ) + { + if( CFGetTypeID(number) == CFNumberGetTypeID() ) + { + bool success = CFNumberGetValue( static_cast(number), + kCFNumberSInt16Type, + &result ); + + if( !success ) + result = 0; + } + + CFRelease(number); + } + + } + + return result; +} + +string rtrim(const string& str) +{ + string result = str; + + string whitespace = " \t\f\v\n\r"; + + std::size_t found = result.find_last_not_of(whitespace); + + if (found != std::string::npos) + result.erase(found+1); + else + result.clear(); + + return result; +} + +vector +serial::list_ports(void) +{ + vector devices_found; + CFMutableDictionaryRef classes_to_match; + io_iterator_t serial_port_iterator; + io_object_t serial_port; + mach_port_t master_port; + kern_return_t kern_result; + + kern_result = IOMasterPort(MACH_PORT_NULL, &master_port); + + if(kern_result != KERN_SUCCESS) + return devices_found; + + classes_to_match = IOServiceMatching(kIOSerialBSDServiceValue); + + if (classes_to_match == NULL) + return devices_found; + + CFDictionarySetValue( classes_to_match, + CFSTR(kIOSerialBSDTypeKey), + CFSTR(kIOSerialBSDAllTypes) ); + + kern_result = IOServiceGetMatchingServices(master_port, classes_to_match, &serial_port_iterator); + + if (KERN_SUCCESS != kern_result) + return devices_found; + + while ( (serial_port = IOIteratorNext(serial_port_iterator)) ) + { + string device_path = get_device_path( serial_port ); + io_registry_entry_t parent = get_parent_iousb_device( serial_port ); + IOObjectRelease(serial_port); + + if( device_path.empty() ) + continue; + + PortInfo port_info; + port_info.port = device_path; + port_info.description = "n/a"; + port_info.hardware_id = "n/a"; + + string device_name = rtrim( get_string_property( parent, "USB Product Name" ) ); + string vendor_name = rtrim( get_string_property( parent, "USB Vendor Name") ); + string description = rtrim( vendor_name + " " + device_name ); + if( !description.empty() ) + port_info.description = description; + + string serial_number = rtrim(get_string_property( parent, "USB Serial Number" ) ); + uint16_t vendor_id = get_int_property( parent, "idVendor" ); + uint16_t product_id = get_int_property( parent, "idProduct" ); + + if( vendor_id && product_id ) + { + char cstring[HARDWARE_ID_STRING_LENGTH]; + + if(serial_number.empty()) + serial_number = "None"; + + int ret = snprintf( cstring, HARDWARE_ID_STRING_LENGTH, "USB VID:PID=%04x:%04x SNR=%s", + vendor_id, + product_id, + serial_number.c_str() ); + + if( (ret >= 0) && (ret < HARDWARE_ID_STRING_LENGTH) ) + port_info.hardware_id = cstring; + } + + devices_found.push_back(port_info); + } + + IOObjectRelease(serial_port_iterator); + return devices_found; +} + +#endif // defined(__APPLE__) diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/list_ports/list_ports_win.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/list_ports/list_ports_win.cpp new file mode 100644 index 0000000..abfddae --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/list_ports/list_ports_win.cpp @@ -0,0 +1,152 @@ +#if defined(_WIN32) + +/* + * Copyright (c) 2014 Craig Lilley + * This software is made available under the terms of the MIT licence. + * A copy of the licence can be obtained from: + * http://opensource.org/licenses/MIT + */ + +#include "serial.h" +#include +#include +#include +#include +#include +#include + +using serial::PortInfo; +using std::vector; +using std::string; + +static const DWORD port_name_max_length = 256; +static const DWORD friendly_name_max_length = 256; +static const DWORD hardware_id_max_length = 256; + +// Convert a wide Unicode string to an UTF8 string +std::string utf8_encode(const std::wstring &wstr) +{ + int size_needed = WideCharToMultiByte(CP_UTF8, 0, &wstr[0], (int)wstr.size(), NULL, 0, NULL, NULL); + std::string strTo( size_needed, 0 ); + WideCharToMultiByte (CP_UTF8, 0, &wstr[0], (int)wstr.size(), &strTo[0], size_needed, NULL, NULL); + return strTo; +} + +vector +serial::list_ports() +{ + vector devices_found; + + HDEVINFO device_info_set = SetupDiGetClassDevs( + (const GUID *) &GUID_DEVCLASS_PORTS, + NULL, + NULL, + DIGCF_PRESENT); + + unsigned int device_info_set_index = 0; + SP_DEVINFO_DATA device_info_data; + + device_info_data.cbSize = sizeof(SP_DEVINFO_DATA); + + while(SetupDiEnumDeviceInfo(device_info_set, device_info_set_index, &device_info_data)) + { + device_info_set_index++; + + // Get port name + + HKEY hkey = SetupDiOpenDevRegKey( + device_info_set, + &device_info_data, + DICS_FLAG_GLOBAL, + 0, + DIREG_DEV, + KEY_READ); + + TCHAR port_name[port_name_max_length]; + DWORD port_name_length = port_name_max_length; + + LONG return_code = RegQueryValueEx( + hkey, + _T("PortName"), + NULL, + NULL, + (LPBYTE)port_name, + &port_name_length); + + RegCloseKey(hkey); + + if(return_code != EXIT_SUCCESS) + continue; + + if(port_name_length > 0 && port_name_length <= port_name_max_length) + port_name[port_name_length-1] = '\0'; + else + port_name[0] = '\0'; + + // Ignore parallel ports + + if(_tcsstr(port_name, _T("LPT")) != NULL) + continue; + + // Get port friendly name + + TCHAR friendly_name[friendly_name_max_length]; + DWORD friendly_name_actual_length = 0; + + BOOL got_friendly_name = SetupDiGetDeviceRegistryProperty( + device_info_set, + &device_info_data, + SPDRP_FRIENDLYNAME, + NULL, + (PBYTE)friendly_name, + friendly_name_max_length, + &friendly_name_actual_length); + + if(got_friendly_name == TRUE && friendly_name_actual_length > 0) + friendly_name[friendly_name_actual_length-1] = '\0'; + else + friendly_name[0] = '\0'; + + // Get hardware ID + + TCHAR hardware_id[hardware_id_max_length]; + DWORD hardware_id_actual_length = 0; + + BOOL got_hardware_id = SetupDiGetDeviceRegistryProperty( + device_info_set, + &device_info_data, + SPDRP_HARDWAREID, + NULL, + (PBYTE)hardware_id, + hardware_id_max_length, + &hardware_id_actual_length); + + if(got_hardware_id == TRUE && hardware_id_actual_length > 0) + hardware_id[hardware_id_actual_length-1] = '\0'; + else + hardware_id[0] = '\0'; + + #ifdef UNICODE + std::string portName = utf8_encode(port_name); + std::string friendlyName = utf8_encode(friendly_name); + std::string hardwareId = utf8_encode(hardware_id); + #else + std::string portName = port_name; + std::string friendlyName = friendly_name; + std::string hardwareId = hardware_id; + #endif + + PortInfo port_entry; + port_entry.port = portName; + port_entry.description = friendlyName; + port_entry.hardware_id = hardwareId; + + devices_found.push_back(port_entry); + } + + SetupDiDestroyDeviceInfoList(device_info_set); + + return devices_found; +} + +#endif // #if defined(_WIN32) diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/unix/unix.h b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/unix/unix.h new file mode 100644 index 0000000..53ea5d5 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/unix/unix.h @@ -0,0 +1,29 @@ +#pragma once +// libc dep +#include +#include +#include +#include +#include +#include +#include +#include + +// libc++ dep +#include +#include + +// linux specific +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "unix_timer.h" + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/unix/unix_serial.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/unix/unix_serial.cpp new file mode 100644 index 0000000..cb6ef2b --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/unix/unix_serial.cpp @@ -0,0 +1,1273 @@ +#if !defined(_WIN32) + +#include +#include +#include +#include +#include +#include +#if !defined(__ANDROID__) +#include +#include + +#endif + +#include +#include +#include +#include +#include +#include + +#include + +#if defined(__linux__) &&!defined(__ANDROID__) +# include +#endif + +#include +#include +#include +#include + +#ifdef __MACH__ +#include +#include +#include +#endif + +#include "unix_serial.h" + +#ifndef TIOCINQ +#ifdef FIONREAD +#define TIOCINQ FIONREAD +#else +#define TIOCINQ 0x541B +#endif +#endif + +#if defined(MAC_OS_X_VERSION_10_3) && (MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_3) +#include +#endif + +/** +* setup_port - Configure the port, eg. baud rate, data bits,etc. +* +* @param fd : The serial port +* @param speed : The baud rate +* @param data_bits : The data bits +* @param parity : The parity bits +* @param stop_bits : The stop bits +* +* @return Return 0 if everything is OK, otherwise -1 with some error msg. +* @note +Here are termios structure members: +\verbatim +Member Description +c_cflag Control options +c_lflag Line options +c_iflag Input options +c_oflag Output options +c_cc Control characters +c_ispeed Input baud (new interface) +c_ospeed Output baud (new interface) +\endverbatim +The c_cflag member controls the baud rate, number of data bits, parity, +stop bits, and hardware flow control. There are constants for all of the +supported configurations. +Constant Description +\verbatim +CBAUD Bit mask for baud rate +B0 0 baud (drop DTR) +B50 50 baud +B75 75 baud +B110 110 baud +B134 134.5 baud +B150 150 baud +B200 200 baud +B300 300 baud +B600 600 baud +B1200 1200 baud +B1800 1800 baud +B2400 2400 baud +B4800 4800 baud +B9600 9600 baud +B19200 19200 baud +B38400 38400 baud +B57600 57,600 baud +B76800 76,800 baud +B115200 115,200 baud +EXTA External rate clock +EXTB External rate clock +CSIZE Bit mask for data bits +CS5 5 data bits +CS6 6 data bits +CS7 7 data bits +CS8 8 data bits +CSTOPB 2 stop bits (1 otherwise) +CREAD Enable receiver +PARENB Enable parity bit +PARODD Use odd parity instead of even +HUPCL Hangup (drop DTR) on last close +CLOCAL Local line - do not change "owner" of port +LOBLK Block job control output +CNEW_RTSCTS CRTSCTS Enable hardware flow control (not supported on all +platforms) +\endverbatim +The input modes member c_iflag controls any input processing that is done to +characters received on the port. Like the c_cflag field, the final value +stored in c_iflag is the bitwise OR of the desired options. +\verbatim +Constant Description +INPCK Enable parity check +IGNPAR Ignore parity errors +PARMRK Mark parity errors +ISTRIP Strip parity bits +IXON Enable software flow control (outgoing) +IXOFF Enable software flow control (incoming) +IXANY Allow any character to start flow again +IGNBRK Ignore break condition +BRKINT Send a SIGINT when a break condition is detected +INLCR Map NL to CR +IGNCR Ignore CR +ICRNL Map CR to NL +IUCLC Map uppercase to lowercase +IMAXBEL Echo BEL on input line too long +\endverbatim +Here are some examples of setting parity checking: @n +No parity (8N1): +\verbatim +options.c_cflag &= ~PARENB +options.c_cflag &= ~CSTOPB +options.c_cflag &= ~CSIZE; +options.c_cflag |= CS8; +\endverbatim +Even parity (7E1): +\verbatim +options.c_cflag |= PARENB +options.c_cflag &= ~PARODD +options.c_cflag &= ~CSTOPB +options.c_cflag &= ~CSIZE; +options.c_cflag |= CS7; +\endverbatim +Odd parity (7O1): +\verbatim +options.c_cflag |= PARENB +options.c_cflag |= PARODD +options.c_cflag &= ~CSTOPB +options.c_cflag &= ~CSIZE; +options.c_cflag |= CS7; +\endverbatim +*/ + + +namespace serial{ + + using std::string; + using serial::MillisecondTimer; + using serial::Serial; + using namespace serial; + +#define SNCCS 19 + + + struct termios2 { + tcflag_t c_iflag; /* input mode flags */ + tcflag_t c_oflag; /* output mode flags */ + tcflag_t c_cflag; /* control mode flags */ + tcflag_t c_lflag; /* local mode flags */ + cc_t c_line; /* line discipline */ + cc_t c_cc[SNCCS]; /* control characters */ + speed_t c_ispeed; /* input speed */ + speed_t c_ospeed; /* output speed */ + }; + +#ifndef TCGETS2 +#define TCGETS2 _IOR('T', 0x2A, struct termios2) +#endif + +#ifndef TCSETS2 +#define TCSETS2 _IOW('T', 0x2B, struct termios2) +#endif + +#ifndef BOTHER +# define BOTHER 0010000 +#endif + + +#if defined(__ANDROID__) +struct serial_struct { + int type; + int line; + unsigned int port; + int irq; + int flags; + int xmit_fifo_size; + int custom_divisor; + int baud_base; + unsigned short close_delay; + char io_type; + char reserved_char[1]; + int hub6; + unsigned short closing_wait; + unsigned short closing_wait2; + unsigned char *iomem_base; + unsigned short iomem_reg_shift; + unsigned int port_high; + unsigned long iomap_base; +}; +# define ASYNC_SPD_CUST 0x0030 +# define ASYNC_SPD_MASK 0x1030 +# define PORT_UNKNOWN 0 +# define FNDELAY 0x800 +#endif + + + MillisecondTimer::MillisecondTimer (const uint32_t millis) : expiry(timespec_now()){ + int64_t tv_nsec = expiry.tv_nsec + (millis * 1e6); + if (tv_nsec >= 1e9) { + int64_t sec_diff = tv_nsec / static_cast (1e9); + expiry.tv_nsec = tv_nsec % static_cast(1e9); + expiry.tv_sec += sec_diff; + } else { + expiry.tv_nsec = tv_nsec; + } + } + + int64_t MillisecondTimer::remaining () { + timespec now(timespec_now()); + int64_t millis = (expiry.tv_sec - now.tv_sec) * 1e3; + millis += (expiry.tv_nsec - now.tv_nsec) / 1e6; + return millis; + } + + timespec MillisecondTimer::timespec_now () { + timespec time; +# ifdef __MACH__ // OS X does not have clock_gettime, use clock_get_time + clock_serv_t cclock; + mach_timespec_t mts; + host_get_clock_service(mach_host_self(), SYSTEM_CLOCK, &cclock); + clock_get_time(cclock, &mts); + mach_port_deallocate(mach_task_self(), cclock); + time.tv_sec = mts.tv_sec; + time.tv_nsec = mts.tv_nsec; +# else + clock_gettime(CLOCK_MONOTONIC, &time); +# endif + return time; + } + + timespec timespec_from_ms (const uint32_t millis) { + timespec time; + time.tv_sec = millis / 1e3; + time.tv_nsec = (millis - (time.tv_sec * 1e3)) * 1e6; + return time; + } + + + static inline void set_common_props(termios *tio) { +#ifdef OS_SOLARIS + tio->c_iflag &= ~(IMAXBEL|IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON); + tio->c_oflag &= ~OPOST; + tio->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN); + tio->c_cflag &= ~(CSIZE|PARENB); + tio->c_cflag |= CS8; +#else + ::cfmakeraw(tio); +#endif + tio->c_cflag |= CLOCAL; + tio->c_cc[VTIME] = 0; + tio->c_cc[VMIN] = 0; + } + + + static inline void set_databits(termios *tio, serial::bytesize_t databits) { + tio->c_cflag &= ~CSIZE; + switch (databits) { + case serial::fivebits: + tio->c_cflag |= CS5; + break; + case serial::sixbits: + tio->c_cflag |= CS6; + break; + case serial::sevenbits: + tio->c_cflag |= CS7; + break; + case serial::eightbits: + tio->c_cflag |= CS8; + break; + default: + tio->c_cflag |= CS8; + break; + } + } + + + static inline void set_parity(termios *tio, serial::parity_t parity) { + tio->c_iflag &= ~(PARMRK | INPCK); + tio->c_iflag |= IGNPAR; + + switch (parity) { + +#ifdef CMSPAR + // Here Installation parity only for GNU/Linux where the macro CMSPAR. + case serial::parity_space: + tio->c_cflag &= ~PARODD; + tio->c_cflag |= PARENB | CMSPAR; + break; + case serial::parity_mark: + tio->c_cflag |= PARENB | CMSPAR | PARODD; + break; +#endif + case serial::parity_none: + tio->c_cflag &= ~PARENB; + break; + case serial::parity_even: + tio->c_cflag &= ~PARODD; + tio->c_cflag |= PARENB; + break; + case serial::parity_odd: + tio->c_cflag |= PARENB | PARODD; + break; + default: + tio->c_cflag |= PARENB; + tio->c_iflag |= PARMRK | INPCK; + tio->c_iflag &= ~IGNPAR; + break; + } + } + + + static inline void set_stopbits(termios *tio, serial::stopbits_t stopbits) { + switch (stopbits) { + case serial::stopbits_one: + tio->c_cflag &= ~CSTOPB; + break; + case serial::stopbits_two: + tio->c_cflag |= CSTOPB; + break; + default: + tio->c_cflag &= ~CSTOPB; + break; + } + } + + static inline void set_flowcontrol(termios *tio, serial::flowcontrol_t flowcontrol) { + switch (flowcontrol) { + case serial::flowcontrol_none: + tio->c_cflag &= ~CRTSCTS; + tio->c_iflag &= ~(IXON | IXOFF | IXANY); + break; + case serial::flowcontrol_hardware: + tio->c_cflag |= CRTSCTS; + tio->c_iflag &= ~(IXON | IXOFF | IXANY); + break; + case serial::flowcontrol_software: + tio->c_cflag &= ~CRTSCTS; + tio->c_iflag |= IXON | IXOFF | IXANY; + break; + default: + tio->c_cflag &= ~CRTSCTS; + tio->c_iflag &= ~(IXON | IXOFF | IXANY); + break; + } + } + + + static inline bool is_standardbaudrate(unsigned long baudrate, speed_t &baud){ + // setup baud rate + bool custom_baud = false; + switch (baudrate) { +#ifdef B0 + case 0: baud = B0; break; +#endif +#ifdef B50 + case 50: baud = B50; break; +#endif +#ifdef B75 + case 75: baud = B75; break; +#endif +#ifdef B110 + case 110: baud = B110; break; +#endif +#ifdef B134 + case 134: baud = B134; break; +#endif +#ifdef B150 + case 150: baud = B150; break; +#endif +#ifdef B200 + case 200: baud = B200; break; +#endif +#ifdef B300 + case 300: baud = B300; break; +#endif +#ifdef B600 + case 600: baud = B600; break; +#endif +#ifdef B1200 + case 1200: baud = B1200; break; +#endif +#ifdef B1800 + case 1800: baud = B1800; break; +#endif +#ifdef B2400 + case 2400: baud = B2400; break; +#endif +#ifdef B4800 + case 4800: baud = B4800; break; +#endif +#ifdef B7200 + case 7200: baud = B7200; break; +#endif +#ifdef B9600 + case 9600: baud = B9600; break; +#endif +#ifdef B14400 + case 14400: baud = B14400; break; +#endif +#ifdef B19200 + case 19200: baud = B19200; break; +#endif +#ifdef B28800 + case 28800: baud = B28800; break; +#endif +#ifdef B57600 + case 57600: baud = B57600; break; +#endif +#ifdef B76800 + case 76800: baud = B76800; break; +#endif +#ifdef B38400 + case 38400: baud = B38400; break; +#endif +#ifdef B115200 + case 115200: baud = B115200; break; +#endif +#ifdef B128000 + case 128000: baud = B128000; break; +#endif +#ifdef B153600 + case 153600: baud = B153600; break; +#endif +#ifdef B230400 + case 230400: baud = B230400; break; +#endif +#ifdef B256000 + case 256000: baud = B256000; break; +#endif +#ifdef B460800 + case 460800: baud = B460800; break; +#endif +#ifdef B576000 + case 576000: baud = B576000; break; +#endif +#ifdef B921600 + case 921600: baud = B921600; break; +#endif +#ifdef B1000000 + case 1000000: baud = B1000000; break; +#endif +#ifdef B1152000 + case 1152000: baud = B1152000; break; +#endif +#ifdef B1500000 + case 1500000: baud = B1500000; break; +#endif +#ifdef B2000000 + case 2000000: baud = B2000000; break; +#endif +#ifdef B2500000 + case 2500000: baud = B2500000; break; +#endif +#ifdef B3000000 + case 3000000: baud = B3000000; break; +#endif +#ifdef B3500000 + case 3500000: baud = B3500000; break; +#endif +#ifdef B4000000 + case 4000000: baud = B4000000; break; +#endif + default: + custom_baud = true; + } + + return !custom_baud; + + } + + + + Serial::SerialImpl::SerialImpl (const string &port, unsigned long baudrate, + bytesize_t bytesize, + parity_t parity, stopbits_t stopbits, + flowcontrol_t flowcontrol) + : port_ (port), fd_ (-1), is_open_ (false), xonxoff_ (false), rtscts_ (false), + baudrate_ (baudrate), parity_ (parity), + bytesize_ (bytesize), stopbits_ (stopbits), flowcontrol_ (flowcontrol) + { + pthread_mutex_init(&this->read_mutex, NULL); + pthread_mutex_init(&this->write_mutex, NULL); + + } + + Serial::SerialImpl::~SerialImpl () { + close(); + pthread_mutex_destroy(&this->read_mutex); + pthread_mutex_destroy(&this->write_mutex); + } + + bool Serial::SerialImpl::open () { + if (port_.empty ()) { + return false; + } + if (is_open_ == true) { + return true; + } + + fd_ = ::open (port_.c_str(), O_RDWR | O_NOCTTY | O_NONBLOCK | O_APPEND | O_NDELAY); + + if (fd_ == -1) { + switch (errno) { + case EINTR: + // Recurse because this is a recoverable error. + return open (); + case ENFILE: + case EMFILE: + default: + return false; + } + } + + termios tio; + if (!getTermios(&tio)){ + return false; + } + set_common_props(&tio); + set_databits(&tio, bytesize_); + set_parity(&tio, parity_); + set_stopbits(&tio, stopbits_); + set_flowcontrol(&tio, flowcontrol_); + + if (!setTermios(&tio)){ + return false; + } + + if (!setBaudrate(baudrate_)){ + return false; + } + + // Update byte_time_ based on the new settings. + uint32_t bit_time_ns = 1e9 / baudrate_; + byte_time_ns_ = bit_time_ns * (1 + bytesize_ + parity_ + stopbits_); + + // Compensate for the stopbits_one_point_five enum being equal to int 3, + // and not 1.5. + if (stopbits_ == stopbits_one_point_five) { + byte_time_ns_ += ((1.5 - stopbits_one_point_five) * bit_time_ns); + } + + is_open_ = true; + return true; + } + + + void Serial::SerialImpl::close (){ + if (is_open_ == true) { + if (fd_ != -1) { + ::close (fd_); + } + fd_ = -1; + is_open_ = false; + } + } + + bool Serial::SerialImpl::isOpen () const { + return is_open_; + } + + size_t Serial::SerialImpl::available () { + if (!is_open_) { + return 0; + } + int count = 0; + if (-1 == ioctl (fd_, TIOCINQ, &count)) { + return 0; + } else { + return static_cast (count); + } + } + + bool Serial::SerialImpl::waitReadable (uint32_t timeout) { + // Setup a select call to block for serial data or a timeout + fd_set readfds; + FD_ZERO (&readfds); + FD_SET (fd_, &readfds); + timespec timeout_ts (timespec_from_ms (timeout)); + int r = pselect (fd_ + 1, &readfds, NULL, NULL, &timeout_ts, NULL); + + if (r < 0) { + // Select was interrupted + if (errno == EINTR) { + return false; + } + // Otherwise there was some error + return false; + } + // Timeout occurred + if (r == 0) { + return false; + } + // This shouldn't happen, if r > 0 our fd has to be in the list! + if (!FD_ISSET (fd_, &readfds)) { + return false; + } + // Data available to read. + return true; + } + + + size_t Serial::SerialImpl::waitfordata(size_t data_count, uint32_t timeout, size_t * returned_size) { + size_t length = 0; + if (returned_size==NULL){ + returned_size=(size_t *)&length; + } + *returned_size = 0; + + int max_fd; + fd_set input_set; + struct timeval timeout_val; + + /* Initialize the input set */ + FD_ZERO(&input_set); + FD_SET(fd_, &input_set); + max_fd = fd_ + 1; + + /* Initialize the timeout structure */ + timeout_val.tv_sec = timeout / 1000; + timeout_val.tv_usec = (timeout % 1000) * 1000; + + if(is_open_){ + if ( ioctl(fd_, FIONREAD, returned_size) == -1){ + return -2; + } + if (*returned_size >= data_count) { + return 0; + } + } + + while(is_open_){ + /* Do the select */ + int n = ::select(max_fd, &input_set, NULL, NULL, &timeout_val); + + if(n < 0){ + if (errno == EINTR){ + return -1; + } + // Otherwise there was some error + return -2; + }else if(n == 0){ + // time out + return -1; + }else{ + // data avaliable + assert (FD_ISSET(fd_, &input_set)); + + if ( ioctl(fd_, FIONREAD, returned_size) == -1){ + return -2; + } + if (*returned_size >= data_count) { + return 0; + }else{ + int remain_timeout = timeout_val.tv_sec*1000000 + timeout_val.tv_usec; + int expect_remain_time = (data_count - *returned_size)*1000000*8/baudrate_; + if (remain_timeout > expect_remain_time){ + usleep(expect_remain_time); + } + } + } + } + return -2; + } + + + void Serial::SerialImpl::waitByteTimes (size_t count){ + timespec wait_time = { 0, static_cast(byte_time_ns_ * count)}; + pselect (0, NULL, NULL, NULL, &wait_time, NULL); + } + + size_t Serial::SerialImpl::read (uint8_t *buf, size_t size){ + // If the port is not open, throw + if (!is_open_) { + return 0; + } + size_t bytes_read = 0; + + // Calculate total timeout in milliseconds t_c + (t_m * N) + long total_timeout_ms = timeout_.read_timeout_constant; + total_timeout_ms += timeout_.read_timeout_multiplier * static_cast (size); + MillisecondTimer total_timeout(total_timeout_ms); + + // Pre-fill buffer with available bytes + { + ssize_t bytes_read_now = ::read (fd_, buf, size); + if (bytes_read_now > 0) { + bytes_read = bytes_read_now; + } + } + + while (bytes_read < size) { + int64_t timeout_remaining_ms = total_timeout.remaining(); + if (timeout_remaining_ms <= 0) { + // Timed out + break; + } + // Timeout for the next select is whichever is less of the remaining + // total read timeout and the inter-byte timeout. + uint32_t timeout = std::min(static_cast (timeout_remaining_ms), timeout_.inter_byte_timeout); + // Wait for the device to be readable, and then attempt to read. + if (waitReadable(timeout)) { + // If it's a fixed-length multi-byte read, insert a wait here so that + // we can attempt to grab the whole thing in a single IO call. Skip + // this wait if a non-max inter_byte_timeout is specified. + if (size > 1 && timeout_.inter_byte_timeout == Timeout::max()) { + size_t bytes_available = available(); + if (bytes_available + bytes_read < size) { + waitByteTimes(size - (bytes_available + bytes_read)); + } + } + // This should be non-blocking returning only what is available now + // Then returning so that select can block again. + ssize_t bytes_read_now = ::read (fd_, buf + bytes_read, size - bytes_read); + // read should always return some data as select reported it was + // ready to read when we get to this point. + if (bytes_read_now < 1) { + // Disconnected devices, at least on Linux, show the + // behavior that they are always ready to read immediately + // but reading returns nothing. + continue; + } + // Update bytes_read + bytes_read += static_cast (bytes_read_now); + // If bytes_read == size then we have read everything we need + if (bytes_read == size) { + break; + } + // If bytes_read < size then we have more to read + if (bytes_read < size) { + continue; + } + // If bytes_read > size then we have over read, which shouldn't happen + if (bytes_read > size) { + break; + } + } + } + return bytes_read; + } + + size_t Serial::SerialImpl::write (const uint8_t *data, size_t length) { + if (is_open_ == false) { + return 0; + } + fd_set writefds; + size_t bytes_written = 0; + + // Calculate total timeout in milliseconds t_c + (t_m * N) + long total_timeout_ms = timeout_.write_timeout_constant; + total_timeout_ms += timeout_.write_timeout_multiplier * static_cast (length); + MillisecondTimer total_timeout(total_timeout_ms); + + bool first_iteration = true; + while (bytes_written < length) { + int64_t timeout_remaining_ms = total_timeout.remaining(); + // Only consider the timeout if it's not the first iteration of the loop + // otherwise a timeout of 0 won't be allowed through + if (!first_iteration && (timeout_remaining_ms <= 0)) { + // Timed out + break; + } + first_iteration = false; + + timespec timeout(timespec_from_ms(timeout_remaining_ms)); + + FD_ZERO (&writefds); + FD_SET (fd_, &writefds); + + // Do the select + int r = pselect (fd_ + 1, NULL, &writefds, NULL, &timeout, NULL); + + // Figure out what happened by looking at select's response 'r' + /** Error **/ + if (r < 0) { + // Select was interrupted, try again + if (errno == EINTR) { + continue; + } + // Otherwise there was some error + continue; + } + /** Timeout **/ + if (r == 0) { + break; + } + /** Port ready to write **/ + if (r > 0) { + // Make sure our file descriptor is in the ready to write list + if (FD_ISSET (fd_, &writefds)) { + // This will write some + ssize_t bytes_written_now = ::write (fd_, data + bytes_written, length - bytes_written); + // write should always return some data as select reported it was + // ready to write when we get to this point. + if (bytes_written_now < 1) { + // Disconnected devices, at least on Linux, show the + // behavior that they are always ready to write immediately + // but writing returns nothing. + continue; + } + // Update bytes_written + bytes_written += static_cast (bytes_written_now); + // If bytes_written == size then we have written everything we need to + if (bytes_written == length) { + break; + } + // If bytes_written < size then we have more to write + if (bytes_written < length) { + continue; + } + // If bytes_written > size then we have over written, which shouldn't happen + if (bytes_written > length) { + break; + } + } + // This shouldn't happen, if r > 0 our fd has to be in the list! + break; + //THROW (IOException, "select reports ready to write, but our fd isn't in the list, this shouldn't happen!"); + } + } + return bytes_written; + } + + void Serial::SerialImpl::setPort (const string &port) { + port_ = port; + } + + string Serial::SerialImpl::getPort () const { + return port_; + } + + void Serial::SerialImpl::setTimeout (serial::Timeout &timeout) { + timeout_ = timeout; + } + + serial::Timeout Serial::SerialImpl::getTimeout () const { + return timeout_; + } + + bool Serial::SerialImpl::setBaudrate (unsigned long baudrate) { + + if(fd_==-1){ + return false; + } + baudrate_ = baudrate; + // OS X support +#if defined(MAC_OS_X_VERSION_10_4) && (MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_4) + // Starting with Tiger, the IOSSIOSPEED ioctl can be used to set arbitrary baud rates + // other than those specified by POSIX. The driver for the underlying serial hardware + // ultimately determines which baud rates can be used. This ioctl sets both the input + // and output speed. + speed_t new_baud = static_cast (baudrate); + if (-1 == ioctl (fd_, IOSSIOSPEED, &new_baud, 1)) { + return false; + } + // Linux Support +#elif defined(__linux__) && defined (TIOCSSERIAL) + speed_t baud; + bool standard_baud = is_standardbaudrate(baudrate, baud); + if(!standard_baud){ + return setCustomBaudRate(baudrate); + }else{ + return setStandardBaudRate(baud); + } +#else + return false; +#endif + + } + + unsigned long Serial::SerialImpl::getBaudrate () const { + return baudrate_; + } + + + bool Serial::SerialImpl::setStandardBaudRate(speed_t baudrate){ +#ifdef __linux__ + // try to clear custom baud rate, using termios v2 + struct termios2 tio2; + if (::ioctl(fd_, TCGETS2, &tio2) != -1) { + if (tio2.c_cflag & BOTHER) { + tio2.c_cflag &= ~BOTHER; + tio2.c_cflag |= CBAUD; + ::ioctl(fd_, TCSETS2, &tio2); + } + } + + // try to clear custom baud rate, using serial_struct (old way) + struct serial_struct serial; + ::memset(&serial, 0, sizeof(serial)); + if (::ioctl(fd_, TIOCGSERIAL, &serial) != -1) { + if (serial.flags & ASYNC_SPD_CUST) { + serial.flags &= ~ASYNC_SPD_CUST; + serial.custom_divisor = 0; + // we don't check on errors because a driver can has not this feature + ::ioctl(fd_, TIOCSSERIAL, &serial); + } + } +#endif + + termios tio; + if (!getTermios(&tio)){ + return false; + } +#ifdef _BSD_SOURCE + if(::cfsetspeed(&tio, baudrate) <0){ + return false; + } +#else + if (::cfsetispeed(&tio, baudrate) < 0) { + return false; + } + + if (::cfsetospeed(&tio, baudrate) < 0) { + return false; + } +#endif + return setTermios(&tio); + } + + + bool Serial::SerialImpl::setCustomBaudRate(unsigned long baudrate) { + struct termios2 tio2; + + if (::ioctl(fd_, TCGETS2, &tio2) != -1) { + tio2.c_cflag &= ~CBAUD; + tio2.c_cflag |= BOTHER; + + tio2.c_ispeed = baudrate; + tio2.c_ospeed = baudrate; + + tcflush(fd_,TCIFLUSH); + + if (fcntl(fd_, F_SETFL, FNDELAY)) { + return false; + } + + if (::ioctl(fd_, TCSETS2, &tio2) != -1 && ::ioctl(fd_, TCGETS2, &tio2) != -1) { + return true; + } + } + + struct serial_struct serial; + + if (::ioctl(fd_, TIOCGSERIAL, &serial) == -1) { + return false; + } + + serial.flags &= ~ASYNC_SPD_MASK; + serial.flags |= (ASYNC_SPD_CUST /* | ASYNC_LOW_LATENCY*/); + serial.custom_divisor = serial.baud_base / baudrate; + + if (serial.custom_divisor == 0) { + return false; + } + + if (serial.custom_divisor * baudrate != serial.baud_base) { + } + + if (::ioctl(fd_, TIOCSSERIAL, &serial) == -1) { + return false; + } + + return setStandardBaudRate(B38400); + } + + + bool Serial::SerialImpl::setBytesize (serial::bytesize_t bytesize) { + termios tio; + if (!getTermios(&tio)){ + return false; + } + bytesize_ = bytesize; + set_databits(&tio, bytesize); + + return setTermios(&tio); + } + + serial::bytesize_t Serial::SerialImpl::getBytesize () const { + return bytesize_; + } + + bool Serial::SerialImpl::setParity (serial::parity_t parity){ + termios tio; + if (!getTermios(&tio)){ + return false; + } + parity_ = parity; + set_parity(&tio, parity); + + return setTermios(&tio); + } + + serial::parity_t Serial::SerialImpl::getParity () const{ + return parity_; + } + + bool Serial::SerialImpl::setStopbits (serial::stopbits_t stopbits) { + termios tio; + if (!getTermios(&tio)){ + return false; + } + stopbits_ = stopbits; + set_stopbits(&tio, stopbits); + + return setTermios(&tio); + } + + serial::stopbits_t Serial::SerialImpl::getStopbits () const{ + return stopbits_; + } + + bool Serial::SerialImpl::setFlowcontrol (serial::flowcontrol_t flowcontrol){ + termios tio; + if (!getTermios(&tio)){ + return false; + } + flowcontrol_ = flowcontrol; + set_flowcontrol(&tio, flowcontrol); + + return setTermios(&tio); + } + + serial::flowcontrol_t Serial::SerialImpl::getFlowcontrol () const{ + return flowcontrol_; + } + + + bool Serial::SerialImpl::setTermios(const termios *tio){ + + tcflush(fd_,TCIFLUSH); + + if (fcntl(fd_, F_SETFL, FNDELAY)) { + return false; + } + + if (::tcsetattr(fd_, TCSANOW, tio) == -1) { + return false; + } + return true; + } + + bool Serial::SerialImpl::getTermios(termios *tio){ + ::memset(tio, 0, sizeof(termios)); + if (::tcgetattr(fd_, tio) == -1) { + return false; + } + return true; + } + + void Serial::SerialImpl::flush (){ + if (is_open_ == false) { + return; + } + #if !defined(__ANDROID__) + tcdrain (fd_); + #endif + } + + void Serial::SerialImpl::flushInput (){ + if (is_open_ == false) { + return; + } + tcflush (fd_, TCIFLUSH); + } + + void Serial::SerialImpl::flushOutput (){ + if (is_open_ == false) { + return; + } + tcflush (fd_, TCOFLUSH); + } + + void Serial::SerialImpl::sendBreak (int duration) { + if (is_open_ == false) { + return; + } + tcsendbreak (fd_, static_cast (duration / 4)); + } + + bool Serial::SerialImpl::setBreak (bool level) { + if (is_open_ == false) { + return false; + } + + if (level) { + if (-1 == ioctl (fd_, TIOCSBRK)) { + return false; + } + } else { + if (-1 == ioctl (fd_, TIOCCBRK)) { + return false; + } + } + return true; + } + + bool Serial::SerialImpl::setRTS (bool level){ + if (is_open_ == false) { + return false; + } + + int command = TIOCM_RTS; + + if (level) { + if (-1 == ioctl (fd_, TIOCMBIS, &command)) { + return false; + } + } else { + if (-1 == ioctl (fd_, TIOCMBIC, &command)) { + return false; + } + } + return true; + } + + bool Serial::SerialImpl::setDTR (bool level) { + if (is_open_ == false) { + return false; + } + + int command = TIOCM_DTR; + + if (level) { + if (-1 == ioctl (fd_, TIOCMBIS, &command)) { + return false; + } + } else { + if (-1 == ioctl (fd_, TIOCMBIC, &command)) { + return false; + } + } + return true; + } + + bool Serial::SerialImpl::waitForChange () { +#ifndef TIOCMIWAIT + + while (is_open_ == true) { + + int status; + + if (-1 == ioctl (fd_, TIOCMGET, &status)) { + return false; + }else{ + if (0 != (status & TIOCM_CTS) + || 0 != (status & TIOCM_DSR) + || 0 != (status & TIOCM_RI) + || 0 != (status & TIOCM_CD)) + { + return true; + } + } + + usleep(1000); + } + + return false; +#else + int command = (TIOCM_CD|TIOCM_DSR|TIOCM_RI|TIOCM_CTS); + + if (-1 == ioctl (fd_, TIOCMIWAIT, &command)) { + return false; + } + return true; +#endif + } + + bool Serial::SerialImpl::getCTS (){ + if (is_open_ == false) { + return false; + } + + int status; + + if (-1 == ioctl (fd_, TIOCMGET, &status)){ + return false; + }else{ + return 0 != (status & TIOCM_CTS); + } + } + + bool Serial::SerialImpl::getDSR (){ + if (is_open_ == false) { + return false; + } + + int status; + + if (-1 == ioctl (fd_, TIOCMGET, &status)){ + return false; + }else{ + return 0 != (status & TIOCM_DSR); + } + } + + bool Serial::SerialImpl::getRI (){ + if (is_open_ == false) { + return false; + } + + int status; + + if (-1 == ioctl (fd_, TIOCMGET, &status)){ + return false; + }else{ + return 0 != (status & TIOCM_RI); + } + } + + bool Serial::SerialImpl::getCD (){ + if (is_open_ == false) { + return false; + } + + int status; + + if (-1 == ioctl (fd_, TIOCMGET, &status)){ + return false; + }else{ + return 0 != (status & TIOCM_CD); + } + } + + int Serial::SerialImpl::readLock (){ + int result = pthread_mutex_lock(&this->read_mutex); + return result; + } + + int Serial::SerialImpl::readUnlock (){ + int result = pthread_mutex_unlock(&this->read_mutex); + return result; + } + + int Serial::SerialImpl::writeLock (){ + int result = pthread_mutex_lock(&this->write_mutex); + return result; + } + + int Serial::SerialImpl::writeUnlock (){ + int result = pthread_mutex_unlock(&this->write_mutex); + return result; + } +} +#endif // !defined(_WIN32) diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/unix/unix_serial.h b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/unix/unix_serial.h new file mode 100644 index 0000000..99bfdbd --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/unix/unix_serial.h @@ -0,0 +1,153 @@ +#if !defined(_WIN32) + +#ifndef SERIAL_IMPL_UNIX_H +#define SERIAL_IMPL_UNIX_H + +#include +#include +#include +#include "serial.h" + +namespace serial { + + using std::size_t; + using std::string; + + + class MillisecondTimer { + public: + MillisecondTimer(const uint32_t millis); + int64_t remaining(); + + private: + static timespec timespec_now(); + timespec expiry; + }; + + class serial::Serial::SerialImpl { + public: + SerialImpl (const string &port, + unsigned long baudrate, + bytesize_t bytesize, + parity_t parity, + stopbits_t stopbits, + flowcontrol_t flowcontrol); + + virtual ~SerialImpl (); + + bool open (); + + void close (); + + bool isOpen () const; + + size_t available (); + + bool waitReadable (uint32_t timeout); + + void waitByteTimes (size_t count); + + size_t waitfordata(size_t data_count, uint32_t timeout, size_t * returned_size); + + size_t read (uint8_t *buf, size_t size = 1); + + size_t write (const uint8_t *data, size_t length); + + + void flush (); + + void flushInput (); + + void flushOutput (); + + void sendBreak (int duration); + + bool setBreak (bool level); + + bool setRTS (bool level); + + bool setDTR (bool level); + + bool waitForChange (); + + bool getCTS (); + + bool getDSR (); + + bool getRI (); + + bool getCD (); + + void setPort (const string &port); + + string getPort () const; + + void setTimeout (Timeout &timeout); + + Timeout getTimeout () const; + + bool setBaudrate (unsigned long baudrate); + + bool setStandardBaudRate(speed_t baudrate); + + bool setCustomBaudRate(unsigned long baudrate); + + unsigned long getBaudrate () const; + + bool setBytesize (bytesize_t bytesize); + + bytesize_t getBytesize () const; + + bool setParity (parity_t parity); + + parity_t getParity () const; + + bool setStopbits (stopbits_t stopbits); + + stopbits_t getStopbits () const; + + bool setFlowcontrol (flowcontrol_t flowcontrol); + + flowcontrol_t getFlowcontrol () const; + + bool setTermios(const termios *tio); + + bool getTermios(termios *tio); + + int readLock (); + + int readUnlock (); + + int writeLock (); + + int writeUnlock (); + + + private: + string port_; // Path to the file descriptor + int fd_; // The current file descriptor + + bool is_open_; + bool xonxoff_; + bool rtscts_; + + Timeout timeout_; // Timeout for read operations + unsigned long baudrate_; // Baudrate + uint32_t byte_time_ns_; // Nanoseconds to transmit/receive a single byte + + parity_t parity_; // Parity + bytesize_t bytesize_; // Size of the bytes + stopbits_t stopbits_; // Stop Bits + flowcontrol_t flowcontrol_; // Flow Control + + // Mutex used to lock the read functions + pthread_mutex_t read_mutex; + // Mutex used to lock the write functions + pthread_mutex_t write_mutex; + }; + +} + +#endif // SERIAL_IMPL_UNIX_H + +#endif // !defined(_WIN32) diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/unix/unix_timer.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/unix/unix_timer.cpp new file mode 100644 index 0000000..1c78d83 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/unix/unix_timer.cpp @@ -0,0 +1,18 @@ +#if !defined(_WIN32) +#include "unix_timer.h" + +namespace impl{ + uint64_t f_getus() { + struct timespec t; + t.tv_sec = t.tv_nsec = 0; + clock_gettime(CLOCK_MONOTONIC, &t); + return t.tv_sec*1000000LL + t.tv_nsec/1000; + } + uint32_t f_getms() { + struct timespec t; + t.tv_sec = t.tv_nsec = 0; + clock_gettime(CLOCK_MONOTONIC, &t); + return t.tv_sec*1000L + t.tv_nsec/1000000L; + } +} +#endif \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/unix/unix_timer.h b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/unix/unix_timer.h new file mode 100644 index 0000000..4d47394 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/unix/unix_timer.h @@ -0,0 +1,23 @@ +#pragma once +#include "v8stdint.h" +#include +#include +#include + +static inline void delay(uint32_t ms){ + while (ms>=1000){ + usleep(1000*1000); + ms-=1000; + }; + if (ms!=0){ + usleep(ms*1000); + } +} + + +namespace impl{ + uint64_t f_getus(); + uint32_t f_getms(); +} + +#define getms() impl::f_getms() diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/windows/win.h b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/windows/win.h new file mode 100644 index 0000000..6e5d8a8 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/windows/win.h @@ -0,0 +1,11 @@ +#pragma once + +#include +#include +#include +#include +#include +#include + +#include "win_timer.h" + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/windows/win_serial.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/windows/win_serial.cpp new file mode 100644 index 0000000..737631a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/windows/win_serial.cpp @@ -0,0 +1,747 @@ +#if defined(_WIN32) + +#include "win_serial.h" + +namespace serial { + + static inline void set_common_props(DCB *dcb) { + dcb->fBinary = TRUE; + dcb->fAbortOnError = FALSE; + dcb->fNull = FALSE; + dcb->fErrorChar = FALSE; + + if (dcb->fDtrControl == DTR_CONTROL_HANDSHAKE){ + dcb->fDtrControl = DTR_CONTROL_DISABLE; + } + + if (dcb->fRtsControl != RTS_CONTROL_HANDSHAKE){ + dcb->fRtsControl = RTS_CONTROL_DISABLE; + } + } + + static inline void set_baudrate(DCB *dcb, unsigned long baudrate) { + // setup baud rate + switch (baudrate) { +#ifdef CBR_0 + case 0: dcb->BaudRate = CBR_0; break; +#endif +#ifdef CBR_50 + case 50: dcb->BaudRate = CBR_50; break; +#endif +#ifdef CBR_75 + case 75: dcb->BaudRate = CBR_75; break; +#endif +#ifdef CBR_110 + case 110: dcb->BaudRate = CBR_110; break; +#endif +#ifdef CBR_134 + case 134: dcb->BaudRate = CBR_134; break; +#endif +#ifdef CBR_150 + case 150: dcb->BaudRate = CBR_150; break; +#endif +#ifdef CBR_200 + case 200: dcb->BaudRate = CBR_200; break; +#endif +#ifdef CBR_300 + case 300: dcb->BaudRate = CBR_300; break; +#endif +#ifdef CBR_600 + case 600: dcb->BaudRate = CBR_600; break; +#endif +#ifdef CBR_1200 + case 1200: dcb->BaudRate = CBR_1200; break; +#endif +#ifdef CBR_1800 + case 1800: dcb->BaudRate = CBR_1800; break; +#endif +#ifdef CBR_2400 + case 2400: dcb->BaudRate = CBR_2400; break; +#endif +#ifdef CBR_4800 + case 4800: dcb->BaudRate = CBR_4800; break; +#endif +#ifdef CBR_7200 + case 7200: dcb->BaudRate = CBR_7200; break; +#endif +#ifdef CBR_9600 + case 9600: dcb->BaudRate = CBR_9600; break; +#endif +#ifdef CBR_14400 + case 14400: dcb->BaudRate = CBR_14400; break; +#endif +#ifdef CBR_19200 + case 19200: dcb->BaudRate = CBR_19200; break; +#endif +#ifdef CBR_28800 + case 28800: dcb->BaudRate = CBR_28800; break; +#endif +#ifdef CBR_57600 + case 57600: dcb->BaudRate = CBR_57600; break; +#endif +#ifdef CBR_76800 + case 76800: dcb->BaudRate = CBR_76800; break; +#endif +#ifdef CBR_38400 + case 38400: dcb->BaudRate = CBR_38400; break; +#endif +#ifdef CBR_115200 + case 115200: dcb->BaudRate = CBR_115200; break; +#endif +#ifdef CBR_128000 + case 128000: dcb->BaudRate = CBR_128000; break; +#endif +#ifdef CBR_153600 + case 153600: dcb->BaudRate = CBR_153600; break; +#endif +#ifdef CBR_230400 + case 230400: dcb->BaudRate = CBR_230400; break; +#endif +#ifdef CBR_256000 + case 256000: dcb->BaudRate = CBR_256000; break; +#endif +#ifdef CBR_460800 + case 460800: dcb->BaudRate = CBR_460800; break; +#endif +#ifdef CBR_921600 + case 921600: dcb->BaudRate = CBR_921600; break; +#endif + default: + // Try to blindly assign it + dcb->BaudRate = baudrate; + } + } + + static inline void set_databits(DCB *dcb, serial::bytesize_t bytesize) { + switch (bytesize) { + case serial::fivebits: + dcb->ByteSize = 5; + break; + case serial::sixbits: + dcb->ByteSize = 6; + break; + case serial::sevenbits: + dcb->ByteSize = 7; + break; + case serial::eightbits: + dcb->ByteSize = 8; + break; + default: + dcb->ByteSize = 8; + break; + } + } + + static inline void set_parity(DCB *dcb, serial::parity_t parity) { + dcb->fParity = TRUE; + switch (parity) { + case serial::parity_none: + dcb->Parity = NOPARITY; + dcb->fParity = FALSE; + break; + case serial::parity_odd: + dcb->Parity = ODDPARITY; + break; + case serial::parity_even: + dcb->Parity = EVENPARITY; + break; + case serial::parity_mark: + dcb->Parity = MARKPARITY; + break; + case serial::parity_space: + dcb->Parity = SPACEPARITY; + break; + default: + dcb->Parity = NOPARITY; + dcb->fParity = FALSE; + break; + } + } + + static inline void set_stopbits(DCB *dcb, serial::stopbits_t stopbits) { + switch (stopbits) { + case serial::stopbits_one: + dcb->StopBits = ONESTOPBIT; + break; + case serial::stopbits_one_point_five: + dcb->StopBits = ONE5STOPBITS; + break; + case serial::stopbits_two: + dcb->StopBits = TWOSTOPBITS; + break; + default: + dcb->StopBits = ONESTOPBIT; + break; + } + } + + static inline void set_flowcontrol(DCB *dcb, serial::flowcontrol_t flowcontrol) { + dcb->fInX = FALSE; + dcb->fOutX = FALSE; + dcb->fOutxCtsFlow = FALSE; + if (dcb->fRtsControl == RTS_CONTROL_HANDSHAKE){ + dcb->fRtsControl = RTS_CONTROL_DISABLE; + } + switch (flowcontrol) { + case serial::flowcontrol_none: + break; + case serial::flowcontrol_software: + dcb->fInX = TRUE; + dcb->fOutX = TRUE; + break; + case serial::flowcontrol_hardware: + dcb->fOutxCtsFlow = TRUE; + dcb->fRtsControl = RTS_CONTROL_HANDSHAKE; + break; + default: + break; + } + } + + inline wstring _prefix_port_if_needed(const wstring &input){ + static wstring windows_com_port_prefix = L"\\\\.\\"; + if (input.compare(windows_com_port_prefix) != 0) { + return windows_com_port_prefix + input; + } + return input; + } + + Serial::SerialImpl::SerialImpl (const string &port, unsigned long baudrate, + bytesize_t bytesize, + parity_t parity, stopbits_t stopbits, + flowcontrol_t flowcontrol) + : port_ (port.begin(), port.end()), fd_ (INVALID_HANDLE_VALUE), is_open_ (false), + baudrate_ (baudrate), parity_ (parity), + bytesize_ (bytesize), stopbits_ (stopbits), flowcontrol_ (flowcontrol) + { + if (port_.empty () == false){ + open (); + } + read_mutex = CreateMutex(NULL, false, NULL); + write_mutex = CreateMutex(NULL, false, NULL); + memset(&_wait_o, 0, sizeof(_wait_o)); + + _wait_o.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL); + } + + Serial::SerialImpl::~SerialImpl () { + this->close(); + CloseHandle(_wait_o.hEvent); + CloseHandle(read_mutex); + CloseHandle(write_mutex); + } + + bool Serial::SerialImpl::open () { + if (port_.empty ()) { + return false; + } + if (is_open_ == true) { + return true; + } + + wstring port_with_prefix = _prefix_port_if_needed(port_); + LPCWSTR lp_port = port_with_prefix.c_str(); + fd_ = CreateFileW(lp_port, + GENERIC_READ | GENERIC_WRITE, + 0, + 0, + OPEN_EXISTING, + FILE_ATTRIBUTE_NORMAL, + 0); + + if (fd_ == INVALID_HANDLE_VALUE) { + DWORD errno_ = GetLastError(); + switch (errno_) { + case ERROR_FILE_NOT_FOUND: + default: + return false; + + } + } + + + + if(reconfigurePort()) + { + is_open_ = true; + return true; + } + ::CloseHandle(fd_); + return false; + + } + + bool Serial::SerialImpl::reconfigurePort () { + if (fd_ == INVALID_HANDLE_VALUE) { + // Can only operate on a valid file descriptor + return false; + } + + DCB dcb; + if (!getDcb(&dcb)){ + return false; + } + + set_common_props(&dcb); + set_baudrate(&dcb, baudrate_); + set_databits(&dcb, bytesize_); + set_parity(&dcb, parity_); + set_stopbits(&dcb, stopbits_); + set_flowcontrol(&dcb, flowcontrol_); + + if (!setDcb(&dcb)){ + return false; + } + + setTimeout(timeout_); + + return true; + + } + + void Serial::SerialImpl::close () { + ResetEvent(_wait_o.hEvent); + if (is_open_ == true) { + if (fd_ != INVALID_HANDLE_VALUE) { + ::CancelIo(fd_); + int ret; + ret = CloseHandle(fd_); + } + fd_ = INVALID_HANDLE_VALUE; + is_open_ = false; + } + } + + bool Serial::SerialImpl::isOpen () const{ + return is_open_; + } + + size_t Serial::SerialImpl::available () { + if (!is_open_) { + return 0; + } + COMSTAT cs; + DWORD error; + if (ClearCommError(fd_, &error, &cs) && error >0) { + PurgeComm(fd_, PURGE_RXABORT | PURGE_RXCLEAR); + return 0; + } + return static_cast(cs.cbInQue); + } + + bool Serial::SerialImpl::waitReadable (uint32_t /*timeout*/) { + return false; + } + + void Serial::SerialImpl::waitByteTimes (size_t /*count*/) { + return ; + } + + size_t Serial::SerialImpl::waitfordata(size_t data_count, uint32_t timeout, size_t * returned_size) { + if (!is_open_) { + return 0; + } + size_t length = 0; + if (returned_size==NULL) returned_size=(size_t *)&length; + *returned_size = 0; + + if ( is_open_) { + size_t queue_remaining = available(); + if (queue_remaining >= data_count) { + *returned_size = queue_remaining; + return 0; + } + } + + COMSTAT stat; + DWORD error; + DWORD msk,lengths; + while ( is_open_ ) + { + msk = 0; + SetCommMask(fd_, EV_RXCHAR | EV_ERR ); + if(!WaitCommEvent(fd_, &msk, &_wait_o)) + { + if(GetLastError() == ERROR_IO_PENDING) + { + if (WaitForSingleObject(_wait_o.hEvent, timeout) == WAIT_TIMEOUT) { + *returned_size =0; + return -1; + } + + GetOverlappedResult(fd_, &_wait_o, &lengths, TRUE); + + ::ResetEvent(_wait_o.hEvent); + }else{ + ClearCommError(fd_, &error, &stat); + *returned_size = stat.cbInQue; + return -2; + } + } + + if(msk & EV_ERR){ + // FIXME: may cause problem here + ClearCommError(fd_, &error, &stat); + } + + if(msk & EV_RXCHAR){ + ClearCommError(fd_, &error, &stat); + if(stat.cbInQue >= data_count){ + *returned_size = stat.cbInQue; + return 0; + } + } + } + *returned_size=0; + return -2; + } + + + size_t Serial::SerialImpl::read (uint8_t *buf, size_t size){ + if (!is_open_) { + return 0; + } + DWORD bytes_read; + if (!ReadFile(fd_, buf, static_cast(size), &bytes_read, NULL)) { + if(GetLastError() == ERROR_IO_PENDING) { + if(!GetOverlappedResult(fd_, NULL, &bytes_read, FALSE)){ + if(GetLastError() != ERROR_IO_INCOMPLETE){ + return 0; + } + } + } + return 0; + } + return (size_t) (bytes_read); + } + + size_t Serial::SerialImpl::write (const uint8_t *data, size_t length) { + if (is_open_ == false) { + return 0; + } + if (data == NULL || length ==0) return 0; + DWORD error; + if(ClearCommError(fd_, &error, NULL) && error > 0){ + PurgeComm(fd_, PURGE_TXABORT | PURGE_TXCLEAR); + } + DWORD bytes_written; + if (!WriteFile(fd_, data, static_cast(length), &bytes_written, NULL)) { + return 0; + } + return (size_t) (bytes_written); + } + + void Serial::SerialImpl::setPort (const string &port) { + port_ = wstring(port.begin(), port.end()); + } + + string Serial::SerialImpl::getPort () const { + return string(port_.begin(), port_.end()); + } + + void Serial::SerialImpl::setTimeout (serial::Timeout &timeout) { + timeout_ = timeout; + if(fd_ == INVALID_HANDLE_VALUE){ + return; + } + // Setup timeouts + COMMTIMEOUTS timeouts = {0}; + timeouts.ReadIntervalTimeout = timeout_.inter_byte_timeout; + timeouts.ReadTotalTimeoutConstant = timeout_.read_timeout_constant; + timeouts.ReadTotalTimeoutMultiplier = timeout_.read_timeout_multiplier; + timeouts.WriteTotalTimeoutConstant = timeout_.write_timeout_constant; + timeouts.WriteTotalTimeoutMultiplier = timeout_.write_timeout_multiplier; + if (!SetCommTimeouts(fd_, &timeouts)) { + return; + } + + } + + serial::Timeout Serial::SerialImpl::getTimeout () const { + return timeout_; + } + + + bool Serial::SerialImpl::setDcb(DCB *dcb) { + if (!::SetCommState(fd_, dcb)) { + return false; + } + return true; + } + + bool Serial::SerialImpl::getDcb(DCB *dcb) { + ::ZeroMemory(dcb, sizeof(DCB)); + dcb->DCBlength = sizeof(DCB); + + if (!::GetCommState(fd_, dcb)) { + return false; + } + return true; + } + + + + bool Serial::SerialImpl::setBaudrate (unsigned long baudrate){ + DCB dcb; + if (!getDcb(&dcb)){ + return false; + } + baudrate_ = baudrate; + set_baudrate(&dcb, baudrate); + + return setDcb(&dcb); + } + + unsigned long Serial::SerialImpl::getBaudrate () const { + return baudrate_; + } + + bool Serial::SerialImpl::setBytesize (serial::bytesize_t bytesize) { + + DCB dcb; + if (!getDcb(&dcb)){ + return false; + } + bytesize_ = bytesize; + set_databits(&dcb, bytesize); + + return setDcb(&dcb); + } + + serial::bytesize_t Serial::SerialImpl::getBytesize () const { + return bytesize_; + } + + bool Serial::SerialImpl::setParity (serial::parity_t parity) { + + DCB dcb; + if(!getDcb(&dcb)){ + return false; + } + parity_ = parity; + set_parity(&dcb, parity); + + return setDcb(&dcb); + } + + serial::parity_t Serial::SerialImpl::getParity () const { + return parity_; + } + + bool Serial::SerialImpl::setStopbits (serial::stopbits_t stopbits) { + + DCB dcb; + if (!getDcb(&dcb)){ + return false; + } + stopbits_ = stopbits; + set_stopbits(&dcb, stopbits); + + return setDcb(&dcb); + } + + serial::stopbits_t Serial::SerialImpl::getStopbits () const { + return stopbits_; + } + + bool Serial::SerialImpl::setFlowcontrol (serial::flowcontrol_t flowcontrol) { + + DCB dcb; + if (!getDcb(&dcb)){ + return false; + } + flowcontrol_ = flowcontrol; + set_flowcontrol(&dcb, flowcontrol); + + return setDcb(&dcb); + } + + serial::flowcontrol_t Serial::SerialImpl::getFlowcontrol () const { + return flowcontrol_; + } + + void Serial::SerialImpl::flush () { + if (is_open_ == false) { + return; + } + //FlushFileBuffers (fd_); + PurgeComm(fd_, PURGE_TXABORT | PURGE_RXABORT | PURGE_TXCLEAR | PURGE_RXCLEAR ); + } + + void Serial::SerialImpl::flushInput () { + return; + } + + void Serial::SerialImpl::flushOutput () { + return; + } + + void Serial::SerialImpl::sendBreak (int duration) { + if (!setBreak(true)){ + return ; + } + + ::Sleep(duration); + + if (!setBreak(false)){ + return ; + } + + } + + bool Serial::SerialImpl::setBreak (bool level) { + if (is_open_ == false) { + return false; + } + if (level) { + //EscapeCommFunction (fd_, SETBREAK); + //::SetCommBreak(fd_); + if(::SetCommBreak(fd_) == FALSE){ + return false; + } + } else { + //::ClearCommBreak(fd_); + //EscapeCommFunction (fd_, CLRBREAK); + if(::ClearCommBreak(fd_) == FALSE){ + return false; + } + } + return true; + } + + bool Serial::SerialImpl::setRTS (bool level) { + if (is_open_ == false) { + return false; + } + if (level) { + //EscapeCommFunction (fd_, SETRTS); + if(EscapeCommFunction (fd_, SETRTS) == FALSE){ + return false; + } + } else { + //EscapeCommFunction (fd_, CLRRTS); + if(EscapeCommFunction (fd_, CLRRTS) == FALSE){ + return false; + } + } + return true; + } + + bool Serial::SerialImpl::setDTR (bool level) { + if (is_open_ == false) { + return false; + } + if (level) { + //EscapeCommFunction (fd_, SETDTR); + if(EscapeCommFunction (fd_, SETDTR) == FALSE){ + return false; + } + } else { + //EscapeCommFunction (fd_, CLRDTR); + if(EscapeCommFunction (fd_, CLRDTR) == FALSE){ + return false; + } + } + return true; + } + + bool Serial::SerialImpl::waitForChange () { + if (is_open_ == false) { + return false; + } + DWORD dwCommEvent; + + if (!SetCommMask(fd_, EV_CTS | EV_DSR | EV_RING | EV_RLSD)) { + // Error setting communications mask + return false; + } + + if (!WaitCommEvent(fd_, &dwCommEvent, NULL)) { + // An error occurred waiting for the event. + return false; + } else { + // Event has occurred. + return true; + } + } + + bool Serial::SerialImpl::getCTS () { + if (is_open_ == false) { + return false; + } + DWORD dwModemStatus; + if (!GetCommModemStatus(fd_, &dwModemStatus)) { + return false; + } + + return (MS_CTS_ON & dwModemStatus) != 0; + } + + bool Serial::SerialImpl::getDSR () { + if (is_open_ == false) { + return false; + } + DWORD dwModemStatus; + if (!GetCommModemStatus(fd_, &dwModemStatus)) { + return false; + } + + return (MS_DSR_ON & dwModemStatus) != 0; + } + + bool Serial::SerialImpl::getRI() { + if (is_open_ == false) { + return false; + } + DWORD dwModemStatus; + if (!GetCommModemStatus(fd_, &dwModemStatus)) { + return false; + } + + return (MS_RING_ON & dwModemStatus) != 0; + } + + bool Serial::SerialImpl::getCD() + { + if (is_open_ == false) { + return false; + } + DWORD dwModemStatus; + if (!GetCommModemStatus(fd_, &dwModemStatus)) { + // Error in GetCommModemStatus; + return false; + } + + return (MS_RLSD_ON & dwModemStatus) != 0; + } + + int Serial::SerialImpl::readLock() { + if (WaitForSingleObject(read_mutex, INFINITE) != WAIT_OBJECT_0) { + return 1; + } + return 0; + } + + int Serial::SerialImpl::readUnlock() { + if (!ReleaseMutex(read_mutex)) { + return 1; + } + return 0; + } + + int Serial::SerialImpl::writeLock() { + if (WaitForSingleObject(write_mutex, INFINITE) != WAIT_OBJECT_0) { + return 1; + } + return 0; + } + + int Serial::SerialImpl::writeUnlock() { + if (!ReleaseMutex(write_mutex)) { + return 1; + } + return 0; + } +} +#endif // #if defined(_WIN32) + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/windows/win_serial.h b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/windows/win_serial.h new file mode 100644 index 0000000..e2a4706 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/windows/win_serial.h @@ -0,0 +1,140 @@ +#if defined(_WIN32) + +#ifndef SERIAL_IMPL_WINDOWS_H +#define SERIAL_IMPL_WINDOWS_H + +#include "serial.h" +#include "time.h" +#include "windows.h" + +namespace serial { + + using std::string; + using std::wstring; + using std::invalid_argument; + + + class serial::Serial::SerialImpl { + public: + SerialImpl (const string &port, + unsigned long baudrate, + bytesize_t bytesize, + parity_t parity, + stopbits_t stopbits, + flowcontrol_t flowcontrol); + + virtual ~SerialImpl (); + + bool open (); + + void close (); + + bool isOpen () const; + + size_t available (); + + bool waitReadable (uint32_t timeout); + + void waitByteTimes (size_t count); + + size_t waitfordata(size_t data_count, uint32_t timeout, size_t * returned_size); + + size_t read (uint8_t *buf, size_t size = 1); + + size_t write (const uint8_t *data, size_t length); + + void flush (); + + void flushInput (); + + void flushOutput (); + + void sendBreak (int duration); + + bool setBreak (bool level); + + bool setRTS (bool level); + + bool setDTR (bool level); + + bool waitForChange (); + + bool getCTS (); + + bool getDSR (); + + bool getRI (); + + bool getCD (); + + void setPort (const string &port); + + string getPort () const; + + void setTimeout (Timeout &timeout); + + Timeout getTimeout () const; + + bool setBaudrate (unsigned long baudrate); + + unsigned long getBaudrate () const; + + bool setBytesize (bytesize_t bytesize); + + bytesize_t getBytesize () const; + + bool setParity (parity_t parity); + + parity_t getParity () const; + + bool setStopbits (stopbits_t stopbits); + + stopbits_t getStopbits () const; + + bool setFlowcontrol (flowcontrol_t flowcontrol); + + flowcontrol_t getFlowcontrol () const; + + + bool setDcb(DCB *dcb); + + + bool getDcb(DCB *dcb); + + int readLock (); + + int readUnlock (); + + int writeLock (); + + int writeUnlock (); + + protected: + bool reconfigurePort (); + + private: + wstring port_; // Path to the file descriptor + HANDLE fd_; + OVERLAPPED _wait_o; + + bool is_open_; + + Timeout timeout_; // Timeout for read operations + unsigned long baudrate_; // Baudrate + + parity_t parity_; // Parity + bytesize_t bytesize_; // Size of the bytes + stopbits_t stopbits_; // Stop Bits + flowcontrol_t flowcontrol_; // Flow Control + + // Mutex used to lock the read functions + HANDLE read_mutex; + // Mutex used to lock the write functions + HANDLE write_mutex; + }; + +} + +#endif // SERIAL_IMPL_WINDOWS_H + +#endif // if defined(_WIN32) diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/windows/win_timer.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/windows/win_timer.cpp new file mode 100644 index 0000000..5a38e9a --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/windows/win_timer.cpp @@ -0,0 +1,27 @@ +#if defined(_WIN32) +#include "win_timer.h" +#include +#pragma comment(lib, "Winmm.lib") + +namespace impl{ + + static LARGE_INTEGER _current_freq; + + void HPtimer_reset() { + BOOL ans=QueryPerformanceFrequency(&_current_freq); + _current_freq.QuadPart/=1000; + } + + uint32_t getHDTimer() { + LARGE_INTEGER current; + QueryPerformanceCounter(¤t); + + return (uint32_t)(current.QuadPart/_current_freq.QuadPart); + } + + BEGIN_STATIC_CODE(timer_cailb) { + HPtimer_reset(); + }END_STATIC_CODE(timer_cailb) + +} +#endif \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/windows/win_timer.h b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/windows/win_timer.h new file mode 100644 index 0000000..759a8c1 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/impl/windows/win_timer.h @@ -0,0 +1,22 @@ +#pragma once +#include +#include "v8stdint.h" + +#define BEGIN_STATIC_CODE( _blockname_ ) \ + static class _static_code_##_blockname_ { \ + public: \ + _static_code_##_blockname_ () + + +#define END_STATIC_CODE( _blockname_ ) \ + } _instance_##_blockname_; + +#define delay(x) ::Sleep(x) + +namespace impl{ + void HPtimer_reset(); + uint32_t getHDTimer(); +} + +#define getms() impl::getHDTimer() + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/serial.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/serial.cpp new file mode 100644 index 0000000..7b00e55 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/serial.cpp @@ -0,0 +1,324 @@ +#include + +#if !defined(_WIN32) && !defined(__OpenBSD__) && !defined(__FreeBSD__) +# include +#endif + +#if defined (__MINGW32__) +# define alloca __builtin_alloca +#endif + +#include "serial.h" +#include "common.h" + +namespace serial { + + using std::min; + using std::numeric_limits; + using std::vector; + using std::size_t; + using std::string; + + using serial::Serial; + using serial::bytesize_t; + using serial::parity_t; + using serial::stopbits_t; + using serial::flowcontrol_t; + + class Serial::ScopedReadLock { + public: + ScopedReadLock(SerialImpl *pimpl) : pimpl_(pimpl) { + this->pimpl_->readLock(); + } + ~ScopedReadLock() { + this->pimpl_->readUnlock(); + } + private: + // Disable copy constructors + ScopedReadLock(const ScopedReadLock&); + const ScopedReadLock& operator=(ScopedReadLock); + + SerialImpl *pimpl_; + }; + + class Serial::ScopedWriteLock { + public: + ScopedWriteLock(SerialImpl *pimpl) : pimpl_(pimpl) { + this->pimpl_->writeLock(); + } + ~ScopedWriteLock() { + this->pimpl_->writeUnlock(); + } + private: + // Disable copy constructors + ScopedWriteLock(const ScopedWriteLock&); + const ScopedWriteLock& operator=(ScopedWriteLock); + SerialImpl *pimpl_; + }; + + Serial::Serial (const string &port, uint32_t baudrate, serial::Timeout timeout, + bytesize_t bytesize, parity_t parity, stopbits_t stopbits, + flowcontrol_t flowcontrol) + : pimpl_(new SerialImpl (port, baudrate, bytesize, parity, + stopbits, flowcontrol)) { + pimpl_->setTimeout(timeout); + } + + Serial::~Serial () { + delete pimpl_; + } + + bool Serial::open () { + return pimpl_->open (); + } + + void Serial::close () { + pimpl_->close (); + } + + bool Serial::isOpen () const { + return pimpl_->isOpen (); + } + + size_t Serial::available () { + return pimpl_->available (); + } + + bool Serial::waitReadable () { + serial::Timeout timeout(pimpl_->getTimeout ()); + return pimpl_->waitReadable(timeout.read_timeout_constant); + } + + void Serial::waitByteTimes (size_t count) { + pimpl_->waitByteTimes(count); + } + + int Serial::waitfordata(size_t data_count, uint32_t timeout, size_t * returned_size) { + return pimpl_->waitfordata(data_count, timeout, returned_size); + } + + size_t Serial::read_ (uint8_t *buffer, size_t size) { + return this->pimpl_->read (buffer, size); + } + + size_t Serial::read (uint8_t *buffer, size_t size) { + ScopedReadLock lock(this->pimpl_); + return this->pimpl_->read (buffer, size); + } + + size_t Serial::read (std::vector &buffer, size_t size) { + ScopedReadLock lock(this->pimpl_); + uint8_t *buffer_ = new uint8_t[size]; + size_t bytes_read = this->pimpl_->read (buffer_, size); + buffer.insert (buffer.end (), buffer_, buffer_+bytes_read); + delete[] buffer_; + return bytes_read; + } + + size_t Serial::read (std::string &buffer, size_t size) { + ScopedReadLock lock(this->pimpl_); + uint8_t *buffer_ = new uint8_t[size]; + size_t bytes_read = this->pimpl_->read (buffer_, size); + buffer.append (reinterpret_cast(buffer_), bytes_read); + delete[] buffer_; + return bytes_read; + } + + string Serial::read (size_t size) { + std::string buffer; + this->read (buffer, size); + return buffer; + } + + size_t Serial::readline (string &buffer, size_t size, string eol) { + ScopedReadLock lock(this->pimpl_); + size_t eol_len = eol.length (); + uint8_t *buffer_ = static_cast (alloca (size * sizeof (uint8_t))); + size_t read_so_far = 0; + while (true) { + size_t bytes_read = this->read_ (buffer_ + read_so_far, 1); + read_so_far += bytes_read; + if (bytes_read == 0) { + break; // Timeout occured on reading 1 byte + } + if (string (reinterpret_cast (buffer_ + read_so_far - eol_len), eol_len) == eol) { + break; // EOL found + } + if (read_so_far == size) { + break; // Reached the maximum read length + } + } + buffer.append(reinterpret_cast (buffer_), read_so_far); + return read_so_far; + } + + string Serial::readline (size_t size, string eol) { + std::string buffer; + this->readline (buffer, size, eol); + return buffer; + } + + vector Serial::readlines (size_t size, string eol) { + ScopedReadLock lock(this->pimpl_); + std::vector lines; + size_t eol_len = eol.length (); + uint8_t *buffer_ = static_cast (alloca (size * sizeof (uint8_t))); + size_t read_so_far = 0; + size_t start_of_line = 0; + while (read_so_far < size) { + size_t bytes_read = this->read_ (buffer_+read_so_far, 1); + read_so_far += bytes_read; + if (bytes_read == 0) { + if (start_of_line != read_so_far) { + lines.push_back ( string (reinterpret_cast (buffer_ + start_of_line), read_so_far - start_of_line)); + } + break; // Timeout occured on reading 1 byte + } + if (string (reinterpret_cast + (buffer_ + read_so_far - eol_len), eol_len) == eol) { + // EOL found + lines.push_back( string(reinterpret_cast (buffer_ + start_of_line), read_so_far - start_of_line)); + start_of_line = read_so_far; + } + if (read_so_far == size) { + if (start_of_line != read_so_far) { + lines.push_back( string(reinterpret_cast (buffer_ + start_of_line), read_so_far - start_of_line)); + } + break; // Reached the maximum read length + } + } + return lines; + } + + size_t Serial::write (const string &data) { + ScopedWriteLock lock(this->pimpl_); + return this->write_ (reinterpret_cast(data.c_str()), data.length()); + } + + size_t Serial::write (const std::vector &data) { + ScopedWriteLock lock(this->pimpl_); + return this->write_ (&data[0], data.size()); + } + + size_t Serial::write (const uint8_t *data, size_t size) { + ScopedWriteLock lock(this->pimpl_); + return this->write_(data, size); + } + + size_t Serial::write_ (const uint8_t *data, size_t length) { + return pimpl_->write (data, length); + } + + void Serial::setPort (const string &port) { + ScopedReadLock rlock(this->pimpl_); + ScopedWriteLock wlock(this->pimpl_); + bool was_open = pimpl_->isOpen (); + if (was_open) close(); + pimpl_->setPort (port); + if (was_open) open (); + } + + string Serial::getPort () const { + return pimpl_->getPort (); + } + + void Serial::setTimeout (serial::Timeout &timeout) { + pimpl_->setTimeout (timeout); + } + + serial::Timeout Serial::getTimeout () const { + return pimpl_->getTimeout (); + } + + bool Serial::setBaudrate (uint32_t baudrate) { + return pimpl_->setBaudrate (baudrate); + } + + uint32_t Serial::getBaudrate () const { + return uint32_t(pimpl_->getBaudrate ()); + } + + bool Serial::setBytesize (bytesize_t bytesize){ + return pimpl_->setBytesize (bytesize); + } + + bytesize_t Serial::getBytesize () const{ + return pimpl_->getBytesize (); + } + + bool Serial::setParity (parity_t parity){ + return pimpl_->setParity (parity); + } + + parity_t Serial::getParity () const{ + return pimpl_->getParity (); + } + + bool Serial::setStopbits (stopbits_t stopbits){ + return pimpl_->setStopbits (stopbits); + } + + stopbits_t Serial::getStopbits () const{ + return pimpl_->getStopbits (); + } + + bool Serial::setFlowcontrol (flowcontrol_t flowcontrol){ + return pimpl_->setFlowcontrol (flowcontrol); + } + + flowcontrol_t Serial::getFlowcontrol () const{ + return pimpl_->getFlowcontrol (); + } + + void Serial::flush (){ + ScopedReadLock rlock(this->pimpl_); + ScopedWriteLock wlock(this->pimpl_); + pimpl_->flush (); + } + + void Serial::flushInput (){ + ScopedReadLock lock(this->pimpl_); + pimpl_->flushInput (); + } + + void Serial::flushOutput (){ + ScopedWriteLock lock(this->pimpl_); + pimpl_->flushOutput (); + } + + void Serial::sendBreak (int duration){ + pimpl_->sendBreak (duration); + } + + bool Serial::setBreak (bool level){ + return pimpl_->setBreak (level); + } + + bool Serial::setRTS (bool level){ + return pimpl_->setRTS (level); + } + + bool Serial::setDTR (bool level){ + return pimpl_->setDTR (level); + } + + bool Serial::waitForChange(){ + return pimpl_->waitForChange(); + } + + bool Serial::getCTS (){ + return pimpl_->getCTS (); + } + + bool Serial::getDSR (){ + return pimpl_->getDSR (); + } + + bool Serial::getRI (){ + return pimpl_->getRI (); + } + + bool Serial::getCD (){ + return pimpl_->getCD (); + } +} \ No newline at end of file diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/ydlidar_driver.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/ydlidar_driver.cpp new file mode 100644 index 0000000..d49c093 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/sdk/src/ydlidar_driver.cpp @@ -0,0 +1,1153 @@ +/* +* YDLIDAR SYSTEM +* YDLIDAR DRIVER +* +* Copyright 2015 - 2018 EAI TEAM +* http://www.eaibot.com +* +*/ +#include "common.h" +#include "ydlidar_driver.h" +using namespace impl; + +namespace ydlidar{ + + YDlidarDriver* YDlidarDriver::_impl = NULL; + int YDlidarDriver::PackageSampleBytes = 2; + + YDlidarDriver::YDlidarDriver(): + _serial(0) { + isConnected = false; + isScanning = false; + m_intensities = false; + _baudrate = 115200; + isSupportMotorCtrl=true; + _sampling_rate=2; + } + + YDlidarDriver::~YDlidarDriver(){ + { + ScopedLocker l(_scanning_lock); + isScanning = false; + } + + _thread.join(); + + if(_serial){ + if(_serial->isOpen()){ + _serial->close(); + } + } + if(_serial){ + delete _serial; + _serial = NULL; + } + } + + result_t YDlidarDriver::connect(const char * port_path, uint32_t baudrate) { + _baudrate = baudrate; + if(!_serial){ + _serial = new serial::Serial(port_path, _baudrate, serial::Timeout::simpleTimeout(DEFAULT_TIMEOUT)); + } + + { + ScopedLocker l(_lock); + if(!_serial->open()){ + return RESULT_FAIL; + } + } + + isConnected = true; + + clearDTR(); + + return RESULT_OK; + } + + + void YDlidarDriver::setDTR() { + if (!isConnected){ + return ; + } + + if(_serial){ + _serial->setDTR(1); + } + + } + + void YDlidarDriver::clearDTR() { + if (!isConnected){ + return ; + } + + if(_serial){ + _serial->setDTR(0); + } + } + + result_t YDlidarDriver::startMotor() { + ScopedLocker l(_lock); + if(isSupportMotorCtrl){ + setDTR(); + delay(500); + }else{ + clearDTR(); + delay(500); + } + return RESULT_OK; + } + + result_t YDlidarDriver::stopMotor() { + ScopedLocker l(_lock); + if(isSupportMotorCtrl){ + clearDTR(); + delay(500); + }else{ + setDTR(); + delay(500); + } + return RESULT_OK; + } + + void YDlidarDriver::disconnect() { + if (!isConnected){ + return ; + } + stop(); + + if(_serial){ + if(_serial->isOpen()){ + _serial->close(); + } + } + isConnected = false; + } + + + void YDlidarDriver::disableDataGrabbing() { + { + ScopedLocker l(_scanning_lock); + isScanning = false; + } + _thread.join(); + } + + + result_t YDlidarDriver::sendCommand(uint8_t cmd, const void * payload, size_t payloadsize) { + uint8_t pkt_header[10]; + cmd_packet * header = reinterpret_cast(pkt_header); + uint8_t checksum = 0; + + if (!isConnected) { + return RESULT_FAIL; + } + if (payloadsize && payload) { + cmd |= LIDAR_CMDFLAG_HAS_PAYLOAD; + } + + header->syncByte = LIDAR_CMD_SYNC_BYTE; + header->cmd_flag = cmd; + sendData(pkt_header, 2) ; + + if (cmd & LIDAR_CMDFLAG_HAS_PAYLOAD) { + checksum ^= LIDAR_CMD_SYNC_BYTE; + checksum ^= cmd; + checksum ^= (payloadsize & 0xFF); + + for (size_t pos = 0; pos < payloadsize; ++pos) { + checksum ^= ((uint8_t *)payload)[pos]; + } + + uint8_t sizebyte = payloadsize; + sendData(&sizebyte, 1); + + sendData((const uint8_t *)payload, sizebyte); + + sendData(&checksum, 1); + } + return RESULT_OK; + } + + result_t YDlidarDriver::sendData(const uint8_t * data, size_t size) { + if (!isConnected) { + return RESULT_FAIL; + } + + if (data == NULL || size ==0) { + return RESULT_FAIL; + } + return _serial->write(data, size); + } + + result_t YDlidarDriver::getData(uint8_t * data, size_t size) { + if (!isConnected) { + return RESULT_FAIL; + } + result_t ans = _serial->read(data, size); + return ans; + } + + result_t YDlidarDriver::waitResponseHeader(lidar_ans_header * header, uint32_t timeout) { + int recvPos = 0; + uint32_t startTs = getms(); + uint8_t recvBuffer[sizeof(lidar_ans_header)]; + uint8_t *headerBuffer = reinterpret_cast(header); + uint32_t waitTime; + + while ((waitTime=getms() - startTs) <= timeout) { + size_t remainSize = sizeof(lidar_ans_header) - recvPos; + size_t recvSize; + + result_t ans = waitForData(remainSize, timeout - waitTime, &recvSize); + if (ans != RESULT_OK){ + return ans; + } + + if(recvSize > remainSize) recvSize = remainSize; + + ans = getData(recvBuffer, recvSize); + if (ans == RESULT_FAIL){ + return RESULT_FAIL; + } + + for (size_t pos = 0; pos < recvSize; ++pos) { + uint8_t currentByte = recvBuffer[pos]; + switch (recvPos) { + case 0: + if (currentByte != LIDAR_ANS_SYNC_BYTE1) { + continue; + } + break; + case 1: + if (currentByte != LIDAR_ANS_SYNC_BYTE2) { + recvPos = 0; + continue; + } + break; + } + headerBuffer[recvPos++] = currentByte; + + if (recvPos == sizeof(lidar_ans_header)) { + return RESULT_OK; + } + } + } + return RESULT_FAIL; + } + + result_t YDlidarDriver::waitForData(size_t data_count, uint32_t timeout, size_t * returned_size) { + size_t length = 0; + if (returned_size==NULL) { + returned_size=(size_t *)&length; + } + return _serial->waitfordata(data_count, timeout, returned_size); + } + + result_t YDlidarDriver::getHealth(device_health & health, uint32_t timeout) { + result_t ans; + if (!isConnected) { + return RESULT_FAIL; + } + + disableDataGrabbing(); + { + ScopedLocker l(_lock); + if ((ans = sendCommand(LIDAR_CMD_GET_DEVICE_HEALTH)) != RESULT_OK) { + return ans; + } + lidar_ans_header response_header; + if ((ans = waitResponseHeader(&response_header, timeout)) != RESULT_OK) { + return ans; + } + + if (response_header.type != LIDAR_ANS_TYPE_DEVHEALTH) { + return RESULT_FAIL; + } + + if (response_header.size < sizeof(device_health)) { + return RESULT_FAIL; + } + + if (waitForData(response_header.size, timeout) != RESULT_OK) { + return RESULT_FAIL; + } + + getData(reinterpret_cast(&health), sizeof(health)); + } + return RESULT_OK; + } + + + result_t YDlidarDriver::getDeviceInfo(device_info & info, uint32_t timeout) { + result_t ans; + if (!isConnected) { + return RESULT_FAIL; + } + + disableDataGrabbing(); + { + ScopedLocker l(_lock); + if ((ans = sendCommand(LIDAR_CMD_GET_DEVICE_INFO)) != RESULT_OK) { + return ans; + } + + lidar_ans_header response_header; + if ((ans = waitResponseHeader(&response_header, timeout)) != RESULT_OK) { + return ans; + } + + if (response_header.type != LIDAR_ANS_TYPE_DEVINFO) { + return RESULT_FAIL; + } + + if (response_header.size < sizeof(lidar_ans_header)) { + return RESULT_FAIL; + } + + if (waitForData(response_header.size, timeout) != RESULT_OK) { + return RESULT_FAIL; + } + getData(reinterpret_cast(&info), sizeof(info)); + } + + return RESULT_OK; + } + + + void YDlidarDriver::setIntensities(const bool isintensities){ + m_intensities = isintensities; + if(m_intensities){ + PackageSampleBytes = 3; + }else{ + PackageSampleBytes = 2; + } + } + + result_t YDlidarDriver::startScan(bool force, uint32_t timeout ) { + result_t ans; + if (!isConnected) { + return RESULT_FAIL; + } + if (isScanning) { + return RESULT_OK; + } + + stop(); + startMotor(); + + { + ScopedLocker l(_lock); + if ((ans = sendCommand(force?LIDAR_CMD_FORCE_SCAN:LIDAR_CMD_SCAN)) != RESULT_OK) { + return ans; + } + + lidar_ans_header response_header; + if ((ans = waitResponseHeader(&response_header, timeout)) != RESULT_OK) { + return ans; + } + + if (response_header.type != LIDAR_ANS_TYPE_MEASUREMENT) { + return RESULT_FAIL; + } + + if (response_header.size < sizeof(node_info)) { + return RESULT_FAIL; + } + isScanning = true; + ans = this->createThread(); + return ans; + } + return RESULT_OK; + } + + result_t YDlidarDriver::createThread() { + _thread = CLASS_THREAD(YDlidarDriver, cacheScanData); + if (_thread.getHandle() == 0) { + return RESULT_FAIL; + } + + return RESULT_OK; + } + + result_t YDlidarDriver::stop() { + disableDataGrabbing(); + { + ScopedLocker l(_lock); + sendCommand(LIDAR_CMD_FORCE_STOP); + } + + stopMotor(); + + return RESULT_OK; + } + + int YDlidarDriver::cacheScanData() { + node_info local_buf[128]; + size_t count = 128; + node_info local_scan[MAX_SCAN_NODES]; + size_t scan_count = 0; + result_t ans; + memset(local_scan, 0, sizeof(local_scan)); + waitScanData(local_buf, count); + + while(isScanning) { + if ((ans=waitScanData(local_buf, count)) != RESULT_OK) { + if (ans != RESULT_TIMEOUT) { + fprintf(stderr, "exit scanning thread!!\n"); + { + ScopedLocker l(_scanning_lock); + isScanning = false; + } + return RESULT_FAIL; + + } + } + for (size_t pos = 0; pos < count; ++pos) { + if (local_buf[pos].sync_quality & LIDAR_RESP_MEASUREMENT_SYNCBIT) { + if ((local_scan[0].sync_quality & LIDAR_RESP_MEASUREMENT_SYNCBIT)) { + _lock.lock();//timeout lock, wait resource copy + memcpy(scan_node_buf, local_scan, scan_count*sizeof(node_info)); + scan_node_count = scan_count; + _dataEvent.set(); + _lock.unlock(); + } + scan_count = 0; + } + local_scan[scan_count++] = local_buf[pos]; + if (scan_count == _countof(local_scan)){ + scan_count-=1; + } + } + } + { + ScopedLocker l(_scanning_lock); + isScanning = false; + } + return RESULT_OK; + } + + result_t YDlidarDriver::waitPackage(node_info * node, uint32_t timeout) { + int recvPos = 0; + uint32_t startTs = getms(); + uint32_t size = (m_intensities)?sizeof(node_package):sizeof(node_packages); + uint8_t* recvBuffer = new uint8_t[size]; + + uint32_t waitTime; + + static node_package package; + static node_packages packages; + + static uint16_t package_Sample_Index = 0; + static uint16_t IntervalSampleAngle = 0; + static uint16_t IntervalSampleAngle_LastPackage = 0; + static uint16_t FirstSampleAngle = 0; + static uint16_t LastSampleAngle = 0; + static uint16_t CheckSun = 0; + + static uint16_t CheckSunCal = 0; + static uint16_t SampleNumlAndCTCal = 0; + static uint16_t LastSampleAngleCal = 0; + static bool CheckSunResult = true; + static uint16_t Valu8Tou16 = 0; + + uint8_t *packageBuffer = (m_intensities)?(uint8_t*)&package.package_Head:(uint8_t*)&packages.package_Head; + uint8_t package_Sample_Num = 0; + + int32_t AngleCorrectForDistance; + + int package_recvPos = 0; + + if(package_Sample_Index == 0) { + recvPos = 0; + while ((waitTime=getms() - startTs) <= timeout) { + size_t remainSize = PackagePaidBytes - recvPos; + size_t recvSize; + result_t ans = waitForData(remainSize, timeout-waitTime, &recvSize); + if (ans != RESULT_OK){ + delete[] recvBuffer; + return ans; + } + + if (recvSize > remainSize){ + recvSize = remainSize; + } + + getData(recvBuffer, recvSize); + + for (size_t pos = 0; pos < recvSize; ++pos) { + uint8_t currentByte = recvBuffer[pos]; + switch (recvPos) { + case 0: + if(currentByte==(PH&0xFF)){ + + }else{ + continue; + } + break; + case 1: + CheckSunCal = PH; + if(currentByte==(PH>>8)){ + + }else{ + recvPos = 0; + continue; + } + break; + case 2: + SampleNumlAndCTCal = currentByte; + if ((currentByte == CT_Normal) || (currentByte == CT_RingStart)){ + + } else { + recvPos = 0; + continue; + } + break; + case 3: + SampleNumlAndCTCal += (currentByte*0x100); + package_Sample_Num = currentByte; + break; + case 4: + if (currentByte & LIDAR_RESP_MEASUREMENT_CHECKBIT) { + FirstSampleAngle = currentByte; + } else { + recvPos = 0; + continue; + } + break; + case 5: + FirstSampleAngle += currentByte*0x100; + CheckSunCal ^= FirstSampleAngle; + FirstSampleAngle = FirstSampleAngle>>1; + break; + case 6: + if (currentByte & LIDAR_RESP_MEASUREMENT_CHECKBIT) { + LastSampleAngle = currentByte; + } else { + recvPos = 0; + continue; + } + break; + case 7: + LastSampleAngle = currentByte*0x100 + LastSampleAngle; + LastSampleAngleCal = LastSampleAngle; + LastSampleAngle = LastSampleAngle>>1; + if(package_Sample_Num == 1){ + IntervalSampleAngle = 0; + }else{ + if(LastSampleAngle < FirstSampleAngle){ + if((FirstSampleAngle > 270*64) && (LastSampleAngle < 90*64)){ + IntervalSampleAngle = (360*64 + LastSampleAngle - FirstSampleAngle)/(package_Sample_Num-1); + IntervalSampleAngle_LastPackage = IntervalSampleAngle; + } else{ + IntervalSampleAngle = IntervalSampleAngle_LastPackage; + } + } else{ + IntervalSampleAngle = (LastSampleAngle -FirstSampleAngle)/(package_Sample_Num-1); + IntervalSampleAngle_LastPackage = IntervalSampleAngle; + } + } + break; + case 8: + CheckSun = currentByte; + break; + case 9: + CheckSun += (currentByte*0x100); + break; + } + packageBuffer[recvPos++] = currentByte; + } + + if (recvPos == PackagePaidBytes ){ + package_recvPos = recvPos; + break; + } + } + + if(PackagePaidBytes == recvPos){ + startTs = getms(); + recvPos = 0; + while ((waitTime=getms() - startTs) <= timeout) { + size_t remainSize = package_Sample_Num*PackageSampleBytes - recvPos; + size_t recvSize; + result_t ans =waitForData(remainSize, timeout-waitTime, &recvSize); + if (ans != RESULT_OK){ + delete[] recvBuffer; + return ans; + } + + if (recvSize > remainSize){ + recvSize = remainSize; + } + + getData(recvBuffer, recvSize); + + for (size_t pos = 0; pos < recvSize; ++pos) { + if(m_intensities){ + if(recvPos%3 == 2){ + Valu8Tou16 += recvBuffer[pos]*0x100; + CheckSunCal ^= Valu8Tou16; + }else if(recvPos%3 == 1){ + Valu8Tou16 = recvBuffer[pos]; + }else{ + CheckSunCal ^= recvBuffer[pos]; + } + }else{ + if(recvPos%2 == 1){ + Valu8Tou16 += recvBuffer[pos]*0x100; + CheckSunCal ^= Valu8Tou16; + }else{ + Valu8Tou16 = recvBuffer[pos]; + } + } + + packageBuffer[package_recvPos+recvPos] = recvBuffer[pos]; + recvPos++; + } + + if(package_Sample_Num*PackageSampleBytes == recvPos){ + package_recvPos += recvPos; + break; + } + } + if(package_Sample_Num*PackageSampleBytes != recvPos){ + delete[] recvBuffer; + return RESULT_FAIL; + } + } else { + delete[] recvBuffer; + return RESULT_FAIL; + } + CheckSunCal ^= SampleNumlAndCTCal; + CheckSunCal ^= LastSampleAngleCal; + + if(CheckSunCal != CheckSun){ + CheckSunResult = false; + }else{ + CheckSunResult = true; + } + + } + uint8_t package_CT; + if(m_intensities){ + package_CT = package.package_CT; + }else{ + package_CT = packages.package_CT; + } + + if(package_CT == CT_Normal){ + (*node).sync_quality = Node_Default_Quality + Node_NotSync; + } else{ + (*node).sync_quality = Node_Default_Quality + Node_Sync; + } + + if(CheckSunResult == true){ + if(m_intensities){ + (*node).sync_quality = package.packageSample[package_Sample_Index].PakageSampleQuality; + (*node).distance_q2 = package.packageSample[package_Sample_Index].PakageSampleDistance; + }else{ + (*node).distance_q2 = packages.packageSampleDistance[package_Sample_Index]; + } + if((*node).distance_q2/4 != 0){ + AngleCorrectForDistance = (int32_t)(((atan(((21.8*(155.3 - ((*node).distance_q2/4)) )/155.3)/((*node).distance_q2/4)))*180.0/3.1415) * 64.0); + }else{ + AngleCorrectForDistance = 0; + } + if((FirstSampleAngle + IntervalSampleAngle*package_Sample_Index + AngleCorrectForDistance) < 0){ + (*node).angle_q6_checkbit = ((FirstSampleAngle + IntervalSampleAngle*package_Sample_Index + AngleCorrectForDistance + 360*64)<<1) + LIDAR_RESP_MEASUREMENT_CHECKBIT; + }else{ + if((FirstSampleAngle + IntervalSampleAngle*package_Sample_Index + AngleCorrectForDistance) > 360*64){ + (*node).angle_q6_checkbit = ((FirstSampleAngle + IntervalSampleAngle*package_Sample_Index + AngleCorrectForDistance - 360*64)<<1) + LIDAR_RESP_MEASUREMENT_CHECKBIT; + }else{ + (*node).angle_q6_checkbit = ((FirstSampleAngle + IntervalSampleAngle*package_Sample_Index + AngleCorrectForDistance)<<1) + LIDAR_RESP_MEASUREMENT_CHECKBIT; + } + } + }else{ + (*node).sync_quality = Node_Default_Quality + Node_NotSync; + (*node).angle_q6_checkbit = LIDAR_RESP_MEASUREMENT_CHECKBIT; + (*node).distance_q2 = 0; + } + + package_Sample_Index++; + uint8_t nowPackageNum; + if(m_intensities){ + nowPackageNum = package.nowPackageNum; + }else{ + nowPackageNum = packages.nowPackageNum; + } + if(package_Sample_Index >= nowPackageNum){ + package_Sample_Index = 0; + } + delete[] recvBuffer; + return RESULT_OK; + } + + result_t YDlidarDriver::waitScanData(node_info * nodebuffer, size_t & count, uint32_t timeout) { + if (!isConnected) { + count = 0; + return RESULT_FAIL; + } + + size_t recvNodeCount = 0; + uint32_t startTs = getms(); + uint32_t waitTime; + result_t ans; + + while ((waitTime = getms() - startTs) <= timeout && recvNodeCount < count) { + node_info node; + if ((ans = this->waitPackage(&node, timeout - waitTime)) != RESULT_OK) { + return ans; + } + nodebuffer[recvNodeCount++] = node; + + if (recvNodeCount == count) { + return RESULT_OK; + } + } + count = recvNodeCount; + return RESULT_FAIL; + } + + + result_t YDlidarDriver::grabScanData(node_info * nodebuffer, size_t & count, uint32_t timeout) { + switch (_dataEvent.wait(timeout)) { + case Event::EVENT_TIMEOUT: + count = 0; + return RESULT_TIMEOUT; + case Event::EVENT_OK: + { + if(scan_node_count == 0) { + return RESULT_FAIL; + } + size_t size_to_copy = min(count, scan_node_count); + ScopedLocker l(_lock); + memcpy(nodebuffer, scan_node_buf, size_to_copy*sizeof(node_info)); + count = size_to_copy; + scan_node_count = 0; + } + return RESULT_OK; + default: + count = 0; + return RESULT_FAIL; + } + + } + + void YDlidarDriver::simpleScanData(std::vector *scan_data , node_info *buffer, size_t count) { + scan_data->clear(); + for (int pos = 0; pos < (int)count; ++pos) { + scanDot dot; + if (!buffer[pos].distance_q2) continue; + dot.quality = (buffer[pos].sync_quality>>LIDAR_RESP_MEASUREMENT_QUALITY_SHIFT); + dot.angle = (buffer[pos].angle_q6_checkbit >> LIDAR_RESP_MEASUREMENT_ANGLE_SHIFT)/64.0f; + dot.dist = buffer[pos].distance_q2/4.0f; + scan_data->push_back(dot); + } + } + + result_t YDlidarDriver::ascendScanData(node_info * nodebuffer, size_t count) { + float inc_origin_angle = (float)360.0/count; + node_info *tmpbuffer = new node_info[count]; + int i = 0; + + for (i = 0; i < (int)count; i++) { + if(nodebuffer[i].distance_q2 == 0) { + continue; + } else { + while(i != 0) { + i--; + float expect_angle = (nodebuffer[i+1].angle_q6_checkbit >> LIDAR_RESP_MEASUREMENT_ANGLE_SHIFT)/64.0f - inc_origin_angle; + if (expect_angle < 0.0f) expect_angle = 0.0f; + uint16_t checkbit = nodebuffer[i].angle_q6_checkbit & LIDAR_RESP_MEASUREMENT_CHECKBIT; + nodebuffer[i].angle_q6_checkbit = (((uint16_t)(expect_angle * 64.0f)) << LIDAR_RESP_MEASUREMENT_ANGLE_SHIFT) + checkbit; + } + break; + } + } + + if (i == (int)count){ + return RESULT_FAIL; + } + + for (i = (int)count - 1; i >= 0; i--) { + if(nodebuffer[i].distance_q2 == 0) { + continue; + } else { + while(i != ((int)count - 1)) { + i++; + float expect_angle = (nodebuffer[i-1].angle_q6_checkbit >> LIDAR_RESP_MEASUREMENT_ANGLE_SHIFT)/64.0f + inc_origin_angle; + if (expect_angle > 360.0f) expect_angle -= 360.0f; + uint16_t checkbit = nodebuffer[i].angle_q6_checkbit & LIDAR_RESP_MEASUREMENT_CHECKBIT; + nodebuffer[i].angle_q6_checkbit = (((uint16_t)(expect_angle * 64.0f)) << LIDAR_RESP_MEASUREMENT_ANGLE_SHIFT) + checkbit; + } + break; + } + } + + float frontAngle = (nodebuffer[0].angle_q6_checkbit >> LIDAR_RESP_MEASUREMENT_ANGLE_SHIFT)/64.0f; + for (i = 1; i < (int)count; i++) { + if(nodebuffer[i].distance_q2 == 0) { + float expect_angle = frontAngle + i * inc_origin_angle; + if (expect_angle > 360.0f) expect_angle -= 360.0f; + uint16_t checkbit = nodebuffer[i].angle_q6_checkbit & LIDAR_RESP_MEASUREMENT_CHECKBIT; + nodebuffer[i].angle_q6_checkbit = (((uint16_t)(expect_angle * 64.0f)) << LIDAR_RESP_MEASUREMENT_ANGLE_SHIFT) + checkbit; + } + } + + size_t zero_pos = 0; + float pre_degree = (nodebuffer[0].angle_q6_checkbit >> LIDAR_RESP_MEASUREMENT_ANGLE_SHIFT)/64.0f; + + for (i = 1; i < (int)count ; ++i) { + float degree = (nodebuffer[i].angle_q6_checkbit >> LIDAR_RESP_MEASUREMENT_ANGLE_SHIFT)/64.0f; + if (zero_pos == 0 && (pre_degree - degree > 180)) { + zero_pos = i; + break; + } + pre_degree = degree; + } + + for (i = (int)zero_pos; i < (int)count; i++) { + tmpbuffer[i-zero_pos] = nodebuffer[i]; + } + for (i = 0; i < (int)zero_pos; i++) { + tmpbuffer[i+(int)count-zero_pos] = nodebuffer[i]; + } + + memcpy(nodebuffer, tmpbuffer, count*sizeof(node_info)); + delete[] tmpbuffer; + + return RESULT_OK; + } + + + result_t YDlidarDriver::reset(uint32_t timeout) { + UNUSED(timeout); + result_t ans; + if (!isConnected){ + return RESULT_FAIL; + } + ScopedLocker l(_lock); + if ((ans = sendCommand(LIDAR_CMD_RESET))!= RESULT_OK) { + return ans; + } + return RESULT_OK; + } + + result_t YDlidarDriver::getScanFrequency(scan_frequency & frequency, uint32_t timeout){ + result_t ans; + if (!isConnected) { + return RESULT_FAIL; + } + + disableDataGrabbing(); + { + ScopedLocker l(_lock); + if ((ans = sendCommand(LIDAR_CMD_GET_AIMSPEED)) != RESULT_OK) { + return ans; + } + + lidar_ans_header response_header; + if ((ans = waitResponseHeader(&response_header, timeout)) != RESULT_OK) { + return ans; + } + + if (response_header.type != LIDAR_ANS_TYPE_DEVINFO) { + return RESULT_FAIL; + } + + if (response_header.size != 4) { + return RESULT_FAIL; + } + + if (waitForData(response_header.size, timeout) != RESULT_OK) { + return RESULT_FAIL; + } + + getData(reinterpret_cast(&frequency), sizeof(frequency)); + } + return RESULT_OK; + } + + result_t YDlidarDriver::setScanFrequencyAdd(scan_frequency & frequency, uint32_t timeout){ + result_t ans; + if (!isConnected) { + return RESULT_FAIL; + } + + disableDataGrabbing(); + { + ScopedLocker l(_lock); + if ((ans = sendCommand(LIDAR_CMD_SET_AIMSPEED_ADD)) != RESULT_OK) { + return ans; + } + + lidar_ans_header response_header; + if ((ans = waitResponseHeader(&response_header, timeout)) != RESULT_OK) { + return ans; + } + + if (response_header.type != LIDAR_ANS_TYPE_DEVINFO) { + return RESULT_FAIL; + } + + if (response_header.size != 4) { + return RESULT_FAIL; + } + + if (waitForData(response_header.size, timeout) != RESULT_OK) { + return RESULT_FAIL; + } + + getData(reinterpret_cast(&frequency), sizeof(frequency)); + } + return RESULT_OK; + } + + result_t YDlidarDriver::setScanFrequencyDis(scan_frequency & frequency, uint32_t timeout){ + result_t ans; + if (!isConnected) { + return RESULT_FAIL; + } + + disableDataGrabbing(); + { + ScopedLocker l(_lock); + if ((ans = sendCommand(LIDAR_CMD_SET_AIMSPEED_DIS)) != RESULT_OK) { + return ans; + } + + lidar_ans_header response_header; + if ((ans = waitResponseHeader(&response_header, timeout)) != RESULT_OK) { + return ans; + } + + if (response_header.type != LIDAR_ANS_TYPE_DEVINFO) { + return RESULT_FAIL; + } + + if (response_header.size != 4) { + return RESULT_FAIL; + } + + if (waitForData(response_header.size, timeout) != RESULT_OK) { + return RESULT_FAIL; + } + + getData(reinterpret_cast(&frequency), sizeof(frequency)); + } + return RESULT_OK; + } + + result_t YDlidarDriver::setScanFrequencyAddMic(scan_frequency & frequency, uint32_t timeout){ + result_t ans; + if (!isConnected) { + return RESULT_FAIL; + } + + disableDataGrabbing(); + { + ScopedLocker l(_lock); + if ((ans = sendCommand(LIDAR_CMD_SET_AIMSPEED_ADDMIC)) != RESULT_OK) { + return ans; + } + + lidar_ans_header response_header; + if ((ans = waitResponseHeader(&response_header, timeout)) != RESULT_OK) { + return ans; + } + + if (response_header.type != LIDAR_ANS_TYPE_DEVINFO) { + return RESULT_FAIL; + } + + if (response_header.size != 4) { + return RESULT_FAIL; + } + + if (waitForData(response_header.size, timeout) != RESULT_OK) { + return RESULT_FAIL; + } + + getData(reinterpret_cast(&frequency), sizeof(frequency)); + } + return RESULT_OK; + } + + result_t YDlidarDriver::setScanFrequencyDisMic(scan_frequency & frequency, uint32_t timeout){ + result_t ans; + if (!isConnected) { + return RESULT_FAIL; + } + + disableDataGrabbing(); + { + ScopedLocker l(_lock); + if ((ans = sendCommand(LIDAR_CMD_SET_AIMSPEED_DISMIC)) != RESULT_OK) { + return ans; + } + + lidar_ans_header response_header; + if ((ans = waitResponseHeader(&response_header, timeout)) != RESULT_OK) { + return ans; + } + + if (response_header.type != LIDAR_ANS_TYPE_DEVINFO) { + return RESULT_FAIL; + } + + if (response_header.size != 4) { + return RESULT_FAIL; + } + + if (waitForData(response_header.size, timeout) != RESULT_OK) { + return RESULT_FAIL; + } + + getData(reinterpret_cast(&frequency), sizeof(frequency)); + } + return RESULT_OK; + } + + result_t YDlidarDriver::getSamplingRate(sampling_rate & rate, uint32_t timeout){ + result_t ans; + if (!isConnected) { + return RESULT_FAIL; + } + + disableDataGrabbing(); + { + ScopedLocker l(_lock); + if ((ans = sendCommand(LIDAR_CMD_GET_SAMPLING_RATE)) != RESULT_OK) { + return ans; + } + + lidar_ans_header response_header; + if ((ans = waitResponseHeader(&response_header, timeout)) != RESULT_OK) { + return ans; + } + + if (response_header.type != LIDAR_ANS_TYPE_DEVINFO) { + return RESULT_FAIL; + } + + if (response_header.size != 1) { + return RESULT_FAIL; + } + + if (waitForData(response_header.size, timeout) != RESULT_OK) { + return RESULT_FAIL; + } + + getData(reinterpret_cast(&rate), sizeof(rate)); + _sampling_rate=rate.rate; + } + return RESULT_OK; + } + + + result_t YDlidarDriver::setSamplingRate(sampling_rate & rate, uint32_t timeout){ + result_t ans; + if (!isConnected) { + return RESULT_FAIL; + } + disableDataGrabbing(); + { + ScopedLocker l(_lock); + if ((ans = sendCommand(LIDAR_CMD_SET_SAMPLING_RATE)) != RESULT_OK) { + return ans; + } + + lidar_ans_header response_header; + if ((ans = waitResponseHeader(&response_header, timeout)) != RESULT_OK) { + return ans; + } + + if (response_header.type != LIDAR_ANS_TYPE_DEVINFO) { + return RESULT_FAIL; + } + + if (response_header.size != 1) { + return RESULT_FAIL; + } + + if (waitForData(response_header.size, timeout) != RESULT_OK) { + return RESULT_FAIL; + } + getData(reinterpret_cast(&rate), sizeof(rate)); + _sampling_rate=rate.rate; + } + return RESULT_OK; + } + + const std::string YDlidarDriver::getSDKVersion(){ + return SDKVerision; + } + + result_t YDlidarDriver::setRotationPositive(scan_rotation & roation, uint32_t timeout){ + result_t ans; + if (!isConnected) { + return RESULT_FAIL; + } + disableDataGrabbing(); + { + ScopedLocker l(_lock); + if ((ans = sendCommand(LIDAR_CMD_RUN_POSITIVE)) != RESULT_OK) { + return ans; + } + + lidar_ans_header response_header; + if ((ans = waitResponseHeader(&response_header, timeout)) != RESULT_OK) { + return ans; + } + + if (response_header.type != LIDAR_ANS_TYPE_DEVINFO) { + return RESULT_FAIL; + } + + if (response_header.size != 1) { + return RESULT_FAIL; + } + + if (waitForData(response_header.size, timeout) != RESULT_OK) { + return RESULT_FAIL; + } + getData(reinterpret_cast(&roation), sizeof(roation)); + } + return RESULT_OK; + } + + result_t YDlidarDriver::setRotationInversion(scan_rotation & roation, uint32_t timeout){ + result_t ans; + if (!isConnected) { + return RESULT_FAIL; + } + disableDataGrabbing(); + { + ScopedLocker l(_lock); + if ((ans = sendCommand(LIDAR_CMD_RUN_INVERSION)) != RESULT_OK) { + return ans; + } + + lidar_ans_header response_header; + if ((ans = waitResponseHeader(&response_header, timeout)) != RESULT_OK) { + return ans; + } + + if (response_header.type != LIDAR_ANS_TYPE_DEVINFO) { + return RESULT_FAIL; + } + + if (response_header.size != 1) { + return RESULT_FAIL; + } + + if (waitForData(response_header.size, timeout) != RESULT_OK) { + return RESULT_FAIL; + } + getData(reinterpret_cast(&roation), sizeof(roation)); + } + return RESULT_OK; + } + + +} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/src/ydlidar_client.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/src/ydlidar_client.cpp new file mode 100644 index 0000000..f8e55a8 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/src/ydlidar_client.cpp @@ -0,0 +1,35 @@ +/* + * YDLIDAR SYSTEM + * YDLIDAR ROS Node Client + * + * Copyright 2015 - 2017 EAI TEAM + * http://www.eaibot.com + * + */ + +#include "ros/ros.h" +#include "sensor_msgs/LaserScan.h" + +#define RAD2DEG(x) ((x)*180./M_PI) + +void scanCallback(const sensor_msgs::LaserScan::ConstPtr& scan) +{ + int count = scan->scan_time / scan->time_increment; + printf("[YDLIDAR INFO]: I heard a laser scan %s[%d]:\n", scan->header.frame_id.c_str(), count); + printf("[YDLIDAR INFO]: angle_range : [%f, %f]\n", RAD2DEG(scan->angle_min), RAD2DEG(scan->angle_max)); + + for(int i = 0; i < count; i++) { + float degree = RAD2DEG(scan->angle_min + scan->angle_increment * i); + printf("[YDLIDAR INFO]: angle-distance : [%f, %f]", degree, scan->ranges[i]); + } +} + +int main(int argc, char **argv) +{ + ros::init(argc, argv, "ydlidar_client"); + ros::NodeHandle n; + ros::Subscriber sub = n.subscribe("/scan", 1000, scanCallback); + ros::spin(); + + return 0; +} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/src/ydlidar_node.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/src/ydlidar_node.cpp new file mode 100644 index 0000000..ff36b45 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/src/ydlidar_node.cpp @@ -0,0 +1,395 @@ +/* + * YDLIDAR SYSTEM + * YDLIDAR ROS Node Client + * + * Copyright 2015 - 2017 EAI TEAM + * http://www.eaibot.com + * + */ + +#include "ros/ros.h" +#include "sensor_msgs/LaserScan.h" +#include "ydlidar_driver.h" +#include +#include +#include +#include + +#define DELAY_SECONDS 26 +#define DEG2RAD(x) ((x)*M_PI/180.) + +using namespace ydlidar; + +static bool flag = true; +static int nodes_count = 720; +static float each_angle = 0.5; + +void publish_scan(ros::Publisher *pub, node_info *nodes, size_t node_count, ros::Time start, double scan_time, float angle_min, float angle_max, std::string frame_id, std::vector ignore_array, double min_range , double max_range) +{ + sensor_msgs::LaserScan scan_msg; + + int counts = node_count*((angle_max-angle_min)/360.0f); + int angle_start = 180+angle_min; + int node_start = node_count*(angle_start/360.0f); + + scan_msg.ranges.resize(counts); + scan_msg.intensities.resize(counts); + + float nodes_array[node_count]; + float quality_array[node_count]; + float range = 0.0; + float intensity = 0.0; + int index = 0; + for (size_t i = 0; i < node_count; i++) { + range = (float)nodes[i].distance_q2/4.0f/1000; + intensity = (float)(nodes[i].sync_quality >> 2); + + if(i> LIDAR_RESP_MEASUREMENT_ANGLE_SHIFT)/64.0f); + if(angle>180){ + angle=360-angle; + }else{ + angle=-angle; + } + for(uint16_t j = 0; j < ignore_array.size();j = j+2){ + if((ignore_array[j] < angle) && (angle <= ignore_array[j+1])){ + range = 0.0; + break; + } + } + } + + if(range > max_range){ + range = 0.0; + } + + if(range < min_range){ + range = 0.0; + } + + int pos = index - node_start ; + if(0<= pos && pos < counts){ + scan_msg.ranges[pos] = range; + scan_msg.intensities[pos] = intensity; + } + + } + + scan_msg.header.stamp = start; + scan_msg.header.frame_id = frame_id; + float radian_min = DEG2RAD(angle_min); + float radian_max = DEG2RAD(angle_max); + scan_msg.angle_min = radian_min; + scan_msg.angle_max = radian_max; + scan_msg.angle_increment = (scan_msg.angle_max - scan_msg.angle_min) / (double)counts; + scan_msg.scan_time = scan_time; + scan_msg.time_increment = scan_time / (double)counts; + scan_msg.range_min = min_range; + scan_msg.range_max = max_range; + + pub->publish(scan_msg); +} + + +std::vector split(const std::string &s, char delim) { + std::vector elems; + std::stringstream ss(s); + std::string number; + while(std::getline(ss, number, delim)) { + elems.push_back(atoi(number.c_str())); + } + return elems; +} + +bool getDeviceInfo(std::string port) +{ + if (!YDlidarDriver::singleton()){ + return false; + } + + device_info devinfo; + if (YDlidarDriver::singleton()->getDeviceInfo(devinfo) !=RESULT_OK){ + ROS_ERROR("YDLIDAR get DeviceInfo Error\n" ); + return false; + } + int _samp_rate=4; + std::string model; + float freq = 7.0f; + switch(devinfo.model){ + case 1: + model="F4"; + _samp_rate=4; + freq = 7.0; + break; + case 4: + model="S4"; + _samp_rate=4; + freq = 7.0; + break; + case 5: + model="G4"; + _samp_rate=9; + nodes_count = 1440; + each_angle = 0.25; + freq = 7.0; + break; + case 6: + model="X4"; + _samp_rate=5; + freq = 7.0; + break; + default: + model = "Unknown"; + } + + uint16_t maxv = (uint16_t)(devinfo.firmware_version>>8); + uint16_t midv = (uint16_t)(devinfo.firmware_version&0xff)/10; + uint16_t minv = (uint16_t)(devinfo.firmware_version&0xff)%10; + if(midv==0){ + midv = minv; + minv = 0; + } + + printf("[YDLIDAR INFO] Connection established in %s:\n" + "Firmware version: %u.%u.%u\n" + "Hardware version: %u\n" + "Model: %s\n" + "Serial: ", + port.c_str(), + maxv, + midv, + minv, + (uint16_t)devinfo.hardware_version, + model.c_str()); + + for (int i=0;i<16;i++){ + printf("%01X",devinfo.serialnum[i]&0xff); + } + printf("\n"); + + printf("[YDLIDAR INFO] Current Sampling Rate : %dK\n" , _samp_rate); + printf("[YDLIDAR INFO] Current Scan Frequency : %fHz\n" , freq); + + return true; + +} + + +bool getDeviceHealth() +{ + if (!YDlidarDriver::singleton()){ + return false; + } + + result_t op_result; + device_health healthinfo; + + op_result = YDlidarDriver::singleton()->getHealth(healthinfo); + if (op_result == RESULT_OK) { + printf("[YDLIDAR INFO] YDLIDAR running correctly! The health status: %s\n", healthinfo.status==0?"well":"bad"); + + if (healthinfo.status == 2) { + ROS_ERROR("Error, YDLIDAR internal error detected. Please reboot the device to retry."); + return false; + } else { + return true; + } + + } else { + ROS_ERROR("Error, cannot retrieve YDLIDAR health code: %x", op_result); + return false; + } + +} + + +static void Stop(int signo) +{ + flag = false; + signal(signo, SIG_DFL); + YDlidarDriver::singleton()->disconnect(); + printf("[YDLIDAR INFO] Now YDLIDAR is stopping .......\n"); + YDlidarDriver::done(); + exit(0); + +} + +int main(int argc, char * argv[]) { + ros::init(argc, argv, "ydlidar_node"); + + std::string port; + int baudrate; + std::string frame_id; + bool angle_fixed, intensities_; + double angle_max,angle_min; + result_t op_result; + std::string list; + std::vector ignore_array; + double max_range , min_range; + + ros::NodeHandle nh; + ros::Publisher scan_pub = nh.advertise("scan", 1000); + ros::NodeHandle nh_private("~"); + nh_private.param("port", port, "/dev/ydlidar"); + nh_private.param("baudrate", baudrate, 115200); + nh_private.param("frame_id", frame_id, "laser_frame"); + nh_private.param("angle_fixed", angle_fixed, "true"); + nh_private.param("intensities", intensities_, "false"); + nh_private.param("angle_max", angle_max , 180); + nh_private.param("angle_min", angle_min , -180); + nh_private.param("range_max", max_range , 16.0); + nh_private.param("range_min", min_range , 0.08); + nh_private.param("ignore_array",list,""); + ignore_array = split(list ,','); + + if(ignore_array.size()%2){ + ROS_ERROR_STREAM("ignore array is odd need be even"); + } + + for(uint16_t i =0 ; i < ignore_array.size();i++){ + if(ignore_array[i] < -180 && ignore_array[i] > 180){ + ROS_ERROR_STREAM("ignore array should be between -180 and 180"); + } + } + + YDlidarDriver::initDriver(); + if (!YDlidarDriver::singleton()) { + ROS_ERROR("YDLIDAR Create Driver fail, exit\n"); + return -2; + } + + signal(SIGINT, Stop); + signal(SIGTERM, Stop); + + printf("[YDLIDAR INFO] Current SDK Version: %s\n",YDlidarDriver::singleton()->getSDKVersion().c_str()); + + op_result = YDlidarDriver::singleton()->connect(port.c_str(), (uint32_t)baudrate); + if (op_result != RESULT_OK) { + int seconds=0; + while(seconds <= DELAY_SECONDS&&flag){ + sleep(2); + seconds = seconds + 2; + YDlidarDriver::singleton()->disconnect(); + op_result = YDlidarDriver::singleton()->connect(port.c_str(), (uint32_t)baudrate); + printf("[YDLIDAR INFO] Try to connect the port %s again after %d s .\n", port.c_str() , seconds); + if(op_result==RESULT_OK){ + break; + } + } + + if(seconds > DELAY_SECONDS){ + ROS_ERROR("YDLIDAR Cannot bind to the specified serial port %s" , port.c_str()); + YDlidarDriver::singleton()->disconnect(); + YDlidarDriver::done(); + return -1; + } + } + + printf("[YDLIDAR INFO] Connected to YDLIDAR on port %s at %d \n" , port.c_str(), baudrate); + if(!getDeviceHealth()||!getDeviceInfo(port)){ + YDlidarDriver::singleton()->disconnect(); + YDlidarDriver::done(); + return -1; + } + YDlidarDriver::singleton()->setIntensities(intensities_); + + result_t ans=YDlidarDriver::singleton()->startScan(); + if(ans != RESULT_OK){ + ans = YDlidarDriver::singleton()->startScan(); + if(ans != RESULT_OK){ + ROS_ERROR("start YDLIDAR is failed! Exit!! ......"); + YDlidarDriver::singleton()->disconnect(); + YDlidarDriver::done(); + return 0; + } + } + + printf("[YDLIDAR INFO] Now YDLIDAR is scanning ......\n"); + flag = false; + ros::Time start_scan_time; + ros::Time end_scan_time; + double scan_duration; + ros::Rate rate(30); + + node_info all_nodes[nodes_count]; + memset(all_nodes, 0, nodes_count*sizeof(node_info)); + + while (ros::ok()) { + try{ + node_info nodes[nodes_count]; + size_t count = _countof(nodes); + + start_scan_time = ros::Time::now(); + op_result = YDlidarDriver::singleton()->grabScanData(nodes, count); + end_scan_time = ros::Time::now(); + scan_duration = (end_scan_time - start_scan_time).toSec(); + + if (op_result == RESULT_OK) { + op_result = YDlidarDriver::singleton()->ascendScanData(nodes, count); + + if (op_result == RESULT_OK) { + if (angle_fixed) { + memset(all_nodes, 0, nodes_count*sizeof(node_info)); + + for(size_t i = 0; i < count; i++) { + if (nodes[i].distance_q2 != 0) { + float angle = (float)((nodes[i].angle_q6_checkbit >> LIDAR_RESP_MEASUREMENT_ANGLE_SHIFT)/64.0f); + int inter =(int)( angle / each_angle ); + float angle_pre = angle - inter * each_angle; + float angle_next = (inter+1) * each_angle - angle; + if(angle_pre < angle_next){ + if(inter < nodes_count){ + all_nodes[inter]=nodes[i]; + } + }else{ + if(inter < nodes_count-1){ + all_nodes[inter+1]=nodes[i]; + } + } + } + } + publish_scan(&scan_pub, all_nodes, nodes_count, start_scan_time, scan_duration, angle_min, angle_max, frame_id, ignore_array, min_range , max_range); + } else { + int start_node = 0, end_node = 0; + int i = 0; + while (nodes[i++].distance_q2 == 0&&i=0); + end_node = i+1; + + angle_min = (float)(nodes[start_node].angle_q6_checkbit >> LIDAR_RESP_MEASUREMENT_ANGLE_SHIFT)/64.0f; + angle_max = (float)(nodes[end_node].angle_q6_checkbit >> LIDAR_RESP_MEASUREMENT_ANGLE_SHIFT)/64.0f; + + publish_scan(&scan_pub, &nodes[start_node], end_node-start_node +1, start_scan_time, scan_duration, angle_min, angle_max, frame_id, ignore_array, min_range , max_range); + } + } + } + rate.sleep(); + ros::spinOnce(); + }catch(std::exception &e){// + ROS_ERROR_STREAM("Unhandled Exception: " << e.what() ); + YDlidarDriver::singleton()->disconnect(); + printf("[YDLIDAR INFO] Now YDLIDAR is stopping .......\n"); + YDlidarDriver::done(); + return 0; + }catch(...){//anthor exception + ROS_ERROR("Unhandled Exception:Unknown "); + YDlidarDriver::singleton()->disconnect(); + printf("[YDLIDAR INFO] Now YDLIDAR is stopping .......\n"); + YDlidarDriver::done(); + return 0; + } + } + + YDlidarDriver::singleton()->disconnect(); + printf("[YDLIDAR INFO] Now YDLIDAR is stopping .......\n"); + YDlidarDriver::done(); + return 0; +} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/startup/initenv.sh b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/startup/initenv.sh new file mode 100644 index 0000000..9b5c1d0 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/startup/initenv.sh @@ -0,0 +1,11 @@ +#!/bin/bash +echo 'KERNEL=="ttyUSB*", ATTRS{idVendor}=="10c4", ATTRS{idProduct}=="ea60", MODE:="0666", GROUP:="dialout", SYMLINK+="ydlidar"' >/etc/udev/rules.d/ydlidar.rules + +echo 'KERNEL=="ttyACM*", ATTRS{idVendor}=="0483", ATTRS{idProduct}=="5740", MODE:="0666", GROUP:="dialout", SYMLINK+="ydlidar"' >/etc/udev/rules.d/ydlidar-V2.rules + +echo 'KERNEL=="ttyUSB*", ATTRS{idVendor}=="067b", ATTRS{idProduct}=="2303", MODE:="0666", GROUP:="dialout", SYMLINK+="ydlidar"' >/etc/udev/rules.d/ydlidar-2303.rules + +service udev reload +sleep 2 +service udev restart + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/test/CMakeLists.txt b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/test/CMakeLists.txt new file mode 100644 index 0000000..c987e6b --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/test/CMakeLists.txt @@ -0,0 +1,42 @@ +cmake_minimum_required(VERSION 2.8) +project(laser_test) + +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") + +ADD_DEFINITIONS(-std=c++11) + + +set(SDK_PATH "../sdk/") + +IF (WIN32) +FILE(GLOB SDK_SRC + "${SDK_PATH}/src/impl/windows/*.cpp" + "${SDK_PATH}/src/*.cpp" +) + +ELSE() + +FILE(GLOB SDK_SRC + "${SDK_PATH}/src/impl/unix/*.cpp" + "${SDK_PATH}/src/*.cpp" +) + +ENDIF() + +include_directories( + ${catkin_INCLUDE_DIRS} + ${SDK_PATH}//include + ${SDK_PATH}/src +) + +set(MODULE_FILES + laser_test.h + laser_test.cpp + ) + +add_executable(laser_test main.cpp ${MODULE_FILES} ${SDK_SRC}) + +IF (WIN32) +ELSE() +target_link_libraries(laser_test rt pthread) +ENDIF() diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/test/laser_test.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/test/laser_test.cpp new file mode 100644 index 0000000..b238b41 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/test/laser_test.cpp @@ -0,0 +1,343 @@ +// +// Created by lhx on 15-12-23. +// + +#include "laser_test.h" + +using namespace serial; +using namespace ydlidar; + +Lasertest::DEVICE_STATE Lasertest::device_state_ = CLOSED; + +Lasertest::Lasertest() + :publish_freq_(40), + scan_no_(0) { + port_ = "/dev/ttyACM0"; + baudrate_ = 115200; + angle_min_ = -180; + angle_max_ = 180; + intensities_ = false; + +} + +Lasertest::~Lasertest() { +} + +void Lasertest::setPort(std::string port) +{ + port_ = port; +} + +void Lasertest::setBaudrate(int baud) +{ + baudrate_ = baud; +} + +void Lasertest::setIntensities(bool intensities) +{ + intensities_ = intensities; +} + + +void Lasertest::run() { + Open(); + Start(); +} + +void Lasertest::closeApp(int signo){ + device_state_ = CLOSED; + signal(signo, SIG_DFL); + YDlidarDriver::singleton()->disconnect(); + printf("Now YDLIDAR is stopping .......\n"); + YDlidarDriver::done(); + exit(0); +} + +/** Returns true if the device is connected & operative */ +bool Lasertest::getDeviceInfo() +{ + if (!YDlidarDriver::singleton()) return false; + + device_info devinfo; + if (YDlidarDriver::singleton()->getDeviceInfo(devinfo) !=RESULT_OK){ + fprintf(stderr,"[YDLIDAR] get DeviceInfo Error\n" ); + return false; + } + + std::string model; + switch(devinfo.model){ + case 1: + model="F4"; + break; + case 2: + model="T1"; + break; + case 3: + model="F2"; + break; + case 4: + model="S4"; + break; + case 5: + model="G4"; + break; + case 6: + model="X4"; + break; + default: + model = "Unknown"; + } + + unsigned int maxv = (unsigned int)(devinfo.firmware_version>>8); + unsigned int midv = (unsigned int)(devinfo.firmware_version&0xff)/10; + unsigned int minv = (unsigned int)(devinfo.firmware_version&0xff)%10; + if(midv==0){ + midv = minv; + minv = 0; + } + + printf("[YDLIDAR] Connection established in [%s]:\n" + "Firmware version: %u.%u.%u\n" + "Hardware version: %u\n" + "Model: %s\n" + "Serial: ", + port_.c_str(), + maxv, + midv, + minv, + (unsigned int)devinfo.hardware_version, + model.c_str()); + + for (int i=0;i<16;i++) + printf("%01X",devinfo.serialnum[i]&0xff); + printf("\n"); + return true; + +} + +/** Returns true if the device is connected & operative */ +bool Lasertest::getDeviceHealth() +{ + if (!YDlidarDriver::singleton()) return false; + + result_t op_result; + device_health healthinfo; + + op_result = YDlidarDriver::singleton()->getHealth(healthinfo); + if (op_result == RESULT_OK) { + fprintf(stdout,"[YDLIDAR] running correctly ! The health status:%s\n" ,healthinfo.status==0? "good":"bad"); + + if (healthinfo.status == 2) { + fprintf(stderr, "Error, [YDLIDAR] internal error detected. Please reboot the device to retry.\n"); + return false; + } else { + return true; + } + + } else { + fprintf(stderr, "Error, cannot retrieve YDLIDAR health code: %x\n", op_result); + return false; + } + +} + +void Lasertest::Open() { + try { + if(!YDlidarDriver::singleton()) + YDlidarDriver::initDriver(); + result_t op_result = YDlidarDriver::singleton()->connect(port_.c_str(), (uint32_t)baudrate_); + if (op_result != RESULT_OK) { + fprintf(stdout,"open Lidar is failed! Exit!! ......\n"); + return; + } + + signal(SIGINT, closeApp); + signal(SIGTERM, closeApp); + + if(!getDeviceHealth()||!getDeviceInfo()){ + YDlidarDriver::singleton()->disconnect(); + YDlidarDriver::done(); + return; + } + + result_t ans=YDlidarDriver::singleton()->startScan(); + if(ans != RESULT_OK){ + fprintf(stdout,"start Lidar is failed! Exit!! ......\n"); + YDlidarDriver::singleton()->disconnect(); + YDlidarDriver::done(); + return; + } + + YDlidarDriver::singleton()->setIntensities(intensities_); + fprintf(stdout,"Device opened successfully.\n"); + device_state_ = OPENED; + + + + } catch (std::exception &e) { + Close(); + fprintf(stdout,"can't open laser\n "); + } +} + +void Lasertest::Start() { + + if(device_state_ !=OPENED|| !YDlidarDriver::singleton()) + return; + node_info all_nodes[NODE_COUNTS]; + memset(all_nodes, 0, NODE_COUNTS*sizeof(node_info)); + fprintf(stdout,"Now YDLIDAR is scanning.\n"); + device_state_ = RUNNING; + + double scan_duration; + result_t op_result; + + while (device_state_ == RUNNING) { + try { + node_info nodes[360*2]; + size_t count = _countof(nodes); + uint64_t start_scan_time = getms(); + op_result = YDlidarDriver::singleton()->grabScanData(nodes, count); + uint64_t end_scan_time = getms(); + scan_duration = (end_scan_time - start_scan_time); + + if (op_result == RESULT_OK) { + op_result = YDlidarDriver::singleton()->ascendScanData(nodes, count); + if (op_result == RESULT_OK) { + memset(all_nodes, 0, NODE_COUNTS*sizeof(node_info)); + for(size_t i =0 ; i < count; i++) { + if (nodes[i].distance_q2 != 0) { + float angle = (float)((nodes[i].angle_q6_checkbit >> LIDAR_RESP_MEASUREMENT_ANGLE_SHIFT)/64.0f); + int inter =(int)( angle / EACH_ANGLE ); + float angle_pre = angle - inter * EACH_ANGLE; + float angle_next = (inter+1) * EACH_ANGLE - angle; + if(angle_pre < angle_next){ + if(inter < NODE_COUNTS) + all_nodes[inter]=nodes[i]; + }else{ + if(inter < NODE_COUNTS-1) + all_nodes[inter+1]=nodes[i]; + } + } + } + + publicScanData(all_nodes,start_scan_time,scan_duration,NODE_COUNTS,angle_min_,angle_max_,ignore_array_); + + } + + + }else if(op_result == RESULT_FAIL){ + } + + } catch (std::exception& e) { + Close(); + fprintf(stderr,"Exception thrown while starting YDLIDAR.\n "); + return; + } catch (...) { + fprintf(stderr,"Exception thrown while trying to get scan: \n"); + Close(); + return; + } + + } + + +} + +void Lasertest::Stop() { + device_state_ = OPENED; +} + +void Lasertest::Close() { + try { + YDlidarDriver::singleton()->disconnect(); + YDlidarDriver::done(); + device_state_ = CLOSED; + exit(0); + } catch (std::exception &e) { + return; + } +} + +std::vector Lasertest::split(const std::string &s, char delim) { + std::vector elems; + std::stringstream ss(s); + std::string number; + while(std::getline(ss, number, delim)) { + elems.push_back(atoi(number.c_str())); + } + return elems; +} + +void Lasertest::publicScanData(node_info *nodes, uint64_t start,double scan_time, size_t node_count, float angle_min, float angle_max,std::vector ignore_array) { + fprintf(stdout,"publicScanData: %lud , %i\n",start, (int)node_count); + + float nodes_array[node_count]; + float quality_array[node_count]; + for (size_t i = 0; i < node_count; i++) { + if(i> 2); + }else{ + nodes_array[node_count-1-(i-node_count/2)] = (float)nodes[i].distance_q2/4.0f/1000; + quality_array[node_count-1-(i-node_count/2)] = (float)(nodes[i].sync_quality >> 2); + } + + if(ignore_array.size() != 0){ + float angle = (float)((nodes[i].angle_q6_checkbit >> LIDAR_RESP_MEASUREMENT_ANGLE_SHIFT)/64.0f); + if(angle>180){ + angle=360-angle; + }else{ + angle=-angle; + } + for(unsigned int j = 0; j < ignore_array.size();j = j+2){ + if((ignore_array[j] < angle) && (angle <= ignore_array[j+1])){ + if(iscan.config.min_angle) + printf(": [%f, %f]", degree, scan.ranges[i]); + } + + + scan_no_++; + +} diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/test/laser_test.h b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/test/laser_test.h new file mode 100644 index 0000000..6a4bf47 --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/test/laser_test.h @@ -0,0 +1,63 @@ +#pragma once + + +#include "../sdk/include/ydlidar_driver.h" +#include "../sdk/src/common.h" +#include +#include +#include +#include + +#define DEG2RAD(x) ((x)*M_PI/180.) + +#define RAD2DEG(x) ((x)*180./M_PI) +#define NODE_COUNTS 720 +#define EACH_ANGLE 0.5 + +const double PI = 3.1415926; + +class Lasertest { +public: + Lasertest(); + + virtual ~Lasertest(); + + void run(); + + void setPort(std::string port); + void setBaudrate(int baud); + void setIntensities(bool intensities); +private: + void Open(); + void Start(); + void Stop(); + void Close(); + static void closeApp(int signo); + + bool getDeviceHealth(); + bool getDeviceInfo(); + + std::vector split(const std::string &s, char delim); + + void publicScanData(node_info *nodes, uint64_t start,double scan_time, size_t node_count, float angle_min, float angle_max,std::vector ignore_array); + + + enum DEVICE_STATE { + OPENED, + RUNNING, + CLOSED, + }; + + static DEVICE_STATE device_state_; + + int scan_no_; + + std::string port_; + int baudrate_; + bool intensities_; + int publish_freq_; + double angle_min_, angle_max_; + std::vector ignore_array_; +}; + + diff --git a/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/test/main.cpp b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/test/main.cpp new file mode 100644 index 0000000..1727b5d --- /dev/null +++ b/Code/RK3588/PIBot_ROS/ros_ws/src/ydlidar-1.2.1/test/main.cpp @@ -0,0 +1,41 @@ + +#include "laser_test.h" +#include +#include +#include +using namespace std; + +int main(int argc, char * argv[]) +{ + + bool showHelp = argc>1 && !strcmp(argv[1],"--help"); + printf(" YDLIDAR C++ TEST\n"); + // Process arguments: + if (argc<4 || showHelp ) + { + + printf("Usage: %s \n\n",argv[0]); + printf("Example:%s /dev/ttyUSB0 115200 0\n\n",argv[0]); + if (!showHelp) + { + return -1; + } + else return 0; + } + + const std::string port = string(argv[1]); + const int baud = atoi(argv[2]); + const int intensities = atoi(argv[3]); + + Lasertest laser; + + laser.setPort(port); + laser.setBaudrate(baud); + laser.setIntensities(intensities); + + laser.run(); + + return 0; + + +} diff --git a/Code/RK3588/README.md b/Code/RK3588/README.md new file mode 100644 index 0000000..e69de29 diff --git a/Code/RK3588/Robot_ROS_Driver/.catkin_workspace b/Code/RK3588/Robot_ROS_Driver/.catkin_workspace new file mode 100644 index 0000000..52fd97e --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/.catkin_workspace @@ -0,0 +1 @@ +# This file currently only serves to mark the location of a catkin workspace for tool integration diff --git a/Code/RK3588/Robot_ROS_Driver/.gitignore b/Code/RK3588/Robot_ROS_Driver/.gitignore new file mode 100644 index 0000000..26560cc --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/.gitignore @@ -0,0 +1,2 @@ +/build/ +/cmake-build-debug/ \ No newline at end of file diff --git a/Code/RK3588/Robot_ROS_Driver/README.md b/Code/RK3588/Robot_ROS_Driver/README.md new file mode 100644 index 0000000..b5c4d27 --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/README.md @@ -0,0 +1,6 @@ +# Robot ROS Driver + +1.如何编译 & 运行 + + + diff --git a/Code/RK3588/Robot_ROS_Driver/dataset/data1.txt b/Code/RK3588/Robot_ROS_Driver/dataset/data1.txt new file mode 100644 index 0000000..73dbd9d --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/dataset/data1.txt @@ -0,0 +1,10468 @@ +imu_odom_: 1691062764.937248272 0.387861 -0.248997 9.9096 -0.0543285 -0.00319579 0.04048 0 0 pose: 3.959451567 0.221503 0.00433448 0 -0.00254058 -0.0004941 -0.0371697 0.999306 uwb: 3.986947042 845.606 1004.18 +imu_odom_: 1691062764.951252369 0.397437 -0.248997 9.85453 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00254058 -0.0004941 -0.0371697 0.999306 uwb: 0.49912471 845.473 1003.64 +imu_odom_: 1691062764.966312817 0.414197 -0.251391 9.88566 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.28033567 0.221503 0.00433448 0 -0.00102597 -0.000643478-0.0371652 0.999308 uwb: 0.0 845.473 1003.64 +imu_odom_: 1691062764.980248668 0.387861 -0.227449 9.90002 -0.056459 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00102597 -0.000643478-0.0371652 0.999308 uwb: 0.0 845.473 1003.64 +imu_odom_: 1691062764.994246640 0.411803 -0.241814 9.85693 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00102597 -0.000643478-0.0371652 0.999308 uwb: 0.0 845.473 1003.64 +imu_odom_: 1691062765.8295943 0.428562 -0.268151 9.89045 -0.0543285 -0.00426106 0.0383495 0 0 pose: 0.41937337 0.221503 0.00433448 0 -0.0014536 0.000569598 -0.0371456 0.999309 uwb: 0.50138499 845.602 1002.97 +imu_odom_: 1691062765.22458989 0.438139 -0.25618 9.90242 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0014536 0.000569598 -0.0371456 0.999309 uwb: 0.0 845.602 1002.97 +imu_odom_: 1691062765.37269495 0.426168 -0.232238 9.92157 -0.0553937 -0.00319579 0.0415453 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0014536 0.000569598 -0.0371456 0.999309 uwb: 0.0 845.602 1002.97 +imu_odom_: 1691062765.51273592 0.426168 -0.258574 9.8665 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.43005646 0.221503 0.00433448 0 -0.00149991 -0.000467445-0.0371481 0.999309 uwb: 0.49872517 845.435 1004.05 +imu_odom_: 1691062765.65324061 0.418985 -0.244209 9.91199 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00149991 -0.000467445-0.0371481 0.999309 uwb: 0.0 845.435 1004.05 +imu_odom_: 1691062765.80256477 0.428562 -0.248997 9.87369 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00149991 -0.000467445-0.0371481 0.999309 uwb: 0.0 845.435 1004.05 +imu_odom_: 1691062765.94250366 0.418985 -0.253785 9.89284 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.57024618 0.221503 0.00433448 0 -0.00135826 -0.001059 -0.0371489 0.999308 uwb: 0.0 845.435 1004.05 +imu_odom_: 1691062765.108340791 0.409408 -0.251391 9.91439 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00135826 -0.001059 -0.0371489 0.999308 uwb: 0.49990926 845.679 1003.23 +imu_odom_: 1691062765.122253894 0.411803 -0.260968 9.88566 -0.0543285 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00135826 -0.001059 -0.0371489 0.999308 uwb: 0.0 845.679 1003.23 +imu_odom_: 1691062765.136245742 0.409408 -0.234632 9.87608 -0.0543285 -0.00532632 0.0383495 0 0 pose: 0.71014425 0.221503 0.00433448 0 -0.00170932 -0.00085469 -0.0371438 0.999308 uwb: 0.0 845.679 1003.23 +imu_odom_: 1691062765.150243423 0.402226 -0.253785 9.93354 -0.0532632 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00170932 -0.00085469 -0.0371438 0.999308 uwb: 0.50007842 846.19 1003.63 +imu_odom_: 1691062765.165382909 0.416591 -0.25618 9.90242 -0.0553937 -0.00639159 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00170932 -0.00085469 -0.0371438 0.999308 uwb: 0.0 846.19 1003.63 +imu_odom_: 1691062765.179450294 0.395043 -0.23942 9.90481 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.42098329 0.221503 0.00433448 0 -0.00217097 -0.000407085-0.037155 0.999307 uwb: 0.0 846.19 1003.63 +imu_odom_: 1691062765.193381771 0.395043 -0.227449 9.90721 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00217097 -0.000407085-0.037155 0.999307 uwb: 0.0 846.19 1003.63 +imu_odom_: 1691062765.208511633 0.418985 -0.251391 9.91439 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.36986892 0.221503 0.00433448 0 -0.0002673440.000646147 -0.0371599 0.999309 uwb: 0.49995301 846.273 1003.09 +imu_odom_: 1691062765.223392426 0.402226 -0.217872 9.87608 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.6060169 0.221503 0.00433448 0 -0.0007312410.000247811 -0.0371608 0.999309 uwb: 0.0 846.273 1003.09 +imu_odom_: 1691062765.237382524 0.428562 -0.253785 9.87369 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0007312410.000247811 -0.0371608 0.999309 uwb: 0.0 846.273 1003.09 +imu_odom_: 1691062765.251381080 0.414197 -0.244209 9.92157 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0007312410.000247811 -0.0371608 0.999309 uwb: 0.50115461 846.042 1002.15 +imu_odom_: 1691062765.265498337 0.411803 -0.275333 9.89284 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.43943007 0.221503 0.00433448 0 -0.00172678 -0.000418394-0.0371675 0.999307 uwb: 0.0 846.042 1002.15 +imu_odom_: 1691062765.280445626 0.423774 -0.258574 9.90242 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00172678 -0.000418394-0.0371675 0.999307 uwb: 0.0 846.042 1002.15 +imu_odom_: 1691062765.294288734 0.416591 -0.251391 9.90721 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00172678 -0.000418394-0.0371675 0.999307 uwb: 0.0 846.042 1002.15 +imu_odom_: 1691062765.308280290 0.392649 -0.244209 9.91918 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.42935068 0.221503 0.00433448 0 -0.00187898 -0.000598091-0.0371822 0.999307 uwb: 0.49942804 846.04 1002.02 +imu_odom_: 1691062765.322387631 0.409408 -0.258574 9.88566 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00187898 -0.000598091-0.0371822 0.999307 uwb: 0.0 846.04 1002.02 +imu_odom_: 1691062765.336447142 0.407014 -0.241814 9.88326 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00187898 -0.000598091-0.0371822 0.999307 uwb: 0.0 846.04 1002.02 +imu_odom_: 1691062765.351513715 0.42138 -0.253785 9.90721 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.42135368 0.221503 0.00433448 0 -0.00160884 -0.00013649 -0.0371789 0.999307 uwb: 0.49988885 846.02 1002.29 +imu_odom_: 1691062765.365445484 0.428562 -0.232238 9.89045 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00160884 -0.00013649 -0.0371789 0.999307 uwb: 0.0 846.02 1002.29 +imu_odom_: 1691062765.380280196 0.371101 -0.244209 9.9096 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00160884 -0.00013649 -0.0371789 0.999307 uwb: 0.0 846.02 1002.29 +imu_odom_: 1691062765.394232964 0.435745 -0.225055 9.93354 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.43952922 0.221503 0.00433448 0 -0.000944123-0.000647948-0.0371801 0.999308 uwb: 0.0 846.02 1002.29 +imu_odom_: 1691062765.408272350 0.395043 -0.251391 9.90721 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000944123-0.000647948-0.0371801 0.999308 uwb: 0.49954470 846.156 1001.75 +imu_odom_: 1691062765.422239408 0.433351 -0.227449 9.92397 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000944123-0.000647948-0.0371801 0.999308 uwb: 0.0 846.156 1001.75 +imu_odom_: 1691062765.436238839 0.402226 -0.244209 9.89045 -0.056459 -0.00532632 0.0383495 0 0 pose: 0.41950754 0.221503 0.00433448 0 -0.00120831 -0.00060505 -0.0371758 0.999308 uwb: 0.0 846.156 1001.75 +imu_odom_: 1691062765.450293683 0.433351 -0.248997 9.91439 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00120831 -0.00060505 -0.0371758 0.999308 uwb: 0.49852393 846.079 1001.08 +imu_odom_: 1691062765.464359319 0.416591 -0.246603 9.88326 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00120831 -0.00060505 -0.0371758 0.999308 uwb: 0.0 846.079 1001.08 +imu_odom_: 1691062765.478234799 0.399832 -0.248997 9.88087 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.41962129 0.221503 0.00433448 0 -0.00168813 -0.000806105-0.0371869 0.999307 uwb: 0.0 846.079 1001.08 +imu_odom_: 1691062765.492282060 0.416591 -0.23942 9.87369 -0.056459 -0.00426106 0.0415453 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00168813 -0.000806105-0.0371869 0.999307 uwb: 0.0 846.079 1001.08 +imu_odom_: 1691062765.506260492 0.411803 -0.237026 9.89045 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00168813 -0.000806105-0.0371869 0.999307 uwb: 0.50004926 846.366 1001.21 +imu_odom_: 1691062765.520360834 0.399832 -0.237026 9.91199 -0.0543285 -0.00532632 0.0415453 0 0 pose: 0.41995959 0.221503 0.00433448 0 -0.00113671 -0.000414831-0.0371751 0.999308 uwb: 0.0 846.366 1001.21 +imu_odom_: 1691062765.535357995 0.407014 -0.258574 9.88326 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00113671 -0.000414831-0.0371751 0.999308 uwb: 0.0 846.366 1001.21 +imu_odom_: 1691062765.549359176 0.438139 -0.225055 9.89045 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00113671 -0.000414831-0.0371751 0.999308 uwb: 0.0 846.366 1001.21 +imu_odom_: 1691062765.563362398 0.423774 -0.227449 9.85453 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.43046479 0.221503 0.00433448 0 -0.00211673 -0.000630457-0.0371543 0.999307 uwb: 0.50239994 846.318 1001.07 +imu_odom_: 1691062765.577353955 0.428562 -0.253785 9.8665 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00211673 -0.000630457-0.0371543 0.999307 uwb: 0.0 846.318 1001.07 +imu_odom_: 1691062765.592235915 0.423774 -0.246603 9.89045 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00211673 -0.000630457-0.0371543 0.999307 uwb: 0.0 846.318 1001.07 +imu_odom_: 1691062765.606241762 0.423774 -0.241814 9.87608 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.41881341 0.221503 0.00433448 0 -0.00192983 -0.000788384-0.0371507 0.999307 uwb: 0.49685278 846.459 1000.67 +imu_odom_: 1691062765.620243526 0.42138 -0.25618 9.92157 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00192983 -0.000788384-0.0371507 0.999307 uwb: 0.0 846.459 1000.67 +imu_odom_: 1691062765.634228083 0.423774 -0.251391 9.88326 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00192983 -0.000788384-0.0371507 0.999307 uwb: 0.0 846.459 1000.67 +imu_odom_: 1691062765.648285552 0.395043 -0.229843 9.88326 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.42988149 0.221503 0.00433448 0 -0.00225539 -0.000893812-0.0371492 0.999307 uwb: 0.0 846.459 1000.67 +imu_odom_: 1691062765.661286086 0.402226 -0.244209 9.87369 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00225539 -0.000893812-0.0371492 0.999307 uwb: 0.49946888 846.466 1001.61 +imu_odom_: 1691062765.676285872 0.42138 -0.229843 9.87129 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00225539 -0.000893812-0.0371492 0.999307 uwb: 0.0 846.466 1001.61 +imu_odom_: 1691062765.690225223 0.430956 -0.232238 9.92157 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.42058956 0.221503 0.00433448 0 -0.00160344 -0.000356978-0.0371501 0.999308 uwb: 0.0 846.466 1001.61 +imu_odom_: 1691062765.703245298 0.411803 -0.232238 9.91678 -0.0543285 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00160344 -0.000356978-0.0371501 0.999308 uwb: 0.50174373 846.581 1002.95 +imu_odom_: 1691062765.718359702 0.40462 -0.234632 9.8665 -0.0532632 -0.00532632 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00160344 -0.000356978-0.0371501 0.999308 uwb: 0.0 846.581 1002.95 +imu_odom_: 1691062765.732276013 0.426168 -0.25618 9.91918 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.41091265 0.221503 0.00433448 0 -0.000989851-0.00030017 -0.0371599 0.999309 uwb: 0.0 846.581 1002.95 +imu_odom_: 1691062765.746276902 0.42138 -0.268151 9.91678 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000989851-0.00030017 -0.0371599 0.999309 uwb: 0.0 846.581 1002.95 +imu_odom_: 1691062765.760224128 0.409408 -0.227449 9.84735 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000989851-0.00030017 -0.0371599 0.999309 uwb: 0.49983052 846.531 1002.81 +imu_odom_: 1691062765.773274825 0.414197 -0.23942 9.87369 -0.056459 -0.00426106 0.04048 0 0 pose: 0.42896571 0.221503 0.00433448 0 -0.00262188 -0.00079323 -0.0371582 0.999306 uwb: 0.0 846.531 1002.81 +imu_odom_: 1691062765.788419269 0.418985 -0.222661 9.89524 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00262188 -0.00079323 -0.0371582 0.999306 uwb: 0.0 846.531 1002.81 +imu_odom_: 1691062765.802384577 0.411803 -0.260968 9.9096 -0.056459 -0.00426106 0.0372843 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00262188 -0.00079323 -0.0371582 0.999306 uwb: 0.50000259 846.462 1002.95 +imu_odom_: 1691062765.817531646 0.411803 -0.241814 9.92875 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.42086370 0.221503 0.00433448 0 -0.000597702-0.0015303 -0.0371575 0.999308 uwb: 0.0 846.462 1002.95 +imu_odom_: 1691062765.831485288 0.442927 -0.260968 9.89045 -0.056459 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000597702-0.0015303 -0.0371575 0.999308 uwb: 0.0 846.462 1002.95 +imu_odom_: 1691062765.846481866 0.428562 -0.246603 9.90002 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000597702-0.0015303 -0.0371575 0.999308 uwb: 0.0 846.462 1002.95 +imu_odom_: 1691062765.861272831 0.428562 -0.217872 9.89763 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.44127037 0.221503 0.00433448 0 -0.00154362 -0.00137635 -0.0371699 0.999307 uwb: 0.49951554 846.432 1003.76 +imu_odom_: 1691062765.874275115 0.385466 -0.237026 9.87848 -0.056459 -0.00319579 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00154362 -0.00137635 -0.0371699 0.999307 uwb: 0.0 846.432 1003.76 +imu_odom_: 1691062765.889265860 0.409408 -0.246603 9.90002 -0.0553937 -0.00213053 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00154362 -0.00137635 -0.0371699 0.999307 uwb: 0.0 846.432 1003.76 +imu_odom_: 1691062765.903272291 0.416591 -0.203507 9.90481 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.42727123 0.221503 0.00433448 0 -0.00121894 -0.000107695-0.0371788 0.999308 uwb: 0.0 846.432 1003.76 +imu_odom_: 1691062765.917209892 0.423774 -0.251391 9.87848 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00121894 -0.000107695-0.0371788 0.999308 uwb: 0.0 846.432 1003.76 +imu_odom_: 1691062765.931264736 0.42138 -0.234632 9.9096 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00121894 -0.000107695-0.0371788 0.999308 uwb: 0.0 846.432 1003.76 +imu_odom_: 1691062765.945368577 0.414197 -0.229843 9.9096 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.42047582 0.221503 0.00433448 0 -0.00131776 -0.000923624-0.0371695 0.999308 uwb: 0.0 846.432 1003.76 +imu_odom_: 1691062765.959353134 0.392649 -0.260968 9.90242 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00131776 -0.000923624-0.0371695 0.999308 uwb: 0.100123011 846.295 1004.03 +imu_odom_: 1691062765.973408853 0.42138 -0.246603 9.91918 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00131776 -0.000923624-0.0371695 0.999308 uwb: 0.0 846.295 1004.03 +imu_odom_: 1691062765.987227754 0.411803 -0.234632 9.91439 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.50140833 0.221503 0.00433448 0 -0.0019901 -0.00037485 -0.0371631 0.999307 uwb: 0.0 846.295 1004.03 +imu_odom_: 1691062766.1286098 0.416591 -0.265756 9.90721 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0019901 -0.00037485 -0.0371631 0.999307 uwb: 0.0 846.295 1004.03 +imu_odom_: 1691062766.15358441 0.397437 -0.258574 9.88326 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0019901 -0.00037485 -0.0371631 0.999307 uwb: 0.0 846.295 1004.03 +imu_odom_: 1691062766.29182009 0.433351 -0.258574 9.89045 -0.0543285 -0.00532632 0.0383495 0 0 pose: 0.5832975 0.221503 0.00433448 0 -0.00140392 -0.000390036-0.0371639 0.999308 uwb: 0.0 846.295 1004.03 +imu_odom_: 1691062766.43182607 0.418985 -0.246603 9.84496 -0.0532632 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00140392 -0.000390036-0.0371639 0.999308 uwb: 0.0 846.295 1004.03 +imu_odom_: 1691062766.58355633 0.402226 -0.244209 9.91918 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00140392 -0.000390036-0.0371639 0.999308 uwb: 0.99861403 846.306 1004.43 +imu_odom_: 1691062766.72201074 0.416591 -0.258574 9.8689 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.70010572 0.221503 0.00433448 0 -0.00123438 -0.000433068-0.0371707 0.999308 uwb: 0.0 846.306 1004.43 +imu_odom_: 1691062766.86202838 0.40462 -0.248997 9.87129 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00123438 -0.000433068-0.0371707 0.999308 uwb: 0.0 846.306 1004.43 +imu_odom_: 1691062766.100342261 0.42138 -0.244209 9.90242 -0.0543285 -0.00319579 0.0415453 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00123438 -0.000433068-0.0371707 0.999308 uwb: 0.49889726 846.35 1004.3 +imu_odom_: 1691062766.114326818 0.411803 -0.225055 9.85693 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.29958451 0.221503 0.00433448 0 -0.00193905 -0.000235917-0.0371694 0.999307 uwb: 0.0 846.35 1004.3 +imu_odom_: 1691062766.128320125 0.411803 -0.244209 9.90721 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00193905 -0.000235917-0.0371694 0.999307 uwb: 0.0 846.35 1004.3 +imu_odom_: 1691062766.143261874 0.430956 -0.237026 9.93354 -0.056459 -0.00426106 0.04048 0 0 pose: 0.42125745 0.221503 0.00433448 0 -0.00108432 -0.000362929-0.0371477 0.999309 uwb: 0.0 846.35 1004.3 +imu_odom_: 1691062766.157323718 0.40462 -0.234632 9.89045 -0.0532632 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00108432 -0.000362929-0.0371477 0.999309 uwb: 0.50112838 846.418 1004.16 +imu_odom_: 1691062766.171251112 0.438139 -0.232238 9.84496 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00108432 -0.000362929-0.0371477 0.999309 uwb: 0.0 846.418 1004.16 +imu_odom_: 1691062766.185212629 0.409408 -0.23942 9.90242 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.41991003 0.221503 0.00433448 0 -0.000991447-0.000881597-0.0371416 0.999309 uwb: 0.0 846.418 1004.16 +imu_odom_: 1691062766.199184354 0.414197 -0.227449 9.90242 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000991447-0.000881597-0.0371416 0.999309 uwb: 0.0 846.418 1004.16 +imu_odom_: 1691062766.213313861 0.414197 -0.244209 9.91678 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000991447-0.000881597-0.0371416 0.999309 uwb: 0.50041383 846.388 1005.5 +imu_odom_: 1691062766.227372497 0.418985 -0.248997 9.91918 -0.056459 -0.00213053 0.0394148 0 0 pose: 0.49986262 0.221503 0.00433448 0 -0.00135774 -0.000544169-0.0371479 0.999309 uwb: 0.0 846.388 1005.5 +imu_odom_: 1691062766.241315349 0.426168 -0.260968 9.89284 -0.0532632 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00135774 -0.000544169-0.0371479 0.999309 uwb: 0.0 846.388 1005.5 +imu_odom_: 1691062766.255188496 0.411803 -0.23942 9.88326 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00135774 -0.000544169-0.0371479 0.999309 uwb: 0.50069090 845.773 1004.18 +imu_odom_: 1691062766.269189969 0.447716 -0.241814 9.90002 -0.056459 -0.00426106 0.0383495 0 0 pose: 0.6009714 0.221503 0.00433448 0 -0.00190546 -0.000792469-0.0371484 0.999308 uwb: 0.0 845.773 1004.18 +imu_odom_: 1691062766.283312185 0.42138 -0.260968 9.88805 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00190546 -0.000792469-0.0371484 0.999308 uwb: 0.0 845.773 1004.18 +imu_odom_: 1691062766.297188249 0.426168 -0.25618 9.89763 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00190546 -0.000792469-0.0371484 0.999308 uwb: 0.0 845.773 1004.18 +imu_odom_: 1691062766.311188847 0.428562 -0.244209 9.89045 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.70001824 0.221503 0.00433448 0 -0.00227282 -0.00105203 -0.0371666 0.999306 uwb: 0.50076382 845.896 1004.31 +imu_odom_: 1691062766.325175738 0.411803 -0.25618 9.93115 -0.0543285 -0.00426106 0.0415453 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00227282 -0.00105203 -0.0371666 0.999306 uwb: 0.0 845.896 1004.31 +imu_odom_: 1691062766.339168753 0.418985 -0.237026 9.90242 -0.056459 -0.00639159 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00227282 -0.00105203 -0.0371666 0.999306 uwb: 0.0 845.896 1004.31 +imu_odom_: 1691062766.353293593 0.430956 -0.268151 9.91439 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.27933533 0.221503 0.00433448 0 -0.00218177 -0.000413167-0.0371581 0.999307 uwb: 0.49812439 845.96 1004.84 +imu_odom_: 1691062766.367183656 0.40462 -0.25618 9.90242 -0.0543285 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00218177 -0.000413167-0.0371581 0.999307 uwb: 0.0 845.96 1004.84 +imu_odom_: 1691062766.381301206 0.399832 -0.263362 9.89045 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.49924724 0.221503 0.00433448 0 -0.00212757 -1.87459e-05-0.0371524 0.999307 uwb: 0.0 845.96 1004.84 +imu_odom_: 1691062766.395298012 0.399832 -0.248997 9.92397 -0.056459 -0.00639159 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00212757 -1.87459e-05-0.0371524 0.999307 uwb: 0.0 845.96 1004.84 +imu_odom_: 1691062766.409172326 0.426168 -0.232238 9.89045 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00212757 -1.87459e-05-0.0371524 0.999307 uwb: 0.0 845.96 1004.84 +imu_odom_: 1691062766.424303938 0.414197 -0.222661 9.88087 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.5998049 0.221503 0.00433448 0 -0.00260148 0.000347476 -0.037152 0.999306 uwb: 0.0 845.96 1004.84 +imu_odom_: 1691062766.438306870 0.416591 -0.220267 9.89763 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00260148 0.000347476 -0.037152 0.999306 uwb: 0.0 845.96 1004.84 +imu_odom_: 1691062766.452305718 0.409408 -0.21069 9.87848 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00260148 0.000347476 -0.037152 0.999306 uwb: 0.100245507 846.088 1005.11 +imu_odom_: 1691062766.466308357 0.397437 -0.225055 9.87608 -0.056459 -0.00319579 0.0394148 0 0 pose: 0.71128171 0.221503 0.00433448 0 -0.000405867-0.000736758-0.0371523 0.999309 uwb: 0.0 846.088 1005.11 +imu_odom_: 1691062766.480373118 0.40462 -0.213084 9.83777 -0.0575243 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000405867-0.000736758-0.0371523 0.999309 uwb: 0.0 846.088 1005.11 +imu_odom_: 1691062766.494303137 0.42138 -0.251391 9.85693 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000405867-0.000736758-0.0371523 0.999309 uwb: 0.0 846.088 1005.11 +imu_odom_: 1691062766.508304319 0.397437 -0.241814 9.89524 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.28000321 0.221503 0.00433448 0 -0.0003835050.00023402 -0.0371549 0.999309 uwb: 0.49742735 846.087 1004.3 +imu_odom_: 1691062766.523301189 0.426168 -0.265756 9.87129 -0.0543285 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0003835050.00023402 -0.0371549 0.999309 uwb: 0.0 846.087 1004.3 +imu_odom_: 1691062766.537299162 0.418985 -0.237026 9.90721 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.50990992 0.221503 0.00433448 0 -0.00231153 -0.00055207 -0.0371673 0.999306 uwb: 0.0 846.087 1004.3 +imu_odom_: 1691062766.551351090 0.411803 -0.234632 9.92636 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00231153 -0.00055207 -0.0371673 0.999306 uwb: 0.50038467 846.505 1004.69 +imu_odom_: 1691062766.566289047 0.414197 -0.237026 9.87608 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00231153 -0.00055207 -0.0371673 0.999306 uwb: 0.0 846.505 1004.69 +imu_odom_: 1691062766.580236274 0.407014 -0.263362 9.88805 -0.056459 -0.00213053 0.04048 0 0 pose: 0.6003881 0.221503 0.00433448 0 -0.00172111 -0.000663611-0.0371685 0.999307 uwb: 0.0 846.505 1004.69 +imu_odom_: 1691062766.594167459 0.416591 -0.227449 9.89045 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00172111 -0.000663611-0.0371685 0.999307 uwb: 0.0 846.505 1004.69 +imu_odom_: 1691062766.608177973 0.407014 -0.229843 9.90481 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00172111 -0.000663611-0.0371685 0.999307 uwb: 0.49881269 846.455 1005.36 +imu_odom_: 1691062766.622174488 0.414197 -0.217872 9.88805 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.71879167 0.221503 0.00433448 0 -0.0006799594.95074e-05 -0.0371669 0.999309 uwb: 0.0 846.455 1005.36 +imu_odom_: 1691062766.636228750 0.399832 -0.277727 9.91678 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0006799594.95074e-05 -0.0371669 0.999309 uwb: 0.0 846.455 1005.36 +imu_odom_: 1691062766.650231973 0.414197 -0.268151 9.84735 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0006799594.95074e-05 -0.0371669 0.999309 uwb: 0.50177000 846.155 1004.97 +imu_odom_: 1691062766.664222071 0.428562 -0.237026 9.87848 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.41105557 0.221503 0.00433448 0 -0.00209975 -0.000365854-0.0371659 0.999307 uwb: 0.0 846.155 1004.97 +imu_odom_: 1691062766.678173964 0.426168 -0.25618 9.89045 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00209975 -0.000365854-0.0371659 0.999307 uwb: 0.0 846.155 1004.97 +imu_odom_: 1691062766.693161502 0.414197 -0.244209 9.89045 -0.0543285 -0.00213053 0.0383495 0 0 pose: 0.35884170 0.221503 0.00433448 0 -0.00300363 -0.00114245 -0.037158 0.999304 uwb: 0.0 846.155 1004.97 +imu_odom_: 1691062766.707165016 0.418985 -0.251391 9.90721 -0.056459 -0.00426106 0.04048 0 0 pose: 0.7060233 0.221503 0.00433448 0 -0.00235122 -0.000855834-0.0371623 0.999306 uwb: 0.49948639 846.269 1005.5 +imu_odom_: 1691062766.721169697 0.414197 -0.227449 9.87129 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00235122 -0.000855834-0.0371623 0.999306 uwb: 0.0 846.269 1005.5 +imu_odom_: 1691062766.735169712 0.42138 -0.229843 9.91439 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00235122 -0.000855834-0.0371623 0.999306 uwb: 0.0 846.269 1005.5 +imu_odom_: 1691062766.749281720 0.407014 -0.213084 9.90002 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.35935500 0.221503 0.00433448 0 -0.00146025 -0.00085049 -0.0371705 0.999308 uwb: 0.0 846.269 1005.5 +imu_odom_: 1691062766.763185782 0.414197 -0.244209 9.9096 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00146025 -0.00085049 -0.0371705 0.999308 uwb: 0.49983637 845.992 1005.11 +imu_odom_: 1691062766.778313603 0.399832 -0.241814 9.89284 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00146025 -0.00085049 -0.0371705 0.999308 uwb: 0.0 845.992 1005.11 +imu_odom_: 1691062766.793365886 0.423774 -0.258574 9.88087 -0.0553937 -0.00319579 0.0383495 0 0 pose: 0.42016085 0.221503 0.00433448 0 -0.0010427 -0.000250324-0.0371685 0.999308 uwb: 0.0 845.992 1005.11 +imu_odom_: 1691062766.808155977 0.40462 -0.23942 9.93833 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0010427 -0.000250324-0.0371685 0.999308 uwb: 0.49941348 846.064 1005.11 +imu_odom_: 1691062766.821216300 0.438139 -0.217872 9.88805 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0010427 -0.000250324-0.0371685 0.999308 uwb: 0.0 846.064 1005.11 +imu_odom_: 1691062766.835154193 0.435745 -0.227449 9.93354 -0.0553937 -0.00532632 0.0372843 0 0 pose: 0.50969993 0.221503 0.00433448 0 -0.000689846-0.000413667-0.0371819 0.999308 uwb: 0.0 846.064 1005.11 +imu_odom_: 1691062766.850221643 0.414197 -0.237026 9.90481 -0.0543285 -0.00319579 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000689846-0.000413667-0.0371819 0.999308 uwb: 0.50050133 846.123 1004.7 +imu_odom_: 1691062766.864263655 0.407014 -0.234632 9.87129 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.36065868 0.221503 0.00433448 0 -0.00113475 -0.000849582-0.0371904 0.999307 uwb: 0.0 846.123 1004.7 +imu_odom_: 1691062766.878211173 0.426168 -0.225055 9.90242 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00113475 -0.000849582-0.0371904 0.999307 uwb: 0.0 846.123 1004.7 +imu_odom_: 1691062766.892264559 0.442927 -0.272939 9.93594 -0.0543285 -0.00319579 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00113475 -0.000849582-0.0371904 0.999307 uwb: 0.0 846.123 1004.7 +imu_odom_: 1691062766.906212077 0.395043 -0.253785 9.88566 -0.0543285 -0.00319579 0.04048 0 0 pose: 0.5993965 0.221503 0.00433448 0 -0.00104416 -0.000255893-0.0371871 0.999308 uwb: 0.50131795 846.031 1004.84 +imu_odom_: 1691062766.920143263 0.440533 -0.251391 9.92636 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00104416 -0.000255893-0.0371871 0.999308 uwb: 0.0 846.031 1004.84 +imu_odom_: 1691062766.934198399 0.442927 -0.251391 9.85932 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00104416 -0.000255893-0.0371871 0.999308 uwb: 0.0 846.031 1004.84 +imu_odom_: 1691062766.948154375 0.418985 -0.23942 9.88326 -0.0543285 -0.00426106 0.0383495 0 0 pose: 0.41940839 0.221503 0.00433448 0 -0.00193756 -0.000812956-0.0371741 0.999307 uwb: 0.0 846.031 1004.84 +imu_odom_: 1691062766.962128141 0.402226 -0.244209 9.89045 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00193756 -0.000812956-0.0371741 0.999307 uwb: 0.49876893 845.971 1004.44 +imu_odom_: 1691062766.976289730 0.42138 -0.241814 9.88087 -0.056459 -0.00532632 0.0426106 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00193756 -0.000812956-0.0371741 0.999307 uwb: 0.0 845.971 1004.44 +imu_odom_: 1691062766.990307243 0.418985 -0.234632 9.91439 -0.056459 -0.00426106 0.04048 0 0 pose: 0.42066249 0.221503 0.00433448 0 -0.00179127 -0.00224117 -0.0371647 0.999305 uwb: 0.0 845.971 1004.44 +imu_odom_: 1691062767.4285093 0.423774 -0.246603 9.85693 -0.0543285 -0.00426106 0.0415453 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00179127 -0.00224117 -0.0371647 0.999305 uwb: 0.49930557 845.838 1003.9 +imu_odom_: 1691062767.18283067 0.411803 -0.246603 9.91678 -0.0532632 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00179127 -0.00224117 -0.0371647 0.999305 uwb: 0.0 845.838 1003.9 +imu_odom_: 1691062767.32279582 0.407014 -0.248997 9.90481 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00179127 -0.00224117 -0.0371647 0.999305 uwb: 0.0 845.838 1003.9 +imu_odom_: 1691062767.46338802 0.430956 -0.263362 9.93115 -0.0575243 -0.00532632 0.04048 0 0 pose: 0.42070915 0.221503 0.00433448 0 -0.00113734 -0.000962981-0.0371455 0.999309 uwb: 0.0 845.838 1003.9 +imu_odom_: 1691062767.60153329 0.418985 -0.272939 9.91439 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00113734 -0.000962981-0.0371455 0.999309 uwb: 0.50011637 846.2 1004.03 +imu_odom_: 1691062767.74333000 0.430956 -0.213084 9.89763 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00113734 -0.000962981-0.0371455 0.999309 uwb: 0.0 846.2 1004.03 +imu_odom_: 1691062767.88335640 0.426168 -0.220267 9.90002 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.83871474 0.221503 0.00433448 0 -0.00239768 -0.000970213-0.0371069 0.999308 uwb: 0.0 846.2 1004.03 +imu_odom_: 1691062767.103286722 0.402226 -0.241814 9.87608 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00239768 -0.000970213-0.0371069 0.999308 uwb: 0.49830524 846.118 1003.63 +imu_odom_: 1691062767.117276529 0.397437 -0.246603 9.9096 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00239768 -0.000970213-0.0371069 0.999308 uwb: 0.0 846.118 1003.63 +imu_odom_: 1691062767.131130720 0.414197 -0.265756 9.87369 -0.0532632 -0.00426106 0.0383495 0 0 pose: 0.43005650 0.221503 0.00433448 0 -0.00161997 0.000348766 -0.0371038 0.99931 uwb: 0.0 846.118 1003.63 +imu_odom_: 1691062767.145195773 0.418985 -0.237026 9.88805 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00161997 0.000348766 -0.0371038 0.99931 uwb: 0.0 846.118 1003.63 +imu_odom_: 1691062767.159192289 0.390255 -0.251391 9.88326 -0.056459 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00161997 0.000348766 -0.0371038 0.99931 uwb: 0.50336825 846.016 1004.3 +imu_odom_: 1691062767.173128433 0.428562 -0.23942 9.88326 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.42031544 0.221503 0.00433448 0 -0.00147427 -0.000200455-0.0371103 0.99931 uwb: 0.0 846.016 1004.3 +imu_odom_: 1691062767.187187361 0.423774 -0.237026 9.89284 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00147427 -0.000200455-0.0371103 0.99931 uwb: 0.0 846.016 1004.3 +imu_odom_: 1691062767.201196418 0.40462 -0.237026 9.88326 -0.0543285 -0.00532632 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00147427 -0.000200455-0.0371103 0.99931 uwb: 0.49854731 845.909 1003.9 +imu_odom_: 1691062767.215129354 0.414197 -0.246603 9.90002 -0.0543285 -0.00532632 0.0383495 0 0 pose: 0.41993630 0.221503 0.00433448 0 -0.000595164-0.00116744 -0.037108 0.99931 uwb: 0.0 845.909 1003.9 +imu_odom_: 1691062767.229178074 0.416591 -0.241814 9.88326 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000595164-0.00116744 -0.037108 0.99931 uwb: 0.0 845.909 1003.9 +imu_odom_: 1691062767.243177506 0.414197 -0.253785 9.8665 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000595164-0.00116744 -0.037108 0.99931 uwb: 0.0 845.909 1003.9 +imu_odom_: 1691062767.257142815 0.428562 -0.225055 9.84975 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.49981597 0.221503 0.00433448 0 -0.00229043 -0.000446545-0.0371147 0.999308 uwb: 0.49932892 845.963 1003.09 +imu_odom_: 1691062767.271124457 0.423774 -0.263362 9.91439 -0.0532632 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00229043 -0.000446545-0.0371147 0.999308 uwb: 0.0 845.963 1003.09 +imu_odom_: 1691062767.285120681 0.426168 -0.248997 9.85932 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00229043 -0.000446545-0.0371147 0.999308 uwb: 0.0 845.963 1003.09 +imu_odom_: 1691062767.299125946 0.402226 -0.237026 9.88805 -0.0575243 -0.00532632 0.0394148 0 0 pose: 0.6006507 0.221503 0.00433448 0 -0.00175157 -0.000711793-0.0371129 0.999309 uwb: 0.50010762 846.131 1004.16 +imu_odom_: 1691062767.313130919 0.395043 -0.258574 9.90002 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00175157 -0.000711793-0.0371129 0.999309 uwb: 0.0 846.131 1004.16 +imu_odom_: 1691062767.327172348 0.430956 -0.234632 9.90002 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00175157 -0.000711793-0.0371129 0.999309 uwb: 0.0 846.131 1004.16 +imu_odom_: 1691062767.341174114 0.399832 -0.217872 9.89524 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.70006201 0.221503 0.00433448 0 -0.00211602 9.50561e-05 -0.0371077 0.999309 uwb: 0.0 846.131 1004.16 +imu_odom_: 1691062767.355159255 0.392649 -0.25618 9.87848 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00211602 9.50561e-05 -0.0371077 0.999309 uwb: 0.49902561 846.162 1003.49 +imu_odom_: 1691062767.369101232 0.418985 -0.23942 9.87848 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00211602 9.50561e-05 -0.0371077 0.999309 uwb: 0.0 846.162 1003.49 +imu_odom_: 1691062767.383161035 0.40462 -0.229843 9.92157 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.27975532 0.221503 0.00433448 0 -0.0009669820.000236661 -0.0371068 0.999311 uwb: 0.0 846.162 1003.49 +imu_odom_: 1691062767.397157551 0.440533 -0.251391 9.88326 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0009669820.000236661 -0.0371068 0.999311 uwb: 0.0 846.162 1003.49 +imu_odom_: 1691062767.411287642 0.414197 -0.241814 9.89524 -0.0543285 -0.00426106 0.0383495 0 0 pose: 0.49991805 0.221503 0.00433448 0 -0.0012846 -0.000818643-0.0371096 0.99931 uwb: 0.50002012 846.005 1003.9 +imu_odom_: 1691062767.425258784 0.418985 -0.248997 9.88087 -0.0532632 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0012846 -0.000818643-0.0371096 0.99931 uwb: 0.0 846.005 1003.9 +imu_odom_: 1691062767.439251216 0.447716 -0.248997 9.87848 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0012846 -0.000818643-0.0371096 0.99931 uwb: 0.0 846.005 1003.9 +imu_odom_: 1691062767.453141571 0.411803 -0.220267 9.92157 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.6040337 0.221503 0.00433448 0 -0.00151378 -0.000260927-0.0371124 0.99931 uwb: 0.50100299 846.199 1004.03 +imu_odom_: 1691062767.467257371 0.418985 -0.244209 9.89524 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00151378 -0.000260927-0.0371124 0.99931 uwb: 0.0 846.199 1004.03 +imu_odom_: 1691062767.482315780 0.399832 -0.21069 9.88566 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00151378 -0.000260927-0.0371124 0.99931 uwb: 0.0 846.199 1004.03 +imu_odom_: 1691062767.496261840 0.428562 -0.237026 9.88566 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.69951080 0.221503 0.00433448 0 -0.00145364 -0.000208372-0.0371133 0.99931 uwb: 0.0 846.199 1004.03 +imu_odom_: 1691062767.510270313 0.42138 -0.227449 9.87608 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00145364 -0.000208372-0.0371133 0.99931 uwb: 0.49924726 845.981 1003.9 +imu_odom_: 1691062767.525310348 0.411803 -0.23942 9.88326 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00145364 -0.000208372-0.0371133 0.99931 uwb: 0.0 845.981 1003.9 +imu_odom_: 1691062767.539298406 0.418985 -0.248997 9.90721 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.29120545 0.221503 0.00433448 0 -0.000696364-0.00091276 -0.0371084 0.999311 uwb: 0.0 845.981 1003.9 +imu_odom_: 1691062767.554248904 0.433351 -0.234632 9.89763 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000696364-0.00091276 -0.0371084 0.999311 uwb: 0.50029719 845.729 1003.37 +imu_odom_: 1691062767.568247753 0.416591 -0.222661 9.83299 -0.056459 -0.00532632 0.0415453 0 0 pose: 0.43042690 0.221503 0.00433448 0 -0.00174146 -0.00151821 -0.0371063 0.999309 uwb: 0.0 845.729 1003.37 +imu_odom_: 1691062767.582099902 0.402226 -0.227449 9.92875 -0.0543285 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00174146 -0.00151821 -0.0371063 0.999309 uwb: 0.0 845.729 1003.37 +imu_odom_: 1691062767.596098459 0.40462 -0.225055 9.88326 -0.0543285 -0.00213053 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00174146 -0.00151821 -0.0371063 0.999309 uwb: 0.0 845.729 1003.37 +imu_odom_: 1691062767.610264423 0.387861 -0.258574 9.89045 -0.0532632 -0.00532632 0.0415453 0 0 pose: 0.42798289 0.221503 0.00433448 0 -0.00085512 0.000222495 -0.0370986 0.999311 uwb: 0.50096507 845.449 1003.64 +imu_odom_: 1691062767.624181902 0.414197 -0.220267 9.83538 -0.0543285 -0.00639159 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00085512 0.000222495 -0.0370986 0.999311 uwb: 0.0 845.449 1003.64 +imu_odom_: 1691062767.638100839 0.416591 -0.260968 9.88087 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00085512 0.000222495 -0.0370986 0.999311 uwb: 0.0 845.449 1003.64 +imu_odom_: 1691062767.652165600 0.426168 -0.232238 9.84735 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.42001504 0.221503 0.00433448 0 -0.000980848-0.000535066-0.0370842 0.999312 uwb: 0.49925893 845.578 1002.96 +imu_odom_: 1691062767.666221028 0.445322 -0.253785 9.86172 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000980848-0.000535066-0.0370842 0.999312 uwb: 0.0 845.578 1002.96 +imu_odom_: 1691062767.680241459 0.42138 -0.232238 9.90242 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000980848-0.000535066-0.0370842 0.999312 uwb: 0.0 845.578 1002.96 +imu_odom_: 1691062767.694243516 0.402226 -0.246603 9.83777 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.50129463 0.221503 0.00433448 0 -0.0009698 -0.000938779-0.0370842 0.999311 uwb: 0.0 845.578 1002.96 +imu_odom_: 1691062767.709118769 0.418985 -0.237026 9.91678 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0009698 -0.000938779-0.0370842 0.999311 uwb: 0.49976348 845.717 1002.69 +imu_odom_: 1691062767.723098952 0.416591 -0.248997 9.93594 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0009698 -0.000938779-0.0370842 0.999311 uwb: 0.0 845.717 1002.69 +imu_odom_: 1691062767.737282415 0.428562 -0.241814 9.87608 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.5863890 0.221503 0.00433448 0 -0.0012842 -0.000448919-0.037084 0.999311 uwb: 0.0 845.717 1002.69 +imu_odom_: 1691062767.751277472 0.407014 -0.234632 9.88326 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0012842 -0.000448919-0.037084 0.999311 uwb: 0.50048093 845.793 1002.96 +imu_odom_: 1691062767.766230304 0.42138 -0.241814 9.86172 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0012842 -0.000448919-0.037084 0.999311 uwb: 0.0 845.793 1002.96 +imu_odom_: 1691062767.781289004 0.418985 -0.229843 9.90002 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.72016828 0.221503 0.00433448 0 -0.00132029 -0.000671679-0.0370834 0.999311 uwb: 0.0 845.793 1002.96 +imu_odom_: 1691062767.795204733 0.40462 -0.213084 9.8665 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00132029 -0.000671679-0.0370834 0.999311 uwb: 0.0 845.793 1002.96 +imu_odom_: 1691062767.809152835 0.426168 -0.263362 9.90002 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00132029 -0.000671679-0.0370834 0.999311 uwb: 0.49852105 845.949 1002.28 +imu_odom_: 1691062767.823086646 0.407014 -0.241814 9.90721 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.29070673 0.221503 0.00433448 0 1.6971e-06 -0.000141355-0.0370789 0.999312 uwb: 0.0 845.949 1002.28 +imu_odom_: 1691062767.837086369 0.428562 -0.246603 9.85453 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 1.6971e-06 -0.000141355-0.0370789 0.999312 uwb: 0.0 845.949 1002.28 +imu_odom_: 1691062767.851224043 0.407014 -0.225055 9.90481 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.49893519 0.221503 0.00433448 0 -0.00163535 -0.0014361 -0.0370706 0.99931 uwb: 0.50117506 845.975 1002.42 +imu_odom_: 1691062767.866223539 0.397437 -0.227449 9.88326 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00163535 -0.0014361 -0.0370706 0.99931 uwb: 0.0 845.975 1002.42 +imu_odom_: 1691062767.880087354 0.387861 -0.234632 9.90481 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00163535 -0.0014361 -0.0370706 0.99931 uwb: 0.0 845.975 1002.42 +imu_odom_: 1691062767.894093494 0.407014 -0.241814 9.90721 -0.0543285 -0.00639159 0.0394148 0 0 pose: 0.6005048 0.221503 0.00433448 0 -0.00123766 -0.000979906-0.037071 0.999311 uwb: 0.0 845.975 1002.42 +imu_odom_: 1691062767.908089134 0.435745 -0.241814 9.89763 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00123766 -0.000979906-0.037071 0.999311 uwb: 0.50048968 845.915 1003.09 +imu_odom_: 1691062767.922080109 0.407014 -0.25618 9.90002 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00123766 -0.000979906-0.037071 0.999311 uwb: 0.0 845.915 1003.09 +imu_odom_: 1691062767.936078666 0.399832 -0.237026 9.89763 -0.056459 -0.00319579 0.0394148 0 0 pose: 0.71003932 0.221503 0.00433448 0 -0.00186688 -0.00141428 -0.03707 0.99931 uwb: 0.0 845.915 1003.09 +imu_odom_: 1691062767.950076639 0.418985 -0.246603 9.91199 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00186688 -0.00141428 -0.03707 0.99931 uwb: 0.49813900 846.441 1003.08 +imu_odom_: 1691062767.964076071 0.42138 -0.232238 9.89524 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00186688 -0.00141428 -0.03707 0.99931 uwb: 0.0 846.441 1003.08 +imu_odom_: 1691062767.978199162 0.438139 -0.246603 9.87129 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.42111747 0.221503 0.00433448 0 -0.00112186 -0.000893882-0.0370619 0.999312 uwb: 0.0 846.441 1003.08 +imu_odom_: 1691062767.992132390 0.418985 -0.232238 9.92875 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00112186 -0.000893882-0.0370619 0.999312 uwb: 0.0 846.441 1003.08 +imu_odom_: 1691062768.6087200 0.407014 -0.222661 9.93115 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.35925294 0.221503 0.00433448 0 -0.000736227-0.000522967-0.0370601 0.999313 uwb: 0.50143171 846.327 1003.35 +imu_odom_: 1691062768.21087279 0.430956 -0.244209 9.92157 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.6955823 0.221503 0.00433448 0 -0.000256606-1.4881e-05 -0.0370569 0.999313 uwb: 0.0 846.327 1003.35 +imu_odom_: 1691062768.35210954 0.414197 -0.260968 9.90002 -0.0532632 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000256606-1.4881e-05 -0.0370569 0.999313 uwb: 0.0 846.327 1003.35 +imu_odom_: 1691062768.50140455 0.40462 -0.251391 9.89524 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.36122741 0.221503 0.00433448 0 -0.00220833 -0.000497085-0.0370477 0.999311 uwb: 0.49900229 845.966 1003.23 +imu_odom_: 1691062768.64197050 0.433351 -0.229843 9.88805 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00220833 -0.000497085-0.0370477 0.999311 uwb: 0.0 845.966 1003.23 +imu_odom_: 1691062768.78141361 0.409408 -0.229843 9.89524 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00220833 -0.000497085-0.0370477 0.999311 uwb: 0.0 845.966 1003.23 +imu_odom_: 1691062768.92142252 0.409408 -0.222661 9.88087 -0.0543285 -0.00319579 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00220833 -0.000497085-0.0370477 0.999311 uwb: 0.0 845.966 1003.23 +imu_odom_: 1691062768.106189515 0.442927 -0.225055 9.88566 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.42930407 0.221503 0.00433448 0 -0.0001900250.000477973 -0.0370495 0.999313 uwb: 0.50007848 845.93 1003.77 +imu_odom_: 1691062768.120125952 0.397437 -0.241814 9.86411 -0.056459 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0001900250.000477973 -0.0370495 0.999313 uwb: 0.0 845.93 1003.77 +imu_odom_: 1691062768.134066471 0.409408 -0.217872 9.90481 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0001900250.000477973 -0.0370495 0.999313 uwb: 0.0 845.93 1003.77 +imu_odom_: 1691062768.149127797 0.428562 -0.237026 9.90002 -0.056459 -0.00639159 0.0394148 0 0 pose: 0.47933350 0.221503 0.00433448 0 -0.000535403-0.000581446-0.0370457 0.999313 uwb: 0.0 845.93 1003.77 +imu_odom_: 1691062768.163180601 0.426168 -0.23942 9.89524 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000535403-0.000581446-0.0370457 0.999313 uwb: 0.49942810 845.459 1002.97 +imu_odom_: 1691062768.177124912 0.409408 -0.253785 9.88326 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000535403-0.000581446-0.0370457 0.999313 uwb: 0.0 845.459 1002.97 +imu_odom_: 1691062768.192122366 0.42138 -0.241814 9.91678 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.43063983 0.221503 0.00433448 0 -0.00218916 -0.000633733-0.0370465 0.999311 uwb: 0.0 845.459 1002.97 +imu_odom_: 1691062768.206069594 0.416591 -0.246603 9.88326 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00218916 -0.000633733-0.0370465 0.999311 uwb: 0.50113424 845.572 1003.77 +imu_odom_: 1691062768.220073693 0.440533 -0.217872 9.89284 -0.056459 -0.00426106 0.04048 0 0 pose: 0.36930900 0.221503 0.00433448 0 -0.00197778 -0.000113496-0.0370482 0.999312 uwb: 0.0 845.572 1003.77 +imu_odom_: 1691062768.234121539 0.418985 -0.248997 9.89284 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.6066003 0.221503 0.00433448 0 -0.00155848 -0.000548698-0.0370464 0.999312 uwb: 0.0 845.572 1003.77 +imu_odom_: 1691062768.248178426 0.397437 -0.23942 9.90481 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00155848 -0.000548698-0.0370464 0.999312 uwb: 0.0 845.572 1003.77 +imu_odom_: 1691062768.262064408 0.409408 -0.23942 9.89763 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00155848 -0.000548698-0.0370464 0.999312 uwb: 0.49982183 845.201 1004.19 +imu_odom_: 1691062768.276118087 0.426168 -0.244209 9.90721 -0.0575243 -0.00532632 0.04048 0 0 pose: 0.36042829 0.221503 0.00433448 0 -0.00119604 0.000380805 -0.0370353 0.999313 uwb: 0.0 845.201 1004.19 +imu_odom_: 1691062768.290055690 0.42138 -0.217872 9.92157 -0.0543285 -0.00319579 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00119604 0.000380805 -0.0370353 0.999313 uwb: 0.0 845.201 1004.19 +imu_odom_: 1691062768.304194822 0.399832 -0.217872 9.87369 -0.056459 -0.00639159 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00119604 0.000380805 -0.0370353 0.999313 uwb: 0.49868440 845.28 1003.51 +imu_odom_: 1691062768.319183236 0.426168 -0.253785 9.84496 -0.0543285 -0.00426106 0.0415453 0 0 pose: 0.41877264 0.221503 0.00433448 0 -0.00122413 -0.00130975 -0.0370415 0.999312 uwb: 0.0 845.28 1003.51 +imu_odom_: 1691062768.333069800 0.407014 -0.232238 9.89284 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00122413 -0.00130975 -0.0370415 0.999312 uwb: 0.0 845.28 1003.51 +imu_odom_: 1691062768.347128146 0.40462 -0.258574 9.87608 -0.0543285 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00122413 -0.00130975 -0.0370415 0.999312 uwb: 0.0 845.28 1003.51 +imu_odom_: 1691062768.361062540 0.411803 -0.220267 9.87608 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.49076321 0.221503 0.00433448 0 -0.00129365 2.68787e-05 -0.0370318 0.999313 uwb: 0.50161838 845.153 1004.19 +imu_odom_: 1691062768.375119136 0.42138 -0.248997 9.90002 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00129365 2.68787e-05 -0.0370318 0.999313 uwb: 0.0 845.153 1004.19 +imu_odom_: 1691062768.389117985 0.387861 -0.229843 9.88326 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00129365 2.68787e-05 -0.0370318 0.999313 uwb: 0.0 845.153 1004.19 +imu_odom_: 1691062768.403056172 0.409408 -0.215478 9.87608 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.41930927 0.221503 0.00433448 0 -0.00165246 -0.000486274-0.037029 0.999313 uwb: 0.49871648 845.201 1004.19 +imu_odom_: 1691062768.417057646 0.402226 -0.237026 9.88566 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00165246 -0.000486274-0.037029 0.999313 uwb: 0.0 845.201 1004.19 +imu_odom_: 1691062768.431162947 0.399832 -0.225055 9.89524 -0.0543285 -0.00639159 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00165246 -0.000486274-0.037029 0.999313 uwb: 0.0 845.201 1004.19 +imu_odom_: 1691062768.445045720 0.409408 -0.246603 9.87369 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.42108541 0.221503 0.00433448 0 -0.00060632 0.000173079 -0.037023 0.999314 uwb: 0.0 845.201 1004.19 +imu_odom_: 1691062768.459091233 0.416591 -0.263362 9.90242 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00060632 0.000173079 -0.037023 0.999314 uwb: 0.49983349 844.99 1003.38 +imu_odom_: 1691062768.473089207 0.426168 -0.237026 9.91918 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00060632 0.000173079 -0.037023 0.999314 uwb: 0.0 844.99 1003.38 +imu_odom_: 1691062768.488090453 0.423774 -0.232238 9.89763 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.41869680 0.221503 0.00433448 0 -0.00192479 -0.000817272-0.037032 0.999312 uwb: 0.0 844.99 1003.38 +imu_odom_: 1691062768.502165423 0.397437 -0.265756 9.90242 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00192479 -0.000817272-0.037032 0.999312 uwb: 0.50180212 844.89 1004.2 +imu_odom_: 1691062768.516102442 0.423774 -0.253785 9.91678 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00192479 -0.000817272-0.037032 0.999312 uwb: 0.0 844.89 1004.2 +imu_odom_: 1691062768.530156122 0.423774 -0.260968 9.88566 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.43010319 0.221503 0.00433448 0 -0.00156469 -0.000499269-0.0370268 0.999313 uwb: 0.0 844.89 1004.2 +imu_odom_: 1691062768.544180053 0.409408 -0.23942 9.88566 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00156469 -0.000499269-0.0370268 0.999313 uwb: 0.0 844.89 1004.2 +imu_odom_: 1691062768.558095199 0.42138 -0.244209 9.88805 -0.052198 -0.00639159 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00156469 -0.000499269-0.0370268 0.999313 uwb: 0.49825859 844.979 1003.93 +imu_odom_: 1691062768.573034324 0.407014 -0.258574 9.89284 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.41988090 0.221503 0.00433448 0 -0.00161754 -0.000805734-0.0370209 0.999313 uwb: 0.0 844.979 1003.93 +imu_odom_: 1691062768.587105210 0.407014 -0.241814 9.88805 -0.0543285 -0.00639159 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00161754 -0.000805734-0.0370209 0.999313 uwb: 0.0 844.979 1003.93 +imu_odom_: 1691062768.601100268 0.435745 -0.246603 9.8665 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00161754 -0.000805734-0.0370209 0.999313 uwb: 0.49986849 845.053 1002.98 +imu_odom_: 1691062768.616056017 0.414197 -0.248997 9.87848 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.43019943 0.221503 0.00433448 0 -0.00100009 -0.000497647-0.0370165 0.999314 uwb: 0.0 845.053 1002.98 +imu_odom_: 1691062768.630148194 0.407014 -0.258574 9.8665 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00100009 -0.000497647-0.0370165 0.999314 uwb: 0.0 845.053 1002.98 +imu_odom_: 1691062768.644035633 0.399832 -0.222661 9.91678 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00100009 -0.000497647-0.0370165 0.999314 uwb: 0.0 845.053 1002.98 +imu_odom_: 1691062768.659037462 0.428562 -0.244209 9.88566 -0.056459 -0.00639159 0.0415453 0 0 pose: 0.29056384 0.221503 0.00433448 0 -0.0023999 -0.000401699-0.0370103 0.999312 uwb: 0.50090384 844.984 1003.11 +imu_odom_: 1691062768.673151804 0.426168 -0.21069 9.88087 -0.0532632 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0023999 -0.000401699-0.0370103 0.999312 uwb: 0.0 844.984 1003.11 +imu_odom_: 1691062768.687149195 0.387861 -0.265756 9.90242 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0023999 -0.000401699-0.0370103 0.999312 uwb: 0.0 844.984 1003.11 +imu_odom_: 1691062768.701151836 0.428562 -0.237026 9.89284 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.27981658 0.221503 0.00433448 0 -0.00156116 -0.0010615 -0.0370113 0.999313 uwb: 0.49897896 845.011 1003.25 +imu_odom_: 1691062768.715034026 0.416591 -0.244209 9.88566 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00156116 -0.0010615 -0.0370113 0.999313 uwb: 0.0 845.011 1003.25 +imu_odom_: 1691062768.729087122 0.416591 -0.23942 9.89045 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00156116 -0.0010615 -0.0370113 0.999313 uwb: 0.0 845.011 1003.25 +imu_odom_: 1691062768.743025891 0.416591 -0.234632 9.86411 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.71070430 0.221503 0.00433448 0 -0.00104491 -0.000770834-0.0369985 0.999314 uwb: 0.0 845.011 1003.25 +imu_odom_: 1691062768.757082779 0.438139 -0.237026 9.89284 -0.0543285 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00104491 -0.000770834-0.0369985 0.999314 uwb: 0.0 845.011 1003.25 +imu_odom_: 1691062768.771082211 0.397437 -0.251391 9.88566 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00104491 -0.000770834-0.0369985 0.999314 uwb: 0.0 845.011 1003.25 +imu_odom_: 1691062768.786229865 0.42138 -0.241814 9.88326 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.41916052 0.221503 0.00433448 0 -0.00138575 -0.00116147 -0.0370057 0.999313 uwb: 0.0 845.011 1003.25 +imu_odom_: 1691062768.800174468 0.383072 -0.23942 9.94551 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00138575 -0.00116147 -0.0370057 0.999313 uwb: 0.99860247 845.154 1003.24 +imu_odom_: 1691062768.814115862 0.42138 -0.237026 9.90242 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.37090433 0.221503 0.00433448 0 -0.00113172 -0.000411203-0.0369929 0.999315 uwb: 0.0 845.154 1003.24 +imu_odom_: 1691062768.829154439 0.426168 -0.248997 9.8665 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.6034213 0.221503 0.00433448 0 -0.00119155 -0.00100847 -0.036994 0.999314 uwb: 0.0 845.154 1003.24 +imu_odom_: 1691062768.843039254 0.445322 -0.25618 9.88326 -0.056459 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00119155 -0.00100847 -0.036994 0.999314 uwb: 0.0 845.154 1003.24 +imu_odom_: 1691062768.857033436 0.42138 -0.213084 9.88087 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.36830573 0.221503 0.00433448 0 -0.00221373 -0.00199426 -0.0369977 0.999311 uwb: 0.50095342 845.143 1003.79 +imu_odom_: 1691062768.872078430 0.42138 -0.237026 9.86411 -0.0543285 -0.00532632 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00221373 -0.00199426 -0.0369977 0.999311 uwb: 0.0 845.143 1003.79 +imu_odom_: 1691062768.886083404 0.402226 -0.253785 9.91199 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00221373 -0.00199426 -0.0369977 0.999311 uwb: 0.0 845.143 1003.79 +imu_odom_: 1691062768.900077878 0.418985 -0.23942 9.89045 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.43044150 0.221503 0.00433448 0 -0.00286726 0.000458112 -0.0370074 0.999311 uwb: 0.50108759 844.901 1003.66 +imu_odom_: 1691062768.914026564 0.418985 -0.234632 9.92157 -0.0543285 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00286726 0.000458112 -0.0370074 0.999311 uwb: 0.0 844.901 1003.66 +imu_odom_: 1691062768.928017247 0.435745 -0.234632 9.87369 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00286726 0.000458112 -0.0370074 0.999311 uwb: 0.0 844.901 1003.66 +imu_odom_: 1691062768.942016096 0.426168 -0.229843 9.89763 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00286726 0.000458112 -0.0370074 0.999311 uwb: 0.0 844.901 1003.66 +imu_odom_: 1691062768.956084358 0.395043 -0.244209 9.89284 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.41933843 0.221503 0.00433448 0 -0.00149337 -0.00205262 -0.037014 0.999312 uwb: 0.49967016 845.047 1003.79 +imu_odom_: 1691062768.970021669 0.418985 -0.246603 9.89284 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00149337 -0.00205262 -0.037014 0.999312 uwb: 0.0 845.047 1003.79 +imu_odom_: 1691062768.984079431 0.397437 -0.241814 9.85214 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00149337 -0.00205262 -0.037014 0.999312 uwb: 0.0 845.047 1003.79 +imu_odom_: 1691062768.998075656 0.426168 -0.241814 9.87608 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.48066342 0.221503 0.00433448 0 -0.00160381 -0.000485879-0.0369954 0.999314 uwb: 0.0 845.047 1003.79 +imu_odom_: 1691062769.12019092 0.42138 -0.23942 9.8689 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00160381 -0.000485879-0.0369954 0.999314 uwb: 0.49964393 844.648 1004.07 +imu_odom_: 1691062769.26021150 0.42138 -0.263362 9.88566 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00160381 -0.000485879-0.0369954 0.999314 uwb: 0.0 844.648 1004.07 +imu_odom_: 1691062769.40073080 0.411803 -0.225055 9.88805 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.42000631 0.221503 0.00433448 0 -0.00130961 -0.000187962-0.0369989 0.999314 uwb: 0.0 844.648 1004.07 +imu_odom_: 1691062769.55069077 0.399832 -0.234632 9.89284 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00130961 -0.000187962-0.0369989 0.999314 uwb: 0.50030306 844.894 1003.39 +imu_odom_: 1691062769.69076093 0.409408 -0.248997 9.8665 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.36984857 0.221503 0.00433448 0 -0.0014053 0.0008189 -0.0370017 0.999314 uwb: 0.0 844.894 1003.39 +imu_odom_: 1691062769.84128378 0.395043 -0.248997 9.89284 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.6003882 0.221503 0.00433448 0 -0.00160063 0.000247193 -0.0370031 0.999314 uwb: 0.0 844.894 1003.39 +imu_odom_: 1691062769.98006485 0.428562 -0.251391 9.89284 -0.0553937 -0.00319579 0.0415453 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00160063 0.000247193 -0.0370031 0.999314 uwb: 0.0 844.894 1003.39 +imu_odom_: 1691062769.112017001 0.426168 -0.234632 9.85693 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00160063 0.000247193 -0.0370031 0.999314 uwb: 0.50005808 845.058 1003.25 +imu_odom_: 1691062769.126007101 0.411803 -0.23942 9.92397 -0.0543285 -0.00426106 0.0383495 0 0 pose: 0.36933526 0.221503 0.00433448 0 -0.00183366 -0.000400999-0.0369924 0.999314 uwb: 0.0 845.058 1003.25 +imu_odom_: 1691062769.140003034 0.402226 -0.268151 9.87608 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00183366 -0.000400999-0.0369924 0.999314 uwb: 0.0 845.058 1003.25 +imu_odom_: 1691062769.154000718 0.402226 -0.277727 9.87848 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00183366 -0.000400999-0.0369924 0.999314 uwb: 0.49944854 845.032 1003.11 +imu_odom_: 1691062769.168051189 0.411803 -0.232238 9.87848 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.48010347 0.221503 0.00433448 0 -0.00339281 0.000168753 -0.0369961 0.99931 uwb: 0.0 845.032 1003.11 +imu_odom_: 1691062769.182049164 0.426168 -0.244209 9.88805 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00339281 0.000168753 -0.0369961 0.99931 uwb: 0.0 845.032 1003.11 +imu_odom_: 1691062769.196047722 0.414197 -0.253785 9.90242 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00339281 0.000168753 -0.0369961 0.99931 uwb: 0.0 845.032 1003.11 +imu_odom_: 1691062769.211086591 0.407014 -0.241814 9.88087 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.42033589 0.221503 0.00433448 0 -0.00204031 -0.000463424-0.0369987 0.999313 uwb: 0.50039931 845.429 1003.78 +imu_odom_: 1691062769.225009029 0.407014 -0.251391 9.89284 -0.056459 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00204031 -0.000463424-0.0369987 0.999313 uwb: 0.0 845.429 1003.78 +imu_odom_: 1691062769.239003796 0.40462 -0.237026 9.86172 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00204031 -0.000463424-0.0369987 0.999313 uwb: 0.0 845.429 1003.78 +imu_odom_: 1691062769.254011459 0.418985 -0.244209 9.90002 -0.056459 -0.00319579 0.0394148 0 0 pose: 0.42957240 0.221503 0.00433448 0 -0.00180397 -4.53319e-05-0.0369813 0.999314 uwb: 0.50007558 845.56 1003.24 +imu_odom_: 1691062769.268075346 0.407014 -0.25618 9.89524 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00180397 -4.53319e-05-0.0369813 0.999314 uwb: 0.0 845.56 1003.24 +imu_odom_: 1691062769.282000409 0.392649 -0.225055 9.88087 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00180397 -4.53319e-05-0.0369813 0.999314 uwb: 0.0 845.56 1003.24 +imu_odom_: 1691062769.295993426 0.418985 -0.251391 9.93833 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.43055818 0.221503 0.00433448 0 -0.00159237 0.000283356 -0.036972 0.999315 uwb: 0.0 845.56 1003.24 +imu_odom_: 1691062769.309997817 0.440533 -0.258574 9.8689 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00159237 0.000283356 -0.036972 0.999315 uwb: 0.49926771 845.801 1003.36 +imu_odom_: 1691062769.323993167 0.395043 -0.25618 9.86411 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00159237 0.000283356 -0.036972 0.999315 uwb: 0.0 845.801 1003.36 +imu_odom_: 1691062769.339113114 0.392649 -0.260968 9.88805 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.41974384 0.221503 0.00433448 0 -0.0022801 -0.00125277 -0.0369576 0.999313 uwb: 0.0 845.801 1003.36 +imu_odom_: 1691062769.352995305 0.402226 -0.229843 9.86411 -0.0532632 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0022801 -0.00125277 -0.0369576 0.999313 uwb: 0.50008433 845.865 1004.04 +imu_odom_: 1691062769.367008445 0.407014 -0.260968 9.85693 -0.0553937 -0.00319579 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0022801 -0.00125277 -0.0369576 0.999313 uwb: 0.0 845.865 1004.04 +imu_odom_: 1691062769.382057814 0.416591 -0.241814 9.87848 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.43004196 0.221503 0.00433448 0 -0.00176589 0.000123176 -0.0369529 0.999315 uwb: 0.0 845.865 1004.04 +imu_odom_: 1691062769.396055789 0.423774 -0.227449 9.91199 -0.052198 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00176589 0.000123176 -0.0369529 0.999315 uwb: 0.0 845.865 1004.04 +imu_odom_: 1691062769.409981143 0.423774 -0.241814 9.89045 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00176589 0.000123176 -0.0369529 0.999315 uwb: 0.50021265 845.913 1004.04 +imu_odom_: 1691062769.425033720 0.411803 -0.229843 9.88087 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.42969489 0.221503 0.00433448 0 -0.000480543-0.0013122 -0.0369634 0.999316 uwb: 0.0 845.913 1004.04 +imu_odom_: 1691062769.439032861 0.407014 -0.237026 9.87369 -0.0543285 -0.00213053 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000480543-0.0013122 -0.0369634 0.999316 uwb: 0.0 845.913 1004.04 +imu_odom_: 1691062769.452979506 0.411803 -0.258574 9.86411 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000480543-0.0013122 -0.0369634 0.999316 uwb: 0.49946312 845.944 1004.3 +imu_odom_: 1691062769.467000812 0.428562 -0.237026 9.87608 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.14099469 0.221503 0.00433448 0 -0.000896551-0.000561317-0.0369632 0.999316 uwb: 0.0 845.944 1004.3 +imu_odom_: 1691062769.481112530 0.399832 -0.246603 9.8665 -0.0553937 -0.00426106 0.0415453 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000896551-0.000561317-0.0369632 0.999316 uwb: 0.0 845.944 1004.3 +imu_odom_: 1691062769.495048676 0.411803 -0.241814 9.90002 -0.056459 -0.00532632 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000896551-0.000561317-0.0369632 0.999316 uwb: 0.0 845.944 1004.3 +imu_odom_: 1691062769.510000634 0.402226 -0.287304 9.89524 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.28865646 0.221503 0.00433448 0 -0.00226371 -0.000364653-0.0369579 0.999314 uwb: 0.49962936 845.968 1004.3 +imu_odom_: 1691062769.523996567 0.414197 -0.25618 9.90481 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00226371 -0.000364653-0.0369579 0.999314 uwb: 0.0 845.968 1004.3 +imu_odom_: 1691062769.537991625 0.433351 -0.23942 9.88326 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00226371 -0.000364653-0.0369579 0.999314 uwb: 0.0 845.968 1004.3 +imu_odom_: 1691062769.553040119 0.407014 -0.232238 9.88087 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.42079086 0.221503 0.00433448 0 -0.00146837 -0.000157966-0.0369501 0.999316 uwb: 0.49961769 846.545 1003.48 +imu_odom_: 1691062769.568075488 0.402226 -0.246603 9.9096 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00146837 -0.000157966-0.0369501 0.999316 uwb: 0.0 846.545 1003.48 +imu_odom_: 1691062769.582110211 0.399832 -0.258574 9.89524 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00146837 -0.000157966-0.0369501 0.999316 uwb: 0.0 846.545 1003.48 +imu_odom_: 1691062769.597021338 0.416591 -0.208296 9.90242 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.42944991 0.221503 0.00433448 0 -0.00132901 -0.00139575 -0.0369594 0.999315 uwb: 0.0 846.545 1003.48 +imu_odom_: 1691062769.610974982 0.411803 -0.23942 9.92157 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00132901 -0.00139575 -0.0369594 0.999315 uwb: 0.50094761 846.497 1004.42 +imu_odom_: 1691062769.625016996 0.42138 -0.234632 9.88087 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00132901 -0.00139575 -0.0369594 0.999315 uwb: 0.0 846.497 1004.42 +imu_odom_: 1691062769.640136944 0.438139 -0.258574 9.92875 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.44108087 0.221503 0.00433448 0 -0.00240337 0.000139666 -0.0369505 0.999314 uwb: 0.0 846.497 1004.42 +imu_odom_: 1691062769.654190040 0.40462 -0.232238 9.89284 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00240337 0.000139666 -0.0369505 0.999314 uwb: 0.49999391 846.521 1004.42 +imu_odom_: 1691062769.669123624 0.438139 -0.234632 9.89045 -0.056459 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00240337 0.000139666 -0.0369505 0.999314 uwb: 0.0 846.521 1004.42 +imu_odom_: 1691062769.683979630 0.395043 -0.260968 9.87608 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.42934200 0.221503 0.00433448 0 -0.000680119-0.000527929-0.0369554 0.999317 uwb: 0.0 846.521 1004.42 +imu_odom_: 1691062769.697978480 0.399832 -0.251391 9.92157 -0.0553937 -0.00532632 0.0415453 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000680119-0.000527929-0.0369554 0.999317 uwb: 0.0 846.521 1004.42 +imu_odom_: 1691062769.712064241 0.411803 -0.241814 9.85932 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000680119-0.000527929-0.0369554 0.999317 uwb: 0.49993559 846.449 1004.42 +imu_odom_: 1691062769.727035156 0.418985 -0.241814 9.87369 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.43090232 0.221503 0.00433448 0 -0.00132514 -0.00134082 -0.0369517 0.999315 uwb: 0.0 846.449 1004.42 +imu_odom_: 1691062769.741048588 0.430956 -0.260968 9.87129 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00132514 -0.00134082 -0.0369517 0.999315 uwb: 0.0 846.449 1004.42 +imu_odom_: 1691062769.755035772 0.414197 -0.234632 9.89763 -0.052198 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00132514 -0.00134082 -0.0369517 0.999315 uwb: 0.49870775 846.251 1004.16 +imu_odom_: 1691062769.770114305 0.411803 -0.237026 9.9096 -0.056459 -0.00532632 0.04048 0 0 pose: 0.43884684 0.221503 0.00433448 0 -0.00163099 -1.05714e-05-0.036925 0.999317 uwb: 0.0 846.251 1004.16 +imu_odom_: 1691062769.784039660 0.414197 -0.251391 9.91199 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00163099 -1.05714e-05-0.036925 0.999317 uwb: 0.0 846.251 1004.16 +imu_odom_: 1691062769.798050175 0.409408 -0.244209 9.87129 -0.0543285 -0.00532632 0.0372843 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00163099 -1.05714e-05-0.036925 0.999317 uwb: 0.0 846.251 1004.16 +imu_odom_: 1691062769.812966552 0.414197 -0.25618 9.90002 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.43054942 0.221503 0.00433448 0 -0.00145826 -0.0015349 -0.0369245 0.999316 uwb: 0.50011641 845.94 1004.17 +imu_odom_: 1691062769.827002733 0.397437 -0.23942 9.88087 -0.0532632 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00145826 -0.0015349 -0.0369245 0.999316 uwb: 0.0 845.94 1004.17 +imu_odom_: 1691062769.841003624 0.392649 -0.258574 9.88566 -0.0575243 -0.00319579 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00145826 -0.0015349 -0.0369245 0.999316 uwb: 0.0 845.94 1004.17 +imu_odom_: 1691062769.855992622 0.411803 -0.251391 9.88326 -0.056459 -0.00426106 0.04048 0 0 pose: 0.43004488 0.221503 0.00433448 0 -0.00141234 -0.000193729-0.0369257 0.999317 uwb: 0.50170590 845.793 1004.04 +imu_odom_: 1691062769.871110236 0.385466 -0.246603 9.89045 -0.056459 -0.00639159 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00141234 -0.000193729-0.0369257 0.999317 uwb: 0.0 845.793 1004.04 +imu_odom_: 1691062769.885246744 0.42138 -0.232238 9.88805 -0.056459 -0.00532632 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00141234 -0.000193729-0.0369257 0.999317 uwb: 0.0 845.793 1004.04 +imu_odom_: 1691062769.900105083 0.42138 -0.232238 9.87369 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.42931575 0.221503 0.00433448 0 -0.00164929 0.000579589 -0.0369181 0.999317 uwb: 0.49899356 845.916 1004.17 +imu_odom_: 1691062769.914113265 0.407014 -0.246603 9.85214 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00164929 0.000579589 -0.0369181 0.999317 uwb: 0.0 845.916 1004.17 +imu_odom_: 1691062769.928122031 0.407014 -0.237026 9.87848 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00164929 0.000579589 -0.0369181 0.999317 uwb: 0.0 845.916 1004.17 +imu_odom_: 1691062769.943112195 0.426168 -0.23942 9.87848 -0.056459 -0.00532632 0.04048 0 0 pose: 0.44179832 0.221503 0.00433448 0 -0.00140002 0.000249116 -0.0369141 0.999317 uwb: 0.0 845.916 1004.17 +imu_odom_: 1691062769.958118692 0.423774 -0.227449 9.88566 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00140002 0.000249116 -0.0369141 0.999317 uwb: 0.49897315 845.814 1003.9 +imu_odom_: 1691062769.972116666 0.435745 -0.234632 9.87608 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00140002 0.000249116 -0.0369141 0.999317 uwb: 0.0 845.814 1003.9 +imu_odom_: 1691062769.987009711 0.423774 -0.248997 9.85453 -0.0543285 -0.00532632 0.0383495 0 0 pose: 0.43077983 0.221503 0.00433448 0 -0.00114439 -0.000111421-0.0369224 0.999317 uwb: 0.0 845.814 1003.9 +imu_odom_: 1691062770.2352187 0.430956 -0.234632 9.84017 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00114439 -0.000111421-0.0369224 0.999317 uwb: 0.50172048 845.923 1003.5 +imu_odom_: 1691062770.16035473 0.445322 -0.237026 9.90002 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00114439 -0.000111421-0.0369224 0.999317 uwb: 0.0 845.923 1003.5 +imu_odom_: 1691062770.31108466 0.409408 -0.237026 9.89524 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.43854352 0.221503 0.00433448 0 -0.000439101-0.00148541 -0.0369198 0.999317 uwb: 0.0 845.923 1003.5 +imu_odom_: 1691062770.46227248 0.45011 -0.237026 9.88805 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000439101-0.00148541 -0.0369198 0.999317 uwb: 0.0 845.923 1003.5 +imu_odom_: 1691062770.60069191 0.407014 -0.229843 9.86411 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000439101-0.00148541 -0.0369198 0.999317 uwb: 0.50168549 846.016 1004.3 +imu_odom_: 1691062770.75108352 0.409408 -0.237026 9.88087 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.88056643 0.221503 0.00433448 0 -0.00111441 -0.00218716 -0.0369185 0.999315 uwb: 0.0 846.016 1004.3 +imu_odom_: 1691062770.90119516 0.440533 -0.229843 9.92875 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00111441 -0.00218716 -0.0369185 0.999315 uwb: 0.0 846.016 1004.3 +imu_odom_: 1691062770.103961459 0.438139 -0.225055 9.87848 -0.0575243 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00111441 -0.00218716 -0.0369185 0.999315 uwb: 0.49861444 845.848 1004.31 +imu_odom_: 1691062770.119114072 0.385466 -0.244209 9.88805 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.43847646 0.221503 0.00433448 0 -0.000547949-0.00183689 -0.0369146 0.999317 uwb: 0.0 845.848 1004.31 +imu_odom_: 1691062770.134154400 0.407014 -0.25618 9.91678 -0.056459 -0.00639159 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000547949-0.00183689 -0.0369146 0.999317 uwb: 0.0 845.848 1004.31 +imu_odom_: 1691062770.148060506 0.40462 -0.23942 9.88566 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000547949-0.00183689 -0.0369146 0.999317 uwb: 0.0 845.848 1004.31 +imu_odom_: 1691062770.162941302 0.414197 -0.246603 9.87129 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.43928724 0.221503 0.00433448 0 -0.00137083 -6.77339e-05-0.036908 0.999318 uwb: 0.49781532 845.952 1004.57 +imu_odom_: 1691062770.176948610 0.387861 -0.258574 9.89045 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00137083 -6.77339e-05-0.036908 0.999318 uwb: 0.0 845.952 1004.57 +imu_odom_: 1691062770.191997396 0.438139 -0.265756 9.89524 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00137083 -6.77339e-05-0.036908 0.999318 uwb: 0.0 845.952 1004.57 +imu_odom_: 1691062770.206085491 0.442927 -0.244209 9.89524 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.43110066 0.221503 0.00433448 0 -0.00231361 0.000120323 -0.0369074 0.999316 uwb: 0.49992394 846.128 1004.03 +imu_odom_: 1691062770.221094904 0.438139 -0.253785 9.87848 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00231361 0.000120323 -0.0369074 0.999316 uwb: 0.0 846.128 1004.03 +imu_odom_: 1691062770.235142752 0.428562 -0.232238 9.87129 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00231361 0.000120323 -0.0369074 0.999316 uwb: 0.0 846.128 1004.03 +imu_odom_: 1691062770.250081878 0.433351 -0.265756 9.89284 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.44027593 0.221503 0.00433448 0 -0.00241524 -0.00129646 -0.0369008 0.999315 uwb: 0.50133844 846.099 1004.7 +imu_odom_: 1691062770.265085166 0.397437 -0.246603 9.89284 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00241524 -0.00129646 -0.0369008 0.999315 uwb: 0.0 846.099 1004.7 +imu_odom_: 1691062770.279101516 0.411803 -0.241814 9.91439 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00241524 -0.00129646 -0.0369008 0.999315 uwb: 0.0 846.099 1004.7 +imu_odom_: 1691062770.294082639 0.438139 -0.251391 9.87369 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.44026718 0.221503 0.00433448 0 -0.00154605 -0.000382238-0.0368941 0.999318 uwb: 0.0 846.099 1004.7 +imu_odom_: 1691062770.308066615 0.414197 -0.246603 9.90002 -0.056459 -0.00639159 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00154605 -0.000382238-0.0368941 0.999318 uwb: 0.49994144 846.159 1004.3 +imu_odom_: 1691062770.323074862 0.423774 -0.232238 9.85693 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00154605 -0.000382238-0.0368941 0.999318 uwb: 0.0 846.159 1004.3 +imu_odom_: 1691062770.338069693 0.416591 -0.225055 9.89524 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.42853707 0.221503 0.00433448 0 -0.00125606 -0.00063304 -0.0368938 0.999318 uwb: 0.0 846.159 1004.3 +imu_odom_: 1691062770.353069482 0.416591 -0.229843 9.88326 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00125606 -0.00063304 -0.0368938 0.999318 uwb: 0.49993852 846.036 1004.17 +imu_odom_: 1691062770.366960422 0.409408 -0.268151 9.89284 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00125606 -0.00063304 -0.0368938 0.999318 uwb: 0.0 846.036 1004.17 +imu_odom_: 1691062770.382008333 0.426168 -0.241814 9.89284 -0.056459 -0.00745685 0.0394148 0 0 pose: 0.39097270 0.221503 0.00433448 0 -0.00108971 -0.00122662 -0.0368934 0.999318 uwb: 0.0 846.036 1004.17 +imu_odom_: 1691062770.396966999 0.423774 -0.251391 9.90242 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00108971 -0.00122662 -0.0368934 0.999318 uwb: 0.0 846.036 1004.17 +imu_odom_: 1691062770.411032637 0.426168 -0.222661 9.89763 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.5882556 0.221503 0.00433448 0 -0.0015958 -0.000921396-0.0368898 0.999318 uwb: 0.49882151 845.817 1004.84 +imu_odom_: 1691062770.426072090 0.395043 -0.258574 9.88087 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0015958 -0.000921396-0.0368898 0.999318 uwb: 0.0 845.817 1004.84 +imu_odom_: 1691062770.441129334 0.414197 -0.234632 9.8665 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0015958 -0.000921396-0.0368898 0.999318 uwb: 0.0 845.817 1004.84 +imu_odom_: 1691062770.455074521 0.462081 -0.251391 9.89045 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.43989970 0.221503 0.00433448 0 -0.00182537 -0.000867187-0.0368807 0.999318 uwb: 0.0 845.817 1004.84 +imu_odom_: 1691062770.470150722 0.440533 -0.246603 9.91199 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00182537 -0.000867187-0.0368807 0.999318 uwb: 0.0 845.817 1004.84 +imu_odom_: 1691062770.485128054 0.428562 -0.251391 9.88326 -0.0543285 -0.00213053 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00182537 -0.000867187-0.0368807 0.999318 uwb: 0.0 845.817 1004.84 +imu_odom_: 1691062770.499074408 0.402226 -0.241814 9.89524 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.44135795 0.221503 0.00433448 0 -0.0010413 -0.00127448 -0.0368737 0.999319 uwb: 0.0 845.817 1004.84 +imu_odom_: 1691062770.514135151 0.430956 -0.241814 9.89045 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0010413 -0.00127448 -0.0368737 0.999319 uwb: 0.99980414 845.689 1004.58 +imu_odom_: 1691062770.528928744 0.409408 -0.232238 9.89524 -0.0543285 -0.00639159 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0010413 -0.00127448 -0.0368737 0.999319 uwb: 0.0 845.689 1004.58 +imu_odom_: 1691062770.542932844 0.416591 -0.251391 9.8689 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.44061716 0.221503 0.00433448 0 -0.00134935 -0.000543166-0.0368752 0.999319 uwb: 0.0 845.689 1004.58 +imu_odom_: 1691062770.558084874 0.397437 -0.246603 9.8689 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00134935 -0.000543166-0.0368752 0.999319 uwb: 0.50148426 845.893 1004.98 +imu_odom_: 1691062770.573057540 0.399832 -0.263362 9.88566 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00134935 -0.000543166-0.0368752 0.999319 uwb: 0.0 845.893 1004.98 +imu_odom_: 1691062770.586908816 0.416591 -0.282516 9.89045 -0.0553937 -0.00532632 0.0415453 0 0 pose: 0.43850854 0.221503 0.00433448 0 -0.00125466 -0.000257561-0.0368636 0.999319 uwb: 0.0 845.893 1004.98 +imu_odom_: 1691062770.602060262 0.40462 -0.263362 9.89524 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00125466 -0.000257561-0.0368636 0.999319 uwb: 0.49978395 845.582 1004.99 +imu_odom_: 1691062770.616939891 0.414197 -0.244209 9.88566 -0.0543285 -0.00319579 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00125466 -0.000257561-0.0368636 0.999319 uwb: 0.0 845.582 1004.99 +imu_odom_: 1691062770.631057734 0.40462 -0.244209 9.88087 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.44077173 0.221503 0.00433448 0 -0.00323474 -0.000321539-0.0368494 0.999316 uwb: 0.0 845.582 1004.99 +imu_odom_: 1691062770.646056357 0.409408 -0.244209 9.84256 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00323474 -0.000321539-0.0368494 0.999316 uwb: 0.0 845.582 1004.99 +imu_odom_: 1691062770.660984400 0.414197 -0.246603 9.92875 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00323474 -0.000321539-0.0368494 0.999316 uwb: 0.50232421 845.534 1004.99 +imu_odom_: 1691062770.674985292 0.414197 -0.23942 9.90721 -0.0543285 -0.00319579 0.0383495 0 0 pose: 0.43992595 0.221503 0.00433448 0 -0.00147214 -0.000116089-0.0368531 0.99932 uwb: 0.0 845.534 1004.99 +imu_odom_: 1691062770.690109907 0.433351 -0.241814 9.93833 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00147214 -0.000116089-0.0368531 0.99932 uwb: 0.0 845.534 1004.99 +imu_odom_: 1691062770.705175025 0.407014 -0.253785 9.90481 -0.056459 -0.00532632 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00147214 -0.000116089-0.0368531 0.99932 uwb: 0.49758783 845.677 1004.98 +imu_odom_: 1691062770.718978179 0.430956 -0.263362 9.89045 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.43886727 0.221503 0.00433448 0 -0.00189647 -9.52827e-05-0.0368515 0.999319 uwb: 0.0 845.677 1004.98 +imu_odom_: 1691062770.733973885 0.426168 -0.227449 9.89284 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00189647 -9.52827e-05-0.0368515 0.999319 uwb: 0.0 845.677 1004.98 +imu_odom_: 1691062770.748972215 0.433351 -0.23942 9.91199 -0.0575243 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00189647 -9.52827e-05-0.0368515 0.999319 uwb: 0.0 845.677 1004.98 +imu_odom_: 1691062770.762981273 0.416591 -0.244209 9.89763 -0.0553937 -0.00639159 0.04048 0 0 pose: 0.43995803 0.221503 0.00433448 0 -0.00228111 -0.00101197 -0.0368677 0.999317 uwb: 0.49878943 845.892 1005.65 +imu_odom_: 1691062770.777918649 0.411803 -0.234632 9.87848 -0.056459 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00228111 -0.00101197 -0.0368677 0.999317 uwb: 0.0 845.892 1005.65 +imu_odom_: 1691062770.792983184 0.402226 -0.25618 9.90002 -0.0543285 -0.00532632 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00228111 -0.00101197 -0.0368677 0.999317 uwb: 0.0 845.892 1005.65 +imu_odom_: 1691062770.806930705 0.426168 -0.251391 9.85693 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.44041301 0.221503 0.00433448 0 -0.0013689 -0.00220542 -0.0368636 0.999317 uwb: 0.49997352 845.815 1005.52 +imu_odom_: 1691062770.822049778 0.392649 -0.23942 9.88087 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0013689 -0.00220542 -0.0368636 0.999317 uwb: 0.0 845.815 1005.52 +imu_odom_: 1691062770.837059191 0.407014 -0.251391 9.91199 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0013689 -0.00220542 -0.0368636 0.999317 uwb: 0.0 845.815 1005.52 +imu_odom_: 1691062770.851173243 0.433351 -0.237026 9.90481 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.43938932 0.221503 0.00433448 0 -0.00217949 -0.000407872-0.0368584 0.999318 uwb: 0.50300084 846.37 1005.63 +imu_odom_: 1691062770.866037123 0.37589 -0.241814 9.86172 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00217949 -0.000407872-0.0368584 0.999318 uwb: 0.0 846.37 1005.63 +imu_odom_: 1691062770.881037787 0.397437 -0.232238 9.90721 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00217949 -0.000407872-0.0368584 0.999318 uwb: 0.0 846.37 1005.63 +imu_odom_: 1691062770.895901668 0.397437 -0.241814 9.88087 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.44134628 0.221503 0.00433448 0 -0.00205672 -0.00097561 -0.0368522 0.999318 uwb: 0.0 846.37 1005.63 +imu_odom_: 1691062770.910910206 0.435745 -0.260968 9.90242 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00205672 -0.00097561 -0.0368522 0.999318 uwb: 0.49902566 846.365 1005.5 +imu_odom_: 1691062770.925964242 0.407014 -0.23942 9.86411 -0.0532632 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00205672 -0.00097561 -0.0368522 0.999318 uwb: 0.0 846.365 1005.5 +imu_odom_: 1691062770.940907451 0.445322 -0.246603 9.8689 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.58867267 0.221503 0.00433448 0 -0.00171697 -0.000213511-0.0368337 0.99932 uwb: 0.0 846.365 1005.5 +imu_odom_: 1691062770.955904907 0.40462 -0.246603 9.86411 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00171697 -0.000213511-0.0368337 0.99932 uwb: 0.50056265 846.236 1005.91 +imu_odom_: 1691062770.970955151 0.442927 -0.25618 9.91199 -0.0575243 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00171697 -0.000213511-0.0368337 0.99932 uwb: 0.0 846.236 1005.91 +imu_odom_: 1691062770.984948751 0.411803 -0.23942 9.8689 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.29989661 0.221503 0.00433448 0 -0.00123046 -0.000518809-0.0368449 0.99932 uwb: 0.0 846.236 1005.91 +imu_odom_: 1691062770.999953498 0.418985 -0.229843 9.88326 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.15049370 0.221503 0.00433448 0 -0.00155403 -0.000782271-0.0368428 0.99932 uwb: 0.49761409 846.093 1005.91 +imu_odom_: 1691062771.13891686 0.409408 -0.244209 9.87129 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00155403 -0.000782271-0.0368428 0.99932 uwb: 0.0 846.093 1005.91 +imu_odom_: 1691062771.28937264 0.447716 -0.272939 9.8665 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00155403 -0.000782271-0.0368428 0.99932 uwb: 0.0 846.093 1005.91 +imu_odom_: 1691062771.42877202 0.40462 -0.253785 9.90721 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.30002786 0.221503 0.00433448 0 -0.00167471 -0.000890505-0.036833 0.99932 uwb: 0.0 846.093 1005.91 +imu_odom_: 1691062771.57933280 0.416591 -0.263362 9.87608 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00167471 -0.000890505-0.036833 0.99932 uwb: 0.50009019 845.783 1005.92 +imu_odom_: 1691062771.71931256 0.416591 -0.248997 9.8689 -0.056459 -0.00319579 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00167471 -0.000890505-0.036833 0.99932 uwb: 0.0 845.783 1005.92 +imu_odom_: 1691062771.85872652 0.426168 -0.23942 9.89763 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.42988449 0.221503 0.00433448 0 -0.00173235 -0.000916778-0.0368404 0.999319 uwb: 0.0 845.783 1005.92 +imu_odom_: 1691062771.100876233 0.399832 -0.258574 9.88805 -0.056459 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00173235 -0.000916778-0.0368404 0.999319 uwb: 0.49937566 845.606 1005.66 +imu_odom_: 1691062771.114869542 0.428562 -0.25618 9.88805 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00173235 -0.000916778-0.0368404 0.999319 uwb: 0.0 845.606 1005.66 +imu_odom_: 1691062771.129868165 0.428562 -0.222661 9.89045 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.43985014 0.221503 0.00433448 0 -0.00261687 -0.000948619-0.0368355 0.999317 uwb: 0.0 845.606 1005.66 +imu_odom_: 1691062771.143927096 0.423774 -0.25618 9.87369 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00261687 -0.000948619-0.0368355 0.999317 uwb: 0.0 845.606 1005.66 +imu_odom_: 1691062771.157926530 0.433351 -0.248997 9.89045 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00261687 -0.000948619-0.0368355 0.999317 uwb: 0.49998521 845.553 1005.53 +imu_odom_: 1691062771.172869448 0.416591 -0.251391 9.88326 -0.056459 -0.00532632 0.04048 0 0 pose: 0.42943244 0.221503 0.00433448 0 -0.00201729 -0.000910318-0.0368356 0.999319 uwb: 0.0 845.553 1005.53 +imu_odom_: 1691062771.187869529 0.428562 -0.268151 9.92636 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00201729 -0.000910318-0.0368356 0.999319 uwb: 0.0 845.553 1005.53 +imu_odom_: 1691062771.201920585 0.407014 -0.229843 9.88087 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00201729 -0.000910318-0.0368356 0.999319 uwb: 0.50126263 845.65 1004.85 +imu_odom_: 1691062771.217045492 0.42138 -0.25618 9.84496 -0.0553937 -0.00213053 0.0394148 0 0 pose: 0.42995158 0.221503 0.00433448 0 -0.00186008 -0.0014255 -0.0368413 0.999318 uwb: 0.0 845.65 1004.85 +imu_odom_: 1691062771.231893624 0.447716 -0.258574 9.87369 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00186008 -0.0014255 -0.0368413 0.999318 uwb: 0.0 845.65 1004.85 +imu_odom_: 1691062771.246020508 0.426168 -0.248997 9.91439 -0.0532632 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00186008 -0.0014255 -0.0368413 0.999318 uwb: 0.0 845.65 1004.85 +imu_odom_: 1691062771.261018840 0.416591 -0.251391 9.93115 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.43995513 0.221503 0.00433448 0 -0.00265561 -0.00116867 -0.0368475 0.999317 uwb: 0.50119846 845.143 1005.41 +imu_odom_: 1691062771.276014254 0.418985 -0.229843 9.92157 -0.0553937 -0.00319579 0.0415453 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00265561 -0.00116867 -0.0368475 0.999317 uwb: 0.0 845.143 1005.41 +imu_odom_: 1691062771.291147911 0.416591 -0.244209 9.92875 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.44029345 0.221503 0.00433448 0 -0.00204597 -0.00169396 -0.0368558 0.999317 uwb: 0.0 845.143 1005.41 +imu_odom_: 1691062771.305922547 0.416591 -0.244209 9.87848 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00204597 -0.00169396 -0.0368558 0.999317 uwb: 0.49882736 844.847 1005.15 +imu_odom_: 1691062771.320911254 0.433351 -0.248997 9.87369 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00204597 -0.00169396 -0.0368558 0.999317 uwb: 0.0 844.847 1005.15 +imu_odom_: 1691062771.335041055 0.426168 -0.248997 9.89284 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.44122672 0.221503 0.00433448 0 -0.0017608 -0.000725468-0.0368449 0.999319 uwb: 0.0 844.847 1005.15 +imu_odom_: 1691062771.349930310 0.409408 -0.225055 9.92636 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0017608 -0.000725468-0.0368449 0.999319 uwb: 0.49878945 844.919 1005.14 +imu_odom_: 1691062771.364892768 0.445322 -0.248997 9.89763 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0017608 -0.000725468-0.0368449 0.999319 uwb: 0.0 844.919 1005.14 +imu_odom_: 1691062771.378910576 0.395043 -0.237026 9.91678 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.45081322 0.221503 0.00433448 0 -0.00182812 -0.00121284 -0.0368298 0.999319 uwb: 0.0 844.919 1005.14 +imu_odom_: 1691062771.393877409 0.430956 -0.244209 9.90242 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00182812 -0.00121284 -0.0368298 0.999319 uwb: 0.0 844.919 1005.14 +imu_odom_: 1691062771.408940487 0.409408 -0.241814 9.91678 -0.0532632 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00182812 -0.00121284 -0.0368298 0.999319 uwb: 0.0 844.919 1005.14 +imu_odom_: 1691062771.422884508 0.407014 -0.205901 9.87369 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.43920268 0.221503 0.00433448 0 -0.00112719 -0.000727374-0.0368276 0.999321 uwb: 0.0 844.919 1005.14 +imu_odom_: 1691062771.437940294 0.409408 -0.246603 9.89045 -0.0553937 -0.00745685 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00112719 -0.000727374-0.0368276 0.999321 uwb: 0.0 844.919 1005.14 +imu_odom_: 1691062771.452884087 0.423774 -0.248997 9.8665 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00112719 -0.000727374-0.0368276 0.999321 uwb: 0.100049246 844.904 1005.42 +imu_odom_: 1691062771.466889645 0.433351 -0.25618 9.92636 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.43856980 0.221503 0.00433448 0 -0.0007339012.13329e-06 -0.0368301 0.999321 uwb: 0.0 844.904 1005.42 +imu_odom_: 1691062771.481930849 0.414197 -0.251391 9.89524 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0007339012.13329e-06 -0.0368301 0.999321 uwb: 0.0 844.904 1005.42 +imu_odom_: 1691062771.496865892 0.392649 -0.232238 9.89045 -0.0553937 -0.00532632 0.0415453 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0007339012.13329e-06 -0.0368301 0.999321 uwb: 0.0 844.904 1005.42 +imu_odom_: 1691062771.510851911 0.418985 -0.248997 9.88087 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.44054135 0.221503 0.00433448 0 -0.00238182 -0.00106707 -0.0368305 0.999318 uwb: 0.49981313 845.164 1004.6 +imu_odom_: 1691062771.525963985 0.433351 -0.258574 9.88087 -0.0532632 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00238182 -0.00106707 -0.0368305 0.999318 uwb: 0.0 845.164 1004.6 +imu_odom_: 1691062771.540918277 0.407014 -0.263362 9.89045 -0.056459 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00238182 -0.00106707 -0.0368305 0.999318 uwb: 0.0 845.164 1004.6 +imu_odom_: 1691062771.554866381 0.407014 -0.246603 9.91918 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.43937183 0.221503 0.00433448 0 -0.00112532 0.000287349 -0.0368091 0.999322 uwb: 0.50115472 845.145 1004.73 +imu_odom_: 1691062771.569918667 0.42138 -0.251391 9.91199 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00112532 0.000287349 -0.0368091 0.999322 uwb: 0.0 845.145 1004.73 +imu_odom_: 1691062771.584920790 0.418985 -0.253785 9.8689 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00112532 0.000287349 -0.0368091 0.999322 uwb: 0.0 845.145 1004.73 +imu_odom_: 1691062771.599852334 0.395043 -0.215478 9.85693 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.44059968 0.221503 0.00433448 0 -0.00190396 -0.000145043-0.036788 0.999321 uwb: 0.49672457 844.838 1004.88 +imu_odom_: 1691062771.614855331 0.411803 -0.237026 9.87608 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00190396 -0.000145043-0.036788 0.999321 uwb: 0.0 844.838 1004.88 +imu_odom_: 1691062771.629025088 0.423774 -0.241814 9.87608 -0.056459 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00190396 -0.000145043-0.036788 0.999321 uwb: 0.0 844.838 1004.88 +imu_odom_: 1691062771.643858638 0.40462 -0.237026 9.89045 -0.0532632 -0.00319579 0.0394148 0 0 pose: 0.43925518 0.221503 0.00433448 0 -0.0009934830.00027355 -0.036778 0.999323 uwb: 0.0 844.838 1004.88 +imu_odom_: 1691062771.658912674 0.423774 -0.263362 9.8689 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0009934830.00027355 -0.036778 0.999323 uwb: 0.50141429 844.828 1005.96 +imu_odom_: 1691062771.672909192 0.414197 -0.248997 9.84256 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0009934830.00027355 -0.036778 0.999323 uwb: 0.0 844.828 1005.96 +imu_odom_: 1691062771.688024474 0.402226 -0.232238 9.85453 -0.056459 -0.00426106 0.04048 0 0 pose: 0.44061134 0.221503 0.00433448 0 -0.00151664 -0.00130782 -0.0367902 0.999321 uwb: 0.0 844.828 1005.96 +imu_odom_: 1691062771.702855982 0.395043 -0.229843 9.91439 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00151664 -0.00130782 -0.0367902 0.999321 uwb: 0.50160677 844.59 1005.97 +imu_odom_: 1691062771.717008532 0.414197 -0.258574 9.86411 -0.056459 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00151664 -0.00130782 -0.0367902 0.999321 uwb: 0.0 844.59 1005.97 +imu_odom_: 1691062771.732052069 0.438139 -0.234632 9.88087 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.82086013 0.221503 0.00433448 0 -0.00259448 -0.000855684-0.0367737 0.99932 uwb: 0.0 844.59 1005.97 +imu_odom_: 1691062771.746999362 0.409408 -0.241814 9.93354 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.6035964 0.221503 0.00433448 0 -0.0020723 -0.00116263 -0.0367755 0.999321 uwb: 0.0 844.59 1005.97 +imu_odom_: 1691062771.760988880 0.418985 -0.246603 9.89524 -0.0543285 -0.00639159 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0020723 -0.00116263 -0.0367755 0.999321 uwb: 0.49833156 844.82 1006.91 +imu_odom_: 1691062771.775990711 0.430956 -0.237026 9.88805 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0020723 -0.00116263 -0.0367755 0.999321 uwb: 0.0 844.82 1006.91 +imu_odom_: 1691062771.790991667 0.430956 -0.241814 9.89524 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.37944384 0.221503 0.00433448 0 -0.00193122 -0.00143224 -0.0367727 0.999321 uwb: 0.0 844.82 1006.91 +imu_odom_: 1691062771.805268167 0.433351 -0.244209 9.88326 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00193122 -0.00143224 -0.0367727 0.999321 uwb: 0.50128304 844.271 1006.94 +imu_odom_: 1691062771.819984766 0.433351 -0.237026 9.90002 -0.056459 -0.00319579 0.0415453 0 0 pose: 0.21012129 0.221503 0.00433448 0 -0.00103445 -0.00135008 -0.0367757 0.999322 uwb: 0.0 844.271 1006.94 +imu_odom_: 1691062771.834857105 0.430956 -0.234632 9.87129 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00103445 -0.00135008 -0.0367757 0.999322 uwb: 0.0 844.271 1006.94 +imu_odom_: 1691062771.848994780 0.407014 -0.244209 9.90481 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00103445 -0.00135008 -0.0367757 0.999322 uwb: 0.0 844.271 1006.94 +imu_odom_: 1691062771.863858662 0.402226 -0.229843 9.89284 -0.052198 -0.00532632 0.0383495 0 0 pose: 0.28994266 0.221503 0.00433448 0 -0.00107953 -0.00154866 -0.0367648 0.999322 uwb: 0.49738370 844.177 1006.4 +imu_odom_: 1691062771.878984735 0.457293 -0.234632 9.95509 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.29875336 0.221503 0.00433448 0 -0.000820368-0.00103939 -0.0367576 0.999323 uwb: 0.0 844.177 1006.4 +imu_odom_: 1691062771.892981836 0.416591 -0.232238 9.87369 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000820368-0.00103939 -0.0367576 0.999323 uwb: 0.0 844.177 1006.4 +imu_odom_: 1691062771.907929129 0.402226 -0.222661 9.90242 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000820368-0.00103939 -0.0367576 0.999323 uwb: 0.50134137 843.83 1006.68 +imu_odom_: 1691062771.923039745 0.42138 -0.222661 9.89524 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.14009934 0.221503 0.00433448 0 -0.00085943 -8.34339e-06-0.0367606 0.999324 uwb: 0.0 843.83 1006.68 +imu_odom_: 1691062771.937105966 0.428562 -0.241814 9.85932 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00085943 -8.34339e-06-0.0367606 0.999324 uwb: 0.0 843.83 1006.68 +imu_odom_: 1691062771.951984138 0.40462 -0.260968 9.87129 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00085943 -8.34339e-06-0.0367606 0.999324 uwb: 0.49964398 843.627 1006.96 +imu_odom_: 1691062771.966999385 0.395043 -0.227449 9.91199 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.44173711 0.221503 0.00433448 0 -0.00115719 -3.17541e-05-0.0367567 0.999324 uwb: 0.0 843.627 1006.96 +imu_odom_: 1691062771.981036150 0.440533 -0.253785 9.88326 -0.056459 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00115719 -3.17541e-05-0.0367567 0.999324 uwb: 0.0 843.627 1006.96 +imu_odom_: 1691062771.996098061 0.423774 -0.260968 9.87129 -0.056459 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00115719 -3.17541e-05-0.0367567 0.999324 uwb: 0.0 843.627 1006.96 +imu_odom_: 1691062772.10984983 0.423774 -0.234632 9.90242 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.43993763 0.221503 0.00433448 0 -0.00213693 -0.000621598-0.0367525 0.999322 uwb: 0.50051017 844.052 1006.26 +imu_odom_: 1691062772.25040122 0.407014 -0.260968 9.86411 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00213693 -0.000621598-0.0367525 0.999322 uwb: 0.0 844.052 1006.26 +imu_odom_: 1691062772.40032330 0.399832 -0.248997 9.89524 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.43944767 0.221503 0.00433448 0 -0.00218238 -0.000931442-0.0367545 0.999322 uwb: 0.0 844.052 1006.26 +imu_odom_: 1691062772.55048160 0.390255 -0.241814 9.91439 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00218238 -0.000931442-0.0367545 0.999322 uwb: 0.50030896 844.523 1006.11 +imu_odom_: 1691062772.69028638 0.409408 -0.227449 9.89763 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00218238 -0.000931442-0.0367545 0.999322 uwb: 0.0 844.523 1006.11 +imu_odom_: 1691062772.83852564 0.411803 -0.248997 9.93833 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.44101091 0.221503 0.00433448 0 -0.00192478 0.000182563 -0.0367513 0.999323 uwb: 0.0 844.523 1006.11 +imu_odom_: 1691062772.98861686 0.428562 -0.229843 9.88566 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00192478 0.000182563 -0.0367513 0.999323 uwb: 0.49830241 844.755 1006.51 +imu_odom_: 1691062772.113038735 0.407014 -0.232238 9.88087 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00192478 0.000182563 -0.0367513 0.999323 uwb: 0.0 844.755 1006.51 +imu_odom_: 1691062772.127848370 0.407014 -0.260968 9.88566 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.43781444 0.221503 0.00433448 0 -0.00156835 -8.31045e-05-0.0367447 0.999323 uwb: 0.0 844.755 1006.51 +imu_odom_: 1691062772.142971819 0.418985 -0.201113 9.88326 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00156835 -8.31045e-05-0.0367447 0.999323 uwb: 0.0 844.755 1006.51 +imu_odom_: 1691062772.156869468 0.416591 -0.234632 9.88326 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00156835 -8.31045e-05-0.0367447 0.999323 uwb: 0.50113724 844.564 1007.06 +imu_odom_: 1691062772.171939546 0.407014 -0.244209 9.89524 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.44106634 0.221503 0.00433448 0 -0.00153988 -1.61067e-05-0.0367425 0.999324 uwb: 0.0 844.564 1007.06 +imu_odom_: 1691062772.186932045 0.416591 -0.244209 9.85932 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00153988 -1.61067e-05-0.0367425 0.999324 uwb: 0.0 844.564 1007.06 +imu_odom_: 1691062772.201867964 0.399832 -0.25618 9.88326 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00153988 -1.61067e-05-0.0367425 0.999324 uwb: 0.49995606 844.433 1007.34 +imu_odom_: 1691062772.216891086 0.411803 -0.253785 9.90002 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.43978891 0.221503 0.00433448 0 -0.00159446 -0.00107276 -0.0367439 0.999323 uwb: 0.0 844.433 1007.34 +imu_odom_: 1691062772.230964599 0.414197 -0.25618 9.89524 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00159446 -0.00107276 -0.0367439 0.999323 uwb: 0.0 844.433 1007.34 +imu_odom_: 1691062772.246021261 0.438139 -0.241814 9.88326 -0.0553937 -0.00426106 0.0415453 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00159446 -0.00107276 -0.0367439 0.999323 uwb: 0.0 844.433 1007.34 +imu_odom_: 1691062772.260957471 0.414197 -0.220267 9.92157 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.45040200 0.221503 0.00433448 0 -0.00213357 -0.000833318-0.036734 0.999322 uwb: 0.50100016 844.486 1006.93 +imu_odom_: 1691062772.274946990 0.42138 -0.265756 9.91199 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00213357 -0.000833318-0.036734 0.999322 uwb: 0.0 844.486 1006.93 +imu_odom_: 1691062772.289943280 0.45011 -0.241814 9.89045 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00213357 -0.000833318-0.036734 0.999322 uwb: 0.0 844.486 1006.93 +imu_odom_: 1691062772.304940154 0.409408 -0.258574 9.89763 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.44113925 0.221503 0.00433448 0 -0.00104629 -0.00125954 -0.0367236 0.999324 uwb: 0.49942234 844.939 1006.91 +imu_odom_: 1691062772.318811846 0.435745 -0.263362 9.89524 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00104629 -0.00125954 -0.0367236 0.999324 uwb: 0.0 844.939 1006.91 +imu_odom_: 1691062772.340880328 0.457293 -0.232238 9.92636 -0.0543285 -0.00319579 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00104629 -0.00125954 -0.0367236 0.999324 uwb: 0.0 844.939 1006.91 +imu_odom_: 1691062772.357985239 -0.0574608 -0.332794 9.75158 -0.0660464 0.036219 -0.00213053 0 0 pose: 0.43959934 0.221503 0.00433448 0 -0.00170833 -0.00167187 -0.0367168 0.999323 uwb: 0.49843949 845.273 1006.89 +imu_odom_: 1691062772.375087817 -0.258574 -0.0311246 10.2208 -0.0415453 0.0213053 -0.120375 0.02 0.02 pose: 0.0 0.221503 0.00433448 0 -0.00170833 -0.00167187 -0.0367168 0.999323 uwb: 0.0 845.273 1006.89 +imu_odom_: 1691062772.392082194 -1.26653 0.1652 9.36612 -0.0639159 0.0276969 -0.0575243 0.02 0.02 pose: 0.70026921 0.221503 0.00433448 0 -0.0008170160.000108292 -0.0377057 0.999289 uwb: 0.0 845.273 1006.89 +imu_odom_: 1691062772.408001261 -0.952892 -0.912191 10.0413 -0.092678 -0.0308927 0.0756338 0.05 0.05 pose: 0.0 0.221503 0.00433448 0 -0.0008170160.000108292 -0.0377057 0.999289 uwb: 0.50111682 845.112 1007.04 +imu_odom_: 1691062772.425037926 -0.11971 -0.849942 9.87608 -0.0447411 -0.0820254 0.0692422 0.05 0.05 pose: 0.0 0.221503 0.00433448 0 -0.0008170160.000108292 -0.0377057 0.999289 uwb: 0.0 845.112 1007.04 +imu_odom_: 1691062772.441985055 0.4956 0.102951 9.93594 -0.0511327 -0.0383495 0.0969391 0.05 0.05 pose: 0.33912340 0.22973 0.0100186 0 -0.0005641530.00359875 -0.0391039 0.999229 uwb: 0.0 845.112 1007.04 +imu_odom_: 1691062772.456975804 0.304064 0.258574 9.66539 -0.0735032 0.0223706 0.126766 0.06 0.02 pose: 0.41970889 0.235391 0.00177518 0 -0.0008245880.0035056 -0.038221 0.999263 uwb: 0.50057144 845.13 1006.9 +imu_odom_: 1691062772.473136065 0.196325 -0.3304 10.2472 -0.0639159 0.0276969 0.0852212 0.06 0.02 pose: 0.7001322 0.235391 0.00177518 0 -0.0001834830.00362122 -0.0379134 0.999274 uwb: 0.0 845.13 1006.9 +imu_odom_: 1691062772.488131189 -0.335188 -0.213084 9.47864 -0.0681769 0.0138484 0.0458064 0.06 0.02 pose: 0.0 0.235391 0.00177518 0 -0.0001834830.00362122 -0.0379134 0.999274 uwb: 0.0 845.13 1006.9 +imu_odom_: 1691062772.505197602 0.0909797 -0.237026 9.98382 -0.072438 -0.00426106 0.0756338 0.08 0.05 pose: 0.39144812 0.235391 0.00177518 0 -0.0005773650.00686525 -0.0371492 0.999286 uwb: 0.50188385 845.166 1007.17 +imu_odom_: 1691062772.519074836 0.0885855 -0.505177 9.83299 -0.076699 -0.015979 0.0916127 0.09 0.02 pose: 0.0 0.235391 0.00177518 0 -0.0005773650.00686525 -0.0371492 0.999286 uwb: 0.0 845.166 1007.17 +imu_odom_: 1691062772.534077834 0.399832 -0.373495 10.1035 -0.0639159 -0.0213053 0.0852212 0.09 0.02 pose: 0.0 0.235391 0.00177518 0 -0.0005773650.00686525 -0.0371492 0.999286 uwb: 0.0 845.166 1007.17 +imu_odom_: 1691062772.550949718 0.0933739 -0.263362 9.36612 -0.0596548 -0.00106526 0.0713727 0.09 0.02 pose: 0.23014299 0.235391 0.00177518 0 -0.00128906 0.008852 -0.0366881 0.999287 uwb: 0.49736622 845.363 1006.75 +imu_odom_: 1691062772.568954366 0.0957681 -0.155623 9.51456 -0.0458064 -0.0106526 0.076699 0.14 0.02 pose: 0.0 0.235391 0.00177518 0 -0.00128906 0.008852 -0.0366881 0.999287 uwb: 0.0 845.363 1006.75 +imu_odom_: 1691062772.583077751 0.246603 -0.244209 10.2113 -0.0575243 0.0149137 0.0841559 0.14 0.02 pose: 0.0 0.235391 0.00177518 0 -0.00128906 0.008852 -0.0366881 0.999287 uwb: 0.0 845.363 1006.75 +imu_odom_: 1691062772.598934405 0.23942 -0.280122 10.1562 -0.052198 0.00852212 0.0777643 0.11 0.02 pose: 0.71932263 0.243657 0.00740406 0 -0.00134369 0.00951067 -0.0352165 0.999334 uwb: 0.0 845.363 1006.75 +imu_odom_: 1691062772.614928718 0.1652 -0.368707 9.61272 -0.0436758 -0.0415453 0.0671117 0.11 0.02 pose: 0.0 0.243657 0.00740406 0 -0.00134369 0.00951067 -0.0352165 0.999334 uwb: 0.49876030 845.645 1006.07 +imu_odom_: 1691062772.631927177 0.517148 -0.0909797 9.62708 -0.0479369 -0.0511327 0.105461 0.11 0.02 pose: 0.0 0.243657 0.00740406 0 -0.00134369 0.00951067 -0.0352165 0.999334 uwb: 0.0 845.645 1006.07 +imu_odom_: 1691062772.648927970 0.823605 -0.371101 9.94791 -0.0585895 0.00532632 0.173638 0.09 0 pose: 0.6772377 0.243657 0.00740406 0 -0.00186864 0.00914152 -0.0350932 0.99934 uwb: 0.50237675 845.654 1005.66 +imu_odom_: 1691062772.665920304 1.25456 -0.708684 10.1418 -0.052198 -0.0426106 0.165116 0.09 0 pose: 0.0 0.243657 0.00740406 0 -0.00186864 0.00914152 -0.0350932 0.99934 uwb: 0.0 845.654 1005.66 +imu_odom_: 1691062772.682041193 1.28569 -0.150835 9.44034 -0.036219 0.00426106 0.0585895 0.09 0 pose: 0.0 0.243657 0.00740406 0 -0.00186864 0.00914152 -0.0350932 0.99934 uwb: 0.0 845.654 1005.66 +imu_odom_: 1691062772.698933783 0.85473 0.318429 10.0365 -0.0553937 0.0298274 0.0575243 0.1 -0.02 pose: 0.49956525 0.249301 -0.0008506640 -0.00292043 0.00679392 -0.0336279 0.999407 uwb: 0.0 845.654 1005.66 +imu_odom_: 1691062772.715857872 0.529119 -0.342371 9.8665 -0.076699 -0.00319579 0.0639159 0.06 0.02 pose: 0.0 0.249301 -0.0008506640 -0.00292043 0.00679392 -0.0336279 0.999407 uwb: 0.0 845.654 1005.66 +imu_odom_: 1691062772.731851601 0.852336 -0.402226 10.0078 -0.056459 -0.0266316 0.0170442 0.06 0.02 pose: 0.67009814 0.257539 0.00481792 0 -0.00269174 0.00104393 -0.0315733 0.999497 uwb: 0.0 845.654 1005.66 +imu_odom_: 1691062772.747794000 0.840365 -0.241814 9.77074 -0.0426106 -0.0181095 0.0170442 0.06 0.02 pose: 0.0 0.257539 0.00481792 0 -0.00269174 0.00104393 -0.0315733 0.999497 uwb: 0.0 845.654 1005.66 +imu_odom_: 1691062772.763794146 0.90022 -0.126893 9.96467 -0.0575243 0 0.0532632 0.05 0.02 pose: 0.0 0.257539 0.00481792 0 -0.00269174 0.00104393 -0.0315733 0.999497 uwb: 0.99935798 845.792 1005.52 +imu_odom_: 1691062772.779854954 0.550666 -0.428562 9.74919 -0.056459 0.00532632 0.0553937 0.05 0.02 pose: 0.31984542 0.257539 0.00481792 0 -0.00362393 -0.00218674 -0.0317309 0.999487 uwb: 0.0 845.792 1005.52 +imu_odom_: 1691062772.796947616 0.596156 -0.258574 10.0078 -0.0468716 -0.00745685 0.0191748 0.04 0.02 pose: 0.41053945 0.257539 0.00481792 0 -0.00456531 -0.00505095 -0.0316002 0.999477 uwb: 0.0 845.792 1005.52 +imu_odom_: 1691062772.814806148 0.682347 -0.117316 9.83538 -0.0532632 -0.015979 0.0308927 0.04 0.02 pose: 0.0 0.257539 0.00481792 0 -0.00456531 -0.00505095 -0.0316002 0.999477 uwb: 0.49927652 845.754 1005.12 +imu_odom_: 1691062772.832058342 0.711078 -0.287304 9.91199 -0.0596548 0.00319579 0.0426106 0.04 0.02 pose: 0.0 0.257539 0.00481792 0 -0.00456531 -0.00505095 -0.0316002 0.999477 uwb: 0.0 845.754 1005.12 +imu_odom_: 1691062772.857927300 0.311246 -0.234632 9.88087 -0.0511327 0.0138484 0.04048 0.03 0.02 pose: 0.8057090 0.257539 0.00481792 0 -0.00420684 -0.005803 -0.031687 0.999472 uwb: 0.50014271 846.442 1004.16 +imu_odom_: 1691062772.881823837 -0.672771 -0.289698 9.60554 -0.056459 0.0852212 0.0788296 0.03 0.02 pose: 0.70015256 0.263238 -0.00339959 0 -0.00247794 -0.00679743 -0.0318348 0.999467 uwb: 0.0 846.442 1004.16 +imu_odom_: 1691062772.908820892 -1.30963 -0.349553 9.84975 -0.0436758 -0.0383495 0.0649811 0.07 0.02 pose: 0.0 0.263238 -0.00339959 0 -0.00247794 -0.00679743 -0.0318348 0.999467 uwb: 0.50004356 846.712 1004.42 +imu_odom_: 1691062772.925116478 -0.246603 -0.0287304 9.80665 -0.0511327 -0.076699 0.0511327 0.07 0.02 pose: 0.30946855 0.263238 -0.00339959 0 -0.00242376 -0.00275293 -0.0312717 0.999504 uwb: 0.0 846.712 1004.42 +imu_odom_: 1691062772.951819260 0.629675 -0.335188 9.70849 -0.0596548 -0.0245011 0.0756338 0.11 0.02 pose: 0.0 0.263238 -0.00339959 0 -0.00242376 -0.00275293 -0.0312717 0.999504 uwb: 0.49986565 846.452 1003.62 +imu_odom_: 1691062772.977773963 -0.0670376 -0.260968 9.87608 -0.0458064 0.0436758 0.02024 0.11 0.02 pose: 0.43069530 0.271449 0.00230823 0 -0.00204742 -0.000860692-0.0307919 0.999523 uwb: 0.0 846.452 1003.62 +imu_odom_: 1691062772.994898414 -0.0837971 -0.282516 9.95509 -0.0777643 -0.0298274 0.0703074 0.14 0 pose: 0.0 0.271449 0.00230823 0 -0.00204742 -0.000860692-0.0307919 0.999523 uwb: 0.0 846.452 1003.62 +imu_odom_: 1691062773.10837022 0.0670376 -0.0694318 9.61272 -0.0873517 -0.0468716 0.0692422 0.14 0 pose: 0.45830278 0.271449 0.00230823 0 -0.00261392 0.000323725 -0.0306816 0.999526 uwb: 0.49850073 846.924 1003.34 +imu_odom_: 1691062773.36766353 0.186748 -0.325611 9.98861 -0.0980043 -0.0138484 0.0575243 0.15 0.02 pose: 0.0 0.271449 0.00230823 0 -0.00261392 0.000323725 -0.0306816 0.999526 uwb: 0.0 846.924 1003.34 +imu_odom_: 1691062773.62852298 0.1652 -0.509965 10.2352 -0.0468716 -0.0149137 0.0426106 0.15 0.02 pose: 0.41036446 0.271449 0.00230817 0 -0.00261585 0.00351147 -0.0300974 0.999537 uwb: 0.50009315 846.937 1002.81 +imu_odom_: 1691062773.89901268 0.42138 -0.167594 9.90002 -0.0276969 -0.0340885 0.0415453 0.15 0 pose: 0.44041889 0.285348 -0.0003018870 -0.00569537 0.00642482 -0.0298989 0.999516 uwb: 0.0 846.937 1002.81 +imu_odom_: 1691062773.114819160 0.301669 -0.11971 9.93594 -0.0394148 -0.0553937 0.0447411 0.15 0 pose: 0.6953200 0.285348 -0.0003018870 -0.00509014 0.00584682 -0.0298916 0.999523 uwb: 0.50125392 846.684 1001.87 +imu_odom_: 1691062773.131826078 0.227449 -0.131681 10.1394 -0.0383495 -0.00958738 0.0394148 0.15 -0.02 pose: 0.0 0.285348 -0.0003018870 -0.00509014 0.00584682 -0.0298916 0.999523 uwb: 0.0 846.684 1001.87 +imu_odom_: 1691062773.147822141 0.380678 -0.007182619.99579 -0.0500674 -0.0213053 0.0436758 0.15 -0.02 pose: 0.45013662 0.285348 -0.0003018870 -0.0006777110.00378518 -0.0297939 0.999549 uwb: 0.0 846.684 1001.87 +imu_odom_: 1691062773.174801115 0.730232 -0.368707 10.4507 -0.0458064 -0.0458064 0.0426106 0.19 0 pose: 0.0 0.285348 -0.0003018870 -0.0006777110.00378518 -0.0297939 0.999549 uwb: 0.50131807 846.846 1001.34 +imu_odom_: 1691062773.199805627 -0.0502782 -0.438139 9.25359 -0.0468716 0.0394148 0.04048 0.19 0 pose: 0.33002981 0.296418 0.00123019 0 0.00221302 0.00416007 -0.0297501 0.999546 uwb: 0.50058896 847.007 1000 +imu_odom_: 1691062773.216792421 0.114922 -0.160412 9.83299 -0.0383495 -0.0266316 0.0585895 0.17 -0.02 pose: 0.0 0.296418 0.00123019 0 0.00221302 0.00416007 -0.0297501 0.999546 uwb: 0.0 847.007 1000 +imu_odom_: 1691062773.241756977 0.00718261 -0.129287 10.1801 -0.0479369 0.00426106 0.036219 0.17 -0.02 pose: 0.59020972 0.299249 -0.00290291 0 0.000308946 0.00454539 -0.0296356 0.99955 uwb: 0.0 847.007 1000 +imu_odom_: 1691062773.268857277 -0.270545 -0.035913 9.99579 -0.0649811 -0.0372843 0.0692422 0.18 0.02 pose: 0.34913864 0.307498 0.00274946 0 0.0014707 0.00788964 -0.0295799 0.99953 uwb: 0.49807494 847.009 999.332 +imu_odom_: 1691062773.284894171 0.234632 -0.371101 10.0868 -0.0660464 -0.0308927 0.0713727 0.18 0.02 pose: 0.7008905 0.307498 0.00274946 0 0.00165481 0.00844058 -0.029475 0.999529 uwb: 0.0 847.009 999.332 +imu_odom_: 1691062773.311916601 0.244209 -0.0790087 10.1873 -0.0426106 0.00852212 0.0330232 0.2 0 pose: 0.0 0.307498 0.00274946 0 0.00165481 0.00844058 -0.029475 0.999529 uwb: 0.49885656 846.77 999.331 +imu_odom_: 1691062773.329033471 0.306458 -0.292093 9.32302 -0.0735032 0 0.0671117 0.2 0 pose: 0.36128289 0.313154 -0.00549788 0 0.00050459 0.00958983 -0.0289345 0.999535 uwb: 0.0 846.77 999.331 +imu_odom_: 1691062773.344412988 0.167594 -0.287304 10.0054 -0.0607201 -0.0117179 0.0468716 0.16 -0.02 pose: 0.0 0.313154 -0.00549788 0 0.00050459 0.00958983 -0.0289345 0.999535 uwb: 0.0 846.77 999.331 +imu_odom_: 1691062773.368885532 0.158017 -0.0215478 9.68694 -0.0490022 0.0298274 0.036219 0.16 -0.02 pose: 0.50941717 0.321338 0.000248027 0 0.00102683 0.00866107 -0.0287542 0.999548 uwb: 0.50008149 846.864 999.599 +imu_odom_: 1691062773.395755722 0.354342 -0.519542 9.54808 -0.0660464 0.0276969 0.0543285 0.22 0.02 pose: 0.0 0.321338 0.000248027 0 0.00102683 0.00866107 -0.0287542 0.999548 uwb: 0.0 846.864 999.599 +imu_odom_: 1691062773.411748577 0.512359 -0.21069 9.24641 -0.0436758 0.0234358 0.036219 0.22 0.02 pose: 0.40075465 0.335269 -0.00218487 0 0.00204518 0.0101932 -0.0287033 0.999534 uwb: 0.50123058 846.749 998.796 +imu_odom_: 1691062773.438801046 0.593762 -0.447716 9.52174 -0.0830906 0.0223706 0.0532632 0.21 0.02 pose: 0.35837224 0.335269 -0.00218487 0 0.000193389 0.00841572 -0.0286005 0.999555 uwb: 0.0 846.749 998.796 +imu_odom_: 1691062773.454911436 0.102951 -0.457293 9.90481 -0.0820254 -0.00958738 0.036219 0.21 0.02 pose: 0.8050674 0.335269 -0.00218487 0 -0.0003801760.00786793 -0.0285485 0.999561 uwb: 0.49985400 846.893 998.663 +imu_odom_: 1691062773.481873494 0.287304 -0.452504 9.36133 -0.0639159 -0.0255663 0.0596548 0.21 0 pose: 0.0 0.335269 -0.00218487 0 -0.0003801760.00786793 -0.0285485 0.999561 uwb: 0.0 846.893 998.663 +imu_odom_: 1691062773.507884195 0.191536 -0.289698 9.77074 -0.0575243 -0.00745685 0.0330232 0.21 0 pose: 0.35112185 0.346708 -0.00106671 0 -0.00315388 0.00761035 -0.0284568 0.999561 uwb: 0.50103518 847.007 997.329 +imu_odom_: 1691062773.524882655 0.691924 -0.136469 9.93354 -0.0266316 0.0383495 0.036219 0.23 -0.02 pose: 0.0 0.346708 -0.00106671 0 -0.00315388 0.00761035 -0.0284568 0.999561 uwb: 0.0 847.007 997.329 +imu_odom_: 1691062773.542896053 -0.0837971 -0.476446 9.33978 -0.0500674 -0.0127832 0.0532632 0.23 -0.02 pose: 0.52972759 0.349202 -0.00461207 0 -0.00465954 0.00924703 -0.0282673 0.999547 uwb: 0.0 847.007 997.329 +imu_odom_: 1691062773.565893437 0.502782 0.0909797 10.4579 -0.0415453 -0.0245011 0.0436758 0.15 0 pose: 0.0 0.349202 -0.00461207 0 -0.00465954 0.00924703 -0.0282673 0.999547 uwb: 0.49804870 847.126 995.332 +imu_odom_: 1691062773.582890731 0.493206 -0.181959 9.68455 -0.0596548 0.0543285 0.0585895 0.15 0 pose: 0.42055760 0.363136 -0.0070328 0 -0.0040218 0.00902019 -0.028162 0.999555 uwb: 0.0 847.126 995.332 +imu_odom_: 1691062773.598829339 0.639252 -0.371101 10.4866 -0.0639159 -0.0266316 0.0255663 0.15 0 pose: 0.0 0.363136 -0.0070328 0 -0.0040218 0.00902019 -0.028162 0.999555 uwb: 0.49936986 847.101 993.997 +imu_odom_: 1691062773.616728994 0.718261 0.059855 9.83777 -0.0490022 0.00213053 0.0266316 0.17 -0.02 pose: 0.39816189 0.363136 -0.0070328 0 -0.00237221 0.00604177 -0.028013 0.999586 uwb: 0.0 847.101 993.997 +imu_odom_: 1691062773.641882246 0.296881 -0.258574 10.3382 -0.0671117 0.00426106 0.0511327 0.17 -0.02 pose: 0.0 0.363136 -0.0070328 0 -0.00237221 0.00604177 -0.028013 0.999586 uwb: 0.0 847.101 993.997 +imu_odom_: 1691062773.668868220 0.189142 -0.0957681 9.79707 -0.0607201 -0.00213053 0.036219 0.17 0 pose: 0.35098769 0.37131 -0.00127192 0 -0.00182614 0.00451803 -0.0281473 0.999592 uwb: 0.50200929 846.765 993.447 +imu_odom_: 1691062773.684859908 0.153229 -0.385466 9.71088 -0.0916127 -0.00106526 0.0671117 0.17 0 pose: 0.0 0.37131 -0.00127192 0 -0.00182614 0.00451803 -0.0281473 0.999592 uwb: 0.0 846.765 993.447 +imu_odom_: 1691062773.709841672 0.505177 -0.275333 10.2208 -0.036219 -0.0447411 0.0298274 0.18 -0.02 pose: 0.52039483 0.385244 -0.00368847 0 -0.0008871340.00798304 -0.0279679 0.999577 uwb: 0.50106142 846.754 992.641 +imu_odom_: 1691062773.723952225 0.497994 -0.292093 9.66779 -0.056459 -0.0255663 0.0511327 0.18 -0.02 pose: 0.0 0.385244 -0.00368847 0 -0.0008871340.00798304 -0.0279679 0.999577 uwb: 0.0 846.754 992.641 +imu_odom_: 1691062773.748809163 0.407014 -0.304064 10.0078 -0.0340885 -0.0543285 0.0330232 0.17 -0.02 pose: 0.38865705 0.385244 -0.00368847 0 -0.00187677 0.00481159 -0.0279594 0.999596 uwb: 0.49717667 846.879 991.172 +imu_odom_: 1691062773.765738210 0.392649 0.0287304 9.84017 -0.0479369 0.0106526 0.0596548 0.17 -0.02 pose: 0.0 0.385244 -0.00368847 0 -0.00187677 0.00481159 -0.0279594 0.999596 uwb: 0.0 846.879 991.172 +imu_odom_: 1691062773.791951606 0.663194 -0.430956 9.7037 -0.0500674 0.0543285 0.0266316 0.24 0 pose: 0.40008094 0.399179 -0.00609982 0 -0.00240557 0.00118489 -0.0279349 0.999606 uwb: 0.0 846.879 991.172 +imu_odom_: 1691062773.809892384 0.502782 -0.177171 9.93115 -0.0511327 -0.0298274 0.0468716 0.24 0 pose: 0.0 0.399179 -0.00609982 0 -0.00240557 0.00118489 -0.0279349 0.999606 uwb: 0.50027981 846.709 989.684 +imu_odom_: 1691062773.825847032 0.320823 -0.383072 9.80186 -0.0617853 -0.0181095 0.0681769 0.24 -0.02 pose: 0.43991434 0.399179 -0.00609982 0 -0.00225989 -0.000851836-0.0279827 0.999605 uwb: 0.0 846.709 989.684 +imu_odom_: 1691062773.849743570 0.399832 -0.141258 10.1035 -0.0447411 0.00958738 0.0436758 0.24 -0.02 pose: 0.0 0.399179 -0.00609982 0 -0.00225989 -0.000851836-0.0279827 0.999605 uwb: 0.49999399 846.25 989.383 +imu_odom_: 1691062773.874941445 0.428562 -0.464475 10.0724 -0.0713727 0.02024 0.0692422 0.19 -0.02 pose: 0.33075893 0.413114 -0.00851147 0 -0.00207257 -0.000640181-0.0277019 0.999614 uwb: 0.0 846.25 989.383 +imu_odom_: 1691062773.891860285 0.509965 -0.0215478 10.2376 -0.0500674 -0.0266316 0.0372843 0.19 -0.02 pose: 0.0 0.413114 -0.00851147 0 -0.00207257 -0.000640181-0.0277019 0.999614 uwb: 0.0 846.25 989.383 +imu_odom_: 1691062773.916864505 0.272939 -0.37589 9.42118 -0.0788296 0.0106526 0.0628506 0.17 0.02 pose: 0.25106588 0.413114 -0.00851147 0 -0.00118405 -0.000247401-0.0275466 0.99962 uwb: 0.50153390 846.274 988.71 +imu_odom_: 1691062773.943999220 0.452504 -0.320823 9.57441 -0.0575243 0.0234358 0.0372843 0.23 0 pose: 0.0 0.413114 -0.00851147 0 -0.00118405 -0.000247401-0.0275466 0.99962 uwb: 0.0 846.274 988.71 +imu_odom_: 1691062773.968720541 0.292093 -0.579397 9.30866 -0.0894822 0.0276969 0.0639159 0.18 0 pose: 0.58922395 0.427053 -0.0109098 0 -0.00333852 0.00110463 -0.0270205 0.999629 uwb: 0.49917737 846.855 987.408 +imu_odom_: 1691062773.995885004 0.543484 0.023942 10.0389 -0.0617853 0.00319579 0.0468716 0.22 0.02 pose: 0.35052397 0.435215 -0.00513277 0 -0.00569352 -0.00030613 -0.026964 0.99962 uwb: 0.0 846.855 987.408 +imu_odom_: 1691062774.21934786 0.562637 -0.47884 9.52174 -0.0681769 0.0436758 0.0287621 0.22 0.02 pose: 0.0 0.435215 -0.00513277 0 -0.00569352 -0.00030613 -0.026964 0.99962 uwb: 0.49853866 846.724 985.375 +imu_odom_: 1691062774.38834086 -0.0407014 -0.225055 10.1155 -0.0415453 0.0170442 0.04048 0.25 0 pose: 0.23880498 0.435215 -0.00513277 0 -0.00684897 0.000472675 -0.0267322 0.999619 uwb: 0.0 846.724 985.375 +imu_odom_: 1691062774.64771292 0.258574 -0.335188 9.50019 -0.0426106 -0.0319579 0.0436758 0.25 0 pose: 0.52982676 0.449156 -0.00751002 0 -0.0069373 -0.000568486-0.0268091 0.999616 uwb: 0.0 846.724 985.375 +imu_odom_: 1691062774.88854777 0.514753 -0.0670376 9.87129 -0.052198 -0.0319579 0.0490022 0.24 0 pose: 0.35991216 0.449156 -0.00751002 0 -0.00628799 0.0027283 -0.0267262 0.999619 uwb: 0.0 846.724 985.375 +imu_odom_: 1691062774.114844480 0.610521 -0.538695 9.69652 -0.0532632 0.0138484 0.0394148 0.24 0 pose: 0.0 0.449156 -0.00751002 0 -0.00628799 0.0027283 -0.0267262 0.999619 uwb: 0.99997927 846.432 984.669 +imu_odom_: 1691062774.131831566 0.301669 -0.114922 9.83777 -0.0458064 0.00106526 0.0511327 0.18 -0.02 pose: 0.50073188 0.463098 -0.00988611 0 -0.00613605 -0.000383235-0.0266261 0.999627 uwb: 0.0 846.432 984.669 +imu_odom_: 1691062774.157840517 0.617704 -0.0814029 9.99819 -0.0394148 -0.0234358 0.0308927 0.18 -0.02 pose: 0.0 0.463098 -0.00988611 0 -0.00613605 -0.000383235-0.0266261 0.999627 uwb: 0.50027108 846.705 983.884 +imu_odom_: 1691062774.182712038 0.426168 -0.251391 9.46188 -0.0617853 0.0234358 0.0511327 0.22 0.02 pose: 0.42996037 0.473299 -0.0116223 0 -0.00251911 -0.00173782 -0.0266443 0.99964 uwb: 0.0 846.705 983.884 +imu_odom_: 1691062774.207701968 -0.110133 -0.316035 9.23444 -0.036219 0.0426106 0.0298274 0.22 0.02 pose: 0.0 0.473299 -0.0116223 0 -0.00251911 -0.00173782 -0.0266443 0.99964 uwb: 0.49961778 846.741 982.667 +imu_odom_: 1691062774.223928435 0.347159 -0.198719 10.1897 -0.0532632 -0.0191748 0.0543285 0.18 -0.02 pose: 0.30892320 0.477039 -0.0122592 0 -0.0009185540.00116693 -0.0265292 0.999647 uwb: 0.0 846.741 982.667 +imu_odom_: 1691062774.249844350 0.933739 -0.229843 9.84975 -0.0543285 -0.0458064 0.0340885 0.18 -0.02 pose: 0.0 0.477039 -0.0122592 0 -0.0009185540.00116693 -0.0265292 0.999647 uwb: 0.49930864 846.835 981.863 +imu_odom_: 1691062774.274906901 0.543484 -0.490811 9.59835 -0.0553937 -0.015979 0.0426106 0.18 0 pose: 0.25027261 0.485196 -0.00647422 0 -0.0004205410.00321951 -0.026574 0.999642 uwb: 0.0 846.835 981.863 +imu_odom_: 1691062774.296712317 0.349553 -0.395043 9.61511 -0.0181095 0 0.0191748 0.18 0 pose: 0.0 0.485196 -0.00647422 0 -0.0004205410.00321951 -0.026574 0.999642 uwb: 0.0 846.835 981.863 +imu_odom_: 1691062774.322753642 0.399832 -0.191536 10.5441 -0.0426106 -0.0426106 0.0543285 0.18 0 pose: 0.67097897 0.490982 -0.0146306 0 -0.00233978 -0.00119354 -0.0265867 0.999643 uwb: 0.50081938 847.202 980.821 +imu_odom_: 1691062774.338888238 0.806846 -0.282516 9.33739 -0.0447411 0.0223706 0.0372843 0.18 0 pose: 0.0 0.490982 -0.0146306 0 -0.00233978 -0.00119354 -0.0265867 0.999643 uwb: 0.0 847.202 980.821 +imu_odom_: 1691062774.363862711 0.342371 -0.258574 9.86172 -0.0596548 0.0490022 0.0596548 0.22 0.02 pose: 0.47901863 0.499139 -0.00884609 0 -0.000717524-0.00108626 -0.0265579 0.999646 uwb: 0.50105561 847.056 979.715 +imu_odom_: 1691062774.389974906 0.260968 -0.0095768110.2448 -0.0500674 -0.015979 0.0394148 0.21 0.02 pose: 0.35102853 0.513081 -0.011218 0 -0.00149905 0.00113153 -0.026317 0.999652 uwb: 0.0 847.056 979.715 +imu_odom_: 1691062774.415779995 0.708684 -0.3304 10.0341 -0.0788296 -0.0319579 0.076699 0.21 0.02 pose: 0.0 0.513081 -0.011218 0 -0.00149905 0.00113153 -0.026317 0.999652 uwb: 0.49869909 847.176 977.153 +imu_odom_: 1691062774.432837660 0.742203 -0.189142 10.0293 -0.0394148 0.0287621 0.0319579 0.23 -0.02 pose: 0.7899309 0.513081 -0.011218 0 -0.0007659350.00142422 -0.0263163 0.999652 uwb: 0.0 847.176 977.153 +imu_odom_: 1691062774.458699912 0.136469 -0.481235 9.31105 -0.0713727 0.0181095 0.0639159 0.23 -0.02 pose: 0.0 0.513081 -0.011218 0 -0.0007659350.00142422 -0.0263163 0.999652 uwb: 0.50073188 847.568 975.713 +imu_odom_: 1691062774.476139638 -0.208296 -0.320823 9.59357 -0.0553937 -0.02024 0.0372843 0.25 0 pose: 0.51219951 0.527024 -0.0135794 0 -0.000258829-0.00123933 -0.0258632 0.999665 uwb: 0.0 847.568 975.713 +imu_odom_: 1691062774.501723073 0.627281 -0.198719 10.3549 -0.0628506 -0.0575243 0.0532632 0.25 0 pose: 0.0 0.527024 -0.0135794 0 -0.000258829-0.00123933 -0.0258632 0.999665 uwb: 0.50030024 847.662 973.548 +imu_odom_: 1691062774.517711262 0.837971 -0.356736 9.42837 -0.0660464 0.0106526 0.0500674 0.24 0 pose: 0.42875587 0.527024 -0.0135794 0 -0.00201837 0.00088255 -0.0255901 0.99967 uwb: 0.0 847.662 973.548 +imu_odom_: 1691062774.543833665 0.92895 -0.342371 9.34457 -0.0809601 -0.0308927 0.0596548 0.24 0 pose: 0.0 0.527024 -0.0135794 0 -0.00201837 0.00088255 -0.0255901 0.99967 uwb: 0.0 847.662 973.548 +imu_odom_: 1691062774.567837239 0.47884 -0.454898 9.81623 -0.0532632 0.0447411 0.0223706 0.21 -0.02 pose: 0.41892730 0.540971 -0.015924 0 -0.00191609 -0.00189246 -0.0253967 0.999674 uwb: 0.49777165 847.851 972.348 +imu_odom_: 1691062774.593953225 -0.110133 -0.265756 10.3477 -0.0692422 -0.00958738 0.0468716 0.21 -0.02 pose: 0.0 0.540971 -0.015924 0 -0.00191609 -0.00189246 -0.0253967 0.999674 uwb: 0.0 847.851 972.348 +imu_odom_: 1691062774.609837587 0.251391 -0.213084 9.70849 -0.04048 -0.00532632 0.0330232 0.19 0 pose: 0.42999246 0.549114 -0.0101186 0 -0.00379925 -0.00534818 -0.0251435 0.999662 uwb: 0.50114602 847.855 971.662 +imu_odom_: 1691062774.635871329 0.383072 -0.402226 9.63906 -0.0639159 0.0245011 0.0490022 0.19 0 pose: 0.0 0.549114 -0.0101186 0 -0.00379925 -0.00534818 -0.0251435 0.999662 uwb: 0.0 847.855 971.662 +imu_odom_: 1691062774.660682187 0.562637 -0.0550666 9.51456 -0.0383495 -0.0479369 0.0468716 0.21 0 pose: 0.50098561 0.554922 -0.018259 0 -0.00491967 -0.00143262 -0.0251938 0.999669 uwb: 0.49989193 847.887 970.98 +imu_odom_: 1691062774.682657343 0.624887 -0.234632 9.87369 -0.076699 -0.0213053 0.0543285 0.21 0 pose: 0.0 0.554922 -0.018259 0 -0.00491967 -0.00143262 -0.0251938 0.999669 uwb: 0.0 847.887 970.98 +imu_odom_: 1691062774.699660178 0.148441 -0.225055 9.82341 -0.0383495 0.0340885 0.0149137 0.17 0 pose: 0.41875523 0.563063 -0.0124517 0 -0.00632346 9.99611e-05 -0.0250694 0.999666 uwb: 0.50037899 848.127 970.614 +imu_odom_: 1691062774.723740748 -0.0215478 -0.574608 9.72285 -0.072438 -0.0106526 0.052198 0.17 0 pose: 0.0 0.563063 -0.0124517 0 -0.00632346 9.99611e-05 -0.0250694 0.999666 uwb: 0.0 848.127 970.614 +imu_odom_: 1691062774.746755632 0.356736 -0.337582 9.41161 -0.0468716 -0.0383495 0.0308927 0.19 -0.02 pose: 0.46936214 0.577012 -0.014778 0 -0.00396869 -0.00268718 -0.0249395 0.999677 uwb: 0.0 848.127 970.614 +imu_odom_: 1691062774.763748551 0.550666 -0.117316 10.0509 -0.056459 -0.0181095 0.0585895 0.19 -0.02 pose: 0.0 0.577012 -0.014778 0 -0.00396869 -0.00268718 -0.0249395 0.999677 uwb: 0.50009900 848.638 968.791 +imu_odom_: 1691062774.787730543 0.536301 -0.440533 10.0173 -0.0372843 0.0298274 0.0351537 0.25 -0.02 pose: 0.74088719 0.590962 -0.0171046 0 -0.00500864 0.000760906 -0.0248298 0.999679 uwb: 0.0 848.638 968.791 +imu_odom_: 1691062774.812668268 1.00317 -0.272939 9.71088 -0.0596548 0.00426106 0.056459 0.25 -0.02 pose: 0.7079776 0.590962 -0.0171046 0 -0.00541864 0.00035653 -0.024849 0.999676 uwb: 0.49935822 848.719 967.704 +imu_odom_: 1691062774.837723528 0.802058 -0.263362 9.80904 -0.036219 -0.00426106 0.0351537 0.18 0.02 pose: 0.41839941 0.596546 -0.0131151 0 -0.00623845 -0.00298499 -0.0247012 0.999671 uwb: 0.0 848.719 967.704 +imu_odom_: 1691062774.854668033 0.344765 -0.25618 9.85453 -0.0468716 -0.0607201 0.0553937 0.18 0.02 pose: 0.0 0.596546 -0.0131151 0 -0.00623845 -0.00298499 -0.0247012 0.999671 uwb: 0.50011650 848.921 967.333 +imu_odom_: 1691062774.879714835 0.258574 -0.251391 9.67018 -0.0351537 -0.0340885 0.0255663 0.18 0.02 pose: 0.41999765 0.604913 -0.0194262 0 -0.00484298 -0.00436921 -0.0246306 0.999675 uwb: 0.0 848.921 967.333 +imu_odom_: 1691062774.904747638 0.447716 -0.445322 9.52892 -0.0660464 -0.036219 0.0660464 0.18 0.02 pose: 0.0 0.604913 -0.0194262 0 -0.00484298 -0.00436921 -0.0246306 0.999675 uwb: 0.49991818 849.069 965.568 +imu_odom_: 1691062774.930642846 0.471658 -0.0622492 9.95509 -0.0468716 0.00319579 0.0415453 0.2 0 pose: 0.50079605 0.613048 -0.0136104 0 -0.00661979 -0.00264218 -0.0244555 0.999676 uwb: 0.0 849.069 965.568 +imu_odom_: 1691062774.947636057 0.584185 -0.0957681 9.94312 -0.0788296 -0.0170442 0.0692422 0.2 0 pose: 0.0 0.613048 -0.0136104 0 -0.00661979 -0.00264218 -0.0244555 0.999676 uwb: 0.0 849.069 965.568 +imu_odom_: 1691062774.972796894 0.739808 -0.0383072 10.1203 -0.052198 -0.0447411 0.0447411 0.21 0 pose: 0.32976734 0.618868 -0.0217427 0 -0.00341885 -0.0031762 -0.0243371 0.999693 uwb: 0.50049857 849.283 963.816 +imu_odom_: 1691062774.997822405 0.56982 -0.306458 10.1394 -0.0671117 -0.00426106 0.0585895 0.23 0.02 pose: 0.0 0.618868 -0.0217427 0 -0.00341885 -0.0031762 -0.0243371 0.999693 uwb: 0.0 849.283 963.816 +imu_odom_: 1691062775.19780355 0.466869 -0.179565 9.73961 -0.0543285 0.0223706 0.0351537 0.23 0.02 pose: 0.42084051 0.626998 -0.0159214 0 -0.00173075 -0.00656196 -0.0240694 0.999687 uwb: 0.49945737 849.33 962.713 +imu_odom_: 1691062775.35862164 0.390255 -0.167594 10.0126 -0.100135 -0.0213053 0.0681769 0.23 0.02 pose: 0.0 0.626998 -0.0159214 0 -0.00173075 -0.00656196 -0.0240694 0.999687 uwb: 0.0 849.33 962.713 +imu_odom_: 1691062775.52639847 1.18752 -0.189142 9.71806 -0.0788296 0.00213053 0.0383495 0.19 0 pose: 0.45916902 0.640952 -0.0182237 0 -0.0014971 -0.00530572 -0.0238644 0.9997 uwb: 0.50185183 849.118 962.381 +imu_odom_: 1691062775.77842681 0.61531 -0.296881 9.73482 -0.0756338 0.00213053 0.0511327 0.19 0 pose: 0.0 0.640952 -0.0182237 0 -0.0014971 -0.00530572 -0.0238644 0.9997 uwb: 0.0 849.118 962.381 +imu_odom_: 1691062775.101766636 0.222661 -0.308852 10.0293 -0.0372843 -0.0276969 0.0319579 0.18 0.02 pose: 0.35045400 0.640952 -0.0182237 0 -0.00184216 -0.00679851 -0.0236874 0.999695 uwb: 0.49742169 849.196 960.719 +imu_odom_: 1691062775.126894225 0.488417 -0.361524 10.3094 -0.0596548 -0.0543285 0.0500674 0.18 0 pose: 0.0 0.640952 -0.0182237 0 -0.00184216 -0.00679851 -0.0236874 0.999695 uwb: 0.0 849.196 960.719 +imu_odom_: 1691062775.151694002 0.888249 -0.287304 10.2927 -0.0479369 -0.0191748 0.0468716 0.18 0 pose: 0.40995911 0.653208 -0.0181479 0 -0.00297736 -0.00605374 -0.0236657 0.999697 uwb: 0.50189849 848.989 959.818 +imu_odom_: 1691062775.176759761 0.19393 -0.162806 9.81623 -0.036219 -0.0245011 0.0532632 0.25 0.02 pose: 0.6970699 0.654907 -0.0205152 0 -0.00362726 -0.0059303 -0.0236241 0.999697 uwb: 0.0 848.989 959.818 +imu_odom_: 1691062775.190805570 0.47884 -0.0383072 10.4651 -0.0330232 -0.0127832 0.0511327 0.25 0.02 pose: 0.0 0.654907 -0.0205152 0 -0.00362726 -0.0059303 -0.0236241 0.999697 uwb: 0.0 848.989 959.818 +imu_odom_: 1691062775.206663684 0.723049 -0.445322 9.3709 -0.0777643 -0.00319579 0.0639159 0.25 0.02 pose: 0.0 0.654907 -0.0205152 0 -0.00362726 -0.0059303 -0.0236241 0.999697 uwb: 0.49927949 848.928 958.67 +imu_odom_: 1691062775.231711070 0.924162 -0.40462 9.39006 -0.0468716 0.0191748 0.0351537 0.17 0 pose: 0.50039359 0.663029 -0.0146811 0 -0.0047297 -0.00769285 -0.023387 0.999686 uwb: 0.0 848.928 958.67 +imu_odom_: 1691062775.254623295 0.347159 -0.529119 9.09078 -0.0575243 0.02024 0.0447411 0.17 0 pose: 0.0 0.663029 -0.0146811 0 -0.0047297 -0.00769285 -0.023387 0.999686 uwb: 0.49941073 848.673 957.889 +imu_odom_: 1691062775.279772466 -0.155623 -0.263362 9.46188 -0.0330232 0.0191748 0.036219 0.18 0.02 pose: 0.79019921 0.676983 -0.0169592 0 -0.00476718 -0.00872517 -0.0230254 0.999685 uwb: 0.0 848.673 957.889 +imu_odom_: 1691062775.304670236 0.174777 -0.292093 10.0892 -0.0703074 -0.0830906 0.0671117 0.23 0 pose: 0.41975851 0.68862 -0.0209029 0 -0.00542783 -0.00455573 -0.0229963 0.99971 uwb: 0.50000278 848.511 956.273 +imu_odom_: 1691062775.330626984 0.68953 -0.186748 10.3549 -0.0713727 -0.0458064 0.0394148 0.23 0 pose: 0.0 0.68862 -0.0209029 0 -0.00542783 -0.00455573 -0.0229963 0.99971 uwb: 0.0 848.511 956.273 +imu_odom_: 1691062775.356660143 0.248997 -0.131681 9.89763 -0.0490022 -0.0479369 0.0383495 0.21 0 pose: 0.6857540 0.690941 -0.0192314 0 -0.00540907 -0.00414216 -0.0228974 0.999715 uwb: 0.49886243 848.312 955.929 +imu_odom_: 1691062775.381691196 -0.0311246 0.0790087 10.1634 -0.0351537 -0.00213053 0.0468716 0.21 0 pose: 0.0 0.690941 -0.0192314 0 -0.00540907 -0.00414216 -0.0228974 0.999715 uwb: 0.0 848.312 955.929 +imu_odom_: 1691062775.398698990 0.447716 -0.47884 9.59596 -0.0458064 0 0.0511327 0.21 -0.02 pose: 0.51120209 0.690941 -0.0192314 0 -0.0038674 -0.00538493 -0.0226564 0.999721 uwb: 0.0 848.312 955.929 +imu_odom_: 1691062775.423644008 0.407014 -0.0574608 10.1586 -0.0351537 0.00532632 0.0500674 0.21 -0.02 pose: 0.0 0.690941 -0.0192314 0 -0.0038674 -0.00538493 -0.0226564 0.999721 uwb: 0.49984821 848.258 954.763 +imu_odom_: 1691062775.449627878 0.648829 -0.227449 10.1011 -0.0649811 -0.00106526 0.04048 0.19 0 pose: 0.50913722 0.704901 -0.0214939 0 -0.00176968 -0.00211523 -0.0225318 0.999742 uwb: 0.50165642 847.906 953.208 +imu_odom_: 1691062775.463790637 0.332794 0.00957681 9.91678 -0.0415453 -0.0181095 0.0543285 0.19 0 pose: 0.0 0.704901 -0.0214939 0 -0.00176968 -0.00211523 -0.0225318 0.999742 uwb: 0.0 847.906 953.208 +imu_odom_: 1691062775.487761256 0.196325 -0.356736 9.95988 -0.0649811 0.0436758 0.0553937 0.18 0 pose: 0.75126700 0.718862 -0.0237507 0 0.000945883 -0.00346496 -0.0222326 0.999746 uwb: 0.0 847.906 953.208 +imu_odom_: 1691062775.511736541 0.603339 0 10.2663 -0.0617853 -0.0170442 0.0585895 0.18 0 pose: 0.0 0.718862 -0.0237507 0 0.000945883 -0.00346496 -0.0222326 0.999746 uwb: 0.50082231 847.592 952.528 +imu_odom_: 1691062775.537769700 0.658405 -0.181959 10.2065 -0.0852212 0.0223706 0.0426106 0.25 0.02 pose: 0.6856665 0.718862 -0.0237507 0 0.000580475 -0.0027015 -0.0221778 0.99975 uwb: 0.0 847.592 952.528 +imu_odom_: 1691062775.562823794 0.500388 -0.521936 9.70609 -0.0553937 0.0245011 0.0575243 0.19 0 pose: 0.49187452 0.732828 -0.0259975 0 0.00127638 -0.00322341 -0.0218018 0.999756 uwb: 0.49872828 847.628 951.224 +imu_odom_: 1691062775.579629183 0.706289 -0.201113 10.2592 -0.0660464 -0.0330232 0.0532632 0.19 0 pose: 0.0 0.732828 -0.0259975 0 0.00127638 -0.00322341 -0.0218018 0.999756 uwb: 0.0 847.628 951.224 +imu_odom_: 1691062775.603877743 0.517148 0.0335188 10.4842 -0.056459 0.00426106 0.0500674 0.19 0 pose: 0.25821422 0.732828 -0.0259975 0 0.000215909 -0.00465695 -0.0216977 0.999754 uwb: 0.50121312 847.342 950.248 +imu_odom_: 1691062775.630779433 0.560243 -0.263362 9.33739 -0.056459 0.0191748 0.0372843 0.19 0 pose: 0.42019891 0.740928 -0.0201335 0 -0.000504886-0.00623371 -0.0213868 0.999752 uwb: 0.0 847.342 950.248 +imu_odom_: 1691062775.655783946 0.849942 -0.31364 9.55047 -0.0585895 0.052198 0.0436758 0.19 0 pose: 0.43103366 0.75249 -0.0241037 0 -0.00120904 -0.00716885 -0.0213269 0.999746 uwb: 0.49795248 847.377 949.225 +imu_odom_: 1691062775.680750254 0.198719 -0.105345 10.5345 -0.0330232 0.015979 0.0287621 0.19 0 pose: 0.0 0.75249 -0.0241037 0 -0.00120904 -0.00716885 -0.0213269 0.999746 uwb: 0.0 847.377 949.225 +imu_odom_: 1691062775.694609115 0.131681 -0.241814 9.44991 -0.0543285 -0.0181095 0.0543285 0.18 0 pose: 0.49970821 0.759294 -0.0284291 0 -0.000698396-0.0063084 -0.0214117 0.999751 uwb: 0.0 847.377 949.225 +imu_odom_: 1691062775.710661468 0.433351 -0.146046 10.4674 -0.052198 -0.0191748 0.0394148 0.18 0 pose: 0.0 0.759294 -0.0284291 0 -0.000698396-0.0063084 -0.0214117 0.999751 uwb: 0.50047525 846.9 947.581 +imu_odom_: 1691062775.731589022 0.172383 -0.25618 9.70609 -0.0415453 0.00958738 0.0372843 0.18 0 pose: 0.0 0.759294 -0.0284291 0 -0.000698396-0.0063084 -0.0214117 0.999751 uwb: 0.0 846.9 947.581 +imu_odom_: 1691062775.745659912 0.545878 -0.189142 10.477 -0.0628506 -0.0319579 0.056459 0.18 -0.02 pose: 0.36855664 0.76886 -0.0245873 0 0.00045666 -0.00334926 -0.0213227 0.999767 uwb: 0.0 846.9 947.581 +imu_odom_: 1691062775.762601502 0.464475 -0.323217 9.57202 -0.052198 0.0223706 0.0266316 0.18 -0.02 pose: 0.0 0.76886 -0.0245873 0 0.00045666 -0.00334926 -0.0213227 0.999767 uwb: 0.49885660 846.906 946.686 +imu_odom_: 1691062775.779603755 0.399832 -0.0957681 9.88087 -0.0532632 -0.0223706 0.04048 0.18 0 pose: 0.0 0.76886 -0.0245873 0 0.00045666 -0.00334926 -0.0213227 0.999767 uwb: 0.0 846.906 946.686 +imu_odom_: 1691062775.796680669 0.653617 -0.0861913 10.161 -0.0735032 -0.0383495 0.0511327 0.18 0 pose: 0.52000114 0.782826 -0.0268132 0 -0.000518098-0.00292385 -0.0213217 0.999768 uwb: 0.0 846.906 946.686 +imu_odom_: 1691062775.821627145 0.237026 -0.124498 9.74201 -0.056459 0.0245011 0.036219 0.18 -0.02 pose: 0.0 0.782826 -0.0268132 0 -0.000518098-0.00292385 -0.0213217 0.999768 uwb: 0.50126562 846.688 946.008 +imu_odom_: 1691062775.847608099 0.440533 -0.459687 9.46428 -0.0511327 -0.02024 0.0468716 0.21 0.02 pose: 0.27074637 0.782826 -0.0268132 0 0.00109448 -0.00438431 -0.0212229 0.999765 uwb: 0.0 846.688 946.008 +imu_odom_: 1691062775.872717898 0.354342 -0.299275 9.5792 -0.0479369 0.0191748 0.0436758 0.18 0.02 pose: 0.50927430 0.794971 -0.0265256 0 -0.000761789-0.00185449 -0.0211716 0.999774 uwb: 0.49993570 846.777 943.928 +imu_odom_: 1691062775.898598524 -0.0430956 -0.244209 10.0054 -0.0276969 0.0213053 0.0415453 0.21 0.05 pose: 0.0 0.794971 -0.0265256 0 -0.000761789-0.00185449 -0.0211716 0.999774 uwb: 0.0 846.777 943.928 +imu_odom_: 1691062775.922611724 0.191536 -0.138864 9.90721 -0.0447411 -0.0585895 0.0585895 0.21 0.05 pose: 0.33051105 0.796793 -0.0290367 0 -0.00208551 0.00128549 -0.0211065 0.999774 uwb: 0.50016318 847.194 942.868 +imu_odom_: 1691062775.940613165 0.893037 -0.248997 9.9503 -0.052198 -0.0117179 0.0308927 0.19 0.02 pose: 0.0 0.796793 -0.0290367 0 -0.00208551 0.00128549 -0.0211065 0.999774 uwb: 0.0 847.194 942.868 +imu_odom_: 1691062775.964705693 0.42138 -0.42138 9.73482 -0.0660464 0.0394148 0.0713727 0.19 0.02 pose: 0.50104980 0.804886 -0.0231632 0 -0.0001814750.00369276 -0.020884 0.999775 uwb: 0.49842496 847.202 941.498 +imu_odom_: 1691062775.988596691 0.232238 -0.158017 9.88805 -0.0308927 0.0191748 0.0383495 0.25 0 pose: 0.33941509 0.8165 -0.0270864 0 -0.00265052 0.00245999 -0.0205506 0.999782 uwb: 0.0 847.202 941.498 +imu_odom_: 1691062776.6588508 0.215478 -0.237026 9.55765 -0.0607201 -0.0266316 0.0628506 0.25 0 pose: 0.0 0.8165 -0.0270864 0 -0.00265052 0.00245999 -0.0205506 0.999782 uwb: 0.49978987 847.155 940.56 +imu_odom_: 1691062776.30627082 0.94571 -0.304064 9.62708 -0.0585895 -0.0234358 0.0319579 0.18 0.02 pose: 0.6956991 0.818853 -0.0253752 0 -0.00209188 0.00305253 -0.0205528 0.999782 uwb: 0.0 847.155 940.56 +imu_odom_: 1691062776.47633127 0.392649 -0.0909797 10.4603 -0.0585895 0.0213053 0.0532632 0.18 0.02 pose: 0.0 0.818853 -0.0253752 0 -0.00209188 0.00305253 -0.0205528 0.999782 uwb: 0.0 847.155 940.56 +imu_odom_: 1691062776.71884021 0.639252 -0.122104 10.2424 -0.0756338 0.0170442 0.0447411 0.19 0 pose: 0.41939688 0.818853 -0.0253752 0 -0.0009677580.00532999 -0.020375 0.999778 uwb: 0.50400713 847.255 939.521 +imu_odom_: 1691062776.95713773 0.56982 0.0454898 10.1682 -0.0671117 -0.0106526 0.0490022 0.19 0 pose: 0.0 0.818853 -0.0253752 0 -0.0009677580.00532999 -0.020375 0.999778 uwb: 0.0 847.255 939.521 +imu_odom_: 1691062776.120602795 0.859518 -0.0694318 9.87369 -0.0649811 -0.0479369 0.0415453 0.25 0 pose: 0.42041474 0.832823 -0.0275747 0 0.000455398 0.00233666 -0.0203 0.999791 uwb: 0.49589638 847.505 938.384 +imu_odom_: 1691062776.143600765 0.383072 -0.270545 9.44752 -0.0852212 0.00852212 0.0511327 0.25 0 pose: 0.0 0.832823 -0.0275747 0 0.000455398 0.00233666 -0.0203 0.999791 uwb: 0.0 847.505 938.384 +imu_odom_: 1691062776.168625987 -0.110133 -0.462081 9.12909 -0.0394148 0.0298274 0.0298274 0.18 0 pose: 0.48032524 0.846793 -0.0297705 0 0.00256209 -0.00155832 -0.0201314 0.999793 uwb: 0.50043736 847.487 936.977 +imu_odom_: 1691062776.185693278 0.143652 -0.167594 9.97903 -0.0585895 -0.0383495 0.0458064 0.18 0 pose: 0.0 0.846793 -0.0297705 0 0.00256209 -0.00155832 -0.0201314 0.999793 uwb: 0.0 847.487 936.977 +imu_odom_: 1691062776.209629483 0.383072 -0.248997 9.61272 -0.0436758 -0.0500674 0.0351537 0.18 0 pose: 0.48061398 0.846793 -0.0297705 0 0.000411216 -0.00109725 -0.0200169 0.999799 uwb: 0.50111106 847.616 935.312 +imu_odom_: 1691062776.235683350 0.682347 -0.517148 9.62708 -0.0639159 -0.0191748 0.0553937 0.18 0 pose: 0.0 0.846793 -0.0297705 0 0.000411216 -0.00109725 -0.0200169 0.999799 uwb: 0.0 847.616 935.312 +imu_odom_: 1691062776.251561005 0.577003 -0.138864 10.1921 -0.0511327 0.0191748 0.0468716 0.19 0 pose: 0.41856861 0.860765 -0.03196 0 -0.0004629840.0015637 -0.0200638 0.999797 uwb: 0.50112564 848.622 933.703 +imu_odom_: 1691062776.276557937 0.59855 -0.237026 9.43076 -0.072438 -0.0308927 0.0585895 0.19 0 pose: 0.0 0.860765 -0.03196 0 -0.0004629840.0015637 -0.0200638 0.999797 uwb: 0.0 848.622 933.703 +imu_odom_: 1691062776.299589155 0.677559 -0.148441 9.58878 -0.0468716 -0.00852212 0.0266316 0.18 -0.02 pose: 0.48972509 0.868845 -0.0260689 0 -0.00322723 -0.00199468 -0.0198779 0.999795 uwb: 0.50003780 848.644 933.238 +imu_odom_: 1691062776.323618104 0.270545 -0.574608 9.01417 -0.0607201 0.00745685 0.0500674 0.18 -0.02 pose: 0.0 0.868845 -0.0260689 0 -0.00322723 -0.00199468 -0.0198779 0.999795 uwb: 0.0 848.644 933.238 +imu_odom_: 1691062776.349579519 0.205901 -0.19393 9.38766 -0.0266316 -0.0106526 0.0319579 0.23 0 pose: 0.40183962 0.87474 -0.0341468 0 -0.00207369 -0.00586313 -0.019661 0.999787 uwb: 0.49750336 848.826 932.535 +imu_odom_: 1691062776.363584205 0.409408 -0.112527 10.2544 -0.0468716 -0.02024 0.0532632 0.23 0 pose: 0.0 0.87474 -0.0341468 0 -0.00207369 -0.00586313 -0.019661 0.999787 uwb: 0.0 848.826 932.535 +imu_odom_: 1691062776.386596758 0.517148 -0.225055 10.0054 -0.052198 -0.0500674 0.0340885 0.17 -0.02 pose: 0.48862266 0.882816 -0.0282497 0 -0.00273946 -0.00494926 -0.0196654 0.999791 uwb: 0.0 848.826 932.535 +imu_odom_: 1691062776.404805562 0.536301 -0.122104 10.0604 -0.0500674 0.00852212 0.0372843 0.17 -0.02 pose: 0.0 0.882816 -0.0282497 0 -0.00273946 -0.00494926 -0.0196654 0.999791 uwb: 0.49994447 848.617 931.488 +imu_odom_: 1691062776.428704144 0.373495 -0.201113 10.1586 -0.0500674 0.00852212 0.0298274 0.18 0 pose: 0.73192196 0.896789 -0.0304287 0 0.00121337 -0.00595544 -0.0197319 0.999787 uwb: 0.0 848.617 931.488 +imu_odom_: 1691062776.453587041 0.390255 -0.203507 9.62469 -0.0639159 -0.02024 0.0553937 0.18 0 pose: 0.7835438 0.896789 -0.0304287 0 0.00118133 -0.00512322 -0.0197706 0.999791 uwb: 0.50007862 848.667 931.032 +imu_odom_: 1691062776.476636925 0.696713 -0.519542 9.0836 -0.0436758 0.0383495 0.0351537 0.18 0 pose: 0.40946041 0.909095 -0.030328 0 0.000690721 -0.00114227 -0.0196557 0.999806 uwb: 0.0 848.667 931.032 +imu_odom_: 1691062776.492771815 0.488417 -0.100556 10.1107 -0.0340885 -0.0127832 0.0532632 0.18 0 pose: 0.0 0.909095 -0.030328 0 0.000690721 -0.00114227 -0.0196557 0.999806 uwb: 0.0 848.667 931.032 +imu_odom_: 1691062776.509608411 0.529119 -0.213084 9.74919 -0.0436758 -0.04048 0.0553937 0.22 0 pose: 0.0 0.909095 -0.030328 0 0.000690721 -0.00114227 -0.0196557 0.999806 uwb: 0.50354341 848.736 930.425 +imu_odom_: 1691062776.526841067 0.390255 0.0287304 10.0556 -0.0468716 -0.015979 0.0415453 0.22 0 pose: 0.46141182 0.918839 -0.0267144 0 0.000650131 -0.00352831 -0.0195401 0.999803 uwb: 0.0 848.736 930.425 +imu_odom_: 1691062776.549652382 0.471658 -0.349553 10.003 -0.0777643 -0.0426106 0.0745685 0.19 0 pose: 0.0 0.918839 -0.0267144 0 0.000650131 -0.00352831 -0.0195401 0.999803 uwb: 0.49684716 848.263 929.404 +imu_odom_: 1691062776.574767140 0.411803 -0.129287 10.1394 -0.0575243 -0.0426106 0.0372843 0.19 0 pose: 0.33903596 0.924738 -0.0347889 0 0.0013969 -0.00416554 -0.0193303 0.999803 uwb: 0.0 848.263 929.404 +imu_odom_: 1691062776.598702178 0.105345 -0.337582 10.0269 -0.0575243 -0.0479369 0.056459 0.21 0 pose: 0.41135321 0.932811 -0.0288867 0 0.00151476 -0.00321855 -0.0190819 0.999812 uwb: 0.49936700 847.998 928.958 +imu_odom_: 1691062776.615589230 1.00317 -0.275333 10.5321 -0.0532632 -0.0181095 0.0308927 0.21 0 pose: 0.7859937 0.932811 -0.0288867 0 0.00120791 -0.00266153 -0.0190161 0.999815 uwb: 0.0 847.998 928.958 +imu_odom_: 1691062776.640692614 0.612916 -0.251391 9.89284 -0.0703074 0.0543285 0.0671117 0.18 -0.02 pose: 0.0 0.932811 -0.0288867 0 0.00120791 -0.00266153 -0.0190161 0.999815 uwb: 0.0 847.998 928.958 +imu_odom_: 1691062776.665609050 0.565032 0.124498 10.0245 -0.0617853 -0.0213053 0.0447411 0.18 -0.02 pose: 0.41007870 0.946787 -0.0310457 0 4.02912e-05 -0.00383913 -0.0188416 0.999815 uwb: 0.50039944 847.815 928.06 +imu_odom_: 1691062776.679560073 0.696713 -0.184354 9.40442 -0.076699 -0.0340885 0.0532632 0.18 -0.02 pose: 0.0 0.946787 -0.0310457 0 4.02912e-05 -0.00383913 -0.0188416 0.999815 uwb: 0.0 847.815 928.06 +imu_odom_: 1691062776.696559410 0.715866 -0.354342 10.0245 -0.076699 -0.0117179 0.0372843 0.18 -0.02 pose: 0.47978278 0.946787 -0.0310457 0 0.00165939 -0.0063481 -0.0185112 0.999807 uwb: 0.0 847.815 928.06 +imu_odom_: 1691062776.721544676 0.445322 -0.466869 9.53371 -0.052198 -0.0553937 0.052198 0.2 0 pose: 0.0 0.946787 -0.0310457 0 0.00165939 -0.0063481 -0.0185112 0.999807 uwb: 0.50201225 848.385 927.194 +imu_odom_: 1691062776.744596018 0.459687 -0.280122 9.39006 -0.0383495 -0.0245011 0.036219 0.2 0 pose: 0.33249720 0.960766 -0.033193 0 -0.000618643-0.00834019 -0.0184071 0.999796 uwb: 0.0 848.385 927.194 +imu_odom_: 1691062776.770660384 0.909797 -0.325611 9.67257 -0.0585895 0.0170442 0.0511327 0.25 0 pose: 0.39733073 0.960766 -0.033193 0 -0.00256135 -0.0060697 -0.0183162 0.999811 uwb: 0.49866122 847.828 927.253 +imu_odom_: 1691062776.792687747 0.742203 -0.244209 10.5082 -0.0372843 0 0.0340885 0.25 0 pose: 0.0 0.960766 -0.033193 0 -0.00256135 -0.0060697 -0.0183162 0.999811 uwb: 0.0 847.828 927.253 +imu_odom_: 1691062776.816566206 0.881066 -0.0790087 10.5225 -0.0649811 -0.0436758 0.0607201 0.21 0 pose: 0.48091729 0.972631 -0.0324556 0 -0.00249926 -0.010485 -0.0182383 0.999776 uwb: 0.49882453 848.04 926.21 +imu_odom_: 1691062776.842611032 0.744597 0.0837971 9.98861 -0.052198 -0.00852212 0.036219 0.21 0 pose: 0.0 0.972631 -0.0324556 0 -0.00249926 -0.010485 -0.0182383 0.999776 uwb: 0.0 848.04 926.21 +imu_odom_: 1691062776.856679881 0.35913 -0.217872 9.73243 -0.0671117 0.00958738 0.0479369 0.18 0 pose: 0.49923285 0.982803 -0.0294112 0 0.00126808 -0.0137038 -0.018081 0.999742 uwb: 0.49982781 848.238 924.995 +imu_odom_: 1691062776.879683392 0.177171 -0.162806 9.50977 -0.0532632 0.0181095 0.0340885 0.18 0 pose: 0.0 0.982803 -0.0294112 0 0.00126808 -0.0137038 -0.018081 0.999742 uwb: 0.0 848.238 924.995 +imu_odom_: 1691062776.903534144 0.471658 -0.100556 10.1538 -0.0798948 -0.0106526 0.0681769 0.23 0.02 pose: 0.37072360 0.99407 -0.0335404 0 0.00127505 -0.00965331 -0.0180913 0.999789 uwb: 0.50122188 848.317 923.714 +imu_odom_: 1691062776.920660348 1.06542 -0.402226 9.60075 -0.0468716 -0.00745685 0.0308927 0.23 0.02 pose: 0.0 0.99407 -0.0335404 0 0.00127505 -0.00965331 -0.0180913 0.999789 uwb: 0.0 848.317 923.714 +imu_odom_: 1691062776.944657799 0.684742 -0.349553 9.81862 -0.0575243 -0.0106526 0.0553937 0.18 0 pose: 0.40976956 0.996784 -0.0315465 0 0.00169122 -0.00935267 -0.0178336 0.999796 uwb: 0.0 848.317 923.714 +imu_odom_: 1691062776.970531427 0.318429 -0.237026 10.2065 -0.0308927 -0.0383495 0.0394148 0.18 0 pose: 0.0 0.996784 -0.0315465 0 0.00169122 -0.00935267 -0.0178336 0.999796 uwb: 0.49987447 848.187 923.815 +imu_odom_: 1691062776.994674994 0.665588 -0.21069 10.3741 -0.0639159 -0.02024 0.056459 0.18 0 pose: 0.49871079 1.0085 -0.0353407 0 -0.000224382-0.00846899 -0.0176194 0.999809 uwb: 0.0 848.187 923.815 +imu_odom_: 1691062777.10561399 0.912191 -0.354342 9.89284 -0.0553937 0.00639159 0.0319579 0.18 0 pose: 0.0 1.0085 -0.0353407 0 -0.000224382-0.00846899 -0.0176194 0.999809 uwb: 0.49878662 847.466 923.286 +imu_odom_: 1691062777.36674472 0.215478 -0.304064 9.88087 -0.0660464 0.0181095 0.076699 0.25 -0.02 pose: 0.40029972 1.01076 -0.0336722 0 -0.000932676-0.0124153 -0.0174703 0.99977 uwb: 0.0 847.466 923.286 +imu_odom_: 1691062777.61584202 0.469264 -0.184354 9.98622 -0.0490022 -0.00852212 0.0479369 0.25 -0.02 pose: 0.0 1.01076 -0.0336722 0 -0.000932676-0.0124153 -0.0174703 0.99977 uwb: 0.50141148 847.639 921.53 +imu_odom_: 1691062777.86525138 0.584185 -0.292093 10.2232 -0.0862864 -0.0245011 0.0671117 0.21 0.02 pose: 0.34010341 1.02475 -0.0357859 0 -0.00111311 -0.00884293 -0.0169498 0.999817 uwb: 0.0 847.639 921.53 +imu_odom_: 1691062777.99523927 0.921768 -0.270545 9.62948 -0.0617853 -0.0170442 0.0351537 0.21 0.02 pose: 0.0 1.02475 -0.0357859 0 -0.00111311 -0.00884293 -0.0169498 0.999817 uwb: 0.0 847.639 921.53 +imu_odom_: 1691062777.123596916 0.593762 -0.600945 9.21528 -0.076699 -0.00213053 0.0660464 0.18 0 pose: 0.54952187 1.03279 -0.0298423 0 -0.00308317 -0.00994488 -0.0165582 0.999809 uwb: 0.0 847.639 921.53 +imu_odom_: 1691062777.141598359 0.636858 -0.162806 10.4315 -0.072438 0.0138484 0.0543285 0.18 0 pose: 0.0 1.03279 -0.0298423 0 -0.00308317 -0.00994488 -0.0165582 0.999809 uwb: 0.0 847.639 921.53 +imu_odom_: 1691062777.165506275 0.442927 0.0574608 10.1873 -0.0649811 0.0106526 0.0543285 0.18 0.02 pose: 0.42074432 1.03874 -0.03788 0 -0.00412916 -0.0100856 -0.0161076 0.999811 uwb: 0.99876320 847.624 920.679 +imu_odom_: 1691062777.191575892 0.687136 -0.158017 9.59596 -0.0671117 -0.0585895 0.0458064 0.18 0.02 pose: 0.7977180 1.03874 -0.03788 0 -0.00343902 -0.00969902 -0.0160555 0.999818 uwb: 0.0 847.624 920.679 +imu_odom_: 1691062777.215554095 0.416591 -0.543484 9.56244 -0.0745685 -0.0138484 0.0511327 0.19 0.05 pose: 0.23970620 1.04677 -0.0319246 0 -0.0016139 -0.00977583 -0.015932 0.999824 uwb: 0.50115775 847.593 919.304 +imu_odom_: 1691062777.241619046 0.316035 -0.363919 9.64624 -0.0266316 -0.0181095 0.0372843 0.21 0.02 pose: 0.26138155 1.05273 -0.0399563 0 -0.00136461 -0.0112662 -0.0158345 0.99981 uwb: 0.0 847.593 919.304 +imu_odom_: 1691062777.264542938 0.442927 -0.237026 10.1466 -0.0468716 -0.0383495 0.0479369 0.21 0.02 pose: 0.0 1.05273 -0.0399563 0 -0.00136461 -0.0112662 -0.0158345 0.99981 uwb: 0.49920077 847.249 919.293 +imu_odom_: 1691062777.280672287 1.05105 -0.387861 9.50977 -0.052198 0.0255663 0.0330232 0.21 0.02 pose: 0.0 1.05273 -0.0399563 0 -0.00136461 -0.0112662 -0.0158345 0.99981 uwb: 0.0 847.249 919.293 +imu_odom_: 1691062777.305535061 0.277727 -0.385466 9.48104 -0.0958738 -0.00532632 0.0809601 0.19 0 pose: 0.24026325 1.06076 -0.0339969 0 -0.0029738 -0.00973986 -0.015732 0.999824 uwb: 0.49948952 846.018 919.33 +imu_odom_: 1691062777.328587571 0.325611 -0.241814 9.94312 -0.00745685 -0.0213053 0.02024 0.18 0 pose: 0.48843602 1.06076 -0.0339969 0 -0.0026269 -0.00704465 -0.0156675 0.999849 uwb: 0.0 846.018 919.33 +imu_odom_: 1691062777.344510432 0.40462 -0.493206 9.60075 -0.0607201 -0.0575243 0.0575243 0.18 0 pose: 0.32980820 1.07247 -0.0377565 0 -0.0043001 -0.00542679 -0.0151705 0.999861 uwb: 0.0 846.018 919.33 +imu_odom_: 1691062777.370505970 0.914585 -0.474052 9.42358 -0.04048 0.00106526 0.0532632 0.25 -0.02 pose: 0.7064902 1.07475 -0.0360619 0 -0.00391798 -0.00481637 -0.015236 0.999865 uwb: 0.50041987 846.211 917.193 +imu_odom_: 1691062777.392540625 0.361524 -0.500388 9.20092 -0.0394148 0.0106526 0.0298274 0.25 -0.02 pose: 0.0 1.07475 -0.0360619 0 -0.00391798 -0.00481637 -0.015236 0.999865 uwb: 0.0 846.211 917.193 +imu_odom_: 1691062777.408522400 0.440533 0.138864 10.6135 -0.0468716 0.00106526 0.0319579 0.25 -0.02 pose: 0.0 1.07475 -0.0360619 0 -0.00391798 -0.00481637 -0.015236 0.999865 uwb: 0.50097400 846.218 915.635 +imu_odom_: 1691062777.434527854 0.964863 -0.0837971 10.2711 -0.0798948 0.00958738 0.0607201 0.19 0 pose: 0.39922355 1.07475 -0.0360619 0 -0.00486718 -0.00411057 -0.0151808 0.999864 uwb: 0.0 846.218 915.635 +imu_odom_: 1691062777.456654087 0.976834 0.011971 10.1394 -0.0575243 -0.0383495 0.0319579 0.18 0.02 pose: 0.48036901 1.08874 -0.0381154 0 -0.00611733 -0.0040955 -0.0151862 0.999858 uwb: 0.49842208 845.686 915.519 +imu_odom_: 1691062777.482516633 0.78051 -0.514753 9.58878 -0.0596548 -0.015979 0.0458064 0.18 0.02 pose: 0.33968635 1.09472 -0.0336642 0 -0.00448856 -0.00616548 -0.0149637 0.999859 uwb: 0.0 845.686 915.519 +imu_odom_: 1691062777.499483889 0.462081 -0.308852 9.70131 -0.052198 -0.0213053 0.0266316 0.18 0.02 pose: 0.0 1.09472 -0.0336642 0 -0.00448856 -0.00616548 -0.0149637 0.999859 uwb: 0.50062111 845.604 915.123 +imu_odom_: 1691062777.523492132 0.893037 -0.553061 9.55765 -0.0596548 -0.0532632 0.056459 0.23 -0.02 pose: 0.6138917 1.09676 -0.0321451 0 -0.00415137 -0.0067784 -0.014991 0.999856 uwb: 0.0 845.604 915.123 +imu_odom_: 1691062777.540556507 0.220267 -0.232238 9.90242 -0.04048 0.0117179 0.0415453 0.23 -0.02 pose: 0.0 1.09676 -0.0321451 0 -0.00415137 -0.0067784 -0.014991 0.999856 uwb: 0.0 845.604 915.123 +imu_odom_: 1691062777.565637434 0.672771 0.0742203 9.93594 -0.0511327 0.02024 0.052198 0.23 -0.02 pose: 0.49910453 1.11076 -0.0341929 0 -0.00522987 -0.00949708 -0.0150185 0.999828 uwb: 0.49988907 845.394 914.127 +imu_odom_: 1691062777.582828093 0.318429 -0.225055 9.90002 -0.0575243 0.0170442 0.04048 0.23 -0.02 pose: 0.0 1.11076 -0.0341929 0 -0.00522987 -0.00949708 -0.0150185 0.999828 uwb: 0.0 845.394 914.127 +imu_odom_: 1691062777.607757363 0.282516 -0.268151 9.77313 -0.0692422 -0.0319579 0.0671117 0.23 -0.02 pose: 0.83163674 1.12475 -0.036236 0 -0.00342813 -0.00875072 -0.0147056 0.999848 uwb: 0.49999698 845.804 913.295 +imu_odom_: 1691062777.633673865 0.869095 -0.232238 10.1251 -0.0553937 -0.00745685 0.0351537 0.23 0 pose: 0.34016465 1.12475 -0.036236 0 -0.0033192 -0.00561326 -0.0143508 0.999876 uwb: 0.0 845.804 913.295 +imu_odom_: 1691062777.658510974 0.277727 -0.158017 9.65582 -0.0681769 -0.00852212 0.0532632 0.23 0 pose: 0.0 1.12475 -0.036236 0 -0.0033192 -0.00561326 -0.0143508 0.999876 uwb: 0.50008447 846.027 912.177 +imu_odom_: 1691062777.675576807 0.517148 -0.275333 10.2041 -0.0820254 0.015979 0.0394148 0.21 -0.02 pose: 0.7892310 1.12475 -0.036236 0 -0.00322574 -0.00641069 -0.0143713 0.999871 uwb: 0.0 846.027 912.177 +imu_odom_: 1691062777.699490264 0.845153 -0.56982 9.77792 -0.0628506 0.0319579 0.0468716 0.21 -0.02 pose: 0.0 1.12475 -0.036236 0 -0.00322574 -0.00641069 -0.0143713 0.999871 uwb: 0.49994449 846.181 911.192 +imu_odom_: 1691062777.725467720 0.411803 -0.361524 9.25119 -0.0511327 0.0245011 0.0490022 0.2 -0.02 pose: 0.50873478 1.13875 -0.0382668 0 -0.00306851 -0.00558162 -0.0142468 0.999878 uwb: 0.0 846.181 911.192 +imu_odom_: 1691062777.739524320 0.150835 -0.263362 10.137 -0.0458064 0.0213053 0.0436758 0.2 -0.02 pose: 0.0 1.13875 -0.0382668 0 -0.00306851 -0.00558162 -0.0142468 0.999878 uwb: 0.0 846.181 911.192 +imu_odom_: 1691062777.756526574 0.251391 0.0837971 9.91439 -0.0660464 -0.015979 0.0607201 0.2 -0.02 pose: 0.0 1.13875 -0.0382668 0 -0.00306851 -0.00558162 -0.0142468 0.999878 uwb: 0.50306512 846.392 909.695 +imu_odom_: 1691062777.782499364 0.191536 -0.414197 9.8258 -0.0607201 0.0351537 0.0351537 0.18 0.02 pose: 0.41027996 1.15274 -0.0402933 0 -0.00591603 -0.00565808 -0.0141134 0.999867 uwb: 0.0 846.392 909.695 +imu_odom_: 1691062777.807537419 0.493206 -0.205901 10.1394 -0.0607201 -0.00213053 0.04048 0.22 0 pose: 0.74948217 1.1648 -0.0397137 0 -0.00574187 0.00131211 -0.0138476 0.999887 uwb: 0.49597806 847.281 907.509 +imu_odom_: 1691062777.832494979 0.136469 -0.335188 9.53132 -0.0532632 -0.0213053 0.0500674 0.22 0 pose: 0.0 1.1648 -0.0397137 0 -0.00574187 0.00131211 -0.0138476 0.999887 uwb: 0.0 847.281 907.509 +imu_odom_: 1691062777.857711231 0.926556 -0.169988 9.83059 -0.0372843 -0.02024 0.0330232 0.2 -0.02 pose: 0.8085965 1.16674 -0.0423112 0 -0.00517633 0.000762958 -0.0138465 0.99989 uwb: 0.50069694 847.301 906.606 +imu_odom_: 1691062777.882530550 0.328006 -0.174777 10.4555 -0.056459 -0.0149137 0.0511327 0.2 -0.02 pose: 0.0 1.16674 -0.0423112 0 -0.00517633 0.000762958 -0.0138465 0.99989 uwb: 0.0 847.301 906.606 +imu_odom_: 1691062777.907513775 0.88346 0.0981623 10.2496 -0.0447411 -0.0628506 0.0330232 0.2 0 pose: 0.48935763 1.17475 -0.0363202 0 -0.00412909 0.00112518 -0.013728 0.999897 uwb: 0.49940493 846.874 906.712 +imu_odom_: 1691062777.932498166 0.533907 -0.299275 9.97664 -0.0777643 -0.015979 0.0468716 0.19 0.02 pose: 0.0 1.17475 -0.0363202 0 -0.00296054 -0.000349801-0.0136466 0.999905 uwb: 0.0 846.874 906.712 +imu_odom_: 1691062777.949619413 0.464475 -0.423774 9.44991 -0.0415453 -0.0511327 0.0245011 0.19 0.02 pose: 0.0 1.18874 -0.0383335 0 -0.00115915 -0.000281013-0.0136731 0.999906 uwb: 0.50052487 846.488 906.661 +imu_odom_: 1691062777.974474896 0.64404 -0.308852 10.161 -0.072438 -0.0181095 0.0617853 0.19 0.02 pose: 0.0 1.18874 -0.0383335 0 -0.00115915 -0.000281013-0.0136731 0.999906 uwb: 0.0 846.488 906.661 +imu_odom_: 1691062777.998605340 0.54109 -0.19393 10.0628 -0.0340885 -0.036219 0.0330232 0.18 0 pose: 0.67148943 1.20274 -0.040346 0 -0.00391649 -0.00518676 -0.0136694 0.999885 uwb: 0.50104400 846.808 904.643 +imu_odom_: 1691062778.21488693 0.222661 -0.102951 10.1849 -0.056459 -0.0106526 0.0639159 0.19 0 pose: 0.0 1.20274 -0.040346 0 -0.00391649 -0.00518676 -0.0136694 0.999885 uwb: 0.0 846.808 904.643 +imu_odom_: 1691062778.36471571 0.620098 -0.181959 9.94791 -0.0394148 -0.0266316 0.0415453 0.19 0 pose: 0.40967041 1.20274 -0.040346 0 -0.00164351 -0.00734771 -0.0135802 0.999879 uwb: 0.0 846.808 904.643 +imu_odom_: 1691062778.54631380 0.296881 -0.215478 9.81144 -0.0340885 -0.0149137 0.0607201 0.19 0 pose: 0.0 1.20274 -0.040346 0 -0.00164351 -0.00734771 -0.0135802 0.999879 uwb: 0.49722925 847.075 904.438 +imu_odom_: 1691062778.78675788 0.0143652 -0.162806 9.6606 -0.02024 0 0.0276969 0.18 0.02 pose: 0.6942993 1.20274 -0.040346 0 -0.00136272 -0.00673587 -0.0134968 0.999885 uwb: 0.0 847.075 904.438 +imu_odom_: 1691062778.104470381 0.426168 -0.459687 9.78031 -0.0713727 -0.0490022 0.0756338 0.18 0.02 pose: 0.0 1.20274 -0.040346 0 -0.00136272 -0.00673587 -0.0134968 0.999885 uwb: 0.50245268 846.716 904.028 +imu_odom_: 1691062778.128594701 0.447716 -0.134075 10.1418 -0.04048 -0.0351537 0.0458064 0.18 0 pose: 0.56964566 1.21674 -0.0423528 0 0.00037246 -0.00438176 -0.0131473 0.999904 uwb: 0.0 846.716 904.028 +imu_odom_: 1691062778.154528994 0.459687 -0.397437 9.75158 -0.072438 0.0330232 0.0585895 0.19 0 pose: 0.49995908 1.22474 -0.0363512 0 -0.00108372 -0.00302213 -0.0127492 0.999914 uwb: 0.49886540 846.115 903.464 +imu_odom_: 1691062778.179590674 0.222661 -0.0957681 10.2304 -0.0543285 0.0308927 0.0511327 0.19 0 pose: 0.0 1.22474 -0.0363512 0 -0.00108372 -0.00302213 -0.0127492 0.999914 uwb: 0.0 846.115 903.464 +imu_odom_: 1691062778.202478694 0.78051 -0.023942 10.5082 -0.0735032 0.0117179 0.0543285 0.21 0.02 pose: 0.67081867 1.23874 -0.038335 0 -0.00069652 -4.59641e-05-0.0123042 0.999924 uwb: 0.50126858 845.878 903.127 +imu_odom_: 1691062778.219534903 0.54109 -0.222661 9.65582 -0.0500674 -0.0181095 0.0426106 0.21 0.02 pose: 0.6954075 1.23874 -0.038335 0 -0.000433437-0.000604396-0.0122534 0.999925 uwb: 0.0 845.878 903.127 +imu_odom_: 1691062778.245528109 0.349553 -0.337582 9.59596 -0.092678 0.00958738 0.0617853 0.18 0.02 pose: 0.0 1.23874 -0.038335 0 -0.000433437-0.000604396-0.0122534 0.999925 uwb: 0.0 845.878 903.127 +imu_odom_: 1691062778.270459422 0.636858 -0.126893 10.0652 -0.0607201 -0.00213053 0.0511327 0.18 0.02 pose: 0.32990154 1.24873 -0.0433289 0 -2.17899e-06-0.00369612 -0.0121103 0.99992 uwb: 0.49902581 846.214 901.268 +imu_odom_: 1691062778.295524893 0.490811 -0.071826 10.2448 -0.052198 0.015979 0.0330232 0.19 0 pose: 0.50924519 1.25274 -0.0403059 0 -0.0010148 -0.00371529 -0.0116801 0.999924 uwb: 0.0 846.214 901.268 +imu_odom_: 1691062778.320634111 0.833182 -0.418985 9.46428 -0.0713727 -0.0426106 0.056459 0.19 0 pose: 0.0 1.25274 -0.0403059 0 -0.0010148 -0.00371529 -0.0116801 0.999924 uwb: 0.49863792 846.822 899.762 +imu_odom_: 1691062778.336460437 0.215478 -0.296881 9.61272 -0.04048 0.0191748 0.0394148 0.2 0 pose: 0.50174689 1.26675 -0.0422628 0 -6.86561e-05-0.00625339 -0.011553 0.999914 uwb: 0.0 846.822 899.762 +imu_odom_: 1691062778.353459192 0.936133 -0.126893 10.2137 -0.052198 -0.0500674 0.052198 0.2 0 pose: 0.0 1.26675 -0.0422628 0 -6.86561e-05-0.00625339 -0.011553 0.999914 uwb: 0.50068820 846.545 900.536 +imu_odom_: 1691062778.378460792 0.572214 -0.009576819.86411 -0.0394148 0.00106526 0.0543285 0.18 -0.02 pose: 0.32825081 1.27071 -0.0392734 0 1.36025e-05 -0.00659282 -0.0114456 0.999913 uwb: 0.0 846.545 900.536 +imu_odom_: 1691062778.402462327 0.306458 -0.114922 9.56723 -0.0479369 0.0287621 0.0511327 0.18 -0.02 pose: 0.9073780 1.27473 -0.0362348 0 0.000974157 -0.00675739 -0.011384 0.999912 uwb: 0.50016324 847.386 898.605 +imu_odom_: 1691062778.427600419 0.555455 -0.270545 9.87129 -0.0394148 0.00106526 0.0351537 0.25 0 pose: 0.39929355 1.28076 -0.0442125 0 0.00327038 -0.00430797 -0.0111457 0.999923 uwb: 0.0 847.386 898.605 +imu_odom_: 1691062778.452454736 0.349553 -0.299275 9.53132 -0.0649811 0.0607201 0.0553937 0.25 0 pose: 0.0 1.28076 -0.0442125 0 0.00327038 -0.00430797 -0.0111457 0.999923 uwb: 0.49996783 848.376 897.343 +imu_odom_: 1691062778.469440950 0.579397 -0.169988 10.8218 -0.0394148 0.00426106 0.0394148 0.19 0 pose: 0.8039302 1.28076 -0.0442125 0 0.00263145 -0.00467913 -0.0111588 0.999923 uwb: 0.0 848.376 897.343 +imu_odom_: 1691062778.494568250 0.665588 0.059855 10.4579 -0.0511327 -0.0149137 0.0607201 0.19 0 pose: 0.0 1.28076 -0.0442125 0 0.00263145 -0.00467913 -0.0111588 0.999923 uwb: 0.0 848.376 897.343 +imu_odom_: 1691062778.517495643 0.684742 -0.0933739 10.1083 -0.0468716 -0.0415453 0.0319579 0.23 0 pose: 0.49980742 1.29477 -0.0461532 0 0.000115553 -0.00332333 -0.0109863 0.999934 uwb: 0.49957411 848.602 896.335 +imu_odom_: 1691062778.543603176 0.708684 -0.299275 9.83777 -0.0660464 -0.0426106 0.0490022 0.23 0 pose: 0.42027186 1.30274 -0.040115 0 0.00295476 -0.00657189 -0.0107599 0.999916 uwb: 0.0 848.602 896.335 +imu_odom_: 1691062778.558599761 0.418985 -0.383072 9.87608 -0.0543285 0.00213053 0.0330232 0.18 -0.02 pose: 0.0 1.30274 -0.040115 0 0.00295476 -0.00657189 -0.0107599 0.999916 uwb: 0.50018657 849.061 895.292 +imu_odom_: 1691062778.584498764 0.1652 -0.292093 9.79947 -0.0500674 -0.0458064 0.0490022 0.18 -0.02 pose: 0.0 1.30274 -0.040115 0 0.00295476 -0.00657189 -0.0107599 0.999916 uwb: 0.0 849.061 895.292 +imu_odom_: 1691062778.609446409 0.835576 -0.423774 9.39006 -0.0319579 -0.00319579 0.0383495 0.2 -0.02 pose: 0.48080067 1.31675 -0.0420456 0 0.00098717 -0.0100088 -0.0106926 0.999892 uwb: 0.49859125 849.066 894.122 +imu_odom_: 1691062778.634554752 0.184354 -0.371101 9.68694 -0.0458064 0.00213053 0.0607201 0.2 -0.02 pose: 0.41925401 1.31675 -0.0420456 0 -0.000402071-0.00806483 -0.0105885 0.999911 uwb: 0.0 849.066 894.122 +imu_odom_: 1691062778.658484542 0.349553 -0.124498 10.1035 -0.0617853 -0.0383495 0.0479369 0.18 0 pose: 0.0 1.31675 -0.0420456 0 -0.000402071-0.00806483 -0.0105885 0.999911 uwb: 0.50203562 849.265 892.484 +imu_odom_: 1691062778.675607539 0.423774 -0.462081 9.8689 -0.0649811 0.0276969 0.0798948 0.18 0 pose: 0.49060007 1.33076 -0.0439692 0 -0.00149836 -0.00649311 -0.0102858 0.999925 uwb: 0.0 849.265 892.484 +imu_odom_: 1691062778.699429419 0.452504 -0.292093 9.71567 -0.0415453 0.0468716 0.036219 0.19 0 pose: 0.0 1.33076 -0.0439692 0 -0.00149836 -0.00649311 -0.0102858 0.999925 uwb: 0.49936412 848.663 891.856 +imu_odom_: 1691062778.724542429 0.301669 -0.59855 9.47146 -0.0735032 -0.0149137 0.0639159 0.19 0 pose: 0.41030330 1.33076 -0.0439692 0 -0.00271961 -0.00380593 -0.00987411 0.99994 uwb: 0.0 848.663 891.856 +imu_odom_: 1691062778.748417681 0.19393 -0.280122 9.63666 -0.0266316 0.0106526 0.0266316 0.23 0 pose: 0.41937067 1.34477 -0.0458743 0 -0.00622808 -0.00119479 -0.00958049 0.999934 uwb: 0.50045781 848.047 891.616 +imu_odom_: 1691062778.763429140 0.213084 -0.1652 10.3286 -0.0447411 -0.0149137 0.0585895 0.23 0 pose: 0.0 1.34477 -0.0458743 0 -0.00622808 -0.00119479 -0.00958049 0.999934 uwb: 0.0 848.047 891.616 +imu_odom_: 1691062778.787486089 0.624887 -0.0646434 10.4555 -0.0458064 -0.00532632 0.0447411 0.18 0 pose: 0.38886711 1.35273 -0.0398164 0 -0.00419992 0.00229396 -0.00957193 0.999943 uwb: 0.0 848.047 891.616 +imu_odom_: 1691062778.812434026 0.608127 -0.325611 10.0676 -0.0788296 0.0383495 0.0543285 0.18 0 pose: 0.0 1.35273 -0.0398164 0 -0.00419992 0.00229396 -0.00957193 0.999943 uwb: 0.49918913 847.447 891.188 +imu_odom_: 1691062778.836435561 0.320823 0.0502782 10.1849 -0.0340885 -0.00639159 0.0287621 0.18 0 pose: 0.32068252 1.35879 -0.0477719 0 -0.00282608 -0.000137939-0.00945751 0.999951 uwb: 0.0 847.447 891.188 +imu_odom_: 1691062778.859471448 0.411803 -0.150835 10.1083 -0.0660464 -0.0735032 0.0532632 0.18 0 pose: 0.0 1.35879 -0.0477719 0 -0.00282608 -0.000137939-0.00945751 0.999951 uwb: 0.49917163 847.251 890.645 +imu_odom_: 1691062778.876406623 0.646434 -0.356736 9.44034 -0.036219 0.0639159 0.0255663 0.19 -0.02 pose: 0.47941534 1.36674 -0.0417109 0 -0.000297801-0.000897594-0.00942011 0.999955 uwb: 0.0 847.251 890.645 +imu_odom_: 1691062778.892482309 0.227449 -0.42138 9.92157 -0.0532632 -0.0191748 0.0553937 0.19 -0.02 pose: 0.0 1.36674 -0.0417109 0 -0.000297801-0.000897594-0.00942011 0.999955 uwb: 0.0 847.251 890.645 +imu_odom_: 1691062778.909472898 0.612916 -0.0766145 10.3765 -0.0585895 -0.00532632 0.04048 0.25 0 pose: 0.49043383 1.38076 -0.0436034 0 -0.000754698-0.00109407 -0.00929661 0.999956 uwb: 0.50236227 847.615 889.692 +imu_odom_: 1691062778.934476247 0.292093 -0.009576819.57681 -0.0660464 -0.0127832 0.0532632 0.25 0 pose: 0.7011239 1.38076 -0.0436034 0 -0.000326638-0.00164466 -0.00929435 0.999955 uwb: 0.0 847.615 889.692 +imu_odom_: 1691062778.960414623 0.248997 -0.395043 9.69652 -0.0394148 0.015979 0.0234358 0.23 0 pose: 0.34982699 1.38076 -0.0436034 0 0.00212751 -0.00100434 -0.00912568 0.999956 uwb: 0.49879832 847.214 888.587 +imu_odom_: 1691062778.974479682 0.0957681 -0.368707 10.0556 -0.0490022 0.00319579 0.0330232 0.2 -0.02 pose: 0.0 1.38076 -0.0436034 0 0.00212751 -0.00100434 -0.00912568 0.999956 uwb: 0.0 847.214 888.587 +imu_odom_: 1691062778.998411805 0.572214 -0.323217 10.4435 -0.0617853 -0.015979 0.0415453 0.18 0 pose: 0.40003435 1.39477 -0.0454908 0 -0.0003188810.00216638 -0.0093828 0.999954 uwb: 0.49988034 846.773 888.265 +imu_odom_: 1691062779.24520797 1.11091 -0.160412 10.0628 -0.0671117 -0.02024 0.0543285 0.25 0 pose: 0.0 1.39477 -0.0454908 0 -0.0003188810.00216638 -0.0093828 0.999954 uwb: 0.0 846.773 888.265 +imu_odom_: 1691062779.40464366 0.0574608 -0.40462 9.59835 -0.0713727 0.0319579 0.0617853 0.25 0 pose: 0.32027421 1.39477 -0.0454908 0 -0.0014064 -0.000997315-0.00930345 0.999955 uwb: 0.0 846.773 888.265 +imu_odom_: 1691062779.65401221 0.675165 -0.059855 9.93354 -0.0447411 0.00958738 0.0351537 0.25 0 pose: 0.0 1.39477 -0.0454908 0 -0.0014064 -0.000997315-0.00930345 0.999955 uwb: 0.49910457 846.716 886.578 +imu_odom_: 1691062779.87447835 0.282516 -0.141258 10.0676 -0.0617853 -0.02024 0.0607201 0.23 0 pose: 0.41967108 1.40879 -0.0473802 0 -0.00150817 -0.00174349 -0.00901273 0.999957 uwb: 0.0 846.716 886.578 +imu_odom_: 1691062779.112573970 0.150835 0.0023942 9.60554 -0.0575243 -0.0149137 0.0585895 0.19 0 pose: 0.38973624 1.41431 -0.0431685 0 0.000460638 -0.00114256 -0.00882337 0.99996 uwb: 0.50004076 846.453 886.175 +imu_odom_: 1691062779.138427768 0.622492 -0.426168 9.71806 -0.0543285 0.0330232 0.0308927 0.19 0 pose: 0.0 1.41431 -0.0431685 0 0.000460638 -0.00114256 -0.00882337 0.99996 uwb: 0.0 846.453 886.175 +imu_odom_: 1691062779.152419915 0.0790087 -0.220267 10.2376 -0.0372843 -0.00426106 0.0500674 0.19 0 pose: 0.0 1.41431 -0.0431685 0 0.000460638 -0.00114256 -0.00882337 0.99996 uwb: 0.49958579 847.31 884.319 +imu_odom_: 1691062779.176452075 0.258574 -0.287304 10.094 -0.0628506 0.00106526 0.0532632 0.2 0 pose: 0.7052653 1.41674 -0.0413117 0 0.000884736 -0.000621676-0.00875712 0.999961 uwb: 0.0 847.31 884.319 +imu_odom_: 1691062779.202411742 0.153229 -0.167594 9.79228 -0.0553937 -0.0149137 0.0543285 0.25 0 pose: 0.50073489 1.42281 -0.0492574 0 0.000131344 5.69179e-05 -0.00866441 0.999962 uwb: 0.50089530 847.546 883.656 +imu_odom_: 1691062779.216463094 0.684742 -0.158017 10.4579 -0.0830906 -0.0149137 0.0649811 0.25 0 pose: 0.0 1.42281 -0.0492574 0 0.000131344 5.69179e-05 -0.00866441 0.999962 uwb: 0.0 847.546 883.656 +imu_odom_: 1691062779.240465506 0.845153 0.059855 10.501 -0.0617853 -0.0234358 0.0500674 0.17 -0.02 pose: 0.39889110 1.43075 -0.0431843 0 -0.0008373020.0036912 -0.00839938 0.999958 uwb: 0.0 847.546 883.656 +imu_odom_: 1691062779.267464901 0.505177 -0.234632 10.6566 -0.072438 0.0106526 0.0532632 0.17 -0.02 pose: 0.0 1.43075 -0.0431843 0 -0.0008373020.0036912 -0.00839938 0.999958 uwb: 0.50016325 847.305 883.894 +imu_odom_: 1691062779.293399195 0.586579 -0.148441 9.75398 -0.0873517 0.0191748 0.0607201 0.19 0 pose: 0.39939565 1.44477 -0.0450441 0 0.000141623 0.00303735 -0.0080399 0.999963 uwb: 0.0 847.305 883.894 +imu_odom_: 1691062779.319447815 0.543484 -0.258574 9.65582 -0.0596548 -0.0575243 0.0426106 0.19 0 pose: 0.0 1.44477 -0.0450441 0 0.000141623 0.00303735 -0.0080399 0.999963 uwb: 0.50003201 846.958 882.784 +imu_odom_: 1691062779.342395041 0.342371 -0.428562 9.75158 -0.0798948 -0.00639159 0.0500674 0.19 0 pose: 0.51077052 1.44477 -0.0450441 0 3.13851e-05 -0.00157926 -0.00768244 0.999969 uwb: 0.0 846.958 882.784 +imu_odom_: 1691062779.359471958 0.622492 -0.0454898 10.0916 -0.0511327 -0.00532632 0.0617853 0.19 0 pose: 0.0 1.44477 -0.0450441 0 3.13851e-05 -0.00157926 -0.00768244 0.999969 uwb: 0.49978412 846.588 881.863 +imu_odom_: 1691062779.374524249 0.452504 -0.201113 10.0916 -0.0383495 0.00319579 0.14168 0.19 0.14 pose: 0.50980225 1.45879 -0.0468881 0 -0.00165632 -0.00544486 -0.00741008 0.999956 uwb: 0.0 846.588 881.863 +imu_odom_: 1691062779.390583311 0.222661 -0.988805 9.73961 -0.0447411 0.00319579 0.223706 0.19 0.14 pose: 0.0 1.45879 -0.0468881 0 -0.00165632 -0.00544486 -0.00741008 0.999956 uwb: 0.0 846.588 881.863 +imu_odom_: 1691062779.407515571 0.512359 -0.371101 9.78271 -0.0415453 -0.0287621 0.275903 0.19 0.14 pose: 0.0 1.45879 -0.0468881 0 -0.00165632 -0.00544486 -0.00741008 0.999956 uwb: 0.49948079 846.137 881.515 +imu_odom_: 1691062779.424409041 0.97444 -0.186748 10.1275 -0.0351537 -0.0532632 0.32171 0.18 0.2 pose: 0.40023268 1.46672 -0.0407951 0 -0.0010284 -0.00467746 -0.00678216 0.999966 uwb: 0.0 846.137 881.515 +imu_odom_: 1691062779.440380608 0.684742 -0.754174 9.62708 -0.0745685 0.0330232 0.376038 0.18 0.2 pose: 0.0 1.46672 -0.0407951 0 -0.0010284 -0.00467746 -0.00678216 0.999966 uwb: 0.0 846.137 881.515 +imu_odom_: 1691062779.456367925 0.411803 0.0335188 10.1682 -0.0223706 0.0127832 0.395213 0.23 0.41 pose: 0.32047838 1.47275 -0.0487775 0 -0.00260299 -0.00379051 -0.00394643 0.999982 uwb: 0.0 846.137 881.515 +imu_odom_: 1691062779.473413344 0.493206 -0.28491 10.501 -0.0585895 -0.0639159 0.429302 0.23 0.41 pose: 0.41849573 1.48067 -0.0427148 0 -0.00459792 -0.00646295 0.00218907 0.999966 uwb: 0.0 846.137 881.515 +imu_odom_: 1691062779.490420558 1.02472 -0.605733 9.73961 -0.0596548 0.00958738 0.467651 0.23 0.41 pose: 0.0 1.48067 -0.0427148 0 -0.00459792 -0.00646295 0.00218907 0.999966 uwb: 0.0 846.137 881.515 +imu_odom_: 1691062779.506416332 0.766145 -0.447716 9.79468 -0.0426106 -0.00426106 0.491087 0.18 0.44 pose: 0.7064320 1.4807 -0.0427088 0 -0.00382359 -0.00615865 0.00344248 0.999968 uwb: 0.100054233 845.876 880.455 +imu_odom_: 1691062779.523527664 0.993594 -0.287304 9.96706 -0.0383495 0.0383495 0.498544 0.18 0.44 pose: 0.0 1.4807 -0.0427088 0 -0.00382359 -0.00615865 0.00344248 0.999968 uwb: 0.0 845.876 880.455 +imu_odom_: 1691062779.540575416 0.493206 -0.708684 9.69412 -0.0830906 0.0543285 0.572047 0.18 0.44 pose: 0.0 1.4807 -0.0427088 0 -0.00382359 -0.00615865 0.00344248 0.999968 uwb: 0.0 845.876 880.455 +imu_odom_: 1691062779.556394452 0.186748 -0.244209 9.59117 -0.0511327 0.0287621 0.573112 0.24 0.7 pose: 0.50988974 1.4947 -0.0446607 0 -0.00476028 -0.00669085 0.0138028 0.999871 uwb: 0.49985703 845.82 878.677 +imu_odom_: 1691062779.573523574 0.452504 -0.272939 9.70609 -0.02024 -0.0458064 0.588026 0.18 0.55 pose: 0.0 1.4947 -0.0446607 0 -0.00476028 -0.00669085 0.0138028 0.999871 uwb: 0.0 845.82 878.677 +imu_odom_: 1691062779.590642197 0.268151 -0.246603 10.3645 -0.0213053 -0.056459 0.60507 0.18 0.55 pose: 0.66143343 1.50871 -0.0465314 0 -0.00572232 -0.00565217 0.0305375 0.999501 uwb: 0.0 845.82 878.677 +imu_odom_: 1691062779.608378241 0.885855 -0.624887 10.1299 -0.0372843 -0.0383495 0.649811 0.18 0.58 pose: 0.0 1.50871 -0.0465314 0 -0.00572232 -0.00565217 0.0305375 0.999501 uwb: 0.50052490 846.012 877.516 +imu_odom_: 1691062779.622422301 1.14203 -0.332794 9.63427 -0.052198 -0.0852212 0.660464 0.18 0.58 pose: 0.0 1.50871 -0.0465314 0 -0.00572232 -0.00565217 0.0305375 0.999501 uwb: 0.0 846.012 877.516 +imu_odom_: 1691062779.637418012 0.828394 -0.105345 9.83777 -0.0298274 -0.0223706 0.656203 0.18 0.58 pose: 0.34066339 1.50871 -0.0465314 0 -0.00461573 -0.00471877 0.0402782 0.999167 uwb: 0.0 846.012 877.516 +imu_odom_: 1691062779.654364270 1.2785 -0.071826 9.663 -0.056459 -0.0713727 0.680704 0.21 0.67 pose: 0.38774428 1.51663 -0.0404807 0 -0.00393479 -0.00885776 0.0522019 0.99859 uwb: 0.0 846.012 877.516 +imu_odom_: 1691062779.670416917 1.39343 -0.368707 9.59117 -0.0660464 -0.00639159 0.60294 0.21 0.67 pose: 0.7950932 1.51666 -0.0404747 0 -0.00366673 -0.00985822 0.0547421 0.998445 uwb: 0.0 846.012 877.516 +imu_odom_: 1691062779.687482168 1.38145 -0.328006 10.0149 -0.0575243 0.036219 0.461259 0.21 0.67 pose: 0.0 1.51666 -0.0404747 0 -0.00366673 -0.00985822 0.0547421 0.998445 uwb: 0.0 846.012 877.516 +imu_odom_: 1691062779.704350556 1.22104 0.0622492 9.8665 -0.0798948 0.0628506 0.38243 0.12 0.38 pose: 0.42113224 1.52692 -0.0452036 0 -0.00360707 -0.0139509 0.0657027 0.997735 uwb: 0.99819455 845.859 877.175 +imu_odom_: 1691062779.720348372 0.90022 -0.191536 10.1227 -0.0692422 0.0713727 0.34408 0.11 0.29 pose: 0.0 1.52692 -0.0452036 0 -0.00360707 -0.0139509 0.0657027 0.997735 uwb: 0.0 845.859 877.175 +imu_odom_: 1691062779.737345378 0.536301 -0.347159 10.1754 -0.0617853 -0.0170442 0.313188 0.11 0.29 pose: 0.0 1.52692 -0.0452036 0 -0.00360707 -0.0139509 0.0657027 0.997735 uwb: 0.0 845.859 877.175 +imu_odom_: 1691062779.753342902 0.672771 -0.301669 9.79468 -0.0479369 -0.00426106 0.290817 0.1 0.26 pose: 0.23882252 1.53063 -0.0423293 0 -0.00260016 -0.0150774 0.0696186 0.997456 uwb: 0.49964121 845.689 876.818 +imu_odom_: 1691062779.770455109 1.02951 -0.248997 10.1179 -0.0617853 -0.0127832 0.306796 0.1 0.26 pose: 0.0 1.53063 -0.0423293 0 -0.00260016 -0.0150774 0.0696186 0.997456 uwb: 0.0 845.689 876.818 +imu_odom_: 1691062779.786502214 0.797269 -0.328006 9.6199 -0.056459 -0.00319579 0.309992 0.1 0.26 pose: 0.33986428 1.53063 -0.0423293 0 -0.00378919 -0.0143279 0.0743183 0.997124 uwb: 0.0 845.689 876.818 +imu_odom_: 1691062779.803360686 0.787692 -0.275333 9.87369 -0.0468716 -0.015979 0.289752 0.11 0.32 pose: 0.41151366 1.5306 -0.0423357 0 -0.00422881 -0.0178661 0.0797462 0.996646 uwb: 0.50153984 846.205 875.684 +imu_odom_: 1691062779.819362294 0.799663 -0.246603 9.92875 -0.0458064 0 0.268447 0.11 0.32 pose: 0.7991471 1.53063 -0.0423295 0 -0.00356854 -0.0183842 0.0807293 0.99656 uwb: 0.0 846.205 875.684 +imu_odom_: 1691062779.836361341 0.751779 -0.148441 10.0509 -0.0490022 0.00745685 0.255663 0.11 0.32 pose: 0.0 1.53063 -0.0423295 0 -0.00356854 -0.0183842 0.0807293 0.99656 uwb: 0.0 846.205 875.684 +imu_odom_: 1691062779.852361782 0.696713 -0.217872 9.89524 -0.0575243 -0.00958738 0.249272 0.06 0.23 pose: 0.41867656 1.53855 -0.0362694 0 0.000253782 -0.0188553 0.0854172 0.996167 uwb: 0.49992410 846.674 874.506 +imu_odom_: 1691062779.869354413 0.574608 -0.241814 9.77553 -0.052198 -0.00319579 0.227967 0.09 0.26 pose: 0.0 1.53855 -0.0362694 0 0.000253782 -0.0188553 0.0854172 0.996167 uwb: 0.0 846.674 874.506 +imu_odom_: 1691062779.885470347 0.806846 -0.1652 9.9503 -0.0532632 -0.00532632 0.209857 0.09 0.26 pose: 0.0 1.53855 -0.0362694 0 0.000253782 -0.0188553 0.0854172 0.996167 uwb: 0.0 846.674 874.506 +imu_odom_: 1691062779.902360025 0.742203 -0.059855 9.89045 -0.0532632 0.00532632 0.207727 0.09 0.26 pose: 0.24044992 1.53858 -0.036263 0 0.000441225 -0.0165356 0.0878412 0.995997 uwb: 0.50073197 846.031 874.204 +imu_odom_: 1691062779.918418504 0.347159 -0.251391 9.91918 -0.0585895 0.0223706 0.251402 0.07 0.32 pose: 0.0 1.53858 -0.036263 0 0.000441225 -0.0165356 0.0878412 0.995997 uwb: 0.0 846.031 874.204 +imu_odom_: 1691062779.934412238 0.392649 -0.581791 9.82341 -0.0575243 -0.0170442 0.286556 0.07 0.32 pose: 0.32006424 1.54468 -0.0441876 0 0.0020619 -0.0168032 0.0906021 0.995743 uwb: 0.0 846.031 874.204 +imu_odom_: 1691062779.950343850 0.517148 -0.385466 9.91918 -0.0436758 -0.0181095 0.265251 0.04 0.23 pose: 0.41999481 1.54468 -0.0441876 0 0.00117774 -0.0142084 0.095101 0.995366 uwb: 0.49677721 846.383 872.918 +imu_odom_: 1691062779.967339688 0.744597 0.0143652 9.90002 -0.0511327 -0.00745685 0.280165 0.04 0.23 pose: 0.8001970 1.54468 -0.0441876 0 0.000596864 -0.0137543 0.0960092 0.995285 uwb: 0.0 846.383 872.918 +imu_odom_: 1691062779.983336046 0.804452 -0.21069 9.92636 -0.0617853 0.00106526 0.288687 0.04 0.23 pose: 0.0 1.54468 -0.0441876 0 0.000596864 -0.0137543 0.0960092 0.995285 uwb: 0.0 846.383 872.918 +imu_odom_: 1691062779.999355153 0.593762 -0.323217 9.75637 -0.0553937 0.0127832 0.26312 0.05 0.32 pose: 0.40921838 1.5489 -0.0409802 0 0.00173812 -0.0152535 0.100902 0.994778 uwb: 0.50186065 846.174 871.61 +imu_odom_: 1691062780.16411072 0.490811 -0.234632 9.94073 -0.0543285 0.0117179 0.262055 0.04 0.23 pose: 0.0 1.5489 -0.0409802 0 0.00173812 -0.0152535 0.100902 0.994778 uwb: 0.0 846.174 871.61 +imu_odom_: 1691062780.32345018 0.474052 -0.234632 9.9096 -0.0585895 -0.00532632 0.28123 0.04 0.23 pose: 0.0 1.5489 -0.0409802 0 0.00173812 -0.0152535 0.100902 0.994778 uwb: 0.0 846.174 871.61 +imu_odom_: 1691062780.48399414 0.605733 -0.301669 9.89524 -0.0543285 -0.00426106 0.271642 0.04 0.23 pose: 0.24100989 1.55263 -0.038127 0 0.000326781 -0.0132796 0.103598 0.994531 uwb: 0.49975205 846.047 871.504 +imu_odom_: 1691062780.75404061 0.708684 -0.222661 9.9527 -0.0490022 -0.00639159 0.255663 0.03 0.23 pose: 0.0 1.55263 -0.038127 0 0.000326781 -0.0132796 0.103598 0.994531 uwb: 0.0 846.047 871.504 +imu_odom_: 1691062780.91334507 -0.0454898 -0.205901 9.61272 -0.0607201 0.0777643 0.249272 0.03 0.23 pose: 0.31911931 1.55263 -0.038127 0 -0.000692999-0.0107464 0.107326 0.994166 uwb: 0.0 846.047 871.504 +imu_odom_: 1691062780.108371760 -0.986411 -0.292093 10.0437 -0.0628506 0.0894822 0.207727 0.03 0.2 pose: 0.16089103 1.55263 -0.038127 0 -0.00122316 -0.0113607 0.10913 0.993962 uwb: 0.50182276 845.789 871.516 +imu_odom_: 1691062780.124474571 -1.24977 -0.0287304 9.92636 -0.0617853 -0.0319579 0.138484 0.03 0.2 pose: 0.0 1.55263 -0.038127 0 -0.00122316 -0.0113607 0.10913 0.993962 uwb: 0.0 845.789 871.516 +imu_odom_: 1691062780.141540114 -0.397437 -0.0742203 9.78271 -0.056459 -0.0852212 0.0916127 0.1 0.02 pose: 0.27960379 1.55263 -0.038127 0 -0.000253445-0.0119561 0.112093 0.993626 uwb: 0.0 845.789 871.516 +imu_odom_: 1691062780.157419521 0.383072 -0.258574 9.87848 -0.0543285 -0.0490022 0.0745685 0.1 0.02 pose: 0.0 1.55263 -0.038127 0 -0.000253445-0.0119561 0.112093 0.993626 uwb: 0.49689680 846.006 870.554 +imu_odom_: 1691062780.174334282 0.418985 -0.356736 9.75158 -0.0607201 0.0127832 0.0735032 0.1 0.02 pose: 0.0 1.55263 -0.038127 0 -0.000253445-0.0119561 0.112093 0.993626 uwb: 0.0 846.006 870.554 +imu_odom_: 1691062780.190330349 -0.00718261-0.339977 9.83538 -0.0532632 0.00639159 0.0830906 0.1 0.02 pose: 0.49033179 1.55263 -0.038127 0 -0.000714157-0.00651075 0.115348 0.993304 uwb: 0.0 846.006 870.554 +imu_odom_: 1691062780.206370164 -0.203507 -0.385466 10.0078 -0.0468716 0 0.076699 0.13 0 pose: 0.0 1.55263 -0.038127 0 -0.000714157-0.00651075 0.115348 0.993304 uwb: 0.50065616 846.289 869.412 +imu_odom_: 1691062780.221474077 0.023942 -0.0574608 10.1011 -0.0479369 -0.0308927 0.0628506 0.13 0 pose: 0.0 1.55263 -0.038127 0 -0.000714157-0.00651075 0.115348 0.993304 uwb: 0.0 846.289 869.412 +imu_odom_: 1691062780.238472832 0.153229 0.143652 9.86172 -0.0649811 -0.0490022 0.0820254 0.13 0 pose: 0.64905004 1.56058 -0.0320537 0 -0.00311526 -0.00156272 0.116641 0.993168 uwb: 0.0 846.289 869.412 +imu_odom_: 1691062780.254412903 0.418985 -0.347159 10.0437 -0.056459 -0.0255663 0.092678 0.12 0.02 pose: 0.0 1.56058 -0.0320537 0 -0.00311526 -0.00156272 0.116641 0.993168 uwb: 0.50037618 845.486 869.885 +imu_odom_: 1691062780.270344224 0.308852 -0.287304 10.0844 -0.0639159 -0.0245011 0.0596548 0.12 0.02 pose: 0.31148102 1.56058 -0.0320537 0 -0.00209871 0.000781337 0.11714 0.993113 uwb: 0.0 845.486 869.885 +imu_odom_: 1691062780.287536634 0.227449 -0.0790087 9.91918 -0.0543285 -0.00106526 0.0543285 0.12 0.02 pose: 0.41859491 1.57082 -0.0367995 0 -0.00331136 0.00157373 0.117934 0.993015 uwb: 0.0 845.486 869.885 +imu_odom_: 1691062780.303323589 0.383072 -0.248997 9.9527 -0.0596548 -0.0308927 0.0735032 0.12 0.02 pose: 0.0 1.57082 -0.0367995 0 -0.00331136 0.00157373 0.117934 0.993015 uwb: 0.50013994 845.754 868.724 +imu_odom_: 1691062780.320334303 0.514753 -0.385466 10.2807 -0.0532632 -0.0479369 0.0553937 0.12 0.02 pose: 0.0 1.57082 -0.0367995 0 -0.00331136 0.00157373 0.117934 0.993015 uwb: 0.0 845.754 868.724 +imu_odom_: 1691062780.336386366 0.447716 -0.169988 10.2208 -0.0596548 -0.00852212 0.0649811 0.16 0 pose: 0.8139045 1.5746 -0.0338891 0 -0.0027012 0.00212923 0.117996 0.993008 uwb: 0.0 845.754 868.724 +imu_odom_: 1691062780.352445721 0.895431 -0.433351 10.331 -0.0351537 -0.0692422 0.0777643 0.16 0 pose: 0.0 1.5746 -0.0338891 0 -0.0027012 0.00212923 0.117996 0.993008 uwb: 0.50051616 845.194 868.247 +imu_odom_: 1691062780.368370917 0.881066 -0.294487 9.50019 -0.0468716 -0.0532632 0.113983 0.16 0 pose: 0.0 1.5746 -0.0338891 0 -0.0027012 0.00212923 0.117996 0.993008 uwb: 0.0 845.194 868.247 +imu_odom_: 1691062780.384367276 0.758962 -0.227449 9.62469 -0.0639159 -0.00319579 0.183225 0.1 -0.02 pose: 0.47905956 1.5746 -0.0338891 0 -0.0023028 -0.0008904160.118535 0.992947 uwb: 0.0 845.194 868.247 +imu_odom_: 1691062780.401307993 1.25217 -0.646434 10.2352 -0.0841559 -0.0660464 0.171508 0.12 0 pose: 0.0 1.5746 -0.0338891 0 -0.0023028 -0.0008904160.118535 0.992947 uwb: 0.49752094 845.645 867.465 +imu_odom_: 1691062780.417463592 1.46525 -0.007182619.7037 -0.0436758 -0.0458064 0.0543285 0.12 0 pose: 0.64982291 1.5825 -0.0277632 0 -0.00146813 -0.00759252 0.121143 0.992605 uwb: 0.0 845.645 867.465 +imu_odom_: 1691062780.433329292 1.24498 0.344765 9.79707 -0.056459 0.00639159 0.036219 0.11 0 pose: 0.0 1.5825 -0.0277632 0 -0.00146813 -0.00759252 0.121143 0.992605 uwb: 0.0 845.645 867.465 +imu_odom_: 1691062780.449338192 0.739808 -0.0335188 9.79228 -0.072438 0.0351537 0.0468716 0.11 0 pose: 0.0 1.5825 -0.0277632 0 -0.00146813 -0.00759252 0.121143 0.992605 uwb: 0.50131528 846.206 866.307 +imu_odom_: 1691062780.466458857 0.536301 -0.409408 9.90721 -0.052198 -0.0117179 0.00426106 0.11 0 pose: 0.33043819 1.5825 -0.0277632 0 -0.000640959-0.0110466 0.121884 0.992483 uwb: 0.0 846.206 866.307 +imu_odom_: 1691062780.483335120 0.768539 -0.356736 9.8282 -0.052198 -0.02024 -0.0287621 0.06 0 pose: 0.42043522 1.58592 -0.0321321 0 -0.000217892-0.0113239 0.121618 0.992512 uwb: 0.0 846.206 866.307 +imu_odom_: 1691062780.498340456 0.881066 -0.0502782 9.89763 -0.0532632 -0.0181095 0.00319579 0.06 0 pose: 0.8004595 1.58866 -0.0356374 0 -0.000594797-0.0120792 0.12135 0.992536 uwb: 0.50009036 845.695 866.571 +imu_odom_: 1691062780.512388308 0.715866 -0.339977 9.73482 -0.0681769 0.00319579 0.0308927 0.06 0 pose: 0.0 1.58866 -0.0356374 0 -0.000594797-0.0120792 0.12135 0.992536 uwb: 0.0 845.695 866.571 +imu_odom_: 1691062780.527472681 0.727837 -0.426168 9.95509 -0.0511327 0.0213053 0.015979 0.05 0 pose: 0.37924856 1.59654 -0.0294796 0 -0.00111522 -0.0146892 0.120719 0.992577 uwb: 0.0 845.695 866.571 +imu_odom_: 1691062780.554451370 0.550666 -0.0335188 9.87608 -0.0553937 -0.00319579 0.015979 0.05 0 pose: 0.0 1.59654 -0.0294796 0 -0.00111522 -0.0146892 0.120719 0.992577 uwb: 0.50053950 845.175 866.593 +imu_odom_: 1691062780.570381816 0.0407014 -0.316035 9.8665 -0.0692422 0.0553937 0.0106526 0.04 0.02 pose: 0.42063062 1.59654 -0.0294796 0 -0.000281455-0.0135094 0.120219 0.992655 uwb: 0.0 845.175 866.593 +imu_odom_: 1691062780.587316701 -0.830788 -0.136469 9.89284 -0.0394148 0.0735032 -0.108657 0.08 -0.17 pose: 0.0 1.59654 -0.0294796 0 -0.000281455-0.0135094 0.120219 0.992655 uwb: 0.0 845.175 866.593 +imu_odom_: 1691062780.603313643 -1.14203 0.146046 9.68694 -0.0340885 0.015979 -0.206661 0.07 -0.2 pose: 0.0 1.59654 -0.0294796 0 -0.000281455-0.0135094 0.120219 0.992655 uwb: 0.49804299 844.835 866.771 +imu_odom_: 1691062780.619313501 -0.347159 0.0430956 9.87848 -0.0511327 -0.0681769 -0.251402 0.07 -0.2 pose: 0.40929714 1.59654 -0.0294795 0 -0.000620588-0.00824211 0.11777 0.993007 uwb: 0.0 844.835 866.771 +imu_odom_: 1691062780.636304091 0.342371 -0.328006 9.83538 -0.0745685 -0.0671117 -0.269512 0.07 -0.2 pose: 0.0 1.59654 -0.0294795 0 -0.000620588-0.00824211 0.11777 0.993007 uwb: 0.0 844.835 866.771 +imu_odom_: 1691062780.652359654 0.651223 -0.337582 10.1778 -0.0532632 -0.0276969 -0.309992 0.09 -0.32 pose: 0.0 1.59654 -0.0294795 0 -0.000620588-0.00824211 0.11777 0.993007 uwb: 0.50102072 844.655 866.144 +imu_odom_: 1691062780.667413695 0.1652 -0.150835 9.80665 -0.04048 -0.00426106 -0.343015 0.09 -0.32 pose: 0.31991259 1.59654 -0.0294795 0 -0.00054072 -0.00589728 0.113255 0.993548 uwb: 0.0 844.655 866.144 +imu_odom_: 1691062780.683363390 -0.177171 -0.0143652 9.77074 -0.0575243 -0.0127832 -0.370712 0.12 -0.5 pose: 0.40041352 1.6044 -0.0232931 0 -0.00133239 -0.00560437 0.106238 0.994324 uwb: 0.0 844.655 866.144 +imu_odom_: 1691062780.700463056 0.100556 0.011971 10.2951 -0.0532632 -0.0330232 -0.401605 0.12 -0.5 pose: 0.0 1.6044 -0.0232931 0 -0.00133239 -0.00560437 0.106238 0.994324 uwb: 0.50134737 843.935 865.999 +imu_odom_: 1691062780.717313946 0.107739 -0.380678 9.59357 -0.0713727 0.0149137 -0.458064 0.12 -0.5 pose: 0.0 1.6044 -0.0232931 0 -0.00133239 -0.00560437 0.106238 0.994324 uwb: 0.0 843.935 865.999 +imu_odom_: 1691062780.733312638 0.059855 -0.126893 10.0748 -0.0511327 0.00958738 -0.453803 0.13 -0.55 pose: 0.6964576 1.6044 -0.0232931 0 -0.00117181 -0.00495763 0.104818 0.994478 uwb: 0.0 843.935 865.999 +imu_odom_: 1691062780.750440302 0.172383 -0.31364 9.46667 -0.0777643 -0.015979 -0.472977 0.15 -0.64 pose: 0.0 1.6044 -0.0232931 0 -0.00117181 -0.00495763 0.104818 0.994478 uwb: 0.50056866 844.279 865.346 +imu_odom_: 1691062780.767585174 -0.110133 -0.232238 9.66779 -0.0575243 -0.0149137 -0.486826 0.15 -0.64 pose: 0.66143344 1.61057 -0.0311651 0 -0.00114516 0.00102297 0.089293 0.996004 uwb: 0.0 844.279 865.346 +imu_odom_: 1691062780.784426731 0.198719 -0.0646434 9.96467 -0.0511327 -0.0276969 -0.528371 0.19 -0.82 pose: 0.0 1.61057 -0.0311651 0 -0.00114516 0.00102297 0.089293 0.996004 uwb: 0.0 844.279 865.346 +imu_odom_: 1691062780.801425196 0.232238 -0.232238 9.54808 -0.0735032 -0.0127832 -0.531567 0.19 -0.82 pose: 0.0 1.61057 -0.0311651 0 -0.00114516 0.00102297 0.089293 0.996004 uwb: 0.49865545 844.571 864.648 +imu_odom_: 1691062780.818384871 0.196325 -0.25618 9.80665 -0.0394148 0.00319579 -0.547546 0.19 -0.82 pose: 0.34116796 1.61847 -0.0250432 0 -0.00127341 0.00383326 0.0802739 0.996765 uwb: 0.0 844.571 864.648 +imu_odom_: 1691062780.835324713 0.672771 -0.0742203 10.0341 -0.0511327 -0.052198 -0.517718 0.13 -0.55 pose: 0.43746460 1.62278 -0.0216475 0 -0.0016177 0.00756953 0.0676953 0.997676 uwb: 0.0 844.571 864.648 +imu_odom_: 1691062780.849301695 0.773327 -0.0909797 9.96467 -0.0745685 -0.0500674 -0.451672 0.13 -0.55 pose: 0.8078674 1.62637 -0.0189054 0 -0.00126363 0.00664046 0.0654512 0.997833 uwb: 0.49805757 844.54 864.143 +imu_odom_: 1691062780.865440962 1.1995 -0.339977 9.80904 -0.0500674 -0.0617853 -0.394148 0.13 -0.55 pose: 0.0 1.62637 -0.0189054 0 -0.00126363 0.00664046 0.0654512 0.997833 uwb: 0.0 844.54 864.143 +imu_odom_: 1691062780.881365283 1.28808 -0.280122 9.91199 -0.052198 -0.0756338 -0.396278 0.1 -0.44 pose: 0.38977417 1.62637 -0.0189054 0 -0.0006162370.00189603 0.0560702 0.998425 uwb: 0.0 844.54 864.143 +imu_odom_: 1691062780.898297834 1.652 0.00718261 9.86411 -0.0671117 0.00532632 -0.336624 0.09 -0.38 pose: 0.0 1.62637 -0.0189054 0 -0.0006162370.00189603 0.0560702 0.998425 uwb: 0.0 844.54 864.143 +imu_odom_: 1691062780.914414061 1.32399 -0.395043 10.082 -0.0585895 -0.00639159 -0.26099 0.09 -0.38 pose: 0.0 1.62637 -0.0189054 0 -0.0006162370.00189603 0.0560702 0.998425 uwb: 0.50002911 845.022 863.127 +imu_odom_: 1691062780.931422441 0.320823 -0.675165 9.59596 -0.0479369 0.0351537 -0.270577 0.1 -0.41 pose: 0.23926583 1.62637 -0.0189054 0 -0.000431752-0.00100903 0.0511006 0.998693 uwb: 0.0 845.022 863.127 +imu_odom_: 1691062780.948425572 0.730232 -0.105345 10.1466 -0.0351537 -0.0138484 -0.275903 0.1 -0.41 pose: 0.0 1.62637 -0.0189054 0 -0.000431752-0.00100903 0.0511006 0.998693 uwb: 0.50126279 844.974 862.36 +imu_odom_: 1691062780.964409973 0.605733 0.0335188 9.81383 -0.0735032 -0.00958738 -0.219444 0.1 -0.41 pose: 0.0 1.62637 -0.0189054 0 -0.000431752-0.00100903 0.0511006 0.998693 uwb: 0.0 844.974 862.36 +imu_odom_: 1691062780.981288861 0.703895 -0.373495 10.0987 -0.0703074 -0.00532632 -0.181095 0.06 -0.23 pose: 0.75042428 1.64038 -0.0206544 0 0.000316761 -0.00483505 0.0396134 0.999203 uwb: 0.0 844.974 862.36 +imu_odom_: 1691062780.998428483 0.744597 -0.507571 9.8665 -0.0553937 -0.0106526 -0.184291 0.06 -0.23 pose: 0.7946557 1.64041 -0.0206476 0 -0.000205956-0.00548376 0.0387393 0.999234 uwb: 0.50079615 844.637 862.061 +imu_odom_: 1691062781.14339681 0.653617 -0.19393 9.77074 -0.052198 0.00639159 -0.155529 0.06 -0.23 pose: 0.0 1.64041 -0.0206476 0 -0.000205956-0.00548376 0.0387393 0.999234 uwb: 0.0 844.637 862.061 +imu_odom_: 1691062781.31366144 0.577003 -0.201113 9.85214 -0.0628506 0 -0.120375 0.05 -0.17 pose: 0.41983151 1.64038 -0.0206543 0 -0.001168 -0.00864902 0.0342857 0.999374 uwb: 0.0 844.637 862.061 +imu_odom_: 1691062781.47402167 0.646434 -0.349553 9.95988 -0.0596548 -0.0138484 -0.127832 0.06 -0.26 pose: 0.0 1.64038 -0.0206543 0 -0.001168 -0.00864902 0.0342857 0.999374 uwb: 0.0 844.637 862.061 +imu_odom_: 1691062781.63333488 0.581791 -0.162806 9.88087 -0.0596548 -0.00958738 -0.145941 0.06 -0.26 pose: 0.0 1.64038 -0.0206543 0 -0.001168 -0.00864902 0.0342857 0.999374 uwb: 0.50169153 845.044 860.964 +imu_odom_: 1691062781.79267143 0.651223 -0.25618 9.89045 -0.0575243 -0.0149137 -0.129962 0.05 -0.2 pose: 0.24010579 1.64041 -0.0206475 0 -0.000149119-0.00918051 0.0323303 0.999435 uwb: 0.0 845.044 860.964 +imu_odom_: 1691062781.105437674 0.751779 -0.395043 9.87608 -0.0628506 0.00639159 -0.0852212 0.05 -0.2 pose: 0.0 1.64041 -0.0206475 0 -0.000149119-0.00918051 0.0323303 0.999435 uwb: 0.49763761 845.65 859.552 +imu_odom_: 1691062781.121424701 0.244209 -0.452504 9.84496 -0.0607201 0.0394148 -0.0990696 0.05 -0.2 pose: 0.31996510 1.64041 -0.0206475 0 0.000192714 -0.0100691 0.0294974 0.999514 uwb: 0.0 845.65 859.552 +imu_odom_: 1691062781.138419374 -0.114922 -0.150835 10.228 -0.0458064 0.0319579 -0.206661 0.04 -0.14 pose: 0.42035065 1.64041 -0.0206475 0 -0.00271707 -0.0116502 0.0266572 0.999573 uwb: 0.0 845.65 859.552 +imu_odom_: 1691062781.155325386 -1.60412 0.344765 9.36133 -0.0308927 0.0585895 -0.2024 0.04 -0.14 pose: 0.0 1.64041 -0.0206475 0 -0.00271707 -0.0116502 0.0266572 0.999573 uwb: 0.50036744 845.475 859.146 +imu_odom_: 1691062781.171332828 -1.12049 -0.399832 10.1562 -0.0617853 -0.0511327 -0.0809601 0.08 -0.08 pose: 0.42943551 1.64041 -0.0206475 0 -0.00215052 -0.00649151 0.0219047 0.999737 uwb: 0.0 845.475 859.146 +imu_odom_: 1691062781.188352875 0.253785 -0.964863 9.69891 -0.0660464 -0.113983 -0.0468716 0.08 -0.08 pose: 0.0 1.64041 -0.0206475 0 -0.00215052 -0.00649151 0.0219047 0.999737 uwb: 0.0 845.475 859.146 +imu_odom_: 1691062781.205449625 0.572214 -0.411803 9.50498 -0.0596548 -0.0117179 -0.0703074 0.08 -0.08 pose: 0.0 1.64041 -0.0206475 0 -0.00215052 -0.00649151 0.0219047 0.999737 uwb: 0.50049577 845.388 858.819 +imu_odom_: 1691062781.221421486 0.452504 -0.0837971 9.7875 -0.0639159 0.0319579 -0.0511327 0.1 -0.11 pose: 0.6951452 1.64041 -0.0206475 0 -0.00224 -0.00596453 0.0214881 0.999749 uwb: 0.0 845.388 858.819 +imu_odom_: 1691062781.238281126 -0.191536 -0.1652 10.24 -0.0735032 0.0266316 -0.0447411 0.1 -0.11 pose: 0.0 1.64041 -0.0206475 0 -0.00224 -0.00596453 0.0214881 0.999749 uwb: 0.0 845.388 858.819 +imu_odom_: 1691062781.255318380 0.0215478 -0.146046 10.173 -0.0617853 0.00639159 -0.0958738 0.1 -0.11 pose: 0.67087706 1.65444 -0.0223741 0 -0.00405525 -0.00489078 0.0182205 0.999814 uwb: 0.49871672 844.826 859.049 +imu_odom_: 1691062781.271349154 0.47884 -0.155623 9.74919 -0.0617853 -0.0383495 -0.0660464 0.15 -0.08 pose: 0.0 1.65444 -0.0223741 0 -0.00405525 -0.00489078 0.0182205 0.999814 uwb: 0.0 844.826 859.049 +imu_odom_: 1691062781.288264207 0.320823 -0.490811 9.48104 -0.0830906 0.00745685 -0.0319579 0.15 -0.08 pose: 0.0 1.65444 -0.0223741 0 -0.00405525 -0.00489078 0.0182205 0.999814 uwb: 0.0 844.826 859.049 +imu_odom_: 1691062781.304259399 0.25618 -0.301669 10.1442 -0.04048 -0.015979 -0.0607201 0.15 -0.08 pose: 0.32956034 1.65444 -0.0223741 0 -0.00287701 -0.00245824 0.0163254 0.99986 uwb: 0.49873421 844.457 858.961 +imu_odom_: 1691062781.320454371 0.0023942 0.138864 10.1083 -0.0394148 -0.0149137 -0.0458064 0.12 -0.08 pose: 0.41938821 1.66233 -0.0162219 0 -0.00374775 -0.0004309410.0144512 0.999888 uwb: 0.0 844.457 858.961 +imu_odom_: 1691062781.337476460 0.833182 -0.316035 10.3813 -0.0628506 -0.0213053 -0.0287621 0.12 -0.08 pose: 0.7048863 1.66233 -0.0162219 0 -0.00318687 2.5411e-05 0.0141521 0.999895 uwb: 0.0 844.457 858.961 +imu_odom_: 1691062781.354268145 0.517148 -0.636858 9.92875 -0.0596548 -0.0255663 -0.036219 0.12 -0.08 pose: 0.0 1.66233 -0.0162219 0 -0.00318687 2.5411e-05 0.0141521 0.999895 uwb: 0.50158070 844.846 858.323 +imu_odom_: 1691062781.370457576 0.445322 -0.354342 9.88087 -0.0436758 0.00745685 -0.0468716 0.13 -0.05 pose: 0.42959883 1.66845 -0.0241322 0 -0.00435122 -0.0018285 0.0125434 0.99991 uwb: 0.0 844.846 858.323 +imu_odom_: 1691062781.386375190 0.311246 -0.191536 9.80665 -0.0532632 -0.0372843 -0.0127832 0.13 -0.05 pose: 0.0 1.66845 -0.0241322 0 -0.00435122 -0.0018285 0.0125434 0.99991 uwb: 0.0 844.846 858.323 +imu_odom_: 1691062781.403266036 0.821211 -0.265756 9.98143 -0.0468716 -0.072438 -0.00106526 0.13 -0.05 pose: 0.0 1.66845 -0.0241322 0 -0.00435122 -0.0018285 0.0125434 0.99991 uwb: 0.50059785 844.865 858.092 +imu_odom_: 1691062781.420258377 1.09894 -0.430956 9.34217 -0.0511327 -0.0319579 0.0298274 0.14 -0.08 pose: 0.23085761 1.67637 -0.0180275 0 -0.00535306 -0.00161546 0.0116672 0.999916 uwb: 0.0 844.865 858.092 +imu_odom_: 1691062781.436344855 0.885855 -0.574608 9.50259 -0.0490022 0.0223706 0.0298274 0.14 -0.08 pose: 0.0 1.67637 -0.0180275 0 -0.00535306 -0.00161546 0.0116672 0.999916 uwb: 0.0 844.865 858.092 +imu_odom_: 1691062781.453256117 1.31442 -0.3304 10.2161 -0.0490022 -0.00852212 0.00745685 0.14 -0.08 pose: 0.33058695 1.67637 -0.0180275 0 -0.00454077 -0.00419521 0.0110487 0.99992 uwb: 0.50041410 844.853 857.333 +imu_odom_: 1691062781.469249851 1.24259 0.047884 9.80426 -0.052198 0.0319579 -0.00852212 0.08 -0.08 pose: 0.42843516 1.67637 -0.0180275 0 -0.00550258 -0.00813789 0.0106363 0.999895 uwb: 0.0 844.853 857.333 +imu_odom_: 1691062781.485309790 0.969652 -0.102951 9.5385 -0.052198 0.0553937 -0.015979 0.08 -0.08 pose: 0.7033113 1.67637 -0.0180275 0 -0.00514916 -0.00862584 0.0104603 0.999895 uwb: 0.0 844.853 857.333 +imu_odom_: 1691062781.502258966 0.454898 -0.354342 9.63187 -0.0479369 0.00852212 -0.056459 0.08 -0.08 pose: 0.0 1.67637 -0.0180275 0 -0.00514916 -0.00862584 0.0104603 0.999895 uwb: 0.49811883 845.519 856.195 +imu_odom_: 1691062781.519250723 0.648829 -0.21069 10.0102 -0.0500674 -0.0255663 -0.0735032 0.09 -0.08 pose: 0.41969736 1.6869 -0.0224669 0 -0.00456129 -0.00854386 0.0089741 0.999913 uwb: 0.0 845.519 856.195 +imu_odom_: 1691062781.535236291 0.873884 -0.191536 9.77313 -0.0628506 0.00319579 -0.0543285 0.06 -0.05 pose: 0.0 1.6869 -0.0224669 0 -0.00456129 -0.00854386 0.0089741 0.999913 uwb: 0.0 845.519 856.195 +imu_odom_: 1691062781.551232650 0.952892 -0.373495 10.1466 -0.056459 -0.00106526 -0.0191748 0.06 -0.05 pose: 0.0 1.6869 -0.0224669 0 -0.00456129 -0.00854386 0.0089741 0.999913 uwb: 0.49990956 845.533 855.451 +imu_odom_: 1691062781.568292653 0.622492 -0.339977 9.5792 -0.056459 0.00426106 -0.0287621 0.06 -0.05 pose: 0.25059349 1.6904 -0.0197821 0 -0.00296155 -0.010527 0.00761441 0.999911 uwb: 0.0 845.533 855.451 +imu_odom_: 1691062781.584398672 0.562637 -0.201113 9.94073 -0.0372843 0.00213053 -0.0255663 0.05 0 pose: 0.0 1.6904 -0.0197821 0 -0.00296155 -0.010527 0.00761441 0.999911 uwb: 0.0 845.533 855.451 +imu_odom_: 1691062781.611514729 0.505177 -0.184354 9.85693 -0.0596548 0.00106526 0.00639159 0.05 0 pose: 0.31979594 1.6904 -0.0197821 0 -0.00398978 -0.012468 0.00650325 0.999893 uwb: 0.50054535 845.832 854.718 +imu_odom_: 1691062781.627394137 0.653617 -0.356736 10.1059 -0.056459 0.015979 0.0213053 0.04 -0.02 pose: 0.34120005 1.6904 -0.0197821 0 -0.00282279 -0.0104337 0.00551925 0.999926 uwb: 0.0 845.832 854.718 +imu_odom_: 1691062781.654308956 -1.12767 -0.280122 9.98143 -0.0436758 0.0692422 0.0223706 0.04 -0.02 pose: 0.0 1.6904 -0.0197821 0 -0.00282279 -0.0104337 0.00551925 0.999926 uwb: 0.49991247 845.886 854.005 +imu_odom_: 1691062781.681452428 -0.28491 -0.181959 9.7875 -0.0596548 -0.092678 0.0287621 0.05 -0.02 pose: 0.42936552 1.6904 -0.0197821 0 -0.00297946 -0.00849619 0.0050003 0.999947 uwb: 0.0 845.886 854.005 +imu_odom_: 1691062781.706278166 0.821211 -0.402226 9.82102 -0.0511327 -0.0351537 0.0330232 0.09 -0.02 pose: 0.45097962 1.6904 -0.0197821 0 -0.00265598 -0.00454055 0.00471291 0.999975 uwb: 0.0 845.886 854.005 +imu_odom_: 1691062781.733272314 0.169988 0.0191536 9.99819 -0.0575243 0.0149137 0.00213053 0.09 -0.02 pose: 0.0 1.6904 -0.0197821 0 -0.00265598 -0.00454055 0.00471291 0.999975 uwb: 0.0 845.886 854.005 +imu_odom_: 1691062781.758311831 -0.184354 -0.545878 9.8258 -0.0596548 0.0106526 0.0383495 0.11 0 pose: 0.8139629 1.6904 -0.0197821 0 -0.00294398 -0.00542131 0.004686 0.99997 uwb: 0.100032950 845.85 853.459 +imu_odom_: 1691062781.775239425 0.23942 -0.493206 10.0485 -0.0351537 -0.0426106 0.00639159 0.11 0 pose: 0.0 1.6904 -0.0197821 0 -0.00294398 -0.00542131 0.004686 0.99997 uwb: 0.0 845.85 853.459 +imu_odom_: 1691062781.800244527 0.277727 0.0311246 10.0652 -0.0607201 0.0106526 0.0319579 0.13 -0.02 pose: 0.51820761 1.70443 -0.0215614 0 -0.00221507 -0.00405795 0.00411733 0.999981 uwb: 0.49976956 844.988 853.922 +imu_odom_: 1691062781.827268131 -0.102951 -0.263362 9.68933 -0.0479369 -0.015979 0.0170442 0.13 -0.02 pose: 0.0 1.70443 -0.0215614 0 -0.00221507 -0.00405795 0.00411733 0.999981 uwb: 0.0 844.988 853.922 +imu_odom_: 1691062781.853381208 0.363919 -0.469264 9.90721 -0.0649811 0.00532632 0.0181095 0.13 0 pose: 0.41842285 1.70443 -0.0215614 0 -0.00328213 -0.00113342 0.00380898 0.999987 uwb: 0.49878671 844.788 853.478 +imu_odom_: 1691062781.869243117 0.0814029 -0.162806 9.64624 -0.0340885 0.0127832 0.00745685 0.13 0 pose: 0.0 1.70443 -0.0215614 0 -0.00328213 -0.00113342 0.00380898 0.999987 uwb: 0.0 844.788 853.478 +imu_odom_: 1691062781.895250033 0.938527 -0.325611 9.94073 -0.0607201 -0.0117179 0.0266316 0.18 -0.02 pose: 0.52042123 1.71234 -0.015449 0 -0.00262391 0.00229234 0.00335688 0.999988 uwb: 0.0 844.788 853.478 +imu_odom_: 1691062781.922238931 0.679953 -0.337582 10.0604 -0.0490022 -0.00532632 0.02024 0.18 0 pose: 0.59952807 1.72415 -0.0189778 0 -0.00388055 0.00119145 0.00273301 0.999988 uwb: 0.50122197 844.957 852.61 +imu_odom_: 1691062781.938364782 0.497994 -0.160412 9.48583 -0.052198 0.0245011 0.0213053 0.18 0 pose: 0.0 1.72415 -0.0189778 0 -0.00388055 0.00119145 0.00273301 0.999988 uwb: 0.0 844.957 852.61 +imu_odom_: 1691062781.965234104 0.837971 -0.361524 9.59357 -0.0607201 0.0276969 0.0308927 0.2 0 pose: 0.6998407 1.72637 -0.0172703 0 -0.00396193 0.00049537 0.00266251 0.999988 uwb: 0.50056285 845.087 851.959 +imu_odom_: 1691062781.990260205 0.189142 -0.174777 10.6398 -0.052198 0.0607201 0.02024 0.2 0 pose: 0.0 1.72637 -0.0172703 0 -0.00396193 0.00049537 0.00266251 0.999988 uwb: 0.0 845.087 851.959 +imu_odom_: 1691062782.7231546 -0.280122 -0.335188 9.2895 -0.0628506 0.0543285 0.0649811 0.18 -0.05 pose: 0.43059919 1.72637 -0.0172703 0 -0.0029061 -0.00255069 0.00227564 0.99999 uwb: 0.0 845.087 851.959 +imu_odom_: 1691062782.23216532 -0.351948 -0.497994 9.74201 -0.0585895 -0.0191748 0.0394148 0.18 -0.05 pose: 0.0 1.72637 -0.0172703 0 -0.0029061 -0.00255069 0.00227564 0.99999 uwb: 0.0 845.087 851.959 +imu_odom_: 1691062782.40258453 0.308852 -0.117316 9.8689 -0.0436758 -0.0511327 0.0223706 0.18 -0.05 pose: 0.0 1.72637 -0.0172703 0 -0.0029061 -0.00255069 0.00227564 0.99999 uwb: 0.0 845.087 851.959 +imu_odom_: 1691062782.66281702 0.0814029 -0.208296 9.50019 -0.0798948 -0.0106526 0.0607201 0.15 -0.02 pose: 0.52077995 1.74039 -0.0191153 0 -0.00261848 -9.55185e-050.00203533 0.999994 uwb: 0.99845713 844.417 851.838 +imu_odom_: 1691062782.93354305 0.143652 0.047884 10.343 -0.056459 0.0245011 0.00852212 0.21 -0.02 pose: 0.50913151 1.74039 -0.0191153 0 -0.00152132 0.00340286 0.00211173 0.999991 uwb: 0.0 844.417 851.838 +imu_odom_: 1691062782.118353866 0.842759 -0.435745 10.3358 -0.0681769 -0.0127832 0.0532632 0.16 0 pose: 0.0 1.74039 -0.0191153 0 -0.00152132 0.00340286 0.00211173 0.999991 uwb: 0.0 844.417 851.838 +imu_odom_: 1691062782.145231647 0.940921 -0.146046 10.0796 -0.0532632 0.0181095 0.00852212 0.2 -0.02 pose: 0.53070770 1.75443 -0.0208234 0 0.000505423 0.00601324 0.00195278 0.99998 uwb: 0.0 844.417 851.838 +imu_odom_: 1691062782.170362159 0.670376 -0.258574 9.88805 -0.0916127 0.00532632 0.0458064 0.2 -0.02 pose: 0.0 1.75443 -0.0208234 0 0.000505423 0.00601324 0.00195278 0.99998 uwb: 0.99986872 844.495 851.653 +imu_odom_: 1691062782.196257083 0.179565 -0.454898 9.60554 -0.0543285 0.0394148 0.0117179 0.19 0 pose: 0.68991884 1.76668 -0.0202467 0 -0.000726957-0.0003660310.00172844 0.999998 uwb: 0.0 844.495 851.653 +imu_odom_: 1691062782.212490845 0.4956 -0.320823 10.0916 -0.0660464 0.02024 0.0340885 0.19 0 pose: 0.7018531 1.76847 -0.022538 0 -0.0012171 0.000287722 0.00163109 0.999998 uwb: 0.49968501 844.464 851.104 +imu_odom_: 1691062782.238244027 0.272939 -0.177171 10.149 -0.0372843 0.0330232 0.00958738 0.2 0 pose: 0.0 1.76847 -0.022538 0 -0.0012171 0.000287722 0.00163109 0.999998 uwb: 0.0 844.464 851.104 +imu_odom_: 1691062782.254411585 0.138864 0.0502782 10.0437 -0.0351537 -0.00852212 0.0234358 0.2 0 pose: 0.35110155 1.77635 -0.0163811 0 -0.0032469 0.000743184 0.00131929 0.999994 uwb: 0.50275023 843.916 850.58 +imu_odom_: 1691062782.281539600 0.292093 -0.308852 9.43794 -0.0468716 -0.0287621 0.0276969 0.2 0.02 pose: 0.0 1.77635 -0.0163811 0 -0.0032469 0.000743184 0.00131929 0.999994 uwb: 0.0 843.916 850.58 +imu_odom_: 1691062782.297498046 0.641646 -0.19393 9.72764 -0.0287621 -0.0287621 0.0149137 0.2 0.02 pose: 0.41920740 1.77961 -0.0205686 0 0.000187545 0.00403753 0.00081328 0.999992 uwb: 0.0 843.916 850.58 +imu_odom_: 1691062782.314363228 0.68953 -0.426168 9.57202 -0.0756338 -0.00106526 0.0532632 0.2 0.02 pose: 0.0 1.77961 -0.0205686 0 0.000187545 0.00403753 0.00081328 0.999992 uwb: 0.49929128 844.707 849.248 +imu_odom_: 1691062782.339216381 0.847547 -0.225055 9.57681 -0.0479369 0.0234358 -0.00106526 0.24 0 pose: 0.50962440 1.79039 -0.0181254 0 -0.00217647 0.00218611 0.00049344 0.999995 uwb: 0.0 844.707 849.248 +imu_odom_: 1691062782.366213447 0.23942 -0.414197 9.39485 -0.076699 0.00958738 0.0479369 0.22 0 pose: 0.0 1.79039 -0.0181254 0 -0.00217647 0.00218611 0.00049344 0.999995 uwb: 0.49747430 845.361 848.037 +imu_odom_: 1691062782.382401420 0.533907 -0.138864 10.1682 -0.0479369 -0.0117179 0.0223706 0.22 0 pose: 0.40878095 1.79652 -0.0260209 0 -0.00291864 -0.0001514017.09286e-05 0.999996 uwb: 0.0 845.361 848.037 +imu_odom_: 1691062782.399210897 0.720655 -0.0167594 9.50259 -0.056459 0.00852212 0.0287621 0.22 0 pose: 0.0 1.79652 -0.0260209 0 -0.00291864 -0.0001514017.09286e-05 0.999996 uwb: 0.50037621 846.123 846.393 +imu_odom_: 1691062782.424421029 0.565032 -0.545878 9.24641 -0.0756338 0.0138484 0.0287621 0.24 0 pose: 0.43040672 1.80442 -0.0198886 0 -0.00279869 -0.000198471-2.30695e-050.999996 uwb: 0.0 846.123 846.393 +imu_odom_: 1691062782.451356848 0.387861 -0.220267 9.79707 -0.0394148 0.00426106 0.036219 0.2 0 pose: 0.35128237 1.81004 -0.0155255 0 -0.00469814 -0.00180914 -0.0002167360.999987 uwb: 0.50020997 846.041 845.504 +imu_odom_: 1691062782.467345624 0.675165 -0.529119 9.67257 -0.0692422 0.00958738 0.056459 0.2 0 pose: 0.0 1.81004 -0.0155255 0 -0.00469814 -0.00180914 -0.0002167360.999987 uwb: 0.0 846.041 845.504 +imu_odom_: 1691062782.494359897 0.328006 -0.136469 10.0365 -0.0553937 0.0181095 0.04048 0.24 0.02 pose: 0.6952327 1.81232 -0.0137586 0 -0.00404364 -0.00142648 -0.0002278860.999991 uwb: 0.0 846.041 845.504 +imu_odom_: 1691062782.510254763 0.153229 -0.155623 9.51695 -0.056459 -0.0543285 0.0436758 0.24 0.02 pose: 0.0 1.81232 -0.0137586 0 -0.00404364 -0.00142648 -0.0002278860.999991 uwb: 0.49951876 846.08 844.731 +imu_odom_: 1691062782.527290559 0.878672 -0.184354 10.4052 -0.0394148 0.0149137 0.02024 0.24 0.02 pose: 0.0 1.81232 -0.0137586 0 -0.00404364 -0.00142648 -0.0002278860.999991 uwb: 0.0 846.08 844.731 +imu_odom_: 1691062782.544266276 -0.172383 -0.124498 9.86411 -0.0426106 -0.00319579 0.056459 0.24 0 pose: 0.42992841 1.81845 -0.0216613 0 -0.00284239 -0.000850583-0.0001238190.999996 uwb: 0.0 846.08 844.731 +imu_odom_: 1691062782.560195556 0.213084 -0.493206 9.54568 -0.0660464 -0.015979 0.052198 0.24 0 pose: 0.0 1.81845 -0.0216613 0 -0.00284239 -0.000850583-0.0001238190.999996 uwb: 0.50068536 846.025 843.587 +imu_odom_: 1691062782.586324674 0.423774 -0.112527 9.85932 -0.0468716 -0.00426106 0.0532632 0.17 -0.02 pose: 0.85829359 1.83661 -0.0202331 0 -0.00149165 0.00246306 -2.63701e-060.999996 uwb: 0.0 846.025 843.587 +imu_odom_: 1691062782.609333149 0.586579 -0.155623 10.1969 -0.0820254 -0.00958738 0.0458064 0.17 -0.02 pose: 0.0 1.83661 -0.0202331 0 -0.00149165 0.00246306 -2.63701e-060.999996 uwb: 0.50136782 846.022 842.761 +imu_odom_: 1691062782.634406206 0.682347 0.023942 10.2352 -0.0628506 -0.0415453 0.0585895 0.18 0.02 pose: 0.8092966 1.84038 -0.0173039 0 -0.0007400940.00208782 5.3851e-05 0.999998 uwb: 0.0 846.022 842.761 +imu_odom_: 1691062782.661243156 0.581791 -0.169988 10.6662 -0.0532632 0.00106526 0.0426106 0.21 0.02 pose: 0.0 1.84038 -0.0173039 0 -0.0007400940.00208782 5.3851e-05 0.999998 uwb: 0.49750055 846.087 842.002 +imu_odom_: 1691062782.687257947 0.59855 0.0766145 10.2328 -0.0841559 0.00852212 0.0628506 0.18 0.02 pose: 0.66117684 1.85213 -0.0208376 0 0.00258851 -0.00345824 0.00049236 0.999991 uwb: 0.0 846.087 842.002 +imu_odom_: 1691062782.714227014 0.603339 -0.160412 10.1634 -0.0660464 -0.0649811 0.0447411 0.23 0.02 pose: 0.34866919 1.85441 -0.0190653 0 0.00301973 -0.00623783 0.000629801 0.999976 uwb: 0.50177321 846.727 840.724 +imu_odom_: 1691062782.740334259 0.347159 -0.349553 9.78031 -0.0916127 -0.0266316 0.0490022 0.23 0.02 pose: 0.0 1.85441 -0.0190653 0 0.00301973 -0.00623783 0.000629801 0.999976 uwb: 0.0 846.727 840.724 +imu_odom_: 1691062782.767326657 0.543484 -0.299275 10.2855 -0.0479369 -0.0468716 0.0436758 0.25 0.02 pose: 0.71061134 1.86845 -0.0208136 0 0.00097323 -0.00807894 0.00103968 0.999966 uwb: 0.49921837 846.317 840.297 +imu_odom_: 1691062782.792301429 0.40462 -0.0790087 9.79947 -0.0511327 -0.0308927 0.0436758 0.25 0.02 pose: 0.7005698 1.86845 -0.0208136 0 0.000316115 -0.00807205 0.00105945 0.999967 uwb: 0.0 846.317 840.297 +imu_odom_: 1691062782.809182360 0.136469 -0.213084 9.77313 -0.0308927 0.0745685 0.0340885 0.21 0 pose: 0.0 1.86845 -0.0208136 0 0.000316115 -0.00807205 0.00105945 0.999967 uwb: 0.49941376 846.451 839.317 +imu_odom_: 1691062782.834222461 0.155623 -0.167594 9.89524 -0.0553937 0.0287621 0.056459 0.21 0 pose: 0.51826596 1.88248 -0.0225516 0 0.000397276 -0.00572353 0.00113756 0.999983 uwb: 0.0 846.451 839.317 +imu_odom_: 1691062782.861234400 0.35913 -0.383072 9.80186 -0.0511327 -0.0245011 0.0596548 0.18 0 pose: 0.18070566 1.88248 -0.0225516 0 0.000595393 -0.00339228 0.00117803 0.999993 uwb: 0.50318188 846.954 838.153 +imu_odom_: 1691062782.886268668 0.160412 -0.162806 9.88087 -0.0543285 0.00213053 0.0447411 0.18 0 pose: 0.43997281 1.89037 -0.0164019 0 -0.00167919 -0.00071707 0.00159365 0.999997 uwb: 0.0 846.954 838.153 +imu_odom_: 1691062782.913169489 0.289698 -0.268151 9.98143 -0.0490022 0.00852212 0.052198 0.18 0 pose: 0.0 1.89037 -0.0164019 0 -0.00167919 -0.00071707 0.00159365 0.999997 uwb: 0.49846299 847.474 836.722 +imu_odom_: 1691062782.929181598 0.557849 -0.390255 10.2089 -0.0585895 0.0138484 0.0490022 0.19 0 pose: 0.8109006 1.89037 -0.0164019 0 -0.00142203 8.02398e-05 0.00161565 0.999998 uwb: 0.0 847.474 836.722 +imu_odom_: 1691062782.955382461 0.248997 -0.155623 9.83777 -0.052198 0.0138484 0.0543285 0.19 0 pose: 0.0 1.89037 -0.0164019 0 -0.00142203 8.02398e-05 0.00161565 0.999998 uwb: 0.49832884 846.545 836.587 +imu_odom_: 1691062782.980386106 0.287304 -0.351948 9.4547 -0.0607201 0.0372843 0.0372843 0.19 0 pose: 0.51839720 1.9044 -0.0181243 0 -0.00233002 0.00373746 0.00186576 0.999989 uwb: 0.0 846.545 836.587 +imu_odom_: 1691062783.7220140 0.280122 -0.275333 9.8665 -0.052198 -0.0394148 0.04048 0.19 0 pose: 0.0 1.9044 -0.0181243 0 -0.00233002 0.00373746 0.00186576 0.999989 uwb: 0.50107033 846.33 835.784 +imu_odom_: 1691062783.23216791 0.402226 -0.150835 10.2208 -0.0383495 -0.0490022 0.0394148 0.18 0 pose: 0.41202700 1.91844 -0.0198392 0 -0.00139302 0.0052979 0.00209213 0.999983 uwb: 0.0 846.33 835.784 +imu_odom_: 1691062783.50169235 0.323217 -0.158017 10.3956 -0.0458064 -0.00213053 0.0490022 0.18 0 pose: 0.0 1.91844 -0.0198392 0 -0.00139302 0.0052979 0.00209213 0.999983 uwb: 0.50011083 846.726 834.478 +imu_odom_: 1691062783.66187469 0.622492 -0.371101 9.51216 -0.0511327 -0.00852212 0.0415453 0.25 0 pose: 0.52854367 1.91844 -0.0198392 0 -0.00192828 0.00725647 0.00208996 0.99997 uwb: 0.0 846.726 834.478 +imu_odom_: 1691062783.93310236 0.42138 -0.241814 10.082 -0.0436758 -0.00745685 0.0543285 0.25 0 pose: 0.0 1.91844 -0.0198392 0 -0.00192828 0.00725647 0.00208996 0.99997 uwb: 0.0 846.726 834.478 +imu_odom_: 1691062783.118211221 0.464475 -0.0383072 10.3118 -0.0543285 -0.00852212 0.0372843 0.25 -0.02 pose: 0.43019967 1.93248 -0.0215483 0 0.000650978 0.00432485 0.0022368 0.999988 uwb: 0.50004666 846.806 833.985 +imu_odom_: 1691062783.145296365 0.73502 -0.452504 9.80665 -0.0639159 0.0138484 0.0703074 0.23 0 pose: 0.16032816 1.93248 -0.0215483 0 5.30333e-05 0.00284019 0.00230207 0.999993 uwb: 0.0 846.806 833.985 +imu_odom_: 1691062783.170170227 0.672771 -0.153229 10.0102 -0.0340885 0.0319579 0.036219 0.23 0 pose: 0.0 1.93248 -0.0215483 0 5.30333e-05 0.00284019 0.00230207 0.999993 uwb: 0.49879549 846.535 833.108 +imu_odom_: 1691062783.187216815 -0.23942 -0.251391 9.53611 -0.0820254 -0.0266316 0.0596548 0.23 -0.02 pose: 0.50922486 1.94035 -0.0153808 0 0.00133499 -0.0005113010.00252204 0.999996 uwb: 0.0 846.535 833.108 +imu_odom_: 1691062783.213335434 -0.0167594 -0.179565 9.63666 -0.0372843 -0.0319579 0.0276969 0.23 -0.02 pose: 0.0 1.94035 -0.0153808 0 0.00133499 -0.0005113010.00252204 0.999996 uwb: 0.50106744 846.057 832.295 +imu_odom_: 1691062783.240198050 0.416591 -0.25618 10.1035 -0.0692422 -0.0532632 0.056459 0.23 0 pose: 0.52081498 1.95439 -0.0170776 0 0.000735624 -0.00320514 0.00286179 0.99999 uwb: 0.0 846.057 832.295 +imu_odom_: 1691062783.265199654 0.423774 0.150835 10.1299 -0.0553937 -0.0149137 0.0479369 0.23 0 pose: 0.0 1.95439 -0.0170776 0 0.000735624 -0.00320514 0.00286179 0.99999 uwb: 0.49733141 846.735 830.972 +imu_odom_: 1691062783.282296406 0.687136 -0.390255 9.31584 -0.0884169 -0.0213053 0.0511327 0.21 0 pose: 0.42895141 1.95439 -0.0170776 0 0.00017896 -0.0003833050.00286155 0.999996 uwb: 0.0 846.735 830.972 +imu_odom_: 1691062783.307290427 0.112527 -0.287304 10.1418 -0.0426106 0.0117179 0.0308927 0.21 0 pose: 0.0 1.95439 -0.0170776 0 0.00017896 -0.0003833050.00286155 0.999996 uwb: 0.50127742 846.195 830.376 +imu_odom_: 1691062783.334212539 0.251391 -0.141258 9.76355 -0.0671117 -0.0713727 0.0394148 0.23 0 pose: 0.51952298 1.96843 -0.018766 0 6.14722e-05 -0.00199186 0.00317285 0.999993 uwb: 0.0 846.195 830.376 +imu_odom_: 1691062783.360149462 0.991199 -0.411803 9.73004 -0.0532632 -0.0191748 0.0415453 0.2 -0.02 pose: 0.42168934 1.98247 -0.020446 0 -0.0006464550.000132032 0.00312733 0.999995 uwb: 0.50009042 845.93 829.786 +imu_odom_: 1691062783.387150319 0.294487 -0.292093 9.98382 -0.0436758 0.04048 0.0245011 0.23 -0.02 pose: 0.0 1.98247 -0.020446 0 -0.0006464550.000132032 0.00312733 0.999995 uwb: 0.0 845.93 829.786 +imu_odom_: 1691062783.412158923 0.679953 -0.466869 9.35654 -0.0628506 0.00958738 0.0585895 0.2 0 pose: 0.52874200 1.99033 -0.0142652 0 -0.000805086-0.0006893610.00310046 0.999995 uwb: 0.49996208 845.178 829.255 +imu_odom_: 1691062783.429290089 0.565032 -0.158017 10.2065 -0.0394148 -0.0468716 0.0170442 0.2 0 pose: 0.0 1.99033 -0.0142652 0 -0.000805086-0.0006893610.00310046 0.999995 uwb: 0.0 845.178 829.255 +imu_odom_: 1691062783.445150249 0.656011 -0.11971 10.07 -0.0553937 -0.00532632 0.0383495 0.2 0 pose: 0.0 1.99033 -0.0142652 0 -0.000805086-0.0006893610.00310046 0.999995 uwb: 0.0 845.178 829.255 +imu_odom_: 1691062783.472173272 0.646434 -0.260968 10.1634 -0.0553937 -0.00958738 0.0394148 0.25 0 pose: 0.77962716 2.00438 -0.0159487 0 -0.00109643 -0.00336964 0.00297375 0.999989 uwb: 0.50050747 845.482 828.089 +imu_odom_: 1691062783.488166716 0.593762 -0.189142 9.47864 -0.0468716 -0.00532632 0.0351537 0.25 0 pose: 0.7031947 2.00438 -0.0159487 0 -0.00119018 -0.00408636 0.00297273 0.999987 uwb: 0.0 845.482 828.089 +imu_odom_: 1691062783.515293857 0.138864 -0.447716 9.61511 -0.0458064 -0.0234358 0.04048 0.23 0 pose: 0.0 2.00438 -0.0159487 0 -0.00119018 -0.00408636 0.00297273 0.999987 uwb: 0.49806929 845.762 826.886 +imu_odom_: 1691062783.541292901 0.380678 -0.134075 9.74201 -0.0553937 0.0138484 0.0479369 0.18 -0.02 pose: 0.35984520 2.01055 -0.0238119 0 -0.00046886 -0.00744103 0.00292729 0.999968 uwb: 0.0 845.762 826.886 +imu_odom_: 1691062783.568299299 0.294487 -0.35913 9.09078 -0.0383495 0.0394148 0.04048 0.25 -0.02 pose: 0.53126185 2.01842 -0.0176343 0 8.11114e-05 -0.00315543 0.00305375 0.99999 uwb: 0.50147282 845.777 825.987 +imu_odom_: 1691062783.594380296 0.0526724 -0.21069 9.84975 -0.0468716 -0.0330232 0.052198 0.18 0 pose: 0.0 2.01842 -0.0176343 0 8.11114e-05 -0.00315543 0.00305375 0.99999 uwb: 0.0 845.777 825.987 +imu_odom_: 1691062783.621256328 0.94571 -0.0790087 10.343 -0.0308927 -0.0458064 0.0447411 0.18 0 pose: 0.35019453 2.03246 -0.0193171 0 -0.0013789 0.000138431 0.00312406 0.999994 uwb: 0.50103827 845.081 825.815 +imu_odom_: 1691062783.637141278 0.514753 -0.253785 9.76116 -0.0735032 0.0287621 0.0639159 0.18 0 pose: 0.44943974 2.03808 -0.0149014 0 -8.905e-05 -0.00147034 0.00330873 0.999993 uwb: 0.0 845.081 825.815 +imu_odom_: 1691062783.664197257 0.577003 -0.191536 9.93354 -0.052198 -0.0213053 0.0543285 0.18 0 pose: 0.8026178 2.04032 -0.0131358 0 -0.000488709-0.0020718 0.00340668 0.999992 uwb: 0.49874008 844.73 825.114 +imu_odom_: 1691062783.690190759 0.543484 -0.244209 10.0556 -0.0809601 0 0.0490022 0.18 -0.02 pose: 0.34914751 2.04474 -0.0187421 0 2.73061e-05 -0.0054554 0.00369782 0.999978 uwb: 0.0 844.73 825.114 +imu_odom_: 1691062783.717253155 0.529119 -0.263362 10.1394 -0.0617853 -0.00745685 0.0607201 0.18 -0.02 pose: 0.0 2.04474 -0.0187421 0 2.73061e-05 -0.0054554 0.00369782 0.999978 uwb: 0.50120743 844.334 824.359 +imu_odom_: 1691062783.742417499 0.787692 -0.110133 10.7571 -0.0543285 0.00852212 0.0447411 0.18 0 pose: 0.33140359 2.04651 -0.0209915 0 -0.00232083 -0.00664365 0.00390655 0.999968 uwb: 0.0 844.334 824.359 +imu_odom_: 1691062783.769125833 0.457293 -0.0933739 10.0102 -0.0948085 -0.00426106 0.0617853 0.21 0.02 pose: 0.45079883 2.0588 -0.020422 0 -0.00169871 -0.00677522 0.00417695 0.999967 uwb: 0.49874008 844.803 822.718 +imu_odom_: 1691062783.785174398 0.251391 -0.292093 9.39245 -0.0862864 0.0106526 0.0490022 0.21 0.02 pose: 0.0 2.0588 -0.020422 0 -0.00169871 -0.00677522 0.00417695 0.999967 uwb: 0.0 844.803 822.718 +imu_odom_: 1691062783.812254584 0.40462 -0.371101 9.90481 -0.0660464 -0.0223706 0.0468716 0.25 0.02 pose: 0.0 2.0588 -0.020422 0 -0.00169871 -0.00677522 0.00417695 0.999967 uwb: 0.50057163 844.336 822.498 +imu_odom_: 1691062783.838176340 0.548272 -0.299275 10.1562 -0.0468716 0.0181095 0.0351537 0.25 0.02 pose: 0.50783661 2.0684 -0.0164479 0 -0.00134736 -0.00360294 0.00456484 0.999982 uwb: 0.0 844.336 822.498 +imu_odom_: 1691062783.865190322 0.430956 -0.237026 9.51216 -0.0458064 0.00958738 0.0500674 0.23 0.02 pose: 0.44975180 2.07852 -0.017629 0 -0.00364106 -0.00514241 0.00457692 0.99997 uwb: 0.49934962 844.273 821.485 +imu_odom_: 1691062783.881251428 0.201113 -0.3304 10.0724 -0.04048 0 0.0468716 0.23 0.02 pose: 0.0 2.07852 -0.017629 0 -0.00364106 -0.00514241 0.00457692 0.99997 uwb: 0.0 844.273 821.485 +imu_odom_: 1691062783.908178207 0.658405 -0.296881 9.84735 -0.0681769 -0.0372843 0.0500674 0.25 0 pose: 0.6955827 2.08245 -0.0180882 0 -0.00321987 -0.00451568 0.00461351 0.999974 uwb: 0.49991251 844.951 820.053 +imu_odom_: 1691062783.924117696 0.632069 -0.0766145 10.3501 -0.0330232 -0.0181095 0.0500674 0.25 0 pose: 0.0 2.08245 -0.0180882 0 -0.00321987 -0.00451568 0.00461351 0.999974 uwb: 0.0 844.951 820.053 +imu_odom_: 1691062783.951234046 0.469264 -0.217872 9.9503 -0.0692422 -0.0255663 0.0575243 0.23 0 pose: 0.43001593 2.08245 -0.0180882 0 -0.00249531 -0.00192925 0.004817 0.999983 uwb: 0.50120742 845.384 818.965 +imu_odom_: 1691062783.967325192 0.536301 -0.488417 9.32542 -0.0532632 -0.00106526 0.0351537 0.23 0 pose: 0.0 2.08245 -0.0180882 0 -0.00249531 -0.00192925 0.004817 0.999983 uwb: 0.0 845.384 818.965 +imu_odom_: 1691062783.994297468 0.28491 -0.253785 10.1203 -0.0479369 0.00106526 0.0575243 0.25 0.02 pose: 0.43002759 2.0965 -0.0197215 0 -0.00109887 -0.00476951 0.00505641 0.999975 uwb: 0.0 845.384 818.965 +imu_odom_: 1691062784.20217475 0.622492 -0.114922 10.4196 -0.0447411 0.0181095 0.0436758 0.25 0.02 pose: 0.0 2.0965 -0.0197215 0 -0.00109887 -0.00476951 0.00505641 0.999975 uwb: 0.50020708 845.302 818.227 +imu_odom_: 1691062784.47232916 0.179565 -0.466869 9.77792 -0.0511327 0.0394148 0.0585895 0.23 0.02 pose: 0.43031924 2.10433 -0.0135096 0 -0.00164573 -0.00301122 0.00526501 0.99998 uwb: 0.49723226 845.093 817.66 +imu_odom_: 1691062784.72163359 0.28491 -0.25618 9.93594 -0.0383495 0.056459 0.0383495 0.18 0.02 pose: 0.52936030 2.11055 -0.0213446 0 -0.000505713-0.00214428 0.00556403 0.999982 uwb: 0.0 845.093 817.66 +imu_odom_: 1691062784.89138202 0.497994 -0.301669 9.73482 -0.0660464 -0.036219 0.0415453 0.18 0.02 pose: 0.0 2.11055 -0.0213446 0 -0.000505713-0.00214428 0.00556403 0.999982 uwb: 0.0 845.093 817.66 +imu_odom_: 1691062784.114333170 0.299275 -0.35913 9.43794 -0.0276969 0.0223706 0.0351537 0.18 0 pose: 0.28038254 2.11838 -0.015125 0 -0.0017994 0.000812169 0.00575547 0.999981 uwb: 0.50068248 845.496 815.866 +imu_odom_: 1691062784.141289989 0.533907 -0.114922 9.84975 -0.0436758 -0.0308927 0.0468716 0.18 0 pose: 0.42060151 2.1246 -0.0229538 0 -0.00290556 0.00176633 0.00574237 0.999978 uwb: 0.0 845.496 815.866 +imu_odom_: 1691062784.166104356 0.533907 0.21069 10.0293 -0.0287621 -0.0138484 0.0458064 0.18 -0.02 pose: 0.44087111 2.13243 -0.0167324 0 -0.00199637 0.000751256 0.00580172 0.999981 uwb: 0.50187240 846.348 814.264 +imu_odom_: 1691062784.193086549 0.502782 -0.0622492 9.93354 -0.0553937 -0.0106526 0.0372843 0.18 -0.02 pose: 0.0 2.13243 -0.0167324 0 -0.00199637 0.000751256 0.00580172 0.999981 uwb: 0.0 846.348 814.264 +imu_odom_: 1691062784.210136054 0.6608 -0.366313 10.1586 -0.0649811 -0.0372843 0.0617853 0.19 0.02 pose: 0.51796560 2.14648 -0.0183376 0 0.00292456 -0.00172669 0.00584909 0.999977 uwb: 0.49859427 845.738 814.187 +imu_odom_: 1691062784.234163259 0.814029 -0.299275 10.331 -0.0671117 -0.0223706 0.0500674 0.19 0.02 pose: 0.0 2.14648 -0.0183376 0 0.00292456 -0.00172669 0.00584909 0.999977 uwb: 0.0 845.738 814.187 +imu_odom_: 1691062784.258164509 0.658405 -0.112527 10.1921 -0.0649811 -0.0330232 0.0628506 0.18 0 pose: 0.41076710 2.15202 -0.0139318 0 0.00077083 -0.00575395 0.0061745 0.999964 uwb: 0.50182574 845.505 813.244 +imu_odom_: 1691062784.274214824 0.502782 -0.3304 9.7444 -0.0798948 0.00106526 0.0500674 0.18 0 pose: 0.6977410 2.15431 -0.012112 0 0.00111209 -0.0064442 0.00625368 0.999959 uwb: 0.0 845.505 813.244 +imu_odom_: 1691062784.291104797 -0.268151 -0.296881 9.75158 -0.0436758 0.0394148 0.0276969 0.25 0.02 pose: 0.24973023 2.16054 -0.0199347 0 0.00109956 -0.00783306 0.00649334 0.999948 uwb: 0.0 845.505 813.244 +imu_odom_: 1691062784.317286414 0.167594 -0.272939 10.3669 -0.0553937 -0.0127832 0.0575243 0.25 0.02 pose: 0.0 2.16054 -0.0199347 0 0.00109956 -0.00783306 0.00649334 0.999948 uwb: 0.49683271 845.456 812.519 +imu_odom_: 1691062784.344123366 0.624887 0.0694318 10.2208 -0.0511327 -0.0340885 0.0490022 0.23 0 pose: 0.15097499 2.16054 -0.0199347 0 0.000200713 -0.00668353 0.00649994 0.999957 uwb: 0.0 845.456 812.519 +imu_odom_: 1691062784.369095806 0.342371 -0.011971 10.2687 -0.0585895 -0.0223706 0.0447411 0.23 0 pose: 0.0 2.16054 -0.0199347 0 0.000200713 -0.00668353 0.00649994 0.999957 uwb: 0.49993586 845.498 811.231 +imu_odom_: 1691062784.396139828 0.0622492 -0.301669 10.4052 -0.0639159 0.0383495 0.036219 0.21 -0.02 pose: 0.42934514 2.16835 -0.0137006 0 0.000298501 -0.00344532 0.00670986 0.999972 uwb: 0.0 845.498 811.231 +imu_odom_: 1691062784.421219595 0.344765 -0.232238 10.1658 -0.0436758 0 0.0266316 0.19 0 pose: 0.52019963 2.18241 -0.0152793 0 0.00353798 -0.00236581 0.00683724 0.999968 uwb: 0.50005251 845.815 810.271 +imu_odom_: 1691062784.448302407 0.54109 -0.373495 9.75877 -0.0617853 -0.0447411 0.0532632 0.19 0 pose: 0.0 2.18241 -0.0152793 0 0.00353798 -0.00236581 0.00683724 0.999968 uwb: 0.50053082 845.293 809.629 +imu_odom_: 1691062784.474247204 0.459687 -0.100556 10.422 -0.0340885 0.00213053 0.0298274 0.18 0.02 pose: 0.72136739 2.19246 -0.0164089 0 -0.00112717 -0.0008603020.00681762 0.999976 uwb: 0.0 845.293 809.629 +imu_odom_: 1691062784.501124404 0.88346 -0.25618 10.0006 -0.072438 -0.00958738 0.0436758 0.18 0.02 pose: 0.7955016 2.19646 -0.016858 0 -0.000274962-0.00104661 0.00677797 0.999976 uwb: 0.50053957 844.319 809.113 +imu_odom_: 1691062784.517112015 0.292093 -0.205901 9.26317 -0.0287621 0.0468716 0.02024 0.2 0 pose: 0.0 2.19646 -0.016858 0 -0.000274962-0.00104661 0.00677797 0.999976 uwb: 0.0 844.319 809.113 +imu_odom_: 1691062784.544275905 0.600945 -0.459687 9.90721 -0.0830906 -0.0149137 0.0383495 0.2 0 pose: 0.44866981 2.20225 -0.0122398 0 0.00100554 -0.00419871 0.00674783 0.999968 uwb: 0.0 844.319 809.113 +imu_odom_: 1691062784.569198765 0.390255 -0.385466 9.6606 -0.0479369 -0.0181095 0.0394148 0.24 0 pose: 0.22983394 2.21051 -0.0184386 0 0.000427949 -0.00258479 0.00659049 0.999975 uwb: 0.49874009 844.313 808.082 +imu_odom_: 1691062784.596214789 0.351948 -0.387861 9.91199 -0.0543285 -0.00213053 0.0372843 0.23 0 pose: 0.0 2.21051 -0.0184386 0 0.000427949 -0.00258479 0.00659049 0.999975 uwb: 0.0 844.313 808.082 +imu_odom_: 1691062784.621197728 0.562637 -0.196325 9.96946 -0.0436758 -0.0191748 0.0468716 0.23 0 pose: 0.52110373 2.21833 -0.0122039 0 -0.0041418 -0.00212106 0.00658586 0.999967 uwb: 0.49986003 845.339 806.256 +imu_odom_: 1691062784.638181612 0.452504 -0.351948 10.2424 -0.0394148 -0.0106526 0.052198 0.21 -0.02 pose: 0.0 2.21833 -0.0122039 0 -0.0041418 -0.00212106 0.00658586 0.999967 uwb: 0.0 845.339 806.256 +imu_odom_: 1691062784.664068372 0.497994 -0.215478 10.4411 -0.0511327 -0.00319579 0.0500674 0.21 -0.02 pose: 0.51915844 2.22457 -0.0200222 0 -0.00438702 -0.00270813 0.00669849 0.999964 uwb: 0.50335398 844.594 805.671 +imu_odom_: 1691062784.691114144 0.708684 -0.260968 10.3094 -0.0276969 -0.0490022 0.0330232 0.25 0 pose: 0.0 2.22457 -0.0200222 0 -0.00438702 -0.00270813 0.00669849 0.999964 uwb: 0.0 844.594 805.671 +imu_odom_: 1691062784.707054800 0.919373 -0.241814 9.75877 -0.0468716 0.0266316 0.052198 0.25 0 pose: 0.43020259 2.23238 -0.0137856 0 -0.00268071 -0.00439621 0.00686533 0.999963 uwb: 0.49860593 844.307 804.963 +imu_odom_: 1691062784.724218340 0.174777 -0.507571 9.61033 -0.0660464 -0.0191748 0.056459 0.25 0 pose: 0.0 2.23238 -0.0137856 0 -0.00268071 -0.00439621 0.00686533 0.999963 uwb: 0.0 844.307 804.963 +imu_odom_: 1691062784.750138639 0.392649 -0.0933739 9.87608 -0.0490022 -0.0234358 0.0585895 0.25 0 pose: 0.42949681 2.24644 -0.0153609 0 -0.00256645 -0.00764646 0.00695594 0.999943 uwb: 0.0 844.307 804.963 +imu_odom_: 1691062784.777262281 0.47884 -0.395043 9.92157 -0.056459 0.0287621 0.0426106 0.23 0 pose: 0.36034684 2.24644 -0.0153609 0 -0.00106837 -0.00551429 0.00728642 0.999958 uwb: 0.0 844.307 804.963 +imu_odom_: 1691062784.793067904 0.308852 -0.0742203 10.1347 -0.0532632 0.0149137 0.0415453 0.23 0 pose: 0.6973617 2.24644 -0.0153609 0 -0.00175837 -0.00526506 0.00730076 0.999958 uwb: 0.0 844.307 804.963 +imu_odom_: 1691062784.820053013 0.490811 -0.23942 10.1754 -0.0585895 -0.0383495 0.0447411 0.25 0.02 pose: 0.0 2.24644 -0.0153609 0 -0.00175837 -0.00526506 0.00730076 0.999958 uwb: 0.99941965 844.266 804.211 +imu_odom_: 1691062784.845215025 0.411803 -0.0981623 9.96227 -0.072438 0.00213053 0.052198 0.25 0.02 pose: 0.44087112 2.26049 -0.0169244 0 -0.00190369 -0.00398534 0.00737358 0.999963 uwb: 0.0 844.266 804.211 +imu_odom_: 1691062784.872214133 0.181959 -0.306458 10.1347 -0.0479369 -0.0181095 0.0383495 0.21 -0.02 pose: 0.44015657 2.26604 -0.0124897 0 0.00132836 -0.00379712 0.00756249 0.999963 uwb: 0.50004960 844.797 802.767 +imu_odom_: 1691062784.898202678 0.438139 -0.205901 9.8665 -0.0756338 0.0127832 0.0490022 0.18 0 pose: 0.6994033 2.2683 -0.0106765 0 0.00109201 -0.00319679 0.00755838 0.999966 uwb: 0.50083705 844.374 802.229 +imu_odom_: 1691062784.925200912 0.059855 -0.222661 9.68455 -0.0266316 0.0223706 0.0394148 0.23 0 pose: 0.45993620 2.28016 -0.013992 0 0.000511673 -0.00383432 0.0076692 0.999963 uwb: 0.0 844.374 802.229 +imu_odom_: 1691062784.950052026 0.0622492 -0.023942 9.72764 -0.0426106 -0.0170442 0.0468716 0.19 0 pose: 0.0 2.28016 -0.013992 0 0.000511673 -0.00383432 0.0076692 0.999963 uwb: 0.49874885 843.99 801.028 +imu_odom_: 1691062784.967085490 0.670376 -0.158017 10.07 -0.0340885 -0.0117179 0.0394148 0.19 0 pose: 0.34899004 2.28236 -0.0122322 0 0.00116022 -0.00011186 0.0076958 0.99997 uwb: 0.0 843.99 801.028 +imu_odom_: 1691062784.993172904 0.430956 -0.316035 9.69652 -0.0553937 0.0106526 0.052198 0.18 0.02 pose: 0.0 2.28236 -0.0122322 0 0.00116022 -0.00011186 0.0076958 0.99997 uwb: 0.0 843.99 801.028 +imu_odom_: 1691062785.10167580 0.186748 -0.23942 9.93833 -0.0436758 -0.00319579 0.0426106 0.18 0.02 pose: 0.42205975 2.29641 -0.0137844 0 0.00148468 -0.0005089210.00781027 0.999968 uwb: 0.49997085 843.466 800.359 +imu_odom_: 1691062785.26046115 0.572214 -0.304064 9.5816 -0.0543285 -0.0117179 0.0490022 0.18 0.02 pose: 0.0 2.29641 -0.0137844 0 0.00148468 -0.0005089210.00781027 0.999968 uwb: 0.0 843.466 800.359 +imu_odom_: 1691062785.53048141 0.395043 -0.248997 10.1586 -0.0276969 0.00426106 0.0298274 0.18 0 pose: 0.42791316 2.29641 -0.0137844 0 -0.0006507250.000326354 0.00798782 0.999968 uwb: 0.49998837 843.613 799.105 +imu_odom_: 1691062785.78114493 0.146046 -0.234632 9.57441 -0.0649811 0.0127832 0.0543285 0.2 0 pose: 0.34949168 2.3062 -0.0148595 0 -0.00241572 0.00167468 0.00789572 0.999965 uwb: 0.0 843.613 799.105 +imu_odom_: 1691062785.96094942 0.73502 -0.167594 10.2615 -0.0415453 -0.00958738 0.0351537 0.2 0 pose: 0.0 2.3062 -0.0148595 0 -0.00241572 0.00167468 0.00789572 0.999965 uwb: 0.0 843.613 799.105 +imu_odom_: 1691062785.112050180 0.761356 -0.146046 10.1251 -0.0458064 -0.00532632 0.0532632 0.2 0 pose: 0.0 2.3062 -0.0148595 0 -0.00241572 0.00167468 0.00789572 0.999965 uwb: 0.50005253 843.457 798.179 +imu_odom_: 1691062785.136035973 0.526724 -0.105345 9.94312 -0.0692422 -0.0617853 0.0426106 0.18 0.02 pose: 0.8257748 2.31047 -0.0153294 0 -0.00236956 0.00256634 0.00795862 0.999962 uwb: 0.0 843.457 798.179 +imu_odom_: 1691062785.161038745 0.550666 -0.325611 9.60314 -0.056459 -0.0223706 0.0490022 0.18 0.02 pose: 0.0 2.31047 -0.0153294 0 -0.00236956 0.00256634 0.00795862 0.999962 uwb: 0.50053375 842.966 797.545 +imu_odom_: 1691062785.188023855 0.294487 -0.138864 9.96946 -0.0372843 0.00852212 0.0276969 0.21 0 pose: 0.57886191 2.31827 -0.00907203 0 -0.0008291290.000302892 0.00816253 0.999966 uwb: 0.0 842.966 797.545 +imu_odom_: 1691062785.214024942 0.59855 -0.342371 9.57202 -0.0681769 -0.0276969 0.0511327 0.19 0 pose: 0.48920319 2.32453 -0.0168709 0 -0.00108327 -0.00280602 0.00826669 0.999961 uwb: 0.49978713 842.636 796.754 +imu_odom_: 1691062785.241125837 0.500388 -0.208296 9.66779 -0.0127832 0.00213053 0.0351537 0.19 0 pose: 0.0 2.32453 -0.0168709 0 -0.00108327 -0.00280602 0.00826669 0.999961 uwb: 0.0 842.636 796.754 +imu_odom_: 1691062785.266051614 0.64404 -0.337582 9.71328 -0.0703074 -0.00532632 0.0490022 0.18 -0.02 pose: 0.73013438 2.34417 -0.0139314 0 0.00103903 -0.005076 0.00823161 0.999953 uwb: 0.50040834 843.312 795.429 +imu_odom_: 1691062785.293183132 0.442927 -0.0191536 9.91678 -0.052198 -0.015979 0.0660464 0.18 -0.02 pose: 0.7936643 2.34639 -0.0121489 0 0.000425238 -0.00564917 0.00827207 0.99995 uwb: 0.0 843.312 795.429 +imu_odom_: 1691062785.309056709 0.395043 -0.323217 9.991 -0.076699 -0.0181095 0.0585895 0.2 -0.02 pose: 0.0 2.34639 -0.0121489 0 0.000425238 -0.00564917 0.00827207 0.99995 uwb: 0.49946632 842.896 794.885 +imu_odom_: 1691062785.326058384 1.16358 -0.1652 9.88087 -0.0458064 0.00639159 0.0319579 0.2 -0.02 pose: 0.44120652 2.35085 -0.0177081 0 0.00162559 -0.00591437 0.00870217 0.999943 uwb: 0.0 842.896 794.885 +imu_odom_: 1691062785.352099719 0.512359 -0.354342 9.69891 -0.0777643 0.0245011 0.0490022 0.18 0 pose: 0.0 2.35085 -0.0177081 0 0.00162559 -0.00591437 0.00870217 0.999943 uwb: 0.49973755 842.379 794.211 +imu_odom_: 1691062785.369227386 -0.0023942 -0.445322 9.42597 -0.052198 0.0798948 0.0213053 0.18 0 pose: 0.32875252 2.36044 -0.0136743 0 0.000476044 -0.00658354 0.0087926 0.99994 uwb: 0.0 842.379 794.211 +imu_odom_: 1691062785.394179120 0.454898 -0.538695 9.74679 -0.0639159 0.0383495 0.0617853 0.18 0 pose: 0.0 2.36044 -0.0136743 0 0.000476044 -0.00658354 0.0087926 0.99994 uwb: 0.0 842.379 794.211 +imu_odom_: 1691062785.421159272 0.411803 -0.110133 10.2639 -0.0553937 -0.0127832 0.036219 0.18 0 pose: 0.43169002 2.36479 -0.0101754 0 -0.00298049 -0.0036067 0.00877981 0.999951 uwb: 0.50064166 841.877 793.555 +imu_odom_: 1691062785.446189168 0.371101 -0.418985 10.2352 -0.0681769 0.0117179 0.0426106 0.18 -0.02 pose: 0.51931886 2.3745 -0.0151945 0 -0.00295749 -0.00242628 0.00901535 0.999952 uwb: 0.0 841.877 793.555 +imu_odom_: 1691062785.463168095 0.397437 -0.316035 9.25838 -0.0436758 0.0276969 0.0255663 0.18 -0.02 pose: 0.0 2.3745 -0.0151945 0 -0.00295749 -0.00242628 0.00901535 0.999952 uwb: 0.50116079 843.062 791.736 +imu_odom_: 1691062785.488267694 0.45011 -0.172383 9.80665 -0.0596548 0.052198 0.0319579 0.18 -0.02 pose: 0.42008823 2.38577 -0.0132409 0 -0.00552143 0.000918625 0.00894999 0.999944 uwb: 0.0 843.062 791.736 +imu_odom_: 1691062785.515026193 0.287304 -0.11971 10.2376 -0.0479369 -0.0671117 0.0458064 0.18 -0.02 pose: 0.0 2.38577 -0.0132409 0 -0.00552143 0.000918625 0.00894999 0.999944 uwb: 0.49948674 843.408 790.678 +imu_odom_: 1691062785.541031071 0.624887 -0.275333 10.489 -0.04048 -0.0340885 0.0287621 0.19 -0.02 pose: 0.51858098 2.3941 -0.0122568 0 -0.0009190710.00124939 0.0089394 0.999959 uwb: 0.0 843.408 790.678 +imu_odom_: 1691062785.566031802 0.68953 -0.071826 10.07 -0.0553937 -0.0671117 0.0500674 0.23 0 pose: 0.0 2.3941 -0.0122568 0 -0.0009190710.00124939 0.0089394 0.999959 uwb: 0.0 843.408 790.678 +imu_odom_: 1691062785.589192520 0.418985 -0.232238 9.98382 -0.0436758 -0.0468716 0.0191748 0.23 0 pose: 0.33021077 2.39635 -0.0104392 0 -0.000740969-0.00250923 0.00883166 0.999958 uwb: 0.0 843.408 790.678 +imu_odom_: 1691062785.605115969 0.799663 -0.129287 9.92875 -0.0553937 -0.0287621 0.04048 0.23 0 pose: 0.0 2.39635 -0.0104392 0 -0.000740969-0.00250923 0.00883166 0.999958 uwb: 0.99739856 844.481 789.058 +imu_odom_: 1691062785.623010673 0.536301 -0.519542 9.82341 -0.0841559 -0.0181095 0.0447411 0.18 0.02 pose: 0.49034646 2.41041 -0.0119598 0 -6.17234e-05-0.00370537 0.00869267 0.999955 uwb: 0.0 844.481 789.058 +imu_odom_: 1691062785.648003530 0.553061 -0.143652 9.34457 -0.0458064 -0.0234358 0.0383495 0.18 0.02 pose: 0.0 2.41041 -0.0119598 0 -6.17234e-05-0.00370537 0.00869267 0.999955 uwb: 0.49976671 843.82 788.548 +imu_odom_: 1691062785.675112882 0.356736 -0.462081 9.77792 -0.0543285 -0.0149137 0.0447411 0.18 0.02 pose: 0.33006786 2.41041 -0.0119598 0 -0.00121477 -0.00537899 0.00874075 0.999947 uwb: 0.0 843.82 788.548 +imu_odom_: 1691062785.700159110 0.538695 -0.174777 9.81623 -0.0500674 0.0149137 0.0490022 0.18 0.02 pose: 0.45024180 2.42447 -0.0134829 0 -0.0018035 -0.00505855 0.00880488 0.999947 uwb: 0.50194825 843.973 787.206 +imu_odom_: 1691062785.724013661 0.624887 -0.0790087 9.64624 -0.0426106 0.0127832 0.0394148 0.18 0.02 pose: 0.0 2.42447 -0.0134829 0 -0.0018035 -0.00505855 0.00880488 0.999947 uwb: 0.0 843.973 787.206 +imu_odom_: 1691062785.748209441 0.708684 -0.198719 9.95509 -0.0649811 -0.00745685 0.0553937 0.18 0 pose: 0.8097925 2.42447 -0.0134829 0 -0.00105388 -0.00533631 0.00883866 0.999946 uwb: 0.50079915 844.95 785.414 +imu_odom_: 1691062785.764158846 0.136469 -0.407014 9.52653 -0.052198 0.0458064 0.0255663 0.18 0 pose: 0.0 2.42447 -0.0134829 0 -0.00105388 -0.00533631 0.00883866 0.999946 uwb: 0.0 844.95 785.414 +imu_odom_: 1691062785.781161980 0.627281 -0.124498 10.2185 -0.0308927 -0.04048 0.0458064 0.23 0 pose: 0.47959044 2.43853 -0.015003 0 0.00232534 -0.00796973 0.0089572 0.999925 uwb: 0.0 844.95 785.414 +imu_odom_: 1691062785.806152211 0.462081 -0.246603 9.73722 -0.0490022 -0.0266316 0.0553937 0.23 0 pose: 0.0 2.43853 -0.015003 0 0.00232534 -0.00796973 0.0089572 0.999925 uwb: 0.49734895 845.408 784.068 +imu_odom_: 1691062785.823274046 0.584185 -0.0646434 9.85214 -0.0458064 -0.0298274 0.0511327 0.21 0.02 pose: 0.40068482 2.43853 -0.015003 0 0.00181865 -0.00847603 0.0090104 0.999922 uwb: 0.0 845.408 784.068 +imu_odom_: 1691062785.848134785 0.526724 -0.0837971 9.84496 -0.0713727 -0.0351537 0.0532632 0.21 0.02 pose: 0.0 2.43853 -0.015003 0 0.00181865 -0.00847603 0.0090104 0.999922 uwb: 0.50172076 845.308 783.529 +imu_odom_: 1691062785.875060691 0.629675 0.0861913 10.3262 -0.0607201 -0.0596548 0.0553937 0.23 0 pose: 0.41900912 2.45259 -0.0165179 0 0.00203739 -0.00782383 0.00927822 0.999924 uwb: 0.0 845.308 783.529 +imu_odom_: 1691062785.891235833 0.636858 -0.203507 9.84735 -0.0756338 -0.0106526 0.056459 0.23 0 pose: 0.0 2.45259 -0.0165179 0 0.00203739 -0.00782383 0.00927822 0.999924 uwb: 0.0 845.308 783.529 +imu_odom_: 1691062785.918049453 0.232238 -0.167594 9.59835 -0.0628506 -0.0181095 0.0468716 0.23 0 pose: 0.41862415 2.46038 -0.0102407 0 0.00571362 -0.00787318 0.00952491 0.999907 uwb: 0.49871386 845.301 782.317 +imu_odom_: 1691062785.943049018 0.380678 -0.248997 9.38048 -0.0873517 -0.00106526 0.0511327 0.23 0 pose: 0.0 2.46038 -0.0102407 0 0.00571362 -0.00787318 0.00952491 0.999907 uwb: 0.0 845.301 782.317 +imu_odom_: 1691062785.967994044 0.428562 0.0023942 9.9503 -0.0830906 -0.0191748 0.0447411 0.21 0.02 pose: 0.43015302 2.46666 -0.0180213 0 0.00574626 -0.0091724 0.00984401 0.999893 uwb: 0.49955381 845.396 781.238 +imu_odom_: 1691062785.982042773 0.696713 -0.335188 9.68933 -0.0649811 -0.0191748 0.0479369 0.21 0.02 pose: 0.0 2.46666 -0.0180213 0 0.00574626 -0.0091724 0.00984401 0.999893 uwb: 0.0 845.396 781.238 +imu_odom_: 1691062786.6970592 0.258574 -0.289698 10.0149 -0.0383495 -0.0181095 0.0415453 0.18 0 pose: 0.51983800 2.47444 -0.0117366 0 0.00381 -0.00511216 0.010064 0.999929 uwb: 0.49918342 844.263 781.26 +imu_odom_: 1691062786.30963677 0.280122 0.0981623 9.9503 -0.0479369 -0.056459 0.0372843 0.18 0 pose: 0.0 2.47444 -0.0117366 0 0.00381 -0.00511216 0.010064 0.999929 uwb: 0.0 844.263 781.26 +imu_odom_: 1691062786.55134084 0.632069 -0.0023942 10.24 -0.0532632 -0.0500674 0.0426106 0.18 0 pose: 0.39149496 2.4885 -0.0132218 0 0.00375769 -0.00492099 0.0101713 0.999929 uwb: 0.50198618 845.072 779.56 +imu_odom_: 1691062786.80135690 0.514753 -0.397437 9.42358 -0.0426106 -0.0394148 0.0479369 0.18 0 pose: 0.0 2.4885 -0.0132218 0 0.00375769 -0.00492099 0.0101713 0.999929 uwb: 0.0 845.072 779.56 +imu_odom_: 1691062786.107017558 0.385466 -0.25618 9.85214 -0.0575243 0.0234358 0.0511327 0.23 0 pose: 0.49174930 2.4885 -0.0132218 0 0.0053795 -0.00346894 0.0101603 0.999928 uwb: 0.49864971 844.831 778.807 +imu_odom_: 1691062786.123103164 0.337582 -0.153229 9.9503 -0.052198 -0.0106526 0.036219 0.23 0 pose: 0.0 2.4885 -0.0132218 0 0.0053795 -0.00346894 0.0101603 0.999928 uwb: 0.0 844.831 778.807 +imu_odom_: 1691062786.149972199 0.179565 -0.47884 9.7875 -0.0692422 -0.0234358 0.0639159 0.19 -0.02 pose: 0.48850616 2.50257 -0.0147046 0 0.00350879 -0.00520795 0.0103466 0.999927 uwb: 0.50050752 844.871 777.627 +imu_odom_: 1691062786.175128088 0.849942 -0.0933739 10.5273 -0.0415453 0.00639159 0.0287621 0.2 0 pose: 0.27961844 2.51034 -0.00841161 0 0.0022678 -0.00268905 0.0104485 0.999939 uwb: 0.0 844.871 777.627 +imu_odom_: 1691062786.199001013 1.08697 -0.110133 11.0923 -0.0596548 -0.0553937 0.0575243 0.2 0 pose: 0.34834551 2.51476 -0.0138729 0 0.000132121 -0.00047451 0.0107589 0.999942 uwb: 0.49934384 845.427 776.35 +imu_odom_: 1691062786.213983603 0.605733 -0.0622492 9.52653 -0.0713727 -0.0905475 0.0340885 0.2 0 pose: 0.0 2.51476 -0.0138729 0 0.000132121 -0.00047451 0.0107589 0.999942 uwb: 0.0 845.427 776.35 +imu_odom_: 1691062786.238110263 0.35913 -0.351948 10.0556 -0.0628506 -0.0351537 0.0447411 0.18 0 pose: 0.8015388 2.51664 -0.0161807 0 0.000405634 -0.00120331 0.0107156 0.999942 uwb: 0.0 845.427 776.35 +imu_odom_: 1691062786.264972298 0.035913 -0.141258 10.3166 -0.0394148 0.00532632 0.0298274 0.23 0 pose: 0.48024667 2.5244 -0.00988162 0 0.00180694 -0.0064503 0.0108149 0.999919 uwb: 0.50127164 845.506 775.208 +imu_odom_: 1691062786.290126437 0.483629 -0.23942 9.71088 -0.0703074 -0.0276969 0.0511327 0.23 0 pose: 0.0 2.5244 -0.00988162 0 0.00180694 -0.0064503 0.0108149 0.999919 uwb: 0.0 845.506 775.208 +imu_odom_: 1691062786.307069200 0.802058 -0.222661 9.88805 -0.0330232 0 0.0351537 0.23 0 pose: 0.38970133 2.53847 -0.0113464 0 0.000744562 -0.0052037 0.010824 0.999928 uwb: 0.49808100 846.286 773.389 +imu_odom_: 1691062786.331946272 0.567426 -0.150835 10.3573 -0.052198 -0.00852212 0.0543285 0.23 0 pose: 0.0 2.53847 -0.0113464 0 0.000744562 -0.0052037 0.010824 0.999928 uwb: 0.0 846.286 773.389 +imu_odom_: 1691062786.358994379 0.656011 -0.225055 9.42118 -0.056459 0.0351537 0.0394148 0.23 -0.02 pose: 0.52261159 2.53847 -0.0113464 0 -0.00120833 -0.00515713 0.0108611 0.999927 uwb: 0.50086334 845.637 772.433 +imu_odom_: 1691062786.384114104 0.23942 -0.241814 9.59117 -0.0628506 0.00319579 0.0660464 0.23 -0.02 pose: 0.0 2.53847 -0.0113464 0 -0.00120833 -0.00515713 0.0108611 0.999927 uwb: 0.0 845.637 772.433 +imu_odom_: 1691062786.408993510 0.237026 -0.122104 9.94073 -0.0447411 0.00852212 0.04048 0.23 -0.05 pose: 0.41806128 2.55254 -0.0128093 0 0.00110022 -0.00772339 0.0110085 0.999909 uwb: 0.50037627 846.224 771.154 +imu_odom_: 1691062786.423105236 -0.134075 -0.184354 9.40921 -0.0820254 -0.00319579 0.0649811 0.23 -0.05 pose: 0.0 2.55254 -0.0128093 0 0.00110022 -0.00772339 0.0110085 0.999909 uwb: 0.0 846.224 771.154 +imu_odom_: 1691062786.448221752 -0.306458 -0.323217 9.71088 -0.0426106 0.04048 0.0255663 0.18 0 pose: 0.52000134 2.5603 -0.00650296 0 0.000413094 -0.0059587 0.0113483 0.999918 uwb: 0.50205618 846.509 770.281 +imu_odom_: 1691062786.472990040 0.253785 -0.148441 10.5919 -0.0585895 -0.0234358 0.0596548 0.18 0 pose: 0.0 2.5603 -0.00650296 0 0.000413094 -0.0059587 0.0113483 0.999918 uwb: 0.0 846.509 770.281 +imu_odom_: 1691062786.496160966 0.574608 -0.071826 10.1155 -0.0468716 0.015979 0.036219 0.18 0.02 pose: 0.81940232 2.57436 -0.00794974 0 0.00137831 0.00242508 0.011602 0.999929 uwb: 0.0 846.509 770.281 +imu_odom_: 1691062786.512101331 0.991199 -0.196325 9.76116 -0.0894822 -0.00745685 0.0511327 0.18 0.02 pose: 0.0 2.57436 -0.00794974 0 0.00137831 0.00242508 0.011602 0.999929 uwb: 0.0 846.509 770.281 +imu_odom_: 1691062786.539157896 0.179565 -0.282516 9.40203 -0.0500674 0.0394148 0.0319579 0.23 0 pose: 0.39111291 2.58843 -0.00939261 0 0.00223367 -0.00100259 0.0116648 0.999929 uwb: 0.0 846.509 770.281 +imu_odom_: 1691062786.555035848 0.335188 -0.347159 10.2927 -0.0671117 -0.00213053 0.0372843 0.23 0 pose: 0.0 2.58843 -0.00939261 0 0.00223367 -0.00100259 0.0116648 0.999929 uwb: 0.99857102 845.705 769.514 +imu_odom_: 1691062786.582104371 0.766145 -0.270545 9.86172 -0.0351537 0.0298274 0.0223706 0.25 -0.02 pose: 0.42934517 2.58843 -0.00939261 0 -0.0005036730.00231053 0.0115372 0.999931 uwb: 0.0 845.705 769.514 +imu_odom_: 1691062786.607112977 0.586579 -0.430956 9.68455 -0.0649811 -0.0447411 0.052198 0.19 0 pose: 0.0 2.58843 -0.00939261 0 -0.0005036730.00231053 0.0115372 0.999931 uwb: 0.49924760 845.584 768.46 +imu_odom_: 1691062786.633968596 0.366313 -0.0215478 9.94551 -0.0447411 -0.0298274 0.0426106 0.23 0 pose: 0.34985042 2.6025 -0.0108405 0 -0.00113288 -0.0006158120.0113512 0.999935 uwb: 0.0 845.584 768.46 +imu_odom_: 1691062786.659000534 0.782904 -0.308852 9.6606 -0.0713727 0.0127832 0.04048 0.18 -0.02 pose: 0.43947706 2.60801 -0.00635959 0 0.000220708 -0.00160946 0.011497 0.999933 uwb: 0.49854472 845.696 767.309 +imu_odom_: 1691062786.685074242 0.0407014 -0.363919 9.79947 -0.0617853 0.0245011 0.0415453 0.18 -0.02 pose: 0.8156547 2.61026 -0.00452958 0 -5.70794e-05-0.00232883 0.0115011 0.999931 uwb: 0.0 845.696 767.309 +imu_odom_: 1691062786.701088103 0.517148 -0.366313 10.1011 -0.0681769 -0.0245011 0.0436758 0.2 0 pose: 0.0 2.61026 -0.00452958 0 -5.70794e-05-0.00232883 0.0115011 0.999931 uwb: 0.50290196 846.503 765.873 +imu_odom_: 1691062786.727942264 0.682347 -0.023942 9.97185 -0.0553937 0.0266316 0.0383495 0.2 0 pose: 0.42949099 2.61486 -0.0101894 0 -0.00152598 -0.0009622940.0115393 0.999932 uwb: 0.0 846.503 765.873 +imu_odom_: 1691062786.752979452 0.179565 -0.445322 9.77074 -0.0543285 0.02024 0.0319579 0.17 0 pose: 0.42868022 2.62433 -0.00597399 0 -0.000917095-0.00355559 0.0115446 0.999927 uwb: 0.49838723 846.511 764.994 +imu_odom_: 1691062786.776920914 0.440533 -0.129287 10.0245 -0.0479369 -0.02024 0.0436758 0.17 0 pose: 0.0 2.62433 -0.00597399 0 -0.000917095-0.00355559 0.0115446 0.999927 uwb: 0.0 846.511 764.994 +imu_odom_: 1691062786.792002082 0.749385 -0.538695 9.91199 -0.0681769 -0.00532632 0.0575243 0.18 0.02 pose: 0.48978650 2.63611 -0.00927435 0 7.42545e-05 -0.00164211 0.0115023 0.999932 uwb: 0.0 846.511 764.994 +imu_odom_: 1691062786.816082953 0.531513 -0.222661 9.8258 -0.0490022 0.0181095 0.0511327 0.18 0.02 pose: 0.0 2.63611 -0.00927435 0 7.42545e-05 -0.00164211 0.0115023 0.999932 uwb: 0.49934675 846.922 763.826 +imu_odom_: 1691062786.841132390 0.318429 -0.42138 9.63666 -0.0479369 0.036219 0.0255663 0.23 0 pose: 0.39162039 2.63839 -0.00741902 0 -0.000563364-0.00480724 0.0117743 0.999919 uwb: 0.0 846.922 763.826 +imu_odom_: 1691062786.855081376 -0.0047884 -0.320823 10.0628 -0.0223706 -0.00426106 0.0287621 0.23 0 pose: 0.0 2.63839 -0.00741902 0 -0.000563364-0.00480724 0.0117743 0.999919 uwb: 0.50003214 847.107 762.752 +imu_odom_: 1691062786.871120610 0.61531 -0.409408 10.1778 -0.0287621 -0.0607201 0.036219 0.23 0 pose: 0.0 2.63839 -0.00741902 0 -0.000563364-0.00480724 0.0117743 0.999919 uwb: 0.0 847.107 762.752 +imu_odom_: 1691062786.888052873 0.440533 -0.0766145 9.7875 -0.0117179 -0.00639159 0.0330232 0.19 0.02 pose: 0.45998289 2.65246 -0.00885805 0 -0.00265022 -0.00200714 0.011526 0.999928 uwb: 0.0 847.107 762.752 +imu_odom_: 1691062786.903955324 0.579397 -0.047884 9.94551 -0.0319579 -0.0298274 0.0745685 0.19 0.02 pose: 0.0 2.65246 -0.00885805 0 -0.00265022 -0.00200714 0.011526 0.999928 uwb: 0.49868763 847.604 760.78 +imu_odom_: 1691062786.930061405 0.701501 -0.222661 9.99819 -0.0788296 0.02024 0.052198 0.25 0 pose: 0.41874082 2.65658 -0.00550946 0 0.000508889 -0.00385692 0.011726 0.999924 uwb: 0.0 847.604 760.78 +imu_odom_: 1691062786.955925126 0.54109 -0.323217 9.96467 -0.0820254 0.0426106 0.0553937 0.25 0 pose: 0.7073362 2.66022 -0.00254493 0 0.000378314 -0.00447799 0.0117708 0.999921 uwb: 0.50182285 846.363 760.679 +imu_odom_: 1691062786.972920969 0.548272 -0.287304 10.2855 -0.0873517 0.00745685 0.036219 0.23 0.05 pose: 0.0 2.66022 -0.00254493 0 0.000378314 -0.00447799 0.0117708 0.999921 uwb: 0.0 846.363 760.679 +imu_odom_: 1691062786.998109231 0.31364 -0.241814 9.51935 -0.072438 0.0138484 0.056459 0.23 0.05 pose: 0.44896440 2.66653 -0.0102983 0 -0.00287972 -0.00597802 0.0121095 0.999905 uwb: 0.50093333 846.126 759.85 +imu_odom_: 1691062787.23949912 0.529119 -0.517148 9.50019 -0.0703074 0.00639159 0.04048 0.18 0 pose: 0.25099601 2.67428 -0.00397752 0 -0.00383293 -0.00653195 0.0121487 0.999898 uwb: 0.0 846.126 759.85 +imu_odom_: 1691062787.48982726 0.481235 -0.287304 9.73243 -0.072438 -0.0213053 0.0553937 0.19 0 pose: 0.0 2.67428 -0.00397752 0 -0.00383293 -0.00653195 0.0121487 0.999898 uwb: 0.49902596 847.352 758.064 +imu_odom_: 1691062787.66028442 0.0885855 -0.323217 9.7851 -0.0490022 0.0149137 0.0490022 0.19 0 pose: 0.49959467 2.6806 -0.0117252 0 -0.00577978 -0.00485246 0.0123696 0.999895 uwb: 0.0 847.352 758.064 +imu_odom_: 1691062787.91044048 0.3304 -0.25618 9.82102 -0.0447411 0.015979 0.036219 0.18 0 pose: 0.0 2.6806 -0.0117252 0 -0.00577978 -0.00485246 0.0123696 0.999895 uwb: 0.0 847.352 758.064 +imu_odom_: 1691062787.116087070 0.217872 -0.28491 10.2424 -0.036219 0.0223706 0.0447411 0.18 0 pose: 0.42939477 2.68835 -0.00540005 0 -0.00401378 -0.00172801 0.0125842 0.999911 uwb: 0.49831725 847.273 757 +imu_odom_: 1691062787.128916999 0.179565 -0.189142 9.81383 -0.0213053 0.00426106 0.0394148 0.18 0 pose: 0.0 2.68835 -0.00540005 0 -0.00401378 -0.00172801 0.0125842 0.999911 uwb: 0.0 847.273 757 +imu_odom_: 1691062787.154963002 0.363919 -0.342371 9.65582 -0.0436758 -0.0181095 0.0479369 0.18 0 pose: 0.48148619 2.70242 -0.00681493 0 -0.0028276 0.00347278 0.012634 0.99991 uwb: 0.50098584 847.799 755.474 +imu_odom_: 1691062787.180065811 0.543484 -0.260968 9.55526 -0.0479369 -0.0617853 0.0596548 0.25 0 pose: 0.32890712 2.70242 -0.00681493 0 -0.00458068 0.00277758 0.012732 0.999905 uwb: 0.0 847.799 755.474 +imu_odom_: 1691062787.193064606 0.581791 -0.0790087 10.0652 -0.0276969 -0.0340885 0.0511327 0.25 0 pose: 0.0 2.70242 -0.00681493 0 -0.00458068 0.00277758 0.012732 0.999905 uwb: 0.0 847.799 755.474 +imu_odom_: 1691062787.218047839 0.505177 -0.150835 10.2185 -0.0213053 -0.00745685 0.04048 0.25 0 pose: 0.0 2.70242 -0.00681493 0 -0.00458068 0.00277758 0.012732 0.999905 uwb: 0.50112583 847.804 754.528 +imu_odom_: 1691062787.243052071 0.758962 -0.167594 10.3477 -0.0543285 -0.0170442 0.0415453 0.17 0 pose: 0.7000741 2.70242 -0.00681493 0 -0.00440354 0.00189239 0.0128005 0.999907 uwb: 0.0 847.804 754.528 +imu_odom_: 1691062787.267985141 0.512359 -0.124498 10.149 -0.0511327 0.00106526 0.0607201 0.18 0 pose: 0.39059379 2.71649 -0.00822416 0 -0.00192072 -0.00181356 0.0130514 0.999911 uwb: 0.49887139 847.559 753.653 +imu_odom_: 1691062787.291928063 0.371101 -0.354342 9.35893 -0.0681769 0.00852212 0.0351537 0.18 0 pose: 0.0 2.71649 -0.00822416 0 -0.00192072 -0.00181356 0.0130514 0.999911 uwb: 0.0 847.559 753.653 +imu_odom_: 1691062787.309965968 0.0766145 0.0263362 10.3813 -0.0383495 -0.0351537 0.0330232 0.21 -0.02 pose: 0.48902824 2.72423 -0.00188875 0 0.00099798 -0.00533214 0.013147 0.999899 uwb: 0.0 847.559 753.653 +imu_odom_: 1691062787.333955554 0.296881 -0.471658 9.87848 -0.0585895 -0.0170442 0.0372843 0.21 -0.02 pose: 0.0 2.72423 -0.00188875 0 0.00099798 -0.00533214 0.013147 0.999899 uwb: 0.0 847.559 753.653 +imu_odom_: 1691062787.358885707 1.075 -0.296881 9.91439 -0.0458064 -0.0330232 0.0532632 0.23 0.02 pose: 0.50005839 2.73057 -0.00962489 0 0.00114839 -0.00324361 0.0132539 0.999906 uwb: 0.99925643 848.038 752.5 +imu_odom_: 1691062787.381033238 0.466869 -0.414197 9.71328 -0.0468716 0.00532632 0.036219 0.23 0.02 pose: 0.0 2.73057 -0.00962489 0 0.00114839 -0.00324361 0.0132539 0.999906 uwb: 0.0 848.038 752.5 +imu_odom_: 1691062787.394902896 0.342371 -0.316035 9.64863 -0.0276969 0.0394148 0.0308927 0.17 0 pose: 0.41091881 2.7383 -0.00328654 0 -0.000486981-0.00236531 0.0132426 0.999909 uwb: 0.0 848.038 752.5 +imu_odom_: 1691062787.419907711 0.280122 -0.418985 9.93354 -0.0649811 -0.0213053 0.0500674 0.17 0 pose: 0.0 2.7383 -0.00328654 0 -0.000486981-0.00236531 0.0132426 0.999909 uwb: 0.0 848.038 752.5 +imu_odom_: 1691062787.440948726 0.45011 -0.0311246 9.93833 -0.0649811 -0.0628506 0.052198 0.18 0.02 pose: 0.46033873 2.75237 -0.00468225 0 -0.00281697 -0.003384 0.0133136 0.999902 uwb: 0.0 848.038 752.5 +imu_odom_: 1691062787.455058411 0.842759 -0.272939 9.89045 -0.0841559 -0.0458064 0.0735032 0.18 0.02 pose: 0.0 2.75237 -0.00468225 0 -0.00281697 -0.003384 0.0133136 0.999902 uwb: 0.100108506 847.954 751.39 +imu_odom_: 1691062787.471097646 0.656011 -0.385466 9.84735 -0.0596548 0.015979 0.0479369 0.18 0.02 pose: 0.0 2.75237 -0.00468225 0 -0.00281697 -0.003384 0.0133136 0.999902 uwb: 0.0 847.954 751.39 +imu_odom_: 1691062787.496027216 0.0814029 -0.0766145 10.1586 -0.0703074 0.0213053 0.0596548 0.18 -0.02 pose: 0.38845892 2.75237 -0.00468225 0 -0.00417632 -0.00104234 0.0134616 0.9999 uwb: 0.0 847.954 751.39 +imu_odom_: 1691062787.519900725 0.577003 -0.100556 10.2783 -0.0617853 0.0372843 0.0308927 0.18 -0.02 pose: 0.0 2.75237 -0.00468225 0 -0.00417632 -0.00104234 0.0134616 0.9999 uwb: 0.50088668 849.146 749.921 +imu_odom_: 1691062787.545051365 0.663194 -0.292093 9.68694 -0.0862864 0.00213053 0.0543285 0.23 0 pose: 0.52163750 2.76645 -0.00607251 0 -0.0035202 -0.00386162 0.0139278 0.999889 uwb: 0.0 849.146 749.921 +imu_odom_: 1691062787.569041826 0.802058 -0.328006 9.5792 -0.0500674 0.0255663 0.0308927 0.23 0 pose: 0.48855284 2.77417 0.000278314 0 -0.00131163 -0.00362786 0.014047 0.999894 uwb: 0.49738398 848.086 749.156 +imu_odom_: 1691062787.585094768 0.344765 -0.189142 10.0437 -0.0692422 0.00745685 0.0490022 0.19 -0.02 pose: 0.0 2.77417 0.000278314 0 -0.00131163 -0.00362786 0.014047 0.999894 uwb: 0.0 848.086 749.156 +imu_odom_: 1691062787.601037175 0.220267 -0.0167594 10.228 -0.0617853 -0.0213053 0.0490022 0.19 -0.02 pose: 0.0 2.77417 0.000278314 0 -0.00131163 -0.00362786 0.014047 0.999894 uwb: 0.50051920 846.952 748.77 +imu_odom_: 1691062787.627118759 0.52433 -0.318429 9.88566 -0.0649811 0.0298274 0.0319579 0.18 0.02 pose: 0.74114710 2.78825 -0.00109375 0 -0.00115655 -0.0045944 0.0142191 0.999888 uwb: 0.0 846.952 748.77 +imu_odom_: 1691062787.652027038 0.0502782 -0.292093 10.1131 -0.0415453 0.0255663 0.02024 0.18 0.02 pose: 0.0 2.78825 -0.00109375 0 -0.00115655 -0.0045944 0.0142191 0.999888 uwb: 0.50174413 846.804 748.032 +imu_odom_: 1691062787.678009461 0.0814029 -0.301669 9.72046 -0.0639159 -0.0127832 0.0490022 0.21 0.02 pose: 0.7871606 2.78825 -0.00109375 0 -0.00192448 -0.00476233 0.0141918 0.999886 uwb: 0.0 846.804 748.032 +imu_odom_: 1691062787.703886890 0.600945 -0.0670376 9.54089 -0.0223706 -0.0287621 0.0255663 0.19 -0.02 pose: 0.51072983 2.80232 -0.00246613 0 -0.00366241 -0.00152489 0.0139372 0.999895 uwb: 0.49898513 846.584 747.173 +imu_odom_: 1691062787.728880915 0.677559 -0.158017 10.5105 -0.072438 -0.0383495 0.0458064 0.19 -0.02 pose: 0.0 2.80232 -0.00246613 0 -0.00366241 -0.00152489 0.0139372 0.999895 uwb: 0.0 846.584 747.173 +imu_odom_: 1691062787.753967976 0.665588 0.0047884 10.58 -0.0383495 -0.0490022 0.02024 0.19 0 pose: 0.68899151 2.8164 -0.00384212 0 -0.000793058-0.00459991 0.0139153 0.999892 uwb: 0.49939635 846.243 746.111 +imu_odom_: 1691062787.770082164 0.351948 -0.347159 9.1674 -0.0862864 0.00745685 0.0532632 0.19 0 pose: 0.6068923 2.8164 -0.00384212 0 -0.000236987-0.00507696 0.0138544 0.999891 uwb: 0.0 846.243 746.111 +imu_odom_: 1691062787.794911990 0.138864 -0.265756 9.35415 -0.0585895 -0.0308927 0.0340885 0.19 0 pose: 0.0 2.8164 -0.00384212 0 -0.000236987-0.00507696 0.0138544 0.999891 uwb: 0.0 846.243 746.111 +imu_odom_: 1691062787.820897038 0.533907 -0.172383 9.9096 -0.0788296 0.00639159 0.0415453 0.19 0 pose: 0.35132326 2.82074 -0.0002741030 0.000142736 -0.00531495 0.0137778 0.999891 uwb: 0.50052212 845.977 745.17 +imu_odom_: 1691062787.837046224 0.565032 -0.289698 10.1993 -0.0287621 0.0213053 0.0213053 0.19 0 pose: 0.0 2.82074 -0.0002741030 0.000142736 -0.00531495 0.0137778 0.999891 uwb: 0.0 845.977 745.17 +imu_odom_: 1691062787.853911117 0.509965 -0.332794 9.5385 -0.0639159 0.0106526 0.0426106 0.19 0 pose: 0.50814874 2.83047 -0.00522319 0 0.000949654 -0.00515986 0.0137301 0.999892 uwb: 0.50114916 845.66 744.646 +imu_odom_: 1691062787.878028154 0.134075 -0.143652 9.84256 -0.0170442 0.015979 0.0468716 0.19 0 pose: 0.0 2.83047 -0.00522319 0 0.000949654 -0.00515986 0.0137301 0.999892 uwb: 0.0 845.66 744.646 +imu_odom_: 1691062787.895011456 0.550666 -0.138864 10.082 -0.056459 -0.0127832 0.0490022 0.19 0 pose: 0.41023052 2.8382 0.00112172 0 -0.00159358 -0.00482287 0.0136568 0.999894 uwb: 0.0 845.66 744.646 +imu_odom_: 1691062787.911882474 0.368707 -0.138864 9.63427 -0.0511327 0.04048 0.0245011 0.19 0 pose: 0.0 2.8382 0.00112172 0 -0.00159358 -0.00482287 0.0136568 0.999894 uwb: 0.49735190 844.191 744.738 +imu_odom_: 1691062787.929149550 0.538695 -0.25618 10.0461 -0.0319579 -0.0340885 0.0426106 0.19 0 pose: 0.41114921 2.85228 -0.0002629350 0.0008172 -0.00343041 0.0137304 0.9999 uwb: 0.0 844.191 744.738 +imu_odom_: 1691062787.954018458 0.414197 -0.292093 9.65582 -0.0575243 -0.0276969 0.0490022 0.19 0 pose: 0.0 2.85228 -0.0002629350 0.0008172 -0.00343041 0.0137304 0.9999 uwb: 0.50200953 843.128 744.505 +imu_odom_: 1691062787.978926154 0.433351 -0.0885855 9.50977 -0.0628506 0.00426106 0.0585895 0.19 0 pose: 0.34078598 2.85228 -0.0002629350 -0.000191269-0.00371152 0.0137321 0.999899 uwb: 0.0 843.128 744.505 +imu_odom_: 1691062788.3888681 0.0454898 -0.23942 9.59357 -0.0617853 0.036219 0.0351537 0.17 0.02 pose: 0.0 2.85228 -0.0002629350 -0.000191269-0.00371152 0.0137321 0.999899 uwb: 0.49849224 842.113 744.355 +imu_odom_: 1691062788.20881316 0.703895 0.0502782 10.2879 -0.0671117 -0.0372843 0.0532632 0.17 0.02 pose: 0.41812545 2.8641 -0.00349596 0 0.000819268 -0.00236699 0.0140465 0.999898 uwb: 0.0 842.113 744.355 +imu_odom_: 1691062788.38021526 0.696713 -0.253785 9.73243 -0.0756338 -0.00639159 0.0532632 0.17 0.02 pose: 0.0 2.8641 -0.00349596 0 0.000819268 -0.00236699 0.0140465 0.999898 uwb: 0.0 842.113 744.355 +imu_odom_: 1691062788.62878768 0.131681 -0.222661 9.69891 -0.0671117 0.015979 0.04048 0.18 0.02 pose: 0.7002783 2.86635 -0.00164427 0 0.000716346 -0.00152928 0.0140307 0.9999 uwb: 0.49946636 842.414 742.842 +imu_odom_: 1691062788.88934396 0.440533 -0.181959 9.55765 -0.0905475 -0.0213053 0.0490022 0.18 0.02 pose: 0.0 2.86635 -0.00164427 0 0.000716346 -0.00152928 0.0140307 0.9999 uwb: 0.0 842.414 742.842 +imu_odom_: 1691062788.105227658 0.349553 -0.380678 10.4052 -0.0649811 0.0170442 0.036219 0.25 0 pose: 0.59990152 2.87407 0.00470752 0 0.00077535 -0.00179219 0.0142303 0.999897 uwb: 0.49997675 842.725 741.327 +imu_odom_: 1691062788.129983697 0.988805 -0.232238 10.1107 -0.0703074 -0.02024 0.0426106 0.25 0 pose: 0.0 2.87407 0.00470752 0 0.00077535 -0.00179219 0.0142303 0.999897 uwb: 0.0 842.725 741.327 +imu_odom_: 1691062788.154923476 0.859518 -0.332794 10.5369 -0.0479369 -0.0500674 0.0458064 0.18 0 pose: 0.50028882 2.88043 -0.00301473 0 0.000763867 -0.00199079 0.0143499 0.999895 uwb: 0.50040839 842.296 740.622 +imu_odom_: 1691062788.180002080 0.428562 -0.174777 10.0293 -0.0607201 -0.0223706 0.0298274 0.19 0 pose: 0.16960846 2.88815 0.00334059 0 -0.000175131-0.00230121 0.0143472 0.999894 uwb: 0.0 842.296 740.622 +imu_odom_: 1691062788.197000257 0.177171 -0.215478 9.70131 -0.0266316 0.00213053 0.0394148 0.19 0 pose: 0.42014659 2.90003 0.000167818 0 -0.000899639-0.00712088 0.0144527 0.99987 uwb: 0.0 842.296 740.622 +imu_odom_: 1691062788.221053714 0.371101 -0.344765 9.41879 -0.0639159 -0.0106526 0.0468716 0.19 0 pose: 0.0 2.90003 0.000167818 0 -0.000899639-0.00712088 0.0144527 0.99987 uwb: 0.50055422 843.183 739.012 +imu_odom_: 1691062788.245993784 0.138864 -0.363919 9.90721 -0.0585895 -0.0394148 0.0575243 0.18 0 pose: 0.7102527 2.90222 0.00197564 0 -0.000600304-0.00654993 0.0144163 0.999874 uwb: 0.0 843.183 739.012 +imu_odom_: 1691062788.260962668 0.61531 -0.512359 9.49062 -0.0649811 0.00213053 0.0500674 0.18 0 pose: 0.0 2.90222 0.00197564 0 -0.000600304-0.00654993 0.0144163 0.999874 uwb: 0.49984551 843.071 738.31 +imu_odom_: 1691062788.283964731 0.739808 -0.380678 9.84735 -0.0276969 0.00532632 0.0287621 0.18 0 pose: 0.43234628 2.90222 0.00197564 0 -0.000357902-0.00291033 0.0143564 0.999893 uwb: 0.0 843.071 738.31 +imu_odom_: 1691062788.301828522 0.227449 -0.35913 9.46667 -0.0681769 0 0.0500674 0.18 0 pose: 0.0 2.90222 0.00197564 0 -0.000357902-0.00291033 0.0143564 0.999893 uwb: 0.50093044 843.335 737.191 +imu_odom_: 1691062788.317886714 0.617704 -0.28491 10.1825 -0.0436758 -0.0255663 0.0351537 0.18 0.02 pose: 0.47629777 2.9163 0.000610484 0 -0.00323956 -0.00062572 0.0146831 0.999887 uwb: 0.0 843.335 737.191 +imu_odom_: 1691062788.343945550 1.03908 -0.0742203 10.6279 -0.0607201 -0.0458064 0.0575243 0.18 0.02 pose: 0.0 2.9163 0.000610484 0 -0.00323956 -0.00062572 0.0146831 0.999887 uwb: 0.0 843.335 737.191 +imu_odom_: 1691062788.368892912 1.0319 0.0263362 10.1706 -0.0436758 -0.0117179 0.0266316 0.19 0 pose: 0.57001625 2.93038 -0.0007453550 -0.00461682 -0.00237417 0.014672 0.999879 uwb: 0.49836977 844.016 735.718 +imu_odom_: 1691062788.392833209 0.47884 -0.316035 9.80665 -0.0681769 -0.0458064 0.0458064 0.23 0 pose: 0.0 2.93038 -0.0007453550 -0.00461682 -0.00237417 0.014672 0.999879 uwb: 0.0 844.016 735.718 +imu_odom_: 1691062788.418998497 0.308852 -0.196325 9.67736 -0.0127832 0.00426106 0.0372843 0.25 0 pose: 0.66998769 2.93809 0.00561696 0 -0.00250038 -0.00790349 0.0147266 0.999857 uwb: 0.50032964 843.183 735.363 +imu_odom_: 1691062788.434854868 0.646434 -0.402226 9.28711 -0.0671117 -0.0149137 0.0553937 0.25 0 pose: 0.0 2.93809 0.00561696 0 -0.00250038 -0.00790349 0.0147266 0.999857 uwb: 0.0 843.183 735.363 +imu_odom_: 1691062788.452003828 0.550666 -0.323217 10.1203 -0.0287621 0.02024 0.0298274 0.25 -0.02 pose: 0.57964066 2.94875 0.00144823 0 -0.00320858 -0.00564865 0.0148896 0.999868 uwb: 0.49946637 844.152 733.834 +imu_odom_: 1691062788.478114577 0.502782 -0.117316 10.1682 -0.0543285 -0.0298274 0.0585895 0.25 -0.02 pose: 0.7019700 2.95217 0.0042646 0 -0.00365024 -0.00601848 0.0148572 0.999865 uwb: 0.0 844.152 733.834 +imu_odom_: 1691062788.504042171 0.574608 -0.237026 9.47625 -0.0468716 0.056459 0.0351537 0.23 0 pose: 0.36240009 2.95653 -0.00102116 0 -0.00169956 -0.00641911 0.0150452 0.999865 uwb: 0.50028590 844.34 732.552 +imu_odom_: 1691062788.519890376 0.196325 -0.280122 9.80426 -0.0745685 0.0117179 0.0671117 0.23 0 pose: 0.0 2.95653 -0.00102116 0 -0.00169956 -0.00641911 0.0150452 0.999865 uwb: 0.0 844.34 732.552 +imu_odom_: 1691062788.536897594 0.667982 -0.237026 10.2304 -0.0639159 -0.0234358 0.0468716 0.23 0 pose: 0.0 2.95653 -0.00102116 0 -0.00169956 -0.00641911 0.0150452 0.999865 uwb: 0.0 844.34 732.552 +imu_odom_: 1691062788.552824545 0.186748 -0.0957681 10.0317 -0.0415453 0.0170442 0.0372843 0.23 0 pose: 0.48813872 2.96624 0.00291727 0 -0.00136026 -0.00723351 0.0152233 0.999857 uwb: 0.49917763 845.908 730.939 +imu_odom_: 1691062788.569844304 0.107739 -0.25618 9.30866 -0.0830906 -0.0117179 0.0596548 0.23 0 pose: 0.0 2.96624 0.00291727 0 -0.00136026 -0.00723351 0.0152233 0.999857 uwb: 0.0 845.908 730.939 +imu_odom_: 1691062788.595820895 0.146046 -0.1652 9.83299 -0.036219 -0.00319579 0.0223706 0.25 -0.02 pose: 0.33955232 2.96624 0.00291727 0 -0.000846846-0.0058872 0.0153188 0.999865 uwb: 0.0 845.908 730.939 +imu_odom_: 1691062788.612874777 0.907402 -0.385466 9.84975 -0.092678 0.00426106 0.0553937 0.25 -0.02 pose: 0.0 2.96624 0.00291727 0 -0.000846846-0.0058872 0.0153188 0.999865 uwb: 0.50285825 847.056 729.121 +imu_odom_: 1691062788.627874867 0.502782 -0.349553 9.42358 -0.0692422 0.00852212 0.0511327 0.21 -0.02 pose: 0.43000433 2.98032 0.00157934 0 -0.000732953-0.00318584 0.0152509 0.999878 uwb: 0.0 847.056 729.121 +imu_odom_: 1691062788.645932896 0.354342 -0.0335188 10.6326 -0.0500674 -0.02024 0.036219 0.21 -0.02 pose: 0.0 2.98032 0.00157934 0 -0.000732953-0.00318584 0.0152509 0.999878 uwb: 0.0 847.056 729.121 +imu_odom_: 1691062788.661859555 0.234632 -0.186748 9.99579 -0.0852212 0.0298274 0.056459 0.18 0 pose: 0.0 2.98032 0.00157934 0 -0.000732953-0.00318584 0.0152509 0.999878 uwb: 0.0 847.056 729.121 +imu_odom_: 1691062788.687967388 0.543484 -0.392649 9.38527 -0.0468716 0.0245011 0.0298274 0.18 0 pose: 0.42048782 2.99159 0.00364435 0 -0.00115079 -0.00348603 0.0153797 0.999875 uwb: 0.0 847.056 729.121 +imu_odom_: 1691062788.703812093 0.646434 -0.409408 10.0341 -0.0745685 -0.0383495 0.0394148 0.18 0 pose: 0.7944810 2.9944 0.000240144 0 -0.00111441 -0.00257364 0.0154465 0.999877 uwb: 0.99861191 846.367 728.454 +imu_odom_: 1691062788.720877641 0.160412 -0.174777 10.2615 -0.0447411 0.0351537 0.0287621 0.25 0 pose: 0.0 2.9944 0.000240144 0 -0.00111441 -0.00257364 0.0154465 0.999877 uwb: 0.0 846.367 728.454 +imu_odom_: 1691062788.745815378 0.837971 -0.505177 9.44513 -0.0532632 0.0276969 0.0468716 0.18 0 pose: 0.0 2.9944 0.000240144 0 -0.00111441 -0.00257364 0.0154465 0.999877 uwb: 0.0 846.367 728.454 +imu_odom_: 1691062788.770831277 1.01275 -0.0837971 10.7212 -0.0394148 -0.0191748 0.0234358 0.23 -0.02 pose: 0.66999935 3.00211 0.00661172 0 -0.00346469 -0.00244572 0.0152963 0.999874 uwb: 0.49897640 845.793 727.994 +imu_odom_: 1691062788.795938463 0.85473 -0.565032 9.47625 -0.0713727 0.00639159 0.0575243 0.23 -0.02 pose: 0.32988999 3.00848 -0.00109615 0 -0.00425528 -0.00501661 0.0153118 0.999861 uwb: 0.0 845.793 727.994 +imu_odom_: 1691062788.819897134 0.94571 -0.301669 9.45949 -0.0511327 0.0287621 0.015979 0.18 0 pose: 0.42071823 3.01619 0.00527437 0 -0.00523017 -0.00847226 0.0153931 0.999832 uwb: 0.50108502 844.957 727.63 +imu_odom_: 1691062788.843964299 0.337582 -0.378284 9.34936 -0.0916127 -0.0106526 0.0500674 0.18 0 pose: 0.7998764 3.01619 0.00527437 0 -0.00517484 -0.0091394 0.0152936 0.999828 uwb: 0.0 844.957 727.63 +imu_odom_: 1691062788.869837646 0.0191536 -0.0550666 9.66539 -0.0500674 -0.0223706 0.0340885 0.25 0 pose: 0.40027072 3.02772 0.0018307 0 -0.00614468 -0.00823086 0.0152357 0.999831 uwb: 0.49999133 843.846 727.342 +imu_odom_: 1691062788.885937544 0.739808 -0.366313 10.1083 -0.0862864 -0.0234358 0.0532632 0.25 0 pose: 0.0 3.02772 0.0018307 0 -0.00614468 -0.00823086 0.0152357 0.999831 uwb: 0.0 843.846 727.342 +imu_odom_: 1691062788.909839927 0.746991 -0.215478 10.3573 -0.0287621 -0.0138484 0.0170442 0.25 0 pose: 0.41973245 3.03027 0.00393667 0 -0.0055158 -0.00787938 0.0152754 0.999837 uwb: 0.50122209 842.376 726.991 +imu_odom_: 1691062788.934880033 0.600945 -0.28491 9.92636 -0.0628506 -0.00639159 0.0575243 0.25 0 pose: 0.0 3.03027 0.00393667 0 -0.0055158 -0.00787938 0.0152754 0.999837 uwb: 0.0 842.376 726.991 +imu_odom_: 1691062788.947865121 0.531513 -0.177171 10.1466 -0.0458064 -0.0234358 0.0468716 0.19 0.02 pose: 0.0 3.03027 0.00393667 0 -0.0055158 -0.00787938 0.0152754 0.999837 uwb: 0.49604532 843.956 724.757 +imu_odom_: 1691062788.971801043 0.543484 -0.263362 10.2759 -0.0543285 -0.00106526 0.0511327 0.19 0.02 pose: 0.48942489 3.04435 0.00259592 0 -0.00158548 -0.0107087 0.0151848 0.999826 uwb: 0.0 843.956 724.757 +imu_odom_: 1691062788.996791861 0.416591 -0.215478 10.489 -0.0276969 -0.0372843 0.0330232 0.22 -0.02 pose: 0.36921010 3.04947 0.00682782 0 -0.00184756 -0.00769344 0.0153774 0.99985 uwb: 0.0 843.956 724.757 +imu_odom_: 1691062789.10800928 0.732626 0.0263362 10.0868 -0.0330232 -0.0308927 0.0479369 0.22 -0.02 pose: 0.0 3.04947 0.00682782 0 -0.00184756 -0.00769344 0.0153774 0.99985 uwb: 0.50123085 843.997 723.706 +imu_odom_: 1691062789.34987961 0.512359 -0.21069 9.76595 -0.0532632 -0.0181095 0.0511327 0.17 0.02 pose: 0.0 3.04947 0.00682782 0 -0.00184756 -0.00769344 0.0153774 0.99985 uwb: 0.0 843.997 723.706 +imu_odom_: 1691062789.60791605 0.435745 -0.0023942 10.0533 -0.0511327 -0.00426106 0.056459 0.17 0.02 pose: 0.38999885 3.05843 0.00125775 0 0.000380982 -0.00674287 0.0153513 0.999859 uwb: 0.49981635 843.626 723.049 +imu_odom_: 1691062789.73877311 0.107739 -0.289698 9.92636 -0.0681769 -0.00106526 0.0628506 0.18 -0.02 pose: 0.0 3.05843 0.00125775 0 0.000380982 -0.00674287 0.0153513 0.999859 uwb: 0.0 843.626 723.049 +imu_odom_: 1691062789.97786403 0.387861 -0.0766145 9.83059 -0.0394148 0.00958738 0.0372843 0.18 -0.02 pose: 0.55996021 3.06613 0.00762926 0 0.00249827 -0.00320801 0.0157675 0.999867 uwb: 0.50013426 843.313 722.495 +imu_odom_: 1691062789.115846767 0.172383 -0.306458 9.27035 -0.0937433 0 0.0596548 0.22 0.02 pose: 0.0 3.06613 0.00762926 0 0.00249827 -0.00320801 0.0157675 0.999867 uwb: 0.0 843.313 722.495 +imu_odom_: 1691062789.131797049 0.739808 -0.143652 10.2113 -0.0607201 -0.0266316 0.0394148 0.22 0.02 pose: 0.38998719 3.07251 -7.35069e-050 0.00373839 -0.0003189990.0158921 0.999867 uwb: 0.0 843.313 722.495 +imu_odom_: 1691062789.148850932 0.213084 -0.146046 9.40921 -0.0628506 -0.0149137 0.0447411 0.22 0.02 pose: 0.0 3.07251 -7.35069e-050 0.00373839 -0.0003189990.0158921 0.999867 uwb: 0.50170042 842.827 722.202 +imu_odom_: 1691062789.165959061 0.553061 -0.402226 9.93594 -0.092678 -0.0127832 0.072438 0.18 -0.02 pose: 0.43055264 3.08021 0.0063056 0 0.00301499 0.000358144 0.0160313 0.999867 uwb: 0.0 842.827 722.202 +imu_odom_: 1691062789.179785265 0.179565 -0.562637 9.76116 -0.0585895 0.0255663 0.0383495 0.18 -0.02 pose: 0.0 3.08021 0.0063056 0 0.00301499 0.000358144 0.0160313 0.999867 uwb: 0.0 842.827 722.202 +imu_odom_: 1691062789.202783828 0.287304 -0.347159 10.0006 -0.0681769 -0.0117179 0.0543285 0.17 0 pose: 0.8062928 3.08021 0.0063056 0 0.00218982 -0.0001211460.0161648 0.999867 uwb: 0.49929722 843.605 720.737 +imu_odom_: 1691062789.227780188 0.624887 -0.418985 10.1299 -0.0532632 0.0181095 0.0308927 0.21 0.02 pose: 0.0 3.08021 0.0063056 0 0.00218982 -0.0001211460.0161648 0.999867 uwb: 0.0 843.605 720.737 +imu_odom_: 1691062789.249772271 -0.112527 -0.373495 10.1131 -0.0575243 -0.0234358 0.0351537 0.18 0 pose: 0.70866328 3.09429 0.00499132 0 -0.00320126 -0.0002130490.0163598 0.999861 uwb: 0.49928556 842.725 720.313 +imu_odom_: 1691062789.262825896 0.344765 -0.114922 10.1969 -0.0596548 -0.0426106 0.0340885 0.18 0 pose: 0.0 3.09429 0.00499132 0 -0.00320126 -0.0002130490.0163598 0.999861 uwb: 0.0 842.725 720.313 +imu_odom_: 1691062789.277778740 1.10133 -0.222661 9.55526 -0.0447411 0.00639159 0.0372843 0.17 -0.02 pose: 0.0 3.09429 0.00499132 0 -0.00320126 -0.0002130490.0163598 0.999861 uwb: 0.0 842.725 720.313 +imu_odom_: 1691062789.302773349 0.778116 -0.361524 9.55047 -0.0617853 -0.00745685 0.0500674 0.17 -0.02 pose: 0.43049723 3.10837 0.00368171 0 -0.00228736 0.000914098 0.0162757 0.999865 uwb: 0.49990969 841.949 719.506 +imu_odom_: 1691062789.316759376 0.385466 -0.126893 9.98143 -0.0415453 0.0319579 0.0394148 0.17 -0.02 pose: 0.0 3.10837 0.00368171 0 -0.00228736 0.000914098 0.0162757 0.999865 uwb: 0.0 841.949 719.506 +imu_odom_: 1691062789.333923794 0.311246 -0.332794 9.65342 -0.0511327 -0.0330232 0.0500674 0.18 -0.02 pose: 0.38941555 3.10837 0.00368171 0 -0.00222328 -0.00179816 0.0163902 0.999862 uwb: 0.0 841.949 719.506 +imu_odom_: 1691062789.358802910 0.488417 -0.258574 9.63666 -0.0447411 -0.00213053 0.0298274 0.18 -0.02 pose: 0.0 3.10837 0.00368171 0 -0.00222328 -0.00179816 0.0163902 0.999862 uwb: 0.49955096 841.709 718.506 +imu_odom_: 1691062789.375922414 0.47884 0.138864 10.2759 -0.04048 -0.0106526 0.0447411 0.18 0 pose: 0.31246106 3.11607 0.0100686 0 -0.002457 -0.0009843290.0164463 0.999861 uwb: 0.0 841.709 718.506 +imu_odom_: 1691062789.390932128 0.407014 -0.476446 8.99741 -0.0596548 -0.00106526 0.0468716 0.18 0 pose: 0.0 3.11607 0.0100686 0 -0.002457 -0.0009843290.0164463 0.999861 uwb: 0.0 841.709 718.506 +imu_odom_: 1691062789.407807522 0.294487 -0.0694318 10.4722 -0.0330232 0.0330232 0.0415453 0.18 0 pose: 0.49914556 3.13015 0.0087623 0 -0.0019079 -0.0025835 0.0164537 0.999859 uwb: 0.50165958 840.658 718.368 +imu_odom_: 1691062789.424064620 0.45011 -0.160412 10.0413 -0.0479369 0.0319579 0.056459 0.18 0 pose: 0.0 3.13015 0.0087623 0 -0.0019079 -0.0025835 0.0164537 0.999859 uwb: 0.0 840.658 718.368 +imu_odom_: 1691062789.441049673 -0.0622492 -0.181959 9.79468 -0.0585895 -0.0127832 0.0511327 0.18 0 pose: 0.0 3.13015 0.0087623 0 -0.0019079 -0.0025835 0.0164537 0.999859 uwb: 0.0 840.658 718.368 +imu_odom_: 1691062789.458116971 0.758962 0.047884 10.5105 -0.0340885 -0.0223706 0.0308927 0.18 0 pose: 0.7975725 3.13015 0.0087623 0 -0.001228 -0.00189977 0.016461 0.999862 uwb: 0.49814813 841.136 716.91 +imu_odom_: 1691062789.475058569 0.126893 -0.332794 9.56005 -0.056459 0.00106526 0.0458064 0.18 0 pose: 0.0 3.13015 0.0087623 0 -0.001228 -0.00189977 0.016461 0.999862 uwb: 0.0 841.136 716.91 +imu_odom_: 1691062789.489927709 0.251391 -0.471658 9.91439 -0.0596548 -0.00745685 0.036219 0.18 0 pose: 0.0 3.13015 0.0087623 0 -0.001228 -0.00189977 0.016461 0.999862 uwb: 0.0 841.136 716.91 +imu_odom_: 1691062789.507867330 0.320823 -0.181959 9.77792 -0.0181095 -0.00319579 0.0394148 0.24 0 pose: 0.50035591 3.14423 0.00745954 0 0.00163338 -0.0004956080.0166667 0.99986 uwb: 0.49910474 840.652 716.047 +imu_odom_: 1691062789.523913274 0.0574608 -0.11971 10.1299 -0.0532632 0 0.0490022 0.18 0 pose: 0.0 3.14423 0.00745954 0 0.00163338 -0.0004956080.0166667 0.99986 uwb: 0.0 840.652 716.047 +imu_odom_: 1691062789.540913201 0.749385 -0.342371 9.83777 -0.036219 0.00106526 0.0308927 0.18 0 pose: 0.66996146 3.15192 0.0138504 0 0.00131736 0.00329308 0.0166883 0.999854 uwb: 0.0 840.652 716.047 +imu_odom_: 1691062789.558019581 0.521936 0.222661 10.082 -0.04048 -0.00426106 0.0426106 0.18 0 pose: 0.0 3.15192 0.0138504 0 0.00131736 0.00329308 0.0166883 0.999854 uwb: 0.50118711 839.111 716.213 +imu_odom_: 1691062789.582816744 0.280122 -0.19393 9.64624 -0.0500674 -0.0372843 0.0490022 0.18 0 pose: 0.32518862 3.15831 0.0061593 0 0.00185533 0.00225967 0.0166645 0.999857 uwb: 0.0 839.111 716.213 +imu_odom_: 1691062789.605903677 0.454898 0.0143652 9.93354 -0.0585895 0.00319579 0.0639159 0.18 0 pose: 0.34358292 3.16384 0.0107518 0 0.00196239 0.00380475 0.0167886 0.99985 uwb: 0.50054840 839.166 715.154 +imu_odom_: 1691062789.631752235 -0.141258 -0.289698 9.90002 -0.0479369 0.0415453 0.0287621 0.18 0 pose: 0.7032823 3.166 0.0125509 0 0.00254358 0.00345069 0.0168772 0.999848 uwb: 0.0 839.166 715.154 +imu_odom_: 1691062789.655746780 -0.0981623 -0.107739 9.69652 -0.0681769 -0.00319579 0.0692422 0.17 -0.02 pose: 0.41902668 3.1724 0.00486256 0 0.00315494 0.00569453 0.01693 0.999835 uwb: 0.50043757 838.43 714.434 +imu_odom_: 1691062789.680888380 0.675165 -0.148441 9.91918 -0.0639159 0.0330232 0.0223706 0.17 -0.02 pose: 0.0 3.1724 0.00486256 0 0.00315494 0.00569453 0.01693 0.999835 uwb: 0.0 838.43 714.434 +imu_odom_: 1691062789.703908526 0.837971 -0.28491 9.94312 -0.0905475 -0.0191748 0.0585895 0.18 0 pose: 0.49136145 3.18009 0.0112596 0 0.00315989 0.00604292 0.0170751 0.999831 uwb: 0.50066797 839.184 712.847 +imu_odom_: 1691062789.726754266 0.782904 -0.354342 9.6606 -0.0585895 0.00745685 0.0340885 0.18 0 pose: 0.0 3.18009 0.0112596 0 0.00315989 0.00604292 0.0170751 0.999831 uwb: 0.0 839.184 712.847 +imu_odom_: 1691062789.744792172 0.237026 -0.402226 9.78031 -0.0735032 0.02024 0.0500674 0.2 0 pose: 0.30909251 3.19417 0.00997331 0 0.00195236 0.00292532 0.0172792 0.999845 uwb: 0.0 839.184 712.847 +imu_odom_: 1691062789.768883545 0.581791 -0.158017 9.99819 -0.0575243 -0.0127832 0.0234358 0.2 0 pose: 0.0 3.19417 0.00997331 0 0.00195236 0.00292532 0.0172792 0.999845 uwb: 0.49995636 840.029 711.406 +imu_odom_: 1691062789.794885510 0.56982 -0.392649 10.0652 -0.0830906 -0.0276969 0.0415453 0.18 -0.02 pose: 0.41111716 3.19417 0.00997331 0 -0.0001134910.00195631 0.0172658 0.999849 uwb: 0.0 840.029 711.406 +imu_odom_: 1691062789.818838058 0.366313 -0.244209 10.0604 -0.0276969 0.0383495 0.0298274 0.2 0 pose: 0.41976163 3.2043 0.00905052 0 -0.00190925 -0.00177465 0.0171631 0.999849 uwb: 0.49964720 840.354 710.204 +imu_odom_: 1691062789.835754573 0.0766145 -0.280122 10.1562 -0.0447411 0.072438 0.0447411 0.2 0 pose: 0.0 3.2043 0.00905052 0 -0.00190925 -0.00177465 0.0171631 0.999849 uwb: 0.0 840.354 710.204 +imu_odom_: 1691062789.851819183 0.275333 -0.356736 9.50019 -0.0490022 -0.0287621 0.0351537 0.2 0 pose: 0.0 3.2043 0.00905052 0 -0.00190925 -0.00177465 0.0171631 0.999849 uwb: 0.49734609 841.04 709.049 +imu_odom_: 1691062789.868811527 0.746991 -0.023942 10.24 -0.0447411 -0.0671117 0.0383495 0.18 -0.02 pose: 0.7018241 3.20825 0.00868927 0 -0.00173911 -0.0009246560.01713 0.999851 uwb: 0.0 841.04 709.049 +imu_odom_: 1691062789.884778434 0.584185 -0.42138 9.44752 -0.0703074 0.0223706 0.056459 0.18 -0.02 pose: 0.0 3.20825 0.00868927 0 -0.00173911 -0.0009246560.01713 0.999851 uwb: 0.0 841.04 709.049 +imu_odom_: 1691062789.910890643 0.100556 -0.272939 9.56723 -0.0330232 0.0106526 0.015979 0.24 0 pose: 0.57857325 3.21594 0.0150868 0 -0.00240981 0.00306867 0.0170507 0.999847 uwb: 0.50236538 842.34 707.192 +imu_odom_: 1691062789.935746135 0.440533 -0.40462 9.70849 -0.0809601 -0.0149137 0.0490022 0.2 -0.02 pose: 0.0 3.21594 0.0150868 0 -0.00240981 0.00306867 0.0170507 0.999847 uwb: 0.0 842.34 707.192 +imu_odom_: 1691062789.959738056 0.316035 -0.301669 9.14824 -0.0585895 -0.0532632 0.0372843 0.19 0.02 pose: 0.75985059 3.23002 0.0137969 0 -0.00498891 0.0020367 0.0169813 0.999841 uwb: 0.49753566 842.685 705.991 +imu_odom_: 1691062789.983907590 0.383072 -0.356736 9.65103 -0.0820254 -0.0245011 0.0458064 0.19 0.02 pose: 0.0 3.23002 0.0137969 0 -0.00498891 0.0020367 0.0169813 0.999841 uwb: 0.0 842.685 705.991 +imu_odom_: 1691062790.7872679 0.603339 -0.366313 10.0844 -0.0468716 0.00852212 0.0287621 0.2 -0.02 pose: 0.31160653 3.23642 0.00610929 0 -0.00550169 0.00323208 0.0169873 0.999835 uwb: 0.50008759 843.161 704.404 +imu_odom_: 1691062790.32743047 0.270545 -0.19393 10.228 -0.0394148 -0.00639159 0.0479369 0.23 0 pose: 0.40965891 3.2441 0.012505 0 -0.00685908 -0.0004692440.0168838 0.999834 uwb: 0.0 843.161 704.404 +imu_odom_: 1691062790.57802111 0.579397 -0.225055 10.5129 -0.0553937 -0.00852212 0.0511327 0.23 0 pose: 0.7937811 3.2441 0.012505 0 -0.00620721 5.68009e-05 0.0169205 0.999838 uwb: 0.0 843.161 704.404 +imu_odom_: 1691062790.81845946 0.253785 -0.272939 10.3286 -0.0287621 -0.00106526 0.0287621 0.18 0 pose: 0.41991621 3.25425 0.0115739 0 -0.00376551 -0.0011509 0.0171341 0.999845 uwb: 0.0 843.161 704.404 +imu_odom_: 1691062790.97921055 0.744597 0.0407014 10.2951 -0.036219 -0.036219 0.0468716 0.18 0 pose: 0.0 3.25425 0.0115739 0 -0.00376551 -0.0011509 0.0171341 0.999845 uwb: 0.100273007 844.544 702.637 +imu_odom_: 1691062790.122872210 0.59855 -0.174777 9.65103 -0.0532632 -0.0330232 0.0479369 0.2 0.02 pose: 0.40118944 3.25819 0.0112139 0 -0.00198906 -0.0001595660.0170699 0.999852 uwb: 0.0 844.544 702.637 +imu_odom_: 1691062790.148803596 0.361524 -0.244209 9.36372 -0.0756338 0.0170442 0.0585895 0.2 0.02 pose: 0.0 3.25819 0.0112139 0 -0.00198906 -0.0001595660.0170699 0.999852 uwb: 0.49825605 845.181 701.324 +imu_odom_: 1691062790.163751191 0.584185 -0.265756 10.0078 -0.0798948 -0.00745685 0.0500674 0.19 0 pose: 0.50882541 3.27227 0.00992604 0 -0.0015858 2.51722e-05 0.017419 0.999847 uwb: 0.0 845.181 701.324 +imu_odom_: 1691062790.189787863 0.471658 -0.0071826110.4052 -0.0617853 -0.0415453 0.0511327 0.19 0 pose: 0.0 3.27227 0.00992604 0 -0.0015858 2.51722e-05 0.017419 0.999847 uwb: 0.0 845.181 701.324 +imu_odom_: 1691062790.205717147 0.816423 -0.172383 9.87848 -0.0830906 -0.0127832 0.0532632 0.2 0 pose: 0.0 3.27227 0.00992604 0 -0.0015858 2.51722e-05 0.017419 0.999847 uwb: 0.50058633 846.275 699.595 +imu_odom_: 1691062790.230892872 0.201113 -0.0837971 9.51695 -0.0585895 0.00852212 0.0415453 0.2 0 pose: 0.40984267 3.27779 0.014528 0 0.000600267 -0.00233447 0.0176417 0.999841 uwb: 0.0 846.275 699.595 +imu_odom_: 1691062790.253779151 0.306458 -0.122104 9.69412 -0.0958738 -0.0181095 0.0511327 0.18 0 pose: 0.41105009 3.2845 0.0108842 0 0.00147382 -0.00150751 0.0177702 0.99984 uwb: 0.50084298 845.09 699.224 +imu_odom_: 1691062790.278788052 0.131681 -0.0454898 10.1347 -0.0660464 0.0223706 0.0340885 0.18 0 pose: 0.0 3.2845 0.0108842 0 0.00147382 -0.00150751 0.0177702 0.99984 uwb: 0.0 845.09 699.224 +imu_odom_: 1691062790.302765099 0.162806 -0.179565 9.87608 -0.0479369 -0.00639159 0.0490022 0.23 0.02 pose: 0.47895180 3.29404 0.0150607 0 0.00293862 0.00298502 0.0178246 0.999832 uwb: 0.49840771 844.154 698.7 +imu_odom_: 1691062790.318876665 0.481235 -0.342371 9.97424 -0.0436758 -0.0436758 0.0426106 0.23 0.02 pose: 0.0 3.29404 0.0150607 0 0.00293862 0.00298502 0.0178246 0.999832 uwb: 0.0 844.154 698.7 +imu_odom_: 1691062790.334714080 0.833182 -0.373495 9.99579 -0.0639159 -0.036219 0.0436758 0.18 0.02 pose: 0.0 3.29404 0.0150607 0 0.00293862 0.00298502 0.0178246 0.999832 uwb: 0.0 844.154 698.7 +imu_odom_: 1691062790.361873017 -0.88346 -0.167594 7.40527 -0.0351537 0.136354 0.0447411 0.18 0.02 pose: 0.40088613 3.30453 0.010797 0 0.00166344 0.00385952 0.0179493 0.99983 uwb: 0.50001470 845.02 697.143 +imu_odom_: 1691062790.386749510 -1.29766 -0.155623 11.9519 -0.0511327 0.137419 0.0596548 0.19 0 pose: 0.42996352 3.30812 0.0137951 0 0.00132032 0.00674549 0.0180504 0.999813 uwb: 0.0 845.02 697.143 +imu_odom_: 1691062790.403784727 -0.253785 -0.246603 9.52413 -0.0490022 0.0394148 0.0436758 0.19 0 pose: 0.0 3.30812 0.0137951 0 0.00132032 0.00674549 0.0180504 0.999813 uwb: 0.49997387 845.154 696.096 +imu_odom_: 1691062790.419879377 0.641646 -0.272939 10.6111 -0.0585895 -0.104396 0.0575243 0.18 0 pose: 0.0 3.30812 0.0137951 0 0.00132032 0.00674549 0.0180504 0.999813 uwb: 0.0 845.154 696.096 +imu_odom_: 1691062790.445715394 0.232238 -0.181959 10.1993 -0.0415453 0.0170442 0.0553937 0.18 0 pose: 0.49886269 3.32221 0.0125369 0 0.00100308 0.0118658 0.0183983 0.99976 uwb: 0.0 845.154 696.096 +imu_odom_: 1691062790.468772580 -0.0837971 -0.31364 9.75158 -0.0607201 0.00426106 0.036219 0.18 0 pose: 0.33956108 3.32772 0.017153 0 0.00173091 0.00843831 0.0186827 0.999788 uwb: 0.49925933 845.749 694.633 +imu_odom_: 1691062790.486739325 0.833182 -0.0095768110.5034 -0.0436758 0.0223706 0.0106526 0.18 0 pose: 0.7009784 3.32987 0.018956 0 0.00142957 0.00911021 0.0186676 0.999783 uwb: 0.0 845.749 694.633 +imu_odom_: 1691062790.502713815 0.672771 -0.217872 9.83777 -0.0575243 0.00958738 0.036219 0.18 0 pose: 0.0 3.32987 0.018956 0 0.00142957 0.00911021 0.0186676 0.999783 uwb: 0.50073215 845.465 693.405 +imu_odom_: 1691062790.526743942 0.373495 -0.215478 9.59596 -0.0745685 -0.0426106 0.036219 0.19 0 pose: 0.41044346 3.3363 0.0112907 0 0.00131549 0.00851564 0.0183683 0.999794 uwb: 0.0 845.465 693.405 +imu_odom_: 1691062790.551819631 0.457293 -0.277727 9.92157 -0.0585895 -0.0703074 0.0511327 0.18 0 pose: 0.0 3.3363 0.0112907 0 0.00131549 0.00851564 0.0183683 0.999794 uwb: 0.50000595 844.343 693.181 +imu_odom_: 1691062790.576718580 0.31364 -0.143652 10.003 -0.0415453 0.0191748 0.0308927 0.18 0 pose: 0.40038157 3.34397 0.0177078 0 0.000209823 0.0039993 0.018354 0.999824 uwb: 0.0 844.343 693.181 +imu_odom_: 1691062790.601766854 0.1652 -0.186748 10.0341 -0.0532632 0.02024 0.0458064 0.25 0.02 pose: 0.42910899 3.35568 0.0144667 0 0.00163034 0.00348282 0.0183508 0.999824 uwb: 0.49906392 845.767 691.331 +imu_odom_: 1691062790.617818923 0.361524 -0.378284 9.56005 -0.0415453 0.0276969 0.0340885 0.25 0.02 pose: 0.7998474 3.35805 0.0164553 0 0.00159528 0.00438091 0.0183743 0.99982 uwb: 0.0 845.767 691.331 +imu_odom_: 1691062790.642753745 0.0909797 -0.102951 9.95748 -0.0426106 0.00106526 0.056459 0.18 -0.02 pose: 0.0 3.35805 0.0164553 0 0.00159528 0.00438091 0.0183743 0.99982 uwb: 0.0 845.767 691.331 +imu_odom_: 1691062790.667700233 0.354342 -0.0047884 10.4172 -0.0543285 0.00745685 0.036219 0.18 -0.02 pose: 0.41100926 3.35805 0.0164553 0 0.000564439 0.0066684 0.0184409 0.999808 uwb: 0.50216415 845.521 690.164 +imu_odom_: 1691062790.682737947 0.502782 -0.0742203 9.85453 -0.0585895 -0.02024 0.0628506 0.18 0 pose: 0.0 3.35805 0.0164553 0 0.000564439 0.0066684 0.0184409 0.999808 uwb: 0.0 845.521 690.164 +imu_odom_: 1691062790.707759389 0.435745 -0.378284 9.80665 -0.0596548 0.0287621 0.0351537 0.18 0 pose: 0.48938409 3.37214 0.0152065 0 0.0037589 0.00627119 0.0186507 0.999799 uwb: 0.49977263 846.166 688.74 +imu_odom_: 1691062790.732697128 -0.110133 -0.181959 9.91439 -0.0713727 0.0436758 0.0617853 0.18 0.02 pose: 0.33003000 3.37736 0.0195813 0 0.00176374 0.00458746 0.0186879 0.999813 uwb: 0.0 846.166 688.74 +imu_odom_: 1691062790.749689473 -0.0383072 -0.430956 9.9096 -0.0596548 -0.00745685 0.0436758 0.18 0.02 pose: 0.7951810 3.3798 0.0216285 0 0.00167541 0.00557216 0.0187753 0.999807 uwb: 0.49938182 846.367 687.775 +imu_odom_: 1691062790.774742705 0.21069 -0.0957681 10.2328 -0.056459 -0.0213053 0.04048 0.18 0 pose: 0.0 3.3798 0.0216285 0 0.00167541 0.00557216 0.0187753 0.999807 uwb: 0.0 846.367 687.775 +imu_odom_: 1691062790.799699400 0.229843 -0.318429 9.88566 -0.0639159 -0.0234358 0.0468716 0.18 0 pose: 0.33978274 3.38623 0.0139644 0 0.000325193 0.00892032 0.018986 0.99978 uwb: 0.50062716 846.436 686.535 +imu_odom_: 1691062790.815757302 0.663194 0.0143652 10.0748 -0.0628506 -0.0170442 0.0490022 0.19 -0.02 pose: 0.0 3.38623 0.0139644 0 0.000325193 0.00892032 0.018986 0.99978 uwb: 0.0 846.436 686.535 +imu_odom_: 1691062790.841721062 0.023942 -0.0526724 10.0533 -0.0713727 -0.0234358 0.0351537 0.19 -0.02 pose: 0.57037502 3.39389 0.0203915 0 0.000510013 0.00804454 0.0191247 0.999785 uwb: 0.0 846.436 686.535 +imu_odom_: 1691062790.857755632 -0.0766145 -0.328006 10.2089 -0.0511327 0.00958738 0.0383495 0.19 0.02 pose: 0.0 3.39389 0.0203915 0 0.000510013 0.00804454 0.0191247 0.999785 uwb: 0.49740444 848.036 684.946 +imu_odom_: 1691062790.883844801 0.263362 -0.150835 9.76355 -0.0596548 -0.0511327 0.0383495 0.19 0.02 pose: 0.42063367 3.40798 0.0191608 0 0.00165926 0.00986147 0.0191133 0.999767 uwb: 0.0 848.036 684.946 +imu_odom_: 1691062790.900848520 0.586579 -0.23942 9.5816 -0.0266316 0.0458064 0.0266316 0.19 0.02 pose: 0.35054459 3.40798 0.0191608 0 0.00248049 0.00782516 0.0191027 0.999784 uwb: 0.0 848.036 684.946 +imu_odom_: 1691062790.924837817 -0.0957681 -0.383072 9.58638 -0.0607201 0.015979 0.0383495 0.19 0.02 pose: 0.8015973 3.40798 0.0191608 0 0.00242986 0.00724197 0.0190512 0.999789 uwb: 0.0 848.036 684.946 +imu_odom_: 1691062790.949832719 -0.00957681-0.035913 9.42837 -0.0500674 -0.00426106 0.0490022 0.19 0 pose: 0.32977043 3.41973 0.0159691 0 0.00106729 0.00888753 0.0189664 0.99978 uwb: 0.100046395 848.886 683.181 +imu_odom_: 1691062790.974734876 -0.201113 -0.318429 9.63187 -0.0543285 0.0543285 0.0266316 0.19 0 pose: 0.0 3.41973 0.0159691 0 0.00106729 0.00888753 0.0189664 0.99978 uwb: 0.0 848.886 683.181 +imu_odom_: 1691062791.684928 -0.380678 -0.263362 9.82102 -0.0660464 0.0213053 0.0415453 0.25 -0.02 pose: 0.49897059 3.42727 0.022294 0 0.00147275 0.0140635 0.0189161 0.999721 uwb: 0.50009053 849.137 682.279 +imu_odom_: 1691062791.14802198 0.426168 -0.531513 10.2352 -0.0777643 -0.00426106 0.0330232 0.25 -0.02 pose: 0.0 3.42727 0.022294 0 0.00147275 0.0140635 0.0189161 0.999721 uwb: 0.0 849.137 682.279 +imu_odom_: 1691062791.31681384 0.402226 -0.306458 9.8282 0.0138484 -0.056459 -0.0820254 0.18 -0.05 pose: 0.0 3.42727 0.022294 0 0.00147275 0.0140635 0.0189161 0.999721 uwb: 0.0 849.137 682.279 +imu_odom_: 1691062791.46798135 -0.0742203 -0.222661 9.086 0.0223706 -0.0468716 -0.15979 0.18 -0.05 pose: 0.40067322 3.43615 0.0166928 0 -0.0002349950.0158924 0.0188746 0.999696 uwb: 0.0 849.137 682.279 +imu_odom_: 1691062791.62797125 -0.0167594 0.543484 10.477 -0.0575243 -0.135289 -0.127832 0.18 -0.05 pose: 0.0 3.43615 0.0166928 0 -0.0002349950.0158924 0.0188746 0.999696 uwb: 0.49983097 847.405 682.22 +imu_odom_: 1691062791.77733053 -0.143652 0.100556 9.66539 -0.208792 -0.136354 -0.076699 0.19 -0.23 pose: 0.47994927 3.44742 0.0187828 0 0.00192031 0.0142411 0.0150006 0.999784 uwb: 0.0 847.405 682.22 +imu_odom_: 1691062791.94697984 0.0263362 -0.325611 9.34936 -0.176834 -0.0500674 -0.133158 0.19 -0.23 pose: 0.0 3.44742 0.0187828 0 0.00192031 0.0142411 0.0150006 0.999784 uwb: 0.0 847.405 682.22 +imu_odom_: 1691062791.119824129 1.10373 -0.653617 10.489 -0.0585895 -0.0447411 -0.253533 0.19 -0.35 pose: 0.31900859 3.45018 0.0154294 0 -0.0005940020.0149197 0.0126869 0.999808 uwb: 0.50020720 847.181 681.753 +imu_odom_: 1691062791.136812391 0.754174 -0.196325 9.89524 -0.0490022 0.0117179 -0.280165 0.22 -0.44 pose: 0.0 3.45018 0.0154294 0 -0.0005940020.0149197 0.0126869 0.999808 uwb: 0.0 847.181 681.753 +imu_odom_: 1691062791.152872044 1.38145 -0.220267 10.161 -0.0319579 0.00958738 -0.351537 0.19 -0.41 pose: 0.0 3.45018 0.0154294 0 -0.0005940020.0149197 0.0126869 0.999808 uwb: 0.49945767 847.797 680.18 +imu_odom_: 1691062791.170873787 0.112527 0.280122 8.72208 -0.0340885 0.00958738 -0.425041 0.19 -0.41 pose: 0.50204167 3.45786 0.0219076 0 -0.00136641 0.00976895 0.00468921 0.99994 uwb: 0.0 847.797 680.18 +imu_odom_: 1691062791.187745681 0.3304 0.023942 10.0245 -0.0681769 -0.00745685 -0.411192 0.19 -0.47 pose: 0.0 3.45786 0.0219076 0 -0.00136641 0.00976895 0.00468921 0.99994 uwb: 0.0 847.797 680.18 +imu_odom_: 1691062791.202810227 0.227449 -0.167594 9.64384 -0.0830906 -0.0553937 -0.429302 0.19 -0.47 pose: 0.0 3.45786 0.0219076 0 -0.00136641 0.00976895 0.00468921 0.99994 uwb: 0.50192501 848.523 678.82 +imu_odom_: 1691062791.219868486 0.213084 -0.270545 9.83777 -0.0585895 -0.056459 -0.491087 0.19 -0.47 pose: 0.33981192 3.47198 0.0208131 0 0.00126548 0.00922398 -0.00283631 0.999953 uwb: 0.0 848.523 678.82 +imu_odom_: 1691062791.234811997 0.289698 -0.225055 8.88488 -0.0585895 0.0106526 -0.527306 0.19 -0.55 pose: 0.40985143 3.47193 0.0208043 0 0.00116173 0.00903886 -0.0128899 0.999875 uwb: 0.0 848.523 678.82 +imu_odom_: 1691062791.251692350 0.0957681 -0.114922 10.0126 -0.0745685 0.0436758 -0.551807 0.19 -0.55 pose: 0.6904206 3.47198 0.0208134 0 0.000756461 0.00851448 -0.0148492 0.999853 uwb: 0.49623495 848.101 677.926 +imu_odom_: 1691062791.267797499 0.608127 -0.337582 10.2903 -0.0798948 0.00319579 -0.58483 0.19 -0.55 pose: 0.0 3.47198 0.0208134 0 0.000756461 0.00851448 -0.0148492 0.999853 uwb: 0.0 848.101 677.926 +imu_odom_: 1691062791.284863924 0.430956 -0.0311246 9.42118 -0.0330232 -0.0351537 -0.615723 0.25 -0.82 pose: 0.41024807 3.48608 0.0197525 0 0.0002214 0.00827791 -0.0271408 0.999597 uwb: 0.0 848.101 677.926 +imu_odom_: 1691062791.302684553 0.691924 -0.112527 9.24401 -0.1012 -0.0681769 -0.581634 0.18 -0.61 pose: 0.0 3.48608 0.0197525 0 0.0002214 0.00827791 -0.0271408 0.999597 uwb: 0.50168586 849.021 676.221 +imu_odom_: 1691062791.317681144 0.174777 0.00957681 9.89284 -0.112918 -0.0181095 -0.5827 0.18 -0.61 pose: 0.0 3.48608 0.0197525 0 0.0002214 0.00827791 -0.0271408 0.999597 uwb: 0.0 849.021 676.221 +imu_odom_: 1691062791.334729195 0.584185 -0.1652 9.93115 -0.0671117 -0.0479369 -0.619984 0.18 -0.61 pose: 0.26086253 3.48608 0.0197533 0 0.00144245 0.0056057 -0.0355187 0.999352 uwb: 0.0 849.021 676.221 +imu_odom_: 1691062791.350791180 0.227449 -0.167594 9.7851 -0.0553937 -0.0213053 -0.661529 0.18 -0.64 pose: 0.0 3.48608 0.0197533 0 0.00144245 0.0056057 -0.0355187 0.999352 uwb: 0.50002346 849.188 675.105 +imu_odom_: 1691062791.367666867 0.433351 0.220267 10.2855 -0.0394148 -0.0351537 -0.670051 0.18 -0.64 pose: 0.30829633 3.50018 0.0186734 0 0.00209315 0.00434189 -0.0452184 0.998965 uwb: 0.0 849.188 675.105 +imu_odom_: 1691062791.384952320 0.88346 -0.122104 9.65582 -0.0788296 -0.0223706 -0.680704 0.18 -0.7 pose: 0.42953482 3.50013 0.018664 0 0.00388733 0.00374014 -0.0601116 0.998177 uwb: 0.0 849.188 675.105 +imu_odom_: 1691062791.401942915 0.861913 0.0502782 9.63906 -0.0575243 -0.0479369 -0.689226 0.18 -0.7 pose: 0.0 3.50013 0.018664 0 0.00388733 0.00374014 -0.0601116 0.998177 uwb: 0.50123672 849 674.699 +imu_odom_: 1691062791.417865784 0.90022 0.138864 10.003 -0.0798948 -0.0458064 -0.657268 0.18 -0.7 pose: 0.0 3.50013 0.018664 0 0.00388733 0.00374014 -0.0601116 0.998177 uwb: 0.0 849 674.699 +imu_odom_: 1691062791.434661559 1.36709 -0.134075 10.0173 -0.0660464 0.00745685 -0.585895 0.21 -0.85 pose: 0.8296539 3.50018 0.0186731 0 0.00375857 0.0028517 -0.0630908 0.997997 uwb: 0.0 849 674.699 +imu_odom_: 1691062791.450659090 1.4054 -0.708684 9.8258 -0.0596548 0.0223706 -0.568851 0.14 -0.58 pose: 0.0 3.50018 0.0186731 0 0.00375857 0.0028517 -0.0630908 0.997997 uwb: 0.50099466 847.78 674.307 +imu_odom_: 1691062791.467777136 0.620098 -0.47884 8.96868 -0.0436758 0.04048 -0.546481 0.14 -0.58 pose: 0.66836326 3.51428 0.0175198 0 0.00381872 -0.00390315 -0.0857049 0.996306 uwb: 0.0 847.78 674.307 +imu_odom_: 1691062791.483793041 0.842759 -0.227449 10.8553 -0.056459 0 -0.4815 0.12 -0.47 pose: 0.0 3.51428 0.0175198 0 0.00381872 -0.00390315 -0.0857049 0.996306 uwb: 0.0 847.78 674.307 +imu_odom_: 1691062791.500645104 1.04866 -0.107739 10.4244 -0.0820254 -0.0436758 -0.412257 0.12 -0.47 pose: 0.0 3.51428 0.0175198 0 0.00381872 -0.00390315 -0.0857049 0.996306 uwb: 0.49799067 846.902 673.913 +imu_odom_: 1691062791.516672675 1.16837 -0.184354 9.73004 -0.0543285 0.00319579 -0.379234 0.12 -0.47 pose: 0.32986669 3.52079 0.00992708 0 0.00167527 -0.00532646 -0.0951415 0.995448 uwb: 0.0 846.902 673.913 +imu_odom_: 1691062791.532786865 0.976834 -0.395043 9.52413 -0.0756338 0.015979 -0.343015 0.14 -0.5 pose: 0.40886274 3.52832 0.0164316 0 0.00113115 -0.00959441 -0.104335 0.994495 uwb: 0.0 846.902 673.913 +imu_odom_: 1691062791.549636011 0.679953 -0.454898 10.0604 -0.0575243 0.0213053 -0.340885 0.14 -0.5 pose: 0.7103403 3.52837 0.0164407 0 0.000671911 -0.0100953 -0.105682 0.994349 uwb: 0.49987764 846.427 673.642 +imu_odom_: 1691062791.565636750 0.718261 -0.316035 9.87848 -0.0575243 0 -0.320645 0.14 -0.5 pose: 0.0 3.52837 0.0164407 0 0.000671911 -0.0100953 -0.105682 0.994349 uwb: 0.0 846.427 673.642 +imu_odom_: 1691062791.591648925 0.797269 -0.138864 10.2017 -0.0468716 -0.0287621 -0.272708 0.09 -0.32 pose: 0.41860672 3.52832 0.0164315 0 -0.00273107 -0.0117606 -0.113409 0.993475 uwb: 0.0 846.427 673.642 +imu_odom_: 1691062791.607791405 0.799663 -0.280122 9.94073 -0.0479369 -0.0223706 -0.251402 0.09 -0.32 pose: 0.0 3.52832 0.0164315 0 -0.00273107 -0.0117606 -0.113409 0.993475 uwb: 0.50082841 846.658 672.65 +imu_odom_: 1691062791.623741689 0.636858 -0.385466 9.73004 -0.0490022 0.0170442 -0.26099 0.09 -0.32 pose: 0.33024292 3.53488 0.00884599 0 -0.0018089 -0.0150156 -0.118463 0.992843 uwb: 0.0 846.658 672.65 +imu_odom_: 1691062791.640819488 -0.88346 -0.100556 9.38288 -0.0458064 0.12144 -0.140615 0.11 -0.05 pose: 0.0 3.53488 0.00884599 0 -0.0018089 -0.0150156 -0.118463 0.992843 uwb: 0.0 846.658 672.65 +imu_odom_: 1691062791.658781275 -1.1971 -0.873884 10.3525 -0.0617853 -0.00532632 0.0969391 0.11 -0.05 pose: 0.0 3.53488 0.00884599 0 -0.0018089 -0.0150156 -0.118463 0.992843 uwb: 0.50032386 845.5 672.414 +imu_odom_: 1691062791.673698247 -0.490811 -0.878672 9.83059 -0.0436758 -0.126766 0.150202 0.11 -0.05 pose: 0.33128701 3.53488 0.00884599 0 -0.00331666 -0.0135455 -0.122851 0.992327 uwb: 0.0 845.5 672.414 +imu_odom_: 1691062791.690718882 0.620098 -0.325611 9.87608 -0.0245011 -0.0980043 0.197074 0.11 0.11 pose: 0.41908504 3.53885 0.0122197 0 -0.00402979 -0.0098843 -0.122311 0.992434 uwb: 0.0 845.5 672.414 +imu_odom_: 1691062791.706659542 0.687136 -0.186748 9.42118 -0.0426106 -0.0181095 0.270577 0.11 0.11 pose: 0.7138692 3.54252 0.0153012 0 -0.00467278 -0.0103346 -0.121744 0.992497 uwb: 0.49764361 844.31 672.118 +imu_odom_: 1691062791.723770005 0.416591 -0.191536 10.1394 -0.04048 0.00106526 0.313188 0.11 0.11 pose: 0.0 3.54252 0.0153012 0 -0.00467278 -0.0103346 -0.121744 0.992497 uwb: 0.0 844.31 672.118 +imu_odom_: 1691062791.741830953 0.277727 -0.739808 10.0413 -0.0490022 0.0106526 0.319579 0.13 0.29 pose: 0.42933066 3.54887 0.00761795 0 -0.00343896 -0.0105089 -0.116826 0.993091 uwb: 0.0 844.31 672.118 +imu_odom_: 1691062791.756771840 -0.0407014 -0.244209 9.79707 -0.0468716 0.0245011 0.34408 0.13 0.29 pose: 0.0 3.54887 0.00761795 0 -0.00343896 -0.0105089 -0.116826 0.993091 uwb: 0.50055426 844.334 671.43 +imu_odom_: 1691062791.772823618 0.136469 -0.452504 9.97424 -0.0511327 0.00213053 0.393083 0.13 0.29 pose: 0.0 3.54887 0.00761795 0 -0.00343896 -0.0105089 -0.116826 0.993091 uwb: 0.0 844.334 671.43 +imu_odom_: 1691062791.787830417 0.287304 -0.574608 9.67976 -0.0458064 -0.0117179 0.42291 0.13 0.29 pose: 0.24900992 3.54893 0.00762669 0 -0.0045841 -0.00839133 -0.113262 0.993519 uwb: 0.0 844.334 671.43 +imu_odom_: 1691062791.804791265 0.351948 -0.248997 10.3908 -0.0340885 -0.0138484 0.437824 0.14 0.35 pose: 0.0 3.54893 0.00762669 0 -0.0045841 -0.00839133 -0.113262 0.993519 uwb: 0.50121048 842.924 671.423 +imu_odom_: 1691062791.821695241 -0.071826 0.0287304 9.52653 -0.0553937 -0.0276969 0.494283 0.14 0.35 pose: 0.0 3.54893 0.00762669 0 -0.0045841 -0.00839133 -0.113262 0.993519 uwb: 0.0 842.924 671.423 +imu_odom_: 1691062791.838821745 0.469264 -0.54109 9.87608 -0.0607201 -0.0841559 0.531567 0.2 0.61 pose: 0.73024244 3.56297 0.00646629 0 -0.00380116 -0.00226348 -0.0991448 0.995063 uwb: 0.0 842.924 671.423 +imu_odom_: 1691062791.854841441 0.663194 -0.428562 9.80665 -0.0511327 -0.0138484 0.508131 0.2 0.61 pose: 0.0 3.56297 0.00646629 0 -0.00380116 -0.00226348 -0.0991448 0.995063 uwb: 0.49993888 841.788 671.263 +imu_odom_: 1691062791.871954530 0.3304 -0.272939 10.0126 -0.0308927 -0.0649811 0.520914 0.2 0.61 pose: 0.0 3.56297 0.00646629 0 -0.00380116 -0.00226348 -0.0991448 0.995063 uwb: 0.0 841.788 671.263 +imu_odom_: 1691062791.887777655 1.06303 -0.471658 10.0796 -0.0458064 -0.0383495 0.506001 0.14 0.41 pose: 0.7080071 3.56302 0.00647467 0 -0.00455946 -0.00250691 -0.0974087 0.995231 uwb: 0.0 841.788 671.263 +imu_odom_: 1691062791.903629070 1.10133 -0.155623 9.64384 -0.0255663 0.0351537 0.485761 0.17 0.5 pose: 0.0 3.56302 0.00647467 0 -0.00455946 -0.00250691 -0.0974087 0.995231 uwb: 0.50016929 838.932 671.945 +imu_odom_: 1691062791.920642414 1.35751 -0.454898 10.2185 -0.0511327 -0.0500674 0.462325 0.17 0.5 pose: 0.65955547 3.56947 -0.00116899 0 -0.00589554 -0.00548411 -0.0818855 0.996609 uwb: 0.0 838.932 671.945 +imu_odom_: 1691062791.937627177 1.64482 0.00718261 9.5385 -0.0372843 -0.0234358 0.330232 0.14 0.35 pose: 0.0 3.56947 -0.00116899 0 -0.00589554 -0.00548411 -0.0818855 0.996609 uwb: 0.0 838.932 671.945 +imu_odom_: 1691062791.953622083 1.3623 0.189142 9.92397 -0.0394148 0.0575243 0.278034 0.14 0.35 pose: 0.0 3.56947 -0.00116899 0 -0.00589554 -0.00548411 -0.0818855 0.996609 uwb: 0.50049594 838.835 671.023 +imu_odom_: 1691062791.970625803 0.835576 -0.0407014 10.1203 -0.0671117 0.036219 0.268447 0.14 0.35 pose: 0.33026624 3.57714 0.00524365 0 -0.00581875 -0.00896671 -0.0753046 0.997103 uwb: 0.0 838.835 671.023 +imu_odom_: 1691062791.986766825 0.553061 -0.509965 9.90721 -0.0671117 0.0287621 0.2024 0.08 0.17 pose: 0.42868320 3.57709 0.00523506 0 -0.00348126 -0.0117481 -0.0700746 0.997466 uwb: 0.0 838.835 671.023 +imu_odom_: 1691062792.3771712 0.837971 -0.335188 9.77553 -0.0468716 -0.036219 0.148072 0.08 0.17 pose: 0.8155090 3.57714 0.00524392 0 -0.00427739 -0.0112878 -0.0694035 0.997516 uwb: 0.49740445 837.109 671.139 +imu_odom_: 1691062792.21942612 0.821211 -0.0957681 9.63666 -0.0671117 -0.00319579 0.153398 0.08 0.17 pose: 0.0 3.57714 0.00524392 0 -0.00427739 -0.0112878 -0.0694035 0.997516 uwb: 0.0 837.109 671.139 +imu_odom_: 1691062792.36636764 0.871489 -0.208296 10.0724 -0.056459 0.0181095 0.175769 0.07 0.17 pose: 0.34131682 3.5836 -0.00239707 0 -0.00480845 -0.0133781 -0.0673198 0.99763 uwb: 0.0 837.109 671.139 +imu_odom_: 1691062792.53760353 0.691924 -0.433351 9.87129 -0.0553937 0.00639159 0.176834 0.06 0.17 pose: 0.0 3.5836 -0.00239707 0 -0.00480845 -0.0133781 -0.0673198 0.99763 uwb: 0.50190753 837.413 670.306 +imu_odom_: 1691062792.69752926 0.507571 -0.148441 9.72046 -0.0585895 -0.0170442 0.186421 0.06 0.17 pose: 0.0 3.5836 -0.00239707 0 -0.00480845 -0.0133781 -0.0673198 0.99763 uwb: 0.0 837.413 670.306 +imu_odom_: 1691062792.86765396 0.557849 -0.320823 9.76595 -0.0596548 0.00426106 0.199204 0.06 0.17 pose: 0.30982458 3.5836 -0.00239732 0 -0.00450855 -0.0150777 -0.0653242 0.99774 uwb: 0.0 837.413 670.306 +imu_odom_: 1691062792.102752720 0.624887 -0.191536 10.0221 -0.056459 -0.00639159 0.183225 0.06 0.17 pose: 0.0 3.5836 -0.00239732 0 -0.00450855 -0.0150777 -0.0653242 0.99774 uwb: 0.49871981 837.132 669.736 +imu_odom_: 1691062792.119636281 0.73502 -0.270545 9.80665 -0.0532632 -0.0170442 0.177899 0.06 0.17 pose: 0.33875908 3.5836 -0.00239741 0 -0.00467427 -0.0129911 -0.0628289 0.997929 uwb: 0.0 837.132 669.736 +imu_odom_: 1691062792.135753389 0.648829 -0.222661 9.95509 -0.0617853 0.00958738 0.174703 0.04 0.11 pose: 0.41865340 3.59128 0.00400159 0 -0.00355054 -0.0136253 -0.0598153 0.99811 uwb: 0.0 837.132 669.736 +imu_odom_: 1691062792.152750985 0.608127 -0.351948 9.84975 -0.0607201 -0.0138484 0.183225 0.04 0.11 pose: 0.8117175 3.59128 0.00400159 0 -0.00285302 -0.013205 -0.0592775 0.99815 uwb: 0.50070594 836.027 669.679 +imu_odom_: 1691062792.168615816 0.64404 -0.294487 9.93115 -0.056459 0.00852212 0.181095 0.04 0.11 pose: 0.0 3.59128 0.00400159 0 -0.00285302 -0.013205 -0.0592775 0.99815 uwb: 0.0 836.027 669.679 +imu_odom_: 1691062792.185753987 0.584185 -0.225055 9.87848 -0.056459 -0.00639159 0.198139 0.05 0.23 pose: 0.40862360 3.59128 0.00400159 0 -0.00535379 -0.0118533 -0.0563681 0.998325 uwb: 0.0 836.027 669.679 +imu_odom_: 1691062792.202759166 0.629675 -0.275333 10.0149 -0.0553937 0 0.201335 0.03 0.17 pose: 0.0 3.59128 0.00400159 0 -0.00535379 -0.0118533 -0.0563681 0.998325 uwb: 0.49988348 835.508 669.359 +imu_odom_: 1691062792.229624997 0.596156 -0.263362 9.84256 -0.052198 0 0.190682 0.03 0.17 pose: 0.25210140 3.59128 0.00400159 0 -0.00342373 -0.0115846 -0.0543811 0.998447 uwb: 0.0 835.508 669.359 +imu_odom_: 1691062792.245740647 -0.0933739 -0.162806 9.663 -0.0596548 0.0713727 0.210922 0.04 0.2 pose: 0.0 3.59128 0.00400159 0 -0.00342373 -0.0115846 -0.0543811 0.998447 uwb: 0.0 835.508 669.359 +imu_odom_: 1691062792.262743784 -1.07739 -0.438139 9.99819 -0.0649811 0.0788296 0.305731 0.04 0.2 pose: 0.0 3.59128 0.00400159 0 -0.00342373 -0.0115846 -0.0543811 0.998447 uwb: 0.49930894 834.58 669.665 +imu_odom_: 1691062792.278802270 -1.09176 -0.682347 9.98861 -0.0607201 -0.036219 0.38456 0.04 0.2 pose: 0.15853166 3.59128 0.00400159 0 -0.00291527 -0.0115583 -0.053144 0.998516 uwb: 0.0 834.58 669.665 +imu_odom_: 1691062792.294751680 -0.351948 -0.493206 9.66539 -0.0426106 -0.0777643 0.415453 0.06 0.32 pose: 0.27965932 3.59128 0.00400159 0 -0.00287668 -0.00843018 -0.0509471 0.998662 uwb: 0.0 834.58 669.665 +imu_odom_: 1691062792.311676072 0.407014 0.023942 9.69412 -0.0351537 -0.0287621 0.448476 0.06 0.32 pose: 0.0 3.59128 0.00400159 0 -0.00287668 -0.00843018 -0.0509471 0.998662 uwb: 0.49936435 833.631 669.931 +imu_odom_: 1691062792.327743891 0.349553 -0.241814 9.73482 -0.0543285 0.00426106 0.507066 0.12 0.55 pose: 0.32996294 3.59771 -0.00365905 0 -0.00308297 -0.00426177 -0.0466289 0.998898 uwb: 0.0 833.631 669.931 +imu_odom_: 1691062792.343735006 0.28491 -0.371101 9.72525 -0.0585895 0.0213053 0.509196 0.12 0.55 pose: 0.0 3.59771 -0.00365905 0 -0.00308297 -0.00426177 -0.0466289 0.998898 uwb: 0.0 833.631 669.931 +imu_odom_: 1691062792.360655023 -0.11971 -0.416591 9.80665 -0.0511327 -0.0138484 0.540089 0.12 0.55 pose: 0.0 3.59771 -0.00365905 0 -0.00308297 -0.00426177 -0.0466289 0.998898 uwb: 0.50176171 834.7 669.183 +imu_odom_: 1691062792.378730846 0.1652 -0.335188 9.75877 -0.0649811 0.00426106 0.559264 0.11 0.5 pose: 0.47987928 3.59771 -0.00365905 0 -0.00167048 -0.00188602 -0.0371367 0.999307 uwb: 0.0 834.7 669.183 +imu_odom_: 1691062792.393720147 0.172383 -0.354342 10.2304 -0.0500674 0.00319579 0.579504 0.11 0.53 pose: 0.0 3.59771 -0.00365905 0 -0.00167048 -0.00188602 -0.0371367 0.999307 uwb: 0.0 834.7 669.183 +imu_odom_: 1691062792.410685078 0.349553 -0.323217 10.0389 -0.0553937 0.00745685 0.601874 0.11 0.53 pose: 0.67115728 3.60538 0.00275021 0 -0.00383772 0.00458324 -0.02042 0.999774 uwb: 0.49932352 833.334 669.342 +imu_odom_: 1691062792.426735690 -0.0933739 -0.366313 9.64863 -0.0394148 0.0255663 0.632767 0.12 0.55 pose: 0.0 3.60538 0.00275021 0 -0.00383772 0.00458324 -0.02042 0.999774 uwb: 0.0 833.334 669.342 +imu_odom_: 1691062792.443610793 0.203507 -0.543484 10.0796 -0.0617853 -0.00852212 0.644485 0.12 0.55 pose: 0.0 3.60538 0.00275021 0 -0.00383772 0.00458324 -0.02042 0.999774 uwb: 0.0 833.334 669.342 +imu_odom_: 1691062792.460714257 0.356736 -0.25618 9.98382 -0.0415453 0.00213053 0.64342 0.12 0.55 pose: 0.33008835 3.61181 -0.00490904 0 -0.00487689 0.00490436 -0.0111124 0.999914 uwb: 0.49925644 833.069 668.817 +imu_odom_: 1691062792.476775952 0.105345 -0.521936 9.71088 -0.0511327 -0.00426106 0.674312 0.13 0.61 pose: 0.41960418 3.61942 0.00150731 0 -0.00509338 0.00534035 0.00151837 0.999972 uwb: 0.0 833.069 668.817 +imu_odom_: 1691062792.493603808 0.445322 -0.268151 10.1323 -0.0511327 -0.0245011 0.695618 0.13 0.61 pose: 0.7021742 3.61948 0.0015157 0 -0.0055818 0.0058296 0.00374628 0.99996 uwb: 0.0 833.069 668.817 +imu_odom_: 1691062792.510615695 0.466869 -0.529119 9.91199 -0.0426106 -0.0351537 0.690291 0.13 0.61 pose: 0.0 3.61948 0.0015157 0 -0.0055818 0.0058296 0.00374628 0.99996 uwb: 0.50265707 832.653 668.711 +imu_odom_: 1691062792.527714201 0.770933 -0.311246 9.991 -0.036219 -0.0308927 0.66579 0.17 0.76 pose: 0.42879696 3.61942 0.00150713 0 -0.00669713 0.00348872 0.0176522 0.999816 uwb: 0.0 832.653 668.711 +imu_odom_: 1691062792.544836623 1.21386 -0.354342 9.53371 -0.0660464 -0.0340885 0.677508 0.11 0.44 pose: 0.0 3.61942 0.00150713 0 -0.00669713 0.00348872 0.0176522 0.999816 uwb: 0.0 832.653 668.711 +imu_odom_: 1691062792.561640564 1.47483 -0.289698 9.72046 -0.0351537 -0.052198 0.60294 0.11 0.44 pose: 0.0 3.61942 0.00150713 0 -0.00669713 0.00348872 0.0176522 0.999816 uwb: 0.49631954 831.027 669.088 +imu_odom_: 1691062792.577638971 1.70228 -0.047884 9.89763 -0.056459 0.00958738 0.497478 0.09 0.38 pose: 0.25220931 3.62592 -0.0061319 0 -0.00638461 0.000676259 0.0255804 0.999652 uwb: 0.0 831.027 669.088 +imu_odom_: 1691062792.593588963 1.22104 0.110133 9.92636 -0.0639159 0.0308927 0.413323 0.09 0.38 pose: 0.0 3.62592 -0.0061319 0 -0.00638461 0.000676259 0.0255804 0.999652 uwb: 0.0 831.027 669.088 +imu_odom_: 1691062792.610574602 0.653617 -0.011971 9.77313 -0.0532632 0.04048 0.339819 0.09 0.38 pose: 0.33751665 3.63356 0.00031911 0 -0.0059296 -0.0030906 0.0349808 0.999366 uwb: 0.50039387 829.498 669.661 +imu_odom_: 1691062792.626570675 0.629675 -0.265756 10.082 -0.0607201 -0.00106526 0.30147 0.1 0.44 pose: 0.40986311 3.63351 0.000310234 0 -0.00344056 -0.00519914 0.0423174 0.999085 uwb: 0.0 829.498 669.661 +imu_odom_: 1691062792.643583728 0.749385 -0.251391 9.93354 -0.0553937 -0.0170442 0.275903 0.1 0.44 pose: 0.6005344 3.63356 0.000319039 0 -0.00333393 -0.00577443 0.0431001 0.999049 uwb: 0.0 829.498 669.661 +imu_odom_: 1691062792.659569594 0.869095 -0.28491 9.79468 -0.0607201 -0.00532632 0.276969 0.1 0.44 pose: 0.0 3.63356 0.000319039 0 -0.00333393 -0.00577443 0.0431001 0.999049 uwb: 0.50071177 830.674 668.397 +imu_odom_: 1691062792.674639098 0.739808 -0.275333 9.94073 -0.056459 0.00106526 0.286556 0.05 0.26 pose: 0.42989648 3.63356 0.000319039 0 -0.00287343 -0.0101109 0.048292 0.998778 uwb: 0.0 830.674 668.397 +imu_odom_: 1691062792.691629986 0.694318 -0.35913 9.87129 -0.052198 0.00532632 0.270577 0.06 0.26 pose: 0.0 3.63356 0.000319039 0 -0.00287343 -0.0101109 0.048292 0.998778 uwb: 0.0 830.674 668.397 +imu_odom_: 1691062792.707557522 0.593762 -0.196325 9.91439 -0.0553937 0.00319579 0.237554 0.06 0.26 pose: 0.0 3.63356 0.000319039 0 -0.00287343 -0.0101109 0.048292 0.998778 uwb: 0.49976975 831.242 668.081 +imu_odom_: 1691062792.723560303 0.418985 -0.0933739 9.75637 -0.0553937 0.0138484 0.227967 0.06 0.32 pose: 0.22068789 3.63356 0.00031885 0 -0.00327914 -0.0120171 0.0509553 0.998623 uwb: 0.0 831.242 668.081 +imu_odom_: 1691062792.740559357 0.440533 -0.270545 9.92636 -0.0639159 -0.00319579 0.247141 0.06 0.32 pose: 0.0 3.63356 0.00031885 0 -0.00327914 -0.0120171 0.0509553 0.998623 uwb: 0.0 831.242 668.081 +imu_odom_: 1691062792.756551639 0.560243 -0.440533 9.85214 -0.0500674 -0.00106526 0.249272 0.06 0.32 pose: 0.32942922 3.63356 0.00031885 0 -0.00220467 -0.0112062 0.054331 0.998458 uwb: 0.50010514 831.018 667.64 +imu_odom_: 1691062792.772683329 0.703895 -0.325611 9.83538 -0.052198 -0.0127832 0.250337 0.04 0.23 pose: 0.41970334 3.64452 0.00279079 0 -0.00354572 -0.00868888 0.0586253 0.998236 uwb: 0.0 831.018 667.64 +imu_odom_: 1691062792.788579659 0.634463 -0.198719 9.91199 -0.0500674 -0.00213053 0.269512 0.04 0.23 pose: 0.8024723 3.64764 -0.0007844850 -0.00367753 -0.00951079 0.0594676 0.998178 uwb: 0.0 831.018 667.64 +imu_odom_: 1691062792.805588337 0.699107 -0.320823 9.94551 -0.0553937 -0.00319579 0.279099 0.04 0.23 pose: 0.0 3.64764 -0.0007844850 -0.00367753 -0.00951079 0.0594676 0.998178 uwb: 0.50052220 832.529 666.297 +imu_odom_: 1691062792.822707551 0.641646 -0.311246 9.88805 -0.0500674 0.00213053 0.26099 0.04 0.29 pose: 0.41011975 3.64758 -0.0007933630 -0.00300159 -0.01224 0.0641612 0.99786 uwb: 0.0 832.529 666.297 +imu_odom_: 1691062792.847570629 0.591368 -0.229843 9.83299 -0.052198 -0.00106526 0.267381 0.02 0.23 pose: 0.0 3.64758 -0.0007933630 -0.00300159 -0.01224 0.0641612 0.99786 uwb: 0.49960933 833.226 665.502 +imu_odom_: 1691062792.864567642 0.390255 -0.251391 9.97664 -0.0553937 0.0351537 0.268447 0.02 0.23 pose: 0.25054109 3.64764 -0.0007846760 -0.00398213 -0.0121075 0.0669671 0.997674 uwb: 0.0 833.226 665.502 +imu_odom_: 1691062792.880560215 -0.677559 -0.351948 9.80665 -0.0596548 0.104396 0.251402 0.04 0.2 pose: 0.0 3.64764 -0.0007846760 -0.00398213 -0.0121075 0.0669671 0.997674 uwb: 0.0 833.226 665.502 +imu_odom_: 1691062792.896615202 -1.50356 -0.174777 10.058 -0.0575243 0.0340885 0.210922 0.04 0.2 pose: 0.0 3.64764 -0.0007846760 -0.00398213 -0.0121075 0.0669671 0.997674 uwb: 0.50039388 835.024 663.982 +imu_odom_: 1691062792.913613381 -1.04866 -0.141258 9.84017 -0.0575243 -0.0617853 0.18216 0.04 0.2 pose: 0.41925711 3.64764 -0.0007846760 -0.00265931 -0.00790491 0.0716693 0.997394 uwb: 0.0 835.024 663.982 +imu_odom_: 1691062792.929557832 0.0550666 -0.0766145 9.98143 -0.0585895 -0.0948085 0.152333 0.07 0.11 pose: 0.32092766 3.64764 -0.0007846760 -0.00288474 -0.00418887 0.0744668 0.997211 uwb: 0.0 835.024 663.982 +imu_odom_: 1691062792.946624549 0.651223 -0.222661 9.92636 -0.0543285 -0.0394148 0.127832 0.07 0.11 pose: 0.0 3.64764 -0.0007846760 -0.00288474 -0.00418887 0.0744668 0.997211 uwb: 0.0 835.024 663.982 +imu_odom_: 1691062792.963603480 0.395043 -0.426168 9.62948 -0.0607201 0.0330232 0.118244 0.12 0.11 pose: 0.41963626 3.64764 -0.0007846760 -0.00175888 -0.004722 0.0767539 0.997037 uwb: 0.50047553 835.014 663.961 +imu_odom_: 1691062792.980568411 -0.28491 -0.232238 9.7851 -0.0735032 0.0234358 0.122505 0.12 0.11 pose: 0.0 3.64764 -0.0007846760 -0.00175888 -0.004722 0.0767539 0.997037 uwb: 0.0 835.014 663.961 +imu_odom_: 1691062792.995576377 -0.265756 -0.335188 9.7037 -0.0436758 -0.00852212 0.0980043 0.12 0.11 pose: 0.0 3.64764 -0.0007846760 -0.00175888 -0.004722 0.0767539 0.997037 uwb: 0.0 835.014 663.961 +imu_odom_: 1691062793.11640113 0.232238 -0.272939 10.0149 -0.0415453 -0.0170442 0.108657 0.11 0.08 pose: 0.7302891 3.64764 -0.0007846760 -0.00245406 -0.00428283 0.0770436 0.997016 uwb: 0.49818318 836.886 662.578 +imu_odom_: 1691062793.27690142 0.586579 -0.311246 10.0628 -0.0553937 0.00639159 0.124636 0.12 0.05 pose: 0.0 3.64764 -0.0007846760 -0.00245406 -0.00428283 0.0770436 0.997016 uwb: 0.0 836.886 662.578 +imu_odom_: 1691062793.45628307 0.428562 -0.438139 10.5441 -0.036219 0.0340885 0.0958738 0.12 0.05 pose: 0.0 3.64764 -0.0007846760 -0.00245406 -0.00428283 0.0770436 0.997016 uwb: 0.0 836.886 662.578 +imu_odom_: 1691062793.62706398 0.0885855 0.134075 9.76595 -0.0575243 0.0223706 0.106526 0.17 0.08 pose: 0.64721291 3.65526 0.00569005 0 -0.00360112 0.000537316 0.0794303 0.996834 uwb: 0.50076428 836.702 662.196 +imu_odom_: 1691062793.79689704 0.160412 -0.373495 9.93594 -0.0543285 -0.00319579 0.11931 0.17 0.08 pose: 0.0 3.65526 0.00569005 0 -0.00360112 0.000537316 0.0794303 0.996834 uwb: 0.0 836.702 662.196 +imu_odom_: 1691062793.93703148 0.397437 -0.397437 10.0461 -0.0681769 -0.0490022 0.1012 0.17 0.08 pose: 0.34074813 3.66177 -0.00190013 0 -0.00471576 0.000147525 0.0805491 0.996739 uwb: 0.0 836.702 662.196 +imu_odom_: 1691062793.109625726 0.701501 -0.229843 9.88566 -0.0532632 -0.0255663 0.106526 0.13 0.02 pose: 0.40979604 3.66941 0.00455174 0 -0.00592423 0.00138296 0.0819895 0.996615 uwb: 0.49992725 837.363 661.303 +imu_odom_: 1691062793.125553262 0.957681 -0.409408 10.1993 -0.04048 -0.04048 0.113983 0.13 0.02 pose: 0.6956412 3.66941 0.00455174 0 -0.00566083 0.000660744 0.0822187 0.996598 uwb: 0.0 837.363 661.303 +imu_odom_: 1691062793.142548526 0.981623 -0.366313 9.73482 -0.0468716 -0.0649811 0.135289 0.13 0.02 pose: 0.0 3.66941 0.00455174 0 -0.00566083 0.000660744 0.0822187 0.996598 uwb: 0.0 837.363 661.303 +imu_odom_: 1691062793.158600596 0.914585 -0.349553 9.40442 -0.0511327 0.00532632 0.187487 0.14 0.02 pose: 0.41888966 3.66941 0.00455174 0 -0.00518594 -0.00434151 0.0839012 0.996451 uwb: 0.50044347 836.955 661.212 +imu_odom_: 1691062793.174540965 1.2809 -0.4956 10.1634 -0.0639159 -0.0308927 0.213053 0.14 0.02 pose: 0.0 3.66941 0.00455174 0 -0.00518594 -0.00434151 0.0839012 0.996451 uwb: 0.0 836.955 661.212 +imu_odom_: 1691062793.190600618 1.64242 -0.174777 9.96706 -0.0500674 0.00426106 0.138484 0.14 0.02 pose: 0.0 3.66941 0.00455174 0 -0.00518594 -0.00434151 0.0839012 0.996451 uwb: 0.0 836.955 661.212 +imu_odom_: 1691062793.207680460 1.24977 0.203507 9.64624 -0.056459 0.0394148 0.0639159 0.08 0 pose: 0.39006306 3.677 0.0110632 0 -0.00523623 -0.0083031 0.0867852 0.996179 uwb: 0.50010224 837.846 660.029 +imu_odom_: 1691062793.224688556 0.608127 0.059855 9.88326 -0.0649811 0.0330232 0.0394148 0.1 0.02 pose: 0.0 3.677 0.0110632 0 -0.00523623 -0.0083031 0.0867852 0.996179 uwb: 0.0 837.846 660.029 +imu_odom_: 1691062793.240714377 0.634463 -0.533907 9.96227 -0.072438 0.0106526 0.0319579 0.1 0.02 pose: 0.33172451 3.68355 0.00350772 0 -0.00323444 -0.00986711 0.0874034 0.996119 uwb: 0.0 837.846 660.029 +imu_odom_: 1691062793.257547776 0.658405 -0.488417 9.82102 -0.0585895 -0.0170442 0.0149137 0.09 0.05 pose: 0.0 3.68355 0.00350772 0 -0.00323444 -0.00986711 0.0874034 0.996119 uwb: 0.49989225 840.438 657.818 +imu_odom_: 1691062793.274654157 0.866701 -0.196325 9.94551 -0.0511327 -0.00106526 0.0575243 0.09 0.05 pose: 0.0 3.68355 0.00350772 0 -0.00323444 -0.00986711 0.0874034 0.996119 uwb: 0.0 840.438 657.818 +imu_odom_: 1691062793.290591026 0.629675 -0.222661 9.72046 -0.072438 0.0181095 0.0884169 0.09 0.05 pose: 0.33032752 3.68355 0.00350772 0 -0.00463445 -0.0103132 0.0872606 0.996121 uwb: 0.0 840.438 657.818 +imu_odom_: 1691062793.306601099 0.555455 -0.368707 9.98143 -0.0511327 0 0.0703074 0.05 0.05 pose: 0.42830991 3.68349 0.0034983 0 -0.00309956 -0.0119008 0.0876477 0.996076 uwb: 0.49875482 840.539 657.252 +imu_odom_: 1691062793.322591923 0.684742 -0.225055 9.85453 -0.0553937 -0.0106526 0.0639159 0.05 0.05 pose: 0.7952686 3.68355 0.00350745 0 -0.00368282 -0.0113562 0.0877786 0.996068 uwb: 0.0 840.539 657.252 +imu_odom_: 1691062793.338643702 0.720655 -0.169988 9.88087 -0.0596548 -0.00106526 0.0873517 0.05 0.05 pose: 0.0 3.68355 0.00350745 0 -0.00368282 -0.0113562 0.0877786 0.996068 uwb: 0.0 840.539 657.252 +imu_odom_: 1691062793.365521784 0.565032 -0.383072 9.88805 -0.0553937 -0.00532632 0.0713727 0.05 0.05 pose: 0.40099990 3.69116 0.00999462 0 -0.00165954 -0.0126248 0.088449 0.995999 uwb: 0.49982517 840.08 657.05 +imu_odom_: 1691062793.382522880 0.337582 -0.201113 9.79228 -0.0628506 0.0170442 0.0372843 0.04 0.08 pose: 0.0 3.69116 0.00999462 0 -0.00165954 -0.0126248 0.088449 0.995999 uwb: 0.0 840.08 657.05 +imu_odom_: 1691062793.409533954 -1.53229 -0.0191536 10.1083 -0.0511327 0.056459 0.0170442 0.04 0.08 pose: 0.34959676 3.69116 0.00999462 0 -0.00379631 -0.0104252 0.0888983 0.995979 uwb: 0.49983101 841.013 655.917 +imu_odom_: 1691062793.425623647 -0.960075 -0.761356 9.76116 -0.0735032 -0.0916127 0.04048 0.07 0.05 pose: 0.0 3.69116 0.00999462 0 -0.00379631 -0.0104252 0.0888983 0.995979 uwb: 0.0 841.013 655.917 +imu_odom_: 1691062793.441555850 0.232238 -0.550666 9.62708 -0.0340885 -0.0681769 -0.0585895 0.07 0.05 pose: 0.15937161 3.69116 0.00999462 0 -0.00355575 -0.00856474 0.0888121 0.996005 uwb: 0.0 841.013 655.917 +imu_odom_: 1691062793.458547030 0.134075 0.294487 9.87129 -0.056459 0.0138484 -0.092678 0.07 0.05 pose: 0.0 3.69116 0.00999462 0 -0.00355575 -0.00856474 0.0888121 0.996005 uwb: 0.50141466 842.03 654.957 +imu_odom_: 1691062793.475653995 0.122104 -0.0215478 9.93354 -0.076699 0.00319579 -0.131028 0.09 -0.2 pose: 0.60038284 3.69116 0.00999462 0 -0.00450608 -0.00410337 0.0873171 0.996162 uwb: 0.0 842.03 654.957 +imu_odom_: 1691062793.492588595 0.19393 -0.486023 10.0102 -0.0628506 -0.0181095 -0.238619 0.09 -0.2 pose: 0.0 3.69116 0.00999462 0 -0.00450608 -0.00410337 0.0873171 0.996162 uwb: 0.0 842.03 654.957 +imu_odom_: 1691062793.506535543 0.746991 -0.0454898 9.67976 -0.0500674 -0.02024 -0.330232 0.11 -0.32 pose: 0.43009772 3.7052 0.00884876 0 -0.00426735 -0.0009839780.0829322 0.996546 uwb: 0.50007016 842.096 654.306 +imu_odom_: 1691062793.521584633 0.979228 0.203507 9.87129 -0.0628506 -0.0127832 -0.335558 0.11 -0.32 pose: 0.0 3.7052 0.00884876 0 -0.00426735 -0.0009839780.0829322 0.996546 uwb: 0.0 842.096 654.306 +imu_odom_: 1691062793.537519752 0.383072 -0.332794 9.77313 -0.0809601 0.052198 -0.367516 0.11 -0.32 pose: 0.0 3.7052 0.00884876 0 -0.00426735 -0.0009839780.0829322 0.996546 uwb: 0.0 842.096 654.306 +imu_odom_: 1691062793.552641170 0.591368 -0.105345 10.2568 -0.0628506 0.0181095 -0.423975 0.12 -0.41 pose: 0.5957223 3.70526 0.00885777 0 -0.00384774 -0.00147823 0.0818325 0.996638 uwb: 0.49972309 843.655 652.927 +imu_odom_: 1691062793.569577229 -0.347159 -0.0981623 10.0245 -0.0575243 -0.00852212 -0.46339 0.12 -0.41 pose: 0.0 3.70526 0.00885777 0 -0.00384774 -0.00147823 0.0818325 0.996638 uwb: 0.0 843.655 652.927 +imu_odom_: 1691062793.585632507 0.205901 -0.0814029 9.98861 -0.0745685 -0.0276969 -0.459129 0.12 -0.41 pose: 0.0 3.70526 0.00885777 0 -0.00384774 -0.00147823 0.0818325 0.996638 uwb: 0.0 843.655 652.927 +imu_odom_: 1691062793.601575209 0.0454898 -0.122104 9.52413 -0.052198 -0.0106526 -0.485761 0.18 -0.67 pose: 0.46098336 3.70526 0.0088578 0 -0.00306647 -0.0020715 0.0726585 0.99735 uwb: 0.50019849 844.284 651.897 +imu_odom_: 1691062793.618573972 0.213084 -0.208296 10.0556 -0.056459 -0.00958738 -0.529436 0.13 -0.55 pose: 0.0 3.70526 0.0088578 0 -0.00306647 -0.0020715 0.0726585 0.99735 uwb: 0.0 844.284 651.897 +imu_odom_: 1691062793.634572088 0.6608 -0.0574608 9.86172 -0.056459 -0.0276969 -0.549676 0.13 -0.55 pose: 0.64888699 3.7128 0.0154175 0 -0.0009029180.00250367 0.0561316 0.99842 uwb: 0.0 844.284 651.897 +imu_odom_: 1691062793.651525645 0.196325 -0.0383072 9.61272 -0.0287621 -0.00426106 -0.545415 0.13 -0.58 pose: 0.0 3.7128 0.0154175 0 -0.0009029180.00250367 0.0561316 0.99842 uwb: 0.49864983 844.034 651.339 +imu_odom_: 1691062793.668576030 0.198719 -0.512359 9.70849 -0.0617853 0.0106526 -0.563525 0.13 -0.58 pose: 0.0 3.7128 0.0154175 0 -0.0009029180.00250367 0.0561316 0.99842 uwb: 0.0 844.034 651.339 +imu_odom_: 1691062793.684569187 0.955286 -0.0957681 10.41 -0.0628506 -0.0490022 -0.566721 0.13 -0.58 pose: 0.33176534 3.71934 0.00785126 0 0.000630705 0.00241269 0.0464822 0.998916 uwb: 0.0 844.034 651.339 +imu_odom_: 1691062793.700519764 1.31681 -0.114922 9.4571 -0.0809601 -0.0692422 -0.466586 0.16 -0.64 pose: 0.41859800 3.72685 0.0143828 0 -1.99557e-050.00191104 0.0339207 0.999423 uwb: 0.49955394 844.699 650.373 +imu_odom_: 1691062793.717629354 0.933739 -0.512359 9.66539 -0.0372843 0.0511327 -0.383495 0.16 -0.64 pose: 0.7041866 3.72691 0.0143923 0 -8.96261e-060.000981756 0.0321398 0.999483 uwb: 0.0 844.699 650.373 +imu_odom_: 1691062793.734573578 1.31921 -0.54109 10.0437 -0.036219 -0.0436758 -0.337689 0.16 -0.64 pose: 0.0 3.72691 0.0143923 0 -8.96261e-060.000981756 0.0321398 0.999483 uwb: 0.0 844.699 650.373 +imu_odom_: 1691062793.750623024 0.993594 0.0646434 9.40442 -0.0383495 0.00106526 -0.314253 0.09 -0.38 pose: 0.32973838 3.72691 0.0143923 0 -0.000791938-0.0020288 0.0249574 0.999686 uwb: 0.50105593 843.573 650.308 +imu_odom_: 1691062793.766567476 0.586579 -0.21069 9.87848 -0.0468716 0.02024 -0.267381 0.12 -0.53 pose: 0.0 3.72691 0.0143923 0 -0.000791938-0.0020288 0.0249574 0.999686 uwb: 0.0 843.573 650.308 +imu_odom_: 1691062793.783576155 0.481235 -0.385466 9.81862 -0.0500674 0.00319579 -0.282295 0.12 -0.53 pose: 0.0 3.72691 0.0143923 0 -0.000791938-0.0020288 0.0249574 0.999686 uwb: 0.0 843.573 650.308 +imu_odom_: 1691062793.800513672 0.627281 -0.21069 9.8665 -0.0543285 -0.0479369 -0.266316 0.1 -0.38 pose: 0.32992212 3.72691 0.0143924 0 6.22714e-05 -0.0051222 0.0191639 0.999803 uwb: 0.50054846 841.922 650.716 +imu_odom_: 1691062793.816621447 0.672771 -0.203507 9.84017 -0.0617853 -0.00745685 -0.225836 0.1 -0.38 pose: 0.0 3.72691 0.0143924 0 6.22714e-05 -0.0051222 0.0191639 0.999803 uwb: 0.0 841.922 650.716 +imu_odom_: 1691062793.832618688 0.787692 -0.411803 10.1562 -0.0479369 -0.00852212 -0.213053 0.1 -0.38 pose: 0.32961006 3.74101 0.0133041 0 -0.00121649 -0.00633882 0.0139907 0.999881 uwb: 0.0 841.922 650.716 +imu_odom_: 1691062793.848562556 0.739808 -0.253785 9.83538 -0.0532632 -0.0255663 -0.198139 0.06 -0.23 pose: 0.42080579 3.74095 0.0132943 0 -0.00152882 -0.0103282 0.00830905 0.999911 uwb: 0.49866441 842.004 650.085 +imu_odom_: 1691062793.865501823 0.893037 -0.306458 9.57681 -0.052198 0.0106526 -0.169377 0.06 -0.23 pose: 0.7891439 3.74101 0.0133037 0 -0.00154864 -0.0112027 0.00737052 0.999909 uwb: 0.0 842.004 650.085 +imu_odom_: 1691062793.881617181 0.466869 -0.363919 9.88805 -0.0596548 -0.00745685 -0.153398 0.06 -0.23 pose: 0.0 3.74101 0.0133037 0 -0.00154864 -0.0112027 0.00737052 0.999909 uwb: 0.0 842.004 650.085 +imu_odom_: 1691062793.898510367 0.588974 -0.126893 10.1586 -0.0479369 -0.0181095 -0.165116 0.06 -0.26 pose: 0.41107054 3.74101 0.0133037 0 -0.00268968 -0.0122451 0.00310331 0.999917 uwb: 0.50011974 842.088 649.454 +imu_odom_: 1691062793.914568271 0.579397 -0.0957681 9.83059 -0.0596548 -0.0255663 -0.138484 0.04 -0.17 pose: 0.0 3.74101 0.0133037 0 -0.00268968 -0.0122451 0.00310331 0.999917 uwb: 0.0 842.088 649.454 +imu_odom_: 1691062793.931627697 0.720655 -0.332794 9.93833 -0.0628506 -0.0106526 -0.118244 0.04 -0.17 pose: 0.0 3.74101 0.0133037 0 -0.00268968 -0.0122451 0.00310331 0.999917 uwb: 0.0 842.088 649.454 +imu_odom_: 1691062793.947511194 0.775721 -0.378284 9.84975 -0.0575243 -0.0351537 -0.103331 0.04 -0.11 pose: 0.24920825 3.74101 0.0133037 0 -0.000305708-0.0115161 0.000634962 0.999933 uwb: 0.49987475 841.981 649.218 +imu_odom_: 1691062793.963669716 0.670376 -0.383072 9.84256 -0.0532632 0.00213053 -0.0990696 0.04 -0.11 pose: 0.0 3.74101 0.0133037 0 -0.000305708-0.0115161 0.000634962 0.999933 uwb: 0.0 841.981 649.218 +imu_odom_: 1691062793.980765890 0.624887 -0.136469 10.0437 -0.0543285 -0.015979 -0.0820254 0.04 -0.11 pose: 0.32976172 3.74101 0.0133038 0 -0.00156323 -0.0130527 -0.00197619 0.999912 uwb: 0.0 841.981 649.218 +imu_odom_: 1691062793.997654993 0.639252 -0.337582 9.78031 -0.0596548 -0.0127832 -0.0681769 0.04 -0.14 pose: 0.41251712 3.74101 0.0133038 0 -0.00209224 -0.0132388 -0.00469767 0.999899 uwb: 0.50041139 841.194 649.109 +imu_odom_: 1691062794.14647340 0.754174 -0.311246 9.94551 -0.056459 -0.00958738 -0.0575243 0.04 -0.14 pose: 0.7006868 3.74101 0.0133038 0 -0.00278396 -0.0131032 -0.00506592 0.999897 uwb: 0.0 841.194 649.109 +imu_odom_: 1691062794.30627374 0.687136 -0.294487 9.88566 -0.0596548 -0.00745685 -0.0500674 0.04 -0.14 pose: 0.0 3.74101 0.0133038 0 -0.00278396 -0.0131032 -0.00506592 0.999897 uwb: 0.0 841.194 649.109 +imu_odom_: 1691062794.46639780 0.634463 -0.241814 9.97424 -0.052198 -0.00532632 -0.036219 0.02 -0.08 pose: 0.42854616 3.74101 0.0133038 0 -0.0042314 -0.0130377 -0.0071204 0.999881 uwb: 0.0 841.194 649.109 +imu_odom_: 1691062794.63706498 0.663194 -0.275333 9.83059 -0.0575243 -0.0138484 -0.0255663 0.01 -0.02 pose: 0.0 3.74101 0.0133038 0 -0.0042314 -0.0130377 -0.0071204 0.999881 uwb: 0.50148467 841.317 648.563 +imu_odom_: 1691062794.79819524 0.682347 -0.323217 9.90002 -0.0543285 -0.00852212 -0.0213053 0.01 -0.02 pose: 0.0 3.74101 0.0133038 0 -0.0042314 -0.0130377 -0.0071204 0.999881 uwb: 0.0 841.317 648.563 +imu_odom_: 1691062794.96637757 0.653617 -0.28491 9.89284 -0.056459 -0.00639159 -0.00213053 0.01 -0.02 pose: 0.24051129 3.74856 0.0198598 0 -0.00310495 -0.0131269 -0.00800232 0.999877 uwb: 0.49977853 839.087 649.345 +imu_odom_: 1691062794.114558131 0.696713 -0.335188 9.90242 -0.0532632 0.00106526 0.0138484 0.01 -0.02 pose: 0.0 3.74856 0.0198598 0 -0.00310495 -0.0131269 -0.00800232 0.999877 uwb: 0.0 839.087 649.345 +imu_odom_: 1691062794.130547206 0.514753 -0.277727 9.87129 -0.0543285 0.00106526 0.0319579 0.01 -0.02 pose: 0.32947299 3.74856 0.0198598 0 -0.00454754 -0.0136454 -0.00892976 0.999857 uwb: 0.0 839.087 649.345 +imu_odom_: 1691062794.146486700 0.533907 -0.299275 9.92157 -0.0543285 -0.00745685 0.0490022 0 0.05 pose: 0.42921404 3.74856 0.0198598 0 -0.00490867 -0.0124941 -0.00939829 0.999866 uwb: 0.0 839.087 649.345 +imu_odom_: 1691062794.162538771 0.526724 -0.244209 9.88805 -0.0543285 -0.00426106 0.0479369 0 0.05 pose: 0.6950288 3.74856 0.0198598 0 -0.00484312 -0.0118128 -0.00936291 0.999875 uwb: 0.49808112 839.919 648.732 +imu_odom_: 1691062794.177541781 0.519542 -0.248997 9.93594 -0.052198 -0.00106526 0.0447411 0 0.05 pose: 0.0 3.74856 0.0198598 0 -0.00484312 -0.0118128 -0.00936291 0.999875 uwb: 0.0 839.919 648.732 +imu_odom_: 1691062794.199483704 0.399832 -0.237026 9.92875 -0.0553937 0 0.0383495 0 0 pose: 0.40044287 3.74856 0.0198598 0 -0.00309123 -0.00826794 -0.00921702 0.999919 uwb: 0.50095679 839.88 648.646 +imu_odom_: 1691062794.216470801 -0.272939 -0.241814 9.77792 -0.0447411 0.0703074 0.0862864 0 0.02 pose: 0.0 3.74856 0.0198598 0 -0.00309123 -0.00826794 -0.00921702 0.999919 uwb: 0.0 839.88 648.646 +imu_odom_: 1691062794.232584410 -1.16837 -0.538695 9.92397 -0.0532632 0.0660464 0.208792 0 0.02 pose: 0.28978830 3.74856 0.0198598 0 -0.00253171 -0.00511459 -0.00906278 0.999943 uwb: 0.0 839.88 648.646 +imu_odom_: 1691062794.248469658 -1.06303 -0.828394 9.991 -0.0649811 -0.04048 0.330232 0.04 0.29 pose: 0.0 3.74856 0.0198598 0 -0.00253171 -0.00511459 -0.00906278 0.999943 uwb: 0.49858860 838.282 649.198 +imu_odom_: 1691062794.265600247 -0.11971 -0.577003 9.83059 -0.0458064 -0.0671117 0.393083 0.04 0.29 pose: 0.0 3.74856 0.0198598 0 -0.00253171 -0.00511459 -0.00906278 0.999943 uwb: 0.0 838.282 649.198 +imu_odom_: 1691062794.282579762 0.646434 -0.208296 10.2137 -0.0543285 -0.0351537 0.451672 0.04 0.29 pose: 0.32948174 3.75508 0.0122818 0 -0.00294895 -0.00106295 -0.00645917 0.999974 uwb: 0.0 838.282 649.198 +imu_odom_: 1691062794.298620458 0.383072 -0.0814029 9.8665 -0.0436758 0.0191748 0.471912 0.07 0.47 pose: 0.33068042 3.75508 0.0122818 0 -0.00382868 -0.00016589 -0.0006860040.999992 uwb: 0.50014017 837.808 648.976 +imu_odom_: 1691062794.315618638 0.110133 -0.347159 9.76834 -0.0468716 0.0298274 0.478304 0.07 0.47 pose: 0.0 3.75508 0.0122818 0 -0.00382868 -0.00016589 -0.0006860040.999992 uwb: 0.0 837.808 648.976 +imu_odom_: 1691062794.333476017 -0.215478 -0.442927 9.90481 -0.0447411 -0.00745685 0.508131 0.07 0.47 pose: 0.0 3.75508 0.0122818 0 -0.00382868 -0.00016589 -0.0006860040.999992 uwb: 0.0 837.808 648.976 +imu_odom_: 1691062794.347613703 0.0861913 -0.373495 10.0054 -0.0394148 -0.0276969 0.537959 0.07 0.47 pose: 0.43081811 3.75503 0.0122726 0 -0.00229303 0.0012038 0.00857788 0.99996 uwb: 0.50094512 838.166 648.137 +imu_odom_: 1691062794.363750644 0.325611 -0.122104 9.95748 -0.0351537 -0.0117179 0.565655 0.07 0.47 pose: 0.0 3.75503 0.0122726 0 -0.00229303 0.0012038 0.00857788 0.99996 uwb: 0.0 838.166 648.137 +imu_odom_: 1691062794.379484234 0.141258 -0.423774 9.90721 -0.0426106 -0.00106526 0.606135 0.09 0.53 pose: 0.8008099 3.75508 0.012282 0 -0.00249096 0.00195897 0.0104553 0.99994 uwb: 0.0 838.166 648.137 +imu_odom_: 1691062794.395535722 0.253785 -0.414197 9.64384 -0.0468716 -0.02024 0.595483 0.09 0.53 pose: 0.0 3.75508 0.012282 0 -0.00249096 0.00195897 0.0104553 0.99994 uwb: 0.0 838.166 648.137 +imu_odom_: 1691062794.411614041 -0.155623 -0.0981623 9.7875 -0.0436758 0.00106526 0.615723 0.09 0.53 pose: 0.0 3.75508 0.012282 0 -0.00249096 0.00195897 0.0104553 0.99994 uwb: 0.49863817 837.522 648.357 +imu_odom_: 1691062794.428527060 0.0909797 -0.339977 9.76834 -0.0426106 -0.00958738 0.646616 0.11 0.64 pose: 0.46945286 3.75508 0.012282 0 -0.00180723 0.00447419 0.022469 0.999736 uwb: 0.0 837.522 648.357 +imu_odom_: 1691062794.444530426 0.258574 -0.287304 9.53132 -0.0436758 -0.00639159 0.654072 0.11 0.64 pose: 0.0 3.75508 0.012282 0 -0.00180723 0.00447419 0.022469 0.999736 uwb: 0.0 837.522 648.357 +imu_odom_: 1691062794.461478442 0.263362 -0.361524 9.80665 -0.0319579 -0.00106526 0.660464 0.11 0.64 pose: 0.0 3.75508 0.012282 0 -0.00180723 0.00447419 0.022469 0.999736 uwb: 0.50144968 838.038 647.86 +imu_odom_: 1691062794.479624553 0.114922 -0.416591 9.76834 -0.0596548 -0.00319579 0.687096 0.12 0.61 pose: 0.47966933 3.76263 0.0188374 0 -0.00335861 0.00764052 0.0361806 0.99931 uwb: 0.0 838.038 647.86 +imu_odom_: 1691062794.494505362 0.782904 -0.316035 9.72525 -0.0500674 -0.04048 0.656203 0.11 0.61 pose: 0.0 3.76263 0.0188374 0 -0.00335861 0.00764052 0.0361806 0.99931 uwb: 0.0 838.038 647.86 +imu_odom_: 1691062794.511607077 0.90022 -0.232238 9.70609 -0.052198 0.00319579 0.628506 0.11 0.61 pose: 0.66980699 3.76917 0.0112679 0 -0.00667922 0.00786277 0.0570294 0.998319 uwb: 0.50044932 839.593 646.374 +imu_odom_: 1691062794.529474955 1.67834 -0.1652 10.1251 -0.0394148 -0.04048 0.570982 0.08 0.41 pose: 0.0 3.76917 0.0112679 0 -0.00667922 0.00786277 0.0570294 0.998319 uwb: 0.0 839.593 646.374 +imu_odom_: 1691062794.545524984 1.36469 0.023942 9.2895 -0.0394148 0.0223706 0.493217 0.08 0.41 pose: 0.0 3.76917 0.0112679 0 -0.00667922 0.00786277 0.0570294 0.998319 uwb: 0.0 839.593 646.374 +imu_odom_: 1691062794.561465645 1.37906 -0.023942 10.568 -0.0607201 0.0639159 0.417584 0.08 0.41 pose: 0.34111854 3.77673 0.0178169 0 -0.00588644 0.00433083 0.0669327 0.997731 uwb: 0.49865859 838.272 646.743 +imu_odom_: 1691062794.577517425 0.414197 -0.148441 9.50977 -0.0575243 0.04048 0.351537 0.06 0.29 pose: 0.41834136 3.77667 0.0178073 0 -0.00440464 0.00101327 0.0761576 0.997086 uwb: 0.0 838.272 646.743 +imu_odom_: 1691062794.594515605 0.428562 -0.213084 10.0054 -0.0596548 0.0213053 0.278034 0.06 0.29 pose: 0.8004600 3.77673 0.0178171 0 -0.00363531 0.00106433 0.0774021 0.996993 uwb: 0.0 838.272 646.743 +imu_odom_: 1691062794.610456849 0.725443 0.0023942 9.96467 -0.052198 -0.0330232 0.230097 0.06 0.29 pose: 0.0 3.77673 0.0178171 0 -0.00363531 0.00106433 0.0774021 0.996993 uwb: 0.49929439 840.636 645.386 +imu_odom_: 1691062794.626510087 0.907402 -0.268151 9.76116 -0.0532632 -0.00426106 0.214118 0.07 0.35 pose: 0.40986604 3.77673 0.0178171 0 -0.000476807-0.00113528 0.0821838 0.996616 uwb: 0.0 840.636 645.386 +imu_odom_: 1691062794.642451039 0.782904 -0.23942 9.97424 -0.0500674 0.00852212 0.229032 0.04 0.26 pose: 0.0 3.77673 0.0178171 0 -0.000476807-0.00113528 0.0821838 0.996616 uwb: 0.0 840.636 645.386 +imu_odom_: 1691062794.659517757 0.174777 -0.423774 9.69652 -0.0511327 0.0255663 0.276969 0.04 0.26 pose: 0.0 3.77673 0.0178171 0 -0.000476807-0.00113528 0.0821838 0.996616 uwb: 0.50172965 840.336 645.547 +imu_odom_: 1691062794.675508873 0.37589 -0.466869 10.1083 -0.0596548 -0.0149137 0.291882 0.04 0.26 pose: 0.24060170 3.77673 0.0178169 0 -0.000415621-0.00348632 0.0843341 0.996431 uwb: 0.0 840.336 645.547 +imu_odom_: 1691062794.692564509 0.629675 -0.201113 9.89284 -0.036219 -0.0245011 0.267381 0.03 0.2 pose: 0.0 3.77673 0.0178169 0 -0.000415621-0.00348632 0.0843341 0.996431 uwb: 0.0 840.336 645.547 +imu_odom_: 1691062794.709448071 0.811634 0.0023942 9.80426 -0.0532632 0 0.258859 0.03 0.2 pose: 0.32998921 3.78324 0.0102259 0 -0.00218012 -0.00245635 0.0881129 0.996105 uwb: 0.49782448 838.963 645.807 +imu_odom_: 1691062794.733448161 0.596156 -0.316035 9.89524 -0.0543285 0.00958738 0.238619 0.03 0.2 pose: 0.41932131 3.78749 0.0138584 0 -0.000854066-0.00516147 0.0928843 0.995663 uwb: 0.0 838.963 645.807 +imu_odom_: 1691062794.749494691 -0.158017 -0.304064 9.72285 -0.0617853 0.0830906 0.217314 0.03 0.2 pose: 0.0 3.78749 0.0138584 0 -0.000854066-0.00516147 0.0928843 0.995663 uwb: 0.50247336 840.792 644.904 +imu_odom_: 1691062794.766494912 -1.14922 -0.172383 10.0437 -0.0607201 0.0841559 0.214118 0.05 0.14 pose: 0.7032824 3.79082 0.0167492 0 -0.00124554 -0.00569923 0.0935823 0.995594 uwb: 0.0 840.792 644.904 +imu_odom_: 1691062794.783454303 -1.22583 -0.339977 10.0341 -0.0628506 -0.0181095 0.209857 0.06 0.14 pose: 0.0 3.79082 0.0167492 0 -0.00124554 -0.00569923 0.0935823 0.995594 uwb: 0.0 840.792 644.904 +imu_odom_: 1691062794.800612599 -0.347159 -0.23942 9.74679 -0.0479369 -0.0553937 0.186421 0.1 0.2 pose: 0.0 3.79082 0.0167492 0 -0.00124554 -0.00569923 0.0935823 0.995594 uwb: 0.49851277 840.386 644.828 +imu_odom_: 1691062794.816507180 0.531513 -0.316035 10.0413 -0.0511327 -0.0617853 0.175769 0.1 0.2 pose: 0.74193180 3.79082 0.016749 0 -0.00301864 -0.0001623240.100141 0.994969 uwb: 0.0 840.386 644.828 +imu_odom_: 1691062794.833562523 0.691924 -0.335188 9.75877 -0.0607201 0.00958738 0.178964 0.12 0.14 pose: 0.0 3.79082 0.016749 0 -0.00301864 -0.0001623240.100141 0.994969 uwb: 0.0 840.386 644.828 +imu_odom_: 1691062794.850504998 0.251391 -0.447716 9.97903 -0.0617853 0.036219 0.170442 0.12 0.14 pose: 0.32779309 3.79082 0.016749 0 -0.00332118 -0.00207145 0.102423 0.994733 uwb: 0.50178215 840.844 644.185 +imu_odom_: 1691062794.866441868 -0.275333 -0.138864 9.74201 -0.0511327 0.0276969 0.157659 0.12 0.14 pose: 0.0 3.79082 0.016749 0 -0.00332118 -0.00207145 0.102423 0.994733 uwb: 0.0 840.844 644.185 +imu_odom_: 1691062794.883479421 0.201113 -0.220267 10.1347 -0.0660464 0.00319579 0.175769 0.1 0.08 pose: 0.42988484 3.79481 0.0202206 0 -0.00451005 0.000392493 0.105171 0.994444 uwb: 0.0 840.844 644.185 +imu_odom_: 1691062794.899484245 0.304064 -0.1652 9.9096 -0.0596548 0.02024 0.149137 0.1 0.08 pose: 0.7994683 3.79838 0.023291 0 -0.00430489 0.00117935 0.105716 0.994386 uwb: 0.49954813 839.912 644.604 +imu_odom_: 1691062794.915479444 0.201113 -0.19393 10.4435 -0.0447411 -0.0149137 0.135289 0.1 0.08 pose: 0.0 3.79838 0.023291 0 -0.00430489 0.00117935 0.105716 0.994386 uwb: 0.0 839.912 644.604 +imu_odom_: 1691062794.931418938 0.00957681 -0.289698 9.82341 -0.0340885 -0.0426106 0.155529 0.11 0.11 pose: 0.41042893 3.80209 0.0190249 0 -0.00203431 0.00443779 0.107975 0.994142 uwb: 0.0 839.912 644.604 +imu_odom_: 1691062794.947468384 -0.177171 -0.500388 9.89763 -0.0681769 -0.00639159 0.162985 0.15 0.08 pose: 0.0 3.80209 0.0190249 0 -0.00203431 0.00443779 0.107975 0.994142 uwb: 0.49801113 839.097 644.455 +imu_odom_: 1691062794.964585266 0.162806 -0.347159 10.1227 -0.0458064 -0.0245011 0.13955 0.15 0.08 pose: 0.0 3.80209 0.0190249 0 -0.00203431 0.00443779 0.107975 0.994142 uwb: 0.0 839.097 644.455 +imu_odom_: 1691062794.981447538 0.627281 -0.445322 9.83777 -0.0468716 -0.0149137 0.133158 0.17 0.11 pose: 0.23014025 3.80494 0.0157458 0 -0.00267899 0.00626497 0.109327 0.993983 uwb: 0.0 839.097 644.455 +imu_odom_: 1691062794.999611731 0.0502782 -0.3304 9.58399 -0.0532632 0.0394148 0.142745 0.17 0.11 pose: 0.0 3.80494 0.0157458 0 -0.00267899 0.00626497 0.109327 0.993983 uwb: 0.50199214 839.515 643.724 +imu_odom_: 1691062795.14589367 0.790087 -0.411803 10.5201 -0.0575243 -0.0213053 0.131028 0.17 0.11 pose: 0.34037191 3.81249 0.022307 0 -0.00459114 0.00717568 0.111084 0.993775 uwb: 0.0 839.515 643.724 +imu_odom_: 1691062795.30638814 0.979228 -0.181959 9.88566 -0.0585895 -0.0245011 0.151268 0.11 0.05 pose: 0.42058707 3.81249 0.022307 0 -0.00542592 0.00680271 0.113099 0.993546 uwb: 0.0 839.515 643.724 +imu_odom_: 1691062795.48658058 0.931344 -0.196325 10.1179 -0.0692422 0.0234358 0.213053 0.11 0.05 pose: 0.6982953 3.81249 0.022307 0 -0.00523169 0.00606228 0.113486 0.993507 uwb: 0.49984853 839.721 643.348 +imu_odom_: 1691062795.66586016 1.55623 -0.277727 10.2951 -0.0372843 -0.0639159 0.188552 0.1 0.05 pose: 0.0 3.81249 0.022307 0 -0.00523169 0.00606228 0.113486 0.993507 uwb: 0.0 839.721 643.348 +imu_odom_: 1691062795.82499554 1.43652 -0.0454898 9.46188 -0.04048 -0.00426106 0.129962 0.08 0.05 pose: 0.35023258 3.81249 0.022307 0 -0.0044233 0.00259635 0.116119 0.993222 uwb: 0.0 839.721 643.348 +imu_odom_: 1691062795.98433799 1.2809 -0.0023942 10.1227 -0.0660464 0.0490022 0.102265 0.08 0.02 pose: 0.0 3.81249 0.022307 0 -0.0044233 0.00259635 0.116119 0.993222 uwb: 0.49885985 841.046 642.138 +imu_odom_: 1691062795.114430749 0.292093 -0.0311246 10.137 -0.0575243 0 0.0777643 0.08 0.02 pose: 0.0 3.81249 0.022307 0 -0.0044233 0.00259635 0.116119 0.993222 uwb: 0.0 841.046 642.138 +imu_odom_: 1691062795.130433823 0.519542 -0.380678 9.84256 -0.0585895 -0.00958738 0.0394148 0.06 0.05 pose: 0.32968299 3.81999 0.0289262 0 -0.00327722 -0.0006218840.117781 0.993034 uwb: 0.0 841.046 642.138 +imu_odom_: 1691062795.146430481 0.890643 -0.186748 10.1083 -0.0543285 -0.0415453 0.0415453 0.06 0.05 pose: 0.0 3.81999 0.0289262 0 -0.00327722 -0.0006218840.117781 0.993034 uwb: 0.0 841.046 642.138 +imu_odom_: 1691062795.163409122 0.775721 -0.296881 9.61033 -0.056459 -0.00106526 0.0681769 0.06 0.05 pose: 0.31940528 3.82661 0.0214354 0 -0.00216769 -0.0008093020.118357 0.992968 uwb: 0.49941106 839.869 642.019 +imu_odom_: 1691062795.179462943 0.857124 -0.409408 10.082 -0.0628506 0.0181095 0.0830906 0.07 0.05 pose: 0.41904717 3.82661 0.0214354 0 -0.00224421 -0.00499255 0.118602 0.992927 uwb: 0.0 839.869 642.019 +imu_odom_: 1691062795.196436625 0.64404 -0.385466 9.83059 -0.0479369 0 0.0713727 0.07 0.05 pose: 0.7001326 3.82661 0.0214354 0 -0.00245218 -0.0055964 0.118752 0.992905 uwb: 0.49849529 838.171 642.421 +imu_odom_: 1691062795.213585005 0.675165 -0.141258 9.8665 -0.052198 0.00426106 0.0596548 0.07 0.05 pose: 0.0 3.82661 0.0214354 0 -0.00245218 -0.0055964 0.118752 0.992905 uwb: 0.0 838.171 642.421 +imu_odom_: 1691062795.229575539 0.703895 -0.172383 9.79707 -0.0532632 -0.00319579 0.0660464 0.04 0.05 pose: 0.43174557 3.82661 0.0214354 0 -0.00212028 -0.00859447 0.11937 0.99281 uwb: 0.0 838.171 642.421 +imu_odom_: 1691062795.256457705 0.730232 -0.241814 9.98622 -0.0553937 -0.00426106 0.0660464 0.05 0.05 pose: 0.0 3.82661 0.0214354 0 -0.00212028 -0.00859447 0.11937 0.99281 uwb: 0.50148760 837.723 642.263 +imu_odom_: 1691062795.272573065 0.110133 -0.466869 9.67736 -0.0649811 0.0639159 0.0245011 0.05 0.05 pose: 0.24084378 3.83413 0.0280264 0 -0.000827128-0.0105415 0.119671 0.992757 uwb: 0.0 837.723 642.263 +imu_odom_: 1691062795.289571829 -0.936133 0.131681 10.3118 -0.0468716 0.106526 -0.104396 0.04 0.05 pose: 0.0 3.83413 0.0280264 0 -0.000827128-0.0105415 0.119671 0.992757 uwb: 0.0 837.723 642.263 +imu_odom_: 1691062795.306451309 -1.47243 0.308852 9.75877 -0.0415453 -0.0213053 -0.186421 0.04 0.05 pose: 0.0 3.83413 0.0280264 0 -0.000827128-0.0105415 0.119671 0.992757 uwb: 0.0 837.723 642.263 +imu_odom_: 1691062795.323573732 -0.45011 -0.196325 9.97185 -0.0585895 -0.0777643 -0.236489 0.1 -0.35 pose: 0.26922122 3.83413 0.0280264 0 -0.000864514-0.0113908 0.119853 0.992726 uwb: 0.0 837.723 642.263 +imu_odom_: 1691062795.340417047 0.361524 -0.373495 9.55047 -0.0532632 -0.0372843 -0.286556 0.1 -0.35 pose: 0.41859804 3.83407 0.0280164 0 -0.000724124-0.00626365 0.116693 0.993148 uwb: 0.0 837.723 642.263 +imu_odom_: 1691062795.356562738 0.189142 -0.418985 10.0772 -0.0500674 0.0138484 -0.289752 0.1 -0.35 pose: 0.0 3.83407 0.0280164 0 -0.000724124-0.00626365 0.116693 0.993148 uwb: 0.0 837.723 642.263 +imu_odom_: 1691062795.372464318 0.217872 -0.289698 9.80186 -0.0671117 0.0245011 -0.302535 0.1 -0.38 pose: 0.7060531 3.83413 0.0280264 0 -0.000747581-0.0058191 0.115727 0.993264 uwb: 0.0 837.723 642.263 +imu_odom_: 1691062795.388468851 -0.371101 -0.191536 9.66779 -0.052198 0.0181095 -0.354733 0.1 -0.38 pose: 0.0 3.83413 0.0280264 0 -0.000747581-0.0058191 0.115727 0.993264 uwb: 0.0 837.723 642.263 +imu_odom_: 1691062795.404405721 -0.237026 -0.124498 9.95988 -0.04048 -0.0138484 -0.413323 0.1 -0.38 pose: 0.0 3.83413 0.0280264 0 -0.000747581-0.0058191 0.115727 0.993264 uwb: 0.150039431 839.104 641.15 +imu_odom_: 1691062795.420561328 0.25618 0.071826 9.69891 -0.0490022 -0.0308927 -0.444215 0.11 -0.47 pose: 0.49967938 3.83413 0.0280259 0 -0.00304797 -0.00213589 0.107819 0.994164 uwb: 0.0 839.104 641.15 +imu_odom_: 1691062795.437557467 0.225055 -0.179565 9.72525 -0.0681769 -0.0383495 -0.445281 0.14 -0.55 pose: 0.0 3.83413 0.0280259 0 -0.00304797 -0.00213589 0.107819 0.994164 uwb: 0.0 839.104 641.15 +imu_odom_: 1691062795.454548357 0.445322 -0.0837971 10.3837 -0.0607201 -0.04048 -0.478304 0.14 -0.55 pose: 0.64144706 3.8483 0.0270992 0 -0.00115596 0.00308277 0.0939881 0.995568 uwb: 0.0 839.104 641.15 +imu_odom_: 1691062795.471618575 0.047884 -0.0933739 9.53132 -0.0639159 -0.0436758 -0.512392 0.12 -0.5 pose: 0.0 3.8483 0.0270992 0 -0.00115596 0.00308277 0.0939881 0.995568 uwb: 0.0 839.104 641.15 +imu_odom_: 1691062795.488640671 0.636858 -0.0023942 10.0868 -0.0660464 -0.00532632 -0.527306 0.12 -0.5 pose: 0.0 3.8483 0.0270992 0 -0.00115596 0.00308277 0.0939881 0.995568 uwb: 0.0 839.104 641.15 +imu_odom_: 1691062795.506547047 -0.198719 -0.318429 9.70849 -0.0468716 -0.00745685 -0.548611 0.12 -0.5 pose: 0.33987904 3.8483 0.0270994 0 0.000606011 0.00309041 0.0852735 0.996353 uwb: 0.99936167 837.912 641.016 +imu_odom_: 1691062795.520580907 0.150835 -0.234632 9.99579 -0.0319579 -0.0234358 -0.568851 0.13 -0.55 pose: 0.44934659 3.85581 0.0336988 0 0.00121526 0.00416002 0.0724619 0.997362 uwb: 0.0 837.912 641.016 +imu_odom_: 1691062795.537532132 0.837971 -0.124498 10.0293 -0.0543285 -0.0436758 -0.52411 0.13 -0.55 pose: 0.5892185 3.85581 0.0336988 0 0.00107571 0.00466389 0.070672 0.997488 uwb: 0.0 837.912 641.016 +imu_odom_: 1691062795.554641723 1.07021 -0.203507 9.61511 -0.076699 -0.0394148 -0.401605 0.13 -0.55 pose: 0.0 3.85581 0.0336988 0 0.00107571 0.00466389 0.070672 0.997488 uwb: 0.50040267 839.412 639.312 +imu_odom_: 1691062795.571734398 1.35033 -0.641646 10.1299 -0.0553937 -0.00745685 -0.336624 0.1 -0.47 pose: 0.42202491 3.85965 0.0292316 0 0.00110335 0.00134771 0.0596701 0.998217 uwb: 0.0 839.412 639.312 +imu_odom_: 1691062795.587601856 1.35751 -0.342371 9.79228 -0.0628506 -0.0255663 -0.291882 0.1 -0.41 pose: 0.0 3.85965 0.0292316 0 0.00110335 0.00134771 0.0596701 0.998217 uwb: 0.0 839.412 639.312 +imu_odom_: 1691062795.605635391 1.48441 -0.0622492 10.0963 -0.0532632 0 -0.241815 0.1 -0.41 pose: 0.0 3.85965 0.0292316 0 0.00110335 0.00134771 0.0596701 0.998217 uwb: 0.50244421 837.467 640.03 +imu_odom_: 1691062795.621426728 1.37427 -0.304064 9.68933 -0.0394148 0.0308927 -0.237554 0.07 -0.32 pose: 0.25097858 3.8699 0.0327203 0 0.000381741 -0.00115157 0.055137 0.998478 uwb: 0.0 837.467 640.03 +imu_odom_: 1691062795.637400929 0.490811 -0.179565 9.65342 -0.036219 0.0394148 -0.255663 0.07 -0.32 pose: 0.0 3.8699 0.0327203 0 0.000381741 -0.00115157 0.055137 0.998478 uwb: 0.0 837.467 640.03 +imu_odom_: 1691062795.653396712 0.454898 -0.124498 10.0485 -0.0490022 -0.00958738 -0.252468 0.07 -0.32 pose: 0.32875554 3.8699 0.0327202 0 0.000675317 -0.00431992 0.0503369 0.998723 uwb: 0.49827947 837.007 639.85 +imu_odom_: 1691062795.669451700 0.526724 -0.213084 9.91678 -0.0639159 -0.00532632 -0.238619 0.06 -0.26 pose: 0.40781577 3.86984 0.03271 0 0.00367971 -0.00318562 0.0444154 0.999001 uwb: 0.0 837.007 639.85 +imu_odom_: 1691062795.686379302 0.586579 -0.318429 9.97424 -0.0639159 -0.00958738 -0.209857 0.06 -0.26 pose: 0.8013349 3.8699 0.0327204 0 0.00306373 -0.00373564 0.0433056 0.99905 uwb: 0.0 837.007 639.85 +imu_odom_: 1691062795.703478976 0.739808 -0.366313 9.90002 -0.052198 -0.00852212 -0.194943 0.06 -0.26 pose: 0.0 3.8699 0.0327204 0 0.00306373 -0.00373564 0.0433056 0.99905 uwb: 0.49849528 837.786 639.061 +imu_odom_: 1691062795.719426929 0.732626 -0.280122 9.78031 -0.0511327 -0.00532632 -0.16192 0.05 -0.17 pose: 0.42068915 3.8699 0.0327204 0 0.000100137 -0.0067783 0.0380929 0.999251 uwb: 0.0 837.786 639.061 +imu_odom_: 1691062795.736395070 0.577003 -0.227449 9.88087 -0.0596548 0.0138484 -0.145941 0.04 -0.14 pose: 0.0 3.8699 0.0327204 0 0.000100137 -0.0067783 0.0380929 0.999251 uwb: 0.0 837.786 639.061 +imu_odom_: 1691062795.762443121 0.577003 -0.318429 9.88087 -0.0596548 -0.0127832 -0.128897 0.04 -0.14 pose: 0.22981361 3.8699 0.0327206 0 -0.000354307-0.00896231 0.0358381 0.999317 uwb: 0.49935565 835.902 639.086 +imu_odom_: 1691062795.779445676 0.45011 -0.222661 10.0221 -0.0628506 0.0149137 -0.131028 0.04 -0.17 pose: 0.0 3.8699 0.0327206 0 -0.000354307-0.00896231 0.0358381 0.999317 uwb: 0.0 835.902 639.086 +imu_odom_: 1691062795.796558183 -0.179565 -0.296881 9.76355 -0.0553937 0.0660464 -0.184291 0.04 -0.17 pose: 0.0 3.8699 0.0327206 0 -0.000354307-0.00896231 0.0358381 0.999317 uwb: 0.50085473 836.31 638.307 +imu_odom_: 1691062795.813375542 -1.37188 0.232238 9.81383 -0.0447411 0.0436758 -0.154463 0.1 -0.17 pose: 0.70097846 3.87741 0.0393271 0 -0.00263817 -0.00548722 0.0293876 0.99955 uwb: 0.0 836.31 638.307 +imu_odom_: 1691062795.830427678 -1.04387 -0.787692 10.0102 -0.0745685 -0.0575243 -0.0628506 0.1 -0.17 pose: 0.0 3.87741 0.0393271 0 -0.00263817 -0.00548722 0.0293876 0.99955 uwb: 0.0 836.31 638.307 +imu_odom_: 1691062795.846367756 -0.0550666 -0.411803 9.95988 -0.052198 -0.0798948 -0.0894822 0.1 -0.17 pose: 0.0 3.87741 0.0393271 0 -0.00263817 -0.00548722 0.0293876 0.99955 uwb: 0.0 836.31 638.307 +imu_odom_: 1691062795.862426244 0.725443 -0.0383072 10.1849 -0.0340885 -0.0745685 -0.056459 0.09 -0.11 pose: 0.6903333 3.87741 0.0393271 0 -0.00244452 -0.00465061 0.0287189 0.999574 uwb: 0.50033559 836.816 637.743 +imu_odom_: 1691062795.878420860 0.687136 -0.0167594 9.85214 -0.0692422 0.0181095 -0.0298274 0.09 -0.11 pose: 0.0 3.87741 0.0393271 0 -0.00244452 -0.00465061 0.0287189 0.999574 uwb: 0.0 836.816 637.743 +imu_odom_: 1691062795.895404459 -0.0311246 -0.275333 10.1275 -0.0415453 0.0276969 -0.0745685 0.09 -0.11 pose: 0.0 3.87741 0.0393271 0 -0.00244452 -0.00465061 0.0287189 0.999574 uwb: 0.0 836.816 637.743 +imu_odom_: 1691062795.911714348 -0.160412 -0.28491 9.68455 -0.0543285 -0.0372843 -0.0873517 0.11 -0.11 pose: 0.49972313 3.88398 0.0317924 0 -0.0027957 -0.00217658 0.02553 0.999668 uwb: 0.49954813 836.048 637.729 +imu_odom_: 1691062795.929653388 0.0526724 -0.158017 9.5792 -0.0649811 -0.0383495 -0.0575243 0.15 -0.11 pose: 0.0 3.88398 0.0317924 0 -0.0027957 -0.00217658 0.02553 0.999668 uwb: 0.0 836.048 637.729 +imu_odom_: 1691062795.946536368 0.361524 -0.129287 9.76834 -0.0575243 -0.0245011 -0.0585895 0.15 -0.11 pose: 0.66237871 3.89151 0.0383699 0 -0.00110166 -9.73514e-050.0221507 0.999754 uwb: 0.0 836.048 637.729 +imu_odom_: 1691062795.960446860 0.23942 -0.265756 9.79228 -0.0798948 -0.00532632 -0.0298274 0.12 -0.08 pose: 0.0 3.89151 0.0383699 0 -0.00110166 -9.73514e-050.0221507 0.999754 uwb: 0.49876944 836.736 636.722 +imu_odom_: 1691062795.977439791 0.208296 -0.457293 9.8282 -0.056459 0.00639159 -0.0585895 0.12 -0.08 pose: 0.0 3.89151 0.0383699 0 -0.00110166 -9.73514e-050.0221507 0.999754 uwb: 0.0 836.736 636.722 +imu_odom_: 1691062795.993376078 -0.0023942 -0.306458 9.96467 -0.0735032 -0.00319579 -0.0532632 0.12 -0.08 pose: 0.32932134 3.89151 0.0383701 0 0.00032319 0.00155314 0.0206295 0.999786 uwb: 0.0 836.736 636.722 +imu_odom_: 1691062796.10435797 0.0646434 -0.258574 9.91678 -0.072438 -0.00106526 -0.0298274 0.13 -0.05 pose: 0.40772244 3.89812 0.0308604 0 -0.00204362 0.00478924 0.0187816 0.99981 uwb: 0.50054558 836.236 636.457 +imu_odom_: 1691062796.27559971 0.469264 -0.395043 10.3789 -0.0660464 -0.0330232 -0.0340885 0.13 -0.05 pose: 0.7071031 3.89812 0.0308604 0 -0.00213502 0.00550525 0.0185378 0.999811 uwb: 0.0 836.236 636.457 +imu_odom_: 1691062796.44437410 0.634463 -0.270545 9.98861 -0.0553937 -0.0308927 -0.0415453 0.13 -0.05 pose: 0.0 3.89812 0.0308604 0 -0.00213502 0.00550525 0.0185378 0.999811 uwb: 0.0 836.236 636.457 +imu_odom_: 1691062796.62431281 1.08697 -0.0814029 10.0485 -0.0553937 -0.0671117 -0.0266316 0.12 -0.08 pose: 0.33996071 3.90565 0.0374319 0 -0.00326444 0.00405171 0.0172736 0.999837 uwb: 0.50050184 837.247 635.308 +imu_odom_: 1691062796.79505583 1.02232 -0.155623 9.61033 -0.0553937 0.0245011 0.0170442 0.1 -0.05 pose: 0.0 3.90565 0.0374319 0 -0.00326444 0.00405171 0.0172736 0.999837 uwb: 0.0 837.247 635.308 +imu_odom_: 1691062796.96504056 1.16119 -0.603339 10.3645 -0.0585895 -0.0117179 0.0436758 0.1 -0.05 pose: 0.35063798 3.90565 0.0374322 0 -0.00259556 2.29476e-05 0.016186 0.999866 uwb: 0.0 837.247 635.308 +imu_odom_: 1691062796.114432597 1.25456 -0.320823 9.97903 -0.052198 -0.0191748 -0.00213053 0.09 -0.08 pose: 0.0 3.90565 0.0374322 0 -0.00259556 2.29476e-05 0.016186 0.999866 uwb: 0.50103265 838.331 634.311 +imu_odom_: 1691062796.129428317 1.09894 0.1652 9.79947 -0.0223706 0.00106526 -0.0426106 0.09 -0.08 pose: 0.0 3.90565 0.0374322 0 -0.00259556 2.29476e-05 0.016186 0.999866 uwb: 0.0 838.331 634.311 +imu_odom_: 1691062796.146372543 0.794875 -0.0694318 9.50977 -0.0596548 -0.00213053 -0.036219 0.09 -0.08 pose: 0.34879476 3.91226 0.0299293 0 -0.00313357 -0.00328533 0.0159355 0.999863 uwb: 0.0 838.331 634.311 +imu_odom_: 1691062796.163349142 0.76375 -0.488417 10.0796 -0.056459 0.00106526 -0.0468716 0.08 -0.05 pose: 0.32048439 3.91977 0.0365375 0 -0.00163463 -0.00610327 0.0148312 0.99987 uwb: 0.49872570 838.198 634.01 +imu_odom_: 1691062796.180406820 0.754174 -0.488417 9.80426 -0.0628506 -0.0127832 -0.0660464 0.08 -0.05 pose: 0.0 3.91977 0.0365375 0 -0.00163463 -0.00610327 0.0148312 0.99987 uwb: 0.0 838.198 634.01 +imu_odom_: 1691062796.198407399 0.739808 -0.172383 9.88087 -0.0468716 -0.0127832 -0.0575243 0.06 -0.02 pose: 0.43971927 3.91977 0.0365375 0 -0.0036901 -0.00924128 0.0128294 0.999868 uwb: 0.49976980 837.903 633.344 +imu_odom_: 1691062796.212362806 0.617704 -0.160412 9.69891 -0.0596548 -0.00106526 -0.0255663 0.06 -0.02 pose: 0.0 3.91977 0.0365375 0 -0.0036901 -0.00924128 0.0128294 0.999868 uwb: 0.0 837.903 633.344 +imu_odom_: 1691062796.238367985 0.677559 -0.335188 9.82102 -0.0500674 0.0149137 -0.0500674 0.06 -0.02 pose: 0.0 3.91977 0.0365375 0 -0.0036901 -0.00924128 0.0128294 0.999868 uwb: 0.0 837.903 633.344 +imu_odom_: 1691062796.263513382 -0.823605 -0.191536 9.30626 -0.0585895 0.110787 0 0.05 0 pose: 0.8000517 3.91977 0.0365375 0 -0.00316702 -0.00991266 0.0124345 0.999869 uwb: 0.49983106 838.402 632.738 +imu_odom_: 1691062796.280418236 -1.39103 -0.407014 10.5153 -0.0479369 0.0127832 0.0181095 0.07 -0.02 pose: 0.0 3.91977 0.0365375 0 -0.00316702 -0.00991266 0.0124345 0.999869 uwb: 0.0 838.402 632.738 +imu_odom_: 1691062796.306398916 0.217872 0.0047884 9.96467 -0.0553937 -0.11931 0.0223706 0.07 -0.02 pose: 0.82069458 3.91977 0.0365375 0 -0.00316397 -0.00735028 0.00975922 0.99992 uwb: 0.50069433 839.8 631.562 +imu_odom_: 1691062796.323531840 0.574608 -0.342371 9.4547 -0.0532632 -0.0490022 0.0308927 0.08 0 pose: 0.0 3.91977 0.0365375 0 -0.00316397 -0.00735028 0.00975922 0.99992 uwb: 0.0 839.8 631.562 +imu_odom_: 1691062796.348390546 0.241814 -0.134075 9.93354 -0.0500674 -0.00106526 0.0127832 0.08 0 pose: 0.18060076 3.91977 0.0365375 0 -0.00265105 -0.00613782 0.00958651 0.999932 uwb: 0.49999729 839.869 630.84 +imu_odom_: 1691062796.375517116 -0.167594 -0.308852 10.1011 -0.0479369 -0.00319579 0.00745685 0.14 -0.02 pose: 0.42887867 3.93388 0.035602 0 -0.00251833 -0.00641303 0.00926035 0.999933 uwb: 0.0 839.869 630.84 +imu_odom_: 1691062796.391375241 -0.00957681-0.150835 10.0556 -0.0500674 -0.0298274 0.0191748 0.14 -0.02 pose: 0.0 3.93388 0.035602 0 -0.00251833 -0.00641303 0.00926035 0.999933 uwb: 0.0 839.869 630.84 +imu_odom_: 1691062796.408354173 0.184354 -0.433351 9.76834 -0.0436758 0 0.0191748 0.17 -0.05 pose: 0.23940887 3.93388 0.035602 0 -0.0018184 -0.00413595 0.00892253 0.99995 uwb: 0.50058059 838.11 631.197 +imu_odom_: 1691062796.425522094 0.0814029 -0.229843 10.0604 -0.0394148 -0.0127832 0.00532632 0.12 -0.02 pose: 0.0 3.93388 0.035602 0 -0.0018184 -0.00413595 0.00892253 0.99995 uwb: 0.0 838.11 631.197 +imu_odom_: 1691062796.451361617 0.409408 -0.19393 9.80186 -0.0585895 -0.0351537 0.0255663 0.13 0.02 pose: 0.70156469 3.94142 0.0421707 0 -0.0022171 0.00221454 0.00798491 0.999963 uwb: 0.49990688 838.186 630.495 +imu_odom_: 1691062796.477423959 0.253785 -0.208296 10.082 -0.0607201 -0.0340885 0.0447411 0.13 0 pose: 0.0 3.94142 0.0421707 0 -0.0022171 0.00221454 0.00798491 0.999963 uwb: 0.0 838.186 630.495 +imu_odom_: 1691062796.502404575 -0.071826 -0.351948 9.44273 -0.0639159 -0.00319579 0.0149137 0.13 0 pose: 0.32864182 3.94798 0.034625 0 -0.0001781970.000833138 0.00782421 0.999969 uwb: 0.49985147 839.089 629.922 +imu_odom_: 1691062796.519475668 -0.158017 -0.181959 9.72525 -0.0532632 -0.02024 0.0191748 0.14 0 pose: 0.44018299 3.95349 0.0394097 0 -0.0009849390.0048403 0.00756426 0.999959 uwb: 0.0 839.089 629.922 +imu_odom_: 1691062796.536460434 0.232238 -0.19393 10.1945 -0.0415453 -0.0575243 0.02024 0.14 0 pose: 0.7016201 3.95553 0.0411849 0 -0.0009068670.00548225 0.0074937 0.999956 uwb: 0.0 839.089 629.922 +imu_odom_: 1691062796.553363829 0.600945 -0.306458 9.26795 -0.0468716 -0.0468716 0.0181095 0.14 0 pose: 0.0 3.95553 0.0411849 0 -0.0009068670.00548225 0.0074937 0.999956 uwb: 0.49990980 837.779 630.443 +imu_odom_: 1691062796.578409191 0.497994 -0.146046 9.85453 -0.0340885 -0.0596548 0.0234358 0.18 -0.05 pose: 0.33932783 3.96209 0.0336338 0 0.000255055 0.00644225 0.00716055 0.999954 uwb: 0.0 837.779 630.443 +imu_odom_: 1691062796.595452870 1.12049 -0.112527 10.2615 -0.0468716 -0.0617853 0.0436758 0.18 -0.05 pose: 0.0 3.96209 0.0336338 0 0.000255055 0.00644225 0.00716055 0.999954 uwb: 0.0 837.779 630.443 +imu_odom_: 1691062796.611517774 0.802058 -0.435745 9.5385 -0.0585895 0.015979 0.0340885 0.17 -0.02 pose: 0.52099311 3.9663 0.0372911 0 0.00137636 2.66199e-05 0.00688842 0.999975 uwb: 0.49879861 839.417 628.908 +imu_odom_: 1691062796.629451857 0.25618 -0.0383072 10.6614 -0.0383495 -0.00852212 0.0149137 0.17 -0.02 pose: 0.0 3.9663 0.0372911 0 0.00137636 2.66199e-05 0.00688842 0.999975 uwb: 0.0 839.417 628.908 +imu_odom_: 1691062796.646328129 0.531513 -0.126893 10.1155 -0.0649811 0.00852212 0.0468716 0.15 0 pose: 0.0 3.9663 0.0372911 0 0.00137636 2.66199e-05 0.00688842 0.999975 uwb: 0.0 839.417 628.908 +imu_odom_: 1691062796.669620389 0.603339 -0.251391 10.137 -0.056459 -0.0394148 0.0298274 0.15 0 pose: 0.40958900 3.97619 0.0326227 0 0.00212319 -0.0005233530.00664995 0.999975 uwb: 0.50095682 838.685 628.995 +imu_odom_: 1691062796.694344645 -0.0622492 -0.143652 10.2448 -0.0607201 0.00106526 0.0500674 0.18 0 pose: 0.33208619 3.9814 0.0371334 0 0.00140464 -0.00388878 0.00657989 0.99997 uwb: 0.0 838.685 628.995 +imu_odom_: 1691062796.721385761 0.550666 -0.380678 9.72525 -0.0607201 -0.0479369 0.0223706 0.21 -0.02 pose: 0.0 3.9814 0.0371334 0 0.00140464 -0.00388878 0.00657989 0.99997 uwb: 0.49848947 839.443 628.077 +imu_odom_: 1691062796.737448041 0.0933739 -0.201113 9.84256 -0.0532632 0.0340885 0.0276969 0.18 0 pose: 0.31735791 3.98375 0.0391655 0 0.000905723 -0.0018839 0.00664603 0.999976 uwb: 0.0 839.443 628.077 +imu_odom_: 1691062796.754391392 0.141258 -0.237026 10.2232 -0.0649811 -0.0255663 0.0436758 0.18 0 pose: 0.0 3.98375 0.0391655 0 0.000905723 -0.0018839 0.00664603 0.999976 uwb: 0.50038227 840.521 627 +imu_odom_: 1691062796.770376677 0.488417 -0.366313 9.86411 -0.072438 -0.0394148 0.0223706 0.16 0 pose: 0.0 3.98375 0.0391655 0 0.000905723 -0.0018839 0.00664603 0.999976 uwb: 0.0 840.521 627 +imu_odom_: 1691062796.787311570 0.167594 -0.201113 9.78031 -0.0351537 0.0490022 0.02024 0.16 0 pose: 0.61032521 3.99786 0.0381453 0 -0.00158272 -0.0005409960.00634906 0.999978 uwb: 0.0 840.521 627 +imu_odom_: 1691062796.804367498 0.217872 -0.196325 9.81862 -0.0649811 -0.00639159 0.0617853 0.16 0 pose: 0.0 3.99786 0.0381453 0 -0.00158272 -0.0005409960.00634906 0.999978 uwb: 0.49976397 839.405 627.095 +imu_odom_: 1691062796.821364221 0.198719 -0.179565 9.68933 -0.0585895 -0.015979 0.0383495 0.24 0 pose: 0.41978797 3.99786 0.0381453 0 -0.0013603 0.00260268 0.00631174 0.999976 uwb: 0.0 839.405 627.095 +imu_odom_: 1691062796.837362921 0.287304 -0.253785 9.21528 -0.0500674 -0.0276969 0.0255663 0.24 0 pose: 0.0 3.99786 0.0381453 0 -0.0013603 0.00260268 0.00631174 0.999976 uwb: 0.0 839.405 627.095 +imu_odom_: 1691062796.854387351 0.131681 -0.294487 10.2017 -0.0617853 -0.00639159 0.0383495 0.24 0 pose: 0.25003656 4.01197 0.0372577 0 -0.00117813 0.00467546 0.00624786 0.999969 uwb: 0.50215841 838.837 626.674 +imu_odom_: 1691062796.871320203 0.687136 -0.42138 9.96467 -0.0649811 -0.0117179 0.0213053 0.17 0 pose: 0.0 4.01197 0.0372577 0 -0.00117813 0.00467546 0.00624786 0.999969 uwb: 0.0 838.837 626.674 +imu_odom_: 1691062796.886317380 -0.0430956 -0.23942 9.62469 -0.0415453 0.0436758 0.0223706 0.17 -0.02 pose: 0.0 4.01197 0.0372577 0 -0.00117813 0.00467546 0.00624786 0.999969 uwb: 0.0 838.837 626.674 +imu_odom_: 1691062796.911309954 0.648829 -0.47884 10.1059 -0.0596548 0.00426106 0.0436758 0.17 -0.02 pose: 0.33017589 4.01197 0.0372577 0 -0.00245641 0.00609606 0.00610403 0.99996 uwb: 0.49994188 839.798 625.314 +imu_odom_: 1691062796.936307193 0.577003 -0.035913 10.3046 -0.0372843 -0.0106526 0.0276969 0.23 -0.02 pose: 0.30956504 4.01197 0.0372577 0 -0.00295913 0.00649633 0.00590342 0.999957 uwb: 0.0 839.798 625.314 +imu_odom_: 1691062796.959347468 0.531513 -0.203507 10.3908 -0.0617853 -0.0127832 0.04048 0.23 -0.02 pose: 0.42961946 4.02609 0.0363586 0 -0.0019145 0.00308974 0.00578237 0.999977 uwb: 0.49886861 840.232 624.516 +imu_odom_: 1691062796.984465451 0.325611 -0.0790087 9.84496 -0.0266316 -0.0319579 0.0106526 0.19 0 pose: 0.0 4.02609 0.0363586 0 -0.0019145 0.00308974 0.00578237 0.999977 uwb: 0.0 840.232 624.516 +imu_odom_: 1691062797.1478506 0.732626 -0.277727 9.72525 -0.092678 -0.00106526 0.0500674 0.19 0 pose: 0.6042094 4.02609 0.0363586 0 -0.00177789 0.00247991 0.00578457 0.999979 uwb: 0.49877237 840.704 623.804 +imu_odom_: 1691062797.26479246 0.47884 -0.493206 9.61033 -0.0490022 0.0127832 0.0149137 0.22 -0.02 pose: 0.0 4.02609 0.0363586 0 -0.00177789 0.00247991 0.00578457 0.999979 uwb: 0.0 840.704 623.804 +imu_odom_: 1691062797.50398260 0.684742 -0.318429 10.0604 -0.0756338 -0.00639159 0.0511327 0.22 0 pose: 0.49124198 4.03359 0.0429626 0 0.00101522 0.00066273 0.00546833 0.999984 uwb: 0.49997980 840.128 623.359 +imu_odom_: 1691062797.65469808 0.136469 -0.399832 9.43076 -0.0468716 0.0127832 0.0351537 0.22 0 pose: 0.0 4.03359 0.0429626 0 0.00101522 0.00066273 0.00546833 0.999984 uwb: 0.0 840.128 623.359 +imu_odom_: 1691062797.90427676 0.124498 -0.0622492 9.82102 -0.0639159 0.02024 0.0543285 0.22 0 pose: 0.42093125 4.0402 0.0354505 0 -0.00200076 -0.00137842 0.00525469 0.999983 uwb: 0.0 840.128 623.359 +imu_odom_: 1691062797.107464064 0.131681 -0.416591 9.93354 -0.0628506 -0.00639159 0.0596548 0.17 0.02 pose: 0.0 4.0402 0.0354505 0 -0.00200076 -0.00137842 0.00525469 0.999983 uwb: 0.50092184 839.111 622.795 +imu_odom_: 1691062797.133325753 0.25618 -0.162806 10.0556 -0.0426106 0.0340885 0.0383495 0.17 0.02 pose: 0.38864570 4.04771 0.0420484 0 -0.00275085 -0.0008578460.00537333 0.999981 uwb: 0.0 839.111 622.795 +imu_odom_: 1691062797.157427922 0.490811 -0.361524 10.003 -0.04048 0.0223706 0.0372843 0.19 -0.02 pose: 0.0 4.04771 0.0420484 0 -0.00275085 -0.0008578460.00537333 0.999981 uwb: 0.49870530 837.826 622.526 +imu_odom_: 1691062797.172402351 0.129287 -0.0766145 9.49301 -0.0245011 -0.00213053 0.0298274 0.19 -0.02 pose: 0.0 4.04771 0.0420484 0 -0.00275085 -0.0008578460.00537333 0.999981 uwb: 0.0 837.826 622.526 +imu_odom_: 1691062797.197293723 0.497994 -0.414197 9.45231 -0.0639159 -0.0138484 0.0500674 0.17 0.02 pose: 0.8022391 4.05431 0.0345353 0 -0.00218607 0.00296043 0.00567854 0.999977 uwb: 0.50212343 838.585 621.562 +imu_odom_: 1691062797.222438830 0.806846 -0.205901 10.07 -0.0490022 -0.0596548 0.052198 0.17 0 pose: 0.81807268 4.07373 0.0382919 0 -0.00278832 0.00227573 0.00568948 0.999977 uwb: 0.0 838.585 621.562 +imu_odom_: 1691062797.236448484 0.847547 -0.277727 10.0628 -0.0745685 -0.0319579 0.0671117 0.22 0 pose: 0.0 4.07373 0.0382919 0 -0.00278832 0.00227573 0.00568948 0.999977 uwb: 0.0 838.585 621.562 +imu_odom_: 1691062797.261546635 0.744597 -0.141258 9.75398 -0.0479369 0.0213053 0.0266316 0.22 0 pose: 0.7036034 4.07593 0.0402323 0 -0.00266146 0.00138428 0.00573266 0.999979 uwb: 0.49855656 837.517 620.894 +imu_odom_: 1691062797.278354370 0.0502782 -0.268151 9.8689 -0.072438 0.00745685 0.0692422 0.17 0 pose: 0.0 4.07593 0.0402323 0 -0.00266146 0.00138428 0.00573266 0.999979 uwb: 0.0 837.517 620.894 +imu_odom_: 1691062797.303288031 0.31364 -0.148441 9.97903 -0.0543285 0.0149137 0.0383495 0.17 0 pose: 0.39062016 4.07593 0.0402323 0 -0.00221817 -0.00305739 0.0059863 0.999975 uwb: 0.50016647 836.226 620.63 +imu_odom_: 1691062797.320396456 0.799663 -0.172383 10.0987 -0.0617853 -0.00106526 0.0500674 0.18 0.02 pose: 0.0 4.07593 0.0402323 0 -0.00221817 -0.00305739 0.0059863 0.999975 uwb: 0.0 836.226 620.63 +imu_odom_: 1691062797.336279372 0.416591 -0.191536 9.89045 -0.0809601 -0.0245011 0.0628506 0.18 0.02 pose: 0.0 4.07593 0.0402323 0 -0.00221817 -0.00305739 0.0059863 0.999975 uwb: 0.0 836.226 620.63 +imu_odom_: 1691062797.363326031 0.622492 -0.0670376 10.4387 -0.0585895 0.0149137 0.0532632 0.24 0 pose: 0.42917325 4.09005 0.0393363 0 -0.00123695 -0.00199019 0.00610862 0.999979 uwb: 0.50034145 838.64 618.933 +imu_odom_: 1691062797.379291775 -0.035913 -0.37589 9.00699 -0.0916127 0.0340885 0.0607201 0.24 0 pose: 0.0 4.09005 0.0393363 0 -0.00123695 -0.00199019 0.00610862 0.999979 uwb: 0.0 838.64 618.933 +imu_odom_: 1691062797.406312477 -0.0885855 -0.296881 10.6111 -0.0479369 -0.0308927 0.0245011 0.25 0.02 pose: 0.57017682 4.10416 0.0384465 0 0.00114887 -0.00159959 0.00641732 0.999977 uwb: 0.49831449 841.258 616.766 +imu_odom_: 1691062797.422299803 0.215478 -0.225055 9.69412 -0.0745685 0.0308927 0.0511327 0.18 0 pose: 0.0 4.10416 0.0384465 0 0.00114887 -0.00159959 0.00641732 0.999977 uwb: 0.0 841.258 616.766 +imu_odom_: 1691062797.439352815 0.706289 -0.612916 9.2895 -0.0490022 -0.0213053 0.0426106 0.25 0.02 pose: 0.78973023 4.11827 0.0375682 0 0.00044241 0.00285468 0.00660564 0.999974 uwb: 0.0 841.258 616.766 +imu_odom_: 1691062797.456272835 0.371101 -0.0694318 10.5441 -0.0415453 -0.0681769 0.0383495 0.25 0.02 pose: 0.0 4.11827 0.0375682 0 0.00044241 0.00285468 0.00660564 0.999974 uwb: 0.50121640 840.309 616.371 +imu_odom_: 1691062797.480291301 0.146046 -0.198719 9.4978 -0.056459 0.00319579 0.0500674 0.18 0 pose: 0.33973032 4.11827 0.0375682 0 0.00103199 0.00103826 0.00662061 0.999977 uwb: 0.0 840.309 616.371 +imu_odom_: 1691062797.505346580 0.162806 -0.227449 9.63906 -0.0479369 -0.00426106 0.0532632 0.18 0 pose: 0.7015326 4.11827 0.0375682 0 0.00101279 0.00176562 0.00665668 0.999976 uwb: 0.50167429 839.911 615.416 +imu_odom_: 1691062797.522562915 0.220267 -0.208296 10.0652 -0.0447411 0.00213053 0.056459 0.22 -0.02 pose: 0.42058419 4.1304 0.0389074 0 0.000592148 0.00599224 0.00691105 0.999958 uwb: 0.0 839.911 615.416 +imu_odom_: 1691062797.547297672 0.328006 0.035913 9.93354 -0.0372843 -0.00958738 0.0511327 0.22 -0.02 pose: 0.0 4.1304 0.0389074 0 0.000592148 0.00599224 0.00691105 0.999958 uwb: 0.49736955 840.497 613.976 +imu_odom_: 1691062797.564413388 0.471658 -0.339977 9.46907 -0.0532632 -0.0287621 0.0511327 0.23 0 pose: 0.7136360 4.13238 0.0366858 0 0.000555227 0.00672481 0.00697015 0.999953 uwb: 0.0 840.497 613.976 +imu_odom_: 1691062797.581407487 0.483629 -0.071826 10.2185 -0.04048 0.0351537 0.0383495 0.23 0 pose: 0.0 4.13238 0.0366858 0 0.000555227 0.00672481 0.00697015 0.999953 uwb: 0.0 840.497 613.976 +imu_odom_: 1691062797.598285509 0.299275 -0.349553 9.8258 -0.04048 0.00639159 0.0383495 0.23 0 pose: 0.0 4.13238 0.0366858 0 0.000555227 0.00672481 0.00697015 0.999953 uwb: 0.50144681 840.431 612.859 +imu_odom_: 1691062797.614340790 0.275333 -0.0742203 9.97664 -0.056459 -0.0372843 0.0479369 0.26 0 pose: 0.41944676 4.13989 0.0432883 0 0.00261431 0.00633921 0.00725258 0.99995 uwb: 0.0 840.431 612.859 +imu_odom_: 1691062797.632282748 0.682347 -0.308852 9.62469 -0.0671117 0.0149137 0.0479369 0.26 0 pose: 0.0 4.13989 0.0432883 0 0.00261431 0.00633921 0.00725258 0.99995 uwb: 0.0 840.431 612.859 +imu_odom_: 1691062797.648306239 0.339977 -0.459687 10.0892 -0.0660464 -0.04048 0.0585895 0.18 0.02 pose: 0.77855132 4.15086 0.0395619 0 0.00208611 0.00333205 0.00743655 0.999965 uwb: 0.49775452 841.045 611.463 +imu_odom_: 1691062797.672421824 0.481235 -0.186748 10.2615 -0.0436758 -0.0191748 0.0223706 0.18 0.02 pose: 0.0 4.15086 0.0395619 0 0.00208611 0.00333205 0.00743655 0.999965 uwb: 0.0 841.045 611.463 +imu_odom_: 1691062797.689291972 0.457293 -0.248997 9.83777 -0.0468716 -0.0223706 0.0372843 0.18 0 pose: 0.7078906 4.154 0.0422883 0 0.00134059 0.00319074 0.00750136 0.999966 uwb: 0.0 841.045 611.463 +imu_odom_: 1691062797.714415205 0.600945 -0.289698 10.2185 -0.0223706 0.0372843 0.0298274 0.26 0 pose: 0.0 4.154 0.0422883 0 0.00134059 0.00319074 0.00750136 0.999966 uwb: 0.50138847 840.644 610.484 +imu_odom_: 1691062797.740320932 0.153229 -0.234632 10.0317 -0.0532632 0.0372843 0.0660464 0.17 0 pose: 0.75053551 4.16811 0.0412912 0 -0.000630525-0.00282555 0.00723697 0.99997 uwb: 0.0 840.644 610.484 +imu_odom_: 1691062797.757423816 0.227449 -0.191536 9.97903 -0.0468716 -0.0255663 0.0436758 0.17 0 pose: 0.0 4.16811 0.0412912 0 -0.000630525-0.00282555 0.00723697 0.99997 uwb: 0.50328128 839.392 610.337 +imu_odom_: 1691062797.782420474 0.201113 -0.107739 9.97424 -0.0575243 -0.0415453 0.0649811 0.21 0 pose: 0.32901222 4.17466 0.0337382 0 -0.00051414 0.000913798 0.00759626 0.999971 uwb: 0.0 839.392 610.337 +imu_odom_: 1691062797.807276264 0.356736 -0.114922 9.663 -0.0426106 -0.0170442 0.0340885 0.21 0.02 pose: 0.0 4.17466 0.0337382 0 -0.00051414 0.000913798 0.00759626 0.999971 uwb: 0.49654127 839.302 609.154 +imu_odom_: 1691062797.830452740 0.174777 -0.263362 9.69412 -0.0798948 -0.0223706 0.0745685 0.21 0.02 pose: 0.41991047 4.18221 0.0402959 0 0.00180707 0.00321889 0.00792171 0.999962 uwb: 0.0 839.302 609.154 +imu_odom_: 1691062797.855333904 0.191536 -0.25618 9.71088 -0.0543285 0.0308927 0.0276969 0.19 0 pose: 0.41145266 4.19188 0.0396226 0 0.00208165 0.0044006 0.00827307 0.999954 uwb: 0.0 839.302 609.154 +imu_odom_: 1691062797.872263840 -0.00718261-0.114922 10.1849 -0.0649811 -0.0117179 0.0490022 0.19 0 pose: 0.0 4.19188 0.0396226 0 0.00208165 0.0044006 0.00827307 0.999954 uwb: 0.0 839.302 609.154 +imu_odom_: 1691062797.897324660 0.665588 -0.0454898 10.0892 -0.0490022 0.00852212 0.0308927 0.18 0 pose: 0.41811100 4.19632 0.0393609 0 0.00113256 0.00847758 0.00819802 0.99993 uwb: 0.100110871 838.972 608.349 +imu_odom_: 1691062797.923405085 0.529119 -0.565032 9.53371 -0.0916127 -0.00426106 0.0607201 0.18 0 pose: 0.0 4.19632 0.0393609 0 0.00113256 0.00847758 0.00819802 0.99993 uwb: 0.0 838.972 608.349 +imu_odom_: 1691062797.948262042 0.191536 -0.37589 9.30387 -0.0511327 -0.00426106 0.036219 0.2 -0.02 pose: 0.51141245 4.20849 0.0407255 0 -0.0006407670.00486183 0.00836617 0.999953 uwb: 0.49720623 839.001 607.448 +imu_odom_: 1691062797.975414278 0.488417 -0.227449 10.319 -0.0553937 -0.0213053 0.0319579 0.2 -0.02 pose: 0.0 4.20849 0.0407255 0 -0.0006407670.00486183 0.00836617 0.999953 uwb: 0.0 839.001 607.448 +imu_odom_: 1691062797.991270945 0.474052 -0.201113 9.67497 -0.0394148 0.04048 0.0287621 0.17 0 pose: 0.31992735 4.21044 0.038527 0 -0.00240227 0.00565094 0.00828763 0.999947 uwb: 0.0 839.001 607.448 +imu_odom_: 1691062798.18378559 0.502782 -0.299275 9.44513 -0.0777643 0.0383495 0.0447411 0.17 0 pose: 0.0 4.21044 0.038527 0 -0.00240227 0.00565094 0.00828763 0.999947 uwb: 0.50338627 838.599 606.469 +imu_odom_: 1691062798.34382510 0.356736 -0.385466 10.1801 -0.0447411 0.0553937 0.0266316 0.19 0 pose: 0.43029027 4.22456 0.0376936 0 -0.00169882 0.00187261 0.00813818 0.999964 uwb: 0.0 838.599 606.469 +imu_odom_: 1691062798.52256514 0.383072 -0.308852 10.1083 -0.0394148 -0.036219 0.0458064 0.19 0 pose: 0.0 4.22456 0.0376936 0 -0.00169882 0.00187261 0.00813818 0.999964 uwb: 0.49825326 838.198 605.49 +imu_odom_: 1691062798.69326734 -0.134075 -0.629675 9.87848 0.00958738 -0.0266316 0.00639159 0.19 0 pose: 0.0 4.22456 0.0376936 0 -0.00169882 0.00187261 0.00813818 0.999964 uwb: 0.0 838.198 605.49 +imu_odom_: 1691062798.86350581 0.371101 0.272939 10.1754 -0.0553937 -0.0830906 0.0458064 0.18 -0.02 pose: 0.60905073 4.23203 0.0443343 0 -0.00556632 0.000603811 0.00801749 0.999952 uwb: 0.0 838.198 605.49 +imu_odom_: 1691062798.103311141 0.289698 -0.177171 9.23683 -0.131028 -0.052198 0.100135 0.18 -0.02 pose: 0.0 4.23203 0.0443343 0 -0.00556632 0.000603811 0.00801749 0.999952 uwb: 0.0 838.198 605.49 +imu_odom_: 1691062798.119307801 0.893037 -0.366313 10.4842 -0.0681769 -0.0372843 0.0394148 0.18 0 pose: 0.43979221 4.24283 0.0405514 0 -0.00342331 0.00144522 0.00843734 0.999958 uwb: 0.0 838.198 605.49 +imu_odom_: 1691062798.137375169 0.849942 -0.272939 9.91199 -0.0671117 -0.00213053 -0.00319579 0.18 0 pose: 0.0 4.24283 0.0405514 0 -0.00342331 0.00144522 0.00843734 0.999958 uwb: 0.0 838.198 605.49 +imu_odom_: 1691062798.153305040 0.497994 -0.19393 9.67257 -0.0692422 -0.00852212 0.0138484 0.18 0 pose: 0.0 4.24283 0.0405514 0 -0.00342331 0.00144522 0.00843734 0.999958 uwb: 0.100403981 838.832 604.088 +imu_odom_: 1691062798.177307467 -0.0526724 -0.368707 10.0844 -0.0394148 0.0276969 0.0394148 0.19 0 pose: 0.24072131 4.24615 0.043499 0 -0.00376841 -0.00120281 0.0082555 0.999958 uwb: 0.0 838.832 604.088 +imu_odom_: 1691062798.193257171 0.304064 -0.337582 10.1035 -0.0553937 -0.0138484 0.0511327 0.18 -0.02 pose: 0.0 4.24615 0.043499 0 -0.00376841 -0.00120281 0.0082555 0.999958 uwb: 0.0 838.832 604.088 +imu_odom_: 1691062798.220292164 0.667982 -0.203507 10.1227 -0.0468716 -0.0319579 0.0479369 0.18 -0.02 pose: 0.65873899 4.26027 0.0426578 0 -0.00367869 0.000982313 0.00792821 0.999961 uwb: 0.49599298 840.185 602.45 +imu_odom_: 1691062798.245396441 0.612916 -0.28491 10.173 -0.0543285 -0.00319579 0.0447411 0.23 0 pose: 0.8001392 4.26027 0.0426578 0 -0.00340986 0.000105611 0.00795943 0.999963 uwb: 0.0 840.185 602.45 +imu_odom_: 1691062798.262466369 0.237026 -0.21069 9.48104 -0.0191748 0.036219 0.0287621 0.23 0 pose: 0.0 4.26027 0.0426578 0 -0.00340986 0.000105611 0.00795943 0.999963 uwb: 0.49991858 839.869 601.665 +imu_odom_: 1691062798.287261789 0.438139 -0.306458 9.58878 -0.0575243 -0.0181095 0.0511327 0.22 0 pose: 0.44137878 4.27025 0.0420634 0 -0.00294708 -0.00447382 0.0080918 0.999953 uwb: 0.0 839.869 601.665 +imu_odom_: 1691062798.311296880 0.766145 -0.21069 10.2089 -0.0415453 -0.0553937 0.0553937 0.22 0 pose: 0.41865348 4.27439 0.0418185 0 -0.00470245 -0.00209332 0.00815373 0.999954 uwb: 0.50069145 839.466 600.662 +imu_odom_: 1691062798.326296391 0.876278 -0.148441 9.991 -0.0692422 -0.0426106 0.0703074 0.23 0 pose: 0.0 4.27439 0.0418185 0 -0.00470245 -0.00209332 0.00815373 0.999954 uwb: 0.0 839.466 600.662 +imu_odom_: 1691062798.351283425 0.581791 -0.227449 9.7037 -0.0436758 0.0287621 0.0351537 0.23 0 pose: 0.39034602 4.28189 0.0413752 0 -0.00336283 -0.00668608 0.00855754 0.999935 uwb: 0.49898822 839.848 599.597 +imu_odom_: 1691062798.368511718 0.011971 -0.311246 10.0868 -0.0692422 0.0106526 0.0628506 0.18 0 pose: 0.0 4.28189 0.0413752 0 -0.00336283 -0.00668608 0.00855754 0.999935 uwb: 0.0 839.848 599.597 +imu_odom_: 1691062798.384512461 0.517148 -0.217872 10.2304 -0.052198 -0.02024 0.0447411 0.18 0 pose: 0.0 4.28189 0.0413752 0 -0.00336283 -0.00668608 0.00855754 0.999935 uwb: 0.0 839.848 599.597 +imu_odom_: 1691062798.411397255 0.203507 -0.227449 10.252 -0.0649811 0.0511327 0.0543285 0.25 0.02 pose: 0.50007899 4.2885 0.0409898 0 -0.00099784 -0.00598398 0.00870361 0.999944 uwb: 0.49858282 838.834 599.091 +imu_odom_: 1691062798.436278420 0.172383 -0.260968 9.71328 -0.0468716 0.04048 0.0319579 0.25 0.02 pose: 0.35092965 4.3006 0.0423366 0 -0.000426482-0.00237213 0.00891909 0.999957 uwb: 0.0 838.834 599.091 +imu_odom_: 1691062798.453382762 0.395043 -0.0383072 9.73004 -0.0937433 -0.0511327 0.0575243 0.23 0 pose: 0.7910106 4.30261 0.0401571 0 -0.000508679-0.00141092 0.00888957 0.999959 uwb: 0.50170930 837.038 598.676 +imu_odom_: 1691062798.469433669 0.76375 -0.311246 9.82102 -0.0969391 0.0266316 0.0575243 0.18 0.02 pose: 0.0 4.30261 0.0401571 0 -0.000508679-0.00141092 0.00888957 0.999959 uwb: 0.0 837.038 598.676 +imu_odom_: 1691062798.487341796 0.347159 -0.35913 10.003 -0.0426106 0.0255663 0.0340885 0.25 -0.02 pose: 0.42135998 4.31014 0.0467341 0 0.000306101 -0.0004292990.00905416 0.999959 uwb: 0.0 837.038 598.676 +imu_odom_: 1691062798.511429676 -0.00957681-0.464475 9.58638 -0.0436758 0 0.0532632 0.25 -0.02 pose: 0.0 4.31014 0.0467341 0 0.000306101 -0.0004292990.00905416 0.999959 uwb: 0.50009065 835.649 598.277 +imu_odom_: 1691062798.537252575 0.148441 -0.1652 9.84017 -0.0234358 -0.0330232 0.0394148 0.23 -0.02 pose: 0.33830125 4.31672 0.0392036 0 -0.00189248 0.000745815 0.00913444 0.999956 uwb: 0.0 835.649 598.277 +imu_odom_: 1691062798.562258275 0.325611 -0.155623 9.55526 -0.052198 0.00213053 0.0458064 0.23 -0.02 pose: 0.0 4.31672 0.0392036 0 -0.00189248 0.000745815 0.00913444 0.999956 uwb: 0.50221094 836.357 596.999 +imu_odom_: 1691062798.586368903 0.490811 -0.186748 10.1155 -0.0543285 -0.0287621 0.0490022 0.21 0.02 pose: 0.50119600 4.32425 0.0457851 0 -0.0002553370.00419733 0.00928198 0.999948 uwb: 0.0 836.357 596.999 +imu_odom_: 1691062798.611376935 0.610521 -0.179565 10.2927 -0.0372843 -0.0490022 0.0468716 0.18 0 pose: 0.40975819 4.33083 0.0382576 0 0.00146894 0.00152233 0.00945798 0.999953 uwb: 0.49881323 836.065 596.28 +imu_odom_: 1691062798.628422073 0.11971 -0.222661 9.81144 -0.0287621 0.0213053 0.0458064 0.18 0 pose: 0.7026409 4.33083 0.0382576 0 0.00155504 0.000662866 0.00948434 0.999954 uwb: 0.0 836.065 596.28 +imu_odom_: 1691062798.644225369 0.129287 -0.428562 9.56005 -0.0607201 -0.00426106 0.0511327 0.18 0 pose: 0.0 4.33083 0.0382576 0 0.00155504 0.000662866 0.00948434 0.999954 uwb: 0.0 836.065 596.28 +imu_odom_: 1691062798.670286255 -0.215478 -0.339977 9.34457 -0.0266316 0.015979 0.0330232 0.18 0.02 pose: 0.40837285 4.33836 0.0448435 0 0.00134201 0.000794834 0.00963561 0.999952 uwb: 0.49747456 835.42 595.705 +imu_odom_: 1691062798.686267748 0.577003 0.059855 10.4986 -0.0468716 -0.0287621 0.0436758 0.18 0.02 pose: 0.0 4.33836 0.0448435 0 0.00134201 0.000794834 0.00963561 0.999952 uwb: 0.0 835.42 595.705 +imu_odom_: 1691062798.703290138 0.399832 -0.438139 9.16022 -0.0639159 -0.0191748 0.0415453 0.23 0 pose: 0.43048569 4.35247 0.0439092 0 0.000918558 0.00375068 0.00961989 0.999946 uwb: 0.49996232 833.794 595.76 +imu_odom_: 1691062798.728209800 0.411803 -0.488417 9.63427 -0.0788296 -0.0255663 0.0575243 0.18 0 pose: 0.0 4.35247 0.0439092 0 0.000918558 0.00375068 0.00961989 0.999946 uwb: 0.0 833.794 595.76 +imu_odom_: 1691062798.744191294 0.42138 -0.347159 9.71328 -0.072438 -0.02024 0.04048 0.23 0 pose: 0.34078026 4.35247 0.0439092 0 -0.00101984 0.00227266 0.00972404 0.99995 uwb: 0.0 833.794 595.76 +imu_odom_: 1691062798.761190351 0.299275 -0.146046 9.90721 -0.0191748 0.0149137 0.0223706 0.23 0 pose: 0.0 4.35247 0.0439092 0 -0.00101984 0.00227266 0.00972404 0.99995 uwb: 0.49998858 832.412 595.415 +imu_odom_: 1691062798.778198158 0.409408 -0.172383 9.90002 -0.0553937 -0.04048 0.0394148 0.24 0 pose: 0.49831159 4.36658 0.042977 0 -0.00255234 0.00173757 0.00973201 0.999948 uwb: 0.0 832.412 595.415 +imu_odom_: 1691062798.794266272 0.584185 -0.275333 10.0078 -0.0245011 0.0213053 0.0298274 0.24 0 pose: 0.0 4.36658 0.042977 0 -0.00255234 0.00173757 0.00973201 0.999948 uwb: 0.0 832.412 595.415 +imu_odom_: 1691062798.820262994 0.45011 -0.169988 10.2855 -0.0500674 0.00532632 0.0553937 0.25 -0.02 pose: 0.7124695 4.36658 0.042977 0 -0.00189703 0.00132573 0.00973218 0.99995 uwb: 0.50058645 831.771 594.867 +imu_odom_: 1691062798.836353273 0.234632 -0.246603 9.63906 -0.0490022 -0.0351537 0.0458064 0.25 -0.02 pose: 0.0 4.36658 0.042977 0 -0.00189703 0.00132573 0.00973218 0.99995 uwb: 0.0 831.771 594.867 +imu_odom_: 1691062798.862235086 0.397437 -0.25618 9.99819 -0.0617853 -0.052198 0.0596548 0.25 -0.02 pose: 0.0 4.36658 0.042977 0 -0.00189703 0.00132573 0.00973218 0.99995 uwb: 0.50128058 832.438 593.471 +imu_odom_: 1691062798.887333530 0.452504 -0.105345 10.1849 -0.0394148 -0.0170442 0.0383495 0.22 0 pose: 0.68038227 4.38069 0.0420461 0 0.000926014 -0.0003773790.00990319 0.99995 uwb: 0.0 832.438 593.471 +imu_odom_: 1691062798.904252675 0.488417 -0.100556 10.0173 -0.0788296 0 0.076699 0.22 0 pose: 0.0 4.38069 0.0420461 0 0.000926014 -0.0003773790.00990319 0.99995 uwb: 0.49930611 833.504 592.018 +imu_odom_: 1691062798.929349077 0.536301 -0.174777 10.24 -0.0756338 0.00319579 0.0298274 0.21 0.02 pose: 0.33980324 4.38069 0.0420461 0 -0.000834518-0.0007245850.0101572 0.999948 uwb: 0.0 833.504 592.018 +imu_odom_: 1691062798.946372050 0.600945 -0.143652 9.92875 -0.0436758 -0.0234358 0.036219 0.21 0.02 pose: 0.42021089 4.3948 0.0411269 0 0.00208049 -0.00290947 0.0104204 0.999939 uwb: 0.0 833.504 592.018 +imu_odom_: 1691062798.971191385 0.593762 -0.25618 10.1131 -0.0458064 -0.0308927 0.0287621 0.23 0.02 pose: 0.0 4.3948 0.0411269 0 0.00208049 -0.00290947 0.0104204 0.999939 uwb: 0.49994774 834.428 590.197 +imu_odom_: 1691062798.995306096 0.323217 -0.232238 10.161 -0.0703074 -0.00958738 0.0596548 0.23 0 pose: 0.41870598 4.40225 0.0478016 0 0.00190036 -0.00688769 0.0102757 0.999922 uwb: 0.0 834.428 590.197 +imu_odom_: 1691062799.10191573 -0.107739 -0.141258 9.64145 -0.0649811 -0.015979 0.0575243 0.23 0 pose: 0.0 4.40225 0.0478016 0 0.00190036 -0.00688769 0.0102757 0.999922 uwb: 0.50052521 833.028 589.826 +imu_odom_: 1691062799.25194293 0.289698 -0.397437 9.47864 -0.0447411 -0.00426106 0.0319579 0.23 0 pose: 0.47979479 4.40885 0.040287 0 0.000162987 -0.00513444 0.0104979 0.999932 uwb: 0.0 833.028 589.826 +imu_odom_: 1691062799.43254370 0.708684 -0.181959 10.0485 -0.0830906 -0.0276969 0.04048 0.24 0 pose: 0.0 4.40885 0.040287 0 0.000162987 -0.00513444 0.0104979 0.999932 uwb: 0.0 833.028 589.826 +imu_odom_: 1691062799.67216550 0.78051 -0.339977 9.63427 -0.0511327 0.0213053 0.0223706 0.24 0 pose: 0.41049607 4.42023 0.0425682 0 -0.00063029 -0.0052882 0.0105212 0.99993 uwb: 0.49880741 833.734 588.475 +imu_odom_: 1691062799.90389527 0.656011 -0.328006 9.79468 -0.0660464 -0.0468716 0.0490022 0.23 0 pose: 0.0 4.42023 0.0425682 0 -0.00063029 -0.0052882 0.0105212 0.99993 uwb: 0.0 833.734 588.475 +imu_odom_: 1691062799.115263401 0.718261 0.035913 9.87129 -0.0394148 -0.0106526 0.0319579 0.26 0 pose: 0.6965455 4.42297 0.0395182 0 -0.000871143-0.00584721 0.0104622 0.999928 uwb: 0.49977277 834.093 587.291 +imu_odom_: 1691062799.139265245 0.80924 -0.112527 9.97664 -0.0703074 -0.00532632 0.0458064 0.18 -0.02 pose: 0.0 4.42297 0.0395182 0 -0.000871143-0.00584721 0.0104622 0.999928 uwb: 0.0 834.093 587.291 +imu_odom_: 1691062799.164231281 0.646434 0.208296 10.0796 -0.0426106 -0.0330232 0.0351537 0.2 0 pose: 0.72111400 4.43041 0.0461936 0 -0.000120507-0.0112126 0.0103337 0.999884 uwb: 0.49903781 829.591 588.57 +imu_odom_: 1691062799.189227356 0.335188 -0.19393 10.2951 -0.0617853 0.00426106 0.036219 0.2 0 pose: 0.0 4.43041 0.0461936 0 -0.000120507-0.0112126 0.0103337 0.999884 uwb: 0.0 829.591 588.57 +imu_odom_: 1691062799.203189764 -0.0814029 -0.339977 9.26795 -0.0436758 0.0330232 0.0245011 0.2 0 pose: 0.48915382 4.44454 0.0454203 0 0.0031477 -0.0122341 0.0102771 0.999867 uwb: 0.49970569 826.07 589.228 +imu_odom_: 1691062799.226188626 0.035913 -0.248997 10.1801 -0.0692422 0.0138484 0.0553937 0.18 0 pose: 0.0 4.44454 0.0454203 0 0.0031477 -0.0122341 0.0102771 0.999867 uwb: 0.0 826.07 589.228 +imu_odom_: 1691062799.244186874 0.940921 -0.122104 10.2496 -0.0287621 -0.0127832 0.015979 0.18 0 pose: 0.38980357 4.45121 0.0379718 0 0.00239055 -0.00800842 0.0101951 0.999913 uwb: 0.0 826.07 589.228 +imu_odom_: 1691062799.260177409 0.699107 -0.023942 9.93594 -0.0596548 -0.0127832 0.0543285 0.21 0 pose: 0.0 4.45121 0.0379718 0 0.00239055 -0.00800842 0.0101951 0.999913 uwb: 0.49983984 827.071 587.583 +imu_odom_: 1691062799.286185215 0.509965 -0.351948 9.66539 -0.0500674 0.0276969 0.0383495 0.21 0 pose: 0.49950445 4.45866 0.044643 0 0.00364561 -0.00930254 0.0102204 0.999898 uwb: 0.0 827.071 587.583 +imu_odom_: 1691062799.310292928 0.229843 -0.184354 9.48583 -0.0628506 0.0138484 0.0511327 0.17 -0.02 pose: 0.0 4.45866 0.044643 0 0.00364561 -0.00930254 0.0102204 0.999898 uwb: 0.50267468 826.337 586.846 +imu_odom_: 1691062799.328229929 0.476446 -0.201113 10.0245 -0.0287621 0.00852212 0.0372843 0.17 -0.02 pose: 0.8008392 4.45866 0.044643 0 0.00290601 -0.00891822 0.0102224 0.999904 uwb: 0.0 826.337 586.846 +imu_odom_: 1691062799.352249855 0.610521 -0.0383072 10.647 -0.0436758 -0.0149137 0.0543285 0.18 0 pose: 0.0 4.45866 0.044643 0 0.00290601 -0.00891822 0.0102224 0.999904 uwb: 0.49831161 826.751 585.805 +imu_odom_: 1691062799.369258537 0.146046 -0.201113 9.39006 -0.0628506 0.0276969 0.0479369 0.2 0 pose: 0.84064054 4.47278 0.0438657 0 0.00295178 -0.00522622 0.0105159 0.999927 uwb: 0.0 826.751 585.805 +imu_odom_: 1691062799.385342400 0.289698 -0.107739 9.84496 -0.0372843 -0.00106526 0.0447411 0.18 0 pose: 0.0 4.47278 0.0438657 0 0.00295178 -0.00522622 0.0105159 0.999927 uwb: 0.0 826.751 585.805 +imu_odom_: 1691062799.403171491 0.864307 -0.181959 10.0437 -0.0798948 -0.0351537 0.0617853 0.18 0 pose: 0.0 4.47278 0.0438657 0 0.00295178 -0.00522622 0.0105159 0.999927 uwb: 0.50149641 828.556 584.012 +imu_odom_: 1691062799.419340808 0.203507 -0.323217 9.50498 -0.0532632 0.0330232 0.0415453 0.18 0 pose: 0.41046690 4.4869 0.0430975 0 0.00313652 -0.00261803 0.0107105 0.999934 uwb: 0.0 828.556 584.012 +imu_odom_: 1691062799.433174015 0.325611 -0.225055 10.2232 -0.0308927 0.00852212 0.0383495 0.18 0 pose: 0.0 4.4869 0.0430975 0 0.00313652 -0.00261803 0.0107105 0.999934 uwb: 0.0 828.556 584.012 +imu_odom_: 1691062799.457183441 0.423774 -0.35913 9.90721 -0.0735032 -0.00426106 0.0479369 0.18 0 pose: 0.39877470 4.49034 0.0461858 0 0.00171363 -0.0007288310.0108293 0.99994 uwb: 0.50042023 828.643 583.189 +imu_odom_: 1691062799.481212992 0.457293 -0.287304 9.75637 -0.0543285 -0.0500674 0.0447411 0.17 -0.02 pose: 0.8069638 4.49434 0.0497778 0 0.000833461 -0.00076577 0.0108636 0.99994 uwb: 0.0 828.643 583.189 +imu_odom_: 1691062799.498185801 0.433351 -0.107739 9.93594 -0.0788296 -0.0213053 0.0575243 0.17 -0.02 pose: 0.0 4.49434 0.0497778 0 0.000833461 -0.00076577 0.0108636 0.99994 uwb: 0.49922738 830.822 581.235 +imu_odom_: 1691062799.515182234 0.814029 -0.0981623 9.9503 -0.0458064 -0.0149137 0.0351537 0.18 -0.02 pose: 0.47012664 4.50102 0.0423376 0 -0.00223359 -0.00273295 0.0110557 0.999933 uwb: 0.0 830.822 581.235 +imu_odom_: 1691062799.530177371 0.574608 -0.129287 9.51216 -0.0948085 -0.0287621 0.0628506 0.18 -0.02 pose: 0.0 4.50102 0.0423376 0 -0.00223359 -0.00273295 0.0110557 0.999933 uwb: 0.0 830.822 581.235 +imu_odom_: 1691062799.553380097 0.471658 -0.177171 9.87848 -0.0745685 -0.0426106 0.0479369 0.17 0.02 pose: 0.33965159 4.50846 0.049022 0 -0.000248079-0.00488442 0.01118 0.999926 uwb: 0.49790913 829.719 580.617 +imu_odom_: 1691062799.579318490 0.54109 -0.213084 9.93354 -0.0681769 -0.0170442 0.0436758 0.23 0 pose: 0.31158621 4.51515 0.041586 0 0.00149608 -0.00421406 0.011356 0.999926 uwb: 0.0 829.719 580.617 +imu_odom_: 1691062799.604184782 0.526724 -0.282516 10.1083 -0.0234358 -0.0394148 0.0330232 0.17 0 pose: 0.7833694 4.51515 0.041586 0 0.00110968 -0.00497197 0.0113742 0.999922 uwb: 0.50061272 828.158 579.933 +imu_odom_: 1691062799.630168673 0.493206 -0.21069 9.52413 -0.0660464 -0.0234358 0.052198 0.2 0 pose: 0.42970991 4.52258 0.0482752 0 -0.0018469 -0.00680841 0.0113538 0.999911 uwb: 0.0 828.158 579.933 +imu_odom_: 1691062799.655229494 0.414197 -0.217872 9.92157 -0.052198 0.0234358 0.0511327 0.2 0 pose: 0.0 4.52258 0.0482752 0 -0.0018469 -0.00680841 0.0113538 0.999911 uwb: 0.49942570 826.69 579.494 +imu_odom_: 1691062799.672136974 0.474052 -0.143652 9.9503 -0.0585895 -0.0458064 0.0532632 0.2 0 pose: 0.51044712 4.5367 0.0475319 0 -0.000100639-0.00240399 0.0116534 0.999929 uwb: 0.0 826.69 579.494 +imu_odom_: 1691062799.697307747 0.751779 -0.258574 9.91678 -0.0298274 -0.0340885 0.0351537 0.22 0 pose: 0.0 4.5367 0.0475319 0 -0.000100639-0.00240399 0.0116534 0.999929 uwb: 0.0 826.69 579.494 +imu_odom_: 1691062799.723166813 1.01993 -0.0622492 9.81144 -0.0447411 0.00958738 0.0436758 0.23 -0.02 pose: 0.25112152 4.5367 0.0475319 0 0.00140437 -0.00417452 0.0117488 0.999921 uwb: 0.0 826.69 579.494 +imu_odom_: 1691062799.748149764 0.792481 0.00957681 9.97664 -0.0468716 0.0117179 0.0340885 0.23 -0.02 pose: 0.42825167 4.54856 0.0447669 0 0.00204142 -0.00838999 0.0117679 0.999893 uwb: 0.100356738 826.97 578.083 +imu_odom_: 1691062799.774366682 0.354342 -0.263362 9.5792 -0.072438 -0.0234358 0.0447411 0.22 0 pose: 0.8069346 4.55084 0.0467823 0 0.00259923 -0.00894013 0.011743 0.999888 uwb: 0.0 826.97 578.083 +imu_odom_: 1691062799.799327468 0.150835 -0.4956 9.93354 -0.0756338 -0.0319579 0.0617853 0.22 0 pose: 0.43130523 4.56026 0.046216 0 0.00236506 -0.00800366 0.0117585 0.999896 uwb: 0.49688253 827.063 577.257 +imu_odom_: 1691062799.817288093 0.335188 -0.402226 9.79228 -0.0607201 -0.0319579 0.04048 0.21 0.02 pose: 0.0 4.56026 0.046216 0 0.00236506 -0.00800366 0.0117585 0.999896 uwb: 0.0 827.063 577.257 +imu_odom_: 1691062799.832224317 0.244209 -0.122104 9.75158 -0.0127832 0.0117179 0.0255663 0.21 0.02 pose: 0.0 4.56026 0.046216 0 0.00236506 -0.00800366 0.0117585 0.999896 uwb: 0.0 827.063 577.257 +imu_odom_: 1691062799.858216082 0.459687 -0.181959 9.85693 -0.0447411 -0.0575243 0.0351537 0.23 0.02 pose: 0.50886347 4.56496 0.0459383 0 -0.000341415-0.00461787 0.0120005 0.999917 uwb: 0.50072937 828.895 575.398 +imu_odom_: 1691062799.880162383 0.620098 -0.169988 9.96227 -0.0372843 -0.0543285 0.0479369 0.23 0.02 pose: 0.32963053 4.57515 0.0453115 0 0.00241624 -0.00322366 0.0118858 0.999921 uwb: 0.0 828.895 575.398 +imu_odom_: 1691062799.897210438 0.543484 -0.378284 9.74919 -0.0490022 -0.00319579 0.0585895 0.19 0 pose: 0.6924041 4.57907 0.0450698 0 0.0024791 -0.00408873 0.0119162 0.999918 uwb: 0.50126601 829.649 574.057 +imu_odom_: 1691062799.922193973 0.675165 0.0215478 10.1658 -0.0298274 -0.0340885 0.0479369 0.19 0 pose: 0.32070315 4.579 0.0450594 0 0.000975613 -0.00617463 0.0121551 0.999907 uwb: 0.0 829.649 574.057 +imu_odom_: 1691062799.939130909 0.617704 -0.464475 9.40442 -0.0671117 0.036219 0.0607201 0.18 0.02 pose: 0.0 4.579 0.0450594 0 0.000975613 -0.00617463 0.0121551 0.999907 uwb: 0.0 829.649 574.057 +imu_odom_: 1691062799.964273684 0.579397 -0.232238 9.75158 -0.0511327 0.0415453 0.0436758 0.18 0.02 pose: 0.0 4.579 0.0450594 0 0.000975613 -0.00617463 0.0121551 0.999907 uwb: 0.49901448 828.761 572.919 +imu_odom_: 1691062799.981197788 0.409408 -0.177171 9.60075 -0.0830906 -0.0117179 0.0617853 0.21 0 pose: 0.41920471 4.58998 0.0478544 0 0.00162502 -0.00795473 0.0124431 0.99989 uwb: 0.0 828.761 572.919 +imu_odom_: 1691062799.997178699 0.751779 0.0047884 10.3046 -0.0617853 -0.0213053 0.0340885 0.21 0 pose: 0.0 4.58998 0.0478544 0 0.00162502 -0.00795473 0.0124431 0.99989 uwb: 0.50016358 827.083 573.063 +imu_odom_: 1691062800.23239586 0.0335188 -0.100556 10.1993 -0.0681769 0.0138484 0.0447411 0.25 0 pose: 0.58047790 4.6006 0.0510403 0 0.000833135 -0.00814241 0.0126454 0.999887 uwb: 0.0 827.083 573.063 +imu_odom_: 1691062800.48136502 0.64404 -0.260968 9.64145 -0.0553937 0.0127832 0.0213053 0.25 0 pose: 0.0 4.6006 0.0510403 0 0.000833135 -0.00814241 0.0126454 0.999887 uwb: 0.49829412 828.164 571.436 +imu_odom_: 1691062800.72138929 0.586579 -0.263362 9.65103 -0.0841559 0.00639159 0.0628506 0.21 0.02 pose: 0.32992802 4.60731 0.0436241 0 0.000816532 -0.00591069 0.0126448 0.999902 uwb: 0.0 828.164 571.436 +imu_odom_: 1691062800.89131280 0.620098 -0.272939 10.2232 -0.052198 -0.0149137 0.0298274 0.21 0.02 pose: 0.0 4.60731 0.0436241 0 0.000816532 -0.00591069 0.0126448 0.999902 uwb: 0.0 828.164 571.436 +imu_odom_: 1691062800.106266247 0.56982 0.227449 10.0604 -0.0458064 -0.00213053 0.0351537 0.21 0.02 pose: 0.25997308 4.61472 0.0503312 0 -0.00065005 -0.00788832 0.0125835 0.999889 uwb: 0.50179683 828.932 570.092 +imu_odom_: 1691062800.121193430 0.402226 -0.512359 10.0126 -0.0628506 0.0415453 0.0298274 0.19 -0.05 pose: 0.0 4.61472 0.0503312 0 -0.00065005 -0.00788832 0.0125835 0.999889 uwb: 0.0 828.932 570.092 +imu_odom_: 1691062800.138132117 0.711078 -0.385466 9.8689 -0.052198 0.0149137 0.0245011 0.19 -0.05 pose: 0.0 4.61472 0.0503312 0 -0.00065005 -0.00788832 0.0125835 0.999889 uwb: 0.0 828.932 570.092 +imu_odom_: 1691062800.163253602 1.08218 -0.19393 9.49301 -0.0713727 -0.00958738 0.0490022 0.2 -0.02 pose: 0.71981326 4.62885 0.0496264 0 -0.00257102 -0.00960132 0.0125314 0.999872 uwb: 0.49797039 828.26 569.5 +imu_odom_: 1691062800.189282116 0.548272 0.00718261 10.6326 -0.0479369 0.00106526 0.0287621 0.2 -0.02 pose: 0.35103467 4.62885 0.0496264 0 -0.0029914 -0.0127653 0.0125643 0.999835 uwb: 0.0 828.26 569.5 +imu_odom_: 1691062800.214133243 0.543484 -0.409408 9.63666 -0.0830906 0.0340885 0.0415453 0.19 -0.02 pose: 0.0 4.62885 0.0496264 0 -0.0029914 -0.0127653 0.0125643 0.999835 uwb: 0.50090438 831.536 566.795 +imu_odom_: 1691062800.239119403 0.397437 -0.270545 9.92157 -0.0596548 -0.0127832 0.0479369 0.2 0 pose: 0.50879641 4.64297 0.048914 0 -0.00314215 -0.0101901 0.0124448 0.999866 uwb: 0.0 831.536 566.795 +imu_odom_: 1691062800.264277344 0.299275 -0.196325 10.2951 -0.0617853 0.0106526 0.0319579 0.19 0 pose: 0.0 4.64297 0.048914 0 -0.00314215 -0.0101901 0.0124448 0.999866 uwb: 0.49942280 835.427 564.472 +imu_odom_: 1691062800.289185634 0.703895 -0.114922 10.0461 -0.0639159 -0.0287621 0.0340885 0.18 0 pose: 0.32136812 4.64297 0.048914 0 -0.0029404 -0.00706213 0.0125294 0.999892 uwb: 0.0 835.427 564.472 +imu_odom_: 1691062800.306125196 0.476446 -0.196325 9.59117 -0.0543285 0.00958738 0.0351537 0.18 0 pose: 0.0 4.64297 0.048914 0 -0.0029404 -0.00706213 0.0125294 0.999892 uwb: 0.49968529 835.493 563.493 +imu_odom_: 1691062800.331121272 0.557849 0.0167594 10.0413 -0.0628506 0.00852212 0.052198 0.18 0.02 pose: 0.49857994 4.6571 0.0482031 0 -0.000697631-0.00682666 0.0123629 0.9999 uwb: 0.0 835.493 563.493 +imu_odom_: 1691062800.355312689 0.445322 -0.318429 9.52413 -0.0511327 0.0276969 0.0383495 0.18 0.02 pose: 0.34993223 4.66725 0.0476881 0 0.00217832 -0.00609335 0.0124804 0.999901 uwb: 0.50039691 835.992 562.502 +imu_odom_: 1691062800.372150173 0.514753 -0.237026 10.307 -0.0415453 0.00958738 0.0351537 0.18 0.02 pose: 0.0 4.66725 0.0476881 0 0.00217832 -0.00609335 0.0124804 0.999901 uwb: 0.0 835.992 562.502 +imu_odom_: 1691062800.388130793 0.715866 -0.325611 9.70609 -0.0639159 -0.0468716 0.0543285 0.18 0.02 pose: 0.0 4.66725 0.0476881 0 0.00217832 -0.00609335 0.0124804 0.999901 uwb: 0.0 835.992 562.502 +imu_odom_: 1691062800.413168283 0.500388 0.0167594 9.80186 -0.0372843 -0.0170442 0.0468716 0.18 0.02 pose: 0.7020577 4.67122 0.0474876 0 0.00156121 -0.00566995 0.0124796 0.999905 uwb: 0.50023651 837.17 560.984 +imu_odom_: 1691062800.436108525 0.0335188 -0.19393 9.40203 -0.0617853 0.02024 0.0479369 0.23 0 pose: 0.41030359 4.67122 0.0474876 0 -0.00145019 -0.00636208 0.0124995 0.999901 uwb: 0.0 837.17 560.984 +imu_odom_: 1691062800.460112703 0.0023942 -0.225055 9.81144 -0.0660464 0.0170442 0.0543285 0.18 0.02 pose: 0.0 4.67122 0.0474876 0 -0.00145019 -0.00636208 0.0124995 0.999901 uwb: 0.50056898 835.308 560.676 +imu_odom_: 1691062800.484096465 0.950498 -0.318429 9.85214 -0.0617853 -0.0181095 0.04048 0.18 0.02 pose: 0.40971155 4.68535 0.0467761 0 0.000844896 -0.00630904 0.0126708 0.999899 uwb: 0.0 835.308 560.676 +imu_odom_: 1691062800.509123748 0.52433 -0.234632 9.91918 -0.0745685 0.015979 0.0692422 0.25 0 pose: 0.0 4.68535 0.0467761 0 0.000844896 -0.00630904 0.0126708 0.999899 uwb: 0.49939072 836.009 559.034 +imu_odom_: 1691062800.534120407 0.205901 -0.169988 10.3549 -0.0617853 0.0319579 0.0394148 0.25 0 pose: 0.48050353 4.69276 0.0534855 0 0.000317031 -0.00271562 0.0129158 0.999913 uwb: 0.0 836.009 559.034 +imu_odom_: 1691062800.559247434 0.356736 -0.184354 9.84975 -0.092678 -0.00639159 0.0617853 0.18 0 pose: 0.0 4.69276 0.0534855 0 0.000317031 -0.00271562 0.0129158 0.999913 uwb: 0.49993611 833.688 558.699 +imu_odom_: 1691062800.572247400 0.107739 -0.251391 9.76595 -0.072438 -0.00213053 0.0436758 0.18 0 pose: 0.48985379 4.69947 0.0460745 0 -0.00125956 -0.0054507 0.0132978 0.999896 uwb: 0.0 833.688 558.699 +imu_odom_: 1691062800.596243120 0.167594 0.0407014 10.0173 -0.0852212 -0.00745685 0.0490022 0.18 0 pose: 0.0 4.69947 0.0460745 0 -0.00125956 -0.0054507 0.0132978 0.999896 uwb: 0.49939072 832.643 558.264 +imu_odom_: 1691062800.614372027 0.80924 -0.409408 10.1754 -0.0969391 0.0170442 0.0617853 0.18 0 pose: 0.47981816 4.70688 0.0527925 0 -0.000563915-0.0006092440.0135844 0.999907 uwb: 0.0 832.643 558.264 +imu_odom_: 1691062800.638245837 0.905008 -0.0814029 10.1562 -0.0585895 -0.00745685 0.036219 0.19 0 pose: 0.0 4.70688 0.0527925 0 -0.000563915-0.0006092440.0135844 0.999907 uwb: 0.0 832.643 558.264 +imu_odom_: 1691062800.664299725 0.464475 -0.337582 9.52892 -0.0649811 0.02024 0.0383495 0.19 0 pose: 0.39113350 4.72101 0.0521115 0 0.000236112 0.00101265 0.0138031 0.999904 uwb: 0.49986903 834.671 556.624 +imu_odom_: 1691062800.680097772 0.011971 -0.220267 9.93594 -0.02024 -0.0191748 0.0351537 0.19 0 pose: 0.0 4.72101 0.0521115 0 0.000236112 0.00101265 0.0138031 0.999904 uwb: 0.0 834.671 556.624 +imu_odom_: 1691062800.704096117 0.323217 -0.215478 9.63427 -0.0553937 -0.0213053 0.0436758 0.19 0 pose: 0.41863600 4.72101 0.0521115 0 -0.000579001-0.00217429 0.0138714 0.999901 uwb: 0.50138560 835.456 555.179 +imu_odom_: 1691062800.728106419 0.577003 -0.323217 9.96467 -0.056459 -0.0468716 0.0532632 0.27 0.02 pose: 0.0 4.72101 0.0521115 0 -0.000579001-0.00217429 0.0138714 0.999901 uwb: 0.0 835.456 555.179 +imu_odom_: 1691062800.753099579 0.761356 -0.244209 9.90721 -0.0436758 -0.0394148 0.0447411 0.27 0.02 pose: 0.42107128 4.73513 0.0514377 0 -0.00174879 -0.0001243980.0138517 0.999903 uwb: 0.50012860 837.029 553.449 +imu_odom_: 1691062800.776204602 0.47884 -0.328006 9.6606 -0.0777643 -0.0436758 0.0660464 0.18 -0.02 pose: 0.0 4.73513 0.0514377 0 -0.00174879 -0.0001243980.0138517 0.999903 uwb: 0.0 837.029 553.449 +imu_odom_: 1691062800.793091376 0.746991 -0.222661 10.1227 -0.0500674 0.0234358 0.0415453 0.18 -0.02 pose: 0.87959613 4.74926 0.0507698 0 -0.00438119 -0.00468062 0.0144241 0.999875 uwb: 0.0 837.029 553.449 +imu_odom_: 1691062800.816089656 0.667982 0.0263362 10.0485 -0.04048 -0.0298274 0.0372843 0.2 -0.02 pose: 0.0 4.74926 0.0507698 0 -0.00438119 -0.00468062 0.0144241 0.999875 uwb: 0.49986902 839.077 551.784 +imu_odom_: 1691062800.841198308 0.167594 0.0215478 10.0006 -0.0681769 -0.0394148 0.0468716 0.2 -0.02 pose: 0.7945688 4.74926 0.0507698 0 -0.00410724 -0.00532321 0.014427 0.999873 uwb: 0.0 839.077 551.784 +imu_odom_: 1691062800.858139912 0.0143652 -0.28491 9.87129 -0.0490022 0.00426106 0.0500674 0.22 0 pose: 0.0 4.74926 0.0507698 0 -0.00410724 -0.00532321 0.014427 0.999873 uwb: 0.49714211 839.942 550.501 +imu_odom_: 1691062800.881083945 0.462081 -0.378284 9.8689 -0.0713727 -0.0234358 0.0436758 0.22 0 pose: 0.39950383 4.76339 0.0501116 0 -0.00111154 -0.00674849 0.0144165 0.999873 uwb: 0.0 839.942 550.501 +imu_odom_: 1691062800.907228827 0.770933 -0.174777 10.3789 -0.0394148 -0.0191748 0.0255663 0.21 0 pose: 0.0 4.76339 0.0501116 0 -0.00111154 -0.00674849 0.0144165 0.999873 uwb: 0.50137685 838.023 550.09 +imu_odom_: 1691062800.932170948 0.672771 -0.380678 9.72525 -0.0308927 -0.00745685 0.0330232 0.21 0 pose: 0.83128154 4.77542 0.0517504 0 -0.00179207 -0.0065493 0.0144274 0.999873 uwb: 0.0 838.023 550.09 +imu_odom_: 1691062800.950095701 0.263362 -0.0957681 10.07 -0.0351537 -0.0458064 0.0500674 0.2 -0.02 pose: 0.0 4.77542 0.0517504 0 -0.00179207 -0.0065493 0.0144274 0.999873 uwb: 0.50178516 837.439 549.701 +imu_odom_: 1691062800.974261744 0.0622492 -0.292093 9.14346 -0.0628506 -0.0223706 0.0490022 0.2 -0.02 pose: 0.33019342 4.77751 0.0494576 0 -0.00263865 -0.00792933 0.0143973 0.999861 uwb: 0.0 837.439 549.701 +imu_odom_: 1691062800.998134971 0.442927 -0.196325 9.82102 -0.052198 -0.00852212 0.0553937 0.23 0 pose: 0.0 4.77751 0.0494576 0 -0.00263865 -0.00792933 0.0143973 0.999861 uwb: 0.49807831 838.885 547.535 +imu_odom_: 1691062801.23083217 0.117316 -0.258574 9.92397 -0.0458064 0.0319579 0.0383495 0.23 0 pose: 0.41961887 4.79164 0.0487993 0 -0.00176439 -0.00457222 0.0146307 0.999881 uwb: 0.0 838.885 547.535 +imu_odom_: 1691062801.48082210 0.136469 -0.306458 9.83538 -0.0809601 -0.0117179 0.0756338 0.19 0 pose: 0.40873161 4.79673 0.0534404 0 -0.00071119 -0.0005911130.0147407 0.999891 uwb: 0.50130978 837.834 547.087 +imu_odom_: 1691062801.65137558 0.73502 0.0311246 10.2831 -0.0639159 -0.0330232 0.0383495 0.19 0 pose: 0.0 4.79673 0.0534404 0 -0.00071119 -0.0005911130.0147407 0.999891 uwb: 0.0 837.834 547.087 +imu_odom_: 1691062801.89207940 0.263362 -0.110133 10.2065 -0.0639159 0.0170442 0.0458064 0.18 0.02 pose: 0.8070514 4.79903 0.0555375 0 -0.00104345 0.000152137 0.0148868 0.999889 uwb: 0.0 837.834 547.087 +imu_odom_: 1691062801.114192643 0.861913 -0.107739 10.0365 -0.0447411 -0.0191748 0.0266316 0.18 0.02 pose: 0.0 4.79903 0.0555375 0 -0.00104345 0.000152137 0.0148868 0.999889 uwb: 0.49871703 837.905 546.038 +imu_odom_: 1691062801.128184216 0.517148 -0.328006 9.51216 -0.0628506 -0.0127832 0.0553937 0.18 -0.02 pose: 0.0 4.79903 0.0555375 0 -0.00104345 0.000152137 0.0148868 0.999889 uwb: 0.0 837.905 546.038 +imu_odom_: 1691062801.145066616 1.08697 -0.248997 9.89763 -0.076699 -0.0149137 0.0585895 0.18 -0.02 pose: 0.41976178 4.80577 0.048153 0 -0.0002706440.000819158 0.0152081 0.999884 uwb: 0.0 837.905 546.038 +imu_odom_: 1691062801.159129935 0.720655 -0.0646434 9.67497 -0.0660464 0.0117179 0.0330232 0.18 -0.02 pose: 0.0 4.80577 0.048153 0 -0.0002706440.000819158 0.0152081 0.999884 uwb: 0.49980488 835.301 546.252 +imu_odom_: 1691062801.175067391 0.577003 -0.306458 9.47146 -0.072438 0.0138484 0.0372843 0.19 -0.05 pose: 0.48002232 4.81315 0.0548987 0 0.000752232 -0.0008771670.0151553 0.999874 uwb: 0.0 835.301 546.252 +imu_odom_: 1691062801.192099989 0.591368 -0.213084 10.3669 -0.0543285 -0.0319579 0.0351537 0.19 -0.05 pose: 0.0 4.82335 0.0506737 0 0.000581114 -0.00421611 0.0153235 0.999874 uwb: 0.0 835.301 546.252 +imu_odom_: 1691062801.207042630 0.349553 -0.280122 9.70849 -0.036219 0.0351537 0.0372843 0.18 0 pose: 0.0 4.82335 0.0506737 0 0.000581114 -0.00421611 0.0153235 0.999874 uwb: 0.50028901 832.991 546.07 +imu_odom_: 1691062801.224292508 0.25618 -0.349553 10.3238 -0.056459 0.0500674 0.0458064 0.18 0 pose: 0.8010142 4.82728 0.0542628 0 -6.58787e-05-0.00470103 0.0153168 0.999872 uwb: 0.0 832.991 546.07 +imu_odom_: 1691062801.249075389 0.746991 -0.42138 9.98143 -0.0511327 0.0415453 0.0287621 0.18 0 pose: 0.0 4.82728 0.0542628 0 -6.58787e-05-0.00470103 0.0153168 0.999872 uwb: 0.0 832.991 546.07 +imu_odom_: 1691062801.275061615 0.54109 -0.11971 10.3956 -0.052198 -0.0234358 0.0468716 0.21 -0.02 pose: 0.47951777 4.82728 0.0542628 0 -0.000989934-0.00441667 0.0152842 0.999873 uwb: 0.0 832.991 546.07 +imu_odom_: 1691062801.300067899 0.361524 -0.126893 10.0796 -0.0287621 -0.015979 0.0234358 0.19 0 pose: 0.0 4.82728 0.0542628 0 -0.000989934-0.00441667 0.0152842 0.999873 uwb: 0.100003848 829.115 546.561 +imu_odom_: 1691062801.317135496 0.536301 -0.452504 9.47625 -0.0841559 -0.0117179 0.052198 0.19 0 pose: 0.69034798 4.84141 0.053629 0 0.000476873 -0.0049947 0.0151887 0.999872 uwb: 0.0 829.115 546.561 +imu_odom_: 1691062801.342091617 0.0790087 -0.289698 9.32542 -0.0436758 -0.00213053 0.0276969 0.18 -0.02 pose: 0.0 4.84141 0.053629 0 0.000476873 -0.0049947 0.0151887 0.999872 uwb: 0.0 829.115 546.561 +imu_odom_: 1691062801.368046927 0.272939 -0.383072 9.85693 -0.0745685 -0.0245011 0.0436758 0.18 -0.02 pose: 0.42124919 4.85554 0.0529914 0 -0.00053273 -0.00327928 0.0151175 0.99988 uwb: 0.49839622 827.874 545.673 +imu_odom_: 1691062801.392047314 0.292093 -0.272939 10.0916 -0.0426106 -0.00532632 0.036219 0.18 -0.02 pose: 0.0 4.85554 0.0529914 0 -0.00053273 -0.00327928 0.0151175 0.99988 uwb: 0.0 827.874 545.673 +imu_odom_: 1691062801.416052951 0.0670376 -0.519542 9.95748 -0.0660464 -0.00852212 0.0649811 0.18 -0.02 pose: 0.48835765 4.86292 0.0597359 0 -0.00276167 0.000596783 0.0150731 0.999882 uwb: 0.50126604 829.098 544.107 +imu_odom_: 1691062801.433101590 0.486023 -0.0909797 9.89763 -0.0287621 -0.0426106 0.0383495 0.19 0 pose: 0.0 4.86292 0.0597359 0 -0.00276167 0.000596783 0.0150731 0.999882 uwb: 0.0 829.098 544.107 +imu_odom_: 1691062801.458107875 0.797269 -0.335188 9.75158 -0.0596548 -0.0458064 0.0511327 0.19 0 pose: 0.47974817 4.86966 0.0523522 0 -0.00379466 0.00346748 0.015352 0.999869 uwb: 0.49909034 829.134 542.99 +imu_odom_: 1691062801.476096791 0.351948 -0.306458 9.51935 -0.0255663 0.0372843 0.0298274 0.18 0 pose: 0.0 4.86966 0.0523522 0 -0.00379466 0.00346748 0.015352 0.999869 uwb: 0.0 829.134 542.99 +imu_odom_: 1691062801.500157841 0.423774 -0.337582 9.61272 -0.0628506 0.00426106 0.052198 0.18 0 pose: 0.43044781 4.88379 0.0517201 0 -0.00351037 0.00053536 0.0154477 0.999874 uwb: 0.50042317 829.245 542.07 +imu_odom_: 1691062801.526090986 0.696713 -0.337582 10.3477 -0.0436758 -0.0660464 0.0543285 0.2 0 pose: 0.34050907 4.88873 0.056238 0 -0.00558712 -4.88642e-050.0155433 0.999864 uwb: 0.0 829.245 542.07 +imu_odom_: 1691062801.550026918 0.610521 -0.0383072 9.67018 -0.0649811 -0.00852212 0.036219 0.2 0 pose: 0.0 4.88873 0.056238 0 -0.00558712 -4.88642e-050.0155433 0.999864 uwb: 0.50168893 827.381 541.966 +imu_odom_: 1691062801.574117133 -0.567426 0.0861913 11.3174 -0.0532632 -0.0234358 0.0490022 0.2 0 pose: 0.7912148 4.89117 0.0584699 0 -0.00554801 -0.00108472 0.0155985 0.999862 uwb: 0.0 827.381 541.966 +imu_odom_: 1691062801.599050214 0.349553 0.0837971 10.5608 -0.0607201 -0.0596548 0.0426106 0.23 0 pose: 0.0 4.89117 0.0584699 0 -0.00554801 -0.00108472 0.0155985 0.999862 uwb: 0.49826789 826.706 541.392 +imu_odom_: 1691062801.615162951 0.344765 -0.435745 9.38048 -0.0681769 -0.0213053 0.0532632 0.23 0 pose: 0.50020735 4.89792 0.0510937 0 -0.00315286 -0.00386302 0.0157107 0.999864 uwb: 0.0 826.706 541.392 +imu_odom_: 1691062801.641174550 0.318429 -0.232238 9.95748 -0.0671117 -0.00319579 0.0394148 0.18 -0.02 pose: 0.0 4.89792 0.0510937 0 -0.00315286 -0.00386302 0.0157107 0.999864 uwb: 0.0 826.706 541.392 +imu_odom_: 1691062801.665046320 0.258574 0.0430956 9.84017 -0.0841559 -0.0191748 0.0543285 0.18 -0.02 pose: 0.47959651 4.9053 0.0578475 0 -0.00097551 -0.00220874 0.0158747 0.999871 uwb: 0.50000320 828.375 539.737 +imu_odom_: 1691062801.683176977 0.536301 -0.351948 10.1227 -0.0948085 -0.00639159 0.0585895 0.2 0 pose: 0.0 4.9053 0.0578475 0 -0.00097551 -0.00220874 0.0158747 0.999871 uwb: 0.0 828.375 539.737 +imu_odom_: 1691062801.707095994 0.80924 -0.150835 10.3286 -0.0660464 0.00745685 0.0436758 0.2 0 pose: 0.42036842 4.91943 0.0572308 0 -0.00111297 0.00092254 0.0159928 0.999871 uwb: 0.50043193 827.652 539.029 +imu_odom_: 1691062801.733032056 0.414197 -0.244209 9.89763 -0.0585895 0.0117179 0.036219 0.23 0.05 pose: 0.0 4.91943 0.0572308 0 -0.00111297 0.00092254 0.0159928 0.999871 uwb: 0.0 827.652 539.029 +imu_odom_: 1691062801.757141520 0.603339 -0.500388 9.80426 -0.0553937 -0.0127832 0.0468716 0.23 0.05 pose: 0.43095236 4.91943 0.0572308 0 -0.00119735 -0.0006324720.016307 0.999866 uwb: 0.49995361 828.187 538.002 +imu_odom_: 1691062801.774063583 0.622492 -0.229843 9.50737 -0.0585895 0.00106526 0.0458064 0.19 0.02 pose: 0.0 4.91943 0.0572308 0 -0.00119735 -0.0006324720.016307 0.999866 uwb: 0.0 828.187 538.002 +imu_odom_: 1691062801.798086135 0.28491 -0.373495 9.80426 -0.0468716 -0.02024 0.0543285 0.19 0.02 pose: 0.48918885 4.93355 0.0566261 0 -0.00244234 3.31959e-05 0.0163224 0.999864 uwb: 0.50006153 826.762 537.881 +imu_odom_: 1691062801.823185164 0.555455 -0.143652 10.137 -0.0415453 -0.0372843 0.0372843 0.2 0 pose: 0.0 4.93355 0.0566261 0 -0.00244234 3.31959e-05 0.0163224 0.999864 uwb: 0.0 826.762 537.881 +imu_odom_: 1691062801.848038333 0.454898 -0.1652 9.86411 -0.0628506 -0.0149137 0.0607201 0.2 0 pose: 0.41209725 4.94092 0.0633891 0 -0.00360402 -0.00217414 0.0164843 0.999855 uwb: 0.49851871 826.301 536.649 +imu_odom_: 1691062801.873301852 0.682347 -0.0933739 10.5153 -0.0468716 0.0585895 0.0308927 0.19 0 pose: 0.49875494 4.94769 0.0560246 0 -0.00148906 -0.00287192 0.0166626 0.999856 uwb: 0.0 826.301 536.649 +imu_odom_: 1691062801.890038719 0.148441 -0.407014 9.9503 -0.0426106 0.00958738 0.0351537 0.19 0 pose: 0.0 4.94769 0.0560246 0 -0.00148906 -0.00287192 0.0166626 0.999856 uwb: 0.0 826.301 536.649 +imu_odom_: 1691062801.915031004 0.323217 -0.215478 9.8282 -0.0479369 0.0117179 0.036219 0.2 0.02 pose: 0.24881459 4.95505 0.062793 0 0.000558119 -0.00331854 0.0168003 0.999853 uwb: 0.50219640 822.726 536.974 +imu_odom_: 1691062801.940172031 0.696713 -0.292093 10.3765 -0.0660464 -0.052198 0.0553937 0.19 0 pose: 0.42096630 4.96182 0.0554326 0 0.00058359 -0.00189506 0.0166753 0.999859 uwb: 0.0 822.726 536.974 +imu_odom_: 1691062801.965110653 0.691924 -0.385466 9.91439 -0.0330232 0.0308927 0.0234358 0.19 0 pose: 0.42007385 4.9738 0.0571743 0 -0.000342623-0.0031102 0.0168462 0.999853 uwb: 0.49871703 821.268 536.804 +imu_odom_: 1691062801.981106730 0.23942 -0.308852 9.96946 -0.04048 0.00958738 0.0298274 0.19 0 pose: 0.0 4.9738 0.0571743 0 -0.000342623-0.0031102 0.0168462 0.999853 uwb: 0.0 821.268 536.804 +imu_odom_: 1691062802.6030770 0.174777 -0.354342 9.89045 -0.0191748 0.00745685 0.0319579 0.18 0.02 pose: 0.7952979 4.97595 0.0548388 0 -0.000708434-0.00362455 0.0167834 0.999852 uwb: 0.50119313 823.709 534.689 +imu_odom_: 1691062802.29020594 0.299275 -0.289698 9.76595 -0.056459 -0.00213053 0.0617853 0.18 0 pose: 0.0 4.97595 0.0548388 0 -0.000708434-0.00362455 0.0167834 0.999852 uwb: 0.0 823.709 534.689 +imu_odom_: 1691062802.45005589 0.572214 -0.0837971 10.1347 -0.0436758 -0.0532632 0.0426106 0.18 0 pose: 0.0 4.97595 0.0548388 0 -0.000708434-0.00362455 0.0167834 0.999852 uwb: 0.0 823.709 534.689 +imu_odom_: 1691062802.70138158 0.543484 -0.237026 9.9503 -0.0628506 -0.0490022 0.0628506 0.25 -0.02 pose: 0.40049253 4.98331 0.0616068 0 -0.00190567 -0.00235954 0.0165513 0.999858 uwb: 0.0 823.709 534.689 +imu_odom_: 1691062802.92993823 0.301669 -0.196325 9.90002 -0.0351537 -0.0170442 0.0383495 0.25 -0.02 pose: 0.81963895 4.99744 0.0610118 0 -0.00153765 -0.00296905 0.0170621 0.999849 uwb: 0.0 823.709 534.689 +imu_odom_: 1691062802.109009150 0.505177 -0.112527 9.82102 -0.0777643 -0.0170442 0.0777643 0.25 -0.02 pose: 0.0 4.99744 0.0610118 0 -0.00153765 -0.00296905 0.0170621 0.999849 uwb: 0.99884566 822.737 534.58 +imu_odom_: 1691062802.133993270 0.605733 -0.0861913 10.1059 -0.0713727 -0.0191748 0.0394148 0.19 0 pose: 0.6891085 4.99744 0.0610118 0 -0.00127388 -0.00234931 0.0170586 0.999851 uwb: 0.0 822.737 534.58 +imu_odom_: 1691062802.158065404 0.158017 -0.122104 10.3765 -0.0639159 0.015979 0.0468716 0.18 0.02 pose: 0.0 4.99744 0.0610118 0 -0.00127388 -0.00234931 0.0170586 0.999851 uwb: 0.50012571 822.835 533.613 +imu_odom_: 1691062802.181996670 0.61531 -0.136469 10.0341 -0.0500674 0.0149137 0.0287621 0.18 0.02 pose: 0.40087169 5.01157 0.0604326 0 0.000895099 -0.00265292 0.0173528 0.999846 uwb: 0.0 822.835 533.613 +imu_odom_: 1691062802.197990415 0.636858 -0.481235 10.082 -0.0330232 -0.0223706 0.0383495 0.18 0.02 pose: 0.0 5.01157 0.0604326 0 0.000895099 -0.00265292 0.0173528 0.999846 uwb: 0.50143521 821.228 533.069 +imu_odom_: 1691062802.214995599 0.122104 -0.430956 9.36133 -0.02024 0.015979 0.0213053 0.23 -0.02 pose: 0.0 5.01157 0.0604326 0 0.000895099 -0.00265292 0.0173528 0.999846 uwb: 0.0 821.228 533.069 +imu_odom_: 1691062802.238039086 0.888249 0.124498 10.5177 -0.0458064 -0.0500674 0.0681769 0.23 -0.02 pose: 0.47884407 5.01157 0.0604326 0 0.00221827 -0.00211265 0.0173955 0.999844 uwb: 0.0 821.228 533.069 +imu_odom_: 1691062802.263045955 0.351948 0.0981623 10.1682 -0.0980043 -0.0458064 0.0671117 0.25 0 pose: 0.41002947 5.0257 0.0598582 0 0.00108994 -0.00375202 0.0172329 0.999844 uwb: 0.49853330 823.679 530.908 +imu_odom_: 1691062802.286067860 0.600945 0.035913 10.2208 -0.0703074 -0.0852212 0.0266316 0.18 -0.02 pose: 0.32035320 5.0257 0.0598582 0 0.00228833 -0.00524775 0.0174792 0.999831 uwb: 0.0 823.679 530.908 +imu_odom_: 1691062802.310065914 0.876278 -0.265756 10.0604 -0.0660464 -0.00213053 0.0287621 0.18 -0.02 pose: 0.7979520 5.0257 0.0598582 0 0.00280189 -0.00500127 0.0175832 0.999829 uwb: 0.49879871 826.149 528.76 +imu_odom_: 1691062802.335178068 0.174777 -0.225055 9.80186 -0.0500674 -0.00745685 0.0543285 0.21 -0.02 pose: 0.0 5.0257 0.0598582 0 0.00280189 -0.00500127 0.0175832 0.999829 uwb: 0.0 826.149 528.76 +imu_odom_: 1691062802.351059237 0.354342 -0.572214 9.81383 -0.0607201 0.0213053 0.0447411 0.21 -0.02 pose: 0.48093228 5.03983 0.0592892 0 0.00535146 -0.0072993 0.0176097 0.999804 uwb: 0.50108815 825.815 527.856 +imu_odom_: 1691062802.377161831 0.596156 -0.19393 9.99579 -0.0607201 -0.0266316 0.0500674 0.19 0 pose: 0.0 5.03983 0.0592892 0 0.00535146 -0.0072993 0.0176097 0.999804 uwb: 0.0 825.815 527.856 +imu_odom_: 1691062802.402062539 0.636858 -0.035913 10.3166 -0.0596548 -0.00426106 0.0319579 0.19 0 pose: 0.48030523 5.04718 0.0660707 0 0.00336391 -0.00600892 0.0177372 0.999819 uwb: 0.49858871 826.551 527.31 +imu_odom_: 1691062802.418996561 0.260968 -0.25618 9.77553 -0.056459 0.0319579 0.0255663 0.22 0 pose: 0.0 5.04718 0.0660707 0 0.00336391 -0.00600892 0.0177372 0.999819 uwb: 0.0 826.551 527.31 +imu_odom_: 1691062802.443979514 0.227449 -0.452504 9.51216 -0.0298274 -0.0383495 0.0298274 0.22 0 pose: 0.42930747 5.05396 0.0587228 0 0.00238672 -0.00866644 0.0178746 0.9998 uwb: 0.0 826.551 527.31 +imu_odom_: 1691062802.467120995 0.418985 -0.325611 9.90721 -0.0681769 0.00106526 0.0639159 0.24 0 pose: 0.0 5.05396 0.0587228 0 0.00238672 -0.00866644 0.0178746 0.9998 uwb: 0.50009071 824.989 526.884 +imu_odom_: 1691062802.483999312 0.459687 -0.107739 10.0054 -0.052198 -0.0181095 0.0575243 0.24 0 pose: 0.43075989 5.06809 0.0581602 0 0.00280062 -0.00690336 0.0176376 0.999817 uwb: 0.0 824.989 526.884 +imu_odom_: 1691062802.508994223 0.440533 -0.146046 10.1706 -0.0511327 0.00639159 0.0468716 0.18 0 pose: 0.0 5.06809 0.0581602 0 0.00280062 -0.00690336 0.0176376 0.999817 uwb: 0.50194560 823.926 526.552 +imu_odom_: 1691062802.525053589 0.545878 -0.373495 9.73722 -0.0468716 0.00213053 0.0383495 0.18 0 pose: 0.46996627 5.07544 0.064943 0 0.000607008 -0.00447369 0.0179242 0.999829 uwb: 0.0 823.926 526.552 +imu_odom_: 1691062802.551054689 0.802058 -0.296881 9.96706 -0.0436758 -0.0276969 0.0532632 0.19 0 pose: 0.0 5.07544 0.064943 0 0.000607008 -0.00447369 0.0179242 0.999829 uwb: 0.49862663 825.582 524.663 +imu_odom_: 1691062802.568051124 0.488417 -0.328006 9.94073 -0.0596548 0.00106526 0.0543285 0.19 0 pose: 0.40864414 5.08222 0.0575985 0 0.00247997 -0.00245383 0.0180801 0.99983 uwb: 0.0 825.582 524.663 +imu_odom_: 1691062802.593129447 0.629675 -0.186748 9.73004 -0.0575243 0.0223706 0.0596548 0.18 -0.02 pose: 0.0 5.08222 0.0575985 0 0.00247997 -0.00245383 0.0180801 0.99983 uwb: 0.0 825.582 524.663 +imu_odom_: 1691062802.618999305 0.248997 -0.344765 9.21768 -0.0596548 0.0372843 0.036219 0.18 -0.02 pose: 0.41996303 5.08957 0.0643865 0 0.000377191 -0.00546607 0.0183166 0.999817 uwb: 0.50057776 825.977 523.167 +imu_odom_: 1691062802.635022506 0.347159 -0.172383 9.97185 -0.0394148 0.00852212 0.0426106 0.18 0 pose: 0.0 5.08957 0.0643865 0 0.000377191 -0.00546607 0.0183166 0.999817 uwb: 0.0 825.977 523.167 +imu_odom_: 1691062802.661105852 0.454898 -0.320823 10.1323 -0.0575243 -0.00532632 0.0436758 0.18 0 pose: 0.43029908 5.1037 0.0638416 0 -0.00019218 -0.00642456 0.0186301 0.999806 uwb: 0.49999739 824.471 522.919 +imu_odom_: 1691062802.685996353 0.529119 -0.0023942 9.90242 -0.0745685 0 0.0532632 0.2 0 pose: 0.0 5.1037 0.0638416 0 -0.00019218 -0.00642456 0.0186301 0.999806 uwb: 0.0 824.471 522.919 +imu_odom_: 1691062802.711982871 0.203507 -0.316035 9.65821 -0.0511327 0.0426106 0.0308927 0.2 0 pose: 0.41001489 5.1037 0.0638416 0 -0.000969781-0.00282968 0.0186451 0.999822 uwb: 0.49869371 824.572 521.905 +imu_odom_: 1691062802.728049528 0.232238 -0.0957681 10.1873 -0.0703074 -0.0117179 0.0490022 0.17 0 pose: 0.0 5.1037 0.0638416 0 -0.000969781-0.00282968 0.0186451 0.999822 uwb: 0.0 824.572 521.905 +imu_odom_: 1691062802.751024477 0.215478 -0.567426 9.70609 -0.0756338 0.0127832 0.0585895 0.17 0 pose: 0.52026991 5.11783 0.0633027 0 -0.000970603-0.00237951 0.0188169 0.99982 uwb: 0.0 824.572 521.905 +imu_odom_: 1691062802.777043951 0.641646 -0.342371 9.88805 -0.0617853 -0.0319579 0.0436758 0.25 0.02 pose: 0.0 5.11783 0.0633027 0 -0.000970603-0.00237951 0.0188169 0.99982 uwb: 0.0 824.572 521.905 +imu_odom_: 1691062802.801023049 0.301669 -0.612916 9.57681 -0.0447411 0.02024 0.036219 0.25 0.02 pose: 0.41020446 5.12516 0.070102 0 -0.00133951 0.00127608 0.018886 0.99982 uwb: 0.100048765 826.301 520.15 +imu_odom_: 1691062802.828103251 0.435745 -0.114922 10.149 -0.0468716 -0.0415453 0.0468716 0.19 0.02 pose: 0.49950449 5.13196 0.0627699 0 -0.00433016 -0.0004583830.01907 0.999809 uwb: 0.0 826.301 520.15 +imu_odom_: 1691062802.852995793 0.751779 -0.0191536 10.0317 -0.0383495 0.00213053 0.0468716 0.18 -0.02 pose: 0.0 5.13196 0.0627699 0 -0.00433016 -0.0004583830.01907 0.999809 uwb: 0.49947241 827.605 518.507 +imu_odom_: 1691062802.880254776 0.272939 -0.162806 9.94551 -0.0468716 -0.00958738 0.0543285 0.18 -0.02 pose: 0.67960073 5.1461 0.062243 0 -0.00121615 -0.00257526 0.019229 0.999811 uwb: 0.0 827.605 518.507 +imu_odom_: 1691062802.896103280 0.792481 -0.229843 10.0078 -0.0234358 -0.0543285 0.036219 0.19 0 pose: 0.8042516 5.1461 0.062243 0 -0.000881262-0.00184989 0.0192886 0.999812 uwb: 0.49965032 827.655 517.317 +imu_odom_: 1691062802.922117504 0.699107 -0.316035 9.69652 -0.0436758 -0.04048 0.0458064 0.19 0 pose: 0.0 5.1461 0.062243 0 -0.000881262-0.00184989 0.0192886 0.999812 uwb: 0.0 827.655 517.317 +imu_odom_: 1691062802.944965003 0.246603 -0.1652 9.49301 -0.0223706 -0.0138484 0.036219 0.17 0.02 pose: 0.35064971 5.15342 0.0690491 0 0.000154927 -0.0020935 0.0194042 0.99981 uwb: 0.0 827.655 517.317 +imu_odom_: 1691062802.971038432 0.0981623 0.0454898 10.0317 -0.0415453 -0.0117179 0.0447411 0.17 0.02 pose: 0.48861723 5.16529 0.0664282 0 0.000277947 -0.0028692 0.0194501 0.999807 uwb: 0.50038236 824.784 517.277 +imu_odom_: 1691062802.987028678 0.799663 -0.361524 9.62469 -0.0703074 0.00639159 0.052198 0.18 0.02 pose: 0.0 5.16529 0.0664282 0 0.000277947 -0.0028692 0.0194501 0.999807 uwb: 0.0 824.784 517.277 +imu_odom_: 1691062803.12961824 0.407014 -0.294487 9.72046 -0.0596548 -0.00745685 0.0394148 0.18 0.02 pose: 0.42063675 5.17116 0.0645766 0 0.00113742 -0.00217521 0.0196173 0.999805 uwb: 0.49977864 824.455 516.371 +imu_odom_: 1691062803.29075146 0.775721 -0.277727 10.0006 -0.0394148 0.00213053 0.02024 0.19 0.02 pose: 0.0 5.17116 0.0645766 0 0.00113742 -0.00217521 0.0196173 0.999805 uwb: 0.0 824.455 516.371 +imu_odom_: 1691062803.44948732 0.172383 -0.402226 9.66539 -0.0394148 0.00426106 0.0319579 0.19 0.02 pose: 0.0 5.17116 0.0645766 0 0.00113742 -0.00217521 0.0196173 0.999805 uwb: 0.0 824.455 516.371 +imu_odom_: 1691062803.61067011 0.502782 -0.423774 9.99819 -0.0394148 -0.0585895 0.036219 0.19 0.02 pose: 0.49047504 5.1817 0.0678562 0 -0.0016681 -0.00226303 0.0194369 0.999807 uwb: 0.50037362 826.18 514.526 +imu_odom_: 1691062803.76969470 0.454898 -0.232238 9.77792 -0.0117179 0.036219 0.0383495 0.2 0 pose: 0.0 5.1817 0.0678562 0 -0.0016681 -0.00226303 0.0194369 0.999807 uwb: 0.0 826.18 514.526 +imu_odom_: 1691062803.93011629 0.25618 -0.241814 9.91439 -0.0511327 0.00213053 0.0543285 0.2 0 pose: 0.0 5.1817 0.0678562 0 -0.0016681 -0.00226303 0.0194369 0.999807 uwb: 0.0 826.18 514.526 +imu_odom_: 1691062803.109009166 0.593762 -0.141258 9.92636 -0.0383495 -0.0713727 0.0415453 0.21 0 pose: 0.48941637 5.19583 0.0671973 0 -0.00144379 -0.00148434 0.0194265 0.999809 uwb: 0.49950743 824.623 514.187 +imu_odom_: 1691062803.126056057 0.897826 0.0622492 10.1921 -0.0543285 -0.0596548 0.052198 0.23 0 pose: 0.0 5.19583 0.0671973 0 -0.00144379 -0.00148434 0.0194265 0.999809 uwb: 0.0 824.623 514.187 +imu_odom_: 1691062803.141951516 0.794875 -0.557849 9.37569 -0.0628506 0.0266316 0.0596548 0.23 0 pose: 0.41038238 5.19575 0.0671849 0 0.000505897 -0.00445156 0.0196052 0.999798 uwb: 0.0 824.623 514.187 +imu_odom_: 1691062803.167117626 0.339977 -0.294487 10.0652 -0.052198 0.0245011 0.0553937 0.19 0 pose: 0.15895459 5.20319 0.0668779 0 -0.000730895-0.00528108 0.0197703 0.99979 uwb: 0.49998573 824.248 513.148 +imu_odom_: 1691062803.192960945 0.658405 -0.380678 9.77074 -0.0681769 -0.0138484 0.0426106 0.19 0 pose: 0.0 5.20319 0.0668779 0 -0.000730895-0.00528108 0.0197703 0.99979 uwb: 0.0 824.248 513.148 +imu_odom_: 1691062803.208033662 0.301669 -0.335188 9.91918 -0.0575243 0.0500674 0.0287621 0.18 0 pose: 0.8053890 5.20996 0.0665831 0 -0.00101987 -0.00441625 0.0198361 0.999793 uwb: 0.49975533 821.777 512.972 +imu_odom_: 1691062803.226200485 0.208296 -0.208296 10.0078 -0.0703074 -0.0234358 0.0500674 0.18 0 pose: 0.0 5.20996 0.0665831 0 -0.00101987 -0.00441625 0.0198361 0.999793 uwb: 0.0 821.777 512.972 +imu_odom_: 1691062803.242197731 0.670376 -0.481235 9.48822 -0.0596548 -0.0308927 0.0319579 0.18 0 pose: 0.25101947 5.20996 0.0665831 0 -0.00210511 -0.00329711 0.0199879 0.999793 uwb: 0.0 821.777 512.972 +imu_odom_: 1691062803.258961138 0.191536 -0.134075 10.0269 -0.0543285 0.00532632 0.0468716 0.18 0 pose: 0.0 5.20996 0.0665831 0 -0.00210511 -0.00329711 0.0199879 0.999793 uwb: 0.50069443 821.479 512.156 +imu_odom_: 1691062803.275087875 0.356736 -0.536301 9.76595 -0.0777643 0.0181095 0.0617853 0.18 0 pose: 0.0 5.20996 0.0665831 0 -0.00210511 -0.00329711 0.0199879 0.999793 uwb: 0.0 821.479 512.156 +imu_odom_: 1691062803.290948337 0.617704 -0.299275 10.1634 -0.0575243 -0.0255663 0.0372843 0.24 0 pose: 0.58992157 5.22409 0.066083 0 -0.00377047 -0.0022032 0.0200078 0.99979 uwb: 0.0 821.479 512.156 +imu_odom_: 1691062803.316086157 0.703895 -0.0646434 10.4028 -0.0607201 -0.0330232 0.0383495 0.24 0 pose: 0.0 5.22409 0.066083 0 -0.00377047 -0.0022032 0.0200078 0.99979 uwb: 0.50021322 820.261 511.476 +imu_odom_: 1691062803.342088133 0.890643 -0.189142 9.54329 -0.0511327 0.0308927 0.0223706 0.19 -0.02 pose: 0.64903300 5.23141 0.0729027 0 -0.00443882 -0.00324508 0.0201877 0.999781 uwb: 0.0 820.261 511.476 +imu_odom_: 1691062803.367162373 0.682347 -0.294487 9.43794 -0.0681769 0.00426106 0.0511327 0.2 0 pose: 0.25130237 5.23822 0.0655885 0 -0.00303208 -0.00530856 0.0200961 0.999779 uwb: 0.49938202 820.042 510.881 +imu_odom_: 1691062803.384080063 0.651223 -0.497994 10.4124 -0.0490022 0.0308927 0.0266316 0.21 0 pose: 0.0 5.23822 0.0655885 0 -0.00303208 -0.00530856 0.0200961 0.999779 uwb: 0.0 820.042 510.881 +imu_odom_: 1691062803.409958672 0.493206 -0.363919 9.48583 -0.0532632 -0.00426106 0.0553937 0.21 0 pose: 0.51011179 5.24554 0.0724064 0 -0.00389993 -0.00920803 0.0200267 0.999749 uwb: 0.49982240 822.174 508.753 +imu_odom_: 1691062803.435936732 0.507571 -0.023942 10.1251 -0.0308927 -0.00745685 0.02024 0.18 0 pose: 0.34814446 5.25236 0.0650904 0 -0.00621846 -0.0072142 0.0202045 0.999751 uwb: 0.0 822.174 508.753 +imu_odom_: 1691062803.460915312 0.792481 -0.294487 9.8282 -0.0756338 -0.00319579 0.0436758 0.19 -0.02 pose: 0.0 5.25236 0.0650904 0 -0.00621846 -0.0072142 0.0202045 0.999751 uwb: 0.50003240 822.156 507.36 +imu_odom_: 1691062803.487223228 0.656011 -0.160412 9.85214 -0.0479369 0.0287621 0.0255663 0.19 -0.02 pose: 0.50956640 5.25967 0.0719093 0 -0.00364967 -0.00938421 0.0199809 0.99975 uwb: 0.0 822.156 507.36 +imu_odom_: 1691062803.511940781 0.234632 -0.383072 9.37569 -0.056459 0.0170442 0.0330232 0.19 0 pose: 0.0 5.25967 0.0719093 0 -0.00364967 -0.00938421 0.0199809 0.99975 uwb: 0.50115816 822.707 506.188 +imu_odom_: 1691062803.537162305 0.414197 -0.265756 9.67497 -0.072438 0.00532632 0.0607201 0.19 0 pose: 0.33185877 5.2738 0.0714072 0 -0.00150535 -0.00947306 0.0197505 0.999759 uwb: 0.0 822.707 506.188 +imu_odom_: 1691062803.560074550 0.208296 -0.220267 9.57681 -0.0468716 0.0138484 0.0447411 0.18 0 pose: 0.25058199 5.2738 0.0714072 0 -0.00232 -0.00688434 0.0197788 0.999778 uwb: 0.49750671 823.615 504.642 +imu_odom_: 1691062803.585912619 0.186748 -0.277727 9.59596 -0.0607201 -0.00852212 0.0532632 0.18 0 pose: 0.0 5.2738 0.0714072 0 -0.00232 -0.00688434 0.0197788 0.999778 uwb: 0.0 823.615 504.642 +imu_odom_: 1691062803.609979212 0.339977 -0.328006 9.50737 -0.0276969 0.0266316 0.0298274 0.25 0 pose: 0.24932791 5.2738 0.0714072 0 -0.00247108 -0.00425196 0.019992 0.999788 uwb: 0.50001198 822.528 504.331 +imu_odom_: 1691062803.625971499 0.586579 0.0909797 10.9654 -0.0490022 -0.00958738 0.0585895 0.25 0 pose: 0.0 5.2738 0.0714072 0 -0.00247108 -0.00425196 0.019992 0.999788 uwb: 0.0 822.528 504.331 +imu_odom_: 1691062803.652933293 0.481235 -0.1652 10.2472 -0.0500674 0.0468716 0.036219 0.18 0 pose: 0.48845101 5.28794 0.0709069 0 -0.00293855 0.000577124 0.020186 0.999792 uwb: 0.50001781 823.079 503.137 +imu_odom_: 1691062803.677980409 0.565032 -0.407014 9.61033 -0.0735032 0.00532632 0.0607201 0.19 0.02 pose: 0.0 5.28794 0.0709069 0 -0.00293855 0.000577124 0.020186 0.999792 uwb: 0.0 823.079 503.137 +imu_odom_: 1691062803.693937407 0.162806 -0.174777 9.48343 -0.0319579 -0.0223706 0.0319579 0.19 0.02 pose: 0.41165105 5.30207 0.0704125 0 -0.00192653 0.000803434 0.0202419 0.999793 uwb: 0.0 823.079 503.137 +imu_odom_: 1691062803.719915468 0.526724 -0.292093 9.73482 -0.0820254 -0.0138484 0.0628506 0.18 0.02 pose: 0.0 5.30207 0.0704125 0 -0.00192653 0.000803434 0.0202419 0.999793 uwb: 0.50123399 825.62 500.646 +imu_odom_: 1691062803.745938443 0.153229 -0.191536 9.43794 -0.0511327 0.0383495 0.0458064 0.18 0.02 pose: 0.50830064 5.30207 0.0704125 0 -0.00232554 -0.00101957 0.0204461 0.999788 uwb: 0.50303054 826.076 499.145 +imu_odom_: 1691062803.771051472 0.45011 -0.112527 10.1347 -0.0798948 -0.00852212 0.0585895 0.19 0.02 pose: 0.0 5.30207 0.0704125 0 -0.00232554 -0.00101957 0.0204461 0.999788 uwb: 0.0 826.076 499.145 +imu_odom_: 1691062803.786933516 0.301669 -0.244209 9.57441 -0.0436758 -0.0117179 0.0330232 0.19 0.02 pose: 0.43047700 5.31621 0.0699267 0 -0.00285825 -0.0018952 0.0207381 0.999779 uwb: 0.0 826.076 499.145 +imu_odom_: 1691062803.814058633 0.605733 -0.260968 9.86172 -0.0735032 0.00852212 0.0617853 0.18 0.02 pose: 0.0 5.31621 0.0699267 0 -0.00285825 -0.0018952 0.0207381 0.999779 uwb: 0.0 826.076 499.145 +imu_odom_: 1691062803.838044147 0.533907 -0.158017 10.228 -0.0468716 -0.00319579 0.0330232 0.18 0.02 pose: 0.49967950 5.32351 0.0767563 0 -0.0004290733.91602e-05 0.0210124 0.999779 uwb: 0.0 826.076 499.145 +imu_odom_: 1691062803.854005228 0.260968 -0.299275 9.7444 -0.076699 0.00532632 0.0500674 0.19 0 pose: 0.0 5.32351 0.0767563 0 -0.0004290733.91602e-05 0.0210124 0.999779 uwb: 0.99673124 823.619 499.133 +imu_odom_: 1691062803.880919774 0.0694318 -0.565032 9.60314 -0.0245011 0.0340885 0.0330232 0.19 0 pose: 0.76057129 5.33765 0.0762856 0 -0.000377536-0.0019166 0.0212842 0.999772 uwb: 0.0 823.619 499.133 +imu_odom_: 1691062803.905928102 0.641646 -0.0502782 9.70849 -0.0511327 -0.0191748 0.0479369 0.17 0 pose: 0.0 5.33765 0.0762856 0 -0.000377536-0.0019166 0.0212842 0.999772 uwb: 0.50063611 822.408 498.49 +imu_odom_: 1691062803.932170688 0.457293 -0.332794 10.0604 -0.0479369 -0.0351537 0.0511327 0.17 0 pose: 0.7973687 5.33765 0.0762856 0 -0.000811891-0.00118757 0.0212596 0.999773 uwb: 0.0 822.408 498.49 +imu_odom_: 1691062803.956928489 0.629675 -0.117316 10.058 -0.0394148 -0.0106526 0.0394148 0.19 0.02 pose: 0.52113029 5.35178 0.0758206 0 -0.000946013-0.00186969 0.0213514 0.99977 uwb: 0.50058069 823.27 496.741 +imu_odom_: 1691062803.983052375 0.316035 -0.138864 9.8258 -0.0671117 0.0298274 0.056459 0.22 0 pose: 0.0 5.35178 0.0758206 0 -0.000946013-0.00186969 0.0213514 0.99977 uwb: 0.0 823.27 496.741 +imu_odom_: 1691062803.999902402 0.497994 -0.134075 10.2208 -0.0319579 -0.0458064 0.0383495 0.22 0 pose: 0.25986227 5.35178 0.0758206 0 -0.00204823 -0.00316058 0.0214552 0.999763 uwb: 0.49931494 826.436 494.498 +imu_odom_: 1691062804.24955644 0.454898 -0.248997 9.9934 -0.0372843 0.00213053 0.0394148 0.22 0 pose: 0.50912601 5.36591 0.0753625 0 0.000959035 -0.00234157 0.0216584 0.999762 uwb: 0.0 826.436 494.498 +imu_odom_: 1691062804.48909661 0.373495 -0.0861913 9.94551 -0.0458064 0.00639159 0.0383495 0.25 0 pose: 0.33964872 5.36591 0.0753625 0 -0.000487438-0.00268633 0.0216578 0.999762 uwb: 0.49939953 827.328 492.778 +imu_odom_: 1691062804.64894949 0.272939 -0.0574608 10.1299 -0.0852212 0.00532632 0.0607201 0.25 0 pose: 0.0 5.36591 0.0753625 0 -0.000487438-0.00268633 0.0216578 0.999762 uwb: 0.0 827.328 492.778 +imu_odom_: 1691062804.89892195 0.35913 -0.301669 9.59357 -0.0585895 -0.0191748 0.0298274 0.19 0 pose: 0.6011180 5.36591 0.0753625 0 5.2146e-05 -0.00233636 0.021653 0.999763 uwb: 0.0 827.328 492.778 +imu_odom_: 1691062804.115012808 0.102951 -0.378284 10.0054 -0.0394148 0.00745685 0.0298274 0.19 0 pose: 0.0 5.36591 0.0753625 0 5.2146e-05 -0.00233636 0.021653 0.999763 uwb: 0.50151690 825.261 492.517 +imu_odom_: 1691062804.139870354 0.921768 -0.172383 9.68215 -0.0170442 -0.00532632 0.0287621 0.19 0 pose: 0.40955702 5.38005 0.074909 0 0.00170624 0.000207497 0.021769 0.999762 uwb: 0.0 825.261 492.517 +imu_odom_: 1691062804.152876446 0.936133 -0.203507 10.2735 -0.0319579 -0.0500674 0.0490022 0.19 0 pose: 0.0 5.38005 0.074909 0 0.00170624 0.000207497 0.021769 0.999762 uwb: 0.49846334 825.437 491.587 +imu_odom_: 1691062804.168870192 0.603339 -0.035913 9.42358 -0.0575243 0.00958738 0.0500674 0.21 0 pose: 0.0 5.38005 0.074909 0 0.00170624 0.000207497 0.021769 0.999762 uwb: 0.0 825.437 491.587 +imu_odom_: 1691062804.193016989 0.548272 -0.201113 9.9503 -0.0543285 -0.00213053 0.0553937 0.21 0 pose: 0.88955314 5.39418 0.0744566 0 0.00047053 -0.00164168 0.0215208 0.999767 uwb: 0.0 825.437 491.587 +imu_odom_: 1691062804.207106266 0.979228 -0.433351 9.42118 -0.0798948 0.0245011 0.0617853 0.19 0 pose: 0.0 5.39418 0.0744566 0 0.00047053 -0.00164168 0.0215208 0.999767 uwb: 0.50116984 827.281 489.718 +imu_odom_: 1691062804.222015077 0.0909797 -0.277727 10.3238 -0.0394148 0.04048 0.0340885 0.19 0 pose: 0.38180077 5.40832 0.0739993 0 0.000637482 -0.00499111 0.0218238 0.999749 uwb: 0.0 827.281 489.718 +imu_odom_: 1691062804.247884937 0.371101 -0.19393 9.67976 -0.0862864 -0.0106526 0.0681769 0.25 0 pose: 0.0 5.40832 0.0739993 0 0.000637482 -0.00499111 0.0218238 0.999749 uwb: 0.50047863 828.713 488.071 +imu_odom_: 1691062804.274039155 0.296881 -0.146046 9.78989 -0.0479369 0.0319579 0.0287621 0.17 -0.02 pose: 0.14975890 5.40832 0.0739993 0 0.000137345 -0.00477353 0.0218969 0.999749 uwb: 0.0 828.713 488.071 +imu_odom_: 1691062804.300034715 0.426168 -0.25618 9.75158 -0.0745685 -0.0298274 0.0479369 0.23 -0.02 pose: 0.0 5.40832 0.0739993 0 0.000137345 -0.00477353 0.0218969 0.999749 uwb: 0.49969701 828.422 487.203 +imu_odom_: 1691062804.326013652 0.339977 -0.35913 9.72525 -0.0660464 -0.0149137 0.0532632 0.18 0.02 pose: 0.67987492 5.42246 0.0735576 0 0.000628948 0.00088813 0.0221325 0.999754 uwb: 0.0 828.422 487.203 +imu_odom_: 1691062804.352910408 0.553061 -0.169988 9.7875 -0.0713727 -0.0884169 0.0511327 0.18 0.02 pose: 0.43992353 5.42773 0.0785149 0 -0.00337776 0.000629602 0.022387 0.999743 uwb: 0.49713342 827.229 486.612 +imu_odom_: 1691062804.368985816 0.907402 0.0335188 10.173 -0.0458064 -0.0106526 0.0340885 0.2 0 pose: 0.6876794 5.42974 0.0804077 0 -0.00303054 -0.0002233880.0224261 0.999744 uwb: 0.0 827.229 486.612 +imu_odom_: 1691062804.384922107 0.56982 -0.567426 9.07881 -0.0660464 -0.00745685 0.0468716 0.2 0 pose: 0.0 5.42974 0.0804077 0 -0.00303054 -0.0002233880.0224261 0.999744 uwb: 0.0 827.229 486.612 +imu_odom_: 1691062804.401952373 0.725443 -0.186748 10.41 -0.0415453 -0.00426106 0.0287621 0.2 0 pose: 0.52031661 5.44044 0.0767401 0 -0.00264984 -0.00458365 0.0225542 0.999732 uwb: 0.49990991 826.854 485.499 +imu_odom_: 1691062804.418955225 0.92895 -0.201113 9.98382 -0.0703074 -0.0234358 0.0543285 0.25 0 pose: 0.0 5.44044 0.0767401 0 -0.00264984 -0.00458365 0.0225542 0.999732 uwb: 0.0 826.854 485.499 +imu_odom_: 1691062804.434873142 0.124498 -0.452504 9.60075 -0.0660464 0.0181095 0.0447411 0.25 0 pose: 0.0 5.44044 0.0767401 0 -0.00264984 -0.00458365 0.0225542 0.999732 uwb: 0.0 826.854 485.499 +imu_odom_: 1691062804.461869059 0.234632 -0.153229 10.0341 -0.0447411 0.0138484 0.0490022 0.25 0 pose: 0.42010888 5.44388 0.0799766 0 -0.00216707 -0.00720909 0.0225995 0.999716 uwb: 0.50139149 826.584 484.698 +imu_odom_: 1691062804.486951175 0.117316 -0.222661 10.2352 -0.0330232 -0.00426106 0.0298274 0.19 0 pose: 0.34936064 5.45584 0.0775035 0 -0.00150057 -0.00362497 0.0227519 0.999733 uwb: 0.0 826.584 484.698 +imu_odom_: 1691062804.514025546 0.244209 -0.0670376 9.80186 -0.0905475 -0.00852212 0.0553937 0.21 0 pose: 0.0 5.45584 0.0775035 0 -0.00150057 -0.00362497 0.0227519 0.999733 uwb: 0.49868499 827.57 483.154 +imu_odom_: 1691062804.539004709 0.155623 -0.35913 9.46907 -0.056459 0.0447411 0.0319579 0.19 0 pose: 0.32091319 5.45801 0.0795517 0 -0.000763194-0.0006064720.0226895 0.999742 uwb: 0.0 827.57 483.154 +imu_odom_: 1691062804.565858010 0.28491 -0.246603 9.97903 -0.0681769 -0.0532632 0.0458064 0.19 0 pose: 0.0 5.45801 0.0795517 0 -0.000763194-0.0006064720.0226895 0.999742 uwb: 0.50129817 826.347 482.498 +imu_odom_: 1691062804.581914752 0.986411 -0.0885855 9.98622 -0.0330232 0.00958738 0.0223706 0.21 0 pose: 0.51918501 5.47215 0.0791271 0 -0.00139384 0.0040188 0.0227731 0.999732 uwb: 0.0 826.347 482.498 +imu_odom_: 1691062804.609009246 0.577003 -0.167594 10.0604 -0.0639159 0.0372843 0.0681769 0.21 0 pose: 0.36035873 5.47215 0.0791271 0 -0.00137763 0.00403243 0.0226969 0.999733 uwb: 0.50147607 824.646 481.931 +imu_odom_: 1691062804.635047679 0.399832 -0.433351 9.97903 -0.0468716 0.0138484 0.0383495 0.19 0 pose: 0.7032827 5.47215 0.0791271 0 -0.00120239 0.00350584 0.0227973 0.999733 uwb: 0.0 824.646 481.931 +imu_odom_: 1691062804.659903475 0.517148 -0.361524 9.93833 -0.0426106 -0.00639159 0.0372843 0.19 0 pose: 0.46100100 5.48628 0.0787058 0 -0.00315119 0.00172729 0.0230618 0.999728 uwb: 0.49856541 823.356 481.104 +imu_odom_: 1691062804.675003608 0.308852 -0.114922 9.77553 -0.0223706 0.0276969 0.0372843 0.18 0.02 pose: 0.0 5.48628 0.0787058 0 -0.00315119 0.00172729 0.0230618 0.999728 uwb: 0.0 823.356 481.104 +imu_odom_: 1691062804.700989544 0.440533 -0.246603 9.70131 -0.0617853 0.015979 0.0479369 0.18 0.02 pose: 0.39955929 5.49719 0.0817097 0 -0.002639 0.000536065 0.0230085 0.999732 uwb: 0.50121067 823.628 480.416 +imu_odom_: 1691062804.723915498 0.694318 -0.177171 10.2903 -0.0479369 -0.0372843 0.0543285 0.2 0 pose: 0.0 5.49719 0.0817097 0 -0.002639 0.000536065 0.0230085 0.999732 uwb: 0.0 823.628 480.416 +imu_odom_: 1691062804.749014821 0.562637 -0.138864 10.2352 -0.056459 -0.0511327 0.0468716 0.2 0 pose: 0.48911890 5.50538 0.0829712 0 -0.000983995-0.00418294 0.0232753 0.99972 uwb: 0.49915455 822.115 480.435 +imu_odom_: 1691062804.765986174 0.373495 -0.205901 9.77074 -0.0394148 0.00639159 0.0394148 0.23 0 pose: 0.0 5.50538 0.0829712 0 -0.000983995-0.00418294 0.0232753 0.99972 uwb: 0.0 822.115 480.435 +imu_odom_: 1691062804.790981670 0.263362 -0.430956 9.25838 -0.0660464 0.0213053 0.056459 0.23 0 pose: 0.32107943 5.51456 0.0778826 0 0.0010373 -0.00552143 0.0233567 0.999711 uwb: 0.0 822.115 480.435 +imu_odom_: 1691062804.818077331 0.4956 -0.19393 9.92397 -0.0479369 -0.0266316 0.0468716 0.2 0.02 pose: 0.0 5.51456 0.0778826 0 0.0010373 -0.00552143 0.0233567 0.999711 uwb: 0.49918954 818.681 480.778 +imu_odom_: 1691062804.843004873 0.646434 -0.167594 9.83538 -0.0681769 -0.0266316 0.0415453 0.2 0 pose: 0.41872938 5.51456 0.0778826 0 -0.000452665-0.00305092 0.023597 0.999717 uwb: 0.0 818.681 480.778 +imu_odom_: 1691062804.859863650 0.323217 -0.215478 10.0173 -0.0617853 0.0106526 0.0511327 0.2 0 pose: 0.0 5.51456 0.0778826 0 -0.000452665-0.00305092 0.023597 0.999717 uwb: 0.50148774 818.479 480.201 +imu_odom_: 1691062804.877008826 0.294487 -0.392649 9.60554 -0.0862864 -0.02024 0.0628506 0.2 0 pose: 0.51989955 5.52869 0.0774841 0 0.00128924 -0.0067162 0.0237285 0.999695 uwb: 0.0 818.479 480.201 +imu_odom_: 1691062804.894045801 0.670376 -0.162806 10.0173 -0.0713727 -0.00426106 0.0415453 0.18 0.02 pose: 0.0 5.52869 0.0774841 0 0.00128924 -0.0067162 0.0237285 0.999695 uwb: 0.0 818.479 480.201 +imu_odom_: 1691062804.910034881 0.682347 -0.435745 9.94073 -0.0681769 -0.0138484 0.0490022 0.18 0.02 pose: 0.44159467 5.53596 0.0843549 0 0.000128083 -0.0061593 0.0240016 0.999693 uwb: 0.49729382 818.663 479.267 +imu_odom_: 1691062804.926978819 0.481235 -0.047884 10.307 -0.0394148 -0.0319579 0.0500674 0.23 0 pose: 0.7936356 5.53596 0.0843549 0 -0.000556498-0.00667669 0.0240426 0.999688 uwb: 0.0 818.663 479.267 +imu_odom_: 1691062804.943837888 0.708684 -0.371101 9.4164 -0.04048 0.0287621 0.036219 0.23 0 pose: 0.0 5.53596 0.0843549 0 -0.000556498-0.00667669 0.0240426 0.999688 uwb: 0.0 818.663 479.267 +imu_odom_: 1691062804.957980245 0.746991 -0.466869 9.61272 -0.0703074 -0.02024 0.0415453 0.23 0 pose: 0.41855731 5.54711 0.0811412 0 -0.00050974 -0.00783073 0.0241442 0.999678 uwb: 0.50119026 818.439 478.624 +imu_odom_: 1691062804.974037862 0.289698 -0.105345 9.72525 -0.052198 -0.0170442 0.0468716 0.17 0 pose: 0.0 5.54711 0.0811412 0 -0.00050974 -0.00783073 0.0241442 0.999678 uwb: 0.0 818.439 478.624 +imu_odom_: 1691062804.990967219 0.521936 -0.100556 9.94551 -0.0532632 0.036219 0.0500674 0.17 0 pose: 0.0 5.54711 0.0811412 0 -0.00050974 -0.00783073 0.0241442 0.999678 uwb: 0.0 818.439 478.624 +imu_odom_: 1691062805.8003610 0.0670376 -0.452504 9.83299 -0.0532632 0.0276969 0.052198 0.17 0 pose: 0.21041026 5.55009 0.0839713 0 -0.00137348 -0.00829076 0.0241889 0.999672 uwb: 0.50004407 814.974 478.946 +imu_odom_: 1691062805.24898844 0.45011 -0.047884 9.98861 -0.0372843 -0.00106526 0.0415453 0.27 -0.02 pose: 0.0 5.55009 0.0839713 0 -0.00137348 -0.00829076 0.0241889 0.999672 uwb: 0.0 814.974 478.946 +imu_odom_: 1691062805.40888507 -0.0191536 -0.383072 9.81144 -0.0383495 0.0213053 0.0490022 0.18 0 pose: 0.34093781 5.55696 0.0766955 0 0.000314613 -0.00596647 0.02435 0.999686 uwb: 0.0 814.974 478.946 +imu_odom_: 1691062805.67849135 0.670376 -0.445322 10.1035 -0.0543285 0.015979 0.0468716 0.18 0 pose: 0.0 5.55696 0.0766955 0 0.000314613 -0.00596647 0.02435 0.999686 uwb: 0.49862667 815.751 478.247 +imu_odom_: 1691062805.83829466 0.0383072 -0.258574 9.35415 -0.0298274 0.00958738 0.0234358 0.25 -0.02 pose: 0.49898540 5.56428 0.083503 0 0.000551496 -0.00323247 0.0245272 0.999694 uwb: 0.0 815.751 478.247 +imu_odom_: 1691062805.99884167 0.665588 0.110133 10.4722 -0.0596548 0.00213053 -0.0351537 0.25 -0.02 pose: 0.34958231 5.57518 0.0865494 0 -0.000801227-0.00258683 0.0244759 0.999697 uwb: 0.49995660 817.675 476.428 +imu_odom_: 1691062805.115887537 0.184354 -0.0383072 9.2919 -0.0628506 -0.04048 -0.0809601 0.18 -0.14 pose: 0.7053534 5.57842 0.0831299 0 -0.000205264-0.00291789 0.0242104 0.999703 uwb: 0.0 817.675 476.428 +imu_odom_: 1691062805.131827037 0.0263362 0.158017 10.3094 -0.0756338 -0.00852212 -0.107592 0.18 -0.14 pose: 0.0 5.57842 0.0831299 0 -0.000205264-0.00291789 0.0242104 0.999703 uwb: 0.0 817.675 476.428 +imu_odom_: 1691062805.148834847 0.727837 -0.411803 9.56723 -0.076699 -0.0436758 -0.143811 0.18 -0.14 pose: 0.32017824 5.57842 0.0831299 0 0.00165815 -0.00169994 0.0223859 0.999747 uwb: 0.50128943 815.047 476.254 +imu_odom_: 1691062805.164828302 0.342371 -0.447716 9.76834 -0.0639159 0.0181095 -0.193878 0.25 -0.41 pose: 0.0 5.57842 0.0831299 0 0.00165815 -0.00169994 0.0223859 0.999747 uwb: 0.0 815.047 476.254 +imu_odom_: 1691062805.181889192 1.04627 -0.107739 9.66779 -0.0511327 -0.00852212 -0.254598 0.25 -0.41 pose: 0.0 5.57842 0.0831299 0 0.00165815 -0.00169994 0.0223859 0.999747 uwb: 0.0 815.047 476.254 +imu_odom_: 1691062805.197881772 0.282516 0.160412 10.0054 -0.0308927 0.0245011 -0.339819 0.25 -0.41 pose: 0.32935935 5.58569 0.089999 0 0.000259955 -0.00236278 0.019355 0.99981 uwb: 0.49971452 812.021 476.434 +imu_odom_: 1691062805.213892726 0.754174 0.215478 10.3358 -0.0138484 -0.0330232 -0.36432 0.18 -0.38 pose: 0.42045013 5.59249 0.0827282 0 0.00141658 -0.00263675 0.012759 0.999914 uwb: 0.0 812.021 476.434 +imu_odom_: 1691062805.229820559 0.174777 -0.0837971 9.04529 -0.0468716 0.00319579 -0.396278 0.23 -0.55 pose: 0.8010435 5.59257 0.0827419 0 0.00223907 -0.00321527 0.0111407 0.99993 uwb: 0.0 812.021 476.434 +imu_odom_: 1691062805.243882713 0.177171 -0.0909797 10.4651 -0.0500674 -0.00426106 -0.425041 0.23 -0.55 pose: 0.0 5.59257 0.0827419 0 0.00223907 -0.00321527 0.0111407 0.99993 uwb: 0.0 812.021 476.434 +imu_odom_: 1691062805.260827527 -0.0383072 -0.25618 9.61033 -0.0447411 -0.0149137 -0.449542 0.17 -0.47 pose: 0.37990506 5.60343 0.0858108 0 0.00382163 -0.0007784120.00277544 0.999989 uwb: 0.49997118 811.775 475.749 +imu_odom_: 1691062805.277929540 0.198719 -0.184354 9.92875 -0.0671117 -0.0223706 -0.469782 0.17 -0.47 pose: 0.0 5.60343 0.0858108 0 0.00382163 -0.0007784120.00277544 0.999989 uwb: 0.0 811.775 475.749 +imu_odom_: 1691062805.294866480 0.0311246 -0.129287 9.30147 -0.076699 0.00319579 -0.476173 0.17 -0.47 pose: 0.0 5.60343 0.0858108 0 0.00382163 -0.0007784120.00277544 0.999989 uwb: 0.0 811.775 475.749 +imu_odom_: 1691062805.310869559 0.864307 -0.177171 9.95509 -0.0820254 -0.00319579 -0.498544 0.19 -0.61 pose: 0.25014454 5.60672 0.0824251 0 0.00329091 0.00151524 -0.00343305 0.999988 uwb: 0.50146733 813.766 474.092 +imu_odom_: 1691062805.327925491 0.699107 -0.272939 9.56244 -0.072438 -0.00639159 -0.533697 0.19 -0.61 pose: 0.0 5.60672 0.0824251 0 0.00329091 0.00151524 -0.00343305 0.999988 uwb: 0.0 813.766 474.092 +imu_odom_: 1691062805.344920761 1.10852 0.0861913 9.79947 -0.0639159 -0.0383495 -0.532632 0.19 -0.61 pose: 0.33939500 5.61394 0.0893446 0 0.00287313 0.0033074 -0.0122501 0.999915 uwb: 0.0 813.766 474.092 +imu_odom_: 1691062805.359814407 1.403 0.00718261 9.4954 -0.0841559 -0.0703074 -0.477238 0.17 -0.55 pose: 0.42084094 5.62086 0.0821344 0 0.00248661 -0.000993386-0.0241514 0.999705 uwb: 0.49879875 817.127 471.894 +imu_odom_: 1691062805.376865381 1.49877 -0.395043 9.9096 -0.0617853 -0.00319579 -0.482565 0.14 -0.47 pose: 0.6899251 5.62086 0.0821344 0 0.00248804 -0.00189654 -0.0259326 0.999659 uwb: 0.0 817.127 471.894 +imu_odom_: 1691062805.390920827 0.909797 -0.500388 9.70849 -0.0490022 0.0234358 -0.490022 0.14 -0.47 pose: 0.0 5.62086 0.0821344 0 0.00248804 -0.00189654 -0.0259326 0.999659 uwb: 0.0 817.127 471.894 +imu_odom_: 1691062805.405794933 0.852336 -0.316035 10.4722 -0.0703074 0.0127832 -0.451672 0.14 -0.47 pose: 0.39100815 5.62805 0.088996 0 0.00119952 -0.0054565 -0.0361532 0.999331 uwb: 0.50113486 817.805 470.865 +imu_odom_: 1691062805.421904172 0.732626 -0.0191536 10.386 -0.0500674 -0.00213053 -0.381365 0.12 -0.38 pose: 0.0 5.62805 0.088996 0 0.00119952 -0.0054565 -0.0361532 0.999331 uwb: 0.0 817.805 470.865 +imu_odom_: 1691062805.438787740 1.10373 -0.464475 9.75158 -0.0639159 0.0191748 -0.315318 0.12 -0.38 pose: 0.0 5.62805 0.088996 0 0.00119952 -0.0054565 -0.0361532 0.999331 uwb: 0.0 817.805 470.865 +imu_odom_: 1691062805.454898729 1.18752 -0.363919 9.83777 -0.0681769 0.00319579 -0.26099 0.14 -0.47 pose: 0.21877476 5.63503 0.0817785 0 0.00101102 -0.00721447 -0.0412744 0.999121 uwb: 0.49734925 818.387 469.548 +imu_odom_: 1691062805.472080654 0.859518 -0.385466 9.81383 -0.0596548 0.0117179 -0.22051 0.14 -0.47 pose: 0.0 5.63503 0.0817785 0 0.00101102 -0.00721447 -0.0412744 0.999121 uwb: 0.0 818.387 469.548 +imu_odom_: 1691062805.489077673 0.677559 -0.244209 9.31344 -0.0351537 0.0276969 -0.252468 0.14 -0.47 pose: 0.0 5.63503 0.0817785 0 0.00101102 -0.00721447 -0.0412744 0.999121 uwb: 0.0 818.387 469.548 +imu_odom_: 1691062805.504966717 0.586579 -0.112527 10.0485 -0.0649811 -0.0127832 -0.24075 0.08 -0.29 pose: 0.66156521 5.63503 0.0817789 0 -0.00113503 -0.0123245 -0.0518063 0.99858 uwb: 0.50082862 817.247 469.244 +imu_odom_: 1691062805.522052106 0.90022 -0.174777 9.83059 -0.0681769 0 -0.203466 0.11 -0.35 pose: 0.0 5.63503 0.0817789 0 -0.00113503 -0.0123245 -0.0518063 0.99858 uwb: 0.0 817.247 469.244 +imu_odom_: 1691062805.547807640 1.03908 -0.416591 9.97185 -0.0596548 -0.0266316 -0.194943 0.11 -0.35 pose: 0.43097282 5.64224 0.0887142 0 -0.000110134-0.014005 -0.0575924 0.998242 uwb: 0.49905248 817.893 468.104 +imu_odom_: 1691062805.564874947 0.723049 -0.277727 9.96946 -0.052198 0.0351537 -0.192813 0.07 -0.23 pose: 0.0 5.64224 0.0887142 0 -0.000110134-0.014005 -0.0575924 0.998242 uwb: 0.0 817.893 468.104 +imu_odom_: 1691062805.590855926 -0.287304 -0.0023942 10.1778 -0.0447411 0.0490022 -0.339819 0.07 -0.23 pose: 0.7823196 5.64224 0.0887142 0 -0.000559158-0.0147384 -0.0585017 0.998178 uwb: 0.0 817.893 468.104 +imu_odom_: 1691062805.607857028 -0.658405 0.37589 9.88805 -0.0468716 -0.0351537 -0.475108 0.09 -0.32 pose: 0.0 5.64224 0.0887142 0 -0.000559158-0.0147384 -0.0585017 0.998178 uwb: 0.50025408 817.665 467.437 +imu_odom_: 1691062805.624917335 -0.548272 0.158017 9.4547 -0.0830906 0.00532632 -0.497478 0.09 -0.32 pose: 0.0 5.64224 0.0887142 0 -0.000559158-0.0147384 -0.0585017 0.998178 uwb: 0.0 817.665 467.437 +imu_odom_: 1691062805.639905476 -0.184354 -0.428562 10.137 -0.0820254 -0.0319579 -0.479369 0.11 -0.47 pose: 0.77981726 5.64907 0.0814723 0 -0.00120578 -0.0114696 -0.0718329 0.99735 uwb: 0.0 817.665 467.437 +imu_odom_: 1691062805.655849058 -0.0742203 -0.557849 9.69412 -0.0692422 -0.0543285 -0.492152 0.11 -0.47 pose: 0.0 5.64907 0.0814723 0 -0.00120578 -0.0114696 -0.0718329 0.99735 uwb: 0.50123110 818.789 466.161 +imu_odom_: 1691062805.672938530 0.675165 -0.124498 9.8282 -0.0617853 -0.0298274 -0.515588 0.11 -0.47 pose: 0.39000196 5.64915 0.0814859 0 -0.00151558 -0.00804877 -0.0821264 0.996588 uwb: 0.0 818.789 466.161 +imu_odom_: 1691062805.688927610 0.0766145 0.0885855 9.71567 -0.056459 0.0106526 -0.511327 0.12 -0.55 pose: 0.0 5.64915 0.0814859 0 -0.00151558 -0.00804877 -0.0821264 0.996588 uwb: 0.0 818.789 466.161 +imu_odom_: 1691062805.706077454 0.428562 -0.258574 10.2208 -0.0500674 -0.0181095 -0.508131 0.12 -0.55 pose: 0.42070386 5.6632 0.0810507 0 8.02514e-05 -0.00761522 -0.0936348 0.995577 uwb: 0.49918664 815.301 466.612 +imu_odom_: 1691062805.722837945 0.423774 -0.332794 9.84975 -0.0553937 -0.0138484 -0.536893 0.12 -0.55 pose: 0.7153570 5.66328 0.0810642 0 -0.000133232-0.00699236 -0.0955836 0.995397 uwb: 0.0 815.301 466.612 +imu_odom_: 1691062805.737937204 0.196325 -0.0095768110.0317 -0.0479369 -0.00532632 -0.557133 0.13 -0.61 pose: 0.0 5.66328 0.0810642 0 -0.000133232-0.00699236 -0.0955836 0.995397 uwb: 0.0 815.301 466.612 +imu_odom_: 1691062805.753805541 0.311246 0.0526724 9.76834 -0.0575243 -0.0149137 -0.561394 0.13 -0.58 pose: 0.41856024 5.6632 0.0810507 0 -0.000510651-0.0039243 -0.107589 0.994188 uwb: 0.49940829 818.674 464.29 +imu_odom_: 1691062805.769786455 0.0814029 -0.009576819.84256 -0.0585895 -0.0340885 -0.5827 0.13 -0.58 pose: 0.0 5.6632 0.0810507 0 -0.000510651-0.0039243 -0.107589 0.994188 uwb: 0.0 818.674 464.29 +imu_odom_: 1691062805.785879653 0.572214 -0.265756 9.59357 -0.0553937 0.00213053 -0.596548 0.13 -0.58 pose: 0.0 5.6632 0.0810507 0 -0.000510651-0.0039243 -0.107589 0.994188 uwb: 0.0 818.674 464.29 +imu_odom_: 1691062805.802793261 0.653617 0.0454898 10.2951 -0.0575243 -0.0170442 -0.593352 0.13 -0.64 pose: 0.22874624 5.66328 0.0810642 0 0.00126378 -0.00281925 -0.114501 0.993418 uwb: 0.50046698 819.452 463.507 +imu_odom_: 1691062805.818795757 0.629675 -0.160412 10.0916 -0.0479369 -0.0340885 -0.616788 0.13 -0.64 pose: 0.0 5.66328 0.0810642 0 0.00126378 -0.00281925 -0.114501 0.993418 uwb: 0.0 819.452 463.507 +imu_odom_: 1691062805.844843232 0.409408 0.134075 10.0126 -0.0649811 -0.00319579 -0.658333 0.15 -0.67 pose: 0.33041221 5.67018 0.0738208 0 0.00124362 -0.00395863 -0.12486 0.992166 uwb: 0.0 819.452 463.507 +imu_odom_: 1691062805.861775213 0.356736 0.0383072 10.2065 -0.0692422 0.0330232 -0.689226 0.15 -0.67 pose: 0.32940893 5.67736 0.0807795 0 0.00253905 -0.00626955 -0.135641 0.990735 uwb: 0.49948121 820.531 462.056 +imu_odom_: 1691062805.877880661 -0.009576810.0526724 9.69652 -0.0607201 0.0468716 -0.668986 0.15 -0.67 pose: 0.0 5.67736 0.0807795 0 0.00253905 -0.00626955 -0.135641 0.990735 uwb: 0.0 820.531 462.056 +imu_odom_: 1691062805.893942653 0.612916 -0.699107 9.6223 -0.0319579 0.0958738 -0.682835 0.2 -0.97 pose: 0.51086719 5.68422 0.0735712 0 0.0063168 -0.00254633 -0.153655 0.988101 uwb: 0.0 820.531 462.056 +imu_odom_: 1691062805.910822721 0.0430956 0.0550666 9.16979 -0.0639159 -0.036219 -0.713727 0.15 -0.7 pose: 0.0 5.68422 0.0735712 0 0.0063168 -0.00254633 -0.153655 0.988101 uwb: 0.49988951 817.905 462.021 +imu_odom_: 1691062805.927843656 -0.323217 -0.0526724 10.3166 -0.0490022 -0.0298274 -0.743555 0.15 -0.7 pose: 0.0 5.68422 0.0735712 0 0.0063168 -0.00254633 -0.153655 0.988101 uwb: 0.0 817.905 462.021 +imu_odom_: 1691062805.943821653 0.754174 0.19393 10.2615 -0.0713727 -0.0255663 -0.753142 0.15 -0.73 pose: 0.6945332 5.6843 0.0735852 0 0.00576753 -0.00229169 -0.15613 0.987717 uwb: 0.0 817.905 462.021 +imu_odom_: 1691062805.960934457 0.426168 -0.0790087 10.1107 -0.0660464 -0.0585895 -0.76699 0.15 -0.73 pose: 0.0 5.6843 0.0735852 0 0.00576753 -0.00229169 -0.15613 0.987717 uwb: 0.49997993 817.216 461.536 +imu_odom_: 1691062805.976980700 0.42138 0.134075 10.1179 -0.0681769 -0.0458064 -0.775513 0.15 -0.73 pose: 0.66118023 5.69846 0.0732952 0 0.00659828 -0.00169005 -0.181286 0.983407 uwb: 0.0 817.216 461.536 +imu_odom_: 1691062805.992830080 0.363919 0.136469 9.79947 -0.0553937 -0.0330232 -0.774447 0.22 -1.03 pose: 0.0 5.69846 0.0732952 0 0.00659828 -0.00169005 -0.181286 0.983407 uwb: 0.0 817.216 461.536 +imu_odom_: 1691062806.8828493 0.574608 -0.272939 10.4244 -0.0585895 0.00106526 -0.78723 0.22 -1.03 pose: 0.0 5.69846 0.0732952 0 0.00659828 -0.00169005 -0.181286 0.983407 uwb: 0.49995368 821.172 459.269 +imu_odom_: 1691062806.25825513 0.778116 -0.0646434 9.84735 -0.0532632 -0.0117179 -0.811731 0.22 -1.03 pose: 0.32909396 5.70539 0.0660842 0 0.00838399 -0.00329803 -0.194414 0.980878 uwb: 0.0 821.172 459.269 +imu_odom_: 1691062806.41751888 0.653617 -0.110133 9.66779 -0.0543285 0.015979 -0.804275 0.16 -0.79 pose: 0.41972101 5.70531 0.066071 0 0.00735781 -0.00528084 -0.211533 0.977329 uwb: 0.0 821.172 459.269 +imu_odom_: 1691062806.57810965 0.289698 -0.0622492 10.2137 -0.0575243 -0.00852212 -0.795753 0.22 -1.09 pose: 0.0 5.70531 0.066071 0 0.00735781 -0.00528084 -0.211533 0.977329 uwb: 0.50005868 820.906 458.467 +imu_odom_: 1691062806.74787569 0.270545 -0.0407014 10.3214 -0.0596548 -0.0607201 -0.798948 0.22 -1.09 pose: 0.0 5.70531 0.066071 0 0.00735781 -0.00528084 -0.211533 0.977329 uwb: 0.0 820.906 458.467 +imu_odom_: 1691062806.91749299 0.0933739 -0.1652 9.71088 -0.0447411 -0.0319579 -0.814927 0.22 -1.11 pose: 0.7935773 5.70539 0.0660842 0 0.0070136 -0.00587374 -0.214797 0.976616 uwb: 0.0 820.906 458.467 +imu_odom_: 1691062806.107812750 0.134075 -0.059855 9.71088 -0.0436758 -0.00958738 -0.815993 0.22 -1.11 pose: 0.0 5.70539 0.0660842 0 0.0070136 -0.00587374 -0.214797 0.976616 uwb: 0.50022492 822.157 457.486 +imu_odom_: 1691062806.123841495 0.268151 -0.071826 9.97185 -0.0298274 0.0138484 -0.819188 0.22 -1.11 pose: 0.65996407 5.71952 0.0656884 0 0.00758103 -0.0013951 -0.241971 0.970253 uwb: 0.0 822.157 457.486 +imu_odom_: 1691062806.140978214 0.814029 -0.265756 10.0126 -0.0671117 -0.0319579 -0.752077 0.15 -0.76 pose: 0.0 5.71952 0.0656884 0 0.00758103 -0.0013951 -0.241971 0.970253 uwb: 0.0 822.157 457.486 +imu_odom_: 1691062806.157905822 1.00078 -0.100556 9.96467 -0.0735032 0.00426106 -0.658333 0.15 -0.76 pose: 0.0 5.71952 0.0656884 0 0.00758103 -0.0013951 -0.241971 0.970253 uwb: 0.50242105 822.404 456.639 +imu_odom_: 1691062806.175091538 1.30484 -0.476446 9.84496 -0.0628506 -0.0479369 -0.570982 0.15 -0.76 pose: 0.32045823 5.72642 0.0584483 0 0.00776443 0.000409419 -0.255041 0.966899 uwb: 0.0 822.404 456.639 +imu_odom_: 1691062806.192037811 1.1564 -0.553061 9.40203 -0.072438 -0.04048 -0.566721 0.18 -0.88 pose: 0.43288022 5.73034 0.0543027 0 0.00525481 -0.003508 -0.269287 0.963039 uwb: 0.0 822.404 456.639 +imu_odom_: 1691062806.207901774 1.14203 -0.296881 9.36851 -0.0436758 0.0245011 -0.561394 0.11 -0.55 pose: 0.6687807 5.73333 0.0512177 0 0.00467884 -0.00404892 -0.271236 0.962493 uwb: 0.49973204 824.677 455.556 +imu_odom_: 1691062806.224819757 0.924162 -0.059855 10.4148 -0.0458064 0.0213053 -0.508131 0.11 -0.55 pose: 0.0 5.73333 0.0512177 0 0.00467884 -0.00404892 -0.271236 0.962493 uwb: 0.0 824.677 455.556 +imu_odom_: 1691062806.241811819 0.591368 -0.172383 10.1801 -0.052198 -0.0266316 -0.445281 0.11 -0.55 pose: 0.43040412 5.73325 0.0512045 0 0.0030839 -0.00750855 -0.283228 0.959018 uwb: 0.0 824.677 455.556 +imu_odom_: 1691062806.257800316 0.490811 -0.416591 9.92397 -0.036219 -0.0351537 -0.433563 0.09 -0.47 pose: 0.0 5.73325 0.0512045 0 0.0030839 -0.00750855 -0.283228 0.959018 uwb: 0.49926248 827.262 453.794 +imu_odom_: 1691062806.273836935 0.471658 -0.160412 9.54089 -0.0351537 -0.0426106 -0.412257 0.09 -0.47 pose: 0.0 5.73325 0.0512045 0 0.0030839 -0.00750855 -0.283228 0.959018 uwb: 0.0 827.262 453.794 +imu_odom_: 1691062806.290838621 0.641646 0.129287 9.8689 -0.0553937 -0.0308927 -0.335558 0.07 -0.38 pose: 0.23934186 5.73333 0.0512177 0 0.00103828 -0.00828662 -0.288732 0.957374 uwb: 0.0 827.262 453.794 +imu_odom_: 1691062806.307853431 0.658405 -0.665588 9.96227 -0.0671117 -0.00213053 -0.30147 0.07 -0.38 pose: 0.0 5.73333 0.0512177 0 0.00103828 -0.00828662 -0.288732 0.957374 uwb: 0.50084322 827.057 453.145 +imu_odom_: 1691062806.323769016 0.658405 -0.409408 9.8282 -0.0447411 -0.0170442 -0.319579 0.07 -0.38 pose: 0.33072720 5.74019 0.0439415 0 0.00156637 -0.00744221 -0.29568 0.955257 uwb: 0.0 827.057 453.145 +imu_odom_: 1691062806.350773976 0.514753 0.105345 9.91439 -0.0511327 -0.00852212 -0.257794 0.09 -0.47 pose: 0.41942353 5.74019 0.0439415 0 -0.00103296 -0.00822055 -0.302767 0.953029 uwb: 0.49743968 824.99 453.261 +imu_odom_: 1691062806.375940088 0.181959 -0.414197 9.87608 -0.0660464 0.0394148 -0.298274 0.06 -0.32 pose: 0.8084806 5.74019 0.0439415 0 -0.000211224-0.00835933 -0.303918 0.952661 uwb: 0.0 824.99 453.261 +imu_odom_: 1691062806.392782242 -0.68953 0.174777 10.07 -0.0266316 0.0117179 -0.465521 0.06 -0.32 pose: 0.0 5.74019 0.0439415 0 -0.000211224-0.00835933 -0.303918 0.952661 uwb: 0.0 824.99 453.261 +imu_odom_: 1691062806.418820385 -0.366313 0.675165 9.92157 -0.0660464 0.00745685 -0.588026 0.1 -0.53 pose: 0.50971227 5.74019 0.0439417 0 0.00145649 -0.00514352 -0.312312 0.949965 uwb: 0.0 824.99 453.261 +imu_odom_: 1691062806.435861444 -0.469264 -0.318429 10.0413 -0.0745685 -0.0138484 -0.536893 0.1 -0.53 pose: 0.0 5.74019 0.0439417 0 0.00145649 -0.00514352 -0.312312 0.949965 uwb: 0.0 824.99 453.261 +imu_odom_: 1691062806.461799842 0.25618 -0.227449 10.161 -0.0490022 -0.0468716 -0.565655 0.14 -0.67 pose: 0.18046082 5.74019 0.0439417 0 0.00289126 -0.00384948 -0.317115 0.948375 uwb: 0.100000946 823.341 453.051 +imu_odom_: 1691062806.478888440 0.54109 0.0454898 9.71567 -0.056459 0.00958738 -0.559264 0.14 -0.67 pose: 0.42944168 5.74704 0.0366562 0 0.00419272 -0.000594099-0.329392 0.944184 uwb: 0.0 823.341 453.051 +imu_odom_: 1691062806.494887728 -0.0215478 -0.126893 9.88566 -0.0628506 0.02024 -0.566721 0.15 -0.82 pose: 0.0 5.74704 0.0366562 0 0.00419272 -0.000594099-0.329392 0.944184 uwb: 0.0 823.341 453.051 +imu_odom_: 1691062806.511785295 0.356736 -0.148441 10.0868 -0.0756338 -0.0479369 -0.632767 0.15 -0.82 pose: 0.51072429 5.75795 0.0395385 0 0.00500576 0.00113406 -0.343908 0.938989 uwb: 0.50100362 822.168 452.69 +imu_odom_: 1691062806.528885559 0.378284 -0.141258 9.54808 -0.0745685 -0.00213053 -0.659399 0.15 -0.82 pose: 0.0 5.75795 0.0395385 0 0.00500576 0.00113406 -0.343908 0.938989 uwb: 0.0 822.168 452.69 +imu_odom_: 1691062806.543802829 0.61531 -0.131681 10.082 -0.0798948 0.0213053 -0.653007 0.13 -0.61 pose: 0.0 5.75795 0.0395385 0 0.00500576 0.00113406 -0.343908 0.938989 uwb: 0.0 822.168 452.69 +imu_odom_: 1691062806.569078309 0.35913 -0.141258 9.78031 -0.0703074 -0.0330232 -0.657268 0.13 -0.61 pose: 0.7016203 5.76119 0.0361519 0 0.00418339 0.000968212 -0.346124 0.938179 uwb: 0.49908458 821.979 452.11 +imu_odom_: 1691062806.595874448 0.122104 0.0574608 10.5752 -0.0649811 -0.0458064 -0.681769 0.19 -0.97 pose: 0.0 5.76119 0.0361519 0 0.00418339 0.000968212 -0.346124 0.938179 uwb: 0.49999452 823.27 451.198 +imu_odom_: 1691062806.620743661 0.277727 -0.136469 10.1945 -0.0553937 -0.00426106 -0.709466 0.15 -0.76 pose: 0.48896144 5.76119 0.0361516 0 0.00375108 -0.000782859-0.361924 0.9322 uwb: 0.0 823.27 451.198 +imu_odom_: 1691062806.647934110 0.191536 -0.009576819.58638 -0.0575243 -0.0181095 -0.715858 0.17 -0.88 pose: 0.53155387 5.768 0.0288302 0 0.00610458 0.00243356 -0.379636 0.925113 uwb: 0.50112321 821.167 451.238 +imu_odom_: 1691062806.673832261 0.0526724 0.0670376 10.1275 -0.0543285 -0.00745685 -0.743555 0.17 -0.88 pose: 0.0 5.768 0.0288302 0 0.00610458 0.00243356 -0.379636 0.925113 uwb: 0.0 821.167 451.238 +imu_odom_: 1691062806.700743893 0.502782 -0.0622492 9.54568 -0.0607201 -0.052198 -0.755272 0.19 -1 pose: 0.69876799 5.77457 0.0214976 0 0.0106975 0.00589921 -0.404178 0.914599 uwb: 0.49930040 822.003 450.546 +imu_odom_: 1691062806.716818135 0.071826 -0.146046 9.84975 -0.0703074 0.00426106 -0.761664 0.19 -1 pose: 0.6939499 5.77484 0.0215363 0 0.0103454 0.00513695 -0.406698 0.91349 uwb: 0.0 822.003 450.546 +imu_odom_: 1691062806.743905631 0.35913 -0.3304 9.61272 -0.0543285 -0.0117179 -0.777643 0.21 -1.09 pose: 0.36046375 5.78134 0.0141869 0 0.00936414 0.0047189 -0.419794 0.907559 uwb: 0.0 822.003 450.546 +imu_odom_: 1691062806.769736995 0.138864 -0.323217 9.75637 -0.0394148 -0.00532632 -0.784035 0.21 -1.09 pose: 0.0 5.78134 0.0141869 0 0.00936414 0.0047189 -0.419794 0.907559 uwb: 0.49980495 824.165 449.037 +imu_odom_: 1691062806.796734955 0.42138 -0.203507 10.0628 -0.0596548 -0.0607201 -0.781904 0.2 -1.03 pose: 0.52918860 5.78638 0.00899262 0 0.00541689 0.00692573 -0.439432 0.898233 uwb: 0.49925081 820.256 450.078 +imu_odom_: 1691062806.812717036 0.316035 -0.28491 9.35415 -0.0575243 0.0149137 -0.776578 0.2 -1.03 pose: 0.0 5.78638 0.00899262 0 0.00541689 0.00692573 -0.439432 0.898233 uwb: 0.0 820.256 450.078 +imu_odom_: 1691062806.839717913 0.325611 -0.225055 10.6805 -0.0820254 -0.0149137 -0.78723 0.22 -1.14 pose: 0.42980041 5.78845 0.00694944 0 0.00199454 0.004824 -0.455199 0.890375 uwb: 0.0 820.256 450.078 +imu_odom_: 1691062806.865783470 0.177171 -0.126893 9.95509 -0.0639159 -0.00958738 -0.777643 0.17 -0.82 pose: 0.0 5.78845 0.00694944 0 0.00199454 0.004824 -0.455199 0.890375 uwb: 0.50038825 822.493 448.784 +imu_odom_: 1691062806.892866300 0.45011 -0.102951 9.75398 -0.076699 -0.00319579 -0.819188 0.19 -1 pose: 0.35067600 5.78804 -0.00716971 0 0.000849724 0.002959 -0.468026 0.883709 uwb: 0.0 822.493 448.784 +imu_odom_: 1691062806.918880236 0.603339 -0.177171 9.69173 -0.0617853 0.00106526 -0.796818 0.17 -0.85 pose: 0.45081664 5.7927 -0.0123853 0 0.00248919 0.0014047 -0.484705 0.874673 uwb: 0.49966496 822.27 448.091 +imu_odom_: 1691062806.935870840 0.399832 -0.0837971 9.20571 -0.0713727 -0.0287621 -0.794687 0.17 -0.85 pose: 0.0 5.7927 -0.0123853 0 0.00248919 0.0014047 -0.484705 0.874673 uwb: 0.0 822.27 448.091 +imu_odom_: 1691062806.952872526 0.538695 0.114922 9.75637 -0.0841559 -0.00639159 -0.801079 0.17 -0.85 pose: 0.0 5.7927 -0.0123853 0 0.00248919 0.0014047 -0.484705 0.874673 uwb: 0.50043783 824.581 447.007 +imu_odom_: 1691062806.967868541 0.347159 -0.181959 10.3453 -0.056459 -0.0415453 -0.80534 0.17 -0.82 pose: 0.51013225 5.80171 -0.021766 0 0.00290146 -0.00227337 -0.503246 0.864135 uwb: 0.0 824.581 447.007 +imu_odom_: 1691062806.983864621 0.995988 -0.23942 10.0102 -0.0905475 -0.0426106 -0.824515 0.17 -0.82 pose: 0.0 5.80171 -0.021766 0 0.00290146 -0.00227337 -0.503246 0.864135 uwb: 0.0 824.581 447.007 +imu_odom_: 1691062806.998742227 0.150835 0.0694318 9.52892 -0.0532632 -0.00745685 -0.835167 0.17 -0.82 pose: 0.0 5.80171 -0.021766 0 0.00290146 -0.00227337 -0.503246 0.864135 uwb: 0.49999452 826.884 445.888 +imu_odom_: 1691062807.14919421 0.172383 -0.169988 10.0126 -0.0351537 0.0181095 -0.841559 0.17 -0.88 pose: 0.46877348 5.80171 -0.021766 0 0.00223676 -0.00278153 -0.520464 0.853876 uwb: 0.0 826.884 445.888 +imu_odom_: 1691062807.31866861 0.0023942 0.0766145 9.84735 -0.0319579 -0.0255663 -0.841559 0.17 -0.88 pose: 0.0 5.80171 -0.021766 0 0.00223676 -0.00278153 -0.520464 0.853876 uwb: 0.0 826.884 445.888 +imu_odom_: 1691062807.47879274 0.37589 -0.536301 9.83777 -0.04048 0.00532632 -0.840494 0.18 -0.97 pose: 0.41109988 5.80824 -0.0290942 0 0.00548619 -0.000381272-0.535828 0.844309 uwb: 0.49810173 826.365 445.927 +imu_odom_: 1691062807.74757658 0.299275 0.1652 9.81144 -0.0383495 -0.056459 -0.82558 0.18 -0.97 pose: 0.0 5.80824 -0.0290942 0 0.00548619 -0.000381272-0.535828 0.844309 uwb: 0.0 826.365 445.927 +imu_odom_: 1691062807.91727555 -0.0670376 0.100556 9.55765 -0.0351537 -0.00319579 -0.837298 0.17 -0.88 pose: 0.8001686 5.80857 -0.0290458 0 0.00485903 2.83905e-05 -0.538801 0.842419 uwb: 0.0 826.365 445.927 +imu_odom_: 1691062807.108919397 -0.0407014 0.282516 10.817 -0.0340885 -0.0340885 -0.842624 0.25 -1.26 pose: 0.0 5.80857 -0.0290458 0 0.00485903 2.83905e-05 -0.538801 0.842419 uwb: 0.50059825 826.211 445.434 +imu_odom_: 1691062807.124851898 0.617704 0.19393 10.2208 -0.0532632 -0.0617853 -0.82558 0.17 -0.85 pose: 0.0 5.80857 -0.0290458 0 0.00485903 2.83905e-05 -0.538801 0.842419 uwb: 0.0 826.211 445.434 +imu_odom_: 1691062807.141908998 1.11809 -0.0933739 10.0461 -0.0639159 -0.0308927 -0.831972 0.17 -0.85 pose: 0.76875505 5.80821 -0.0431842 0 0.00972805 -0.0012953 -0.566749 0.823832 uwb: 0.0 826.211 445.434 +imu_odom_: 1691062807.159851836 1.00556 0.059855 9.52413 -0.0735032 -0.0426106 -0.840494 0.17 -0.85 pose: 0.0 5.80821 -0.0431842 0 0.00972805 -0.0012953 -0.566749 0.823832 uwb: 0.49992746 825.123 445.358 +imu_odom_: 1691062807.173852162 0.162806 0.184354 9.98622 -0.0500674 -0.0276969 -0.846885 0.17 -0.88 pose: 0.33004475 5.81506 -0.0504676 0 0.00791722 -0.00442396 -0.578528 0.815612 uwb: 0.0 825.123 445.358 +imu_odom_: 1691062807.189757247 0.395043 0.124498 10.2783 -0.0436758 -0.0447411 -0.846885 0.17 -0.88 pose: 0.0 5.81506 -0.0504676 0 0.00791722 -0.00442396 -0.578528 0.815612 uwb: 0.0 825.123 445.358 +imu_odom_: 1691062807.205683915 0.390255 -0.177171 9.32781 -0.0553937 -0.0617853 -0.834102 0.18 -0.88 pose: 0.40008720 5.82184 -0.057754 0 0.00978812 -0.0064895 -0.59286 0.80522 uwb: 0.50060117 826.991 444.527 +imu_odom_: 1691062807.221738909 0.380678 -0.292093 9.57202 -0.0575243 0.0117179 -0.840494 0.18 -0.88 pose: 0.0 5.82184 -0.057754 0 0.00978812 -0.0064895 -0.59286 0.80522 uwb: 0.0 826.991 444.527 +imu_odom_: 1691062807.237742864 0.457293 0.0287304 10.3549 -0.0266316 0.00532632 -0.841559 0.18 -0.88 pose: 0.0 5.82184 -0.057754 0 0.00978812 -0.0064895 -0.59286 0.80522 uwb: 0.0 826.991 444.527 +imu_odom_: 1691062807.254683596 0.275333 0.0215478 9.80186 -0.036219 -0.0490022 -0.82771 0.2 -1 pose: 0.6943291 5.82192 -0.0577426 0 0.00913541 -0.00620204 -0.595307 0.803422 uwb: 0.49936749 823.922 444.925 +imu_odom_: 1691062807.272734636 0.624887 0.217872 9.46428 -0.0553937 -0.0990696 -0.821319 0.2 -1 pose: 0.0 5.82192 -0.0577426 0 0.00913541 -0.00620204 -0.595307 0.803422 uwb: 0.0 823.922 444.925 +imu_odom_: 1691062807.287733860 0.141258 -0.105345 9.96227 -0.0426106 -0.0255663 -0.84582 0.2 -1 pose: 0.0 5.82192 -0.0577426 0 0.00913541 -0.00620204 -0.595307 0.803422 uwb: 0.0 823.922 444.925 +imu_odom_: 1691062807.303910762 0.143652 0 10.3358 -0.0458064 -0.0340885 -0.854342 0.18 -0.88 pose: 0.48041322 5.82152 -0.0718476 0 0.00822885 -0.00597952 -0.612112 0.790706 uwb: 0.50056033 821.922 445.342 +imu_odom_: 1691062807.320764583 0.584185 0.203507 10.0892 -0.0585895 -0.0884169 -0.852212 0.17 -0.88 pose: 0.0 5.82152 -0.0718476 0 0.00822885 -0.00597952 -0.612112 0.790706 uwb: 0.0 821.922 445.342 +imu_odom_: 1691062807.337837432 1.11809 -0.0430956 9.73961 -0.0500674 -0.0479369 -0.853277 0.17 -0.88 pose: 0.67002015 5.82841 -0.0790948 0 0.00984553 -0.00654384 -0.635144 0.772303 uwb: 0.0 821.922 445.342 +imu_odom_: 1691062807.355725732 1.51553 0.0167594 9.82102 -0.0585895 -0.0511327 -0.828776 0.17 -0.88 pose: 0.0 5.82841 -0.0790948 0 0.00984553 -0.00654384 -0.635144 0.772303 uwb: 0.49981663 821.907 445.297 +imu_odom_: 1691062807.369832509 0.988805 0.191536 10.0006 -0.0628506 -0.0596548 -0.757403 0.17 -0.88 pose: 0.0 5.82841 -0.0790948 0 0.00984553 -0.00654384 -0.635144 0.772303 uwb: 0.0 821.907 445.297 +imu_odom_: 1691062807.385686265 1.07021 -0.428562 9.55047 -0.0426106 0.0127832 -0.696683 0.17 -0.88 pose: 0.34100492 5.82118 -0.0860031 0 0.00767608 -0.00985993 -0.646722 0.762624 uwb: 0.0 821.907 445.297 +imu_odom_: 1691062807.400712903 1.21625 -0.608127 9.41161 -0.0415453 -0.0106526 -0.66579 0.14 -0.73 pose: 0.39841898 5.82801 -0.0932407 0 0.004809 -0.0124874 -0.658611 0.752364 uwb: 0.50025119 822.805 444.763 +imu_odom_: 1691062807.417694758 1.30005 0.0191536 9.75158 -0.0458064 -0.0649811 -0.651942 0.14 -0.73 pose: 0.7160569 5.82809 -0.0932296 0 0.00415279 -0.0126179 -0.660503 0.750706 uwb: 0.0 822.805 444.763 +imu_odom_: 1691062807.432692232 1.13485 -0.0047884 10.2855 -0.0372843 0.00745685 -0.640224 0.14 -0.73 pose: 0.0 5.82809 -0.0932296 0 0.00415279 -0.0126179 -0.660503 0.750706 uwb: 0.0 822.805 444.763 +imu_odom_: 1691062807.447750952 1.33836 -0.208296 10.1131 -0.036219 0.0458064 -0.580569 0.1 -0.53 pose: 0.39845398 5.82801 -0.0932403 0 0.00133078 -0.0155789 -0.670703 0.741561 uwb: 0.50059242 822.392 445.141 +imu_odom_: 1691062807.462963662 1.01275 -0.545878 9.67976 -0.0511327 -0.00106526 -0.50387 0.1 -0.53 pose: 0.0 5.82801 -0.0932403 0 0.00133078 -0.0155789 -0.670703 0.741561 uwb: 0.0 822.392 445.141 +imu_odom_: 1691062807.487844834 1.24259 -0.371101 10.0987 -0.04048 0.0149137 -0.436758 0.09 -0.47 pose: 0.30271430 5.82415 -0.09691 0 -0.00093638 -0.0159745 -0.677162 0.73566 uwb: 0.0 822.392 445.141 +imu_odom_: 1691062807.505063799 1.09415 0.0837971 10.4172 -0.0479369 -0.00745685 -0.351537 0.12 -0.61 pose: 0.0 5.82415 -0.09691 0 -0.00093638 -0.0159745 -0.677162 0.73566 uwb: 0.50064491 824.459 444.927 +imu_odom_: 1691062807.521815834 -0.914585 -0.328006 8.73644 -0.0532632 0.151268 -0.331297 0.11 -0.38 pose: 0.0 5.82415 -0.09691 0 -0.00093638 -0.0159745 -0.677162 0.73566 uwb: 0.0 824.459 444.927 +imu_odom_: 1691062807.537808998 -1.64242 -0.0311246 10.9367 -0.0181095 0.0543285 -0.346211 0.11 -0.38 pose: 0.49880170 5.82769 -0.107353 0 -0.0027813 -0.0171384 -0.684967 0.728367 uwb: 0.0 824.459 444.927 +imu_odom_: 1691062807.553743832 -0.837971 -0.124498 9.9934 -0.0617853 -0.152333 -0.289752 0.12 -0.32 pose: 0.0 5.82769 -0.107353 0 -0.0027813 -0.0171384 -0.684967 0.728367 uwb: 0.49860920 826.42 444.385 +imu_odom_: 1691062807.569682749 1.31681 -0.0502782 10.0748 -0.0660464 -0.151268 -0.249272 0.12 -0.32 pose: 0.0 5.82769 -0.107353 0 -0.0027813 -0.0171384 -0.684967 0.728367 uwb: 0.0 826.42 444.385 +imu_odom_: 1691062807.586683561 0.895431 -0.593762 9.36612 -0.0532632 0.04048 -0.234358 0.12 -0.32 pose: 0.31973495 5.82769 -0.107353 0 -1.66403e-05-0.0144037 -0.6893 0.724333 uwb: 0.0 826.42 444.385 +imu_odom_: 1691062807.602826924 0.706289 0.100556 10.501 -0.0372843 0.00958738 -0.239684 0.13 -0.26 pose: 0.41866234 5.82743 -0.115148 0 -0.00318726 -0.0152403 -0.69368 0.720115 uwb: 0.50044368 825.521 444.913 +imu_odom_: 1691062807.620823426 -0.0167594 -0.0191536 9.93833 -0.0490022 0.0543285 -0.252468 0.13 -0.26 pose: 0.0 5.82743 -0.115148 0 -0.00318726 -0.0152403 -0.69368 0.720115 uwb: 0.0 825.521 444.913 +imu_odom_: 1691062807.637866527 -0.0430956 -0.308852 10.3382 -0.0703074 0.00319579 -0.188552 0.13 -0.26 pose: 0.0 5.82743 -0.115148 0 -0.00318726 -0.0152403 -0.69368 0.720115 uwb: 0.0 825.521 444.913 +imu_odom_: 1691062807.654705181 0.363919 -0.380678 10.2185 -0.0372843 -0.0511327 -0.199204 0.14 -0.2 pose: 0.8158301 5.82733 -0.121491 0 -0.00261449 -0.0159272 -0.694499 0.719313 uwb: 0.49919250 828.504 444.254 +imu_odom_: 1691062807.672816010 1.14682 -0.23942 10.0461 -0.036219 0.0191748 -0.192813 0.18 -0.29 pose: 0.0 5.82733 -0.121491 0 -0.00261449 -0.0159272 -0.694499 0.719313 uwb: 0.0 828.504 444.254 +imu_odom_: 1691062807.689818863 0.222661 -0.311246 10.2304 -0.0649811 0.0319579 -0.166181 0.18 -0.29 pose: 0.67890087 5.82733 -0.121491 0 -0.000892599-0.012335 -0.70073 0.713319 uwb: 0.0 828.504 444.254 +imu_odom_: 1691062807.706731888 -0.0670376 -0.129287 9.96946 -0.0511327 -0.0138484 -0.171508 0.15 -0.23 pose: 0.0 5.82733 -0.121491 0 -0.000892599-0.012335 -0.70073 0.713319 uwb: 0.49875503 828.56 444.434 +imu_odom_: 1691062807.724852049 0.349553 -0.21069 9.92157 -0.056459 0.0191748 -0.143811 0.15 -0.23 pose: 0.0 5.82733 -0.121491 0 -0.000892599-0.012335 -0.70073 0.713319 uwb: 0.0 828.56 444.434 +imu_odom_: 1691062807.741817280 0.296881 -0.129287 9.98622 -0.0575243 -0.0191748 -0.116114 0.15 -0.23 pose: 0.34104576 5.82694 -0.13564 0 -0.000661591-0.0103394 -0.703348 0.710771 uwb: 0.0 828.56 444.434 +imu_odom_: 1691062807.756729009 0.577003 -0.227449 10.1682 -0.0479369 0.00958738 -0.145941 0.15 -0.2 pose: 0.34996438 5.82694 -0.13564 0 0.000840105 -0.00716678 -0.705681 0.708493 uwb: 0.50035910 830.542 443.973 +imu_odom_: 1691062807.772717798 1.19231 -0.0526724 10.0485 -0.0575243 -0.00958738 -0.129962 0.15 -0.2 pose: 0.0 5.82694 -0.13564 0 0.000840105 -0.00716678 -0.705681 0.708493 uwb: 0.0 830.542 443.973 +imu_odom_: 1691062807.788717670 1.16358 -0.347159 9.81623 -0.0671117 -0.02024 -0.0894822 0.15 -0.2 pose: 0.0 5.82694 -0.13564 0 0.000840105 -0.00716678 -0.705681 0.708493 uwb: 0.0 830.542 443.973 +imu_odom_: 1691062807.805720815 1.1157 -0.198719 10.477 -0.0596548 0.0170442 -0.052198 0.14 -0.17 pose: 0.48892937 5.82663 -0.149779 0 -0.00181307 -0.00786593 -0.708517 0.705647 uwb: 0.50039409 833.402 442.913 +imu_odom_: 1691062807.822717252 1.33118 -0.258574 10.4435 -0.0660464 -0.0671117 -0.0394148 0.14 -0.17 pose: 0.0 5.82663 -0.149779 0 -0.00181307 -0.00786593 -0.708517 0.705647 uwb: 0.0 833.402 442.913 +imu_odom_: 1691062807.838722956 1.84354 0.143652 9.71088 -0.0585895 -0.0245011 -0.0798948 0.11 -0.2 pose: 0.41991352 5.82663 -0.149779 0 -0.00566193 -0.0104247 -0.709864 0.704239 uwb: 0.0 833.402 442.913 +imu_odom_: 1691062807.855659022 1.67594 0.275333 9.85932 -0.0426106 0.0458064 -0.111853 0.11 -0.2 pose: 0.0 5.82663 -0.149779 0 -0.00566193 -0.0104247 -0.709864 0.704239 uwb: 0.49946082 831.54 443.768 +imu_odom_: 1691062807.872658667 0.773327 -0.0981623 9.80186 -0.0553937 0.0415453 -0.127832 0.11 -0.2 pose: 0.0 5.82663 -0.149779 0 -0.00566193 -0.0104247 -0.709864 0.704239 uwb: 0.0 831.54 443.768 +imu_odom_: 1691062807.889783430 0.59855 -0.337582 9.77313 -0.0426106 -0.0245011 -0.138484 0.12 -0.17 pose: 0.7008037 5.82663 -0.149779 0 -0.00608497 -0.0110653 -0.710152 0.703935 uwb: 0.0 831.54 443.768 +imu_odom_: 1691062807.907720727 0.782904 -0.272939 9.5385 -0.056459 -0.0234358 -0.117179 0.08 -0.11 pose: 0.0 5.82663 -0.149779 0 -0.00608497 -0.0110653 -0.710152 0.703935 uwb: 0.50066533 833.106 443.688 +imu_odom_: 1691062807.924715997 0.682347 -0.241814 10.0102 -0.0671117 0.00852212 -0.0873517 0.08 -0.11 pose: 0.67997705 5.83353 -0.157015 0 -0.008864 -0.0130053 -0.713879 0.700092 uwb: 0.0 833.106 443.688 +imu_odom_: 1691062807.941770180 0.811634 -0.227449 10.137 -0.0639159 -0.0394148 -0.0617853 0.07 -0.08 pose: 0.0 5.83353 -0.157015 0 -0.008864 -0.0130053 -0.713879 0.700092 uwb: 0.0 833.106 443.688 +imu_odom_: 1691062807.957651643 0.878672 -0.126893 9.97664 -0.0500674 -0.015979 -0.0500674 0.07 -0.08 pose: 0.0 5.83353 -0.157015 0 -0.008864 -0.0130053 -0.713879 0.700092 uwb: 0.49959206 835.036 443.064 +imu_odom_: 1691062807.974696493 0.802058 -0.215478 9.8665 -0.0532632 0.0106526 -0.0149137 0.07 -0.08 pose: 0.34007456 5.8263 -0.16392 0 -0.0110683 -0.0115758 -0.715401 0.69853 uwb: 0.0 835.036 443.064 +imu_odom_: 1691062807.999683242 0.584185 -0.0574608 10.161 -0.0500674 0 -0.0266316 0.06 -0.05 pose: 0.42966043 5.8263 -0.16392 0 -0.0140887 -0.014069 -0.71652 0.697282 uwb: 0.49986913 831.199 444.387 +imu_odom_: 1691062808.25862836 0.191536 -0.215478 9.71088 -0.0628506 0.0383495 -0.0607201 0.06 -0.08 pose: 0.8210799 5.8263 -0.16392 0 -0.0132474 -0.0139416 -0.716725 0.69709 uwb: 0.0 831.199 444.387 +imu_odom_: 1691062808.51661828 -1.39343 0.21069 9.52653 -0.0479369 0.0479369 -0.113983 0.08 -0.02 pose: 0.42955544 5.82623 -0.163929 0 -0.00941831 -0.0112966 -0.718096 0.695788 uwb: 0.50292854 830.263 444.795 +imu_odom_: 1691062808.68666140 -1.01035 -0.531513 10.2783 -0.072438 -0.0191748 -0.015979 0.08 -0.02 pose: 0.0 5.82623 -0.163929 0 -0.00941831 -0.0112966 -0.718096 0.695788 uwb: 0.0 830.263 444.795 +imu_odom_: 1691062808.93722593 0.646434 -0.280122 10.094 -0.0372843 -0.0788296 0.00852212 0.1 -0.02 pose: 0.42803304 5.83036 -0.168141 0 -0.00593326 -0.00807088 -0.71985 0.694058 uwb: 0.0 830.263 444.795 +imu_odom_: 1691062808.119740905 0.624887 0.0909797 10.24 -0.0735032 0.00639159 0.0191748 0.13 -0.05 pose: 0.0 5.83036 -0.168141 0 -0.00593326 -0.00807088 -0.71985 0.694058 uwb: 0.49820674 830.332 445.019 +imu_odom_: 1691062808.144789192 -0.282516 -0.158017 9.68455 -0.0639159 0.0117179 -0.0394148 0.12 -0.02 pose: 0.51074765 5.82599 -0.178041 0 -0.00693535 -0.00948389 -0.720296 0.693567 uwb: 0.0 830.332 445.019 +imu_odom_: 1691062808.170775423 0.0311246 -0.299275 9.82341 -0.0490022 -0.0191748 0.00319579 0.13 -0.02 pose: 0.0 5.82599 -0.178041 0 -0.00693535 -0.00948389 -0.720296 0.693567 uwb: 0.49990997 833.319 444.409 +imu_odom_: 1691062808.187759320 0.502782 -0.526724 9.87129 -0.0511327 -0.0298274 0.0127832 0.13 -0.02 pose: 0.32928356 5.82599 -0.178041 0 -0.00460691 -0.00697394 -0.721111 0.69277 uwb: 0.0 833.319 444.409 +imu_odom_: 1691062808.212692697 0.371101 -0.0167594 9.55765 -0.0330232 -0.0340885 -0.00852212 0.18 -0.05 pose: 0.0 5.82599 -0.178041 0 -0.00460691 -0.00697394 -0.721111 0.69277 uwb: 0.50050785 833.481 444.949 +imu_odom_: 1691062808.234752163 0.150835 -0.11971 10.3046 -0.0458064 0.0330232 -0.00426106 0.18 -0.05 pose: 0.42050557 5.83287 -0.185296 0 -0.00420106 -0.00468478 -0.721618 0.692263 uwb: 0.0 833.481 444.949 +imu_odom_: 1691062808.251694937 -0.167594 -0.280122 9.80186 -0.0575243 0.00745685 0.00213053 0.18 -0.05 pose: 0.0 5.83287 -0.185296 0 -0.00420106 -0.00468478 -0.721618 0.692263 uwb: 0.49986331 836.958 444.236 +imu_odom_: 1691062808.277836326 0.0454898 -0.167594 9.56484 -0.0426106 0.0170442 0.00426106 0.13 0 pose: 0.48035198 5.82561 -0.192168 0 0.000192748 -0.00309421 -0.722376 0.691494 uwb: 0.0 836.958 444.236 +imu_odom_: 1691062808.302660918 0.232238 -0.402226 9.91918 -0.0628506 0.0266316 0.0149137 0.15 -0.05 pose: 0.35081310 5.83062 -0.197489 0 0.00298165 -0.000473805-0.722815 0.691035 uwb: 0.49960082 836.598 444.806 +imu_odom_: 1691062808.328790640 1.01993 -0.011971 10.3597 -0.0383495 0.0106526 -0.0106526 0.15 -0.05 pose: 0.0 5.83062 -0.197489 0 0.00298165 -0.000473805-0.722815 0.691035 uwb: 0.0 836.598 444.806 +imu_odom_: 1691062808.344672686 0.452504 -0.19393 9.26317 -0.0681769 0.036219 0.0276969 0.14 -0.02 pose: 0.6998704 5.83246 -0.19945 0 0.00287465 0.000300423 -0.722876 0.690972 uwb: 0.0 836.598 444.806 +imu_odom_: 1691062808.371915924 0.565032 -0.232238 10.58 -0.0490022 -0.0149137 0.0213053 0.14 -0.02 pose: 0.0 5.83246 -0.19945 0 0.00287465 0.000300423 -0.722876 0.690972 uwb: 0.49851881 838.078 444.471 +imu_odom_: 1691062808.397639088 0.445322 -0.174777 9.99819 -0.0447411 -0.0138484 0.0138484 0.17 0 pose: 0.50965980 5.82517 -0.206296 0 0.00114941 -0.000372984-0.723513 0.690309 uwb: 0.50137405 839.16 444.572 +imu_odom_: 1691062808.423729729 0.169988 -0.354342 9.69652 -0.0617853 0 0.0245011 0.17 0 pose: 0.0 5.82517 -0.206296 0 0.00114941 -0.000372984-0.723513 0.690309 uwb: 0.0 839.16 444.572 +imu_odom_: 1691062808.448642982 0.488417 -0.105345 8.98783 -0.056459 -0.02024 0.0170442 0.16 -0.02 pose: 0.42885258 5.83208 -0.213529 0 -0.00116263 -0.00262272 -0.723778 0.690027 uwb: 0.49851006 840.587 444.063 +imu_odom_: 1691062808.465658377 0.897826 -0.272939 9.99579 -0.0681769 -0.0276969 0.0500674 0.16 -0.02 pose: 0.0 5.83208 -0.213529 0 -0.00116263 -0.00262272 -0.723778 0.690027 uwb: 0.0 840.587 444.063 +imu_odom_: 1691062808.483646713 0.275333 -0.414197 9.35175 -0.0596548 0.0255663 0.0980043 0.18 0 pose: 0.52029625 5.82484 -0.220429 0 0.00101273 -0.00145893 -0.724143 0.689648 uwb: 0.0 840.587 444.063 +imu_odom_: 1691062808.499838782 0.0502782 -0.466869 9.91439 -0.0500674 0.0213053 0.190682 0.18 0 pose: 0.0 5.82484 -0.220429 0 0.00101273 -0.00145893 -0.724143 0.689648 uwb: 0.50185235 840.659 444.312 +imu_odom_: 1691062808.517718042 0.318429 -0.509965 10.0437 -0.0511327 -0.109722 0.268447 0.17 0.2 pose: 0.24987624 5.82484 -0.220429 0 0.000113537 -0.0037142 -0.72425 0.689527 uwb: 0.0 840.659 444.312 +imu_odom_: 1691062808.534834638 0.969652 -0.356736 10.2017 -0.0319579 -0.036219 0.313188 0.17 0.2 pose: 0.44135265 5.8244 -0.234577 0 -0.000374282-0.000531245-0.723008 0.69084 uwb: 0.0 840.659 444.312 +imu_odom_: 1691062808.551663378 0.921768 -0.0790087 10.0556 -0.0266316 0.00213053 0.380299 0.17 0.2 pose: 0.0 5.8244 -0.234577 0 -0.000374282-0.000531245-0.723008 0.69084 uwb: 0.49834382 841.622 444.012 +imu_odom_: 1691062808.568771517 0.186748 -0.658405 9.82341 -0.0777643 0.0798948 0.427171 0.22 0.41 pose: 0.8190092 5.82448 -0.234567 0 -0.00102892 -0.000103147-0.722359 0.691517 uwb: 0.0 841.622 444.012 +imu_odom_: 1691062808.584760598 0.42138 -0.124498 10.252 -0.04048 0.00426106 0.426106 0.22 0.41 pose: 0.0 5.82448 -0.234567 0 -0.00102892 -0.000103147-0.722359 0.691517 uwb: 0.0 841.622 444.012 +imu_odom_: 1691062808.601878361 0.251391 -0.320823 10.0078 -0.0628506 -0.0553937 0.4815 0.22 0.41 pose: 0.0 5.82448 -0.234567 0 -0.00102892 -0.000103147-0.722359 0.691517 uwb: 0.50161028 843.551 443.417 +imu_odom_: 1691062808.618748806 1.10373 -0.260968 9.63666 -0.0777643 0.0213053 0.52198 0.17 0.47 pose: 0.50627084 5.82408 -0.248703 0 -0.00379091 -0.00152672 -0.717029 0.697032 uwb: 0.0 843.551 443.417 +imu_odom_: 1691062808.633796444 0.462081 -0.464475 9.94791 -0.0639159 -0.0138484 0.548611 0.17 0.44 pose: 0.0 5.82408 -0.248703 0 -0.00379091 -0.00152672 -0.717029 0.697032 uwb: 0.0 843.551 443.417 +imu_odom_: 1691062808.649648159 0.37589 -0.222661 9.65342 -0.0798948 -0.0245011 0.566721 0.17 0.44 pose: 0.66989184 5.82408 -0.248703 0 -0.00371386 -3.23164e-05-0.706735 0.707468 uwb: 0.50064785 845.977 442.717 +imu_odom_: 1691062808.664758501 0.268151 -0.354342 10.0102 -0.0415453 -0.0234358 0.591222 0.17 0.44 pose: 0.0 5.82408 -0.248703 0 -0.00371386 -3.23164e-05-0.706735 0.707468 uwb: 0.0 845.977 442.717 +imu_odom_: 1691062808.681784978 0.490811 -0.656011 9.80186 -0.0745685 -0.0266316 0.618919 0.17 0.53 pose: 0.0 5.82408 -0.248703 0 -0.00371386 -3.23164e-05-0.706735 0.707468 uwb: 0.0 845.977 442.717 +imu_odom_: 1691062808.696610963 0.198719 -0.292093 9.91918 -0.0500674 -0.00958738 0.601874 0.17 0.53 pose: 0.31004638 5.82372 -0.262841 0 -0.00284872 0.00140327 -0.700919 0.713234 uwb: 0.49973498 845.553 443.078 +imu_odom_: 1691062808.712666248 0.292093 -0.4956 10.1011 -0.0532632 -0.0266316 0.619984 0.16 0.55 pose: 0.39961183 5.8234 -0.262877 0 -0.00314573 0.00389985 -0.692775 0.721136 uwb: 0.0 845.553 443.078 +imu_odom_: 1691062808.729611647 0.890643 -0.316035 10.1227 -0.0553937 -0.0777643 0.609331 0.16 0.55 pose: 0.0 5.8234 -0.262877 0 -0.00314573 0.00389985 -0.692775 0.721136 uwb: 0.0 845.553 443.078 +imu_odom_: 1691062808.747660063 1.07739 -0.0909797 9.9527 -0.0394148 -0.0596548 0.600809 0.16 0.55 pose: 0.0 5.8234 -0.262877 0 -0.00314573 0.00389985 -0.692775 0.721136 uwb: 0.50011996 842.258 444.392 +imu_odom_: 1691062808.764646293 1.34075 -0.361524 9.39006 -0.0596548 -0.04048 0.592287 0.14 0.44 pose: 0.6123757 5.82372 -0.262841 0 -0.00336799 0.00443494 -0.691489 0.722365 uwb: 0.0 842.258 444.392 +imu_odom_: 1691062808.779723970 1.70467 -0.225055 10.1682 -0.0330232 -0.0298274 0.513457 0.13 0.38 pose: 0.0 5.82372 -0.262841 0 -0.00336799 0.00443494 -0.691489 0.722365 uwb: 0.0 842.258 444.392 +imu_odom_: 1691062808.796719533 1.61848 0.0981623 9.62948 -0.056459 0.0394148 0.416518 0.13 0.38 pose: 0.67979333 5.82326 -0.276975 0 -0.0079786 -0.000444662-0.677715 0.735281 uwb: 0.0 842.258 444.392 +imu_odom_: 1691062808.813595811 1.37188 0.198719 9.84256 -0.056459 0.0490022 0.356864 0.11 0.29 pose: 0.0 5.82326 -0.276975 0 -0.0079786 -0.000444662-0.677715 0.735281 uwb: 0.0 842.258 444.392 +imu_odom_: 1691062808.830609747 0.335188 -0.0981623 9.4164 -0.0681769 0.036219 0.30147 0.11 0.29 pose: 0.0 5.82326 -0.276975 0 -0.0079786 -0.000444662-0.677715 0.735281 uwb: 0.0 842.258 444.392 +imu_odom_: 1691062808.855595330 0.73502 -0.289698 9.92157 -0.052198 -0.0436758 0.243946 0.11 0.29 pose: 0.32942063 5.83017 -0.284205 0 -0.00892821 -0.00310051 -0.672978 0.739602 uwb: 0.99758008 840.815 444.853 +imu_odom_: 1691062808.872720676 0.577003 -0.134075 9.75398 -0.0575243 0.0532632 0.203466 0.1 0.32 pose: 0.33960794 5.82294 -0.29112 0 -0.00770533 -0.00385611 -0.669645 0.742631 uwb: 0.0 840.815 444.853 +imu_odom_: 1691062808.889649451 -0.198719 -0.227449 10.0341 -0.0426106 0.0841559 0.184291 0.1 0.32 pose: 0.0 5.82294 -0.29112 0 -0.00770533 -0.00385611 -0.669645 0.742631 uwb: 0.0 840.815 444.853 +imu_odom_: 1691062808.905714361 -0.933739 -0.272939 9.89763 -0.072438 0.0351537 0.225836 0.11 0.23 pose: 0.52032541 5.82294 -0.29112 0 -0.00575684 -0.00418527 -0.666345 0.74561 uwb: 0.50191068 844.149 443.664 +imu_odom_: 1691062808.923689864 -0.21069 -0.627281 10.0389 -0.0713727 -0.0788296 0.256729 0.11 0.23 pose: 0.0 5.82294 -0.29112 0 -0.00575684 -0.00418527 -0.666345 0.74561 uwb: 0.0 844.149 443.664 +imu_odom_: 1691062808.941588373 0.756568 -0.447716 10.1275 -0.036219 -0.0372843 0.216249 0.11 0.23 pose: 0.0 5.82294 -0.29112 0 -0.00575684 -0.00418527 -0.666345 0.74561 uwb: 0.0 844.149 443.664 +imu_odom_: 1691062808.955593656 0.816423 0.155623 10.4986 -0.0458064 0.0149137 0.233293 0.12 0.17 pose: 0.7004829 5.82294 -0.29112 0 -0.00525545 -0.00350712 -0.665862 0.746049 uwb: 0.49803175 841.811 444.666 +imu_odom_: 1691062808.972646674 0.380678 -0.248997 10.0461 -0.0436758 -0.00852212 0.252468 0.12 0.17 pose: 0.0 5.82294 -0.29112 0 -0.00525545 -0.00350712 -0.665862 0.746049 uwb: 0.0 841.811 444.666 +imu_odom_: 1691062808.989599364 0.280122 -0.486023 9.50737 -0.0213053 -0.00106526 0.186421 0.12 0.17 pose: 0.65946247 5.82985 -0.29835 0 -0.00551606 -0.00290094 -0.661013 0.750348 uwb: 0.0 841.811 444.666 +imu_odom_: 1691062809.7679861 0.107739 -0.11971 9.86411 -0.04048 -0.04048 0.198139 0.17 0.2 pose: 0.0 5.82985 -0.29835 0 -0.00551606 -0.00290094 -0.661013 0.750348 uwb: 0.50051077 841.952 445.163 +imu_odom_: 1691062809.24651217 0.4956 -0.45011 10.0054 -0.0639159 -0.0245011 0.217314 0.17 0.2 pose: 0.0 5.82985 -0.29835 0 -0.00551606 -0.00290094 -0.661013 0.750348 uwb: 0.0 841.952 445.163 +imu_odom_: 1691062809.38667584 1.01275 -0.423774 10.3884 -0.0511327 -0.0458064 0.194943 0.17 0.2 pose: 0.34997315 5.82257 -0.305208 0 -0.00404789 -0.000520107-0.658795 0.752311 uwb: 0.0 841.952 445.163 +imu_odom_: 1691062809.55586443 0.639252 0.023942 10.2615 -0.0468716 -0.0372843 0.188552 0.14 0.14 pose: 0.41069742 5.82948 -0.312445 0 -0.00618525 -0.000614918-0.656228 0.754537 uwb: 0.50050204 845.428 444.502 +imu_odom_: 1691062809.72585506 0.715866 0.0957681 10.24 -0.052198 0.0436758 0.199204 0.14 0.14 pose: 0.7047410 5.82948 -0.312445 0 -0.00594062 -0.0013587 -0.655835 0.75488 uwb: 0.0 845.428 444.502 +imu_odom_: 1691062809.90640047 0.0383072 -0.4956 9.39006 -0.0553937 0.0394148 0.18003 0.19 0.17 pose: 0.0 5.82948 -0.312445 0 -0.00594062 -0.0013587 -0.655835 0.75488 uwb: 0.0 845.428 444.502 +imu_odom_: 1691062809.107572614 0.201113 -0.306458 9.96946 -0.0479369 0.0255663 0.152333 0.15 0.11 pose: 0.44925053 5.82919 -0.320328 0 -0.00409618 -0.0016281 -0.653308 0.75708 uwb: 0.49861798 843.091 445.474 +imu_odom_: 1691062809.122568630 0.234632 -0.112527 9.85932 -0.0628506 0.0223706 0.189617 0.15 0.11 pose: 0.0 5.82919 -0.320328 0 -0.00409618 -0.0016281 -0.653308 0.75708 uwb: 0.0 843.091 445.474 +imu_odom_: 1691062809.138623916 0.591368 -0.189142 9.75877 -0.0596548 -0.0319579 0.198139 0.15 0.11 pose: 0.0 5.82919 -0.320328 0 -0.00409618 -0.0016281 -0.653308 0.75708 uwb: 0.0 843.091 445.474 +imu_odom_: 1691062809.155568440 0.782904 -0.28491 9.87129 -0.0713727 -0.0660464 0.215183 0.15 0.11 pose: 0.23001494 5.82916 -0.326584 0 -0.002405 0.000214009 -0.652241 0.758008 uwb: 0.50223734 845.61 445.133 +imu_odom_: 1691062809.173627356 1.39103 -0.308852 9.80665 -0.0639159 -0.0575243 0.245011 0.14 0.08 pose: 0.0 5.82916 -0.326584 0 -0.002405 0.000214009 -0.652241 0.758008 uwb: 0.0 845.61 445.133 +imu_odom_: 1691062809.191585361 1.79565 -0.316035 9.53371 -0.0553937 -0.0276969 0.184291 0.14 0.08 pose: 0.31983121 5.82916 -0.326584 0 -0.00301688 -0.00165721 -0.6503 0.75967 uwb: 0.0 845.61 445.133 +imu_odom_: 1691062809.207600983 1.71185 0.138864 10.1442 -0.0607201 0.0117179 0.138484 0.12 0.02 pose: 0.35986881 5.83607 -0.333805 0 -0.00629193 -0.00472903 -0.647771 0.761794 uwb: 0.49785969 843.227 445.948 +imu_odom_: 1691062809.225721728 1.04627 -0.0885855 9.94551 -0.0511327 0.0330232 0.110787 0.12 0.02 pose: 0.0 5.83607 -0.333805 0 -0.00629193 -0.00472903 -0.647771 0.761794 uwb: 0.0 843.227 445.948 +imu_odom_: 1691062809.242712625 0.758962 -0.296881 9.84975 -0.0479369 0.015979 0.0788296 0.12 0.02 pose: 0.0 5.83607 -0.333805 0 -0.00629193 -0.00472903 -0.647771 0.761794 uwb: 0.0 843.227 445.948 +imu_odom_: 1691062809.259585987 0.799663 -0.320823 10.0604 -0.0511327 0 0.076699 0.08 0.05 pose: 0.16997897 5.83607 -0.333805 0 -0.00729501 -0.00613529 -0.646951 0.762472 uwb: 0.50000623 844.183 445.63 +imu_odom_: 1691062809.276583300 0.931344 -0.208296 9.8258 -0.0575243 -0.0149137 0.0884169 0.1 0.08 pose: 0.0 5.83607 -0.333805 0 -0.00729501 -0.00613529 -0.646951 0.762472 uwb: 0.0 844.183 445.63 +imu_odom_: 1691062809.292718206 0.830788 -0.332794 9.93594 -0.0553937 -0.00532632 0.117179 0.1 0.08 pose: 0.67987501 5.82885 -0.340715 0 -0.0113292 -0.0101296 -0.645449 0.763652 uwb: 0.0 844.183 445.63 +imu_odom_: 1691062809.310712959 0.766145 -0.241814 9.83299 -0.0575243 0.015979 0.123571 0.09 0.05 pose: 0.0 5.82885 -0.340715 0 -0.0113292 -0.0101296 -0.645449 0.763652 uwb: 0.50114075 844.253 445.879 +imu_odom_: 1691062809.327620444 0.864307 -0.136469 10.0485 -0.0500674 -0.015979 0.12144 0.09 0.05 pose: 0.0 5.82885 -0.340715 0 -0.0113292 -0.0101296 -0.645449 0.763652 uwb: 0.0 844.253 445.879 +imu_odom_: 1691062809.352646566 0.727837 -0.0957681 10.24 -0.052198 0.00958738 0.109722 0.05 0.08 pose: 0.61023503 5.83578 -0.347917 0 -0.0128282 -0.0148098 -0.643663 0.765059 uwb: 0.50136531 845.624 445.178 +imu_odom_: 1691062809.370813101 0.244209 -0.246603 9.65821 -0.0660464 0.0308927 0.072438 0.05 0.08 pose: 0.7189443 5.83578 -0.347917 0 -0.0120823 -0.0149012 -0.643484 0.765219 uwb: 0.0 845.624 445.178 +imu_odom_: 1691062809.395609112 -1.01514 0.1652 9.61033 -0.04048 0.0798948 -0.04048 0.07 0.05 pose: 0.0 5.83578 -0.347917 0 -0.0120823 -0.0149012 -0.643484 0.765219 uwb: 0.49779845 847.143 445.026 +imu_odom_: 1691062809.422714984 -0.679953 -0.885855 10.0796 -0.0820254 -0.052198 0.111853 0.07 0.05 pose: 0.36003214 5.83578 -0.347917 0 -0.00913334 -0.0132838 -0.642834 0.765836 uwb: 0.0 847.143 445.026 +imu_odom_: 1691062809.448587181 0.488417 -0.196325 9.87129 -0.0213053 -0.0458064 0.0852212 0.1 0.05 pose: 0.51901883 5.8306 -0.352868 0 -0.00651585 -0.00867366 -0.642891 0.76588 uwb: 0.50025705 851.49 443.822 +imu_odom_: 1691062809.475720177 0.529119 -0.0957681 9.92397 -0.0671117 0.0276969 0.128897 0.1 0.05 pose: 0.0 5.8306 -0.352868 0 -0.00651585 -0.00867366 -0.642891 0.76588 uwb: 0.0 851.49 443.822 +imu_odom_: 1691062809.491691468 0.550666 -0.246603 9.93354 -0.0585895 0.00213053 0.0681769 0.13 0.05 pose: 0.32860986 5.83547 -0.36205 0 -0.00404472 -0.00753544 -0.642218 0.766474 uwb: 0.0 851.49 443.822 +imu_odom_: 1691062809.518874044 0.222661 -0.105345 10.4244 -0.0490022 -0.0117179 0.0692422 0.13 0.05 pose: 0.0 5.83547 -0.36205 0 -0.00404472 -0.00753544 -0.642218 0.766474 uwb: 0.49986332 855.885 442.74 +imu_odom_: 1691062809.543777091 -0.071826 -0.426168 9.78271 -0.0735032 0.00213053 0.0884169 0.13 0.02 pose: 0.28117895 5.83547 -0.36205 0 -0.00261903 -0.00720607 -0.641454 0.767123 uwb: 0.0 855.885 442.74 +imu_odom_: 1691062809.560592998 0.215478 -0.160412 10.0245 -0.0490022 -0.02024 0.0671117 0.13 0.02 pose: 0.0 5.83547 -0.36205 0 -0.00261903 -0.00720607 -0.641454 0.767123 uwb: 0.49955126 855.85 442.604 +imu_odom_: 1691062809.586706389 0.191536 -0.0167594 9.85932 -0.0543285 0.00319579 0.0798948 0.14 0.02 pose: 0.43065498 5.83547 -0.36205 0 -0.000941191-0.00434558 -0.640924 0.767591 uwb: 0.0 855.85 442.604 +imu_odom_: 1691062809.613723600 0.521936 -0.217872 9.64145 -0.0585895 -0.0415453 0.0596548 0.18 0.05 pose: 0.41860403 5.83521 -0.376162 0 0.00141492 -0.0013495 -0.640312 0.768112 uwb: 0.50311812 856.859 442.489 +imu_odom_: 1691062809.638708016 0.179565 -0.318429 9.75877 -0.0500674 0.0170442 0.072438 0.15 0.02 pose: 0.26227717 5.83521 -0.376162 0 0.00239494 -0.00136437 -0.639969 0.768396 uwb: 0.0 856.859 442.489 +imu_odom_: 1691062809.655566213 -0.0502782 -0.258574 9.96946 -0.0639159 -0.0298274 0.0735032 0.15 0.02 pose: 0.0 5.83521 -0.376162 0 0.00239494 -0.00136437 -0.639969 0.768396 uwb: 0.49692059 856.87 442.535 +imu_odom_: 1691062809.680706078 0.311246 -0.306458 9.52413 -0.0511327 -0.015979 0.0681769 0.19 0 pose: 0.26871970 5.8421 -0.383402 0 0.00068646 -0.00164678 -0.639722 0.768604 uwb: 0.0 856.87 442.535 +imu_odom_: 1691062809.707616254 0.557849 -0.344765 10.3334 -0.0830906 0.02024 0.0809601 0.19 0.02 pose: 0.23988726 5.8421 -0.383402 0 0.00144362 0.000677731 -0.639418 0.768858 uwb: 0.49925960 854.505 443.439 +imu_odom_: 1691062809.732634210 0.61531 -0.454898 10.1562 -0.0628506 0.0191748 0.0553937 0.19 0.02 pose: 0.34997899 5.83696 -0.388312 0 0.000754034 0.00358345 -0.639015 0.769186 uwb: 0.0 854.505 443.439 +imu_odom_: 1691062809.759715876 0.00957681 -0.342371 9.55765 -0.0617853 0.00319579 0.0756338 0.19 0.02 pose: 0.6929293 5.83487 -0.390312 0 0.000116936 0.00339562 -0.638906 0.769277 uwb: 0.49988957 855.913 442.854 +imu_odom_: 1691062809.785606447 0.385466 -0.304064 9.25838 -0.0543285 0.0127832 0.0575243 0.19 0.02 pose: 0.0 5.83487 -0.390312 0 0.000116936 0.00339562 -0.638906 0.769277 uwb: 0.0 855.913 442.854 +imu_odom_: 1691062809.809592257 0.816423 -0.339977 10.2208 -0.0575243 0.0191748 0.0585895 0.2 0.02 pose: 0.52089705 5.84179 -0.397534 0 -0.00364408 0.00318809 -0.638342 0.769738 uwb: 0.49922461 861.16 441.064 +imu_odom_: 1691062809.824820134 0.952892 -0.268151 9.4571 -0.0596548 0.00213053 0.0500674 0.2 0.02 pose: 0.0 5.84179 -0.397534 0 -0.00364408 0.00318809 -0.638342 0.769738 uwb: 0.0 861.16 441.064 +imu_odom_: 1691062809.849622853 0.624887 -0.339977 10.0365 -0.0511327 -0.02024 0.0777643 0.15 0.05 pose: 0.53004026 5.84872 -0.404745 0 -0.00412571 0.00242742 -0.63784 0.770154 uwb: 0.50233359 863.715 440.919 +imu_odom_: 1691062809.866545796 0.418985 -0.335188 9.95748 -0.056459 -0.0213053 0.0692422 0.15 0.05 pose: 0.0 5.84872 -0.404745 0 -0.00412571 0.00242742 -0.63784 0.770154 uwb: 0.0 863.715 440.919 +imu_odom_: 1691062809.882596124 0.538695 -0.141258 9.98861 -0.0532632 -0.0330232 0.0639159 0.17 0 pose: 0.38968994 5.84152 -0.411682 0 -0.00662047 -0.000287841-0.637562 0.770371 uwb: 0.0 863.715 440.919 +imu_odom_: 1691062809.900697328 0.64404 -0.328006 10.0437 -0.0575243 0.0543285 0.0713727 0.17 0 pose: 0.0 5.84152 -0.411682 0 -0.00662047 -0.000287841-0.637562 0.770371 uwb: 0.49891255 861.29 441.588 +imu_odom_: 1691062809.917617354 0.282516 -0.129287 9.82102 -0.052198 0.00532632 0.0671117 0.17 0 pose: 0.0 5.84152 -0.411682 0 -0.00662047 -0.000287841-0.637562 0.770371 uwb: 0.0 861.29 441.588 +imu_odom_: 1691062809.930802813 -0.203507 -0.0861913 9.54808 -0.0511327 0.0276969 0.0607201 0.16 0.02 pose: 0.42908299 5.84846 -0.41888 0 -0.00689064 -0.000918301-0.637027 0.77081 uwb: 0.0 861.29 441.588 +imu_odom_: 1691062809.946569074 0.332794 -0.277727 9.88326 -0.0617853 0.00106526 0.0671117 0.16 0.02 pose: 0.0 5.84846 -0.41888 0 -0.00689064 -0.000918301-0.637027 0.77081 uwb: 0.50302188 866.605 440.053 +imu_odom_: 1691062809.964676695 0.486023 -0.361524 9.02614 -0.0596548 -0.0287621 0.0649811 0.16 0.02 pose: 0.0 5.84846 -0.41888 0 -0.00689064 -0.000918301-0.637027 0.77081 uwb: 0.0 866.605 440.053 +imu_odom_: 1691062809.988678546 0.141258 -0.222661 9.79228 -0.0500674 0.00639159 0.0671117 0.23 0.02 pose: 0.80123898 5.84822 -0.43302 0 -0.00459429 0.00055114 -0.636207 0.771504 uwb: 0.0 866.605 440.053 +imu_odom_: 1691062810.15698091 0.28491 -0.0407014 10.6135 -0.0681769 -0.00958738 0.0660464 0.21 0.02 pose: 0.33948253 5.85298 -0.438033 0 -0.00357827 0.00214479 -0.635849 0.771802 uwb: 0.49710141 868.536 439.476 +imu_odom_: 1691062810.40790710 0.713472 -0.296881 9.94073 -0.076699 0.015979 0.0575243 0.18 0 pose: 0.0 5.85298 -0.438033 0 -0.00357827 0.00214479 -0.635849 0.771802 uwb: 0.0 868.536 439.476 +imu_odom_: 1691062810.64591615 0.586579 -0.237026 9.98382 -0.0436758 -0.0575243 0.0458064 0.22 0 pose: 0.52112164 5.85289 -0.452286 0 -0.00301573 0.000271977 -0.635403 0.772175 uwb: 0.0 868.536 439.476 +imu_odom_: 1691062810.81544014 0.486023 -0.150835 9.94551 -0.0266316 0.00852212 0.0575243 0.22 0 pose: 0.0 5.85289 -0.452286 0 -0.00301573 0.000271977 -0.635403 0.772175 uwb: 0.0 868.536 439.476 +imu_odom_: 1691062810.97811621 0.512359 -0.483629 10.0772 -0.0372843 -0.0181095 0.0532632 0.17 0 pose: 0.40753304 5.85485 -0.454341 0 -0.00281687 -0.00340909 -0.635234 0.772307 uwb: 0.100174779 863.688 440.732 +imu_odom_: 1691062810.114657277 0.790087 -0.0191536 10.0126 -0.0415453 -0.0340885 0.0490022 0.17 0 pose: 0.8160344 5.85485 -0.454341 0 -0.00346534 -0.00303185 -0.635187 0.772345 uwb: 0.0 863.688 440.732 +imu_odom_: 1691062810.131554263 0.634463 -0.035913 9.86411 -0.0511327 0.0170442 0.0660464 0.17 0 pose: 0.0 5.85485 -0.454341 0 -0.00346534 -0.00303185 -0.635187 0.772345 uwb: 0.0 863.688 440.732 +imu_odom_: 1691062810.146525198 0.0407014 -0.129287 10.0197 -0.0639159 0.0255663 0.052198 0.17 0.02 pose: 0.32891901 5.85454 -0.468479 0 -0.00390206 -0.00530119 -0.634999 0.772485 uwb: 0.49785096 867.941 439.085 +imu_odom_: 1691062810.162667104 0.19393 -0.294487 9.99819 -0.052198 -0.015979 0.0585895 0.17 0.02 pose: 0.0 5.85454 -0.468479 0 -0.00390206 -0.00530119 -0.634999 0.772485 uwb: 0.0 867.941 439.085 +imu_odom_: 1691062810.177770448 0.385466 -0.129287 9.69412 -0.0319579 -0.0703074 0.0692422 0.18 0.02 pose: 0.0 5.85454 -0.468479 0 -0.00390206 -0.00530119 -0.634999 0.772485 uwb: 0.0 867.941 439.085 +imu_odom_: 1691062810.193579291 0.876278 -0.122104 10.0796 -0.0468716 -0.0298274 0.0511327 0.18 0.02 pose: 0.40070845 5.85454 -0.468479 0 -0.00180656 -0.0034178 -0.634731 0.772724 uwb: 0.0 867.941 439.085 +imu_odom_: 1691062810.215652466 0.138864 -0.0526724 9.55526 -0.0490022 -0.0170442 0.0585895 0.18 0.02 pose: 0.0 5.85454 -0.468479 0 -0.00180656 -0.0034178 -0.634731 0.772724 uwb: 0.0 867.941 439.085 +imu_odom_: 1691062810.236533671 0.56982 -0.277727 10.1394 -0.0639159 -0.0170442 0.0532632 0.18 0.02 pose: 0.6996080 5.85454 -0.468479 0 -0.00120726 -0.00349561 -0.634653 0.772789 uwb: 0.0 867.941 439.085 +imu_odom_: 1691062810.250585037 0.612916 -0.287304 9.48104 -0.0575243 -0.0617853 0.0415453 0.18 -0.02 pose: 0.0 5.85454 -0.468479 0 -0.00120726 -0.00349561 -0.634653 0.772789 uwb: 0.99900047 865.948 439.413 +imu_odom_: 1691062810.267540936 0.54109 -0.31364 9.99579 -0.0500674 0.0458064 0.0511327 0.18 -0.02 pose: 0.72883710 5.86119 -0.489831 0 -0.00252652 -0.00451391 -0.634206 0.773147 uwb: 0.0 865.948 439.413 +imu_odom_: 1691062810.292536436 0.586579 -0.138864 10.0197 -0.0511327 0.0106526 0.0532632 0.18 0 pose: 0.0 5.86119 -0.489831 0 -0.00252652 -0.00451391 -0.634206 0.773147 uwb: 0.0 865.948 439.413 +imu_odom_: 1691062810.317722966 1.12527 -0.105345 9.55047 -0.0490022 0.00319579 0.0436758 0.18 0 pose: 0.32072075 5.86119 -0.489831 0 -0.00440245 -0.00440338 -0.634076 0.773246 uwb: 0.49981958 866.814 438.7 +imu_odom_: 1691062810.342518103 0.675165 -0.0909797 10.0245 -0.0394148 -0.0213053 0.0340885 0.19 0 pose: 0.43103997 5.86099 -0.500114 0 -0.0049336 -0.0081907 -0.633932 0.773329 uwb: 0.0 866.814 438.7 +imu_odom_: 1691062810.368526500 0.114922 -0.328006 9.67736 -0.0639159 0.00106526 0.0575243 0.19 0 pose: 0.6816424 5.86092 -0.503971 0 -0.00481694 -0.00894265 -0.633946 0.773311 uwb: 0.50199529 865.85 439.002 +imu_odom_: 1691062810.393542999 0.600945 -0.442927 9.35175 -0.0532632 -0.0468716 0.0500674 0.2 0 pose: 0.43987110 5.86572 -0.508952 0 -0.00367219 -0.00835126 -0.633817 0.773429 uwb: 0.0 865.85 439.002 +imu_odom_: 1691062810.410786464 0.591368 -0.294487 9.53371 -0.0500674 -0.015979 0.0532632 0.2 0 pose: 0.0 5.86572 -0.508952 0 -0.00367219 -0.00835126 -0.633817 0.773429 uwb: 0.49979043 863.81 439.131 +imu_odom_: 1691062810.436515170 0.665588 -0.191536 9.94312 -0.0500674 -0.0415453 0.0500674 0.22 0 pose: 0.32173569 5.86786 -0.511173 0 -0.00671777 -0.00709212 -0.633652 0.773556 uwb: 0.0 863.81 439.131 +imu_odom_: 1691062810.461529336 0.263362 -0.287304 10.173 -0.0585895 0.0255663 0.0596548 0.22 0 pose: 0.0 5.86786 -0.511173 0 -0.00671777 -0.00709212 -0.633652 0.773556 uwb: 0.49958043 864.373 439.309 +imu_odom_: 1691062810.476571433 0.383072 -0.155623 9.71806 -0.0553937 0.00319579 0.0447411 0.22 0 pose: 0.42822264 5.8676 -0.525312 0 -0.00741789 -0.00886655 -0.633433 0.773711 uwb: 0.0 864.373 439.309 +imu_odom_: 1691062810.500507080 0.78051 0.0215478 9.87608 -0.0607201 -0.00639159 0.052198 0.22 0 pose: 0.0 5.8676 -0.525312 0 -0.00741789 -0.00886655 -0.633433 0.773711 uwb: 0.49975835 864.329 439.127 +imu_odom_: 1691062810.525498205 0.624887 -0.323217 9.68694 -0.0681769 -0.0181095 0.0394148 0.17 0 pose: 0.40077553 5.8676 -0.525312 0 -0.00502289 -0.0069068 -0.633251 0.773899 uwb: 0.0 864.329 439.127 +imu_odom_: 1691062810.549495973 0.402226 -0.275333 9.36851 -0.0671117 0.0287621 0.0500674 0.2 0 pose: 0.41898319 5.86909 -0.537699 0 -0.00734296 -0.00754979 -0.633149 0.773958 uwb: 0.49862382 858.49 440.692 +imu_odom_: 1691062810.573526406 0.311246 -0.277727 9.83777 -0.0532632 0.0319579 0.0458064 0.2 0 pose: 0.0 5.86909 -0.537699 0 -0.00734296 -0.00754979 -0.633149 0.773958 uwb: 0.0 858.49 440.692 +imu_odom_: 1691062810.599498056 0.114922 -0.189142 9.55047 -0.0649811 0.0287621 0.0575243 0.23 -0.02 pose: 0.6000390 5.86737 -0.539457 0 -0.00703913 -0.00691357 -0.633128 0.773984 uwb: 0.49990709 855.648 441.783 +imu_odom_: 1691062810.615623338 0.914585 -0.356736 10.2424 -0.0436758 -0.0383495 0.0426106 0.23 -0.02 pose: 0.0 5.86737 -0.539457 0 -0.00703913 -0.00691357 -0.633128 0.773984 uwb: 0.0 855.648 441.783 +imu_odom_: 1691062810.639537986 0.667982 -0.260968 9.91439 -0.0458064 -0.00532632 0.0436758 0.25 0.02 pose: 0.50014624 5.87432 -0.546644 0 -0.0039223 -0.00198107 -0.632958 0.774174 uwb: 0.0 855.648 441.783 +imu_odom_: 1691062810.665481929 0.703895 -0.102951 10.1107 -0.0490022 -0.00639159 0.04048 0.25 0.02 pose: 0.0 5.87432 -0.546644 0 -0.0039223 -0.00198107 -0.632958 0.774174 uwb: 0.50098326 854.613 441.809 +imu_odom_: 1691062810.679693993 0.627281 0.0287304 9.71806 -0.0532632 0.0127832 0.0511327 0.19 0 pose: 0.83968710 5.87411 -0.56077 0 -0.00528006 -0.00628014 -0.632765 0.7743 uwb: 0.0 854.613 441.809 +imu_odom_: 1691062810.704567001 0.536301 -0.117316 10.2448 -0.0639159 -0.00532632 0.052198 0.19 0 pose: 0.6129008 5.87411 -0.56077 0 -0.0048856 -0.00674232 -0.632741 0.774319 uwb: 0.50031831 853.603 441.927 +imu_odom_: 1691062810.729642412 0.435745 -0.395043 9.7444 -0.0745685 0.00958738 0.0543285 0.19 0 pose: 0.32956064 5.87611 -0.572757 0 -0.00201582 -0.00777877 -0.632606 0.774432 uwb: 0.0 853.603 441.927 +imu_odom_: 1691062810.753504272 0.639252 0.105345 10.2113 -0.0671117 -0.00639159 0.0394148 0.19 0 pose: 0.0 5.87611 -0.572757 0 -0.00201582 -0.00777877 -0.632606 0.774432 uwb: 0.50068287 853.615 441.973 +imu_odom_: 1691062810.771588562 0.387861 -0.138864 10.0269 -0.0458064 -0.0255663 0.0383495 0.25 0.02 pose: 0.48937271 5.87859 -0.579756 0 -0.00214957 -0.00724581 -0.632468 0.77455 uwb: 0.0 853.615 441.973 +imu_odom_: 1691062810.795627452 0.316035 -0.337582 10.0963 -0.0596548 -0.0426106 0.036219 0.25 0.02 pose: 0.0 5.87859 -0.579756 0 -0.00214957 -0.00724581 -0.632468 0.77455 uwb: 0.49918963 854.514 441.422 +imu_odom_: 1691062810.813630664 0.143652 -0.0933739 9.69652 -0.0532632 0.0245011 0.0596548 0.23 0.02 pose: 0.42123180 5.87594 -0.586853 0 -0.00143411 -0.00411883 -0.632524 0.774529 uwb: 0.0 854.514 441.422 +imu_odom_: 1691062810.837545020 0.179565 -0.272939 10.0341 -0.0692422 0.0319579 0.052198 0.23 0.02 pose: 0.0 5.87594 -0.586853 0 -0.00143411 -0.00411883 -0.632524 0.774529 uwb: 0.0 854.514 441.422 +imu_odom_: 1691062810.864547650 0.227449 -0.581791 10.0102 -0.0490022 0.00213053 0.052198 0.21 -0.02 pose: 0.41917568 5.88064 -0.596228 0 0.00113626 -0.000180216-0.632277 0.774741 uwb: 0.49866466 856.398 440.644 +imu_odom_: 1691062810.888500796 0.464475 -0.395043 10.1011 -0.0383495 -0.0351537 0.0479369 0.21 -0.02 pose: 0.7040703 5.88064 -0.596228 0 0.000839507 0.000446211 -0.632244 0.774769 uwb: 0.0 856.398 440.644 +imu_odom_: 1691062810.915530257 0.620098 -0.347159 10.2496 -0.0553937 0.0276969 0.052198 0.21 -0.02 pose: 0.27998028 5.88761 -0.603399 0 -0.0008257080.00218185 -0.632121 0.774866 uwb: 0.50030955 855.009 441.318 +imu_odom_: 1691062810.932576859 0.316035 -0.0885855 10.1179 -0.0532632 -0.0340885 0.0330232 0.21 -0.02 pose: 0.0 5.88761 -0.603399 0 -0.0008257080.00218185 -0.632121 0.774866 uwb: 0.0 855.009 441.318 +imu_odom_: 1691062810.957496822 0.253785 -0.122104 10.161 -0.056459 -0.0585895 0.072438 0.19 0 pose: 0.23942355 5.88761 -0.603399 0 -0.00304463 0.00175499 -0.632033 0.774933 uwb: 0.49991584 855.874 440.633 +imu_odom_: 1691062810.982546568 0.292093 -0.301669 9.90721 -0.0308927 0.0127832 0.0415453 0.18 0.02 pose: 0.60970716 5.88741 -0.617538 0 -0.0008871740.000506537 -0.63167 0.775236 uwb: 0.0 855.874 440.633 +imu_odom_: 1691062811.6595084 0.411803 -0.373495 9.96706 -0.0585895 -0.0276969 0.0553937 0.18 0.02 pose: 0.0 5.88741 -0.617538 0 -0.0008871740.000506537 -0.63167 0.775236 uwb: 0.50235693 860.271 439.494 +imu_odom_: 1691062811.21532188 0.737414 0.237026 10.5728 -0.0671117 -0.0436758 0.0585895 0.18 0.02 pose: 0.0 5.88741 -0.617538 0 -0.0008871740.000506537 -0.63167 0.775236 uwb: 0.0 860.271 439.494 +imu_odom_: 1691062811.37580183 0.691924 -0.148441 9.51456 -0.0532632 0.0266316 0.0511327 0.18 0.02 pose: 0.8120971 5.88741 -0.617538 0 -0.0006438180.00130071 -0.631663 0.775241 uwb: 0.0 860.271 439.494 +imu_odom_: 1691062811.54579247 0.550666 -0.304064 9.94791 -0.0756338 -0.00639159 0.0585895 0.18 0.02 pose: 0.0 5.88741 -0.617538 0 -0.0006438180.00130071 -0.631663 0.775241 uwb: 0.0 860.271 439.494 +imu_odom_: 1691062811.72520629 0.605733 0.0335188 10.0149 -0.0447411 0.0234358 0.0394148 0.18 0.02 pose: 0.47928749 5.88723 -0.63168 0 -0.00256827 0.00266966 -0.631452 0.775406 uwb: 0.0 860.271 439.494 +imu_odom_: 1691062811.90628835 0.387861 -0.167594 9.81383 -0.0809601 -0.0213053 0.0628506 0.18 0.02 pose: 0.0 5.88723 -0.63168 0 -0.00256827 0.00266966 -0.631452 0.775406 uwb: 0.0 860.271 439.494 +imu_odom_: 1691062811.106505049 0.225055 0.0407014 10.3214 -0.0703074 -0.0138484 0.0511327 0.18 0.02 pose: 0.0 5.88723 -0.63168 0 -0.00256827 0.00266966 -0.631452 0.775406 uwb: 0.99920465 858.758 439.68 +imu_odom_: 1691062811.131530589 0.220267 -0.366313 9.63187 -0.0777643 0.036219 0.0585895 0.23 0 pose: 0.48981312 5.89422 -0.638835 0 -0.00387193 -0.000999984-0.631206 0.775605 uwb: 0.0 858.758 439.68 +imu_odom_: 1691062811.156513841 0.54109 -0.237026 9.74201 -0.0436758 -0.00213053 0.0351537 0.18 0.02 pose: 0.69002735 5.89202 -0.650885 0 -0.0002000080.00161415 -0.630798 0.775945 uwb: 0.49835552 856.313 440.302 +imu_odom_: 1691062811.173459241 0.265756 -0.138864 10.0389 -0.036219 -0.0436758 0.0415453 0.18 0.02 pose: 0.0 5.89202 -0.650885 0 -0.0002000080.00161415 -0.630798 0.775945 uwb: 0.0 856.313 440.302 +imu_odom_: 1691062811.186456586 0.35913 -0.409408 10.3238 -0.0319579 -0.0170442 0.0308927 0.18 0 pose: 0.0 5.89202 -0.650885 0 -0.0002000080.00161415 -0.630798 0.775945 uwb: 0.0 856.313 440.302 +imu_odom_: 1691062811.204578208 0.514753 -0.0837971 10.0556 -0.0351537 0.0266316 0.0394148 0.18 0 pose: 0.48000788 5.89406 -0.65297 0 -0.0004776810.000243235 -0.630851 0.775904 uwb: 0.50110869 861.604 438.656 +imu_odom_: 1691062811.218465083 0.596156 -0.0287304 9.62469 -0.0553937 -0.00213053 0.0575243 0.18 0 pose: 0.0 5.89406 -0.65297 0 -0.0004776810.000243235 -0.630851 0.775904 uwb: 0.0 861.604 438.656 +imu_odom_: 1691062811.235511977 0.323217 -0.184354 10.2161 -0.0340885 0.0213053 0.0436758 0.2 -0.02 pose: 0.31051012 5.89391 -0.667112 0 -1.79183e-05-0.00153333 -0.630834 0.775916 uwb: 0.0 861.604 438.656 +imu_odom_: 1691062811.251510101 0.215478 0.100556 9.95988 -0.04048 0 0.0415453 0.2 -0.02 pose: 0.0 5.89391 -0.667112 0 -1.79183e-05-0.00153333 -0.630834 0.775916 uwb: 0.49854218 865.117 438.188 +imu_odom_: 1691062811.268512664 0.169988 -0.423774 9.77553 -0.056459 -0.00213053 0.0468716 0.23 0.02 pose: 0.40927712 5.89782 -0.671103 0 0.003123 -0.0011459 -0.63074 0.775987 uwb: 0.0 865.117 438.188 +imu_odom_: 1691062811.285509103 0.560243 -0.0191536 10.1754 -0.0372843 -0.0426106 0.0351537 0.23 0.02 pose: 0.0 5.89782 -0.671103 0 0.003123 -0.0011459 -0.63074 0.775987 uwb: 0.0 865.117 438.188 +imu_odom_: 1691062811.302447795 0.31364 -0.37589 9.33739 -0.0607201 0.0149137 0.0415453 0.23 0.02 pose: 0.0 5.89782 -0.671103 0 0.003123 -0.0011459 -0.63074 0.775987 uwb: 0.49998292 868.523 437.236 +imu_odom_: 1691062811.319457650 0.603339 -0.162806 10.2807 -0.056459 -0.015979 0.0351537 0.18 0.02 pose: 0.7061701 5.90091 -0.674257 0 0.00296908 -0.000447972-0.630722 0.776003 uwb: 0.0 868.523 437.236 +imu_odom_: 1691062811.336496670 0.373495 -0.0502782 9.663 -0.0468716 0.0287621 0.0319579 0.18 0 pose: 0.0 5.90091 -0.674257 0 0.00296908 -0.000447972-0.630722 0.776003 uwb: 0.0 868.523 437.236 +imu_odom_: 1691062811.354438052 0.490811 -0.234632 10.0413 -0.0628506 -0.0511327 0.0543285 0.18 0 pose: 0.67895053 5.90076 -0.688398 0 0.0015987 -0.00159898 -0.630761 0.775974 uwb: 0.50141784 870.591 437.215 +imu_odom_: 1691062811.370486922 1.1971 -0.270545 9.85453 -0.0532632 0.0213053 0.0426106 0.18 0 pose: 0.0 5.90076 -0.688398 0 0.0015987 -0.00159898 -0.630761 0.775974 uwb: 0.0 870.591 437.215 +imu_odom_: 1691062811.385597266 0.418985 -0.251391 9.95509 -0.0585895 0.0543285 0.0319579 0.18 0 pose: 0.0 5.90076 -0.688398 0 0.0015987 -0.00159898 -0.630761 0.775974 uwb: 0.0 870.591 437.215 +imu_odom_: 1691062811.400594158 0.114922 -0.272939 9.87369 -0.056459 0.00426106 0.0436758 0.18 0 pose: 0.34976610 5.90076 -0.688398 0 0.000128288 -0.00284647 -0.630676 0.776041 uwb: 0.49987794 871.951 436.374 +imu_odom_: 1691062811.418460878 0.620098 -0.335188 9.39245 -0.0415453 -0.0106526 0.0266316 0.26 0 pose: 0.39150693 5.90061 -0.70254 0 -3.39539e-06-0.000228563-0.630684 0.776039 uwb: 0.0 871.951 436.374 +imu_odom_: 1691062811.434584411 0.869095 -0.102951 9.85693 -0.0479369 -0.0394148 0.0298274 0.26 0 pose: 0.8001687 5.90061 -0.70254 0 -0.000724246-0.000569275-0.630724 0.776006 uwb: 0.0 871.951 436.374 +imu_odom_: 1691062811.452467755 0.962469 -0.294487 10.1299 -0.0500674 -0.0106526 0.0788296 0.23 0.02 pose: 0.0 5.90061 -0.70254 0 -0.000724246-0.000569275-0.630724 0.776006 uwb: 0.49928588 880.328 434.632 +imu_odom_: 1691062811.469589019 1.10612 -0.282516 10.7284 -0.0415453 -0.0490022 0.0905475 0.15 -0.02 pose: 0.43871910 5.90761 -0.709683 0 -0.00371008 -0.00399876 -0.630554 0.776127 uwb: 0.0 880.328 434.632 +imu_odom_: 1691062811.483599262 1.43173 -0.110133 9.90481 -0.0276969 -0.072438 0.04048 0.14 -0.05 pose: 0.0 5.90761 -0.709683 0 -0.00371008 -0.00399876 -0.630554 0.776127 uwb: 0.0 880.328 434.632 +imu_odom_: 1691062811.500641782 1.5706 0.035913 9.35415 -0.0511327 0.0138484 -0.00852212 0.14 -0.05 pose: 0.0 5.90761 -0.709683 0 -0.00371008 -0.00399876 -0.630554 0.776127 uwb: 0.49929755 882.277 434.079 +imu_odom_: 1691062811.514583487 1.29287 -0.148441 9.59596 -0.0660464 0.0479369 -0.00426106 0.14 -0.05 pose: 0.23136237 5.90761 -0.709683 0 -0.00545418 -0.00630576 -0.6302 0.776388 uwb: 0.0 882.277 434.079 +imu_odom_: 1691062811.531633881 0.991199 -0.248997 9.81862 -0.0692422 0.0276969 0.0213053 0.12 -0.05 pose: 0.0 5.90761 -0.709683 0 -0.00545418 -0.00630576 -0.6302 0.776388 uwb: 0.0 882.277 434.079 +imu_odom_: 1691062811.544577855 1.00556 -0.423774 9.991 -0.0553937 0.0372843 0.056459 0.12 -0.05 pose: 0.0 5.90761 -0.709683 0 -0.00545418 -0.00630576 -0.6302 0.776388 uwb: 0.0 882.277 434.079 +imu_odom_: 1691062811.560516190 0.878672 -0.488417 9.75398 -0.0479369 0.036219 0.0585895 0.1 -0.02 pose: 0.30988599 5.90048 -0.71669 0 -0.00681094 -0.0090735 -0.630601 0.776024 uwb: 0.50005584 879.321 434.75 +imu_odom_: 1691062811.578503361 0.567426 -0.167594 10.1155 -0.0500674 -0.00426106 0.0181095 0.1 -0.02 pose: 0.37985264 5.90755 -0.723762 0 -0.00936367 -0.0106548 -0.630742 0.775863 uwb: 0.0 879.321 434.75 +imu_odom_: 1691062811.596442410 0.665588 0.0143652 9.93115 -0.0511327 -0.0223706 0.0138484 0.1 -0.02 pose: 0.0 5.90755 -0.723762 0 -0.00936367 -0.0106548 -0.630742 0.775863 uwb: 0.50182323 887.121 432.662 +imu_odom_: 1691062811.612719934 1.09654 -0.146046 10.1873 -0.0692422 -0.036219 0.0415453 0.08 0 pose: 0.7898734 5.90755 -0.723762 0 -0.0100315 -0.0105267 -0.630673 0.775912 uwb: 0.0 887.121 432.662 +imu_odom_: 1691062811.629444556 1.14443 -0.493206 9.95988 -0.0607201 -0.00639159 0.0383495 0.1 -0.02 pose: 0.0 5.90755 -0.723762 0 -0.0100315 -0.0105267 -0.630673 0.775912 uwb: 0.0 887.121 432.662 +imu_odom_: 1691062811.645445304 0.68953 -0.186748 9.71567 -0.052198 0.0319579 0.0213053 0.1 -0.02 pose: 0.0 5.90755 -0.723762 0 -0.0100315 -0.0105267 -0.630673 0.775912 uwb: 0.49935004 888.531 431.977 +imu_odom_: 1691062811.663485847 0.517148 0.059855 10.0102 -0.0607201 -0.02024 0.0266316 0.1 -0.02 pose: 0.68271572 5.90755 -0.723762 0 -0.0095841 -0.0128524 -0.630936 0.77567 uwb: 0.0 888.531 431.977 +imu_odom_: 1691062811.679452472 0.591368 -0.208296 9.88805 -0.0575243 -0.0234358 0.0287621 0.1 -0.02 pose: 0.0 5.90755 -0.723762 0 -0.0095841 -0.0128524 -0.630936 0.77567 uwb: 0.0 888.531 431.977 +imu_odom_: 1691062811.696499075 0.770933 -0.430956 9.88805 -0.0553937 -0.0234358 0.0351537 0.1 -0.02 pose: 0.32707288 5.91461 -0.730843 0 -0.00795245 -0.0125258 -0.631119 0.775544 uwb: 0.49939963 892.506 431.235 +imu_odom_: 1691062811.712442077 0.85473 -0.323217 9.85214 -0.0585895 -0.00639159 0.0383495 0.05 0.02 pose: 0.43043626 5.91067 -0.734771 0 -0.00851081 -0.0108739 -0.631264 0.775445 uwb: 0.0 892.506 431.235 +imu_odom_: 1691062811.729430058 0.634463 -0.0694318 9.91439 -0.0543285 0.00426106 0.0436758 0.05 0.02 pose: 0.8006936 5.90753 -0.737901 0 -0.00928419 -0.0111325 -0.631258 0.775438 uwb: 0.0 892.506 431.235 +imu_odom_: 1691062811.747432103 0.675165 -0.160412 9.8689 -0.0607201 -0.0106526 0.0394148 0.05 0.02 pose: 0.0 5.90753 -0.737901 0 -0.00928419 -0.0111325 -0.631258 0.775438 uwb: 0.50048748 894.423 430.47 +imu_odom_: 1691062811.761568630 0.667982 -0.0909797 9.90242 -0.0617853 -0.015979 0.0383495 0.05 0.02 pose: 0.42926092 5.90753 -0.737901 0 -0.00678893 -0.0125524 -0.631272 0.775431 uwb: 0.0 894.423 430.47 +imu_odom_: 1691062811.777673497 0.581791 -0.287304 9.8282 -0.0543285 -0.00319579 0.0585895 0.04 0.02 pose: 0.0 5.90753 -0.737901 0 -0.00678893 -0.0125524 -0.631272 0.775431 uwb: 0.0 894.423 430.47 +imu_odom_: 1691062811.792674764 0.591368 -0.390255 10.0245 -0.0585895 -0.0138484 0.0862864 0.04 0.02 pose: 0.0 5.90753 -0.737901 0 -0.00678893 -0.0125524 -0.631272 0.775431 uwb: 0.0 894.423 430.47 +imu_odom_: 1691062811.809555710 0.517148 -0.217872 9.81144 -0.0426106 0.00106526 0.0969391 0.03 0.08 pose: 0.21134649 5.90753 -0.737901 0 -0.00589928 -0.0126667 -0.63124 0.775461 uwb: 0.50038248 898.89 429.612 +imu_odom_: 1691062811.822486559 0.627281 -0.141258 9.95509 -0.056459 -0.0117179 0.126766 0.03 0.08 pose: 0.0 5.90753 -0.737901 0 -0.00589928 -0.0126667 -0.63124 0.775461 uwb: 0.0 898.89 429.612 +imu_odom_: 1691062811.838422853 0.600945 -0.287304 9.84017 -0.0617853 -0.00958738 0.133158 0.03 0.08 pose: 0.0 5.90753 -0.737901 0 -0.00589928 -0.0126667 -0.63124 0.775461 uwb: 0.0 898.89 429.612 +imu_odom_: 1691062811.855503287 0.699107 -0.148441 9.90002 -0.0447411 0.00106526 0.106526 0.04 0.11 pose: 0.69856101 5.90753 -0.737901 0 -0.00647595 -0.00890297 -0.629508 0.776916 uwb: 0.49887758 899.404 429.617 +imu_odom_: 1691062811.871428499 0.600945 -0.131681 9.8258 -0.0553937 -0.00532632 0.116114 0.04 0.11 pose: 0.0 5.90753 -0.737901 0 -0.00647595 -0.00890297 -0.629508 0.776916 uwb: 0.0 899.404 429.617 +imu_odom_: 1691062811.888704046 0.679953 -0.275333 9.93594 -0.0553937 -0.00213053 0.12144 0.04 0.11 pose: 0.0 5.90753 -0.737901 0 -0.00647595 -0.00890297 -0.629508 0.776916 uwb: 0.0 899.404 429.617 +imu_odom_: 1691062811.905696693 0.670376 -0.246603 9.84975 -0.0532632 -0.00426106 0.12144 0.02 0.08 pose: 0.7010080 5.90753 -0.737901 0 -0.00649603 -0.00960889 -0.629324 0.777057 uwb: 0.50071788 902.885 428.966 +imu_odom_: 1691062811.922692548 0.658405 -0.155623 9.90481 -0.0532632 -0.00106526 0.132093 0.02 0.08 pose: 0.0 5.90753 -0.737901 0 -0.00649603 -0.00960889 -0.629324 0.777057 uwb: 0.0 902.885 428.966 +imu_odom_: 1691062811.938558847 0.691924 -0.198719 9.86172 -0.0596548 -0.00639159 0.133158 0.02 0.08 pose: 0.0 5.90753 -0.737901 0 -0.00649603 -0.00960889 -0.629324 0.777057 uwb: 0.0 902.885 428.966 +imu_odom_: 1691062811.955687694 0.658405 -0.138864 9.90002 -0.0490022 0.00319579 0.120375 0.02 0.14 pose: 0.51030730 5.90753 -0.737901 0 -0.00737704 -0.0100552 -0.627779 0.778292 uwb: 0.0 902.885 428.966 +imu_odom_: 1691062811.971568575 0.608127 -0.148441 9.86172 -0.0575243 0 0.129962 0.01 0.11 pose: 0.0 5.90753 -0.737901 0 -0.00737704 -0.0100552 -0.627779 0.778292 uwb: 0.0 902.885 428.966 +imu_odom_: 1691062811.989544080 0.665588 -0.253785 9.92636 -0.0575243 -0.00639159 0.143811 0.01 0.11 pose: 0.67138223 5.91458 -0.744993 0 -0.0059807 -0.0117327 -0.625494 0.780118 uwb: 0.0 902.885 428.966 +imu_odom_: 1691062812.5546579 0.622492 -0.260968 9.85693 -0.052198 0.00319579 0.134223 0.01 0.11 pose: 0.0 5.91458 -0.744993 0 -0.0059807 -0.0117327 -0.625494 0.780118 uwb: 0.100069206 903.341 428.627 +imu_odom_: 1691062812.21549952 0.481235 -0.0814029 9.91199 -0.0553937 0.00426106 0.123571 0 0.08 pose: 0.0 5.91458 -0.744993 0 -0.0059807 -0.0117327 -0.625494 0.780118 uwb: 0.0 903.341 428.627 +imu_odom_: 1691062812.37541660 0.459687 -0.102951 9.88805 -0.0553937 -0.00532632 0.108657 0 0.08 pose: 0.33822263 5.91458 -0.744993 0 -0.00738001 -0.00981878 -0.624177 0.781187 uwb: 0.0 903.341 428.627 +imu_odom_: 1691062812.54428148 0.562637 -0.141258 9.89045 -0.0543285 -0.00852212 0.0777643 0 0.05 pose: 0.40117511 5.91449 -0.744998 0 -0.00464372 -0.00827563 -0.622948 0.782205 uwb: 0.49854802 900.86 429.123 +imu_odom_: 1691062812.70409939 0.59855 -0.184354 9.90481 -0.056459 -0.00639159 0.0681769 0 0.05 pose: 0.0 5.91449 -0.744998 0 -0.00464372 -0.00827563 -0.622948 0.782205 uwb: 0.0 900.86 429.123 +imu_odom_: 1691062812.86420896 0.591368 -0.227449 9.88805 -0.0553937 -0.00532632 0.0532632 0 0.05 pose: 0.0 5.91449 -0.744998 0 -0.00464372 -0.00827563 -0.622948 0.782205 uwb: 0.0 900.86 429.123 +imu_odom_: 1691062812.100404016 0.555455 -0.124498 9.87129 -0.0532632 -0.00106526 0.0394148 0 0 pose: 0.7882986 5.91458 -0.744993 0 -0.00387606 -0.00842888 -0.622837 0.782296 uwb: 0.49999169 900.369 429.257 +imu_odom_: 1691062812.114660411 0.457293 -0.112527 9.87369 -0.0575243 0.00319579 0.0351537 0 0 pose: 0.0 5.91458 -0.744993 0 -0.00387606 -0.00842888 -0.622837 0.782296 uwb: 0.0 900.369 429.257 +imu_odom_: 1691062812.136462354 0.380678 -0.28491 9.89524 -0.0553937 -0.00319579 0.036219 0 0 pose: 0.46995474 5.91458 -0.744993 0 -0.0052485 -0.00786937 -0.622426 0.782622 uwb: 0.0 900.369 429.257 +imu_odom_: 1691062812.153462293 -0.122104 -0.251391 9.71328 -0.0553937 0.0617853 0.0287621 0 0.02 pose: 0.0 5.91458 -0.744993 0 -0.0052485 -0.00786937 -0.622426 0.782622 uwb: 0.49992752 902.367 428.912 +imu_odom_: 1691062812.170405361 -1.05105 -0.124498 10.1107 -0.0511327 0.0671117 0.0330232 0.02 0 pose: 0.0 5.91458 -0.744993 0 -0.0052485 -0.00786937 -0.622426 0.782622 uwb: 0.0 902.367 428.912 +imu_odom_: 1691062812.186410776 -1.16358 -0.244209 9.8258 -0.0617853 -0.0351537 0.0575243 0.02 0 pose: 0.69003904 5.91458 -0.744993 0 -0.000895532-0.0026589 -0.622606 0.78253 uwb: 0.0 902.367 428.912 +imu_odom_: 1691062812.204406405 0.117316 -0.3304 9.92875 -0.052198 -0.0756338 0.0788296 0.04 0.02 pose: 0.0 5.91458 -0.744993 0 -0.000895532-0.0026589 -0.622606 0.78253 uwb: 0.50245905 903.837 428.495 +imu_odom_: 1691062812.221449217 0.545878 -0.397437 9.87608 -0.0585895 -0.0308927 0.0969391 0.04 0.02 pose: 0.0 5.91458 -0.744993 0 -0.000895532-0.0026589 -0.622606 0.78253 uwb: 0.0 903.837 428.495 +imu_odom_: 1691062812.238643978 0.323217 0 10.1059 -0.0468716 0.0298274 0.0745685 0.04 0.02 pose: 0.33061643 5.91458 -0.744993 0 0.000693635 -7.07149e-05-0.622398 0.782701 uwb: 0.0 903.837 428.495 +imu_odom_: 1691062812.255411764 -0.189142 -0.134075 9.77074 -0.0628506 0.0149137 0.0830906 0.07 0.02 pose: 0.44158311 5.91458 -0.744993 0 0.000726836 2.99275e-05 -0.621629 0.783311 uwb: 0.49562861 904.321 428.319 +imu_odom_: 1691062812.272458075 -0.241814 -0.205901 9.94073 -0.0660464 -0.0170442 0.0830906 0.07 0.02 pose: 0.0 5.91458 -0.744993 0 0.000726836 2.99275e-05 -0.621629 0.783311 uwb: 0.0 904.321 428.319 +imu_odom_: 1691062812.286418738 0.347159 -0.287304 10.3382 -0.052198 -0.0468716 0.0777643 0.07 0.02 pose: 0.0 5.91458 -0.744993 0 0.000726836 2.99275e-05 -0.621629 0.783311 uwb: 0.0 904.321 428.319 +imu_odom_: 1691062812.304460156 0.457293 -0.19393 9.64145 -0.052198 -0.00639159 0.0830906 0.09 0.02 pose: 0.6769177 5.91458 -0.744993 0 0.00122825 0.000572694 -0.621514 0.783402 uwb: 0.50104746 900.836 428.985 +imu_odom_: 1691062812.317452836 0.306458 0.0215478 9.89045 -0.0585895 -0.0351537 0.0980043 0.09 0 pose: 0.0 5.91458 -0.744993 0 0.00122825 0.000572694 -0.621514 0.783402 uwb: 0.0 900.836 428.985 +imu_odom_: 1691062812.335387802 0.162806 -0.304064 9.93115 -0.0575243 -0.0479369 0.0884169 0.09 0 pose: 0.65010060 5.90747 -0.752028 0 0.00125487 0.000977215 -0.620403 0.784281 uwb: 0.0 900.836 428.985 +imu_odom_: 1691062812.348380190 -0.00718261-0.323217 9.50977 -0.0617853 -0.0138484 0.0649811 0.09 0 pose: 0.0 5.90747 -0.752028 0 0.00125487 0.000977215 -0.620403 0.784281 uwb: 0.50075289 899.805 428.974 +imu_odom_: 1691062812.365376337 0.172383 -0.134075 9.77313 -0.0596548 -0.0117179 0.0671117 0.1 0.05 pose: 0.0 5.90747 -0.752028 0 0.00125487 0.000977215 -0.620403 0.784281 uwb: 0.0 899.805 428.974 +imu_odom_: 1691062812.381431625 0.25618 -0.146046 10.0054 -0.0479369 -0.0436758 0.0777643 0.1 0.05 pose: 0.30971977 5.91451 -0.759126 0 0.002079 0.00264732 -0.619838 0.784722 uwb: 0.0 899.805 428.974 +imu_odom_: 1691062812.399408297 0.112527 -0.208296 9.47625 -0.0287621 -0.052198 0.0692422 0.11 0.02 pose: 0.40036433 5.91451 -0.759126 0 0.00524914 0.0035238 -0.619328 0.785107 uwb: 0.50093080 901.275 428.551 +imu_odom_: 1691062812.414525349 0.842759 -0.150835 9.87369 -0.0511327 -0.0436758 0.0884169 0.11 0.02 pose: 0.7952106 5.91451 -0.759126 0 0.00559652 0.00400559 -0.619236 0.785175 uwb: 0.0 901.275 428.551 +imu_odom_: 1691062812.432525644 0.972046 -0.387861 9.67497 -0.0692422 -0.036219 0.131028 0.11 0.02 pose: 0.0 5.91451 -0.759126 0 0.00559652 0.00400559 -0.619236 0.785175 uwb: 0.0 901.275 428.551 +imu_odom_: 1691062812.448534268 0.962469 -0.466869 9.89524 -0.0649811 0.0117179 0.158724 0.09 0.02 pose: 0.43141913 5.92158 -0.766204 0 0.00323598 0.00195613 -0.618194 0.786017 uwb: 0.49983128 904.786 428.027 +imu_odom_: 1691062812.465537707 1.4054 -0.198719 9.91678 -0.052198 -0.0394148 0.138484 0.12 -0.05 pose: 0.0 5.92158 -0.766204 0 0.00323598 0.00195613 -0.618194 0.786017 uwb: 0.0 904.786 428.027 +imu_odom_: 1691062812.481523290 1.33596 0.136469 9.69652 -0.0500674 0.00106526 0.0628506 0.12 -0.05 pose: 0.0 5.92158 -0.766204 0 0.00323598 0.00195613 -0.618194 0.786017 uwb: 0.0 904.786 428.027 +imu_odom_: 1691062812.498540436 0.962469 0.117316 9.9527 -0.0607201 0.0255663 0.0351537 0.09 0.02 pose: 0.24021102 5.92158 -0.766204 0 0.00127091 0.000598299 -0.617136 0.786856 uwb: 0.49884259 906.246 427.619 +imu_odom_: 1691062812.514657262 0.667982 -0.215478 9.83299 -0.0703074 0.0266316 0.00639159 0.09 0.02 pose: 0.0 5.92158 -0.766204 0 0.00127091 0.000598299 -0.617136 0.786856 uwb: 0.0 906.246 427.619 +imu_odom_: 1691062812.531472295 0.672771 -0.387861 10.0341 -0.052198 -0.0298274 -0.00958738 0.09 0.02 pose: 0.32983481 5.91454 -0.773306 0 0.000135966 -0.00244223 -0.61665 0.787233 uwb: 0.0 906.246 427.619 +imu_odom_: 1691062812.547532832 0.742203 -0.1652 9.77553 -0.0585895 -0.0213053 0.00106526 0.05 0.02 pose: 0.41942068 5.91454 -0.773306 0 -0.00286673 -0.00434947 -0.617187 0.786799 uwb: 0.50019001 906.258 427.689 +imu_odom_: 1691062812.564520522 0.857124 -0.205901 9.93594 -0.0553937 0.00958738 0.0426106 0.05 0.02 pose: 0.7122073 5.91454 -0.773306 0 -0.00325065 -0.00501736 -0.617292 0.786711 uwb: 0.0 906.258 427.689 +imu_odom_: 1691062812.580382738 0.608127 -0.347159 9.91439 -0.0585895 -0.00319579 0.0479369 0.05 0.02 pose: 0.0 5.91454 -0.773306 0 -0.00325065 -0.00501736 -0.617292 0.786711 uwb: 0.0 906.258 427.689 +imu_odom_: 1691062812.597437507 0.548272 -0.169988 9.78989 -0.0426106 0.00213053 0.0319579 0.05 0.02 pose: 0.41788370 5.91793 -0.776804 0 -0.00620175 -0.00643574 -0.617331 0.786653 uwb: 0.50000919 910.258 427.024 +imu_odom_: 1691062812.613371176 0.648829 -0.0454898 9.92875 -0.0500674 -0.00958738 0.0340885 0.04 0.02 pose: 0.0 5.91793 -0.776804 0 -0.00620175 -0.00643574 -0.617331 0.786653 uwb: 0.0 910.258 427.024 +imu_odom_: 1691062812.636424003 0.672771 -0.241814 9.89524 -0.0617853 0.00213053 0.0500674 0.04 0.02 pose: 0.25028166 5.92162 -0.780368 0 -0.00411728 -0.00766037 -0.617414 0.78659 uwb: 0.0 910.258 427.024 +imu_odom_: 1691062812.662521354 0.227449 -0.232238 9.69652 -0.052198 0.0596548 0.0287621 0.04 0.02 pose: 0.0 5.92162 -0.780368 0 -0.00411728 -0.00766037 -0.617414 0.78659 uwb: 0.50093955 907.253 427.455 +imu_odom_: 1691062812.676573304 -1.07021 0.0407014 9.64863 -0.0479369 0.0884169 0.0394148 0.04 0.02 pose: 0.39024702 5.92162 -0.780368 0 -0.0054363 -0.00805707 -0.617356 0.786624 uwb: 0.0 907.253 427.455 +imu_odom_: 1691062812.700368669 -1.04387 -0.325611 10.1251 -0.0692422 -0.0703074 0.0905475 0.06 0.05 pose: 0.32137698 5.92162 -0.780368 0 -0.00259548 -0.00466678 -0.617455 0.786588 uwb: 0.49859469 907.215 427.224 +imu_odom_: 1691062812.725437665 0.627281 -0.306458 9.97903 -0.0500674 -0.072438 0.0479369 0.06 0.05 pose: 0.7969605 5.92162 -0.780368 0 -0.00236329 -0.00417391 -0.617297 0.786715 uwb: 0.0 907.215 427.224 +imu_odom_: 1691062812.739389287 0.677559 -0.0047884 9.46667 -0.0607201 -0.0106526 0.0777643 0.09 0 pose: 0.0 5.92162 -0.780368 0 -0.00236329 -0.00417391 -0.617297 0.786715 uwb: 0.0 907.215 427.224 +imu_odom_: 1691062812.763395223 0.181959 -0.428562 9.73482 -0.0745685 0.0553937 0.0671117 0.09 0 pose: 0.47890254 5.92162 -0.780368 0 -0.00457157 -0.0053609 -0.616784 0.787101 uwb: 0.50130119 904.741 427.797 +imu_odom_: 1691062812.789522615 0.136469 -0.0311246 10.2855 -0.0490022 -0.0351537 0.04048 0.12 0 pose: 0.30962060 5.92157 -0.789774 0 -0.00382889 -0.00293574 -0.616425 0.787399 uwb: 0.0 904.741 427.797 +imu_odom_: 1691062812.805424495 0.474052 -0.462081 9.71806 -0.0703074 -0.0319579 0.0798948 0.12 0 pose: 0.8016853 5.92155 -0.79451 0 -0.00314193 -0.00274817 -0.616425 0.787403 uwb: 0.49873176 903.279 428.28 +imu_odom_: 1691062812.830501366 0.385466 0.0526724 10.082 -0.0383495 -0.0234358 0.04048 0.15 0.02 pose: 0.0 5.92155 -0.79451 0 -0.00314193 -0.00274817 -0.616425 0.787403 uwb: 0.0 903.279 428.28 +imu_odom_: 1691062812.855392457 0.186748 -0.241814 10.0269 -0.072438 -0.0138484 0.076699 0.15 0.02 pose: 0.42024605 5.92155 -0.79451 0 -0.00239146 -0.00194569 -0.616165 0.787611 uwb: 0.50060707 900.759 428.545 +imu_odom_: 1691062812.873407044 0.114922 -0.387861 9.95509 -0.0490022 -0.00213053 0.036219 0.12 0 pose: 0.0 5.92155 -0.79451 0 -0.00239146 -0.00194569 -0.616165 0.787611 uwb: 0.0 900.759 428.545 +imu_odom_: 1691062812.890446355 0.023942 -0.0694318 9.61511 -0.0543285 0.00426106 0.0607201 0.12 0 pose: 0.50084622 5.92861 -0.801602 0 0.000227415 0.000212747 -0.615814 0.787892 uwb: 0.0 900.759 428.545 +imu_odom_: 1691062812.915443898 0.263362 -0.0335188 10.0724 -0.0553937 -0.00319579 0.0490022 0.13 0 pose: 0.0 5.92861 -0.801602 0 0.000227415 0.000212747 -0.615814 0.787892 uwb: 0.49860344 902.729 428.04 +imu_odom_: 1691062812.939386254 0.586579 -0.0837971 10.3525 -0.0372843 -0.0340885 0.052198 0.13 0 pose: 0.33889635 5.92861 -0.801602 0 0.00259792 0.00190795 -0.615653 0.78801 uwb: 0.0 902.729 428.04 +imu_odom_: 1691062812.957399966 0.37589 -0.387861 10.2256 -0.04048 -0.0426106 0.0585895 0.19 0 pose: 0.0 5.92861 -0.801602 0 0.00259792 0.00190795 -0.615653 0.78801 uwb: 0.50249695 901.289 428.62 +imu_odom_: 1691062812.982505127 -0.105345 -0.177171 9.79228 -0.0372843 -0.0553937 0.0585895 0.19 0 pose: 0.50109412 5.92858 -0.815743 0 0.00276616 -0.000778929-0.6154 0.78821 uwb: 0.0 901.289 428.62 +imu_odom_: 1691062812.999378491 0.316035 -0.0694318 9.49062 -0.0511327 -0.0511327 0.0532632 0.2 0 pose: 0.0 5.92858 -0.815743 0 0.00276616 -0.000778929-0.6154 0.78821 uwb: 0.49859178 901.764 428.395 +imu_odom_: 1691062813.24485694 0.550666 -0.35913 9.77074 -0.052198 -0.0426106 0.0681769 0.2 0 pose: 0.41995732 5.92858 -0.815743 0 0.00384733 0.000584191 -0.615103 0.788437 uwb: 0.0 901.764 428.395 +imu_odom_: 1691062813.49478863 -0.318429 -0.0071826110.0126 -0.0287621 0.02024 0.0500674 0.17 0 pose: 0.0 5.92858 -0.815743 0 0.00384733 -0.000595217-0.61477 0.788704 uwb: 0.50124579 904.764 427.936 +imu_odom_: 1691062813.62349050 0.114922 -0.459687 9.13148 -0.0468716 0.052198 0.052198 0.17 0 pose: 0.8057392 5.93565 -0.822815 0 0.00266166 -8.13236e-05-0.614736 0.788728 uwb: 0.0 904.764 427.936 +imu_odom_: 1691062813.86361694 1.1157 -0.196325 10.0963 -0.0788296 -0.0543285 0.072438 0.15 0.02 pose: 0.0 5.93565 -0.822815 0 0.00266166 -8.13236e-05-0.614736 0.788728 uwb: 0.0 904.764 427.936 +imu_odom_: 1691062813.112458463 0.639252 -0.0670376 9.88326 -0.0500674 -0.0340885 0.0543285 0.15 0.02 pose: 0.37883771 5.92858 -0.829889 0 0.00352693 0.00176913 -0.6145 0.788907 uwb: 0.49690313 904.21 427.695 +imu_odom_: 1691062813.134326903 0.658405 -0.248997 10.0365 -0.0745685 -0.00532632 0.0649811 0.16 0 pose: 0.0 5.92858 -0.829889 0 0.00352693 0.00176913 -0.6145 0.788907 uwb: 0.0 904.21 427.695 +imu_odom_: 1691062813.152388737 0.213084 -0.454898 9.63666 -0.0777643 0.0319579 0.0500674 0.16 0 pose: 0.48915694 5.93566 -0.836952 0 0.000675569 -0.00287721 -0.614067 0.789248 uwb: 0.50121080 897.788 429.045 +imu_odom_: 1691062813.166340359 -0.186748 -0.0837971 10.0437 -0.0607201 0.0340885 -0.00106526 0.16 0 pose: 0.0 5.93566 -0.836952 0 0.000675569 -0.00287721 -0.614067 0.789248 uwb: 0.0 897.788 429.045 +imu_odom_: 1691062813.183331841 0.311246 0.122104 10.1394 -0.0841559 -0.0553937 -0.04048 0.16 -0.08 pose: 0.38991163 5.93566 -0.836952 0 -0.000456523-0.000931622-0.613935 0.789356 uwb: 0.0 897.788 429.045 +imu_odom_: 1691062813.199333174 0.409408 -0.0981623 10.1323 -0.0660464 -0.00745685 -0.106526 0.16 -0.08 pose: 0.0 5.93566 -0.836952 0 -0.000456523-0.000931622-0.613935 0.789356 uwb: 0.50001212 897.76 428.883 +imu_odom_: 1691062813.217378092 0.773327 -0.335188 9.99819 -0.0639159 -0.0255663 -0.156594 0.21 -0.35 pose: 0.0 5.93566 -0.836952 0 -0.000456523-0.000931622-0.613935 0.789356 uwb: 0.0 897.76 428.883 +imu_odom_: 1691062813.234434612 0.531513 0.047884 9.87129 -0.0553937 0.00213053 -0.252468 0.21 -0.35 pose: 0.49005813 5.9357 -0.851095 0 0.00166099 -0.00252686 -0.616137 0.787633 uwb: 0.0 897.76 428.883 +imu_odom_: 1691062813.250376448 0.814029 0.186748 9.80426 -0.0319579 0.0106526 -0.332363 0.21 -0.35 pose: 0.0 5.9357 -0.851095 0 0.00166099 -0.00252686 -0.616137 0.787633 uwb: 0.50038543 896.757 429.04 +imu_odom_: 1691062813.268334747 0.68953 0.248997 10.2376 -0.0575243 -0.0191748 -0.345146 0.17 -0.38 pose: 0.43036921 5.94273 -0.858121 0 0.00186713 -0.0060625 -0.621184 0.783639 uwb: 0.0 896.757 429.04 +imu_odom_: 1691062813.285322437 0.220267 -0.287304 9.12909 -0.0777643 0.00852212 -0.378169 0.17 -0.44 pose: 0.0 5.94273 -0.858121 0 0.00186713 -0.0060625 -0.621184 0.783639 uwb: 0.0 896.757 429.04 +imu_odom_: 1691062813.302415121 0.47884 -0.0191536 10.1083 -0.0894822 -0.00745685 -0.40267 0.17 -0.44 pose: 0.0 5.94273 -0.858121 0 0.00186713 -0.0060625 -0.621184 0.783639 uwb: 0.49942298 897.227 428.788 +imu_odom_: 1691062813.319336898 0.138864 -0.409408 9.72046 -0.056459 0.00958738 -0.430367 0.17 -0.47 pose: 0.25952986 5.93581 -0.865252 0 0.00243371 -0.00692938 -0.62519 0.780438 uwb: 0.0 897.227 428.788 +imu_odom_: 1691062813.337486519 0.59855 -0.217872 10.3238 -0.0649811 -0.0234358 -0.480434 0.17 -0.47 pose: 0.0 5.93581 -0.865252 0 0.00243371 -0.00692938 -0.62519 0.780438 uwb: 0.0 897.227 428.788 +imu_odom_: 1691062813.353343194 0.215478 -0.275333 9.60554 -0.0798948 0.0266316 -0.511327 0.17 -0.47 pose: 0.33033354 5.94292 -0.872283 0 0.00332136 -0.00629225 -0.630871 0.775855 uwb: 0.49886010 897.739 428.768 +imu_odom_: 1691062813.370345466 0.799663 -0.011971 10.2759 -0.0639159 0.0340885 -0.549676 0.17 -0.55 pose: 0.36042006 5.94292 -0.872283 0 0.00148675 -0.00474876 -0.638019 0.770004 uwb: 0.0 897.739 428.768 +imu_odom_: 1691062813.388543792 0.59855 -0.263362 10.137 -0.072438 0.00745685 -0.567786 0.17 -0.55 pose: 0.0 5.94292 -0.872283 0 0.00148675 -0.00474876 -0.638019 0.770004 uwb: 0.0 897.739 428.768 +imu_odom_: 1691062813.404361969 0.500388 0.268151 9.57202 -0.0500674 -0.0181095 -0.569916 0.17 -0.61 pose: 0.43138998 5.94299 -0.886429 0 -0.000621961-0.00506494 -0.647753 0.761833 uwb: 0.49988963 896.271 429.2 +imu_odom_: 1691062813.421396032 1.17076 -0.205901 9.80186 -0.0532632 -0.0756338 -0.535828 0.17 -0.61 pose: 0.0 5.94299 -0.886429 0 -0.000621961-0.00506494 -0.647753 0.761833 uwb: 0.0 896.271 429.2 +imu_odom_: 1691062813.437341076 1.44131 -0.186748 9.62948 -0.0575243 -0.0458064 -0.525175 0.17 -0.61 pose: 0.0 5.94299 -0.886429 0 -0.000621961-0.00506494 -0.647753 0.761833 uwb: 0.0 896.271 429.2 +imu_odom_: 1691062813.454479549 1.71664 -0.191536 9.59596 -0.0330232 0.0308927 -0.530502 0.18 -0.61 pose: 0.6836549 5.94307 -0.886424 0 -0.000124403-0.00557729 -0.649339 0.760478 uwb: 0.50024835 896.786 429.202 +imu_odom_: 1691062813.471539277 1.14203 -0.138864 9.23922 -0.0479369 -0.0170442 -0.497478 0.18 -0.61 pose: 0.0 5.94307 -0.886424 0 -0.000124403-0.00557729 -0.649339 0.760478 uwb: 0.0 896.786 429.202 +imu_odom_: 1691062813.488475053 0.964863 -0.21069 10.3765 -0.0490022 0.00852212 -0.438889 0.18 -0.61 pose: 0.0 5.94307 -0.886424 0 -0.000124403-0.00557729 -0.649339 0.760478 uwb: 0.0 896.786 429.202 +imu_odom_: 1691062813.505358333 0.948104 -0.141258 10.5656 -0.0447411 0.0149137 -0.365386 0.11 -0.35 pose: 0.50037668 5.95023 -0.893414 0 -0.00276296 -0.00980239 -0.66022 0.751003 uwb: 0.50091915 893.326 429.862 +imu_odom_: 1691062813.521493825 1.04387 -0.289698 9.78031 -0.052198 -0.0436758 -0.298274 0.15 -0.53 pose: 0.0 5.95023 -0.893414 0 -0.00276296 -0.00980239 -0.66022 0.751003 uwb: 0.0 893.326 429.862 +imu_odom_: 1691062813.537471242 1.00078 -0.371101 9.77313 -0.0575243 -0.00319579 -0.248207 0.15 -0.53 pose: 0.66949529 5.94319 -0.90052 0 -0.00727836 -0.0142284 -0.671932 0.74044 uwb: 0.0 893.326 429.862 +imu_odom_: 1691062813.554466515 0.986411 -0.167594 10.2017 -0.0553937 0.0127832 -0.192813 0.12 -0.41 pose: 0.0 5.94319 -0.90052 0 -0.00727836 -0.0142284 -0.671932 0.74044 uwb: 0.50051083 891.84 430.19 +imu_odom_: 1691062813.570476014 0.486023 -0.275333 9.71806 -0.0511327 0.0415453 -0.189617 0.12 -0.41 pose: 0.0 5.94319 -0.90052 0 -0.00727836 -0.0142284 -0.671932 0.74044 uwb: 0.0 891.84 430.19 +imu_odom_: 1691062813.587456996 0.126893 0.0837971 10.0293 -0.0394148 -0.00532632 -0.246076 0.12 -0.41 pose: 0.33110058 5.95033 -0.907523 0 -0.0102678 -0.0154971 -0.675402 0.737215 uwb: 0.0 891.84 430.19 +imu_odom_: 1691062813.603347211 0.651223 0.011971 9.80186 -0.0585895 -0.0415453 -0.233293 0.07 -0.23 pose: 0.41979400 5.95033 -0.907523 0 -0.0083146 -0.0137518 -0.679333 0.733654 uwb: 0.49937049 891.361 430.377 +imu_odom_: 1691062813.620479851 0.878672 -0.397437 9.91918 -0.0628506 -0.00213053 -0.199204 0.07 -0.23 pose: 0.8017728 5.95033 -0.907523 0 -0.00767518 -0.0141837 -0.680144 0.732901 uwb: 0.0 891.361 430.377 +imu_odom_: 1691062813.636452893 0.907402 -0.641646 9.9934 -0.056459 -0.0276969 -0.190682 0.07 -0.23 pose: 0.0 5.95033 -0.907523 0 -0.00767518 -0.0141837 -0.680144 0.732901 uwb: 0.0 891.361 430.377 +imu_odom_: 1691062813.653351631 0.92895 -0.0742203 9.68933 -0.0511327 -0.00532632 -0.173638 0.08 -0.29 pose: 0.40978169 5.95033 -0.907523 0 -0.0103149 -0.01376 -0.68373 0.729533 uwb: 0.49984880 889.953 431.101 +imu_odom_: 1691062813.669480414 0.610521 -0.102951 9.96946 -0.0532632 0.0181095 -0.131028 0.06 -0.17 pose: 0.0 5.95033 -0.907523 0 -0.0103149 -0.01376 -0.68373 0.729533 uwb: 0.0 889.953 431.101 +imu_odom_: 1691062813.687605244 0.529119 -0.21069 10.0126 -0.0628506 -0.00532632 -0.138484 0.06 -0.17 pose: 0.0 5.95033 -0.907523 0 -0.0103149 -0.01376 -0.68373 0.729533 uwb: 0.0 889.953 431.101 +imu_odom_: 1691062813.704443027 0.600945 -0.1652 9.8258 -0.0436758 -0.0213053 -0.173638 0.05 -0.17 pose: 0.25150660 5.95033 -0.907523 0 -0.00990248 -0.0150101 -0.685558 0.727795 uwb: 0.50021335 894.897 430.072 +imu_odom_: 1691062813.729446112 0.742203 -0.189142 9.84975 -0.0649811 -0.0117179 -0.129962 0.05 -0.17 pose: 0.0 5.95033 -0.907523 0 -0.00990248 -0.0150101 -0.685558 0.727795 uwb: 0.0 894.897 430.072 +imu_odom_: 1691062813.745465818 0.31364 -0.402226 9.85693 -0.0628506 0.0319579 -0.140615 0.05 -0.17 pose: 0.34054417 5.94335 -0.914688 0 -0.0078314 -0.0124257 -0.687885 0.725671 uwb: 0.49873761 900.342 428.904 +imu_odom_: 1691062813.762380596 -0.68953 -0.007182619.95748 -0.0351537 0.117179 -0.199204 0.05 -0.11 pose: 0.0 5.94335 -0.914688 0 -0.0078314 -0.0124257 -0.687885 0.725671 uwb: 0.0 900.342 428.904 +imu_odom_: 1691062813.778426260 -1.43892 0.191536 10.1418 -0.0511327 0.0383495 -0.120375 0.05 -0.11 pose: 0.41799745 5.95047 -0.921709 0 -0.00939514 -0.0119722 -0.6906 0.723077 uwb: 0.0 900.342 428.904 +imu_odom_: 1691062813.795361453 -0.706289 -0.596156 9.89524 -0.072438 -0.104396 -0.0394148 0.11 -0.11 pose: 0.40968545 5.95047 -0.921709 0 -0.00535463 -0.00826284 -0.693552 0.720339 uwb: 0.50040293 898.837 429.121 +imu_odom_: 1691062813.811304164 0.794875 -0.3304 9.92875 -0.0447411 -0.0948085 -0.0532632 0.11 -0.11 pose: 0.0 5.95047 -0.921709 0 -0.00535463 -0.00826284 -0.693552 0.720339 uwb: 0.0 898.837 429.121 +imu_odom_: 1691062813.828343768 0.890643 -0.11971 9.96467 -0.0458064 0.0266316 -0.0479369 0.11 -0.11 pose: 0.0 5.95047 -0.921709 0 -0.00535463 -0.00826284 -0.693552 0.720339 uwb: 0.0 898.837 429.121 +imu_odom_: 1691062813.844399639 0.373495 0.0335188 9.78989 -0.0543285 0.0585895 -0.0500674 0.11 -0.08 pose: 0.6942125 5.95047 -0.921709 0 -0.00533068 -0.00784914 -0.693753 0.720151 uwb: 0.49985754 901.335 428.731 +imu_odom_: 1691062813.861280877 -0.0311246 -0.158017 10.137 -0.0553937 0.0181095 -0.0628506 0.14 -0.08 pose: 0.0 5.95047 -0.921709 0 -0.00533068 -0.00784914 -0.693753 0.720151 uwb: 0.0 901.335 428.731 +imu_odom_: 1691062813.877285418 0.0622492 -0.138864 10.0772 -0.0511327 0.00106526 -0.0660464 0.14 -0.08 pose: 0.66926489 5.95047 -0.921709 0 -0.00520541 -0.0084766 -0.695918 0.718053 uwb: 0.0 901.335 428.731 +imu_odom_: 1691062813.894285358 0.706289 -0.186748 9.98861 -0.0585895 -0.0127832 -0.0330232 0.15 -0.11 pose: 0.0 5.95047 -0.921709 0 -0.00520541 -0.0084766 -0.695918 0.718053 uwb: 0.49945799 903.366 428.575 +imu_odom_: 1691062813.910312356 0.567426 -0.407014 9.80426 -0.052198 0.0106526 -0.0223706 0.15 -0.11 pose: 0.0 5.95047 -0.921709 0 -0.00520541 -0.0084766 -0.695918 0.718053 uwb: 0.0 903.366 428.575 +imu_odom_: 1691062813.927326586 0.361524 -0.0430956 10.0054 -0.0543285 0.0149137 -0.0447411 0.15 -0.11 pose: 0.31989542 5.95054 -0.935859 0 -0.00381625 -0.00715453 -0.697051 0.716976 uwb: 0.0 903.366 428.575 +imu_odom_: 1691062813.943435537 0.169988 -0.0311246 9.73243 -0.0639159 0.0181095 -0.0213053 0.12 -0.08 pose: 0.43042170 5.95054 -0.935859 0 -0.00383195 -0.00623 -0.698179 0.715886 uwb: 0.0 903.366 428.575 +imu_odom_: 1691062813.960296360 0.287304 -0.31364 10.2208 -0.0575243 0.0266316 -0.0234358 0.12 -0.08 pose: 0.8130596 5.95054 -0.935859 0 -0.00304499 -0.00581966 -0.698362 0.715714 uwb: 0.49998003 901.759 428.206 +imu_odom_: 1691062813.976489598 0.572214 -0.339977 9.75877 -0.0639159 0 -0.0319579 0.12 -0.08 pose: 0.0 5.95054 -0.935859 0 -0.00304499 -0.00581966 -0.698362 0.715714 uwb: 0.0 901.759 428.206 +imu_odom_: 1691062813.992435809 0.907402 -0.0071826110.1754 -0.0458064 0.015979 -0.0234358 0.18 -0.08 pose: 0.41032416 5.94352 -0.942989 0 -0.00335932 -0.00317414 -0.699335 0.71478 uwb: 0.0 901.759 428.206 +imu_odom_: 1691062814.6569129 1.00556 -0.0502782 10.1155 -0.0692422 -0.015979 0.00426106 0.13 -0.02 pose: 0.0 5.94352 -0.942989 0 -0.00335932 -0.00317414 -0.699335 0.71478 uwb: 0.50146453 903.804 428.12 +imu_odom_: 1691062814.24561259 1.07021 -0.007182619.68933 -0.0553937 -0.00213053 -0.00639159 0.13 -0.02 pose: 0.0 5.94352 -0.942989 0 -0.00335932 -0.00317414 -0.699335 0.71478 uwb: 0.0 903.804 428.12 +imu_odom_: 1691062814.41324963 0.950498 -0.25618 9.95748 -0.0649811 0.0255663 0.0276969 0.11 -0.05 pose: 0.22858005 5.95063 -0.950025 0 -0.00403869 -0.00525011 -0.699776 0.714332 uwb: 0.0 903.804 428.12 +imu_odom_: 1691062814.56558676 1.15879 -0.383072 9.8665 -0.076699 -0.0149137 0.0553937 0.11 -0.05 pose: 0.0 5.95063 -0.950025 0 -0.00403869 -0.00525011 -0.699776 0.714332 uwb: 0.50165703 902.815 428.359 +imu_odom_: 1691062814.73586614 1.39343 -0.241814 10.1011 -0.0543285 -0.00852212 0.0319579 0.11 -0.05 pose: 0.33101600 5.95063 -0.950025 0 -0.00576291 -0.00785091 -0.700179 0.713901 uwb: 0.0 902.815 428.359 +imu_odom_: 1691062814.89416457 1.32639 0.122104 9.66779 -0.0479369 -0.00745685 -0.0106526 0.09 -0.08 pose: 0.41137411 5.95063 -0.950025 0 -0.0092401 -0.0100408 -0.700138 0.713877 uwb: 0.0 902.815 428.359 +imu_odom_: 1691062814.106482602 1.07739 -0.107739 9.83299 -0.0596548 0.0340885 -0.0287621 0.09 -0.08 pose: 0.7992646 5.95063 -0.950025 0 -0.00947371 -0.0108324 -0.700277 0.713726 uwb: 0.49992464 905.831 427.949 +imu_odom_: 1691062814.123296178 0.555455 -0.31364 9.91439 -0.0596548 -0.00213053 -0.0490022 0.09 -0.08 pose: 0.0 5.95063 -0.950025 0 -0.00947371 -0.0108324 -0.700277 0.713726 uwb: 0.0 905.831 427.949 +imu_odom_: 1691062814.139357591 0.751779 -0.225055 9.79468 -0.0607201 -0.0394148 -0.0692422 0.1 -0.05 pose: 0.41716918 5.94764 -0.96109 0 -0.0101951 -0.0111004 -0.701353 0.712655 uwb: 0.0 905.831 427.949 +imu_odom_: 1691062814.155290095 0.916979 -0.225055 9.8282 -0.056459 0 -0.0319579 0.06 -0.05 pose: 0.0 5.94764 -0.96109 0 -0.0101951 -0.0111004 -0.701353 0.712655 uwb: 0.49880178 911.297 427.076 +imu_odom_: 1691062814.172278660 0.921768 -0.268151 10.0293 -0.0660464 0.00106526 0.0127832 0.06 -0.05 pose: 0.0 5.94764 -0.96109 0 -0.0101951 -0.0111004 -0.701353 0.712655 uwb: 0.0 911.297 427.076 +imu_odom_: 1691062814.188337448 0.442927 -0.356736 9.69891 -0.052198 0.0149137 0.00532632 0.06 -0.05 pose: 0.24020519 5.95079 -0.964184 0 -0.012436 -0.0125005 -0.702142 0.711818 uwb: 0.0 911.297 427.076 +imu_odom_: 1691062814.205283725 0.579397 0.0454898 9.9934 -0.052198 -0.0234358 -0.00639159 0.05 -0.05 pose: 0.0 5.95079 -0.964184 0 -0.012436 -0.0125005 -0.702142 0.711818 uwb: 0.50184077 912.85 427.171 +imu_odom_: 1691062814.229261080 0.701501 -0.282516 9.76355 -0.0671117 0.00213053 0.02024 0.05 -0.05 pose: 0.33003898 5.95079 -0.964184 0 -0.0141637 -0.0129244 -0.702575 0.711352 uwb: 0.0 912.85 427.171 +imu_odom_: 1691062814.254268249 0.328006 -0.418985 9.68694 -0.0553937 0.0276969 -0.0106526 0.04 0 pose: 0.33146515 5.95079 -0.964184 0 -0.0124382 -0.0117903 -0.703036 0.710948 uwb: 0.49641027 914.373 427.107 +imu_odom_: 1691062814.268319324 -0.665588 0.160412 9.991 -0.0543285 0.112918 -0.04048 0.04 0 pose: 0.0 5.95079 -0.964184 0 -0.0124382 -0.0117903 -0.703036 0.710948 uwb: 0.0 914.373 427.107 +imu_odom_: 1691062814.292258181 -1.45567 -0.342371 9.93594 -0.0735032 -0.0426106 0.0436758 0.07 -0.02 pose: 0.54852214 5.95079 -0.964184 0 -0.00985685 -0.00634777 -0.704019 0.710085 uwb: 0.0 914.373 427.107 +imu_odom_: 1691062814.316341114 0.368707 -0.378284 9.92636 -0.0500674 -0.0969391 0.0138484 0.07 -0.02 pose: 0.0 5.95079 -0.964184 0 -0.00985685 -0.00634777 -0.704019 0.710085 uwb: 0.50109998 914.877 427.056 +imu_odom_: 1691062814.339269407 0.804452 -0.0814029 9.65103 -0.0671117 0.00639159 0.0532632 0.14 -0.02 pose: 0.7949773 5.95079 -0.964184 0 -0.0094774 -0.00582015 -0.70401 0.710103 uwb: 0.0 914.877 427.056 +imu_odom_: 1691062814.356269930 -0.177171 0.0335188 10.0461 -0.0585895 0.0191748 0.0330232 0.14 -0.02 pose: 0.0 5.95079 -0.964184 0 -0.0094774 -0.00582015 -0.70401 0.710103 uwb: 0.49930342 915.405 427.167 +imu_odom_: 1691062814.372279429 -0.138864 -0.395043 10.2232 -0.056459 -0.0245011 0.0191748 0.11 0 pose: 0.47026683 5.94374 -0.971271 0 -0.00873304 -0.00395813 -0.704172 0.709964 uwb: 0.0 915.405 427.167 +imu_odom_: 1691062814.399551546 0.507571 -0.169988 10.4244 -0.0639159 -0.0426106 0.0266316 0.11 0 pose: 0.0 5.94374 -0.971271 0 -0.00873304 -0.00395813 -0.704172 0.709964 uwb: 0.49955133 916.362 426.718 +imu_odom_: 1691062814.425418496 0.158017 -0.143652 9.69652 -0.0511327 0.00319579 0.0266316 0.12 0 pose: 0.76255766 5.95082 -0.978328 0 -0.00434387 -0.00465505 -0.704412 0.709762 uwb: 0.0 916.362 426.718 +imu_odom_: 1691062814.442285152 -0.0909797 0.0047884 10.2903 -0.0617853 -0.0181095 0.0308927 0.12 0 pose: 0.8893550 5.95082 -0.978328 0 -0.00357685 -0.00413697 -0.704458 0.709725 uwb: 0.0 916.362 426.718 +imu_odom_: 1691062814.458300776 0.440533 -0.306458 9.96227 -0.0585895 -0.0426106 0.0330232 0.12 -0.02 pose: 0.0 5.95082 -0.978328 0 -0.00357685 -0.00413697 -0.704458 0.709725 uwb: 0.49982255 912.392 427.526 +imu_odom_: 1691062814.475445666 0.823605 -0.335188 10.0341 -0.0479369 -0.04048 0.0170442 0.12 -0.02 pose: 0.42059606 5.95084 -0.99247 0 -0.00137699 -0.00195744 -0.704618 0.709583 uwb: 0.0 912.392 427.526 +imu_odom_: 1691062814.500323051 -0.0814029 -0.167594 9.52413 -0.0543285 0.0894822 0.0276969 0.13 0.02 pose: 0.0 5.95084 -0.99247 0 -0.00137699 -0.00195744 -0.704618 0.709583 uwb: 0.50019296 908.436 428.407 +imu_odom_: 1691062814.517281868 -0.167594 -0.383072 10.1323 -0.0585895 0.0500674 0.0276969 0.13 0.02 pose: 0.33825473 5.95084 -0.99247 0 -0.00270576 -0.00170225 -0.704808 0.709391 uwb: 0.0 908.436 428.407 +imu_odom_: 1691062814.542403655 0.514753 -0.174777 10.0844 -0.04048 -0.00106526 0.02024 0.14 -0.02 pose: 0.0 5.95084 -0.99247 0 -0.00270576 -0.00170225 -0.704808 0.709391 uwb: 0.0 908.436 428.407 +imu_odom_: 1691062814.569459367 0.325611 -0.241814 9.73482 -0.0745685 -0.015979 0.0415453 0.14 -0.02 pose: 0.41963945 5.95084 -0.99247 0 -5.04829e-050.000769283 -0.705011 0.709196 uwb: 0.50093374 911.42 427.842 +imu_odom_: 1691062814.595265071 0.514753 -0.189142 10.1155 -0.0532632 -0.0585895 0.0287621 0.14 0 pose: 0.0 5.95084 -0.99247 0 -5.04829e-050.000769283 -0.705011 0.709196 uwb: 0.49948716 911.906 427.671 +imu_odom_: 1691062814.612450792 0.730232 0.129287 10.2185 -0.0543285 0.0149137 0.0276969 0.14 0 pose: 0.51112396 5.95098 -1.00661 0 -0.0001173620.000819841 -0.705134 0.709073 uwb: 0.0 911.906 427.671 +imu_odom_: 1691062814.637454752 0.0790087 -0.373495 9.61033 -0.072438 -0.00745685 0.0426106 0.15 0 pose: 0.0 5.95098 -1.00661 0 -0.0001173620.000819841 -0.705134 0.709073 uwb: 0.0 911.906 427.671 +imu_odom_: 1691062814.664404013 0.553061 -0.1652 9.67257 -0.0553937 0.0149137 0.0319579 0.15 0 pose: 0.42995216 5.95098 -1.00661 0 -0.000805541-0.00193374 -0.705267 0.708938 uwb: 0.50179119 912.9 427.472 +imu_odom_: 1691062814.690280588 0.414197 -0.270545 10.5201 -0.0671117 -0.0170442 0.0458064 0.15 -0.02 pose: 0.44002281 5.9511 -1.02075 0 -0.00132879 -0.00249633 -0.705321 0.708882 uwb: 0.0 912.9 427.472 +imu_odom_: 1691062814.706528656 0.428562 -0.217872 9.54568 -0.0500674 0.00426106 0.0170442 0.15 -0.02 pose: 0.0 5.9511 -1.02075 0 -0.00132879 -0.00249633 -0.705321 0.708882 uwb: 0.49883095 907.985 428.741 +imu_odom_: 1691062814.732507017 0.42138 -0.349553 10.149 -0.072438 0.00745685 0.0553937 0.17 -0.02 pose: 0.33015564 5.9511 -1.02075 0 -0.00155523 -0.000419452-0.705321 0.708887 uwb: 0.0 907.985 428.741 +imu_odom_: 1691062814.756277301 0.507571 -0.213084 9.97664 -0.0479369 -0.0340885 0.0181095 0.17 -0.02 pose: 0.0 5.9511 -1.02075 0 -0.00155523 -0.000419452-0.705321 0.708887 uwb: 0.50113790 906.036 429.32 +imu_odom_: 1691062814.781411629 0.316035 -0.28491 9.78271 -0.076699 0 0.0553937 0.23 0 pose: 0.41850493 5.95123 -1.0349 0 -0.00279044 0.000463464 -0.705297 0.708906 uwb: 0.0 906.036 429.32 +imu_odom_: 1691062814.796256573 0.414197 -0.730232 9.43794 -0.0511327 0.04048 0.0372843 0.23 0 pose: 0.0 5.95123 -1.0349 0 -0.00279044 0.000463464 -0.705297 0.708906 uwb: 0.49991005 909.067 429.09 +imu_odom_: 1691062814.822522791 0.0287304 -0.153229 9.85453 -0.0319579 0.0713727 0.0287621 0.16 -0.02 pose: 0.49163013 5.95123 -1.0349 0 -0.00261091 0.00161797 -0.70529 0.708912 uwb: 0.0 909.067 429.09 +imu_odom_: 1691062814.845460417 0.332794 -0.603339 9.75158 -0.0788296 0.0266316 0.0511327 0.16 -0.02 pose: 0.34089708 5.94945 -1.04716 0 0.000258331 0.0039201 -0.705391 0.708807 uwb: 0.49781018 907.105 429.573 +imu_odom_: 1691062814.871450152 -0.0191536 -0.0407014 10.094 -0.0372843 0.00639159 0.0372843 0.17 0 pose: 0.0 5.94945 -1.04716 0 0.000258331 0.0039201 -0.705391 0.708807 uwb: 0.0 907.105 429.573 +imu_odom_: 1691062814.888310683 0.804452 -0.344765 9.65342 -0.0884169 -0.036219 0.0617853 0.17 0 pose: 0.7013872 5.95135 -1.04904 0 -0.0002015280.00456942 -0.705362 0.708832 uwb: 0.0 907.105 429.573 +imu_odom_: 1691062814.913265063 0.526724 -0.162806 9.55765 -0.0479369 -0.00852212 0.0213053 0.17 -0.02 pose: 0.0 5.95135 -1.04904 0 -0.0002015280.00456942 -0.705362 0.708832 uwb: 0.0 907.105 429.573 +imu_odom_: 1691062814.936221063 0.141258 -0.0694318 9.57681 -0.0937433 -0.00319579 0.0607201 0.17 -0.02 pose: 0.49867637 5.95135 -1.04904 0 0.000787888 0.00581702 -0.705245 0.708939 uwb: 0.0 907.105 429.573 +imu_odom_: 1691062814.961221816 0.316035 -0.318429 9.77792 -0.0798948 0.0490022 0.0245011 0.23 0 pose: 0.0 5.95135 -1.04904 0 0.000787888 0.00581702 -0.705245 0.708939 uwb: 0.99965678 905.113 429.901 +imu_odom_: 1691062814.975275807 0.342371 -0.138864 9.60314 -0.0671117 0.0372843 0.0308927 0.23 0 pose: 0.40906133 5.95148 -1.06318 0 -1.16454e-050.00290412 -0.705295 0.708908 uwb: 0.0 905.113 429.901 +imu_odom_: 1691062815.278893 0.143652 -0.483629 9.53132 -0.0532632 0.04048 0.0340885 0.17 0 pose: 0.0 5.95148 -1.06318 0 -1.16454e-050.00290412 -0.705295 0.708908 uwb: 0.50113498 906.19 430.223 +imu_odom_: 1691062815.17385285 0.131681 -0.0957681 10.1945 -0.0447411 -0.0671117 0.0426106 0.17 0 pose: 0.47915630 5.94447 -1.07031 0 0.000896478 0.00573969 -0.705322 0.708863 uwb: 0.0 906.19 430.223 +imu_odom_: 1691062815.43287526 0.361524 -0.059855 9.63666 -0.0660464 -0.0117179 0.0383495 0.17 0.02 pose: 0.0 5.94447 -1.07031 0 0.000896478 0.00573969 -0.705322 0.708863 uwb: 0.0 906.19 430.223 +imu_odom_: 1691062815.59228196 0.131681 -0.208296 10.0149 -0.0415453 0.0191748 0.036219 0.17 0.02 pose: 0.40151053 5.95161 -1.07732 0 0.00212182 0.00776561 -0.705371 0.708793 uwb: 0.49928886 905.703 430.374 +imu_odom_: 1691062815.76385919 -0.129287 -0.21069 10.0221 -0.056459 -0.015979 0.0394148 0.17 -0.02 pose: 0.0 5.95161 -1.07732 0 0.00212182 0.00776561 -0.705371 0.708793 uwb: 0.0 905.703 430.374 +imu_odom_: 1691062815.102471315 0.311246 -0.112527 9.97664 -0.0340885 -0.0106526 0.0340885 0.17 -0.02 pose: 0.0 5.95161 -1.07732 0 0.00212182 0.00776561 -0.705371 0.708793 uwb: 0.50250282 909.16 429.646 +imu_odom_: 1691062815.118240496 0.308852 -0.201113 10.2161 -0.0639159 -0.0426106 0.0543285 0.18 0 pose: 0.41875284 5.9446 -1.08445 0 0.00426118 0.00537766 -0.70537 0.708807 uwb: 0.0 909.16 429.646 +imu_odom_: 1691062815.144279812 0.533907 -0.260968 10.0604 -0.0479369 -0.0266316 0.0234358 0.18 0 pose: 0.0 5.9446 -1.08445 0 0.00426118 0.00537766 -0.70537 0.708807 uwb: 0.0 909.16 429.646 +imu_odom_: 1691062815.158369676 0.56982 0.0574608 10.4435 -0.0447411 -0.0372843 0.0415453 0.18 0 pose: 0.76043155 5.94472 -1.09859 0 0.00422582 0.00286788 -0.705392 0.708799 uwb: 0.49845474 906.709 430.28 +imu_odom_: 1691062815.173342946 0.811634 -0.342371 9.72764 -0.0628506 -0.0351537 0.0575243 0.18 0 pose: 0.0 5.94472 -1.09859 0 0.00422582 0.00286788 -0.705392 0.708799 uwb: 0.0 906.709 430.28 +imu_odom_: 1691062815.190433881 0.179565 -0.349553 9.51216 -0.0436758 -0.0191748 0.0213053 0.18 0 pose: 0.0 5.94472 -1.09859 0 0.00422582 0.00286788 -0.705392 0.708799 uwb: 0.0 906.709 430.28 +imu_odom_: 1691062815.216343705 -0.071826 -0.275333 9.7037 -0.0713727 -0.0106526 0.0639159 0.17 0.02 pose: 0.47047391 5.95185 -1.1056 0 0.000988444 -0.000598642-0.705396 0.708812 uwb: 0.49977007 909.116 429.368 +imu_odom_: 1691062815.232206797 0.651223 -0.270545 9.92397 -0.0543285 -0.0447411 0.0319579 0.17 0.02 pose: 0.0 5.95185 -1.1056 0 0.000988444 -0.000598642-0.705396 0.708812 uwb: 0.0 909.116 429.368 +imu_odom_: 1691062815.258208198 0.457293 -0.1652 10.1538 -0.0468716 -0.00426106 0.0319579 0.17 0 pose: 0.7960274 5.95185 -1.1056 0 0.00110872 0.00011325 -0.705448 0.70876 uwb: 0.49736689 912.599 428.848 +imu_odom_: 1691062815.274220031 0.328006 -0.148441 9.88087 -0.0585895 -0.0490022 0.04048 0.22 -0.02 pose: 0.0 5.95185 -1.1056 0 0.00110872 0.00011325 -0.705448 0.70876 uwb: 0.0 912.599 428.848 +imu_odom_: 1691062815.289344376 0.68953 -0.1652 9.64624 -0.0213053 -0.02024 0.0117179 0.18 0.02 pose: 0.83916808 5.95197 -1.11975 0 0.00116367 -0.000646248-0.705397 0.708812 uwb: 0.0 912.599 428.848 +imu_odom_: 1691062815.305227591 0.725443 -0.258574 10.07 -0.0394148 -0.04048 0.0468716 0.18 0.02 pose: 0.0 5.95197 -1.11975 0 0.00116367 -0.000646248-0.705397 0.708812 uwb: 0.50075002 913.639 428.975 +imu_odom_: 1691062815.331338361 0.483629 -0.201113 9.83538 -0.0415453 -0.0351537 0.0415453 0.18 0 pose: 0.31024184 5.95209 -1.13389 0 0.000328075 -0.00244106 -0.705522 0.708684 uwb: 0.0 913.639 428.975 +imu_odom_: 1691062815.356204080 0.308852 -0.227449 9.96467 -0.0500674 -0.0223706 0.056459 0.18 0 pose: 0.35094149 5.95209 -1.13389 0 -0.00323689 -0.00396508 -0.705467 0.708724 uwb: 0.50104749 915.642 428.723 +imu_odom_: 1691062815.378205513 0.136469 -0.169988 10.1634 -0.0426106 -0.00319579 0.04048 0.19 0 pose: 0.0 5.95209 -1.13389 0 -0.00323689 -0.00396508 -0.705467 0.708724 uwb: 0.0 915.642 428.723 +imu_odom_: 1691062815.391404973 0.0646434 -0.169988 9.60314 -0.0479369 -0.00532632 0.0532632 0.19 0 pose: 0.0 5.95209 -1.13389 0 -0.00323689 -0.00396508 -0.705467 0.708724 uwb: 0.0 915.642 428.723 +imu_odom_: 1691062815.416340396 0.107739 -0.512359 9.5816 -0.0703074 0.00426106 0.0511327 0.18 0 pose: 0.6963125 5.95209 -1.13389 0 -0.00283791 -0.00347543 -0.705427 0.708768 uwb: 0.50038254 914.651 428.918 +imu_odom_: 1691062815.433316130 0.531513 0.129287 9.75398 -0.0436758 -0.0138484 0.0479369 0.18 0 pose: 0.0 5.95209 -1.13389 0 -0.00283791 -0.00347543 -0.705427 0.708768 uwb: 0.0 914.651 428.918 +imu_odom_: 1691062815.457199866 0.471658 -0.203507 9.92875 -0.0628506 -0.0191748 0.0553937 0.18 0 pose: 0.44964141 5.95221 -1.14803 0 0.000424161 -0.000632819-0.705296 0.708912 uwb: 0.49909637 917.174 428.76 +imu_odom_: 1691062815.484274245 0.347159 -0.0550666 10.0437 -0.0383495 0 0.0372843 0.18 0 pose: 0.40067642 5.95221 -1.14803 0 0.00111406 0.00185401 -0.705134 0.709071 uwb: 0.0 917.174 428.76 +imu_odom_: 1691062815.509199461 0.40462 -0.363919 9.73004 -0.072438 0.00319579 0.0500674 0.17 0.02 pose: 0.0 5.95221 -1.14803 0 0.00111406 0.00185401 -0.705134 0.709071 uwb: 0.50124290 922.227 428.524 +imu_odom_: 1691062815.526333268 0.361524 -0.158017 9.39964 -0.0458064 -0.0117179 0.0330232 0.17 0.02 pose: 0.41878493 5.95235 -1.16217 0 0.000446439 -0.00125121 -0.704977 0.709229 uwb: 0.0 922.227 428.524 +imu_odom_: 1691062815.552267299 0.512359 -0.186748 10.2448 -0.0692422 -0.052198 0.0575243 0.18 0.02 pose: 0.0 5.95235 -1.16217 0 0.000446439 -0.00125121 -0.704977 0.709229 uwb: 0.0 922.227 428.524 +imu_odom_: 1691062815.579476128 0.816423 0.110133 10.1538 -0.0649811 -0.0372843 0.0436758 0.18 0.02 pose: 0.51168686 5.94535 -1.16931 0 0.00119775 -0.000192493-0.704918 0.709288 uwb: 0.0 922.227 428.524 +imu_odom_: 1691062815.604228104 0.483629 0.0407014 10.1562 -0.056459 -0.0213053 0.0479369 0.2 0.02 pose: 0.0 5.94535 -1.16931 0 0.00119775 -0.000192493-0.704918 0.709288 uwb: 0.99870312 929.216 427.687 +imu_odom_: 1691062815.621235919 0.505177 -0.328006 10.0149 -0.0468716 -0.0287621 0.036219 0.2 0.02 pose: 0.42886432 5.95249 -1.17631 0 -0.000515901-0.00318704 -0.70476 0.709438 uwb: 0.0 929.216 427.687 +imu_odom_: 1691062815.646351290 0.373495 -0.263362 10.4315 -0.0553937 -0.0415453 0.0447411 0.18 0 pose: 0.0 5.95249 -1.17631 0 -0.000515901-0.00318704 -0.70476 0.709438 uwb: 0.50035337 927.211 427.892 +imu_odom_: 1691062815.662347374 0.648829 -0.198719 9.39724 -0.0383495 0.036219 0.0330232 0.18 0 pose: 0.52042467 5.95264 -1.19045 0 7.51979e-05 -0.00675697 -0.70466 0.709513 uwb: 0.0 927.211 427.892 +imu_odom_: 1691062815.679342940 0.316035 -0.246603 10.1203 -0.0671117 0.0255663 0.0511327 0.18 0 pose: 0.0 5.95264 -1.19045 0 7.51979e-05 -0.00675697 -0.70466 0.709513 uwb: 0.0 927.211 427.892 +imu_odom_: 1691062815.705304677 0.512359 -0.294487 9.97424 -0.0479369 0.015979 0.0330232 0.18 0 pose: 0.68033593 5.95279 -1.20459 0 -0.0011939 -0.00306045 -0.704599 0.709598 uwb: 0.49831474 927.74 428.061 +imu_odom_: 1691062815.730191395 0.4956 -0.603339 9.54808 -0.0703074 0.00532632 0.0532632 0.2 0 pose: 0.7981272 5.95279 -1.20459 0 -0.0018683 -0.0027569 -0.704616 0.709581 uwb: 0.0 927.74 428.061 +imu_odom_: 1691062815.757205694 0.641646 0.047884 10.3549 -0.0319579 -0.02024 0.0532632 0.2 0 pose: 0.42867183 5.94778 -1.20971 0 -0.00529227 -0.000199313-0.70452 0.709664 uwb: 0.50109125 930.753 427.807 +imu_odom_: 1691062815.782211989 0.732626 -0.373495 10.4507 -0.0543285 -0.00532632 0.0436758 0.18 0.02 pose: 0.0 5.94778 -1.20971 0 -0.00529227 -0.000199313-0.70452 0.709664 uwb: 0.0 930.753 427.807 +imu_odom_: 1691062815.809243787 0.399832 -0.0502782 9.79228 -0.0468716 0.0170442 0.0436758 0.23 0.02 pose: 0.52020594 5.95294 -1.21873 0 -0.00674016 -0.00368456 -0.704346 0.709815 uwb: 0.50048753 932.261 427.721 +imu_odom_: 1691062815.825333198 0.215478 -0.0957681 10.1251 -0.0628506 -0.0511327 0.0490022 0.23 0.02 pose: 0.0 5.95294 -1.21873 0 -0.00674016 -0.00368456 -0.704346 0.709815 uwb: 0.0 932.261 427.721 +imu_odom_: 1691062815.852261169 0.59855 -0.138864 10.6159 -0.076699 -0.0468716 0.052198 0.25 0 pose: 0.35051567 5.94595 -1.22588 0 -0.00321072 -0.00379774 -0.704303 0.709882 uwb: 0.50001215 932.256 427.674 +imu_odom_: 1691062815.877286712 0.538695 -0.100556 10.0676 -0.0468716 -0.00213053 0.0276969 0.25 0 pose: 0.34997613 5.95311 -1.23287 0 -0.00387893 -0.00640545 -0.70415 0.710012 uwb: 0.0 932.256 427.674 +imu_odom_: 1691062815.904383548 0.471658 -0.0670376 9.98382 -0.0639159 -0.0394148 0.052198 0.23 0.02 pose: 0.8005479 5.95311 -1.23287 0 -0.00321765 -0.00691736 -0.704187 0.709974 uwb: 0.49997422 932.239 427.534 +imu_odom_: 1691062815.930234167 0.881066 -0.162806 9.49301 -0.0319579 0.0255663 0.0319579 0.23 0.02 pose: 0.44116900 5.95119 -1.24498 0 0.000476023 -0.00810347 -0.70416 0.709995 uwb: 0.0 932.239 427.534 +imu_odom_: 1691062815.957203552 0.440533 -0.0502782 9.81144 -0.0649811 -0.00213053 0.052198 0.23 0 pose: 0.0 5.95119 -1.24498 0 0.000476023 -0.00810347 -0.70416 0.709995 uwb: 0.50071211 933.226 427.3 +imu_odom_: 1691062815.982324465 0.646434 -0.189142 10.0868 -0.0660464 -0.0394148 0.0511327 0.19 0 pose: 0.32853700 5.95328 -1.24701 0 -0.00049521 -0.00928031 -0.704181 0.70996 uwb: 0.0 933.226 427.3 +imu_odom_: 1691062815.999387984 0.40462 -0.138864 10.0221 -0.0585895 0.0213053 0.0617853 0.19 0 pose: 0.0 5.95328 -1.24701 0 -0.00049521 -0.00928031 -0.704181 0.70996 uwb: 0.49862097 936.737 426.973 +imu_odom_: 1691062816.24253704 0.141258 -0.122104 9.9503 -0.0500674 0.0330232 0.0468716 0.19 0 pose: 0.52127920 5.95345 -1.26115 0 -0.00113963 -0.00834709 -0.70394 0.71021 uwb: 0.0 936.737 426.973 +imu_odom_: 1691062816.41223897 0.232238 -0.392649 9.54089 -0.0948085 0.00639159 0.0649811 0.19 0 pose: 0.0 5.95345 -1.26115 0 -0.00113963 -0.00834709 -0.70394 0.71021 uwb: 0.0 936.737 426.973 +imu_odom_: 1691062816.57180317 0.76375 0.0023942 10.4698 -0.0756338 -0.0223706 0.0426106 0.19 0 pose: 0.51858729 5.95042 -1.27216 0 0.00125708 -0.00336288 -0.703674 0.710514 uwb: 0.50189621 939.236 426.655 +imu_odom_: 1691062816.84322651 1.00078 -0.323217 9.84975 -0.0830906 0.00639159 0.0468716 0.25 0 pose: 0.8104348 5.95363 -1.27529 0 0.00086526 -0.00411855 -0.703663 0.710522 uwb: 0.0 939.236 426.655 +imu_odom_: 1691062816.100179327 0.023942 -0.363919 10.1562 -0.0447411 -0.00213053 0.0394148 0.25 0 pose: 0.0 5.95363 -1.27529 0 0.00086526 -0.00411855 -0.703663 0.710522 uwb: 0.49845183 939.758 426.812 +imu_odom_: 1691062816.127186627 0.505177 -0.181959 10.4172 -0.0479369 -0.0596548 0.0447411 0.25 0 pose: 0.34994406 5.95363 -1.27529 0 -0.00211168 -0.0057002 -0.703568 0.710602 uwb: 0.0 939.758 426.812 +imu_odom_: 1691062816.152319206 0.708684 -0.117316 9.80426 -0.0511327 0.0223706 0.036219 0.18 0 pose: 0.42863976 5.95165 -1.28732 0 -0.00441232 -0.00584517 -0.703507 0.71065 uwb: 0.49836434 938.301 427.392 +imu_odom_: 1691062816.179383961 0.893037 -0.272939 9.18416 -0.0468716 0.0245011 0.0383495 0.21 -0.02 pose: 0.0 5.95165 -1.28732 0 -0.00441232 -0.00584517 -0.703507 0.71065 uwb: 0.0 938.301 427.392 +imu_odom_: 1691062816.195226346 0.476446 -0.1652 10.1227 -0.0383495 0.015979 0.0351537 0.21 -0.02 pose: 0.32144409 5.95382 -1.28943 0 -0.0054931 -0.00830395 -0.703525 0.710601 uwb: 0.50015215 939.311 427.379 +imu_odom_: 1691062816.211224472 0.938527 -0.301669 9.70849 -0.056459 -0.0308927 0.0490022 0.18 0.02 pose: 0.0 5.95382 -1.28943 0 -0.0054931 -0.00830395 -0.703525 0.710601 uwb: 0.0 939.311 427.379 +imu_odom_: 1691062816.238351349 0.864307 -0.162806 10.5297 -0.0426106 -0.00213053 0.0255663 0.18 0.02 pose: 0.42870976 5.95402 -1.30357 0 -0.00622437 -0.00850234 -0.703523 0.710594 uwb: 0.0 939.311 427.379 +imu_odom_: 1691062816.265304402 0.497994 -0.356736 9.23922 -0.0532632 0.0149137 0.0543285 0.18 0 pose: 0.36149337 5.94899 -1.30874 0 -0.00865551 -0.0112178 -0.703592 0.710463 uwb: 0.49981092 939.875 427.934 +imu_odom_: 1691062816.281295820 0.225055 -0.272939 9.56962 -0.0458064 -0.0383495 0.0213053 0.18 0 pose: 0.0 5.94899 -1.30874 0 -0.00865551 -0.0112178 -0.703592 0.710463 uwb: 0.0 939.875 427.934 +imu_odom_: 1691062816.308184711 0.588974 -0.205901 10.1227 -0.0798948 -0.0543285 0.0575243 0.19 0 pose: 0.6965166 5.94704 -1.31074 0 -0.00863258 -0.0104794 -0.703557 0.710509 uwb: 0.50118750 940.346 427.624 +imu_odom_: 1691062816.324299204 0.682347 -0.011971 10.1011 -0.056459 -0.00532632 0.0276969 0.19 0 pose: 0.0 5.94704 -1.31074 0 -0.00863258 -0.0104794 -0.703557 0.710509 uwb: 0.0 940.346 427.624 +imu_odom_: 1691062816.351218718 0.588974 -0.198719 10.0892 -0.0596548 -0.0298274 0.0415453 0.2 0.02 pose: 0.43989742 5.95421 -1.31771 0 -0.00717969 -0.00718739 -0.703521 0.710602 uwb: 0.50108251 945.811 426.774 +imu_odom_: 1691062816.376177766 0.605733 -0.21069 10.0078 -0.0234358 -0.00106526 0.0170442 0.18 0 pose: 0.0 5.95421 -1.31771 0 -0.00717969 -0.00718739 -0.703521 0.710602 uwb: 0.0 945.811 426.774 +imu_odom_: 1691062816.403227647 0.73502 -0.181959 9.83538 -0.0500674 -0.0149137 0.0543285 0.18 0 pose: 0.42881767 5.94724 -1.32488 0 -0.00582315 -0.00773875 -0.703479 0.71065 uwb: 0.49895347 944.85 427.291 +imu_odom_: 1691062816.429140971 0.665588 -0.208296 10.082 -0.0383495 -0.0255663 0.0426106 0.18 0 pose: 0.0 5.94724 -1.32488 0 -0.00582315 -0.00773875 -0.703479 0.71065 uwb: 0.0 944.85 427.291 +imu_odom_: 1691062816.446221990 0.493206 -0.234632 9.12191 -0.0607201 0.0308927 0.0511327 0.18 0 pose: 0.51021405 5.95441 -1.33185 0 -0.0074154 -0.00946939 -0.703607 0.710487 uwb: 0.49975259 950.361 426.905 +imu_odom_: 1691062816.472221351 0.126893 -0.136469 9.4954 -0.0394148 0.0383495 0.0458064 0.18 0 pose: 0.0 5.95441 -1.33185 0 -0.0074154 -0.00946939 -0.703607 0.710487 uwb: 0.0 950.361 426.905 +imu_odom_: 1691062816.499294272 0.591368 -0.361524 9.44752 -0.0649811 -0.036219 0.0500674 0.18 0 pose: 0.53028826 5.9546 -1.34599 0 -0.00873753 -0.00822885 -0.703422 0.710671 uwb: 0.49997716 946.86 427.242 +imu_odom_: 1691062816.524296776 0.61531 -0.287304 10.0126 -0.052198 -0.0117179 0.0490022 0.2 0 pose: 0.42944179 5.94763 -1.35316 0 -0.00605194 -0.00530177 -0.703323 0.710825 uwb: 0.0 946.86 427.242 +imu_odom_: 1691062816.551295035 0.342371 -0.0933739 9.81383 -0.0330232 0.0276969 0.0234358 0.22 0 pose: 0.0 5.94763 -1.35316 0 -0.00605194 -0.00530177 -0.703323 0.710825 uwb: 0.49909929 943.819 427.131 +imu_odom_: 1691062816.577243940 0.189142 -0.0957681 9.76595 -0.0788296 0 0.0660464 0.22 0 pose: 0.52131422 5.9548 -1.36013 0 -0.00975632 -0.00508733 -0.703171 0.710936 uwb: 0.0 943.819 427.131 +imu_odom_: 1691062816.604143330 0.545878 -0.361524 9.32781 -0.0671117 0.0106526 0.036219 0.25 0 pose: 0.0 5.9548 -1.36013 0 -0.00975632 -0.00508733 -0.703171 0.710936 uwb: 0.49968551 941.316 427.359 +imu_odom_: 1691062816.629282034 0.35913 -0.328006 10.1442 -0.0681769 -0.015979 0.0543285 0.25 0 pose: 0.72829474 5.95501 -1.37427 0 -0.00747669 -0.00178455 -0.703094 0.711055 uwb: 0.0 941.316 427.359 +imu_odom_: 1691062816.646266226 0.363919 -0.263362 9.89284 -0.0351537 -0.0458064 0.0234358 0.23 0 pose: 0.8026186 5.95501 -1.37427 0 -0.00709323 -0.00111771 -0.703052 0.711102 uwb: 0.50098627 943.866 427.622 +imu_odom_: 1691062816.662229937 0.52433 -0.007182619.76595 -0.0873517 -0.036219 0.0479369 0.23 0 pose: 0.0 5.95501 -1.37427 0 -0.00709323 -0.00111771 -0.703052 0.711102 uwb: 0.0 943.866 427.622 +imu_odom_: 1691062816.689171908 0.553061 -0.280122 10.1706 -0.0490022 0.00958738 0.0394148 0.25 0.02 pose: 0.41991071 5.95523 -1.38841 0 -0.00462762 7.65963e-06 -0.703037 0.711138 uwb: 0.0 943.866 427.622 +imu_odom_: 1691062816.714307987 0.328006 -0.270545 9.71328 -0.0660464 -0.0223706 0.0447411 0.25 0.02 pose: 0.0 5.95523 -1.38841 0 -0.00462762 7.65963e-06 -0.703037 0.711138 uwb: 0.49867640 944.855 427.408 +imu_odom_: 1691062816.741187836 0.691924 -0.189142 9.63666 -0.04048 0.0149137 0.0330232 0.21 0.02 pose: 0.42980052 5.94826 -1.39559 0 -0.00587269 -0.00165483 -0.702999 0.711164 uwb: 0.0 944.855 427.408 +imu_odom_: 1691062816.766193256 0.634463 -0.385466 9.78989 -0.0617853 -0.02024 0.0468716 0.21 0.02 pose: 0.44047197 5.95338 -1.40056 0 -0.00557946 -0.00291129 -0.703034 0.711128 uwb: 0.50098043 942.854 427.605 +imu_odom_: 1691062816.793136977 0.390255 -0.107739 10.2759 -0.0532632 -0.00958738 0.0490022 0.22 0 pose: 0.0 5.95338 -1.40056 0 -0.00557946 -0.00291129 -0.703034 0.711128 uwb: 0.0 942.854 427.605 +imu_odom_: 1691062816.819282162 0.481235 -0.1652 9.8282 -0.0458064 -0.00532632 0.0394148 0.18 -0.02 pose: 0.32019292 5.94848 -1.40973 0 -0.00758143 -0.00286933 -0.702932 0.711211 uwb: 0.50101252 947.324 426.846 +imu_odom_: 1691062816.846163761 0.383072 -0.339977 10.0485 -0.0745685 -0.0213053 0.0681769 0.18 -0.02 pose: 0.0 5.94848 -1.40973 0 -0.00758143 -0.00286933 -0.702932 0.711211 uwb: 0.49960385 951.307 426.234 +imu_odom_: 1691062816.872137749 0.617704 -0.3304 10.3645 -0.04048 0 0.0308927 0.18 0 pose: 0.52972830 5.95566 -1.41669 0 -0.00321605 -0.00328142 -0.702824 0.711349 uwb: 0.0 951.307 426.234 +imu_odom_: 1691062816.889273598 0.280122 0 9.84735 -0.0479369 -0.00426106 0.0415453 0.18 0 pose: 0.45957791 5.95381 -1.42882 0 -0.0059511 -0.00208203 -0.702689 0.711469 uwb: 0.0 951.307 426.234 +imu_odom_: 1691062816.915171756 0.373495 -0.25618 9.64384 -0.0532632 0.00213053 0.036219 0.18 0 pose: 0.0 5.95381 -1.42882 0 -0.0059511 -0.00208203 -0.702689 0.711469 uwb: 0.50104751 955.338 426.166 +imu_odom_: 1691062816.942109061 0.430956 -0.292093 9.79947 -0.0798948 -0.0436758 0.0479369 0.18 0 pose: 0.25021169 5.95589 -1.43083 0 -0.00369101 -0.00159869 -0.702697 0.711478 uwb: 0.0 955.338 426.166 +imu_odom_: 1691062816.967117689 0.402226 -0.35913 9.82102 -0.0266316 0.00213053 0.0330232 0.2 0 pose: 0.0 5.95589 -1.43083 0 -0.00369101 -0.00159869 -0.702697 0.711478 uwb: 0.49888347 955.833 426.033 +imu_odom_: 1691062816.983249973 0.497994 -0.0047884 9.94791 -0.0596548 -0.0266316 0.0490022 0.2 0 pose: 0.52951830 5.95612 -1.44497 0 -0.00470929 0.00266628 -0.702643 0.711522 uwb: 0.0 955.833 426.033 +imu_odom_: 1691062817.9127716 0.859518 -0.158017 9.54568 -0.0372843 0.036219 0.0308927 0.18 0 pose: 0.0 5.95612 -1.44497 0 -0.00470929 0.00266628 -0.702643 0.711522 uwb: 0.49906721 956.338 426.042 +imu_odom_: 1691062817.36116935 0.332794 -0.198719 9.60314 -0.0575243 0.0191748 0.0543285 0.18 0 pose: 0.41138871 5.94917 -1.45215 0 -0.00430975 0.00206005 -0.702655 0.711515 uwb: 0.0 956.338 426.042 +imu_odom_: 1691062817.62175209 0.507571 -0.227449 10.058 -0.0692422 -0.0340885 0.0511327 0.2 -0.02 pose: 0.0 5.94917 -1.45215 0 -0.00430975 0.00206005 -0.702655 0.711515 uwb: 0.49918972 955.349 426.306 +imu_odom_: 1691062817.79222981 0.45011 -0.148441 9.89284 -0.0607201 0.00106526 0.0596548 0.2 -0.02 pose: 0.44867316 5.95429 -1.45711 0 -0.00186527 0.00132945 -0.70258 0.711601 uwb: 0.0 955.349 426.306 +imu_odom_: 1691062817.104121950 0.337582 -0.146046 9.92157 -0.052198 0.0138484 0.0468716 0.23 -0.02 pose: 0.0 5.95429 -1.45711 0 -0.00186527 0.00132945 -0.70258 0.711601 uwb: 0.50017258 958.336 425.775 +imu_odom_: 1691062817.131163957 0.521936 -0.354342 9.93833 -0.0703074 -0.0191748 0.0458064 0.23 -0.02 pose: 0.43106046 5.9494 -1.4663 0 -0.00203253 -0.00207557 -0.702357 0.711819 uwb: 0.0 958.336 425.775 +imu_odom_: 1691062817.156118631 0.40462 -0.201113 9.92157 -0.0607201 0.0319579 0.0330232 0.23 -0.02 pose: 0.51940976 5.95163 -1.47838 0 -0.00239088 -0.000726849-0.702234 0.711942 uwb: 0.50112335 959.839 425.645 +imu_odom_: 1691062817.183111349 0.701501 -0.174777 10.3501 -0.0330232 -0.04048 0.0287621 0.2 -0.05 pose: 0.0 5.95163 -1.47838 0 -0.00239088 -0.000726849-0.702234 0.711942 uwb: 0.0 959.839 425.645 +imu_odom_: 1691062817.199242176 0.802058 -0.184354 9.93354 -0.0639159 0.00532632 0.0479369 0.2 -0.05 pose: 0.32036208 5.94964 -1.48044 0 -0.000104377-0.000892647-0.702323 0.711858 uwb: 0.49947262 961.324 425.237 +imu_odom_: 1691062817.226142733 0.672771 -0.268151 9.94073 -0.0585895 0.0170442 0.04048 0.25 0 pose: 0.0 5.94964 -1.48044 0 -0.000104377-0.000892647-0.702323 0.711858 uwb: 0.0 961.324 425.237 +imu_odom_: 1691062817.251132988 0.320823 -0.275333 9.93354 -0.0713727 -0.00958738 0.0415453 0.25 0 pose: 0.43969911 5.95684 -1.48739 0 -0.00321308 -0.004192 -0.702337 0.711825 uwb: 0.49979635 962.301 424.748 +imu_odom_: 1691062817.277316963 0.560243 -0.397437 9.79947 -0.0276969 0.02024 0.0383495 0.23 0 pose: 0.43962912 5.95494 -1.49946 0 -0.00379941 -0.00250514 -0.70231 0.711857 uwb: 0.0 962.301 424.748 +imu_odom_: 1691062817.301345067 0.80924 -0.311246 9.95509 -0.0532632 -0.015979 0.0436758 0.23 0 pose: 0.7129365 5.95708 -1.50152 0 -0.0043326 -0.00225315 -0.70231 0.711855 uwb: 0.0 962.301 424.748 +imu_odom_: 1691062817.319225206 0.19393 -0.244209 9.6223 -0.0415453 0.0585895 0.0276969 0.19 -0.02 pose: 0.0 5.95708 -1.50152 0 -0.0043326 -0.00225315 -0.70231 0.711855 uwb: 0.0 962.301 424.748 +imu_odom_: 1691062817.344166464 0.368707 -0.371101 9.43794 -0.052198 0.00319579 0.052198 0.19 -0.02 pose: 0.50939744 5.95013 -1.50872 0 -0.00691115 -0.00254242 -0.702302 0.711841 uwb: 0.100186173 959.802 425.106 +imu_odom_: 1691062817.371095019 0.629675 0.0502782 10.4746 -0.04048 -0.0585895 0.0394148 0.19 0 pose: 0.34964367 5.95733 -1.51567 0 -0.00544952 0.000793736 -0.70223 0.711929 uwb: 0.0 959.802 425.106 +imu_odom_: 1691062817.396103065 0.538695 -0.296881 9.77553 -0.0607201 -0.0255663 0.0447411 0.18 0.02 pose: 0.7010080 5.95733 -1.51567 0 -0.00529047 -3.17158e-05-0.702232 0.711928 uwb: 0.50012883 955.791 425.424 +imu_odom_: 1691062817.413096590 0.0981623 -0.11971 9.67257 -0.04048 -0.00106526 0.0181095 0.18 0.02 pose: 0.0 5.95733 -1.51567 0 -0.00529047 -3.17158e-05-0.702232 0.711928 uwb: 0.0 955.791 425.424 +imu_odom_: 1691062817.429110465 0.565032 -0.308852 9.83059 -0.0660464 -0.0298274 0.0426106 0.18 0.02 pose: 0.51966350 5.95757 -1.5298 0 -0.00686959 -0.00196277 -0.702232 0.711912 uwb: 0.0 955.791 425.424 +imu_odom_: 1691062817.456092684 0.639252 -0.265756 10.2831 -0.0191748 0.0127832 0.0330232 0.25 0 pose: 0.0 5.95757 -1.5298 0 -0.00686959 -0.00196277 -0.702232 0.711912 uwb: 0.0 955.791 425.424 +imu_odom_: 1691062817.481356215 0.509965 -0.0909797 10.1394 -0.0543285 -0.00213053 0.0532632 0.19 0 pose: 0.33076813 5.95063 -1.537 0 -0.00784515 -0.00277991 -0.702302 0.71183 uwb: 0.0 955.791 425.424 +imu_odom_: 1691062817.508154111 0.711078 0 10.1754 -0.0383495 0.111853 0.052198 0.23 0 pose: 0.45136508 5.95555 -1.54175 0 -0.00600206 -0.00556474 -0.702247 0.711887 uwb: 0.99722159 956.267 425.058 +imu_odom_: 1691062817.533144075 0.102951 -0.0574608 10.2376 -0.0394148 0.123571 0.0415453 0.19 0 pose: 0.26797896 5.95294 -1.549 0 -0.0041673 -0.00723297 -0.702138 0.711992 uwb: 0.0 956.267 425.058 +imu_odom_: 1691062817.559088898 -0.304064 -0.100556 10.4076 -0.0585895 0.0351537 0.072438 0.19 0 pose: 0.0 5.95294 -1.549 0 -0.0041673 -0.00723297 -0.702138 0.711992 uwb: 0.50128667 953.726 424.88 +imu_odom_: 1691062817.584128733 0.670376 -0.260968 10.1754 -0.0628506 0.0266316 0.0394148 0.19 0 pose: 0.50934787 5.95612 -1.5562 0 0.00149846 -0.00281573 -0.701846 0.712321 uwb: 0.0 953.726 424.88 +imu_odom_: 1691062817.611415142 0.869095 -0.502782 9.68933 -0.0713727 0.00106526 0.0649811 0.19 0 pose: 0.0 5.95612 -1.5562 0 0.00149846 -0.00281573 -0.701846 0.712321 uwb: 0.49925097 955.734 424.745 +imu_odom_: 1691062817.636116373 0.483629 -0.167594 9.89045 -0.0308927 0.0426106 0.0319579 0.19 0 pose: 0.32000918 5.95113 -1.56528 0 -0.00133851 -0.00344553 -0.701776 0.712389 uwb: 0.0 955.734 424.745 +imu_odom_: 1691062817.653239390 0.323217 -0.232238 9.54089 -0.0830906 -0.00852212 0.0660464 0.19 0 pose: 0.0 5.95113 -1.56528 0 -0.00133851 -0.00344553 -0.701776 0.712389 uwb: 0.0 955.734 424.745 +imu_odom_: 1691062817.678226728 0.486023 -0.270545 9.48343 -0.0692422 0.00213053 0.0383495 0.21 0.02 pose: 0.52154464 5.95834 -1.57222 0 -0.000425961-0.00367633 -0.701595 0.712566 uwb: 0.0 955.734 424.745 +imu_odom_: 1691062817.705179199 0.328006 -0.21069 10.2256 -0.0649811 -0.0468716 0.052198 0.23 -0.02 pose: 0.0 5.95834 -1.57222 0 -0.000425961-0.00367633 -0.701595 0.712566 uwb: 0.100082054 959.724 424.076 +imu_odom_: 1691062817.730109083 0.320823 -0.294487 10.4698 -0.0436758 -0.0340885 0.04048 0.23 -0.02 pose: 0.42049692 5.95141 -1.57942 0 -0.0022267 -0.00136553 -0.701479 0.712686 uwb: 0.0 959.724 424.076 +imu_odom_: 1691062817.747076943 0.363919 -0.189142 9.26077 -0.0777643 -0.00426106 0.0500674 0.21 0 pose: 0.0 5.95141 -1.57942 0 -0.0022267 -0.00136553 -0.701479 0.712686 uwb: 0.49875808 964.259 424.012 +imu_odom_: 1691062817.772118236 0.320823 -0.146046 9.29669 -0.0372843 -0.02024 0.0372843 0.21 0 pose: 0.51791068 5.95168 -1.59356 0 -0.0001393930.00153297 -0.701354 0.712812 uwb: 0.0 964.259 424.012 +imu_odom_: 1691062817.799102788 0.521936 -0.265756 10.2208 -0.052198 -0.0543285 0.04048 0.23 0 pose: 0.35033196 5.9568 -1.59848 0 0.00322473 0.000631466 -0.701331 0.712829 uwb: 0.0 964.259 424.012 +imu_odom_: 1691062817.824066212 0.658405 -0.0550666 10.3669 -0.0575243 -0.0575243 0.0415453 0.23 0 pose: 0.6959042 5.9589 -1.60049 0 0.00244997 0.000279572 -0.70133 0.712832 uwb: 0.0 964.259 424.012 +imu_odom_: 1691062817.851111135 0.550666 -0.112527 9.89284 -0.0490022 0.00852212 0.0351537 0.21 0 pose: 0.44988934 5.95197 -1.6077 0 -0.000872202-0.00361324 -0.701303 0.712853 uwb: 0.100123176 963.726 423.551 +imu_odom_: 1691062817.868055955 0.237026 -0.416591 9.69173 -0.0585895 -0.0181095 0.0532632 0.21 0 pose: 0.0 5.95197 -1.6077 0 -0.000872202-0.00361324 -0.701303 0.712853 uwb: 0.0 963.726 423.551 +imu_odom_: 1691062817.883050516 0.385466 -0.189142 10.3717 -0.0383495 -0.0213053 0.0543285 0.27 0.02 pose: 0.0 5.95197 -1.6077 0 -0.000872202-0.00361324 -0.701303 0.712853 uwb: 0.0 963.726 423.551 +imu_odom_: 1691062817.909042295 0.651223 0.184354 10.2113 -0.0436758 -0.0181095 0.0543285 0.27 0.02 pose: 0.49997717 5.95225 -1.62184 0 -0.000857662-0.00416624 -0.70123 0.712922 uwb: 0.49874350 962.719 423.615 +imu_odom_: 1691062817.936101217 0.289698 -0.304064 10.2113 -0.0436758 -0.0117179 0.0436758 0.19 0.02 pose: 0.34978366 5.95225 -1.62184 0 0.000355435 -0.0062279 -0.701042 0.713092 uwb: 0.0 962.719 423.615 +imu_odom_: 1691062817.962164741 0.447716 -0.146046 9.91678 -0.0543285 0.02024 0.0447411 0.19 0.02 pose: 0.7016205 5.95225 -1.62184 0 0.000388536 -0.00557386 -0.701035 0.713105 uwb: 0.50027174 962.21 423.554 +imu_odom_: 1691062817.989201207 0.555455 0.105345 10.1562 -0.0383495 -0.0106526 0.0415453 0.25 0.02 pose: 0.46106241 5.95446 -1.63398 0 0.0026703 -0.00521781 -0.700961 0.713175 uwb: 0.0 962.21 423.554 +imu_odom_: 1691062818.14148007 0.574608 -0.407014 9.72764 -0.0809601 -0.0191748 0.0458064 0.2 0 pose: 0.0 5.95446 -1.63398 0 0.0026703 -0.00521781 -0.700961 0.713175 uwb: 0.49876099 962.21 423.554 +imu_odom_: 1691062818.41191181 0.447716 -0.0694318 10.2113 -0.0436758 0.0106526 0.0394148 0.2 0 pose: 0.34055005 5.95977 -1.6429 0 0.00281838 -0.00768776 -0.700911 0.713202 uwb: 0.0 962.21 423.554 +imu_odom_: 1691062818.58196664 0.306458 -0.770933 9.14585 -0.0788296 0.015979 0.0543285 0.19 -0.02 pose: 0.0 5.95977 -1.6429 0 0.00281838 -0.00768776 -0.700911 0.713202 uwb: 0.49946097 957.72 424.384 +imu_odom_: 1691062818.85156719 0.272939 -0.0383072 10.3693 -0.0117179 -0.00319579 0.0490022 0.19 -0.02 pose: 0.52989747 5.95285 -1.65012 0 0.00345038 -0.00579392 -0.700844 0.713283 uwb: 0.0 957.72 424.384 +imu_odom_: 1691062818.110219012 0.237026 -0.129287 9.68694 -0.0735032 -0.00213053 0.052198 0.2 0 pose: 0.35947226 5.95306 -1.66021 0 0.00582174 -0.00421794 -0.700713 0.713407 uwb: 0.50003259 958.225 424.394 +imu_odom_: 1691062818.137079614 0.0957681 -0.167594 9.61751 -0.0681769 0.0330232 0.0553937 0.2 0 pose: 0.7993230 5.95315 -1.66426 0 0.00611724 -0.00343795 -0.700682 0.713439 uwb: 0.0 958.225 424.394 +imu_odom_: 1691062818.162079202 0.0981623 -0.126893 9.91918 -0.0490022 0.0543285 0.036219 0.2 0 pose: 0.43929665 5.9583 -1.66918 0 0.00826747 0.00105964 -0.700465 0.713638 uwb: 0.50167750 960.234 424.228 +imu_odom_: 1691062818.189112752 0.150835 -0.294487 9.67736 -0.0756338 0.00106526 0.0511327 0.21 0 pose: 0.0 5.9583 -1.66918 0 0.00826747 0.00105964 -0.700465 0.713638 uwb: 0.0 960.234 424.228 +imu_odom_: 1691062818.206041531 0.323217 -0.0215478 10.4531 -0.0607201 -0.0607201 0.0394148 0.21 0 pose: 0.31991003 5.95347 -1.6784 0 0.0101146 0.00413539 -0.700462 0.713606 uwb: 0.50117295 964.226 423.755 +imu_odom_: 1691062818.231153988 0.754174 -0.0215478 10.331 -0.1012 -0.0820254 0.0692422 0.19 0 pose: 0.0 5.95347 -1.6784 0 0.0101146 0.00413539 -0.700462 0.713606 uwb: 0.0 964.226 423.755 +imu_odom_: 1691062818.256100788 1.12767 -0.215478 10.4483 -0.0447411 -0.0223706 0.0117179 0.19 0 pose: 0.43971371 5.95347 -1.6784 0 0.00815339 0.00344586 -0.700321 0.713774 uwb: 0.49888350 963.217 423.795 +imu_odom_: 1691062818.283109256 0.0047884 -0.1652 9.50498 -0.0628506 0.00426106 0.052198 0.25 0 pose: 0.43058800 5.95571 -1.69053 0 0.00446304 -0.000193516-0.700385 0.713751 uwb: 0.0 963.217 423.795 +imu_odom_: 1691062818.308031849 0.502782 -0.248997 9.41879 -0.0426106 0 0.0340885 0.25 0 pose: 0.6953792 5.95379 -1.69254 0 0.00493358 0.000360524 -0.700354 0.713779 uwb: 0.49930347 963.219 423.818 +imu_odom_: 1691062818.325181407 0.605733 -0.45011 9.88326 -0.0628506 -0.0245011 0.0468716 0.23 0 pose: 0.0 5.95379 -1.69254 0 0.00493358 0.000360524 -0.700354 0.713779 uwb: 0.0 963.219 423.818 +imu_odom_: 1691062818.350073377 0.368707 -0.371101 9.94073 -0.0287621 0.0191748 0.0394148 0.23 0 pose: 0.44977269 5.95889 -1.69741 0 0.00412314 0.000969502 -0.700319 0.713817 uwb: 0.49999760 965.224 423.529 +imu_odom_: 1691062818.367044737 0.234632 -0.107739 9.92397 -0.0617853 -0.00532632 0.0490022 0.21 -0.02 pose: 0.0 5.95889 -1.69741 0 0.00412314 0.000969502 -0.700319 0.713817 uwb: 0.0 965.224 423.529 +imu_odom_: 1691062818.393033016 0.153229 -0.122104 9.67736 -0.0330232 -0.0138484 0.0319579 0.21 -0.02 pose: 0.49042859 5.95411 -1.70668 0 0.00149754 0.00252145 -0.70026 0.713882 uwb: 0.0 965.224 423.529 +imu_odom_: 1691062818.420189934 0.656011 -0.131681 10.3453 -0.0575243 -0.0308927 0.04048 0.25 -0.02 pose: 0.35958308 5.95658 -1.71858 0 0.00505248 0.00305749 -0.700284 0.71384 uwb: 0.50009676 966.748 423.627 +imu_odom_: 1691062818.436070234 0.916979 -0.138864 9.44034 -0.0511327 0.0468716 0.0223706 0.25 -0.02 pose: 0.8052435 5.95444 -1.72082 0 0.00449399 0.00233734 -0.700283 0.713847 uwb: 0.0 966.748 423.627 +imu_odom_: 1691062818.463041371 0.308852 -0.390255 9.74679 -0.0703074 -0.00745685 0.0490022 0.23 -0.02 pose: 0.0 5.95444 -1.72082 0 0.00449399 0.00233734 -0.700283 0.713847 uwb: 0.49907016 966.786 424.284 +imu_odom_: 1691062818.488076832 0.244209 -0.354342 9.73004 -0.0447411 -0.0351537 0.0213053 0.23 -0.02 pose: 0.43032260 5.95444 -1.72082 0 0.00201576 0.000423035 -0.70035 0.713796 uwb: 0.0 966.786 424.284 +imu_odom_: 1691062818.515076843 0.462081 -0.337582 9.83538 -0.0340885 -0.00319579 0.0255663 0.23 0 pose: 0.43959121 5.95476 -1.73495 0 0.000703353 0.00430018 -0.700449 0.713689 uwb: 0.50066839 970.321 424.349 +imu_odom_: 1691062818.540156635 0.711078 -0.167594 10.4746 -0.036219 -0.0298274 0.0468716 0.18 0.02 pose: 0.0 5.95476 -1.73495 0 0.000703353 0.00430018 -0.700449 0.713689 uwb: 0.0 970.321 424.349 +imu_odom_: 1691062818.567025111 0.579397 0.0430956 10.2975 -0.0458064 0.0340885 0.0447411 0.18 0.02 pose: 0.35103484 5.96199 -1.74187 0 -0.00203839 0.0025219 -0.700576 0.71357 uwb: 0.50014343 973.854 424.39 +imu_odom_: 1691062818.592150109 0.526724 -0.268151 9.36372 -0.0628506 0.0234358 0.052198 0.18 0.02 pose: 0.0 5.96199 -1.74187 0 -0.00203839 0.0025219 -0.700576 0.71357 uwb: 0.0 973.854 424.39 +imu_odom_: 1691062818.619078082 -0.023942 -0.167594 9.7444 -0.04048 0.015979 0.0532632 0.18 0.02 pose: 0.51928437 5.95508 -1.74909 0 -0.00213801 -0.00162036 -0.700455 0.713691 uwb: 0.50025425 974.857 424.298 +imu_odom_: 1691062818.635016712 0.61531 -0.349553 10.3262 -0.0830906 -0.0127832 0.0649811 0.2 0 pose: 0.43969329 5.95719 -1.76135 0 -0.00120389 -9.77871e-05-0.700246 0.713901 uwb: 0.0 974.857 424.298 +imu_odom_: 1691062818.661012866 0.490811 0.158017 9.74919 -0.0394148 -0.00852212 0.0532632 0.2 0 pose: 0.0 5.95719 -1.76135 0 -0.00120389 -9.77871e-05-0.700246 0.713901 uwb: 0.50021634 976.88 424.472 +imu_odom_: 1691062818.686035786 0.328006 -0.129287 10.0054 -0.0596548 0.00958738 0.0553937 0.23 0.02 pose: 0.22951919 5.9554 -1.76323 0 -0.00248094 -0.000968381-0.700066 0.714073 uwb: 0.0 976.88 424.472 +imu_odom_: 1691062818.703079767 0.42138 -0.126893 9.61272 -0.0394148 -0.00958738 0.0223706 0.23 0.02 pose: 0.0 5.9554 -1.76323 0 -0.00248094 -0.000968381-0.700066 0.714073 uwb: 0.49952221 978.392 424.484 +imu_odom_: 1691062818.728263677 0.378284 -0.543484 9.23204 -0.0905475 -0.0298274 0.0649811 0.18 0.02 pose: 0.51008283 5.95573 -1.77737 0 0.00165823 -0.00228425 -0.699882 0.714253 uwb: 0.0 978.392 424.484 +imu_odom_: 1691062818.755014619 0.557849 0.00718261 9.77792 -0.052198 -0.0223706 0.036219 0.21 0 pose: 0.35225393 5.95573 -1.77737 0 4.25536e-05 -0.00121524 -0.699718 0.714419 uwb: 0.50119628 977.403 424.968 +imu_odom_: 1691062818.780120951 0.653617 -0.0670376 9.90721 -0.0756338 -0.00745685 0.0458064 0.21 0 pose: 0.0 5.95573 -1.77737 0 4.25536e-05 -0.00121524 -0.699718 0.714419 uwb: 0.0 977.403 424.968 +imu_odom_: 1691062818.806989428 0.464475 -0.234632 9.53132 -0.0905475 -0.0255663 0.0490022 0.23 0.02 pose: 0.6821967 5.95573 -1.77737 0 0.000143289 -0.00193544 -0.699725 0.71441 uwb: 0.49750108 975.888 424.794 +imu_odom_: 1691062818.832043555 0.361524 -0.0957681 9.80665 -0.0639159 -0.00426106 0.0436758 0.23 0.02 pose: 0.0 5.95573 -1.77737 0 0.000143289 -0.00193544 -0.699725 0.71441 uwb: 0.0 975.888 424.794 +imu_odom_: 1691062818.849044955 0.378284 -0.392649 10.0437 -0.0479369 -0.0127832 0.052198 0.23 0.02 pose: 0.52060262 5.95608 -1.79151 0 -0.00113705 -0.00557603 -0.699656 0.714457 uwb: 0.50101254 979.401 424.517 +imu_odom_: 1691062818.875048108 0.960075 -0.0430956 9.663 -0.0447411 0 0.0330232 0.23 0.02 pose: 0.0 5.95608 -1.79151 0 -0.00113705 -0.00557603 -0.699656 0.714457 uwb: 0.0 979.401 424.517 +imu_odom_: 1691062818.901132631 0.31364 -0.162806 10.0509 -0.0681769 0.0245011 0.0543285 0.23 -0.02 pose: 0.51847358 5.95643 -1.80565 0 -0.000342207-0.00277486 -0.699532 0.714595 uwb: 0.49890975 983.43 424.622 +imu_odom_: 1691062818.924004639 0.639252 -0.172383 10.1179 -0.0447411 0.0351537 0.0319579 0.23 -0.02 pose: 0.0 5.95643 -1.80565 0 -0.000342207-0.00277486 -0.699532 0.714595 uwb: 0.0 983.43 424.622 +imu_odom_: 1691062818.948052867 0.241814 -0.126893 10.0724 -0.0713727 -0.00319579 0.0511327 0.19 0 pose: 0.42999012 5.95643 -1.80565 0 -0.0013081 -0.00376081 -0.699508 0.714614 uwb: 0.50138001 989.951 424.166 +imu_odom_: 1691062818.965011978 0.28491 -0.186748 9.57202 -0.0458064 -0.015979 0.0308927 0.19 0 pose: 0.0 5.95643 -1.80565 0 -0.0013081 -0.00376081 -0.699508 0.714614 uwb: 0.0 989.951 424.166 +imu_odom_: 1691062818.990999966 0.567426 -0.160412 9.86411 -0.076699 -0.0138484 0.0639159 0.18 0 pose: 0.49081940 5.95679 -1.81979 0 -0.000318646-0.00327349 -0.699443 0.714681 uwb: 0.0 989.951 424.166 +imu_odom_: 1691062819.8006907 0.514753 -0.0981623 10.3238 -0.0372843 -0.00852212 0.0383495 0.18 0 pose: 0.0 5.95679 -1.81979 0 -0.000318646-0.00327349 -0.699443 0.714681 uwb: 0.50019301 988.444 424.335 +imu_odom_: 1691062819.33105657 0.433351 -0.0622492 9.78271 -0.0511327 0.0213053 0.0415453 0.2 0.02 pose: 0.76932691 5.95715 -1.83393 0 0.000212007 -0.00472677 -0.699205 0.714906 uwb: 0.0 988.444 424.335 +imu_odom_: 1691062819.59987842 0.378284 -0.100556 9.83059 -0.0351537 -0.00852212 0.0351537 0.21 -0.02 pose: 0.8036103 5.95715 -1.83393 0 0.00103212 -0.0049886 -0.6992 0.714908 uwb: 0.50075298 988.439 424.077 +imu_odom_: 1691062819.85018345 0.526724 -0.318429 9.64624 -0.0798948 -0.0458064 0.0458064 0.2 0 pose: 0.43944832 5.95742 -1.84415 0 0.00481418 -0.00385917 -0.699242 0.714858 uwb: 0.0 988.439 424.077 +imu_odom_: 1691062819.112055688 0.790087 -0.105345 10.1562 -0.0383495 -0.0223706 0.036219 0.21 0 pose: 0.0 5.95742 -1.84415 0 0.00481418 -0.00385917 -0.699242 0.714858 uwb: 0.49739027 988.434 423.865 +imu_odom_: 1691062819.137046527 0.749385 -0.0407014 10.058 -0.0490022 -0.052198 0.0415453 0.21 0 pose: 0.32042334 5.95752 -1.84806 0 0.00134728 -0.00409169 -0.699197 0.714916 uwb: 0.0 988.434 423.865 +imu_odom_: 1691062819.154139797 -0.00957681-0.332794 9.74919 -0.0191748 0.0553937 0.0394148 0.22 0 pose: 0.0 5.95752 -1.84806 0 0.00134728 -0.00409169 -0.699197 0.714916 uwb: 0.50089006 985.414 423.91 +imu_odom_: 1691062819.179098555 0.227449 -0.122104 9.85453 -0.0607201 -0.00532632 0.0543285 0.22 0 pose: 0.52050931 5.95788 -1.8622 0 -0.000838162-0.00793804 -0.69918 0.714901 uwb: 0.0 985.414 423.91 +imu_odom_: 1691062819.206059194 0.469264 -0.19393 10.082 -0.0479369 -0.0255663 0.0575243 0.22 -0.02 pose: 0.35017448 5.95788 -1.8622 0 0.00158058 -0.00509891 -0.69907 0.715033 uwb: 0.49892434 982.908 424.026 +imu_odom_: 1691062819.231242813 0.600945 -0.162806 10.0987 -0.0468716 0.0276969 0.036219 0.22 -0.02 pose: 0.6893421 5.95788 -1.8622 0 0.000964363 -0.00480029 -0.699026 0.71508 uwb: 0.0 982.908 424.026 +imu_odom_: 1691062819.257979465 0.150835 0.0023942 9.51216 -0.0916127 0.0170442 0.0692422 0.23 0 pose: 0.45250837 5.95826 -1.87634 0 -0.00210631 -0.00563418 -0.698914 0.71518 uwb: 0.50146461 983.413 424.129 +imu_odom_: 1691062819.274021631 0.390255 -0.0981623 10.2376 -0.0681769 -0.0330232 0.0468716 0.23 0 pose: 0.0 5.95826 -1.87634 0 -0.00210631 -0.00563418 -0.698914 0.71518 uwb: 0.0 983.413 424.129 +imu_odom_: 1691062819.301107387 0.42138 -0.0909797 10.4363 -0.0596548 -0.0415453 0.036219 0.25 0 pose: 0.42778818 5.96185 -1.88709 0 0.00161415 -0.00404525 -0.698611 0.715489 uwb: 0.50163960 982.908 424.073 +imu_odom_: 1691062819.326971133 1.01754 -0.181959 9.92636 -0.0447411 -0.0255663 0.0351537 0.19 0 pose: 0.0 5.96185 -1.88709 0 0.00161415 -0.00404525 -0.698611 0.715489 uwb: 0.0 982.908 424.073 +imu_odom_: 1691062819.354033265 0.584185 -0.0885855 9.27753 -0.0585895 -0.00958738 0.04048 0.25 0.02 pose: 0.52949502 5.95864 -1.89048 0 0.00159255 -0.00716135 -0.698669 0.715408 uwb: 0.49886601 981.899 424.034 +imu_odom_: 1691062819.378961400 0.452504 -0.241814 9.94312 -0.0447411 0.02024 0.0340885 0.2 0 pose: 0.0 5.95864 -1.89048 0 0.00159255 -0.00716135 -0.698669 0.715408 uwb: 0.0 981.899 424.034 +imu_odom_: 1691062819.395954926 0.399832 -0.517148 9.7037 -0.0532632 -0.0276969 0.0415453 0.2 0 pose: 0.34020591 5.95903 -1.90461 0 -0.000244836-0.00863815 -0.698654 0.715407 uwb: 0.50119046 982.397 423.83 +imu_odom_: 1691062819.421052217 0.414197 -0.294487 9.84256 -0.0191748 -0.015979 0.0394148 0.18 0 pose: 0.0 5.95903 -1.90461 0 -0.000244836-0.00863815 -0.698654 0.715407 uwb: 0.0 982.397 423.83 +imu_odom_: 1691062819.448250550 0.122104 -0.0861913 9.59117 -0.0479369 0.0351537 0.0319579 0.18 0 pose: 0.34963202 5.95903 -1.90461 0 -0.00154262 -0.00551957 -0.698683 0.715409 uwb: 0.49830021 984.397 423.303 +imu_odom_: 1691062819.473004279 0.31364 -0.059855 9.47386 -0.0500674 0.0138484 0.0436758 0.19 0 pose: 0.8008688 5.95903 -1.90461 0 -0.00164747 -0.00487212 -0.698683 0.715413 uwb: 0.0 984.397 423.303 +imu_odom_: 1691062819.490000138 0.560243 -0.268151 10.3118 -0.0617853 -0.0351537 0.0394148 0.19 0 pose: 0.0 5.95903 -1.90461 0 -0.00164747 -0.00487212 -0.698683 0.715413 uwb: 0.0 984.397 423.303 +imu_odom_: 1691062819.515988126 0.785298 0 10.2376 -0.0628506 -0.0383495 0.0543285 0.18 -0.02 pose: 0.52124134 5.95942 -1.91875 0 0.00180929 -0.00188019 -0.698754 0.715357 uwb: 0.49873186 982.878 423.064 +imu_odom_: 1691062819.543077090 0.586579 0.0167594 10.1897 -0.0585895 -0.015979 0.0298274 0.18 -0.02 pose: 0.0 5.95942 -1.91875 0 0.00180929 -0.00188019 -0.698754 0.715357 uwb: 0.0 982.878 423.064 +imu_odom_: 1691062819.567973435 0.215478 -0.155623 9.9096 -0.0543285 -0.00532632 0.0351537 0.18 0.02 pose: 0.41942368 5.95981 -1.93289 0 0.00132525 -0.00314897 -0.698685 0.715421 uwb: 0.50016677 979.338 422.827 +imu_odom_: 1691062819.595050442 0.751779 -0.160412 10.0006 -0.0223706 0.00639159 0.02024 0.22 0 pose: 0.52968459 5.95981 -1.93289 0 0.00110345 -0.00709599 -0.698685 0.715394 uwb: 0.50068590 980.34 422.628 +imu_odom_: 1691062819.610960199 0.519542 -0.174777 10.2113 -0.0479369 -0.015979 0.0490022 0.22 0 pose: 0.0 5.95981 -1.93289 0 0.00110345 -0.00709599 -0.698685 0.715394 uwb: 0.0 980.34 422.628 +imu_odom_: 1691062819.638064329 0.682347 -0.0430956 9.98143 -0.0479369 0.0426106 0.0458064 0.23 0 pose: 0.23986691 5.96019 -1.94702 0 0.00157242 -0.00614824 -0.698766 0.715322 uwb: 0.0 980.34 422.628 +imu_odom_: 1691062819.664059900 0.215478 -0.181959 9.51935 -0.0500674 0.0308927 0.052198 0.23 0 pose: 0.43028470 5.96019 -1.94702 0 -0.00113687 -0.00725761 -0.698814 0.715266 uwb: 0.49879019 981.339 422.266 +imu_odom_: 1691062819.690953459 0.143652 -0.0670376 9.6606 -0.0490022 0.0127832 0.0511327 0.25 0 pose: 0.46046164 5.96057 -1.96116 0 0.000489374 -0.00643757 -0.698659 0.715426 uwb: 0.0 981.339 422.266 +imu_odom_: 1691062819.716079332 0.457293 -0.514753 9.44991 -0.0639159 -0.0127832 0.056459 0.25 0 pose: 0.0 5.96057 -1.96116 0 0.000489374 -0.00643757 -0.698659 0.715426 uwb: 0.50136253 983.865 422.284 +imu_odom_: 1691062819.743064469 0.244209 -0.0933739 10.1107 -0.0532632 0.00106526 0.0511327 0.2 0 pose: 0.52019432 5.96085 -1.97119 0 0.000802036 -0.00310975 -0.698414 0.715687 uwb: 0.0 983.865 422.284 +imu_odom_: 1691062819.759008058 0.397437 -0.047884 10.1466 -0.0756338 -0.0149137 0.0575243 0.2 0 pose: 0.0 5.96085 -1.97119 0 0.000802036 -0.00310975 -0.698414 0.715687 uwb: 0.49840229 990.897 421.825 +imu_odom_: 1691062819.785986778 0.35913 -0.181959 10.2735 -0.0639159 -0.0298274 0.0543285 0.25 0.02 pose: 0.42928726 5.96097 -1.9753 0 0.00407975 -0.00308222 -0.698198 0.715886 uwb: 0.0 990.897 421.825 +imu_odom_: 1691062819.811195772 0.339977 -0.129287 9.96467 -0.0575243 -0.0298274 0.052198 0.19 0 pose: 0.0 5.96097 -1.9753 0 0.00407975 -0.00308222 -0.698198 0.715886 uwb: 0.50272162 991.399 421.535 +imu_odom_: 1691062819.838064541 0.572214 -0.0071826110.6398 -0.0692422 -0.015979 0.0458064 0.19 0 pose: 0.26978720 5.96125 -1.98518 0 0.0027461 -0.000747497-0.698069 0.716025 uwb: 0.0 991.399 421.535 +imu_odom_: 1691062819.864053112 1.01514 -0.0167594 9.91199 -0.04048 -0.0138484 0.0245011 0.18 0 pose: 0.52077763 5.96138 -1.98943 0 0.00399459 -0.00349429 -0.69788 0.716195 uwb: 0.49757109 990.892 421.52 +imu_odom_: 1691062819.881049846 0.555455 -0.476446 9.56962 -0.0884169 -0.0106526 0.0490022 0.18 0 pose: 0.0 5.96138 -1.98943 0 0.00399459 -0.00349429 -0.69788 0.716195 uwb: 0.0 990.892 421.52 +imu_odom_: 1691062819.897944795 0.342371 -0.390255 10.058 -0.0585895 -0.0106526 0.0468716 0.18 0.02 pose: 0.0 5.96138 -1.98943 0 0.00399459 -0.00349429 -0.69788 0.716195 uwb: 0.50101255 988.862 421.179 +imu_odom_: 1691062819.913058058 0.0383072 0.0311246 9.72764 -0.0351537 0.00426106 0.0383495 0.18 0.02 pose: 0.50996618 5.9618 -2.00357 0 0.000486423 -0.00412839 -0.697932 0.716152 uwb: 0.0 988.862 421.179 +imu_odom_: 1691062819.938106352 0.112527 -0.0383072 10.0963 -0.0585895 0.00958738 0.0511327 0.18 0.02 pose: 0.0 5.9618 -2.00357 0 0.000486423 -0.00412839 -0.697932 0.716152 uwb: 0.0 988.862 421.179 +imu_odom_: 1691062819.965087114 0.390255 -0.0670376 10.4076 -0.052198 -0.0553937 0.0426106 0.17 0.02 pose: 0.31048977 5.9618 -2.00357 0 0.00238182 -0.00250761 -0.697892 0.716194 uwb: 0.50077632 986.841 421.151 +imu_odom_: 1691062819.991097268 0.54109 -0.102951 9.91678 -0.0383495 -0.0458064 0.04048 0.18 -0.02 pose: 0.44976978 5.96221 -2.01771 0 0.00484776 -0.00454362 -0.697778 0.716283 uwb: 0.0 986.841 421.151 +imu_odom_: 1691062820.17985869 0.143652 -0.306458 9.98382 -0.0617853 0.00426106 0.0511327 0.18 -0.02 pose: 0.0 5.96221 -2.01771 0 0.00484776 -0.00454362 -0.697778 0.716283 uwb: 0.50057508 989.875 421.02 +imu_odom_: 1691062820.34018703 0.31364 -0.169988 10.0293 -0.0511327 -0.00532632 0.04048 0.18 0 pose: 0.8019188 5.96221 -2.01771 0 0.00414938 -0.00520768 -0.697772 0.716289 uwb: 0.0 989.875 421.02 +imu_odom_: 1691062820.60989550 0.361524 -0.272939 9.98382 -0.0809601 0.00426106 0.0671117 0.18 0 pose: 0.0 5.96221 -2.01771 0 0.00414938 -0.00520768 -0.697772 0.716289 uwb: 0.49725903 995.432 420.55 +imu_odom_: 1691062820.85933726 0.237026 -0.311246 10.1778 -0.0436758 0.0351537 0.0308927 0.18 0 pose: 0.52997916 5.96264 -2.03184 0 0.00329447 -0.00314292 -0.697663 0.716411 uwb: 0.0 995.432 420.55 +imu_odom_: 1691062820.113082771 0.620098 -0.536301 9.94791 -0.0798948 -0.0308927 0.0596548 0.23 0.02 pose: 0.42874480 5.96264 -2.03184 0 0.00200574 0.0010122 -0.697431 0.716649 uwb: 0.0 995.432 420.55 +imu_odom_: 1691062820.139006597 0.272939 -0.0454898 9.663 -0.0500674 0.02024 0.0479369 0.19 -0.02 pose: 0.0 5.96264 -2.03184 0 0.00200574 0.0010122 -0.697431 0.716649 uwb: 0.0 995.432 420.55 +imu_odom_: 1691062820.165989985 0.296881 -0.260968 9.60314 -0.0788296 0.0181095 0.0319579 0.23 0 pose: 0.52133468 5.96308 -2.04598 0 3.59615e-05 0.00271512 -0.697269 0.716805 uwb: 0.100074187 993.912 420.634 +imu_odom_: 1691062820.181927741 0.0622492 -0.517148 9.58878 -0.0383495 0.0234358 0.0276969 0.23 0 pose: 0.0 5.96308 -2.04598 0 3.59615e-05 0.00271512 -0.697269 0.716805 uwb: 0.0 993.912 420.634 +imu_odom_: 1691062820.198923309 0.744597 -0.0407014 9.94791 -0.0671117 -0.0394148 0.0490022 0.23 0 pose: 0.0 5.96308 -2.04598 0 3.59615e-05 0.00271512 -0.697269 0.716805 uwb: 0.49952807 1001.49 420.182 +imu_odom_: 1691062820.224009810 1.01754 -0.0646434 9.71088 -0.0298274 0.0127832 0.0255663 0.25 0.02 pose: 0.68823096 5.96352 -2.06011 0 0.0018772 0.00619727 -0.697321 0.71673 uwb: 0.0 1001.49 420.182 +imu_odom_: 1691062820.251120356 0.35913 -0.148441 9.77074 -0.0639159 0.0181095 0.0532632 0.23 0 pose: 0.34074548 5.96352 -2.06011 0 0.000646053 0.00298436 -0.697431 0.716646 uwb: 0.50087841 1003.01 420.117 +imu_odom_: 1691062820.267066279 0.754174 -0.160412 9.75398 -0.0543285 0.0138484 0.0330232 0.23 0 pose: 0.0 5.96352 -2.06011 0 0.000646053 0.00298436 -0.697431 0.716646 uwb: 0.0 1003.01 420.117 +imu_odom_: 1691062820.284048139 0.356736 -0.146046 9.80665 -0.0639159 0.0255663 0.0532632 0.23 0 pose: 0.0 5.96352 -2.06011 0 0.000646053 0.00298436 -0.697431 0.716646 uwb: 0.0 1003.01 420.117 +imu_odom_: 1691062820.301046332 0.45011 -0.31364 10.0533 -0.0756338 -0.00852212 0.0532632 0.18 0 pose: 0.6956126 5.96352 -2.06011 0 0.00114696 0.00254583 -0.697396 0.716681 uwb: 0.0 1003.01 420.117 +imu_odom_: 1691062820.318162934 0.361524 -0.215478 10.1514 -0.0426106 0.0308927 0.0415453 0.18 0 pose: 0.0 5.96352 -2.06011 0 0.00114696 0.00254583 -0.697396 0.716681 uwb: 0.0 1003.01 420.117 +imu_odom_: 1691062820.334162520 0.126893 0.00718261 9.56962 -0.0937433 0.0117179 0.0639159 0.18 0 pose: 0.0 5.96352 -2.06011 0 0.00114696 0.00254583 -0.697396 0.716681 uwb: 0.0 1003.01 420.117 +imu_odom_: 1691062820.350974349 0.823605 -0.1652 10.3501 -0.0735032 -0.0415453 0.0394148 0.25 0 pose: 0.61087975 5.96396 -2.07425 0 0.00257168 2.43008e-05 -0.697207 0.716866 uwb: 0.0 1003.01 420.117 +imu_odom_: 1691062820.366928145 0.730232 -0.191536 9.67976 -0.0585895 -0.0394148 0.0330232 0.18 0 pose: 0.0 5.96396 -2.07425 0 0.00257168 2.43008e-05 -0.697207 0.716866 uwb: 0.0 1003.01 420.117 +imu_odom_: 1691062820.383975335 0.162806 -0.407014 9.84256 -0.0553937 0.0223706 0.0436758 0.18 0 pose: 0.66932917 5.96441 -2.08838 0 0.00105319 0.000329679 -0.69703 0.717041 uwb: 0.0 1003.01 420.117 +imu_odom_: 1691062820.400982277 0.866701 -0.19393 10.2304 -0.0436758 -0.0191748 0.0319579 0.18 0 pose: 0.0 5.96441 -2.08838 0 0.00105319 0.000329679 -0.69703 0.717041 uwb: 0.150009787 1007.57 419.83 +imu_odom_: 1691062820.415971882 0.849942 -0.241814 9.78271 -0.0543285 -0.0351537 0.0458064 0.18 0 pose: 0.0 5.96441 -2.08838 0 0.00105319 0.000329679 -0.69703 0.717041 uwb: 0.0 1007.57 419.83 +imu_odom_: 1691062820.432970074 0.751779 -0.114922 9.39485 -0.0639159 0.00745685 0.0415453 0.18 0 pose: 0.32995154 5.96486 -2.10252 0 0.000161074 0.000829446 -0.697046 0.717025 uwb: 0.0 1007.57 419.83 +imu_odom_: 1691062820.446965155 0.268151 -0.167594 10.0892 -0.0532632 0.0191748 0.0330232 0.2 0 pose: 0.40988092 5.96486 -2.10252 0 -0.00238986 -0.0025565 -0.697024 0.71704 uwb: 0.50014345 1010.62 419.526 +imu_odom_: 1691062820.463020737 0.538695 -0.328006 9.6199 -0.0596548 0.00426106 0.04048 0.2 0 pose: 0.6003308 5.96486 -2.10252 0 -0.00183393 -0.00218134 -0.69704 0.717027 uwb: 0.0 1010.62 419.526 +imu_odom_: 1691062820.477954928 0.184354 -0.184354 9.83538 -0.0490022 0.0745685 0.0319579 0.2 0 pose: 0.0 5.96486 -2.10252 0 -0.00183393 -0.00218134 -0.69704 0.717027 uwb: 0.0 1010.62 419.526 +imu_odom_: 1691062820.494901207 0.433351 -0.474052 9.44752 -0.0415453 0.0276969 0.0223706 0.18 0 pose: 0.38981546 5.96192 -2.11346 0 -0.00101743 -0.000198484-0.697095 0.716978 uwb: 0.49721529 1015.19 419.345 +imu_odom_: 1691062820.508898038 1.00078 -0.395043 9.44991 -0.0617853 -0.0500674 0.0468716 0.18 0 pose: 0.0 5.96192 -2.11346 0 -0.00101743 -0.000198484-0.697095 0.716978 uwb: 0.0 1015.19 419.345 +imu_odom_: 1691062820.524959745 0.368707 -0.0766145 9.66779 -0.0426106 0.00106526 0.0426106 0.18 0 pose: 0.0 5.96192 -2.11346 0 -0.00101743 -0.000198484-0.697095 0.716978 uwb: 0.0 1015.19 419.345 +imu_odom_: 1691062820.539955182 0.383072 -0.131681 9.80426 -0.0245011 0.0127832 0.0372843 0.18 0 pose: 0.37948524 5.96532 -2.11665 0 -0.00276643 -0.000194517-0.697154 0.716916 uwb: 0.0 1015.19 419.345 +imu_odom_: 1691062820.556954250 0.960075 -0.174777 10.0461 -0.0617853 -0.00639159 0.0798948 0.15 0 pose: 0.0 5.96532 -2.11665 0 -0.00276643 -0.000194517-0.697154 0.716916 uwb: 0.50286454 1017.23 419.214 +imu_odom_: 1691062820.570954580 1.28569 -0.387861 9.81144 -0.0681769 -0.0479369 0.102265 0.15 0 pose: 0.0 5.96532 -2.11665 0 -0.00276643 -0.000194517-0.697154 0.716916 uwb: 0.0 1017.23 419.214 +imu_odom_: 1691062820.587890943 2.09971 -0.138864 10.3166 -0.0479369 -0.0798948 0.0575243 0.15 0 pose: 0.31027397 5.96577 -2.13079 0 -0.000652485-0.00155988 -0.697059 0.717012 uwb: 0.0 1017.23 419.214 +imu_odom_: 1691062820.601922188 1.93691 0 9.90481 -0.0436758 -0.0319579 0.0127832 0.13 -0.02 pose: 0.0 5.96577 -2.13079 0 -0.000652485-0.00155988 -0.697059 0.717012 uwb: 0.49902643 1017.23 419.167 +imu_odom_: 1691062820.618956545 1.74777 0.117316 10.3932 -0.0543285 0.0223706 0.0255663 0.13 -0.02 pose: 0.0 5.96577 -2.13079 0 -0.000652485-0.00155988 -0.697059 0.717012 uwb: 0.0 1017.23 419.167 +imu_odom_: 1691062820.633033871 1.35991 -0.316035 10.3669 -0.0713727 -0.0117179 0.0330232 0.13 -0.02 pose: 0.31054519 5.96577 -2.13079 0 -0.00342901 -0.00395854 -0.696544 0.717495 uwb: 0.0 1017.23 419.167 +imu_odom_: 1691062820.649913654 0.94571 -0.632069 9.88805 -0.0490022 0.00958738 0 0.13 -0.02 pose: 0.40971177 5.96577 -2.13079 0 -0.0058807 -0.00766658 -0.696679 0.717317 uwb: 0.50102715 1021.3 419.044 +imu_odom_: 1691062820.663895318 0.533907 -0.220267 9.73004 -0.0500674 -0.00106526 -0.0170442 0.13 -0.02 pose: 0.0 5.96577 -2.13079 0 -0.0058807 -0.00766658 -0.696679 0.717317 uwb: 0.0 1021.3 419.044 +imu_odom_: 1691062820.680038687 0.579397 0.129287 9.97903 -0.0479369 -0.00213053 -0.0170442 0.09 0 pose: 0.6085845 5.96577 -2.13079 0 -0.00642049 -0.00801156 -0.696689 0.7173 uwb: 0.0 1021.3 419.044 +imu_odom_: 1691062820.696935969 0.775721 -0.35913 10.1035 -0.0649811 -0.00958738 0.00958738 0.09 0 pose: 0.0 5.96577 -2.13079 0 -0.00642049 -0.00801156 -0.696689 0.7173 uwb: 0.49933850 1025.86 419.276 +imu_odom_: 1691062820.713030924 0.905008 -0.435745 9.76355 -0.0543285 -0.0266316 0.02024 0.09 0 pose: 0.0 5.96577 -2.13079 0 -0.00642049 -0.00801156 -0.696689 0.7173 uwb: 0.0 1025.86 419.276 +imu_odom_: 1691062820.731027141 0.766145 -0.328006 9.87608 -0.036219 0.00958738 0.0213053 0.11 -0.02 pose: 0.46177699 5.96623 -2.14492 0 -0.00702799 -0.0077406 -0.69737 0.716635 uwb: 0.0 1025.86 419.276 +imu_odom_: 1691062820.748103204 0.684742 -0.0766145 9.77313 -0.0479369 -0.00319579 0.0490022 0.07 -0.02 pose: 0.0 5.96623 -2.14492 0 -0.00702799 -0.0077406 -0.69737 0.716635 uwb: 0.49917809 1030.41 419.59 +imu_odom_: 1691062820.762022455 0.737414 -0.1652 10.0126 -0.0458064 0.00852212 0.0383495 0.07 -0.02 pose: 0.0 5.96623 -2.14492 0 -0.00702799 -0.0077406 -0.69737 0.716635 uwb: 0.0 1030.41 419.59 +imu_odom_: 1691062820.778023208 0.845153 -0.251391 9.98143 -0.0553937 -0.0234358 0.0330232 0.07 -0.02 pose: 0.66872546 5.96623 -2.14492 0 -0.0108775 -0.00934663 -0.697887 0.716065 uwb: 0.0 1030.41 419.59 +imu_odom_: 1691062820.793063559 0.699107 -0.229843 9.69652 -0.0468716 -0.00319579 0.0106526 0.06 -0.02 pose: 0.0 5.96623 -2.14492 0 -0.0108775 -0.00934663 -0.697887 0.716065 uwb: 0.0 1030.41 419.59 +imu_odom_: 1691062820.808975942 0.624887 -0.131681 9.85453 -0.0468716 -0.02024 0.0213053 0.06 -0.02 pose: 0.30940776 5.96623 -2.14492 0 -0.0106674 -0.0118119 -0.697875 0.716042 uwb: 0.50006762 1032.95 419.705 +imu_odom_: 1691062820.825893931 0.790087 -0.1652 9.97185 -0.0649811 0.00213053 0.0255663 0.06 0 pose: 0.15940965 5.96623 -2.14492 0 -0.0114395 -0.0115827 -0.697955 0.715956 uwb: 0.0 1032.95 419.705 +imu_odom_: 1691062820.843965101 0.670376 -0.292093 9.9096 -0.0447411 0.00106526 0.0298274 0.06 0 pose: 0.0 5.96623 -2.14492 0 -0.0114395 -0.0115827 -0.697955 0.715956 uwb: 0.49997721 1038.04 419.429 +imu_odom_: 1691062820.861022790 0.536301 -0.246603 9.97903 -0.0532632 0.0127832 0.0735032 0.06 0 pose: 0.0 5.96623 -2.14492 0 -0.0114395 -0.0115827 -0.697955 0.715956 uwb: 0.0 1038.04 419.429 +imu_odom_: 1691062820.877019459 0.447716 -0.392649 9.88805 -0.0500674 0.00106526 0.108657 0.05 0.02 pose: 0.31001439 5.95944 -2.15226 0 -0.0100653 -0.0116199 -0.698197 0.715741 uwb: 0.0 1038.04 419.429 +imu_odom_: 1691062820.895022675 0.565032 -0.181959 9.92157 -0.0458064 -0.02024 0.0980043 0.04 0.05 pose: 0.0 5.95944 -2.15226 0 -0.0100653 -0.0116199 -0.698197 0.715741 uwb: 0.49995680 1034.5 419.09 +imu_odom_: 1691062820.911874752 0.732626 -0.0861913 9.8665 -0.052198 -0.0127832 0.112918 0.04 0.05 pose: 0.69059624 5.96678 -2.15906 0 -0.00882994 -0.00768495 -0.697548 0.716443 uwb: 0.0 1034.5 419.09 +imu_odom_: 1691062820.926051821 0.744597 -0.220267 9.85693 -0.0575243 0.00213053 0.116114 0.04 0.05 pose: 0.0 5.96678 -2.15906 0 -0.00882994 -0.00768495 -0.697548 0.716443 uwb: 0.0 1034.5 419.09 +imu_odom_: 1691062820.950951084 0.553061 -0.265756 9.90242 -0.0543285 0.00106526 0.123571 0.03 0.02 pose: 0.0 5.96678 -2.15906 0 -0.00882994 -0.00768495 -0.697548 0.716443 uwb: 0.50072674 1033.47 419.312 +imu_odom_: 1691062820.967936735 -0.122104 -0.344765 9.72764 -0.0596548 0.0681769 0.0958738 0.03 0.02 pose: 0.32962197 5.96678 -2.15906 0 -0.00826052 -0.00970097 -0.696731 0.717219 uwb: 0.0 1033.47 419.312 +imu_odom_: 1691062820.984987717 -0.97444 0.0814029 9.98861 -0.0479369 0.0543285 -0.0298274 0.04 0.05 pose: 0.39948946 5.96678 -2.15906 0 -0.00767818 -0.00688667 -0.695624 0.718332 uwb: 0.0 1033.47 419.312 +imu_odom_: 1691062821.1900748 -1.16358 0.167594 9.48104 -0.0596548 -0.0319579 -0.136354 0.04 0.05 pose: 0.0 5.96678 -2.15906 0 -0.00767818 -0.00688667 -0.695624 0.718332 uwb: 0.49939392 1036.52 419.402 +imu_odom_: 1691062821.17939706 -0.215478 0.136469 10.2568 -0.0447411 -0.0671117 -0.251402 0.08 -0.29 pose: 0.43954166 5.9667 -2.15905 0 -0.00383049 -0.00374619 -0.696942 0.717107 uwb: 0.0 1036.52 419.402 +imu_odom_: 1691062821.35938548 0.426168 0.023942 10.0963 -0.0735032 -0.0681769 -0.285491 0.08 -0.29 pose: 0.0 5.9667 -2.15905 0 -0.00383049 -0.00374619 -0.696942 0.717107 uwb: 0.0 1036.52 419.402 +imu_odom_: 1691062821.53088982 0.318429 -0.148441 9.74201 -0.0532632 -0.0436758 -0.289752 0.08 -0.29 pose: 0.0 5.9667 -2.15905 0 -0.00383049 -0.00374619 -0.696942 0.717107 uwb: 0.49992764 1041.08 419.683 +imu_odom_: 1691062821.67059564 -0.191536 -0.263362 9.98861 -0.0394148 0.0223706 -0.318514 0.1 -0.41 pose: 0.8064976 5.96678 -2.15906 0 -0.00321347 -0.00368825 -0.697786 0.716289 uwb: 0.0 1041.08 419.683 +imu_odom_: 1691062821.83080149 -0.435745 0.143652 9.85453 -0.0575243 0.00532632 -0.36432 0.1 -0.38 pose: 0.0 5.96678 -2.15906 0 -0.00321347 -0.00368825 -0.697786 0.716289 uwb: 0.0 1041.08 419.683 +imu_odom_: 1691062821.98147333 -0.129287 0.179565 10.2113 -0.0617853 -0.0191748 -0.394148 0.1 -0.38 pose: 0.0 5.96678 -2.15906 0 -0.00321347 -0.00368825 -0.697786 0.716289 uwb: 0.50049052 1044.63 419.875 +imu_odom_: 1691062821.113974846 0.442927 -0.100556 10.082 -0.0777643 -0.0479369 -0.412257 0.1 -0.38 pose: 0.64185000 5.9673 -2.17321 0 0.00132562 -0.00246776 -0.705532 0.708673 uwb: 0.0 1044.63 419.875 +imu_odom_: 1691062821.131190609 0.565032 -0.318429 9.92397 -0.0777643 -0.0117179 -0.447411 0.1 -0.47 pose: 0.0 5.9673 -2.17321 0 0.00132562 -0.00246776 -0.705532 0.708673 uwb: 0.0 1044.63 419.875 +imu_odom_: 1691062821.148878261 -0.301669 -0.172383 9.56244 -0.0596548 0.0117179 -0.465521 0.1 -0.47 pose: 0.31053062 5.9673 -2.17321 0 0.00319349 -0.00248094 -0.710239 0.703949 uwb: 0.50135672 1042.11 419.545 +imu_odom_: 1691062821.165994864 0.567426 0.304064 10.3837 -0.0607201 -0.0287621 -0.488956 0.12 -0.55 pose: 0.43674475 5.96721 -2.1732 0 0.00223939 -0.00171284 -0.71769 0.696357 uwb: 0.0 1042.11 419.545 +imu_odom_: 1691062821.182995682 0.146046 -0.131681 9.2895 -0.0575243 0.00639159 -0.515588 0.12 -0.55 pose: 0.0 5.96721 -2.1732 0 0.00223939 -0.00171284 -0.71769 0.696357 uwb: 0.0 1042.11 419.545 +imu_odom_: 1691062821.200914612 0.342371 0.0622492 10.2041 -0.0703074 -0.0170442 -0.528371 0.12 -0.55 pose: 0.0 5.96721 -2.1732 0 0.00223939 -0.00171284 -0.71769 0.696357 uwb: 0.49930060 1045.65 420.001 +imu_odom_: 1691062821.217916013 0.445322 -0.126893 9.69173 -0.0756338 -0.00213053 -0.567786 0.13 -0.58 pose: 0.8130598 5.9673 -2.17321 0 0.00248208 -0.00250711 -0.719183 0.694812 uwb: 0.0 1045.65 420.001 +imu_odom_: 1691062821.233918224 0.703895 0.047884 10.4244 -0.0660464 -0.0820254 -0.569916 0.13 -0.61 pose: 0.0 5.9673 -2.17321 0 0.00248208 -0.00250711 -0.719183 0.694812 uwb: 0.0 1045.65 420.001 +imu_odom_: 1691062821.251917066 1.60412 -0.217872 9.62708 -0.0894822 -0.0213053 -0.52411 0.13 -0.61 pose: 0.66912212 5.96786 -2.18733 0 0.00328862 -0.00438915 -0.732363 0.680893 uwb: 0.49797068 1047.18 419.888 +imu_odom_: 1691062821.268916717 1.03908 -0.471658 9.77074 -0.0607201 0.00319579 -0.462325 0.11 -0.5 pose: 0.0 5.96786 -2.18733 0 0.00328862 -0.00438915 -0.732363 0.680893 uwb: 0.0 1047.18 419.888 +imu_odom_: 1691062821.285966240 1.04866 -0.263362 9.67018 -0.0575243 0.00532632 -0.42291 0.11 -0.5 pose: 0.0 5.96786 -2.18733 0 0.00328862 -0.00438915 -0.732363 0.680893 uwb: 0.0 1047.18 419.888 +imu_odom_: 1691062821.302904645 0.969652 -0.325611 10.0724 -0.0447411 0.00639159 -0.381365 0.11 -0.5 pose: 0.34939288 5.96786 -2.18733 0 0.000241745 -0.00658227 -0.739025 0.673645 uwb: 0.50187586 1047.16 420.145 +imu_odom_: 1691062821.318844735 0.603339 -0.035913 10.1059 -0.0585895 -0.0127832 -0.34408 0.11 -0.53 pose: 0.34058799 5.96109 -2.19469 0 -0.00274919 -0.00767634 -0.744321 0.667772 uwb: 0.0 1047.16 420.145 +imu_odom_: 1691062821.335838262 0.758962 -0.244209 9.77553 -0.0532632 -0.0149137 -0.313188 0.11 -0.53 pose: 0.0 5.96109 -2.19469 0 -0.00274919 -0.00767634 -0.744321 0.667772 uwb: 0.0 1047.16 420.145 +imu_odom_: 1691062821.353860435 0.691924 -0.201113 9.86411 -0.0532632 -0.00958738 -0.285491 0.06 -0.32 pose: 0.0 5.96109 -2.19469 0 -0.00274919 -0.00767634 -0.744321 0.667772 uwb: 0.50068301 1043.13 419.69 +imu_odom_: 1691062821.370860962 0.684742 -0.380678 9.63666 -0.0617853 -0.00852212 -0.252468 0.06 -0.32 pose: 0.42919104 5.96101 -2.19468 0 -0.00478221 -0.00982566 -0.749716 0.66167 uwb: 0.0 1043.13 419.69 +imu_odom_: 1691062821.387927984 0.751779 -0.287304 10.1562 -0.0596548 -0.00958738 -0.216249 0.06 -0.32 pose: 0.0 5.96101 -2.19468 0 -0.00478221 -0.00982566 -0.749716 0.66167 uwb: 0.0 1043.13 419.69 +imu_odom_: 1691062821.403963735 0.830788 -0.23942 9.77313 -0.0490022 -0.0117179 -0.209857 0.05 -0.26 pose: 0.8064102 5.96109 -2.19469 0 -0.00558373 -0.00992022 -0.750573 0.660689 uwb: 0.49922185 1042.6 419.957 +imu_odom_: 1691062821.421958202 0.816423 -0.251391 9.56244 -0.0490022 -0.0149137 -0.201335 0.05 -0.26 pose: 0.0 5.96109 -2.19469 0 -0.00558373 -0.00992022 -0.750573 0.660689 uwb: 0.0 1042.6 419.957 +imu_odom_: 1691062821.438897190 0.622492 -0.174777 10.0197 -0.056459 0.00745685 -0.18216 0.05 -0.26 pose: 0.0 5.96109 -2.19469 0 -0.00558373 -0.00992022 -0.750573 0.660689 uwb: 0.0 1042.6 419.957 +imu_odom_: 1691062821.452854356 0.679953 -0.356736 10.0963 -0.0649811 -0.0181095 -0.165116 0.04 -0.23 pose: 0.51025202 5.96848 -2.20142 0 -0.0103743 -0.00941755 -0.755227 0.655314 uwb: 0.49860064 1041.04 420.363 +imu_odom_: 1691062821.467836087 0.438139 -0.129287 9.77313 -0.0511327 -0.0181095 -0.165116 0.03 -0.14 pose: 0.0 5.96848 -2.20142 0 -0.0103743 -0.00941755 -0.755227 0.655314 uwb: 0.0 1041.04 420.363 +imu_odom_: 1691062821.486064165 0.696713 -0.244209 9.87129 -0.0607201 -0.0340885 -0.133158 0.03 -0.14 pose: 0.65047407 5.9617 -2.20877 0 -0.0113092 -0.00883644 -0.759994 0.649772 uwb: 0.0 1041.04 420.363 +imu_odom_: 1691062821.502832538 0.701501 -0.268151 9.81862 -0.0596548 -0.00532632 -0.102265 0.03 -0.11 pose: 0.0 5.9617 -2.20877 0 -0.0113092 -0.00883644 -0.759994 0.649772 uwb: 0.49890103 1044.06 420.726 +imu_odom_: 1691062821.516857367 0.677559 -0.445322 9.98143 -0.0511327 0.00426106 -0.092678 0.03 -0.11 pose: 0.0 5.9617 -2.20877 0 -0.0113092 -0.00883644 -0.759994 0.649772 uwb: 0.0 1044.06 420.726 +imu_odom_: 1691062821.531950507 0.617704 -0.203507 9.77074 -0.0543285 -0.00639159 -0.0852212 0.03 -0.11 pose: 0.32858079 5.9617 -2.20877 0 -0.0131079 -0.00827528 -0.761821 0.647602 uwb: 0.0 1044.06 420.726 +imu_odom_: 1691062821.549897727 0.694318 -0.148441 9.89524 -0.0532632 -0.0117179 -0.0649811 0.04 -0.17 pose: 0.39117455 5.96161 -2.20876 0 -0.0129666 -0.00666071 -0.763484 0.645662 uwb: 0.49923352 1045.06 420.944 +imu_odom_: 1691062821.566889212 0.646434 -0.220267 9.84256 -0.0617853 -0.00532632 -0.0479369 0.04 -0.17 pose: 0.7956484 5.9617 -2.20877 0 -0.0125317 -0.00734875 -0.76376 0.645337 uwb: 0.0 1045.06 420.944 +imu_odom_: 1691062821.580876419 0.579397 -0.282516 9.87608 -0.0553937 0 -0.0500674 0.04 -0.17 pose: 0.0 5.9617 -2.20877 0 -0.0125317 -0.00734875 -0.76376 0.645337 uwb: 0.0 1045.06 420.944 +imu_odom_: 1691062821.595896647 0.586579 -0.253785 9.93354 -0.0575243 -0.0149137 -0.0436758 0.01 -0.08 pose: 0.40969428 5.9617 -2.20877 0 -0.00997447 -0.00654065 -0.765016 0.643901 uwb: 0.50060135 1048.61 421.161 +imu_odom_: 1691062821.613843283 0.711078 -0.208296 9.89763 -0.056459 -0.00852212 -0.0213053 0.02 -0.05 pose: 0.0 5.9617 -2.20877 0 -0.00997447 -0.00654065 -0.765016 0.643901 uwb: 0.0 1048.61 421.161 +imu_odom_: 1691062821.630892515 0.727837 -0.335188 9.90481 -0.056459 -0.00426106 -0.00426106 0.02 -0.05 pose: 0.0 5.9617 -2.20877 0 -0.00997447 -0.00654065 -0.765016 0.643901 uwb: 0.0 1048.61 421.161 +imu_odom_: 1691062821.644821100 0.641646 -0.282516 9.8689 -0.0543285 -0.00319579 0.00426106 0.02 -0.05 pose: 0.23058373 5.9617 -2.20877 0 -0.00953724 -0.00610315 -0.76558 0.643241 uwb: 0.49923935 1044.04 421.007 +imu_odom_: 1691062821.659887408 0.629675 -0.198719 9.91678 -0.0543285 -0.00319579 0.0138484 0.01 -0.02 pose: 0.0 5.9617 -2.20877 0 -0.00953724 -0.00610315 -0.76558 0.643241 uwb: 0.0 1044.04 421.007 +imu_odom_: 1691062821.677832003 0.593762 -0.198719 9.87369 -0.0575243 -0.00745685 0.0234358 0.01 -0.02 pose: 0.0 5.9617 -2.20877 0 -0.00953724 -0.00610315 -0.76558 0.643241 uwb: 0.0 1044.04 421.007 +imu_odom_: 1691062821.691877539 0.687136 -0.220267 9.96946 -0.056459 -0.00958738 0.0266316 0 0 pose: 0.73897211 5.9617 -2.20877 0 -0.00869126 -0.00661218 -0.766398 0.642273 uwb: 0.0 1044.04 421.007 +imu_odom_: 1691062821.706837979 0.610521 -0.282516 9.8665 -0.0575243 -0.00106526 0.0415453 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00869126 -0.00661218 -0.766398 0.642273 uwb: 0.50240666 1045.07 420.968 +imu_odom_: 1691062821.721814460 0.481235 -0.31364 9.87608 -0.0532632 0.00958738 0.052198 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00869126 -0.00661218 -0.766398 0.642273 uwb: 0.0 1045.07 420.968 +imu_odom_: 1691062821.735891202 0.332794 -0.21069 9.92157 -0.0500674 0.00532632 0.0490022 0 0 pose: 0.6057263 5.9617 -2.20877 0 -0.00914403 -0.00703918 -0.766418 0.642238 uwb: 0.0 1045.07 420.968 +imu_odom_: 1691062821.750864766 0.31364 -0.124498 9.90481 -0.0543285 -0.00426106 0.0490022 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00914403 -0.00703918 -0.766418 0.642238 uwb: 0.49905562 1045.59 420.844 +imu_odom_: 1691062821.764834474 0.402226 -0.213084 9.87369 -0.0575243 -0.0106526 0.0426106 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00914403 -0.00703918 -0.766418 0.642238 uwb: 0.0 1045.59 420.844 +imu_odom_: 1691062821.778850845 0.514753 -0.208296 9.88326 -0.056459 -0.0138484 0.0330232 0 0 pose: 0.43930252 5.9617 -2.20877 0 -0.00869845 -0.00440172 -0.766362 0.642335 uwb: 0.0 1045.59 420.844 +imu_odom_: 1691062821.792830177 0.550666 -0.229843 9.88087 -0.0553937 -0.00745685 0.0340885 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00869845 -0.00440172 -0.766362 0.642335 uwb: 0.0 1045.59 420.844 +imu_odom_: 1691062821.807916317 0.509965 -0.282516 9.91439 -0.0543285 -0.00106526 0.0415453 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00869845 -0.00440172 -0.766362 0.642335 uwb: 0.49924518 1047.11 420.966 +imu_odom_: 1691062821.821909357 0.440533 -0.229843 9.88805 -0.0532632 0.00106526 0.0426106 0 0 pose: 0.43084176 5.9617 -2.20877 0 -0.00486054 -0.00339696 -0.766318 0.642434 uwb: 0.0 1047.11 420.966 +imu_odom_: 1691062821.835907646 0.407014 -0.167594 9.88087 -0.052198 -0.00106526 0.0415453 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00486054 -0.00339696 -0.766318 0.642434 uwb: 0.0 1047.11 420.966 +imu_odom_: 1691062821.850911833 0.40462 -0.174777 9.91678 -0.0532632 -0.00532632 0.04048 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00486054 -0.00339696 -0.766318 0.642434 uwb: 0.50088133 1037.48 420.734 +imu_odom_: 1691062821.864901372 0.517148 -0.232238 9.85453 -0.0543285 -0.00639159 0.036219 0 0 pose: 0.43150965 5.9617 -2.20877 0 -0.00541038 -0.00239486 -0.766338 0.642411 uwb: 0.0 1037.48 420.734 +imu_odom_: 1691062821.878966157 0.438139 -0.237026 9.90242 -0.0543285 -0.00426106 0.0372843 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00541038 -0.00239486 -0.766338 0.642411 uwb: 0.0 1037.48 420.734 +imu_odom_: 1691062821.893961303 0.457293 -0.232238 9.91439 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00541038 -0.00239486 -0.766338 0.642411 uwb: 0.49902062 1040.52 420.985 +imu_odom_: 1691062821.908966657 0.464475 -0.205901 9.92157 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.42773862 5.9617 -2.20877 0 -0.00231932 -0.00210313 -0.766336 0.642433 uwb: 0.0 1040.52 420.985 +imu_odom_: 1691062821.922913616 0.457293 -0.222661 9.88566 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00231932 -0.00210313 -0.766336 0.642433 uwb: 0.0 1040.52 420.985 +imu_odom_: 1691062821.937958342 0.474052 -0.215478 9.89524 -0.0543285 -0.00639159 0.0383495 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00231932 -0.00210313 -0.766336 0.642433 uwb: 0.0 1040.52 420.985 +imu_odom_: 1691062821.952859286 0.502782 -0.246603 9.84017 -0.052198 0 0.0394148 0 0 pose: 0.43144840 5.9617 -2.20877 0 -0.00349385 -0.00130802 -0.766347 0.642416 uwb: 0.49970598 1046.58 421.583 +imu_odom_: 1691062821.966848825 0.464475 -0.251391 9.90721 -0.0543285 -0.00213053 0.0394148 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00349385 -0.00130802 -0.766347 0.642416 uwb: 0.0 1046.58 421.583 +imu_odom_: 1691062821.981880136 0.466869 -0.189142 9.89045 -0.0553937 -0.00532632 0.0415453 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00349385 -0.00130802 -0.766347 0.642416 uwb: 0.0 1046.58 421.583 +imu_odom_: 1691062821.996828910 0.42138 -0.201113 9.91199 -0.0553937 -0.00745685 0.04048 0 0 pose: 0.43863172 5.9617 -2.20877 0 -0.00324542 -0.00209058 -0.76636 0.6424 uwb: 0.49970599 1043.03 421.472 +imu_odom_: 1691062822.10887278 0.466869 -0.225055 9.8689 -0.056459 -0.00532632 0.0383495 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00324542 -0.00209058 -0.76636 0.6424 uwb: 0.0 1043.03 421.472 +imu_odom_: 1691062822.25799013 0.488417 -0.229843 9.91439 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00324542 -0.00209058 -0.76636 0.6424 uwb: 0.0 1043.03 421.472 +imu_odom_: 1691062822.40901487 0.466869 -0.246603 9.91678 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.44060327 5.9617 -2.20877 0 -0.00212072 -0.00171294 -0.766352 0.642415 uwb: 0.0 1043.03 421.472 +imu_odom_: 1691062822.54954314 0.490811 -0.215478 9.90481 -0.0543285 0 0.0415453 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00212072 -0.00171294 -0.766352 0.642415 uwb: 0.50070928 1044.55 421.517 +imu_odom_: 1691062822.69821427 0.442927 -0.208296 9.89524 -0.0543285 -0.00106526 0.04048 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00212072 -0.00171294 -0.766352 0.642415 uwb: 0.0 1044.55 421.517 +imu_odom_: 1691062822.84945774 0.440533 -0.21069 9.87369 -0.0543285 -0.00745685 0.04048 0 0 pose: 0.43903128 5.9617 -2.20877 0 -0.00385381 -0.00173425 -0.76635 0.642409 uwb: 0.0 1044.55 421.517 +imu_odom_: 1691062822.98950771 0.428562 -0.21069 9.88566 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00385381 -0.00173425 -0.76635 0.642409 uwb: 0.49916645 1040.48 421.477 +imu_odom_: 1691062822.113939793 0.457293 -0.205901 9.84496 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00385381 -0.00173425 -0.76635 0.642409 uwb: 0.0 1040.48 421.477 +imu_odom_: 1691062822.128079532 0.466869 -0.222661 9.87608 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.44046037 5.9617 -2.20877 0 -0.00151179 -0.00148912 -0.766344 0.642428 uwb: 0.0 1040.48 421.477 +imu_odom_: 1691062822.141938413 0.474052 -0.222661 9.87129 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00151179 -0.00148912 -0.766344 0.642428 uwb: 0.0 1040.48 421.477 +imu_odom_: 1691062822.156808442 0.428562 -0.189142 9.88566 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00151179 -0.00148912 -0.766344 0.642428 uwb: 0.50197211 1041.99 421.679 +imu_odom_: 1691062822.170928057 0.45011 -0.205901 9.90721 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.44251067 5.9617 -2.20877 0 -0.00247485 -0.00185142 -0.766336 0.642432 uwb: 0.0 1041.99 421.679 +imu_odom_: 1691062822.184854309 0.42138 -0.213084 9.88326 -0.0543285 -0.00639159 0.0372843 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00247485 -0.00185142 -0.766336 0.642432 uwb: 0.0 1041.99 421.679 +imu_odom_: 1691062822.206963365 0.490811 -0.258574 9.87369 -0.056459 -0.00213053 0.0383495 0 0 pose: 0.0 5.9617 -2.20877 0 -0.00247485 -0.00185142 -0.766336 0.642432 uwb: 0.49872898 1039.98 421.278 +imu_odom_: 1691062822.223956017 0.148441 -0.25618 9.80665 -0.0607201 0.0255663 0.0138484 0 0.02 pose: 0.42719033 5.9617 -2.20877 0 -0.0016029 -0.0018343 -0.766343 0.642428 uwb: 0.0 1039.98 421.278 +imu_odom_: 1691062822.240942544 -0.0814029 -0.158017 10.2783 -0.04048 0.0287621 -0.0830906 0.03 0.05 pose: 0.0 5.9617 -2.20877 0 -0.0016029 -0.0018343 -0.766343 0.642428 uwb: 0.0 1039.98 421.278 +imu_odom_: 1691062822.257890866 -1.16598 0.237026 9.70131 -0.0511327 0.0543285 -0.036219 0.03 0.05 pose: 0.69215951 5.9617 -2.20877 0 -0.0007962380.000865058 -0.766819 0.641863 uwb: 0.50043221 1041.51 421.338 +imu_odom_: 1691062822.275998785 -0.964863 -0.907402 9.93594 -0.076699 -0.0511327 0.102265 0.04 0.02 pose: 0.0 5.9617 -2.20877 0 -0.0007962380.000865058 -0.766819 0.641863 uwb: 0.0 1041.51 421.338 +imu_odom_: 1691062822.292879152 0.0837971 -0.612916 9.80426 -0.0490022 -0.0788296 0.0894822 0.04 0.02 pose: 0.0 5.9617 -2.20877 0 -0.0007962380.000865058 -0.766819 0.641863 uwb: 0.0 1041.51 421.338 +imu_odom_: 1691062822.309938300 0.454898 0.141258 9.66779 -0.036219 -0.0127832 0.0990696 0.04 0.02 pose: 0.33919392 5.9617 -2.20877 0 0.00219947 0.00300313 -0.767413 0.641142 uwb: 0.50115841 1037.96 421.165 +imu_odom_: 1691062822.326955743 0.263362 0.0622492 9.90721 -0.0553937 0.0234358 0.108657 0.06 0.08 pose: 0.34012719 5.9617 -2.20877 0 0.00195266 0.00435977 -0.766804 0.641864 uwb: 0.0 1037.96 421.165 +imu_odom_: 1691062822.343995059 -0.0790087 -0.167594 10.1754 -0.0458064 0.015979 0.0692422 0.06 0.08 pose: 0.0 5.9617 -2.20877 0 0.00195266 0.00435977 -0.766804 0.641864 uwb: 0.49918978 1044.04 421.313 +imu_odom_: 1691062822.358854880 0.0622492 -0.471658 10.0221 -0.0553937 -0.0106526 0.0713727 0.06 0.08 pose: 0.0 5.9617 -2.20877 0 0.00195266 0.00435977 -0.766804 0.641864 uwb: 0.0 1044.04 421.313 +imu_odom_: 1691062822.377018796 0.184354 -0.476446 9.94073 -0.0649811 -0.0138484 0.0777643 0.08 0.05 pose: 0.50931002 5.96222 -2.2229 0 0.00540676 0.00412609 -0.765991 0.642816 uwb: 0.0 1044.04 421.313 +imu_odom_: 1691062822.392847184 0.378284 -0.174777 9.9096 -0.0628506 -0.0276969 0.0681769 0.08 0.05 pose: 0.0 5.96222 -2.2229 0 0.00540676 0.00412609 -0.765991 0.642816 uwb: 0.0 1044.04 421.313 +imu_odom_: 1691062822.410861192 0.462081 -0.0550666 9.84735 -0.0639159 0.00319579 0.0798948 0.13 0.02 pose: 0.41951995 5.96222 -2.2229 0 0.00387522 0.00499355 -0.765551 0.643345 uwb: 0.50102717 1042.04 420.952 +imu_odom_: 1691062822.427023519 0.0981623 -0.208296 9.87129 -0.0383495 0.0127832 0.0511327 0.13 0.02 pose: 0.0 5.96222 -2.2229 0 0.00387522 0.00499355 -0.765551 0.643345 uwb: 0.0 1042.04 420.952 +imu_odom_: 1691062822.444927283 0.071826 -0.205901 9.9934 -0.0394148 -0.0223706 0.0447411 0.13 0.02 pose: 0.0 5.96222 -2.2229 0 0.00387522 0.00499355 -0.765551 0.643345 uwb: 0.49911687 1045.6 421.033 +imu_odom_: 1691062822.461986431 0.308852 -0.342371 9.75398 -0.0735032 0.00426106 0.0852212 0.11 0.02 pose: 0.8185136 5.96222 -2.2229 0 0.00382005 0.00422248 -0.765445 0.643476 uwb: 0.0 1045.6 421.033 +imu_odom_: 1691062822.474928659 0.435745 -0.337582 10.1251 -0.0490022 -0.00532632 0.0628506 0.11 0 pose: 0.0 5.96222 -2.2229 0 0.00382005 0.00422248 -0.765445 0.643476 uwb: 0.0 1045.6 421.033 +imu_odom_: 1691062822.490806628 0.737414 -0.146046 10.1299 -0.0607201 -0.0436758 0.0266316 0.11 0 pose: 0.66855051 5.95538 -2.2302 0 0.0044289 0.00584658 -0.764932 0.644069 uwb: 0.0 1045.6 421.033 +imu_odom_: 1691062822.508924463 1.13964 0.122104 9.6199 -0.0681769 -0.0553937 0.0617853 0.11 0 pose: 0.0 5.95538 -2.2302 0 0.0044289 0.00584658 -0.764932 0.644069 uwb: 0.50019598 1040.04 420.575 +imu_odom_: 1691062822.525920323 1.29047 -0.253785 9.98143 -0.0713727 -0.0106526 0.108657 0.14 0 pose: 0.0 5.95538 -2.2302 0 0.0044289 0.00584658 -0.764932 0.644069 uwb: 0.0 1040.04 420.575 +imu_odom_: 1691062822.539917737 1.21386 -0.691924 9.94312 -0.0596548 -0.0340885 0.105461 0.14 0 pose: 0.30947777 5.95538 -2.2302 0 0.00199185 0.00341479 -0.764905 0.644131 uwb: 0.0 1040.04 420.575 +imu_odom_: 1691062822.555928115 1.31202 -0.438139 9.88326 -0.036219 -0.0106526 0.0596548 0.07 -0.02 pose: 0.41082589 5.96268 -2.23703 0 -0.00169018 0.00100358 -0.764163 0.645021 uwb: 0.49925102 1039.54 420.376 +imu_odom_: 1691062822.570852099 1.24977 0.11971 9.93594 -0.0468716 0.00639159 0.0415453 0.07 -0.02 pose: 0.0 5.96268 -2.23703 0 -0.00169018 0.00100358 -0.764163 0.645021 uwb: 0.0 1039.54 420.376 +imu_odom_: 1691062822.587901039 0.797269 0.167594 9.91199 -0.0671117 0.0298274 0.0308927 0.07 -0.02 pose: 0.0 5.96268 -2.23703 0 -0.00169018 0.00100358 -0.764163 0.645021 uwb: 0.0 1039.54 420.376 +imu_odom_: 1691062822.601787335 0.706289 -0.112527 9.97424 -0.0639159 0.00106526 0.0245011 0.06 -0.02 pose: 0.7032247 5.96268 -2.23703 0 -0.00228308 0.000603325 -0.764117 0.645073 uwb: 0.50057220 1037.51 420.242 +imu_odom_: 1691062822.617791297 0.624887 -0.462081 9.88326 -0.056459 -0.015979 -0.00532632 0.06 -0.02 pose: 0.0 5.96268 -2.23703 0 -0.00228308 0.000603325 -0.764117 0.645073 uwb: 0.0 1037.51 420.242 +imu_odom_: 1691062822.634775491 0.907402 -0.222661 9.9934 -0.0490022 -0.0213053 -0.0117179 0.06 -0.02 pose: 0.0 5.96268 -2.23703 0 -0.00228308 0.000603325 -0.764117 0.645073 uwb: 0.0 1037.51 420.242 +imu_odom_: 1691062822.652827705 0.833182 -0.280122 9.79468 -0.0575243 0.00745685 0.0138484 0.05 0 pose: 0.46895451 5.95586 -2.24435 0 -0.00360714 -0.00321488 -0.764128 0.645046 uwb: 0.49999474 1040.57 420.259 +imu_odom_: 1691062822.669835523 0.782904 -0.332794 9.97424 -0.0607201 0.00958738 0.0213053 0.04 0 pose: 0.0 5.95586 -2.24435 0 -0.00360714 -0.00321488 -0.764128 0.645046 uwb: 0.0 1040.57 420.259 +imu_odom_: 1691062822.694758993 0.610521 -0.198719 9.95748 -0.0468716 0.00213053 -0.00532632 0.04 0 pose: 0.65971353 5.95586 -2.24435 0 -0.00894284 -0.0054748 -0.764832 0.644144 uwb: 0.50008806 1040.58 420.048 +imu_odom_: 1691062822.718909302 -0.622492 -0.158017 9.65821 -0.0436758 0.1012 0.015979 0.04 0 pose: 0.0 5.95586 -2.24435 0 -0.00894284 -0.0054748 -0.764832 0.644144 uwb: 0.0 1040.58 420.048 +imu_odom_: 1691062822.736885103 -1.1971 -0.380678 10.3717 -0.0468716 0.0415453 0.0585895 0.04 0 pose: 0.17044274 5.95586 -2.24435 0 -0.00928201 -0.00607613 -0.76499 0.643946 uwb: 0.0 1040.58 420.048 +imu_odom_: 1691062822.760914669 -0.550666 -0.169988 10.058 -0.0394148 -0.0809601 0.0692422 0.07 0.02 pose: 0.49978766 5.95586 -2.24435 0 -0.00406912 -0.00432326 -0.765429 0.643493 uwb: 0.49925394 1037.52 420.124 +imu_odom_: 1691062822.785790309 0.684742 -0.167594 10.0054 -0.0617853 -0.015979 0.0713727 0.07 0.02 pose: 0.0 5.95586 -2.24435 0 -0.00406912 -0.00432326 -0.765429 0.643493 uwb: 0.0 1037.52 420.124 +imu_odom_: 1691062822.810799524 0.181959 -0.277727 9.90481 -0.052198 0.0735032 0.04048 0.11 0.02 pose: 0.41977078 5.94901 -2.25163 0 -0.00244931 -0.00333001 -0.765065 0.64394 uwb: 0.50035055 1035.48 420.207 +imu_odom_: 1691062822.835915483 -0.237026 -0.0454898 9.46188 -0.0511327 0.0106526 0.0639159 0.11 0 pose: 0.41982618 5.95631 -2.25847 0 -0.00147779 -0.0019771 -0.764886 0.644161 uwb: 0.0 1035.48 420.207 +imu_odom_: 1691062822.851768662 -0.153229 -0.35913 9.72046 -0.052198 -0.0340885 0.0713727 0.11 0 pose: 0.0 5.95631 -2.25847 0 -0.00147779 -0.0019771 -0.764886 0.644161 uwb: 0.0 1035.48 420.207 +imu_odom_: 1691062822.877858437 0.620098 -0.126893 9.64624 -0.0447411 -0.0106526 0.0500674 0.11 0.02 pose: 0.7152115 5.95631 -2.25847 0 -0.000790132-0.00162866 -0.764832 0.644228 uwb: 0.0 1035.48 420.207 +imu_odom_: 1691062822.902838196 0.445322 -0.023942 10.0892 -0.052198 0.0138484 0.0436758 0.11 0.02 pose: 0.0 5.95631 -2.25847 0 -0.000790132-0.00162866 -0.764832 0.644228 uwb: 0.100112107 1038.5 420.329 +imu_odom_: 1691062822.919772810 -0.287304 0.047884 9.69652 -0.0703074 0.0234358 0.0884169 0.15 -0.02 pose: 0.41830378 5.95631 -2.25847 0 0.00120565 -0.000315201-0.764504 0.644618 uwb: 0.0 1038.5 420.329 +imu_odom_: 1691062822.944754902 0.596156 -0.37589 9.76595 -0.0575243 -0.00213053 0.02024 0.15 -0.02 pose: 0.0 5.95631 -2.25847 0 0.00120565 -0.000315201-0.764504 0.644618 uwb: 0.49846357 1032.91 420.315 +imu_odom_: 1691062822.969758284 0.169988 -0.0263362 9.94791 -0.0628506 -0.0138484 0.0617853 0.17 0.02 pose: 0.50007931 5.94948 -2.26578 0 0.0024451 -0.00352528 -0.764296 0.644852 uwb: 0.0 1032.91 420.315 +imu_odom_: 1691062822.993749061 -0.150835 -0.371101 9.74919 -0.0596548 -0.0191748 0.0543285 0.17 0.02 pose: 0.0 5.94948 -2.26578 0 0.0024451 -0.00352528 -0.764296 0.644852 uwb: 0.0 1032.91 420.315 +imu_odom_: 1691062823.17808375 0.706289 -0.0287304 10.149 -0.0383495 0.0138484 0.0330232 0.14 0 pose: 0.40984011 5.95679 -2.2726 0 0.00149519 -0.00236114 -0.764255 0.644908 uwb: 0.0 1032.91 420.315 +imu_odom_: 1691062823.34767196 0.6608 0.0143652 9.38766 -0.0639159 0.0415453 0.0639159 0.14 0 pose: 0.0 5.95679 -2.2726 0 0.00149519 -0.00236114 -0.764255 0.644908 uwb: 0.0 1032.91 420.315 +imu_odom_: 1691062823.59884030 0.248997 -0.189142 10.1299 -0.0777643 0.0138484 0.0447411 0.14 -0.02 pose: 0.50083760 5.94997 -2.27992 0 0.00388952 -0.000553554-0.764025 0.645175 uwb: 0.99871206 1029.02 419.566 +imu_odom_: 1691062823.76918680 0.0335188 -0.0909797 9.68933 -0.0479369 0.0308927 0.0340885 0.14 -0.02 pose: 0.0 5.94997 -2.27992 0 0.00388952 -0.000553554-0.764025 0.645175 uwb: 0.0 1029.02 419.566 +imu_odom_: 1691062823.100840920 0.282516 -0.294487 9.94312 -0.0639159 -0.0106526 0.0596548 0.15 0 pose: 0.42023451 5.94316 -2.28723 0 0.00329679 -0.00248781 -0.763907 0.645314 uwb: 0.49981684 1030.54 419.597 +imu_odom_: 1691062823.125828553 0.890643 -0.21069 10.2065 -0.0415453 -0.0426106 0.0276969 0.15 0 pose: 0.0 5.94316 -2.28723 0 0.00329679 -0.00248781 -0.763907 0.645314 uwb: 0.0 1030.54 419.597 +imu_odom_: 1691062823.151731091 -0.0143652 -0.0167594 10.1299 -0.0660464 0.0447411 0.0649811 0.15 0 pose: 0.41066258 5.95048 -2.29405 0 0.00545572 0.000867786 -0.763867 0.645351 uwb: 0.0 1030.54 419.597 +imu_odom_: 1691062823.175873525 0.507571 -0.153229 9.90002 -0.0617853 -0.00319579 0.0308927 0.18 -0.02 pose: 0.49866482 5.94367 -2.30137 0 0.00322565 0.00074357 -0.7638 0.645445 uwb: 0.0 1030.54 419.597 +imu_odom_: 1691062823.189874440 0.667982 0.0861913 9.78271 -0.0692422 -0.0213053 0.0468716 0.18 -0.02 pose: 0.0 5.94367 -2.30137 0 0.00322565 0.00074357 -0.7638 0.645445 uwb: 0.0 1030.54 419.597 +imu_odom_: 1691062823.214738414 0.373495 -0.294487 10.1131 -0.0671117 -0.00958738 0.0511327 0.18 -0.02 pose: 0.0 5.94367 -2.30137 0 0.00322565 0.00074357 -0.7638 0.645445 uwb: 0.100124358 1027.49 419.75 +imu_odom_: 1691062823.238895140 0.507571 -0.035913 10.1682 -0.04048 -0.0266316 0.0298274 0.15 0 pose: 0.63996306 5.94419 -2.3155 0 0.00252696 -0.000823833-0.763653 0.645622 uwb: 0.0 1027.49 419.75 +imu_odom_: 1691062823.254072859 0.385466 -0.129287 9.64624 -0.0681769 -0.0319579 0.0575243 0.15 0 pose: 0.0 5.94419 -2.3155 0 0.00252696 -0.000823833-0.763653 0.645622 uwb: 0.49873482 1028.51 419.776 +imu_odom_: 1691062823.277883688 0.553061 -0.122104 10.3406 -0.0660464 -0.0255663 0.0330232 0.16 -0.02 pose: 0.56262643 5.94072 -2.31924 0 0.00259305 -0.00266589 -0.763577 0.645706 uwb: 0.0 1028.51 419.776 +imu_odom_: 1691062823.302775953 0.529119 -0.1652 10.1035 -0.0575243 -0.0394148 0.0479369 0.16 -0.02 pose: 0.0 5.94072 -2.31924 0 0.00259305 -0.00266589 -0.763577 0.645706 uwb: 0.50055763 1033.07 419.83 +imu_odom_: 1691062823.325888282 0.88346 -0.222661 9.66539 -0.036219 -0.056459 0.0245011 0.17 0 pose: 0.7845365 5.93738 -2.32283 0 0.00196067 -0.00325545 -0.763592 0.645688 uwb: 0.0 1033.07 419.83 +imu_odom_: 1691062823.341759543 0.957681 -0.181959 10.2472 -0.0351537 -0.0415453 0.0372843 0.17 0 pose: 0.0 5.93738 -2.32283 0 0.00196067 -0.00325545 -0.763592 0.645688 uwb: 0.0 1033.07 419.83 +imu_odom_: 1691062823.367740826 0.835576 -0.368707 10.5656 -0.0532632 -0.0223706 0.056459 0.21 -0.02 pose: 0.47892892 5.94471 -2.32963 0 -0.00270577 -0.00614465 -0.76357 0.64569 uwb: 0.49964185 1031.53 420.05 +imu_odom_: 1691062823.393778689 0.919373 -0.179565 10.1035 -0.0490022 0.0596548 0.0426106 0.17 -0.02 pose: 0.39973740 5.9379 -2.33696 0 -0.0065601 -0.00861559 -0.763577 0.645626 uwb: 0.50012308 1035.05 420.628 +imu_odom_: 1691062823.410874585 0.0670376 -0.23942 9.91678 -0.0607201 -0.0500674 0.0426106 0.21 0.02 pose: 0.27014888 5.9379 -2.33696 0 -0.00889265 -0.00907936 -0.763442 0.645751 uwb: 0.0 1035.05 420.628 +imu_odom_: 1691062823.434887819 -0.189142 -0.0167594 9.76595 -0.0468716 -0.0276969 0.0436758 0.21 0.02 pose: 0.0 5.9379 -2.33696 0 -0.00889265 -0.00907936 -0.763442 0.645751 uwb: 0.0 1035.05 420.628 +imu_odom_: 1691062823.459821498 0.474052 -0.347159 9.47864 -0.0671117 -0.00852212 0.0617853 0.2 0 pose: 0.23978819 5.93843 -2.35109 0 -0.00932907 -0.00952025 -0.763411 0.645775 uwb: 0.50101843 1034.53 420.715 +imu_odom_: 1691062823.474930388 0.366313 -0.217872 9.8689 -0.0351537 -0.00213053 0.0340885 0.2 0 pose: 0.0 5.93843 -2.35109 0 -0.00932907 -0.00952025 -0.763411 0.645775 uwb: 0.0 1034.53 420.715 +imu_odom_: 1691062823.497861311 0.45011 -0.217872 9.85693 -0.0639159 0 0.0575243 0.17 0 pose: 0.42031616 5.93843 -2.35109 0 -0.00693096 -0.00723806 -0.763345 0.645914 uwb: 0.49855108 1035.01 421.12 +imu_odom_: 1691062823.515737369 0.0454898 -0.296881 9.94312 -0.0287621 -0.0308927 0.0298274 0.17 0 pose: 0.0 5.93843 -2.35109 0 -0.00693096 -0.00723806 -0.763345 0.645914 uwb: 0.0 1035.01 421.12 +imu_odom_: 1691062823.539729896 0.222661 -0.1652 10.1251 -0.0532632 -0.0255663 0.0607201 0.17 0 pose: 0.39089459 5.93163 -2.35843 0 -0.00530418 -0.00416321 -0.763222 0.646102 uwb: 0.0 1035.01 421.12 +imu_odom_: 1691062823.565704179 0.490811 -0.112527 10.2496 -0.0511327 -0.0330232 0.0426106 0.17 0 pose: 0.0 5.93163 -2.35843 0 -0.00530418 -0.00416321 -0.763222 0.646102 uwb: 0.50016099 1040.08 421.331 +imu_odom_: 1691062823.581764429 0.646434 0.124498 9.99579 -0.056459 -0.0213053 0.0468716 0.18 0 pose: 0.41862461 5.93896 -2.36522 0 -0.00231302 -0.00173257 -0.763143 0.646223 uwb: 0.0 1040.08 421.331 +imu_odom_: 1691062823.607739587 0.56982 -0.354342 9.59835 -0.0671117 0.00213053 0.0383495 0.18 0 pose: 0.0 5.93896 -2.36522 0 -0.00231302 -0.00173257 -0.763143 0.646223 uwb: 0.50042930 1040.57 421.53 +imu_odom_: 1691062823.621917824 0.105345 -0.100556 10.1131 -0.0649811 0.00426106 0.0511327 0.18 0.02 pose: 0.48952745 5.93217 -2.37256 0 -0.000762581-0.00469046 -0.76299 0.646393 uwb: 0.0 1040.57 421.53 +imu_odom_: 1691062823.646896126 0.407014 -0.581791 9.93594 -0.0958738 0.02024 0.0617853 0.18 0.02 pose: 0.0 5.93217 -2.37256 0 -0.000762581-0.00469046 -0.76299 0.646393 uwb: 0.49998600 1041.06 421.777 +imu_odom_: 1691062823.671989628 0.553061 -0.227449 9.97903 -0.0639159 -0.0245011 0.0553937 0.17 0 pose: 0.41049342 5.93271 -2.38669 0 -0.00250198 -0.00395026 -0.76295 0.646441 uwb: 0.0 1041.06 421.777 +imu_odom_: 1691062823.697934455 0.667982 -0.368707 9.79947 -0.0649811 -0.00213053 0.04048 0.17 0 pose: 0.40125397 5.92592 -2.39403 0 -0.00367264 -0.00134119 -0.762704 0.646735 uwb: 0.49938520 1042.56 422.074 +imu_odom_: 1691062823.714764659 0.0287304 -0.0167594 10.0533 -0.0266316 -0.00532632 0.0351537 0.18 -0.02 pose: 0.0 5.92592 -2.39403 0 -0.00367264 -0.00134119 -0.762704 0.646735 uwb: 0.0 1042.56 422.074 +imu_odom_: 1691062823.739703296 0.550666 -0.325611 9.71806 -0.0639159 -0.0191748 0.0617853 0.18 -0.02 pose: 0.0 5.92592 -2.39403 0 -0.00367264 -0.00134119 -0.762704 0.646735 uwb: 0.0 1042.56 422.074 +imu_odom_: 1691062823.761873598 0.835576 -0.124498 10.3477 -0.0447411 -0.0308927 0.0447411 0.18 0.02 pose: 0.51070119 5.93327 -2.40082 0 -0.00694201 -0.00257512 -0.762597 0.646831 uwb: 0.49982851 1042.06 421.919 +imu_odom_: 1691062823.786860648 0.605733 -0.220267 10.2065 -0.0479369 -0.0223706 0.0468716 0.18 0.02 pose: 0.40790358 5.92649 -2.40816 0 -0.0085619 -0.00200149 -0.762408 0.647037 uwb: 0.0 1042.06 421.919 +imu_odom_: 1691062823.811905737 0.701501 -0.0885855 10.647 -0.0660464 -0.052198 0.0575243 0.22 0.02 pose: 0.41110588 5.92688 -2.4178 0 -0.00811378 -0.00618223 -0.762334 0.647104 uwb: 0.50018140 1044.6 421.992 +imu_odom_: 1691062823.828901598 0.679953 -0.169988 9.79947 -0.0628506 0.0319579 0.0468716 0.22 0.02 pose: 0.0 5.92688 -2.4178 0 -0.00811378 -0.00618223 -0.762334 0.647104 uwb: 0.0 1044.6 421.992 +imu_odom_: 1691062823.854917879 0.519542 -0.220267 9.69412 -0.0415453 0.00426106 0.0330232 0.18 0 pose: 0.7905737 5.92706 -2.42229 0 -0.0081634 -0.00705307 -0.762288 0.647148 uwb: 0.50064804 1041.55 422.07 +imu_odom_: 1691062823.879853307 0.347159 -0.217872 9.7037 -0.072438 -0.0372843 0.0436758 0.18 0 pose: 0.24158766 5.92706 -2.42229 0 -0.00852863 -0.00945429 -0.762166 0.647256 uwb: 0.0 1041.55 422.07 +imu_odom_: 1691062823.896768381 0.354342 0.0550666 10.1323 -0.0255663 -0.0149137 0.0319579 0.18 0 pose: 0.0 5.92706 -2.42229 0 -0.00852863 -0.00945429 -0.762166 0.647256 uwb: 0.49988975 1044.59 422.132 +imu_odom_: 1691062823.921761556 0.605733 -0.287304 10.307 -0.0745685 -0.0213053 0.0383495 0.18 0 pose: 0.0 5.92706 -2.42229 0 -0.00852863 -0.00945429 -0.762166 0.647256 uwb: 0.0 1044.59 422.132 +imu_odom_: 1691062823.946900265 0.61531 -0.227449 10.2975 -0.04048 -0.0223706 0.0351537 0.18 0 pose: 0.43824969 5.92029 -2.42965 0 -0.00691508 -0.007509 -0.762207 0.647253 uwb: 0.50062763 1044.61 421.805 +imu_odom_: 1691062823.971924355 0.639252 -0.0981623 9.85453 -0.0511327 0.02024 0.0340885 0.18 0 pose: 0.84150145 5.92087 -2.44378 0 -0.00913523 -0.00688184 -0.762254 0.647177 uwb: 0.0 1044.61 421.805 +imu_odom_: 1691062823.988824263 0.397437 -0.0814029 10.1778 -0.0308927 -0.04048 0.04048 0.18 0 pose: 0.0 5.92087 -2.44378 0 -0.00913523 -0.00688184 -0.762254 0.647177 uwb: 0.0 1044.61 421.805 +imu_odom_: 1691062824.12705671 0.143652 -0.287304 9.6199 -0.0649811 -0.052198 0.0596548 0.2 0 pose: 0.7008915 5.92087 -2.44378 0 -0.00866507 -0.00741718 -0.762271 0.647157 uwb: 0.49932978 1046.12 422.064 +imu_odom_: 1691062824.38807989 0.397437 -0.246603 9.67018 -0.0585895 -0.0170442 0.0490022 0.2 0 pose: 0.0 5.92087 -2.44378 0 -0.00866507 -0.00741718 -0.762271 0.647157 uwb: 0.0 1046.12 422.064 +imu_odom_: 1691062824.51702678 0.217872 -0.0407014 10.2831 -0.0649811 -0.0394148 0.0692422 0.2 0 pose: 0.0 5.92087 -2.44378 0 -0.00866507 -0.00741718 -0.762271 0.647157 uwb: 0.50061014 1052.21 422.111 +imu_odom_: 1691062824.67939377 0.586579 -0.112527 9.79947 -0.0340885 -0.00852212 0.0852212 0.18 0 pose: 0.42932229 5.92144 -2.45791 0 -0.0056718 -0.0080538 -0.762278 0.647175 uwb: 0.0 1052.21 422.111 +imu_odom_: 1691062824.85751564 0.682347 -0.567426 9.8689 -0.0607201 -0.0276969 0.20027 0.18 0 pose: 0.0 5.92144 -2.45791 0 -0.0056718 -0.0080538 -0.762278 0.647175 uwb: 0.0 1052.21 422.111 +imu_odom_: 1691062824.102750342 0.634463 -0.634463 9.60793 -0.0756338 -0.0138484 0.247141 0.18 0.17 pose: 0.47869270 5.91467 -2.46527 0 -0.00361635 -0.00458184 -0.762063 0.647476 uwb: 0.49909648 1053.08 422.285 +imu_odom_: 1691062824.115743025 0.497994 -0.545878 9.52413 -0.0543285 0.0330232 0.270577 0.18 0.17 pose: 0.0 5.91467 -2.46527 0 -0.00361635 -0.00458184 -0.762063 0.647476 uwb: 0.0 1053.08 422.285 +imu_odom_: 1691062824.131740862 0.641646 -0.198719 10.2687 -0.0511327 0.0266316 0.329167 0.18 0.17 pose: 0.0 5.91467 -2.46527 0 -0.00361635 -0.00458184 -0.762063 0.647476 uwb: 0.0 1053.08 422.285 +imu_odom_: 1691062824.149751080 0.253785 -0.325611 9.90481 -0.0255663 -0.0745685 0.363255 0.26 0.44 pose: 0.49051616 5.92203 -2.47204 0 -0.00566327 -0.00493541 -0.760273 0.64956 uwb: 0.49932396 1056.6 422.737 +imu_odom_: 1691062824.166686570 1.01514 -0.402226 10.4004 -0.0340885 0.00426106 0.396278 0.26 0.44 pose: 0.0 5.92203 -2.47204 0 -0.00566327 -0.00493541 -0.760273 0.64956 uwb: 0.0 1056.6 422.737 +imu_odom_: 1691062824.179736999 0.73502 -0.047884 10.2783 -0.0671117 -0.0308927 0.456998 0.26 0.44 pose: 0.0 5.92203 -2.47204 0 -0.00566327 -0.00493541 -0.760273 0.64956 uwb: 0.0 1056.6 422.737 +imu_odom_: 1691062824.195683798 0.806846 -0.23942 9.95988 -0.076699 0.00958738 0.50387 0.17 0.41 pose: 0.45926010 5.91522 -2.47937 0 -0.00688839 -0.00406268 -0.756329 0.654143 uwb: 0.50010850 1055.61 422.452 +imu_odom_: 1691062824.212733906 0.627281 -0.497994 9.64384 -0.0798948 -0.00426106 0.509196 0.25 0.61 pose: 0.0 5.91522 -2.47937 0 -0.00688839 -0.00406268 -0.756329 0.654143 uwb: 0.0 1055.61 422.452 +imu_odom_: 1691062824.230735374 0.52433 0.0670376 9.10994 -0.0426106 -0.0298274 0.517718 0.25 0.61 pose: 0.64070678 5.91572 -2.4935 0 -0.00990308 -0.00573758 -0.747755 0.663876 uwb: 0.0 1055.61 422.452 +imu_odom_: 1691062824.243738848 0.672771 -0.37589 9.91918 -0.0862864 0.00213053 0.566721 0.25 0.61 pose: 0.0 5.91572 -2.4935 0 -0.00990308 -0.00573758 -0.747755 0.663876 uwb: 0.50047307 1058.14 422.7 +imu_odom_: 1691062824.259736977 0.76375 -0.361524 9.50977 -0.0862864 -0.0415453 0.594418 0.18 0.53 pose: 0.0 5.91572 -2.4935 0 -0.00990308 -0.00573758 -0.747755 0.663876 uwb: 0.0 1058.14 422.7 +imu_odom_: 1691062824.276669551 0.380678 -0.399832 10.2807 -0.0213053 -0.0245011 0.588026 0.18 0.53 pose: 0.32979700 5.90891 -2.50081 0 -0.00985196 -0.00585459 -0.742426 0.66983 uwb: 0.0 1058.14 422.7 +imu_odom_: 1691062824.294666352 0.593762 -0.632069 9.78271 -0.0330232 0.00639159 0.606135 0.18 0.58 pose: 0.39930868 5.91618 -2.50758 0 -0.0116809 -0.00448181 -0.735035 0.677913 uwb: 0.49918980 1057.63 422.697 +imu_odom_: 1691062824.307659619 0.517148 -0.280122 9.75158 -0.052198 -0.00639159 0.639159 0.18 0.58 pose: 0.0 5.91618 -2.50758 0 -0.0116809 -0.00448181 -0.735035 0.677913 uwb: 0.0 1057.63 422.697 +imu_odom_: 1691062824.322660891 0.500388 -0.47884 9.93594 -0.0500674 -0.0415453 0.641289 0.18 0.58 pose: 0.0 5.91618 -2.50758 0 -0.0116809 -0.00448181 -0.735035 0.677913 uwb: 0.0 1057.63 422.697 +imu_odom_: 1691062824.340870596 1.13246 -0.191536 9.8689 -0.0500674 -0.00532632 0.609331 0.23 0.67 pose: 0.8070810 5.91626 -2.50759 0 -0.0120819 -0.00384451 -0.733475 0.679598 uwb: 0.0 1057.63 422.697 +imu_odom_: 1691062824.357742506 1.02951 -0.205901 9.9096 -0.0511327 -0.0298274 0.614658 0.23 0.67 pose: 0.0 5.91626 -2.50759 0 -0.0120819 -0.00384451 -0.733475 0.679598 uwb: 0.50126052 1062.68 423.105 +imu_odom_: 1691062824.371814292 1.77889 -0.265756 10.4722 -0.0330232 -0.0660464 0.549676 0.23 0.67 pose: 0.0 5.91626 -2.50759 0 -0.0120819 -0.00384451 -0.733475 0.679598 uwb: 0.0 1062.68 423.105 +imu_odom_: 1691062824.387817671 1.42455 -0.177171 9.02614 -0.0458064 0.0149137 0.427171 0.12 0.35 pose: 0.45921052 5.90946 -2.51492 0 -0.0121485 -0.00208787 -0.72422 0.689459 uwb: 0.0 1062.68 423.105 +imu_odom_: 1691062824.404888777 1.40779 0.0909797 10.2208 -0.0585895 0.0553937 0.361125 0.17 0.5 pose: 0.0 5.90946 -2.51492 0 -0.0121485 -0.00208787 -0.72422 0.689459 uwb: 0.50023974 1061.68 422.88 +imu_odom_: 1691062824.422711464 1.06303 -0.0023942 9.71328 -0.0660464 0.02024 0.369647 0.17 0.5 pose: 0.65171071 5.91002 -2.52911 0 -0.0155471 -0.0077815 -0.713265 0.700679 uwb: 0.0 1061.68 422.88 +imu_odom_: 1691062824.435761311 0.56982 -0.483629 9.82341 -0.0553937 0.0490022 0.354733 0.17 0.5 pose: 0.0 5.91002 -2.52911 0 -0.0155471 -0.0077815 -0.713265 0.700679 uwb: 0.0 1061.68 422.88 +imu_odom_: 1691062824.451702860 0.627281 -0.263362 10.3286 -0.0426106 -0.02024 0.290817 0.11 0.32 pose: 0.0 5.91002 -2.52911 0 -0.0155471 -0.0077815 -0.713265 0.700679 uwb: 0.50010559 1065.22 423.174 +imu_odom_: 1691062824.468683555 0.758962 0.0885855 9.83059 -0.0436758 -0.0287621 0.250337 0.11 0.32 pose: 0.32940035 5.91002 -2.52911 0 -0.0155168 -0.00921797 -0.70952 0.704454 uwb: 0.0 1065.22 423.174 +imu_odom_: 1691062824.486713313 0.61531 -0.134075 10.0293 -0.0649811 0.0149137 0.28123 0.08 0.23 pose: 0.39911036 5.9138 -2.53266 0 -0.013032 -0.00947339 -0.706099 0.70793 uwb: 0.0 1065.22 423.174 +imu_odom_: 1691062824.500815139 0.931344 -0.560243 10.003 -0.0660464 -0.00639159 0.271642 0.08 0.23 pose: 0.0 5.9138 -2.53266 0 -0.013032 -0.00947339 -0.706099 0.70793 uwb: 0.50001517 1062.22 422.63 +imu_odom_: 1691062824.517806334 0.694318 -0.347159 9.8282 -0.0479369 0 0.245011 0.08 0.23 pose: 0.0 5.9138 -2.53266 0 -0.013032 -0.00947339 -0.706099 0.70793 uwb: 0.0 1062.22 422.63 +imu_odom_: 1691062824.533802421 0.770933 -0.0909797 9.991 -0.0479369 -0.00426106 0.251402 0.07 0.23 pose: 0.8064978 5.91739 -2.53587 0 -0.012212 -0.00947199 -0.705423 0.708618 uwb: 0.0 1062.22 422.63 +imu_odom_: 1691062824.551872135 0.766145 -0.134075 9.90481 -0.0585895 -0.00426106 0.259925 0.08 0.26 pose: 0.0 5.91739 -2.53587 0 -0.012212 -0.00947199 -0.705423 0.708618 uwb: 0.49971186 1062.22 422.56 +imu_odom_: 1691062824.566812744 0.773327 -0.306458 9.90481 -0.0532632 0 0.239684 0.08 0.26 pose: 0.65067243 5.9106 -2.5432 0 -0.0126282 -0.0100441 -0.700327 0.71364 uwb: 0.0 1062.22 422.56 +imu_odom_: 1691062824.583686987 0.773327 -0.196325 9.85932 -0.0500674 -0.00639159 0.207727 0.08 0.32 pose: 0.0 5.9106 -2.5432 0 -0.0126282 -0.0100441 -0.700327 0.71364 uwb: 0.0 1062.22 422.56 +imu_odom_: 1691062824.599809067 0.588974 -0.100556 9.85214 -0.0490022 0.00745685 0.224771 0.08 0.32 pose: 0.0 5.9106 -2.5432 0 -0.0126282 -0.0100441 -0.700327 0.71364 uwb: 0.50048473 1062.77 422.218 +imu_odom_: 1691062824.616795012 0.452504 -0.42138 9.95748 -0.0575243 -0.00106526 0.264186 0.08 0.32 pose: 0.33049987 5.9106 -2.5432 0 -0.0134731 -0.0114502 -0.697971 0.715908 uwb: 0.0 1062.77 422.218 +imu_odom_: 1691062824.632989421 0.555455 -0.438139 9.79468 -0.0436758 -0.0138484 0.259925 0.05 0.2 pose: 0.41929249 5.9106 -2.5432 0 -0.0113249 -0.0103073 -0.695036 0.718811 uwb: 0.0 1062.77 422.218 +imu_odom_: 1691062824.650824066 0.761356 -0.117316 9.94551 -0.0394148 -0.0117179 0.259925 0.05 0.2 pose: 0.8150139 5.9106 -2.5432 0 -0.0114814 -0.00955834 -0.694386 0.719447 uwb: 0.50084638 1062.77 422.218 +imu_odom_: 1691062824.666678995 0.706289 -0.169988 9.91199 -0.0511327 0.00319579 0.280165 0.05 0.2 pose: 0.0 5.9106 -2.5432 0 -0.0114814 -0.00955834 -0.694386 0.719447 uwb: 0.0 1062.77 422.218 +imu_odom_: 1691062824.683785391 0.624887 -0.296881 9.88805 -0.0543285 -0.00639159 0.272708 0.05 0.29 pose: 0.41733844 5.9106 -2.5432 0 -0.00990629 -0.0117557 -0.690976 0.722714 uwb: 0.0 1062.77 422.218 +imu_odom_: 1691062824.700816250 0.555455 -0.196325 9.85453 -0.0458064 0.00532632 0.262055 0.04 0.23 pose: 0.0 5.9106 -2.5432 0 -0.00990629 -0.0117557 -0.690976 0.722714 uwb: 0.49624123 1060.76 421.955 +imu_odom_: 1691062824.717660454 0.526724 -0.244209 9.94312 -0.052198 -0.00426106 0.270577 0.04 0.23 pose: 0.0 5.9106 -2.5432 0 -0.00990629 -0.0117557 -0.690976 0.722714 uwb: 0.0 1060.76 421.955 +imu_odom_: 1691062824.734696563 0.663194 -0.225055 9.88566 -0.0511327 -0.00639159 0.280165 0.03 0.2 pose: 0.25260618 5.9106 -2.5432 0 -0.00947263 -0.00959278 -0.688882 0.724748 uwb: 0.0 1060.76 421.955 +imu_odom_: 1691062824.750811060 0.648829 -0.296881 9.98143 -0.0511327 -0.00106526 0.276969 0.03 0.2 pose: 0.0 5.9106 -2.5432 0 -0.00947263 -0.00959278 -0.688882 0.724748 uwb: 0.50080846 1057.72 421.762 +imu_odom_: 1691062824.767888583 0.608127 -0.155623 9.85453 -0.0458064 -0.00106526 0.278034 0.03 0.2 pose: 0.33004490 5.91793 -2.55001 0 -0.00835311 -0.00815161 -0.686129 0.727386 uwb: 0.0 1057.72 421.762 +imu_odom_: 1691062824.783774135 0.691924 -0.215478 9.9096 -0.0490022 -0.0117179 0.272708 0.02 0.23 pose: 0.42944480 5.91784 -2.54999 0 -0.00848873 -0.00832602 -0.682391 0.730891 uwb: 0.0 1057.72 421.762 +imu_odom_: 1691062824.800652753 0.636858 -0.0526724 9.86411 -0.0468716 0.00639159 0.258859 0.02 0.23 pose: 0.7951817 5.91793 -2.55001 0 -0.00893786 -0.00902013 -0.681707 0.731515 uwb: 0.50122260 1055.7 421.611 +imu_odom_: 1691062824.816774250 0.624887 -0.186748 9.89524 -0.0575243 0.00319579 0.278034 0.02 0.23 pose: 0.0 5.91793 -2.55001 0 -0.00893786 -0.00902013 -0.681707 0.731515 uwb: 0.0 1055.7 421.611 +imu_odom_: 1691062824.832774712 0.627281 -0.332794 9.87608 -0.0532632 0.00958738 0.265251 0.02 0.29 pose: 0.40933850 5.91102 -2.5573 0 -0.00676951 -0.00933763 -0.678292 0.734702 uwb: 0.0 1055.7 421.611 +imu_odom_: 1691062824.848780133 0.502782 -0.181959 9.91199 -0.0468716 0.00532632 0.243946 0.01 0.2 pose: 0.0 5.91102 -2.5573 0 -0.00676951 -0.00933763 -0.678292 0.734702 uwb: 0.50013767 1057.71 421.808 +imu_odom_: 1691062824.864773595 0.402226 -0.122104 9.87129 -0.0532632 -0.00213053 0.236489 0.01 0.2 pose: 0.0 5.91102 -2.5573 0 -0.00676951 -0.00933763 -0.678292 0.734702 uwb: 0.0 1057.71 421.808 +imu_odom_: 1691062824.889696192 0.521936 -0.215478 9.9096 -0.0490022 -0.00639159 0.197074 0.01 0.17 pose: 0.23012294 5.9111 -2.55732 0 -0.00723566 -0.00781026 -0.676431 0.736429 uwb: 0.0 1057.71 421.808 +imu_odom_: 1691062824.905694904 0.0766145 -0.172383 9.75158 -0.0639159 0.0575243 0.176834 0.01 0.17 pose: 0.0 5.9111 -2.55732 0 -0.00723566 -0.00781026 -0.676431 0.736429 uwb: 0.50014641 1060.22 422.206 +imu_odom_: 1691062824.921735614 -0.845153 -0.129287 10.0006 -0.0660464 0.102265 0.125701 0.01 0.17 pose: 0.32971533 5.9111 -2.55732 0 -0.00464761 -0.00598019 -0.674152 0.738554 uwb: 0.0 1060.22 422.206 +imu_odom_: 1691062824.938617440 -1.58975 -0.0766145 9.88326 -0.0553937 -0.00426106 0.0809601 0.04 0.05 pose: 0.40950766 5.9111 -2.55732 0 -0.00177264 -0.00203026 -0.672113 0.740443 uwb: 0.0 1060.22 422.206 +imu_odom_: 1691062824.954620236 -0.675165 -0.229843 9.97664 -0.0553937 -0.0958738 0.0628506 0.04 0.05 pose: 0.0 5.9111 -2.55732 0 -0.00177264 -0.00203026 -0.672113 0.740443 uwb: 0.49755657 1058.17 422.35 +imu_odom_: 1691062824.971677635 0.31364 -0.423774 9.8258 -0.0458064 -0.0639159 0.0415453 0.09 -0.02 pose: 0.40911393 5.9111 -2.55732 0 0.000837158 0.0007083 -0.671464 0.741037 uwb: 0.0 1058.17 422.35 +imu_odom_: 1691062824.987677514 0.533907 -0.107739 10.1706 -0.0479369 -0.0266316 0.0596548 0.09 -0.02 pose: 0.0 5.9111 -2.55732 0 0.000837158 0.0007083 -0.671464 0.741037 uwb: 0.0 1058.17 422.35 +imu_odom_: 1691062825.4873447 0.37589 -0.174777 10.0676 -0.0575243 0.0149137 0.0351537 0.09 -0.02 pose: 0.0 5.9111 -2.55732 0 0.000837158 0.0007083 -0.671464 0.741037 uwb: 0.50012892 1057.71 421.832 +imu_odom_: 1691062825.20829579 -0.148441 0.0047884 9.72046 -0.052198 0.00319579 0.0330232 0.09 0 pose: 0.8060894 5.9111 -2.55732 0 0.000301555 0.00120335 -0.671458 0.741041 uwb: 0.0 1057.71 421.832 +imu_odom_: 1691062825.37699448 0 -0.21069 9.90721 -0.0649811 -0.0181095 0.0490022 0.13 0 pose: 0.0 5.9111 -2.55732 0 0.000301555 0.00120335 -0.671458 0.741041 uwb: 0.0 1057.71 421.832 +imu_odom_: 1691062825.53653830 0.241814 -0.387861 9.95748 -0.0607201 -0.00852212 0.0447411 0.13 0 pose: 0.66110474 5.91847 -2.56408 0 0.00331151 0.00130729 -0.671371 0.741113 uwb: 0.50073556 1052.14 421.445 +imu_odom_: 1691062825.70821764 0.416591 -0.177171 10.1586 -0.0703074 -0.00639159 0.0319579 0.14 0 pose: 0.0 5.91847 -2.56408 0 0.00331151 0.00130729 -0.671371 0.741113 uwb: 0.0 1052.14 421.445 +imu_odom_: 1691062825.86771480 0.277727 -0.304064 9.77553 -0.0649811 0.0181095 0.0426106 0.14 0 pose: 0.0 5.91847 -2.56408 0 0.00331151 0.00130729 -0.671371 0.741113 uwb: 0.0 1052.14 421.445 +imu_odom_: 1691062825.103704054 0.253785 -0.184354 9.84256 -0.0639159 -0.0127832 0.0351537 0.14 0 pose: 0.32989033 5.9117 -2.57145 0 0.00267801 0.00272054 -0.671337 0.741142 uwb: 0.50058098 1051.65 421.282 +imu_odom_: 1691062825.119770429 0.1652 -0.0023942 9.76834 -0.0426106 -0.0276969 0.0415453 0.13 0 pose: 0.41923417 5.9117 -2.57145 0 0.00354364 0.00403217 -0.671365 0.741107 uwb: 0.0 1051.65 421.282 +imu_odom_: 1691062825.135791307 0.117316 -0.150835 9.61033 -0.0447411 -0.02024 0.0458064 0.13 0 pose: 0.7069287 5.9117 -2.57145 0 0.00421767 0.00381722 -0.671357 0.741113 uwb: 0.0 1051.65 421.282 +imu_odom_: 1691062825.160828231 0.521936 -0.332794 9.81383 -0.0703074 0.00639159 0.0479369 0.12 0.02 pose: 0.0 5.9117 -2.57145 0 0.00421767 0.00381722 -0.671357 0.741113 uwb: 0.0 1051.65 421.282 +imu_odom_: 1691062825.177772762 0.349553 0.0167594 9.83299 -0.0479369 0.00639159 0.0319579 0.13 0 pose: 0.34141631 5.91907 -2.57821 0 0.00547159 0.00412632 -0.671279 0.741173 uwb: 0.0 1051.65 421.282 +imu_odom_: 1691062825.193784016 0.0526724 -0.260968 9.65342 -0.056459 0.0340885 -0.00958738 0.12 -0.11 pose: 0.0 5.91907 -2.57821 0 0.00547159 0.00412632 -0.671279 0.741173 uwb: 0.0 1051.65 421.282 +imu_odom_: 1691062825.210781336 -0.397437 -0.071826 9.72285 -0.0596548 -0.00639159 -0.0884169 0.12 -0.11 pose: 0.40980223 5.91231 -2.58558 0 0.00542044 0.00328352 -0.671425 0.741046 uwb: 0.100018495 1050.15 420.891 +imu_odom_: 1691062825.226766924 -0.361524 -0.0287304 10.0892 -0.0532632 -0.04048 -0.152333 0.13 -0.26 pose: 0.0 5.91231 -2.58558 0 0.00542044 0.00328352 -0.671425 0.741046 uwb: 0.0 1050.15 420.891 +imu_odom_: 1691062825.243714956 0.294487 0.059855 9.59117 -0.0628506 -0.0788296 -0.217314 0.13 -0.26 pose: 0.0 5.91231 -2.58558 0 0.00542044 0.00328352 -0.671425 0.741046 uwb: 0.0 1050.15 420.891 +imu_odom_: 1691062825.259762374 1.06781 -0.0502782 10.1442 -0.0745685 -0.0479369 -0.273773 0.13 -0.26 pose: 0.32886081 5.91231 -2.58558 0 0.00769698 0.0055283 -0.672928 0.739648 uwb: 0.49924232 1051.7 420.697 +imu_odom_: 1691062825.276824148 0.471658 -0.0646434 9.58878 -0.0628506 0.0117179 -0.34408 0.19 -0.53 pose: 0.40981098 5.91963 -2.59229 0 0.00729289 0.00254529 -0.676947 0.735991 uwb: 0.0 1051.7 420.697 +imu_odom_: 1691062825.292818778 0.258574 0.155623 10.2376 -0.0628506 -0.00319579 -0.38243 0.19 -0.53 pose: 0.8071977 5.91971 -2.5923 0 0.00702954 0.0018666 -0.678084 0.734948 uwb: 0.0 1051.7 420.697 +imu_odom_: 1691062825.309741144 0.277727 -0.100556 10.0676 -0.0809601 -0.00532632 -0.429302 0.19 -0.53 pose: 0.0 5.91971 -2.5923 0 0.00702954 0.0018666 -0.678084 0.734948 uwb: 0.50125761 1050.7 420.468 +imu_odom_: 1691062825.325742481 0.162806 -0.0670376 10.0197 -0.0649811 -0.0287621 -0.458064 0.14 -0.5 pose: 0.41906793 5.91295 -2.59973 0 0.00907125 0.00156866 -0.684704 0.728763 uwb: 0.0 1050.7 420.468 +imu_odom_: 1691062825.342803964 0.799663 -0.299275 9.90242 -0.0830906 -0.00213053 -0.478304 0.2 -0.64 pose: 0.0 5.91295 -2.59973 0 0.00907125 0.00156866 -0.684704 0.728763 uwb: 0.0 1050.7 420.468 +imu_odom_: 1691062825.358612521 0.418985 -0.3304 9.76116 -0.0735032 -0.0245011 -0.499609 0.2 -0.64 pose: 0.0 5.91295 -2.59973 0 0.00907125 0.00156866 -0.684704 0.728763 uwb: 0.49992769 1048.68 420.224 +imu_odom_: 1691062825.375664671 0.184354 0.208296 10.0533 -0.0628506 -0.0415453 -0.516653 0.2 -0.64 pose: 0.24129894 5.91303 -2.59974 0 0.00952031 0.00192697 -0.689124 0.724578 uwb: 0.0 1048.68 420.224 +imu_odom_: 1691062825.391718506 0.612916 0.0023942 10.1825 -0.0639159 -0.00532632 -0.534763 0.2 -0.7 pose: 0.0 5.91303 -2.59974 0 0.00952031 0.00192697 -0.689124 0.724578 uwb: 0.0 1048.68 420.224 +imu_odom_: 1691062825.408725158 0.260968 -0.124498 9.78271 -0.0458064 -0.0458064 -0.549676 0.2 -0.7 pose: 0.32752797 5.92048 -2.60642 0 0.00742383 0.00142635 -0.695487 0.718499 uwb: 0.49953397 1048.18 420.182 +imu_odom_: 1691062825.424665833 0.742203 -0.227449 9.29669 -0.0692422 -0.0127832 -0.583765 0.15 -0.58 pose: 0.42101323 5.91366 -2.6138 0 0.00786232 0.000808781 -0.704152 0.710005 uwb: 0.0 1048.18 420.182 +imu_odom_: 1691062825.441660820 0.888249 -0.0933739 10.4914 -0.0735032 -0.0479369 -0.56246 0.15 -0.58 pose: 0.0 5.91366 -2.6138 0 0.00786232 0.000808781 -0.704152 0.710005 uwb: 0.0 1048.18 420.182 +imu_odom_: 1691062825.457660407 1.06303 -0.25618 9.69652 -0.0660464 -0.0681769 -0.52198 0.15 -0.58 pose: 0.0 5.91366 -2.6138 0 0.00786232 0.000808781 -0.704152 0.710005 uwb: 0.49916357 1046.67 419.847 +imu_odom_: 1691062825.474594148 1.54426 -0.129287 10.2472 -0.0479369 -0.0234358 -0.50174 0.17 -0.67 pose: 0.7886488 5.91374 -2.61381 0 0.00713024 0.000423047 -0.705897 0.708279 uwb: 0.0 1046.67 419.847 +imu_odom_: 1691062825.490652357 1.51792 -0.268151 9.54808 -0.072438 0.00213053 -0.46339 0.11 -0.41 pose: 0.0 5.91374 -2.61381 0 0.00713024 0.000423047 -0.705897 0.708279 uwb: 0.0 1046.67 419.847 +imu_odom_: 1691062825.507585514 1.4054 -0.220267 10.1897 -0.076699 0.02024 -0.383495 0.11 -0.41 pose: 0.66051270 5.91442 -2.62795 0 0.0011989 -0.00429123 -0.719034 0.694961 uwb: 0.50117303 1048.2 419.83 +imu_odom_: 1691062825.524644080 1.02711 -0.572214 10.0317 -0.0468716 0.0617853 -0.350472 0.1 -0.38 pose: 0.0 5.91442 -2.62795 0 0.0011989 -0.00429123 -0.719034 0.694961 uwb: 0.0 1048.2 419.83 +imu_odom_: 1691062825.540585629 0.950498 -0.251391 9.92397 -0.0628506 0.0213053 -0.307861 0.1 -0.38 pose: 0.0 5.91442 -2.62795 0 0.0011989 -0.00429123 -0.719034 0.694961 uwb: 0.0 1048.2 419.83 +imu_odom_: 1691062825.556640630 0.715866 -0.198719 9.77074 -0.0532632 0.0436758 -0.299339 0.1 -0.38 pose: 0.32928370 5.91442 -2.62795 0 -0.00131041 -0.00541336 -0.723971 0.689808 uwb: 0.50002685 1050.23 419.956 +imu_odom_: 1691062825.573617826 0.629675 -0.047884 10.1155 -0.0553937 -0.00852212 -0.265251 0.1 -0.35 pose: 0.41049344 5.91434 -2.62794 0 -0.00418307 -0.00669041 -0.728933 0.684539 uwb: 0.0 1050.23 419.956 +imu_odom_: 1691062825.591639710 0.749385 -0.414197 10.003 -0.0575243 0.00213053 -0.223706 0.1 -0.35 pose: 0.8004606 5.91442 -2.62795 0 -0.00400878 -0.00748869 -0.729767 0.683643 uwb: 0.0 1050.23 419.956 +imu_odom_: 1691062825.606580903 0.897826 -0.356736 9.72046 -0.0458064 -0.0106526 -0.229032 0.1 -0.35 pose: 0.0 5.91442 -2.62795 0 -0.00400878 -0.00748869 -0.729767 0.683643 uwb: 0.49928023 1050.23 420.003 +imu_odom_: 1691062825.624577996 0.804452 -0.205901 9.68933 -0.0532632 0.00319579 -0.209857 0.06 -0.23 pose: 0.41935667 5.91828 -2.63858 0 -0.00694686 -0.00834729 -0.733653 0.679438 uwb: 0.0 1050.23 420.003 +imu_odom_: 1691062825.642618254 0.691924 -0.311246 9.81144 -0.0596548 -0.00426106 -0.167247 0.05 -0.2 pose: 0.0 5.91828 -2.63858 0 -0.00694686 -0.00834729 -0.733653 0.679438 uwb: 0.0 1050.23 420.003 +imu_odom_: 1691062825.656612170 0.505177 -0.31364 9.87848 -0.0596548 0.0138484 -0.167247 0.05 -0.2 pose: 0.0 5.91828 -2.63858 0 -0.00694686 -0.00834729 -0.733653 0.679438 uwb: 0.49950480 1050.73 420.117 +imu_odom_: 1691062825.674671384 0.497994 -0.265756 10.1179 -0.0490022 -0.0138484 -0.169377 0.05 -0.17 pose: 0.26005782 5.91511 -2.64207 0 -0.00901544 -0.00906396 -0.73571 0.677176 uwb: 0.0 1050.73 420.117 +imu_odom_: 1691062825.690735427 0.567426 -0.0622492 9.70849 -0.0639159 -0.0213053 -0.142745 0.05 -0.17 pose: 0.0 5.91511 -2.64207 0 -0.00901544 -0.00906396 -0.73571 0.677176 uwb: 0.0 1050.73 420.117 +imu_odom_: 1691062825.707667417 0.754174 -0.337582 9.93354 -0.0596548 -0.0138484 -0.117179 0.05 -0.17 pose: 0.32093378 5.91511 -2.64207 0 -0.0089657 -0.00657242 -0.737958 0.674755 uwb: 0.0 1050.73 420.117 +imu_odom_: 1691062825.723717168 0.768539 -0.294487 9.99819 -0.056459 -0.0319579 -0.0990696 0.04 -0.14 pose: 0.42987354 5.91511 -2.64207 0 -0.00902849 -0.00699597 -0.740539 0.671916 uwb: 0.0 1050.73 420.117 +imu_odom_: 1691062825.741744302 0.739808 -0.361524 9.60075 -0.0532632 0.00852212 -0.1012 0.04 -0.14 pose: 0.8141390 5.91511 -2.64207 0 -0.00988396 -0.00732847 -0.740908 0.671494 uwb: 0.0 1050.73 420.117 +imu_odom_: 1691062825.758792077 0.746991 -0.1652 9.98622 -0.0585895 -0.0149137 -0.0916127 0.04 -0.14 pose: 0.0 5.91511 -2.64207 0 -0.00988396 -0.00732847 -0.740908 0.671494 uwb: 0.99988455 1048.72 419.756 +imu_odom_: 1691062825.774667130 0.632069 -0.208296 9.8282 -0.0575243 -0.00319579 -0.0830906 0.04 -0.11 pose: 0.33957891 5.91511 -2.64207 0 -0.0122707 -0.00807311 -0.74245 0.669741 uwb: 0.0 1048.72 419.756 +imu_odom_: 1691062825.791604954 0.691924 -0.251391 9.93115 -0.0607201 -0.0191748 -0.072438 0.03 -0.11 pose: 0.0 5.91511 -2.64207 0 -0.0122707 -0.00807311 -0.74245 0.669741 uwb: 0.0 1048.72 419.756 +imu_odom_: 1691062825.808595857 0.617704 -0.234632 9.81144 -0.0575243 -0.00958738 -0.0649811 0.03 -0.11 pose: 0.0 5.91511 -2.64207 0 -0.0122707 -0.00807311 -0.74245 0.669741 uwb: 0.50058973 1050.76 419.86 +imu_odom_: 1691062825.824647067 0.658405 -0.258574 9.88326 -0.0543285 -0.0106526 -0.0468716 0.03 -0.11 pose: 0.32850792 5.91511 -2.64207 0 -0.0114474 -0.00855762 -0.743809 0.66824 uwb: 0.0 1050.76 419.86 +imu_odom_: 1691062825.841640887 0.730232 -0.241814 9.9096 -0.0575243 -0.00745685 -0.0319579 0.03 -0.11 pose: 0.0 5.91511 -2.64207 0 -0.0114474 -0.00855762 -0.743809 0.66824 uwb: 0.0 1050.76 419.86 +imu_odom_: 1691062825.857585353 0.68953 -0.253785 9.85453 -0.056459 0 -0.0213053 0.03 -0.11 pose: 0.33031905 5.91511 -2.64207 0 -0.0112348 -0.00708802 -0.744942 0.666997 uwb: 0.49854819 1057.86 420.36 +imu_odom_: 1691062825.873624313 0.636858 -0.265756 9.91678 -0.0532632 -0.00106526 -0.0181095 0.01 0 pose: 0.41935958 5.91511 -2.64207 0 -0.0121626 -0.00940911 -0.745923 0.665855 uwb: 0.0 1057.86 420.36 +imu_odom_: 1691062825.890564470 0.617704 -0.208296 9.84496 -0.0543285 -0.0106526 -0.00852212 0.01 0 pose: 0.6998999 5.91511 -2.64207 0 -0.0118611 -0.00877071 -0.746061 0.665715 uwb: 0.0 1057.86 420.36 +imu_odom_: 1691062825.906718340 0.648829 -0.229843 9.88805 -0.0575243 -0.00532632 0.00852212 0.01 0 pose: 0.0 5.91511 -2.64207 0 -0.0118611 -0.00877071 -0.746061 0.665715 uwb: 0.50005019 1057.86 420.36 +imu_odom_: 1691062825.922718511 0.624887 -0.275333 9.89524 -0.0553937 0.00426106 0.0223706 0.01 -0.02 pose: 0.42133988 5.91511 -2.64207 0 -0.0113297 -0.00720252 -0.746677 0.665051 uwb: 0.0 1057.86 420.36 +imu_odom_: 1691062825.938778179 0.579397 -0.323217 9.95509 -0.052198 -0.00319579 0.0447411 0 0.02 pose: 0.0 5.91511 -2.64207 0 -0.0113297 -0.00720252 -0.746677 0.665051 uwb: 0.0 1057.86 420.36 +imu_odom_: 1691062825.954756184 0.593762 -0.299275 9.79707 -0.0553937 0.00106526 0.0596548 0 0.02 pose: 0.0 5.91511 -2.64207 0 -0.0113297 -0.00720252 -0.746677 0.665051 uwb: 0.49939106 1060.39 420.665 +imu_odom_: 1691062825.970716982 0.533907 -0.253785 9.90242 -0.0511327 0.00639159 0.0585895 0 0.02 pose: 0.23923699 5.91511 -2.64207 0 -0.0106016 -0.00488977 -0.746758 0.664993 uwb: 0.0 1060.39 420.665 +imu_odom_: 1691062825.992729503 0.42138 -0.136469 9.89524 -0.0532632 -0.00426106 0.0383495 0 0.02 pose: 0.0 5.91511 -2.64207 0 -0.0106016 -0.00488977 -0.746758 0.664993 uwb: 0.0 1060.39 420.665 +imu_odom_: 1691062826.9731781 -0.248997 -0.19393 9.71806 -0.0543285 0.0671117 0.0447411 0 0.02 pose: 0.32096586 5.91511 -2.64207 0 -0.00915808 -0.00260921 -0.746591 0.665215 uwb: 0.50008226 1058.39 420.247 +imu_odom_: 1691062826.25657582 -0.979228 -0.316035 10.0844 -0.04048 0.0713727 0.0532632 0 0.02 pose: 0.37887574 5.91511 -2.64207 0 -0.00527375 -0.00223138 -0.746564 0.665289 uwb: 0.0 1058.39 420.247 +imu_odom_: 1691062826.42715857 -1.10852 -0.308852 9.99819 -0.052198 -0.0351537 0.0532632 0 0.02 pose: 0.0 5.91511 -2.64207 0 -0.00527375 -0.00223138 -0.746564 0.665289 uwb: 0.0 1058.39 420.247 +imu_odom_: 1691062826.60664829 -0.241814 0 9.75637 -0.0532632 -0.0660464 0.0703074 0.04 0.05 pose: 0.0 5.91511 -2.64207 0 -0.00527375 -0.00223138 -0.746564 0.665289 uwb: 0.49972938 1065.51 420.607 +imu_odom_: 1691062826.75823592 0.368707 -0.294487 10.0173 -0.0490022 -0.0394148 0.0756338 0.04 0.05 pose: 0.42089658 5.91172 -2.64574 0 -0.00158604 0.000949665 -0.746405 0.66549 uwb: 0.0 1065.51 420.607 +imu_odom_: 1691062826.92639798 0.47884 -0.306458 9.96467 -0.0628506 -0.00852212 0.0596548 0.04 0.05 pose: 0.0 5.91172 -2.64574 0 -0.00158604 0.000949665 -0.746405 0.66549 uwb: 0.0 1065.51 420.607 +imu_odom_: 1691062826.108588056 -0.00957681-0.272939 9.63427 -0.0426106 0.0276969 0.0617853 0.07 0.05 pose: 0.9018088 5.90832 -2.64942 0 -0.0009443980.00108013 -0.746312 0.665595 uwb: 0.50170677 1072.57 421.521 +imu_odom_: 1691062826.124767300 -0.0311246 -0.287304 10.0772 -0.0553937 0.00319579 0.0628506 0.07 0.05 pose: 0.0 5.90832 -2.64942 0 -0.0009443980.00108013 -0.746312 0.665595 uwb: 0.0 1072.57 421.521 +imu_odom_: 1691062826.141772786 0.011971 -0.373495 9.69891 -0.0575243 0 0.0660464 0.07 0.05 pose: 0.0 5.90832 -2.64942 0 -0.0009443980.00108013 -0.746312 0.665595 uwb: 0.0 1072.57 421.521 +imu_odom_: 1691062826.157711711 0.138864 -0.292093 10.0054 -0.0426106 -0.02024 0.0628506 0.12 0 pose: 0.47986515 5.91566 -2.6562 0 -0.00202651 0.00246736 -0.745871 0.666083 uwb: 0.50147344 1074.09 421.619 +imu_odom_: 1691062826.173595223 0.25618 -0.0622492 9.79707 -0.0372843 -0.0426106 0.0543285 0.09 0.02 pose: 0.0 5.91566 -2.6562 0 -0.00202651 0.00246736 -0.745871 0.666083 uwb: 0.0 1074.09 421.619 +imu_odom_: 1691062826.191767307 0.402226 -0.114922 9.86172 -0.0490022 -0.0170442 0.072438 0.09 0.02 pose: 0.65945402 5.91566 -2.6562 0 0.00260028 0.0060038 -0.745341 0.666652 uwb: 0.0 1074.09 421.619 +imu_odom_: 1691062826.209565204 0.280122 -0.562637 9.82341 -0.0553937 0.0106526 0.0639159 0.1 0.02 pose: 0.0 5.91566 -2.6562 0 0.00260028 0.0060038 -0.745341 0.666652 uwb: 0.49867361 1076.59 422.158 +imu_odom_: 1691062826.222561096 0.19393 -0.328006 9.83299 -0.0415453 0.015979 0.0394148 0.1 0.02 pose: 0.0 5.91566 -2.6562 0 0.00260028 0.0060038 -0.745341 0.666652 uwb: 0.0 1076.59 422.158 +imu_odom_: 1691062826.237612824 0.328006 -0.011971 9.88087 -0.0447411 0.00213053 0.0436758 0.1 0.02 pose: 0.34064637 5.9089 -2.66357 0 0.00272846 0.00407938 -0.74504 0.667002 uwb: 0.0 1076.59 422.158 +imu_odom_: 1691062826.255557130 0.328006 0.100556 10.3621 -0.0703074 -0.0106526 0.076699 0.15 0.02 pose: 0.37882325 5.91236 -2.66675 0 0.00360808 0.00488571 -0.744935 0.66711 uwb: 0.49993062 1076.1 422.021 +imu_odom_: 1691062826.272553867 0.888249 -0.526724 10.4555 -0.0436758 -0.0117179 0.0383495 0.15 0.02 pose: 0.7938110 5.91627 -2.67033 0 0.00399531 0.00425342 -0.744834 0.667224 uwb: 0.0 1076.1 422.021 +imu_odom_: 1691062826.286541658 1.21386 -0.114922 9.60793 -0.052198 -0.0436758 0.0340885 0.15 0.02 pose: 0.0 5.91627 -2.67033 0 0.00399531 0.00425342 -0.744834 0.667224 uwb: 0.0 1076.1 422.021 +imu_odom_: 1691062826.302553787 1.16119 -0.134075 9.64384 -0.052198 0.00852212 0.0777643 0.09 -0.02 pose: 0.40990724 5.91627 -2.67033 0 0.00173369 0.00168321 -0.744752 0.667337 uwb: 0.49998312 1076.06 422.277 +imu_odom_: 1691062826.318609080 1.20668 -0.246603 10.3525 -0.0607201 -0.0181095 0.123571 0.12 -0.02 pose: 0.0 5.91627 -2.67033 0 0.00173369 0.00168321 -0.744752 0.667337 uwb: 0.0 1076.06 422.277 +imu_odom_: 1691062826.332591913 1.11809 -0.316035 9.58399 -0.0639159 -0.0394148 0.129962 0.12 -0.02 pose: 0.0 5.91627 -2.67033 0 0.00173369 0.00168321 -0.744752 0.667337 uwb: 0.0 1076.06 422.277 +imu_odom_: 1691062826.347552063 1.33596 -0.344765 9.67018 -0.0468716 -0.00532632 0.0937433 0.12 -0.02 pose: 0.23061292 5.90952 -2.67771 0 0.000156787 7.93153e-05 -0.744352 0.667787 uwb: 0.50025435 1077.6 422.339 +imu_odom_: 1691062826.364753246 0.931344 -0.0957681 9.9096 -0.0553937 0.0415453 0.0703074 0.06 -0.02 pose: 0.0 5.90952 -2.67771 0 0.000156787 7.93153e-05 -0.744352 0.667787 uwb: 0.0 1077.6 422.339 +imu_odom_: 1691062826.381708278 0.514753 -0.186748 10.1825 -0.0553937 0.0213053 0.0426106 0.06 -0.02 pose: 0.0 5.90952 -2.67771 0 0.000156787 7.93153e-05 -0.744352 0.667787 uwb: 0.0 1077.6 422.339 +imu_odom_: 1691062826.398594771 0.553061 -0.184354 9.61751 -0.0660464 -0.0266316 0.00106526 0.07 -0.02 pose: 0.72105328 5.90952 -2.67771 0 -0.00289892 -0.00486425 -0.743208 0.669037 uwb: 0.49985187 1080.14 422.568 +imu_odom_: 1691062826.414826220 0.778116 -0.0933739 9.79228 -0.0553937 -0.00745685 -0.00852212 0.07 -0.02 pose: 0.0 5.90952 -2.67771 0 -0.00289892 -0.00486425 -0.743208 0.669037 uwb: 0.0 1080.14 422.568 +imu_odom_: 1691062826.431701048 0.85473 -0.363919 9.90242 -0.0639159 -0.0127832 0.0181095 0.07 -0.02 pose: 0.0 5.90952 -2.67771 0 -0.00289892 -0.00486425 -0.743208 0.669037 uwb: 0.0 1080.14 422.568 +imu_odom_: 1691062826.447686928 0.785298 -0.35913 9.89763 -0.0575243 0.00213053 0.0213053 0.04 0 pose: 0.6887297 5.90952 -2.67771 0 -0.00350731 -0.00533213 -0.743293 0.668936 uwb: 0.50065683 1078.69 421.848 +imu_odom_: 1691062826.464547465 0.746991 -0.213084 10.0054 -0.052198 0 0.0170442 0.05 0.02 pose: 0.0 5.90952 -2.67771 0 -0.00350731 -0.00533213 -0.743293 0.668936 uwb: 0.0 1078.69 421.848 +imu_odom_: 1691062826.489566599 0.457293 -0.0837971 9.94791 -0.0543285 -0.00319579 0.0117179 0.05 0.02 pose: 0.66986883 5.90952 -2.67771 0 -0.00904193 -0.00816809 -0.743906 0.668174 uwb: 0.0 1078.69 421.848 +imu_odom_: 1691062826.505608476 0.205901 -0.244209 9.96227 -0.0596548 0.0298274 0.0308927 0.03 0.02 pose: 0.0 5.90952 -2.67771 0 -0.00904193 -0.00816809 -0.743906 0.668174 uwb: 0.49927733 1080.22 421.963 +imu_odom_: 1691062826.530743686 -1.11809 -0.37589 10.2089 -0.0543285 0.0585895 0.0713727 0.03 0.02 pose: 0.40977599 5.91691 -2.68444 0 -0.00665788 -0.00774695 -0.744254 0.667818 uwb: 0.0 1080.22 421.963 +imu_odom_: 1691062826.557661749 -0.383072 -0.011971 9.87608 -0.0575243 -0.0905475 0.0660464 0.07 0.02 pose: 0.34183629 5.91239 -2.6894 0 -0.00369924 -0.00454676 -0.744039 0.66811 uwb: 0.49688580 1080.7 422.219 +imu_odom_: 1691062826.582678549 0.469264 -0.141258 10.0078 -0.0553937 -0.015979 0.0649811 0.07 0.02 pose: 0.7876573 5.91017 -2.69183 0 -0.0032778 -0.00436949 -0.743973 0.668188 uwb: 0.0 1080.7 422.219 +imu_odom_: 1691062826.599545794 0.462081 -0.117316 9.8689 -0.0617853 0.0149137 0.056459 0.12 0 pose: 0.0 5.91017 -2.69183 0 -0.0032778 -0.00436949 -0.743973 0.668188 uwb: 0.50244755 1080.18 422.312 +imu_odom_: 1691062826.615594379 0.232238 -0.186748 10.0078 -0.0628506 0.00106526 0.0617853 0.12 0 pose: 0.51068664 5.91017 -2.69183 0 0.00055138 -0.0053651 -0.743565 0.668641 uwb: 0.0 1080.18 422.312 +imu_odom_: 1691062826.631660172 -0.0215478 -0.148441 9.87848 -0.0617853 -0.0127832 0.0585895 0.15 0.02 pose: 0.0 5.91017 -2.69183 0 0.00055138 -0.0053651 -0.743565 0.668641 uwb: 0.0 1080.18 422.312 +imu_odom_: 1691062826.657543171 0.186748 -0.011971 9.73243 -0.072438 -0.0266316 0.052198 0.15 0.02 pose: 0.32995159 5.91017 -2.69183 0 0.00271137 -0.00376977 -0.743358 0.668878 uwb: 0.49924233 1078.64 422.22 +imu_odom_: 1691062826.682669923 0.361524 -0.155623 10.1155 -0.0607201 -0.0138484 0.0553937 0.14 0 pose: 0.34859089 5.90539 -2.697 0 0.00545319 -0.00257794 -0.743196 0.669046 uwb: 0.0 1078.64 422.22 +imu_odom_: 1691062826.705602015 0.373495 -0.397437 9.91199 -0.0617853 -0.00852212 0.0479369 0.14 0 pose: 0.7071037 5.90338 -2.69917 0 0.00489448 -0.00210816 -0.743163 0.669089 uwb: 0.50048184 1077.12 422.062 +imu_odom_: 1691062826.721647975 0.248997 -0.248997 10.4698 -0.0490022 0.0170442 0.0383495 0.13 0 pose: 0.0 5.90338 -2.69917 0 0.00489448 -0.00210816 -0.743163 0.669089 uwb: 0.0 1077.12 422.062 +imu_odom_: 1691062826.748536289 0.148441 -0.289698 9.8665 -0.0575243 -0.00745685 0.0436758 0.13 0 pose: 0.48946624 5.91072 -2.70596 0 0.00221154 0.00151369 -0.74302 0.669263 uwb: 0.49913733 1080.14 422.402 +imu_odom_: 1691062826.774588445 0.172383 -0.368707 9.64145 -0.0575243 0.0298274 0.0490022 0.14 0.02 pose: 0.34975457 5.90595 -2.71112 0 0.00375866 0.00469661 -0.742979 0.669287 uwb: 0.0 1080.14 422.402 +imu_odom_: 1691062826.790523287 -0.169988 -0.227449 9.46188 -0.0319579 -0.00852212 0.036219 0.14 0.02 pose: 0.8007523 5.90394 -2.7133 0 0.00383967 0.00559514 -0.742952 0.66931 uwb: 0.0 1080.14 422.402 +imu_odom_: 1691062826.815507422 0.52433 -0.246603 9.97903 -0.0681769 -0.0426106 0.0639159 0.14 0.02 pose: 0.0 5.90394 -2.7133 0 0.00383967 0.00559514 -0.742952 0.66931 uwb: 0.0 1080.14 422.402 +imu_odom_: 1691062826.841583785 0.52433 -0.153229 9.94073 -0.0543285 -0.0298274 0.0276969 0.14 0.02 pose: 0.42053493 5.91128 -2.72009 0 0.00469471 0.00775847 -0.742836 0.669412 uwb: 0.0 1080.14 422.402 +imu_odom_: 1691062826.865678099 -0.11971 -0.131681 10.0604 -0.0426106 0.0181095 0.0351537 0.15 0 pose: 0.42986480 5.90641 -2.72537 0 0.00190468 0.00379054 -0.742826 0.669471 uwb: 0.99964250 1082.18 422.523 +imu_odom_: 1691062826.890712690 0.0143652 -0.4956 9.89284 -0.0553937 0.0191748 0.0490022 0.15 0 pose: 0.6986750 5.9045 -2.72744 0 0.00261173 0.00413462 -0.742833 0.669459 uwb: 0.0 1082.18 422.523 +imu_odom_: 1691062826.906679905 0.371101 0.0023942 10.137 -0.0266316 -0.0298274 0.0383495 0.15 0 pose: 0.17107564 5.9045 -2.72744 0 0.004343 0.0049771 -0.742849 0.669426 uwb: 0.49987813 1078.64 422.101 +imu_odom_: 1691062826.932561446 0.272939 -0.124498 10.2759 -0.0628506 -0.00532632 0.0415453 0.15 0 pose: 0.0 5.9045 -2.72744 0 0.004343 0.0049771 -0.742849 0.669426 uwb: 0.0 1078.64 422.101 +imu_odom_: 1691062826.958785966 -0.208296 -0.287304 10.1754 -0.0351537 0.0138484 0.0308927 0.15 -0.02 pose: 0.6914129 5.9045 -2.72744 0 0.00443258 0.00572222 -0.742826 0.669445 uwb: 0.50114971 1079.19 421.867 +imu_odom_: 1691062826.983560115 0.131681 -0.351948 9.43315 -0.04048 -0.00745685 0.052198 0.16 0.02 pose: 0.42150613 5.90507 -2.74157 0 0.00543393 0.00513371 -0.742764 0.669512 uwb: 0.0 1079.19 421.867 +imu_odom_: 1691062826.999582160 0.442927 -0.172383 10.3789 -0.0447411 -0.0117179 0.052198 0.16 0.02 pose: 0.0 5.90507 -2.74157 0 0.00543393 0.00513371 -0.742764 0.669512 uwb: 0.50023393 1079.23 421.565 +imu_odom_: 1691062827.25569570 0.627281 -0.0861913 10.3525 -0.0490022 -0.0255663 0.0575243 0.16 0.02 pose: 0.50945005 5.90507 -2.74157 0 0.00799323 0.00633529 -0.742783 0.669454 uwb: 0.0 1079.23 421.565 +imu_odom_: 1691062827.51799924 0.739808 -0.205901 9.80665 -0.0532632 -0.0490022 0.0372843 0.16 0.02 pose: 0.0 5.90507 -2.74157 0 0.00799323 0.00633529 -0.742783 0.669454 uwb: 0.50003854 1078.19 421.637 +imu_odom_: 1691062827.75626504 0.308852 -0.0646434 9.65103 -0.0383495 -0.0468716 0.04048 0.15 0 pose: 0.42855238 5.90564 -2.7557 0 0.00623487 0.00568574 -0.742608 0.669673 uwb: 0.0 1078.19 421.637 +imu_odom_: 1691062827.91561055 0.632069 -0.395043 10.1299 -0.0607201 -0.036219 0.056459 0.15 0 pose: 0.0 5.90564 -2.7557 0 0.00623487 0.00568574 -0.742608 0.669673 uwb: 0.0 1078.19 421.637 +imu_odom_: 1691062827.106512164 0.766145 -0.0742203 9.85932 -0.0340885 -0.0170442 0.0394148 0.15 0 pose: 0.0 5.90564 -2.7557 0 0.00623487 0.00568574 -0.742608 0.669673 uwb: 0.49978481 1077.16 421.641 +imu_odom_: 1691062827.134585741 0.0287304 -0.306458 9.63666 -0.0490022 0.00426106 0.0617853 0.17 0 pose: 0.49982855 5.90564 -2.7557 0 0.00339122 0.00134583 -0.742541 0.669791 uwb: 0.0 1077.16 421.641 +imu_odom_: 1691062827.158653516 0.244209 -0.167594 9.66539 -0.0383495 0.04048 0.04048 0.17 0 pose: 0.39004010 5.89886 -2.76305 0 0.00247118 -0.0008054 -0.742444 0.669903 uwb: 0.49942025 1073.12 421.164 +imu_odom_: 1691062827.174656021 0.301669 -0.0622492 10.0317 -0.0500674 -0.00213053 0.0490022 0.17 0 pose: 0.0 5.89886 -2.76305 0 0.00247118 -0.0008054 -0.742444 0.669903 uwb: 0.0 1073.12 421.164 +imu_odom_: 1691062827.201536169 0.452504 -0.203507 9.8282 -0.0628506 0.00745685 0.04048 0.17 0 pose: 0.45014318 5.89944 -2.77718 0 0.00425736 0.00135971 -0.742233 0.670127 uwb: 0.50008229 1074.16 421.036 +imu_odom_: 1691062827.228705051 0.591368 -0.339977 10.2113 -0.0841559 -0.0255663 0.0585895 0.17 0 pose: 0.0 5.89944 -2.77718 0 0.00425736 0.00135971 -0.742233 0.670127 uwb: 0.0 1074.16 421.036 +imu_odom_: 1691062827.244618602 0.25618 -0.184354 10.0461 -0.0660464 -0.02024 0.0500674 0.17 -0.02 pose: 0.41214128 5.89944 -2.77718 0 0.00603282 0.000754216 -0.742161 0.670194 uwb: 0.50102431 1074.16 421.082 +imu_odom_: 1691062827.271767652 0.363919 -0.071826 10.386 -0.052198 -0.0213053 0.052198 0.17 -0.02 pose: 0.0 5.89944 -2.77718 0 0.00603282 0.000754216 -0.742161 0.670194 uwb: 0.0 1074.16 421.082 +imu_odom_: 1691062827.297599321 0.519542 -0.47884 10.3238 -0.0511327 -0.00639159 0.0479369 0.18 0 pose: 0.52916847 5.90004 -2.79131 0 0.00179576 0.00046914 -0.741965 0.670436 uwb: 0.50068017 1077.7 421.5 +imu_odom_: 1691062827.323562816 0.509965 -0.208296 9.991 -0.0745685 -0.0117179 0.0649811 0.23 0.02 pose: 0.42834823 5.89327 -2.79868 0 0.00317538 -0.00112545 -0.741794 0.67062 uwb: 0.0 1077.7 421.5 +imu_odom_: 1691062827.349506187 0.864307 -0.205901 9.67736 -0.0575243 0.02024 0.0426106 0.17 0.02 pose: 0.0 5.89327 -2.79868 0 0.00317538 -0.00112545 -0.741794 0.67062 uwb: 0.49750995 1078.24 421.289 +imu_odom_: 1691062827.376533327 0.141258 -0.138864 9.79468 -0.0681769 0.0191748 0.0596548 0.22 -0.02 pose: 0.52079231 5.90064 -2.80544 0 -0.0014371 -0.00219734 -0.741513 0.670933 uwb: 0.0 1078.24 421.289 +imu_odom_: 1691062827.393675889 0.318429 -0.289698 9.67736 -0.0490022 -0.0255663 0.0479369 0.22 -0.02 pose: 0.0 5.90064 -2.80544 0 -0.0014371 -0.00219734 -0.741513 0.670933 uwb: 0.49896235 1079.75 421.565 +imu_odom_: 1691062827.417523176 0.318429 -0.409408 9.74679 -0.0649811 -0.0394148 0.0607201 0.24 0 pose: 0.24971596 5.89389 -2.81281 0 -0.00199755 -0.00276698 -0.741445 0.671005 uwb: 0.0 1079.75 421.565 +imu_odom_: 1691062827.441644614 0.471658 -0.260968 9.80904 -0.0468716 0.0138484 0.0415453 0.24 0 pose: 0.44047500 5.90127 -2.81957 0 -0.0004376870.000676678 -0.74122 0.671262 uwb: 0.0 1079.75 421.565 +imu_odom_: 1691062827.466501300 0.457293 -0.402226 9.67497 -0.0681769 -0.0213053 0.0617853 0.18 0 pose: 0.41036222 5.89452 -2.82695 0 -0.00278875 0.000580211 -0.741085 0.671405 uwb: 0.50008521 1079.75 421.565 +imu_odom_: 1691062827.492506209 0.600945 -0.225055 10.1634 -0.0351537 0.00532632 0.04048 0.18 0 pose: 0.0 5.89452 -2.82695 0 -0.00278875 0.000580211 -0.741085 0.671405 uwb: 0.0 1079.75 421.565 +imu_odom_: 1691062827.508495590 0.792481 -0.184354 10.0772 -0.0532632 -0.00532632 0.0468716 0.18 0 pose: 0.50861595 5.89497 -2.83688 0 -0.00550412 -0.000469585-0.740891 0.671603 uwb: 0.50220258 1079.21 421.752 +imu_odom_: 1691062827.535553353 0.385466 -0.215478 9.56723 -0.0553937 0.0223706 0.04048 0.18 0 pose: 0.0 5.89497 -2.83688 0 -0.00550412 -0.000469585-0.740891 0.671603 uwb: 0.0 1079.21 421.752 +imu_odom_: 1691062827.561551845 0.203507 -0.428562 10.0461 -0.0735032 0.00532632 0.0553937 0.18 0 pose: 0.43047144 5.89517 -2.84108 0 -0.00348664 -0.000703838-0.740855 0.671656 uwb: 0.50055185 1079.21 421.752 +imu_odom_: 1691062827.588484782 0.533907 -0.371101 9.50019 -0.0596548 0.00532632 0.0436758 0.18 0 pose: 0.8020938 5.89517 -2.84108 0 -0.00332018 0.000156331 -0.740811 0.671705 uwb: 0.0 1079.21 421.752 +imu_odom_: 1691062827.604480288 0.608127 -0.31364 10.1586 -0.0543285 0.02024 0.056459 0.18 0 pose: 0.25987119 5.89582 -2.8552 0 -0.00372878 0.00206249 -0.7407 0.671822 uwb: 0.49984022 1077.22 421.269 +imu_odom_: 1691062827.631594922 0.656011 -0.186748 10.0987 -0.0330232 0.00106526 0.0330232 0.18 0 pose: 0.0 5.89582 -2.8552 0 -0.00372878 0.00206249 -0.7407 0.671822 uwb: 0.0 1077.22 421.269 +imu_odom_: 1691062827.647537931 0.318429 -0.186748 9.76595 -0.0436758 0.0213053 0.056459 0.25 0.02 pose: 0.26935853 5.89582 -2.8552 0 -0.00607162 0.00151142 -0.740627 0.671887 uwb: 0.49879320 1076.21 421.089 +imu_odom_: 1691062827.674551946 0.519542 -0.0502782 10.4459 -0.0394148 0.00639159 0.0458064 0.25 0.02 pose: 0.0 5.89582 -2.8552 0 -0.00607162 0.00151142 -0.740627 0.671887 uwb: 0.0 1076.21 421.089 +imu_odom_: 1691062827.699506918 0.921768 -0.37589 9.64145 -0.072438 -0.0127832 0.0511327 0.25 0.02 pose: 0.59044691 5.88908 -2.8626 0 -0.00450841 -0.00191817 -0.740557 0.671976 uwb: 0.50062184 1078.28 421.01 +imu_odom_: 1691062827.726486811 1.01514 -0.339977 9.991 -0.0447411 0.0245011 0.0436758 0.21 0.02 pose: 0.43964964 5.88975 -2.87672 0 -0.00575856 -0.0042848 -0.740413 0.672114 uwb: 0.0 1078.28 421.01 +imu_odom_: 1691062827.751619980 0.514753 -0.215478 9.84256 -0.0553937 0.00852212 0.052198 0.21 0.02 pose: 0.0 5.88975 -2.87672 0 -0.00575856 -0.0042848 -0.740413 0.672114 uwb: 0.49865320 1078.3 420.87 +imu_odom_: 1691062827.778454339 0.629675 -0.28491 9.38048 -0.0692422 -0.0255663 0.0511327 0.21 0 pose: 0.7030206 5.88975 -2.87672 0 -0.00627408 -0.00458424 -0.7404 0.672122 uwb: 0.0 1078.3 420.87 +imu_odom_: 1691062827.803511972 0.299275 -0.28491 9.66539 -0.056459 0.0276969 0.0426106 0.21 0 pose: 0.0 5.88975 -2.87672 0 -0.00627408 -0.00458424 -0.7404 0.672122 uwb: 0.50062768 1081.33 421.335 +imu_odom_: 1691062827.830471449 0.196325 -0.232238 9.87129 -0.0681769 -0.0117179 0.0575243 0.21 -0.02 pose: 0.52094980 5.89041 -2.89085 0 -0.00611888 -0.00440442 -0.74024 0.672301 uwb: 0.0 1081.33 421.335 +imu_odom_: 1691062827.846745188 0.486023 -0.227449 9.94791 -0.0596548 -0.0127832 0.0490022 0.21 -0.02 pose: 0.0 5.89041 -2.89085 0 -0.00611888 -0.00440442 -0.74024 0.672301 uwb: 0.0 1081.33 421.335 +imu_odom_: 1691062827.873486803 0.392649 -0.426168 10.0652 -0.0841559 0.0213053 0.0532632 0.18 0 pose: 0.53064713 5.89041 -2.89085 0 -0.00577872 -0.00212339 -0.740086 0.672484 uwb: 0.0 1081.33 421.335 +imu_odom_: 1691062827.898528686 0.205901 -0.40462 9.97185 -0.056459 0.0319579 0.0351537 0.19 0 pose: 0.61789986 5.88638 -2.91018 0 -0.00441234 0.000735512 -0.739801 0.672811 uwb: 0.100000709 1082.84 421.572 +imu_odom_: 1691062827.915604168 0.502782 -0.225055 10.6638 -0.0628506 -0.0372843 0.0490022 0.19 0 pose: 0.0 5.88638 -2.91018 0 -0.00441234 0.000735512 -0.739801 0.672811 uwb: 0.0 1082.84 421.572 +imu_odom_: 1691062827.940483020 0.430956 -0.191536 10.2448 -0.0351537 -0.0319579 0.0340885 0.18 0 pose: 0.8048353 5.88438 -2.91238 0 -0.00400434 0.00158355 -0.739811 0.672801 uwb: 0.0 1082.84 421.572 +imu_odom_: 1691062827.967522992 0.610521 -0.141258 9.52653 -0.0617853 -0.0223706 0.0511327 0.18 0 pose: 0.0 5.88438 -2.91238 0 -0.00400434 0.00158355 -0.739811 0.672801 uwb: 0.49943774 1086.4 421.904 +imu_odom_: 1691062827.993721556 1.00796 -0.237026 9.76116 -0.0511327 0.0308927 0.0298274 0.2 0 pose: 0.41961626 5.88438 -2.91238 0 -0.00304876 0.000846139 -0.7398 0.67282 uwb: 0.50049643 1090.91 422.762 +imu_odom_: 1691062828.20516835 0.430956 -0.282516 9.79947 -0.0628506 -0.0106526 0.0479369 0.2 0 pose: 0.0 5.88438 -2.91238 0 -0.00304876 0.000846139 -0.7398 0.67282 uwb: 0.0 1090.91 422.762 +imu_odom_: 1691062828.46622364 0.325611 -0.416591 9.57202 -0.0596548 -0.0532632 0.0340885 0.18 0 pose: 0.52024692 5.88507 -2.92651 0 -0.0035965 -0.00369084 -0.739749 0.672863 uwb: 0.49944067 1089.39 422.572 +imu_odom_: 1691062828.73494347 0.54109 -0.272939 9.81144 -0.0436758 -0.00213053 0.0351537 0.25 -0.02 pose: 0.53023300 5.88577 -2.94063 0 -0.00447157 -0.00133149 -0.739741 0.672876 uwb: 0.0 1089.39 422.572 +imu_odom_: 1691062828.89641510 0.411803 -0.318429 9.95509 -0.0447411 0.00639159 0.036219 0.25 -0.02 pose: 0.0 5.88577 -2.94063 0 -0.00447157 -0.00133149 -0.739741 0.672876 uwb: 0.0 1089.39 422.572 +imu_odom_: 1691062828.116475870 0.584185 -0.411803 9.67976 -0.0532632 -0.0223706 0.0543285 0.25 0.02 pose: 0.61096736 5.87905 -2.94804 0 -0.00566127 -0.000438022-0.739824 0.672777 uwb: 0.49997439 1093.52 422.585 +imu_odom_: 1691062828.142548443 0.560243 -0.452504 10.252 -0.0649811 -0.015979 0.0511327 0.25 0.02 pose: 0.7978942 5.87905 -2.94804 0 -0.00649195 -0.000332091-0.739779 0.672818 uwb: 0.0 1093.52 422.585 +imu_odom_: 1691062828.169457465 0.600945 -0.248997 10.4244 -0.0255663 -0.0617853 0.0372843 0.25 0 pose: 0.44927991 5.88161 -2.96011 0 -0.0108024 0.00138271 -0.739545 0.673019 uwb: 0.49974691 1090.49 422.149 +imu_odom_: 1691062828.195593034 0.572214 -0.270545 9.95748 -0.0596548 -0.0170442 0.0479369 0.25 0 pose: 0.0 5.88161 -2.96011 0 -0.0108024 0.00138271 -0.739545 0.673019 uwb: 0.50129265 1089.99 422.001 +imu_odom_: 1691062828.212495860 0.21069 -0.0814029 10.2017 -0.0351537 0.0106526 0.0426106 0.23 0.02 pose: 0.34978958 5.87975 -2.96217 0 -0.00958407 -0.00251779 -0.739567 0.67301 uwb: 0.0 1089.99 422.001 +imu_odom_: 1691062828.228520531 0.919373 -0.270545 10.1131 -0.0511327 -0.0458064 0.0628506 0.23 0.02 pose: 0.0 5.87975 -2.96217 0 -0.00958407 -0.00251779 -0.739567 0.67301 uwb: 0.0 1089.99 422.001 +imu_odom_: 1691062828.255523173 0.54109 -0.203507 9.92636 -0.0468716 0.0479369 0.0436758 0.25 0 pose: 0.50993130 5.88045 -2.97629 0 -0.00799539 -0.00467028 -0.73939 0.673214 uwb: 0.49727080 1093.55 422.376 +imu_odom_: 1691062828.271680836 0.316035 -0.146046 9.82341 -0.0436758 0.00958738 0.0458064 0.25 0 pose: 0.0 5.88045 -2.97629 0 -0.00799539 -0.00467028 -0.73939 0.673214 uwb: 0.0 1093.55 422.376 +imu_odom_: 1691062828.298582567 0.270545 -0.270545 10.2185 -0.0511327 -0.00213053 0.0458064 0.25 0.02 pose: 0.43160305 5.87701 -2.9801 0 -0.00312909 -0.0039698 -0.739353 0.673299 uwb: 0.50147347 1094.11 422.11 +imu_odom_: 1691062828.323622992 0.847547 -0.21069 10.2568 -0.076699 -0.0415453 0.0532632 0.25 0.02 pose: 0.7776828 5.87374 -2.98371 0 -0.00271865 -0.00330537 -0.739339 0.673319 uwb: 0.0 1094.11 422.11 +imu_odom_: 1691062828.350514224 0.409408 -0.234632 9.92875 -0.0490022 0.0117179 0.0383495 0.22 -0.02 pose: 0.27265126 5.88116 -2.99042 0 -0.00247889 -0.00226093 -0.739263 0.673408 uwb: 0.49886612 1092.6 421.889 +imu_odom_: 1691062828.375672476 0.627281 -0.198719 9.8282 -0.0649811 -0.04048 0.0511327 0.2 0 pose: 0.23830664 5.88116 -2.99042 0 -0.00359338 -0.00291841 -0.739184 0.673487 uwb: 0.0 1092.6 421.889 +imu_odom_: 1691062828.392486349 0.21069 0.00718261 9.57202 -0.0468716 -0.00532632 0.0436758 0.2 0 pose: 0.0 5.88116 -2.99042 0 -0.00359338 -0.00291841 -0.739184 0.673487 uwb: 0.0 1092.6 421.889 +imu_odom_: 1691062828.418563005 0.227449 -0.304064 10.1035 -0.0692422 0.0117179 0.0596548 0.18 -0.02 pose: 0.28191405 5.87446 -2.99784 0 -0.00285882 -0.00199657 -0.739163 0.673518 uwb: 0.49990440 1096.61 422.689 +imu_odom_: 1691062828.442456374 0.203507 -0.347159 9.97664 -0.0415453 0.0415453 0.0447411 0.18 -0.02 pose: 0.0 5.87446 -2.99784 0 -0.00285882 -0.00199657 -0.739163 0.673518 uwb: 0.0 1096.61 422.689 +imu_odom_: 1691062828.466483318 0.1652 -0.442927 10.0652 -0.0628506 -0.0181095 0.0479369 0.18 0 pose: 0.41820759 5.88188 -3.00454 0 -0.00213756 -0.00255896 -0.739024 0.673671 uwb: 0.49992189 1095.65 422.196 +imu_odom_: 1691062828.482414661 0.464475 -0.0790087 9.7851 -0.04048 -0.02024 0.0490022 0.18 0 pose: 0.0 5.88188 -3.00454 0 -0.00213756 -0.00255896 -0.739024 0.673671 uwb: 0.0 1095.65 422.196 +imu_odom_: 1691062828.509564877 0.648829 -0.1652 9.50498 -0.0639159 0.00639159 0.052198 0.25 0.02 pose: 0.48908421 5.87518 -3.01196 0 -5.22815e-050.0024534 -0.73884 0.673877 uwb: 0.50123432 1093.63 421.889 +imu_odom_: 1691062828.525444890 0.512359 -0.148441 10.07 -0.0415453 0.015979 0.0436758 0.25 0.02 pose: 0.0 5.87518 -3.01196 0 -5.22815e-050.0024534 -0.73884 0.673877 uwb: 0.0 1093.63 421.889 +imu_odom_: 1691062828.552430616 0.76375 -0.265756 9.81623 -0.0692422 -0.036219 0.0543285 0.25 0 pose: 0.40097987 5.87592 -3.02609 0 -0.0001013170.00182602 -0.738711 0.67402 uwb: 0.49866197 1098.15 422.711 +imu_odom_: 1691062828.577537829 0.821211 -0.208296 10.1083 -0.0383495 -0.0319579 0.0394148 0.25 0 pose: 0.0 5.87592 -3.02609 0 -0.0001013170.00182602 -0.738711 0.67402 uwb: 0.0 1098.15 422.711 +imu_odom_: 1691062828.594441239 0.395043 -0.19393 10.2208 -0.0575243 0.0181095 0.0436758 0.19 -0.02 pose: 0.42931068 5.87592 -3.02609 0 -0.00181896 -0.0017134 -0.738571 0.674171 uwb: 0.50249424 1099.7 422.785 +imu_odom_: 1691062828.619585783 0.426168 -0.11971 9.39964 -0.0639159 -0.00106526 0.0415453 0.19 -0.02 pose: 0.0 5.87592 -3.02609 0 -0.00181896 -0.0017134 -0.738571 0.674171 uwb: 0.0 1099.7 422.785 +imu_odom_: 1691062828.636558897 0.277727 0.00957681 10.2113 -0.0607201 -0.0308927 0.0426106 0.22 0.02 pose: 0.51979780 5.87666 -3.04021 0 -0.00508709 -0.00462823 -0.738449 0.674275 uwb: 0.0 1099.7 422.785 +imu_odom_: 1691062828.661762355 0.407014 -0.423774 9.53371 -0.0596548 -0.0149137 0.0436758 0.22 0.02 pose: 0.0 5.87666 -3.04021 0 -0.00508709 -0.00462823 -0.738449 0.674275 uwb: 0.50116140 1101.29 422.586 +imu_odom_: 1691062828.688500179 0.622492 -0.213084 9.80186 -0.0511327 0.0245011 0.0543285 0.23 0.02 pose: 0.42082077 5.86997 -3.04765 0 -0.00111049 -0.00415362 -0.738432 0.674314 uwb: 0.0 1101.29 422.586 +imu_odom_: 1691062828.713469734 0.646434 -0.31364 10.1131 -0.0287621 0.0149137 0.0266316 0.23 0.02 pose: 0.0 5.86997 -3.04765 0 -0.00111049 -0.00415362 -0.738432 0.674314 uwb: 0.49817783 1103.88 422.64 +imu_odom_: 1691062828.730493012 0.42138 -0.179565 9.85214 -0.0447411 -0.0117179 0.0543285 0.22 0 pose: 0.42019956 5.87741 -3.05433 0 -0.00210802 -0.00249092 -0.738355 0.674404 uwb: 0.0 1103.88 422.64 +imu_odom_: 1691062828.755615682 0.294487 -0.0742203 9.90721 -0.0447411 -0.00958738 0.0394148 0.22 0 pose: 0.0 5.87741 -3.05433 0 -0.00210802 -0.00249092 -0.738355 0.674404 uwb: 0.49915486 1101.36 422.216 +imu_odom_: 1691062828.782420877 0.895431 -0.299275 9.72525 -0.0735032 -0.0415453 0.0543285 0.23 0 pose: 0.51908908 5.87073 -3.06177 0 -0.00480768 -0.00378211 -0.738314 0.67443 uwb: 0.0 1101.36 422.216 +imu_odom_: 1691062828.798523418 0.342371 -0.0790087 9.84017 -0.0458064 0.072438 0.0372843 0.23 0 pose: 0.0 5.87073 -3.06177 0 -0.00480768 -0.00378211 -0.738314 0.67443 uwb: 0.50187594 1102.42 422.093 +imu_odom_: 1691062828.825547934 0.208296 -0.234632 9.59596 -0.0756338 0.0138484 0.0596548 0.25 0 pose: 0.78029603 5.86791 -3.07987 0 -0.00213634 -0.00409586 -0.738157 0.674613 uwb: 0.0 1102.42 422.093 +imu_odom_: 1691062828.850439035 0.213084 -0.316035 9.72046 -0.0628506 0.0681769 0.0426106 0.2 -0.02 pose: 0.6925213 5.8648 -3.08333 0 -0.0017171 -0.00345045 -0.738113 0.674666 uwb: 0.50005022 1103.5 421.904 +imu_odom_: 1691062828.875685656 0.189142 -0.4956 9.81144 -0.0543285 0.015979 0.0447411 0.21 0 pose: 0.44990404 5.87224 -3.09001 0 0.000921894 0.00144982 -0.737957 0.674846 uwb: 0.0 1103.5 421.904 +imu_odom_: 1691062828.898430802 0.565032 -0.466869 9.75637 -0.056459 0.0319579 0.0500674 0.21 0 pose: 0.0 5.87224 -3.09001 0 0.000921894 0.00144982 -0.737957 0.674846 uwb: 0.49812534 1103.02 421.652 +imu_odom_: 1691062828.914434474 0.347159 -0.162806 10.1538 -0.0745685 -0.0223706 0.0585895 0.18 0.02 pose: 0.31140854 5.86557 -3.09746 0 0.000223646 0.00418155 -0.73789 0.674908 uwb: 0.0 1103.02 421.652 +imu_odom_: 1691062828.939401404 0.632069 -0.0933739 9.61511 -0.0713727 0.0298274 0.0372843 0.18 0.02 pose: 0.0 5.86557 -3.09746 0 0.000223646 0.00418155 -0.73789 0.674908 uwb: 0.0 1103.02 421.652 +imu_odom_: 1691062828.962516652 0.624887 -0.490811 9.81862 -0.0841559 -0.00639159 0.0553937 0.23 0.02 pose: 0.40872316 5.87302 -3.10413 0 -0.0003965170.00270692 -0.737741 0.675079 uwb: 0.50049353 1103.05 421.467 +imu_odom_: 1691062828.978520616 0.148441 -0.385466 10.082 -0.0607201 0.036219 0.0351537 0.23 0.02 pose: 0.0 5.87302 -3.10413 0 -0.0003965170.00270692 -0.737741 0.675079 uwb: 0.0 1103.05 421.467 +imu_odom_: 1691062829.5439262 0.320823 -0.229843 9.94551 -0.0596548 0.0170442 0.0468716 0.25 0.02 pose: 0.56068411 5.86635 -3.11158 0 -0.00231067 0.00344972 -0.737651 0.67517 uwb: 0.49843740 1099.02 420.714 +imu_odom_: 1691062829.31523501 -0.237026 -0.201113 9.85693 -0.0266316 0.0234358 0.0394148 0.19 -0.02 pose: 0.7896696 5.86635 -3.11158 0 -0.00147018 0.00351075 -0.737631 0.675193 uwb: 0.0 1099.02 420.714 +imu_odom_: 1691062829.58548018 0.430956 -0.158017 9.84256 -0.0585895 -0.0181095 0.0458064 0.25 0 pose: 0.0 5.86635 -3.11158 0 -0.00147018 0.00351075 -0.737631 0.675193 uwb: 0.0 1099.02 420.714 +imu_odom_: 1691062829.83555487 0.110133 0.114922 10.8864 -0.0394148 -0.0276969 0.0415453 0.2 0.02 pose: 0.51995529 5.86713 -3.1257 0 0.00294217 0.00449577 -0.737558 0.675263 uwb: 0.0 1099.02 420.714 +imu_odom_: 1691062829.100547559 0.167594 -0.311246 9.1674 -0.0607201 -0.00745685 0.0490022 0.2 0.02 pose: 0.0 5.86713 -3.1257 0 0.00294217 0.00449577 -0.737558 0.675263 uwb: 0.99976214 1100.06 420.68 +imu_odom_: 1691062829.125423495 0.102951 -0.390255 9.13148 -0.0575243 -0.0415453 0.0447411 0.18 0 pose: 0.62134718 5.86792 -3.13982 0 0.00478691 0.00322318 -0.737441 0.675387 uwb: 0.0 1100.06 420.68 +imu_odom_: 1691062829.152387931 0.773327 -0.268151 9.87129 -0.0490022 -0.0213053 0.0372843 0.18 0 pose: 0.7995857 5.86792 -3.13982 0 0.00471895 0.00392675 -0.737428 0.675398 uwb: 0.50013481 1100.05 420.726 +imu_odom_: 1691062829.178548874 0.691924 -0.0790087 9.94312 -0.0394148 -0.015979 0.0426106 0.18 0.02 pose: 0.43844515 5.86318 -3.14512 0 0.00235149 0.00351733 -0.737435 0.675405 uwb: 0.0 1100.05 420.726 +imu_odom_: 1691062829.202453617 0.385466 -0.011971 9.84496 -0.0500674 0.0138484 0.0511327 0.18 0.02 pose: 0.0 5.86318 -3.14512 0 0.00235149 0.00351733 -0.737435 0.675405 uwb: 0.49975859 1104.21 420.838 +imu_odom_: 1691062829.217458683 0.459687 -0.275333 9.97903 -0.0575243 -0.00745685 0.0628506 0.18 0.02 pose: 0.50065686 5.86401 -3.1592 0 0.00299011 -0.000878434-0.737315 0.675542 uwb: 0.0 1104.21 420.838 +imu_odom_: 1691062829.242454195 0.430956 -0.241814 9.83059 -0.0500674 0.036219 0.0319579 0.18 0.02 pose: 0.0 5.86401 -3.1592 0 0.00299011 -0.000878434-0.737315 0.675542 uwb: 0.0 1104.21 420.838 +imu_odom_: 1691062829.267393710 0.656011 -0.397437 10.0533 -0.0415453 -0.0117179 0.0500674 0.25 0 pose: 0.40000578 5.86205 -3.1614 0 -0.00055754 0.000151591 -0.737263 0.675606 uwb: 0.50038562 1107.79 421.255 +imu_odom_: 1691062829.283449587 0.407014 -0.339977 9.71088 -0.0532632 -0.0127832 0.0458064 0.25 0 pose: 0.0 5.86205 -3.1614 0 -0.00055754 0.000151591 -0.737263 0.675606 uwb: 0.0 1107.79 421.255 +imu_odom_: 1691062829.309445457 0.553061 -0.304064 10.2017 -0.0585895 -0.00106526 0.0649811 0.18 0 pose: 0.40995392 5.86285 -3.17552 0 -0.00350253 0.00111232 -0.737133 0.675738 uwb: 0.50020773 1108.81 421.375 +imu_odom_: 1691062829.332444046 0.502782 -0.227449 10.3932 -0.0639159 -0.0106526 0.0458064 0.18 0 pose: 0.0 5.86285 -3.17552 0 -0.00350253 0.00111232 -0.737133 0.675738 uwb: 0.0 1108.81 421.375 +imu_odom_: 1691062829.349365247 0.0933739 -0.0526724 9.85932 -0.0447411 0.0287621 0.0447411 0.18 0.02 pose: 0.48994459 5.85833 -3.18059 0 -0.00461702 -0.00202914 -0.73687 0.676016 uwb: 0.49989857 1108.83 421.26 +imu_odom_: 1691062829.373368568 0.435745 -0.186748 9.84735 -0.0692422 -0.00745685 0.0447411 0.18 0.02 pose: 0.0 5.85833 -3.18059 0 -0.00461702 -0.00202914 -0.73687 0.676016 uwb: 0.0 1108.83 421.26 +imu_odom_: 1691062829.398562401 0.227449 -0.275333 9.6199 -0.0756338 -0.00745685 0.0639159 0.19 0 pose: 0.40924522 5.86366 -3.18963 0 -0.000579626-0.00203733 -0.736811 0.676096 uwb: 0.49907029 1110.86 421.644 +imu_odom_: 1691062829.425529463 0.512359 -0.138864 9.43794 -0.0596548 -0.0191748 0.0415453 0.19 0 pose: 0.8011606 5.86366 -3.18963 0 -0.000290597-0.00126685 -0.736746 0.676168 uwb: 0.0 1110.86 421.644 +imu_odom_: 1691062829.441527594 0.258574 -0.241814 10.4363 -0.056459 0.00852212 0.0468716 0.19 0 pose: 0.24221475 5.85702 -3.1971 0 0.000104237 -0.000320438-0.736601 0.676327 uwb: 0.0 1110.86 421.644 +imu_odom_: 1691062829.468438367 0.378284 -0.318429 10.0413 -0.056459 0.036219 0.0500674 0.19 0 pose: 0.0 5.85702 -3.1971 0 0.000104237 -0.000320438-0.736601 0.676327 uwb: 0.50030397 1108.37 420.958 +imu_odom_: 1691062829.494445027 0.533907 -0.174777 10.1993 -0.0660464 -0.0106526 0.0660464 0.18 0.05 pose: 0.28020499 5.86449 -3.20375 0 -8.21667e-05-0.00158592 -0.736567 0.676363 uwb: 0.50189054 1109.41 420.986 +imu_odom_: 1691062829.511412308 0.691924 -0.162806 10.1203 -0.0511327 -0.0468716 0.0479369 0.18 0.05 pose: 0.0 5.86449 -3.20375 0 -8.21667e-05-0.00158592 -0.736567 0.676363 uwb: 0.0 1109.41 420.986 +imu_odom_: 1691062829.537492756 0.667982 0.071826 10.5896 -0.0639159 -0.0308927 0.0490022 0.18 0 pose: 0.42820242 5.85785 -3.21122 0 -0.0008495940.00114717 -0.736381 0.676565 uwb: 0.0 1109.41 420.986 +imu_odom_: 1691062829.564519605 0.414197 -0.0287304 9.96706 -0.04048 -0.00106526 0.0511327 0.25 0 pose: 0.43134641 5.85785 -3.21122 0 -0.00273393 -0.00305509 -0.736145 0.676812 uwb: 0.49662918 1110.46 420.947 +imu_odom_: 1691062829.590643800 0.19393 -0.292093 9.64384 -0.0660464 0.0394148 0.052198 0.19 0 pose: 0.0 5.85785 -3.21122 0 -0.00273393 -0.00305509 -0.736145 0.676812 uwb: 0.0 1110.46 420.947 +imu_odom_: 1691062829.617383958 0.821211 -0.272939 9.89524 -0.0468716 -0.0170442 0.0372843 0.25 -0.02 pose: 0.52970805 5.85869 -3.22534 0 0.000452003 -0.00485646 -0.735959 0.677009 uwb: 0.50159014 1107.46 420.216 +imu_odom_: 1691062829.642527628 0.507571 -0.414197 9.39245 -0.0490022 -0.0266316 0.0479369 0.25 -0.02 pose: 0.0 5.85869 -3.22534 0 0.000452003 -0.00485646 -0.735959 0.677009 uwb: 0.0 1107.46 420.216 +imu_odom_: 1691062829.659514159 0.37589 -0.110133 10.2879 -0.0479369 0.0639159 0.0447411 0.21 0.02 pose: 0.69979792 5.85955 -3.23945 0 -0.00331494 -0.00285294 -0.735822 0.677161 uwb: 0.50023981 1108.48 420.358 +imu_odom_: 1691062829.676486981 0.270545 -0.296881 9.98382 -0.0511327 0.00852212 0.0394148 0.21 0.02 pose: 0.0 5.85955 -3.23945 0 -0.00331494 -0.00285294 -0.735822 0.677161 uwb: 0.0 1108.48 420.358 +imu_odom_: 1691062829.701428830 0.529119 -0.380678 9.9096 -0.04048 0.00426106 0.0287621 0.18 0 pose: 0.6897214 5.85955 -3.23945 0 -0.00243491 -0.00271436 -0.735814 0.677174 uwb: 0.50093976 1110.03 420.483 +imu_odom_: 1691062829.726576291 0.371101 -0.328006 10.0533 -0.0628506 -0.0319579 0.0447411 0.18 0 pose: 0.0 5.85955 -3.23945 0 -0.00243491 -0.00271436 -0.735814 0.677174 uwb: 0.0 1110.03 420.483 +imu_odom_: 1691062829.743392207 0.162806 0 9.67497 -0.0639159 -0.0266316 0.0468716 0.23 0 pose: 0.34120928 5.85292 -3.24694 0 -0.00114512 -0.000680028-0.735828 0.677167 uwb: 0.49828867 1112.08 420.755 +imu_odom_: 1691062829.759422128 0.538695 -0.287304 10.4004 -0.0713727 -0.0308927 0.0511327 0.23 0 pose: 0.0 5.85292 -3.24694 0 -0.00114512 -0.000680028-0.735828 0.677167 uwb: 0.0 1112.08 420.755 +imu_odom_: 1691062829.785362000 0.634463 -0.462081 9.54089 -0.0255663 -0.0340885 0.0266316 0.23 0 pose: 0.0 5.85292 -3.24694 0 -0.00114512 -0.000680028-0.735828 0.677167 uwb: 0.0 1112.08 420.755 +imu_odom_: 1691062829.801425460 0.320823 -0.11971 9.7875 -0.00532632 0.00426106 0.0383495 0.23 -0.02 pose: 0.49978774 5.85378 -3.26106 0 -0.00240832 0.00200315 -0.735822 0.677168 uwb: 0.50103017 1118.68 421.855 +imu_odom_: 1691062829.828436269 0.129287 -0.124498 9.71328 -0.0628506 0.0117179 0.056459 0.23 -0.02 pose: 0.0 5.85378 -3.26106 0 -0.00240832 0.00200315 -0.735822 0.677168 uwb: 0.0 1118.68 421.855 +imu_odom_: 1691062829.853353911 0.383072 -0.213084 9.72046 -0.0660464 -0.00106526 0.052198 0.21 0.02 pose: 0.75958895 5.85464 -3.27517 0 -0.00303246 0.000391754 -0.735809 0.677182 uwb: 0.49980233 1121.13 422.701 +imu_odom_: 1691062829.880608830 -0.047884 -0.308852 10.0245 -0.0436758 0.0223706 0.0340885 0.23 -0.02 pose: 0.43870472 5.84997 -3.28045 0 0.00117322 0.000665266 -0.735595 0.677421 uwb: 0.0 1121.13 422.701 +imu_odom_: 1691062829.905384730 0.1652 -0.306458 9.40682 -0.0745685 -0.0191748 0.0553937 0.23 -0.02 pose: 0.0 5.84997 -3.28045 0 0.00117322 0.000665266 -0.735595 0.677421 uwb: 0.49983150 1121.18 422.471 +imu_odom_: 1691062829.922542167 0.756568 0.107739 10.3094 -0.0511327 -0.0340885 0.0383495 0.22 0 pose: 0.7048872 5.84801 -3.28266 0 0.00166563 0.00128305 -0.735607 0.677405 uwb: 0.0 1121.18 422.471 +imu_odom_: 1691062829.947439977 0.414197 -0.0407014 10.0245 -0.0841559 -0.00426106 0.0479369 0.22 0 pose: 0.0 5.84801 -3.28266 0 0.00166563 0.00128305 -0.735607 0.677405 uwb: 0.49934152 1119.74 421.788 +imu_odom_: 1691062829.974353666 0.916979 -0.399832 9.56962 -0.0639159 0.00532632 0.0415453 0.23 0 pose: 0.52035777 5.85551 -3.28929 0 0.00334175 0.00468471 -0.735507 0.677493 uwb: 0.0 1119.74 421.788 +imu_odom_: 1691062829.999491503 0.371101 -0.268151 9.97185 -0.0671117 -0.0117179 0.0447411 0.23 0 pose: 0.0 5.85551 -3.28929 0 0.00334175 0.00468471 -0.735507 0.677493 uwb: 0.50012898 1120.27 421.777 +imu_odom_: 1691062830.16345917 0.416591 -0.059855 10.0317 -0.0628506 0.0223706 0.0372843 0.23 0.02 pose: 0.41988167 5.84889 -3.29678 0 0.00274836 0.00118614 -0.735435 0.677588 uwb: 0.0 1120.27 421.777 +imu_odom_: 1691062830.42530483 0.483629 -0.40462 9.52174 -0.0820254 -0.00106526 0.0543285 0.23 0.02 pose: 0.0 5.84889 -3.29678 0 0.00274836 0.00118614 -0.735435 0.677588 uwb: 0.0 1120.27 421.777 +imu_odom_: 1691062830.69463714 0.61531 -0.349553 9.68215 -0.0458064 0.0479369 0.0351537 0.23 -0.02 pose: 0.53100006 5.84976 -3.3109 0 -8.90898e-050.00213369 -0.735387 0.677644 uwb: 0.49877282 1122.9 421.825 +imu_odom_: 1691062830.95363048 -0.244209 -0.447716 9.63427 -0.0340885 0.0170442 0.0298274 0.19 0.02 pose: 0.41953462 5.84976 -3.3109 0 -0.00277019 0.002312 -0.735274 0.67776 uwb: 0.50170098 1125.51 421.931 +imu_odom_: 1691062830.122514432 0.146046 -0.169988 10.2735 -0.0436758 -0.00958738 0.036219 0.25 0 pose: 0.27881091 5.85064 -3.32501 0 -0.00357588 0.00241435 -0.735332 0.677694 uwb: 0.0 1125.51 421.931 +imu_odom_: 1691062830.147330580 0.177171 -0.174777 10.0341 -0.0319579 -0.0308927 0.0340885 0.2 0 pose: 0.25015928 5.85064 -3.32501 0 -0.00158623 0.00400476 -0.735392 0.677628 uwb: 0.49942903 1127.58 422.143 +imu_odom_: 1691062830.164328194 0.418985 -0.198719 9.65103 -0.0660464 -0.0351537 0.0479369 0.2 0 pose: 0.0 5.85064 -3.32501 0 -0.00158623 0.00400476 -0.735392 0.677628 uwb: 0.0 1127.58 422.143 +imu_odom_: 1691062830.190320855 0.292093 -0.0885855 10.1059 -0.0575243 -0.0266316 0.0447411 0.18 0 pose: 0.28135409 5.84403 -3.33251 0 0.00118439 0.0043613 -0.735421 0.677595 uwb: 0.0 1127.58 422.143 +imu_odom_: 1691062830.217314749 0.876278 -0.0885855 10.4866 -0.0681769 -0.0490022 0.0426106 0.18 0 pose: 0.0 5.84403 -3.33251 0 0.00118439 0.0043613 -0.735421 0.677595 uwb: 0.50030981 1128.11 422.117 +imu_odom_: 1691062830.233382876 0.675165 -0.251391 9.46667 -0.0468716 0.0138484 0.036219 0.19 0 pose: 0.41831844 5.85152 -3.33913 0 0.00240401 0.00233243 -0.735386 0.67764 uwb: 0.0 1128.11 422.117 +imu_odom_: 1691062830.259368830 0.390255 -0.107739 9.80904 -0.0543285 -0.00852212 0.0436758 0.19 0 pose: 0.0 5.85152 -3.33913 0 0.00240401 0.00233243 -0.735386 0.67764 uwb: 0.49953694 1129.68 422.225 +imu_odom_: 1691062830.274395769 0.234632 -0.469264 9.81623 -0.0490022 0.00106526 0.052198 0.17 0 pose: 0.52981014 5.8524 -3.35324 0 0.000972451 -0.0014344 -0.73533 0.677707 uwb: 0.0 1129.68 422.225 +imu_odom_: 1691062830.301393746 0.486023 -0.280122 10.2089 -0.0543285 -0.0298274 0.056459 0.17 0 pose: 0.0 5.8524 -3.35324 0 0.000972451 -0.0014344 -0.73533 0.677707 uwb: 0.50114393 1129.72 422.019 +imu_odom_: 1691062830.326316638 0.509965 -0.169988 10.4818 -0.0255663 0.00213053 0.0351537 0.2 0 pose: 0.40146986 5.84578 -3.36074 0 0.00252735 -0.00235544 -0.735276 0.677759 uwb: 0.0 1129.72 422.019 +imu_odom_: 1691062830.353316073 0.536301 -0.265756 10.0054 -0.0671117 -0.0213053 0.0511327 0.2 0 pose: 0.0 5.84578 -3.36074 0 0.00252735 -0.00235544 -0.735276 0.677759 uwb: 0.49832368 1133.32 422.525 +imu_odom_: 1691062830.378389456 -0.105345 -0.169988 9.78271 -0.0415453 0.0106526 0.0532632 0.18 0.02 pose: 0.42960818 5.84578 -3.36074 0 -0.000803136-0.00205587 -0.735096 0.67796 uwb: 0.0 1133.32 422.525 +imu_odom_: 1691062830.403321097 0.0837971 -0.179565 9.51456 -0.0500674 -0.0149137 0.056459 0.23 0.02 pose: 0.52913935 5.84667 -3.37485 0 -0.0035387 -0.00280735 -0.734967 0.678088 uwb: 0.0 1133.32 422.525 +imu_odom_: 1691062830.417378011 0.0335188 -0.110133 9.5385 -0.0426106 0.0191748 0.04048 0.23 0.02 pose: 0.0 5.84667 -3.37485 0 -0.0035387 -0.00280735 -0.734967 0.678088 uwb: 0.0 1133.32 422.525 +imu_odom_: 1691062830.442372065 0.181959 -0.339977 9.54568 -0.0681769 -0.0127832 0.0490022 0.23 0.02 pose: 0.0 5.84667 -3.37485 0 -0.0035387 -0.00280735 -0.734967 0.678088 uwb: 0.0 1133.32 422.525 +imu_odom_: 1691062830.469306171 0.59855 -0.363919 9.67257 -0.0639159 0.0149137 0.0575243 0.18 0 pose: 0.63000918 5.84757 -3.38896 0 0.00144246 0.000995046 -0.734725 0.678362 uwb: 0.100040963 1135.96 422.609 +imu_odom_: 1691062830.494351847 0.296881 -0.0167594 10.0197 -0.0681769 0.00745685 0.0490022 0.18 0.02 pose: 0.44958033 5.84097 -3.39647 0 -0.0007909530.00233282 -0.734508 0.678595 uwb: 0.50068021 1141.63 423.37 +imu_odom_: 1691062830.521435860 0.150835 -0.160412 10.1323 -0.0617853 -0.00319579 0.052198 0.18 0.02 pose: 0.0 5.84097 -3.39647 0 -0.0007909530.00233282 -0.734508 0.678595 uwb: 0.0 1141.63 423.37 +imu_odom_: 1691062830.546321129 0.177171 -0.227449 9.73482 -0.0447411 0.00319579 0.0468716 0.2 0 pose: 0.8013356 5.84097 -3.39647 0 -8.1319e-05 0.00203044 -0.734482 0.678625 uwb: 0.49926862 1145.64 424.442 +imu_odom_: 1691062830.563435111 0.454898 -0.181959 9.67736 -0.0543285 -0.0628506 0.056459 0.2 0 pose: 0.0 5.84097 -3.39647 0 -8.1319e-05 0.00203044 -0.734482 0.678625 uwb: 0.0 1145.64 424.442 +imu_odom_: 1691062830.588330005 0.543484 -0.0885855 10.2137 -0.0511327 -0.0319579 0.0426106 0.18 0 pose: 0.52010988 5.84188 -3.41059 0 0.00430146 0.00335672 -0.734281 0.678824 uwb: 0.0 1145.64 424.442 +imu_odom_: 1691062830.615314857 0.811634 0.0550666 10.1251 -0.0777643 -0.0479369 0.0543285 0.18 0 pose: 0.0 5.84188 -3.41059 0 0.00430146 0.00335672 -0.734281 0.678824 uwb: 0.50006483 1148.23 424.763 +imu_odom_: 1691062830.641461801 0.344765 -0.0143652 10.2232 -0.0532632 0.0276969 0.0458064 0.19 0 pose: 0.42123494 5.84188 -3.41059 0 0.00364516 0.00216872 -0.734136 0.678989 uwb: 0.0 1148.23 424.763 +imu_odom_: 1691062830.668311328 0.560243 -0.208296 9.73961 -0.0745685 -0.0266316 0.0447411 0.25 0.02 pose: 0.52039278 5.84281 -3.4247 0 0.00218517 -0.00252501 -0.733962 0.679182 uwb: 0.50047605 1151.33 425.185 +imu_odom_: 1691062830.685380104 0.356736 -0.0335188 9.6606 -0.0383495 0.0213053 0.0372843 0.25 0.02 pose: 0.0 5.84281 -3.4247 0 0.00218517 -0.00252501 -0.733962 0.679182 uwb: 0.0 1151.33 425.185 +imu_odom_: 1691062830.712397622 0.179565 -0.347159 9.3302 -0.0692422 -0.00213053 0.0479369 0.27 -0.02 pose: 0.61886817 5.84375 -3.43881 0 0.00302765 -0.00407811 -0.733883 0.679257 uwb: 0.49972651 1153.94 425.488 +imu_odom_: 1691062830.737571915 0.155623 -0.373495 9.13148 -0.0607201 0.0532632 0.0468716 0.27 -0.02 pose: 0.7014458 5.84375 -3.43881 0 0.0030394 -0.00333611 -0.733867 0.679278 uwb: 0.0 1153.94 425.488 +imu_odom_: 1691062830.754412913 0.577003 -0.0790087 10.6973 -0.052198 -0.0266316 0.0372843 0.21 -0.02 pose: 0.0 5.84375 -3.43881 0 0.0030394 -0.00333611 -0.733867 0.679278 uwb: 0.50158140 1152.89 425.401 +imu_odom_: 1691062830.780347828 0.529119 0.023942 10.3597 -0.0436758 -0.0287621 0.0340885 0.21 -0.02 pose: 0.45177353 5.83717 -3.44633 0 0.00370824 0.0018378 -0.733757 0.679399 uwb: 0.0 1152.89 425.401 +imu_odom_: 1691062830.807279017 0.744597 -0.198719 9.57681 -0.0671117 -0.00426106 0.0426106 0.23 0.02 pose: 0.42775913 5.83996 -3.45833 0 0.0028738 -0.0027683 -0.733812 0.679341 uwb: 0.0 1152.89 425.401 +imu_odom_: 1691062830.833355382 0.332794 -0.11971 9.94791 -0.0628506 0.0266316 0.0458064 0.23 0.02 pose: 0.0 5.83996 -3.45833 0 0.0028738 -0.0027683 -0.733812 0.679341 uwb: 0.0 1152.89 425.401 +imu_odom_: 1691062830.860438229 0.548272 -0.383072 9.76355 -0.04048 -0.0255663 0.0351537 0.25 0 pose: 0.53007554 5.83811 -3.46045 0 0.00301284 -0.00250658 -0.733728 0.679432 uwb: 0.99868308 1155.98 425.893 +imu_odom_: 1691062830.885463198 0.68953 -0.107739 9.79468 -0.0490022 -0.0106526 0.0553937 0.18 0 pose: 0.0 5.83811 -3.46045 0 0.00301284 -0.00250658 -0.733728 0.679432 uwb: 0.0 1155.98 425.893 +imu_odom_: 1691062830.912362597 0.294487 0.107739 10.1035 -0.0532632 0.0127832 0.0372843 0.18 0 pose: 0.35113411 5.83906 -3.47456 0 -0.000109618-0.00288087 -0.733725 0.67944 uwb: 0.49900613 1153.65 424.537 +imu_odom_: 1691062830.937456104 1.05824 -0.363919 9.40442 -0.0777643 0.00213053 0.0511327 0.18 0.02 pose: 0.43893804 5.83435 -3.47995 0 0.00179865 -0.00488271 -0.733654 0.679503 uwb: 0.0 1153.65 424.537 +imu_odom_: 1691062830.954367973 -0.136469 -0.35913 9.94551 -0.04048 0.0181095 0.0308927 0.18 0.02 pose: 0.0 5.83435 -3.47995 0 0.00179865 -0.00488271 -0.733654 0.679503 uwb: 0.50052855 1151.3 423.259 +imu_odom_: 1691062830.980435588 0.23942 -0.184354 9.43555 -0.0681769 -0.0394148 0.0500674 0.18 0 pose: 0.7926445 5.83248 -3.48208 0 0.00101919 -0.00509397 -0.73362 0.67954 uwb: 0.0 1151.3 423.259 +imu_odom_: 1691062830.997284169 0.646434 0.00957681 10.3453 -0.0532632 -0.0181095 0.0340885 0.18 0 pose: 0.0 5.83248 -3.48208 0 0.00101919 -0.00509397 -0.73362 0.67954 uwb: 0.50160182 1150.35 422.791 +imu_odom_: 1691062831.22426382 0.399832 -0.0143652 9.9527 -0.0852212 -0.0223706 0.0500674 0.18 0 pose: 0.42056998 5.84001 -3.48866 0 0.000721452 -0.00346094 -0.733577 0.679597 uwb: 0.0 1150.35 422.791 +imu_odom_: 1691062831.49388486 0.97444 -0.445322 9.61751 -0.0639159 0.00958738 0.0415453 0.18 0 pose: 0.0 5.84001 -3.48866 0 0.000721452 -0.00346094 -0.733577 0.679597 uwb: 0.0 1150.35 422.791 +imu_odom_: 1691062831.74332669 0.347159 -0.217872 10.1131 -0.0649811 -0.00106526 0.0532632 0.18 0 pose: 0.42989400 5.83343 -3.4962 0 0.00170754 -0.00430174 -0.733517 0.679656 uwb: 0.0 1150.35 422.791 +imu_odom_: 1691062831.91322992 0.399832 -0.0167594 10.0389 -0.0596548 0.0223706 0.036219 0.18 0 pose: 0.0 5.83343 -3.4962 0 0.00170754 -0.00430174 -0.733517 0.679656 uwb: 0.0 1150.35 422.791 +imu_odom_: 1691062831.116328421 0.373495 -0.395043 9.57681 -0.0841559 -0.0106526 0.0575243 0.18 0 pose: 0.52100817 5.83439 -3.51031 0 0.000463888 -0.00455906 -0.733394 0.679788 uwb: 0.0 1150.35 422.791 +imu_odom_: 1691062831.143480389 0.476446 -0.289698 9.27274 -0.0490022 0.00319579 0.0372843 0.23 0 pose: 0.58892164 5.83507 -3.52029 0 0.000641803 -0.00133569 -0.733193 0.680018 uwb: 0.149922040 1154.44 423.629 +imu_odom_: 1691062831.169324602 -0.0670376 -0.512359 9.49301 -0.0500674 0.0213053 0.0394148 0.19 0 pose: 0.7005708 5.83535 -3.52442 0 -2.94332e-06-0.00116155 -0.733199 0.680013 uwb: 0.0 1154.44 423.629 +imu_odom_: 1691062831.196270082 0.0885855 -0.213084 10.1275 -0.0479369 -0.0255663 0.0394148 0.25 0 pose: 0.28121994 5.83535 -3.52442 0 -0.00152363 0.000152217 -0.733212 0.679998 uwb: 0.49818954 1153.43 423.36 +imu_odom_: 1691062831.221272304 0.191536 -0.124498 10.3358 -0.0383495 -0.0276969 0.0394148 0.25 0 pose: 0.0 5.83535 -3.52442 0 -0.00152363 0.000152217 -0.733212 0.679998 uwb: 0.0 1153.43 423.36 +imu_odom_: 1691062831.248327736 0.155623 -0.222661 9.63187 -0.0841559 0.0149137 0.0479369 0.23 0 pose: 0.24944766 5.82878 -3.53195 0 -0.0002343190.00230932 -0.733209 0.679999 uwb: 0.50086687 1155.54 423.56 +imu_odom_: 1691062831.265532421 0.11971 -0.201113 10.1825 -0.0585895 -0.0234358 0.0436758 0.23 0 pose: 0.0 5.82878 -3.53195 0 -0.0002343190.00230932 -0.733209 0.679999 uwb: 0.0 1155.54 423.56 +imu_odom_: 1691062831.290530850 0.88346 -0.071826 10.2113 -0.0617853 -0.0458064 0.0415453 0.27 0 pose: 0.51938952 5.83632 -3.53852 0 0.00417164 0.00369083 -0.733174 0.680018 uwb: 0.0 1155.54 423.56 +imu_odom_: 1691062831.313353285 0.4956 -0.378284 9.68933 -0.0298274 -0.015979 0.0255663 0.27 0 pose: 0.0 5.83632 -3.53852 0 0.00417164 0.00369083 -0.733174 0.680018 uwb: 0.50018441 1157.12 423.72 +imu_odom_: 1691062831.338405086 0.184354 -0.339977 9.65342 -0.0575243 -0.0170442 0.0458064 0.18 0 pose: 0.43960885 5.82975 -3.54606 0 0.00624301 0.00574583 -0.733071 0.680099 uwb: 0.0 1157.12 423.72 +imu_odom_: 1691062831.355279624 0.25618 0.0430956 9.8665 -0.0490022 0.0106526 0.0500674 0.18 0 pose: 0.0 5.82975 -3.54606 0 0.00624301 0.00574583 -0.733071 0.680099 uwb: 0.50077355 1156.66 423.425 +imu_odom_: 1691062831.371375750 0.512359 -0.37589 9.90721 -0.0575243 -0.0308927 0.0596548 0.18 0 pose: 0.49016626 5.83072 -3.56017 0 0.0027652 0.00432285 -0.733173 0.680023 uwb: 0.0 1156.66 423.425 +imu_odom_: 1691062831.398255901 0.555455 -0.213084 10.0317 -0.0319579 0.0106526 0.0287621 0.18 0 pose: 0.0 5.83072 -3.56017 0 0.0027652 0.00432285 -0.733173 0.680023 uwb: 0.49900615 1154.23 422.406 +imu_odom_: 1691062831.424426178 0.258574 -0.0071826110.4531 -0.0394148 -0.00852212 0.0532632 0.18 0.02 pose: 0.41964838 5.83072 -3.56017 0 0.00341298 0.00465442 -0.733017 0.680186 uwb: 0.0 1154.23 422.406 +imu_odom_: 1691062831.451665349 0.11971 -0.100556 9.87608 -0.0436758 0.00745685 0.0490022 0.18 0.02 pose: 0.42992901 5.8317 -3.57428 0 0.0019321 0.00189018 -0.733036 0.680184 uwb: 0.49971486 1153.83 421.886 +imu_odom_: 1691062831.476536619 0.797269 -0.3304 9.60793 -0.0639159 -0.00532632 0.0585895 0.19 0 pose: 0.0 5.8317 -3.57428 0 0.0019321 0.00189018 -0.733036 0.680184 uwb: 0.0 1153.83 421.886 +imu_odom_: 1691062831.503371273 0.23942 -0.124498 9.82102 -0.0415453 0.0149137 0.0447411 0.23 0 pose: 0.53013971 5.83268 -3.58839 0 0.00567609 0.00175635 -0.732803 0.680415 uwb: 0.49991318 1155.25 422.654 +imu_odom_: 1691062831.529360436 0.428562 -0.416591 9.8665 -0.0649811 0.0149137 0.0436758 0.23 0 pose: 0.0 5.83268 -3.58839 0 0.00567609 0.00175635 -0.732803 0.680415 uwb: 0.0 1155.25 422.654 +imu_odom_: 1691062831.556295125 0.76375 -0.1652 10.1634 -0.0745685 -0.0415453 0.0511327 0.25 0 pose: 0.70071374 5.82612 -3.59594 0 0.00460605 0.00282144 -0.732614 0.680622 uwb: 0.49964486 1153.24 422.069 +imu_odom_: 1691062831.572348379 0.47884 -0.0502782 9.88566 -0.072438 -0.00639159 0.0468716 0.25 0 pose: 0.7016791 5.82612 -3.59594 0 0.00397952 0.00227368 -0.732589 0.680656 uwb: 0.0 1153.24 422.069 +imu_odom_: 1691062831.599294151 0.19393 -0.237026 10.0197 -0.0681769 -0.0266316 0.0511327 0.23 0.02 pose: 0.35971152 5.82712 -3.61004 0 0.00221071 -0.000794601-0.732472 0.680794 uwb: 0.49936196 1155.33 422.335 +imu_odom_: 1691062831.624357910 0.272939 -0.131681 9.62948 -0.0468716 -0.00213053 0.0511327 0.23 0.02 pose: 0.0 5.82712 -3.61004 0 0.00221071 -0.000794601-0.732472 0.680794 uwb: 0.0 1155.33 422.335 +imu_odom_: 1691062831.651305432 0.294487 -0.344765 9.84256 -0.0681769 -0.00852212 0.0553937 0.21 0.02 pose: 0.52009531 5.82712 -3.61004 0 0.00575097 0.00142125 -0.732258 0.681001 uwb: 0.49992485 1156.84 422.697 +imu_odom_: 1691062831.667291898 0.61531 -0.141258 9.99579 -0.0553937 0 0.0415453 0.21 0.02 pose: 0.0 5.82712 -3.61004 0 0.00575097 0.00142125 -0.732258 0.681001 uwb: 0.0 1156.84 422.697 +imu_odom_: 1691062831.694236212 0.684742 -0.220267 9.66779 -0.0820254 -0.00319579 0.0649811 0.2 0 pose: 0.33957313 5.82812 -3.62415 0 0.00345942 0.00298543 -0.732122 0.681158 uwb: 0.50080854 1157.45 422.471 +imu_odom_: 1691062831.711241700 0.399832 -0.332794 10.1107 -0.0479369 -0.00426106 0.0490022 0.2 0 pose: 0.0 5.82812 -3.62415 0 0.00345942 0.00298543 -0.732122 0.681158 uwb: 0.0 1157.45 422.471 +imu_odom_: 1691062831.727275705 0.617704 -0.203507 9.97424 -0.0490022 -0.00852212 0.0511327 0.18 0.02 pose: 0.44073462 5.82158 -3.63171 0 8.07509e-05 0.00124758 -0.731863 0.681451 uwb: 0.0 1157.45 422.471 +imu_odom_: 1691062831.755240791 0.337582 -0.265756 10.1251 -0.0511327 0.0181095 0.0500674 0.18 0.02 pose: 0.0 5.82158 -3.63171 0 8.07509e-05 0.00124758 -0.731863 0.681451 uwb: 0.50028649 1159.04 422.615 +imu_odom_: 1691062831.780251762 0.428562 -0.0790087 10.4196 -0.0649811 -0.0276969 0.0500674 0.18 0.02 pose: 0.32994287 5.82914 -3.63825 0 -0.00103171 0.00116693 -0.731743 0.681578 uwb: 0.0 1159.04 422.615 +imu_odom_: 1691062831.807264322 0.866701 -0.177171 10.2544 -0.0468716 -0.0287621 0.0458064 0.23 -0.02 pose: 0.44868790 5.82261 -3.64582 0 0.000793454 0.000558972 -0.731579 0.681756 uwb: 0.49974403 1161.1 422.992 +imu_odom_: 1691062831.832224254 0.706289 -0.0502782 10.6805 -0.0543285 -0.0213053 0.0394148 0.23 -0.02 pose: 0.0 5.82261 -3.64582 0 0.000793454 0.000558972 -0.731579 0.681756 uwb: 0.0 1161.1 422.992 +imu_odom_: 1691062831.849232367 0.268151 -0.21069 9.22965 -0.0660464 0.0117179 0.0394148 0.22 0 pose: 0.6996667 5.82261 -3.64582 0 0.000274536 -3.40039e-05-0.731564 0.681772 uwb: 0.50113810 1156.61 421.562 +imu_odom_: 1691062831.874229630 0.42138 -0.390255 9.42118 -0.0862864 -0.0308927 0.052198 0.22 0 pose: 0.0 5.82261 -3.64582 0 0.000274536 -3.40039e-05-0.731564 0.681772 uwb: 0.0 1156.61 421.562 +imu_odom_: 1691062831.901365557 0.711078 -0.354342 9.59117 -0.0639159 0.00532632 0.04048 0.21 -0.02 pose: 0.51983866 5.82364 -3.65992 0 -0.00158967 -0.00368141 -0.731519 0.681809 uwb: 0.49737292 1156.55 421.789 +imu_odom_: 1691062831.917500764 0.641646 -0.268151 9.84975 -0.0628506 0.0245011 0.052198 0.21 -0.02 pose: 0.0 5.82364 -3.65992 0 -0.00158967 -0.00368141 -0.731519 0.681809 uwb: 0.0 1156.55 421.789 +imu_odom_: 1691062831.944385582 0.397437 -0.31364 10.0269 -0.0276969 0.0117179 0.0266316 0.25 0 pose: 0.42063998 5.82364 -3.65992 0 -0.00351651 -0.000891437-0.731409 0.681929 uwb: 0.50037690 1154.02 421.087 +imu_odom_: 1691062831.969347264 0.770933 -0.416591 9.46428 -0.0543285 0.0138484 0.0532632 0.25 0 pose: 0.0 5.82364 -3.65992 0 -0.00351651 -0.000891437-0.731409 0.681929 uwb: 0.0 1154.02 421.087 +imu_odom_: 1691062831.996222165 0.718261 -0.0143652 10.4818 -0.0436758 -0.0585895 0.052198 0.23 0 pose: 0.43037815 5.82469 -3.67403 0 -0.00604406 -0.00174278 -0.731356 0.681967 uwb: 0.50090187 1156.54 421.811 +imu_odom_: 1691062832.13356854 0.483629 -0.526724 9.35415 -0.0617853 0.0436758 0.052198 0.23 0 pose: 0.0 5.82469 -3.67403 0 -0.00604406 -0.00174278 -0.731356 0.681967 uwb: 0.0 1156.54 421.811 +imu_odom_: 1691062832.39210400 0.260968 -0.387861 9.95509 -0.0426106 0.0149137 0.0543285 0.19 0 pose: 0.51896954 5.81816 -3.6816 0 -0.00701056 -0.00152217 -0.731292 0.682026 uwb: 0.0 1156.54 421.811 +imu_odom_: 1691062832.63376172 0.548272 -0.191536 9.56962 -0.0617853 0.0170442 0.0415453 0.18 -0.02 pose: 0.44232120 5.82573 -3.68813 0 -0.00722387 -0.00150558 -0.731092 0.682239 uwb: 0.50020192 1160.18 422.372 +imu_odom_: 1691062832.90363067 0.28491 -0.380678 9.68933 -0.0649811 -0.00639159 0.052198 0.18 -0.02 pose: 0.0 5.82573 -3.68813 0 -0.00722387 -0.00150558 -0.731092 0.682239 uwb: 0.0 1160.18 422.372 +imu_odom_: 1691062832.115212756 0.368707 -0.0670376 9.92875 -0.0468716 -0.0117179 0.04048 0.19 0 pose: 0.25874836 5.81921 -3.69571 0 -0.00596702 -0.000427918-0.730995 0.682356 uwb: 0.49951364 1163.26 423.038 +imu_odom_: 1691062832.142217442 0.356736 -0.203507 10.343 -0.0735032 -0.00532632 0.0543285 0.19 0 pose: 0.0 5.81921 -3.69571 0 -0.00596702 -0.000427918-0.730995 0.682356 uwb: 0.0 1163.26 423.038 +imu_odom_: 1691062832.168489505 0.584185 -0.141258 9.49301 -0.0713727 0.0330232 0.0426106 0.19 -0.02 pose: 0.51917080 5.82027 -3.70981 0 -0.00405402 0.000343889 -0.730872 0.682502 uwb: 0.49957779 1162.82 422.669 +imu_odom_: 1691062832.192342045 0.701501 -0.454898 9.59835 -0.0788296 -0.0287621 0.056459 0.19 -0.02 pose: 0.0 5.82027 -3.70981 0 -0.00405402 0.000343889 -0.730872 0.682502 uwb: 0.0 1162.82 422.669 +imu_odom_: 1691062832.207216161 0.222661 -0.402226 10.0485 -0.0628506 0.0298274 0.036219 0.25 0 pose: 0.52087694 5.82027 -3.70981 0 -0.0003832842.34866e-05 -0.73073 0.682667 uwb: 0.50065690 1167.92 423.888 +imu_odom_: 1691062832.232204092 0.196325 -0.323217 9.9934 -0.0575243 0.0127832 0.0458064 0.25 0 pose: 0.0 5.82027 -3.70981 0 -0.0003832842.34866e-05 -0.73073 0.682667 uwb: 0.0 1167.92 423.888 +imu_odom_: 1691062832.256205664 -0.100556 -0.311246 9.94312 -0.0330232 0.0245011 0.0394148 0.18 0 pose: 0.63954906 5.82134 -3.72391 0 -0.00276872 0.000960426 -0.730567 0.682835 uwb: 0.49905282 1170.94 424.775 +imu_odom_: 1691062832.271258561 0.1652 -0.234632 9.78989 -0.0490022 -0.015979 0.0426106 0.18 0 pose: 0.0 5.82134 -3.72391 0 -0.00276872 0.000960426 -0.730567 0.682835 uwb: 0.0 1170.94 424.775 +imu_odom_: 1691062832.288204553 0.694318 -0.272939 10.2089 -0.0639159 0.0127832 0.0436758 0.18 0 pose: 0.56960863 5.82242 -3.73801 0 0.00162889 0.00506544 -0.730497 0.682896 uwb: 0.0 1170.94 424.775 +imu_odom_: 1691062832.302206054 0.866701 -0.275333 9.55526 -0.0532632 0.036219 0.0308927 0.18 0 pose: 0.0 5.82242 -3.73801 0 0.00162889 0.00506544 -0.730497 0.682896 uwb: 0.50217931 1171 424.573 +imu_odom_: 1691062832.327266897 0.244209 -0.335188 9.22246 -0.0713727 0.0106526 0.0532632 0.18 0 pose: 0.6950295 5.82242 -3.73801 0 0.00113656 0.0046608 -0.73049 0.682906 uwb: 0.0 1171 424.573 +imu_odom_: 1691062832.352191249 0.428562 -0.373495 9.76116 -0.0628506 -0.0798948 0.0394148 0.23 0 pose: 0.0 5.82242 -3.73801 0 0.00113656 0.0046608 -0.73049 0.682906 uwb: 0.50046733 1169.07 423.686 +imu_odom_: 1691062832.375339456 0.153229 -0.225055 9.52174 -0.0681769 -0.0106526 0.0383495 0.18 0 pose: 0.73982393 5.81672 -3.75617 0 -0.0029016 0.00510589 -0.730408 0.682986 uwb: 0.0 1169.07 423.686 +imu_odom_: 1691062832.391353337 0.955286 -0.105345 10.4794 -0.0276969 0.00106526 0.0213053 0.18 0 pose: 0.0 5.81672 -3.75617 0 -0.0029016 0.00510589 -0.730408 0.682986 uwb: 0.0 1169.07 423.686 +imu_odom_: 1691062832.417349499 0.701501 -0.0837971 10.0341 -0.0436758 -0.00958738 0.0490022 0.25 0 pose: 0.39162088 5.81699 -3.7597 0 -0.00145162 0.00439774 -0.730517 0.682879 uwb: 0.49702586 1173.08 424.926 +imu_odom_: 1691062832.443403992 0.481235 -0.246603 10.0413 -0.0575243 0.0106526 0.056459 0.19 0 pose: 0.7902238 5.81699 -3.7597 0 -0.00163296 0.00358443 -0.730495 0.682906 uwb: 0.50061898 1173.15 424.678 +imu_odom_: 1691062832.470352973 0.399832 -0.31364 9.75877 -0.0436758 0.0234358 0.0319579 0.23 0.02 pose: 0.18093924 5.81248 -3.76496 0 -0.00204816 0.00172217 -0.730443 0.682968 uwb: 0.0 1173.15 424.678 +imu_odom_: 1691062832.486314940 0.19393 -0.129287 9.86411 -0.0191748 0.00426106 0.0276969 0.23 0.02 pose: 0.33049119 5.81808 -3.7738 0 -0.00318199 0.000372946 -0.730314 0.683104 uwb: 0.0 1173.15 424.678 +imu_odom_: 1691062832.513250505 0.684742 -0.220267 9.58399 -0.0372843 0.00852212 0.0511327 0.23 0 pose: 0.0 5.81808 -3.7738 0 -0.00318199 0.000372946 -0.730314 0.683104 uwb: 0.0 1173.15 424.678 +imu_odom_: 1691062832.529242804 0.442927 -0.215478 9.75637 -0.0436758 -0.0276969 0.0596548 0.23 0 pose: 0.0 5.81808 -3.7738 0 -0.00318199 0.000372946 -0.730314 0.683104 uwb: 0.0 1173.15 424.678 +imu_odom_: 1691062832.546199588 0.670376 -0.201113 9.77792 -0.0575243 -0.0415453 0.0532632 0.25 0.05 pose: 0.78844186 5.81916 -3.7879 0 -0.00179551 -0.00125078 -0.730216 0.683213 uwb: 0.100073341 1178.04 424.844 +imu_odom_: 1691062832.571365716 0.802058 -0.201113 9.96467 -0.036219 -0.0191748 0.0394148 0.25 0.05 pose: 0.6965170 5.81916 -3.7879 0 -0.0023614 -0.00185236 -0.730182 0.683246 uwb: 0.0 1178.04 424.844 +imu_odom_: 1691062832.588364789 0.335188 -0.110133 9.90481 -0.0607201 -0.00426106 0.056459 0.22 0.02 pose: 0.0 5.81916 -3.7879 0 -0.0023614 -0.00185236 -0.730182 0.683246 uwb: 0.0 1178.04 424.844 +imu_odom_: 1691062832.605372611 0.280122 -0.105345 10.0916 -0.0490022 -0.0138484 0.0458064 0.22 0.02 pose: 0.35157742 5.81266 -3.7955 0 -0.00488878 -0.00483765 -0.730123 0.683281 uwb: 0.0 1178.04 424.844 +imu_odom_: 1691062832.620183147 -0.0383072 -0.296881 9.85214 -0.0532632 0.0213053 0.0575243 0.22 0.02 pose: 0.0 5.81266 -3.7955 0 -0.00488878 -0.00483765 -0.730123 0.683281 uwb: 0.0 1178.04 424.844 +imu_odom_: 1691062832.637377041 0.397437 -0.246603 10.1754 -0.0820254 -0.00639159 0.0543285 0.18 0 pose: 0.41082308 5.82026 -3.802 0 -0.00125822 -0.00314995 -0.729966 0.683475 uwb: 0.0 1178.04 424.844 +imu_odom_: 1691062832.651289589 0.0909797 -0.246603 9.65582 -0.0628506 -0.00639159 0.0351537 0.18 0 pose: 0.0 5.82026 -3.802 0 -0.00125822 -0.00314995 -0.729966 0.683475 uwb: 0.100038344 1180.2 424.976 +imu_odom_: 1691062832.666203952 0.895431 -0.282516 10.4339 -0.0585895 -0.00532632 0.0394148 0.18 0 pose: 0.0 5.82026 -3.802 0 -0.00125822 -0.00314995 -0.729966 0.683475 uwb: 0.0 1180.2 424.976 +imu_odom_: 1691062832.683168902 0.299275 -0.260968 9.6606 -0.0788296 -0.0276969 0.0500674 0.18 0 pose: 0.45738197 5.81376 -3.8096 0 -0.0006517377.93696e-05 -0.729857 0.6836 uwb: 0.0 1180.2 424.976 +imu_odom_: 1691062832.700319632 0.0885855 -0.102951 9.91199 -0.0490022 -0.0223706 0.0436758 0.18 0 pose: 0.0 5.81376 -3.8096 0 -0.0006517377.93696e-05 -0.729857 0.6836 uwb: 0.49808746 1177.25 423.815 +imu_odom_: 1691062832.715241578 0.54109 -0.287304 10.1442 -0.0532632 -0.0287621 0.0543285 0.18 0.02 pose: 0.42133411 5.81156 -3.82087 0 0.00084355 0.00149141 -0.729769 0.683691 uwb: 0.0 1177.25 423.815 +imu_odom_: 1691062832.730361554 0.608127 -0.287304 9.54808 -0.072438 -0.015979 0.0596548 0.18 0.02 pose: 0.0 5.81156 -3.82087 0 0.00084355 0.00149141 -0.729769 0.683691 uwb: 0.0 1177.25 423.815 +imu_odom_: 1691062832.747236384 0.263362 -0.35913 9.81623 -0.0511327 0.00958738 0.0436758 0.18 0.02 pose: 0.0 5.81156 -3.82087 0 0.00084355 0.00149141 -0.729769 0.683691 uwb: 0.50039442 1177.42 423.276 +imu_odom_: 1691062832.764441069 0.943315 0.0263362 10.5872 -0.0692422 -0.0458064 0.0490022 0.18 0 pose: 0.7017083 5.81487 -3.8237 0 0.000139506 0.00115211 -0.729735 0.683729 uwb: 0.0 1177.42 423.276 +imu_odom_: 1691062832.779316352 0.332794 -0.287304 9.4571 -0.0639159 0.0383495 0.0415453 0.18 0 pose: 0.0 5.81487 -3.8237 0 0.000139506 0.00115211 -0.729735 0.683729 uwb: 0.0 1177.42 423.276 +imu_odom_: 1691062832.794233340 0.268151 -0.342371 10.0078 -0.0490022 0.0447411 0.04048 0.18 0 pose: 0.0 5.81487 -3.8237 0 0.000139506 0.00115211 -0.729735 0.683729 uwb: 0.49952821 1179.54 423.517 +imu_odom_: 1691062832.811344697 0.45011 -0.160412 9.76834 -0.0596548 -0.0394148 0.0553937 0.18 0 pose: 0.64055816 5.80838 -3.83131 0 -0.00215547 0.000738346 -0.729506 0.68397 uwb: 0.0 1179.54 423.517 +imu_odom_: 1691062832.828164114 0.474052 -0.11971 10.1801 -0.0500674 0.00213053 0.0436758 0.25 0.02 pose: 0.0 5.80838 -3.83131 0 -0.00215547 0.000738346 -0.729506 0.68397 uwb: 0.0 1179.54 423.517 +imu_odom_: 1691062832.843224593 0.471658 -0.292093 9.93354 -0.0340885 0.00319579 0.0330232 0.25 0.02 pose: 0.30803127 5.81599 -3.8378 0 -0.0009774440.00237015 -0.72945 0.684029 uwb: 0.49963321 1178.67 422.778 +imu_odom_: 1691062832.858228784 1.20907 -0.232238 9.91678 -0.0671117 -0.0660464 0.0553937 0.17 0 pose: 0.0 5.81599 -3.8378 0 -0.0009774440.00237015 -0.72945 0.684029 uwb: 0.0 1178.67 422.778 +imu_odom_: 1691062832.873164438 1.06063 -0.287304 10.1778 -0.0426106 -0.0127832 0.072438 0.17 0 pose: 0.41028935 5.8095 -3.84541 0 -0.0018595 -0.000108589-0.729413 0.684072 uwb: 0.0 1178.67 422.778 +imu_odom_: 1691062832.890213674 1.10133 -0.31364 9.82102 -0.0447411 0.0415453 0.111853 0.17 0 pose: 0.0 5.8095 -3.84541 0 -0.0018595 -0.000108589-0.729413 0.684072 uwb: 0.0 1178.67 422.778 +imu_odom_: 1691062832.907148001 1.63524 -0.459687 10.6853 -0.0458064 -0.00426106 0.0820254 0.14 -0.05 pose: 0.6948545 5.8095 -3.84541 0 -0.00254735 -0.000704755-0.729374 0.68411 uwb: 0.50063357 1179.38 422.261 +imu_odom_: 1691062832.924142407 1.5275 -0.201113 9.26077 -0.0308927 0.0127832 0.0191748 0.14 -0.05 pose: 0.0 5.8095 -3.84541 0 -0.00254735 -0.000704755-0.729374 0.68411 uwb: 0.0 1179.38 422.261 +imu_odom_: 1691062832.941204767 1.10133 -0.129287 9.76834 -0.0692422 0.0735032 0.0490022 0.14 -0.05 pose: 0.0 5.8095 -3.84541 0 -0.00254735 -0.000704755-0.729374 0.68411 uwb: 0.0 1179.38 422.261 +imu_odom_: 1691062832.959202155 0.651223 -0.454898 9.80904 -0.076699 0.00852212 0.0340885 0.11 0 pose: 0.46978582 5.81064 -3.8595 0 -0.00609136 -0.00363702 -0.728626 0.684875 uwb: 0.50067439 1183.05 422.919 +imu_odom_: 1691062832.976317596 0.418985 -0.268151 9.95988 -0.0671117 -0.00958738 -0.0308927 0.1 -0.02 pose: 0.0 5.81064 -3.8595 0 -0.00609136 -0.00363702 -0.728626 0.684875 uwb: 0.0 1183.05 422.919 +imu_odom_: 1691062832.992297063 0.742203 0.0167594 10.1466 -0.0617853 -0.0372843 -0.0127832 0.1 -0.02 pose: 0.69095225 5.81064 -3.8595 0 -0.00943821 -0.00461024 -0.728721 0.68473 uwb: 0.49758583 1186.87 423.111 +imu_odom_: 1691062833.10179541 0.885855 -0.0646434 9.77313 -0.0649811 -0.00852212 0.0319579 0.09 0 pose: 0.0 5.81064 -3.8595 0 -0.00943821 -0.00461024 -0.728721 0.68473 uwb: 0.0 1186.87 423.111 +imu_odom_: 1691062833.27294982 0.773327 -0.308852 9.93115 -0.052198 0.00532632 0.0458064 0.09 0 pose: 0.0 5.81064 -3.8595 0 -0.00943821 -0.00461024 -0.728721 0.68473 uwb: 0.0 1186.87 423.111 +imu_odom_: 1691062833.44362884 0.565032 -0.251391 9.60075 -0.0479369 0.00426106 0.0340885 0.09 0 pose: 0.34070766 5.80416 -3.86712 0 -0.00878489 -0.00638237 -0.729281 0.684128 uwb: 0.50132770 1190.52 423.908 +imu_odom_: 1691062833.61278546 0.629675 -0.213084 9.94791 -0.0490022 0.0127832 0.0447411 0.08 0 pose: 0.33987646 5.81178 -3.87361 0 -0.0101346 -0.00720427 -0.729268 0.684115 uwb: 0.0 1190.52 423.908 +imu_odom_: 1691062833.77164976 0.761356 -0.258574 10.0485 -0.0628506 -0.0138484 0.0596548 0.08 0 pose: 0.0 5.81178 -3.87361 0 -0.0101346 -0.00720427 -0.729268 0.684115 uwb: 0.0 1190.52 423.908 +imu_odom_: 1691062833.95158865 0.720655 -0.316035 9.87129 -0.0543285 0.00106526 0.0394148 0.09 -0.02 pose: 0.42859619 5.81178 -3.87361 0 -0.00981056 -0.0084637 -0.729151 0.68423 uwb: 0.49984904 1190.1 423.474 +imu_odom_: 1691062833.111262283 0.641646 -0.0981623 9.90002 -0.0479369 -0.0298274 0.0415453 0.09 -0.02 pose: 0.0 5.81178 -3.87361 0 -0.00981056 -0.0084637 -0.729151 0.68423 uwb: 0.0 1190.1 423.474 +imu_odom_: 1691062833.128265439 0.703895 -0.19393 9.78989 -0.0468716 0.00106526 0.0415453 0.09 -0.02 pose: 0.0 5.81178 -3.87361 0 -0.00981056 -0.0084637 -0.729151 0.68423 uwb: 0.0 1190.1 423.474 +imu_odom_: 1691062833.146166875 0.699107 -0.217872 9.97424 -0.0490022 -0.00213053 0.0415453 0.05 0.02 pose: 0.7998775 5.81178 -3.87361 0 -0.0105772 -0.00829554 -0.729141 0.684231 uwb: 0.50003861 1192.7 424.065 +imu_odom_: 1691062833.164147931 0.588974 -0.251391 9.83777 -0.052198 0.00213053 0.0447411 0.05 0.02 pose: 0.0 5.81178 -3.87361 0 -0.0105772 -0.00829554 -0.729141 0.684231 uwb: 0.0 1192.7 424.065 +imu_odom_: 1691062833.181155754 0.694318 -0.225055 10.0173 -0.0490022 -0.00426106 0.0330232 0.05 0.02 pose: 0.51050591 5.81178 -3.87361 0 -0.0109307 -0.0102881 -0.729106 0.684236 uwb: 0.0 1192.7 424.065 +imu_odom_: 1691062833.197206091 0.351948 -0.134075 9.57681 -0.0511327 0.00213053 0.0617853 0.06 0.11 pose: 0.0 5.81178 -3.87361 0 -0.0109307 -0.0102881 -0.729106 0.684236 uwb: 0.49998904 1193.35 423.811 +imu_odom_: 1691062833.214260286 0.335188 -0.383072 9.99579 -0.0607201 -0.00106526 0.115049 0.04 0.08 pose: 0.0 5.81178 -3.87361 0 -0.0109307 -0.0102881 -0.729106 0.684236 uwb: 0.0 1193.35 423.811 +imu_odom_: 1691062833.231282691 0.47884 -0.454898 9.64624 -0.0415453 -0.0191748 0.108657 0.04 0.08 pose: 0.69007731 5.8053 -3.88122 0 -0.00928887 -0.00813403 -0.728795 0.68462 uwb: 0.0 1193.35 423.811 +imu_odom_: 1691062833.248239183 0.720655 -0.0694318 10.0963 -0.0468716 -0.0127832 0.118244 0.03 0.08 pose: 0.0 5.8053 -3.88122 0 -0.00928887 -0.00813403 -0.728795 0.68462 uwb: 0.49965655 1192.39 423.318 +imu_odom_: 1691062833.265162136 0.727837 -0.131681 9.8258 -0.052198 -0.00639159 0.123571 0.03 0.08 pose: 0.0 5.8053 -3.88122 0 -0.00928887 -0.00813403 -0.728795 0.68462 uwb: 0.0 1192.39 423.318 +imu_odom_: 1691062833.283290475 0.663194 -0.232238 10.0293 -0.0553937 0.00958738 0.11931 0.03 0.08 pose: 0.34085058 5.8053 -3.88122 0 -0.00912166 -0.00656561 -0.727941 0.685547 uwb: 0.0 1192.39 423.318 +imu_odom_: 1691062833.301276197 0.402226 -0.263362 9.79947 -0.0543285 0.00319579 0.118244 0.03 0.11 pose: 0.33985605 5.8053 -3.88122 0 -0.00960233 -0.00868138 -0.726984 0.686532 uwb: 0.50078523 1193.03 423.086 +imu_odom_: 1691062833.317204626 0.447716 -0.25618 9.90242 -0.052198 -0.00532632 0.123571 0.03 0.11 pose: 0.0 5.8053 -3.88122 0 -0.00960233 -0.00868138 -0.726984 0.686532 uwb: 0.0 1193.03 423.086 +imu_odom_: 1691062833.334308109 0.584185 -0.220267 9.84975 -0.0553937 -0.015979 0.127832 0.03 0.08 pose: 0.43911890 5.8053 -3.88122 0 -0.00805351 -0.00548276 -0.725776 0.687862 uwb: 0.0 1193.03 423.086 +imu_odom_: 1691062833.352283624 0.701501 -0.227449 9.93594 -0.0500674 -0.00319579 0.123571 0.03 0.08 pose: 0.0 5.8053 -3.88122 0 -0.00805351 -0.00548276 -0.725776 0.687862 uwb: 0.0 1193.03 423.086 +imu_odom_: 1691062833.368156056 0.596156 -0.265756 9.91199 -0.0543285 0.00745685 0.127832 0.03 0.08 pose: 0.0 5.8053 -3.88122 0 -0.00805351 -0.00548276 -0.725776 0.687862 uwb: 0.0 1193.03 423.086 +imu_odom_: 1691062833.385293079 0.533907 -0.304064 9.8689 -0.056459 0.00319579 0.134223 0.01 0.08 pose: 0.6941837 5.8053 -3.88122 0 -0.00749928 -0.00588166 -0.725571 0.688081 uwb: 0.0 1193.03 423.086 +imu_odom_: 1691062833.403205889 0.562637 -0.23942 9.8665 -0.0543285 -0.0117179 0.125701 0.01 0.08 pose: 0.0 5.8053 -3.88122 0 -0.00749928 -0.00588166 -0.725571 0.688081 uwb: 0.0 1193.03 423.086 +imu_odom_: 1691062833.419158816 0.663194 -0.150835 9.83299 -0.0553937 -0.00958738 0.12144 0.01 0.11 pose: 0.51032800 5.81291 -3.8877 0 -0.00842315 -0.00525257 -0.724017 0.68971 uwb: 0.0 1193.03 423.086 +imu_odom_: 1691062833.436173638 0.651223 -0.196325 9.87848 -0.056459 0.00106526 0.127832 0 0.08 pose: 0.0 5.81291 -3.8877 0 -0.00842315 -0.00525257 -0.724017 0.68971 uwb: 0.0 1193.03 423.086 +imu_odom_: 1691062833.453146462 0.486023 -0.301669 9.93594 -0.0553937 0.00852212 0.11931 0 0.08 pose: 0.0 5.81291 -3.8877 0 -0.00842315 -0.00525257 -0.724017 0.68971 uwb: 0.150124452 1192.16 422.326 +imu_odom_: 1691062833.469209341 0.371101 -0.189142 9.83538 -0.0511327 0.00213053 0.107592 0 0.08 pose: 0.68985275 5.81291 -3.8877 0 -0.00748325 -0.00706932 -0.721971 0.691847 uwb: 0.0 1192.16 422.326 +imu_odom_: 1691062833.487173481 0.476446 -0.155623 9.86172 -0.056459 -0.0117179 0.0916127 0 0.05 pose: 0.0 5.81291 -3.8877 0 -0.00748325 -0.00706932 -0.721971 0.691847 uwb: 0.0 1192.16 422.326 +imu_odom_: 1691062833.503112701 0.579397 -0.114922 9.87608 -0.0543285 -0.00958738 0.0660464 0 0.05 pose: 0.0 5.81291 -3.8877 0 -0.00748325 -0.00706932 -0.721971 0.691847 uwb: 0.49778708 1194.8 422.838 +imu_odom_: 1691062833.520164271 0.553061 -0.222661 9.89045 -0.056459 0.00106526 0.0500674 0 0.05 pose: 0.33186777 5.81291 -3.8877 0 -0.00510209 -0.00517671 -0.721217 0.692671 uwb: 0.0 1194.8 422.838 +imu_odom_: 1691062833.536171444 0.445322 -0.244209 9.87848 -0.0585895 0.00106526 0.0426106 0 0.02 pose: 0.42812956 5.81291 -3.8877 0 -0.0050853 -0.00556703 -0.720831 0.69307 uwb: 0.0 1194.8 422.838 +imu_odom_: 1691062833.551129847 0.397437 -0.198719 9.87129 -0.0543285 -0.00213053 0.0372843 0 0.02 pose: 0.6952628 5.81291 -3.8877 0 -0.00477878 -0.0049187 -0.720826 0.693082 uwb: 0.50005903 1197.44 423.314 +imu_odom_: 1691062833.566295612 0.339977 -0.203507 9.90481 -0.0543285 -0.00532632 0.04048 0 0.02 pose: 0.0 5.81291 -3.8877 0 -0.00477878 -0.0049187 -0.720826 0.693082 uwb: 0.0 1197.44 423.314 +imu_odom_: 1691062833.589266788 0.462081 -0.205901 9.90481 -0.0553937 -0.00639159 0.0383495 0 0 pose: 0.39178713 5.81291 -3.8877 0 -0.00199531 -0.00222319 -0.720837 0.693098 uwb: 0.0 1197.44 423.314 +imu_odom_: 1691062833.606264986 -0.265756 -0.272939 9.65821 -0.0596548 0.0596548 0.0127832 0 0 pose: 0.0 5.81291 -3.8877 0 -0.00199531 -0.00222319 -0.720837 0.693098 uwb: 0.50015527 1196.55 422.615 +imu_odom_: 1691062833.623151191 -1.02472 -0.126893 10.0437 -0.0468716 0.0479369 -0.0958738 0.02 -0.14 pose: 0.39969374 5.81283 -3.88767 0 0.000740621 -0.00236492 -0.721012 0.692918 uwb: 0.0 1196.55 422.615 +imu_odom_: 1691062833.640122849 -1.14203 0.244209 9.90721 -0.0543285 -0.0340885 -0.198139 0.03 -0.2 pose: 0.0 5.81283 -3.88767 0 0.000740621 -0.00236492 -0.721012 0.692918 uwb: 0.0 1196.55 422.615 +imu_odom_: 1691062833.658114696 0.0215478 0.122104 10.0628 -0.0628506 -0.0884169 -0.257794 0.04 -0.26 pose: 0.0 5.81283 -3.88767 0 0.000740621 -0.00236492 -0.721012 0.692918 uwb: 0.0 1196.55 422.615 +imu_odom_: 1691062833.676368153 0.399832 -0.339977 9.81144 -0.0703074 -0.0553937 -0.299339 0.04 -0.26 pose: 0.41879094 5.81291 -3.8877 0 0.00421654 -0.000497507-0.724023 0.689763 uwb: 0.0 1196.55 422.615 +imu_odom_: 1691062833.693251441 0.409408 -0.351948 9.94312 -0.0649811 -0.0117179 -0.333428 0.07 -0.35 pose: 0.0 5.81291 -3.8877 0 0.00421654 -0.000497507-0.724023 0.689763 uwb: 0.99977683 1201.19 423.866 +imu_odom_: 1691062833.709123581 0.177171 -0.335188 9.67736 -0.0490022 0.0298274 -0.368581 0.07 -0.35 pose: 0.0 5.81291 -3.8877 0 0.00421654 -0.000497507-0.724023 0.689763 uwb: 0.0 1201.19 423.866 +imu_odom_: 1691062833.726397096 -0.186748 0.191536 10.1275 -0.0500674 0.0170442 -0.394148 0.07 -0.35 pose: 0.35114872 5.80642 -3.8953 0 0.00225521 0.000404076 -0.728063 0.685506 uwb: 0.0 1201.19 423.866 +imu_odom_: 1691062833.744160873 0.184354 0.0454898 9.60793 -0.072438 -0.0394148 -0.40267 0.08 -0.44 pose: 0.34144553 5.80642 -3.8953 0 0.00285998 0.0027433 -0.732772 0.680463 uwb: 0.50131603 1200.08 423.827 +imu_odom_: 1691062833.761314520 -0.102951 -0.356736 9.85453 -0.0607201 0.036219 -0.447411 0.08 -0.44 pose: 0.0 5.80642 -3.8953 0 0.00285998 0.0027433 -0.732772 0.680463 uwb: 0.0 1200.08 423.827 +imu_odom_: 1691062833.776315504 0.167594 -0.110133 9.86172 -0.0596548 -0.0255663 -0.477238 0.1 -0.53 pose: 0.0 5.80642 -3.8953 0 0.00285998 0.0027433 -0.732772 0.680463 uwb: 0.0 1200.08 423.827 +imu_odom_: 1691062833.793135212 -0.308852 -0.225055 9.34696 -0.0681769 0.015979 -0.471912 0.1 -0.53 pose: 0.43911015 5.80642 -3.8953 0 0.00606693 0.00403236 -0.73956 0.673051 uwb: 0.49850454 1200.22 423.428 +imu_odom_: 1691062833.810275444 -0.0885855 -0.150835 10.0963 -0.0703074 -0.0511327 -0.487891 0.1 -0.53 pose: 0.0 5.80642 -3.8953 0 0.00606693 0.00403236 -0.73956 0.673051 uwb: 0.0 1200.22 423.428 +imu_odom_: 1691062833.827107985 0.385466 -0.335188 9.64863 -0.0756338 -0.0458064 -0.527306 0.14 -0.76 pose: 0.6071556 5.80642 -3.8953 0 0.00661098 0.00402071 -0.740611 0.671889 uwb: 0.0 1200.22 423.428 +imu_odom_: 1691062833.844110266 0.308852 -0.201113 9.94312 -0.04048 0.0298274 -0.568851 0.14 -0.76 pose: 0.0 5.80642 -3.8953 0 0.00661098 0.00402071 -0.740611 0.671889 uwb: 0.50035359 1200.88 423.16 +imu_odom_: 1691062833.861117797 0.023942 0.0215478 9.51935 -0.056459 -0.0223706 -0.570982 0.14 -0.76 pose: 0.0 5.80642 -3.8953 0 0.00661098 0.00402071 -0.740611 0.671889 uwb: 0.0 1200.88 423.16 +imu_odom_: 1691062833.879176140 0.816423 -0.0023942 10.2065 -0.0745685 -0.0713727 -0.510262 0.11 -0.55 pose: 0.49929199 5.80752 -3.90942 0 0.00870685 0.0062513 -0.749347 0.662091 uwb: 0.0 1200.88 423.16 +imu_odom_: 1691062833.896144298 0.476446 -0.452504 9.34696 -0.0639159 0.0138484 -0.437824 0.09 -0.5 pose: 0.0 5.80752 -3.90942 0 0.00870685 0.0062513 -0.749347 0.662091 uwb: 0.50012028 1198.34 422.332 +imu_odom_: 1691062833.913130247 0.818817 -0.469264 10.0102 -0.0511327 -0.02024 -0.40267 0.09 -0.5 pose: 0.70026755 5.80752 -3.90942 0 0.0057813 0.0033996 -0.762493 0.646962 uwb: 0.0 1198.34 422.332 +imu_odom_: 1691062833.930475216 1.09415 -0.203507 9.34217 -0.052198 -0.0884169 -0.347276 0.1 -0.53 pose: 0.0 5.80752 -3.90942 0 0.0057813 0.0033996 -0.762493 0.646962 uwb: 0.0 1198.34 422.332 +imu_odom_: 1691062833.946119869 0.833182 -0.23942 9.50259 -0.04048 -0.0479369 -0.335558 0.1 -0.53 pose: 0.0 5.80752 -3.90942 0 0.0057813 0.0033996 -0.762493 0.646962 uwb: 0.49830330 1198.48 421.933 +imu_odom_: 1691062833.964122799 1.14203 -0.205901 9.79228 -0.0596548 -0.0149137 -0.335558 0.1 -0.53 pose: 0.32931876 5.80752 -3.90942 0 0.00244636 0.00250744 -0.767174 0.641429 uwb: 0.0 1198.48 421.933 +imu_odom_: 1691062833.982241222 1.33836 -0.112527 10.0628 -0.0671117 -0.00639159 -0.285491 0.06 -0.32 pose: 0.43848893 5.80101 -3.91701 0 -0.00154352 -0.000911189-0.772466 0.635054 uwb: 0.0 1198.48 421.933 +imu_odom_: 1691062833.996128397 1.05584 -0.351948 10.07 -0.0479369 0.0415453 -0.24288 0.06 -0.32 pose: 0.8026190 5.80101 -3.91701 0 -0.00213463 -0.00146267 -0.773293 0.634044 uwb: 0.50136853 1201.67 422.492 +imu_odom_: 1691062834.13242088 0.936133 -0.565032 9.72764 -0.0585895 -0.015979 -0.164051 0.06 -0.32 pose: 0.0 5.80101 -3.91701 0 -0.00213463 -0.00146267 -0.773293 0.634044 uwb: 0.0 1201.67 422.492 +imu_odom_: 1691062834.29239638 1.08936 -0.397437 9.95988 -0.0532632 0.00852212 -0.118244 0.04 -0.26 pose: 0.41093099 5.80093 -3.91698 0 -0.00564562 -0.00270798 -0.776654 0.629896 uwb: 0.0 1201.67 422.492 +imu_odom_: 1691062834.47171697 0.196325 -0.318429 9.71088 -0.0372843 0.0820254 -0.156594 0.06 -0.38 pose: 0.0 5.80093 -3.91698 0 -0.00564562 -0.00270798 -0.776654 0.629896 uwb: 0.50059275 1200.56 422.429 +imu_odom_: 1691062834.65120964 0.146046 0.150835 10.2185 -0.0436758 -0.0490022 -0.209857 0.06 -0.38 pose: 0.0 5.80093 -3.91698 0 -0.00564562 -0.00270798 -0.776654 0.629896 uwb: 0.0 1200.56 422.429 +imu_odom_: 1691062834.89241531 0.730232 -0.160412 9.8258 -0.0649811 -0.0276969 -0.153398 0.03 -0.17 pose: 0.23903872 5.80865 -3.92346 0 -0.00619619 -0.00255096 -0.777932 0.628312 uwb: 0.0 1200.56 422.429 +imu_odom_: 1691062834.114186299 0.533907 -0.770933 9.83059 -0.0745685 0.0181095 -0.140615 0.03 -0.17 pose: 0.35000545 5.80865 -3.92346 0 -0.00412995 -0.00282785 -0.780385 0.625279 uwb: 0.50093691 1202.69 422.823 +imu_odom_: 1691062834.129353815 -0.37589 -0.177171 9.83299 -0.0394148 0.072438 -0.252468 0.05 -0.26 pose: 0.42039794 5.80858 -3.92344 0 -0.00682441 -0.00196155 -0.782798 0.622235 uwb: 0.0 1202.69 422.823 +imu_odom_: 1691062834.153225605 -0.936133 0.517148 9.7851 -0.0490022 -0.0245011 -0.436758 0.05 -0.26 pose: 0.7060831 5.80865 -3.92346 0 -0.00598154 -0.00146149 -0.783444 0.621432 uwb: 0.49878453 1202.26 422.425 +imu_odom_: 1691062834.178225203 -0.0407014 -0.251391 10.4124 -0.0649811 -0.0351537 -0.454868 0.1 -0.5 pose: 0.31978475 5.80213 -3.93108 0 -0.00279757 -0.000722367-0.787704 0.616047 uwb: 0.0 1202.26 422.425 +imu_odom_: 1691062834.202239901 0.110133 -0.440533 9.63666 -0.076699 -0.0426106 -0.468716 0.1 -0.5 pose: 0.0 5.80213 -3.93108 0 -0.00279757 -0.000722367-0.787704 0.616047 uwb: 0.49845205 1204.29 423.09 +imu_odom_: 1691062834.225133207 0.217872 -0.047884 10.058 -0.0660464 0.00426106 -0.493217 0.1 -0.53 pose: 0.49014296 5.80213 -3.93108 0 -0.0009922890.00289529 -0.795207 0.60633 uwb: 0.0 1204.29 423.09 +imu_odom_: 1691062834.243243756 -0.155623 0.0646434 9.6606 -0.0607201 -0.0191748 -0.531567 0.1 -0.53 pose: 0.0 5.80213 -3.93108 0 -0.0009922890.00289529 -0.795207 0.60633 uwb: 0.49992780 1202.27 422.427 +imu_odom_: 1691062834.268267561 0.0287304 -0.0694318 9.84735 -0.0585895 -0.0511327 -0.575243 0.11 -0.58 pose: 0.41003855 5.79855 -3.93532 0 0.00284518 0.00257376 -0.801982 0.597335 uwb: 0.0 1202.27 422.427 +imu_odom_: 1691062834.294248559 0.35913 -0.136469 10.2879 -0.0458064 -0.0372843 -0.583765 0.11 -0.58 pose: 0.0 5.79855 -3.93532 0 0.00284518 0.00257376 -0.801982 0.597335 uwb: 0.49995112 1201.23 422.14 +imu_odom_: 1691062834.310247275 0.296881 -0.172383 9.59357 -0.0735032 -0.00745685 -0.591222 0.14 -0.67 pose: 0.32018723 5.79572 -3.93872 0 0.00460179 0.00192812 -0.807831 0.589392 uwb: 0.0 1201.23 422.14 +imu_odom_: 1691062834.336084490 -0.0047884 -0.0670376 9.96227 -0.0617853 -0.0223706 -0.598679 0.14 -0.67 pose: 0.0 5.79572 -3.93872 0 0.00460179 0.00192812 -0.807831 0.589392 uwb: 0.0 1201.23 422.14 +imu_odom_: 1691062834.358174886 0.107739 0.0287304 10.0844 -0.0490022 -0.0127832 -0.633832 0.13 -0.67 pose: 0.60822011 5.79845 -3.95095 0 0.00736274 0.00175831 -0.818989 0.57376 uwb: 0.0 1201.23 422.14 +imu_odom_: 1691062834.383161651 0.174777 -0.110133 9.44513 -0.0649811 -0.036219 -0.64342 0.13 -0.67 pose: 0.0 5.79845 -3.95095 0 0.00736274 0.00175831 -0.818989 0.57376 uwb: 0.0 1201.23 422.14 +imu_odom_: 1691062834.401221162 0.311246 0.0957681 9.79707 -0.0681769 0 -0.646616 0.16 -0.82 pose: 0.47077161 5.79685 -3.9528 0 0.0114148 0.00183049 -0.828014 0.560588 uwb: 0.99986726 1200.67 422.12 +imu_odom_: 1691062834.425220402 0.342371 -0.131681 9.84975 -0.0884169 -0.0394148 -0.661529 0.16 -0.82 pose: 0.8089770 5.79692 -3.95282 0 0.0114917 0.00111158 -0.829562 0.558296 uwb: 0.0 1200.67 422.12 +imu_odom_: 1691062834.451259439 -0.100556 -0.0215478 9.85693 -0.0596548 -0.015979 -0.717988 0.18 -0.91 pose: 0.33968981 5.79015 -3.96033 0 0.00871666 -0.000286726-0.836122 0.548474 uwb: 0.50001821 1206.78 424.054 +imu_odom_: 1691062834.465239066 0.797269 0.0646434 10.1179 -0.0671117 -0.00639159 -0.722249 0.18 -0.91 pose: 0.0 5.79015 -3.96033 0 0.00871666 -0.000286726-0.836122 0.548474 uwb: 0.0 1206.78 424.054 +imu_odom_: 1691062834.489078483 0.64404 0.0861913 10.477 -0.0692422 -0.0575243 -0.72651 0.14 -0.73 pose: 0.0 5.79015 -3.96033 0 0.00871666 -0.000286726-0.836122 0.548474 uwb: 0.0 1206.78 424.054 +imu_odom_: 1691062834.515215805 0.143652 -0.411803 10.1155 -0.0852212 0.0149137 -0.72651 0.14 -0.73 pose: 0.40018664 5.79009 -3.96031 0 0.010049 -0.000339446-0.844343 0.535708 uwb: 0.50178852 1201.73 422.338 +imu_odom_: 1691062834.541123599 0.361524 -0.124498 10.2089 -0.0500674 0.02024 -0.76486 0.16 -0.79 pose: 0.49976739 5.78335 -3.96787 0 0.00779817 0.0007055 -0.854459 0.51946 uwb: 0.0 1201.73 422.338 +imu_odom_: 1691062834.559081324 0.442927 -0.280122 9.79228 -0.0649811 0.00106526 -0.772317 0.16 -0.79 pose: 0.0 5.78335 -3.96787 0 0.00779817 0.0007055 -0.854459 0.51946 uwb: 0.49960698 1199.1 421.75 +imu_odom_: 1691062834.583205682 0.787692 0.0837971 9.98382 -0.0575243 -0.00852212 -0.778708 0.16 -0.79 pose: 0.43865519 5.78517 -3.98215 0 0.00447277 -0.000239063-0.863536 0.504267 uwb: 0.0 1199.1 421.75 +imu_odom_: 1691062834.609075854 0.241814 -0.009576819.49062 -0.0319579 -0.0255663 -0.780839 0.16 -0.79 pose: 0.6989085 5.78525 -3.98217 0 0.00409539 -0.000825772-0.864974 0.501799 uwb: 0.49962449 1197.04 421.168 +imu_odom_: 1691062834.634218068 0.268151 0.143652 9.33978 -0.056459 -0.0223706 -0.784035 0.16 -0.82 pose: 0.24175688 5.78525 -3.98217 0 -0.00382564 0.00256935 0.869894 -0.493216 uwb: 0.0 1197.04 421.168 +imu_odom_: 1691062834.659073883 0.332794 -0.260968 9.77313 -0.0468716 0.015979 -0.803209 0.16 -0.82 pose: 0.26990397 5.7788 -3.98981 0 -0.00610821 0.00396988 0.875295 -0.483534 uwb: 0.49889535 1201.15 422.36 +imu_odom_: 1691062834.673051469 0.277727 -0.011971 9.65821 -0.036219 -0.02024 -0.813862 0.18 -0.91 pose: 0.0 5.7788 -3.98981 0 -0.00610821 0.00396988 0.875295 -0.483534 uwb: 0.0 1201.15 422.36 +imu_odom_: 1691062834.697181952 0.608127 -0.435745 9.27035 -0.0532632 -0.0213053 -0.815993 0.18 -0.91 pose: 0.24114734 5.7788 -3.98981 0 -0.00694915 0.00453685 0.880079 -0.474754 uwb: 0.50121689 1202.67 422.89 +imu_odom_: 1691062834.721074449 0.251391 0.203507 9.59596 -0.0191748 -0.04048 -0.810666 0.16 -0.79 pose: 0.38996433 5.77234 -3.99744 0 -0.00668603 0.00363594 0.887824 -0.46012 uwb: 0.0 1202.67 422.89 +imu_odom_: 1691062834.747119027 -0.0335188 -0.102951 10.2352 -0.0575243 -0.00106526 -0.809601 0.22 -1.17 pose: 0.0 5.77234 -3.99744 0 -0.00668603 0.00363594 0.887824 -0.46012 uwb: 0.49925409 1199 422.038 +imu_odom_: 1691062834.763123576 0.253785 -0.0407014 9.79468 -0.0575243 0.0170442 -0.792557 0.22 -1.17 pose: 0.40726788 5.76758 -4.00278 0 -0.00650923 0.00530605 0.895671 -0.444638 uwb: 0.0 1199 422.038 +imu_odom_: 1691062834.789064035 0.414197 -0.136469 9.59835 -0.0426106 -0.0617853 -0.802144 0.22 -1.17 pose: 0.0 5.76758 -4.00278 0 -0.00650923 0.00530605 0.895671 -0.444638 uwb: 0.0 1199 422.038 +imu_odom_: 1691062834.811193511 0.509965 -0.114922 9.47146 -0.036219 0.0575243 -0.838363 0.21 -1.06 pose: 0.7109828 5.76593 -4.00512 0 -0.00712807 0.00488577 0.89701 -0.441927 uwb: 0.49942907 1200.98 422.823 +imu_odom_: 1691062834.836249981 0.117316 -0.0909797 9.4547 -0.0340885 -0.0138484 -0.817058 0.19 -0.94 pose: 0.42926991 5.76593 -4.00512 0 -0.00942747 0.00437757 0.904834 -0.425638 uwb: 0.0 1200.98 422.823 +imu_odom_: 1691062834.853174100 0.25618 0.344765 9.95748 -0.04048 -0.0884169 -0.809601 0.19 -0.94 pose: 0.0 5.76593 -4.00512 0 -0.00942747 0.00437757 0.904834 -0.425638 uwb: 0.49994238 1204.41 424.329 +imu_odom_: 1691062834.871182280 0.493206 -0.0670376 9.74919 -0.0479369 -0.0276969 -0.824515 0.19 -0.94 pose: 0.0 5.76593 -4.00512 0 -0.00942747 0.00437757 0.904834 -0.425638 uwb: 0.0 1204.41 424.329 +imu_odom_: 1691062834.896063177 0.447716 -0.134075 9.3709 -0.0756338 -0.02024 -0.840494 0.17 -0.88 pose: 0.47950942 5.75946 -4.01274 0 -0.00658419 0.0046876 0.91344 -0.406894 uwb: 0.50001821 1207.77 426.056 +imu_odom_: 1691062834.922193500 1.06781 0.0670376 9.98861 -0.0628506 -0.0298274 -0.833037 0.18 -0.94 pose: 0.77000967 5.74868 -4.02566 0 -0.00390456 0.00576592 0.926474 -0.376295 uwb: 0.0 1207.77 426.056 +imu_odom_: 1691062834.945247797 0.507571 -0.35913 9.69891 -0.0596548 -0.0149137 -0.869256 0.18 -0.94 pose: 0.0 5.74868 -4.02566 0 -0.00390456 0.00576592 0.926474 -0.376295 uwb: 0.50196643 1210.72 427.308 +imu_odom_: 1691062834.970079404 1.01754 0.253785 9.9096 -0.072438 -0.0543285 -0.870321 0.18 -0.91 pose: 0.7996442 5.74669 -4.02813 0 -0.0031556 0.00621183 0.927779 -0.373065 uwb: 0.0 1210.72 427.308 +imu_odom_: 1691062834.996194270 0.251391 -0.227449 9.94073 -0.0490022 0.0191748 -0.892692 0.18 -0.91 pose: 0.0 5.74669 -4.02813 0 -0.0031556 0.00621183 0.927779 -0.373065 uwb: 0.49947865 1209.99 427.742 +imu_odom_: 1691062835.22198017 0.577003 -0.21069 10.2496 -0.0319579 0.0170442 -0.884169 0.18 -0.91 pose: 0.49024212 5.74028 -4.03581 0 0.000647173 0.00600784 0.935744 -0.35263 uwb: 0.0 1209.99 427.742 +imu_odom_: 1691062835.46187342 0.248997 0.0933739 10.003 -0.0415453 -0.0479369 -0.887365 0.18 -0.91 pose: 0.0 5.74028 -4.03581 0 0.000647173 0.00600784 0.935744 -0.35263 uwb: 0.50052861 1210.19 428.741 +imu_odom_: 1691062835.63204206 -0.0263362 -0.0454898 9.663 -0.0394148 -0.015979 -0.892692 0.26 -1.32 pose: 0.52165276 5.7339 -4.04351 0 0.00068745 0.00521217 0.943968 -0.329994 uwb: 0.0 1210.19 428.741 +imu_odom_: 1691062835.89234202 0.0430956 0.148441 9.62469 -0.0607201 -0.0330232 -0.864995 0.26 -1.32 pose: 0.0 5.7339 -4.04351 0 0.00068745 0.00521217 0.943968 -0.329994 uwb: 0.0 1210.19 428.741 +imu_odom_: 1691062835.115044002 1.06063 -0.234632 10.2232 -0.0873517 -0.00106526 -0.860734 0.19 -0.97 pose: 0.47954151 5.71982 -4.04482 0 -0.0003992950.00623127 0.951063 -0.308933 uwb: 0.49787751 1206.52 427.974 +imu_odom_: 1691062835.141050083 0.986411 -0.280122 9.9096 -0.0511327 -0.00958738 -0.885235 0.19 -0.97 pose: 0.61840744 5.71498 -4.04974 0 -0.0009968270.00654217 0.959353 -0.282131 uwb: 0.0 1206.52 427.974 +imu_odom_: 1691062835.158278684 0.318429 0.102951 10.2711 -0.0436758 -0.0394148 -0.864995 0.19 -0.97 pose: 0.0 5.71498 -4.04974 0 -0.0009968270.00654217 0.959353 -0.282131 uwb: 0.49998614 1209.27 429.726 +imu_odom_: 1691062835.182085437 0.00718261 -0.0263362 9.82102 -0.0351537 0.0276969 -0.863929 0.18 -0.91 pose: 0.9145832 5.71345 -4.05253 0 -9.29532e-050.00652305 0.960536 -0.278078 uwb: 0.0 1209.27 429.726 +imu_odom_: 1691062835.200037329 0.131681 0.0454898 9.95509 -0.0319579 -0.0436758 -0.902279 0.18 -0.91 pose: 0.0 5.71345 -4.05253 0 -9.29532e-050.00652305 0.960536 -0.278078 uwb: 0.50049361 1209.12 430.122 +imu_odom_: 1691062835.216090876 0.246603 -0.0981623 9.77313 -0.0607201 -0.0308927 -0.890561 0.18 -0.91 pose: 0.0 5.71345 -4.05253 0 -9.29532e-050.00652305 0.960536 -0.278078 uwb: 0.0 1209.12 430.122 +imu_odom_: 1691062835.233028995 0.557849 0.047884 10.0413 -0.104396 -0.0575243 -0.861799 0.26 -1.32 pose: 0.41910011 5.70709 -4.06025 0 -0.0005273360.00763651 0.965672 -0.259653 uwb: 0.0 1209.12 430.122 +imu_odom_: 1691062835.249025378 0.505177 0.0407014 10.1682 -0.0937433 -0.0628506 -0.860734 0.26 -1.32 pose: 0.0 5.70709 -4.06025 0 -0.0005273360.00763651 0.965672 -0.259653 uwb: 0.50063068 1203.57 428.292 +imu_odom_: 1691062835.267058057 1.11091 0.416591 10.2328 -0.0628506 -0.0820254 -0.869256 0.24 -1.2 pose: 0.56952409 5.69302 -4.06163 0 -0.00438106 0.00726937 0.972163 -0.234153 uwb: 0.0 1203.57 428.292 +imu_odom_: 1691062835.282147703 0.833182 -0.1652 9.165 -0.106526 -0.0969391 -0.860734 0.18 -0.94 pose: 0.0 5.69302 -4.06163 0 -0.00438106 0.00726937 0.972163 -0.234153 uwb: 0.0 1203.57 428.292 +imu_odom_: 1691062835.300017350 0.794875 -0.191536 9.15303 -0.0596548 -0.0266316 -0.876713 0.24 -1.23 pose: 0.0 5.69302 -4.06163 0 -0.00438106 0.00726937 0.972163 -0.234153 uwb: 0.49924826 1209.96 430.905 +imu_odom_: 1691062835.317110334 0.859518 -0.196325 9.84256 -0.0703074 -0.0170442 -0.883104 0.24 -1.23 pose: 0.67039102 5.68667 -4.06936 0 0.00315547 0.00949815 0.978793 -0.204605 uwb: 0.0 1209.96 430.905 +imu_odom_: 1691062835.331019967 0.687136 -0.0407014 10.07 -0.0575243 -0.0543285 -0.889496 0.24 -1.23 pose: 0.0 5.68667 -4.06936 0 0.00315547 0.00949815 0.978793 -0.204605 uwb: 0.0 1209.96 430.905 +imu_odom_: 1691062835.349084727 0.474052 -0.387861 10.1227 -0.0628506 -0.00319579 -0.899083 0.18 -0.94 pose: 0.0 5.68667 -4.06936 0 0.00315547 0.00949815 0.978793 -0.204605 uwb: 0.50002406 1208.29 430.841 +imu_odom_: 1691062835.363030524 0.502782 0.248997 9.54329 -0.0777643 -0.0340885 -0.890561 0.18 -0.94 pose: 0.33993189 5.68667 -4.06936 0 0.00672962 0.00919641 0.98186 -0.189264 uwb: 0.0 1208.29 430.841 +imu_odom_: 1691062835.380026973 0.670376 0.122104 10.24 -0.0553937 -0.0607201 -0.903344 0.17 -0.88 pose: 0.38945979 5.67226 -4.07057 0 0.00689754 0.00893169 0.985141 -0.171376 uwb: 0.0 1208.29 430.841 +imu_odom_: 1691062835.403159432 0.555455 0.354342 10.4028 -0.0713727 -0.056459 -0.910801 0.17 -0.88 pose: 0.0 5.67226 -4.07057 0 0.00689754 0.00893169 0.985141 -0.171376 uwb: 0.49918993 1210.66 432.066 +imu_odom_: 1691062835.421022079 0.988805 0.0933739 10.1634 -0.0703074 0.0255663 -0.875647 0.18 -0.88 pose: 0.7130243 5.67259 -4.07068 0 0.00729234 0.00966524 0.985703 -0.168058 uwb: 0.0 1210.66 432.066 +imu_odom_: 1691062835.435082786 0.962469 0.0837971 9.67736 -0.0756338 -0.056459 -0.836233 0.19 -0.82 pose: 0.0 5.67259 -4.07068 0 0.00729234 0.00966524 0.985703 -0.168058 uwb: 0.0 1210.66 432.066 +imu_odom_: 1691062835.452029946 0.744597 -0.263362 9.89524 -0.0532632 -0.0213053 -0.828776 0.19 -0.76 pose: 0.0 5.67259 -4.07068 0 0.00729234 0.00966524 0.985703 -0.168058 uwb: 0.50147355 1206.4 431.38 +imu_odom_: 1691062835.470143120 0.471658 -0.148441 9.414 -0.0543285 0.0213053 -0.76699 0.19 -0.76 pose: 0.71865898 5.66625 -4.07841 0 0.011001 0.0132628 0.990635 -0.135444 uwb: 0.0 1206.4 431.38 +imu_odom_: 1691062835.484195661 0.294487 -0.196325 10.477 -0.0788296 0.0117179 -0.639159 0.2 -0.7 pose: 0.0 5.66625 -4.07841 0 0.011001 0.0132628 0.990635 -0.135444 uwb: 0.0 1206.4 431.38 +imu_odom_: 1691062835.501163236 0.68953 -0.387861 10.0054 -0.052198 -0.0671117 -0.541154 0.2 -0.7 pose: 0.0 5.66625 -4.07841 0 0.011001 0.0132628 0.990635 -0.135444 uwb: 0.49860955 1209.2 432.93 +imu_odom_: 1691062835.517150578 0.538695 -0.234632 9.5816 -0.0585895 -0.052198 -0.532632 0.2 -0.7 pose: 0.34117432 5.65215 -4.07973 0 0.00933218 0.0108011 0.99244 -0.121895 uwb: 0.0 1209.2 432.93 +imu_odom_: 1691062835.535152343 0.54109 0.071826 9.67497 -0.0703074 -0.00426106 -0.507066 0.23 -0.67 pose: 0.41006481 5.65206 -4.0797 0 0.00962076 0.00732842 0.993884 -0.109769 uwb: 0.0 1209.2 432.93 +imu_odom_: 1691062835.552147333 0.25618 0.0287304 10.0341 -0.0436758 0.015979 -0.470847 0.23 -0.67 pose: 0.8009566 5.65215 -4.07973 0 0.00925853 0.00800974 0.994121 -0.107583 uwb: 0.0 1209.2 432.93 +imu_odom_: 1691062835.569069120 0.155623 -0.526724 10.0963 -0.0585895 -0.0181095 -0.434628 0.23 -0.67 pose: 0.0 5.65215 -4.07973 0 0.00925853 0.00800974 0.994121 -0.107583 uwb: 0.0 1209.2 432.93 +imu_odom_: 1691062835.587007888 0.6608 -0.201113 9.94791 -0.0543285 -0.02024 -0.409062 0.18 -0.44 pose: 0.43908976 5.63798 -4.08095 0 0.00603535 0.00783871 0.99528 -0.0965356 uwb: 0.0 1209.2 432.93 +imu_odom_: 1691062835.604088332 0.816423 0.0023942 9.65103 -0.0245011 0.0149137 -0.383495 0.18 -0.38 pose: 0.0 5.63798 -4.08095 0 0.00603535 0.00783871 0.99528 -0.0965356 uwb: 0.100060224 1209.97 433.89 +imu_odom_: 1691062835.617195928 -0.0191536 -0.158017 10.0245 -0.0458064 0.052198 -0.345146 0.18 -0.38 pose: 0.0 5.63798 -4.08095 0 0.00603535 0.00783871 0.99528 -0.0965356 uwb: 0.0 1209.97 433.89 +imu_odom_: 1691062835.635137029 0.78051 -0.0383072 9.78031 -0.0798948 0.00958738 -0.332363 0.18 -0.38 pose: 0.25959125 5.63806 -4.08098 0 0.00813134 0.00721693 0.995804 -0.0908598 uwb: 0.0 1209.97 433.89 +imu_odom_: 1691062835.652060274 0.64404 -0.162806 9.69173 -0.0543285 0.0127832 -0.32171 0.18 -0.32 pose: 0.0 5.63806 -4.08098 0 0.00813134 0.00721693 0.995804 -0.0908598 uwb: 0.49939993 1210.73 434.874 +imu_odom_: 1691062835.669054098 0.201113 0.0215478 9.59357 -0.0372843 0.0436758 -0.302535 0.18 -0.32 pose: 0.30111336 5.62397 -4.08217 0 0.0078631 0.00766142 0.996323 -0.0849714 uwb: 0.0 1210.73 434.874 +imu_odom_: 1691062835.687129650 0.775721 -0.337582 10.2065 -0.0649811 -0.107592 -0.259925 0.17 -0.29 pose: 0.43914517 5.62034 -4.08638 0 0.00760485 0.00710174 0.996962 -0.0771899 uwb: 0.0 1210.73 434.874 +imu_odom_: 1691062835.700243371 0.847547 -0.227449 9.48104 -0.0628506 -0.0213053 -0.250337 0.17 -0.29 pose: 0.0 5.62034 -4.08638 0 0.00760485 0.00710174 0.996962 -0.0771899 uwb: 0.50090774 1208.44 435 +imu_odom_: 1691062835.717124327 0.907402 -0.383072 9.62708 -0.0532632 0.0830906 -0.216249 0.17 -0.29 pose: 0.0 5.62034 -4.08638 0 0.00760485 0.00710174 0.996962 -0.0771899 uwb: 0.0 1208.44 435 +imu_odom_: 1691062835.733119543 0.960075 -0.447716 10.5105 -0.0894822 -0.0628506 -0.165116 0.15 -0.32 pose: 0.8081020 5.61751 -4.08981 0 0.00857558 0.00652069 0.99705 -0.0759884 uwb: 0.0 1208.44 435 +imu_odom_: 1691062835.751137931 1.76692 -0.0981623 9.69891 -0.0585895 -0.0585895 -0.22051 0.13 -0.32 pose: 0.0 5.61751 -4.08981 0 0.00857558 0.00652069 0.99705 -0.0759884 uwb: 0.50030987 1207.17 435.408 +imu_odom_: 1691062835.768126214 1.90339 0.155623 9.7851 -0.0319579 0.0500674 -0.250337 0.13 -0.32 pose: 0.64055237 5.60986 -4.08336 0 0.0144221 0.00318083 0.997589 -0.0678151 uwb: 0.0 1207.17 435.408 +imu_odom_: 1691062835.785242531 0.993594 -0.0766145 10.0173 -0.0820254 0.102265 -0.191748 0.11 -0.26 pose: 0.0 5.60986 -4.08336 0 0.0144221 0.00318083 0.997589 -0.0678151 uwb: 0.0 1207.17 435.408 +imu_odom_: 1691062835.802139819 0.332794 -0.713472 10.0485 -0.0671117 0.0532632 -0.176834 0.11 -0.26 pose: 0.0 5.60986 -4.08336 0 0.0144221 0.00318083 0.997589 -0.0678151 uwb: 0.0 1207.17 435.408 +imu_odom_: 1691062835.818272986 0.663194 -0.347159 9.7444 -0.0660464 -0.015979 -0.229032 0.11 -0.26 pose: 0.33814409 5.60344 -4.09103 0 0.0170777 0.00424251 0.997841 -0.0632702 uwb: 0.0 1207.17 435.408 +imu_odom_: 1691062835.834992659 0.713472 0.0454898 9.66539 -0.0426106 0 -0.213053 0.13 -0.29 pose: 0.43268222 5.59952 -4.08776 0 0.0157927 0.00132954 0.998182 -0.058143 uwb: 0.0 1207.17 435.408 +imu_odom_: 1691062835.851143325 0.881066 0.071826 9.92397 -0.0671117 0.00958738 -0.156594 0.13 -0.29 pose: 0.7726666 5.59576 -4.08462 0 0.0157506 0.00216574 0.998239 -0.0571572 uwb: 0.99965438 1209.46 436.781 +imu_odom_: 1691062835.867990741 0.797269 -0.42138 10.3118 -0.0681769 -0.02024 -0.131028 0.13 -0.29 pose: 0.0 5.59576 -4.08462 0 0.0157506 0.00216574 0.998239 -0.0571572 uwb: 0.0 1209.46 436.781 +imu_odom_: 1691062835.884046329 0.687136 -0.244209 9.80665 -0.0447411 -0.0106526 -0.144876 0.07 -0.17 pose: 0.41991089 5.59576 -4.08462 0 0.0169782 0.00273128 0.998447 -0.0529985 uwb: 0.0 1209.46 436.781 +imu_odom_: 1691062835.909043595 0.785298 0.0287304 9.88566 -0.0596548 -0.00745685 -0.0958738 0.09 -0.23 pose: 0.0 5.59576 -4.08462 0 0.0169782 0.00273128 0.998447 -0.0529985 uwb: 0.49911411 1206.84 436.314 +imu_odom_: 1691062835.923038972 0.502782 -0.225055 9.7875 -0.0617853 0.0181095 -0.0852212 0.09 -0.23 pose: 0.24010032 5.59576 -4.08462 0 0.0163339 0.00226544 0.998563 -0.0509919 uwb: 0.0 1206.84 436.314 +imu_odom_: 1691062835.947007590 -0.275333 0.0526724 10.3238 -0.0223706 0.036219 -0.201335 0.07 -0.08 pose: 0.0 5.59576 -4.08462 0 0.0163339 0.00226544 0.998563 -0.0509919 uwb: 0.50170103 1207.07 437.222 +imu_odom_: 1691062835.973125372 -1.27611 -0.155623 9.99819 -0.0649811 0.0255663 -0.0500674 0.07 -0.08 pose: 0.39029682 5.58932 -4.09226 0 0.0143106 0.00366352 0.998739 -0.0479806 uwb: 0.0 1207.07 437.222 +imu_odom_: 1691062835.996141755 0.500388 -0.304064 9.991 -0.0383495 -0.0841559 -0.0660464 0.11 -0.08 pose: 0.42094917 5.58932 -4.09226 0 0.00939623 0.00393338 0.998941 -0.0448777 uwb: 0.0 1207.07 437.222 +imu_odom_: 1691062836.14133603 0.909797 0.059855 9.88087 -0.02024 -0.0117179 -0.0479369 0.11 -0.08 pose: 0.0 5.58932 -4.09226 0 0.00939623 0.00393338 0.998941 -0.0448777 uwb: 0.0 1207.07 437.222 +imu_odom_: 1691062836.40121019 -0.0670376 -0.428562 9.47625 -0.0671117 0.0276969 -0.0266316 0.12 -0.08 pose: 0.6913548 5.58932 -4.09226 0 0.00934958 0.00339392 0.998959 -0.0445171 uwb: 0.0 1207.07 437.222 +imu_odom_: 1691062836.65960860 0.124498 -0.289698 9.79468 -0.0415453 -0.0351537 -0.0703074 0.12 -0.08 pose: 0.0 5.58932 -4.09226 0 0.00934958 0.00339392 0.998959 -0.0445171 uwb: 0.99701205 1208.88 438.343 +imu_odom_: 1691062836.87021151 0.205901 -0.186748 9.68933 -0.0575243 0 0.00213053 0.13 -0.08 pose: 0.43111606 5.58169 -4.0858 0 0.00972644 0.00316735 0.99904 -0.0425885 uwb: 0.0 1208.88 438.343 +imu_odom_: 1691062836.99965424 0.416591 -0.438139 9.80904 -0.072438 0.0511327 -0.0191748 0.13 -0.08 pose: 0.0 5.58169 -4.0858 0 0.00972644 0.00316735 0.99904 -0.0425885 uwb: 0.49970616 1208.26 438.513 +imu_odom_: 1691062836.124111366 0.466869 -0.23942 9.92157 -0.0607201 -0.00319579 -0.0479369 0.13 -0.05 pose: 0.48834643 5.5752 -4.0934 0 0.00521625 0.00176659 0.999164 -0.0404992 uwb: 0.0 1208.26 438.513 +imu_odom_: 1691062836.149995245 0.169988 -0.174777 10.4531 -0.0639159 -0.052198 -0.00958738 0.13 -0.05 pose: 0.0 5.5752 -4.0934 0 0.00521625 0.00176659 0.999164 -0.0404992 uwb: 0.50006198 1208.09 438.976 +imu_odom_: 1691062836.176033408 -0.146046 -0.25618 9.76355 -0.052198 -0.00958738 -0.0255663 0.15 -0.08 pose: 0.78010076 5.56309 -4.0922 0 0.00154843 -0.0016296 0.999269 -0.0381604 uwb: 0.0 1208.09 438.976 +imu_odom_: 1691062836.193101603 0.785298 -0.146046 9.81383 -0.056459 -0.0777643 -0.00958738 0.15 -0.08 pose: 0.0 5.56309 -4.0922 0 0.00154843 -0.0016296 0.999269 -0.0381604 uwb: 0.0 1208.09 438.976 +imu_odom_: 1691062836.217099678 0.184354 0 10.0269 -0.0671117 0.00426106 0.0138484 0.17 -0.02 pose: 0.8057105 5.56108 -4.09455 0 0.000764554 -0.00165889 0.99928 -0.0378996 uwb: 0.0 1208.09 438.976 +imu_odom_: 1691062836.242984725 0.483629 -0.0550666 10.2544 -0.0639159 -0.0298274 -0.00958738 0.19 -0.02 pose: 0.24965768 5.56108 -4.09455 0 -5.67906e-05-0.00152289 0.999309 -0.0371454 uwb: 0.100147721 1208.31 439.862 +imu_odom_: 1691062836.267135916 0.318429 0.0335188 9.9503 -0.0575243 -0.00958738 0.0117179 0.19 -0.02 pose: 0.0 5.56108 -4.09455 0 -5.67906e-05-0.00152289 0.999309 -0.0371454 uwb: 0.0 1208.31 439.862 +imu_odom_: 1691062836.284960066 0.768539 -0.301669 10.319 -0.0479369 0.0149137 -0.00745685 0.19 -0.02 pose: 0.0 5.56108 -4.09455 0 -5.67906e-05-0.00152289 0.999309 -0.0371454 uwb: 0.0 1208.31 439.862 +imu_odom_: 1691062836.308995472 0.268151 -0.134075 9.85214 -0.0585895 -0.0394148 0.00745685 0.17 -0.08 pose: 0.42160830 5.55342 -4.08812 0 -9.1842e-05 0.000925801 0.999337 -0.0363902 uwb: 0.50093984 1214.44 442.809 +imu_odom_: 1691062836.334112606 0.40462 -0.339977 10.4339 -0.0628506 -0.015979 0.00319579 0.2 -0.02 pose: 0.49895080 5.54698 -4.09578 0 0.000506232 0.00419739 0.999363 -0.0354292 uwb: 0.0 1214.44 442.809 +imu_odom_: 1691062836.350002246 0.222661 -0.189142 10.0006 -0.0628506 0.00958738 0.00319579 0.2 -0.02 pose: 0.0 5.54698 -4.09578 0 0.000506232 0.00419739 0.999363 -0.0354292 uwb: 0.49872914 1212.18 442.898 +imu_odom_: 1691062836.376003661 0.500388 -0.497994 9.83538 -0.0639159 0.0138484 0.0255663 0.16 -0.02 pose: 0.41954634 5.53934 -4.08932 0 -0.0005481610.00299423 0.999395 -0.0346582 uwb: 0.0 1212.18 442.898 +imu_odom_: 1691062836.401107670 0.474052 -0.229843 10.2448 -0.0607201 -0.0585895 0.0234358 0.16 -0.02 pose: 0.0 5.53934 -4.08932 0 -0.0005481610.00299423 0.999395 -0.0346582 uwb: 0.50007948 1215.25 445.082 +imu_odom_: 1691062836.426000526 0.397437 -0.148441 9.83299 -0.0617853 -0.0117179 0.0266316 0.19 -0.02 pose: 0.41092810 5.53287 -4.09695 0 -0.00170051 0.000353694 0.99942 -0.0339983 uwb: 0.0 1215.25 445.082 +imu_odom_: 1691062836.442064280 0.354342 -0.237026 9.48343 -0.0617853 -0.0426106 0.015979 0.19 -0.02 pose: 0.0 5.53287 -4.09695 0 -0.00170051 0.000353694 0.99942 -0.0339983 uwb: 0.0 1215.25 445.082 +imu_odom_: 1691062836.468010865 0.155623 -0.155623 10.1155 -0.0575243 -0.0276969 0.0276969 0.17 -0.02 pose: 0.51131673 5.51878 -4.09809 0 0.00171459 -0.00032043 0.999433 -0.0336128 uwb: 0.49978783 1216.43 446.324 +imu_odom_: 1691062836.482005367 0.428562 -0.184354 9.94551 -0.0415453 -0.0394148 0.00852212 0.17 -0.02 pose: 0.0 5.51878 -4.09809 0 0.00171459 -0.00032043 0.999433 -0.0336128 uwb: 0.0 1216.43 446.324 +imu_odom_: 1691062836.499108852 0.627281 -0.0430956 9.69173 -0.0692422 -0.0191748 0.0138484 0.17 -0.02 pose: 0.0 5.51878 -4.09809 0 0.00171459 -0.00032043 0.999433 -0.0336128 uwb: 0.50091651 1215.68 446.813 +imu_odom_: 1691062836.523970501 0.471658 -0.0407014 10.2089 -0.0671117 -0.00958738 0.0458064 0.16 0.02 pose: 0.40788912 5.51116 -4.09161 0 -0.0007612850.000291041 0.999446 -0.0332643 uwb: 0.0 1215.68 446.813 +imu_odom_: 1691062836.548975641 0.339977 -0.21069 10.07 -0.0575243 0.0106526 0.00958738 0.19 -0.02 pose: 0.39097928 5.50468 -4.09922 0 -7.32898e-050.00144358 0.999459 -0.0328506 uwb: 0.49905579 1215.92 447.614 +imu_odom_: 1691062836.563923545 0.174777 -0.0287304 10.1275 -0.052198 0.00319579 0.0170442 0.19 -0.02 pose: 0.34830516 5.49951 -4.09481 0 0.00169424 0.00415511 0.999452 -0.0328001 uwb: 0.0 1215.92 447.614 +imu_odom_: 1691062836.588078528 0.459687 -0.138864 10.1993 -0.0490022 -0.0500674 0.0106526 0.19 -0.02 pose: 0.0 5.49951 -4.09481 0 0.00169424 0.00415511 0.999452 -0.0328001 uwb: 0.0 1215.92 447.614 +imu_odom_: 1691062836.614013738 -0.023942 -0.0814029 9.52892 -0.0479369 -0.00106526 0.0436758 0.17 -0.02 pose: 0.8011899 5.49707 -4.09273 0 0.00101911 0.0036317 0.999459 -0.0326786 uwb: 0.50007656 1215.15 448.169 +imu_odom_: 1691062836.637954067 0.225055 -0.0215478 9.4547 -0.0543285 0.0117179 0.0245011 0.19 -0.02 pose: 0.40020999 5.49058 -4.10033 0 -0.0007842250.0034131 0.999477 -0.032135 uwb: 0.0 1215.15 448.169 +imu_odom_: 1691062836.664093140 -0.117316 -0.25618 9.89284 -0.0458064 0.0266316 0.0330232 0.19 -0.02 pose: 0.0 5.49058 -4.10033 0 -0.0007842250.0034131 0.999477 -0.032135 uwb: 0.49993365 1215.44 448.838 +imu_odom_: 1691062836.688214000 0.294487 -0.160412 9.61511 -0.0703074 0.0127832 0.0298274 0.2 0 pose: 0.49965075 5.48292 -4.0939 0 -0.002157 0.00452172 0.999479 -0.0318886 uwb: 0.0 1215.44 448.838 +imu_odom_: 1691062836.706215473 0.42138 -0.100556 10.0868 -0.0490022 -0.0319579 0.0468716 0.2 0 pose: 0.0 5.48292 -4.0939 0 -0.002157 0.00452172 0.999479 -0.0318886 uwb: 0.49868247 1217.11 450.25 +imu_odom_: 1691062836.722978311 0.493206 -0.129287 9.90002 -0.0660464 0.00639159 0.0351537 0.18 -0.02 pose: 0.50129274 5.46883 -4.09513 0 -0.00627053 0.00383719 0.999473 -0.0316217 uwb: 0.0 1217.11 450.25 +imu_odom_: 1691062836.746097646 0.584185 0.112527 9.81144 -0.0745685 0.00532632 0.036219 0.18 -0.02 pose: 0.0 5.46883 -4.09513 0 -0.00627053 0.00383719 0.999473 -0.0316217 uwb: 0.50059570 1218.77 451.665 +imu_odom_: 1691062836.761929248 0.557849 -0.471658 9.61033 -0.0777643 0.0255663 0.052198 0.18 -0.02 pose: 0.0 5.46883 -4.09513 0 -0.00627053 0.00383719 0.999473 -0.0316217 uwb: 0.0 1218.77 451.665 +imu_odom_: 1691062836.787921622 0.395043 -0.153229 9.94791 -0.052198 -0.00213053 0.0191748 0.19 0 pose: 0.41993132 5.46883 -4.09513 0 -0.00333477 0.00318007 0.99949 -0.0315964 uwb: 0.0 1218.77 451.665 +imu_odom_: 1691062836.809935898 0.574608 -0.203507 10.2304 -0.0607201 -0.0170442 0.0436758 0.18 0 pose: 0.73830742 5.45474 -4.09634 0 0.000875735 0.00120649 0.999506 -0.0313939 uwb: 0.50052278 1223.41 453.921 +imu_odom_: 1691062836.826089772 0.761356 -0.577003 9.60793 -0.0575243 -0.00106526 0.0340885 0.18 0 pose: 0.0 5.45474 -4.09634 0 0.000875735 0.00120649 0.999506 -0.0313939 uwb: 0.0 1223.41 453.921 +imu_odom_: 1691062836.842942147 0.229843 -0.107739 10.07 -0.0415453 0.0500674 0.0245011 0.18 0 pose: 0.0 5.45474 -4.09634 0 0.000875735 0.00120649 0.999506 -0.0313939 uwb: 0.49862123 1222.15 454.271 +imu_odom_: 1691062836.866974345 0.390255 -0.0694318 10.0676 -0.0575243 0.0266316 0.0426106 0.25 -0.02 pose: 0.6162259 5.45474 -4.09634 0 0.00153106 0.00115947 0.999505 -0.0314072 uwb: 0.0 1222.15 454.271 +imu_odom_: 1691062836.884065289 0.296881 -0.0407014 10.1514 -0.0500674 -0.00639159 0.0319579 0.25 -0.02 pose: 0.0 5.45474 -4.09634 0 0.00153106 0.00115947 0.999505 -0.0314072 uwb: 0.0 1222.15 454.271 +imu_odom_: 1691062836.909050889 0.0933739 -0.1652 9.6199 -0.0607201 -0.0181095 0.0298274 0.18 -0.02 pose: 0.39886548 5.44065 -4.09756 0 0.00327778 0.000123651 0.999503 -0.0313417 uwb: 0.49987533 1223.73 455.853 +imu_odom_: 1691062836.926110626 0.634463 -0.220267 9.76116 -0.0511327 0.0138484 0.0351537 0.18 -0.02 pose: 0.0 5.44065 -4.09756 0 0.00327778 0.000123651 0.999503 -0.0313417 uwb: 0.0 1223.73 455.853 +imu_odom_: 1691062836.942055971 0.071826 -0.37589 10.0054 -0.0479369 -0.02024 0.0372843 0.2 -0.02 pose: 0.58963625 5.42656 -4.09877 0 -0.00123592 0.00374773 0.999506 -0.0311878 uwb: 0.0 1223.73 455.853 +imu_odom_: 1691062836.959002840 0.514753 -0.196325 9.76595 -0.0553937 -0.0276969 0.0319579 0.23 0 pose: 0.0 5.42656 -4.09877 0 -0.00123592 0.00374773 0.999506 -0.0311878 uwb: 0.50031863 1223.39 456.678 +imu_odom_: 1691062836.983928943 0.371101 -0.134075 9.6223 -0.0596548 -0.00639159 0.036219 0.18 0.02 pose: 0.66068786 5.4195 -4.09937 0 -0.0004760480.00202879 0.999518 -0.0309845 uwb: 0.0 1223.39 456.678 +imu_odom_: 1691062837.925101 0.519542 -0.0981623 9.74201 -0.0777643 -0.00532632 0.0255663 0.18 0.02 pose: 0.0 5.4195 -4.09937 0 -0.0004760480.00202879 0.999518 -0.0309845 uwb: 0.50125190 1225.99 458.419 +imu_odom_: 1691062837.24916177 0.56982 -0.241814 9.76595 -0.0628506 0.00426106 0.0319579 0.18 0 pose: 0.41922261 5.41247 -4.09997 0 -0.0001129920.00436263 0.999515 -0.0308294 uwb: 0.0 1225.99 458.419 +imu_odom_: 1691062837.41912626 0.289698 -0.251391 10.2663 -0.056459 -0.00213053 0.0394148 0.18 0 pose: 0.8025023 5.41247 -4.09997 0 0.000533964 0.00390553 0.999518 -0.030802 uwb: 0.0 1225.99 458.419 +imu_odom_: 1691062837.66928267 0.565032 -0.0095768110.1203 -0.0607201 0 0.0372843 0.18 -0.02 pose: 0.24016450 5.40602 -4.10761 0 0.00114526 0.0025394 0.999523 -0.0307456 uwb: 0.49991325 1224.24 458.631 +imu_odom_: 1691062837.92925307 0.711078 -0.378284 9.75877 -0.0671117 -0.0170442 0.0308927 0.18 -0.02 pose: 0.0 5.40602 -4.10761 0 0.00114526 0.0025394 0.999523 -0.0307456 uwb: 0.50037989 1221.49 458.592 +imu_odom_: 1691062837.115967065 0.802058 -0.215478 9.79468 -0.0458064 0.04048 0.0266316 0.19 0 pose: 0.18126591 5.39838 -4.10116 0 0.000979732 0.00269956 0.999523 -0.030734 uwb: 0.0 1221.49 458.592 +imu_odom_: 1691062837.132907518 0.739808 -0.418985 9.93115 -0.0511327 0.0351537 0.0394148 0.19 0 pose: 0.0 5.39838 -4.10116 0 0.000979732 0.00269956 0.999523 -0.030734 uwb: 0.0 1221.49 458.592 +imu_odom_: 1691062837.157967197 0.790087 -0.347159 9.98622 -0.0660464 0.00106526 0.0319579 0.21 0 pose: 0.48861767 5.39838 -4.10116 0 0.004703 0.00200683 0.99952 -0.030571 uwb: 0.50016990 1219.15 458.931 +imu_odom_: 1691062837.184059899 0.457293 -0.268151 9.66779 -0.0287621 -0.0266316 0.0330232 0.21 0 pose: 0.40967985 5.38428 -4.10235 0 0.00747936 0.00032541 0.999508 -0.030453 uwb: 0.0 1219.15 458.931 +imu_odom_: 1691062837.208941672 0.215478 -0.258574 10.1299 -0.0500674 -0.0394148 0.0372843 0.19 -0.02 pose: 0.43136982 5.37447 -4.10317 0 0.00677131 -0.00108315 0.999517 -0.0303212 uwb: 0.49967992 1220.25 460.29 +imu_odom_: 1691062837.226174357 0.464475 -0.270545 9.18895 -0.0692422 -0.0117179 0.0351537 0.19 -0.02 pose: 0.0 5.37447 -4.10317 0 0.00677131 -0.00108315 0.999517 -0.0303212 uwb: 0.0 1220.25 460.29 +imu_odom_: 1691062837.249956321 0.0502782 -0.304064 9.58399 -0.0671117 0.0426106 0.0500674 0.21 0 pose: 0.31889232 5.37019 -4.10353 0 0.00434603 -0.00183837 0.99953 -0.0302856 uwb: 0.49970910 1218.14 460.068 +imu_odom_: 1691062837.275946654 0.237026 -0.0837971 9.90242 -0.0649811 -0.0138484 0.0330232 0.22 0 pose: 0.0 5.37019 -4.10353 0 0.00434603 -0.00183837 0.99953 -0.0302856 uwb: 0.0 1218.14 460.068 +imu_odom_: 1691062837.288969089 0.445322 -0.373495 9.67976 -0.0447411 -0.0330232 0.04048 0.22 0 pose: 0.41965134 5.3561 -4.10471 0 0.00035031 -0.00264195 0.999535 -0.030373 uwb: 0.0 1218.14 460.068 +imu_odom_: 1691062837.312895711 0.418985 -0.275333 9.80186 -0.0607201 0.00639159 0.0468716 0.22 0 pose: 0.0 5.3561 -4.10471 0 0.00035031 -0.00264195 0.999535 -0.030373 uwb: 0.50041780 1216.45 460.174 +imu_odom_: 1691062837.338967997 0.100556 -0.011971 10.4076 -0.0500674 0.0287621 0.0639159 0.18 0.02 pose: 0.39063515 5.3561 -4.10471 0 0.000574575 -0.00296319 0.999535 -0.0303485 uwb: 0.0 1216.45 460.174 +imu_odom_: 1691062837.352950542 0.395043 -0.189142 9.75877 -0.072438 0 0.0607201 0.18 0.02 pose: 0.0 5.3561 -4.10471 0 0.000574575 -0.00296319 0.999535 -0.0303485 uwb: 0.49809335 1218.59 461.667 +imu_odom_: 1691062837.378892169 0.567426 -0.21069 10.0509 -0.0458064 0.0149137 0.04048 0.19 0.02 pose: 0.55972762 5.34201 -4.1059 0 -0.000576361-0.0008536120.999523 -0.0308716 uwb: 0.0 1218.59 461.667 +imu_odom_: 1691062837.403949807 0.227449 -0.397437 9.42358 -0.0585895 -0.00213053 0.052198 0.19 0.02 pose: 0.0 5.34201 -4.1059 0 -0.000576361-0.0008536120.999523 -0.0308716 uwb: 0.50009407 1216.42 461.604 +imu_odom_: 1691062837.430895583 0.672771 -0.328006 10.0844 -0.0490022 -0.0500674 0.0458064 0.2 0 pose: 0.8006941 5.34201 -4.1059 0 0.000138943 -0.00070044 0.999523 -0.0308745 uwb: 0.0 1216.42 461.604 +imu_odom_: 1691062837.455890224 0.727837 -0.100556 10.4411 -0.0575243 0.00213053 0.0490022 0.21 0 pose: 0.50969809 5.32791 -4.1071 0 0.000807931 -0.00222279 0.999515 -0.031066 uwb: 0.50000950 1216.61 462.49 +imu_odom_: 1691062837.478938981 0.620098 -0.0263362 10.659 -0.0607201 -0.0319579 0.0426106 0.21 0 pose: 0.0 5.32791 -4.1071 0 0.000807931 -0.00222279 0.999515 -0.031066 uwb: 0.0 1216.61 462.49 +imu_odom_: 1691062837.495882643 0.351948 -0.0430956 9.61511 -0.0458064 0.00745685 0.0511327 0.21 0 pose: 0.26984273 5.32791 -4.1071 0 0.00372636 -0.00212986 0.999505 -0.0311564 uwb: 0.50105943 1214.82 462.883 +imu_odom_: 1691062837.519948089 0.531513 -0.299275 9.50259 -0.0671117 0.0149137 0.0447411 0.25 0.02 pose: 0.48000235 5.31382 -4.1083 0 0.00572803 0.00140546 0.999493 -0.031295 uwb: 0.0 1214.82 462.883 +imu_odom_: 1691062837.537042533 0.533907 -0.363919 9.83777 -0.0585895 -0.00639159 0.0426106 0.25 0.02 pose: 0.0 5.31382 -4.1083 0 0.00572803 0.00140546 0.999493 -0.031295 uwb: 0.0 1214.82 462.883 +imu_odom_: 1691062837.562152085 0.438139 -0.35913 10.398 -0.0500674 0.0234358 0.0415453 0.22 0 pose: 0.41091645 5.31382 -4.1083 0 0.00566333 -0.00121511 0.999489 -0.0314339 uwb: 0.50058404 1217.87 464.772 +imu_odom_: 1691062837.586992152 0.727837 -0.11971 9.93115 -0.0703074 0.0181095 0.0458064 0.21 0.02 pose: 0.34148640 5.30182 -4.10704 0 0.00392864 -0.0040107 0.999488 -0.0314914 uwb: 0.0 1217.87 464.772 +imu_odom_: 1691062837.609961289 0.933739 -0.268151 10.3453 -0.0553937 -0.0287621 0.0553937 0.21 0.02 pose: 0.0 5.30182 -4.10704 0 0.00392864 -0.0040107 0.999488 -0.0314914 uwb: 0.49913454 1218.6 465.653 +imu_odom_: 1691062837.635889792 0.454898 -0.0861913 10.1442 -0.0394148 0.0191748 0.0298274 0.18 -0.02 pose: 0.7754373 5.29973 -4.10952 0 0.00446351 -0.00360534 0.999487 -0.0315106 uwb: 0.0 1218.6 465.653 +imu_odom_: 1691062837.652898491 -0.167594 -0.430956 9.63666 -0.0223706 -0.00213053 0.0394148 0.18 -0.02 pose: 0.0 5.29973 -4.10952 0 0.00446351 -0.00360534 0.999487 -0.0315106 uwb: 0.49901205 1222.02 467.908 +imu_odom_: 1691062837.676890442 0.354342 -0.172383 9.59117 -0.0394148 0 0.0490022 0.2 0 pose: 0.49003508 5.29208 -4.10308 0 0.00762631 -0.00177955 0.999467 -0.0316798 uwb: 0.0 1222.02 467.908 +imu_odom_: 1691062837.694072964 0.577003 -0.25618 10.1011 -0.0575243 0.02024 0.0585895 0.2 0 pose: 0.0 5.29208 -4.10308 0 0.00762631 -0.00177955 0.999467 -0.0316798 uwb: 0.50125192 1219.41 467.661 +imu_odom_: 1691062837.709943938 0.169988 -0.31364 9.67257 -0.0575243 0.0234358 0.0436758 0.2 0 pose: 0.0 5.29208 -4.10308 0 0.00762631 -0.00177955 0.999467 -0.0316798 uwb: 0.0 1219.41 467.661 +imu_odom_: 1691062837.737032622 0.483629 -0.213084 10.1394 -0.04048 -0.0340885 0.0511327 0.2 0 pose: 0.41979717 5.28565 -4.11073 0 0.0040904 -0.00015322 0.999491 -0.0316302 uwb: 0.0 1219.41 467.661 +imu_odom_: 1691062837.761950269 0.567426 -0.213084 9.44273 -0.0458064 -0.0149137 0.0458064 0.19 0 pose: 0.76142939 5.27156 -4.11196 0 0.00505955 0.000730999 0.999473 -0.0320572 uwb: 0.49882831 1219.61 468.482 +imu_odom_: 1691062837.778878181 0.620098 -0.0933739 10.4267 -0.0596548 0.0319579 0.0617853 0.19 0 pose: 0.0 5.27156 -4.11196 0 0.00505955 0.000730999 0.999473 -0.0320572 uwb: 0.0 1219.61 468.482 +imu_odom_: 1691062837.804988673 0.433351 -0.423774 9.65342 -0.0777643 0.0245011 0.0415453 0.19 0 pose: 0.8899972 5.27156 -4.11196 0 0.00599186 0.000687947 0.999467 -0.032086 uwb: 0.50283266 1219.68 469.628 +imu_odom_: 1691062837.821932917 0.275333 -0.270545 10.082 -0.0468716 -0.0276969 0.0500674 0.19 0 pose: 0.0 5.27156 -4.11196 0 0.00599186 0.000687947 0.999467 -0.032086 uwb: 0.0 1219.68 469.628 +imu_odom_: 1691062837.837926676 0.641646 -0.129287 10.058 -0.0905475 -0.0500674 0.0532632 0.19 0 pose: 0.0 5.27156 -4.11196 0 0.00599186 0.000687947 0.999467 -0.032086 uwb: 0.0 1219.68 469.628 +imu_odom_: 1691062837.861117758 0.462081 0.0574608 9.72525 -0.0479369 -0.0415453 0.04048 0.19 0 pose: 0.41086687 5.25747 -4.11319 0 0.00762754 0.00126035 0.999447 -0.0323268 uwb: 0.49697342 1220.73 471.007 +imu_odom_: 1691062837.885930702 0.407014 -0.201113 9.88326 -0.0511327 0.0191748 0.0468716 0.19 0 pose: 0.0 5.25747 -4.11319 0 0.00762754 0.00126035 0.999447 -0.0323268 uwb: 0.0 1220.73 471.007 +imu_odom_: 1691062837.901111343 0.469264 -0.117316 9.7851 -0.0575243 -0.0181095 0.04048 0.25 0 pose: 0.81932179 5.24339 -4.11443 0 0.00568292 0.00208871 0.999451 -0.0325742 uwb: 0.49980534 1222.88 472.366 +imu_odom_: 1691062837.923917448 0.203507 0.110133 10.2855 -0.04048 0.02024 0.0479369 0.25 0 pose: 0.0 5.24339 -4.11443 0 0.00568292 0.00208871 0.999451 -0.0325742 uwb: 0.0 1222.88 472.366 +imu_odom_: 1691062837.948852593 0.0407014 -0.129287 9.68933 -0.0479369 -0.0127832 0.0479369 0.18 0 pose: 0.38984478 5.23572 -4.10801 0 0.00309054 0.00369904 0.999455 -0.0326619 uwb: 0.50011740 1221.24 472.39 +imu_odom_: 1691062837.963934656 0.169988 -0.203507 10.1275 -0.0426106 -0.0308927 0.0458064 0.18 0 pose: 0.0 5.23572 -4.10801 0 0.00309054 0.00369904 0.999455 -0.0326619 uwb: 0.0 1221.24 472.39 +imu_odom_: 1691062837.989982735 0.325611 0.0526724 10.2592 -0.0426106 -0.0213053 0.0468716 0.18 0 pose: 0.55998718 5.2293 -4.11568 0 -0.00188211 0.00435592 0.999449 -0.0328526 uwb: 0.0 1221.24 472.39 +imu_odom_: 1691062838.12925916 0.533907 -0.0526724 10.2879 -0.0575243 -0.0617853 0.0436758 0.18 0 pose: 0.0 5.2293 -4.11568 0 -0.00188211 0.00435592 0.999449 -0.0328526 uwb: 0.49975284 1217.51 472.264 +imu_odom_: 1691062838.37860478 0.634463 -0.25618 9.76834 -0.0447411 -0.0585895 0.0394148 0.19 0 pose: 0.6992585 5.2293 -4.11568 0 -0.00200811 0.00507795 0.999444 -0.0328781 uwb: 0.0 1217.51 472.264 +imu_odom_: 1691062838.53863570 0.56982 -0.0861913 10.0868 -0.0756338 -0.0298274 0.0436758 0.19 0 pose: 0.0 5.2293 -4.11568 0 -0.00200811 0.00507795 0.999444 -0.0328781 uwb: 0.50149108 1218.18 473.252 +imu_odom_: 1691062838.79928857 0.387861 -0.071826 9.67018 -0.0660464 -0.00106526 0.0287621 0.18 -0.02 pose: 0.49971493 5.21522 -4.11693 0 0.00142822 0.00689633 0.99943 -0.0330093 uwb: 0.0 1218.18 473.252 +imu_odom_: 1691062838.107049040 0.462081 -0.311246 9.73961 -0.0713727 -0.0255663 0.0511327 0.22 0 pose: 0.41006193 5.20755 -4.11052 0 0.00421278 0.006175 0.999427 -0.0330052 uwb: 0.50003576 1219.77 474.625 +imu_odom_: 1691062838.133060663 0.502782 -0.0909797 10.1969 -0.0607201 0.00639159 0.0394148 0.19 0 pose: 0.25085053 5.20755 -4.11052 0 0.00255765 0.00572687 0.999438 -0.0329372 uwb: 0.0 1219.77 474.625 +imu_odom_: 1691062838.148872725 0.198719 -0.0837971 10.2352 -0.0671117 0.00426106 0.0575243 0.19 0 pose: 0.0 5.20755 -4.11052 0 0.00255765 0.00572687 0.999438 -0.0329372 uwb: 0.49864166 1219.82 475.77 +imu_odom_: 1691062838.174996926 0.143652 -0.378284 9.80426 -0.0511327 0.0191748 0.0319579 0.24 0 pose: 0.28107124 5.20113 -4.11819 0 0.00332258 0.00421648 0.999439 -0.0330563 uwb: 0.0 1219.82 475.77 +imu_odom_: 1691062838.201914412 0.301669 -0.169988 10.2448 -0.0458064 0.015979 0.0372843 0.23 -0.02 pose: 0.59899822 5.18902 -4.11708 0 0.000353539 0.00388523 0.999445 -0.0330831 uwb: 0.0 1219.82 475.77 +imu_odom_: 1691062838.226968842 0.557849 -0.181959 10.2472 -0.0426106 0.00213053 0.0383495 0.23 -0.02 pose: 0.0 5.18902 -4.11708 0 0.000353539 0.00388523 0.999445 -0.0330831 uwb: 0.0 1219.82 475.77 +imu_odom_: 1691062838.252842807 0.383072 0.071826 10.2568 -0.0330232 0.00106526 0.0340885 0.2 -0.02 pose: 0.7992359 5.18705 -4.11945 0 -0.00048589 0.00366303 0.999446 -0.0330714 uwb: 0.100187098 1218.96 476.553 +imu_odom_: 1691062838.277898112 0.445322 -0.155623 10.2496 -0.0575243 -0.0553937 0.0426106 0.2 -0.02 pose: 0.0 5.18705 -4.11945 0 -0.00048589 0.00366303 0.999446 -0.0330714 uwb: 0.0 1218.96 476.553 +imu_odom_: 1691062838.294854315 0.519542 -0.349553 9.31344 -0.052198 0.00106526 0.04048 0.19 0 pose: 0.52003706 5.17937 -4.11303 0 -0.0001965050.00386543 0.999447 -0.033013 uwb: 0.49921914 1221.77 478.809 +imu_odom_: 1691062838.319855957 -0.0502782 -0.222661 9.50019 -0.0671117 0.0245011 0.0468716 0.19 0 pose: 0.0 5.17937 -4.11303 0 -0.0001965050.00386543 0.999447 -0.033013 uwb: 0.0 1221.77 478.809 +imu_odom_: 1691062838.343839742 0.198719 -0.160412 10.1299 -0.0553937 -0.04048 0.0394148 0.22 0 pose: 0.49988701 5.16529 -4.11429 0 0.00206493 0.00329003 0.999447 -0.033012 uwb: 0.49775213 1221.46 479.522 +imu_odom_: 1691062838.359918372 0.969652 -0.280122 10.2855 -0.0500674 -0.0330232 0.0308927 0.22 0 pose: 0.0 5.16529 -4.11429 0 0.00206493 0.00329003 0.999447 -0.033012 uwb: 0.0 1221.46 479.522 +imu_odom_: 1691062838.385979867 0.823605 -0.246603 9.80665 -0.0468716 -0.00319579 0.0575243 0.18 0 pose: 0.41972719 5.15887 -4.12196 0 -0.0009841070.00193879 0.99945 -0.0331042 uwb: 0.0 1221.46 479.522 +imu_odom_: 1691062838.410850558 0.672771 -0.102951 10.2615 -0.0745685 -0.00319579 0.0500674 0.18 0 pose: 0.0 5.15887 -4.12196 0 -0.0009841070.00193879 0.99945 -0.0331042 uwb: 0.49981702 1218.81 479.47 +imu_odom_: 1691062838.436894263 0.447716 -0.23942 9.71088 -0.056459 0.0298274 0.0308927 0.21 0.02 pose: 0.41099811 5.1512 -4.11555 0 0.000259236 0.00178485 0.99945 -0.0331058 uwb: 0.0 1218.81 479.47 +imu_odom_: 1691062838.453000308 0.234632 -0.373495 9.76355 -0.0372843 0.00319579 0.0351537 0.21 0.02 pose: 0.0 5.1512 -4.11555 0 0.000259236 0.00178485 0.99945 -0.0331058 uwb: 0.50125484 1218.5 480.206 +imu_odom_: 1691062838.478985099 0.452504 -0.294487 9.83299 -0.0479369 -0.00532632 0.0479369 0.19 0 pose: 0.50858400 5.13711 -4.11682 0 0.00381001 0.00158859 0.999435 -0.0333687 uwb: 0.0 1218.5 480.206 +imu_odom_: 1691062838.505214293 0.629675 -0.112527 9.98622 -0.0479369 -0.0351537 0.0415453 0.18 0 pose: 0.60072477 5.12698 -4.11772 0 0.00233492 -0.00312471 0.999435 -0.0333742 uwb: 0.49990451 1221.39 482.22 +imu_odom_: 1691062838.530969265 0.011971 -0.258574 9.40682 -0.052198 0.056459 0.0372843 0.18 0 pose: 0.0 5.12698 -4.11772 0 0.00233492 -0.00312471 0.999435 -0.0333742 uwb: 0.0 1221.39 482.22 +imu_odom_: 1691062838.555820999 0.201113 -0.251391 9.84735 -0.0649811 -0.00852212 0.0553937 0.18 0.02 pose: 0.7005710 5.12303 -4.11808 0 0.00294559 -0.00260782 0.999435 -0.0333787 uwb: 0.49990743 1222.97 483.515 +imu_odom_: 1691062838.580959425 0.423774 -0.153229 10.3741 -0.0628506 0.0383495 0.0511327 0.18 0.02 pose: 0.0 5.12303 -4.11808 0 0.00294559 -0.00260782 0.999435 -0.0333787 uwb: 0.0 1222.97 483.515 +imu_odom_: 1691062838.596829233 0.646434 -0.0550666 10.2352 -0.0617853 -0.0436758 0.0372843 0.18 0 pose: 0.53007855 5.12303 -4.11808 0 0.000487187 -0.00146142 0.99944 -0.0334296 uwb: 0.49992492 1223.39 485.025 +imu_odom_: 1691062838.614069794 0.146046 0.0742203 9.96946 -0.0553937 0.00106526 0.0394148 0.18 0 pose: 0.0 5.12303 -4.11808 0 0.000487187 -0.00146142 0.99944 -0.0334296 uwb: 0.0 1223.39 485.025 +imu_odom_: 1691062838.640014630 0.265756 -0.191536 9.8282 -0.0660464 -0.0330232 0.04048 0.19 0 pose: 0.48895891 5.10894 -4.11935 0 5.1432e-05 0.000873636 0.999432 -0.0337028 uwb: 0.0 1223.39 485.025 +imu_odom_: 1691062838.665933509 0.035913 0.00957681 9.79468 -0.0458064 -0.0149137 0.0607201 0.19 0 pose: 0.0 5.10894 -4.11935 0 5.1432e-05 0.000873636 0.999432 -0.0337028 uwb: 0.50003284 1225.3 486.758 +imu_odom_: 1691062838.690956441 0.356736 -0.270545 9.67257 -0.056459 -0.0372843 0.0372843 0.2 0.02 pose: 0.33961985 5.10894 -4.11935 0 -0.0009954220.00225935 0.999429 -0.0336902 uwb: 0.0 1225.3 486.758 +imu_odom_: 1691062838.716985855 0.459687 -0.100556 10.24 -0.0223706 -0.0181095 0.0351537 0.2 0.02 pose: 0.0 5.10894 -4.11935 0 -0.0009954220.00225935 0.999429 -0.0336902 uwb: 0.49973827 1221.33 486.081 +imu_odom_: 1691062838.742874402 0.533907 -0.117316 9.5792 -0.0436758 -0.00745685 0.0415453 0.19 0 pose: 0.52120366 5.09486 -4.12063 0 -0.00423076 0.00238856 0.999412 -0.033953 uwb: 0.49991909 1225.47 488.784 +imu_odom_: 1691062838.758855038 0.459687 -0.457293 10.0221 -0.052198 -0.0181095 0.0490022 0.19 0 pose: 0.0 5.09486 -4.12063 0 -0.00423076 0.00238856 0.999412 -0.033953 uwb: 0.0 1225.47 488.784 +imu_odom_: 1691062838.783874762 -0.244209 -0.227449 9.80186 -0.0458064 -0.110787 0.0372843 0.23 0.02 pose: 0.50075030 5.08077 -4.12191 0 -0.0004939920.00314809 0.999421 -0.0338844 uwb: 0.0 1225.47 488.784 +imu_odom_: 1691062838.809940049 1.73101 -0.237026 9.72046 -0.0596548 -0.14168 0.04048 0.23 0.02 pose: 0.25766346 5.08077 -4.12191 0 0.0014631 0.00314514 0.999418 -0.0339423 uwb: 0.50019616 1225.5 489.926 +imu_odom_: 1691062838.835897717 0.869095 -0.289698 9.77074 -0.0468716 0.0106526 0.0756338 0.21 -0.02 pose: 0.34056480 5.06874 -4.12074 0 0.000473134 0.00214007 0.999421 -0.0339497 uwb: 0.0 1225.5 489.926 +imu_odom_: 1691062838.861858593 0.988805 -0.0023942 9.97185 -0.0585895 -0.00532632 0.0181095 0.21 -0.02 pose: 0.8015982 5.06669 -4.12319 0 0.0018271 0.00213044 0.999419 -0.0339538 uwb: 0.49852792 1221.41 489.571 +imu_odom_: 1691062838.878012760 0.232238 -0.146046 10.0102 -0.0468716 0.0394148 0.0181095 0.21 -0.02 pose: 0.0 5.06669 -4.12319 0 0.0018271 0.00213044 0.999419 -0.0339538 uwb: 0.0 1221.41 489.571 +imu_odom_: 1691062838.903962846 0.347159 -0.296881 10.1825 -0.0617853 -0.0181095 0.0532632 0.23 0 pose: 0.50968935 5.059 -4.1168 0 0.00782337 0.00182213 0.999377 -0.0343634 uwb: 0.50090779 1222.12 490.389 +imu_odom_: 1691062838.929812604 0.308852 -0.0023942 10.0149 -0.0383495 -0.0287621 0.0426106 0.23 0 pose: 0.0 5.059 -4.1168 0 0.00782337 0.00182213 0.999377 -0.0343634 uwb: 0.0 1222.12 490.389 +imu_odom_: 1691062838.955881390 0.531513 -0.172383 9.65821 -0.0511327 0.0298274 0.0532632 0.22 0 pose: 0.42990283 5.05261 -4.12449 0 0.00699246 0.00223955 0.999394 -0.0340347 uwb: 0.50172440 1219.89 490.651 +imu_odom_: 1691062838.971930272 0.634463 -0.268151 9.87369 -0.0500674 0.00852212 0.0308927 0.22 0 pose: 0.0 5.05261 -4.12449 0 0.00699246 0.00223955 0.999394 -0.0340347 uwb: 0.0 1219.89 490.651 +imu_odom_: 1691062838.987824287 0.395043 -0.205901 10.0987 -0.0308927 0.0490022 0.0351537 0.23 0.02 pose: 0.52103450 5.03853 -4.12577 0 0.00462796 0.00292228 0.999398 -0.0342495 uwb: 0.0 1219.89 490.651 +imu_odom_: 1691062839.14031899 0.488417 -0.172383 9.55526 -0.0607201 0.0181095 0.0436758 0.23 0.02 pose: 0.0 5.03853 -4.12577 0 0.00462796 0.00292228 0.999398 -0.0342495 uwb: 0.49817503 1222.17 492.692 +imu_odom_: 1691062839.39955737 0.31364 -0.189142 9.58878 -0.0617853 -0.00319579 0.0415453 0.23 0 pose: 0.40981402 5.03853 -4.12577 0 0.00631478 0.00151158 0.99939 -0.0343052 uwb: 0.0 1222.17 492.692 +imu_odom_: 1691062839.56944313 0.596156 -0.0814029 10.2041 -0.0543285 -0.0213053 0.04048 0.23 0 pose: 0.0 5.03853 -4.12577 0 0.00631478 0.00151158 0.99939 -0.0343052 uwb: 0.0 1222.17 492.692 +imu_odom_: 1691062839.81803630 0.68953 -0.141258 10.2663 -0.0660464 -0.0458064 0.0479369 0.23 0 pose: 0.41904473 5.02444 -4.12707 0 0.00256421 0.00321062 0.999402 -0.0343323 uwb: 0.0 1222.17 492.692 +imu_odom_: 1691062839.105811331 0.596156 0.0047884 10.3741 -0.0308927 -0.04048 0.0415453 0.23 0 pose: 0.0 5.02444 -4.12707 0 0.00256421 0.00321062 0.999402 -0.0343323 uwb: 0.100119145 1223.18 493.984 +imu_odom_: 1691062839.131868453 0.723049 -0.0071826110.149 -0.0607201 -0.00852212 0.0308927 0.19 0 pose: 0.43117152 5.01675 -4.12067 0 0.00322578 0.00341407 0.999398 -0.0343879 uwb: 0.0 1223.18 493.984 +imu_odom_: 1691062839.147950874 0.663194 -0.208296 9.63666 -0.0585895 0.0170442 0.0298274 0.19 0 pose: 0.0 5.01675 -4.12067 0 0.00322578 0.00341407 0.999398 -0.0343879 uwb: 0.49915790 1222.75 494.951 +imu_odom_: 1691062839.173799174 0.354342 -0.306458 9.7875 -0.0756338 0.00852212 0.0479369 0.19 0 pose: 0.48909599 5.01036 -4.12836 0 0.00748028 0.0062432 0.999359 -0.0344516 uwb: 0.0 1222.75 494.951 +imu_odom_: 1691062839.197795501 0.071826 -0.162806 9.82341 -0.0628506 -0.0298274 0.0500674 0.19 0 pose: 0.0 5.01036 -4.12836 0 0.00748028 0.0062432 0.999359 -0.0344516 uwb: 0.49989577 1221.43 495.574 +imu_odom_: 1691062839.215089434 0.64404 0.071826 10.2448 -0.0585895 -0.0106526 0.0543285 0.18 -0.02 pose: 0.43121234 4.99628 -4.12966 0 0.0092719 0.00517953 0.999354 -0.0343474 uwb: 0.0 1221.43 495.574 +imu_odom_: 1691062839.240814367 0.591368 -0.0574608 9.59596 -0.0468716 0.0191748 0.0255663 0.18 -0.02 pose: 0.0 4.99628 -4.12966 0 0.0092719 0.00517953 0.999354 -0.0343474 uwb: 0.0 1221.43 495.574 +imu_odom_: 1691062839.266957233 0.545878 -0.356736 10.2208 -0.04048 0.0426106 0.0415453 0.18 -0.02 pose: 0.49008761 4.99628 -4.12966 0 0.00608735 0.00420971 0.999374 -0.0345919 uwb: 0.49994827 1225.61 497.995 +imu_odom_: 1691062839.291958292 0.818817 -0.28491 9.94312 -0.0607201 0.0170442 0.04048 0.23 0 pose: 0.61961200 4.97662 -4.12633 0 0.00721746 0.00469875 0.999367 -0.0345314 uwb: 0.50020783 1224.41 498.31 +imu_odom_: 1691062839.313838119 0.332794 -0.287304 9.27514 -0.0703074 0 0.0479369 0.23 0 pose: 0.0 4.97662 -4.12633 0 0.00721746 0.00469875 0.999367 -0.0345314 uwb: 0.0 1224.41 498.31 +imu_odom_: 1691062839.329819338 0.129287 -0.189142 10.0006 -0.04048 -0.0276969 0.036219 0.23 0 pose: 0.0 4.97662 -4.12633 0 0.00721746 0.00469875 0.999367 -0.0345314 uwb: 0.0 1224.41 498.31 +imu_odom_: 1691062839.355800048 0.0933739 -0.0622492 10.0796 -0.052198 -0.0127832 0.0479369 0.19 -0.02 pose: 0.6886133 4.9745 -4.12457 0 0.00775173 0.00435181 0.999364 -0.0345398 uwb: 0.49998910 1222.29 498.366 +imu_odom_: 1691062839.371844554 0.287304 -0.0430956 10.0365 -0.0447411 -0.00852212 0.0500674 0.19 -0.02 pose: 0.0 4.9745 -4.12457 0 0.00775173 0.00435181 0.999364 -0.0345398 uwb: 0.0 1222.29 498.366 +imu_odom_: 1691062839.397794932 0.301669 -0.160412 9.89284 -0.0745685 0.00852212 0.04048 0.19 0 pose: 0.46988214 4.96811 -4.13226 0 0.00660948 0.00217602 0.999376 -0.0346436 uwb: 0.49973828 1223.3 499.637 +imu_odom_: 1691062839.422857529 0.169988 0.0047884 9.50977 -0.0969391 0.0181095 0.0639159 0.19 0.02 pose: 0.76963352 4.9559 -4.13132 0 -0.0006888730.00306476 0.999389 -0.0348082 uwb: 0.0 1223.3 499.637 +imu_odom_: 1691062839.448822781 0.533907 -0.701501 9.87369 -0.0841559 0.0138484 0.0532632 0.19 0.02 pose: 0.0 4.9559 -4.13132 0 -0.0006888730.00306476 0.999389 -0.0348082 uwb: 0.49907041 1222.58 500.064 +imu_odom_: 1691062839.474986646 -0.174777 0.00718261 10.1682 -0.0308927 0.0234358 0.0276969 0.19 0 pose: 0.7415477 4.95403 -4.13357 0 -0.00138185 0.00332325 0.999384 -0.034897 uwb: 0.0 1222.58 500.064 +imu_odom_: 1691062839.491819773 0.289698 -0.186748 9.38527 -0.0692422 0.0127832 0.0745685 0.19 0 pose: 0.0 4.95403 -4.13357 0 -0.00138185 0.00332325 0.999384 -0.034897 uwb: 0.0 1222.58 500.064 +imu_odom_: 1691062839.515774977 0.912191 -0.40462 10.082 0.0106526 0.0585895 -0.00106526 0.2 0 pose: 0.50771781 4.93995 -4.13488 0 -0.00313298 0.00143255 0.999373 -0.0352416 uwb: 0.50071822 1226.59 502.772 +imu_odom_: 1691062839.541828015 0.0837971 0.0861913 9.61272 -0.0511327 0.0372843 0.0809601 0.2 0 pose: 0.0 4.93995 -4.13488 0 -0.00313298 0.00143255 0.999373 -0.0352416 uwb: 0.0 1226.59 502.772 +imu_odom_: 1691062839.566924152 0.167594 -0.459687 10.2999 -0.0500674 -0.036219 0.0383495 0.17 0 pose: 0.42909788 4.93225 -4.1285 0 -0.00608367 0.000960135 0.999359 -0.0352682 uwb: 0.50040907 1224.77 503.336 +imu_odom_: 1691062839.592908653 0.457293 -0.0766145 10.4962 -0.0607201 -0.0308927 0.0500674 0.17 0 pose: 0.0 4.93225 -4.1285 0 -0.00608367 0.000960135 0.999359 -0.0352682 uwb: 0.49939414 1225.63 504.888 +imu_odom_: 1691062839.617900379 0.670376 -0.0814029 10.2999 -0.0628506 -0.0447411 0.0532632 0.17 0 pose: 0.50055199 4.92587 -4.1362 0 -0.00732234 0.00235741 0.999342 -0.035457 uwb: 0.0 1225.63 504.888 +imu_odom_: 1691062839.634105001 0.435745 -0.110133 9.69412 -0.052198 0.00106526 0.0490022 0.17 0 pose: 0.0 4.92587 -4.1362 0 -0.00732234 0.00235741 0.999342 -0.035457 uwb: 0.0 1225.63 504.888 +imu_odom_: 1691062839.650831384 0.505177 -0.323217 9.63427 -0.0660464 -0.0351537 0.0500674 0.18 0.02 pose: 0.51013849 4.91817 -4.12982 0 -0.00408796 0.00214952 0.999354 -0.0356297 uwb: 0.50182357 1225.29 505.636 +imu_odom_: 1691062839.676890256 0.263362 -0.112527 9.89763 -0.0500674 -0.0234358 0.0447411 0.18 0.02 pose: 0.0 4.91817 -4.12982 0 -0.00408796 0.00214952 0.999354 -0.0356297 uwb: 0.0 1225.29 505.636 +imu_odom_: 1691062839.702901588 0.553061 -0.122104 10.0365 -0.0543285 -0.0415453 0.0415453 0.17 0 pose: 0.58874967 4.90409 -4.13116 0 -0.0002558980.00248643 0.999351 -0.0359475 uwb: 0.50111486 1226.21 507.038 +imu_odom_: 1691062839.728764179 0.169988 -0.299275 9.67257 -0.0575243 0.015979 0.0639159 0.17 0 pose: 0.44065595 4.89208 -4.13421 0 0.00125217 0.00367613 0.999343 -0.0360224 uwb: 0.0 1226.21 507.038 +imu_odom_: 1691062839.754902088 0.102951 -0.308852 9.9527 -0.0543285 -0.0170442 0.0458064 0.19 -0.02 pose: 0.0 4.89208 -4.13421 0 0.00125217 0.00367613 0.999343 -0.0360224 uwb: 0.49744592 1227.48 508.79 +imu_odom_: 1691062839.780749513 0.203507 -0.354342 10.0724 -0.0276969 -0.0138484 0.04048 0.23 0.05 pose: 0.6998710 4.89001 -4.1325 0 0.000593282 0.00328735 0.999342 -0.0361062 uwb: 0.0 1227.48 508.79 +imu_odom_: 1691062839.795753123 0.581791 0.0167594 10.3813 -0.052198 -0.0575243 0.0383495 0.23 0.05 pose: 0.0 4.89001 -4.1325 0 0.000593282 0.00328735 0.999342 -0.0361062 uwb: 0.50113820 1227.19 509.429 +imu_odom_: 1691062839.821937695 0.189142 -0.0047884 9.95988 -0.0490022 -0.015979 0.0617853 0.23 0.05 pose: 0.51931670 4.88365 -4.14021 0 -0.00370383 0.00055459 0.99933 -0.0364064 uwb: 0.0 1227.19 509.429 +imu_odom_: 1691062839.847811078 0.217872 -0.342371 9.7851 -0.0532632 -0.00958738 0.0468716 0.21 0.05 pose: 0.0 4.88365 -4.14021 0 -0.00370383 0.00055459 0.99933 -0.0364064 uwb: 0.49896249 1228.2 510.601 +imu_odom_: 1691062839.873829993 0.656011 -0.143652 10.0245 -0.0372843 -0.0213053 0.0436758 0.23 0.02 pose: 0.40942031 4.87593 -4.13385 0 -0.00368354 0.000956476 0.999327 -0.0364823 uwb: 0.0 1228.2 510.601 +imu_odom_: 1691062839.899791453 0.543484 -0.0933739 9.67976 -0.0447411 -0.0106526 0.0479369 0.23 0.02 pose: 0.52005749 4.86185 -4.13521 0 -0.00509102 0.000418368 0.99931 -0.0367937 uwb: 0.50060156 1229.99 512.345 +imu_odom_: 1691062839.924805053 0.909797 -0.153229 9.92397 -0.0639159 -0.00319579 0.0490022 0.23 0 pose: 0.0 4.86185 -4.13521 0 -0.00509102 0.000418368 0.99931 -0.0367937 uwb: 0.0 1229.99 512.345 +imu_odom_: 1691062839.939742167 0.718261 -0.311246 9.77792 -0.0841559 0.0266316 0.0490022 0.23 0 pose: 0.0 4.86185 -4.13521 0 -0.00509102 0.000418368 0.99931 -0.0367937 uwb: 0.0 1229.99 512.345 +imu_odom_: 1691062839.955786383 0.217872 -0.0981623 10.1682 -0.052198 -0.00213053 0.0468716 0.19 0 pose: 0.51021432 4.86185 -4.13521 0 -0.0001189260.00239588 0.999313 -0.0369784 uwb: 0.49976161 1228.98 513.378 +imu_odom_: 1691062839.972724211 0.464475 -0.136469 10.2017 -0.092678 -0.0372843 0.0458064 0.19 0 pose: 0.0 4.86185 -4.13521 0 -0.0001189260.00239588 0.999313 -0.0369784 uwb: 0.0 1228.98 513.378 +imu_odom_: 1691062839.988745095 0.416591 -0.234632 9.81862 -0.0585895 0.0245011 0.0351537 0.19 0 pose: 0.40954280 4.84778 -4.13658 0 0.00222822 0.00180397 0.999305 -0.0371713 uwb: 0.0 1228.98 513.378 +imu_odom_: 1691062840.5198494 0.591368 -0.433351 9.78031 -0.0628506 -0.00213053 0.0511327 0.18 0 pose: 0.33032791 4.84778 -4.13658 0 0.00230651 0.0024463 0.999301 -0.0372395 uwb: 0.0 1228.98 513.378 +imu_odom_: 1691062840.21744638 0.328006 -0.114922 9.78031 -0.0511327 0.00213053 0.0436758 0.18 0 pose: 0.0 4.84778 -4.13658 0 0.00230651 0.0024463 0.999301 -0.0372395 uwb: 0.0 1228.98 513.378 +imu_odom_: 1691062840.37872265 0.553061 -0.143652 9.71806 -0.0543285 -0.0287621 0.0383495 0.18 0 pose: 0.41956387 4.8337 -4.13795 0 0.00128197 0.00118274 0.999301 -0.0373511 uwb: 0.0 1228.98 513.378 +imu_odom_: 1691062840.54754390 0.435745 -0.0430956 9.86411 -0.0308927 0.0106526 0.0394148 0.25 0 pose: 0.0 4.8337 -4.13795 0 0.00128197 0.00118274 0.999301 -0.0373511 uwb: 0.100039235 1228.65 514.079 +imu_odom_: 1691062840.70937430 0.25618 -0.205901 9.6223 -0.0671117 0.0191748 0.0447411 0.2 0 pose: 0.0 4.8337 -4.13795 0 0.00128197 0.00118274 0.999301 -0.0373511 uwb: 0.0 1228.65 514.079 +imu_odom_: 1691062840.87751308 0.387861 -0.201113 10.1538 -0.0532632 -0.0287621 0.0436758 0.2 0 pose: 0.8010734 4.8337 -4.13795 0 0.0021144 0.00151298 0.999299 -0.0373465 uwb: 0.0 1228.65 514.079 +imu_odom_: 1691062840.103821481 0.773327 -0.215478 9.79468 -0.0703074 -0.0575243 0.0543285 0.18 0.02 pose: 0.0 4.8337 -4.13795 0 0.0021144 0.00151298 0.999299 -0.0373465 uwb: 0.49872919 1228.18 515.078 +imu_odom_: 1691062840.120788767 0.311246 -0.0047884 10.2927 -0.0351537 0.00532632 0.052198 0.18 0.02 pose: 0.65071059 4.81963 -4.13933 0 0.000939159 0.00158086 0.999296 -0.0374587 uwb: 0.0 1228.18 515.078 +imu_odom_: 1691062840.145739662 0.0502782 -0.203507 10.2568 -0.0490022 -0.02024 0.0436758 0.18 0.02 pose: 0.0 4.81963 -4.13933 0 0.000939159 0.00158086 0.999296 -0.0374587 uwb: 0.49995119 1227.96 515.545 +imu_odom_: 1691062840.162819233 0.646434 -0.134075 9.59596 -0.052198 0 0.04048 0.18 0 pose: 0.33136327 4.81963 -4.13933 0 0.000274558 0.00287338 0.999287 -0.0376416 uwb: 0.0 1227.96 515.545 +imu_odom_: 1691062840.178929361 0.323217 -0.0957681 9.97424 -0.0756338 -0.00213053 0.0468716 0.18 0 pose: 0.0 4.81963 -4.13933 0 0.000274558 0.00287338 0.999287 -0.0376416 uwb: 0.0 1227.96 515.545 +imu_odom_: 1691062840.194742882 0.572214 -0.160412 9.90721 -0.0596548 -0.0372843 0.0340885 0.25 0 pose: 0.41858102 4.80555 -4.14072 0 -0.0002796120.00322694 0.999284 -0.0377089 uwb: 0.50008827 1228.49 516.624 +imu_odom_: 1691062840.219750067 0.354342 -0.251391 9.97903 -0.0447411 0.00106526 0.036219 0.25 0 pose: 0.0 4.80555 -4.14072 0 -0.0002796120.00322694 0.999284 -0.0377089 uwb: 0.0 1228.49 516.624 +imu_odom_: 1691062840.245789398 0.134075 -0.138864 10.2927 -0.0511327 0.00639159 0.0468716 0.21 0 pose: 0.33000710 4.80555 -4.14072 0 0.000358867 0.00285943 0.999285 -0.0376867 uwb: 0.50079990 1229.4 517.967 +imu_odom_: 1691062840.271738609 0.629675 0.023942 9.85932 -0.0756338 0.0287621 0.0500674 0.19 -0.02 pose: 0.42967828 4.79148 -4.14211 0 -0.00326283 0.00188526 0.99928 -0.0377479 uwb: 0.0 1229.4 517.967 +imu_odom_: 1691062840.297716986 0.246603 -0.531513 9.46188 -0.0479369 0.00319579 0.0415453 0.23 -0.02 pose: 0.0 4.79148 -4.14211 0 -0.00326283 0.00188526 0.99928 -0.0377479 uwb: 0.49934456 1230.99 520.003 +imu_odom_: 1691062840.314866553 0.751779 -0.189142 10.3884 -0.036219 -0.00745685 0.0319579 0.23 -0.02 pose: 0.7008334 4.79148 -4.14211 0 -0.0028138 0.00223047 0.999279 -0.0377876 uwb: 0.0 1230.99 520.003 +imu_odom_: 1691062840.339860613 0.35913 -0.181959 9.76595 -0.0532632 -0.015979 0.0490022 0.2 0 pose: 0.0 4.79148 -4.14211 0 -0.0028138 0.00223047 0.999279 -0.0377876 uwb: 0.0 1230.99 520.003 +imu_odom_: 1691062840.361997092 0.679953 -0.0957681 10.1921 -0.0415453 -0.00213053 0.0415453 0.2 0 pose: 0.52116286 4.77741 -4.1435 0 -0.00171964 0.000877187 0.99928 -0.0378872 uwb: 0.50051116 1231.49 521.105 +imu_odom_: 1691062840.388002884 0.442927 0.047884 10.477 -0.036219 0.00745685 0.0383495 0.18 -0.02 pose: 0.0 4.77741 -4.1435 0 -0.00171964 0.000877187 0.99928 -0.0378872 uwb: 0.0 1231.49 521.105 +imu_odom_: 1691062840.404852635 0.624887 -0.263362 9.91199 -0.0649811 0.0117179 0.0394148 0.18 -0.02 pose: 0.40973237 4.77741 -4.1435 0 -0.00235376 0.00209531 0.999274 -0.0379728 uwb: 0.49824213 1235.4 523.671 +imu_odom_: 1691062840.430987919 0.562637 -0.339977 9.34936 -0.0585895 -0.015979 0.0415453 0.23 -0.02 pose: 0.0 4.77741 -4.1435 0 -0.00235376 0.00209531 0.999274 -0.0379728 uwb: 0.0 1235.4 523.671 +imu_odom_: 1691062840.456751350 0.208296 -0.337582 9.6199 -0.0692422 -0.0500674 0.0490022 0.25 0.02 pose: 0.85100664 4.75772 -4.1403 0 0.00258615 0.00228581 0.999271 -0.0380207 uwb: 0.49997161 1235.91 524.735 +imu_odom_: 1691062840.482844636 0.61531 -0.0526724 9.73482 -0.0596548 -0.015979 0.0383495 0.25 0.02 pose: 0.6883217 4.7556 -4.13856 0 0.00218873 0.00183951 0.999272 -0.0380525 uwb: 0.0 1235.91 524.735 +imu_odom_: 1691062840.508745434 0.574608 -0.225055 10.1203 -0.0660464 -0.0191748 0.0490022 0.23 0 pose: 0.44973500 4.74926 -4.1463 0 0.00323609 0.00226192 0.999265 -0.0381224 uwb: 0.49993661 1238.31 527.172 +imu_odom_: 1691062840.534847762 0.275333 -0.0047884 10.1059 -0.0607201 0.0287621 0.056459 0.23 0 pose: 0.0 4.74926 -4.1463 0 0.00323609 0.00226192 0.999265 -0.0381224 uwb: 0.0 1238.31 527.172 +imu_odom_: 1691062840.550729820 0.454898 -0.263362 10.0054 -0.072438 0.0181095 0.0671117 0.23 0.02 pose: 0.32947047 4.74152 -4.13997 0 0.00510552 0.00144147 0.999252 -0.0383085 uwb: 0.50061616 1238.22 528.387 +imu_odom_: 1691062840.575848123 0.739808 -0.160412 10.2496 -0.0436758 0.0266316 0.0351537 0.23 0.02 pose: 0.0 4.74152 -4.13997 0 0.00510552 0.00144147 0.999252 -0.0383085 uwb: 0.0 1238.22 528.387 +imu_odom_: 1691062840.591721723 0.624887 -0.0933739 9.68933 -0.0458064 -0.0170442 0.0468716 0.21 -0.02 pose: 0.42937788 4.73519 -4.14771 0 0.0035689 0.000969895 0.999245 -0.0386671 uwb: 0.0 1238.22 528.387 +imu_odom_: 1691062840.607830393 0.323217 -0.52433 9.51456 -0.0607201 0.00745685 0.052198 0.21 -0.02 pose: 0.0 4.73519 -4.14771 0 0.0035689 0.000969895 0.999245 -0.0386671 uwb: 0.49919874 1240.27 530.457 +imu_odom_: 1691062840.634002134 0.201113 -0.25618 9.8282 -0.052198 -0.0340885 0.0500674 0.23 0 pose: 0.49100922 4.72112 -4.14912 0 0.00546064 0.00100556 0.999232 -0.0387931 uwb: 0.0 1240.27 530.457 +imu_odom_: 1691062840.658699878 0.371101 -0.023942 10.4028 -0.0500674 -0.0276969 0.0596548 0.23 0 pose: 0.7948613 4.72112 -4.14912 0 0.00480249 0.000847957 0.999234 -0.038835 uwb: 0.49978787 1239.1 530.707 +imu_odom_: 1691062840.684855577 0.730232 0.047884 10.6757 -0.0511327 -0.0138484 0.0372843 0.21 0.05 pose: 0.42920872 4.71338 -4.1428 0 0.00231306 0.00268278 0.999226 -0.0391713 uwb: 0.0 1239.1 530.707 +imu_odom_: 1691062840.710710586 0.435745 0.059855 10.4267 -0.04048 -0.0276969 0.052198 0.21 0.05 pose: 0.0 4.71338 -4.1428 0 0.00231306 0.00268278 0.999226 -0.0391713 uwb: 0.50028076 1240.05 531.879 +imu_odom_: 1691062840.727834196 0.433351 -0.418985 9.80904 -0.056459 -0.0117179 0.0394148 0.21 0 pose: 0.33151493 4.70706 -4.15055 0 0.00429693 0.00510821 0.99921 -0.039182 uwb: 0.0 1240.05 531.879 +imu_odom_: 1691062840.752706055 0.517148 -0.318429 9.56723 -0.0649811 0.0149137 0.0490022 0.21 0 pose: 0.0 4.70706 -4.15055 0 0.00429693 0.00510821 0.99921 -0.039182 uwb: 0.50048200 1237.89 532.09 +imu_odom_: 1691062840.778813632 0.371101 -0.160412 9.61272 -0.0617853 -0.0330232 0.0319579 0.18 -0.02 pose: 0.42874208 4.69931 -4.14423 0 0.00382043 0.00460179 0.999208 -0.0393293 uwb: 0.0 1237.89 532.09 +imu_odom_: 1691062840.803861356 0.636858 -0.19393 10.252 -0.0649811 -0.00639159 0.0639159 0.19 0 pose: 0.44088053 4.69299 -4.15198 0 0.00183572 0.0027014 0.999221 -0.0393158 uwb: 0.49989578 1239.71 533.551 +imu_odom_: 1691062840.829842649 0.665588 -0.0407014 9.57681 -0.0585895 -0.015979 0.0319579 0.19 0 pose: 0.0 4.69299 -4.15198 0 0.00183572 0.0027014 0.999221 -0.0393158 uwb: 0.0 1239.71 533.551 +imu_odom_: 1691062840.855900354 0.701501 -0.361524 9.50019 -0.0479369 0.0340885 0.0308927 0.19 -0.02 pose: 0.7010668 4.69299 -4.15198 0 0.00254037 0.00257933 0.999217 -0.0394029 uwb: 0.50023409 1240.04 534.91 +imu_odom_: 1691062840.872841683 0.217872 -0.339977 10.2711 -0.0479369 0.00532632 0.015979 0.19 -0.02 pose: 0.0 4.69299 -4.15198 0 0.00254037 0.00257933 0.999217 -0.0394029 uwb: 0.0 1240.04 534.91 +imu_odom_: 1691062840.889902588 0.414197 0.177171 10.1155 -0.0255663 -0.0276969 -0.0383495 0.19 -0.08 pose: 0.52151866 4.67892 -4.15342 0 0.00689897 0.00328546 0.999191 -0.0394958 uwb: 0.0 1240.04 534.91 +imu_odom_: 1691062840.904779623 0.0766145 0.11971 9.97424 -0.0553937 -0.0191748 -0.0671117 0.19 -0.08 pose: 0.0 4.67892 -4.15342 0 0.00689897 0.00328546 0.999191 -0.0394958 uwb: 0.49961872 1239.62 535.724 +imu_odom_: 1691062840.921891567 0.0814029 -0.177171 9.4547 -0.052198 -0.00213053 -0.0990696 0.19 -0.08 pose: 0.0 4.67892 -4.15342 0 0.00689897 0.00328546 0.999191 -0.0394958 uwb: 0.0 1239.62 535.724 +imu_odom_: 1691062840.938700195 1.04627 -0.272939 10.0485 -0.0553937 -0.0276969 -0.128897 0.19 -0.29 pose: 0.42876834 4.67117 -4.1471 0 0.00596789 0.00215724 0.999222 -0.038921 uwb: 0.0 1239.62 535.724 +imu_odom_: 1691062840.954837447 0.624887 -0.383072 9.70849 -0.0777643 -0.0213053 -0.186421 0.19 -0.29 pose: 0.0 4.67117 -4.1471 0 0.00596789 0.00215724 0.999222 -0.038921 uwb: 0.50062490 1240.99 537.044 +imu_odom_: 1691062840.972714096 0.828394 0.31364 10.647 -0.04048 0.0351537 -0.28336 0.19 -0.29 pose: 0.73984447 4.65705 -4.14858 0 0.00568296 0.00189121 0.999426 -0.0333482 uwb: 0.0 1240.99 537.044 +imu_odom_: 1691062840.988895095 1.12527 0.426168 9.71088 -0.0575243 -0.0191748 -0.319579 0.19 -0.41 pose: 0.0 4.65705 -4.14858 0 0.00568296 0.00189121 0.999426 -0.0333482 uwb: 0.0 1240.99 537.044 +imu_odom_: 1691062841.5756512 0.150835 -0.208296 9.60075 -0.0756338 -0.0117179 -0.376038 0.19 -0.41 pose: 0.0 4.65705 -4.14858 0 0.00568296 0.00189121 0.999426 -0.0333482 uwb: 0.50006494 1242.3 538.47 +imu_odom_: 1691062841.22783586 0.45011 -0.174777 9.38288 -0.0777643 -0.00106526 -0.427171 0.19 -0.41 pose: 0.8004317 4.65705 -4.14858 0 0.00591913 0.00264809 0.999465 -0.0320537 uwb: 0.0 1242.3 538.47 +imu_odom_: 1691062841.39727832 0.387861 -0.129287 10.0293 -0.0628506 0.0223706 -0.432497 0.25 -0.61 pose: 0.0 4.65705 -4.14858 0 0.00591913 0.00264809 0.999465 -0.0320537 uwb: 0.0 1242.3 538.47 +imu_odom_: 1691062841.56718742 0.636858 -0.423774 10.228 -0.0703074 -0.0351537 -0.437824 0.25 -0.61 pose: 0.66884244 4.64299 -4.15009 0 0.00358357 0.00330528 0.999818 -0.0184243 uwb: 0.50050826 1243.87 540.361 +imu_odom_: 1691062841.71720894 0.440533 -0.215478 9.83777 -0.0436758 -0.036219 -0.479369 0.25 -0.61 pose: 0.0 4.64299 -4.15009 0 0.00358357 0.00330528 0.999818 -0.0184243 uwb: 0.0 1243.87 540.361 +imu_odom_: 1691062841.88821173 0.596156 -0.0909797 10.1011 -0.0266316 -0.0394148 -0.510262 0.17 -0.53 pose: 0.0 4.64299 -4.15009 0 0.00358357 0.00330528 0.999818 -0.0184243 uwb: 0.0 1243.87 540.361 +imu_odom_: 1691062841.105948866 0.397437 -0.0574608 9.80904 -0.0617853 0.0191748 -0.518784 0.17 -0.53 pose: 0.33057583 4.63673 -4.15789 0 0.00336324 0.00154958 0.999939 -0.0104377 uwb: 0.49801757 1244.81 541.499 +imu_odom_: 1691062841.131882621 0.885855 0.0502782 9.75158 -0.0468716 -0.0862864 -0.539024 0.23 -0.73 pose: 0.43165275 4.62897 -4.15159 0 0.00323744 0.00354993 0.999988 0.00137236 uwb: 0.0 1244.81 541.499 +imu_odom_: 1691062841.148885197 1.1564 -0.241814 9.36851 -0.0969391 -0.0117179 -0.502805 0.16 -0.55 pose: 0.0 4.62897 -4.15159 0 0.00323744 0.00354993 0.999988 0.00137236 uwb: 0.49952539 1245.44 543.196 +imu_odom_: 1691062841.166969791 1.06063 -0.0095768110.1299 -0.0777643 0.0351537 -0.432497 0.22 -0.67 pose: 0.6882925 4.62897 -4.15159 0 0.00413686 0.00387575 0.999978 0.00336311 uwb: 0.0 1245.44 543.196 +imu_odom_: 1691062841.183910246 0.287304 -0.52433 9.6199 -0.072438 0.0276969 -0.438889 0.22 -0.67 pose: 0.0 4.62897 -4.15159 0 0.00413686 0.00387575 0.999978 0.00336311 uwb: 0.0 1245.44 543.196 +imu_odom_: 1691062841.198814113 -0.102951 -0.0933739 9.71328 -0.0511327 0.0351537 -0.475108 0.22 -0.67 pose: 0.0 4.62897 -4.15159 0 0.00413686 0.00387575 0.999978 0.00336311 uwb: 0.50033619 1245.92 544.225 +imu_odom_: 1691062841.215694196 -0.275333 0.428562 9.8282 -0.0585895 0.0181095 -0.400539 0.19 -0.41 pose: 0.44081346 4.61489 -4.1531 0 0.00895105 0.00423765 0.999833 0.0153687 uwb: 0.0 1245.92 544.225 +imu_odom_: 1691062841.232943798 -0.316035 -0.268151 9.96706 -0.0713727 -0.0340885 -0.267381 0.19 -0.41 pose: 0.0 4.61489 -4.1531 0 0.00895105 0.00423765 0.999833 0.0153687 uwb: 0.0 1245.92 544.225 +imu_odom_: 1691062841.249952207 0.316035 -0.742203 9.33499 -0.056459 -0.0916127 -0.276969 0.23 -0.44 pose: 0.76030661 4.60333 -4.15143 0 0.0035858 0.00382835 0.999474 0.0320008 uwb: 0.50147069 1243.83 544.302 +imu_odom_: 1691062841.266971990 0.986411 -0.19393 10.0868 -0.0788296 0.0276969 -0.265251 0.23 -0.44 pose: 0.0 4.60333 -4.15143 0 0.0035858 0.00382835 0.999474 0.0320008 uwb: 0.0 1243.83 544.302 +imu_odom_: 1691062841.283945693 0.28491 -0.184354 9.54329 -0.056459 -0.0170442 -0.219444 0.23 -0.44 pose: 0.0 4.60333 -4.15143 0 0.0035858 0.00382835 0.999474 0.0320008 uwb: 0.0 1243.83 544.302 +imu_odom_: 1691062841.300814985 0.0215478 -0.457293 9.87848 -0.0809601 0.00852212 -0.218379 0.18 -0.29 pose: 0.7013002 4.60082 -4.1546 0 0.00369465 0.00314338 0.99944 0.0331098 uwb: 0.0 1243.83 544.302 +imu_odom_: 1691062841.317759231 -0.0837971 -0.304064 10.0317 -0.0319579 -0.015979 -0.232228 0.18 -0.23 pose: 0.0 4.60082 -4.1546 0 0.00369465 0.00314338 0.99944 0.0331098 uwb: 0.0 1243.83 544.302 +imu_odom_: 1691062841.332683804 0.117316 0.100556 10.0892 -0.0319579 0.00106526 -0.2024 0.18 -0.23 pose: 0.68905083 4.59305 -4.14831 0 0.00133441 0.000769778 0.999085 0.0427461 uwb: 0.0 1243.83 544.302 +imu_odom_: 1691062841.348671149 0.756568 -0.339977 9.34936 -0.0628506 -0.00213053 -0.166181 0.18 -0.23 pose: 0.0 4.59305 -4.14831 0 0.00133441 0.000769778 0.999085 0.0427461 uwb: 0.99950869 1241.85 544.183 +imu_odom_: 1691062841.364731405 0.363919 -0.42138 10.1323 -0.0596548 0.0223706 -0.183225 0.17 -0.2 pose: 0.0 4.59305 -4.14831 0 0.00133441 0.000769778 0.999085 0.0427461 uwb: 0.0 1241.85 544.183 +imu_odom_: 1691062841.381687025 0.399832 0.023942 9.70131 -0.0511327 0.00213053 -0.165116 0.17 -0.2 pose: 0.30885086 4.58677 -4.1561 0 9.99164e-05 0.0016773 0.998918 0.0464842 uwb: 0.0 1241.85 544.183 +imu_odom_: 1691062841.399745664 -0.0861913 -0.117316 9.51935 -0.0607201 -0.0191748 -0.147006 0.18 -0.17 pose: 0.41940056 4.5789 -4.14982 0 0.000197819 0.001413 0.998702 0.0509195 uwb: 0.49989871 1242.61 545.626 +imu_odom_: 1691062841.413669880 0.694318 -0.196325 10.3501 -0.0511327 -0.0383495 -0.148072 0.18 -0.17 pose: 0.0 4.5789 -4.14982 0 0.000197819 0.001413 0.998702 0.0509195 uwb: 0.0 1242.61 545.626 +imu_odom_: 1691062841.429727220 1.02232 -0.177171 9.32302 -0.0692422 -0.0394148 -0.107592 0.18 -0.17 pose: 0.0 4.5789 -4.14982 0 0.000197819 0.001413 0.998702 0.0509195 uwb: 0.0 1242.61 545.626 +imu_odom_: 1691062841.444665793 1.10852 0.232238 10.2352 -0.056459 0.00532632 -0.0532632 0.14 -0.17 pose: 0.8006651 4.57897 -4.14985 0 -0.0005305660.00154275 0.998663 0.0516667 uwb: 0.49907042 1239.66 545.442 +imu_odom_: 1691062841.459727442 1.16598 -0.52433 9.88566 -0.0585895 -0.0894822 -0.052198 0.14 -0.17 pose: 0.0 4.57897 -4.14985 0 -0.0005305660.00154275 0.998663 0.0516667 uwb: 0.0 1239.66 545.442 +imu_odom_: 1691062841.475724411 1.49877 -0.035913 10.0556 -0.0458064 -0.0607201 -0.135289 0.14 -0.17 pose: 0.0 4.57897 -4.14985 0 -0.0005305660.00154275 0.998663 0.0516667 uwb: 0.0 1239.66 545.442 +imu_odom_: 1691062841.492751194 1.80762 0.299275 9.93594 -0.0692422 -0.0213053 -0.144876 0.11 -0.14 pose: 0.47037504 4.57117 -4.1436 0 0.00263751 0.00172852 0.998459 0.0554096 uwb: 0.50040035 1239.05 546.606 +imu_odom_: 1691062841.509786726 1.16837 -0.0885855 9.72046 -0.072438 -0.0191748 -0.0713727 0.14 -0.23 pose: 0.0 4.57117 -4.1436 0 0.00263751 0.00172852 0.998459 0.0554096 uwb: 0.0 1239.05 546.606 +imu_odom_: 1691062841.526785510 0.742203 -0.667982 9.92636 -0.0372843 0.00745685 -0.0958738 0.14 -0.23 pose: 0.62948436 4.56485 -4.15135 0 0.00978412 0.00188744 0.99816 0.0598097 uwb: 0.0 1239.05 546.606 +imu_odom_: 1691062841.542763813 0.634463 -0.0694318 9.92397 -0.0319579 -0.0394148 -0.143811 0.09 -0.14 pose: 0.0 4.56485 -4.15135 0 0.00978412 0.00188744 0.99816 0.0598097 uwb: 0.49979080 1237.93 546.813 +imu_odom_: 1691062841.560785412 0.723049 0.126893 9.78989 -0.0639159 -0.0266316 -0.0980043 0.09 -0.14 pose: 0.0 4.56485 -4.15135 0 0.00978412 0.00188744 0.99816 0.0598097 uwb: 0.0 1237.93 546.813 +imu_odom_: 1691062841.577893565 0.893037 -0.471658 10.0676 -0.072438 -0.00426106 -0.0575243 0.09 -0.14 pose: 0.34109271 4.55703 -4.14512 0 0.0113419 0.00114892 0.998002 0.0621444 uwb: 0.0 1237.93 546.813 +imu_odom_: 1691062841.593710294 0.634463 -0.407014 9.72764 -0.0383495 -0.0127832 -0.0841559 0.07 -0.08 pose: 0.35053339 4.55703 -4.14512 0 0.0129613 0.00297711 0.997822 0.0646104 uwb: 0.50236023 1236.12 546.424 +imu_odom_: 1691062841.609664682 0.675165 0.0885855 9.88566 -0.0479369 -0.00106526 -0.0692422 0.07 -0.08 pose: 0.0 4.55703 -4.14512 0 0.0129613 0.00297711 0.997822 0.0646104 uwb: 0.0 1236.12 546.424 +imu_odom_: 1691062841.636646625 0.749385 -0.316035 9.77313 -0.0607201 0.0106526 -0.0181095 0.06 -0.08 pose: 0.40822456 4.55703 -4.14512 0 0.0134203 0.00237396 0.997668 0.0668787 uwb: 0.0 1236.12 546.424 +imu_odom_: 1691062841.653710155 0.225055 -0.567426 9.55765 -0.0553937 0.0383495 -0.0745685 0.06 -0.08 pose: 0.0 4.55703 -4.14512 0 0.0134203 0.00237396 0.997668 0.0668787 uwb: 0.49754509 1237.06 547.501 +imu_odom_: 1691062841.670833474 -0.986411 0.296881 9.97185 -0.0191748 0.109722 -0.116114 0.08 -0.05 pose: 0.8001401 4.55703 -4.14512 0 0.0136972 0.00163459 0.997651 0.0670983 uwb: 0.0 1237.06 547.501 +imu_odom_: 1691062841.686646995 -1.47243 -0.299275 9.84017 -0.0639159 0.00426106 -0.0127832 0.09 0 pose: 0.0 4.55703 -4.14512 0 0.0136972 0.00163459 0.997651 0.0670983 uwb: 0.0 1237.06 547.501 +imu_odom_: 1691062841.702697044 -0.462081 -0.617704 9.90721 -0.0649811 -0.0884169 0.00532632 0.1 -0.02 pose: 0.0 4.55703 -4.14512 0 0.0136972 0.00163459 0.997651 0.0670983 uwb: 0.50056951 1237.42 548.747 +imu_odom_: 1691062841.718706553 0.909797 -0.229843 10.3118 -0.0181095 -0.076699 -0.0287621 0.1 -0.02 pose: 0.75994205 4.54298 -4.14665 0 0.0080288 -0.0003450750.997483 0.0704455 uwb: 0.0 1237.42 548.747 +imu_odom_: 1691062841.735642633 0.92895 0.19393 9.52653 -0.0660464 -0.015979 0.0319579 0.1 -0.02 pose: 0.0 4.54298 -4.14665 0 0.0080288 -0.0003450750.997483 0.0704455 uwb: 0.0 1237.42 548.747 +imu_odom_: 1691062841.751639018 0.225055 -0.296881 9.44034 -0.0628506 0.0340885 0.0213053 0.12 -0.02 pose: 0.0 4.54298 -4.14665 0 0.0080288 -0.0003450750.997483 0.0704455 uwb: 0.49776383 1235.8 548.96 +imu_odom_: 1691062841.767692859 -0.260968 -0.160412 10.4315 -0.04048 0.00745685 -0.0308927 0.12 -0.02 pose: 0.32047017 4.54298 -4.14665 0 0.0102648 -0.0001348270.997411 0.0711719 uwb: 0.0 1235.8 548.96 +imu_odom_: 1691062841.784684643 0.122104 -0.0837971 10.2137 -0.0585895 -0.0308927 0.00958738 0.12 -0.05 pose: 0.41985554 4.53523 -4.14032 0 0.0074537 0.000482935 0.997382 0.0719277 uwb: 0.0 1235.8 548.96 +imu_odom_: 1691062841.801617515 0.699107 -0.174777 10.0987 -0.0628506 -0.0245011 0.0266316 0.12 -0.05 pose: 0.0 4.53523 -4.14032 0 0.0074537 0.000482935 0.997382 0.0719277 uwb: 0.50151445 1236.32 549.871 +imu_odom_: 1691062841.817677188 0.622492 -0.186748 9.64863 -0.0660464 0.0181095 0.0117179 0.12 -0.05 pose: 0.0 4.53523 -4.14032 0 0.0074537 0.000482935 0.997382 0.0719277 uwb: 0.0 1236.32 549.871 +imu_odom_: 1691062841.833684948 0.37589 0.0023942 10.1083 -0.0458064 0.0276969 -0.0213053 0.18 -0.02 pose: 0.7994109 4.53523 -4.14032 0 0.00679995 0.000717259 0.997378 0.0720501 uwb: 0.0 1236.32 549.871 +imu_odom_: 1691062841.850615778 -0.11971 0.126893 9.96946 -0.0735032 -0.00319579 0.0298274 0.13 -0.05 pose: 0.0 4.53523 -4.14032 0 0.00679995 0.000717259 0.997378 0.0720501 uwb: 0.49997454 1233.17 549.209 +imu_odom_: 1691062841.867616312 -0.0407014 -0.543484 9.5792 -0.0649811 0.0170442 0.0213053 0.13 -0.05 pose: 0.65995298 4.52118 -4.14184 0 0.0072591 0.00225392 0.997299 0.0730567 uwb: 0.0 1233.17 549.209 +imu_odom_: 1691062841.883620864 0.126893 -0.143652 9.56244 -0.0532632 -0.0213053 0.00639159 0.14 0 pose: 0.0 4.52118 -4.14184 0 0.0072591 0.00225392 0.997299 0.0730567 uwb: 0.0 1233.17 549.209 +imu_odom_: 1691062841.900615273 0.323217 -0.0167594 9.66779 -0.0628506 -0.0181095 0.0138484 0.14 0 pose: 0.0 4.52118 -4.14184 0 0.0072591 0.00225392 0.997299 0.0730567 uwb: 0.49924249 1232.39 549.757 +imu_odom_: 1691062841.916671738 0.876278 0.172383 10.0604 -0.0649811 -0.0692422 0.0266316 0.14 0 pose: 0.33935739 4.52118 -4.14184 0 0.00407841 0.00179458 0.997293 0.0733945 uwb: 0.0 1232.39 549.757 +imu_odom_: 1691062841.933609568 1.01035 -0.234632 9.55047 -0.0841559 -0.0298274 0.0553937 0.18 -0.08 pose: 0.41053733 4.51703 -4.13849 0 0.00429546 0.00394811 0.997252 0.0738569 uwb: 0.0 1232.39 549.757 +imu_odom_: 1691062841.950776634 1.20428 -0.215478 10.3741 -0.0713727 0 0.0990696 0.18 -0.08 pose: 0.6964004 4.51341 -4.13556 0 0.00505111 0.00366182 0.997254 0.0737991 uwb: 0.50019911 1232.12 550.279 +imu_odom_: 1691062841.965832158 1.75734 -0.3304 10.5201 -0.0617853 -0.0948085 0.103331 0.18 -0.08 pose: 0.0 4.51341 -4.13556 0 0.00505111 0.00366182 0.997254 0.0737991 uwb: 0.0 1232.12 550.279 +imu_odom_: 1691062841.982771446 1.66636 -0.011971 9.64624 -0.0415453 -0.0138484 0.0458064 0.09 -0.02 pose: 0.42196416 4.50712 -4.14333 0 0.00992487 0.00235522 0.997301 0.0727157 uwb: 0.0 1232.12 550.279 +imu_odom_: 1691062841.996706745 1.14443 -0.0191536 9.91199 -0.0745685 0.0213053 0.0127832 0.1 -0.05 pose: 0.0 4.50712 -4.14333 0 0.00992487 0.00235522 0.997301 0.0727157 uwb: 0.49975289 1232.15 551.191 +imu_odom_: 1691062842.13640200 0.462081 -0.134075 9.92636 -0.0798948 0.0181095 -0.00532632 0.1 -0.05 pose: 0.0 4.50712 -4.14333 0 0.00992487 0.00235522 0.997301 0.0727157 uwb: 0.0 1232.15 551.191 +imu_odom_: 1691062842.35748099 0.699107 -0.442927 10.228 -0.0585895 -0.0223706 -0.0447411 0.09 0 pose: 0.22895644 4.50712 -4.14333 0 0.0122144 0.00261867 0.997273 0.072737 uwb: 0.0 1232.15 551.191 +imu_odom_: 1691062842.50767459 0.538695 -0.1652 9.77792 -0.0649811 -0.00852212 -0.0436758 0.09 0 pose: 0.0 4.50712 -4.14333 0 0.0122144 0.00261867 0.997273 0.072737 uwb: 0.50029244 1232.22 551.999 +imu_odom_: 1691062842.77783234 -1.10852 0.0454898 9.94551 -0.0415453 0.103331 -0.0852212 0.09 -0.02 pose: 0.62039657 4.49928 -4.13713 0 0.0102092 0.000919571 0.997148 0.0747703 uwb: 0.0 1232.22 551.999 +imu_odom_: 1691062842.103776194 -0.948104 -0.713472 10.1323 -0.0649811 -0.0607201 0.056459 0.09 -0.02 pose: 0.7926447 4.49928 -4.13713 0 0.00901129 0.00117414 0.997122 0.0752654 uwb: 0.50168070 1234.21 553.907 +imu_odom_: 1691062842.130892879 0.866701 -0.169988 9.65342 -0.015979 -0.0276969 0.0127832 0.14 0 pose: 0.45082288 4.49928 -4.13713 0 0.0043489 0.000892727 0.997079 0.076242 uwb: 0.0 1234.21 553.907 +imu_odom_: 1691062842.156642312 0.543484 -0.035913 9.8258 -0.0862864 0.0468716 0.076699 0.14 0 pose: 0.0 4.49928 -4.13713 0 0.0043489 0.000892727 0.997079 0.076242 uwb: 0.49865337 1234.02 554.26 +imu_odom_: 1691062842.173720426 -0.280122 -0.328006 9.75158 -0.0383495 0.0319579 0.00532632 0.17 -0.02 pose: 0.52866118 4.48927 -4.13823 0 0.00690597 0.00357022 0.997067 0.0761421 uwb: 0.0 1234.02 554.26 +imu_odom_: 1691062842.189746268 -0.153229 -0.248997 9.46667 -0.0575243 -0.0351537 0.0330232 0.17 -0.02 pose: 0.0 4.48927 -4.13823 0 0.00690597 0.00357022 0.997067 0.0761421 uwb: 0.0 1234.02 554.26 +imu_odom_: 1691062842.206635684 0.143652 -0.37589 9.5385 -0.0500674 -0.0628506 0.0628506 0.18 0 pose: 0.0 4.48927 -4.13823 0 0.00690597 0.00357022 0.997067 0.0761421 uwb: 0.50061326 1234.25 554.777 +imu_odom_: 1691062842.232667725 0.641646 -0.0790087 9.94551 -0.0436758 0.036219 0.0372843 0.18 0 pose: 0.40018963 4.48522 -4.13868 0 0.00317662 0.00294546 0.997067 0.0764167 uwb: 0.0 1234.25 554.777 +imu_odom_: 1691062842.256625264 0.0430956 -0.035913 9.81144 -0.04048 -0.0596548 0.0436758 0.19 0 pose: 0.36006450 4.4796 -4.13418 0 0.00455883 0.00349093 0.997066 0.0763267 uwb: 0.49947875 1233.51 555.238 +imu_odom_: 1691062842.280634425 0.37589 -0.277727 9.8258 -0.0490022 0.0394148 0.0234358 0.19 0 pose: 0.6985878 4.47741 -4.13243 0 0.0040897 0.0037399 0.997068 0.0763163 uwb: 0.0 1233.51 555.238 +imu_odom_: 1691062842.296817758 0.459687 -0.134075 9.57202 -0.0479369 -0.00426106 0.0383495 0.15 0.02 pose: 0.40980822 4.4732 -4.13769 0 0.00117335 0.00241315 0.997067 0.0764819 uwb: 0.50038286 1235.58 556.944 +imu_odom_: 1691062842.314767028 0.505177 -0.114922 10.24 -0.0532632 0.0191748 0.0298274 0.15 0.02 pose: 0.0 4.4732 -4.13769 0 0.00117335 0.00241315 0.997067 0.0764819 uwb: 0.0 1235.58 556.944 +imu_odom_: 1691062842.331816560 0.600945 -0.0766145 10.1394 -0.0628506 -0.015979 0.0383495 0.15 0.02 pose: 0.0 4.4732 -4.13769 0 0.00117335 0.00241315 0.997067 0.0764819 uwb: 0.0 1235.58 556.944 +imu_odom_: 1691062842.354591753 0.268151 -0.368707 9.81862 -0.0681769 -0.0266316 0.0458064 0.15 0 pose: 0.8190099 4.47116 -4.14023 0 0.00183096 0.00293588 0.997065 0.0764857 uwb: 0.49947582 1235.28 557.504 +imu_odom_: 1691062842.380608628 0.395043 -0.011971 10.0245 -0.0692422 -0.0138484 0.036219 0.15 0 pose: 0.32952589 4.46336 -4.13398 0 0.00465711 0.00428104 0.997044 0.0765734 uwb: 0.0 1235.28 557.504 +imu_odom_: 1691062842.397699574 0.416591 -0.201113 9.78989 -0.052198 -0.0266316 0.0383495 0.15 0 pose: 0.0 4.46336 -4.13398 0 0.00465711 0.00428104 0.997044 0.0765734 uwb: 0.49877879 1236.72 558.514 +imu_odom_: 1691062842.423784112 0.407014 -0.42138 9.69891 -0.0500674 -0.0234358 0.0266316 0.16 0.02 pose: 0.41035361 4.46336 -4.13398 0 0.0038763 0.00351646 0.997054 0.0765264 uwb: 0.0 1236.72 558.514 +imu_odom_: 1691062842.450650854 0.299275 -0.433351 9.79228 -0.0511327 0.0340885 0.0500674 0.16 0.02 pose: 0.0 4.46336 -4.13398 0 0.0038763 0.00351646 0.997054 0.0765264 uwb: 0.0 1236.72 558.514 +imu_odom_: 1691062842.467659554 -0.0885855 -0.117316 9.66539 -0.0181095 -0.0223706 0.0330232 0.17 0 pose: 0.42831629 4.45556 -4.12773 0 0.00240419 0.00272098 0.997053 0.0766275 uwb: 0.0 1236.72 558.514 +imu_odom_: 1691062842.491932075 0.0407014 -0.0454898 9.92875 -0.0500674 0.0479369 0.0490022 0.17 0 pose: 0.0 4.45556 -4.12773 0 0.00240419 0.00272098 0.997053 0.0766275 uwb: 0.99972161 1236.69 558.576 +imu_odom_: 1691062842.517677133 0.380678 0 10.3406 -0.0585895 -0.0479369 0.0426106 0.17 0 pose: 0.53015735 4.4415 -4.12927 0 -0.000553932-0.0007281620.99706 0.0766233 uwb: 0.0 1236.69 558.576 +imu_odom_: 1691062842.544655868 0.715866 -0.1652 9.83538 -0.0681769 -0.0287621 0.0607201 0.17 0 pose: 0.0 4.4415 -4.12927 0 -0.000553932-0.0007281620.99706 0.0766233 uwb: 0.50035661 1236.45 559.032 +imu_odom_: 1691062842.560626880 0.651223 -0.423774 10.1849 -0.0692422 0.0191748 0.0511327 0.17 0 pose: 0.41159895 4.4415 -4.12927 0 -0.00354132 0.00181903 0.99706 0.0765201 uwb: 0.0 1236.45 559.032 +imu_odom_: 1691062842.577628582 0.11971 0.0047884 9.71328 -0.0628506 0.0117179 0.0490022 0.17 0 pose: 0.0 4.4415 -4.12927 0 -0.00354132 0.00181903 0.99706 0.0765201 uwb: 0.0 1236.45 559.032 +imu_odom_: 1691062842.594844353 0.217872 -0.174777 10.0724 -0.052198 -0.00426106 0.0479369 0.17 0 pose: 0.0 4.4415 -4.12927 0 -0.00354132 0.00181903 0.99706 0.0765201 uwb: 0.50260814 1235.33 559.262 +imu_odom_: 1691062842.619658467 0.577003 -0.117316 9.79707 -0.0617853 0.0106526 0.0298274 0.17 0 pose: 0.52843661 4.42744 -4.13083 0 0.000891281 0.00224052 0.997094 0.0761461 uwb: 0.0 1235.33 559.262 +imu_odom_: 1691062842.636650835 0.0574608 -0.0790087 9.62708 -0.056459 -0.0490022 0.0298274 0.17 0 pose: 0.0 4.42744 -4.13083 0 0.000891281 0.00224052 0.997094 0.0761461 uwb: 0.0 1235.33 559.262 +imu_odom_: 1691062842.659612100 0.217872 -0.186748 10.2687 -0.0649811 -0.0234358 0.0596548 0.17 0 pose: 0.73961410 4.41964 -4.12458 0 -0.0002035720.00308095 0.997095 0.0761034 uwb: 0.49850755 1235.32 560.214 +imu_odom_: 1691062842.684710280 0.658405 -0.0407014 9.80904 -0.0692422 0.02024 0.0415453 0.18 0 pose: 0.0 4.41964 -4.12458 0 -0.0002035720.00308095 0.997095 0.0761034 uwb: 0.0 1235.32 560.214 +imu_odom_: 1691062842.701742021 0.150835 -0.481235 9.89524 -0.0703074 0.0245011 0.0426106 0.18 0 pose: 0.32987296 4.41011 -4.12564 0 -0.00299554 0.00286703 0.997104 0.0759341 uwb: 0.50008538 1233.78 560.325 +imu_odom_: 1691062842.717923021 0.198719 -0.316035 10.4722 -0.0500674 0 0.0276969 0.18 0 pose: 0.0 4.41011 -4.12564 0 -0.00299554 0.00286703 0.997104 0.0759341 uwb: 0.0 1233.78 560.325 +imu_odom_: 1691062842.744588233 0.708684 -0.174777 9.92875 -0.0436758 -0.0394148 0.04048 0.24 0 pose: 0.8053898 4.40558 -4.12614 0 -0.00232592 0.0030522 0.997106 0.0759229 uwb: 0.50079116 1233.17 560.557 +imu_odom_: 1691062842.770614441 0.574608 0.0837971 10.3765 -0.0543285 0.00852212 0.036219 0.18 0 pose: 0.58077601 4.39777 -4.1199 0 -0.0026242 0.00109523 0.997106 0.0759742 uwb: 0.0 1233.17 560.557 +imu_odom_: 1691062842.797636340 0.155623 -0.105345 9.44991 -0.0585895 -0.00426106 0.0511327 0.24 0 pose: 0.0 4.39777 -4.1199 0 -0.0026242 0.00109523 0.997106 0.0759742 uwb: 0.0 1233.17 560.557 +imu_odom_: 1691062842.822599195 0.385466 -0.0430956 10.1227 -0.0330232 0.0223706 0.0394148 0.19 0 pose: 0.51990295 4.38371 -4.12146 0 0.000338636 0.00341216 0.997104 0.0759666 uwb: 0.0 1233.17 560.557 +imu_odom_: 1691062842.849580263 0.483629 -0.0814029 10.2424 -0.0532632 -0.04048 0.0372843 0.19 0 pose: 0.0 4.38371 -4.12146 0 0.000338636 0.00341216 0.997104 0.0759666 uwb: 0.99888458 1234.03 561.708 +imu_odom_: 1691062842.865599981 0.435745 -0.543484 9.19373 -0.0553937 -0.0170442 0.0330232 0.2 -0.02 pose: 0.71846369 4.37816 -4.11702 0 0.00197468 0.00642106 0.997095 0.0758689 uwb: 0.0 1234.03 561.708 +imu_odom_: 1691062842.892645212 -0.047884 -0.265756 9.65821 -0.0426106 -0.0266316 0.0426106 0.2 -0.02 pose: 0.8074313 4.3759 -4.11522 0 0.00197505 0.00561139 0.997098 0.0758948 uwb: 0.50001538 1232.52 561.781 +imu_odom_: 1691062842.918632922 0.304064 0.0670376 9.81144 -0.052198 -0.0138484 0.0383495 0.18 0.02 pose: 0.34990636 4.36412 -4.1186 0 -0.0003507490.00437976 0.997106 0.0758923 uwb: 0.0 1232.52 561.781 +imu_odom_: 1691062842.945710235 0.454898 -0.272939 9.97903 -0.0628506 0.0170442 0.0479369 0.18 0.02 pose: 0.0 4.36412 -4.1186 0 -0.0003507490.00437976 0.997106 0.0758923 uwb: 0.49907044 1235.96 564.508 +imu_odom_: 1691062842.961703996 0.282516 -0.146046 10.1634 -0.0372843 0.00532632 0.0458064 0.2 0 pose: 0.33962571 4.36185 -4.11679 0 -0.0009021210.0060928 0.997098 0.0758762 uwb: 0.0 1235.96 564.508 +imu_odom_: 1691062842.988703146 0.430956 -0.265756 9.92397 -0.0458064 -0.0468716 0.052198 0.2 0 pose: 0.0 4.36185 -4.11679 0 -0.0009021210.0060928 0.997098 0.0758762 uwb: 0.0 1235.96 564.508 +imu_odom_: 1691062843.13571215 0.651223 -0.222661 10.1993 -0.0319579 0.0223706 0.0415453 0.23 0 pose: 0.42324160 4.35403 -4.11054 0 -0.00167522 0.00363945 0.997122 0.0757058 uwb: 0.49984330 1237.17 565.891 +imu_odom_: 1691062843.40649111 0.775721 -0.186748 9.8689 -0.0372843 0.00106526 0.0436758 0.2 0 pose: 0.44639272 4.34779 -4.11836 0 0.00171184 0.00161691 0.997139 0.0755548 uwb: 0.0 1237.17 565.891 +imu_odom_: 1691062843.65590384 0.675165 0.059855 10.2615 -0.0511327 0.0266316 0.0543285 0.2 0 pose: 0.8076063 4.34779 -4.11836 0 0.00250132 0.00161585 0.997139 0.0755366 uwb: 0.50093408 1238.92 568.085 +imu_odom_: 1691062843.92645241 0.507571 -0.0430956 9.98143 -0.0490022 -0.0127832 0.0500674 0.23 0 pose: 0.43943106 4.33998 -4.11212 0 0.00567359 0.00352925 0.997138 0.0753136 uwb: 0.49966541 1238.59 568.681 +imu_odom_: 1691062843.108602254 0.380678 -0.385466 9.73004 -0.0596548 0.0330232 0.056459 0.23 0 pose: 0.0 4.33998 -4.11212 0 0.00567359 0.00352925 0.997138 0.0753136 uwb: 0.0 1238.59 568.681 +imu_odom_: 1691062843.135669068 0.411803 -0.0502782 9.90242 -0.0585895 0.00745685 0.0490022 0.25 0 pose: 0.43011870 4.32592 -4.1137 0 0.00491316 0.00487543 0.997156 0.0750469 uwb: 0.0 1238.59 568.681 +imu_odom_: 1691062843.160676545 0.754174 -0.289698 10.4603 -0.0575243 0.0245011 0.0543285 0.25 0 pose: 0.0 4.32592 -4.1137 0 0.00491316 0.00487543 0.997156 0.0750469 uwb: 0.49965667 1238.52 569.691 +imu_odom_: 1691062843.187565745 0.622492 -0.169988 9.8689 -0.0756338 0.0245011 0.0500674 0.23 0 pose: 0.52074291 4.32035 -4.10927 0 0.00430908 0.0050569 0.997181 0.0747345 uwb: 0.0 1238.52 569.691 +imu_odom_: 1691062843.212696006 0.940921 -0.407014 10.1347 -0.0894822 0.036219 0.0479369 0.19 0 pose: 0.0 4.32035 -4.10927 0 0.00430908 0.0050569 0.997181 0.0747345 uwb: 0.49985790 1238.19 570.287 +imu_odom_: 1691062843.230735688 0.325611 -0.229843 9.79228 -0.0671117 -0.0543285 0.0500674 0.19 0 pose: 0.34915683 4.31188 -4.1153 0 0.00676385 0.00297615 0.997191 0.0745365 uwb: 0.0 1238.19 570.287 +imu_odom_: 1691062843.246681327 0.318429 0.318429 9.93833 -0.0468716 -0.0213053 0.104396 0.19 0 pose: 0.0 4.31188 -4.1153 0 0.00676385 0.00297615 0.997191 0.0745365 uwb: 0.50117032 1236.12 570.509 +imu_odom_: 1691062843.261556030 0.28491 -0.536301 9.67736 -0.0553937 -0.00319579 0.174703 0.18 0.08 pose: 0.42094340 4.30405 -4.10908 0 0.00626355 0.00188897 0.997226 0.0741424 uwb: 0.0 1236.12 570.509 +imu_odom_: 1691062843.278566189 0.64404 -0.490811 9.79468 -0.0415453 -0.0308927 0.248207 0.18 0.08 pose: 0.0 4.30405 -4.10908 0 0.00626355 0.00188897 0.997226 0.0741424 uwb: 0.0 1236.12 570.509 +imu_odom_: 1691062843.292613482 0.742203 -0.280122 9.96467 -0.0532632 -0.00852212 0.28123 0.18 0.08 pose: 0.0 4.30405 -4.10908 0 0.00626355 0.00188897 0.997226 0.0741424 uwb: 0.49936501 1237.42 572.571 +imu_odom_: 1691062843.307550598 0.512359 -0.414197 9.54568 -0.0372843 0.0181095 0.318514 0.19 0.23 pose: 0.47001925 4.29621 -4.10286 0 0.00660302 -0.0001901050.997502 0.0703317 uwb: 0.0 1237.42 572.571 +imu_odom_: 1691062843.324685291 0.368707 -0.203507 9.86411 -0.0436758 0.052198 0.383495 0.19 0.23 pose: 0.0 4.29621 -4.10286 0 0.00660302 -0.0001901050.997502 0.0703317 uwb: 0.0 1237.42 572.571 +imu_odom_: 1691062843.342686475 0.272939 -0.229843 9.28471 -0.0607201 -0.0266316 0.416518 0.18 0.41 pose: 0.39996798 4.28557 -4.10716 0 0.0047433 -0.00123106 0.997916 0.0643453 uwb: 0.50063368 1238.27 574.551 +imu_odom_: 1691062843.356674564 -0.0191536 -0.557849 9.99579 -0.0340885 -0.0692422 0.448476 0.18 0.41 pose: 0.0 4.28557 -4.10716 0 0.0047433 -0.00123106 0.997916 0.0643453 uwb: 0.0 1238.27 574.551 +imu_odom_: 1691062843.371552183 0.100556 -0.0981623 10.0533 -0.0490022 -0.072438 0.485761 0.18 0.41 pose: 0.0 4.28557 -4.10716 0 0.0047433 -0.00123106 0.997916 0.0643453 uwb: 0.0 1238.27 574.551 +imu_odom_: 1691062843.388568758 0.799663 -0.241814 9.31584 -0.0394148 0.0894822 0.510262 0.23 0.58 pose: 0.8022400 4.28217 -4.10444 0 0.00402923 -0.00120753 0.998015 0.0628359 uwb: 0.0 1238.27 574.551 +imu_odom_: 1691062843.406575192 0.1652 -0.811634 9.1674 -0.0170442 0.0649811 0.516653 0.23 0.58 pose: 0.0 4.28217 -4.10444 0 0.00402923 -0.00120753 0.998015 0.0628359 uwb: 0.49939710 1237.84 575.309 +imu_odom_: 1691062843.420688106 0.452504 0.023942 10.0389 -0.0500674 0.0884169 0.532632 0.23 0.58 pose: 0.0 4.28217 -4.10444 0 0.00402923 -0.00120753 0.998015 0.0628359 uwb: 0.0 1237.84 575.309 +imu_odom_: 1691062843.436689159 0.366313 -0.818817 9.64624 -0.052198 0.0426106 0.616788 0.17 0.55 pose: 0.45949654 4.28217 -4.10444 0 0.00193541 -0.00108584 0.998586 0.0531148 uwb: 0.0 1237.84 575.309 +imu_odom_: 1691062843.453586450 -0.0933739 -0.622492 9.73482 -0.04048 -0.0223706 0.599744 0.26 0.76 pose: 0.0 4.28217 -4.10444 0 0.00193541 -0.00108584 0.998586 0.0531148 uwb: 0.50131323 1238.01 575.886 +imu_odom_: 1691062843.469569128 0.634463 0.280122 10.0006 -0.0319579 -0.0245011 0.601874 0.26 0.76 pose: 0.0 4.28217 -4.10444 0 0.00193541 -0.00108584 0.998586 0.0531148 uwb: 0.0 1238.01 575.886 +imu_odom_: 1691062843.486548956 0.778116 -0.023942 9.60554 -0.0351537 -0.052198 0.611462 0.23 0.79 pose: 0.64995526 4.26811 -4.10594 0 -0.000568251-0.00269864 0.999332 0.0364538 uwb: 0.0 1238.01 575.886 +imu_odom_: 1691062843.504624219 1.02472 0.0167594 10.0509 -0.0223706 -0.0671117 0.611462 0.23 0.79 pose: 0.0 4.26811 -4.10594 0 -0.000568251-0.00269864 0.999332 0.0364538 uwb: 0.49860380 1234.83 575.488 +imu_odom_: 1691062843.518591600 1.22583 -0.126893 9.74201 -0.0394148 -0.0383495 0.612527 0.23 0.79 pose: 0.32896302 4.2603 -4.09969 0 0.000340468 -0.00116623 0.99963 0.0271857 uwb: 0.0 1234.83 575.488 +imu_odom_: 1691062843.535663297 1.26653 -0.481235 9.24401 -0.0532632 -0.0436758 0.597613 0.13 0.41 pose: 0.42042427 4.25013 -4.10434 0 0.00535528 0.000538485 0.999871 0.015161 uwb: 0.0 1234.83 575.488 +imu_odom_: 1691062843.549625721 1.43173 -0.172383 9.72764 -0.0426106 0.00852212 0.502805 0.13 0.41 pose: 0.7984486 4.24623 -4.10124 0 0.0062613 0.00024848 0.999897 0.0129315 uwb: 0.50052286 1234.98 576.966 +imu_odom_: 1691062843.565593817 1.51792 0.246603 10.0149 -0.0660464 -0.0117179 0.413323 0.13 0.41 pose: 0.0 4.24623 -4.10124 0 0.0062613 0.00024848 0.999897 0.0129315 uwb: 0.0 1234.98 576.966 +imu_odom_: 1691062843.582538355 1.08697 0.0574608 9.83538 -0.0660464 0.00319579 0.372843 0.12 0.35 pose: 0.39017731 4.24623 -4.10124 0 0.0101004 0.000613783 0.99994 0.00418303 uwb: 0.0 1234.98 576.966 +imu_odom_: 1691062843.600737860 0.816423 -0.146046 9.5792 -0.0649811 0.0287621 0.322775 0.12 0.35 pose: 0.0 4.24623 -4.10124 0 0.0101004 0.000613783 0.99994 0.00418303 uwb: 0.50072118 1235.41 577.932 +imu_odom_: 1691062843.617598987 0.835576 -0.287304 9.79947 -0.0649811 0.0117179 0.291882 0.1 0.26 pose: 0.0 4.24623 -4.10124 0 0.0101004 0.000613783 0.99994 0.00418303 uwb: 0.0 1235.41 577.932 +imu_odom_: 1691062843.632658304 0.857124 -0.208296 9.82341 -0.0607201 0.0149137 0.279099 0.09 0.29 pose: 0.42016761 4.24623 -4.10124 0 0.013563 0.00118269 0.999905 -0.00207804 uwb: 0.0 1235.41 577.932 +imu_odom_: 1691062843.649657089 0.936133 -0.189142 9.71328 -0.0649811 0.00426106 0.274838 0.09 0.26 pose: 0.0 4.24623 -4.10124 0 0.013563 0.00118269 0.999905 -0.00207804 uwb: 0.49760054 1237.54 580.155 +imu_odom_: 1691062843.667654773 0.758962 -0.0574608 9.88566 -0.0543285 -0.00426106 0.273773 0.09 0.26 pose: 0.32048186 4.23218 -4.10282 0 0.0163857 0.000529065 0.999848 -0.00597155 uwb: 0.0 1237.54 580.155 +imu_odom_: 1691062843.684770801 0.749385 -0.251391 9.90481 -0.0500674 0.0138484 0.255663 0.07 0.2 pose: 0.0 4.23218 -4.10282 0 0.0163857 0.000529065 0.999848 -0.00597155 uwb: 0.0 1237.54 580.155 +imu_odom_: 1691062843.702540707 0.68953 -0.124498 10.1586 -0.052198 -0.015979 0.245011 0.07 0.2 pose: 0.0 4.23218 -4.10282 0 0.0163857 0.000529065 0.999848 -0.00597155 uwb: 0.50189944 1236.22 580.785 +imu_odom_: 1691062843.727640054 0.677559 -0.143652 10.094 -0.0532632 0.0138484 0.217314 0.06 0.2 pose: 0.62881943 4.23212 -4.1028 0 0.0164427 0.00198675 0.99978 -0.012903 uwb: 0.0 1236.22 580.785 +imu_odom_: 1691062843.745635988 0.366313 -0.229843 9.57681 -0.0628506 0.0170442 0.193878 0.06 0.2 pose: 0.7058790 4.23218 -4.10282 0 0.0157848 0.00236218 0.999781 -0.0135231 uwb: 0.49879046 1236.78 582.346 +imu_odom_: 1691062843.762646147 -0.656011 0.00718261 9.76355 -0.0330232 0.118244 0.150202 0.06 0.2 pose: 0.0 4.23218 -4.10282 0 0.0157848 0.00236218 0.999781 -0.0135231 uwb: 0.0 1236.78 582.346 +imu_odom_: 1691062843.776649985 -1.403 -0.102951 10.0533 -0.0553937 0.036219 0.205596 0.08 0.17 pose: 0.42982705 4.23218 -4.10282 0 0.0110571 0.00292627 0.999792 -0.0168802 uwb: 0.0 1236.78 582.346 +imu_odom_: 1691062843.793523361 -0.806846 -0.713472 9.71806 -0.0671117 -0.0798948 0.221575 0.08 0.17 pose: 0.0 4.23218 -4.10282 0 0.0110571 0.00292627 0.999792 -0.0168802 uwb: 0.50065411 1236.36 583.102 +imu_odom_: 1691062843.810575226 0.761356 -0.11971 10.173 -0.0340885 -0.052198 0.166181 0.1 0.14 pose: 0.0 4.23218 -4.10282 0 0.0110571 0.00292627 0.999792 -0.0168802 uwb: 0.0 1236.36 583.102 +imu_odom_: 1691062843.827569053 0.746991 0.225055 9.66539 -0.0639159 -0.0106526 0.198139 0.1 0.14 pose: 0.48942851 4.22438 -4.09657 0 0.00782299 0.00264722 0.999753 -0.0206344 uwb: 0.0 1236.36 583.102 +imu_odom_: 1691062843.844571629 0.251391 -0.107739 9.63666 -0.0841559 0.00426106 0.196009 0.1 0.14 pose: 0.0 4.22438 -4.09657 0 0.00782299 0.00264722 0.999753 -0.0206344 uwb: 0.49984623 1238.22 584.896 +imu_odom_: 1691062843.860568307 -0.0215478 -0.227449 9.7875 -0.0490022 -0.00532632 0.134223 0.12 0.11 pose: 0.43046576 4.21816 -4.1044 0 0.00787725 0.0042837 0.999675 -0.0238607 uwb: 0.0 1238.22 584.896 +imu_odom_: 1691062843.877527428 -0.134075 -0.0383072 9.89763 -0.0585895 -0.0490022 0.16192 0.12 0.11 pose: 0.6998711 4.21816 -4.1044 0 0.00719353 0.00417719 0.999673 -0.0241901 uwb: 0.0 1238.22 584.896 +imu_odom_: 1691062843.895537653 0.742203 -0.543484 9.59117 -0.0681769 -0.0756338 0.190682 0.12 0.11 pose: 0.0 4.21816 -4.1044 0 0.00719353 0.00417719 0.999673 -0.0241901 uwb: 0.49942043 1239.93 586.941 +imu_odom_: 1691062843.909512617 0.383072 -0.268151 9.89045 -0.052198 -0.0117179 0.174703 0.13 0.08 pose: 0.33954114 4.21816 -4.1044 0 0.00572924 0.00350559 0.999633 -0.0262487 uwb: 0.0 1239.93 586.941 +imu_odom_: 1691062843.926523651 0.110133 -0.248997 9.96467 -0.0436758 -0.0170442 0.148072 0.13 0.11 pose: 0.0 4.21816 -4.1044 0 0.00572924 0.00350559 0.999633 -0.0262487 uwb: 0.0 1239.93 586.941 +imu_odom_: 1691062843.943517478 0.0407014 0.0526724 10.319 -0.0660464 -0.0234358 0.165116 0.13 0.11 pose: 0.0 4.21816 -4.1044 0 0.00572924 0.00350559 0.999633 -0.0262487 uwb: 0.49926001 1238.45 587.006 +imu_odom_: 1691062843.960518888 0.196325 -0.308852 9.76595 -0.0692422 -0.0511327 0.165116 0.18 0.11 pose: 0.32128973 4.21032 -4.09819 0 0.00479059 0.00169998 0.999584 -0.0283972 uwb: 0.0 1238.45 587.006 +imu_odom_: 1691062843.976510608 0.612916 -0.318429 9.73722 -0.0692422 -0.0117179 0.127832 0.18 0.11 pose: 0.0 4.21032 -4.09819 0 0.00479059 0.00169998 0.999584 -0.0283972 uwb: 0.0 1238.45 587.006 +imu_odom_: 1691062843.993512601 0.351948 -0.253785 9.44273 -0.0660464 0.00426106 0.140615 0.18 0.11 pose: 0.33003045 4.20406 -4.106 0 0.00216988 0.0018511 0.999534 -0.0303851 uwb: 0.50036537 1238.17 587.494 +imu_odom_: 1691062844.10629212 0.744597 -0.0981623 9.68933 -0.0596548 0.0191748 0.14168 0.14 0.08 pose: 0.42856129 4.19977 -4.10258 0 0.00131738 -0.0004807810.999468 -0.0325705 uwb: 0.0 1238.17 587.494 +imu_odom_: 1691062844.25635741 1.13485 -0.201113 9.88326 -0.0617853 0.00319579 0.174703 0.14 0.08 pose: 0.8128560 4.19622 -4.09979 0 0.00196826 -0.0001753380.999454 -0.0329843 uwb: 0.0 1238.17 587.494 +imu_odom_: 1691062844.41569422 0.979228 -0.481235 9.74919 -0.0649811 0.0298274 0.22264 0.14 0.08 pose: 0.0 4.19622 -4.09979 0 0.00196826 -0.0001753380.999454 -0.0329843 uwb: 0.49867381 1237.16 587.568 +imu_odom_: 1691062844.56521412 2.20745 -0.37589 10.5536 -0.0319579 -0.0671117 0.197074 0.11 0.02 pose: 0.39928261 4.19004 -4.10765 0 0.00529675 -0.0006132490.999341 -0.0359151 uwb: 0.0 1237.16 587.568 +imu_odom_: 1691062844.72649916 1.61369 0.122104 9.28471 -0.0298274 0.00106526 0.150202 0.1 0.02 pose: 0.0 4.19004 -4.10765 0 0.00529675 -0.0006132490.999341 -0.0359151 uwb: 0.0 1237.16 587.568 +imu_odom_: 1691062844.89780235 1.24977 -0.0287304 9.84496 -0.0596548 0.04048 0.134223 0.1 0.02 pose: 0.0 4.19004 -4.10765 0 0.00529675 -0.0006132490.999341 -0.0359151 uwb: 0.0 1237.16 587.568 +imu_odom_: 1691062844.107517769 0.493206 -0.244209 9.79707 -0.0660464 0.0138484 0.072438 0.09 0.02 pose: 0.22091568 4.19004 -4.10765 0 0.00790038 -0.0001674970.999266 -0.0374849 uwb: 0.50063078 1236.03 587.868 +imu_odom_: 1691062844.124503430 0.699107 -0.213084 10.4794 -0.0585895 0.0106526 0.0436758 0.09 0.02 pose: 0.0 4.19004 -4.10765 0 0.00790038 -0.0001674970.999266 -0.0374849 uwb: 0.0 1236.03 587.868 +imu_odom_: 1691062844.139554289 0.912191 -0.308852 9.78031 -0.0628506 -0.0234358 0.0596548 0.09 0.02 pose: 0.0 4.19004 -4.10765 0 0.00790038 -0.0001674970.999266 -0.0374849 uwb: 0.0 1236.03 587.868 +imu_odom_: 1691062844.155494387 0.80924 -0.220267 9.69173 -0.0553937 0.00852212 0.072438 0.06 0.08 pose: 0.75893299 4.18217 -4.10148 0 0.0113353 -0.00028275 0.999164 -0.0392666 uwb: 0.49969751 1236.15 588.502 +imu_odom_: 1691062844.172549460 0.773327 -0.189142 10.0963 -0.0617853 0.00426106 0.0937433 0.06 0.08 pose: 0.5957814 4.18217 -4.10148 0 0.0118909 -0.0002360140.999154 -0.0393634 uwb: 0.0 1236.15 588.502 +imu_odom_: 1691062844.190489107 0.622492 -0.349553 9.94312 -0.0532632 0.0213053 0.0958738 0.06 0.08 pose: 0.0 4.18217 -4.10148 0 0.0118909 -0.0002360140.999154 -0.0393634 uwb: 0.0 1236.15 588.502 +imu_odom_: 1691062844.207626134 0.648829 -0.148441 10.0844 -0.0575243 -0.00639159 0.0873517 0.05 0.05 pose: 0.44977004 4.18217 -4.10148 0 0.013406 -0.0012595 0.999089 -0.0405059 uwb: 0.49889255 1235.06 588.743 +imu_odom_: 1691062844.233791752 0.548272 -0.198719 9.7875 -0.0596548 0.0127832 0.0841559 0.05 0.02 pose: 0.0 4.18217 -4.10148 0 0.013406 -0.0012595 0.999089 -0.0405059 uwb: 0.0 1235.06 588.743 +imu_odom_: 1691062844.259811836 0.0287304 -0.277727 9.56005 -0.0607201 0.0351537 0.00745685 0.05 0.05 pose: 0.24019370 4.17603 -4.10938 0 0.0122809 0.000455826 0.999082 -0.0410451 uwb: 0.0 1235.06 588.743 +imu_odom_: 1691062844.282705731 -1.30963 0.229843 9.73482 -0.0490022 0.0692422 -0.0234358 0.05 0.05 pose: 0.0 4.17603 -4.10938 0 0.0122809 0.000455826 0.999082 -0.0410451 uwb: 0.0 1235.06 588.743 +imu_odom_: 1691062844.299501820 -0.816423 -0.646434 9.95988 -0.0756338 -0.0692422 0.0937433 0.09 0.02 pose: 0.26095913 4.17603 -4.10938 0 0.00939953 0.000527265 0.9991 -0.0413623 uwb: 0.100068117 1237.2 590.816 +imu_odom_: 1691062844.325488074 0.751779 -0.37589 9.88805 -0.0372843 -0.0330232 0.0553937 0.09 0.02 pose: 0.48902022 4.17603 -4.10938 0 0.00362584 0.000341651 0.999172 -0.0405174 uwb: 0.0 1237.2 590.816 +imu_odom_: 1691062844.342481026 0.584185 0.150835 9.4954 -0.0596548 0.0138484 0.0958738 0.09 0.02 pose: 0.0 4.17603 -4.10938 0 0.00362584 0.000341651 0.999172 -0.0405174 uwb: 0.50104201 1235.56 590.357 +imu_odom_: 1691062844.359689799 -0.186748 -0.282516 9.45949 -0.0617853 0.0330232 0.0149137 0.12 0 pose: 0.42981247 4.1682 -4.10316 0 0.00576302 -0.0003281180.999135 -0.0411896 uwb: 0.0 1235.56 590.357 +imu_odom_: 1691062844.374612915 -0.397437 0.248997 10.1586 -0.0511327 0.0181095 -0.0969391 0.12 0 pose: 0.0 4.1682 -4.10316 0 0.00576302 -0.0003281180.999135 -0.0411896 uwb: 0.0 1235.56 590.357 +imu_odom_: 1691062844.391604410 0.289698 0.270545 9.87369 -0.0745685 -0.00852212 -0.148072 0.12 -0.2 pose: 0.42125256 4.16486 -4.10731 0 0.00228307 0.000979219 0.999187 -0.0402328 uwb: 0.50019622 1235.08 590.355 +imu_odom_: 1691062844.408676107 0.0143652 -0.28491 10.1466 -0.076699 0.0255663 -0.165116 0.12 -0.2 pose: 0.0 4.16486 -4.10731 0 0.00228307 0.000979219 0.999187 -0.0402328 uwb: 0.0 1235.08 590.355 +imu_odom_: 1691062844.425729723 -0.232238 -0.52433 9.63906 -0.0490022 -0.0117179 -0.229032 0.12 -0.2 pose: 0.0 4.16486 -4.10731 0 0.00228307 0.000979219 0.999187 -0.0402328 uwb: 0.0 1235.08 590.355 +imu_odom_: 1691062844.443494671 0.378284 0.0694318 10.0102 -0.0490022 -0.0553937 -0.279099 0.13 -0.35 pose: 0.7010085 4.162 -4.11101 0 0.00204839 0.00156835 0.999213 -0.0395737 uwb: 0.50071245 1235.79 591.603 +imu_odom_: 1691062844.457514841 0.294487 0.059855 9.58878 -0.076699 -0.00532632 -0.288687 0.15 -0.44 pose: 0.0 4.162 -4.11101 0 0.00204839 0.00156835 0.999213 -0.0395737 uwb: 0.0 1235.79 591.603 +imu_odom_: 1691062844.473499853 0.608127 0.107739 10.5129 -0.0596548 -0.0447411 -0.347276 0.15 -0.44 pose: 0.67922521 4.15411 -4.10486 0 -0.00139118 0.00322547 0.99952 -0.0307752 uwb: 0.0 1235.79 591.603 +imu_odom_: 1691062844.488493257 0.366313 -0.126893 9.37569 -0.0458064 -0.0372843 -0.42291 0.15 -0.44 pose: 0.0 4.15411 -4.10486 0 -0.00139118 0.00322547 0.99952 -0.0307752 uwb: 0.0 1235.79 591.603 +imu_odom_: 1691062844.504477978 0.778116 -0.323217 9.66779 -0.00319579 0.0532632 -0.475108 0.14 -0.47 pose: 0.0 4.15411 -4.10486 0 -0.00139118 0.00322547 0.99952 -0.0307752 uwb: 0.49879339 1234.44 591.476 +imu_odom_: 1691062844.519533503 0.114922 -0.19393 10.398 -0.00958738 0.0181095 -0.496413 0.14 -0.47 pose: 0.30985708 4.15411 -4.10486 0 -0.0008883890.00492084 0.999681 -0.0247525 uwb: 0.0 1234.44 591.476 +imu_odom_: 1691062844.536473375 0.241814 0.191536 9.82102 -0.0617853 0.00852212 -0.475108 0.14 -0.53 pose: 0.39002274 4.14365 -4.10943 0 -0.00223791 0.00446614 0.999879 -0.0147617 uwb: 0.0 1234.44 591.476 +imu_odom_: 1691062844.550469338 0.198719 0.0837971 9.84735 -0.0479369 -0.00426106 -0.508131 0.14 -0.53 pose: 0.0 4.14365 -4.10943 0 -0.00223791 0.00446614 0.999879 -0.0147617 uwb: 0.49963917 1234.75 592.577 +imu_odom_: 1691062844.566519972 0.316035 0.00718261 9.8689 -0.0745685 -0.00213053 -0.531567 0.14 -0.53 pose: 0.0 4.14365 -4.10943 0 -0.00223791 0.00446614 0.999879 -0.0147617 uwb: 0.0 1234.75 592.577 +imu_odom_: 1691062844.583462469 0.617704 -0.0861913 10.0245 -0.0511327 0.00852212 -0.535828 0.15 -0.58 pose: 0.6945922 4.14006 -4.10661 0 -0.00254303 0.00508718 0.9999 -0.0129749 uwb: 0.0 1234.75 592.577 +imu_odom_: 1691062844.601464820 0.641646 -0.0095768110.1538 -0.0447411 0.0191748 -0.551807 0.15 -0.58 pose: 0.0 4.14006 -4.10661 0 -0.00254303 0.00508718 0.9999 -0.0129749 uwb: 0.50000665 1235.47 593.783 +imu_odom_: 1691062844.619456963 0.962469 0.162806 10.1251 -0.056459 -0.0617853 -0.504935 0.14 -0.55 pose: 0.47111878 4.14006 -4.10661 0 -0.00354956 0.00842782 0.999958 3.75727e-05 uwb: 0.0 1235.47 593.783 +imu_odom_: 1691062844.635534428 1.5706 -0.407014 9.36612 -0.076699 -0.0276969 -0.441019 0.13 -0.47 pose: 0.0 4.14006 -4.10661 0 -0.00354956 0.00842782 0.999958 3.75727e-05 uwb: 0.0 1235.47 593.783 +imu_odom_: 1691062844.653452784 1.52511 -0.3304 10.4962 -0.0585895 -0.02024 -0.417584 0.14 -0.58 pose: 0.0 4.14006 -4.10661 0 -0.00354956 0.00842782 0.999958 3.75727e-05 uwb: 0.50035080 1235.51 594.537 +imu_odom_: 1691062844.670506691 1.30484 -0.189142 9.93594 -0.0703074 0.0340885 -0.356864 0.14 -0.58 pose: 0.69880947 4.12603 -4.10834 0 0.0035416 0.00827543 0.999784 0.0187199 uwb: 0.0 1235.51 594.537 +imu_odom_: 1691062844.687449188 0.964863 -0.299275 9.97424 -0.072438 0.0319579 -0.286556 0.11 -0.38 pose: 0.0 4.12603 -4.10834 0 0.0035416 0.00827543 0.999784 0.0187199 uwb: 0.0 1235.51 594.537 +imu_odom_: 1691062844.704503970 0.545878 -0.466869 9.74201 -0.0596548 0.0426106 -0.284426 0.11 -0.38 pose: 0.0 4.12603 -4.10834 0 0.0035416 0.00827543 0.999784 0.0187199 uwb: 0.0 1235.51 594.537 +imu_odom_: 1691062844.722562318 0.694318 0.0287304 10.1514 -0.0479369 -0.00319579 -0.282295 0.11 -0.38 pose: 0.34982762 4.12603 -4.10834 0 0.00641949 0.00712437 0.999625 0.0256423 uwb: 0.0 1235.51 594.537 +imu_odom_: 1691062844.744456438 0.811634 -0.229843 9.56005 -0.0745685 -0.0138484 -0.219444 0.07 -0.26 pose: 0.44107306 4.11809 -4.10226 0 0.00798734 0.00614358 0.999413 0.032751 uwb: 0.100087658 1233.95 593.962 +imu_odom_: 1691062844.761587049 0.59855 -0.31364 10.0796 -0.0607201 0.0245011 -0.211988 0.07 -0.26 pose: 0.6022268 4.11809 -4.10226 0 0.00853422 0.00579561 0.999385 0.0335255 uwb: 0.0 1233.95 593.962 +imu_odom_: 1691062844.778526921 0.105345 -0.071826 9.96227 -0.0628506 0.0287621 -0.256729 0.1 -0.32 pose: 0.0 4.11809 -4.10226 0 0.00853422 0.00579561 0.999385 0.0335255 uwb: 0.0 1233.95 593.962 +imu_odom_: 1691062844.795524248 -0.167594 0.392649 10.2927 -0.0479369 0.0553937 -0.298274 0.1 -0.2 pose: 0.49942335 4.1119 -4.11014 0 0.00770492 0.00343948 0.999155 0.0402186 uwb: 0.49856882 1235.72 594.987 +imu_odom_: 1691062844.812592155 -1.25217 0.205901 9.67736 -0.0692422 0.0330232 -0.197074 0.14 -0.23 pose: 0.0 4.1119 -4.11014 0 0.00770492 0.00343948 0.999155 0.0402186 uwb: 0.0 1235.72 594.987 +imu_odom_: 1691062844.829649562 -0.385466 -0.871489 9.92397 -0.0777643 -0.0852212 -0.107592 0.14 -0.23 pose: 0.0 4.1119 -4.11014 0 0.00770492 0.00343948 0.999155 0.0402186 uwb: 0.0 1235.72 594.987 +imu_odom_: 1691062844.846468691 0.0957681 -0.268151 9.82102 -0.0585895 -0.0862864 -0.133158 0.15 -0.26 pose: 0.24103074 4.11197 -4.11016 0 0.00502888 0.00472703 0.99901 0.0439419 uwb: 0.50062786 1234.84 594.881 +imu_odom_: 1691062844.862582904 0.830788 0.155623 10.4531 -0.036219 -0.0330232 -0.125701 0.15 -0.26 pose: 0.0 4.11197 -4.11016 0 0.00502888 0.00472703 0.99901 0.0439419 uwb: 0.0 1234.84 594.881 +imu_odom_: 1691062844.880585255 0.553061 -0.059855 10.0533 -0.0713727 0.00852212 -0.0948085 0.15 -0.26 pose: 0.33971030 4.10408 -4.10401 0 0.00282128 0.00339253 0.998886 0.0469885 uwb: 0.0 1234.84 594.881 +imu_odom_: 1691062844.897604164 0.610521 -0.557849 10.1538 -0.0543285 0.0234358 -0.138484 0.17 -0.23 pose: 0.34050943 4.10408 -4.10401 0 0.00439601 0.00460913 0.998743 0.0497128 uwb: 0.49945544 1235.63 595.964 +imu_odom_: 1691062844.914585742 -0.0550666 -0.3304 9.47864 -0.0628506 -0.00426106 -0.110787 0.17 -0.23 pose: 0.0 4.10408 -4.10401 0 0.00439601 0.00460913 0.998743 0.0497128 uwb: 0.0 1235.63 595.964 +imu_odom_: 1691062844.931464951 0.114922 -0.299275 10.1538 -0.0585895 -0.056459 -0.0681769 0.13 -0.14 pose: 0.43933774 4.09577 -4.10504 0 0.00354071 0.00299099 0.998575 0.0531594 uwb: 0.0 1235.63 595.964 +imu_odom_: 1691062844.948584479 0.265756 -0.215478 9.56723 -0.0617853 -0.02024 -0.0873517 0.13 -0.14 pose: 0.0 4.09577 -4.10504 0 0.00354071 0.00299099 0.998575 0.0531594 uwb: 0.49985207 1233.52 595.531 +imu_odom_: 1691062844.963522470 0.56982 0.0861913 9.8689 -0.0415453 -0.0117179 -0.100135 0.13 -0.14 pose: 0.0 4.09577 -4.10504 0 0.00354071 0.00299099 0.998575 0.0531594 uwb: 0.0 1233.52 595.531 +imu_odom_: 1691062844.980569961 0.23942 -0.0790087 9.70131 -0.0649811 0.0234358 -0.0884169 0.13 -0.11 pose: 0.7006585 4.09005 -4.10575 0 0.00306131 0.0027365 0.998557 0.0535383 uwb: 0.0 1233.52 595.531 +imu_odom_: 1691062844.994586631 0.457293 0.0694318 10.0772 -0.0436758 -0.0138484 -0.0852212 0.13 -0.11 pose: 0.0 4.09005 -4.10575 0 0.00306131 0.0027365 0.998557 0.0535383 uwb: 0.49928045 1232.25 595.287 +imu_odom_: 1691062845.11631497 0.241814 -0.397437 9.43555 -0.0607201 0.0287621 -0.0639159 0.13 -0.11 pose: 0.0 4.09005 -4.10575 0 0.00306131 0.0027365 0.998557 0.0535383 uwb: 0.0 1232.25 595.287 +imu_odom_: 1691062845.26576780 0.612916 -0.129287 10.2328 -0.0447411 -0.0426106 -0.0532632 0.15 -0.11 pose: 0.49002058 4.09005 -4.10575 0 0.000971481 0.00356535 0.998387 0.0566561 uwb: 0.0 1232.25 595.287 +imu_odom_: 1691062845.43453656 1.14203 0.0335188 10.0102 -0.0415453 -0.0596548 -0.0213053 0.13 -0.11 pose: 0.0 4.09005 -4.10575 0 0.000971481 0.00356535 0.998387 0.0566561 uwb: 0.50103618 1232.6 596.304 +imu_odom_: 1691062845.57460994 1.30963 -0.225055 10.003 -0.0585895 -0.0213053 0.015979 0.13 -0.11 pose: 0.0 4.09005 -4.10575 0 0.000971481 0.00356535 0.998387 0.0566561 uwb: 0.0 1232.6 596.304 +imu_odom_: 1691062845.73590372 1.54905 -0.289698 10.3717 -0.0511327 -0.0884169 0.0234358 0.13 -0.11 pose: 0.62996854 4.07604 -4.10746 0 0.0018926 0.00405007 0.998191 0.0599508 uwb: 0.0 1232.6 596.304 +imu_odom_: 1691062845.90697068 1.25456 -0.363919 9.1267 -0.0319579 -0.0426106 -0.0330232 0.1 -0.11 pose: 0.0 4.07604 -4.10746 0 0.0018926 0.00405007 0.998191 0.0599508 uwb: 0.0 1232.6 596.304 +imu_odom_: 1691062845.108443352 1.52989 0.0694318 10.161 -0.0458064 0.0287621 -0.0703074 0.1 -0.11 pose: 0.30990958 4.07604 -4.10746 0 0.00563401 0.0038425 0.998147 0.0604611 uwb: 0.49963043 1233.1 597.077 +imu_odom_: 1691062845.125566088 0.864307 -0.287304 10.1179 -0.0798948 0.0266316 -0.0447411 0.09 -0.11 pose: 0.43861155 4.06816 -4.1013 0 0.0102985 0.00361968 0.99801 0.0621066 uwb: 0.0 1233.1 597.077 +imu_odom_: 1691062845.139626215 0.562637 -0.366313 9.95988 -0.0575243 0.0149137 -0.0894822 0.09 -0.11 pose: 0.0 4.06816 -4.1013 0 0.0102985 0.00361968 0.99801 0.0621066 uwb: 0.0 1233.1 597.077 +imu_odom_: 1691062845.157496740 0.804452 -0.0335188 9.84256 -0.0468716 -0.0500674 -0.122505 0.09 -0.11 pose: 0.0 4.06816 -4.1013 0 0.0102985 0.00361968 0.99801 0.0621066 uwb: 0.50196363 1234.66 598.422 +imu_odom_: 1691062845.173504501 0.912191 0.0526724 9.92875 -0.056459 -0.00958738 -0.0692422 0.07 -0.05 pose: 0.8011609 4.06816 -4.1013 0 0.0108254 0.00307562 0.997985 0.0624368 uwb: 0.0 1234.66 598.422 +imu_odom_: 1691062845.191549725 0.699107 -0.514753 9.96227 -0.0607201 0.00958738 -0.0479369 0.09 -0.08 pose: 0.0 4.06816 -4.1013 0 0.0108254 0.00307562 0.997985 0.0624368 uwb: 0.0 1234.66 598.422 +imu_odom_: 1691062845.207496240 0.56982 -0.301669 9.84496 -0.0447411 -0.0106526 -0.0735032 0.09 -0.08 pose: 0.65056192 4.06816 -4.1013 0 0.0140121 0.00228284 0.997694 0.0663718 uwb: 0.49797678 1235.74 599.79 +imu_odom_: 1691062845.224567646 0.634463 -0.0646434 9.94073 -0.0511327 -0.00213053 -0.0298274 0.07 -0.05 pose: 0.0 4.06816 -4.1013 0 0.0140121 0.00228284 0.997694 0.0663718 uwb: 0.0 1235.74 599.79 +imu_odom_: 1691062845.249518545 0.703895 -0.423774 9.97185 -0.0553937 -0.0149137 0.00319579 0.07 -0.05 pose: 0.25985087 4.06816 -4.1013 0 0.0129207 0.000171336 0.997623 0.0679669 uwb: 0.50009999 1236.52 600.854 +imu_odom_: 1691062845.275698746 -0.718261 -0.0407014 9.22007 -0.0500674 0.115049 0.00319579 0.06 -0.08 pose: 0.34044235 4.06278 -4.09714 0 0.01319 -0.0005637920.997549 0.0687139 uwb: 0.0 1236.52 600.854 +imu_odom_: 1691062845.292570664 -1.36948 -0.332794 10.2951 -0.0553937 0.0266316 0.0191748 0.06 -0.08 pose: 0.8020067 4.06025 -4.09518 0 0.0119267 -0.0003551770.997555 0.0688617 uwb: 0.50064829 1237.67 602.085 +imu_odom_: 1691062845.317637347 -0.136469 -0.150835 9.70849 -0.0585895 -0.092678 0.00958738 0.11 -0.02 pose: 0.0 4.06025 -4.09518 0 0.0119267 -0.0003551770.997555 0.0688617 uwb: 0.0 1237.67 602.085 +imu_odom_: 1691062845.342580663 0.737414 -0.126893 9.61033 -0.0617853 -0.0245011 -0.00319579 0.11 -0.02 pose: 0.35032052 4.05412 -4.10308 0 0.00711849 0.000138758 0.997566 0.0693687 uwb: 0.49964793 1239.06 602.917 +imu_odom_: 1691062845.368704867 -0.189142 -0.191536 10.3286 -0.0596548 0.0170442 0.00639159 0.11 -0.02 pose: 0.50009999 4.05412 -4.10308 0 0.0084055 0.000891141 0.997491 0.0702822 uwb: 0.0 1239.06 602.917 +imu_odom_: 1691062845.393595686 -0.222661 -0.177171 10.1634 -0.0415453 -0.0415453 0 0.11 -0.02 pose: 0.0 4.05412 -4.10308 0 0.0084055 0.000891141 0.997491 0.0702822 uwb: 0.49838801 1239.82 604.007 +imu_odom_: 1691062845.411571788 0.275333 -0.198719 9.83538 -0.0383495 -0.0628506 0 0.13 -0.02 pose: 0.51015023 4.04624 -4.09692 0 0.00350642 0.00136703 0.997454 0.0712151 uwb: 0.0 1239.82 604.007 +imu_odom_: 1691062845.435484415 0.500388 -0.306458 9.79707 -0.0458064 0.0234358 0.00745685 0.13 -0.02 pose: 0.0 4.04624 -4.09692 0 0.00350642 0.00136703 0.997454 0.0712151 uwb: 0.0 1239.82 604.007 +imu_odom_: 1691062845.461667241 0.124498 -0.0311246 10.0772 -0.0245011 -0.0543285 0.0127832 0.17 -0.02 pose: 0.41888729 4.04624 -4.09692 0 0.00275276 -0.0006385160.997404 0.0719489 uwb: 0.49981709 1238.84 604.072 +imu_odom_: 1691062845.477547259 0.459687 -0.131681 9.9934 -0.0553937 -0.0415453 0.0319579 0.17 -0.02 pose: 0.6973629 4.04624 -4.09692 0 0.00235666 -0.0001530570.997399 0.0720426 uwb: 0.0 1238.84 604.072 +imu_odom_: 1691062845.503566761 0.517148 -0.129287 10.2783 -0.0511327 -0.0276969 0.00532632 0.18 -0.05 pose: 0.35089215 4.0322 -4.0986 0 0.00245203 0.00247835 0.997372 0.0723613 uwb: 0.50172447 1238.69 604.313 +imu_odom_: 1691062845.528542741 0.141258 -0.179565 9.83299 -0.0607201 -0.0596548 0.0234358 0.18 -0.05 pose: 0.0 4.0322 -4.0986 0 0.00245203 0.00247835 0.997372 0.0723613 uwb: 0.0 1238.69 604.313 +imu_odom_: 1691062845.555446233 -0.37589 -0.158017 9.8689 -0.0500674 0.00958738 0.0319579 0.17 -0.05 pose: 0.7918573 4.0322 -4.0986 0 0.0032873 0.00276908 0.997359 0.0724954 uwb: 0.50011458 1239.01 605.354 +imu_odom_: 1691062845.579430022 0.514753 -0.19393 10.1323 -0.0756338 0.0191748 0.0426106 0.15 0 pose: 0.50987025 4.02429 -4.09248 0 0.00253984 0.00330211 0.99732 0.0730471 uwb: 0.0 1239.01 605.354 +imu_odom_: 1691062845.605430858 0.538695 -0.059855 10.2783 -0.0479369 -0.00532632 0.0213053 0.15 0 pose: 0.0 4.02429 -4.09248 0 0.00253984 0.00330211 0.99732 0.0730471 uwb: 0.49930378 1239.85 606.282 +imu_odom_: 1691062845.622471058 0.186748 -0.177171 10.0628 -0.0532632 -0.0447411 0.0308927 0.15 -0.02 pose: 0.68978001 4.01261 -4.09608 0 0.00415148 0.00404582 0.997292 0.0733169 uwb: 0.0 1239.85 606.282 +imu_odom_: 1691062845.639681581 0.739808 -0.196325 10.1538 -0.0596548 -0.00319579 0.0266316 0.15 -0.02 pose: 0.8013068 4.01026 -4.09426 0 0.00351503 0.00396886 0.997292 0.0733554 uwb: 0.0 1239.85 606.282 +imu_odom_: 1691062845.655407317 0.203507 -0.244209 9.36612 -0.0447411 0.04048 0.015979 0.15 -0.02 pose: 0.0 4.01026 -4.09426 0 0.00351503 0.00396886 0.997292 0.0733554 uwb: 0.49887215 1239.94 606.913 +imu_odom_: 1691062845.681478150 0.816423 -0.371101 9.36612 -0.0735032 -0.0276969 0.0490022 0.16 -0.02 pose: 0.32985256 4.01026 -4.09426 0 0.00363723 0.00322106 0.997277 0.0735822 uwb: 0.0 1239.94 606.913 +imu_odom_: 1691062845.707558023 0.462081 0.023942 10.2448 -0.0532632 -0.0340885 0.0266316 0.17 0 pose: 0.0 4.01026 -4.09426 0 0.00363723 0.00322106 0.997277 0.0735822 uwb: 0.49993375 1238.3 606.52 +imu_odom_: 1691062845.723565492 0.0646434 -0.222661 9.63187 -0.0607201 0.02024 0.0308927 0.17 0 pose: 0.35048968 4.0048 -4.09003 0 0.00501059 0.0013113 0.997278 0.0735574 uwb: 0.0 1238.3 606.52 +imu_odom_: 1691062845.749498666 0.603339 -0.1652 10.0365 -0.0415453 0.0117179 0.0106526 0.17 0 pose: 0.0 4.0048 -4.09003 0 0.00501059 0.0013113 0.997278 0.0735574 uwb: 0.50008249 1239.66 608.145 +imu_odom_: 1691062845.773457082 0.440533 -0.335188 9.73243 -0.0436758 -0.0255663 0.0394148 0.16 -0.02 pose: 0.49977042 3.99623 -4.09604 0 0.00400105 0.00351201 0.99725 0.0739233 uwb: 0.0 1239.66 608.145 +imu_odom_: 1691062845.798686797 0.347159 -0.179565 10.1347 -0.0628506 0.0298274 0.0191748 0.16 -0.02 pose: 0.42001890 3.98833 -4.0899 0 0.00492176 0.00108659 0.997233 0.0741677 uwb: 0.49986083 1237.5 607.847 +imu_odom_: 1691062845.822401102 0.395043 -0.244209 10.4435 -0.0468716 -0.04048 0.0415453 0.16 -0.02 pose: 0.6942130 3.98833 -4.0899 0 0.00411213 0.00114857 0.997231 0.0742396 uwb: 0.0 1237.5 607.847 +imu_odom_: 1691062845.839473092 0.845153 -0.347159 9.90481 -0.0660464 -0.0170442 0.0490022 0.21 0 pose: 0.0 3.98833 -4.0899 0 0.00411213 0.00114857 0.997231 0.0742396 uwb: 0.0 1237.5 607.847 +imu_odom_: 1691062845.864397450 0.778116 -0.107739 9.75398 -0.0447411 0.0383495 0.0127832 0.21 0 pose: 0.49010225 3.9743 -4.09165 0 0.00151172 -0.0006634840.997229 0.0743721 uwb: 0.50049955 1234.79 606.934 +imu_odom_: 1691062845.890593983 0.54109 -0.339977 9.69412 -0.0639159 0.0138484 0.0330232 0.22 -0.02 pose: 0.34988013 3.9743 -4.09165 0 0.00438575 -0.0001936290.997199 0.0746618 uwb: 0.0 1234.79 606.934 +imu_odom_: 1691062845.906546914 0.275333 -0.0622492 10.0149 -0.0532632 -0.0149137 0.0213053 0.22 -0.02 pose: 0.8077230 3.9743 -4.09165 0 0.00456788 -0.00098938 0.997196 0.074685 uwb: 0.49935337 1237.66 609.13 +imu_odom_: 1691062845.932429632 0.634463 -0.114922 9.85214 -0.0756338 -0.0383495 0.0436758 0.22 0 pose: 0.0 3.9743 -4.09165 0 0.00456788 -0.00098938 0.997196 0.074685 uwb: 0.0 1237.66 609.13 +imu_odom_: 1691062845.957597810 0.471658 -0.112527 9.65103 -0.0415453 0.00745685 0.0191748 0.22 0 pose: 0.42074510 3.96641 -4.08551 0 0.00472384 -0.00126031 0.997181 0.0748713 uwb: 0.50003874 1238.04 610.047 +imu_odom_: 1691062845.983565106 0.272939 -0.354342 9.60554 -0.072438 0.0213053 0.052198 0.2 0.02 pose: 0.43048620 3.95237 -4.08724 0 0.0053035 0.00204611 0.997159 0.0751105 uwb: 0.0 1238.04 610.047 +imu_odom_: 1691062845.999430542 0.318429 -0.122104 10.003 -0.0415453 -0.015979 0.0308927 0.2 0.02 pose: 0.7947154 3.95237 -4.08724 0 0.00454588 0.00153068 0.997167 0.0750599 uwb: 0.50150866 1238.33 611.105 +imu_odom_: 1691062846.24555556 0.411803 -0.110133 9.56244 -0.0617853 -0.0266316 0.0575243 0.24 0 pose: 0.0 3.95237 -4.08724 0 0.00454588 0.00153068 0.997167 0.0750599 uwb: 0.0 1238.33 611.105 +imu_odom_: 1691062846.49381046 0.73502 0.011971 10.4627 -0.0308927 0.00319579 0.0372843 0.24 0 pose: 0.33885578 3.94847 -4.0842 0 0.0016185 0.00136257 0.99718 0.0750165 uwb: 0.50034498 1239.11 612.112 +imu_odom_: 1691062846.74711964 0.52433 -0.339977 9.90002 -0.0692422 -0.00958738 0.0511327 0.18 0.02 pose: 0.49950504 3.94027 -4.0865 0 0.00369178 0.00494905 0.997178 0.074816 uwb: 0.0 1239.11 612.112 +imu_odom_: 1691062846.100394903 0.457293 0.0143652 9.95988 -0.0447411 -0.0191748 0.0532632 0.25 0 pose: 0.0 3.94027 -4.0865 0 0.00369178 0.00494905 0.997178 0.074816 uwb: 0.49988418 1237.95 612.475 +imu_odom_: 1691062846.114392617 0.603339 -0.158017 9.63427 -0.0681769 -0.0234358 0.0543285 0.25 0 pose: 0.32172722 3.93046 -4.08283 0 0.00418327 0.00298628 0.997199 0.0746164 uwb: 0.0 1237.95 612.475 +imu_odom_: 1691062846.139517922 0.11971 -0.150835 9.35415 -0.0447411 0.00639159 0.036219 0.25 0 pose: 0.0 3.93046 -4.08283 0 0.00418327 0.00298628 0.997199 0.0746164 uwb: 0.0 1237.95 612.475 +imu_odom_: 1691062846.164391534 0.186748 -0.134075 9.81383 -0.0830906 0.0117179 0.0607201 0.19 0.02 pose: 0.39844559 3.93046 -4.08283 0 0.0048974 0.00435605 0.997207 0.0743992 uwb: 0.49999792 1236.18 612.328 +imu_odom_: 1691062846.188446194 0.265756 -0.0047884 10.228 -0.0639159 0.0383495 0.0458064 0.18 0 pose: 0.0 3.93046 -4.08283 0 0.0048974 0.00435605 0.997207 0.0743992 uwb: 0.0 1236.18 612.328 +imu_odom_: 1691062846.206384383 0.409408 -0.277727 9.85453 -0.0777643 -0.0127832 0.052198 0.18 0 pose: 0.42993207 3.91833 -4.08213 0 0.000285182 0.00424197 0.997235 0.0741866 uwb: 0.49942921 1235.51 612.664 +imu_odom_: 1691062846.223379961 0.282516 -0.0143652 9.46188 -0.0681769 0.0245011 0.0351537 0.18 0 pose: 0.0 3.91833 -4.08213 0 0.000285182 0.00424197 0.997235 0.0741866 uwb: 0.0 1235.51 612.664 +imu_odom_: 1691062846.246535175 0.603339 -0.0095768110.1227 -0.0894822 -0.0138484 0.0585895 0.18 0 pose: 0.8126811 3.91642 -4.08458 0 -0.0004507110.00480952 0.997234 0.074163 uwb: 0.50192572 1234.43 612.917 +imu_odom_: 1691062846.263550876 0.572214 -0.184354 9.72525 -0.0884169 0.0234358 0.0553937 0.18 0 pose: 0.0 3.91642 -4.08458 0 -0.0004507110.00480952 0.997234 0.074163 uwb: 0.0 1234.43 612.917 +imu_odom_: 1691062846.288427696 0.59855 -0.347159 10.1778 -0.0639159 -0.0255663 0.0458064 0.19 0 pose: 0.41933061 3.90853 -4.07845 0 -0.00197923 0.00461699 0.997244 0.0740231 uwb: 0.0 1234.43 612.917 +imu_odom_: 1691062846.314520111 0.42138 -0.25618 10.0006 -0.0426106 -0.015979 0.0383495 0.19 0 pose: 0.0 3.90853 -4.07845 0 -0.00197923 0.00461699 0.997244 0.0740231 uwb: 0.49808762 1232.74 612.664 +imu_odom_: 1691062846.330394006 0.588974 -0.320823 9.59357 -0.036219 0.00852212 0.0340885 0.17 -0.02 pose: 0.56078641 3.8945 -4.08021 0 0.0014636 0.00397784 0.997276 0.0736419 uwb: 0.0 1232.74 612.664 +imu_odom_: 1691062846.356366552 0.509965 -0.148441 9.59117 -0.0596548 -0.00532632 0.0468716 0.17 -0.02 pose: 0.0 3.8945 -4.08021 0 0.0014636 0.00397784 0.997276 0.0736419 uwb: 0.49982876 1231.22 612.903 +imu_odom_: 1691062846.381385989 0.253785 -0.225055 9.84735 -0.0628506 -0.0181095 0.056459 0.23 0.02 pose: 0.51154140 3.8866 -4.07408 0 0.00233482 -0.00023688 0.997284 0.0736121 uwb: 0.0 1231.22 612.903 +imu_odom_: 1691062846.398413065 0.512359 -0.203507 10.0844 -0.0351537 -0.0170442 0.0490022 0.23 0.02 pose: 0.0 3.8866 -4.07408 0 0.00233482 -0.00023688 0.997284 0.0736121 uwb: 0.49884299 1232.19 614.337 +imu_odom_: 1691062846.422435352 0.383072 -0.294487 10.1251 -0.036219 -0.0245011 0.0490022 0.18 -0.02 pose: 0.76728878 3.87257 -4.07585 0 0.00400587 0.00069513 0.997305 0.0732567 uwb: 0.0 1232.19 614.337 +imu_odom_: 1691062846.448368527 0.471658 -0.339977 10.4148 -0.0426106 -0.00106526 0.0394148 0.18 -0.02 pose: 0.0 3.87257 -4.07585 0 0.00400587 0.00069513 0.997305 0.0732567 uwb: 0.50054623 1233.1 615.874 +imu_odom_: 1691062846.470403223 0.308852 -0.320823 10.2185 -0.04048 -0.00426106 0.0436758 0.18 0 pose: 0.8003152 3.87257 -4.07585 0 0.00348735 0.000239931 0.99731 0.0732173 uwb: 0.0 1233.1 615.874 +imu_odom_: 1691062846.495390870 0.335188 -0.0454898 10.0102 -0.0607201 -0.04048 0.0458064 0.18 0 pose: 0.48036700 3.86466 -4.06973 0 0.0020263 -0.00318696 0.997316 0.073119 uwb: 0.49931254 1232.77 616.417 +imu_odom_: 1691062846.512389656 0.0502782 -0.0550666 10.0844 -0.0575243 0.0181095 0.0639159 0.19 0 pose: 0.0 3.86466 -4.06973 0 0.0020263 -0.00318696 0.997316 0.073119 uwb: 0.0 1232.77 616.417 +imu_odom_: 1691062846.538515902 0.186748 -0.481235 9.55287 -0.0671117 0.0181095 0.0308927 0.19 0 pose: 0.24065451 3.86466 -4.06973 0 0.000417131 -0.00268442 0.997324 0.0730546 uwb: 0.0 1232.77 616.417 +imu_odom_: 1691062846.564464242 0.189142 -0.373495 9.63427 -0.0426106 -0.0191748 0.0447411 0.2 0 pose: 0.42034555 3.85063 -4.07152 0 -0.00199405 -0.0009160740.997342 0.0728292 uwb: 0.49979085 1232.42 616.999 +imu_odom_: 1691062846.589441973 0.371101 -0.275333 10.1658 -0.0213053 -0.0127832 0.0340885 0.17 0.02 pose: 0.43911319 3.84509 -4.06723 0 -0.00538292 -0.00357061 0.997323 0.0728397 uwb: 0.0 1232.42 616.999 +imu_odom_: 1691062846.614515365 0.617704 -0.11971 9.63427 -0.0575243 -0.00426106 0.0543285 0.17 0.02 pose: 0.0 3.84509 -4.06723 0 -0.00538292 -0.00357061 0.997323 0.0728397 uwb: 0.50016708 1232.44 617.725 +imu_odom_: 1691062846.631507734 0.464475 0.011971 10.0628 -0.0553937 0.0138484 0.0394148 0.18 0 pose: 0.8107854 3.84272 -4.0654 0 -0.00454019 -0.00328521 0.997326 0.0728649 uwb: 0.0 1232.44 617.725 +imu_odom_: 1691062846.656515797 0.263362 -0.131681 9.66539 -0.0713727 -0.00426106 0.0553937 0.18 0 pose: 0.0 3.84272 -4.0654 0 -0.00454019 -0.00328521 0.997326 0.0728649 uwb: 0.50051123 1231.01 617.821 +imu_odom_: 1691062846.681371618 0.696713 -0.213084 9.97424 -0.0617853 -0.00106526 0.0500674 0.17 0 pose: 0.48946938 3.82869 -4.06719 0 -0.000356968-0.0009738990.997351 0.0727369 uwb: 0.0 1231.01 617.821 +imu_odom_: 1691062846.698377987 0.474052 -0.148441 10.0437 -0.0756338 0.00639159 0.0639159 0.17 0 pose: 0.0 3.82869 -4.06719 0 -0.000356968-0.0009738990.997351 0.0727369 uwb: 0.49937379 1231.73 619.634 +imu_odom_: 1691062846.723371758 0.579397 -0.217872 9.9527 -0.0745685 0.0340885 0.0351537 0.19 0 pose: 0.43067285 3.82869 -4.06719 0 -0.00138797 0.00110054 0.997367 0.0724974 uwb: 0.0 1231.73 619.634 +imu_odom_: 1691062846.749497713 0.299275 -0.557849 9.78989 -0.0628506 0.0287621 0.0468716 0.19 0 pose: 0.0 3.82869 -4.06719 0 -0.00138797 0.00110054 0.997367 0.0724974 uwb: 0.50402852 1232.7 621.026 +imu_odom_: 1691062846.765400481 0.536301 -0.162806 9.85693 -0.0383495 -0.0458064 0.0276969 0.21 0 pose: 0.41903605 3.81467 -4.069 0 0.00219916 0.0012546 0.997386 0.0722165 uwb: 0.0 1232.7 621.026 +imu_odom_: 1691062846.789337606 0.418985 -0.203507 10.2544 -0.076699 -0.0138484 0.0639159 0.21 0 pose: 0.0 3.81467 -4.069 0 0.00219916 0.0012546 0.997386 0.0722165 uwb: 0.0 1232.7 621.026 +imu_odom_: 1691062846.815334943 0.196325 -0.179565 9.77074 -0.0468716 0.02024 0.0298274 0.26 0 pose: 0.50881157 3.80675 -4.06289 0 0.00254899 -0.00122271 0.997386 0.0721961 uwb: 0.49708142 1233.76 622.673 +imu_odom_: 1691062846.831540735 0.287304 -0.134075 9.90481 -0.0862864 0.00639159 0.0458064 0.26 0 pose: 0.0 3.80675 -4.06289 0 0.00254899 -0.00122271 0.997386 0.0721961 uwb: 0.0 1233.76 622.673 +imu_odom_: 1691062846.855491859 0.356736 -0.244209 9.86411 -0.0532632 0.0245011 0.0340885 0.25 -0.05 pose: 0.74169654 3.79273 -4.06471 0 -0.00285274 0.00159919 0.997397 0.0720328 uwb: 0.49869717 1236.98 625.522 +imu_odom_: 1691062846.881476364 0.550666 -0.418985 9.34457 -0.0745685 -0.0234358 0.0447411 0.25 -0.05 pose: 0.6965463 3.79273 -4.06471 0 -0.00286519 0.00092229 0.997396 0.0720537 uwb: 0.0 1236.98 625.522 +imu_odom_: 1691062846.906393140 0.11971 -0.337582 10.6111 -0.052198 -0.0298274 0.0479369 0.19 0 pose: 0.42970166 3.7848 -4.0586 0 -0.00089872 -0.00290514 0.997397 0.0720434 uwb: 0.0 1236.98 625.522 +imu_odom_: 1691062846.931485197 0.73502 -0.304064 10.568 -0.0596548 -0.0255663 0.0383495 0.19 0 pose: 0.0 3.7848 -4.0586 0 -0.00089872 -0.00290514 0.997397 0.0720434 uwb: 0.0 1236.98 625.522 +imu_odom_: 1691062846.956332561 1.00556 -0.0526724 10.1897 -0.072438 -0.0383495 0.0436758 0.23 -0.02 pose: 0.32938301 3.77078 -4.06042 0 -0.00216092 -0.00337699 0.997401 0.071939 uwb: 0.99986169 1234.45 625.205 +imu_odom_: 1691062846.981393412 0.646434 0.00957681 10.1299 -0.0447411 -0.0394148 0.0340885 0.18 -0.02 pose: 0.0 3.77078 -4.06042 0 -0.00216092 -0.00337699 0.997401 0.071939 uwb: 0.0 1234.45 625.205 +imu_odom_: 1691062846.998545314 0.253785 -0.378284 9.42118 -0.0671117 -0.0287621 0.0351537 0.18 -0.02 pose: 0.50001251 3.77078 -4.06042 0 0.00313932 -0.00245811 0.997401 0.0719357 uwb: 0.50070079 1234.99 626.517 +imu_odom_: 1691062847.22532020 0.385466 -0.304064 9.6606 -0.0553937 -0.00639159 0.0372843 0.18 0 pose: 0.0 3.77078 -4.06042 0 0.00313932 -0.00245811 0.997401 0.0719357 uwb: 0.0 1234.99 626.517 +imu_odom_: 1691062847.48363409 0.512359 -0.385466 10.07 -0.0639159 -0.0223706 0.0532632 0.18 0 pose: 0.42082094 3.76286 -4.05432 0 0.00250547 -0.00238807 0.997397 0.0720272 uwb: 0.50196073 1236.59 628.308 +imu_odom_: 1691062847.61478300 0.646434 -0.148441 10.1514 -0.0553937 -0.00958738 0.0511327 0.18 0 pose: 0.0 3.76286 -4.05432 0 0.00250547 -0.00238807 0.997397 0.0720272 uwb: 0.0 1236.59 628.308 +imu_odom_: 1691062847.85395594 0.373495 -0.31364 10.1945 -0.0479369 -0.04048 0.0490022 0.18 0 pose: 0.47880960 3.74883 -4.05614 0 0.00324816 -0.00512175 0.997398 0.0718334 uwb: 0.0 1236.59 628.308 +imu_odom_: 1691062847.111409556 0.521936 -0.229843 10.2735 -0.0415453 -0.036219 0.04048 0.23 -0.02 pose: 0.31016624 3.74356 -4.05208 0 0.00185745 -0.00466643 0.997416 0.0716711 uwb: 0.49748683 1238.11 630.201 +imu_odom_: 1691062847.135379055 1.19471 -0.117316 10.3214 -0.0543285 -0.0298274 0.0532632 0.23 -0.02 pose: 0.0 3.74356 -4.05208 0 0.00185745 -0.00466643 0.997416 0.0716711 uwb: 0.0 1238.11 630.201 +imu_odom_: 1691062847.153414655 0.316035 -0.282516 9.34457 -0.0681769 0.0213053 0.0436758 0.19 0.02 pose: 0.7990611 3.74091 -4.05004 0 0.00258543 -0.00408837 0.997417 0.0716706 uwb: 0.50033917 1238.37 631.21 +imu_odom_: 1691062847.177486232 -0.0550666 -0.363919 10.228 -0.0575243 -0.0127832 0.0671117 0.19 0.02 pose: 0.0 3.74091 -4.05004 0 0.00258543 -0.00408837 0.997417 0.0716706 uwb: 0.0 1238.37 631.21 +imu_odom_: 1691062847.201378735 0.158017 -0.184354 10.0796 -0.0607201 0.00213053 0.0394148 0.22 0.02 pose: 0.49952254 3.73481 -4.05796 0 0.00601286 -0.00257053 0.99742 0.0714943 uwb: 0.49993085 1238.76 632.722 +imu_odom_: 1691062847.225377983 0.754174 -0.0646434 10.252 -0.0671117 -0.02024 0.056459 0.22 0.02 pose: 0.0 3.73481 -4.05796 0 0.00601286 -0.00257053 0.99742 0.0714943 uwb: 0.0 1238.76 632.722 +imu_odom_: 1691062847.242322814 0.636858 -0.1652 9.47386 -0.0692422 0.00426106 0.0479369 0.25 0.02 pose: 0.41982059 3.72688 -4.05187 0 0.00181559 -0.00274456 0.997461 0.0711335 uwb: 0.50079413 1237.67 632.997 +imu_odom_: 1691062847.267523657 0.416591 -0.217872 9.40682 -0.0692422 -0.00426106 0.0490022 0.25 0.02 pose: 0.0 3.72688 -4.05187 0 0.00181559 -0.00274456 0.997461 0.0711335 uwb: 0.0 1237.67 632.997 +imu_odom_: 1691062847.292337773 0.476446 -0.107739 9.63427 -0.0681769 0.00958738 0.0394148 0.23 0 pose: 0.47001929 3.71895 -4.04578 0 0.00323114 -0.00119349 0.997477 0.0709073 uwb: 0.49940881 1238.04 634.527 +imu_odom_: 1691062847.309466635 0.59855 -0.390255 9.94551 -0.0798948 0.0351537 0.0490022 0.23 0 pose: 0.0 3.71895 -4.04578 0 0.00323114 -0.00119349 0.997477 0.0709073 uwb: 0.0 1238.04 634.527 +imu_odom_: 1691062847.334331207 0.593762 -0.270545 9.93833 -0.0905475 0 0.0490022 0.23 -0.02 pose: 0.43215736 3.70493 -4.04763 0 0.00192071 7.93412e-05 0.997492 0.0707526 uwb: 0.0 1238.04 634.527 +imu_odom_: 1691062847.359473428 0.672771 -0.385466 9.95988 -0.0649811 -0.0276969 0.0436758 0.23 -0.02 pose: 0.0 3.70493 -4.04763 0 0.00192071 7.93412e-05 0.997492 0.0707526 uwb: 0.50058706 1239.51 636.446 +imu_odom_: 1691062847.384323125 0.366313 -0.241814 10.24 -0.0394148 -0.015979 0.036219 0.19 0.02 pose: 0.41842068 3.70493 -4.04763 0 0.00368465 -0.0006320560.997495 0.0706335 uwb: 0.0 1239.51 636.446 +imu_odom_: 1691062847.409341396 0.584185 -0.134075 10.4267 -0.0490022 -0.0735032 0.04048 0.19 0.02 pose: 0.0 3.70493 -4.04763 0 0.00368465 -0.0006320560.997495 0.0706335 uwb: 0.49877592 1238.98 637.251 +imu_odom_: 1691062847.426338432 0.684742 -0.270545 9.47864 -0.0628506 0.0106526 0.0490022 0.18 0.02 pose: 0.50049082 3.69091 -4.04948 0 0.00647933 -0.00337213 0.997485 0.0705054 uwb: 0.0 1238.98 637.251 +imu_odom_: 1691062847.450319889 0.203507 -0.40462 9.67736 -0.0628506 -0.0117179 0.0532632 0.18 0.02 pose: 0.0 3.69091 -4.04948 0 0.00647933 -0.00337213 0.997485 0.0705054 uwb: 0.50054623 1236.17 636.704 +imu_odom_: 1691062847.467392463 0.433351 -0.287304 9.73243 -0.0436758 -0.0138484 0.0490022 0.18 -0.02 pose: 0.66926834 3.68297 -4.0434 0 0.0079274 -0.00177485 0.997487 0.0703883 uwb: 0.0 1236.17 636.704 +imu_odom_: 1691062847.492443981 0.758962 -0.0454898 10.3118 -0.0372843 -0.0426106 0.0479369 0.18 -0.02 pose: 0.0 3.68297 -4.0434 0 0.0079274 -0.00177485 0.997487 0.0703883 uwb: 0.50099829 1235.08 637.002 +imu_odom_: 1691062847.518395822 0.440533 -0.191536 9.98861 -0.0383495 0.00213053 0.0415453 0.18 0 pose: 0.42116509 3.66895 -4.04526 0 0.00584416 -0.00217337 0.997517 0.0701516 uwb: 0.0 1235.08 637.002 +imu_odom_: 1691062847.543315806 0.280122 -0.220267 9.72046 -0.052198 0.00213053 0.0383495 0.19 0 pose: 0.41923146 3.66348 -4.04108 0 0.00494888 7.7253e-05 0.99753 0.0700697 uwb: 0.49885175 1235.45 638.506 +imu_odom_: 1691062847.566311197 0.201113 0.107739 9.69891 -0.0617853 -0.00106526 0.0468716 0.19 0 pose: 0.0 3.66348 -4.04108 0 0.00494888 7.7253e-05 0.99753 0.0700697 uwb: 0.0 1235.45 638.506 +imu_odom_: 1691062847.590313069 0.502782 -0.304064 9.81623 -0.0788296 0.0106526 0.0511327 0.25 0 pose: 0.8120686 3.66101 -4.03919 0 0.004111 9.75371e-05 0.997533 0.0700749 uwb: 0.0 1235.45 638.506 +imu_odom_: 1691062847.607307481 0.153229 -0.407014 10.0078 -0.0500674 -0.0191748 0.0308927 0.25 0 pose: 0.0 3.66101 -4.03919 0 0.004111 9.75371e-05 0.997533 0.0700749 uwb: 0.49994836 1235.67 640.226 +imu_odom_: 1691062847.632290170 0.452504 -0.292093 9.60314 -0.0436758 -0.0223706 0.0426106 0.18 0.02 pose: 0.47915667 3.64699 -4.04106 0 0.00136968 0.00117082 0.997548 0.0699587 uwb: 0.0 1235.67 640.226 +imu_odom_: 1691062847.655351181 0.318429 -0.237026 9.91678 -0.0308927 0.0245011 0.0383495 0.18 0.02 pose: 0.0 3.64699 -4.04106 0 0.00136968 0.00117082 0.997548 0.0699587 uwb: 0.49952254 1236.09 641.65 +imu_odom_: 1691062847.680353703 0.277727 -0.244209 10.0317 -0.0447411 -0.0127832 0.0479369 0.25 -0.02 pose: 0.41941519 3.64699 -4.04106 0 0.00115449 -0.00193813 0.99755 0.0699215 uwb: 0.0 1236.09 641.65 +imu_odom_: 1691062847.694275004 0.519542 -0.136469 9.81623 -0.0585895 -0.00745685 0.0458064 0.25 -0.02 pose: 0.0 3.64699 -4.04106 0 0.00115449 -0.00193813 0.99755 0.0699215 uwb: 0.50050540 1237.55 643.497 +imu_odom_: 1691062847.718444575 0.440533 -0.304064 9.96467 -0.0479369 -0.0372843 0.0553937 0.17 -0.02 pose: 0.46928434 3.63904 -4.03499 0 -0.00114948 -0.00195838 0.997553 0.0698715 uwb: 0.0 1237.55 643.497 +imu_odom_: 1691062847.745298195 0.158017 -0.023942 9.87369 -0.0468716 0.0479369 0.04048 0.17 -0.02 pose: 0.0 3.63904 -4.03499 0 -0.00114948 -0.00195838 0.997553 0.0698715 uwb: 0.50105079 1237.95 644.244 +imu_odom_: 1691062847.770287009 -0.0550666 -0.189142 9.43794 -0.0948085 0.0127832 0.0596548 0.19 0 pose: 0.39169392 3.62503 -4.03687 0 -0.0008616 -0.00151097 0.997567 0.06969 uwb: 0.0 1237.95 644.244 +imu_odom_: 1691062847.788282945 0.526724 0.0766145 10.4531 -0.0436758 -0.0479369 0.0340885 0.19 0 pose: 0.0 3.62503 -4.03687 0 -0.0008616 -0.00151097 0.997567 0.06969 uwb: 0.0 1237.95 644.244 +imu_odom_: 1691062847.812343439 0.260968 -0.0742203 10.2568 -0.0681769 -0.0394148 0.0458064 0.18 -0.02 pose: 0.51882098 3.61708 -4.03081 0 -0.0030759 -0.0005900620.99758 0.0694603 uwb: 0.49837636 1235.92 643.934 +imu_odom_: 1691062847.835279333 0.141258 -0.208296 10.0078 -0.0383495 -0.0372843 0.0330232 0.18 -0.02 pose: 0.0 3.61708 -4.03081 0 -0.0030759 -0.0005900620.99758 0.0694603 uwb: 0.0 1235.92 643.934 +imu_odom_: 1691062847.853337098 0.548272 -0.196325 9.77553 -0.0735032 -0.02024 0.0639159 0.25 0 pose: 0.41942395 3.61101 -4.03876 0 -0.00348296 0.00148949 0.997588 0.0693151 uwb: 0.50112078 1235.64 644.654 +imu_odom_: 1691062847.877340429 0.253785 0.0191536 10.2352 -0.0639159 -0.0372843 0.0500674 0.25 0 pose: 0.0 3.61101 -4.03876 0 -0.00348296 0.00148949 0.997588 0.0693151 uwb: 0.0 1235.64 644.654 +imu_odom_: 1691062847.902323993 0.435745 -0.244209 9.69891 -0.0735032 0.0223706 0.0458064 0.21 -0.02 pose: 0.46990263 3.60306 -4.0327 0 -0.00494317 0.00238735 0.997584 0.0692463 uwb: 0.49945255 1235.85 645.692 +imu_odom_: 1691062847.917366978 -0.0574608 -0.220267 10.0533 -0.0553937 0.0330232 0.0319579 0.21 -0.02 pose: 0.0 3.60306 -4.0327 0 -0.00494317 0.00238735 0.997584 0.0692463 uwb: 0.0 1235.85 645.692 +imu_odom_: 1691062847.941302646 0.383072 -0.191536 10.3765 -0.0639159 -0.052198 0.0479369 0.18 0 pose: 0.41995766 3.58904 -4.03459 0 -0.00367732 0.00367868 0.997606 0.0689641 uwb: 0.49818679 1234.76 645.986 +imu_odom_: 1691062847.968278468 0.42138 -0.189142 10.5489 -0.0383495 -0.0276969 0.0298274 0.18 0 pose: 0.0 3.58904 -4.03459 0 -0.00367732 0.00367868 0.997606 0.0689641 uwb: 0.0 1234.76 645.986 +imu_odom_: 1691062847.993286822 0.454898 -0.0383072 10.161 -0.0660464 -0.0426106 0.052198 0.2 0 pose: 0.40028883 3.58904 -4.03459 0 -0.00356757 0.0019815 0.997613 0.0689366 uwb: 0.49981128 1234.56 646.955 +imu_odom_: 1691062848.19303117 0.588974 -0.0407014 10.2568 -0.0394148 -0.0340885 0.02024 0.2 0 pose: 0.52057672 3.58109 -4.02854 0 0.00175275 0.00217907 0.997617 0.068942 uwb: 0.0 1234.56 646.955 +imu_odom_: 1691062848.33307831 0.687136 -0.110133 10.1945 -0.0756338 -0.00319579 0.0479369 0.21 -0.02 pose: 0.0 3.58109 -4.02854 0 0.00175275 0.00217907 0.997617 0.068942 uwb: 0.0 1234.56 646.955 +imu_odom_: 1691062848.56277557 0.553061 0.124498 10.1394 -0.0553937 -0.00745685 0.0340885 0.21 -0.02 pose: 0.0 3.58109 -4.02854 0 0.00175275 0.00217907 0.997617 0.068942 uwb: 0.50175367 1233.32 647.487 +imu_odom_: 1691062848.82433260 0.306458 -0.184354 10.1251 -0.072438 0.00639159 0.0298274 0.18 0 pose: 0.62914030 3.56707 -4.03044 0 0.00660268 0.00552987 0.997576 0.0690461 uwb: 0.0 1233.32 647.487 +imu_odom_: 1691062848.106293100 0.387861 -0.280122 9.09318 -0.0436758 -0.0234358 0.0308927 0.2 -0.02 pose: 0.0 3.56707 -4.03044 0 0.00660268 0.00552987 0.997576 0.0690461 uwb: 0.50128995 1231.63 647.384 +imu_odom_: 1691062848.124497565 0.663194 -0.387861 9.94791 -0.0639159 -0.0276969 0.0511327 0.2 -0.02 pose: 0.42150633 3.55912 -4.02439 0 0.00438581 0.00581217 0.997574 0.0692366 uwb: 0.0 1231.63 647.384 +imu_odom_: 1691062848.149542668 0.40462 -0.124498 10.2017 -0.0372843 -0.015979 0.0340885 0.2 -0.02 pose: 0.0 3.55912 -4.02439 0 0.00438581 0.00581217 0.997574 0.0692366 uwb: 0.49809347 1231.43 648.352 +imu_odom_: 1691062848.174263457 0.047884 -0.203507 9.88805 -0.0607201 -0.0319579 0.0511327 0.18 0 pose: 0.7948614 3.55912 -4.02439 0 0.00406362 0.00516644 0.997576 0.069271 uwb: 0.0 1231.43 648.352 +imu_odom_: 1691062848.191253786 0.474052 -0.234632 9.56962 -0.0372843 0.0234358 0.0298274 0.18 0 pose: 0.0 3.55912 -4.02439 0 0.00406362 0.00516644 0.997576 0.069271 uwb: 0.0 1231.43 648.352 +imu_odom_: 1691062848.214323839 0.553061 -0.332794 9.96467 -0.0553937 0.0127832 0.0553937 0.18 -0.02 pose: 0.43030248 3.5451 -4.02628 0 0.00391014 0.0027535 0.997588 0.0692548 uwb: 0.50050833 1231.69 649.286 +imu_odom_: 1691062848.240420046 0.430956 -0.237026 10.3837 -0.0543285 0.0117179 0.0351537 0.25 0 pose: 0.80911717 3.53323 -4.02536 0 0.00231864 0.000213001 0.99761 0.0690638 uwb: 0.49943505 1232.32 650.998 +imu_odom_: 1691062848.256414100 0.272939 -0.179565 9.87369 -0.0628506 -0.02024 0.0553937 0.25 0 pose: 0.0 3.53323 -4.02536 0 0.00231864 0.000213001 0.99761 0.0690638 uwb: 0.0 1232.32 650.998 +imu_odom_: 1691062848.282269697 0.167594 -0.268151 9.76355 -0.0532632 0.0106526 0.0340885 0.23 0.02 pose: 0.8164725 3.53109 -4.02818 0 0.00176503 -0.0004333750.997609 0.0690805 uwb: 0.0 1232.32 650.998 +imu_odom_: 1691062848.305335375 0.629675 -0.201113 9.66779 -0.0788296 0.00106526 0.0585895 0.23 0.02 pose: 0.0 3.53109 -4.02818 0 0.00176503 -0.0004333750.997609 0.0690805 uwb: 0.50256738 1231.47 651.618 +imu_odom_: 1691062848.329328498 0.620098 -0.181959 10.3334 -0.0671117 0.00426106 0.0415453 0.18 0.02 pose: 0.41935396 3.52313 -4.02212 0 -0.00157158 -0.00116102 0.997614 0.0690096 uwb: 0.0 1231.47 651.618 +imu_odom_: 1691062848.347257938 0.258574 -0.220267 9.6199 -0.0660464 -0.0383495 0.0532632 0.18 0.02 pose: 0.0 3.52313 -4.02212 0 -0.00157158 -0.00116102 0.997614 0.0690096 uwb: 0.49623858 1229.25 651.672 +imu_odom_: 1691062848.371257478 0.229843 -0.277727 9.35415 -0.0713727 0 0.0372843 0.18 0 pose: 0.48915442 3.50912 -4.02402 0 -0.000514271-0.00124922 0.997627 0.0688326 uwb: 0.0 1229.25 651.672 +imu_odom_: 1691062848.394266576 0.586579 -0.186748 9.76834 -0.103331 -0.0351537 0.0596548 0.18 0 pose: 0.0 3.50912 -4.02402 0 -0.000514271-0.00124922 0.997627 0.0688326 uwb: 0.50158452 1231.47 654.222 +imu_odom_: 1691062848.420278205 0.545878 -0.385466 10.0413 -0.0671117 -0.0553937 0.036219 0.25 -0.02 pose: 0.41941229 3.50116 -4.01797 0 -0.00130222 -0.00112444 0.997636 0.068703 uwb: 0.0 1231.47 654.222 +imu_odom_: 1691062848.434260754 0.919373 -0.371101 10.896 -0.0500674 -0.0490022 0.0468716 0.25 -0.02 pose: 0.0 3.50116 -4.01797 0 -0.00130222 -0.00112444 0.997636 0.068703 uwb: 0.0 1231.47 654.222 +imu_odom_: 1691062848.458370828 0.593762 -0.0909797 9.95748 -0.036219 0.00852212 0.0500674 0.17 -0.02 pose: 0.47027595 3.50116 -4.01797 0 0.000418863 -0.00236507 0.997648 0.0685039 uwb: 0.50029250 1233.69 656.77 +imu_odom_: 1691062848.483229859 0.830788 -0.167594 10.7141 -0.0607201 -0.056459 0.04048 0.17 -0.02 pose: 0.0 3.50116 -4.01797 0 0.000418863 -0.00236507 0.997648 0.0685039 uwb: 0.0 1233.69 656.77 +imu_odom_: 1691062848.506251206 0.545878 -0.181959 9.75877 -0.0458064 -0.015979 0.052198 0.18 0.02 pose: 0.38998486 3.48714 -4.01989 0 0.00412085 -0.0034585 0.99764 0.0684543 uwb: 0.50045584 1233.51 657.673 +imu_odom_: 1691062848.522567533 0.4956 -0.395043 9.88805 -0.0511327 -0.00213053 0.0575243 0.18 0.02 pose: 0.0 3.48714 -4.01989 0 0.00412085 -0.0034585 0.99764 0.0684543 uwb: 0.0 1233.51 657.673 +imu_odom_: 1691062848.548324552 0.311246 -0.0837971 10.2065 -0.04048 0.00106526 0.0479369 0.25 0 pose: 0.48933816 3.47918 -4.01384 0 0.00795002 -0.0008184880.997631 0.0683285 uwb: 0.49935631 1232.51 657.868 +imu_odom_: 1691062848.573223830 0.536301 0.0335188 10.4651 -0.0745685 -0.015979 0.0500674 0.25 0 pose: 0.0 3.47918 -4.01384 0 0.00795002 -0.0008184880.997631 0.0683285 uwb: 0.0 1232.51 657.868 +imu_odom_: 1691062848.590273364 0.675165 -0.299275 9.7875 -0.0458064 -0.00532632 0.0351537 0.21 -0.02 pose: 0.40062715 3.47314 -4.02181 0 0.00651516 -0.0001977280.99766 0.0680521 uwb: 0.0 1232.51 657.868 +imu_odom_: 1691062848.615294260 0.311246 -0.234632 9.74201 -0.0436758 -0.0127832 0.0340885 0.21 -0.02 pose: 0.0 3.47314 -4.02181 0 0.00651516 -0.0001977280.99766 0.0680521 uwb: 0.49991628 1231.19 657.884 +imu_odom_: 1691062848.640352195 0.397437 -0.0526724 10.1323 -0.056459 -0.0330232 0.0426106 0.21 -0.02 pose: 0.50935989 3.46517 -4.01577 0 0.00618545 0.00258194 0.997671 0.0678773 uwb: 0.0 1231.19 657.884 +imu_odom_: 1691062848.664222534 0.634463 -0.304064 10.343 -0.0756338 -0.0426106 0.0543285 0.21 -0.02 pose: 0.0 3.46517 -4.01577 0 0.00618545 0.00258194 0.997671 0.0678773 uwb: 0.49813430 1231.75 658.977 +imu_odom_: 1691062848.690229497 0.73502 -0.220267 9.991 -0.0426106 -0.00319579 0.0223706 0.18 -0.02 pose: 0.42144508 3.4572 -4.00973 0 0.00417326 0.00221671 0.997677 0.0679527 uwb: 0.0 1231.75 658.977 +imu_odom_: 1691062848.703218104 0.440533 -0.198719 10.1849 -0.0383495 -0.0149137 0.0319579 0.18 -0.02 pose: 0.0 3.4572 -4.00973 0 0.00417326 0.00221671 0.997677 0.0679527 uwb: 0.49998336 1231.48 660.016 +imu_odom_: 1691062848.726216995 0.462081 -0.148441 10.1011 -0.0372843 -0.0117179 0.036219 0.18 0 pose: 0.48874903 3.44319 -4.01166 0 0.00626657 0.00137592 0.997677 0.0678161 uwb: 0.0 1231.48 660.016 +imu_odom_: 1691062848.752355491 0.438139 -0.181959 9.8258 -0.0426106 -0.0245011 0.0575243 0.18 0 pose: 0.0 3.44319 -4.01166 0 0.00626657 0.00137592 0.997677 0.0678161 uwb: 0.50127537 1230.6 660.669 +imu_odom_: 1691062848.765222772 0.301669 -0.251391 9.51456 -0.0490022 0.00532632 0.0490022 0.18 0 pose: 0.80096848 3.43067 -4.01162 0 0.00264107 0.0018303 0.997692 0.0678306 uwb: 0.0 1230.6 660.669 +imu_odom_: 1691062848.789426175 0.25618 -0.0957681 10.1562 -0.0617853 -0.036219 0.0543285 0.18 0 pose: 0.0 3.43067 -4.01162 0 0.00264107 0.0018303 0.997692 0.0678306 uwb: 0.0 1230.6 660.669 +imu_odom_: 1691062848.806229848 0.572214 -0.624887 9.64384 -0.0649811 0.00852212 0.0532632 0.24 0 pose: 0.5923400 3.42918 -4.01359 0 0.00206696 0.00162187 0.997695 0.0678032 uwb: 0.49988420 1229.96 661.622 +imu_odom_: 1691062848.831225079 0.416591 -0.169988 9.97185 -0.0511327 0.0138484 0.0628506 0.24 0 pose: 0.0 3.42918 -4.01359 0 0.00206696 0.00162187 0.997695 0.0678032 uwb: 0.0 1229.96 661.622 +imu_odom_: 1691062848.856372842 0.64404 -0.189142 9.79228 -0.0745685 0.0223706 0.0426106 0.22 0 pose: 0.38976321 3.4212 -4.00756 0 -0.0001144380.00174659 0.997715 0.0675443 uwb: 0.50255279 1230.99 663.269 +imu_odom_: 1691062848.878282130 0.890643 -0.280122 9.58399 -0.0745685 -0.0234358 0.0458064 0.22 0 pose: 0.0 3.4212 -4.00756 0 -0.0001144380.00174659 0.997715 0.0675443 uwb: 0.0 1230.99 663.269 +imu_odom_: 1691062848.894362805 0.521936 -0.533907 9.55526 -0.0607201 0.0287621 0.04048 0.18 0.02 pose: 0.81026918 3.4072 -4.0095 0 0.0054415 0.00140681 0.997732 0.0670693 uwb: 0.49797973 1229.77 663.798 +imu_odom_: 1691062848.919224168 0.222661 -0.366313 9.51216 -0.056459 0.0553937 0.0511327 0.18 0.02 pose: 0.7965821 3.4072 -4.0095 0 0.00529626 0.000597399 0.997735 0.0670614 uwb: 0.0 1229.77 663.798 +imu_odom_: 1691062848.942224225 0.294487 -0.198719 9.35415 -0.0713727 -0.0298274 0.0543285 0.18 0.02 pose: 0.32976217 3.39922 -4.00348 0 0.00215433 -0.00125151 0.997756 0.0669047 uwb: 0.50098372 1231.43 665.769 +imu_odom_: 1691062848.967232580 0.366313 -0.272939 10.0317 -0.0628506 -0.0117179 0.0394148 0.18 0.02 pose: 0.0 3.39922 -4.00348 0 0.00215433 -0.00125151 0.997756 0.0669047 uwb: 0.0 1231.43 665.769 +imu_odom_: 1691062848.983215552 0.658405 -0.553061 9.75398 -0.0639159 -0.0255663 0.0415453 0.22 -0.02 pose: 0.48008412 3.38933 -4.00487 0 -0.00153861 -0.002532 0.997766 0.0667344 uwb: 0.0 1231.43 665.769 +imu_odom_: 1691062849.8342025 0.402226 -0.332794 9.90481 -0.0426106 0.02024 0.0394148 0.22 -0.02 pose: 0.0 3.38933 -4.00487 0 -0.00153861 -0.002532 0.997766 0.0667344 uwb: 0.49712228 1231.25 666.648 +imu_odom_: 1691062849.33264927 0.68953 -0.237026 9.77313 -0.0543285 -0.0149137 0.04048 0.21 0 pose: 0.41109445 3.38521 -4.00545 0 -0.000761658-0.0061584 0.997752 0.0667253 uwb: 0.0 1231.25 666.648 +imu_odom_: 1691062849.49210860 0.337582 -0.42138 9.27514 -0.0308927 0.0479369 0.0255663 0.21 0 pose: 0.6880010 3.38521 -4.00545 0 -5.83783e-05-0.00598457 0.997753 0.0667261 uwb: 0.49986962 1232.97 668.508 +imu_odom_: 1691062849.73270188 0.519542 -0.483629 9.17698 0.0255663 0.0436758 0.0234358 0.18 0 pose: 0.33988825 3.37723 -3.99943 0 0.000197213 -0.00637356 0.997744 0.0668325 uwb: 0.0 1232.97 668.508 +imu_odom_: 1691062849.98346498 0.0694318 0.122104 9.45949 -0.0266316 0.0671117 0.0458064 0.18 0 pose: 0.0 3.37723 -3.99943 0 0.000197213 -0.00637356 0.997744 0.0668325 uwb: 0.50059292 1232.87 669.877 +imu_odom_: 1691062849.115363659 0.280122 0.100556 10.1083 -0.0745685 -0.0106526 0.0585895 0.18 -0.02 pose: 0.7004544 3.37723 -3.99943 0 0.000404498 -0.00668312 0.997738 0.0668918 uwb: 0.0 1232.87 669.877 +imu_odom_: 1691062849.140229981 0.380678 -0.409408 9.62708 -0.0596548 0.00639159 0.0191748 0.18 -0.02 pose: 0.0 3.37723 -3.99943 0 0.000404498 -0.00668312 0.997738 0.0668918 uwb: 0.0 1232.87 669.877 +imu_odom_: 1691062849.166204571 0.476446 -0.105345 10.173 -0.0330232 -0.0447411 0.0340885 0.19 0 pose: 0.49293421 3.36322 -4.00139 0 -0.00144689 -0.00428614 0.99775 0.0668875 uwb: 0.50061333 1232.29 670.703 +imu_odom_: 1691062849.191222259 0.105345 -0.155623 10.2208 -0.015979 -0.00426106 0.0394148 0.17 0 pose: 0.60695746 3.35111 -4.00084 0 -7.72635e-05-0.00338756 0.997739 0.0671205 uwb: 0.0 1232.29 670.703 +imu_odom_: 1691062849.214357059 0.897826 -0.198719 9.69652 -0.0553937 -0.0213053 0.0703074 0.17 0 pose: 0.0 3.35111 -4.00084 0 -7.72635e-05-0.00338756 0.997739 0.0671205 uwb: 0.0 1232.29 670.703 +imu_odom_: 1691062849.231470464 0.047884 -0.112527 10.2352 -0.0287621 0.015979 0.0479369 0.17 0 pose: 0.0 3.35111 -4.00084 0 -7.72635e-05-0.00338756 0.997739 0.0671205 uwb: 0.0 1232.29 670.703 +imu_odom_: 1691062849.257347060 0.61531 -0.201113 9.84735 -0.0426106 -0.0266316 0.0340885 0.25 -0.02 pose: 0.8180183 3.34922 -4.00335 0 -0.000797272-0.00285759 0.997741 0.0671187 uwb: 0.100064045 1231.54 671.76 +imu_odom_: 1691062849.284337757 0.847547 -0.0670376 10.6087 -0.0468716 -0.0266316 0.0532632 0.25 -0.02 pose: 0.47973415 3.34124 -3.99732 0 -0.000569769-0.00126547 0.99777 0.0667296 uwb: 0.0 1231.54 671.76 +imu_odom_: 1691062849.310309722 0.565032 0.0837971 9.75398 -0.0415453 -0.00213053 0.0447411 0.25 -0.02 pose: 0.0 3.34124 -3.99732 0 -0.000569769-0.00126547 0.99777 0.0667296 uwb: 0.49944674 1231.45 672.5 +imu_odom_: 1691062849.327354881 0.155623 -0.344765 10.0748 -0.0500674 -0.00639159 0.0692422 0.23 -0.02 pose: 0.43009834 3.33325 -3.9913 0 0.00226006 -0.0002057610.99777 0.0667088 uwb: 0.0 1231.45 672.5 +imu_odom_: 1691062849.353473254 0.56982 -0.191536 9.87129 -0.0532632 0.00532632 0.0383495 0.23 -0.02 pose: 0.0 3.33325 -3.9913 0 0.00226006 -0.0002057610.99777 0.0667088 uwb: 0.50187909 1231.59 673.519 +imu_odom_: 1691062849.380340000 0.612916 -0.205901 10.1993 -0.0671117 -0.0276969 0.0681769 0.23 0 pose: 0.52014801 3.32723 -3.99929 0 0.00451752 0.00274471 0.997778 0.0664181 uwb: 0.0 1231.59 673.519 +imu_odom_: 1691062849.406315757 0.454898 -0.172383 10.2999 -0.056459 0.0276969 0.04048 0.19 0 pose: 0.44148724 3.31924 -3.99327 0 0.00681915 0.00116151 0.997785 0.0661596 uwb: 0.0 1231.59 673.519 +imu_odom_: 1691062849.423438495 0.21069 -0.126893 9.88566 -0.076699 -0.04048 0.0532632 0.25 0 pose: 0.0 3.31924 -3.99327 0 0.00681915 0.00116151 0.997785 0.0661596 uwb: 0.0 1231.59 673.519 +imu_odom_: 1691062849.448252903 0.167594 -0.344765 9.51935 -0.0671117 0.0298274 0.04048 0.25 0 pose: 0.0 3.31924 -3.99327 0 0.00681915 0.00116151 0.997785 0.0661596 uwb: 0.99798352 1232.54 675.184 +imu_odom_: 1691062849.474268908 0.21069 -0.447716 9.85693 -0.0820254 -0.015979 0.0671117 0.21 0 pose: 0.52309659 3.30524 -3.99526 0 0.00525194 0.00110029 0.997816 0.0658319 uwb: 0.0 1232.54 675.184 +imu_odom_: 1691062849.497196928 0.497994 -0.414197 9.99819 -0.0617853 0.00426106 0.036219 0.21 0 pose: 0.42393870 3.29725 -3.98925 0 0.00122274 -0.0004936210.997842 0.0656475 uwb: 0.49865637 1231.88 675.517 +imu_odom_: 1691062849.513191274 0.462081 -0.172383 10.4866 -0.0532632 -0.015979 0.0479369 0.18 0 pose: 0.40961871 3.28754 -3.99064 0 0.000895179 -0.00409076 0.997848 0.0654384 uwb: 0.0 1231.88 675.517 +imu_odom_: 1691062849.536253745 0.713472 -0.0933739 10.2687 -0.0340885 -0.0266316 0.036219 0.18 0 pose: 0.0 3.28754 -3.99064 0 0.000895179 -0.00409076 0.997848 0.0654384 uwb: 0.0 1231.88 675.517 +imu_odom_: 1691062849.562311163 0.821211 -0.047884 9.62469 -0.0490022 -0.0149137 0.0426106 0.18 0.02 pose: 0.39056817 3.28325 -3.99125 0 0.0038277 -0.00125658 0.99785 0.0654194 uwb: 0.50104205 1231.56 675.957 +imu_odom_: 1691062849.587253314 0.732626 -0.148441 10.1634 -0.0490022 0.00213053 0.0479369 0.18 0.02 pose: 0.0 3.28325 -3.99125 0 0.0038277 -0.00125658 0.99785 0.0654194 uwb: 0.0 1231.56 675.957 +imu_odom_: 1691062849.610177543 0.399832 -0.0574608 10.2041 -0.0532632 0.0127832 0.0532632 0.18 0 pose: 0.33132250 3.27525 -3.98526 0 0.00701 8.29732e-05 0.997837 0.065357 uwb: 0.49872636 1233.58 678.509 +imu_odom_: 1691062849.626168681 0.071826 -0.311246 9.76834 -0.0468716 -0.00639159 0.0458064 0.18 0 pose: 0.0 3.27525 -3.98526 0 0.00701 8.29732e-05 0.997837 0.065357 uwb: 0.0 1233.58 678.509 +imu_odom_: 1691062849.651354943 0.342371 -0.275333 9.98861 -0.0575243 -0.0223706 0.0596548 0.25 0 pose: 0.24955859 3.27525 -3.98526 0 0.00810443 0.00101264 0.997836 0.06524 uwb: 0.50151162 1234.4 680.329 +imu_odom_: 1691062849.674353834 0.574608 -0.23942 10.2256 -0.0532632 -0.00213053 0.04048 0.25 0 pose: 0.0 3.27525 -3.98526 0 0.00810443 0.00101264 0.997836 0.06524 uwb: 0.0 1234.4 680.329 +imu_odom_: 1691062849.699303859 0.59855 -0.105345 10.3286 -0.0596548 -0.0149137 0.04048 0.18 0.02 pose: 0.38833996 3.26125 -3.98726 0 0.00468961 0.00141429 0.997872 0.0650226 uwb: 0.50062500 1234.49 681.363 +imu_odom_: 1691062849.725191829 0.452504 -0.122104 10.2424 -0.0511327 -0.036219 0.0500674 0.23 -0.02 pose: 0.49192802 3.25324 -3.98128 0 0.00591118 0.000180722 0.997879 0.0648242 uwb: 0.0 1234.49 681.363 +imu_odom_: 1691062849.741164010 0.296881 -0.198719 9.72764 -0.0681769 -0.00106526 0.0553937 0.23 -0.02 pose: 0.0 3.25324 -3.98128 0 0.00591118 0.000180722 0.997879 0.0648242 uwb: 0.49791557 1232.6 681.609 +imu_odom_: 1691062849.758228710 -0.0287304 -0.447716 10.1155 -0.0543285 -0.00745685 0.0351537 0.23 -0.02 pose: 0.0 3.25324 -3.98128 0 0.00591118 0.000180722 0.997879 0.0648242 uwb: 0.0 1232.6 681.609 +imu_odom_: 1691062849.783160654 0.301669 -0.320823 9.57441 -0.0458064 -0.0383495 0.0447411 0.18 0 pose: 0.75860058 3.23924 -3.9833 0 0.00228419 0.00179628 0.997906 0.0646195 uwb: 0.0 1232.6 681.609 +imu_odom_: 1691062849.810300383 0.342371 -0.177171 10.3142 -0.02024 -0.0127832 0.036219 0.23 0.02 pose: 0.8023276 3.23924 -3.9833 0 0.00182103 0.00129475 0.997909 0.064599 uwb: 0.50128704 1232.16 682.217 +imu_odom_: 1691062849.834298757 0.397437 -0.253785 10.0173 -0.0447411 -0.0234358 0.056459 0.19 0 pose: 0.44048397 3.23359 -3.97908 0 -0.00145606 0.00188797 0.997908 0.0646023 uwb: 0.0 1232.16 682.217 +imu_odom_: 1691062849.860193726 0.457293 -0.007182619.59835 -0.0372843 0.0319579 0.0447411 0.22 0 pose: 0.0 3.23359 -3.97908 0 -0.00145606 0.00188797 0.997908 0.0646023 uwb: 0.50059584 1234.83 685.511 +imu_odom_: 1691062849.886304225 0.282516 0.160412 10.0365 -0.0458064 0.0127832 0.0532632 0.22 0 pose: 0.31888949 3.22525 -3.98532 0 -0.0004504270.000502939 0.997925 0.0643826 uwb: 0.0 1234.83 685.511 +imu_odom_: 1691062849.912165363 0.565032 -0.234632 10.1155 -0.0820254 -0.0436758 0.0692422 0.24 0 pose: 0.0 3.22525 -3.98532 0 -0.0004504270.000502939 0.997925 0.0643826 uwb: 0.50038876 1236.31 687.533 +imu_odom_: 1691062849.926155787 0.430956 -0.349553 9.46188 -0.0735032 -0.0138484 0.0468716 0.24 0 pose: 0.52051257 3.21723 -3.97934 0 -0.0002556340.00445004 0.997938 0.0640381 uwb: 0.0 1236.31 687.533 +imu_odom_: 1691062849.943217862 0.725443 -0.0023942 10.3525 -0.0660464 0.0191748 0.0394148 0.24 0 pose: 0.0 3.21723 -3.97934 0 -0.0002556340.00445004 0.997938 0.0640381 uwb: 0.50037127 1235.37 688.209 +imu_odom_: 1691062849.969141413 0.622492 -0.464475 9.7037 -0.0862864 0.0213053 0.0447411 0.18 -0.02 pose: 0.38925283 3.20324 -3.98138 0 0.00206683 0.00190183 0.997964 0.0637159 uwb: 0.0 1235.37 688.209 +imu_odom_: 1691062849.994222098 0.40462 -0.169988 9.7851 -0.052198 0.0266316 0.0458064 0.21 0 pose: 0.0 3.20324 -3.98138 0 0.00206683 0.00190183 0.997964 0.0637159 uwb: 0.49583903 1235.72 689.445 +imu_odom_: 1691062850.17153034 0.897826 -0.155623 9.16022 -0.072438 -0.0138484 0.0532632 0.21 0 pose: 0.43133785 3.20324 -3.98138 0 0.00294044 6.88276e-05 0.99797 0.0636192 uwb: 0.0 1235.72 689.445 +imu_odom_: 1691062850.43309323 0.481235 -0.225055 9.90242 -0.056459 -0.0127832 0.0383495 0.18 -0.02 pose: 0.40853377 3.19522 -3.97541 0 0.00365191 0.00105444 0.99798 0.0634078 uwb: 0.50140662 1234.24 689.711 +imu_odom_: 1691062850.70365349 0.533907 -0.196325 9.92397 -0.0447411 -0.0436758 0.0351537 0.18 -0.02 pose: 0.8055358 3.19522 -3.97541 0 0.00381447 0.000251869 0.99798 0.0634098 uwb: 0.0 1234.24 689.711 +imu_odom_: 1691062850.86212705 0.984017 -0.126893 9.40203 -0.0351537 0.0223706 0.036219 0.2 0.02 pose: 0.0 3.19522 -3.97541 0 0.00381447 0.000251869 0.99798 0.0634098 uwb: 0.0 1234.24 689.711 +imu_odom_: 1691062850.112200711 0.452504 -0.126893 9.95509 -0.0447411 0.00426106 0.0372843 0.2 0.02 pose: 0.53104404 3.18122 -3.97747 0 0.00751141 0.000430923 0.997954 0.0634948 uwb: 0.49995130 1232.03 689.262 +imu_odom_: 1691062850.137147529 -0.0526724 -0.347159 9.52174 -0.0649811 0.0447411 0.0479369 0.19 0 pose: 0.33887915 3.17545 -3.97317 0 0.00594947 0.00220654 0.997958 0.06355 uwb: 0.0 1232.03 689.262 +imu_odom_: 1691062850.164273843 0.366313 -0.282516 9.63187 -0.0330232 -0.0596548 0.0223706 0.2 0 pose: 0.7003086 3.1732 -3.9715 0 0.00509709 0.00201275 0.997965 0.0635214 uwb: 0.50061918 1230.1 689.027 +imu_odom_: 1691062850.190143440 0.397437 -0.292093 9.73243 -0.0798948 -0.0394148 0.0436758 0.19 -0.02 pose: 0.45070046 3.16171 -3.97542 0 0.00173891 -0.0001270050.997969 0.0636788 uwb: 0.0 1230.1 689.027 +imu_odom_: 1691062850.207140769 0.536301 -0.222661 9.96946 -0.0660464 0.00426106 0.0330232 0.19 -0.02 pose: 0.0 3.16171 -3.97542 0 0.00173891 -0.0001270050.997969 0.0636788 uwb: 0.49928925 1229.91 689.852 +imu_odom_: 1691062850.231380046 0.667982 -0.23942 9.97903 -0.0798948 -0.0319579 0.0458064 0.25 0 pose: 0.33070422 3.15921 -3.97356 0 0.00150796 -0.00252036 0.997968 0.063648 uwb: 0.0 1229.91 689.852 +imu_odom_: 1691062850.258176504 0.921768 -0.217872 10.2017 -0.04048 0.00639159 0.0372843 0.21 0 pose: 0.34035781 3.15379 -3.96953 0 0.00513915 -0.00255496 0.997958 0.0636126 uwb: 0.50172745 1230.27 691.059 +imu_odom_: 1691062850.283146363 0.694318 -0.124498 10.4483 -0.052198 -0.0127832 0.0543285 0.21 0 pose: 0.7767207 3.15119 -3.96759 0 0.00587788 -0.00246584 0.997954 0.0636231 uwb: 0.0 1230.27 691.059 +imu_odom_: 1691062850.299136918 0.476446 -0.136469 9.5792 -0.0447411 0.0426106 0.0372843 0.21 0 pose: 0.0 3.15119 -3.96759 0 0.00587788 -0.00246584 0.997954 0.0636231 uwb: 0.50067750 1230.01 691.417 +imu_odom_: 1691062850.325186171 0.263362 -0.237026 9.58399 -0.0436758 -0.015979 0.0543285 0.23 0 pose: 0.51019695 3.13719 -3.96964 0 0.00898457 -0.0001011890.997942 0.0634925 uwb: 0.0 1230.01 691.417 +imu_odom_: 1691062850.351133346 0.244209 -0.179565 9.95988 -0.0383495 -0.00852212 0.0479369 0.22 0 pose: 0.35019223 3.13719 -3.96964 0 0.00564278 0.000456117 0.997977 0.0633158 uwb: 0.49765894 1231.63 693.724 +imu_odom_: 1691062850.377468415 0.483629 -0.23942 9.84735 -0.0372843 -0.0106526 0.0436758 0.22 0 pose: 0.0 3.13719 -3.96964 0 0.00564278 0.000456117 0.997977 0.0633158 uwb: 0.0 1231.63 693.724 +imu_odom_: 1691062850.394152222 0.368707 0.0191536 9.88326 -0.0532632 -0.00319579 0.0628506 0.23 0.02 pose: 0.52282244 3.1232 -3.9717 0 0.00412188 -0.00123151 0.997995 0.0631468 uwb: 0.49962465 1232.85 695.447 +imu_odom_: 1691062850.420130895 0.507571 0.0814029 9.92157 -0.0596548 -0.0319579 0.0479369 0.23 0.02 pose: 0.0 3.1232 -3.9717 0 0.00412188 -0.00123151 0.997995 0.0631468 uwb: 0.0 1232.85 695.447 +imu_odom_: 1691062850.447241169 0.799663 -0.246603 10.3908 -0.0788296 -0.0532632 0.0671117 0.25 -0.02 pose: 0.42662480 3.11517 -3.96574 0 0.00435757 0.0028222 0.998009 0.0628593 uwb: 0.50030711 1232.63 696.286 +imu_odom_: 1691062850.473335919 0.852336 -0.0191536 10.4842 -0.0617853 0.0127832 0.0436758 0.19 -0.02 pose: 0.0 3.11517 -3.96574 0 0.00435757 0.0028222 0.998009 0.0628593 uwb: 0.0 1232.63 696.286 +imu_odom_: 1691062850.499157685 0.938527 -0.0622492 10.0509 -0.0862864 -0.00639159 0.0553937 0.26 0.02 pose: 0.35112551 3.11517 -3.96574 0 0.00820005 0.0018089 0.998012 0.0624626 uwb: 0.50163995 1231.16 696.556 +imu_odom_: 1691062850.522133536 0.299275 -0.153229 10.0269 -0.0479369 0.0255663 0.0298274 0.26 0.02 pose: 0.26110499 3.10119 -3.96783 0 0.0104844 0.00252837 0.997995 0.0623649 uwb: 0.0 1231.16 696.556 +imu_odom_: 1691062850.538313663 0.469264 -0.342371 9.59117 -0.108657 -0.00319579 0.0639159 0.19 0 pose: 0.24824617 3.10119 -3.96783 0 0.0114301 0.00266122 0.997991 0.0622611 uwb: 0.0 1231.16 696.556 +imu_odom_: 1691062850.562133548 0.196325 -0.0885855 9.85693 -0.0713727 -0.02024 0.0458064 0.19 0 pose: 0.0 3.10119 -3.96783 0 0.0114301 0.00266122 0.997991 0.0622611 uwb: 0.49941174 1231.5 698.299 +imu_odom_: 1691062850.588120388 0.237026 -0.407014 9.64863 -0.0671117 -0.00213053 0.0468716 0.18 0 pose: 0.38957657 3.09315 -3.96188 0 0.00806639 0.00118727 0.998035 0.0621235 uwb: 0.0 1231.5 698.299 +imu_odom_: 1691062850.604184730 0.768539 -0.160412 10.1131 -0.0394148 -0.00319579 0.0394148 0.18 0 pose: 0.0 3.09315 -3.96188 0 0.00806639 0.00118727 0.998035 0.0621235 uwb: 0.50015837 1229.86 698.258 +imu_odom_: 1691062850.630175362 0.90022 -0.110133 9.7851 -0.0479369 -0.0149137 0.0447411 0.23 0 pose: 0.50026628 3.07916 -3.96397 0 0.00510813 6.44867e-05 0.998064 0.0619802 uwb: 0.0 1229.86 698.258 +imu_odom_: 1691062850.647228104 0.584185 -0.354342 9.51216 -0.056459 0.0106526 0.0532632 0.23 0 pose: 0.0 3.07916 -3.96397 0 0.00510813 6.44867e-05 0.998064 0.0619802 uwb: 0.49952841 1229.68 699.039 +imu_odom_: 1691062850.672105801 0.213084 -0.280122 9.68694 -0.0532632 -0.0191748 0.0532632 0.23 0 pose: 0.42031058 3.07916 -3.96397 0 0.0086915 8.22605e-05 0.998047 0.0618603 uwb: 0.0 1229.68 699.039 +imu_odom_: 1691062850.697180070 0.0742203 -0.263362 9.5792 -0.0500674 0.00106526 0.0426106 0.23 0 pose: 0.0 3.07916 -3.96397 0 0.0086915 8.22605e-05 0.998047 0.0618603 uwb: 0.50092833 1231.9 701.576 +imu_odom_: 1691062850.720283372 0.438139 -0.387861 9.92397 -0.0649811 0.00532632 0.0585895 0.23 0 pose: 0.34911896 3.07112 -3.95803 0 0.00637789 -0.00115716 0.998079 0.0616094 uwb: 0.0 1231.9 701.576 +imu_odom_: 1691062850.746109513 0.428562 -0.282516 10.1538 -0.0394148 0.0245011 0.0351537 0.18 0.02 pose: 0.7031960 3.07112 -3.95803 0 0.00565705 -0.00114754 0.998084 0.061598 uwb: 0.49688314 1233.15 703.72 +imu_odom_: 1691062850.762118442 0.37589 -0.172383 9.9934 -0.0383495 -0.0106526 0.0394148 0.18 0.02 pose: 0.0 3.07112 -3.95803 0 0.00565705 -0.00114754 0.998084 0.061598 uwb: 0.0 1233.15 703.72 +imu_odom_: 1691062850.788451178 0.275333 0.131681 9.69891 -0.0585895 0.0255663 0.0479369 0.18 0 pose: 0.49144388 3.05713 -3.96014 0 0.00205596 -0.00336657 0.998108 0.061356 uwb: 0.0 1233.15 703.72 +imu_odom_: 1691062850.815169183 0.181959 -0.433351 9.8689 -0.0703074 -0.0287621 0.0479369 0.18 0 pose: 0.0 3.05713 -3.96014 0 0.00205596 -0.00336657 0.998108 0.061356 uwb: 0.50013504 1234.38 705.869 +imu_odom_: 1691062850.839114477 0.323217 -0.385466 9.63666 -0.0415453 0.0479369 0.0223706 0.19 0 pose: 0.42947713 3.04908 -3.95421 0 -0.000646634-0.0006673660.998116 0.0613517 uwb: 0.0 1234.38 705.869 +imu_odom_: 1691062850.865105983 0.433351 -0.263362 9.92875 -0.0127832 -0.0149137 0.0372843 0.19 0 pose: 0.0 3.04908 -3.95421 0 -0.000646634-0.0006673660.998116 0.0613517 uwb: 0.50097499 1231.36 704.409 +imu_odom_: 1691062850.880162969 0.517148 -0.114922 10.0245 -0.02024 -0.00319579 0.0394148 0.2 0 pose: 0.51953556 3.0351 -3.95633 0 -0.00324757 -0.00189978 0.998116 0.061243 uwb: 0.0 1231.36 704.409 +imu_odom_: 1691062850.897364453 0.507571 -0.158017 9.66779 -0.0415453 0.00319579 0.0553937 0.2 0 pose: 0.0 3.0351 -3.95633 0 -0.00324757 -0.00189978 0.998116 0.061243 uwb: 0.50242740 1230.82 705.094 +imu_odom_: 1691062850.922106241 0.361524 -0.124498 10.5177 -0.0490022 0.0181095 0.0394148 0.19 0 pose: 0.48994772 3.0351 -3.95633 0 -0.000780412-0.00180127 0.99811 0.0614248 uwb: 0.0 1230.82 705.094 +imu_odom_: 1691062850.949130478 0.907402 -0.54109 9.44034 -0.076699 -0.00213053 0.0639159 0.19 0 pose: 0.0 3.0351 -3.95633 0 -0.000780412-0.00180127 0.99811 0.0614248 uwb: 0.49762102 1230.39 705.65 +imu_odom_: 1691062850.974363695 0.474052 -0.292093 10.1945 -0.0436758 0.0340885 0.0671117 0.19 0 pose: 0.76952288 3.01538 -3.95422 0 0.00163559 0.000130173 0.998139 0.0609642 uwb: 0.0 1230.39 705.65 +imu_odom_: 1691062851.1229567 0.548272 -0.0790087 9.76116 -0.072438 0.0127832 0.0543285 0.22 0 pose: 0.7994694 3.01307 -3.95251 0 0.00177814 -0.0005590170.998145 0.060853 uwb: 0.50114414 1230.59 706.976 +imu_odom_: 1691062851.17103754 -0.246603 -0.392649 9.69173 -0.056459 0.0330232 0.0458064 0.22 0 pose: 0.0 3.01307 -3.95251 0 0.00177814 -0.0005590170.998145 0.060853 uwb: 0.0 1230.59 706.976 +imu_odom_: 1691062851.33093727 0.56982 -0.0335188 10.4196 -0.0607201 -0.0553937 0.0500674 0.22 0 pose: 0.0 3.01307 -3.95251 0 0.00177814 -0.0005590170.998145 0.060853 uwb: 0.0 1230.59 706.976 +imu_odom_: 1691062851.59134230 0.90022 -0.134075 9.56723 -0.0532632 0.0127832 0.0447411 0.18 0 pose: 0.24192029 3.01307 -3.95251 0 0.00241381 -0.00152558 0.99816 0.0605641 uwb: 0.49862431 1230.71 707.878 +imu_odom_: 1691062851.84075216 0.0263362 -0.23942 9.88805 -0.0713727 0.0170442 0.0617853 0.18 0 pose: 0.0 3.01307 -3.95251 0 0.00241381 -0.00152558 0.99816 0.0605641 uwb: 0.0 1230.71 707.878 +imu_odom_: 1691062851.98244129 0.258574 0.0885855 10.0006 -0.0713727 -0.0308927 0.0458064 0.2 0 pose: 0.60780910 2.99909 -3.95465 0 0.00374548 0.000925326 0.998175 0.060268 uwb: 0.50021962 1231.61 709.859 +imu_odom_: 1691062851.123087704 0.409408 -0.335188 10.0676 -0.076699 -0.0213053 0.0458064 0.2 0 pose: 0.0 2.99909 -3.95465 0 0.00374548 0.000925326 0.998175 0.060268 uwb: 0.0 1231.61 709.859 +imu_odom_: 1691062851.150110774 0.59855 -0.304064 9.55765 -0.0490022 -0.00213053 0.0394148 0.25 0.02 pose: 0.48004915 2.99102 -3.94874 0 0.00230167 0.00124443 0.998199 0.0599324 uwb: 0.50119374 1230.84 710.834 +imu_odom_: 1691062851.175123506 0.754174 -0.301669 9.61272 -0.0585895 -0.0287621 0.0468716 0.25 0.02 pose: 0.40046386 2.97705 -3.95089 0 0.00218344 -0.00112343 0.998206 0.0598302 uwb: 0.0 1230.84 710.834 +imu_odom_: 1691062851.200099781 0.246603 -0.301669 10.5656 -0.0479369 -0.0330232 0.0500674 0.22 0.02 pose: 0.44974094 2.97705 -3.95089 0 0.00665561 -0.00268547 0.998188 0.0597413 uwb: 0.49977632 1230.86 711.843 +imu_odom_: 1691062851.214082913 0.703895 -0.0742203 9.81862 -0.0660464 -0.0500674 0.0575243 0.22 0.02 pose: 0.0 2.97705 -3.95089 0 0.00665561 -0.00268547 0.998188 0.0597413 uwb: 0.0 1230.86 711.843 +imu_odom_: 1691062851.239272384 0.950498 -0.0981623 9.5385 -0.0532632 0.00639159 0.0276969 0.17 0.02 pose: 0.38959407 2.96586 -3.94924 0 0.00593347 -0.00201298 0.99821 0.0594829 uwb: 0.0 1230.86 711.843 +imu_odom_: 1691062851.256081308 -0.100556 -0.160412 10.0963 -0.0681769 0.00319579 0.0479369 0.17 0.02 pose: 0.0 2.96586 -3.94924 0 0.00593347 -0.00201298 0.99821 0.0594829 uwb: 0.50001255 1231.95 713.568 +imu_odom_: 1691062851.281139536 0.316035 -0.308852 10.1035 -0.0543285 0.00426106 0.0308927 0.18 0 pose: 0.41998395 2.955 -3.94715 0 0.00650061 -0.00113673 0.998202 0.0595721 uwb: 0.0 1231.95 713.568 +imu_odom_: 1691062851.308124110 0.428562 -0.155623 10.2472 -0.0436758 0.0127832 0.0479369 0.18 0 pose: 0.0 2.955 -3.94715 0 0.00650061 -0.00113673 0.998202 0.0595721 uwb: 0.49809059 1233.4 715.849 +imu_odom_: 1691062851.333061012 0.560243 -0.0981623 10.4507 -0.0458064 0.0383495 0.0426106 0.18 0 pose: 0.32023692 2.955 -3.94715 0 0.00359897 -0.00117702 0.998212 0.0596469 uwb: 0.0 1233.4 715.849 +imu_odom_: 1691062851.360100998 0.136469 -0.366313 9.60554 -0.0468716 0.00852212 0.052198 0.21 -0.02 pose: 0.28038303 2.94693 -3.94125 0 0.00292348 0.00126232 0.99822 0.059557 uwb: 0.49936217 1232.27 716.225 +imu_odom_: 1691062851.386100671 0.177171 -0.220267 10.2089 -0.0543285 -0.00532632 0.0511327 0.21 -0.02 pose: 0.0 2.94693 -3.94125 0 0.00292348 0.00126232 0.99822 0.059557 uwb: 0.0 1232.27 716.225 +imu_odom_: 1691062851.402104934 0.474052 -0.181959 10.1275 -0.0319579 -0.0394148 0.0394148 0.23 0 pose: 0.23946752 2.94103 -3.94932 0 0.00321311 0.00214535 0.998222 0.0594883 uwb: 0.49999506 1231.33 716.861 +imu_odom_: 1691062851.428207560 1.06542 -0.141258 9.99579 -0.0532632 -0.0287621 0.0511327 0.23 0 pose: 0.0 2.94103 -3.94932 0 0.00321311 0.00214535 0.998222 0.0594883 uwb: 0.0 1231.33 716.861 +imu_odom_: 1691062851.455073431 0.387861 0.0383072 9.77074 -0.0500674 0.0149137 0.0468716 0.23 0 pose: 0.53011078 2.93296 -3.94342 0 -0.0004349460.001248 0.998244 0.0592159 uwb: 0.0 1231.33 716.861 +imu_odom_: 1691062851.471359136 0.138864 -0.3304 10.2208 -0.0553937 -0.0127832 0.0628506 0.23 0 pose: 0.0 2.93296 -3.94342 0 -0.0004349460.001248 0.998244 0.0592159 uwb: 0.0 1231.33 716.861 +imu_odom_: 1691062851.488343050 0.591368 -0.191536 9.70131 -0.0436758 -0.0213053 0.052198 0.25 0 pose: 0.42047975 2.91898 -3.94559 0 0.00329498 0.00211661 0.998248 0.059039 uwb: 0.0 1231.33 716.861 +imu_odom_: 1691062851.514196315 0.368707 -0.126893 9.9934 -0.056459 0.00958738 0.0532632 0.25 0 pose: 0.0 2.91898 -3.94559 0 0.00329498 0.00211661 0.998248 0.059039 uwb: 0.99969846 1231.09 717.664 +imu_odom_: 1691062851.541074728 0.462081 -0.277727 9.84735 -0.0628506 0.00213053 0.0394148 0.25 0 pose: 0.43984236 2.91898 -3.94559 0 0.00199027 0.00309089 0.998267 0.0587371 uwb: 0.50047920 1230.26 718.173 +imu_odom_: 1691062851.557216066 0.198719 -0.272939 9.51695 -0.0553937 -0.00426106 0.0500674 0.25 0 pose: 0.0 2.91898 -3.94559 0 0.00199027 0.00309089 0.998267 0.0587371 uwb: 0.0 1230.26 718.173 +imu_odom_: 1691062851.584254011 0.802058 -0.0957681 9.59596 -0.0660464 -0.0234358 0.0394148 0.23 0 pose: 0.41998978 2.9109 -3.9397 0 0.000556057 0.00309598 0.998282 0.0585082 uwb: 0.0 1230.26 718.173 +imu_odom_: 1691062851.609192955 0.457293 -0.0885855 10.0006 -0.0820254 -0.0245011 0.0532632 0.23 0 pose: 0.0 2.9109 -3.9397 0 0.000556057 0.00309598 0.998282 0.0585082 uwb: 0.49985214 1229.53 718.574 +imu_odom_: 1691062851.626186493 0.562637 -0.241814 9.88087 -0.0852212 0.00426106 0.0458064 0.23 0.02 pose: 0.43092663 2.89693 -3.9419 0 0.000344285 0.000778313 0.998292 0.0584236 uwb: 0.0 1229.53 718.574 +imu_odom_: 1691062851.651072648 0.490811 -0.428562 9.89763 -0.0628506 -0.0234358 0.0426106 0.23 0.02 pose: 0.0 2.89693 -3.9419 0 0.000344285 0.000778313 0.998292 0.0584236 uwb: 0.50163996 1229.88 720.141 +imu_odom_: 1691062851.678250002 0.653617 -0.122104 10.2615 -0.0340885 -0.0170442 0.0372843 0.23 0 pose: 0.51968431 2.88885 -3.93601 0 0.00348366 0.00258488 0.998293 0.0582353 uwb: 0.0 1229.88 720.141 +imu_odom_: 1691062851.703182238 0.790087 -0.155623 10.4627 -0.0500674 -0.0479369 0.0458064 0.18 0 pose: 0.41950856 2.88296 -3.9441 0 0.00497996 -0.0004423320.998295 0.0581628 uwb: 0.49953717 1230.01 721.47 +imu_odom_: 1691062851.730052192 0.52433 -0.167594 10.2448 -0.0415453 0.0319579 0.0458064 0.21 0 pose: 0.0 2.88296 -3.9441 0 0.00497996 -0.0004423320.998295 0.0581628 uwb: 0.0 1230.01 721.47 +imu_odom_: 1691062851.755086797 0.292093 -0.071826 10.0054 -0.0607201 0.0234358 0.0490022 0.18 0.02 pose: 0.51948307 2.87488 -3.93822 0 0.00911106 0.00122468 0.998269 0.0580913 uwb: 0.49990464 1228.29 721.578 +imu_odom_: 1691062851.772199328 0.299275 -0.282516 9.63906 -0.0383495 -0.00213053 0.0426106 0.18 0.02 pose: 0.0 2.87488 -3.93822 0 0.00911106 0.00122468 0.998269 0.0580913 uwb: 0.0 1228.29 721.578 +imu_odom_: 1691062851.798056385 0.486023 -0.114922 10.0341 -0.052198 -0.0213053 0.0479369 0.2 0 pose: 0.52121547 2.86091 -3.94043 0 0.00360048 0.00258096 0.998311 0.0579186 uwb: 0.0 1228.29 721.578 +imu_odom_: 1691062851.825123203 0.411803 -0.253785 9.38527 -0.0532632 0.0383495 0.0351537 0.2 0 pose: 0.9985202 2.86091 -3.94043 0 0.0027467 0.00213815 0.998316 0.0579036 uwb: 0.0 1228.29 721.578 +imu_odom_: 1691062851.851202205 0.155623 -0.316035 9.61751 -0.052198 0.0308927 0.0468716 0.19 0 pose: 0.8031151 2.86091 -3.94043 0 0.00325401 0.00281986 0.998315 0.057871 uwb: 0.99986762 1227.24 721.872 +imu_odom_: 1691062851.878122906 0.385466 -0.198719 10.2831 -0.0735032 -0.0585895 0.0575243 0.19 0 pose: 0.0 2.86091 -3.94043 0 0.00325401 0.00281986 0.998315 0.057871 uwb: 0.0 1227.24 721.872 +imu_odom_: 1691062851.894195124 0.790087 -0.265756 9.63666 -0.0628506 -0.0319579 0.0372843 0.2 0 pose: 0.52914542 2.85282 -3.93455 0 0.00149443 0.00180501 0.998324 0.0578238 uwb: 0.49990756 1226.63 722.62 +imu_odom_: 1691062851.920163299 0.521936 -0.184354 9.99579 -0.0330232 -0.00958738 0.0319579 0.2 0 pose: 0.0 2.85282 -3.93455 0 0.00149443 0.00180501 0.998324 0.0578238 uwb: 0.0 1226.63 722.62 +imu_odom_: 1691062851.943033281 0.416591 0.0670376 10.4986 -0.02024 -0.0117179 0.04048 0.24 0 pose: 0.52943998 2.83885 -3.93677 0 -0.000843567-0.00111753 0.998343 0.0575318 uwb: 0.49984923 1228.84 725.331 +imu_odom_: 1691062851.960029153 0.718261 -0.351948 9.28711 -0.0458064 0.00745685 0.0426106 0.24 0 pose: 0.0 2.83885 -3.93677 0 -0.000843567-0.00111753 0.998343 0.0575318 uwb: 0.0 1228.84 725.331 +imu_odom_: 1691062851.976158242 0.337582 -0.129287 10.1538 -0.0447411 -0.0149137 0.0543285 0.2 0 pose: 0.73940134 2.82602 -3.92746 0 0.00372639 0.0017173 0.998331 0.0576054 uwb: 0.0 1228.84 725.331 +imu_odom_: 1691062852.2092877 0.751779 -0.071826 10.252 -0.0500674 -0.0149137 0.0394148 0.2 0 pose: 0.0 2.82602 -3.92746 0 0.00372639 0.0017173 0.998331 0.0576054 uwb: 0.50004172 1229.12 726.455 +imu_odom_: 1691062852.28082343 0.572214 -0.42138 9.82341 -0.0511327 0.02024 0.0532632 0.2 0 pose: 0.7038959 2.82267 -3.92502 0 0.00311207 0.00201567 0.998335 0.0575557 uwb: 0.0 1229.12 726.455 +imu_odom_: 1691062852.45172125 0.356736 -0.158017 9.63666 -0.0500674 -0.00639159 0.0532632 0.23 0 pose: 0.0 2.82267 -3.92502 0 0.00311207 0.00201567 0.998335 0.0575557 uwb: 0.49872931 1230.26 728.488 +imu_odom_: 1691062852.61192721 0.746991 -0.244209 10.1203 -0.0756338 -0.0436758 0.0703074 0.2 0 pose: 0.78104013 2.8087 -3.92725 0 0.00362518 0.00118091 0.998356 0.0571828 uwb: 0.0 1230.26 728.488 +imu_odom_: 1691062852.78182468 0.584185 -0.148441 9.72285 -0.0713727 0.0170442 0.0394148 0.2 0 pose: 0.0 2.8087 -3.92725 0 0.00362518 0.00118091 0.998356 0.0571828 uwb: 0.0 1230.26 728.488 +imu_odom_: 1691062852.103029835 0.287304 -0.225055 9.65582 -0.0617853 0.015979 0.052198 0.18 0 pose: 0.33010343 2.80522 -3.93205 0 0.00677279 0.00128906 0.998354 0.0569395 uwb: 0.49998048 1229.68 729.17 +imu_odom_: 1691062852.129091046 0.126893 -0.28491 9.83059 -0.0447411 0.052198 0.0319579 0.18 0 pose: 0.6872428 2.80283 -3.93535 0 0.00601955 0.00119169 0.998361 0.0568969 uwb: 0.0 1229.68 729.17 +imu_odom_: 1691062852.154080154 0.325611 -0.246603 9.89045 -0.0735032 -0.00639159 0.0671117 0.18 0.02 pose: 0.44036150 2.79473 -3.92949 0 0.000767338 0.00059926 0.99838 0.0568837 uwb: 0.50066586 1228.7 729.851 +imu_odom_: 1691062852.180015373 0.447716 -0.153229 10.0078 -0.0639159 -0.0138484 0.0266316 0.21 -0.02 pose: 0.7008336 2.79473 -3.92949 0 0.00012413 0.000265732 0.998386 0.0567877 uwb: 0.0 1228.7 729.851 +imu_odom_: 1691062852.197119447 0.584185 -0.117316 9.78989 -0.0713727 0.0138484 0.0436758 0.18 -0.02 pose: 0.0 2.79473 -3.92949 0 0.00012413 0.000265732 0.998386 0.0567877 uwb: 0.49977925 1229.61 731.643 +imu_odom_: 1691062852.223176284 0.213084 -0.148441 9.61511 -0.0415453 0.0106526 0.0340885 0.18 -0.02 pose: 0.52138464 2.78077 -3.93174 0 0.00121102 0.00125995 0.99839 0.0566894 uwb: 0.0 1229.61 731.643 +imu_odom_: 1691062852.249060755 0.114922 -0.292093 9.53132 -0.0745685 -0.0138484 0.0553937 0.23 0.02 pose: 0.0 2.78077 -3.93174 0 0.00121102 0.00125995 0.99839 0.0566894 uwb: 0.49934177 1230.95 733.388 +imu_odom_: 1691062852.275117884 0.402226 -0.282516 9.59596 -0.0447411 -0.0127832 0.04048 0.23 0 pose: 0.60822909 2.77267 -3.92588 0 -0.00308946 0.00109178 0.998395 0.0565479 uwb: 0.0 1230.95 733.388 +imu_odom_: 1691062852.291023278 0.663194 -0.0526724 9.96467 -0.072438 -0.0383495 0.0553937 0.23 0 pose: 0.0 2.77267 -3.92588 0 -0.00308946 0.00109178 0.998395 0.0565479 uwb: 0.50233701 1230.94 734.343 +imu_odom_: 1691062852.317027326 0.629675 -0.0790087 9.8282 -0.0511327 0.0511327 0.0308927 0.23 0 pose: 0.7053251 2.77267 -3.92588 0 -0.00269016 0.000524383 0.998396 0.0565464 uwb: 0.0 1230.94 734.343 +imu_odom_: 1691062852.342014393 0.368707 -0.179565 9.55765 -0.0649811 0.0255663 0.0436758 0.23 0 pose: 0.0 2.77267 -3.92588 0 -0.00269016 0.000524383 0.998396 0.0565464 uwb: 0.49786019 1229.31 734.34 +imu_odom_: 1691062852.368290842 0.328006 -0.320823 9.45231 -0.0649811 -0.0298274 0.0372843 0.2 0 pose: 0.42931382 2.7587 -3.92813 0 0.000522211 3.86851e-05 0.998405 0.0564517 uwb: 0.0 1229.31 734.34 +imu_odom_: 1691062852.384031162 0.895431 -0.502782 10.0197 -0.0756338 -0.0266316 0.0468716 0.2 0 pose: 0.0 2.7587 -3.92813 0 0.000522211 3.86851e-05 0.998405 0.0564517 uwb: 0.0 1229.31 734.34 +imu_odom_: 1691062852.410151579 0.476446 -0.102951 10.5034 -0.0490022 0.0255663 0.0458064 0.23 0 pose: 0.50059295 2.7506 -3.92228 0 -0.00138115 0.000902285 0.998402 0.0564921 uwb: 0.50199870 1228.56 734.746 +imu_odom_: 1691062852.427152992 0.25618 -0.45011 9.55287 -0.0681769 -0.00958738 0.0553937 0.23 0 pose: 0.0 2.7506 -3.92228 0 -0.00138115 0.000902285 0.998402 0.0564921 uwb: 0.0 1228.56 734.746 +imu_odom_: 1691062852.453039797 0.110133 -0.148441 9.95988 -0.0298274 0.00745685 0.0447411 0.25 0 pose: 0.41956398 2.7506 -3.92228 0 -0.000138299-0.00127841 0.998405 0.0564415 uwb: 0.49773187 1228.41 735.391 +imu_odom_: 1691062852.478005281 0.383072 -0.196325 9.96706 -0.0394148 -0.0340885 0.0468716 0.25 0 pose: 0.0 2.7506 -3.92228 0 -0.000138299-0.00127841 0.998405 0.0564415 uwb: 0.0 1228.41 735.391 +imu_odom_: 1691062852.494127371 0.675165 0.0622492 9.88326 -0.0319579 -0.0127832 0.0426106 0.21 0 pose: 0.43233239 2.73664 -3.92453 0 -0.00110548 -0.0007075560.998417 0.0562304 uwb: 0.50071252 1228.59 736.577 +imu_odom_: 1691062852.520243996 0.476446 -0.234632 9.54089 -0.0628506 0.0340885 0.0490022 0.21 0 pose: 0.0 2.73664 -3.92453 0 -0.00110548 -0.0007075560.998417 0.0562304 uwb: 0.0 1228.59 736.577 +imu_odom_: 1691062852.546037765 0.265756 -0.361524 9.93833 -0.0585895 -0.0117179 0.0660464 0.23 0.02 pose: 0.50733880 2.72853 -3.91868 0 0.00032455 0.00181376 0.998425 0.0560753 uwb: 0.50002423 1229.59 738.203 +imu_odom_: 1691062852.572107143 0.634463 -0.215478 10.058 -0.0671117 -0.00958738 0.0426106 0.23 0.02 pose: 0.0 2.72853 -3.91868 0 0.00032455 0.00181376 0.998425 0.0560753 uwb: 0.0 1229.59 738.203 +imu_odom_: 1691062852.588152237 0.531513 -0.0909797 10.2352 -0.0479369 0.00532632 0.0543285 0.23 0 pose: 0.42078307 2.71457 -3.92095 0 0.0015945 -0.0001252680.998438 0.0558391 uwb: 0.0 1229.59 738.203 +imu_odom_: 1691062852.605049823 -0.141258 -0.301669 9.13148 -0.0798948 -0.0330232 0.0532632 0.23 0 pose: 0.0 2.71457 -3.92095 0 0.0015945 -0.0001252680.998438 0.0558391 uwb: 0.50053170 1230.04 739.534 +imu_odom_: 1691062852.622028487 0.241814 0.181959 10.0245 -0.0468716 -0.0298274 0.0479369 0.25 0 pose: 0.51938101 2.70645 -3.91511 0 0.00313351 -0.0006963610.998453 0.0555019 uwb: 0.0 1230.04 739.534 +imu_odom_: 1691062852.638070373 0.68953 -0.294487 9.09318 -0.0735032 0.0798948 0.0575243 0.25 0 pose: 0.0 2.70645 -3.91511 0 0.00313351 -0.0006963610.998453 0.0555019 uwb: 0.0 1230.04 739.534 +imu_odom_: 1691062852.655045246 0.320823 -0.428562 9.70849 -0.0671117 -0.0266316 0.0553937 0.25 0 pose: 0.0 2.70645 -3.91511 0 0.00313351 -0.0006963610.998453 0.0555019 uwb: 0.49913178 1229.7 740.37 +imu_odom_: 1691062852.671104923 -0.282516 -0.184354 9.85214 -0.0479369 0.0340885 0.0383495 0.18 0.02 pose: 0.76000638 2.69249 -3.91739 0 0.00165086 -0.0009691050.998486 0.0549708 uwb: 0.0 1229.7 740.37 +imu_odom_: 1691062852.688231454 0.677559 -0.198719 9.48822 -0.103331 -0.0191748 0.0692422 0.18 0.02 pose: 0.7953864 2.69249 -3.91739 0 0.000709982 -0.0008352540.998487 0.0549753 uwb: 0.0 1229.7 740.37 +imu_odom_: 1691062852.705242491 0.426168 -0.459687 10.1275 -0.0820254 0.00958738 0.0532632 0.18 0.02 pose: 0.0 2.69249 -3.91739 0 0.000709982 -0.0008352540.998487 0.0549753 uwb: 0.50128999 1229.77 741.211 +imu_odom_: 1691062852.720117488 0.723049 -0.265756 9.74679 -0.0553937 0.0585895 0.0351537 0.19 0.05 pose: 0.33007718 2.68437 -3.91156 0 0.00143391 -0.00190621 0.998501 0.0546728 uwb: 0.0 1229.77 741.211 +imu_odom_: 1691062852.735056648 0.25618 -0.0790087 9.99819 -0.0660464 0.00639159 0.0500674 0.19 0.02 pose: 0.0 2.68437 -3.91156 0 0.00143391 -0.00190621 0.998501 0.0546728 uwb: 0.0 1229.77 741.211 +imu_odom_: 1691062852.751048662 0.411803 -0.167594 10.1658 -0.04048 -0.0298274 0.0447411 0.19 0.02 pose: 0.0 2.68437 -3.91156 0 0.00143391 -0.00190621 0.998501 0.0546728 uwb: 0.49871473 1228.88 741.751 +imu_odom_: 1691062852.768110446 0.866701 -0.438139 9.45231 -0.0394148 0.0117179 0.0394148 0.19 0.02 pose: 0.31115205 2.67854 -3.91969 0 0.00178192 -0.00249794 0.998503 0.0546101 uwb: 0.0 1228.88 741.751 +imu_odom_: 1691062852.795118352 0.651223 -0.110133 9.78031 -0.0426106 0.0117179 0.0490022 0.18 0.02 pose: 0.0 2.67854 -3.91969 0 0.00178192 -0.00249794 0.998503 0.0546101 uwb: 0.50201619 1229.57 743.244 +imu_odom_: 1691062852.821042196 0.158017 -0.342371 9.62948 -0.0628506 -0.0191748 0.056459 0.19 0 pose: 0.67996319 2.67041 -3.91387 0 0.00470543 0.00049799 0.998508 0.0544068 uwb: 0.0 1229.57 743.244 +imu_odom_: 1691062852.837974197 0.292093 -0.148441 10.398 -0.0308927 -0.0394148 0.0543285 0.19 0 pose: 0.0 2.67041 -3.91387 0 0.00470543 0.00049799 0.998508 0.0544068 uwb: 0.0 1229.57 743.244 +imu_odom_: 1691062852.864140402 0.517148 -0.0143652 10.2065 -0.0575243 -0.0223706 0.0532632 0.18 0.02 pose: 0.7885326 2.67041 -3.91387 0 0.00402104 0.0001962 0.998514 0.0543398 uwb: 0.49803519 1229.52 744.205 +imu_odom_: 1691062852.891257968 0.407014 0.0335188 10.1299 -0.0394148 -0.0170442 0.0468716 0.18 0.02 pose: 0.0 2.67041 -3.91387 0 0.00402104 0.0001962 0.998514 0.0543398 uwb: 0.50014672 1229.41 745.219 +imu_odom_: 1691062852.908089058 0.526724 -0.349553 10.1011 -0.0426106 -0.00106526 0.0426106 0.18 -0.02 pose: 0.42981546 2.65646 -3.91618 0 0.00171233 0.00117317 0.998538 0.0540084 uwb: 0.0 1229.41 745.219 +imu_odom_: 1691062852.934018152 0.6608 0.0814029 9.90721 -0.0575243 -0.02024 0.0511327 0.18 -0.02 pose: 0.0 2.65646 -3.91618 0 0.00171233 0.00117317 0.998538 0.0540084 uwb: 0.0 1229.41 745.219 +imu_odom_: 1691062852.956990504 0.560243 -0.277727 10.3286 -0.0798948 -0.0287621 0.0585895 0.18 -0.02 pose: 0.53159237 2.64833 -3.91037 0 0.00259862 0.00490095 0.998537 0.0537802 uwb: 0.49911137 1228.87 745.814 +imu_odom_: 1691062852.983061340 0.533907 -0.143652 9.91678 -0.0458064 -0.0149137 0.0340885 0.18 -0.02 pose: 0.0 2.64833 -3.91037 0 0.00259862 0.00490095 0.998537 0.0537802 uwb: 0.0 1228.87 745.814 +imu_odom_: 1691062852.997113594 0.229843 -0.265756 9.94312 -0.0351537 -0.00639159 0.0351537 0.2 0 pose: 0.41992271 2.63438 -3.9127 0 0.00520347 0.00503764 0.998539 0.05354 uwb: 0.50261116 1228.39 746.8 +imu_odom_: 1691062853.22110285 0.490811 -0.158017 9.60314 -0.036219 -0.0266316 0.0383495 0.2 0 pose: 0.0 2.63438 -3.9127 0 0.00520347 0.00503764 0.998539 0.05354 uwb: 0.0 1228.39 746.8 +imu_odom_: 1691062853.48171789 0.507571 -0.169988 9.87848 -0.0394148 -0.0213053 0.0575243 0.23 0 pose: 0.48019498 2.63438 -3.9127 0 0.0079932 0.00318734 0.998533 0.0534564 uwb: 0.50058129 1227.57 746.822 +imu_odom_: 1691062853.62033304 0.260968 -0.28491 9.60314 -0.0426106 0.00106526 0.0479369 0.23 0 pose: 0.0 2.63438 -3.9127 0 0.0079932 0.00318734 0.998533 0.0534564 uwb: 0.0 1227.57 746.822 +imu_odom_: 1691062853.76987921 0.790087 -0.0694318 10.2448 -0.0426106 -0.00852212 0.0372843 0.17 0 pose: 0.72877074 2.61881 -3.90814 0 0.00494667 0.000451016 0.998572 0.0531863 uwb: 0.0 1227.57 746.822 +imu_odom_: 1691062853.94033082 0.409408 -0.131681 9.60314 -0.056459 0.0149137 0.0543285 0.17 0 pose: 0.6950298 2.61229 -3.90923 0 0.00561089 0.000748292 0.998568 0.0531949 uwb: 0.49601114 1227.49 747.796 +imu_odom_: 1691062853.110971791 0.646434 -0.198719 9.93115 -0.056459 -0.00852212 0.052198 0.17 0 pose: 0.0 2.61229 -3.90923 0 0.00561089 0.000748292 0.998568 0.0531949 uwb: 0.0 1227.49 747.796 +imu_odom_: 1691062853.125078583 0.938527 -0.241814 10.2256 -0.0532632 0.00426106 0.0543285 0.18 -0.02 pose: 0.32995469 2.61229 -3.90923 0 0.00551599 0.00173887 0.998576 0.0530338 uwb: 0.0 1227.49 747.796 +imu_odom_: 1691062853.141970045 0.122104 -0.134075 9.64863 -0.0809601 0.00213053 0.0660464 0.18 -0.02 pose: 0.0 2.61229 -3.90923 0 0.00551599 0.00173887 0.998576 0.0530338 uwb: 0.50160790 1228.61 749.641 +imu_odom_: 1691062853.163973246 0.861913 -0.0167594 10.2951 -0.0596548 -0.00639159 0.0447411 0.19 0.02 pose: 0.39990974 2.60414 -3.90344 0 0.00599935 0.00131908 0.998594 0.052649 uwb: 0.0 1228.61 749.641 +imu_odom_: 1691062853.190103579 0.505177 -0.105345 9.98382 -0.0756338 -0.0181095 0.0479369 0.19 0.02 pose: 0.0 2.60414 -3.90344 0 0.00599935 0.00131908 0.998594 0.052649 uwb: 0.49798269 1228.73 750.388 +imu_odom_: 1691062853.206123009 0.0694318 -0.25618 9.53371 -0.0479369 0.0351537 0.0330232 0.22 0 pose: 0.0 2.60414 -3.90344 0 0.00599935 0.00131908 0.998594 0.052649 uwb: 0.0 1228.73 750.388 +imu_odom_: 1691062853.223232332 0.356736 -0.112527 10.3358 -0.0585895 -0.0436758 0.0585895 0.18 0 pose: 0.48133534 2.59227 -3.90727 0 0.0065461 0.00386782 0.998592 0.0525078 uwb: 0.0 1228.73 750.388 +imu_odom_: 1691062853.240294992 0.136469 -0.325611 9.87129 -0.0681769 0.0319579 0.0500674 0.24 0 pose: 0.0 2.59227 -3.90727 0 0.0065461 0.00386782 0.998592 0.0525078 uwb: 0.0 1228.73 750.388 +imu_odom_: 1691062853.257045003 0.646434 -0.153229 9.99819 -0.0351537 0.0127832 0.0149137 0.24 0 pose: 0.40156922 2.5902 -3.9058 0 0.0025776 0.00358143 0.998618 0.0523744 uwb: 0.50101877 1228.31 751.281 +imu_odom_: 1691062853.272950106 0.914585 -0.035913 9.93115 -0.0500674 0.00213053 0.0308927 0.18 0 pose: 0.0 2.5902 -3.9058 0 0.0025776 0.00358143 0.998618 0.0523744 uwb: 0.0 1228.31 751.281 +imu_odom_: 1691062853.290176965 0.179565 -0.131681 9.86172 -0.0553937 0.0596548 0.0330232 0.18 0 pose: 0.0 2.5902 -3.9058 0 0.0025776 0.00358143 0.998618 0.0523744 uwb: 0.0 1228.31 751.281 +imu_odom_: 1691062853.305972991 0.47884 -0.208296 9.69891 -0.0553937 0.0127832 0.0426106 0.18 0 pose: 0.33785548 2.58204 -3.90001 0 0.00370717 0.00330443 0.998606 0.0525521 uwb: 0.49980259 1227.72 751.923 +imu_odom_: 1691062853.323098939 0.320823 -0.0670376 10.1418 -0.0649811 0.056459 0.0383495 0.23 0 pose: 0.41926942 2.57203 -3.90517 0 0.00282637 0.00225423 0.998608 0.0526195 uwb: 0.0 1227.72 751.923 +imu_odom_: 1691062853.340000899 0.251391 -0.19393 9.54329 -0.072438 0.0170442 0.036219 0.23 0 pose: 0.0 2.57203 -3.90517 0 0.00282637 0.00225423 0.998608 0.0526195 uwb: 0.0 1227.72 751.923 +imu_odom_: 1691062853.365002549 0.466869 -0.296881 9.83059 -0.0884169 0.02024 0.0553937 0.18 0 pose: 0.7150953 2.5681 -3.90237 0 0.00205187 0.00268305 0.998609 0.052626 uwb: 0.49929803 1226.8 752.488 +imu_odom_: 1691062853.389992241 -0.3304 -0.40462 9.71806 -0.0340885 0.0308927 0.00958738 0.18 -0.02 pose: 0.0 2.5681 -3.90237 0 0.00205187 0.00268305 0.998609 0.052626 uwb: 0.0 1226.8 752.488 +imu_odom_: 1691062853.407174768 0.612916 0.0981623 10.4531 -0.0681769 -0.0383495 0.0447411 0.25 0 pose: 0.76868297 2.55579 -3.90244 0 -0.00287695 7.18196e-07 0.998599 0.0528427 uwb: 0.50047338 1225.92 753.02 +imu_odom_: 1691062853.423090662 0.162806 -0.102951 9.42837 -0.0585895 0.0170442 0.0436758 0.25 0 pose: 0.0 2.55579 -3.90244 0 -0.00287695 7.18196e-07 0.998599 0.0528427 uwb: 0.0 1225.92 753.02 +imu_odom_: 1691062853.449980450 0.378284 -0.25618 9.58399 -0.0628506 -0.0585895 0.0394148 0.25 0 pose: 0.33098421 2.54981 -3.90164 0 -0.00300392 0.0018145 0.998601 0.0527623 uwb: 0.50046755 1225.36 753.628 +imu_odom_: 1691062853.465947966 1.00556 -0.452504 9.98861 -0.0798948 -0.0127832 0.0458064 0.25 0 pose: 0.6952048 2.546 -3.89894 0 -0.00255764 0.00113221 0.998603 0.0527647 uwb: 0.0 1225.36 753.628 +imu_odom_: 1691062853.492952956 0.363919 -0.177171 10.1251 -0.0543285 0.015979 0.0458064 0.25 0 pose: 0.35905256 2.546 -3.89894 0 0.000258751 -0.00163273 0.998608 0.0527234 uwb: 0.49998924 1224.16 753.648 +imu_odom_: 1691062853.518014685 0.713472 -0.227449 9.97185 -0.0617853 0.0106526 0.0447411 0.25 0 pose: 0.0 2.546 -3.89894 0 0.000258751 -0.00163273 0.998608 0.0527234 uwb: 0.0 1224.16 753.648 +imu_odom_: 1691062853.545095504 0.502782 -0.306458 9.76595 -0.0681769 0.00852212 0.0543285 0.21 0 pose: 0.8032901 2.546 -3.89894 0 -0.000229643-0.0009304320.99861 0.0526981 uwb: 0.50013215 1223.51 754.362 +imu_odom_: 1691062853.570017533 0.579397 -0.232238 9.41161 -0.0383495 0.036219 0.0255663 0.2 0 pose: 0.51061987 2.53206 -3.9013 0 0.0012886 -0.0002704910.998619 0.0525197 uwb: 0.0 1223.51 754.362 +imu_odom_: 1691062853.597061895 0.545878 -0.110133 9.79707 -0.0543285 -0.0372843 0.0490022 0.22 0 pose: 0.0 2.53206 -3.9013 0 0.0012886 -0.0002704910.998619 0.0525197 uwb: 0.49992216 1223.31 755.01 +imu_odom_: 1691062853.613958023 0.306458 0.0646434 9.8665 -0.04048 0.00106526 0.0340885 0.22 0 pose: 0.52024721 2.52391 -3.89551 0 0.00478155 -0.0009376160.998608 0.0525198 uwb: 0.0 1223.31 755.01 +imu_odom_: 1691062853.638923800 0.462081 -0.253785 9.67497 -0.0703074 -0.0181095 0.0585895 0.18 0.02 pose: 0.0 2.52391 -3.89551 0 0.00478155 -0.0009376160.998608 0.0525198 uwb: 0.0 1223.31 755.01 +imu_odom_: 1691062853.665961454 0.150835 -0.0502782 9.53371 -0.0426106 -0.00852212 0.0319579 0.18 -0.02 pose: 0.61856225 2.50996 -3.89787 0 0.00412287 -0.0001523750.998626 0.0522445 uwb: 0.49922512 1223.04 755.744 +imu_odom_: 1691062853.690995477 0.174777 -0.397437 9.4978 -0.0756338 -0.0138484 0.0511327 0.18 -0.02 pose: 0.0 2.50996 -3.89787 0 0.00412287 -0.0001523750.998626 0.0522445 uwb: 0.49930679 1222.14 755.44 +imu_odom_: 1691062853.707996598 0.782904 0.0383072 10.4052 -0.056459 -0.0191748 0.0468716 0.18 0.02 pose: 0.8022693 2.50996 -3.89787 0 0.00344295 0.00029072 0.998627 0.0522765 uwb: 0.0 1222.14 755.44 +imu_odom_: 1691062853.725125463 0.260968 -0.28491 9.5385 -0.0660464 -0.00532632 0.14168 0.18 0.02 pose: 0.0 2.50996 -3.89787 0 0.00344295 0.00029072 0.998627 0.0522765 uwb: 0.0 1222.14 755.44 +imu_odom_: 1691062853.742052214 0.588974 -0.687136 10.2544 -0.0788296 -0.0266316 0.206661 0.18 0.02 pose: 0.0 2.50996 -3.89787 0 0.00344295 0.00029072 0.998627 0.0522765 uwb: 0.50177705 1222.53 756.721 +imu_odom_: 1691062853.758116557 0.28491 -0.447716 9.30147 -0.0681769 0.04048 0.259925 0.18 0.23 pose: 0.51054987 2.50181 -3.89209 0 0.000554823 -2.44526e-050.998637 0.0521832 uwb: 0.0 1222.53 756.721 +imu_odom_: 1691062853.776122411 0.574608 -0.198719 9.90002 -0.0852212 -0.0276969 0.333428 0.18 0.23 pose: 0.0 2.50181 -3.89209 0 0.000554823 -2.44526e-050.998637 0.0521832 uwb: 0.0 1222.53 756.721 +imu_odom_: 1691062853.792929586 0.440533 -0.433351 10.2161 -0.0532632 0.0383495 0.352603 0.18 0.32 pose: 0.51007156 2.48787 -3.89446 0 5.77607e-05 -0.00266463 0.998791 0.0490952 uwb: 0.49812560 1222.01 757.294 +imu_odom_: 1691062853.816047763 0.383072 -0.244209 10.0868 -0.0585895 0.00639159 0.4048 0.19 0.35 pose: 0.0 2.48787 -3.89446 0 5.77607e-05 -0.00266463 0.998791 0.0490952 uwb: 0.0 1222.01 757.294 +imu_odom_: 1691062853.832929892 -0.11971 -0.596156 10.082 -0.052198 -0.0394148 0.451672 0.19 0.41 pose: 0.0 2.48787 -3.89446 0 5.77607e-05 -0.00266463 0.998791 0.0490952 uwb: 0.0 1222.01 757.294 +imu_odom_: 1691062853.847947214 0.409408 -0.380678 9.60554 -0.0447411 -0.0234358 0.405866 0.19 0.41 pose: 0.75058612 2.47395 -3.89681 0 -0.00103129 -0.00312883 0.999312 0.0369503 uwb: 0.50032756 1223.22 759.368 +imu_odom_: 1691062853.864168173 0.21069 -0.0430956 10.2759 -0.0170442 -0.0223706 0.360059 0.19 0.41 pose: 0.0 2.47395 -3.89681 0 -0.00103129 -0.00312883 0.999312 0.0369503 uwb: 0.0 1223.22 759.368 +imu_odom_: 1691062853.879047545 0.442927 0.0861913 9.4547 -0.0500674 -0.0319579 0.347276 0.18 0.32 pose: 0.0 2.47395 -3.89681 0 -0.00103129 -0.00312883 0.999312 0.0369503 uwb: 0.0 1223.22 759.368 +imu_odom_: 1691062853.896974362 0.821211 -0.409408 10.2137 -0.0617853 -0.0330232 0.316384 0.18 0.32 pose: 0.30994171 2.46579 -3.89103 0 -0.00135021 -0.00417008 0.999502 0.0312358 uwb: 0.49949344 1222.25 759.566 +imu_odom_: 1691062853.913975192 0.526724 -0.462081 10.2185 -0.04048 0.0117179 0.269512 0.17 0.23 pose: 0.41912943 2.46574 -3.89101 0 0.000713974 -0.00244178 0.999684 0.0250067 uwb: 0.0 1222.25 759.566 +imu_odom_: 1691062853.930967565 0.890643 0.232238 10.0006 -0.052198 -0.0436758 0.26099 0.17 0.23 pose: 0.0 2.46574 -3.89101 0 0.000713974 -0.00244178 0.999684 0.0250067 uwb: 0.0 1222.25 759.566 +imu_odom_: 1691062853.946911749 0.507571 -0.533907 10.1394 -0.0639159 0.0276969 0.258859 0.17 0.23 pose: 0.0 2.46574 -3.89101 0 0.000713974 -0.00244178 0.999684 0.0250067 uwb: 0.50103043 1222.08 760.175 +imu_odom_: 1691062853.963967992 0.107739 -0.270545 9.5385 -0.0394148 0.0149137 0.221575 0.23 0.26 pose: 0.6968381 2.46579 -3.89103 0 0.000975595 -0.00301021 0.999702 0.0242062 uwb: 0.0 1222.08 760.175 +imu_odom_: 1691062853.980962697 0.426168 0.0023942 10.0963 -0.0394148 -0.0287621 0.225836 0.18 0.2 pose: 0.0 2.46579 -3.89103 0 0.000975595 -0.00301021 0.999702 0.0242062 uwb: 0.0 1222.08 760.175 +imu_odom_: 1691062853.996975419 0.677559 -0.316035 9.93354 -0.0585895 -0.0106526 0.237554 0.18 0.2 pose: 0.68033651 2.45184 -3.89335 0 0.00106194 -0.00306587 0.999848 0.0171236 uwb: 0.50024589 1221.9 761.201 +imu_odom_: 1691062854.13912378 0.409408 -0.368707 10.1155 -0.0468716 -0.00852212 0.201335 0.18 0.17 pose: 0.0 2.45184 -3.89335 0 0.00106194 -0.00306587 0.999848 0.0171236 uwb: 0.0 1221.9 761.201 +imu_odom_: 1691062854.32080973 0.651223 -0.0143652 10.0269 -0.0340885 0.0127832 0.177899 0.18 0.17 pose: 0.0 2.45184 -3.89335 0 0.00106194 -0.00306587 0.999848 0.0171236 uwb: 0.0 1221.9 761.201 +imu_odom_: 1691062854.47970327 -0.0383072 -0.512359 9.73243 -0.052198 0.00426106 0.190682 0.18 0.17 pose: 0.32088732 2.44368 -3.88757 0 0.00248919 -0.00313437 0.999892 0.0141291 uwb: 0.49931846 1222.52 763.036 +imu_odom_: 1691062854.63907803 0.361524 -0.213084 10.1131 -0.0308927 -0.0415453 0.160855 0.18 0.14 pose: 0.43905201 2.43324 -3.89238 0 0.0015146 -0.00301547 0.999935 0.0108744 uwb: 0.0 1222.52 763.036 +imu_odom_: 1691062854.79905068 0.035913 0.0407014 9.83538 -0.0532632 -0.0500674 0.174703 0.18 0.14 pose: 0.6945049 2.42972 -3.88989 0 0.00111861 -0.00247754 0.999942 0.0104519 uwb: 0.0 1222.52 763.036 +imu_odom_: 1691062854.97087304 0.88346 -0.318429 9.79468 -0.0617853 -0.0575243 0.18003 0.18 0.14 pose: 0.0 2.42972 -3.88989 0 0.00111861 -0.00247754 0.999942 0.0104519 uwb: 0.50116460 1222.9 764.294 +imu_odom_: 1691062854.122988401 1.00796 -0.720655 9.43555 -0.0447411 -0.0117179 0.245011 0.15 0.11 pose: 0.32039151 2.42972 -3.88989 0 0.000588554 -0.0009412010.999965 0.00832721 uwb: 0.0 1222.9 764.294 +imu_odom_: 1691062854.139926235 1.92973 -0.361524 9.95748 -0.0447411 -0.0436758 0.178964 0.19 0.11 pose: 0.0 2.42972 -3.88989 0 0.000588554 -0.0009412010.999965 0.00832721 uwb: 0.0 1222.9 764.294 +imu_odom_: 1691062854.156929399 0.603339 0.114922 10.0054 -0.0447411 0.0798948 0.11931 0.19 0.11 pose: 0.43171411 2.41579 -3.89229 0 0.00476059 -0.00274089 0.999975 0.00445844 uwb: 0.49943803 1221.95 764.471 +imu_odom_: 1691062854.172058131 -0.342371 0.023942 10.5584 -0.0532632 0.0617853 0.0937433 0.19 0.11 pose: 0.0 2.41579 -3.89229 0 0.00476059 -0.00274089 0.999975 0.00445844 uwb: 0.0 1221.95 764.471 +imu_odom_: 1691062854.189237743 -0.562637 -0.0574608 9.55047 -0.0351537 -0.0351537 -0.0106526 0.15 0.05 pose: 0.0 2.41579 -3.89229 0 0.00476059 -0.00274089 0.999975 0.00445844 uwb: 0.0 1221.95 764.471 +imu_odom_: 1691062854.203177712 -0.933739 0.332794 9.89524 -0.0649811 0.0149137 -0.00852212 0.15 0.05 pose: 0.34006619 2.41579 -3.89229 0 0.00465096 -0.0007932880.999985 0.00291721 uwb: 0.49881099 1220.88 764.787 +imu_odom_: 1691062854.219943473 0.00957681 -0.354342 10.1155 -0.092678 -0.0649811 0.118244 0.15 0.05 pose: 0.39045155 2.40758 -3.88658 0 0.000771419 0.000353747 0.999994 0.00347059 uwb: 0.0 1220.88 764.787 +imu_odom_: 1691062854.234105096 0.438139 -1.14682 9.49062 -0.0639159 -0.0490022 0.120375 0.15 0.05 pose: 0.0 2.40758 -3.88658 0 0.000771419 0.000353747 0.999994 0.00347059 uwb: 0.0 1220.88 764.787 +imu_odom_: 1691062854.250049280 0.347159 -0.205901 9.87848 -0.0308927 -0.00852212 0.0862864 0.15 0.05 pose: 0.0 2.40758 -3.88658 0 0.000771419 0.000353747 0.999994 0.00347059 uwb: 0.50034798 1221.12 766.176 +imu_odom_: 1691062854.265102184 0.110133 0.114922 10.1347 -0.0276969 -0.0170442 0.109722 0.17 0.05 pose: 0.6896343 2.40758 -3.88658 0 0.000329984 -6.8501e-06 0.999995 0.00319957 uwb: 0.0 1221.12 766.176 +imu_odom_: 1691062854.282101847 0.169988 -0.0502782 9.663 -0.0500674 0.0106526 0.115049 0.17 0.05 pose: 0.0 2.40758 -3.88658 0 0.000329984 -6.8501e-06 0.999995 0.00319957 uwb: 0.0 1221.12 766.176 +imu_odom_: 1691062854.296175100 0.59855 -0.131681 9.87369 -0.0681769 -0.0511327 0.0990696 0.17 0.05 pose: 0.0 2.40758 -3.88658 0 0.000329984 -6.8501e-06 0.999995 0.00319957 uwb: 0.50117919 1220.61 766.706 +imu_odom_: 1691062854.313058979 0.371101 -0.363919 9.89284 -0.0713727 -0.00213053 0.0841559 0.16 0.05 pose: 0.46940106 2.40178 -3.89472 0 -0.00150216 -0.0001364920.999998 0.00161995 uwb: 0.0 1220.61 766.706 +imu_odom_: 1691062854.328107508 0.656011 -0.126893 10.3477 -0.0639159 -0.0426106 0.0894822 0.17 0.05 pose: 0.0 2.40178 -3.89472 0 -0.00150216 -0.0001364920.999998 0.00161995 uwb: 0.0 1220.61 766.706 +imu_odom_: 1691062854.345175418 0.746991 -0.158017 9.87129 -0.0788296 0.00532632 0.0948085 0.17 0.05 pose: 0.0 2.40178 -3.89472 0 -0.00150216 -0.0001364920.999998 0.00161995 uwb: 0.49930387 1222.01 768.49 +imu_odom_: 1691062854.362038881 0.220267 -0.4956 9.54089 -0.052198 0.0319579 0.0852212 0.17 0.05 pose: 0.63046447 2.38787 -3.89713 0 -0.0009006660.000228755 1 -0.000277824 uwb: 0.0 1222.01 768.49 +imu_odom_: 1691062854.379039420 0.670376 -0.215478 10.1107 -0.0479369 -0.056459 0.0798948 0.17 0.02 pose: 0.0 2.38787 -3.89713 0 -0.0009006660.000228755 1 -0.000277824 uwb: 0.0 1222.01 768.49 +imu_odom_: 1691062854.395897634 0.497994 -0.237026 9.67976 -0.0798948 -0.0340885 0.0948085 0.17 0.02 pose: 0.32998970 2.37968 -3.89139 0 0.0010263 -0.0001575020.999999 -0.00113198 uwb: 0.50077671 1222.49 769.606 +imu_odom_: 1691062854.412893214 0.739808 -0.129287 9.75158 -0.0447411 -0.0330232 0.102265 0.16 0.05 pose: 0.42838056 2.37538 -3.88832 0 0.00437973 -0.00121393 0.999987 -0.00214429 uwb: 0.0 1222.49 769.606 +imu_odom_: 1691062854.428998681 1.19231 -0.354342 9.8282 -0.0649811 -0.0308927 0.135289 0.16 0.05 pose: 0.0 2.37538 -3.88832 0 0.00437973 -0.00121393 0.999987 -0.00214429 uwb: 0.0 1222.49 769.606 +imu_odom_: 1691062854.444887452 1.16837 -0.124498 10.0293 -0.0660464 -0.0255663 0.152333 0.16 0.05 pose: 0.0 2.37538 -3.88832 0 0.00437973 -0.00121393 0.999987 -0.00214429 uwb: 0.49993967 1222.9 770.79 +imu_odom_: 1691062854.460897549 1.74298 -0.186748 10.2903 -0.0426106 -0.0617853 0.0937433 0.12 0 pose: 0.8007527 2.37154 -3.88558 0 0.00523023 -0.0008528060.999983 -0.00239328 uwb: 0.0 1222.9 770.79 +imu_odom_: 1691062854.476875856 1.75016 0.124498 9.80665 -0.0383495 -0.0319579 0.0383495 0.14 0 pose: 0.0 2.37154 -3.88558 0 0.00523023 -0.0008528060.999983 -0.00239328 uwb: 0.0 1222.9 770.79 +imu_odom_: 1691062854.493036445 1.73819 0.186748 10.0556 -0.0585895 0.00852212 0.0447411 0.14 0 pose: 0.64015890 2.36575 -3.89373 0 0.0125432 -0.00020484 0.99991 -0.0047624 uwb: 0.49954886 1223.85 772.213 +imu_odom_: 1691062854.509902533 1.66636 -0.368707 9.69412 -0.0511327 0.0170442 0.0660464 0.13 0 pose: 0.0 2.36575 -3.89373 0 0.0125432 -0.00020484 0.99991 -0.0047624 uwb: 0.0 1223.85 772.213 +imu_odom_: 1691062854.528034088 0.744597 -0.639252 9.84975 -0.0500674 0.0383495 0.0575243 0.13 0 pose: 0.0 2.36575 -3.89373 0 0.0125432 -0.00020484 0.99991 -0.0047624 uwb: 0.0 1223.85 772.213 +imu_odom_: 1691062854.545029377 0.588974 -0.153229 10.3358 -0.0479369 -0.036219 0.0181095 0.13 0 pose: 0.33023469 2.35757 -3.88798 0 0.0156255 0.000577922 0.999866 -0.00489522 uwb: 0.49975010 1223.07 772.606 +imu_odom_: 1691062854.561874467 0.792481 -0.0263362 9.74679 -0.0607201 -0.0276969 0.015979 0.1 0 pose: 0.44084857 2.35757 -3.88798 0 0.0149533 -0.0003560830.999876 -0.00501673 uwb: 0.0 1223.07 772.606 +imu_odom_: 1691062854.577930353 0.967257 -0.191536 10.1873 -0.0617853 -0.0191748 0.0511327 0.1 0 pose: 0.6898093 2.35757 -3.88798 0 0.0153473 0.000242447 0.99987 -0.00492576 uwb: 0.0 1223.07 772.606 +imu_odom_: 1691062854.595944373 0.773327 -0.548272 9.7444 -0.0617853 0 0.0671117 0.1 0 pose: 0.0 2.35757 -3.88798 0 0.0153473 0.000242447 0.99987 -0.00492576 uwb: 0.50057255 1223.4 774.251 +imu_odom_: 1691062854.620953315 0.754174 -0.155623 9.76595 -0.0511327 -0.00426106 0.0820254 0.07 0 pose: 0.44016903 2.35182 -3.89616 0 0.0177654 -0.0007813720.999829 -0.00516641 uwb: 0.0 1223.4 774.251 +imu_odom_: 1691062854.636956704 0.306458 -0.0957681 9.87848 -0.0649811 0.0330232 0.0649811 0.08 0 pose: 0.0 2.35182 -3.89616 0 0.0177654 -0.0007813720.999829 -0.00516641 uwb: 0.0 1223.4 774.251 +imu_odom_: 1691062854.662937421 -0.301669 -0.0143652 10.2448 -0.0383495 0.0181095 -0.0905475 0.08 0 pose: 0.30981631 2.35182 -3.89616 0 0.01732 0.00182984 0.999832 -0.00572614 uwb: 0.0 1223.4 774.251 +imu_odom_: 1691062854.688872349 -1.08936 -0.277727 9.9503 -0.0671117 0.00532632 0.0511327 0.12 0.08 pose: 0.0 2.35182 -3.89616 0 0.01732 0.00182984 0.999832 -0.00572614 uwb: 0.0 1223.4 774.251 +imu_odom_: 1691062854.714013116 0.54109 -0.507571 9.43315 -0.0532632 -0.0905475 0.0649811 0.1 0 pose: 0.42956757 2.34363 -3.89043 0 0.0125587 0.00250981 0.999909 -0.00418928 uwb: 0.100071346 1223.97 775.645 +imu_odom_: 1691062854.739953586 0.505177 -0.134075 9.8258 -0.0575243 -0.00639159 0.0777643 0.12 0.02 pose: 0.26067046 2.34363 -3.89043 0 0.0107572 0.00157624 0.999931 -0.004391 uwb: 0.0 1223.97 775.645 +imu_odom_: 1691062854.765997008 -0.0694318 -0.428562 10.0221 -0.0585895 0.0479369 0.0500674 0.12 0 pose: 0.26016298 2.34363 -3.89043 0 0.0105937 0.000272553 0.999932 -0.00478362 uwb: 0.0 1223.97 775.645 +imu_odom_: 1691062854.782926967 0.220267 -0.126893 9.90481 -0.0553937 0.0170442 0.0245011 0.12 0 pose: 0.0 2.34363 -3.89043 0 0.0105937 0.000272553 0.999932 -0.00478362 uwb: 0.0 1223.97 775.645 +imu_odom_: 1691062854.808892518 0.612916 -0.208296 9.95509 -0.0628506 -0.0181095 0.0798948 0.13 0.02 pose: 0.25992383 2.33545 -3.88468 0 0.00819614 0.00101514 0.999953 -0.00515899 uwb: 0.99780572 1223.67 776.718 +imu_odom_: 1691062854.834902401 0.407014 -0.253785 9.56244 -0.0511327 -0.0181095 0.0351537 0.13 0.02 pose: 0.0 2.33545 -3.88468 0 0.00819614 0.00101514 0.999953 -0.00515899 uwb: 0.0 1223.67 776.718 +imu_odom_: 1691062854.860026252 0.189142 -0.292093 10.0054 -0.0468716 0.0436758 0.0628506 0.14 0 pose: 0.41929860 2.3297 -3.89286 0 0.00495784 0.000716939 0.999974 -0.00526767 uwb: 0.50024590 1223.62 777.163 +imu_odom_: 1691062854.885904892 0.744597 -0.28491 10.0556 -0.0426106 -0.0245011 0.0458064 0.14 0 pose: 0.0 2.3297 -3.89286 0 0.00495784 0.000716939 0.999974 -0.00526767 uwb: 0.0 1223.62 777.163 +imu_odom_: 1691062854.910942998 0.428562 -0.0646434 9.68215 -0.0511327 -0.00426106 0.0713727 0.15 0.02 pose: 0.96016544 2.31749 -3.89275 0 0.00449648 -0.00108509 0.999971 -0.00597615 uwb: 0.49968011 1223.2 777.578 +imu_odom_: 1691062854.928919104 0.423774 -0.37589 10.1011 -0.0479369 0.0394148 0.0490022 0.15 0.02 pose: 0.0 2.31749 -3.89275 0 0.00449648 -0.00108509 0.999971 -0.00597615 uwb: 0.0 1223.2 777.578 +imu_odom_: 1691062854.945935975 0.0814029 -0.241814 9.40203 -0.0628506 0.0394148 0.0319579 0.15 0 pose: 0.8026776 2.31576 -3.8953 0 0.00422439 -0.0003129860.999972 -0.00610072 uwb: 0.50095461 1222.88 777.894 +imu_odom_: 1691062854.968954992 1.10612 -0.153229 10.0533 -0.0660464 -0.0383495 0.0830906 0.15 0 pose: 0.0 2.31576 -3.8953 0 0.00422439 -0.0003129860.999972 -0.00610072 uwb: 0.0 1222.88 777.894 +imu_odom_: 1691062854.994150297 0.332794 -0.28491 9.88805 -0.0713727 0.00319579 0.0468716 0.16 0 pose: 0.41944442 2.30762 -3.88949 0 0.00193575 -0.0004164830.999977 -0.00642961 uwb: 0.50007675 1223.93 779.18 +imu_odom_: 1691062855.19890112 0.186748 -0.0407014 9.76116 -0.0660464 0.00958738 0.0639159 0.16 0 pose: 0.0 2.30762 -3.88949 0 0.00193575 -0.0004164830.999977 -0.00642961 uwb: 0.0 1223.93 779.18 +imu_odom_: 1691062855.45947826 0.481235 -0.289698 10.082 -0.072438 -0.0191748 0.0447411 0.16 0.02 pose: 0.84014002 2.29367 -3.89184 0 -0.00111125 -0.0001057610.999973 -0.007301 uwb: 0.49857184 1223.23 779.482 +imu_odom_: 1691062855.71002265 0.292093 -0.0909797 9.57681 -0.076699 0.00852212 0.0553937 0.2 0 pose: 0.8191851 2.29367 -3.89184 0 -0.000384327-0.0006530780.999973 -0.00732162 uwb: 0.0 1223.23 779.482 +imu_odom_: 1691062855.86911451 0.253785 -0.409408 10.398 -0.0681769 0 0.0490022 0.2 0 pose: 0.0 2.29367 -3.89184 0 -0.000384327-0.0006530780.999973 -0.00732162 uwb: 0.0 1223.23 779.482 +imu_odom_: 1691062855.113847904 0.469264 -0.203507 10.0461 -0.0500674 -0.0234358 0.0426106 0.17 0.02 pose: 0.24950611 2.29367 -3.89184 0 0.00069572 -0.00138317 0.999971 -0.00742263 uwb: 0.49992802 1223.15 779.564 +imu_odom_: 1691062855.138072017 0.342371 -0.605733 9.87848 -0.0585895 -0.00745685 0.0394148 0.17 0.02 pose: 0.0 2.29367 -3.89184 0 0.00069572 -0.00138317 0.999971 -0.00742263 uwb: 0.0 1223.15 779.564 +imu_odom_: 1691062855.163992364 0.512359 -0.23942 9.62948 -0.0553937 0.00532632 0.0543285 0.19 0.02 pose: 0.41975358 2.27973 -3.89421 0 -0.000723641-0.00125374 0.99997 -0.00765088 uwb: 0.50193748 1222.94 780.156 +imu_odom_: 1691062855.179917883 0.440533 -0.435745 10.3142 -0.0681769 0.0266316 0.052198 0.19 0.02 pose: 0.0 2.27973 -3.89421 0 -0.000723641-0.00125374 0.99997 -0.00765088 uwb: 0.0 1222.94 780.156 +imu_odom_: 1691062855.197898947 -0.0981623 -0.270545 9.76355 -0.0532632 -0.00852212 0.0458064 0.19 0.02 pose: 0.0 2.27973 -3.89421 0 -0.000723641-0.00125374 0.99997 -0.00765088 uwb: 0.49996593 1222.81 780.665 +imu_odom_: 1691062855.214870030 0.131681 -0.28491 9.57681 -0.0532632 -0.0234358 0.0511327 0.2 0.02 pose: 0.50132793 2.27158 -3.88842 0 0.00135643 -0.00262574 0.999966 -0.00772896 uwb: 0.0 1222.81 780.665 +imu_odom_: 1691062855.229065192 0.792481 -0.138864 10.07 -0.0660464 -0.0500674 0.052198 0.2 0.02 pose: 0.0 2.27158 -3.88842 0 0.00135643 -0.00262574 0.999966 -0.00772896 uwb: 0.0 1222.81 780.665 +imu_odom_: 1691062855.254010555 0.684742 -0.11971 10.4746 -0.036219 -0.0330232 0.0308927 0.16 0.02 pose: 0.83924467 2.25763 -3.8908 0 0.000970757 -0.00325558 0.99996 -0.00822107 uwb: 0.49970927 1222.92 781.318 +imu_odom_: 1691062855.279861197 0.332794 -0.272939 9.663 -0.052198 0.00213053 0.0490022 0.16 0.02 pose: 0.0 2.25763 -3.8908 0 0.000970757 -0.00325558 0.99996 -0.00822107 uwb: 0.0 1222.92 781.318 +imu_odom_: 1691062855.305910160 0.229843 -0.0407014 9.80186 -0.0532632 -0.00213053 0.0468716 0.18 -0.02 pose: 0.6978880 2.25763 -3.8908 0 0.0016615 -0.0028148 0.999961 -0.00818886 uwb: 0.49747233 1223.23 782.541 +imu_odom_: 1691062855.322847703 0.335188 -0.0742203 10.1706 -0.0607201 -0.00852212 0.0671117 0.18 -0.02 pose: 0.0 2.25763 -3.8908 0 0.0016615 -0.0028148 0.999961 -0.00818886 uwb: 0.0 1223.23 782.541 +imu_odom_: 1691062855.347895142 0.584185 0.0191536 10.1754 -0.04048 -0.015979 0.0308927 0.18 0.02 pose: 0.50903332 2.24369 -3.89318 0 0.000337143 -0.00160532 0.999965 -0.00826015 uwb: 0.50328782 1223.3 783.226 +imu_odom_: 1691062855.373940023 0.282516 -0.378284 9.79707 -0.0383495 -0.0245011 0.04048 0.21 0 pose: 0.42954716 2.24369 -3.89318 0 -0.00092703 0.00193861 0.999961 -0.00853623 uwb: 0.0 1223.3 783.226 +imu_odom_: 1691062855.399096539 0.203507 -0.0167594 9.68455 -0.0319579 0.00319579 0.0330232 0.17 0 pose: 0.26040215 2.23553 -3.88741 0 0.000143817 0.00271014 0.99996 -0.00846375 uwb: 0.49942638 1223.45 784.221 +imu_odom_: 1691062855.416088329 0.605733 -0.134075 10.0245 -0.0596548 -0.0447411 0.0532632 0.17 0 pose: 0.25136975 2.22975 -3.89557 0 -0.0011114 0.00185307 0.999962 -0.00844526 uwb: 0.0 1223.45 784.221 +imu_odom_: 1691062855.441835144 0.667982 0.047884 10.3142 -0.0628506 -0.0383495 0.04048 0.18 0 pose: 0.0 2.22975 -3.89557 0 -0.0011114 0.00185307 0.999962 -0.00844526 uwb: 0.49832977 1223.35 785.069 +imu_odom_: 1691062855.458828683 0.316035 -0.167594 9.81862 -0.0671117 0.0319579 0.0447411 0.18 0 pose: 0.0 2.22975 -3.89557 0 -0.0011114 0.00185307 0.999962 -0.00844526 uwb: 0.0 1223.35 785.069 +imu_odom_: 1691062855.484879688 0.878672 -0.134075 10.0652 -0.052198 -0.0266316 0.0372843 0.18 0.02 pose: 0.41768287 2.22159 -3.8898 0 0.000183356 0.00372446 0.999957 -0.00851079 uwb: 0.0 1223.35 785.069 +imu_odom_: 1691062855.508983642 0.502782 -0.447716 9.91439 -0.0628506 -0.0138484 0.0575243 0.18 0.02 pose: 0.42979798 2.21582 -3.89796 0 0.000922854 0.00410131 0.999955 -0.00855713 uwb: 0.50070672 1222.94 785.835 +imu_odom_: 1691062855.534937528 0.351948 -0.114922 9.8689 -0.0490022 -0.0266316 0.0394148 0.18 0 pose: 0.0 2.21582 -3.89796 0 0.000922854 0.00410131 0.999955 -0.00855713 uwb: 0.0 1222.94 785.835 +imu_odom_: 1691062855.559827768 0.198719 -0.19393 10.0963 -0.0596548 -0.0266316 0.0458064 0.18 0 pose: 0.50036258 2.20765 -3.89219 0 0.00295464 0.00202371 0.999955 -0.00876351 uwb: 0.49877309 1222.9 786.989 +imu_odom_: 1691062855.576821599 0.857124 -0.186748 9.94312 -0.0447411 -0.0308927 0.0351537 0.18 0 pose: 0.0 2.20765 -3.89219 0 0.00295464 0.00202371 0.999955 -0.00876351 uwb: 0.0 1222.9 786.989 +imu_odom_: 1691062855.602984598 0.37589 -0.371101 9.94312 -0.0639159 0.0479369 0.0553937 0.18 0 pose: 0.60957946 2.19371 -3.89459 0 0.00124989 0.00255987 0.999957 -0.00879162 uwb: 0.50115586 1223.2 788.563 +imu_odom_: 1691062855.618841288 0.225055 -0.107739 10.2232 -0.056459 -0.0308927 0.0372843 0.18 0 pose: 0.7074541 2.19371 -3.89459 0 0.000898156 0.00183997 0.999959 -0.00884843 uwb: 0.0 1223.2 788.563 +imu_odom_: 1691062855.644810631 0.658405 -0.205901 10.0533 -0.0575243 -0.02024 0.0426106 0.23 0 pose: 0.0 2.19371 -3.89459 0 0.000898156 0.00183997 0.999959 -0.00884843 uwb: 0.49930680 1224.11 790.285 +imu_odom_: 1691062855.670823139 0.452504 -0.131681 10.1825 -0.0575243 0.02024 0.0255663 0.23 0 pose: 0.34945148 2.18554 -3.88883 0 -0.00119775 0.000709865 0.999959 -0.00898369 uwb: 0.0 1224.11 790.285 +imu_odom_: 1691062855.696984387 0.782904 -0.177171 10.003 -0.0617853 -0.015979 0.0394148 0.23 -0.02 pose: 0.51981851 2.17384 -3.89281 0 0.00187853 0.00316331 0.999954 -0.00883886 uwb: 0.49969178 1223.44 790.541 +imu_odom_: 1691062855.721885419 0.665588 0.0981623 10.1825 -0.0553937 -0.00745685 0.0372843 0.23 -0.02 pose: 0.0 2.17384 -3.89281 0 0.00187853 0.00316331 0.999954 -0.00883886 uwb: 0.0 1223.44 790.541 +imu_odom_: 1691062855.739953103 0.423774 -0.390255 9.89524 -0.0777643 -0.056459 0.0383495 0.21 0.02 pose: 0.51062280 2.16761 -3.89689 0 0.00604157 0.00500484 0.99993 -0.00880995 uwb: 0.0 1223.44 790.541 +imu_odom_: 1691062855.764982752 0.782904 -0.112527 9.991 -0.0490022 -0.0468716 0.0298274 0.21 0.02 pose: 0.0 2.16761 -3.89689 0 0.00604157 0.00500484 0.99993 -0.00880995 uwb: 0.50018758 1223.48 791.237 +imu_odom_: 1691062855.790939555 0.727837 -0.390255 9.8689 -0.0479369 0.02024 0.0287621 0.25 0 pose: 0.43097333 2.15767 -3.89363 0 0.00891724 0.00360165 0.999916 -0.00868443 uwb: 0.50098671 1224.77 793.317 +imu_odom_: 1691062855.806833284 0.4956 -0.268151 9.86411 -0.04048 0.0713727 0.0223706 0.25 0 pose: 0.0 2.15767 -3.89363 0 0.00891724 0.00360165 0.999916 -0.00868443 uwb: 0.0 1224.77 793.317 +imu_odom_: 1691062855.825001296 0.213084 -0.0646434 10.2424 -0.056459 -0.0298274 0.04048 0.22 0 pose: 0.41850532 2.15337 -3.89059 0 0.008138 0.000610841 0.999931 -0.00844412 uwb: 0.0 1224.77 793.317 +imu_odom_: 1691062855.849818332 0.110133 -0.131681 10.1658 -0.0479369 0.0213053 0.0287621 0.22 0 pose: 0.0 2.15337 -3.89059 0 0.008138 0.000610841 0.999931 -0.00844412 uwb: 0.49934471 1224.55 793.88 +imu_odom_: 1691062855.876790075 0.687136 -0.241814 9.91918 -0.0681769 0.0234358 0.036219 0.25 -0.02 pose: 0.42985048 2.14373 -3.89603 0 0.00389144 0.00166054 0.999957 -0.00830753 uwb: 0.0 1224.55 793.88 +imu_odom_: 1691062855.892788214 0.146046 -0.220267 9.95748 -0.056459 0.00639159 0.0308927 0.25 -0.02 pose: 0.0 2.14373 -3.89603 0 0.00389144 0.00166054 0.999957 -0.00830753 uwb: 0.49987260 1225.7 795.705 +imu_odom_: 1691062855.920089229 0.572214 -0.150835 10.2352 -0.0713727 -0.0298274 0.0490022 0.26 -0.02 pose: 0.42969882 2.13557 -3.89025 0 0.00444014 0.000660792 0.999956 -0.00819913 uwb: 0.0 1225.7 795.705 +imu_odom_: 1691062855.946086571 0.682347 -0.222661 9.71328 -0.0617853 0.00639159 0.0447411 0.2 0 pose: 0.0 2.13557 -3.89025 0 0.00444014 0.000660792 0.999956 -0.00819913 uwb: 0.0 1225.7 795.705 +imu_odom_: 1691062855.972840451 0.225055 -0.275333 9.72525 -0.0479369 -0.00319579 0.0298274 0.25 0 pose: 0.35303585 2.12979 -3.89841 0 0.00779752 0.00169004 0.999933 -0.00834486 uwb: 0.0 1225.7 795.705 +imu_odom_: 1691062855.997786397 0.469264 -0.493206 9.7037 -0.0639159 0.0330232 0.0585895 0.19 0 pose: 0.24775914 2.12163 -3.89264 0 0.00876122 0.000985277 0.999926 -0.00836591 uwb: 0.99937773 1226.38 797.235 +imu_odom_: 1691062856.23088155 0.433351 -0.241814 9.96706 -0.0330232 -0.00426106 0.0383495 0.19 0 pose: 0.0 2.12163 -3.89264 0 0.00876122 0.000985277 0.999926 -0.00836591 uwb: 0.0 1226.38 797.235 +imu_odom_: 1691062856.48939964 0.572214 -0.260968 9.9503 -0.0596548 0.0287621 0.0532632 0.17 0 pose: 0.28110634 2.12163 -3.89264 0 0.0064828 -0.0002253370.999944 -0.00835399 uwb: 0.50048507 1225.87 798.045 +imu_odom_: 1691062856.73784708 0.481235 0.102951 10.4244 -0.0426106 -0.0138484 0.0458064 0.17 0 pose: 0.0 2.12163 -3.89264 0 0.0064828 -0.0002253370.999944 -0.00835399 uwb: 0.0 1225.87 798.045 +imu_odom_: 1691062856.87961789 0.294487 -0.25618 9.7037 -0.0671117 0 0.0553937 0.18 0 pose: 0.49101521 2.10769 -3.89503 0 0.00387784 -0.00146331 0.999955 -0.00856059 uwb: 0.0 1225.87 798.045 +imu_odom_: 1691062856.112923483 0.751779 -0.177171 9.96467 -0.0458064 -0.00426106 0.0458064 0.18 0 pose: 0.0 2.10769 -3.89503 0 0.00387784 -0.00146331 0.999955 -0.00856059 uwb: 0.49931556 1226.1 799.258 +imu_odom_: 1691062856.137892470 0.308852 -0.289698 9.70131 -0.0852212 0.0468716 0.0628506 0.26 0.02 pose: 0.49712527 2.09952 -3.88925 0 0.00469632 0.000596821 0.99995 -0.00880086 uwb: 0.0 1226.1 799.258 +imu_odom_: 1691062856.161056437 0.440533 -0.301669 9.80904 -0.076699 0 0.0468716 0.26 0.02 pose: 0.0 2.09952 -3.88925 0 0.00469632 0.000596821 0.99995 -0.00880086 uwb: 0.50116171 1226.57 800.605 +imu_odom_: 1691062856.177085492 0.54109 -0.335188 10.0485 -0.0788296 -0.00213053 0.0458064 0.19 0 pose: 0.40080804 2.09375 -3.89742 0 0.00555228 0.000386201 0.999944 -0.00902501 uwb: 0.0 1226.57 800.605 +imu_odom_: 1691062856.203846956 0.490811 -0.146046 9.95509 -0.0330232 -0.04048 0.0394148 0.19 0 pose: 0.0 2.09375 -3.89742 0 0.00555228 0.000386201 0.999944 -0.00902501 uwb: 0.49991927 1226.41 801.098 +imu_odom_: 1691062856.228925603 0.179565 -0.320823 9.91199 -0.0543285 0.00532632 0.0394148 0.25 0 pose: 0.49101813 2.08558 -3.89166 0 0.00321793 -0.00354177 0.999945 -0.00935153 uwb: 0.0 1226.41 801.098 +imu_odom_: 1691062856.255911928 0.584185 -0.136469 9.9096 -0.0490022 -0.0426106 0.0468716 0.23 0.02 pose: 0.42851474 2.07165 -3.89408 0 0.00374561 -0.00132851 0.999948 -0.00936663 uwb: 0.50021968 1226.59 801.987 +imu_odom_: 1691062856.271852613 0.227449 -0.277727 9.46667 -0.0585895 -0.0319579 0.0575243 0.23 0.02 pose: 0.0 2.07165 -3.89408 0 0.00374561 -0.00132851 0.999948 -0.00936663 uwb: 0.0 1226.59 801.987 +imu_odom_: 1691062856.298780317 0.42138 -0.270545 9.70609 -0.04048 -0.0394148 0.0415453 0.23 0 pose: 0.24102495 2.07165 -3.89408 0 0.00269122 -0.00131157 0.999951 -0.00939308 uwb: 0.49972678 1227.78 804.079 +imu_odom_: 1691062856.323876463 0.304064 -0.229843 10.2185 -0.0340885 -0.0351537 0.04048 0.23 0 pose: 0.0 2.07165 -3.89408 0 0.00269122 -0.00131157 0.999951 -0.00939308 uwb: 0.0 1227.78 804.079 +imu_odom_: 1691062856.349809642 0.634463 -0.237026 9.51695 -0.0596548 -0.0127832 0.0468716 0.23 0.02 pose: 0.42934302 2.05771 -3.89649 0 0.00294404 -0.0008546670.999949 -0.00961509 uwb: 0.49961596 1227.59 804.585 +imu_odom_: 1691062856.375789194 0.47884 -0.339977 9.84017 -0.0532632 0.00426106 0.0468716 0.23 0.02 pose: 0.0 2.05771 -3.89649 0 0.00294404 -0.0008546670.999949 -0.00961509 uwb: 0.0 1227.59 804.585 +imu_odom_: 1691062856.392798774 0.536301 -0.268151 9.99579 -0.0628506 -0.0308927 0.0585895 0.21 0.02 pose: 0.51956479 2.04954 -3.89074 0 0.000587178 -0.00140159 0.999952 -0.00968211 uwb: 0.49941764 1227.57 805.64 +imu_odom_: 1691062856.409783273 0.586579 -0.308852 9.66779 -0.0596548 0.00319579 0.0447411 0.21 0.02 pose: 0.0 2.04954 -3.89074 0 0.000587178 -0.00140159 0.999952 -0.00968211 uwb: 0.0 1227.57 805.64 +imu_odom_: 1691062856.433822189 0.428562 -0.146046 9.75637 -0.0372843 0.015979 0.0372843 0.19 0 pose: 0.51974852 2.04378 -3.89892 0 0.003906 -0.00366971 0.999937 -0.00991233 uwb: 0.0 1227.57 805.64 +imu_odom_: 1691062856.458840464 0.550666 -0.172383 10.1586 -0.04048 0.0287621 0.0308927 0.19 0 pose: 0.0 2.04378 -3.89892 0 0.003906 -0.00366971 0.999937 -0.00991233 uwb: 0.50013510 1228.32 807.399 +imu_odom_: 1691062856.482937126 0.603339 -0.289698 9.88805 -0.0681769 0.0181095 0.0553937 0.21 0 pose: 0.34013036 2.0356 -3.89317 0 0.00607001 -0.00328864 0.999926 -0.0100334 uwb: 0.0 1228.32 807.399 +imu_odom_: 1691062856.506852675 0.447716 -0.349553 9.44034 -0.0745685 0.00745685 0.0436758 0.21 0 pose: 0.0 2.0356 -3.89317 0 0.00607001 -0.00328864 0.999926 -0.0100334 uwb: 0.49903849 1228 808.008 +imu_odom_: 1691062856.531789288 0.37589 -0.23942 9.84017 -0.0617853 0.0181095 0.04048 0.2 0 pose: 0.49008194 2.02167 -3.8956 0 0.00623846 4.37563e-05 0.999931 -0.00994567 uwb: 0.0 1228 808.008 +imu_odom_: 1691062856.548802660 0.675165 -0.332794 9.40442 -0.0639159 -0.00958738 0.0308927 0.2 0 pose: 0.0 2.02167 -3.8956 0 0.00623846 4.37563e-05 0.999931 -0.00994567 uwb: 0.49998053 1228.07 808.969 +imu_odom_: 1691062856.573807519 0.603339 -0.529119 9.67018 -0.0447411 -0.00532632 0.0585895 0.23 0 pose: 0.49008486 2.02167 -3.8956 0 0.00478286 -0.0031502 0.999932 -0.0101551 uwb: 0.0 1228.07 808.969 +imu_odom_: 1691062856.590967007 0.603339 -0.423774 10.0796 -0.0500674 -0.00958738 0.0308927 0.23 0 pose: 0.0 2.02167 -3.8956 0 0.00478286 -0.0031502 0.999932 -0.0101551 uwb: 0.49988427 1227.76 809.562 +imu_odom_: 1691062856.614915220 0.31364 -0.349553 9.086 -0.0585895 0.0255663 0.0468716 0.18 0 pose: 0.76142677 2.00316 -3.89483 0 0.00688982 -0.00665886 0.999901 -0.0102597 uwb: 0.0 1227.76 809.562 +imu_odom_: 1691062856.641910004 0.272939 -0.071826 9.99579 -0.0500674 -0.0447411 0.0372843 0.18 0 pose: 0.0 2.00316 -3.89483 0 0.00688982 -0.00665886 0.999901 -0.0102597 uwb: 0.49952555 1226.74 809.406 +imu_odom_: 1691062856.666937320 0.507571 -0.294487 10.3669 -0.0692422 -0.0276969 0.056459 0.19 0 pose: 0.7850037 1.99956 -3.8923 0 0.00598979 -0.0067334 0.999906 -0.0102931 uwb: 0.0 1226.74 809.406 +imu_odom_: 1691062856.691785563 0.64404 -0.0742203 10.2424 -0.0713727 -0.04048 0.0426106 0.22 0 pose: 0.51124111 1.98563 -3.89474 0 0.00388438 -0.00442751 0.999929 -0.010401 uwb: 0.49970054 1226.55 810.241 +imu_odom_: 1691062856.714775124 0.624887 -0.0335188 10.4387 -0.0543285 -0.0479369 0.04048 0.22 0 pose: 0.0 1.98563 -3.89474 0 0.00388438 -0.00442751 0.999929 -0.010401 uwb: 0.0 1226.55 810.241 +imu_odom_: 1691062856.739910351 0.366313 -0.174777 10.0796 -0.056459 0.0266316 0.0213053 0.19 0 pose: 0.64833969 1.97626 -3.89639 0 0.00851064 0.000269799 0.999908 -0.0105508 uwb: 0.0 1226.55 810.241 +imu_odom_: 1691062856.757028716 0.526724 -0.490811 9.54089 -0.0713727 -0.00745685 0.0394148 0.19 0 pose: 0.8146353 1.9717 -3.89719 0 0.00758083 0.000397171 0.999916 -0.0104751 uwb: 0.50016426 1227.1 811.122 +imu_odom_: 1691062856.781806964 0.399832 -0.035913 9.96946 -0.0596548 -0.00745685 0.0436758 0.19 0 pose: 0.0 1.9717 -3.89719 0 0.00758083 0.000397171 0.999916 -0.0104751 uwb: 0.0 1227.1 811.122 +imu_odom_: 1691062856.806808323 0.502782 -0.363919 9.89284 -0.0862864 -0.0468716 0.04048 0.19 0 pose: 0.34107239 1.9717 -3.89719 0 0.00578996 -0.00118133 0.999929 -0.0103247 uwb: 0.50086131 1227.14 812.093 +imu_odom_: 1691062856.820809248 0.632069 -0.258574 10.1945 -0.0436758 -0.0234358 0.036219 0.18 0 pose: 0.0 1.9717 -3.89719 0 0.00578996 -0.00118133 0.999929 -0.0103247 uwb: 0.0 1227.14 812.093 +imu_odom_: 1691062856.837873658 0.433351 -0.383072 9.51456 -0.04048 0.00426106 0.0394148 0.18 0 pose: 0.55841250 1.95777 -3.89964 0 0.00594903 -0.0019507 0.999927 -0.0103738 uwb: 0.0 1227.14 812.093 +imu_odom_: 1691062856.851749757 0.337582 -0.222661 9.90721 -0.0649811 0.00426106 0.0415453 0.18 0 pose: 0.0 1.95777 -3.89964 0 0.00594903 -0.0019507 0.999927 -0.0103738 uwb: 0.50146793 1227.03 812.517 +imu_odom_: 1691062856.868938410 0.378284 0.0047884 10.0844 -0.0340885 -0.0181095 0.0340885 0.18 0.02 pose: 0.0 1.95777 -3.89964 0 0.00594903 -0.0019507 0.999927 -0.0103738 uwb: 0.0 1227.03 812.517 +imu_odom_: 1691062856.882813050 0.984017 -0.301669 9.78989 -0.0394148 -0.0170442 0.0276969 0.18 0.02 pose: 0.45889003 1.94958 -3.8939 0 0.00413085 -0.00211464 0.999936 -0.0103642 uwb: 0.0 1227.03 812.517 +imu_odom_: 1691062856.897742879 0.577003 -0.134075 10.4651 -0.0788296 0.00426106 0.0351537 0.18 0.02 pose: 0.0 1.94958 -3.8939 0 0.00413085 -0.00211464 0.999936 -0.0103642 uwb: 0.49910849 1226.86 813.65 +imu_odom_: 1691062856.915859560 0.758962 0.023942 9.57681 -0.0426106 -0.00745685 0.0383495 0.26 0 pose: 0.38983910 1.94384 -3.90208 0 0.00598932 -1.36709e-050.99993 -0.0102095 uwb: 0.0 1226.86 813.65 +imu_odom_: 1691062856.932016941 0.814029 -0.0287304 10.0556 -0.0681769 0.00532632 0.0575243 0.26 0 pose: 0.0 1.94384 -3.90208 0 0.00598932 -1.36709e-050.99993 -0.0102095 uwb: 0.0 1226.86 813.65 +imu_odom_: 1691062856.957797588 0.356736 -0.181959 10.0628 -0.0617853 -0.0223706 0.0351537 0.18 0.02 pose: 0.34274062 1.93565 -3.89634 0 0.00859328 0.00213257 0.999907 -0.0103311 uwb: 0.50213289 1226.68 814.464 +imu_odom_: 1691062856.975782736 0.646434 -0.258574 10.0556 -0.0671117 -0.0287621 0.0394148 0.19 0.02 pose: 0.0 1.93565 -3.89634 0 0.00859328 0.00213257 0.999907 -0.0103311 uwb: 0.0 1226.68 814.464 +imu_odom_: 1691062856.999777904 0.742203 -0.423774 9.57681 -0.0585895 -0.0511327 0.0340885 0.18 -0.02 pose: 0.43765795 1.92795 -3.89769 0 0.007969 0.000827432 0.999915 -0.0102751 uwb: 0.49889851 1226.62 815.172 +imu_odom_: 1691062857.16743738 -0.0143652 -0.0502782 10.0389 -0.0607201 -0.0213053 0.0500674 0.18 -0.02 pose: 0.0 1.92795 -3.89769 0 0.007969 0.000827432 0.999915 -0.0102751 uwb: 0.0 1226.62 815.172 +imu_odom_: 1691062857.32744211 0.622492 -0.299275 9.70131 -0.0532632 -0.04048 0.0308927 0.18 0 pose: 0.0 1.92795 -3.89769 0 0.007969 0.000827432 0.999915 -0.0102751 uwb: 0.0 1226.62 815.172 +imu_odom_: 1691062857.59736370 0.457293 -0.344765 10.0173 -0.0436758 -0.126766 0.0468716 0.18 0 pose: 0.48979904 1.92172 -3.89878 0 0.00924811 -0.00121709 0.999904 -0.0102802 uwb: 0.49855144 1227.01 816.821 +imu_odom_: 1691062857.84927886 2.15718 -0.270545 9.43315 -0.0511327 0.00958738 0.0543285 0.19 0 pose: 0.34973730 1.90948 -3.89882 0 0.0092827 -0.00316064 0.999898 -0.0103729 uwb: 0.0 1227.01 816.821 +imu_odom_: 1691062857.101796891 0.632069 -0.241814 10.3142 -0.0628506 0.00852212 0.0649811 0.19 0 pose: 0.8261555 1.90779 -3.90122 0 0.0100513 -0.00313313 0.99989 -0.0104309 uwb: 0.0 1227.01 816.821 +imu_odom_: 1691062857.117871152 -0.0215478 -0.213084 10.0868 -0.056459 0.0170442 0.0415453 0.19 0 pose: 0.0 1.90779 -3.90122 0 0.0100513 -0.00313313 0.99989 -0.0104309 uwb: 0.0 1227.01 816.821 +imu_odom_: 1691062857.134861484 0.792481 0.0550666 9.82341 -0.0447411 0.00532632 0.0276969 0.19 0 pose: 0.41805619 1.89961 -3.89548 0 0.0102887 -0.00146449 0.999888 -0.0107537 uwb: 0.0 1227.01 816.821 +imu_odom_: 1691062857.150741507 0.0622492 -0.260968 9.93115 -0.0798948 -0.0181095 0.0703074 0.19 0 pose: 0.0 1.89961 -3.89548 0 0.0102887 -0.00146449 0.999888 -0.0107537 uwb: 0.99888196 1226.84 817.616 +imu_odom_: 1691062857.168767486 0.588974 -0.402226 9.83299 -0.0596548 0.0191748 0.0436758 0.18 0 pose: 0.0 1.89961 -3.89548 0 0.0102887 -0.00146449 0.999888 -0.0107537 uwb: 0.0 1226.84 817.616 +imu_odom_: 1691062857.192862691 0.466869 -0.260968 9.2919 -0.0788296 0.0255663 0.072438 0.18 0 pose: 0.32079985 1.89961 -3.89548 0 0.00961584 -9.04782e-050.999896 -0.0107551 uwb: 0.50111505 1226.35 818.661 +imu_odom_: 1691062857.209734613 -0.071826 -0.316035 9.95988 -0.0735032 0.00852212 0.0596548 0.23 0 pose: 0.50979162 1.88568 -3.89794 0 0.00599249 -0.00257835 0.999914 -0.0113426 uwb: 0.0 1226.35 818.661 +imu_odom_: 1691062857.225738003 0.682347 -0.129287 10.4244 -0.0873517 -0.0394148 0.0447411 0.23 0 pose: 0.0 1.88568 -3.89794 0 0.00599249 -0.00257835 0.999914 -0.0113426 uwb: 0.0 1226.35 818.661 +imu_odom_: 1691062857.252737453 0.703895 -0.248997 10.5273 -0.076699 0.0351537 0.056459 0.25 0.02 pose: 0.6883219 1.88568 -3.89794 0 0.00526355 -0.00270657 0.999917 -0.0114134 uwb: 0.49876435 1226.67 820.018 +imu_odom_: 1691062857.277733272 0.409408 -0.11971 10.3573 -0.0383495 0.0500674 0.0383495 0.18 -0.02 pose: 0.0 1.88568 -3.89794 0 0.00526355 -0.00270657 0.999917 -0.0114134 uwb: 0.0 1226.67 820.018 +imu_odom_: 1691062857.303725073 0.761356 0.0047884 9.93354 -0.0511327 -0.0170442 0.0287621 0.21 0.02 pose: 0.77987362 1.87176 -3.90042 0 0.00538185 -0.0003749130.999916 -0.0117429 uwb: 0.50049676 1226.81 821.519 +imu_odom_: 1691062857.319722630 0.493206 -0.179565 10.0389 -0.0575243 -0.0276969 0.0511327 0.21 0.02 pose: 0.0 1.87176 -3.90042 0 0.00538185 -0.0003749130.999916 -0.0117429 uwb: 0.0 1226.81 821.519 +imu_odom_: 1691062857.337870227 0.339977 -0.538695 9.94073 -0.0703074 0.0234358 0.0596548 0.18 0.02 pose: 0.33089091 1.86355 -3.8947 0 0.00683847 0.00153106 0.999908 -0.0116315 uwb: 0.0 1226.81 821.519 +imu_odom_: 1691062857.362855838 0.282516 -0.0646434 9.78271 -0.0479369 0.015979 0.0500674 0.18 0.02 pose: 0.0 1.86355 -3.8947 0 0.00683847 0.00153106 0.999908 -0.0116315 uwb: 0.49943223 1226.12 822.059 +imu_odom_: 1691062857.389757586 0.162806 -0.555455 10.0197 -0.0532632 0.0340885 0.0447411 0.18 0.02 pose: 0.34920067 1.85783 -3.9029 0 0.0042701 0.000345751 0.99992 -0.0119102 uwb: 0.50035676 1227.31 824.311 +imu_odom_: 1691062857.405854595 0.490811 0.0287304 10.4483 -0.0330232 -0.0415453 0.0298274 0.18 0.02 pose: 0.0 1.85783 -3.9029 0 0.0042701 0.000345751 0.99992 -0.0119102 uwb: 0.0 1227.31 824.311 +imu_odom_: 1691062857.423695961 0.409408 -0.361524 9.41161 -0.0575243 0.0170442 0.0490022 0.18 0.02 pose: 0.51995560 1.84963 -3.89718 0 0.000881969 0.000137908 0.999927 -0.01203 uwb: 0.0 1227.31 824.311 +imu_odom_: 1691062857.440695042 0.80924 -0.136469 10.0628 -0.0436758 0.00106526 0.0372843 0.18 0.02 pose: 0.0 1.84963 -3.89718 0 0.000881969 0.000137908 0.999927 -0.01203 uwb: 0.49949056 1227.05 824.513 +imu_odom_: 1691062857.454697425 0.392649 -0.112527 9.73961 -0.0394148 -0.00106526 0.0447411 0.18 0.02 pose: 0.0 1.84963 -3.89718 0 0.000881969 0.000137908 0.999927 -0.01203 uwb: 0.0 1227.05 824.513 +imu_odom_: 1691062857.477759899 0.464475 -0.225055 9.98622 -0.0543285 -0.00852212 0.0468716 0.2 0.02 pose: 0.48974947 1.83571 -3.89967 0 0.00219877 0.000302869 0.999925 -0.0120695 uwb: 0.0 1227.05 824.513 +imu_odom_: 1691062857.503988811 0.514753 -0.1652 9.8665 -0.0436758 0.00852212 0.0426106 0.23 -0.02 pose: 0.31046962 1.83571 -3.89967 0 0.00333819 -0.0006853420.99992 -0.0121774 uwb: 0.50126379 1227.15 825.381 +imu_odom_: 1691062857.520709951 0.304064 -0.37589 9.8665 -0.0319579 -0.0149137 0.04048 0.18 -0.02 pose: 0.0 1.83571 -3.89967 0 0.00333819 -0.0006853420.99992 -0.0121774 uwb: 0.0 1227.15 825.381 +imu_odom_: 1691062857.545919840 0.203507 -0.0574608 9.75398 -0.0276969 -0.00426106 0.0319579 0.18 0 pose: 0.42950052 1.82418 -3.89873 0 0.00361627 0.000598397 0.999919 -0.0122214 uwb: 0.49931265 1227.35 826.804 +imu_odom_: 1691062857.559714860 0.0550666 -0.129287 9.87848 -0.0436758 -0.0255663 0.0553937 0.18 0 pose: 0.0 1.82418 -3.89873 0 0.00361627 0.000598397 0.999919 -0.0122214 uwb: 0.0 1227.35 826.804 +imu_odom_: 1691062857.577007633 0.723049 -0.155623 9.77074 -0.0596548 0.00106526 0.0383495 0.17 0.02 pose: 0.0 1.82418 -3.89873 0 0.00361627 0.000598397 0.999919 -0.0122214 uwb: 0.0 1227.35 826.804 +imu_odom_: 1691062857.600909766 0.859518 -0.0646434 9.77313 -0.0585895 -0.00958738 0.04048 0.17 0.02 pose: 0.46173070 1.81358 -3.89646 0 0.000853445 0.00237604 0.999922 -0.0122241 uwb: 0.49933890 1227.69 827.798 +imu_odom_: 1691062857.616843160 0.591368 -0.351948 9.56723 -0.0617853 0.0138484 0.0319579 0.2 0 pose: 0.34026745 1.80953 -3.90228 0 0.0042197 0.00297493 0.999912 -0.0122351 uwb: 0.0 1227.69 827.798 +imu_odom_: 1691062857.633758830 0.268151 -0.0981623 9.85693 -0.0436758 -0.00958738 0.0447411 0.2 0 pose: 0.6974214 1.80787 -3.90467 0 0.00450507 0.00234716 0.999913 -0.0122122 uwb: 0.0 1227.69 827.798 +imu_odom_: 1691062857.659723216 0.696713 -0.328006 10.1442 -0.0553937 0.0149137 0.0426106 0.19 0 pose: 0.25874850 1.80351 -3.90163 0 0.0033276 0.00222219 0.999917 -0.0122217 uwb: 0.50185292 1228.56 829.943 +imu_odom_: 1691062857.684832194 0.481235 -0.141258 10.0796 -0.0532632 0.0500674 0.0479369 0.19 0 pose: 0.0 1.80351 -3.90163 0 0.0033276 0.00222219 0.999917 -0.0122217 uwb: 0.0 1228.56 829.943 +imu_odom_: 1691062857.710696253 0.31364 -0.244209 9.3709 -0.0703074 0.0426106 0.0351537 0.19 0 pose: 0.51073364 1.78958 -3.90076 0 0.00350489 0.00306403 0.999913 -0.0123639 uwb: 0.49932432 1229.47 831.44 +imu_odom_: 1691062857.727964819 0.727837 -0.0023942 9.70609 -0.11931 0.00958738 0.072438 0.19 0 pose: 0.0 1.78958 -3.90076 0 0.00350489 0.00306403 0.999913 -0.0123639 uwb: 0.0 1229.47 831.44 +imu_odom_: 1691062857.744773745 0.572214 -0.361524 10.0269 -0.0873517 0.0671117 0.0681769 0.19 0.02 pose: 0.0 1.78958 -3.90076 0 0.00350489 0.00306403 0.999913 -0.0123639 uwb: 0.50269287 1228.64 831.12 +imu_odom_: 1691062857.769820602 0.248997 -0.275333 9.61511 0.00106526 0.0458064 -0.0255663 0.19 0.02 pose: 0.43132625 1.78574 -3.90145 0 0.00202064 0.00192185 0.999917 -0.0125907 uwb: 0.0 1228.64 831.12 +imu_odom_: 1691062857.795763698 0.0694318 -0.517148 9.66779 -0.0937433 0.00106526 0.0894822 0.19 -0.02 pose: 0.41855783 1.77606 -3.9032 0 -0.0006054130.000166962 0.999928 -0.0120237 uwb: 0.49573412 1229.65 833.453 +imu_odom_: 1691062857.820698853 0.136469 -0.462081 10.1466 -0.0287621 0.015979 0.02024 0.19 -0.02 pose: 0.0 1.77606 -3.9032 0 -0.0006054130.000166962 0.999928 -0.0120237 uwb: 0.0 1229.65 833.453 +imu_odom_: 1691062857.845758251 0.292093 -0.184354 9.91439 -0.0830906 0.00426106 0.0436758 0.19 0 pose: 0.50878251 1.76595 -3.89987 0 -0.00457106 -0.00355792 0.999906 -0.0124265 uwb: 0.49913183 1229.37 834.269 +imu_odom_: 1691062857.861740934 0.6608 -0.428562 9.36133 -0.0735032 0.0372843 0.0383495 0.19 0 pose: 0.0 1.76595 -3.89987 0 -0.00457106 -0.00355792 0.999906 -0.0124265 uwb: 0.0 1229.37 834.269 +imu_odom_: 1691062857.878904214 0.186748 -0.445322 10.0149 -0.0735032 -0.0394148 0.0319579 0.19 0 pose: 0.41042081 1.76044 -3.9028 0 -0.00412319 -0.00234046 0.999911 -0.0124768 uwb: 0.0 1229.37 834.269 +imu_odom_: 1691062857.896741788 0.61531 0.047884 10.2065 -0.0372843 -0.015979 0.0383495 0.19 0 pose: 0.0 1.76044 -3.9028 0 -0.00412319 -0.00234046 0.999911 -0.0124768 uwb: 0.50105672 1229.31 835.525 +imu_odom_: 1691062857.920731416 0.596156 -0.11971 9.97185 -0.0639159 -0.00106526 0.0415453 0.18 0.02 pose: 0.35000854 1.74969 -3.90075 0 -0.0035191 -0.00239997 0.999914 -0.0123997 uwb: 0.0 1229.31 835.525 +imu_odom_: 1691062857.938662317 0.454898 -0.0023942 10.0197 -0.04048 -0.052198 0.0308927 0.18 0.02 pose: 0.0 1.74969 -3.90075 0 -0.0035191 -0.00239997 0.999914 -0.0123997 uwb: 0.0 1229.31 835.525 +imu_odom_: 1691062857.954665124 0.723049 -0.172383 9.663 -0.0553937 0.0106526 0.0372843 0.18 0.02 pose: 0.0 1.74969 -3.90075 0 -0.0035191 -0.00239997 0.999914 -0.0123997 uwb: 0.49995137 1229.99 837.16 +imu_odom_: 1691062857.977721473 0.397437 0.023942 10.5512 -0.0490022 -0.0447411 0.0383495 0.19 0 pose: 0.48955698 1.74148 -3.89504 0 0.000174755 0.000580232 0.999924 -0.0123393 uwb: 0.0 1229.99 837.16 +imu_odom_: 1691062857.994721430 0.471658 -0.433351 9.2919 -0.0447411 -0.00319579 0.0553937 0.19 0 pose: 0.0 1.74148 -3.89504 0 0.000174755 0.000580232 0.999924 -0.0123393 uwb: 0.50061341 1230.05 838.317 +imu_odom_: 1691062858.11658682 0.593762 -0.311246 10.3406 -0.0553937 -0.0447411 0.0479369 0.25 0 pose: 0.49023944 1.73577 -3.90325 0 0.00146026 0.00146393 0.99992 -0.01245 uwb: 0.0 1230.05 838.317 +imu_odom_: 1691062858.27822188 0.538695 -0.244209 10.0868 -0.0639159 -0.00426106 0.0394148 0.25 0 pose: 0.6946799 1.73577 -3.90325 0 0.00215227 0.00104288 0.999919 -0.0124802 uwb: 0.0 1230.05 838.317 +imu_odom_: 1691062858.53690622 0.373495 -0.174777 10.4244 -0.0692422 -0.015979 0.0490022 0.23 0.02 pose: 0.0 1.73577 -3.90325 0 0.00215227 0.00104288 0.999919 -0.0124802 uwb: 0.49994845 1229.58 838.951 +imu_odom_: 1691062858.79832915 0.572214 0 10.0173 -0.0585895 -0.0170442 0.036219 0.19 0 pose: 0.34094116 1.72756 -3.89754 0 0.00389949 -0.0001319870.999913 -0.0125612 uwb: 0.0 1229.58 838.951 +imu_odom_: 1691062858.105094426 0.984017 -0.342371 10.2328 -0.0458064 -0.00213053 0.0223706 0.22 0 pose: 0.44070570 1.71594 -3.90164 0 0.00379771 0.00260115 0.99991 -0.0125939 uwb: 0.49945558 1229.33 839.423 +imu_odom_: 1691062858.121722530 0.251391 0.00718261 9.93594 -0.0468716 0.0245011 0.0415453 0.22 0 pose: 0.0 1.71594 -3.90164 0 0.00379771 0.00260115 0.99991 -0.0125939 uwb: 0.0 1229.33 839.423 +imu_odom_: 1691062858.147812909 0.35913 -0.418985 9.51456 -0.0681769 0.0287621 0.0458064 0.23 0 pose: 0.41889615 1.71069 -3.9043 0 0.00453118 0.002892 0.999909 -0.0123952 uwb: 0.50058717 1229.58 840.734 +imu_odom_: 1691062858.161803043 0.500388 -0.198719 10.0628 -0.04048 -0.00852212 0.0308927 0.23 0 pose: 0.8133521 1.70794 -3.90826 0 0.00404073 0.00210739 0.999912 -0.012423 uwb: 0.0 1229.58 840.734 +imu_odom_: 1691062858.186667037 0.407014 -0.411803 10.0126 -0.0607201 -0.00106526 0.0490022 0.18 0 pose: 0.31946992 1.69973 -3.90255 0 0.00434351 0.000822051 0.999913 -0.0124233 uwb: 0.0 1229.58 840.734 +imu_odom_: 1691062858.210709745 0.486023 0.0790087 10.3262 -0.0479369 -0.0223706 0.0468716 0.18 0 pose: 0.0 1.69973 -3.90255 0 0.00434351 0.000822051 0.999913 -0.0124233 uwb: 0.0 1229.58 840.734 +imu_odom_: 1691062858.235678441 0.562637 -0.308852 10.3621 -0.0713727 0.00213053 0.0468716 0.18 0 pose: 0.7877744 1.69973 -3.90255 0 0.00405564 6.19567e-05 0.999914 -0.0124633 uwb: 0.0 1229.58 840.734 +imu_odom_: 1691062858.252673731 0.371101 -0.0263362 9.36372 -0.0660464 0.0191748 0.036219 0.18 0 pose: 0.0 1.69973 -3.90255 0 0.00405564 6.19567e-05 0.999914 -0.0124633 uwb: 0.100069604 1229.57 841.336 +imu_odom_: 1691062858.276670650 0.201113 -0.416591 9.4978 -0.0756338 -0.00213053 0.0543285 0.19 0 pose: 0.48183703 1.68581 -3.90506 0 0.00412982 0.000292556 0.999911 -0.0126579 uwb: 0.0 1229.57 841.336 +imu_odom_: 1691062858.302713782 0.225055 -0.31364 9.52892 -0.072438 0.00426106 0.0372843 0.18 0 pose: 0.41881157 1.68581 -3.90506 0 0.00349332 -0.0004093550.999913 -0.0127466 uwb: 0.49856312 1229.48 842.579 +imu_odom_: 1691062858.316826409 0.608127 -0.0790087 10.1442 -0.0617853 -0.0298274 0.0458064 0.2 -0.02 pose: 0.42968135 1.67334 -3.90548 0 -0.000461447-0.0026331 0.999914 -0.0128498 uwb: 0.0 1229.48 842.579 +imu_odom_: 1691062858.340736125 0.586579 -0.19393 10.0293 -0.0500674 -0.0298274 0.0340885 0.2 -0.02 pose: 0.0 1.67334 -3.90548 0 -0.000461447-0.0026331 0.999914 -0.0128498 uwb: 0.49942641 1229.44 844.073 +imu_odom_: 1691062858.358668194 0.373495 -0.186748 9.75398 -0.0681769 -0.0117179 0.0415453 0.23 0.02 pose: 0.38022343 1.66631 -3.90369 0 0.00334141 -0.0008894780.999912 -0.0128223 uwb: 0.0 1229.44 844.073 +imu_odom_: 1691062858.375724147 0.356736 -0.213084 10.1131 -0.0585895 -0.0234358 0.0287621 0.23 0.02 pose: 0.0 1.66631 -3.90369 0 0.00334141 -0.0008894780.999912 -0.0128223 uwb: 0.0 1229.44 844.073 +imu_odom_: 1691062858.400645304 0.742203 -0.514753 10.3645 -0.0713727 0.00319579 0.056459 0.2 0 pose: 0.34988022 1.66368 -3.90187 0 0.000247095 -0.0001442050.999919 -0.0127465 uwb: 0.49933016 1229.77 845.313 +imu_odom_: 1691062858.425693620 0.873884 -0.277727 10.4603 -0.0372843 -0.0117179 0.036219 0.2 0 pose: 0.0 1.66368 -3.90187 0 0.000247095 -0.0001442050.999919 -0.0127465 uwb: 0.0 1229.77 845.313 +imu_odom_: 1691062858.447865105 0.464475 -0.268151 10.422 -0.056459 -0.0447411 0.0500674 0.18 0 pose: 0.49969473 1.64976 -3.90438 0 0.00463635 -0.00184465 0.999904 -0.0129105 uwb: 0.50135129 1229.12 845.748 +imu_odom_: 1691062858.464660324 0.627281 -0.289698 9.48343 -0.0436758 0.0447411 0.0276969 0.18 0 pose: 0.0 1.64976 -3.90438 0 0.00463635 -0.00184465 0.999904 -0.0129105 uwb: 0.0 1229.12 845.748 +imu_odom_: 1691062858.480769291 0.574608 -0.198719 10.0317 -0.052198 -0.00426106 0.0500674 0.24 0 pose: 0.0 1.64976 -3.90438 0 0.00463635 -0.00184465 0.999904 -0.0129105 uwb: 0.0 1229.12 845.748 +imu_odom_: 1691062858.505798650 0.620098 -0.201113 10.0173 -0.0436758 -0.00852212 0.0319579 0.24 0 pose: 0.38966704 1.64503 -3.9011 0 0.00430896 -0.00285813 0.999903 -0.0129308 uwb: 0.49979389 1229.13 847.194 +imu_odom_: 1691062858.530841424 0.509965 -0.335188 9.97903 -0.052198 0.0181095 0.0713727 0.21 0.02 pose: 0.41138326 1.63584 -3.9069 0 0.00783379 -0.0005444560.999886 -0.0129027 uwb: 0.0 1229.13 847.194 +imu_odom_: 1691062858.554704477 0.246603 -0.28491 9.95748 -0.0351537 0.00532632 0.0255663 0.21 0.02 pose: 0.0 1.63584 -3.9069 0 0.00783379 -0.0005444560.999886 -0.0129027 uwb: 0.50053176 1228.8 848.277 +imu_odom_: 1691062858.572921195 0.213084 -0.150835 9.64624 -0.0479369 0.015979 0.0447411 0.19 0.02 pose: 0.48905827 1.62763 -3.9012 0 0.00406969 -0.00271757 0.999901 -0.0131614 uwb: 0.0 1228.8 848.277 +imu_odom_: 1691062858.596794747 0.0814029 -0.430956 9.05727 -0.0383495 0.00958738 0.0276969 0.19 0.02 pose: 0.0 1.62763 -3.9012 0 0.00406969 -0.00271757 0.999901 -0.0131614 uwb: 0.50056967 1229.04 848.981 +imu_odom_: 1691062858.622673680 0.153229 -0.349553 9.52892 -0.052198 0.00106526 0.0660464 0.23 0 pose: 0.42090270 1.61646 -3.90562 0 -8.37941e-05-0.0028442 0.99991 -0.0130748 uwb: 0.0 1229.04 848.981 +imu_odom_: 1691062858.646660100 0.150835 -0.227449 10.1227 -0.0447411 -0.0149137 0.036219 0.23 0 pose: 0.0 1.61646 -3.90562 0 -8.37941e-05-0.0028442 0.99991 -0.0130748 uwb: 0.50001554 1229.11 850.647 +imu_odom_: 1691062858.670637479 0.174777 -0.52433 9.71806 -0.0777643 0.0223706 0.0500674 0.18 0 pose: 0.49865353 1.61371 -3.90372 0 -0.00478631 -0.00286139 0.999895 -0.0133937 uwb: 0.0 1229.11 850.647 +imu_odom_: 1691062858.687791427 0.179565 -0.454898 9.80904 -0.0458064 0.0127832 0.0330232 0.18 0 pose: 0.0 1.61371 -3.90372 0 -0.00478631 -0.00286139 0.999895 -0.0133937 uwb: 0.0 1229.11 850.647 +imu_odom_: 1691062858.712663295 0.442927 -0.0191536 10.3382 -0.0436758 -0.0213053 0.0660464 0.23 0 pose: 0.30989799 1.5998 -3.90625 0 -0.0066632 -0.0058075 0.99987 -0.0134874 uwb: 0.49870020 1228.91 851.065 +imu_odom_: 1691062858.736787957 0.215478 -0.158017 10.1083 -0.015979 0 0.0340885 0.23 0 pose: 0.0 1.5998 -3.90625 0 -0.0066632 -0.0058075 0.99987 -0.0134874 uwb: 0.0 1228.91 851.065 +imu_odom_: 1691062858.753722000 0.632069 -0.361524 9.2488 -0.0639159 0.0245011 0.0543285 0.21 0 pose: 0.43160624 1.5998 -3.90625 0 -0.00629063 -0.00338446 0.99988 -0.0137713 uwb: 0.49994846 1228.5 852.467 +imu_odom_: 1691062858.778876185 0.208296 -0.196325 9.61272 -0.0436758 0.00958738 0.04048 0.21 0 pose: 0.0 1.5998 -3.90625 0 -0.00629063 -0.00338446 0.99988 -0.0137713 uwb: 0.0 1228.5 852.467 +imu_odom_: 1691062858.802740987 0.308852 -0.0047884 9.79468 -0.0458064 0.00319579 0.0639159 0.18 0 pose: 0.40846093 1.58588 -3.90879 0 -0.00639448 -0.00174454 0.999882 -0.0138628 uwb: 0.49987846 1229.35 854.729 +imu_odom_: 1691062858.825627597 0.351948 -0.0143652 9.79228 -0.0607201 -0.0372843 0.0426106 0.18 0 pose: 0.0 1.58588 -3.90879 0 -0.00639448 -0.00174454 0.999882 -0.0138628 uwb: 0.0 1229.35 854.729 +imu_odom_: 1691062858.840685168 0.258574 -0.229843 9.54089 -0.0735032 -0.0117179 0.0447411 0.18 -0.02 pose: 0.47988589 1.57766 -3.9031 0 -0.00700616 0.00232702 0.999872 -0.0142011 uwb: 0.50013803 1229.19 855.394 +imu_odom_: 1691062858.866636139 0.225055 -0.351948 9.76834 -0.0543285 -0.00532632 0.0308927 0.18 -0.02 pose: 0.0 1.57766 -3.9031 0 -0.00700616 0.00232702 0.999872 -0.0142011 uwb: 0.0 1229.19 855.394 +imu_odom_: 1691062858.890776842 0.136469 -0.0885855 10.3046 -0.0511327 -0.0266316 0.0511327 0.23 -0.02 pose: 0.39027659 1.57198 -3.91134 0 -0.00665041 0.00137823 0.999876 -0.0142259 uwb: 0.50005637 1229.56 856.833 +imu_odom_: 1691062858.908781531 0.775721 -0.304064 9.67976 -0.0628506 0.0436758 0.0415453 0.23 -0.02 pose: 0.0 1.57198 -3.91134 0 -0.00665041 0.00137823 0.999876 -0.0142259 uwb: 0.0 1229.56 856.833 +imu_odom_: 1691062858.932835322 0.581791 -0.335188 9.48343 -0.0681769 0.0340885 0.04048 0.19 -0.02 pose: 0.50007387 1.56375 -3.90566 0 -0.00794752 0.00127287 0.999865 -0.0142958 uwb: 0.0 1229.56 856.833 +imu_odom_: 1691062858.958791543 0.371101 -0.497994 9.60075 -0.0511327 -0.00426106 0.0330232 0.23 -0.02 pose: 0.34155071 1.55443 -3.90737 0 -0.0054501 -9.63015e-050.999883 -0.0143141 uwb: 0.49982597 1229.83 858.334 +imu_odom_: 1691062858.971831774 -0.0383072 -0.301669 9.9503 -0.0468716 -0.0245011 0.0266316 0.23 -0.02 pose: 0.0 1.55443 -3.90737 0 -0.0054501 -9.63015e-050.999883 -0.0143141 uwb: 0.0 1229.83 858.334 +imu_odom_: 1691062858.987825832 0.603339 -0.296881 10.2783 -0.0607201 -0.0372843 0.0468716 0.23 -0.02 pose: 0.0 1.55443 -3.90737 0 -0.0054501 -9.63015e-050.999883 -0.0143141 uwb: 0.0 1229.83 858.334 +imu_odom_: 1691062859.4666256 0.577003 -0.258574 9.60075 -0.0372843 0.0468716 0.0234358 0.25 0 pose: 0.7962906 1.54984 -3.90821 0 -0.00524454 -0.0008487540.999884 -0.0142837 uwb: 0.50021678 1230 859.883 +imu_odom_: 1691062859.29618620 0.205901 -0.371101 9.32781 -0.0543285 0.0170442 0.0394148 0.25 0 pose: 0.0 1.54984 -3.90821 0 -0.00524454 -0.0008487540.999884 -0.0142837 uwb: 0.0 1230 859.883 +imu_odom_: 1691062859.54755306 0.411803 -0.1652 9.58399 -0.0479369 -0.00958738 0.0394148 0.24 0 pose: 0.55217996 1.54161 -3.90253 0 -0.00347645 -0.00270894 0.999891 -0.0141183 uwb: 0.50000096 1230.04 860.681 +imu_odom_: 1691062859.79896658 -0.102951 -0.380678 10.2328 -0.0681769 0.00319579 0.0490022 0.19 0 pose: 0.0 1.54161 -3.90253 0 -0.00347645 -0.00270894 0.999891 -0.0141183 uwb: 0.0 1230.04 860.681 +imu_odom_: 1691062859.104645742 -0.143652 -0.181959 10.0054 -0.0553937 0.00745685 0.0330232 0.21 -0.02 pose: 0.65768710 1.5277 -3.90508 0 -0.00410998 -0.00232171 0.99989 -0.0140782 uwb: 0.50023720 1230.51 862.045 +imu_odom_: 1691062859.121765276 0.6608 -0.146046 10.2376 -0.0511327 -0.0181095 0.0490022 0.21 -0.02 pose: 0.0 1.5277 -3.90508 0 -0.00410998 -0.00232171 0.99989 -0.0140782 uwb: 0.0 1230.51 862.045 +imu_odom_: 1691062859.145764529 0.47884 -0.0814029 9.80426 -0.0479369 0.0340885 0.0234358 0.18 0 pose: 0.59980342 1.51719 -3.90998 0 -0.00672355 -0.0019825 0.999875 -0.0141744 uwb: 0.49991056 1230.88 863.459 +imu_odom_: 1691062859.170759181 0.143652 -0.42138 9.57202 -0.0458064 -0.0255663 0.0394148 0.18 0 pose: 0.7035460 1.51379 -3.90763 0 -0.00632101 -0.0015037 0.999879 -0.0141192 uwb: 0.0 1230.88 863.459 +imu_odom_: 1691062859.194760184 0.208296 -0.122104 9.53371 -0.0511327 0.00213053 0.0447411 0.18 -0.02 pose: 0.41958445 1.51379 -3.90763 0 -0.00660203 -0.00221483 0.999878 -0.0139732 uwb: 0.49944683 1231.19 864.908 +imu_odom_: 1691062859.220740029 0.438139 -0.373495 9.32302 -0.0649811 0.0415453 0.0458064 0.24 0 pose: 0.0 1.51379 -3.90763 0 -0.00660203 -0.00221483 0.999878 -0.0139732 uwb: 0.0 1231.19 864.908 +imu_odom_: 1691062859.236670799 0.325611 -0.0646434 10.2017 -0.0372843 0.00639159 0.0319579 0.24 0 pose: 0.32155231 1.49988 -3.91018 0 -0.00739947 -0.0006324360.999873 -0.0140726 uwb: 0.0 1231.19 864.908 +imu_odom_: 1691062859.253643633 0.454898 -0.160412 9.90721 -0.0617853 0.0223706 0.0585895 0.24 0 pose: 0.0 1.49988 -3.91018 0 -0.00739947 -0.0006324360.999873 -0.0140726 uwb: 0.49935933 1231.58 866.569 +imu_odom_: 1691062859.278657243 0.916979 -0.122104 10.0461 -0.0426106 0.0234358 0.0372843 0.18 0 pose: 0.50729221 1.49554 -3.90718 0 -0.00474915 0.000287229 0.999887 -0.0142317 uwb: 0.0 1231.58 866.569 +imu_odom_: 1691062859.303664145 0.117316 -0.203507 9.663 -0.0692422 0.0276969 0.0596548 0.18 0 pose: 0.8037568 1.49164 -3.90449 0 -0.00406688 0.000460111 0.99989 -0.0142232 uwb: 0.50123173 1231.98 867.947 +imu_odom_: 1691062859.328710420 0.299275 -0.265756 9.65582 -0.0628506 0.00852212 0.0479369 0.19 0 pose: 0.41982944 1.48226 -3.90622 0 -0.00552145 0.000554545 0.99988 -0.0144543 uwb: 0.0 1231.98 867.947 +imu_odom_: 1691062859.352684591 0.457293 -0.418985 9.85932 -0.0639159 -0.00426106 0.0543285 0.19 0 pose: 0.0 1.48226 -3.90622 0 -0.00552145 0.000554545 0.99988 -0.0144543 uwb: 0.49901811 1232.26 868.862 +imu_odom_: 1691062859.375592783 0.213084 -0.136469 9.56723 -0.0745685 0.0245011 0.036219 0.21 0 pose: 0.32118191 1.47774 -3.90705 0 -0.00508675 -0.00257106 0.999877 -0.0145943 uwb: 0.0 1232.26 868.862 +imu_odom_: 1691062859.401608501 0.167594 -0.691924 9.55287 -0.0681769 0.00319579 0.0372843 0.25 0 pose: 0.0 1.47774 -3.90705 0 -0.00508675 -0.00257106 0.999877 -0.0145943 uwb: 0.49991930 1232.11 869.747 +imu_odom_: 1691062859.414595361 0.328006 -0.124498 9.99579 -0.0490022 -0.0436758 0.0255663 0.25 0 pose: 0.47892054 1.46383 -3.90961 0 -0.00588235 -0.00309377 0.99987 -0.0146707 uwb: 0.0 1232.11 869.747 +imu_odom_: 1691062859.438577406 0.344765 -0.562637 9.78031 -0.0553937 -0.00106526 0.0383495 0.25 0 pose: 0.0 1.46383 -3.90961 0 -0.00588235 -0.00309377 0.99987 -0.0146707 uwb: 0.0 1232.11 869.747 +imu_odom_: 1691062859.464747115 0.507571 -0.160412 10.3094 -0.0447411 -0.0223706 0.0532632 0.17 -0.02 pose: 0.38991204 1.46383 -3.90961 0 -0.00567729 -0.00442993 0.999868 -0.0145481 uwb: 0.50092550 1232.54 871.102 +imu_odom_: 1691062859.480606723 0.107739 -0.237026 9.663 -0.0585895 -0.00745685 0.0607201 0.17 -0.02 pose: 0.0 1.46383 -3.90961 0 -0.00567729 -0.00442993 0.999868 -0.0145481 uwb: 0.0 1232.54 871.102 +imu_odom_: 1691062859.497645469 0.919373 -0.402226 10.094 -0.0426106 -0.0447411 0.0383495 0.18 0.02 pose: 0.48980198 1.44992 -3.91217 0 -0.00378694 -0.00402715 0.999875 -0.0147809 uwb: 0.50078550 1232.84 871.994 +imu_odom_: 1691062859.513702523 0.739808 -0.275333 9.31105 -0.0596548 0.00213053 0.0607201 0.18 0.02 pose: 0.0 1.44992 -3.91217 0 -0.00378694 -0.00402715 0.999875 -0.0147809 uwb: 0.0 1232.84 871.994 +imu_odom_: 1691062859.538643221 0.97444 -0.246603 9.44991 -0.0426106 0.0170442 0.0298274 0.25 0 pose: 0.17039330 1.44992 -3.91217 0 -0.00368765 -0.00392522 0.999875 -0.0148717 uwb: 0.0 1232.84 871.994 +imu_odom_: 1691062859.552750598 0.411803 -0.117316 9.92636 -0.0458064 0.0319579 0.0458064 0.25 0 pose: 0.0 1.44992 -3.91217 0 -0.00368765 -0.00392522 0.999875 -0.0148717 uwb: 0.50045010 1233.25 873.09 +imu_odom_: 1691062859.577860452 0.505177 -0.335188 10.0509 -0.0500674 0.0117179 0.04048 0.19 -0.02 pose: 0.32990515 1.44168 -3.90651 0 -0.000361056-0.00385589 0.99988 -0.0149836 uwb: 0.0 1233.25 873.09 +imu_odom_: 1691062859.594595300 0.320823 -0.0047884 9.76355 -0.0415453 0.00426106 0.0458064 0.22 0 pose: 0.0 1.44168 -3.90651 0 -0.000361056-0.00385589 0.99988 -0.0149836 uwb: 0.49813733 1233.14 874.467 +imu_odom_: 1691062859.611770538 0.344765 -0.258574 10.0102 -0.0617853 -0.00639159 0.0681769 0.18 0 pose: 0.0 1.44168 -3.90651 0 -0.000361056-0.00385589 0.99988 -0.0149836 uwb: 0.0 1233.14 874.467 +imu_odom_: 1691062859.628719457 0.538695 -0.368707 9.84735 -0.0447411 -0.0213053 0.0340885 0.18 0 pose: 0.72919663 1.42778 -3.90908 0 0.00167186 -0.00208569 0.999884 -0.0149946 uwb: 0.0 1233.14 874.467 +imu_odom_: 1691062859.653765440 0.761356 -0.282516 9.53132 -0.0426106 -0.0149137 0.0458064 0.18 0.02 pose: 0.0 1.42778 -3.90908 0 0.00167186 -0.00208569 0.999884 -0.0149946 uwb: 0.50003013 1233.44 875.619 +imu_odom_: 1691062859.678586853 0.653617 -0.181959 10.161 -0.0213053 -0.0255663 0.0266316 0.18 0.02 pose: 0.42060814 1.42778 -3.90908 0 0.00228532 -0.00312149 0.999877 -0.0152169 uwb: 0.0 1233.44 875.619 +imu_odom_: 1691062859.703693791 0.466869 -0.138864 10.3573 -0.0607201 -0.015979 0.0575243 0.21 -0.02 pose: 0.41930739 1.41387 -3.91166 0 0.00649495 -0.00135335 0.999864 -0.0150953 uwb: 0.50312745 1233.58 876.589 +imu_odom_: 1691062859.720674207 0.646434 -0.260968 9.50977 -0.0628506 0.0319579 0.04048 0.21 -0.02 pose: 0.0 1.41387 -3.91166 0 0.00649495 -0.00135335 0.999864 -0.0150953 uwb: 0.0 1233.58 876.589 +imu_odom_: 1691062859.745706483 0.325611 -0.184354 9.9527 -0.0660464 0.0330232 0.0490022 0.18 0 pose: 0.7022628 1.41387 -3.91166 0 0.00614369 -0.0007896340.999866 -0.015155 uwb: 0.49732654 1233.9 877.718 +imu_odom_: 1691062859.761645419 0.440533 -0.296881 9.69891 -0.0628506 -0.00639159 0.0298274 0.18 0 pose: 0.0 1.41387 -3.91166 0 0.00614369 -0.0007896340.999866 -0.015155 uwb: 0.0 1233.9 877.718 +imu_odom_: 1691062859.786577367 0.567426 -0.52433 9.55047 -0.0458064 0.00106526 0.0575243 0.23 -0.02 pose: 0.42974260 1.40563 -3.90599 0 0.00559292 5.83831e-05 0.999866 -0.0153567 uwb: 0.0 1233.9 877.718 +imu_odom_: 1691062859.810770567 0.323217 -0.308852 9.53371 -0.0223706 0.0170442 0.0266316 0.23 -0.02 pose: 0.0 1.40563 -3.90599 0 0.00559292 5.83831e-05 0.999866 -0.0153567 uwb: 0.49850189 1234.06 878.935 +imu_odom_: 1691062859.835599854 0.4956 -0.131681 10.173 -0.0575243 -0.00745685 0.052198 0.18 -0.02 pose: 0.41061915 1.39172 -3.90858 0 0.00334263 -0.00206925 0.999873 -0.0154364 uwb: 0.0 1234.06 878.935 +imu_odom_: 1691062859.852640642 0.181959 -0.234632 9.73482 -0.04048 0.0351537 0.0372843 0.18 -0.02 pose: 0.0 1.39172 -3.90858 0 0.00334263 -0.00206925 0.999873 -0.0154364 uwb: 0.50064551 1233.79 880.109 +imu_odom_: 1691062859.876568150 0.3304 0.0167594 9.78271 -0.0394148 0.0191748 0.0617853 0.18 0 pose: 0.49021612 1.39172 -3.90858 0 0.00159081 -0.0028911 0.999875 -0.0154945 uwb: 0.0 1233.79 880.109 +imu_odom_: 1691062859.901601592 0.263362 -0.114922 9.56484 -0.0511327 -0.00639159 0.0426106 0.18 0 pose: 0.0 1.39172 -3.90858 0 0.00159081 -0.0028911 0.999875 -0.0154945 uwb: 0.50032469 1234.19 881.955 +imu_odom_: 1691062859.924714522 0.557849 -0.129287 9.88805 -0.076699 0.0287621 0.0458064 0.19 0 pose: 0.82934324 1.37201 -3.90718 0 -0.00291989 0.00257437 0.999866 -0.0158813 uwb: 0.0 1234.19 881.955 +imu_odom_: 1691062859.940721121 0.131681 -0.56982 9.72285 -0.0639159 0.015979 0.0340885 0.19 0 pose: 0.0 1.37201 -3.90718 0 -0.00291989 0.00257437 0.999866 -0.0158813 uwb: 0.49986389 1233.85 882.896 +imu_odom_: 1691062859.965750772 0.225055 -0.126893 10.1418 -0.0511327 -0.0351537 0.0500674 0.25 -0.02 pose: 0.39119529 1.36392 -3.91376 0 -0.00200107 0.00128294 0.999871 -0.015915 uwb: 0.0 1233.85 882.896 +imu_odom_: 1691062859.988578469 0.0837971 -0.138864 9.8258 -0.0532632 -0.0127832 0.036219 0.25 -0.02 pose: 0.0 1.36392 -3.91376 0 -0.00200107 0.00128294 0.999871 -0.015915 uwb: 0.0 1233.85 882.896 +imu_odom_: 1691062860.13578955 0.509965 -0.464475 9.97185 -0.076699 -0.00852212 0.0479369 0.18 0.02 pose: 0.31927744 1.35567 -3.90811 0 -0.00457653 0.00240037 0.999858 -0.0160314 uwb: 0.50057552 1233.45 882.84 +imu_odom_: 1691062860.29567180 0.610521 -0.25618 9.72046 -0.0628506 0.036219 0.0351537 0.18 0.02 pose: 0.0 1.35567 -3.90811 0 -0.00457653 0.00240037 0.999858 -0.0160314 uwb: 0.0 1233.45 882.84 +imu_odom_: 1691062860.53830085 0.493206 -0.287304 9.30866 -0.0447411 0.00852212 0.0426106 0.23 0 pose: 0.47946302 1.35567 -3.90811 0 -0.00395457 0.000205491 0.999863 -0.0160837 uwb: 0.50072426 1233.27 883.95 +imu_odom_: 1691062860.79706394 0.603339 -0.265756 9.44513 -0.0255663 0.0127832 0.0234358 0.18 0 pose: 0.0 1.35567 -3.90811 0 -0.00395457 0.000205491 0.999863 -0.0160837 uwb: 0.0 1233.27 883.95 +imu_odom_: 1691062860.103654609 0.435745 -0.253785 9.46428 -0.0639159 0.0287621 0.0394148 0.18 0 pose: 0.41051416 1.34742 -3.90247 0 -0.000506649-0.0008765980.999871 -0.0160328 uwb: 0.49945268 1233.23 884.985 +imu_odom_: 1691062860.129589832 0.639252 -0.191536 9.50498 -0.04048 -0.00852212 0.0298274 0.19 -0.02 pose: 0.42008026 1.33815 -3.9042 0 0.00187273 -0.00307814 0.999867 -0.0158835 uwb: 0.0 1233.23 884.985 +imu_odom_: 1691062860.142586900 0.301669 -0.220267 9.39964 -0.0511327 0.0372843 0.04048 0.19 -0.02 pose: 0.7952407 1.33352 -3.90507 0 0.00262219 -0.00270915 0.999867 -0.015842 uwb: 0.50028679 1233.29 885.71 +imu_odom_: 1691062860.167587094 0.0407014 -0.380678 9.90481 -0.0436758 -0.036219 0.0319579 0.18 -0.02 pose: 0.0 1.33352 -3.90507 0 0.00262219 -0.00270915 0.999867 -0.015842 uwb: 0.0 1233.29 885.71 +imu_odom_: 1691062860.193582105 0.634463 -0.306458 10.4315 -0.0532632 -0.00958738 0.0372843 0.18 -0.02 pose: 0.39067616 1.33352 -3.90507 0 0.00212258 -0.00186535 0.999872 -0.0157269 uwb: 0.49941476 1233.15 886.539 +imu_odom_: 1691062860.206624379 0.481235 -0.440533 9.63666 -0.0671117 0.00319579 0.036219 0.18 -0.02 pose: 0.0 1.33352 -3.90507 0 0.00212258 -0.00186535 0.999872 -0.0157269 uwb: 0.0 1233.15 886.539 +imu_odom_: 1691062860.222630395 0.624887 -0.059855 9.9503 -0.04048 0.0181095 0.0138484 0.18 0 pose: 0.48923911 1.31961 -3.90766 0 0.00344805 -0.00338963 0.999866 -0.0156236 uwb: 0.0 1233.15 886.539 +imu_odom_: 1691062860.237573640 0.47884 -0.40462 9.52174 -0.0703074 -0.04048 0.04048 0.18 0 pose: 0.0 1.31961 -3.90766 0 0.00344805 -0.00338963 0.999866 -0.0156236 uwb: 0.0 1233.15 886.539 +imu_odom_: 1691062860.263590233 0.454898 -0.35913 9.76116 -0.0500674 -0.0149137 0.0223706 0.18 -0.02 pose: 0.37975097 1.31137 -3.90201 0 0.00443976 -0.00426084 0.999862 -0.0154124 uwb: 0.49927185 1233.12 887.303 +imu_odom_: 1691062860.280701017 0.73502 -0.155623 10.2304 -0.0543285 0 0.0575243 0.18 -0.02 pose: 0.0 1.31137 -3.90201 0 0.00443976 -0.00426084 0.999862 -0.0154124 uwb: 0.0 1233.12 887.303 +imu_odom_: 1691062860.305569386 0.842759 -0.213084 9.94312 -0.0319579 -0.0319579 0.0330232 0.18 -0.05 pose: 0.8017445 1.31137 -3.90201 0 0.00411506 -0.00495264 0.999861 -0.0153484 uwb: 0.50011472 1232.6 887.804 +imu_odom_: 1691062860.328695441 0.409408 -0.107739 10.1562 -0.0500674 -0.0106526 0.0532632 0.23 0 pose: 0.0 1.31137 -3.90201 0 0.00411506 -0.00495264 0.999861 -0.0153484 uwb: 0.0 1232.6 887.804 +imu_odom_: 1691062860.354746449 1.05345 -0.110133 9.78031 -0.0447411 -0.0138484 0.0436758 0.25 0.02 pose: 0.83104356 1.29746 -3.90459 0 0.00611931 -0.00246816 0.99986 -0.015402 uwb: 0.0 1232.6 887.804 +imu_odom_: 1691062860.370669636 0.452504 -0.277727 9.6223 -0.0735032 0.0298274 0.0617853 0.25 0.02 pose: 0.0 1.29746 -3.90459 0 0.00611931 -0.00246816 0.99986 -0.015402 uwb: 0.0 1232.6 887.804 +imu_odom_: 1691062860.396736976 0.208296 -0.366313 10.082 -0.0585895 -0.015979 0.0426106 0.18 0 pose: 0.33999332 1.28356 -3.90717 0 0.00783778 -0.00185511 0.999847 -0.0155359 uwb: 0.100055316 1232.51 888.598 +imu_odom_: 1691062860.421543516 0.442927 -0.241814 10.2304 -0.0798948 -0.00106526 0.0639159 0.18 -0.02 pose: 0.0 1.28356 -3.90717 0 0.00783778 -0.00185511 0.999847 -0.0155359 uwb: 0.0 1232.51 888.598 +imu_odom_: 1691062860.438523641 0.512359 -0.131681 10.1155 -0.0575243 -0.0181095 0.0447411 0.18 -0.02 pose: 0.41909740 1.28356 -3.90717 0 0.00394542 -0.00269147 0.999864 -0.0157729 uwb: 0.0 1232.51 888.598 +imu_odom_: 1691062860.463724490 0.545878 -0.150835 10.1347 -0.0735032 0.0394148 0.0436758 0.18 0.02 pose: 0.0 1.28356 -3.90717 0 0.00394542 -0.00269147 0.999864 -0.0157729 uwb: 0.49988140 1232.21 889.49 +imu_odom_: 1691062860.486689555 0.641646 -0.31364 9.56962 -0.0553937 -0.0181095 0.0319579 0.18 0.02 pose: 0.42068690 1.27531 -3.90152 0 0.00373597 4.80464e-05 0.999865 -0.016031 uwb: 0.0 1232.21 889.49 +imu_odom_: 1691062860.512712856 0.610521 -0.222661 9.84017 -0.0628506 0.00745685 0.0426106 0.25 0.02 pose: 0.40016352 1.26429 -3.90609 0 0.00656297 -0.0002843360.999851 -0.015981 uwb: 0.49811692 1231.78 889.693 +imu_odom_: 1691062860.536658446 0.505177 0.0502782 10.0461 -0.0639159 0.0149137 0.0340885 0.25 0.02 pose: 0.8075482 1.26141 -3.90412 0 0.0073247 -0.0003073360.999845 -0.0159927 uwb: 0.0 1231.78 889.693 +imu_odom_: 1691062860.553596573 0.555455 -0.442927 10.1634 -0.0777643 0.015979 0.056459 0.18 0.02 pose: 0.0 1.26141 -3.90412 0 0.0073247 -0.0003073360.999845 -0.0159927 uwb: 0.50020221 1231.76 890.694 +imu_odom_: 1691062860.578581019 0.849942 -0.337582 10.0844 -0.04048 -0.0500674 0.0351537 0.18 0.02 pose: 0.49809068 1.25576 -3.91237 0 0.0080075 0.000953757 0.999839 -0.016004 uwb: 0.0 1231.76 890.694 +imu_odom_: 1691062860.604590321 0.984017 -0.186748 10.1921 -0.056459 -0.0351537 0.0500674 0.2 0 pose: 0.34006914 1.24751 -3.90672 0 0.0107876 -0.0007709750.999813 -0.0160397 uwb: 0.49979974 1231.26 891.178 +imu_odom_: 1691062860.628654904 0.770933 -0.258574 10.1227 -0.0447411 -0.04048 0.0351537 0.2 0 pose: 0.8018028 1.24751 -3.90672 0 0.0117056 -0.0006584020.999802 -0.0160797 uwb: 0.0 1231.26 891.178 +imu_odom_: 1691062860.645594781 0.241814 -0.438139 9.67497 -0.0660464 0.0170442 0.0511327 0.19 0.02 pose: 0.0 1.24751 -3.90672 0 0.0117056 -0.0006584020.999802 -0.0160797 uwb: 0.50118216 1231.22 891.934 +imu_odom_: 1691062860.670649222 0.294487 -0.435745 9.55765 -0.0458064 -0.0255663 0.0415453 0.19 0.02 pose: 0.49998056 1.23361 -3.90933 0 0.0156776 -0.00136966 0.999745 -0.0161782 uwb: 0.0 1231.22 891.934 +imu_odom_: 1691062860.696521157 0.471658 -0.471658 9.63666 -0.0596548 -0.0117179 0.0479369 0.23 0.02 pose: 0.34052119 1.23361 -3.90933 0 0.0127744 -0.0027661 0.999782 -0.0162839 uwb: 0.49958683 1230.9 892.818 +imu_odom_: 1691062860.719518595 0.172383 -0.201113 9.91918 -0.0490022 0.00532632 0.0394148 0.23 0.02 pose: 0.8078691 1.23361 -3.90933 0 0.0122848 -0.00340282 0.999785 -0.016327 uwb: 0.0 1230.9 892.818 +imu_odom_: 1691062860.745576019 0.272939 -0.23942 10.4579 -0.0340885 0.02024 0.0372843 0.19 0 pose: 0.40790682 1.22161 -3.90917 0 0.00885375 -0.00421683 0.999817 -0.0164255 uwb: 0.50035095 1230.59 893.941 +imu_odom_: 1691062860.769652851 0.61531 -0.198719 10.1658 -0.0532632 -0.0117179 0.0532632 0.25 0.02 pose: 0.0 1.22161 -3.90917 0 0.00885375 -0.00421683 0.999817 -0.0164255 uwb: 0.0 1230.59 893.941 +imu_odom_: 1691062860.786511358 0.311246 -0.433351 9.70609 -0.0532632 -0.0106526 0.0511327 0.25 0.02 pose: 0.33100759 1.21146 -3.9063 0 0.00650459 -0.00295488 0.999839 -0.0164471 uwb: 0.0 1230.59 893.941 +imu_odom_: 1691062860.802570163 0.488417 -0.237026 10.0556 -0.0660464 -0.0575243 0.04048 0.25 0.02 pose: 0.0 1.21146 -3.9063 0 0.00650459 -0.00295488 0.999839 -0.0164471 uwb: 0.49987557 1230.99 895.457 +imu_odom_: 1691062860.827500070 0.411803 -0.198719 10.1442 -0.0575243 -0.0788296 0.0490022 0.19 -0.02 pose: 0.49950809 1.21146 -3.9063 0 0.00568003 -0.00186755 0.999843 -0.0166658 uwb: 0.0 1230.99 895.457 +imu_odom_: 1691062860.851657689 0.296881 -0.0790087 10.0269 -0.0426106 0.02024 0.036219 0.19 -0.02 pose: 0.7028461 1.21146 -3.9063 0 0.00531496 -0.00155294 0.999845 -0.0166988 uwb: 0.50132506 1231.02 896.659 +imu_odom_: 1691062860.876551723 0.766145 -0.160412 9.87848 -0.0511327 0.00426106 0.0468716 0.23 0 pose: 0.42059065 1.19756 -3.90892 0 0.00216437 0.000860665 0.999857 -0.0167377 uwb: 0.0 1231.02 896.659 +imu_odom_: 1691062860.899522621 0.797269 -0.253785 9.73722 -0.0585895 0.0234358 0.052198 0.19 0 pose: 0.0 1.19756 -3.90892 0 0.00216437 0.000860665 0.999857 -0.0167377 uwb: 0.49875855 1231.14 897.572 +imu_odom_: 1691062860.925539214 0.296881 -0.0646434 9.88805 -0.0426106 0.00319579 0.0436758 0.19 0 pose: 0.32029531 1.1893 -3.90328 0 0.00513201 0.00110484 0.999844 -0.0168764 uwb: 0.0 1231.14 897.572 +imu_odom_: 1691062860.949538467 0.189142 0.134075 9.87369 -0.0511327 0.0106526 0.0607201 0.25 0 pose: 0.0 1.1893 -3.90328 0 0.00513201 0.00110484 0.999844 -0.0168764 uwb: 0.49990181 1230.73 897.753 +imu_odom_: 1691062860.965651518 0.88346 -0.392649 10.058 -0.0585895 0.00213053 0.056459 0.25 0 pose: 0.49988723 1.18366 -3.91155 0 0.00346929 0.00282584 0.999844 -0.0171066 uwb: 0.0 1230.73 897.753 +imu_odom_: 1691062860.981699240 0.287304 0.00718261 9.92157 -0.0585895 -0.00106526 0.0543285 0.25 0 pose: 0.0 1.18366 -3.91155 0 0.00346929 0.00282584 0.999844 -0.0171066 uwb: 0.0 1230.73 897.753 +imu_odom_: 1691062860.999662224 0.282516 -0.339977 9.63666 -0.0681769 -0.0170442 0.0500674 0.18 0.02 pose: 0.39985437 1.1754 -3.90591 0 0.00295356 0.0036592 0.999836 -0.0174662 uwb: 0.49787777 1230.82 898.434 +imu_odom_: 1691062861.23479489 0.31364 -0.306458 9.68455 -0.0553937 0.0245011 0.0287621 0.18 0.02 pose: 0.0 1.1754 -3.90591 0 0.00295356 0.0036592 0.999836 -0.0174662 uwb: 0.0 1230.82 898.434 +imu_odom_: 1691062861.49510081 0.593762 -0.457293 10.0628 -0.0607201 -0.0745685 0.0479369 0.18 0.02 pose: 0.33896671 1.16151 -3.90856 0 0.00072592 0.00201076 0.999843 -0.0175711 uwb: 0.49960434 1231.11 899.987 +imu_odom_: 1691062861.72500520 0.323217 -0.229843 10.1418 -0.0468716 -0.0191748 0.0436758 0.18 0.02 pose: 0.0 1.16151 -3.90856 0 0.00072592 0.00201076 0.999843 -0.0175711 uwb: 0.0 1231.11 899.987 +imu_odom_: 1691062861.89500186 0.011971 0.059855 10.0149 -0.0607201 -0.0298274 0.0575243 0.19 0 pose: 0.48961826 1.16151 -3.90856 0 0.00141441 -0.00124044 0.999843 -0.0176082 uwb: 0.50098968 1230.9 900.559 +imu_odom_: 1691062861.112482166 0.701501 -0.150835 10.0293 -0.0394148 -0.0255663 0.0298274 0.19 0 pose: 0.0 1.16151 -3.90856 0 0.00141441 -0.00124044 0.999843 -0.0176082 uwb: 0.0 1230.9 900.559 +imu_odom_: 1691062861.136481420 0.56982 -0.205901 9.99579 -0.0607201 -0.0149137 0.0447411 0.19 0 pose: 0.39997104 1.14761 -3.9112 0 -0.0004555240.000130101 0.999842 -0.0177632 uwb: 0.0 1230.9 900.559 +imu_odom_: 1691062861.152485103 0.42138 -0.100556 10.1466 -0.0436758 -0.0330232 0.0319579 0.19 0 pose: 0.0 1.14761 -3.9112 0 -0.0004555240.000130101 0.999842 -0.0177632 uwb: 0.49992223 1230.68 900.891 +imu_odom_: 1691062861.169533183 0.536301 -0.270545 10.094 -0.0458064 0.00319579 0.0372843 0.25 0 pose: 0.46987942 1.13934 -3.90558 0 0.00355457 0.00118778 0.999836 -0.0177194 uwb: 0.0 1230.68 900.891 +imu_odom_: 1691062861.195554734 0.505177 -0.0383072 9.89045 -0.0468716 -0.0500674 0.0490022 0.25 0 pose: 0.0 1.13934 -3.90558 0 0.00355457 0.00118778 0.999836 -0.0177194 uwb: 0.50128133 1230.68 901.845 +imu_odom_: 1691062861.218532049 1.59693 -0.229843 11.4946 -0.0735032 -0.0841559 0.0607201 0.19 0.02 pose: 0.52049811 1.12769 -3.90975 0 0.00504885 0.00344332 0.999823 -0.0177812 uwb: 0.0 1230.68 901.845 +imu_odom_: 1691062861.242479389 1.72861 -0.174777 8.9208 -0.0617853 0.0639159 0.0458064 0.19 0.02 pose: 0.0 1.12769 -3.90975 0 0.00504885 0.00344332 0.999823 -0.0177812 uwb: 0.49933019 1230.92 903.639 +imu_odom_: 1691062861.268635391 1.4437 -0.277727 9.62948 -0.0660464 -0.00745685 0.0532632 0.26 -0.02 pose: 0.6999880 1.12545 -3.90823 0 0.00602856 0.00333766 0.999817 -0.0178565 uwb: 0.0 1230.92 903.639 +imu_odom_: 1691062861.294505576 0.773327 -0.0454898 9.78271 -0.0596548 0.0106526 0.0298274 0.19 0.02 pose: 0.48116043 1.11984 -3.91651 0 0.0106764 0.00288199 0.999774 -0.0181704 uwb: 0.50100717 1231.15 905.433 +imu_odom_: 1691062861.317561927 0.811634 -0.481235 9.47386 -0.052198 -0.0255663 0.0319579 0.19 0.02 pose: 0.0 1.11984 -3.91651 0 0.0106764 0.00288199 0.999774 -0.0181704 uwb: 0.0 1231.15 905.433 +imu_odom_: 1691062861.334497431 0.54109 -0.201113 10.1323 -0.0255663 -0.0149137 0.0255663 0.19 0.02 pose: 0.25988303 1.11156 -3.91089 0 0.0129996 0.00312409 0.999744 -0.0182543 uwb: 0.0 1231.15 905.433 +imu_odom_: 1691062861.359558872 0.519542 -0.177171 9.94312 -0.0511327 -0.0106526 0.0639159 0.25 0 pose: 0.47901097 1.10328 -3.90528 0 0.0146391 0.00226459 0.999727 -0.0180525 uwb: 0.49864482 1231.05 906.181 +imu_odom_: 1691062861.386551616 0.294487 -0.191536 9.14346 -0.0468716 0.00532632 0.0500674 0.23 0 pose: 0.34998815 1.09767 -3.91355 0 0.0112853 0.00221869 0.999767 -0.0182871 uwb: 0.0 1231.05 906.181 +imu_odom_: 1691062861.402484429 0.533907 -0.411803 10.1897 -0.0575243 -0.0255663 0.056459 0.23 0 pose: 0.0 1.09767 -3.91355 0 0.0112853 0.00221869 0.999767 -0.0182871 uwb: 0.49989891 1230.98 907.147 +imu_odom_: 1691062861.428685053 0.746991 -0.0957681 10.1538 -0.0607201 -0.036219 0.052198 0.23 0.02 pose: 0.7098749 1.09767 -3.91355 0 0.0105414 0.0022048 0.999774 -0.0183238 uwb: 0.0 1230.98 907.147 +imu_odom_: 1691062861.453482260 0.42138 -0.258574 10.2807 -0.0660464 0.0106526 0.0490022 0.23 0.02 pose: 0.0 1.09767 -3.91355 0 0.0105414 0.0022048 0.999774 -0.0183238 uwb: 0.50168088 1231.24 908.681 +imu_odom_: 1691062861.470621043 0.304064 -0.117316 9.18655 -0.0660464 0.0266316 0.0415453 0.21 -0.02 pose: 0.43922998 1.08939 -3.90794 0 0.00919577 0.000999558 0.999784 -0.0186207 uwb: 0.0 1231.24 908.681 +imu_odom_: 1691062861.496642594 0.543484 -0.378284 9.78271 -0.072438 0.00426106 0.0553937 0.21 -0.02 pose: 0.0 1.08939 -3.90794 0 0.00919577 0.000999558 0.999784 -0.0186207 uwb: 0.49814609 1231.18 910.098 +imu_odom_: 1691062861.523466182 0.691924 -0.339977 9.33978 -0.0713727 0 0.0479369 0.23 0 pose: 0.50943584 1.0755 -3.91062 0 0.00762693 0.00107064 0.999793 -0.0188535 uwb: 0.0 1231.18 910.098 +imu_odom_: 1691062861.548485043 0.387861 -0.1652 9.7851 -0.0415453 -0.00213053 0.0340885 0.23 0 pose: 0.0 1.0755 -3.91062 0 0.00762693 0.00107064 0.999793 -0.0188535 uwb: 0.50132216 1231.41 911.865 +imu_odom_: 1691062861.573615897 0.220267 -0.299275 10.2735 -0.0607201 -0.0553937 0.0532632 0.21 0 pose: 0.43147794 1.0755 -3.91062 0 0.00741549 -0.00197999 0.999788 -0.0191155 uwb: 0.0 1231.41 911.865 +imu_odom_: 1691062861.596472468 0.342371 -0.189142 10.2232 -0.0500674 -0.0340885 0.0298274 0.18 0 pose: 0.50870088 1.06162 -3.91331 0 0.00630113 -0.00176571 0.999795 -0.0191753 uwb: 0.50032180 1231.7 913.371 +imu_odom_: 1691062861.612520773 0.529119 -0.172383 9.7444 -0.0585895 -0.00106526 0.0490022 0.18 0 pose: 0.0 1.06162 -3.91331 0 0.00630113 -0.00176571 0.999795 -0.0191753 uwb: 0.0 1231.7 913.371 +imu_odom_: 1691062861.629574394 0.720655 -0.490811 9.87608 -0.0575243 -0.00532632 0.0436758 0.18 0 pose: 0.0 1.06162 -3.91331 0 0.00630113 -0.00176571 0.999795 -0.0191753 uwb: 0.0 1231.7 913.371 +imu_odom_: 1691062861.653459613 0.383072 -0.342371 9.62469 -0.0415453 -0.0138484 0.0479369 0.18 0.02 pose: 0.74032309 1.04773 -3.916 0 0.00542603 -0.00132376 0.999798 -0.019305 uwb: 0.49832983 1231.75 914.27 +imu_odom_: 1691062861.680590891 0.866701 -0.179565 10.173 -0.0394148 -0.00319579 0.0319579 0.18 0.02 pose: 0.7905160 1.04773 -3.916 0 0.00486035 -0.00178217 0.9998 -0.019342 uwb: 0.0 1231.75 914.27 +imu_odom_: 1691062861.705612377 0.694318 -0.177171 9.71088 -0.0543285 -0.00639159 0.0479369 0.2 0 pose: 0.43111337 1.03945 -3.9104 0 0.00632846 -0.00182446 0.999792 -0.0193043 uwb: 0.50143007 1231.53 914.352 +imu_odom_: 1691062861.731636261 0.299275 -0.191536 10.0485 -0.0394148 -0.00426106 0.0447411 0.21 0.02 pose: 0.0 1.03945 -3.9104 0 0.00632846 -0.00182446 0.999792 -0.0193043 uwb: 0.0 1231.53 914.352 +imu_odom_: 1691062861.754547079 0.37589 -0.117316 9.95748 -0.0596548 -0.00319579 0.0692422 0.21 0.02 pose: 0.33043888 1.03385 -3.91869 0 0.00782898 -0.0005933910.999781 -0.0194189 uwb: 0.49947018 1231.56 915.032 +imu_odom_: 1691062861.771607408 0.794875 -0.471658 9.72764 -0.0426106 0.00213053 0.0351537 0.21 0.02 pose: 0.0 1.03385 -3.91869 0 0.00782898 -0.0005933910.999781 -0.0194189 uwb: 0.0 1231.56 915.032 +imu_odom_: 1691062861.788703902 0.426168 -0.160412 9.87848 -0.0383495 0.00106526 0.0426106 0.19 0 pose: 0.48856833 1.02556 -3.9131 0 0.0047139 0.000562162 0.999793 -0.0197838 uwb: 0.0 1231.56 915.032 +imu_odom_: 1691062861.804462308 0.296881 -0.196325 10.3142 -0.036219 -0.056459 0.0479369 0.19 0 pose: 0.0 1.02556 -3.9131 0 0.0047139 0.000562162 0.999793 -0.0197838 uwb: 0.49775237 1231.13 914.961 +imu_odom_: 1691062861.829643617 0.457293 -0.0550666 9.59596 -0.0319579 0.00958738 0.0287621 0.2 0 pose: 0.41970696 1.01168 -3.91581 0 0.00273019 0.00121166 0.999798 -0.0198532 uwb: 0.0 1231.13 914.961 +imu_odom_: 1691062861.855629587 0.433351 -0.225055 9.67497 -0.0575243 -0.0266316 0.0553937 0.2 0 pose: 0.0 1.01168 -3.91581 0 0.00273019 0.00121166 0.999798 -0.0198532 uwb: 0.50000681 1230.94 915.26 +imu_odom_: 1691062861.880654864 0.471658 -0.100556 9.86172 -0.147006 0.0383495 0.0809601 0.19 0 pose: 0.8020361 1.01168 -3.91581 0 0.00266826 0.00210796 0.999798 -0.0198079 uwb: 0.0 1230.94 915.26 +imu_odom_: 1691062861.906450388 0.454898 -0.739808 9.52892 -0.02024 -0.0117179 0.00745685 0.22 0 pose: 0.51079785 1.00339 -3.91022 0 0.00232709 0.0018609 0.999794 -0.0200816 uwb: 0.50255875 1230.61 915.608 +imu_odom_: 1691062861.922501609 0.35913 0.0766145 9.67736 -0.0575243 0.0319579 0.015979 0.22 0 pose: 0.0 1.00339 -3.91022 0 0.00232709 0.0018609 0.999794 -0.0200816 uwb: 0.0 1230.61 915.608 +imu_odom_: 1691062861.949461981 0.426168 -0.732626 9.35415 -0.0532632 0.0234358 0.0660464 0.22 0 pose: 0.25042776 0.997807 -3.91852 0 0.00243948 0.00207699 0.999789 -0.0203052 uwb: 0.50029847 1230.54 917 +imu_odom_: 1691062861.973500607 0.464475 -0.155623 9.80665 -0.0426106 0.00319579 0.04048 0.24 -0.02 pose: 0.41050250 0.989508 -3.91294 0 0.00163014 0.00138917 0.999799 -0.0199264 uwb: 0.0 1230.54 917 +imu_odom_: 1691062861.999467912 0.869095 -0.497994 10.1658 -0.0713727 -0.052198 0.0511327 0.21 0.02 pose: 0.43845127 0.980293 -3.91474 0 0.00229753 0.00174984 0.999792 -0.0201998 uwb: 0.50014389 1231.18 918.588 +imu_odom_: 1691062862.15451471 0.129287 -0.392649 9.63427 -0.0372843 0.0543285 0.0553937 0.21 0.02 pose: 0.0 0.980293 -3.91474 0 0.00229753 0.00174984 0.999792 -0.0201998 uwb: 0.0 1231.18 918.588 +imu_odom_: 1691062862.40574160 0.31364 -0.162806 9.69412 -0.0575243 -0.0276969 0.0511327 0.22 0 pose: 0.8083358 0.975628 -3.91565 0 0.00314672 0.00121387 0.999789 -0.0202482 uwb: 0.49864482 1231.34 920.117 +imu_odom_: 1691062862.63436273 0.514753 -0.268151 9.6199 -0.0852212 0.0170442 0.0511327 0.22 0 pose: 0.0 0.975628 -3.91565 0 0.00314672 0.00121387 0.999789 -0.0202482 uwb: 0.0 1231.34 920.117 +imu_odom_: 1691062862.87528272 0.351948 -0.407014 9.39006 -0.0596548 -0.00745685 0.0330232 0.2 -0.02 pose: 0.40938549 0.975628 -3.91565 0 0.00255174 -0.0002978720.999786 -0.0205264 uwb: 0.0 1231.34 920.117 +imu_odom_: 1691062862.104527938 0.258574 -0.189142 10.3094 -0.0500674 -0.0223706 0.052198 0.2 -0.02 pose: 0.0 0.975628 -3.91565 0 0.00255174 -0.0002978720.999786 -0.0205264 uwb: 0.50028973 1231.3 921.257 +imu_odom_: 1691062862.129596088 0.656011 -0.0263362 10.1778 -0.0607201 -0.0266316 0.0340885 0.18 0 pose: 0.48920121 0.961753 -3.91838 0 0.00239779 -0.00191574 0.99978 -0.0207394 uwb: 0.0 1231.3 921.257 +imu_odom_: 1691062862.156638705 -0.25618 -0.186748 9.94312 -0.0596548 -0.0266316 0.0596548 0.18 0 pose: 0.0 0.961753 -3.91838 0 0.00239779 -0.00191574 0.99978 -0.0207394 uwb: 0.49976184 1231.26 922.619 +imu_odom_: 1691062862.181499492 -0.146046 -0.316035 10.0892 -0.0458064 0.0245011 0.0266316 0.21 0 pose: 0.41006795 0.953448 -3.91281 0 0.000906176 -0.00198145 0.999782 -0.0207801 uwb: 0.0 1231.26 922.619 +imu_odom_: 1691062862.197422096 0.483629 -0.220267 10.1682 -0.0617853 -0.0330232 0.0511327 0.21 0 pose: 0.0 0.953448 -3.91281 0 0.000906176 -0.00198145 0.999782 -0.0207801 uwb: 0.0 1231.26 922.619 +imu_odom_: 1691062862.213523774 0.517148 -0.311246 9.46907 -0.0351537 -0.00319579 0.0372843 0.18 0.02 pose: 0.52022397 0.939573 -3.91555 0 -0.00097456 -0.0008479590.99978 -0.0209533 uwb: 0.0 1231.26 922.619 +imu_odom_: 1691062862.240504269 0.514753 -0.45011 9.27514 -0.0639159 0.0181095 0.0426106 0.18 0.02 pose: 0.0 0.939573 -3.91555 0 -0.00097456 -0.0008479590.99978 -0.0209533 uwb: 0.99908621 1231.33 923.718 +imu_odom_: 1691062862.256441165 0.565032 -0.217872 9.80426 -0.0394148 -0.0383495 0.04048 0.2 0 pose: 0.41075041 0.939573 -3.91555 0 -0.00038453 -0.00123729 0.99978 -0.0209249 uwb: 0.0 1231.33 923.718 +imu_odom_: 1691062862.282559253 0.603339 0.0143652 10.4603 -0.0692422 -0.0138484 0.0553937 0.2 0 pose: 0.0 0.939573 -3.91555 0 -0.00038453 -0.00123729 0.99978 -0.0209249 uwb: 0.0 1231.33 923.718 +imu_odom_: 1691062862.308469687 0.651223 -0.131681 10.0173 -0.0628506 -0.0351537 0.036219 0.19 0 pose: 0.43024135 0.925699 -3.91829 0 0.00212825 -0.00357429 0.999772 -0.0209544 uwb: 0.50013807 1231.17 923.77 +imu_odom_: 1691062862.324491160 0.35913 -0.304064 9.6223 -0.0585895 0.00745685 0.0394148 0.19 0 pose: 0.0 0.925699 -3.91829 0 0.00212825 -0.00357429 0.999772 -0.0209544 uwb: 0.0 1231.17 923.77 +imu_odom_: 1691062862.350562293 0.407014 -0.418985 9.84496 -0.0585895 -0.0585895 0.0319579 0.2 0 pose: 0.41941240 0.917392 -3.91272 0 0.00494002 -0.0005100740.999764 -0.0211354 uwb: 0.49907646 1231.5 925.225 +imu_odom_: 1691062862.367487589 -0.0215478 0.023942 10.0221 -0.0479369 0.0213053 0.0553937 0.2 0 pose: 0.0 0.917392 -3.91272 0 0.00494002 -0.0005100740.999764 -0.0211354 uwb: 0.0 1231.5 925.225 +imu_odom_: 1691062862.383479314 0.543484 -0.435745 9.48822 -0.0468716 -0.0319579 0.0340885 0.19 0 pose: 0.41995779 0.911827 -3.92103 0 0.00511656 -0.00115558 0.999764 -0.0210766 uwb: 0.0 1231.5 925.225 +imu_odom_: 1691062862.399409502 0.553061 -0.124498 10.2424 -0.0298274 -0.00639159 0.0319579 0.19 0 pose: 0.0 0.911827 -3.92103 0 0.00511656 -0.00115558 0.999764 -0.0210766 uwb: 0.0 1231.5 925.225 +imu_odom_: 1691062862.415401519 0.641646 -0.306458 9.90002 -0.0703074 0.0127832 0.0671117 0.19 0 pose: 0.0 0.911827 -3.92103 0 0.00511656 -0.00115558 0.999764 -0.0210766 uwb: 0.0 1231.5 925.225 +imu_odom_: 1691062862.432486055 0.148441 -0.596156 9.72046 -0.0436758 0.0234358 0.0426106 0.23 0 pose: 0.82893497 0.893558 -3.92083 0 0.00602123 -0.00230791 0.999753 -0.0212619 uwb: 0.0 1231.5 925.225 +imu_odom_: 1691062862.448485655 0.371101 -0.0311246 10.1634 -0.04048 -0.0106526 0.0383495 0.23 0 pose: 0.7094957 0.889644 -3.91821 0 0.00540668 -0.00275609 0.999755 -0.0212768 uwb: 0.100067861 1231.68 926.503 +imu_odom_: 1691062862.464420801 0.493206 -0.172383 9.84496 -0.0649811 0.0372843 0.052198 0.23 0 pose: 0.0 0.889644 -3.91821 0 0.00540668 -0.00275609 0.999755 -0.0212768 uwb: 0.0 1231.68 926.503 +imu_odom_: 1691062862.480546977 0.0790087 -0.318429 9.92157 -0.0351537 0.0117179 0.0372843 0.18 0 pose: 0.41924325 0.889644 -3.91821 0 0.00381076 -0.0003495160.999764 -0.0213778 uwb: 0.0 1231.68 926.503 +imu_odom_: 1691062862.497427359 0.577003 -0.21069 9.71567 -0.0713727 -0.00319579 0.056459 0.23 -0.02 pose: 0.0 0.889644 -3.91821 0 0.00381076 -0.0003495160.999764 -0.0213778 uwb: 0.50267251 1231.89 927.327 +imu_odom_: 1691062862.513433375 0.363919 -0.217872 9.68215 -0.076699 0.0149137 0.0628506 0.23 -0.02 pose: 0.0 0.889644 -3.91821 0 0.00381076 -0.0003495160.999764 -0.0213778 uwb: 0.0 1231.89 927.327 +imu_odom_: 1691062862.529471181 0.713472 -0.339977 9.7851 -0.0532632 -0.02024 0.04048 0.23 -0.02 pose: 0.23256715 0.889644 -3.91821 0 0.00282227 -0.0005536310.999766 -0.0214215 uwb: 0.0 1231.89 927.327 +imu_odom_: 1691062862.545538736 0.667982 -0.198719 9.75637 -0.0756338 -0.00745685 0.0639159 0.25 0.02 pose: 0.0 0.889644 -3.91821 0 0.00282227 -0.0005536310.999766 -0.0214215 uwb: 0.49865357 1232.2 928.787 +imu_odom_: 1691062862.562536069 0.189142 -0.402226 9.60075 -0.0692422 -0.00532632 0.0575243 0.25 0.02 pose: 0.0 0.889644 -3.91821 0 0.00282227 -0.0005536310.999766 -0.0214215 uwb: 0.0 1232.2 928.787 +imu_odom_: 1691062862.578474131 0.814029 -0.105345 10.1083 -0.076699 -0.0330232 0.04048 0.18 0 pose: 0.49870607 0.875773 -3.92096 0 0.00445909 -0.0010598 0.999752 -0.0217925 uwb: 0.0 1232.2 928.787 +imu_odom_: 1691062862.594545477 0.411803 -0.107739 9.73243 -0.0628506 0.0213053 0.0511327 0.18 0 pose: 0.0 0.875773 -3.92096 0 0.00445909 -0.0010598 0.999752 -0.0217925 uwb: 0.0 1232.2 928.787 +imu_odom_: 1691062862.611560017 0.158017 -0.354342 10.0149 -0.0639159 -0.0170442 0.0426106 0.18 0 pose: 0.0 0.875773 -3.92096 0 0.00445909 -0.0010598 0.999752 -0.0217925 uwb: 0.0 1232.2 928.787 +imu_odom_: 1691062862.628558225 0.746991 -0.126893 9.87608 -0.0468716 -0.0553937 0.0287621 0.25 0 pose: 0.33000433 0.867455 -3.91541 0 0.00462483 -0.00165746 0.999745 -0.0220464 uwb: 0.0 1232.2 928.787 +imu_odom_: 1691062862.645434232 0.950498 -0.148441 9.72285 -0.0639159 -0.0575243 0.0671117 0.16 0 pose: 0.0 0.867455 -3.91541 0 0.00462483 -0.00165746 0.999745 -0.0220464 uwb: 0.99866623 1232.21 929.89 +imu_odom_: 1691062862.661561867 1.23301 -0.258574 9.97424 -0.052198 -0.00106526 0.0948085 0.16 0 pose: 0.65988908 0.853586 -3.91818 0 0.00585968 -9.76887e-050.999737 -0.0221765 uwb: 0.0 1232.21 929.89 +imu_odom_: 1691062862.679471771 1.53947 -0.45011 9.60075 -0.0607201 -0.0213053 0.106526 0.14 -0.02 pose: 0.0 0.853586 -3.91818 0 0.00585968 -9.76887e-050.999737 -0.0221765 uwb: 0.0 1232.21 929.89 +imu_odom_: 1691062862.695473996 1.16119 -0.342371 9.06684 -0.0575243 0.02024 0.0532632 0.14 -0.02 pose: 0.0 0.853586 -3.91818 0 0.00585968 -9.76887e-050.999737 -0.0221765 uwb: 0.49985517 1231.73 930.257 +imu_odom_: 1691062862.711538634 1.00078 0.0023942 10.0245 -0.0458064 0.0585895 0.0266316 0.14 -0.02 pose: 0.33035723 0.853586 -3.91818 0 0.00941283 -0.0001999860.999691 -0.0230125 uwb: 0.0 1231.73 930.257 +imu_odom_: 1691062862.727464155 0.514753 -0.134075 9.67976 -0.0617853 0.00319579 0.0234358 0.11 0 pose: 0.41965447 0.839723 -3.92098 0 0.0126658 0.000238302 0.999647 -0.0233404 uwb: 0.0 1231.73 930.257 +imu_odom_: 1691062862.743394634 0.64404 -0.265756 9.87129 -0.0511327 -0.00958738 0.00426106 0.11 0 pose: 0.7931117 0.839723 -3.92098 0 0.0119542 0.00061764 0.999658 -0.023271 uwb: 0.50145632 1231.56 930.75 +imu_odom_: 1691062862.760439215 0.73502 -0.454898 9.81144 -0.0532632 -0.0276969 -0.00213053 0.11 0 pose: 0.0 0.839723 -3.92098 0 0.0119542 0.00061764 0.999658 -0.023271 uwb: 0.0 1231.56 930.75 +imu_odom_: 1691062862.776437356 1.00078 -0.217872 9.78031 -0.0628506 -0.0223706 0.00745685 0.13 -0.02 pose: 0.40969464 0.839723 -3.92098 0 0.012748 -0.00197441 0.999661 -0.0225999 uwb: 0.0 1231.56 930.75 +imu_odom_: 1691062862.791506303 1.0343 -0.1652 10.0556 -0.0511327 -0.00852212 0.0319579 0.09 -0.02 pose: 0.0 0.839723 -3.92098 0 0.012748 -0.00197441 0.999661 -0.0225999 uwb: 0.50049388 1231.14 931.316 +imu_odom_: 1691062862.807441157 0.600945 -0.385466 9.64624 -0.0479369 0.0127832 0.0383495 0.09 -0.02 pose: 0.0 0.839723 -3.92098 0 0.012748 -0.00197441 0.999661 -0.0225999 uwb: 0.0 1231.14 931.316 +imu_odom_: 1691062862.823385052 0.648829 -0.134075 10.2304 -0.0436758 -0.0276969 0.0372843 0.09 -0.02 pose: 0.22948149 0.839723 -3.92098 0 0.0151629 -0.00159897 0.999635 -0.0223057 uwb: 0.0 1231.14 931.316 +imu_odom_: 1691062862.839450857 0.871489 -0.268151 9.7037 -0.052198 -0.0255663 0.0575243 0.07 0 pose: 0.0 0.839723 -3.92098 0 0.0151629 -0.00159897 0.999635 -0.0223057 uwb: 0.49866233 1231.68 932.911 +imu_odom_: 1691062862.856398026 0.849942 -0.306458 9.89763 -0.0479369 0.00426106 0.056459 0.07 0 pose: 0.0 0.839723 -3.92098 0 0.0151629 -0.00159897 0.999635 -0.0223057 uwb: 0.0 1231.68 932.911 +imu_odom_: 1691062862.872584865 0.706289 -0.258574 9.84017 -0.0575243 -0.00745685 0.0298274 0.09 0 pose: 0.73010662 0.828282 -3.92011 0 0.0176961 -0.00181501 0.999588 -0.0225446 uwb: 0.0 1231.68 932.911 +imu_odom_: 1691062862.889520660 0.746991 -0.134075 10.0269 -0.0532632 -0.00319579 0.015979 0.09 0 pose: 0.0 0.828282 -3.92011 0 0.0176961 -0.00181501 0.999588 -0.0225446 uwb: 0.0 1231.68 932.911 +imu_odom_: 1691062862.905519385 0.715866 -0.153229 9.89763 -0.0607201 -0.0117179 0.0340885 0.09 0 pose: 0.0 0.828282 -3.92011 0 0.0176961 -0.00181501 0.999588 -0.0225446 uwb: 0.50075636 1231.58 934.033 +imu_odom_: 1691062862.931449360 0.521936 -0.320823 9.90721 -0.0500674 0.0138484 0.0436758 0.05 0.05 pose: 0.7006879 0.825859 -3.92375 0 0.017007 -0.00185326 0.9996 -0.0225124 uwb: 0.0 1231.58 934.033 +imu_odom_: 1691062862.947441960 0.342371 -0.265756 10.0533 -0.052198 0.0298274 0.0798948 0.06 0.05 pose: 0.0 0.825859 -3.92375 0 0.017007 -0.00185326 0.9996 -0.0225124 uwb: 0.49902397 1231.71 935.525 +imu_odom_: 1691062862.964385046 -0.742203 -0.4956 9.52653 -0.0607201 0.0585895 0.0181095 0.06 0.05 pose: 0.74990671 0.825859 -3.92375 0 0.0130396 -0.0001310060.999664 -0.0223901 uwb: 0.0 1231.71 935.525 +imu_odom_: 1691062862.980726460 -0.964863 0.208296 10.137 -0.036219 0.00745685 -0.12144 0.1 -0.2 pose: 0.0 0.825859 -3.92375 0 0.0130396 -0.0001310060.999664 -0.0223901 uwb: 0.0 1231.71 935.525 +imu_odom_: 1691062862.997537137 -0.533907 0.217872 9.63666 -0.0660464 -0.0532632 -0.20027 0.1 -0.2 pose: 0.0 0.825859 -3.92375 0 0.0130396 -0.0001310060.999664 -0.0223901 uwb: 0.50076803 1231.57 935.998 +imu_odom_: 1691062863.14570927 -0.0957681 -0.160412 9.62469 -0.0617853 -0.036219 -0.257794 0.1 -0.2 pose: 0.33005974 0.825859 -3.92375 0 0.00908217 -0.0004355680.99972 -0.0218322 uwb: 0.0 1231.57 935.998 +imu_odom_: 1691062863.30434910 0.430956 -0.584185 9.76595 -0.0713727 0.00213053 -0.290817 0.11 -0.38 pose: 0.43169377 0.817518 -3.91818 0 0.00553359 0.000488028 0.999848 -0.0165264 uwb: 0.0 1231.57 935.998 +imu_odom_: 1691062863.46509756 -0.0790087 -0.430956 9.73961 -0.056459 0.0436758 -0.314253 0.11 -0.38 pose: 0.7947740 0.817542 -3.9182 0 0.00535841 -0.0003491480.99987 -0.0152175 uwb: 0.49982309 1231.74 937.689 +imu_odom_: 1691062863.63412012 -0.150835 -0.0383072 10.003 -0.0394148 0.0181095 -0.348341 0.11 -0.38 pose: 0.0 0.817542 -3.9182 0 0.00535841 -0.0003491480.99987 -0.0152175 uwb: 0.0 1231.74 937.689 +imu_odom_: 1691062863.79462942 0.011971 0.0143652 9.84975 -0.0607201 -0.00106526 -0.376038 0.15 -0.61 pose: 0.40893345 0.817518 -3.91818 0 0.0014896 -0.0010362 0.999968 -0.00779716 uwb: 0.0 1231.74 937.689 +imu_odom_: 1691062863.96435486 0.186748 0.0191536 10.1299 -0.056459 0.0117179 -0.403735 0.12 -0.44 pose: 0.0 0.817518 -3.91818 0 0.0014896 -0.0010362 0.999968 -0.00779716 uwb: 0.50013808 1231.46 937.763 +imu_odom_: 1691062863.112370632 -0.0143652 -0.363919 9.52653 -0.0490022 -0.00852212 -0.430367 0.12 -0.44 pose: 0.0 0.817518 -3.91818 0 0.0014896 -0.0010362 0.999968 -0.00779716 uwb: 0.0 1231.46 937.763 +imu_odom_: 1691062863.128358274 0.37589 -0.248997 9.89284 -0.0543285 -0.0255663 -0.475108 0.12 -0.44 pose: 0.24107456 0.81207 -3.92657 0 -0.0005283740.00032339 0.999996 -0.00267616 uwb: 0.0 1231.46 937.763 +imu_odom_: 1691062863.144510991 0.373495 -0.0263362 9.71806 -0.0735032 -0.02024 -0.472977 0.13 -0.55 pose: 0.0 0.81207 -3.92657 0 -0.0005283740.00032339 0.999996 -0.00267616 uwb: 0.49876149 1231.25 938.253 +imu_odom_: 1691062863.160435637 0.323217 -0.248997 9.88326 -0.0617853 0.00532632 -0.490022 0.13 -0.55 pose: 0.0 0.81207 -3.92657 0 -0.0005283740.00032339 0.999996 -0.00267616 uwb: 0.0 1231.25 938.253 +imu_odom_: 1691062863.176376908 0.292093 -0.138864 10.0006 -0.0490022 -0.00532632 -0.535828 0.16 -0.7 pose: 0.47995010 0.80369 -3.92112 0 -0.00160068 -0.0003427770.999958 0.00899688 uwb: 0.0 1231.25 938.253 +imu_odom_: 1691062863.193506067 0.263362 -0.0215478 9.67736 -0.0479369 -0.0127832 -0.549676 0.16 -0.7 pose: 0.0 0.80369 -3.92112 0 -0.00160068 -0.0003427770.999958 0.00899688 uwb: 0.50026057 1230.93 938.338 +imu_odom_: 1691062863.209482627 0.380678 -0.0909797 10.0844 -0.0351537 -0.0479369 -0.579504 0.16 -0.7 pose: 0.0 0.80369 -3.92112 0 -0.00160068 -0.0003427770.999958 0.00899688 uwb: 0.0 1230.93 938.338 +imu_odom_: 1691062863.226370592 1.37667 -0.160412 9.64863 -0.0617853 -0.0372843 -0.54435 0.12 -0.5 pose: 0.30876642 0.80369 -3.92112 0 -0.00311355 -8.67901e-050.999847 0.0172307 uwb: 0.0 1230.93 938.338 +imu_odom_: 1691062863.242510767 1.13485 -0.351948 10.0485 -0.0639159 -0.0106526 -0.458064 0.16 -0.67 pose: 0.0 0.80369 -3.92112 0 -0.00311355 -8.67901e-050.999847 0.0172307 uwb: 0.49857776 1231.1 939.157 +imu_odom_: 1691062863.259501976 1.4054 -0.476446 10.082 -0.0436758 -0.0532632 -0.448476 0.16 -0.67 pose: 0.66985185 0.789851 -3.92404 0 -0.00014849 0.00340104 0.999319 0.0367407 uwb: 0.0 1231.1 939.157 +imu_odom_: 1691062863.276369525 1.24259 -0.167594 9.43315 -0.0553937 0.0319579 -0.412257 0.16 -0.67 pose: 0.0 0.789851 -3.92404 0 -0.00014849 0.00340104 0.999319 0.0367407 uwb: 0.0 1231.1 939.157 +imu_odom_: 1691062863.292562489 0.866701 -0.287304 9.93115 -0.0532632 0.0553937 -0.343015 0.13 -0.58 pose: 0.0 0.789851 -3.92404 0 -0.00014849 0.00340104 0.999319 0.0367407 uwb: 0.50080887 1230.86 939.65 +imu_odom_: 1691062863.309507326 0.78051 -0.512359 9.70131 -0.0639159 0.0170442 -0.272708 0.13 -0.58 pose: 0.33136342 0.789851 -3.92404 0 0.00331219 0.00255535 0.99899 0.0447276 uwb: 0.0 1230.86 939.65 +imu_odom_: 1691062863.326500285 0.981623 -0.486023 9.93594 -0.0511327 0.00213053 -0.221575 0.07 -0.32 pose: 0.42994679 0.785211 -3.92101 0 0.00596043 0.000589164 0.998594 0.0526681 uwb: 0.0 1230.86 939.65 +imu_odom_: 1691062863.342382642 0.368707 -0.380678 9.72764 -0.0447411 0.0319579 -0.194943 0.07 -0.32 pose: 0.0 0.785211 -3.92101 0 0.00596043 0.000589164 0.998594 0.0526681 uwb: 0.49884023 1230.54 939.734 +imu_odom_: 1691062863.369372762 0.459687 0.189142 10.0748 -0.0681769 -0.0575243 -0.208792 0.06 -0.29 pose: 0.8102315 0.781498 -3.91854 0 0.00659893 0.000148229 0.998534 0.0537211 uwb: 0.0 1230.54 939.734 +imu_odom_: 1691062863.385416985 0.658405 -0.071826 9.78031 -0.0649811 -0.0127832 -0.184291 0.06 -0.26 pose: 0.0 0.781498 -3.91854 0 0.00659893 0.000148229 0.998534 0.0537211 uwb: 0.0 1230.54 939.734 +imu_odom_: 1691062863.401364089 0.289698 -0.679953 9.81862 -0.056459 0.0383495 -0.229032 0.07 -0.2 pose: 0.0 0.781498 -3.91854 0 0.00659893 0.000148229 0.998534 0.0537211 uwb: 0.50144759 1230.39 940.201 +imu_odom_: 1691062863.417443309 0.100556 0.0167594 10.3118 -0.0415453 0.0351537 -0.306796 0.07 -0.2 pose: 0.74773393 0.781498 -3.91854 0 0.00715228 0.00152784 0.997998 0.0628159 uwb: 0.0 1230.39 940.201 +imu_odom_: 1691062863.434374438 -1.02472 0.464475 9.91678 -0.0543285 0.036219 -0.183225 0.11 -0.17 pose: 0.0 0.781498 -3.91854 0 0.00715228 0.00152784 0.997998 0.0628159 uwb: 0.0 1230.39 940.201 +imu_odom_: 1691062863.450357706 -0.773327 -0.797269 9.81862 -0.0777643 -0.0830906 -0.0745685 0.11 -0.17 pose: 0.33022890 0.781498 -3.91854 0 0.00391664 0.00207812 0.997697 0.0676867 uwb: 0.49897148 1229.93 939.464 +imu_odom_: 1691062863.466344183 -0.148441 -0.483629 9.72285 -0.0447411 -0.110787 -0.12144 0.11 -0.17 pose: 0.0 0.781498 -3.91854 0 0.00391664 0.00207812 0.997697 0.0676867 uwb: 0.0 1229.93 939.464 +imu_odom_: 1691062863.483337141 0.73502 -0.0047884 9.94312 -0.0394148 -0.0468716 -0.1012 0.11 -0.14 pose: 0.40938259 0.767631 -3.92132 0 0.00145931 0.00104438 0.997483 0.0708874 uwb: 0.0 1229.93 939.464 +imu_odom_: 1691062863.499393613 0.294487 -0.0670376 9.8665 -0.0671117 -0.00319579 -0.0756338 0.11 -0.14 pose: 0.8063525 0.767631 -3.92132 0 0.00235064 0.00147013 0.99744 0.0714533 uwb: 0.50024015 1230.01 939.659 +imu_odom_: 1691062863.516392405 -0.0814029 -0.237026 9.85693 -0.0447411 0.00213053 -0.107592 0.11 -0.14 pose: 0.0 0.767631 -3.92132 0 0.00235064 0.00147013 0.99744 0.0714533 uwb: 0.0 1230.01 939.659 +imu_odom_: 1691062863.532392006 -0.222661 -0.0837971 9.7875 -0.0671117 -0.0447411 -0.0948085 0.16 -0.17 pose: 0.41984697 0.767631 -3.92132 0 0.000270557 0.00275245 0.997235 0.0742602 uwb: 0.0 1230.01 939.659 +imu_odom_: 1691062863.549396339 0.483629 -0.160412 9.84256 -0.0628506 -0.0458064 -0.0745685 0.12 -0.11 pose: 0.0 0.767631 -3.92132 0 0.000270557 0.00275245 0.997235 0.0742602 uwb: 0.49986101 1229.98 940.309 +imu_odom_: 1691062863.565332651 0.593762 -0.416591 10.0844 -0.056459 -0.0181095 -0.0820254 0.12 -0.11 pose: 0.0 0.767631 -3.92132 0 0.000270557 0.00275245 0.997235 0.0742602 uwb: 0.0 1229.98 940.309 +imu_odom_: 1691062863.581329335 0.469264 -0.0670376 10.2951 -0.0479369 -0.015979 -0.0852212 0.12 -0.11 pose: 0.23947341 0.75928 -3.91582 0 -3.40085e-050.00283445 0.99712 0.075788 uwb: 0.0 1229.98 940.309 +imu_odom_: 1691062863.597543298 0.641646 -0.162806 9.79947 -0.0553937 -0.00852212 -0.0873517 0.13 -0.11 pose: 0.0 0.75928 -3.91582 0 -3.40085e-050.00283445 0.99712 0.075788 uwb: 0.49937396 1230.02 940.084 +imu_odom_: 1691062863.614554339 0.457293 -0.143652 9.67497 -0.0585895 0.00213053 -0.0735032 0.13 -0.11 pose: 0.31999201 0.75928 -3.91582 0 0.00220768 0.0019935 0.996972 0.0777011 uwb: 0.0 1230.02 940.084 +imu_odom_: 1691062863.631549922 -0.0670376 -0.349553 9.82341 -0.052198 0.0127832 -0.056459 0.19 -0.17 pose: 0.33302291 0.75928 -3.91582 0 0.00350341 0.00316079 0.996804 0.0797421 uwb: 0.0 1230.02 940.084 +imu_odom_: 1691062863.649501241 0.378284 -0.0335188 10.3621 -0.0500674 -0.0191748 -0.0671117 0.19 -0.17 pose: 0.0 0.75928 -3.91582 0 0.00350341 0.00316079 0.996804 0.0797421 uwb: 0.49982601 1230.01 940.303 +imu_odom_: 1691062863.664352617 0.940921 -0.318429 9.60314 -0.0692422 -0.0276969 -0.0447411 0.19 -0.17 pose: 0.0 0.75928 -3.91582 0 0.00350341 0.00316079 0.996804 0.0797421 uwb: 0.0 1230.01 940.303 +imu_odom_: 1691062863.680399465 0.931344 -0.244209 10.0054 -0.0628506 0.0255663 -0.00852212 0.11 -0.11 pose: 0.16923838 0.750929 -3.91032 0 0.0019218 0.00345863 0.996736 0.0806341 uwb: 0.0 1230.01 940.303 +imu_odom_: 1691062863.694415849 1.25935 -0.282516 10.4866 -0.056459 -0.0213053 0.00213053 0.11 -0.11 pose: 0.0 0.750929 -3.91032 0 0.0019218 0.00345863 0.996736 0.0806341 uwb: 0.50060472 1230.29 940.444 +imu_odom_: 1691062863.710410783 1.69749 -0.174777 9.95748 -0.052198 -0.072438 -0.0372843 0.11 -0.11 pose: 0.0 0.750929 -3.91032 0 0.0019218 0.00345863 0.996736 0.0806341 uwb: 0.0 1230.29 940.444 +imu_odom_: 1691062863.726395218 1.60651 -0.0454898 9.48822 -0.0468716 0.0117179 -0.0713727 0.09 -0.11 pose: 0.63803288 0.745417 -3.91866 0 0.00408277 0.00353258 0.996524 0.0831266 uwb: 0.0 1230.29 940.444 +imu_odom_: 1691062863.743341512 1.2809 -0.136469 9.90481 -0.0607201 -0.0106526 -0.0575243 0.09 -0.11 pose: 0.0 0.745417 -3.91866 0 0.00408277 0.00353258 0.996524 0.0831266 uwb: 0.49866525 1230.46 941.042 +imu_odom_: 1691062863.759340238 1.22823 -0.296881 10.2424 -0.0756338 0.00426106 -0.0170442 0.09 -0.11 pose: 0.31041715 0.737046 -3.91319 0 0.0077056 0.0031567 0.996409 0.0842644 uwb: 0.0 1230.46 941.042 +imu_odom_: 1691062863.775380086 0.742203 -0.632069 9.45949 -0.0447411 0.0298274 -0.0532632 0.09 -0.11 pose: 0.41930159 0.737046 -3.91319 0 0.0116993 0.00234569 0.996223 0.086011 uwb: 0.0 1230.46 941.042 +imu_odom_: 1691062863.792377128 0.363919 -0.0646434 10.0078 -0.0426106 -0.0213053 -0.0969391 0.09 -0.11 pose: 0.7008337 0.737046 -3.91319 0 0.0117005 0.00170585 0.996197 0.0863261 uwb: 0.50049389 1230.94 941.777 +imu_odom_: 1691062863.808317232 0.672771 0.213084 10.0245 -0.0660464 -0.0255663 -0.0809601 0.09 -0.11 pose: 0.0 0.737046 -3.91319 0 0.0117005 0.00170585 0.996197 0.0863261 uwb: 0.0 1230.94 941.777 +imu_odom_: 1691062863.824487739 0.835576 -0.363919 10.0844 -0.0692422 -0.00852212 -0.0607201 0.06 -0.05 pose: 0.41968657 0.737046 -3.91319 0 0.0109317 0.00322985 0.995978 0.088871 uwb: 0.0 1230.94 941.777 +imu_odom_: 1691062863.850501708 0.701501 -0.435745 9.94791 -0.0511327 0.00213053 -0.0447411 0.06 -0.02 pose: 0.0 0.737046 -3.91319 0 0.0109317 0.00322985 0.995978 0.088871 uwb: 0.50032181 1230.88 941.794 +imu_odom_: 1691062863.875465156 -0.232238 -0.287304 9.73722 -0.0596548 0.0756338 0.0351537 0.04 -0.05 pose: 0.24058168 0.737046 -3.91319 0 0.0120511 0.00109759 0.99587 0.0899836 uwb: 0.0 1230.88 941.794 +imu_odom_: 1691062863.892477364 -1.10373 -0.287304 10.1442 -0.0596548 0.0692422 0.0223706 0.04 -0.05 pose: 0.0 0.737046 -3.91319 0 0.0120511 0.00109759 0.99587 0.0899836 uwb: 0.50065430 1230.95 942.203 +imu_odom_: 1691062863.917493309 -0.603339 -0.122104 10.0078 -0.0436758 -0.0649811 -0.00426106 0.08 -0.02 pose: 0.26025635 0.728699 -3.90768 0 0.0111562 -0.0006355280.995812 0.09074 uwb: 0.0 1230.95 942.203 +imu_odom_: 1691062863.943367870 0.648829 -0.430956 9.92157 -0.0671117 -0.0351537 0.0308927 0.08 -0.02 pose: 0.42161145 0.728699 -3.90768 0 0.00589189 -0.0003508760.995824 0.091103 uwb: 0.50117635 1230.8 941.598 +imu_odom_: 1691062863.959477422 0.474052 -0.368707 9.83538 -0.0426106 0.0426106 -0.00532632 0.08 -0.02 pose: 0.0 0.728699 -3.90768 0 0.00589189 -0.0003508760.995824 0.091103 uwb: 0.0 1230.8 941.598 +imu_odom_: 1691062863.985363066 -0.148441 0.0215478 10.1562 -0.0511327 -0.0138484 0.0245011 0.11 -0.05 pose: 0.49949353 0.723178 -3.91602 0 0.00585189 -0.0030105 0.995762 0.0917297 uwb: 0.0 1230.8 941.598 +imu_odom_: 1691062864.1465910 0.0837971 -0.201113 10.0102 -0.0383495 -0.0234358 0.0223706 0.11 -0.05 pose: 0.0 0.723178 -3.91602 0 0.00585189 -0.0030105 0.995762 0.0917297 uwb: 0.49808486 1230.92 942.64 +imu_odom_: 1691062864.27657787 0.11971 -0.0502782 9.48822 -0.0639159 -0.0138484 0.0106526 0.12 -0.02 pose: 0.41859579 0.714847 -3.91049 0 0.00245456 -0.00215762 0.995737 0.0921762 uwb: 0.0 1230.92 942.64 +imu_odom_: 1691062864.53487434 0.483629 -0.205901 10.5105 -0.0511327 -0.00745685 0.0191748 0.12 -0.02 pose: 0.35286675 0.714847 -3.91049 0 -0.000311695-0.0004224810.995701 0.0926286 uwb: 0.50139218 1230.77 942.249 +imu_odom_: 1691062864.70463769 0.177171 -0.28491 9.94073 -0.0553937 0.02024 0.0213053 0.12 -0.02 pose: 0.0 0.714847 -3.91049 0 -0.000311695-0.0004224810.995701 0.0926286 uwb: 0.0 1230.77 942.249 +imu_odom_: 1691062864.95466007 0.402226 -0.232238 10.0652 -0.0479369 -0.0639159 0.02024 0.14 -0.02 pose: 0.6831598 0.714847 -3.91049 0 0.000380485 -0.0003313960.995694 0.0926983 uwb: 0.50007976 1231.29 942.975 +imu_odom_: 1691062864.121454021 0.126893 -0.107739 9.88805 -0.0447411 0.076699 0.0319579 0.14 -0.02 pose: 0.0 0.714847 -3.91049 0 0.000380485 -0.0003313960.995694 0.0926983 uwb: 0.0 1231.29 942.975 +imu_odom_: 1691062864.146318017 0.572214 -0.378284 9.92157 -0.0639159 -0.0298274 0.0351537 0.15 -0.02 pose: 0.42973973 0.706472 -3.90503 0 0.000129851 -0.00082624 0.995655 0.0931126 uwb: 0.49865942 1231 943.262 +imu_odom_: 1691062864.163446884 0.354342 -0.0574608 10.0317 -0.0436758 -0.0372843 0.0255663 0.15 -0.02 pose: 0.0 0.706472 -3.90503 0 0.000129851 -0.00082624 0.995655 0.0931126 uwb: 0.0 1231 943.262 +imu_odom_: 1691062864.189382401 0.442927 -0.457293 9.88805 -0.0628506 -0.0138484 0.0458064 0.14 -0.05 pose: 0.50884965 0.692629 -3.90792 0 -0.00316758 -0.0008148820.995624 0.0933967 uwb: 0.0 1231 943.262 +imu_odom_: 1691062864.214326600 0.746991 -0.308852 10.0365 -0.0372843 -0.0213053 0.00106526 0.14 -0.05 pose: 0.0 0.692629 -3.90792 0 -0.00316758 -0.0008148820.995624 0.0933967 uwb: 0.50004184 1231.08 944.52 +imu_odom_: 1691062864.238459139 -0.0167594 0.0023942 9.6606 -0.0617853 -0.0127832 0.0585895 0.17 0 pose: 0.42977765 0.692629 -3.90792 0 -0.00108324 -0.0010199 0.995615 0.0935337 uwb: 0.0 1231.08 944.52 +imu_odom_: 1691062864.264342450 0.459687 -0.253785 10.149 -0.052198 -0.0276969 0.0138484 0.15 0 pose: 0.49028908 0.684265 -3.90244 0 0.00152112 -0.00282375 0.995576 0.0939067 uwb: 0.50095762 1230.95 944.553 +imu_odom_: 1691062864.279449604 0.823605 0.0263362 10.2208 -0.0511327 -0.00639159 0.0234358 0.15 0 pose: 0.0 0.684265 -3.90244 0 0.00152112 -0.00282375 0.995576 0.0939067 uwb: 0.0 1230.95 944.553 +imu_odom_: 1691062864.296437313 0.454898 -0.299275 10.2161 -0.0745685 0.0170442 0.0575243 0.15 0 pose: 0.0 0.684265 -3.90244 0 0.00152112 -0.00282375 0.995576 0.0939067 uwb: 0.50122886 1230.97 944.973 +imu_odom_: 1691062864.322511363 0.794875 -0.0071826110.2711 -0.0383495 -0.0223706 -0.00106526 0.2 0 pose: 0.25189768 0.684265 -3.90244 0 0.00090852 -0.001929 0.995586 0.093825 uwb: 0.0 1230.97 944.973 +imu_odom_: 1691062864.347307696 0.488417 -0.287304 10.24 -0.0703074 0.00639159 0.0553937 0.2 0 pose: 0.0 0.684265 -3.90244 0 0.00090852 -0.001929 0.995586 0.093825 uwb: 0.49974436 1231.14 945.998 +imu_odom_: 1691062864.373439201 0.347159 -0.215478 10.0293 -0.0436758 0.0106526 0.0213053 0.18 -0.02 pose: 0.58952283 0.670417 -3.90532 0 0.00386804 -0.00239291 0.995543 0.0942023 uwb: 0.0 1231.14 945.998 +imu_odom_: 1691062864.398438231 0.476446 -0.344765 9.44991 -0.0660464 -0.0127832 0.0543285 0.17 -0.02 pose: 0.49976769 0.662061 -3.89983 0 0.00340804 -0.00314727 0.995521 0.0944302 uwb: 0.49785447 1231.1 947.07 +imu_odom_: 1691062864.415446064 0.435745 -0.368707 9.81383 -0.0500674 -0.02024 0.0308927 0.17 -0.02 pose: 0.0 0.662061 -3.89983 0 0.00340804 -0.00314727 0.995521 0.0944302 uwb: 0.0 1231.1 947.07 +imu_odom_: 1691062864.440334559 0.201113 -0.0095768110.252 -0.0543285 0.0308927 0.0511327 0.17 0 pose: 0.26083966 0.662061 -3.89983 0 0.00185375 -0.00283585 0.995515 0.0945481 uwb: 0.49958687 1230.91 947.537 +imu_odom_: 1691062864.466491437 0.186748 -0.342371 10.3908 -0.052198 0.0245011 0.0394148 0.17 0 pose: 0.34888282 0.653706 -3.89433 0 0.00190213 -0.00616621 0.995506 0.0944797 uwb: 0.0 1230.91 947.537 +imu_odom_: 1691062864.492352583 0.639252 0.0215478 10.2137 -0.0639159 -0.00213053 0.0468716 0.17 -0.02 pose: 0.6933092 0.653706 -3.89433 0 0.00141024 -0.00556522 0.995514 0.0944398 uwb: 0.50173341 1230.87 948.395 +imu_odom_: 1691062864.517374653 0.76375 -0.110133 10.3286 -0.0330232 -0.0181095 0.015979 0.17 -0.02 pose: 0.0 0.653706 -3.89433 0 0.00141024 -0.00556522 0.995514 0.0944398 uwb: 0.0 1230.87 948.395 +imu_odom_: 1691062864.533310674 -0.0742203 -0.205901 9.87369 -0.0383495 0.0213053 0.0490022 0.17 0 pose: 0.52002567 0.639857 -3.8972 0 -0.00227648 -0.00369792 0.995534 0.0943014 uwb: 0.0 1230.87 948.395 +imu_odom_: 1691062864.559508383 0.248997 -0.237026 9.91199 -0.0426106 0.0308927 0.0319579 0.17 0 pose: 0.0 0.639857 -3.8972 0 -0.00227648 -0.00369792 0.995534 0.0943014 uwb: 0.49915231 1231 949.422 +imu_odom_: 1691062864.584499538 0.627281 0.0742203 10.4459 -0.0436758 0.00106526 0.0447411 0.18 0 pose: 0.49104154 0.639857 -3.8972 0 0.000915394 -0.00136792 0.995523 0.0945084 uwb: 0.0 1231 949.422 +imu_odom_: 1691062864.609418365 0.316035 -0.134075 10.0868 -0.0468716 0.00639159 0.0340885 0.18 0 pose: 0.0 0.639857 -3.8972 0 0.000915394 -0.00136792 0.995523 0.0945084 uwb: 0.49908232 1230.9 950.078 +imu_odom_: 1691062864.623424541 0.0981623 -0.112527 9.96227 -0.0671117 -0.00745685 0.0415453 0.19 0 pose: 0.42965806 0.631502 -3.8917 0 -0.00271629 -0.0001599850.995517 0.0945391 uwb: 0.0 1230.9 950.078 +imu_odom_: 1691062864.648367282 0.517148 -0.282516 9.95748 -0.0585895 -0.0308927 0.0394148 0.19 0 pose: 0.0 0.631502 -3.8917 0 -0.00271629 -0.0001599850.995517 0.0945391 uwb: 0.49998351 1231.07 951.096 +imu_odom_: 1691062864.674295507 0.0861913 -0.227449 10.0796 -0.0351537 0.0319579 0.0330232 0.24 0 pose: 0.48985453 0.617652 -3.89456 0 -0.00363074 0.00336009 0.995508 0.0945519 uwb: 0.0 1231.07 951.096 +imu_odom_: 1691062864.700432262 0.339977 -0.385466 9.93594 -0.0330232 -0.0340885 0.0266316 0.16 0.02 pose: 0.39927985 0.609297 -3.88907 0 -0.00289957 0.00197362 0.995512 0.0945731 uwb: 0.50207172 1230.71 951.802 +imu_odom_: 1691062864.717301853 0.555455 -0.0143652 9.97185 -0.0340885 0.00958738 0.04048 0.22 -0.02 pose: 0.26058009 0.609297 -3.88907 0 -0.00492466 0.00140814 0.995494 0.0946881 uwb: 0.0 1230.71 951.802 +imu_odom_: 1691062864.743419359 0.737414 -0.122104 10.3453 -0.0553937 -0.00426106 0.0372843 0.22 -0.02 pose: 0.26047510 0.600944 -3.88357 0 -0.00389973 0.00019932 0.995487 0.0948174 uwb: 0.0 1230.71 951.802 +imu_odom_: 1691062864.769434496 0.773327 -0.177171 9.74919 -0.056459 0.00426106 0.0458064 0.19 -0.02 pose: 0.0 0.600944 -3.88357 0 -0.00389973 0.00019932 0.995487 0.0948174 uwb: 0.0 1230.71 951.802 +imu_odom_: 1691062864.795310224 0.940921 -0.387861 9.71567 -0.0436758 -0.00106526 0.0276969 0.17 0 pose: 0.61963856 0.589373 -3.88793 0 0.00191863 0.00102337 0.995498 0.0947547 uwb: 0.99702136 1230.42 952.282 +imu_odom_: 1691062864.821316028 0.378284 -0.433351 9.99819 -0.056459 -0.0117179 0.0585895 0.17 0 pose: 0.0 0.589373 -3.88793 0 0.00191863 0.00102337 0.995498 0.0947547 uwb: 0.0 1230.42 952.282 +imu_odom_: 1691062864.838429730 0.320823 -0.260968 9.43555 -0.0500674 0.036219 0.0298274 0.2 0 pose: 0.7147454 0.587092 -3.88642 0 0.00255034 0.000743945 0.995493 0.0947955 uwb: 0.0 1230.42 952.282 +imu_odom_: 1691062864.855421814 0.263362 -0.0023942 10.1203 -0.0490022 0.0255663 0.0340885 0.2 0 pose: 0.0 0.587092 -3.88642 0 0.00255034 0.000743945 0.995493 0.0947955 uwb: 0.0 1230.42 952.282 +imu_odom_: 1691062864.871297172 0.550666 -0.320823 9.92875 -0.0575243 -0.0234358 0.0458064 0.2 0 pose: 0.0 0.587092 -3.88642 0 0.00255034 0.000743945 0.995493 0.0947955 uwb: 0.0 1230.42 952.282 +imu_odom_: 1691062864.898405994 0.299275 0.0574608 9.91439 -0.052198 0.0255663 0.0500674 0.23 0 pose: 0.52857392 0.57874 -3.88093 0 0.0019955 -0.00218857 0.995503 0.0946853 uwb: 0.100389846 1230.31 952.933 +imu_odom_: 1691062864.924342969 0.428562 -0.155623 9.91439 -0.0735032 0.0276969 0.0394148 0.18 0.02 pose: 0.50004767 0.564889 -3.88378 0 0.00091643 -0.0007499380.995507 0.094684 uwb: 0.0 1230.31 952.933 +imu_odom_: 1691062864.941465128 0.354342 -0.186748 10.1466 -0.0585895 -0.0149137 0.0330232 0.25 0 pose: 0.0 0.564889 -3.88378 0 0.00091643 -0.0007499380.995507 0.094684 uwb: 0.49796822 1229.94 954.055 +imu_odom_: 1691062864.957262324 0.557849 -0.174777 10.3597 -0.0426106 0.00639159 0.0394148 0.25 0 pose: 0.0 0.564889 -3.88378 0 0.00091643 -0.0007499380.995507 0.094684 uwb: 0.0 1229.94 954.055 +imu_odom_: 1691062864.984351898 0.603339 0.102951 10.307 -0.0372843 -0.0245011 0.0340885 0.25 -0.02 pose: 0.51972235 0.556535 -3.87829 0 0.000679592 0.00262403 0.995511 0.0946111 uwb: 0.0 1229.94 954.055 +imu_odom_: 1691062865.398162 0.275333 -0.423774 9.69652 -0.0575243 0.0287621 0.0479369 0.25 -0.02 pose: 0.0 0.556535 -3.87829 0 0.000679592 0.00262403 0.995511 0.0946111 uwb: 0.49828319 1230.09 955.067 +imu_odom_: 1691062865.27260833 0.591368 -0.201113 10.003 -0.0500674 -0.0372843 0.0426106 0.25 -0.02 pose: 0.68981818 0.548181 -3.87279 0 0.00204776 0.00322036 0.995503 0.0946493 uwb: 0.0 1230.09 955.067 +imu_odom_: 1691062865.53408087 0.31364 -0.294487 10.0724 -0.0575243 0.0298274 0.0383495 0.25 -0.02 pose: 0.7948908 0.548181 -3.87279 0 0.00290389 0.0028967 0.995504 0.0946346 uwb: 0.49993394 1230.11 956.936 +imu_odom_: 1691062865.80281841 0.102951 0 9.70131 -0.0585895 0.0181095 0.04048 0.25 -0.02 pose: 0.45061017 0.536659 -3.87718 0 0.00223186 0.000825068 0.995511 0.0946138 uwb: 0.0 1230.11 956.936 +imu_odom_: 1691062865.105442445 0.68953 -0.112527 9.99579 -0.072438 0.00852212 0.0436758 0.18 0 pose: 0.0 0.536659 -3.87718 0 0.00223186 0.000825068 0.995511 0.0946138 uwb: 0.50416869 1230 958.409 +imu_odom_: 1691062865.132420317 0.126893 -0.447716 9.7037 -0.0458064 0.0319579 0.0490022 0.18 0 pose: 0.35073480 0.53433 -3.87565 0 0.00048873 0.00236932 0.995514 0.094588 uwb: 0.0 1230 958.409 +imu_odom_: 1691062865.157332144 0.486023 -0.35913 10.0197 -0.0436758 0.0287621 0.036219 0.2 0.02 pose: 0.43938750 0.525976 -3.87015 0 -0.0005799570.0009489 0.995532 0.0944231 uwb: 0.0 1230 958.409 +imu_odom_: 1691062865.174317229 0.59855 -0.0454898 9.5792 -0.0372843 -0.0191748 0.04048 0.2 0.02 pose: 0.8036111 0.525976 -3.87015 0 -0.0003647920.000281025 0.995531 0.0944366 uwb: 0.0 1230 958.409 +imu_odom_: 1691062865.190375451 0.347159 -0.102951 10.2951 -0.0553937 0.0181095 0.0543285 0.18 0 pose: 0.0 0.525976 -3.87015 0 -0.0003647920.000281025 0.995531 0.0944366 uwb: 0.99706513 1229.86 959.675 +imu_odom_: 1691062865.217403487 0.148441 -0.351948 9.5792 -0.0479369 0.00106526 0.04048 0.18 0 pose: 0.41828957 0.512126 -3.87301 0 0.00101167 0.000768658 0.995533 0.0944011 uwb: 0.0 1229.86 959.675 +imu_odom_: 1691062865.242282066 0.617704 -0.318429 10.1155 -0.0458064 -0.0181095 0.0436758 0.2 -0.02 pose: 0.0 0.512126 -3.87301 0 0.00101167 0.000768658 0.995533 0.0944011 uwb: 0.49947314 1229.82 960.715 +imu_odom_: 1691062865.259330147 0.40462 0.0047884 10.0437 -0.0394148 0.0191748 0.0426106 0.2 -0.02 pose: 0.43001097 0.50377 -3.86752 0 -0.00124834 -9.6032e-06 0.995541 0.094318 uwb: 0.0 1229.82 960.715 +imu_odom_: 1691062865.284274639 0.617704 -0.0407014 10.1945 -0.076699 0.0308927 0.0575243 0.18 0 pose: 0.0 0.50377 -3.86752 0 -0.00124834 -9.6032e-06 0.995541 0.094318 uwb: 0.0 1229.82 960.715 +imu_odom_: 1691062865.311253095 0.603339 -0.220267 9.96467 -0.0617853 0.00852212 0.0479369 0.18 0 pose: 0.42012114 0.50377 -3.86752 0 0.000840185 0.00144543 0.995553 0.0941877 uwb: 0.50057557 1229.83 961.746 +imu_odom_: 1691062865.328392462 0.0502782 -0.150835 9.86172 -0.0500674 -0.0298274 0.0511327 0.19 0 pose: 0.0 0.50377 -3.86752 0 0.000840185 0.00144543 0.995553 0.0941877 uwb: 0.0 1229.83 961.746 +imu_odom_: 1691062865.354335562 0.325611 -0.071826 9.73243 -0.0553937 -0.00639159 0.0532632 0.19 0 pose: 0.52256594 0.489923 -3.87039 0 0.00359595 0.00119207 0.995577 0.0938678 uwb: 0.49934189 1229.43 962.635 +imu_odom_: 1691062865.380407279 0.553061 -0.296881 9.26556 -0.0671117 0.0330232 0.0308927 0.18 0 pose: 0.34780372 0.481561 -3.86491 0 0.00106789 0.00323033 0.995599 0.0936498 uwb: 0.0 1229.43 962.635 +imu_odom_: 1691062865.395404189 0.426168 -0.184354 9.84256 -0.0585895 0.0149137 0.0394148 0.18 0 pose: 0.7087083 0.481561 -3.86491 0 0.00137106 0.00264391 0.995598 0.0936782 uwb: 0.49971812 1229.24 964.307 +imu_odom_: 1691062865.419307783 0.399832 -0.4956 9.42837 -0.0660464 0.0191748 0.0426106 0.17 0 pose: 0.0 0.481561 -3.86491 0 0.00137106 0.00264391 0.995598 0.0936782 uwb: 0.0 1229.24 964.307 +imu_odom_: 1691062865.446383650 0.294487 -0.191536 9.80904 -0.0575243 0 0.0543285 0.17 0 pose: 0.39992732 0.473197 -3.85943 0 0.000502318 0.00102708 0.995595 0.0937486 uwb: 0.50133969 1229 964.957 +imu_odom_: 1691062865.471255813 0.251391 -0.265756 9.57681 -0.0468716 -0.00213053 0.0372843 0.19 0 pose: 0.44968273 0.463277 -3.86149 0 -0.00247545 0.00028321 0.995614 0.0935196 uwb: 0.0 1229 964.957 +imu_odom_: 1691062865.498269849 0.150835 -0.126893 10.2592 -0.0479369 -0.00319579 0.0628506 0.23 0.02 pose: 0.0 0.463277 -3.86149 0 -0.00247545 0.00028321 0.995614 0.0935196 uwb: 0.49888692 1228.88 966.202 +imu_odom_: 1691062865.515390551 0.720655 -0.246603 9.84975 -0.0543285 0.0117179 0.0532632 0.23 0.02 pose: 0.31885750 0.459352 -3.86231 0 -0.00535229 -2.88979e-050.995608 0.0934666 uwb: 0.0 1228.88 966.202 +imu_odom_: 1691062865.532391677 0.45011 -0.0766145 9.7037 -0.052198 0.00532632 0.136354 0.23 0.02 pose: 0.0 0.459352 -3.86231 0 -0.00535229 -2.88979e-050.995608 0.0934666 uwb: 0.0 1228.88 966.202 +imu_odom_: 1691062865.549240561 0.371101 -0.694318 9.78989 -0.0916127 0.00958738 0.237554 0.25 0.11 pose: 0.0 0.459352 -3.86231 0 -0.00535229 -2.88979e-050.995608 0.0934666 uwb: 0.49855444 1228.77 967.238 +imu_odom_: 1691062865.566288934 0.521936 -0.335188 9.85693 -0.056459 -0.00213053 0.259925 0.25 0.11 pose: 0.44129781 0.450985 -3.85684 0 -0.00480454 0.00144088 0.995675 0.0927716 uwb: 0.0 1228.77 967.238 +imu_odom_: 1691062865.583227646 0.481235 -0.351948 10.1347 -0.0426106 -0.015979 0.315318 0.19 0.29 pose: 0.0 0.450985 -3.85684 0 -0.00480454 0.00144088 0.995675 0.0927716 uwb: 0.0 1228.77 967.238 +imu_odom_: 1691062865.598228056 0.620098 -0.059855 9.91678 -0.0532632 -0.00639159 0.360059 0.19 0.29 pose: 0.43889753 0.439566 -3.85604 0 -0.00278777 -0.0009137950.996048 0.0887648 uwb: 0.49994561 1228.68 968.675 +imu_odom_: 1691062865.613359416 0.251391 -0.466869 9.90002 -0.0223706 0.00852212 0.378169 0.19 0.29 pose: 0.0 0.439566 -3.85604 0 -0.00278777 -0.0009137950.996048 0.0887648 uwb: 0.0 1228.68 968.675 +imu_odom_: 1691062865.630266047 0.699107 -0.397437 9.18655 -0.0820254 -0.00745685 0.432497 0.25 0.53 pose: 0.7946282 0.437138 -3.85974 0 -0.00218417 -0.00143609 0.996146 0.0876758 uwb: 0.0 1228.68 968.675 +imu_odom_: 1691062865.648300195 0.555455 -0.301669 10.2615 -0.0340885 0.0266316 0.46339 0.25 0.53 pose: 0.0 0.437138 -3.85974 0 -0.00218417 -0.00143609 0.996146 0.0876758 uwb: 0.50210381 1228.44 969.925 +imu_odom_: 1691062865.662349244 0.361524 -0.4956 9.57681 -0.0490022 -0.00106526 0.484695 0.25 0.53 pose: 0.0 0.437138 -3.85974 0 -0.00218417 -0.00143609 0.996146 0.0876758 uwb: 0.0 1228.44 969.925 +imu_odom_: 1691062865.678229561 0.435745 0.0550666 9.68455 -0.0298274 0.00426106 0.504935 0.17 0.47 pose: 0.46243073 0.42877 -3.85427 0 -0.000629675-0.00254644 0.996783 0.0801037 uwb: 0.0 1228.44 969.925 +imu_odom_: 1691062865.695251685 0.708684 -0.263362 10.0676 -0.0458064 -0.0447411 0.548611 0.17 0.47 pose: 0.0 0.42877 -3.85427 0 -0.000629675-0.00254644 0.996783 0.0801037 uwb: 0.49853694 1227.91 970.401 +imu_odom_: 1691062865.712291016 0.656011 -0.469264 10.0461 -0.0617853 -0.00106526 0.566721 0.17 0.47 pose: 0.0 0.42877 -3.85427 0 -0.000629675-0.00254644 0.996783 0.0801037 uwb: 0.0 1227.91 970.401 +imu_odom_: 1691062865.729226521 0.684742 -0.383072 10.1514 -0.0468716 0.0191748 0.58483 0.18 0.55 pose: 0.48878127 0.420414 -3.84877 0 0.00113595 -0.00382729 0.997564 0.0696368 uwb: 0.0 1227.91 970.401 +imu_odom_: 1691062865.745227872 0.505177 -0.126893 9.85932 -0.0809601 -0.00532632 0.627441 0.18 0.55 pose: 0.0 0.420414 -3.84877 0 0.00113595 -0.00382729 0.997564 0.0696368 uwb: 0.50009726 1227.38 972.082 +imu_odom_: 1691062865.761224556 0.19393 -0.579397 10.2544 -0.0532632 -0.00319579 0.649811 0.18 0.55 pose: 0.66947272 0.406544 -3.8516 0 0.00550696 -0.00437747 0.998617 0.0520956 uwb: 0.0 1227.38 972.082 +imu_odom_: 1691062865.776227299 0.797269 -0.52433 9.82341 -0.056459 -0.0308927 0.622114 0.18 0.55 pose: 0.0 0.406544 -3.8516 0 0.00550696 -0.00437747 0.998617 0.0520956 uwb: 0.0 1227.38 972.082 +imu_odom_: 1691062865.793221425 0.907402 -0.172383 9.89284 -0.0330232 0.0117179 0.598679 0.17 0.55 pose: 0.0 0.406544 -3.8516 0 0.00550696 -0.00437747 0.998617 0.0520956 uwb: 0.49995144 1226.89 973.147 +imu_odom_: 1691062865.810377125 1.21625 -0.40462 9.63906 -0.0532632 -0.00532632 0.588026 0.17 0.55 pose: 0.31932998 0.406544 -3.8516 0 0.00486297 -0.00509797 0.999069 0.0425561 uwb: 0.0 1226.89 973.147 +imu_odom_: 1691062865.827287839 1.39582 -0.251391 9.69173 -0.0308927 0.0308927 0.488956 0.14 0.41 pose: 0.42140439 0.398202 -3.84604 0 0.00871797 -0.00523911 0.999474 0.0307991 uwb: 0.0 1226.89 973.147 +imu_odom_: 1691062865.843231151 1.88663 0.136469 10.4172 -0.0287621 0.02024 0.418649 0.14 0.41 pose: 0.0 0.398202 -3.84604 0 0.00871797 -0.00523911 0.999474 0.0307991 uwb: 0.50076223 1227.03 974.335 +imu_odom_: 1691062865.861218927 1.50595 0.0263362 10.2208 -0.0468716 -0.0234358 0.409062 0.14 0.41 pose: 0.0 0.398202 -3.84604 0 0.00871797 -0.00523911 0.999474 0.0307991 uwb: 0.0 1227.03 974.335 +imu_odom_: 1691062865.877357062 0.766145 -0.349553 9.26317 -0.0426106 0.0692422 0.368581 0.11 0.32 pose: 0.7061709 0.39822 -3.84605 0 0.00929428 -0.00513435 0.999517 0.0292169 uwb: 0.0 1227.03 974.335 +imu_odom_: 1691062865.894290524 0.76375 -0.0694318 10.5536 -0.0372843 0.0213053 0.315318 0.1 0.26 pose: 0.0 0.39822 -3.84605 0 0.00929428 -0.00513435 0.999517 0.0292169 uwb: 0.49855735 1227.09 975.331 +imu_odom_: 1691062865.912211221 0.725443 -0.220267 10.1251 -0.0458064 -0.0298274 0.297209 0.1 0.26 pose: 0.66914316 0.384328 -3.849 0 0.0141435 -0.00375909 0.999747 0.0170761 uwb: 0.0 1227.09 975.331 +imu_odom_: 1691062865.928275860 0.940921 -0.337582 10.1849 -0.056459 -0.00426106 0.297209 0.12 0.35 pose: 0.0 0.384328 -3.849 0 0.0141435 -0.00375909 0.999747 0.0170761 uwb: 0.0 1227.09 975.331 +imu_odom_: 1691062865.945267361 0.711078 -0.428562 9.52892 -0.0585895 -0.0149137 0.286556 0.12 0.35 pose: 0.0 0.384328 -3.849 0 0.0141435 -0.00375909 0.999747 0.0170761 uwb: 0.50044433 1226.98 976.544 +imu_odom_: 1691062865.962205198 0.878672 -0.0790087 9.80904 -0.0543285 -0.00319579 0.267381 0.12 0.35 pose: 0.33925547 0.384328 -3.849 0 0.0162049 -0.00156902 0.999787 0.0126486 uwb: 0.0 1226.98 976.544 +imu_odom_: 1691062865.979206032 0.725443 -0.0502782 9.96946 -0.0596548 -0.0245011 0.28123 0.1 0.29 pose: 0.33940130 0.384328 -3.849 0 0.0174332 -0.00322196 0.999807 0.00844812 uwb: 0.0 1226.98 976.544 +imu_odom_: 1691062865.995322293 0.818817 -0.196325 9.97664 -0.056459 0.0106526 0.255663 0.1 0.29 pose: 0.0 0.384328 -3.849 0 0.0174332 -0.00322196 0.999807 0.00844812 uwb: 0.50008560 1227.1 977.933 +imu_odom_: 1691062866.12245840 0.653617 -0.263362 9.80665 -0.0490022 -0.00745685 0.230097 0.1 0.29 pose: 0.0 0.384328 -3.849 0 0.0174332 -0.00322196 0.999807 0.00844812 uwb: 0.0 1227.1 977.933 +imu_odom_: 1691062866.29266214 0.691924 -0.131681 9.81144 -0.0596548 0 0.223706 0.06 0.2 pose: 0.50049682 0.384328 -3.849 0 0.0185944 -0.0003558690.999823 0.00290985 uwb: 0.0 1227.1 977.933 +imu_odom_: 1691062866.45324145 0.641646 -0.153229 9.98861 -0.0532632 0.0117179 0.207727 0.06 0.2 pose: 0.0 0.384328 -3.849 0 0.0185944 -0.0003558690.999823 0.00290985 uwb: 0.49960438 1226.93 978.149 +imu_odom_: 1691062866.62263441 0.651223 -0.203507 9.8282 -0.0543285 -0.0149137 0.187487 0.05 0.2 pose: 0.43055636 0.373022 -3.84793 0 0.0152467 0.00143577 0.999882 -0.000925501 uwb: 0.0 1226.93 978.149 +imu_odom_: 1691062866.88348867 0.438139 -0.184354 10.0916 -0.0617853 0.0138484 0.246076 0.05 0.2 pose: 0.0 0.373022 -3.84793 0 0.0152467 0.00143577 0.999882 -0.000925501 uwb: 0.0 1226.93 978.149 +imu_odom_: 1691062866.105341243 0.277727 -0.514753 9.95509 -0.0585895 -0.00106526 0.273773 0.05 0.2 pose: 0.8010155 0.370498 -3.85191 0 0.0145329 0.00117029 0.999893 -0.00152074 uwb: 0.50097222 1226.73 978.768 +imu_odom_: 1691062866.122330994 -0.351948 -0.344765 9.57441 -0.0468716 0.0639159 0.246076 0.07 0.23 pose: 0.0 0.370498 -3.85191 0 0.0145329 0.00117029 0.999893 -0.00152074 uwb: 0.0 1226.73 978.768 +imu_odom_: 1691062866.138201395 -0.787692 -0.047884 10.2185 -0.0500674 0.0213053 0.216249 0.08 0.11 pose: 0.0 0.370498 -3.85191 0 0.0145329 0.00117029 0.999893 -0.00152074 uwb: 0.0 1226.73 978.768 +imu_odom_: 1691062866.155263767 -0.687136 0.059855 9.67018 -0.056459 -0.04048 0.18003 0.08 0.11 pose: 0.75881373 0.370498 -3.85191 0 0.00660072 -0.0004030290.999935 -0.00923879 uwb: 0.49927774 1226.43 979.194 +imu_odom_: 1691062866.171258119 0.225055 -0.0574608 9.91439 -0.0500674 -0.0394148 0.138484 0.09 0.11 pose: 0.0 0.370498 -3.85191 0 0.00660072 -0.0004030290.999935 -0.00923879 uwb: 0.0 1226.43 979.194 +imu_odom_: 1691062866.188252828 0.31364 -0.0814029 9.78271 -0.0671117 -0.00532632 0.155529 0.09 0.11 pose: 0.34048915 0.370498 -3.85191 0 0.00368478 0.000509977 0.999926 -0.0116229 uwb: 0.0 1226.43 979.194 +imu_odom_: 1691062866.205253079 0.124498 -0.452504 10.0748 -0.0692422 0.0149137 0.156594 0.09 0.11 pose: 0.0 0.370498 -3.85191 0 0.00368478 0.000509977 0.999926 -0.0116229 uwb: 0.49907067 1226.16 979.617 +imu_odom_: 1691062866.220259614 -0.11971 -0.311246 9.9503 -0.0468716 0.00426106 0.137419 0.11 0.08 pose: 0.41988491 0.362129 -3.84644 0 0.000360817 0.000597313 0.999902 -0.0139912 uwb: 0.0 1226.16 979.617 +imu_odom_: 1691062866.237193660 0.059855 -0.0095768110.173 -0.0532632 -0.0394148 0.150202 0.11 0.08 pose: 0.7023212 0.362129 -3.84644 0 -0.0003560220.000476333 0.999897 -0.0143344 uwb: 0.0 1226.16 979.617 +imu_odom_: 1691062866.251188462 0.143652 -0.349553 9.60075 -0.0703074 0.00532632 0.140615 0.11 0.08 pose: 0.0 0.362129 -3.84644 0 -0.0003560220.000476333 0.999897 -0.0143344 uwb: 0.50003311 1225.98 980.23 +imu_odom_: 1691062866.267335930 0.275333 -0.351948 9.8689 -0.0617853 0.0127832 0.116114 0.13 0.08 pose: 0.38912171 0.359216 -3.85088 0 -0.00350655 0.000279417 0.99986 -0.0163653 uwb: 0.0 1225.98 980.23 +imu_odom_: 1691062866.284338222 0.337582 -0.411803 9.84017 -0.0692422 -0.0213053 0.12144 0.17 0.08 pose: 0.0 0.359216 -3.85088 0 -0.00350655 0.000279417 0.99986 -0.0163653 uwb: 0.0 1225.98 980.23 +imu_odom_: 1691062866.302262127 0.40462 -0.323217 9.94551 -0.0617853 0.02024 0.120375 0.17 0.08 pose: 0.0 0.359216 -3.85088 0 -0.00350655 0.000279417 0.99986 -0.0163653 uwb: 0.50017893 1225.74 981.044 +imu_odom_: 1691062866.316216974 0.169988 -0.191536 9.58878 -0.072438 0.0223706 0.120375 0.17 0.08 pose: 0.23208303 0.356648 -3.8548 0 -0.00409339 -0.00202428 0.999841 -0.0172639 uwb: 0.0 1225.74 981.044 +imu_odom_: 1691062866.333469793 0.059855 -0.19393 9.50259 -0.0735032 0.0276969 0.110787 0.13 0.08 pose: 0.0 0.356648 -3.8548 0 -0.00409339 -0.00202428 0.999841 -0.0172639 uwb: 0.0 1225.74 981.044 +imu_odom_: 1691062866.349206910 0.301669 -0.260968 10.3477 -0.076699 0.052198 0.1012 0.13 0.08 pose: 0.0 0.356648 -3.8548 0 -0.00409339 -0.00202428 0.999841 -0.0172639 uwb: 0.50013228 1225.95 981.82 +imu_odom_: 1691062866.366197536 -0.148441 -0.162806 9.7444 -0.0553937 -0.0617853 0.104396 0.14 0.08 pose: 0.74810145 0.348271 -3.84934 0 -0.00515877 -0.00237389 0.999783 -0.0200599 uwb: 0.0 1225.95 981.82 +imu_odom_: 1691062866.383210911 0.435745 -0.265756 9.88087 -0.0511327 -0.0916127 0.131028 0.14 0.08 pose: 0.0 0.348271 -3.84934 0 -0.00515877 -0.00237389 0.999783 -0.0200599 uwb: 0.0 1225.95 981.82 +imu_odom_: 1691062866.400182580 0.969652 -0.442927 9.89763 -0.0458064 -0.0266316 0.190682 0.14 0.08 pose: 0.0 0.348271 -3.84934 0 -0.00515877 -0.00237389 0.999783 -0.0200599 uwb: 0.50109763 1226.07 982.208 +imu_odom_: 1691062866.416317507 1.70946 -0.577003 9.84256 -0.0660464 -0.0692422 0.164051 0.11 0.02 pose: 0.7122664 0.348271 -3.84934 0 -0.00565428 -0.00223511 0.999776 -0.0202935 uwb: 0.0 1226.07 982.208 +imu_odom_: 1691062866.433382795 1.34554 -0.0502782 9.57681 -0.0383495 -0.00639159 0.0894822 0.12 0.02 pose: 0.0 0.348271 -3.84934 0 -0.00565428 -0.00223511 0.999776 -0.0202935 uwb: 0.0 1226.07 982.208 +imu_odom_: 1691062866.450250346 1.42455 0.265756 10.1251 -0.0575243 0.04048 0.0916127 0.12 0.02 pose: 0.66989271 0.33445 -3.85234 0 0.000714308 -0.00262472 0.999712 -0.0238424 uwb: 0.50113554 1226 983.403 +imu_odom_: 1691062866.465329793 1.43892 -0.0047884 9.5792 -0.0713727 0.0138484 0.103331 0.12 0.02 pose: 0.0 0.33445 -3.85234 0 0.000714308 -0.00262472 0.999712 -0.0238424 uwb: 0.0 1226 983.403 +imu_odom_: 1691062866.481325894 0.0790087 -0.507571 9.26317 -0.0585895 0.0585895 0.092678 0.09 0.02 pose: 0.0 0.33445 -3.85234 0 0.000714308 -0.00262472 0.999712 -0.0238424 uwb: 0.0 1226 983.403 +imu_odom_: 1691062866.498260524 0.28491 -0.258574 10.4579 -0.036219 0.0149137 0.0117179 0.09 0.02 pose: 0.33929923 0.33445 -3.85234 0 0.00340389 -0.00136238 0.999687 -0.0247448 uwb: 0.49753951 1225.81 983.813 +imu_odom_: 1691062866.516328504 0.383072 0.179565 9.73961 -0.0415453 -0.0788296 0.00426106 0.06 0.02 pose: 0.41011756 0.32978 -3.84933 0 0.000446307 -0.00204567 0.99968 -0.0251975 uwb: 0.0 1225.81 983.813 +imu_odom_: 1691062866.541385573 0.802058 -0.438139 10.1227 -0.0649811 0.00532632 0.0585895 0.06 0.02 pose: 0.7986239 0.326045 -3.84692 0 0.000671969 -0.00118639 0.999685 -0.025057 uwb: 0.50146219 1226.17 984.184 +imu_odom_: 1691062866.568251744 0.47884 -0.373495 9.93833 -0.0426106 0.0319579 0 0.07 0.05 pose: 0.35138810 0.326045 -3.84692 0 0.00303894 -0.00143244 0.999679 -0.0251183 uwb: 0.0 1226.17 984.184 +imu_odom_: 1691062866.594238883 -1.33118 0.325611 10.4196 -0.0628506 0.0372843 0.0660464 0.08 0.02 pose: 0.0 0.326045 -3.84692 0 0.00303894 -0.00143244 0.999679 -0.0251183 uwb: 0.50232256 1226.15 984.582 +imu_odom_: 1691062866.611295714 -0.90022 -0.629675 9.81862 -0.0671117 -0.0969391 0.0884169 0.12 0.02 pose: 0.34834910 0.326045 -3.84692 0 0.00203631 -0.00371827 0.999686 -0.0247009 uwb: 0.0 1226.15 984.582 +imu_odom_: 1691062866.637315809 0.325611 -0.100556 10.058 -0.0287621 -0.0415453 0.0607201 0.12 0.02 pose: 0.0 0.326045 -3.84692 0 0.00203631 -0.00371827 0.999686 -0.0247009 uwb: 0.0 1226.15 984.582 +imu_odom_: 1691062866.664372719 0.270545 -0.253785 9.80665 -0.0617853 0.0372843 0.0862864 0.1 0 pose: 0.42969308 0.320625 -3.85533 0 -0.00100621 -0.00295558 0.999671 -0.0254525 uwb: 0.49759200 1226.19 985.57 +imu_odom_: 1691062866.690187202 -0.0311246 -0.21069 9.68694 -0.0553937 0.00532632 0.0703074 0.12 0.02 pose: 0.45182928 0.314599 -3.85145 0 -0.00445345 -0.00166417 0.999643 -0.0262817 uwb: 0.49943523 1226.44 987.338 +imu_odom_: 1691062866.717233612 0.107739 -0.311246 9.663 -0.0532632 0.0149137 0.0628506 0.12 0.02 pose: 0.7979239 0.312211 -3.84992 0 -0.00528858 -0.00160904 0.999636 -0.0264056 uwb: 0.0 1226.44 987.338 +imu_odom_: 1691062866.742181021 0.1652 -0.143652 10.094 -0.052198 -0.036219 0.0735032 0.13 0 pose: 0.44881654 0.312211 -3.84992 0 -0.00984861 -0.00264855 0.999584 -0.0269911 uwb: 0.49958981 1226.42 986.15 +imu_odom_: 1691062866.759302889 0.311246 -0.141258 10.0892 -0.0436758 -0.0713727 0.0607201 0.13 0 pose: 0.0 0.312211 -3.84992 0 -0.00984861 -0.00264855 0.999584 -0.0269911 uwb: 0.0 1226.42 986.15 +imu_odom_: 1691062866.785445186 0.462081 -0.363919 10.0485 -0.0553937 -0.0245011 0.0671117 0.13 0 pose: 0.42069277 0.298402 -3.85297 0 -0.00832462 0.000826218 0.999583 -0.0276298 uwb: 0.0 1226.42 986.15 +imu_odom_: 1691062866.812440850 0.222661 -0.110133 9.74919 -0.04048 0.0308927 0.0479369 0.13 0 pose: 0.0 0.298402 -3.85297 0 -0.00832462 0.000826218 0.999583 -0.0276298 uwb: 0.49955480 1226.47 986.941 +imu_odom_: 1691062866.837456796 0.778116 -0.45011 10.2113 -0.0617853 0.00639159 0.0830906 0.14 0 pose: 0.33035725 0.298402 -3.85297 0 -0.00641613 -5.42734e-050.999587 -0.0280108 uwb: 0.0 1226.47 986.941 +imu_odom_: 1691062866.854289932 0.56982 -0.225055 10.1682 -0.04048 0.0255663 0.0500674 0.14 0 pose: 0.0 0.298402 -3.85297 0 -0.00641613 -5.42734e-050.999587 -0.0280108 uwb: 0.49876444 1226.21 988.342 +imu_odom_: 1691062866.871290474 0.423774 -0.0742203 9.84735 -0.0500674 -0.0149137 0.0639159 0.15 0.02 pose: 0.27927776 0.298402 -3.85297 0 -0.00715955 0.00143563 0.999574 -0.0282735 uwb: 0.0 1226.21 988.342 +imu_odom_: 1691062866.897264489 0.42138 -0.351948 10.1347 -0.0479369 0.0500674 0.0692422 0.15 0.02 pose: 0.0 0.298402 -3.85297 0 -0.00715955 0.00143563 0.999574 -0.0282735 uwb: 0.49981729 1226.16 989.73 +imu_odom_: 1691062866.923303250 0.902614 -0.0263362 10.4172 -0.0415453 0.0468716 0.0479369 0.15 0 pose: 0.41988490 0.284581 -3.85604 0 -0.00374097 0.00129274 0.999576 -0.0288333 uwb: 0.0 1226.16 989.73 +imu_odom_: 1691062866.940153010 0.608127 -0.399832 9.79468 -0.0692422 0.0479369 0.0916127 0.15 0 pose: 0.0 0.284581 -3.85604 0 -0.00374097 0.00129274 0.999576 -0.0288333 uwb: 0.50116179 1225.75 990.539 +imu_odom_: 1691062866.957327084 0.19393 -0.0909797 10.0173 -0.0639159 -0.0106526 0.0660464 0.19 0.02 pose: 0.41954659 0.284581 -3.85604 0 -0.00225058 5.70944e-05 0.999566 -0.0293572 uwb: 0.0 1225.75 990.539 +imu_odom_: 1691062866.983283892 0.268151 0.0646434 9.58878 -0.0607201 0.0213053 0.056459 0.19 0.02 pose: 0.0 0.284581 -3.85604 0 -0.00225058 5.70944e-05 0.999566 -0.0293572 uwb: 0.0 1225.75 990.539 +imu_odom_: 1691062867.10148313 -0.301669 -0.385466 9.70849 -0.0639159 0.0213053 0.0703074 0.21 0.02 pose: 0.43025888 0.276182 -3.85061 0 -0.000693832-4.21154e-050.999551 -0.0299706 uwb: 0.49896276 1225.58 992.315 +imu_odom_: 1691062867.35261670 0.0143652 -0.0790087 9.97424 -0.0649811 0.0127832 0.0617853 0.21 0.02 pose: 0.0 0.276182 -3.85061 0 -0.000693832-4.21154e-050.999551 -0.0299706 uwb: 0.0 1225.58 992.315 +imu_odom_: 1691062867.62216212 0.385466 -0.258574 10.0245 -0.0607201 -0.00106526 0.0617853 0.19 0 pose: 0.42933435 0.262359 -3.8536 0 -0.00361138 0.00246038 0.999527 -0.0304303 uwb: 0.49975021 1225.29 992.916 +imu_odom_: 1691062867.87430188 0.332794 -0.0095768110.173 -0.0415453 -0.00319579 0.0585895 0.17 0 pose: 0.52057982 0.262359 -3.8536 0 -0.00774737 0.00192942 0.999485 -0.0310862 uwb: 0.0 1225.29 992.916 +imu_odom_: 1691062867.114299276 0.390255 -0.071826 9.80665 -0.0308927 -0.015979 0.0308927 0.17 0 pose: 0.0 0.262359 -3.8536 0 -0.00774737 0.00192942 0.999485 -0.0310862 uwb: 0.50145346 1225.61 993.498 +imu_odom_: 1691062867.130324835 0.612916 -0.0215478 9.65821 -0.0585895 -0.0117179 0.0479369 0.17 0 pose: 0.72072432 0.248543 -3.85662 0 -0.00328687 0.00553259 0.999484 -0.0314557 uwb: 0.0 1225.61 993.498 +imu_odom_: 1691062867.157296583 0.423774 -0.426168 9.91439 -0.0628506 -0.015979 0.052198 0.17 0 pose: 0.7896120 0.248543 -3.85662 0 -0.00251119 0.00578406 0.999484 -0.0314936 uwb: 0.50048517 1225.83 993.689 +imu_odom_: 1691062867.182212786 0.143652 -0.191536 9.5385 -0.0511327 -0.0127832 0.0575243 0.17 0 pose: 0.35101187 0.236314 -3.85718 0 -0.0010591 0.00329105 0.999491 -0.0317006 uwb: 0.0 1225.83 993.689 +imu_odom_: 1691062867.207195193 0.122104 -0.354342 9.9527 -0.0394148 -0.015979 0.052198 0.17 0 pose: 0.0 0.236314 -3.85718 0 -0.0010591 0.00329105 0.999491 -0.0317006 uwb: 0.49932441 1225.9 994.477 +imu_odom_: 1691062867.221203703 0.263362 -0.110133 9.90002 -0.0276969 -0.0330232 0.036219 0.19 0.02 pose: 0.49898610 0.228417 -3.85562 0 -0.00504585 0.00132255 0.999472 -0.0320602 uwb: 0.0 1225.9 994.477 +imu_odom_: 1691062867.246155195 0.203507 -0.351948 9.58638 -0.0543285 0.00745685 0.0596548 0.19 0.02 pose: 0.0 0.228417 -3.85562 0 -0.00504585 0.00132255 0.999472 -0.0320602 uwb: 0.49988438 1225.86 995.662 +imu_odom_: 1691062867.271412920 0.442927 -0.0311246 9.80186 -0.0543285 -0.0223706 0.0479369 0.23 0 pose: 0.38960002 0.22244 -3.86033 0 -0.00675806 0.000465933 0.999456 -0.0322754 uwb: 0.0 1225.86 995.662 +imu_odom_: 1691062867.285344726 0.785298 -0.227449 9.56723 -0.1012 0.0149137 0.0820254 0.23 0 pose: 0.0 0.22244 -3.86033 0 -0.00675806 0.000465933 0.999456 -0.0322754 uwb: 0.0 1225.86 995.662 +imu_odom_: 1691062867.310144561 0.651223 -0.483629 10.1825 -0.0681769 -0.0117179 0.0426106 0.16 0.02 pose: 0.39189531 0.212494 -3.85732 0 -0.00353722 0.00187713 0.999457 -0.0326943 uwb: 0.50135138 1226.09 995.657 +imu_odom_: 1691062867.334291392 0.186748 -0.275333 9.45949 -0.0340885 0.00213053 0.0245011 0.16 0.02 pose: 0.0 0.212494 -3.85732 0 -0.00353722 0.00187713 0.999457 -0.0326943 uwb: 0.0 1226.09 995.657 +imu_odom_: 1691062867.358127033 -0.155623 -0.301669 9.42118 -0.0553937 -0.0330232 0.056459 0.17 -0.02 pose: 0.48946666 0.212494 -3.85732 0 -0.00395214 -0.0005395740.999462 -0.032546 uwb: 0.0 1226.09 995.657 +imu_odom_: 1691062867.375324731 0.531513 0.0694318 10.149 -0.0585895 -0.0117179 0.0458064 0.17 -0.02 pose: 0.6843556 0.212494 -3.85732 0 -0.00452528 -0.0006687360.999458 -0.0326035 uwb: 0.0 1226.09 995.657 +imu_odom_: 1691062867.400149064 1.00556 -0.124498 10.0868 -0.0511327 -0.0181095 0.0308927 0.26 0.02 pose: 0.34189783 0.198687 -3.86039 0 -0.00483045 0.000345702 0.99945 -0.0328072 uwb: 0.100009540 1226.19 995.656 +imu_odom_: 1691062867.423209500 0.873884 -0.167594 9.96227 -0.0575243 -0.0276969 0.0479369 0.26 0.02 pose: 0.0 0.198687 -3.86039 0 -0.00483045 0.000345702 0.99945 -0.0328072 uwb: 0.0 1226.19 995.656 +imu_odom_: 1691062867.439209102 0.605733 -0.0670376 9.87608 -0.0596548 -0.0500674 0.0479369 0.18 0.02 pose: 0.6950883 0.198687 -3.86039 0 -0.00409417 0.000463829 0.999454 -0.0327778 uwb: 0.49841738 1225.86 997.24 +imu_odom_: 1691062867.466197183 0.153229 -0.0454898 9.99819 -0.0458064 0.0127832 0.0436758 0.18 0.02 pose: 0.0 0.198687 -3.86039 0 -0.00409417 0.000463829 0.999454 -0.0327778 uwb: 0.0 1225.86 997.24 +imu_odom_: 1691062867.491112511 0.129287 -0.344765 10.0485 -0.056459 0.0127832 0.0426106 0.22 -0.02 pose: 0.47955349 0.190251 -3.85502 0 0.0011007 0.0013609 0.999459 -0.03283 uwb: 0.49988729 1225.79 997.833 +imu_odom_: 1691062867.508132886 0.430956 -0.215478 9.85932 -0.0458064 -0.00852212 0.0330232 0.22 -0.02 pose: 0.0 0.190251 -3.85502 0 0.0011007 0.0013609 0.999459 -0.03283 uwb: 0.0 1225.79 997.833 +imu_odom_: 1691062867.533277158 0.754174 -0.102951 10.1801 -0.0639159 -0.0426106 0.0436758 0.2 0 pose: 0.77901923 0.176445 -3.85808 0 -0.00122071 0.00100828 0.999458 -0.032893 uwb: 0.0 1225.79 997.833 +imu_odom_: 1691062867.559189344 0.742203 -0.181959 9.72285 -0.0553937 -0.0426106 0.0468716 0.2 0 pose: 0.0 0.176445 -3.85808 0 -0.00122071 0.00100828 0.999458 -0.032893 uwb: 0.50025186 1226.27 998.422 +imu_odom_: 1691062867.584166793 0.725443 -0.205901 10.1682 -0.052198 -0.0170442 0.0479369 0.18 0 pose: 0.8165603 0.176445 -3.85808 0 -0.0002757220.00119645 0.999458 -0.0329107 uwb: 0.0 1226.27 998.422 +imu_odom_: 1691062867.611134458 0.64404 -0.0263362 9.92875 -0.0703074 0.0426106 0.0436758 0.19 -0.02 pose: 0.49975897 0.16264 -3.86116 0 0.00552877 0.00168166 0.999436 -0.0330754 uwb: 0.49988730 1226.32 999.015 +imu_odom_: 1691062867.636121532 0.610521 -0.181959 9.88326 -0.0681769 -0.0255663 0.0383495 0.19 -0.02 pose: 0.0 0.16264 -3.86116 0 0.00552877 0.00168166 0.999436 -0.0330754 uwb: 0.0 1226.32 999.015 +imu_odom_: 1691062867.661167519 0.497994 -0.332794 9.63427 -0.072438 0.0106526 0.0458064 0.23 0 pose: 0.69847146 0.148837 -3.86423 0 0.0104043 0.00216611 0.999392 -0.0331929 uwb: 0.49929232 1226.42 1000 +imu_odom_: 1691062867.675227651 0.713472 -0.433351 9.3326 -0.0628506 0.0351537 0.0340885 0.23 0 pose: 0.7019421 0.148837 -3.86423 0 0.00997743 0.00151194 0.999397 -0.0332198 uwb: 0.0 1226.42 1000 +imu_odom_: 1691062867.699385856 0.557849 -0.356736 9.34217 -0.0639159 0.00639159 0.0330232 0.18 0 pose: 0.0 0.148837 -3.86423 0 0.00997743 0.00151194 0.999397 -0.0332198 uwb: 0.50060184 1226.58 1000.6 +imu_odom_: 1691062867.726157825 0.711078 -0.392649 10.1969 -0.0490022 -0.0426106 0.0319579 0.18 0 pose: 0.39141408 0.140396 -3.85887 0 0.00931931 -0.00208627 0.999402 -0.0332424 uwb: 0.0 1226.58 1000.6 +imu_odom_: 1691062867.742102013 0.720655 -0.390255 9.35175 -0.0543285 -0.0106526 0.0372843 0.19 0 pose: 0.0 0.140396 -3.85887 0 0.00931931 -0.00208627 0.999402 -0.0332424 uwb: 0.49905026 1226.72 1000.2 +imu_odom_: 1691062867.769243502 0.349553 -0.213084 9.66779 -0.04048 0.00532632 0.0298274 0.19 0 pose: 0.51908075 0.135034 -3.86731 0 0.0124302 -0.00568658 0.999359 -0.0330986 uwb: 0.0 1226.72 1000.2 +imu_odom_: 1691062867.795098816 0.497994 -0.371101 9.40921 -0.0660464 0.0276969 0.0383495 0.2 -0.02 pose: 0.35053066 0.126594 -3.86195 0 0.010449 -0.00493626 0.99939 -0.0329643 uwb: 0.0 1226.72 1000.2 +imu_odom_: 1691062867.820329708 0.366313 -0.225055 9.54089 -0.0458064 -0.0287621 0.0383495 0.2 -0.02 pose: 0.7873954 0.126594 -3.86195 0 0.00966524 -0.00541265 0.999395 -0.0329663 uwb: 0.0 1226.72 1000.2 +imu_odom_: 1691062867.834158854 0.287304 -0.289698 9.39245 -0.0468716 0.0181095 0.052198 0.2 -0.02 pose: 0.0 0.126594 -3.86195 0 0.00966524 -0.00541265 0.999395 -0.0329663 uwb: 0.0 1226.72 1000.2 +imu_odom_: 1691062867.859157010 0.28491 -0.282516 9.84017 -0.0479369 -0.0490022 0.0287621 0.2 -0.02 pose: 0.49067408 0.11279 -3.86502 0 0.00536433 -0.00500877 0.999428 -0.0330024 uwb: 0.100006624 1226.94 1002.77 +imu_odom_: 1691062867.876162219 0.507571 -0.0909797 9.33978 -0.0639159 -0.00745685 0.0287621 0.25 0 pose: 0.0 0.11279 -3.86502 0 0.00536433 -0.00500877 0.999428 -0.0330024 uwb: 0.0 1226.94 1002.77 +imu_odom_: 1691062867.901108170 0.117316 -0.409408 9.62948 -0.0543285 0.00639159 0.036219 0.25 0 pose: 0.39916613 0.11279 -3.86502 0 0.00273415 -0.00387437 0.999448 -0.0328955 uwb: 0.49947023 1227.25 1002.97 +imu_odom_: 1691062867.926171364 -0.158017 -0.0622492 10.0269 -0.052198 0.0127832 0.052198 0.21 0 pose: 0.35006693 0.100562 -3.86561 0 0.000582462 -0.0039376 0.999454 -0.0328051 uwb: 0.0 1227.25 1002.97 +imu_odom_: 1691062867.949250466 0.220267 -0.246603 10.0317 -0.052198 0.0287621 0.0276969 0.21 0 pose: 0.7058502 0.0989841 -3.86809 0 -0.000140791-0.00368517 0.999453 -0.0328519 uwb: 0.50007979 1227.66 1002.58 +imu_odom_: 1691062867.965296149 0.287304 -0.208296 9.40921 -0.0532632 -0.00532632 0.0468716 0.18 -0.02 pose: 0.0 0.0989841 -3.86809 0 -0.000140791-0.00368517 0.999453 -0.0328519 uwb: 0.0 1227.66 1002.58 +imu_odom_: 1691062867.983119726 0.579397 -0.248997 10.2831 -0.0596548 -0.0340885 0.052198 0.18 -0.02 pose: 0.48996538 0.0905467 -3.86272 0 -0.005038 -0.00196296 0.999445 -0.0328732 uwb: 0.0 1227.66 1002.58 +imu_odom_: 1691062868.8093384 0.418985 -0.0311246 9.46428 -0.0511327 -0.00852212 0.0458064 0.18 0.02 pose: 0.0 0.0905467 -3.86272 0 -0.005038 -0.00196296 0.999445 -0.0328732 uwb: 0.50077682 1227.74 1003.38 +imu_odom_: 1691062868.32146888 0.73502 -0.205901 10.0676 -0.056459 -0.036219 0.0532632 0.18 0.02 pose: 0.34041041 0.0851798 -3.87116 0 -0.00309935 -0.0005145740.999449 -0.0330454 uwb: 0.0 1227.74 1003.38 +imu_odom_: 1691062868.47149923 0.600945 -0.0191536 9.67736 -0.0500674 -0.00426106 0.0458064 0.18 0 pose: 0.40942637 0.0767408 -3.8658 0 0.000286292 0.00110128 0.999446 -0.0332694 uwb: 0.49965690 1228.51 1004.19 +imu_odom_: 1691062868.72146621 0.399832 -0.196325 9.60554 -0.0745685 0.0106526 0.0649811 0.18 0 pose: 0.7070751 0.0767408 -3.8658 0 0.000792677 0.00161371 0.999444 -0.0332918 uwb: 0.0 1228.51 1004.19 +imu_odom_: 1691062868.99314651 0.371101 -0.248997 9.72046 -0.0596548 0.00213053 0.0511327 0.25 0.02 pose: 0.32928982 0.0668146 -3.86801 0 -0.0007826520.000396221 0.999434 -0.0336321 uwb: 0.49948191 1228.74 1003.19 +imu_odom_: 1691062868.124200522 0.447716 -0.378284 9.71806 -0.0703074 -0.0181095 0.0532632 0.25 0.02 pose: 0.0 0.0668146 -3.86801 0 -0.0007826520.000396221 0.999434 -0.0336321 uwb: 0.0 1228.74 1003.19 +imu_odom_: 1691062868.141143610 0.521936 -0.167594 9.90721 -0.0713727 -0.0213053 0.0447411 0.2 0 pose: 0.52053901 0.0569309 -3.86507 0 -0.000186772-0.00442519 0.999414 -0.0339504 uwb: 0.50043852 1229.19 1005.4 +imu_odom_: 1691062868.157196876 0.526724 -0.339977 9.72046 -0.0809601 0 0.0490022 0.2 0 pose: 0.0 0.0569309 -3.86507 0 -0.000186772-0.00442519 0.999414 -0.0339504 uwb: 0.0 1229.19 1005.4 +imu_odom_: 1691062868.184076755 0.383072 -0.179565 10.0748 -0.036219 -0.0330232 0.0319579 0.25 0 pose: 0.32996354 0.0517957 -3.86779 0 0.00246391 -0.00425316 0.999408 -0.0340614 uwb: 0.0 1229.19 1005.4 +imu_odom_: 1691062868.209073453 0.37589 -0.373495 9.7851 -0.0543285 0.0181095 0.0372843 0.25 0 pose: 0.0 0.0517957 -3.86779 0 0.00246391 -0.00425316 0.999408 -0.0340614 uwb: 0.50047644 1228.98 1005.39 +imu_odom_: 1691062868.226076621 0.581791 0.0215478 9.92636 -0.0500674 -0.0287621 0.0340885 0.21 0 pose: 0.51876577 0.0432118 -3.86822 0 0.000274987 -0.00399017 0.999416 -0.0339374 uwb: 0.0 1228.98 1005.39 +imu_odom_: 1691062868.251063403 0.0167594 -0.304064 9.80904 -0.0617853 0.00213053 0.0607201 0.21 0 pose: 0.7150664 0.0406938 -3.86663 0 0.000689988 -0.00333202 0.999419 -0.0339167 uwb: 0.50040644 1229.2 1007 +imu_odom_: 1691062868.268210938 0.280122 -0.466869 9.8665 -0.0553937 -0.0553937 0.0415453 0.23 0 pose: 0.34839286 0.0369152 -3.8726 0 -0.00129303 -0.00284541 0.999412 -0.0341582 uwb: 0.0 1229.2 1007 +imu_odom_: 1691062868.293075519 0.708684 -0.220267 9.90481 -0.0607201 -0.0617853 0.0458064 0.23 0 pose: 0.0 0.0369152 -3.8726 0 -0.00129303 -0.00284541 0.999412 -0.0341582 uwb: 0.49981147 1229.59 1007.41 +imu_odom_: 1691062868.318265289 0.591368 -0.0670376 10.2065 -0.036219 -0.0607201 0.0287621 0.22 0.02 pose: 0.7008922 0.0353447 -3.87508 0 -0.0013985 -0.00348077 0.999409 -0.0341655 uwb: 0.0 1229.59 1007.41 +imu_odom_: 1691062868.344152102 0.37589 -0.232238 10.1107 -0.0458064 -0.0340885 0.0532632 0.22 0.02 pose: 0.0 0.0353447 -3.87508 0 -0.0013985 -0.00348077 0.999409 -0.0341655 uwb: 0.49831531 1229.62 1007.21 +imu_odom_: 1691062868.361185602 0.4956 -0.287304 9.84735 -0.0468716 -0.0191748 0.0426106 0.19 0 pose: 0.42019115 0.0268938 -3.86973 0 0.00215073 -0.00313026 0.999408 -0.0342077 uwb: 0.0 1229.62 1007.21 +imu_odom_: 1691062868.386203590 0.342371 -0.361524 9.86172 -0.0692422 0.0149137 0.0628506 0.19 0 pose: 0.0 0.0268938 -3.86973 0 0.00215073 -0.00313026 0.999408 -0.0342077 uwb: 0.0 1229.62 1007.21 +imu_odom_: 1691062868.413078803 0.529119 -0.141258 9.9527 -0.0479369 -0.0255663 0.0426106 0.23 0 pose: 0.51033128 0.0130968 -3.87284 0 0.00207325 -0.00141442 0.999409 -0.0342971 uwb: 0.50019062 1229.5 1008.41 +imu_odom_: 1691062868.438218118 0.775721 -0.234632 10.2208 -0.0490022 -0.0213053 0.0383495 0.18 0.02 pose: 0.61954235 0.00708302 -3.86904 0 0.00272401 -0.00156953 0.999395 -0.034645 uwb: 0.0 1229.5 1008.41 +imu_odom_: 1691062868.463061409 0.651223 -0.0646434 10.4052 -0.0490022 0.00319579 0.0532632 0.21 -0.02 pose: 0.8112815 0.00464082 -3.8675 0 0.00360122 -0.00147865 0.999392 -0.0346387 uwb: 0.50009437 1229.57 1009.82 +imu_odom_: 1691062868.484068050 0.572214 -0.299275 9.66779 -0.0458064 -0.0479369 0.0436758 0.21 -0.02 pose: 0.23950844 -0.000697238-3.87596 0 0.00581589 -0.0007009060.999382 -0.034669 uwb: 0.0 1229.57 1009.82 +imu_odom_: 1691062868.509178200 0.593762 -0.167594 9.97185 -0.0628506 -0.04048 0.04048 0.18 0 pose: 0.0 -0.000697238-3.87596 0 0.00581589 -0.0007009060.999382 -0.034669 uwb: 0.49999230 1230.08 1010.04 +imu_odom_: 1691062868.527205058 0.438139 -0.213084 9.81862 -0.0628506 0.00213053 0.04048 0.18 0 pose: 0.24003048 -0.00915367-3.87062 0 0.00716401 0.000296209 0.999369 -0.0347987 uwb: 0.0 1230.08 1010.04 +imu_odom_: 1691062868.552125927 0.529119 -0.0837971 9.64624 -0.0713727 0.0181095 0.0532632 0.18 -0.02 pose: 0.47978682 -0.00915367-3.87062 0 0.00868036 0.00112442 0.999355 -0.0348336 uwb: 0.50114723 1230.36 1011.06 +imu_odom_: 1691062868.569122096 0.474052 -0.385466 10.1562 -0.0607201 0.00958738 0.052198 0.18 -0.02 pose: 0.0 -0.00915367-3.87062 0 0.00868036 0.00112442 0.999355 -0.0348336 uwb: 0.0 1230.36 1011.06 +imu_odom_: 1691062868.594060464 0.636858 -0.0957681 10.2927 -0.0479369 0.0245011 0.0426106 0.21 0 pose: 0.41945619 -0.0229466 -3.87374 0 0.00664686 0.00247604 0.999361 -0.0350361 uwb: 0.49881403 1230.23 1012.27 +imu_odom_: 1691062868.619171781 0.790087 -0.11971 9.92875 -0.0639159 0.0127832 0.0415453 0.23 -0.02 pose: 0.34990653 -0.0288996 -3.86999 0 0.00775926 0.00328492 0.999347 -0.0351355 uwb: 0.0 1230.23 1012.27 +imu_odom_: 1691062868.642169805 0.792481 -0.366313 9.39245 -0.0617853 0.00852212 0.0479369 0.23 -0.02 pose: 0.0 -0.0288996 -3.86999 0 0.00775926 0.00328492 0.999347 -0.0351355 uwb: 0.49998938 1229.99 1013.26 +imu_odom_: 1691062868.667142004 0.366313 -0.328006 9.84496 -0.0511327 0.0436758 0.0543285 0.19 0 pose: 0.7079792 -0.031407 -3.86841 0 0.00839569 0.00338487 0.999341 -0.0351435 uwb: 0.0 1229.99 1013.26 +imu_odom_: 1691062868.694091296 0.560243 -0.0837971 9.84496 -0.0820254 0.0245011 0.0468716 0.19 0 pose: 0.0 -0.031407 -3.86841 0 0.00839569 0.00338487 0.999341 -0.0351435 uwb: 0.50046186 1229.84 1013.25 +imu_odom_: 1691062868.711101756 0.174777 -0.258574 9.91439 -0.0500674 -0.0234358 0.0308927 0.19 -0.02 pose: 0.49034745 -0.036737 -3.87687 0 0.0106307 0.00154648 0.999317 -0.0353443 uwb: 0.0 1229.84 1013.25 +imu_odom_: 1691062868.737109020 0.739808 -0.215478 10.1347 -0.0649811 -0.072438 0.0426106 0.19 -0.02 pose: 0.0 -0.036737 -3.87687 0 0.0106307 0.00154648 0.999317 -0.0353443 uwb: 0.0 1229.84 1013.25 +imu_odom_: 1691062868.754167309 0.507571 -0.411803 9.33499 -0.0649811 0.0511327 0.0436758 0.18 0.02 pose: 0.51953573 -0.0505259 -3.88001 0 0.00729972 0.00279417 0.999339 -0.0355146 uwb: 0.50115306 1230.2 1013.68 +imu_odom_: 1691062868.779057556 0.596156 -0.28491 9.48822 -0.0553937 -0.0106526 0.0426106 0.18 0.02 pose: 0.0 -0.0505259 -3.88001 0 0.00729972 0.00279417 0.999339 -0.0355146 uwb: 0.0 1230.2 1013.68 +imu_odom_: 1691062868.803042522 0.47884 -0.476446 9.75877 -0.052198 0.00852212 0.0319579 0.23 0 pose: 0.42006575 -0.0589912 -3.87469 0 0.00956152 0.00126596 0.999322 -0.0355414 uwb: 0.50065434 1230.29 1014.49 +imu_odom_: 1691062868.830174678 0.519542 -0.177171 9.97664 -0.0607201 -0.0415453 0.0383495 0.23 0 pose: 0.0 -0.0589912 -3.87469 0 0.00956152 0.00126596 0.999322 -0.0355414 uwb: 0.0 1230.29 1014.49 +imu_odom_: 1691062868.855043925 0.380678 -0.143652 10.2161 -0.04048 -0.0628506 0.0394148 0.19 0 pose: 0.41996074 -0.0727794 -3.87783 0 0.00962353 -0.00268586 0.999316 -0.0356094 uwb: 0.49755994 1230.65 1015.12 +imu_odom_: 1691062868.872113298 0.153229 -0.407014 9.35654 -0.0617853 0.0191748 0.0436758 0.19 0 pose: 0.0 -0.0727794 -3.87783 0 0.00962353 -0.00268586 0.999316 -0.0356094 uwb: 0.0 1230.65 1015.12 +imu_odom_: 1691062868.897041167 0.497994 -0.141258 9.52174 -0.0436758 -0.0245011 0.04048 0.24 0 pose: 0.51956490 -0.0727794 -3.87783 0 0.00766757 -0.0013197 0.999338 -0.035529 uwb: 0.50062226 1231.08 1016.16 +imu_odom_: 1691062868.922025908 -0.110133 -0.373495 10.058 -0.0713727 0.0287621 0.056459 0.24 0 pose: 0.24045629 -0.0812451 -3.87251 0 0.00597035 -0.0007054790.99935 -0.0355427 uwb: 0.0 1231.08 1016.16 +imu_odom_: 1691062868.947107184 0.0622492 -0.153229 9.9934 -0.0532632 -0.02024 0.0351537 0.23 0 pose: 0.42033698 -0.0865678 -3.88097 0 0.00439434 0.00114875 0.999355 -0.0356266 uwb: 0.50048810 1231.36 1017.19 +imu_odom_: 1691062868.965038381 0.519542 0.0502782 10.3884 -0.0575243 -0.00532632 0.052198 0.23 0 pose: 0.0 -0.0865678 -3.88097 0 0.00439434 0.00114875 0.999355 -0.0356266 uwb: 0.0 1231.36 1017.19 +imu_odom_: 1691062868.989041138 0.100556 -0.0263362 9.92875 -0.0490022 0.0383495 0.0223706 0.19 0.02 pose: 0.50951757 -0.0950343 -3.87565 0 0.000425165 0.00145131 0.999359 -0.0357712 uwb: 0.49856613 1231.85 1017.03 +imu_odom_: 1691062869.16073550 0.442927 -0.390255 9.55765 -0.0490022 -0.0255663 0.0351537 0.24 -0.05 pose: 0.33922341 -0.105954 -3.8806 0 -0.00193491 0.0033158 0.999358 -0.0356225 uwb: 0.0 1231.85 1017.03 +imu_odom_: 1691062869.41059749 0.392649 -0.356736 9.64384 -0.052198 0.00213053 0.0426106 0.24 -0.05 pose: 0.0 -0.105954 -3.8806 0 -0.00193491 0.0033158 0.999358 -0.0356225 uwb: 0.50039186 1232.02 1017.86 +imu_odom_: 1691062869.66062573 -0.0143652 -0.337582 10.0556 -0.0340885 -0.0276969 0.0490022 0.2 0 pose: 0.8167353 -0.108821 -3.8788 0 -0.00157982 0.00257348 0.999361 -0.0356036 uwb: 0.0 1232.02 1017.86 +imu_odom_: 1691062869.80183369 0.270545 -0.0766145 9.65821 -0.0458064 -0.0127832 0.0383495 0.2 0 pose: 0.0 -0.108821 -3.8788 0 -0.00157982 0.00257348 0.999361 -0.0356036 uwb: 0.0 1232.02 1017.86 +imu_odom_: 1691062869.96128724 0.488417 -0.201113 9.68455 -0.0671117 0.0213053 0.0543285 0.17 0.02 pose: 0.50870680 -0.117287 -3.87348 0 -0.0012972 -0.00170519 0.999363 -0.0356299 uwb: 0.49986107 1232.31 1018.08 +imu_odom_: 1691062869.120023279 0.45011 -0.112527 9.75398 -0.0500674 0.0170442 0.0426106 0.17 0.02 pose: 0.0 -0.117287 -3.87348 0 -0.0012972 -0.00170519 0.999363 -0.0356299 uwb: 0.0 1232.31 1018.08 +imu_odom_: 1691062869.145165219 0.325611 -0.213084 10.2568 -0.076699 0.00958738 0.0617853 0.18 0.02 pose: 0.39120702 -0.122609 -3.88195 0 -0.00279253 -0.0005416520.999356 -0.035765 uwb: 0.50001563 1232.23 1017.67 +imu_odom_: 1691062869.169177018 0.258574 -0.268151 9.61751 -0.0617853 0.0127832 0.0479369 0.18 0.02 pose: 0.0 -0.122609 -3.88195 0 -0.00279253 -0.0005416520.999356 -0.035765 uwb: 0.0 1232.23 1017.67 +imu_odom_: 1691062869.193196399 0.368707 -0.395043 9.60554 -0.0703074 -0.00319579 0.0553937 0.19 0 pose: 0.41007675 -0.131077 -3.87663 0 -0.00163763 0.0010707 0.999351 -0.0359598 uwb: 0.50163430 1232.49 1019.12 +imu_odom_: 1691062869.218101228 0.395043 -0.306458 9.39006 -0.0745685 0.00213053 0.0436758 0.19 0 pose: 0.0 -0.131077 -3.87663 0 -0.00163763 0.0010707 0.999351 -0.0359598 uwb: 0.0 1232.49 1019.12 +imu_odom_: 1691062869.245033313 0.304064 -0.225055 9.73243 -0.0415453 -0.0191748 0.0383495 0.22 0 pose: 0.47942227 -0.144864 -3.87978 0 -0.00506778 -0.00212398 0.999326 -0.0362921 uwb: 0.50203677 1233.06 1019.16 +imu_odom_: 1691062869.261175823 0.464475 -0.167594 9.97424 -0.052198 0.0181095 0.0490022 0.22 0 pose: 0.0 -0.144864 -3.87978 0 -0.00506778 -0.00212398 0.999326 -0.0362921 uwb: 0.0 1233.06 1019.16 +imu_odom_: 1691062869.287306747 0.591368 -0.217872 10.1586 -0.0607201 0.00319579 0.0287621 0.25 0 pose: 0.49898611 -0.144864 -3.87978 0 -0.00243962 -0.00403808 0.999324 -0.0364568 uwb: 0.0 1233.06 1019.16 +imu_odom_: 1691062869.314346451 0.543484 -0.414197 10.398 -0.0756338 0.00639159 0.0585895 0.18 0.02 pose: 0.42988268 -0.158646 -3.88295 0 -0.00161289 -0.00132934 0.999332 -0.0364868 uwb: 0.49616003 1232.98 1020.59 +imu_odom_: 1691062869.331187754 0.146046 -0.1652 9.64863 -0.0500674 -0.0255663 0.0426106 0.23 -0.02 pose: 0.0 -0.158646 -3.88295 0 -0.00161289 -0.00132934 0.999332 -0.0364868 uwb: 0.0 1232.98 1020.59 +imu_odom_: 1691062869.356149455 0.344765 -0.246603 9.35893 -0.0553937 0.036219 0.0585895 0.23 -0.02 pose: 0.0 -0.158646 -3.88295 0 -0.00161289 -0.00132934 0.999332 -0.0364868 uwb: 0.50244507 1233.24 1021.64 +imu_odom_: 1691062869.382213007 0.117316 -0.292093 9.91199 -0.036219 -0.0213053 0.0298274 0.21 0.02 pose: 0.53337742 -0.172429 -3.88612 0 0.00107687 -0.00318029 0.999322 -0.0366555 uwb: 0.0 1233.24 1021.64 +imu_odom_: 1691062869.408287643 0.21069 -0.488417 9.73482 -0.0553937 0.00213053 0.0500674 0.19 0.02 pose: 0.59838611 -0.180907 -3.88082 0 -0.004909 -0.00241041 0.999308 -0.0367905 uwb: 0.49860697 1233.61 1022.29 +imu_odom_: 1691062869.425375681 0.435745 -0.253785 9.77553 -0.0436758 0.00319579 0.0511327 0.23 -0.02 pose: 0.9100341 -0.180907 -3.88082 0 -0.00525736 -0.00326349 0.999302 -0.0368346 uwb: 0.0 1233.61 1022.29 +imu_odom_: 1691062869.450012193 0.474052 -0.167594 10.0628 -0.0681769 0.00319579 0.0681769 0.23 -0.02 pose: 0.0 -0.180907 -3.88082 0 -0.00525736 -0.00326349 0.999302 -0.0368346 uwb: 0.49911445 1234.19 1022.14 +imu_odom_: 1691062869.467027319 0.826 -0.447716 9.80665 -0.0468716 0 0.0340885 0.18 -0.02 pose: 0.23875890 -0.186208 -3.8893 0 -0.00528786 -0.00457134 0.999292 -0.0369546 uwb: 0.0 1234.19 1022.14 +imu_odom_: 1691062869.492166342 0.665588 -0.220267 9.67497 -0.0436758 -0.00426106 0.0415453 0.18 -0.02 pose: 0.0 -0.186208 -3.8893 0 -0.00528786 -0.00457134 0.999292 -0.0369546 uwb: 0.49987564 1234.27 1022.56 +imu_odom_: 1691062869.517142334 0.596156 -0.258574 10.173 -0.0255663 -0.0330232 0.0223706 0.23 0.02 pose: 0.76977104 -0.204513 -3.88627 0 0.00143524 -0.00248472 0.999299 -0.0373271 uwb: 0.0 1234.27 1022.56 +imu_odom_: 1691062869.541159965 0.464475 -0.138864 10.4507 -0.0681769 -0.0319579 0.0585895 0.23 0.02 pose: 0.0 -0.204513 -3.88627 0 0.00143524 -0.00248472 0.999299 -0.0373271 uwb: 0.49956650 1234.87 1023.03 +imu_odom_: 1691062869.565035855 0.390255 -0.196325 10.4531 -0.0617853 -0.0447411 0.0415453 0.18 0.02 pose: 0.6882929 -0.208466 -3.88719 0 0.00221763 -0.00232351 0.9993 -0.0372665 uwb: 0.0 1234.87 1023.03 +imu_odom_: 1691062869.589157897 0.766145 -0.0861913 10.0987 -0.0607201 -0.0681769 0.0458064 0.25 0.02 pose: 0.49007039 -0.208466 -3.88719 0 0.0034749 0.000354388 0.999297 -0.0373327 uwb: 0.50024021 1234.81 1023.85 +imu_odom_: 1691062869.604154808 0.579397 -0.155623 9.8258 -0.0468716 -0.00639159 0.0330232 0.25 0.02 pose: 0.0 -0.208466 -3.88719 0 0.0034749 0.000354388 0.999297 -0.0373327 uwb: 0.0 1234.81 1023.85 +imu_odom_: 1691062869.628125775 0.447716 -0.160412 10.0126 -0.0681769 -0.0117179 0.0639159 0.25 0.02 pose: 0.0 -0.208466 -3.88719 0 0.0034749 0.000354388 0.999297 -0.0373327 uwb: 0.0 1234.81 1023.85 +imu_odom_: 1691062869.652991523 0.497994 -0.0790087 10.0604 -0.0500674 -0.0213053 0.0415453 0.18 0 pose: 0.62983177 -0.222243 -3.89038 0 0.00583295 0.00222403 0.999279 -0.0374518 uwb: 0.49984064 1235.15 1024.92 +imu_odom_: 1691062869.674998231 0.153229 -0.196325 9.79468 -0.0575243 -0.0138484 0.0628506 0.18 0 pose: 0.0 -0.222243 -3.89038 0 0.00583295 0.00222403 0.999279 -0.0374518 uwb: 0.0 1235.15 1024.92 +imu_odom_: 1691062869.691127909 0.433351 -0.0885855 10.1394 -0.0500674 -0.036219 0.0394148 0.18 0 pose: 0.48039345 -0.230729 -3.88509 0 0.0040198 0.00477245 0.999268 -0.0377359 uwb: 0.50000397 1235.98 1026.47 +imu_odom_: 1691062869.716982349 0.591368 -0.361524 9.99579 -0.0649811 -0.0298274 0.0639159 0.18 0 pose: 0.0 -0.230729 -3.88509 0 0.0040198 0.00477245 0.999268 -0.0377359 uwb: 0.0 1235.98 1026.47 +imu_odom_: 1691062869.742043502 0.725443 -0.227449 9.86411 -0.0713727 -0.0553937 0.0511327 0.21 -0.02 pose: 0.39983402 -0.244504 -3.88829 0 0.00244818 0.00505775 0.999262 -0.0380048 uwb: 0.49986107 1235.91 1027.92 +imu_odom_: 1691062869.759185787 0.488417 -0.0622492 9.87369 -0.076699 0.0266316 0.052198 0.21 -0.02 pose: 0.0 -0.244504 -3.88829 0 0.00244818 0.00505775 0.999262 -0.0380048 uwb: 0.0 1235.91 1027.92 +imu_odom_: 1691062869.784115698 0.517148 -0.318429 9.39006 -0.0639159 -0.0149137 0.036219 0.19 -0.02 pose: 0.49957525 -0.244504 -3.88829 0 0.00627679 0.00317185 0.999237 -0.0384204 uwb: 0.0 1235.91 1027.92 +imu_odom_: 1691062869.808071791 0.703895 -0.332794 9.4978 -0.0735032 0.0245011 0.0500674 0.22 0 pose: 0.0 -0.244504 -3.88829 0 0.00627679 0.00317185 0.999237 -0.0384204 uwb: 0.49944692 1236.16 1028.79 +imu_odom_: 1691062869.831045026 0.234632 -0.160412 10.0102 -0.0500674 0.0394148 0.0415453 0.22 0 pose: 0.35095939 -0.258274 -3.89151 0 0.00599495 0.0013814 0.999242 -0.0384489 uwb: 0.0 1236.16 1028.79 +imu_odom_: 1691062869.847135331 0.426168 -0.332794 9.62948 -0.0713727 0.0170442 0.0468716 0.22 0 pose: 0.0 -0.258274 -3.89151 0 0.00599495 0.0013814 0.999242 -0.0384489 uwb: 0.50185011 1236.61 1028.84 +imu_odom_: 1691062869.873239714 0.723049 -0.251391 10.2831 -0.0308927 -0.0649811 0.0340885 0.19 0 pose: 0.6992298 -0.258274 -3.89151 0 0.00647305 0.000917796 0.999238 -0.0384884 uwb: 0.0 1236.61 1028.84 +imu_odom_: 1691062869.899052740 0.754174 -0.0215478 9.89045 -0.0575243 -0.0191748 0.0479369 0.19 0 pose: 0.47007198 -0.266771 -3.88624 0 0.00445082 -0.0004835880.999243 -0.0386336 uwb: 0.49860406 1237.07 1029.53 +imu_odom_: 1691062869.923135993 1.25217 -0.318429 9.42837 -0.0458064 -0.0149137 0.0308927 0.19 0 pose: 0.0 -0.266771 -3.88624 0 0.00445082 -0.0004835880.999243 -0.0386336 uwb: 0.0 1237.07 1029.53 +imu_odom_: 1691062869.938136112 0.237026 -0.342371 9.36612 -0.0543285 0.0287621 0.0415453 0.18 0.02 pose: 0.43983959 -0.280539 -3.88947 0 0.00797655 -0.0003158660.999222 -0.0386278 uwb: 0.0 1237.07 1029.53 +imu_odom_: 1691062869.962256695 0.335188 -0.158017 9.48583 -0.0468716 -0.0308927 0.0468716 0.18 0.02 pose: 0.0 -0.280539 -3.88947 0 0.00797655 -0.0003158660.999222 -0.0386278 uwb: 0.0 1237.07 1029.53 +imu_odom_: 1691062869.988273293 -0.0981623 -0.339977 10.2328 -0.0660464 0.0106526 0.0585895 0.23 0.02 pose: 0.48057427 -0.280539 -3.88947 0 0.0109725 0.000491927 0.999194 -0.0385982 uwb: 0.0 1237.07 1029.53 +imu_odom_: 1691062870.14011073 0.191536 -0.150835 9.89284 -0.0553937 -0.0191748 0.036219 0.23 0.02 pose: 0.0 -0.280539 -3.88947 0 0.0109725 0.000491927 0.999194 -0.0385982 uwb: 0.99991169 1237.22 1030.39 +imu_odom_: 1691062870.30952120 0.395043 0.059855 10.2496 -0.0639159 -0.0149137 0.052198 0.23 -0.02 pose: 0.39864701 -0.294308 -3.8927 0 0.00723117 0.00054494 0.999222 -0.0387684 uwb: 0.0 1237.22 1030.39 +imu_odom_: 1691062870.55971276 0.0574608 -0.0287304 9.85932 -0.0511327 0.015979 0.0287621 0.23 -0.02 pose: 0.0 -0.294308 -3.8927 0 0.00723117 0.00054494 0.999222 -0.0387684 uwb: 0.50154681 1236.87 1031.61 +imu_odom_: 1691062870.79969951 0.138864 -0.342371 9.71806 -0.0426106 -0.0298274 0.0447411 0.22 0 pose: 0.52006071 -0.302809 -3.88743 0 0.00279023 0.00119415 0.999237 -0.0389465 uwb: 0.0 1236.87 1031.61 +imu_odom_: 1691062870.94256112 0.308852 -0.399832 9.85214 -0.0436758 -0.02024 0.0266316 0.22 0 pose: 0.0 -0.302809 -3.88743 0 0.00279023 0.00119415 0.999237 -0.0389465 uwb: 0.49857781 1236.72 1031.16 +imu_odom_: 1691062870.119118944 0.0790087 -0.471658 10.1083 -0.052198 -0.0127832 0.0745685 0.18 0 pose: 0.40973262 -0.308074 -3.89593 0 -0.0005260930.00246973 0.999241 -0.0388748 uwb: 0.0 1236.72 1031.16 +imu_odom_: 1691062870.144134017 0.507571 -0.0670376 10.3118 -0.036219 -0.00745685 0.0383495 0.18 0 pose: 0.0 -0.308074 -3.89593 0 -0.0005260930.00246973 0.999241 -0.0388748 uwb: 0.50122599 1237.13 1032.69 +imu_odom_: 1691062870.170170447 0.502782 -0.311246 10.3166 -0.0458064 -0.0266316 0.0575243 0.2 0 pose: 0.39129744 -0.316575 -3.89066 0 -0.00243371 -0.0002714530.999238 -0.0389548 uwb: 0.0 1237.13 1032.69 +imu_odom_: 1691062870.195105025 0.426168 -0.23942 9.71088 -0.0649811 0.00213053 0.0596548 0.2 0 pose: 0.0 -0.316575 -3.89066 0 -0.00243371 -0.0002714530.999238 -0.0389548 uwb: 0.49999815 1237.31 1033.98 +imu_odom_: 1691062870.220979589 0.505177 -0.0694318 9.90242 -0.0671117 -0.0181095 0.0553937 0.17 0.02 pose: 0.50011481 -0.330342 -3.8939 0 -0.00108522 0.000178142 0.999227 -0.0393082 uwb: 0.0 1237.31 1033.98 +imu_odom_: 1691062870.238098543 0.368707 -0.155623 9.76595 -0.0607201 -0.0213053 0.052198 0.17 0.02 pose: 0.0 -0.330342 -3.8939 0 -0.00108522 0.000178142 0.999227 -0.0393082 uwb: 0.0 1237.31 1033.98 +imu_odom_: 1691062870.262985582 0.732626 -0.411803 9.88087 -0.072438 -0.00213053 0.0490022 0.22 0 pose: 0.50859889 -0.344105 -3.89716 0 0.00283302 -0.00153342 0.999203 -0.0397772 uwb: 0.50089643 1237.57 1035.29 +imu_odom_: 1691062870.287104416 0.385466 -0.344765 9.44752 -0.0692422 -0.015979 0.0490022 0.24 0 pose: 0.24975701 -0.344105 -3.89716 0 0.00281777 0.000433902 0.999197 -0.0399567 uwb: 0.0 1237.57 1035.29 +imu_odom_: 1691062870.301102719 0.533907 -0.181959 10.1921 -0.0713727 0.0170442 0.052198 0.24 0 pose: 0.35008153 -0.350114 -3.89345 0 0.00406143 -0.0007150180.999186 -0.0401399 uwb: 0.49781077 1237.7 1036.16 +imu_odom_: 1691062870.326069087 0.617704 -0.0335188 10.3669 -0.0415453 0.00426106 0.0383495 0.24 0 pose: 0.0 -0.350114 -3.89345 0 0.00406143 -0.0007150180.999186 -0.0401399 uwb: 0.0 1237.7 1036.16 +imu_odom_: 1691062870.350971291 0.852336 0.00718261 10.1035 -0.0415453 -0.0276969 0.0330232 0.18 0 pose: 0.7024671 -0.352618 -3.89191 0 0.00368255 -0.00132376 0.999185 -0.0401754 uwb: 0.50058728 1237.99 1037.27 +imu_odom_: 1691062870.376025737 0.679953 -0.177171 9.56244 -0.0639159 -0.00852212 0.0543285 0.2 0 pose: 0.39090080 -0.357862 -3.90042 0 0.00385252 -0.00107935 0.999178 -0.0403359 uwb: 0.0 1237.99 1037.27 +imu_odom_: 1691062870.392988366 0.624887 -0.459687 10.0533 -0.0543285 0.0234358 0.0458064 0.2 0 pose: 0.0 -0.357862 -3.90042 0 0.00385252 -0.00107935 0.999178 -0.0403359 uwb: 0.50009731 1238.22 1037.94 +imu_odom_: 1691062870.408963470 0.158017 -0.0335188 10.1586 -0.0394148 0.0266316 0.0458064 0.2 0 pose: 0.0 -0.357862 -3.90042 0 0.00385252 -0.00107935 0.999178 -0.0403359 uwb: 0.0 1238.22 1037.94 +imu_odom_: 1691062870.433228129 0.426168 -0.399832 9.63187 -0.0681769 0.0266316 0.0490022 0.27 0 pose: 0.49925444 -0.366378 -3.89518 0 0.00783074 0.00207202 0.999155 -0.0402922 uwb: 0.0 1238.22 1037.94 +imu_odom_: 1691062870.458949577 0.464475 -0.229843 10.0437 -0.0500674 0.0127832 0.0511327 0.25 0.02 pose: 0.49937693 -0.380136 -3.89846 0 0.00782858 0.00110011 0.999147 -0.0405344 uwb: 0.49925152 1238.5 1038.84 +imu_odom_: 1691062870.484058270 0.368707 -0.385466 10.0149 -0.0436758 0.0266316 0.0372843 0.19 0 pose: 0.0 -0.380136 -3.89846 0 0.00737222 0.000444434 0.999149 -0.0405716 uwb: 0.0 1238.5 1038.84 +imu_odom_: 1691062870.508952892 0.397437 -0.337582 9.94791 -0.072438 -0.00745685 0.0671117 0.22 0.05 pose: 0.51138415 -0.393891 -3.90174 0 0.00293785 -0.0013379 0.999162 -0.0408061 uwb: 0.49994274 1238.39 1040.11 +imu_odom_: 1691062870.534096583 0.426168 -0.366313 9.94312 -0.0394148 -0.00532632 0.0287621 0.22 0.05 pose: 0.0 -0.393891 -3.90174 0 0.00293785 -0.0013379 0.999162 -0.0408061 uwb: 0.0 1238.39 1040.11 +imu_odom_: 1691062870.558004262 0.632069 -0.296881 9.60554 -0.0447411 -0.0351537 0.0468716 0.21 0 pose: 0.66992484 -0.400033 -3.89797 0 0.00145326 -0.00732871 0.999131 -0.0410029 uwb: 0.50061061 1238.7 1040.8 +imu_odom_: 1691062870.575948292 0.282516 -0.409408 9.33978 -0.0468716 0.0117179 0.0330232 0.21 0 pose: 0.0 -0.400033 -3.89797 0 0.00145326 -0.00732871 0.999131 -0.0410029 uwb: 0.0 1238.7 1040.8 +imu_odom_: 1691062870.599100891 0.277727 -0.440533 9.43315 -0.0607201 0.0351537 0.0692422 0.18 0 pose: 0.7014754 -0.402414 -3.89651 0 0.00222794 -0.00707051 0.999131 -0.0410241 uwb: 0.49933319 1238.55 1042.06 +imu_odom_: 1691062870.626012562 0.213084 -0.270545 9.61751 -0.0511327 0.0127832 0.0436758 0.18 0 pose: 0.0 -0.402414 -3.89651 0 0.00222794 -0.00707051 0.999131 -0.0410241 uwb: 0.0 1238.55 1042.06 +imu_odom_: 1691062870.642208444 0.742203 -0.203507 9.74679 -0.0649811 -0.0170442 0.0500674 0.2 0 pose: 0.41980911 -0.407643 -3.90504 0 0.00154897 -0.00748851 0.999124 -0.0411391 uwb: 0.50245383 1238.97 1042.57 +imu_odom_: 1691062870.668066968 0.423774 -0.296881 9.75158 -0.0383495 -0.0117179 0.0351537 0.2 0 pose: 0.0 -0.407643 -3.90504 0 0.00154897 -0.00748851 0.999124 -0.0411391 uwb: 0.0 1238.97 1042.57 +imu_odom_: 1691062870.690952416 0.447716 -0.0167594 10.3645 -0.0468716 -0.00852212 0.0713727 0.19 0 pose: 0.51011547 -0.416168 -3.89981 0 -0.00194925 -0.00683252 0.999113 -0.0414974 uwb: 0.49720998 1239.1 1042.81 +imu_odom_: 1691062870.707959959 0.684742 -0.402226 9.47386 -0.0585895 0.00213053 0.0415453 0.19 0 pose: 0.0 -0.416168 -3.89981 0 -0.00194925 -0.00683252 0.999113 -0.0414974 uwb: 0.0 1239.1 1042.81 +imu_odom_: 1691062870.734069593 0.246603 -0.277727 9.90721 -0.0479369 0.00958738 0.0543285 0.19 0 pose: 0.40966262 -0.429918 -3.90312 0 0.000853825 -0.00379746 0.999128 -0.0415802 uwb: 0.0 1239.1 1042.81 +imu_odom_: 1691062870.758978214 0.773327 -0.373495 10.1969 -0.0617853 -0.0639159 0.0383495 0.19 0 pose: 0.0 -0.429918 -3.90312 0 0.000853825 -0.00379746 0.999128 -0.0415802 uwb: 0.49996315 1238.88 1043.84 +imu_odom_: 1691062870.771946119 0.816423 -0.222661 9.66539 -0.0553937 -0.0351537 0.052198 0.2 0 pose: 0.41017008 -0.429918 -3.90312 0 0.00159297 -0.00295494 0.999116 -0.0419073 uwb: 0.0 1238.88 1043.84 +imu_odom_: 1691062870.796954776 0.957681 -0.42138 10.1825 -0.0553937 0.00532632 0.0543285 0.2 0 pose: 0.0 -0.429918 -3.90312 0 0.00159297 -0.00295494 0.999116 -0.0419073 uwb: 0.50029854 1239.49 1043.52 +imu_odom_: 1691062870.822083593 0.0885855 -0.0167594 9.63427 -0.0671117 -0.052198 0.0543285 0.23 -0.02 pose: 0.48923045 -0.443665 -3.90643 0 0.00353404 -0.00344426 0.999103 -0.0420602 uwb: 0.0 1239.49 1043.52 +imu_odom_: 1691062870.846941758 -0.229843 0.0550666 9.25119 -0.0660464 -0.187487 0.0308927 0.23 -0.02 pose: 0.0 -0.443665 -3.90643 0 0.00353404 -0.00344426 0.999103 -0.0420602 uwb: 0.50105976 1239.82 1044.23 +imu_odom_: 1691062870.872012536 0.912191 -0.500388 10.1897 -0.0830906 0.0106526 0.0639159 0.19 0.02 pose: 0.40216139 -0.452201 -3.90122 0 0.00611038 -0.00352337 0.999078 -0.0423408 uwb: 0.0 1239.82 1044.23 +imu_odom_: 1691062870.884948944 1.05345 -0.507571 8.9184 -0.0639159 0.0468716 0.0713727 0.19 0.02 pose: 0.0 -0.452201 -3.90122 0 0.00611038 -0.00352337 0.999078 -0.0423408 uwb: 0.0 1239.82 1044.23 +imu_odom_: 1691062870.901682920 -0.0885855 -0.112527 10.6398 -0.0426106 0.00852212 0.0170442 0.18 0 pose: 0.49877030 -0.465945 -3.90455 0 0.00568852 -0.00238231 0.999079 -0.0424655 uwb: 0.49886946 1239.54 1045.48 +imu_odom_: 1691062870.926959602 0.189142 -0.0550666 9.94791 -0.0852212 0.00532632 0.0394148 0.18 0 pose: 0.0 -0.465945 -3.90455 0 0.00568852 -0.00238231 0.999079 -0.0424655 uwb: 0.0 1239.54 1045.48 +imu_odom_: 1691062870.953195812 0.711078 -0.452504 9.2081 -0.0415453 -0.00319579 0.0383495 0.19 -0.02 pose: 0.37989978 -0.465945 -3.90455 0 0.00709789 -0.0037101 0.999052 -0.0427833 uwb: 0.50114725 1238.94 1046.23 +imu_odom_: 1691062870.978052520 0.502782 -0.059855 9.54808 -0.0351537 0.0308927 0.04048 0.19 -0.02 pose: 0.0 -0.465945 -3.90455 0 0.00709789 -0.0037101 0.999052 -0.0427833 uwb: 0.0 1238.94 1046.23 +imu_odom_: 1691062871.980549 0.603339 -0.263362 9.81144 -0.0596548 0.0436758 0.04048 0.18 -0.02 pose: 0.42943937 -0.479687 -3.9079 0 0.00469571 -0.00294849 0.999073 -0.0426783 uwb: 0.49996606 1239 1046.89 +imu_odom_: 1691062871.25969665 0.42138 -0.179565 9.31105 -0.0511327 -0.0106526 0.0426106 0.18 -0.02 pose: 0.0 -0.479687 -3.9079 0 0.00469571 -0.00294849 0.999073 -0.0426783 uwb: 0.0 1239 1046.89 +imu_odom_: 1691062871.52046635 0.380678 -0.418985 10.1179 -0.0745685 0.0468716 0.0628506 0.23 0 pose: 0.48982250 -0.488228 -3.9027 0 0.00591056 -0.00128608 0.999071 -0.0426681 uwb: 0.49997191 1239.42 1048.06 +imu_odom_: 1691062871.65045455 0.325611 -0.311246 9.7851 -0.052198 -0.04048 0.0351537 0.23 0 pose: 0.0 -0.488228 -3.9027 0 0.00591056 -0.00128608 0.999071 -0.0426681 uwb: 0.0 1239.42 1048.06 +imu_odom_: 1691062871.90058487 0.627281 -0.392649 9.89284 -0.0735032 -0.00639159 0.0479369 0.17 0.02 pose: 0.49046996 -0.493429 -3.91124 0 0.00440302 -0.00111044 0.999073 -0.042805 uwb: 0.50129308 1239.74 1049.21 +imu_odom_: 1691062871.115066853 0.804452 -0.287304 10.1897 -0.036219 -0.0106526 0.0255663 0.17 0.02 pose: 0.0 -0.493429 -3.91124 0 0.00440302 -0.00111044 0.999073 -0.042805 uwb: 0.0 1239.74 1049.21 +imu_odom_: 1691062871.128944122 0.45011 -0.143652 9.95748 -0.0436758 0.0138484 0.0575243 0.18 0 pose: 0.81000413 -0.513464 -3.91075 0 0.00684365 -0.00412895 0.999047 -0.0429096 uwb: 0.0 1239.74 1049.21 +imu_odom_: 1691062871.153056248 0.490811 -0.237026 10.1945 -0.0340885 0.0266316 0.0245011 0.18 0 pose: 0.0 -0.513464 -3.91075 0 0.00684365 -0.00412895 0.999047 -0.0429096 uwb: 0.49753955 1239.7 1049.64 +imu_odom_: 1691062871.176062148 0.833182 0.169988 10.1658 -0.0671117 -0.00319579 0.0628506 0.23 0 pose: 0.6015564 -0.515711 -3.90939 0 0.00648197 -0.00357761 0.999049 -0.0429615 uwb: 0.0 1239.7 1049.64 +imu_odom_: 1691062871.201976961 0.806846 -0.328006 9.96227 -0.0394148 -0.0426106 0.0340885 0.23 0 pose: 0.0 -0.515711 -3.90939 0 0.00648197 -0.00357761 0.999049 -0.0429615 uwb: 0.50115308 1240.15 1050.17 +imu_odom_: 1691062871.224965070 0.423774 -0.102951 9.81862 -0.0543285 0.00532632 0.0585895 0.2 0 pose: 0.39987194 -0.515711 -3.90939 0 0.00457632 -0.0001841990.999068 -0.0429317 uwb: 0.0 1240.15 1050.17 +imu_odom_: 1691062871.240907217 0.397437 -0.538695 9.76834 -0.0426106 0.0415453 0.0372843 0.2 0 pose: 0.0 -0.515711 -3.90939 0 0.00457632 -0.0001841990.999068 -0.0429317 uwb: 0.49923112 1240.15 1050.83 +imu_odom_: 1691062871.265888168 0.699107 -0.323217 9.53371 -0.0671117 0.036219 0.0660464 0.25 0 pose: 0.47923271 -0.529451 -3.91273 0 0.00781735 0.000628606 0.99904 -0.0430992 uwb: 0.0 1240.15 1050.83 +imu_odom_: 1691062871.283031037 0.667982 -0.335188 10.3358 -0.0639159 -0.0149137 0.0447411 0.25 0 pose: 0.0 -0.529451 -3.91273 0 0.00781735 0.000628606 0.99904 -0.0430992 uwb: 0.0 1240.15 1050.83 +imu_odom_: 1691062871.307930617 0.665588 -0.208296 9.64384 -0.0671117 0.00958738 0.0649811 0.18 0.02 pose: 0.74038155 -0.543187 -3.91609 0 0.00881378 -0.00221159 0.999007 -0.0436196 uwb: 0.50011482 1239.88 1052.08 +imu_odom_: 1691062871.332916817 0.509965 -0.158017 9.84496 -0.0607201 0.0117179 0.0415453 0.18 0.02 pose: 0.7898453 -0.543187 -3.91609 0 0.00942735 -0.00183628 0.998998 -0.0437138 uwb: 0.0 1239.88 1052.08 +imu_odom_: 1691062871.357172436 0.684742 -0.0790087 9.75158 -0.0585895 0.0106526 0.0511327 0.21 0.02 pose: 0.41987327 -0.551739 -3.9109 0 0.00857496 0.000427022 0.998998 -0.0439266 uwb: 0.49922528 1240.23 1051.94 +imu_odom_: 1691062871.382902634 0.23942 -0.366313 9.3709 -0.0426106 -0.00213053 0.0383495 0.25 0 pose: 0.0 -0.551739 -3.9109 0 0.00857496 0.000427022 0.998998 -0.0439266 uwb: 0.0 1240.23 1051.94 +imu_odom_: 1691062871.398880363 0.129287 -0.280122 10.0149 -0.0607201 -0.0372843 0.0617853 0.25 0 pose: 0.32005039 -0.556918 -3.91946 0 0.00922164 0.00193949 0.998985 -0.0440483 uwb: 0.50012940 1240 1053.21 +imu_odom_: 1691062871.421883638 0.555455 -0.172383 10.0652 -0.0617853 0.0170442 0.0372843 0.25 0 pose: 0.0 -0.556918 -3.91946 0 0.00922164 0.00193949 0.998985 -0.0440483 uwb: 0.0 1240 1053.21 +imu_odom_: 1691062871.446925543 0.622492 -0.179565 10.003 -0.128897 0.0639159 0.0788296 0.23 0 pose: 0.42061115 -0.565473 -3.91428 0 0.00673636 0.00137353 0.998999 -0.0442093 uwb: 0.49990191 1240.11 1054.99 +imu_odom_: 1691062871.471020462 1.08218 -0.560243 10.7859 -0.0575243 -0.036219 0.0426106 0.2 0.02 pose: 0.0 -0.565473 -3.91428 0 0.00673636 0.00137353 0.998999 -0.0442093 uwb: 0.0 1240.11 1054.99 +imu_odom_: 1691062871.485947086 0.603339 -0.361524 9.20331 -0.052198 -0.0117179 0.0287621 0.2 0.02 pose: 0.39942572 -0.57516 -3.91667 0 0.00912085 0.00138487 0.998959 -0.0446777 uwb: 0.0 1240.11 1054.99 +imu_odom_: 1691062871.511952602 0.265756 -0.368707 9.60314 -0.0436758 0.0298274 0.0490022 0.2 0.02 pose: 0.0 -0.57516 -3.91667 0 0.00912085 0.00138487 0.998959 -0.0446777 uwb: 0.49989024 1240.4 1055.5 +imu_odom_: 1691062871.536914595 0.553061 -0.299275 9.71806 -0.036219 0.0245011 0.0383495 0.25 0 pose: 0.7112166 -0.579204 -3.91767 0 0.00982093 0.000977692 0.998952 -0.0446925 uwb: 0.0 1240.4 1055.5 +imu_odom_: 1691062871.553894140 0.656011 -0.220267 9.74919 -0.0447411 -0.00213053 0.0436758 0.25 0 pose: 0.0 -0.579204 -3.91767 0 0.00982093 0.000977692 0.998952 -0.0446925 uwb: 0.50116767 1240.04 1058.06 +imu_odom_: 1691062871.579003708 0.35913 -0.234632 10.24 -0.0490022 0.00106526 0.0735032 0.21 -0.02 pose: 0.39930032 -0.579204 -3.91767 0 0.0106332 -0.00170379 0.998942 -0.0447073 uwb: 0.0 1240.04 1058.06 +imu_odom_: 1691062871.605096427 0.751779 -0.0694318 9.96946 -0.0340885 -0.036219 0.0308927 0.22 0 pose: 0.49933902 -0.592932 -3.92106 0 0.00796348 -0.00389802 0.998956 -0.0448199 uwb: 0.49864782 1240.73 1058.23 +imu_odom_: 1691062871.627988000 0.667982 -0.462081 9.94073 -0.0490022 0.00532632 0.0394148 0.22 0 pose: 0.0 -0.592932 -3.92106 0 0.00796348 -0.00389802 0.998956 -0.0448199 uwb: 0.0 1240.73 1058.23 +imu_odom_: 1691062871.645011001 0.0502782 -0.402226 9.14585 -0.0266316 -0.0106526 0.0308927 0.19 0 pose: 0.43030267 -0.601496 -3.9159 0 0.00687729 -0.00201205 0.998951 -0.0452244 uwb: 0.0 1240.73 1058.23 +imu_odom_: 1691062871.668011359 0.0646434 -0.241814 9.56244 -0.0490022 -0.00426106 0.0628506 0.19 0 pose: 0.0 -0.601496 -3.9159 0 0.00687729 -0.00201205 0.998951 -0.0452244 uwb: 0.0 1240.73 1058.23 +imu_odom_: 1691062871.690889808 0.1652 -0.246603 9.67736 -0.0490022 0 0.04048 0.19 0 pose: 0.47982475 -0.615221 -3.91931 0 0.00870762 -0.00263345 0.99894 -0.0451256 uwb: 0.99891429 1241.55 1058.43 +imu_odom_: 1691062871.715926464 0.035913 -0.560243 9.81623 -0.0649811 0 0.0468716 0.19 0 pose: 0.0 -0.615221 -3.91931 0 0.00870762 -0.00263345 0.99894 -0.0451256 uwb: 0.0 1241.55 1058.43 +imu_odom_: 1691062871.729927392 0.172383 -0.486023 9.64145 -0.052198 0.0149137 0.0276969 0.19 0 pose: 0.39982529 -0.615221 -3.91931 0 0.00475939 -0.00262634 0.998956 -0.0453684 uwb: 0.0 1241.55 1058.43 +imu_odom_: 1691062871.745931370 0.28491 0.011971 9.87129 -0.0500674 0.0213053 0.0447411 0.19 0 pose: 0.0 -0.615221 -3.91931 0 0.00475939 -0.00262634 0.998956 -0.0453684 uwb: 0.50049396 1241.59 1059.78 +imu_odom_: 1691062871.763053823 0.538695 -0.481235 9.65582 -0.0596548 0.00958738 0.0607201 0.19 0 pose: 0.0 -0.615221 -3.91931 0 0.00475939 -0.00262634 0.998956 -0.0453684 uwb: 0.0 1241.59 1059.78 +imu_odom_: 1691062871.787889241 0.493206 -0.0454898 10.4579 -0.04048 0.0117179 0.0426106 0.19 0 pose: 0.48038180 -0.628944 -3.92272 0 0.00047666 -0.00462134 0.998956 -0.0454413 uwb: 0.0 1241.59 1059.78 +imu_odom_: 1691062871.812887982 0.517148 -0.222661 10.4651 -0.0575243 -0.0138484 0.0426106 0.19 0 pose: 0.0 -0.628944 -3.92272 0 0.00047666 -0.00462134 0.998956 -0.0454413 uwb: 0.49928362 1242.09 1060.58 +imu_odom_: 1691062871.837022857 0.897826 -0.373495 9.53132 -0.0585895 -0.00745685 0.0532632 0.19 0 pose: 0.48055680 -0.637514 -3.91757 0 0.000236828 -0.00406497 0.99895 -0.0456316 uwb: 0.0 1242.09 1060.58 +imu_odom_: 1691062871.853907033 0.387861 -0.184354 10.4315 -0.0553937 0.0213053 0.0543285 0.19 0 pose: 0.0 -0.637514 -3.91757 0 0.000236828 -0.00406497 0.99895 -0.0456316 uwb: 0.49991066 1242.09 1062.15 +imu_odom_: 1691062871.877884417 0.282516 -0.105345 9.26077 -0.0703074 0.0234358 0.0500674 0.19 0 pose: 0.48963001 -0.642664 -3.92614 0 0.00368127 -0.0015149 0.998946 -0.0457341 uwb: 0.0 1242.09 1062.15 +imu_odom_: 1691062871.902892199 0.282516 -0.651223 9.51456 -0.0862864 0.0479369 0.0372843 0.19 0 pose: 0.23944720 -0.651236 -3.92099 0 0.00467454 -0.00162755 0.998934 -0.0458994 uwb: 0.50091102 1242.19 1063.08 +imu_odom_: 1691062871.927927980 -0.0143652 -0.191536 10.0245 -0.0458064 -0.0138484 0.0468716 0.19 -0.02 pose: 0.33985922 -0.660338 -3.92327 0 0.00133175 -4.34988e-050.998936 -0.0460945 uwb: 0.0 1242.19 1063.08 +imu_odom_: 1691062871.942868603 0.852336 -0.28491 10.0868 -0.0703074 -0.0500674 0.0458064 0.19 -0.02 pose: 0.0 -0.660338 -3.92327 0 0.00133175 -4.34988e-050.998936 -0.0460945 uwb: 0.50059603 1242.35 1065.16 +imu_odom_: 1691062871.965854963 0.737414 -0.225055 10.3382 -0.0415453 -0.0319579 0.0415453 0.18 -0.02 pose: 0.8060902 -0.664956 -3.92442 0 0.000906855 -0.0009530320.998937 -0.0460861 uwb: 0.0 1242.35 1065.16 +imu_odom_: 1691062871.991953806 0.462081 -0.248997 9.8689 -0.0660464 0.0245011 0.0383495 0.23 -0.02 pose: 0.49063912 -0.664956 -3.92442 0 -0.00147899 -0.00242897 0.998929 -0.0461878 uwb: 0.49829201 1242.75 1066.18 +imu_odom_: 1691062872.5917695 0.0790087 -0.275333 10.082 -0.0436758 0.052198 0.0287621 0.23 -0.02 pose: 0.0 -0.664956 -3.92442 0 -0.00147899 -0.00242897 0.998929 -0.0461878 uwb: 0.0 1242.75 1066.18 +imu_odom_: 1691062872.21993418 0.268151 -0.208296 9.9934 -0.0585895 0.0223706 0.0383495 0.23 -0.02 pose: 0.0 -0.664956 -3.92442 0 -0.00147899 -0.00242897 0.998929 -0.0461878 uwb: 0.0 1242.75 1066.18 +imu_odom_: 1691062872.47023366 0.203507 -0.167594 10.0604 -0.0447411 -0.0372843 0.0372843 0.19 0 pose: 0.38923258 -0.678674 -3.92786 0 0.0027318 -0.00174949 0.998926 -0.0462213 uwb: 0.50189097 1243.05 1067.86 +imu_odom_: 1691062872.70987044 0.21069 -0.280122 10.0748 -0.0532632 -0.0213053 0.0436758 0.19 0 pose: 0.0 -0.678674 -3.92786 0 0.0027318 -0.00174949 0.998926 -0.0462213 uwb: 0.0 1243.05 1067.86 +imu_odom_: 1691062872.96932188 0.311246 -0.0263362 9.93354 -0.0383495 -0.0330232 0.0426106 0.22 0 pose: 0.55124098 -0.687252 -3.92272 0 5.08008e-05 -0.0009768630.998936 -0.0461163 uwb: 0.49834451 1243.75 1068.51 +imu_odom_: 1691062872.121867350 0.938527 -0.203507 10.0916 -0.0681769 -0.015979 0.0436758 0.17 0 pose: 0.49829201 -0.700971 -3.92615 0 -0.00341512 -0.0003984410.998928 -0.0461609 uwb: 0.0 1243.75 1068.51 +imu_odom_: 1691062872.146847426 0.672771 -0.371101 9.33978 -0.0607201 -0.0308927 0.0383495 0.17 0 pose: 0.0 -0.700971 -3.92615 0 -0.00341512 -0.0003984410.998928 -0.0461609 uwb: 0.49970943 1243.64 1070.55 +imu_odom_: 1691062872.160907851 0.37589 -0.071826 10.1418 -0.0703074 -0.0181095 0.0532632 0.17 0 pose: 0.0 -0.700971 -3.92615 0 -0.00341512 -0.0003984410.998928 -0.0461609 uwb: 0.0 1243.64 1070.55 +imu_odom_: 1691062872.184853154 0.258574 -0.0526724 9.97664 -0.0490022 0.02024 0.0298274 0.18 -0.02 pose: 0.75048431 -0.709548 -3.92101 0 0.00143334 0.000693356 0.998927 -0.0462833 uwb: 0.0 1243.64 1070.55 +imu_odom_: 1691062872.210918167 0.462081 -0.392649 9.59596 -0.0447411 -0.0287621 0.0426106 0.24 0 pose: 0.30918935 -0.714688 -3.92959 0 -0.00104291 0.00276261 0.998927 -0.0462093 uwb: 0.50143891 1244.09 1071.61 +imu_odom_: 1691062872.236011986 0.337582 -0.325611 9.71567 -0.0511327 0.0223706 0.0468716 0.24 0 pose: 0.0 -0.714688 -3.92959 0 -0.00104291 0.00276261 0.998927 -0.0462093 uwb: 0.0 1244.09 1071.61 +imu_odom_: 1691062872.252855331 0.344765 -0.246603 10.3286 -0.052198 -0.0170442 0.0596548 0.21 0.02 pose: 0.8025321 -0.714688 -3.92959 0 -0.0006602530.00206014 0.998929 -0.0462212 uwb: 0.49874116 1244.43 1072.63 +imu_odom_: 1691062872.277998148 0.428562 -0.114922 9.59835 -0.0479369 -0.015979 0.0394148 0.21 0.02 pose: 0.0 -0.714688 -3.92959 0 -0.0006602530.00206014 0.998929 -0.0462212 uwb: 0.0 1244.43 1072.63 +imu_odom_: 1691062872.305203510 0.577003 -0.486023 9.51456 -0.0543285 0.0117179 0.0447411 0.23 0 pose: 0.50005650 -0.728405 -3.93303 0 -0.00194192 -0.0016914 0.998919 -0.0464094 uwb: 0.49993983 1244.57 1074.54 +imu_odom_: 1691062872.329836231 0.591368 -0.325611 9.51935 -0.0692422 0.0319579 0.0543285 0.23 0 pose: 0.0 -0.728405 -3.93303 0 -0.00194192 -0.0016914 0.998919 -0.0464094 uwb: 0.0 1244.57 1074.54 +imu_odom_: 1691062872.346828901 0.244209 -0.296881 10.0317 -0.0649811 -0.00958738 0.0468716 0.22 0 pose: 0.43039016 -0.736985 -3.92789 0 -0.00106431 -1.05661e-060.998916 -0.0465332 uwb: 0.49967735 1245.2 1074.73 +imu_odom_: 1691062872.362842211 0.201113 -0.114922 9.38048 -0.0649811 0.0149137 0.0415453 0.22 0 pose: 0.0 -0.736985 -3.92789 0 -0.00106431 -1.05661e-060.998916 -0.0465332 uwb: 0.0 1245.2 1074.73 +imu_odom_: 1691062872.379841006 0.356736 -0.246603 10.0628 -0.0830906 -0.0127832 0.0649811 0.25 0 pose: 0.51914496 -0.7507 -3.93134 0 0.00107493 -0.00278045 0.9989 -0.04679 uwb: 0.0 1245.2 1074.73 +imu_odom_: 1691062872.405990888 0.617704 -0.258574 10.1969 -0.0692422 -0.0383495 0.0532632 0.25 0 pose: 0.0 -0.7507 -3.93134 0 0.00107493 -0.00278045 0.9989 -0.04679 uwb: 0.50029856 1245.44 1076.68 +imu_odom_: 1691062872.431981530 0.706289 -0.201113 10.4148 -0.0703074 0.015979 0.0468716 0.25 0.02 pose: 0.68153251 -0.756545 -3.92785 0 0.000353101 -0.00185615 0.998882 -0.0472403 uwb: 0.0 1245.44 1076.68 +imu_odom_: 1691062872.455039344 0.577003 -0.172383 10.3477 -0.0383495 0.0106526 0.0330232 0.25 0.02 pose: 0.8017446 -0.759286 -3.92621 0 0.00105849 -0.00174433 0.99888 -0.0472678 uwb: 0.50003608 1245.98 1077.79 +imu_odom_: 1691062872.481974055 0.52433 -0.112527 9.8282 -0.0340885 -0.0181095 0.0287621 0.18 0 pose: 0.41031010 -0.770162 -3.93137 0 0.0043611 3.24091e-06 0.998874 -0.0472475 uwb: 0.0 1245.98 1077.79 +imu_odom_: 1691062872.506829013 0.536301 -0.158017 9.44513 -0.0617853 -0.00532632 0.0490022 0.18 0 pose: 0.0 -0.770162 -3.93137 0 0.0043611 3.24091e-06 0.998874 -0.0472475 uwb: 0.50123184 1246.54 1077.73 +imu_odom_: 1691062872.524105750 0.567426 -0.426168 10.1466 -0.0468716 0.0266316 0.0351537 0.2 0 pose: 0.51789669 -0.776469 -3.93549 0 0.00770452 0.00348381 0.998849 -0.0472106 uwb: 0.0 1246.54 1077.73 +imu_odom_: 1691062872.549849073 0.591368 -0.277727 9.19852 -0.052198 0.00319579 0.0532632 0.2 0 pose: 0.0 -0.776469 -3.93549 0 0.00770452 0.00348381 0.998849 -0.0472106 uwb: 0.50055813 1246.49 1079.38 +imu_odom_: 1691062872.573820333 0.835576 -0.23942 9.63666 -0.036219 0.0245011 0.0330232 0.18 0 pose: 0.26096803 -0.786709 -3.93314 0 0.00798731 0.00108021 0.99885 -0.0472546 uwb: 0.0 1246.49 1079.38 +imu_odom_: 1691062872.590820002 0.483629 -0.368707 9.94551 -0.0479369 0.0287621 0.0436758 0.18 0 pose: 0.0 -0.786709 -3.93314 0 0.00798731 0.00108021 0.99885 -0.0472546 uwb: 0.49881699 1247.01 1079.07 +imu_odom_: 1691062872.606812605 0.411803 -0.280122 9.98143 -0.0372843 -0.0213053 0.0532632 0.18 0 pose: 0.57894186 -0.794256 -3.93505 0 0.00947219 -0.00135251 0.998832 -0.0473541 uwb: 0.0 1247.01 1079.07 +imu_odom_: 1691062872.624062510 0.538695 -0.325611 9.97185 -0.04048 0.0138484 0.0426106 0.18 0 pose: 0.8093567 -0.80042 -3.93661 0 0.00874625 -0.00144993 0.998836 -0.0474133 uwb: 0.0 1247.01 1079.07 +imu_odom_: 1691062872.641875007 0.526724 -0.229843 10.0916 -0.0436758 0.00852212 0.0649811 0.18 0 pose: 0.0 -0.80042 -3.93661 0 0.00874625 -0.00144993 0.998836 -0.0474133 uwb: 0.50095185 1246.91 1079.99 +imu_odom_: 1691062872.655874769 0.397437 -0.445322 10.2376 -0.0447411 -0.00426106 0.0468716 0.18 -0.02 pose: 0.34150996 -0.80042 -3.93661 0 0.00702717 -0.00223861 0.998838 -0.0476217 uwb: 0.0 1246.91 1079.99 +imu_odom_: 1691062872.672875604 0.452504 -0.0909797 10.1179 -0.0607201 -0.0223706 0.0351537 0.17 0.02 pose: 0.0 -0.80042 -3.93661 0 0.00702717 -0.00223861 0.998838 -0.0476217 uwb: 0.0 1246.91 1079.99 +imu_odom_: 1691062872.685819887 0.277727 -0.311246 9.20331 -0.0394148 0.00319579 0.0426106 0.17 0.02 pose: 0.0 -0.80042 -3.93661 0 0.00702717 -0.00223861 0.998838 -0.0476217 uwb: 0.0 1246.91 1079.99 +imu_odom_: 1691062872.701943732 0.469264 -0.378284 10.2927 -0.0340885 0.00532632 0.0415453 0.17 0.02 pose: 0.30876355 -0.809013 -3.93149 0 0.00560189 -0.00177684 0.998841 -0.0477683 uwb: 0.49942070 1246.72 1081.12 +imu_odom_: 1691062872.718939610 0.234632 -0.0335188 9.88566 -0.0149137 -0.00106526 0.0255663 0.17 0 pose: 0.0 -0.809013 -3.93149 0 0.00560189 -0.00177684 0.998841 -0.0477683 uwb: 0.0 1246.72 1081.12 +imu_odom_: 1691062872.734943879 0.25618 -0.112527 9.72285 -0.0532632 -0.0287621 0.0585895 0.17 0 pose: 0.0 -0.809013 -3.93149 0 0.00560189 -0.00177684 0.998841 -0.0477683 uwb: 0.0 1246.72 1081.12 +imu_odom_: 1691062872.750949315 0.905008 -0.160412 9.97424 -0.0490022 -0.0213053 0.0436758 0.25 -0.02 pose: 0.30034071 -0.814127 -3.94009 0 0.0039817 -0.00206981 0.998848 -0.0477804 uwb: 0.49991067 1247.44 1081.35 +imu_odom_: 1691062872.767017456 0.632069 -0.126893 9.71806 -0.0543285 -0.0149137 0.0436758 0.25 -0.02 pose: 0.40968888 -0.822721 -3.93497 0 0.00139569 -0.0004558040.998855 -0.0478256 uwb: 0.0 1247.44 1081.35 +imu_odom_: 1691062872.783935463 -0.0215478 -0.409408 9.95748 -0.0543285 -0.0170442 0.0543285 0.25 -0.02 pose: 0.0 -0.822721 -3.93497 0 0.00139569 -0.0004558040.998855 -0.0478256 uwb: 0.0 1247.44 1081.35 +imu_odom_: 1691062872.800822264 0.349553 -0.349553 9.84496 -0.0319579 -0.02024 0.0340885 0.18 -0.02 pose: 0.7007173 -0.822721 -3.93497 0 0.00214346 -0.0003032140.998853 -0.0478394 uwb: 0.49875282 1247.09 1083.15 +imu_odom_: 1691062872.817878513 0.344765 0.112527 9.7037 -0.0607201 0.00213053 0.0479369 0.18 -0.02 pose: 0.0 -0.822721 -3.93497 0 0.00214346 -0.0003032140.998853 -0.0478394 uwb: 0.0 1247.09 1083.15 +imu_odom_: 1691062872.833927405 0.632069 -0.521936 10.2376 -0.0628506 0.00319579 0.052198 0.18 -0.02 pose: 0.0 -0.822721 -3.93497 0 0.00214346 -0.0003032140.998853 -0.0478394 uwb: 0.0 1247.09 1083.15 +imu_odom_: 1691062872.850813914 0.804452 0.0430956 10.0389 -0.0436758 -0.056459 0.0330232 0.25 -0.02 pose: 0.49998358 -0.836427 -3.93846 0 0.00269254 -0.0004816060.998844 -0.0479943 uwb: 0.49933904 1246.98 1083.84 +imu_odom_: 1691062872.866942718 0.936133 -0.301669 9.6199 -0.0468716 0.0117179 0.0756338 0.16 -0.02 pose: 0.0 -0.836427 -3.93846 0 0.00269254 -0.0004816060.998844 -0.0479943 uwb: 0.0 1246.98 1083.84 +imu_odom_: 1691062872.884055256 1.08218 -0.153229 9.95748 -0.0639159 -0.00319579 0.125701 0.16 -0.02 pose: 0.67000944 -0.845024 -3.93335 0 0.00491991 0.000247102 0.998824 -0.0482326 uwb: 0.0 1246.98 1083.84 +imu_odom_: 1691062872.899869953 1.95606 -0.562637 10.2592 -0.0511327 -0.056459 0.0788296 0.14 -0.02 pose: 0.0 -0.845024 -3.93335 0 0.00491991 0.000247102 0.998824 -0.0482326 uwb: 0.0 1246.98 1083.84 +imu_odom_: 1691062872.917865897 1.76692 -0.0526724 8.92798 -0.0436758 0.0287621 0.00213053 0.14 -0.02 pose: 0.0 -0.845024 -3.93335 0 0.00491991 0.000247102 0.998824 -0.0482326 uwb: 0.0 1246.98 1083.84 +imu_odom_: 1691062872.933862292 1.23062 0.0526724 9.78271 -0.0543285 0.0841559 0.00319579 0.14 -0.02 pose: 0.32869779 -0.85013 -3.94195 0 0.00829673 0.000231292 0.998751 -0.0492643 uwb: 0.0 1246.98 1083.84 +imu_odom_: 1691062872.949805023 1.10373 -0.0957681 10.2232 -0.0777643 0.00426106 0.0500674 0.11 -0.02 pose: 0.42042159 -0.85013 -3.94195 0 0.0114961 0.00121725 0.998742 -0.0487861 uwb: 0.100320447 1247.33 1084.92 +imu_odom_: 1691062872.966793318 0.787692 -0.512359 9.73722 -0.0511327 0.0308927 0.0436758 0.11 -0.02 pose: 0.7008339 -0.85013 -3.94195 0 0.0121455 0.00132476 0.998733 -0.0488202 uwb: 0.0 1247.33 1084.92 +imu_odom_: 1691062872.983851900 0.696713 -0.246603 10.0533 -0.04048 -0.0213053 0.015979 0.11 -0.02 pose: 0.0 -0.85013 -3.94195 0 0.0121455 0.00132476 0.998733 -0.0488202 uwb: 0.0 1247.33 1084.92 +imu_odom_: 1691062872.999847712 0.670376 0.0933739 9.6223 -0.0607201 -0.0255663 0.0127832 0.12 -0.02 pose: 0.42981269 -0.858734 -3.93685 0 0.0150229 -0.0007800130.998699 -0.0487309 uwb: 0.0 1247.33 1084.92 +imu_odom_: 1691062873.16796926 0.749385 -0.174777 9.89524 -0.0649811 -0.0149137 0.0458064 0.08 0 pose: 0.0 -0.858734 -3.93685 0 0.0150229 -0.0007800130.998699 -0.0487309 uwb: 0.0 1247.33 1084.92 +imu_odom_: 1691062873.32908523 0.902614 -0.59855 10.0221 -0.0649811 -0.00319579 0.0585895 0.08 0 pose: 0.0 -0.858734 -3.93685 0 0.0150229 -0.0007800130.998699 -0.0487309 uwb: 0.0 1247.33 1084.92 +imu_odom_: 1691062873.48853879 0.758962 -0.356736 9.75877 -0.052198 -0.0138484 0.0490022 0.08 0 pose: 0.24020258 -0.858734 -3.93685 0 0.0156973 0.0012579 0.998699 -0.0485094 uwb: 0.99903681 1247.49 1084.97 +imu_odom_: 1691062873.65806885 0.979228 -0.0526724 9.95988 -0.0553937 -0.00852212 0.0490022 0.08 0.02 pose: 0.0 -0.858734 -3.93685 0 0.0156973 0.0012579 0.998699 -0.0485094 uwb: 0.0 1247.49 1084.97 +imu_odom_: 1691062873.81809696 0.725443 -0.0215478 9.87369 -0.0660464 0.00106526 0.056459 0.08 0.02 pose: 0.32984982 -0.863836 -3.94545 0 0.0173611 -0.0005031760.99866 -0.0487548 uwb: 0.0 1247.49 1084.97 +imu_odom_: 1691062873.98932733 0.737414 -0.342371 9.85453 -0.0596548 -0.00426106 0.0351537 0.08 0 pose: 0.40952556 -0.868137 -3.9429 0 0.0183945 0.00137451 0.99863 -0.0489667 uwb: 0.49995151 1247.67 1086.97 +imu_odom_: 1691062873.115931236 0.567426 -0.349553 9.78989 -0.052198 -0.0138484 0.0117179 0.08 0 pose: 0.0 -0.868137 -3.9429 0 0.0183945 0.00137451 0.99863 -0.0489667 uwb: 0.0 1247.67 1086.97 +imu_odom_: 1691062873.132932364 0.708684 -0.205901 10.003 -0.0511327 -0.00958738 0.00958738 0.08 0 pose: 0.0 -0.868137 -3.9429 0 0.0183945 0.00137451 0.99863 -0.0489667 uwb: 0.0 1247.67 1086.97 +imu_odom_: 1691062873.148940717 0.656011 -0.174777 9.67018 -0.056459 -0.00532632 0.0351537 0.05 0.02 pose: 0.7989740 -0.87244 -3.94036 0 0.0182905 0.000564582 0.998633 -0.0489633 uwb: 0.49937404 1247.21 1088.75 +imu_odom_: 1691062873.165987925 0.658405 -0.342371 9.92875 -0.0607201 0.0106526 0.04048 0.05 0.02 pose: 0.0 -0.87244 -3.94036 0 0.0182905 0.000564582 0.998633 -0.0489633 uwb: 0.0 1247.21 1088.75 +imu_odom_: 1691062873.182925182 0.766145 -0.237026 9.99819 -0.0532632 -0.00426106 0.04048 0.05 0.02 pose: 0.67148519 -0.87244 -3.94036 0 0.0145895 0.000469532 0.99872 -0.0484285 uwb: 0.0 1247.21 1088.75 +imu_odom_: 1691062873.198930035 0.605733 -0.234632 9.83299 -0.0543285 0.015979 0.0756338 0.05 0.02 pose: 0.0 -0.87244 -3.94036 0 0.0145895 0.000469532 0.99872 -0.0484285 uwb: 0.50061064 1246.69 1090.27 +imu_odom_: 1691062873.215982201 0.567426 -0.445322 10.0126 -0.0585895 0.00106526 0.111853 0.04 0.05 pose: 0.0 -0.87244 -3.94036 0 0.0145895 0.000469532 0.99872 -0.0484285 uwb: 0.0 1246.69 1090.27 +imu_odom_: 1691062873.232785007 0.529119 -0.287304 9.88566 -0.0490022 0 0.0958738 0.04 0.05 pose: 0.34054170 -0.87244 -3.94036 0 0.0151387 -0.0003706960.998704 -0.0485968 uwb: 0.0 1246.69 1090.27 +imu_odom_: 1691062873.255778950 0.667982 -0.138864 9.86172 -0.0575243 -0.015979 0.123571 0.05 0.11 pose: 0.41782882 -0.87244 -3.94036 0 0.0117748 -0.00226295 0.998684 -0.0498601 uwb: 0.49878199 1246.83 1090.57 +imu_odom_: 1691062873.272836658 0.682347 -0.368707 10.0102 -0.0617853 0.0255663 0.118244 0.05 0.11 pose: 0.0 -0.87244 -3.94036 0 0.0117748 -0.00226295 0.998684 -0.0498601 uwb: 0.0 1246.83 1090.57 +imu_odom_: 1691062873.288801555 -0.395043 -0.320823 9.72285 -0.0479369 0.0948085 0.0106526 0.04 -0.08 pose: 0.7020297 -0.87244 -3.94036 0 0.0119763 -0.00158752 0.998669 -0.0501461 uwb: 0.50060189 1246.52 1091.68 +imu_odom_: 1691062873.305891636 -1.35991 0.363919 10.0413 -0.0532632 0.00745685 -0.129962 0.08 -0.23 pose: 0.0 -0.87244 -3.94036 0 0.0119763 -0.00158752 0.998669 -0.0501461 uwb: 0.0 1246.52 1091.68 +imu_odom_: 1691062873.321973192 -0.837971 0.0957681 9.76355 -0.0756338 -0.0990696 -0.210922 0.07 -0.26 pose: 0.0 -0.87244 -3.94036 0 0.0119763 -0.00158752 0.998669 -0.0501461 uwb: 0.0 1246.52 1091.68 +imu_odom_: 1691062873.338988028 0.124498 -0.162806 9.91918 -0.0671117 -0.0426106 -0.299339 0.07 -0.26 pose: 0.74029991 -0.877512 -3.94898 0 0.00813464 -0.00135635 0.998774 -0.0488195 uwb: 0.49910572 1246.4 1092.61 +imu_odom_: 1691062873.354772685 0.514753 -0.198719 9.89763 -0.0692422 -0.0255663 -0.322775 0.07 -0.26 pose: 0.0 -0.877512 -3.94898 0 0.00813464 -0.00135635 0.998774 -0.0488195 uwb: 0.0 1246.4 1092.61 +imu_odom_: 1691062873.371860433 0.181959 -0.536301 9.57681 -0.0713727 0.00532632 -0.336624 0.09 -0.38 pose: 0.0 -0.877512 -3.94898 0 0.00813464 -0.00135635 0.998774 -0.0488195 uwb: 0.0 1246.4 1092.61 +imu_odom_: 1691062873.389795423 -0.0383072 -0.268151 9.88566 -0.0308927 0.0276969 -0.38456 0.09 -0.38 pose: 0.33019105 -0.886116 -3.94388 0 0.0062141 -0.00036536 0.999034 -0.0434932 uwb: 0.50092270 1247.03 1092.36 +imu_odom_: 1691062873.404882163 -0.0502782 -0.0263362 9.20331 -0.04048 -0.02024 -0.418649 0.11 -0.44 pose: 0.42941023 -0.886116 -3.94388 0 0.00271748 -0.0009555130.999381 -0.0350529 uwb: 0.0 1247.03 1092.36 +imu_odom_: 1691062873.420790771 0.023942 0.296881 10.4387 -0.0426106 -0.00745685 -0.436758 0.11 -0.44 pose: 0.0 -0.886116 -3.94388 0 0.00271748 -0.0009555130.999381 -0.0350529 uwb: 0.0 1247.03 1092.36 +imu_odom_: 1691062873.445812262 0.512359 -0.179565 10.3238 -0.0585895 -0.0351537 -0.487891 0.12 -0.53 pose: 0.7017963 -0.886116 -3.94388 0 0.00211495 -0.0006517130.999438 -0.0334462 uwb: 0.49764748 1247.3 1093.44 +imu_odom_: 1691062873.462852179 0.452504 -0.150835 9.44513 -0.0681769 -0.00852212 -0.492152 0.12 -0.58 pose: 0.0 -0.886116 -3.94388 0 0.00211495 -0.0006517130.999438 -0.0334462 uwb: 0.0 1247.3 1093.44 +imu_odom_: 1691062873.478776537 0.459687 -0.0909797 9.80186 -0.0596548 0.0106526 -0.452737 0.13 -0.44 pose: 0.0 -0.886116 -3.94388 0 0.00211495 -0.0006517130.999438 -0.0334462 uwb: 0.0 1247.3 1093.44 +imu_odom_: 1691062873.495765998 0.277727 -0.452504 9.63427 -0.0617853 -0.0213053 -0.442085 0.13 -0.44 pose: 0.74035824 -0.899772 -3.94747 0 0.0027014 0.00373324 0.999881 -0.0147088 uwb: 0.49970944 1247.3 1093.69 +imu_odom_: 1691062873.511761227 0.438139 0.141258 10.2185 -0.0426106 0.00319579 -0.411192 0.13 -0.44 pose: 0.0 -0.899772 -3.94747 0 0.0027014 0.00373324 0.999881 -0.0147088 uwb: 0.0 1247.3 1093.69 +imu_odom_: 1691062873.527819743 -0.0861913 -0.438139 9.68933 -0.0639159 0.0628506 -0.288687 0.13 -0.32 pose: 0.0 -0.899772 -3.94747 0 0.0027014 0.00373324 0.999881 -0.0147088 uwb: 0.0 1247.3 1093.69 +imu_odom_: 1691062873.544909824 0.035913 -0.442927 10.0173 -0.0745685 -0.0756338 -0.208792 0.13 -0.32 pose: 0.32923152 -0.899772 -3.94747 0 0.00192322 0.00382781 0.999967 -0.00685794 uwb: 0.50187931 1247.29 1094.18 +imu_odom_: 1691062873.560957258 0.964863 -0.23942 9.78031 -0.0447411 -0.0511327 -0.235423 0.19 -0.35 pose: 0.41137462 -0.908406 -3.94243 0 -0.0007727180.00253026 0.999996 -0.000288067 uwb: 0.0 1247.29 1094.18 +imu_odom_: 1691062873.576920405 1.15401 -0.0167594 10.1299 -0.0735032 0.0308927 -0.198139 0.19 -0.35 pose: 0.0 -0.908406 -3.94243 0 -0.0007727180.00253026 0.999996 -0.000288067 uwb: 0.0 1247.29 1094.18 +imu_odom_: 1691062873.593900826 0.344765 -0.244209 9.67018 -0.0649811 0.0585895 -0.173638 0.19 -0.35 pose: 0.0 -0.908406 -3.94243 0 -0.0007727180.00253026 0.999996 -0.000288067 uwb: 0.49803245 1247.14 1095.11 +imu_odom_: 1691062873.611903478 0.533907 -0.500388 10.0748 -0.0458064 -0.036219 -0.196009 0.14 -0.2 pose: 0.6875055 -0.908406 -3.94243 0 6.85273e-05 0.00247912 0.999997 0.000656041 uwb: 0.0 1247.14 1095.11 +imu_odom_: 1691062873.626913806 0.260968 -0.217872 9.52413 -0.0617853 -0.0234358 -0.177899 0.15 -0.2 pose: 0.0 -0.908406 -3.94243 0 6.85273e-05 0.00247912 0.999997 0.000656041 uwb: 0.0 1247.14 1095.11 +imu_odom_: 1691062873.642776625 0.47884 -0.294487 9.95509 -0.052198 -0.0149137 -0.125701 0.15 -0.2 pose: 0.0 -0.908406 -3.94243 0 6.85273e-05 0.00247912 0.999997 0.000656041 uwb: 0.49939155 1247.54 1095.27 +imu_odom_: 1691062873.656909963 -0.124498 -0.117316 9.76355 -0.0372843 0.00426106 -0.12144 0.15 -0.2 pose: 0.67129271 -0.922113 -3.94591 0 0.000849824 -0.00012992 0.999964 0.00850049 uwb: 0.0 1247.54 1095.27 +imu_odom_: 1691062873.673957755 0.311246 -0.143652 9.83059 -0.0511327 -0.0223706 -0.122505 0.15 -0.17 pose: 0.0 -0.922113 -3.94591 0 0.000849824 -0.00012992 0.999964 0.00850049 uwb: 0.0 1247.54 1095.27 +imu_odom_: 1691062873.688894004 0.507571 -0.129287 9.84256 -0.0553937 -0.0170442 -0.138484 0.15 -0.17 pose: 0.29891747 -0.922113 -3.94591 0 0.000682221 -0.00109878 0.999937 0.0111659 uwb: 0.50046481 1248.28 1095.05 +imu_odom_: 1691062873.704864150 0.40462 -0.203507 9.76355 -0.0511327 0.052198 -0.131028 0.15 -0.14 pose: 0.40088107 -0.926695 -3.94321 0 0.000190262 0.00115698 0.999894 0.014526 uwb: 0.0 1248.28 1095.05 +imu_odom_: 1691062873.719895769 0.818817 -0.344765 9.8689 -0.0596548 -0.0223706 -0.092678 0.15 -0.14 pose: 0.0 -0.926695 -3.94321 0 0.000190262 0.00115698 0.999894 0.014526 uwb: 0.0 1248.28 1095.05 +imu_odom_: 1691062873.736910896 0.732626 -0.201113 9.3733 -0.0639159 -0.0394148 -0.0862864 0.15 -0.14 pose: 0.0 -0.926695 -3.94321 0 0.000190262 0.00115698 0.999894 0.014526 uwb: 0.0 1248.28 1095.05 +imu_odom_: 1691062873.752758549 1.04627 -0.205901 10.1586 -0.0458064 0.0170442 -0.0500674 0.12 -0.17 pose: 0.7021463 -0.930714 -3.94081 0 -0.0001323110.000483436 0.999885 0.0151247 uwb: 0.49996026 1248.09 1095.48 +imu_odom_: 1691062873.769895003 1.17795 -0.337582 10.0245 -0.0660464 0.00426106 0.00106526 0.12 -0.17 pose: 0.0 -0.930714 -3.94081 0 -0.0001323110.000483436 0.999885 0.0151247 uwb: 0.0 1248.09 1095.48 +imu_odom_: 1691062873.786781220 1.4437 -0.383072 9.94791 -0.0660464 -0.00639159 -0.0245011 0.12 -0.17 pose: 0.0 -0.930714 -3.94081 0 -0.0001323110.000483436 0.999885 0.0151247 uwb: 0.0 1248.09 1095.48 +imu_odom_: 1691062873.803927006 1.37188 -0.105345 9.70131 -0.0511327 0.0447411 -0.0798948 0.15 -0.17 pose: 0.48885133 -0.935792 -3.94942 0 0.00373729 -0.0007379250.999825 0.0183084 uwb: 0.50002150 1247.42 1097.21 +imu_odom_: 1691062873.819769119 0.888249 0.150835 9.92875 -0.0532632 0.0330232 -0.103331 0.09 -0.11 pose: 0.0 -0.935792 -3.94942 0 0.00373729 -0.0007379250.999825 0.0183084 uwb: 0.0 1247.42 1097.21 +imu_odom_: 1691062873.836754789 0.794875 0.0670376 10.1658 -0.0553937 -0.00213053 -0.0980043 0.09 -0.11 pose: 0.67108563 -0.944425 -3.94438 0 0.00938765 -0.0005365030.999732 0.0211416 uwb: 0.0 1247.42 1097.21 +imu_odom_: 1691062873.852889135 0.881066 -0.483629 9.94073 -0.0596548 -0.0106526 -0.0884169 0.09 -0.11 pose: 0.0 -0.944425 -3.94438 0 0.00938765 -0.0005365030.999732 0.0211416 uwb: 0.50000400 1246.77 1098.95 +imu_odom_: 1691062873.869881804 0.861913 -0.380678 9.80186 -0.0596548 -0.00639159 -0.092678 0.07 -0.08 pose: 0.0 -0.944425 -3.94438 0 0.00938765 -0.0005365030.999732 0.0211416 uwb: 0.0 1246.77 1098.95 +imu_odom_: 1691062873.885883158 0.885855 -0.158017 10.0317 -0.0575243 -0.0191748 -0.0756338 0.07 -0.08 pose: 0.32887571 -0.944425 -3.94438 0 0.0112858 0.000833414 0.999662 0.0233974 uwb: 0.0 1246.77 1098.95 +imu_odom_: 1691062873.902891577 0.905008 -0.217872 9.90481 -0.0649811 -0.00852212 -0.0490022 0.09 -0.08 pose: 0.41086424 -0.953057 -3.93933 0 0.0148375 -0.0004634440.999553 0.0259463 uwb: 0.49990193 1247.39 1098.69 +imu_odom_: 1691062873.918898471 0.701501 -0.318429 10.0604 -0.0575243 -0.00213053 -0.0372843 0.09 -0.08 pose: 0.0 -0.953057 -3.93933 0 0.0148375 -0.0004634440.999553 0.0259463 uwb: 0.0 1247.39 1098.69 +imu_odom_: 1691062873.945759395 0.636858 -0.0454898 10.1347 -0.0532632 -0.015979 -0.0500674 0.08 -0.08 pose: 0.7012422 -0.953057 -3.93933 0 0.0155528 -0.0005168220.999534 0.0262569 uwb: 0.50026358 1247.85 1099.38 +imu_odom_: 1691062873.970785553 -0.136469 -0.280122 9.77553 -0.0607201 0.0788296 -0.0649811 0.05 -0.05 pose: 0.0 -0.953057 -3.93933 0 0.0155528 -0.0005168220.999534 0.0262569 uwb: 0.0 1247.85 1099.38 +imu_odom_: 1691062873.987770056 -0.976834 -0.0574608 10.1586 -0.0543285 0.0585895 -0.0394148 0.09 -0.05 pose: 0.77889973 -0.953057 -3.93933 0 0.0116488 0.000229557 0.999487 0.0298382 uwb: 0.0 1247.85 1099.38 +imu_odom_: 1691062874.13884358 -0.545878 -0.52433 9.73722 -0.0617853 -0.0479369 0.00213053 0.09 -0.05 pose: 0.0 -0.953057 -3.93933 0 0.0116488 0.000229557 0.999487 0.0298382 uwb: 0.50111519 1248.09 1099.23 +imu_odom_: 1691062874.40799821 0.938527 -0.0885855 9.60793 -0.0617853 -0.0447411 0.0330232 0.08 0 pose: 0.25139900 -0.958136 -3.94794 0 0.00881656 0.000234337 0.999491 0.0306634 uwb: 0.50031607 1248.67 1098.46 +imu_odom_: 1691062874.56757427 0.488417 -0.335188 9.51216 -0.0639159 0.0436758 0.0117179 0.08 0 pose: 0.0 -0.958136 -3.94794 0 0.00881656 0.000234337 0.999491 0.0306634 uwb: 0.0 1248.67 1098.46 +imu_odom_: 1691062874.83747261 -0.0023942 -0.143652 9.90721 -0.0671117 0.0127832 -0.00106526 0.11 -0.02 pose: 0.52911356 -0.966745 -3.94286 0 0.00986411 -0.0002535930.999465 0.0311978 uwb: 0.0 1248.67 1098.46 +imu_odom_: 1691062874.108750087 0.21069 -0.342371 10.2544 -0.0777643 -0.0436758 0.0106526 0.12 -0.02 pose: 0.34910452 -0.966745 -3.94286 0 0.00624716 -0.0005542470.999473 0.0318549 uwb: 0.50269594 1248.43 1098.61 +imu_odom_: 1691062874.135767628 0.718261 -0.311246 9.98382 -0.0639159 -0.02024 0.0181095 0.12 -0.02 pose: 0.0 -0.966745 -3.94286 0 0.00624716 -0.0005542470.999473 0.0318549 uwb: 0.0 1248.43 1098.61 +imu_odom_: 1691062874.161900595 -0.0430956 -0.071826 10.0317 -0.0468716 0.0234358 0.00639159 0.13 0 pose: 0.8068486 -0.966745 -3.94286 0 0.00563858 -0.0009100380.999473 0.0319701 uwb: 0.49696211 1249.08 1097.61 +imu_odom_: 1691062874.188027730 0.371101 -0.134075 10.2137 -0.0468716 -0.0681769 0.0138484 0.13 0 pose: 0.0 -0.966745 -3.94286 0 0.00563858 -0.0009100380.999473 0.0319701 uwb: 0.0 1249.08 1097.61 +imu_odom_: 1691062874.210754522 0.502782 -0.191536 10.1299 -0.0383495 0.0319579 0.0191748 0.14 -0.02 pose: 0.51969619 -0.975341 -3.93775 0 0.00627756 -0.00231032 0.999445 0.0326351 uwb: 0.49974153 1249.51 1097.03 +imu_odom_: 1691062874.227002319 0.308852 -0.371101 9.72764 -0.0543285 -0.00532632 0.0223706 0.14 -0.02 pose: 0.0 -0.975341 -3.93775 0 0.00627756 -0.00231032 0.999445 0.0326351 uwb: 0.0 1249.51 1097.03 +imu_odom_: 1691062874.243893496 0.189142 -0.0861913 10.0533 -0.0490022 0.00958738 0.0117179 0.14 0 pose: 0.51045382 -0.989054 -3.9412 0 0.00380587 0.000616137 0.999436 0.0333449 uwb: 0.50129894 1249.66 1098.34 +imu_odom_: 1691062874.259717526 0.40462 -0.23942 10.1849 -0.0575243 -0.036219 0.02024 0.14 0 pose: 0.0 -0.989054 -3.9412 0 0.00380587 0.000616137 0.999436 0.0333449 uwb: 0.0 1249.66 1098.34 +imu_odom_: 1691062874.285888700 0.220267 -0.136469 9.62708 -0.0383495 -0.0436758 0.0234358 0.15 -0.02 pose: 0.64886778 -0.993281 -3.93867 0 0.00132785 -0.0001537780.99942 0.0340341 uwb: 0.0 1249.66 1098.34 +imu_odom_: 1691062874.302721254 0.349553 -0.402226 9.50737 -0.0671117 -0.0191748 0.0223706 0.15 -0.02 pose: 0.9238292 -0.99763 -3.93606 0 0.000661735 0.000280209 0.999418 0.0341089 uwb: 0.49904448 1249.92 1098.7 +imu_odom_: 1691062874.327782701 -0.0622492 -0.138864 9.991 -0.0468716 0.0415453 0.0266316 0.15 0 pose: 0.0 -0.99763 -3.93606 0 0.000661735 0.000280209 0.999418 0.0341089 uwb: 0.0 1249.92 1098.7 +imu_odom_: 1691062874.354711289 0.814029 -0.0383072 10.1825 -0.0575243 -0.0308927 0.0255663 0.15 0 pose: 0.33765436 -0.99763 -3.93606 0 -0.000830863-0.0006660910.999408 0.0343921 uwb: 0.49964820 1249.81 1098.91 +imu_odom_: 1691062874.370708559 0.332794 -0.124498 9.98861 -0.0543285 0.0266316 0.0213053 0.16 -0.02 pose: 0.0 -0.99763 -3.93606 0 -0.000830863-0.0006660910.999408 0.0343921 uwb: 0.0 1249.81 1098.91 +imu_odom_: 1691062874.387709396 0.148441 -0.280122 9.54568 -0.0585895 -0.00532632 0.036219 0.16 -0.02 pose: 0.51990035 -1.00889 -3.94096 0 -0.0009247560.000827892 0.999396 0.0347378 uwb: 0.0 1249.81 1098.91 +imu_odom_: 1691062874.403759455 0.64404 -0.263362 10.1131 -0.0681769 -0.0532632 0.0266316 0.16 -0.02 pose: 0.0 -1.00889 -3.94096 0 -0.0009247560.000827892 0.999396 0.0347378 uwb: 0.49864493 1249.69 1099.87 +imu_odom_: 1691062874.419769266 0.146046 -0.059855 10.2663 -0.0532632 -0.0127832 0.0245011 0.16 0 pose: 0.41073591 -1.01137 -3.9395 0 -0.00260511 0.00119338 0.999384 0.0349683 uwb: 0.0 1249.69 1099.87 +imu_odom_: 1691062874.445708578 0.758962 -0.521936 9.84975 -0.0617853 -0.0340885 0.0351537 0.16 0 pose: 0.0 -1.01137 -3.9395 0 -0.00260511 0.00119338 0.999384 0.0349683 uwb: 0.50064564 1249.2 1100.94 +imu_odom_: 1691062874.461713723 0.466869 -0.126893 9.97664 -0.036219 -0.0330232 0.0149137 0.21 -0.05 pose: 0.49923698 -1.02362 -3.9406 0 -0.0005788644.50115e-06 0.99938 0.0351995 uwb: 0.0 1249.2 1100.94 +imu_odom_: 1691062874.478707851 0.272939 -0.136469 10.0102 -0.0234358 -0.00639159 0.0149137 0.21 -0.05 pose: 0.7066669 -1.02506 -3.94304 0 2.91657e-06 0.000589823 0.999377 0.0352864 uwb: 0.0 1249.2 1100.94 +imu_odom_: 1691062874.505748432 0.59855 -0.567426 9.91199 -0.0575243 -0.0191748 0.0319579 0.22 -0.02 pose: 0.25932604 -1.03367 -3.93796 0 -0.0008130950.00222822 0.999363 0.035608 uwb: 0.49950238 1249.62 1101.61 +imu_odom_: 1691062874.521726162 0.232238 -0.117316 9.81623 -0.0383495 0.00745685 0.0138484 0.17 0 pose: 0.0 -1.03367 -3.93796 0 -0.0008130950.00222822 0.999363 0.035608 uwb: 0.0 1249.62 1101.61 +imu_odom_: 1691062874.548705497 0.102951 -0.225055 9.63666 -0.0575243 -0.056459 0.0500674 0.23 -0.02 pose: 0.0 -1.03367 -3.93796 0 -0.0008130950.00222822 0.999363 0.035608 uwb: 0.49972986 1249.96 1102.26 +imu_odom_: 1691062874.573773943 0.126893 0.0287304 9.6199 -0.0340885 -0.0213053 0.0266316 0.19 -0.02 pose: 0.43018311 -1.03367 -3.93796 0 -0.0008736060.000730297 0.999354 0.0359163 uwb: 0.0 1249.96 1102.26 +imu_odom_: 1691062874.600890645 0.169988 -0.208296 9.68694 -0.0873517 -0.0255663 0.0490022 0.19 -0.02 pose: 0.35053653 -1.04228 -3.93287 0 -0.00332981 0.0012386 0.999352 0.0358284 uwb: 0.50076814 1250.22 1102.63 +imu_odom_: 1691062874.616714675 0.517148 -0.0143652 10.2017 -0.0468716 -0.0426106 0.0255663 0.17 -0.02 pose: 0.44110830 -1.05211 -3.93539 0 -0.00666353 0.00160433 0.999335 0.0358163 uwb: 0.0 1250.22 1102.63 +imu_odom_: 1691062874.632756860 0.624887 -0.0526724 9.97424 -0.0703074 -0.0575243 0.052198 0.17 -0.02 pose: 0.7882704 -1.05598 -3.93638 0 -0.00584716 0.00205753 0.999337 0.0358682 uwb: 0.0 1250.22 1102.63 +imu_odom_: 1691062874.659761859 0.658405 -0.301669 9.44273 -0.0681769 0.0255663 0.0287621 0.17 -0.02 pose: 0.23983511 -1.05598 -3.93638 0 -0.00307113 0.00286861 0.99935 0.0358136 uwb: 0.50047065 1249.8 1103.47 +imu_odom_: 1691062874.676717199 0.198719 -0.141258 9.59835 -0.0490022 0.0298274 0.0383495 0.17 -0.02 pose: 0.0 -1.05598 -3.93638 0 -0.00307113 0.00286861 0.99935 0.0358136 uwb: 0.0 1249.8 1103.47 +imu_odom_: 1691062874.701761730 0.457293 -0.21069 9.40203 -0.0639159 0 0.0372843 0.17 0 pose: 0.0 -1.05598 -3.93638 0 -0.00307113 0.00286861 0.99935 0.0358136 uwb: 0.50037441 1249.42 1105.11 +imu_odom_: 1691062874.717698337 0.354342 0.0191536 9.93833 -0.0500674 0.0149137 0.0223706 0.17 0 pose: 0.43960339 -1.06458 -3.93129 0 -0.00296505 0.00205996 0.999346 0.0359667 uwb: 0.0 1249.42 1105.11 +imu_odom_: 1691062874.733793018 0.407014 -0.251391 10.0413 -0.0788296 -0.0117179 0.0575243 0.17 0 pose: 0.0 -1.06458 -3.93129 0 -0.00296505 0.00205996 0.999346 0.0359667 uwb: 0.0 1249.42 1105.11 +imu_odom_: 1691062874.750743983 0.205901 -0.19393 9.88326 -0.0458064 0.0234358 0.0351537 0.21 0 pose: 0.57075819 -1.07828 -3.93481 0 -0.00056862 0.00104072 0.999352 0.035985 uwb: 0.49841452 1249.87 1105.81 +imu_odom_: 1691062874.775892341 0.380678 0.0215478 9.84975 -0.052198 0.0394148 0.0330232 0.21 0 pose: 0.0 -1.07828 -3.93481 0 -0.00056862 0.00104072 0.999352 0.035985 uwb: 0.0 1249.87 1105.81 +imu_odom_: 1691062874.802832887 0.3304 -0.447716 9.42837 -0.0458064 -0.00532632 0.0223706 0.22 0 pose: 0.42099323 -1.07828 -3.93481 0 -0.0026387 0.00374372 0.999338 0.0360989 uwb: 0.49999527 1250.4 1105.77 +imu_odom_: 1691062874.819846556 0.37589 -0.11971 10.6781 -0.0479369 -0.0703074 0.0394148 0.18 0 pose: 0.0 -1.07828 -3.93481 0 -0.0026387 0.00374372 0.999338 0.0360989 uwb: 0.0 1250.4 1105.77 +imu_odom_: 1691062874.844896337 0.778116 -0.234632 10.1227 -0.0735032 -0.036219 0.036219 0.18 0 pose: 0.43954215 -1.08689 -3.92971 0 -0.00154316 0.00273488 0.999335 0.0363362 uwb: 0.50054356 1251.23 1105.61 +imu_odom_: 1691062874.861755723 0.416591 -0.181959 9.74201 -0.0415453 0.0468716 0.0149137 0.18 0 pose: 0.0 -1.08689 -3.92971 0 -0.00154316 0.00273488 0.999335 0.0363362 uwb: 0.0 1251.23 1105.61 +imu_odom_: 1691062874.875892852 0.141258 -0.344765 9.54089 -0.0703074 0.0191748 0.0447411 0.18 0 pose: 0.0 -1.08689 -3.92971 0 -0.00154316 0.00273488 0.999335 0.0363362 uwb: 0.0 1251.23 1105.61 +imu_odom_: 1691062874.891702300 0.574608 -0.502782 9.97185 -0.0681769 -0.0415453 0.036219 0.18 0 pose: 0.48053932 -1.10059 -3.93321 0 -0.00122095 0.000942398 0.99933 0.0365668 uwb: 0.49992527 1251.09 1106.32 +imu_odom_: 1691062874.916700460 0.950498 -0.251391 9.55047 -0.0628506 -0.0276969 0.0340885 0.18 0 pose: 0.23801812 -1.10059 -3.93321 0 -0.000849413-0.0009412550.99933 0.0365759 uwb: 0.0 1251.09 1106.32 +imu_odom_: 1691062874.941821403 0.6608 -0.332794 9.77074 -0.0447411 -0.0106526 0.0234358 0.18 0 pose: 0.0 -1.10059 -3.93321 0 -0.000849413-0.0009412550.99933 0.0365759 uwb: 0.50136602 1250.83 1106.99 +imu_odom_: 1691062874.967701511 0.529119 -0.289698 9.76355 -0.052198 0.00745685 0.0479369 0.24 -0.02 pose: 0.7035463 -1.10059 -3.93321 0 -6.52827e-05-0.00101935 0.99933 0.0365958 uwb: 0.0 1250.83 1106.99 +imu_odom_: 1691062874.983872604 0.610521 -0.323217 9.85693 -0.056459 0.00106526 0.0543285 0.24 -0.02 pose: 0.0 -1.10059 -3.93321 0 -6.52827e-05-0.00101935 0.99933 0.0365958 uwb: 0.0 1250.83 1106.99 +imu_odom_: 1691062875.825027 -0.205901 -0.0694318 9.87129 -0.0319579 0.0106526 0.0447411 0.22 0 pose: 0.50957595 -1.10919 -3.92811 0 0.00481633 -0.00270137 0.999307 0.0368151 uwb: 0.49909115 1250.37 1108.35 +imu_odom_: 1691062875.16819964 0.433351 -0.0885855 10.1466 -0.0585895 -0.0170442 0.0575243 0.22 0 pose: 0.0 -1.10919 -3.92811 0 0.00481633 -0.00270137 0.999307 0.0368151 uwb: 0.0 1250.37 1108.35 +imu_odom_: 1691062875.42886727 0.699107 -0.268151 10.0963 -0.0298274 -0.0447411 0.0276969 0.24 0 pose: 0.42149487 -1.12289 -3.9316 0 0.00664158 -0.00423759 0.999299 0.0365971 uwb: 0.49894241 1250.25 1110.11 +imu_odom_: 1691062875.59881148 0.442927 -0.153229 9.81144 -0.0511327 0.0234358 0.052198 0.24 0 pose: 0.0 -1.12289 -3.9316 0 0.00664158 -0.00423759 0.999299 0.0365971 uwb: 0.0 1250.25 1110.11 +imu_odom_: 1691062875.76671122 0.447716 -0.339977 9.57202 -0.0436758 -0.0266316 0.0468716 0.24 0 pose: 0.0 -1.12289 -3.9316 0 0.00664158 -0.00423759 0.999299 0.0365971 uwb: 0.0 1250.25 1110.11 +imu_odom_: 1691062875.100680006 0.675165 -0.320823 9.87608 -0.0543285 -0.0319579 0.0511327 0.18 0 pose: 0.84826277 -1.13448 -3.93154 0 0.00595846 -0.00232763 0.999316 0.036419 uwb: 0.49982904 1250.81 1110.36 +imu_odom_: 1691062875.126756686 0.531513 -0.232238 10.0509 -0.0436758 0.0266316 0.0287621 0.18 0 pose: 0.0 -1.13448 -3.93154 0 0.00595846 -0.00232763 0.999316 0.036419 uwb: 0.0 1250.81 1110.36 +imu_odom_: 1691062875.152826074 0.754174 -0.234632 9.97903 -0.0660464 -0.0426106 0.0628506 0.18 -0.02 pose: 0.7026713 -1.13659 -3.9351 0 0.00669379 -0.00262476 0.999312 0.0363777 uwb: 0.50145935 1250.83 1110.89 +imu_odom_: 1691062875.169830994 0.600945 -0.244209 9.65342 -0.0617853 -0.00319579 0.036219 0.18 -0.02 pose: 0.0 -1.13659 -3.9351 0 0.00669379 -0.00262476 0.999312 0.0363777 uwb: 0.0 1250.83 1110.89 +imu_odom_: 1691062875.185697605 0.0574608 -0.316035 9.67257 -0.0490022 0.00958738 0.0468716 0.22 0 pose: 0.50355048 -1.1452 -3.93 0 0.00717617 -0.00132647 0.999313 0.0363456 uwb: 0.0 1250.83 1110.89 +imu_odom_: 1691062875.202687359 0.840365 -0.0670376 10.0317 -0.076699 -0.0138484 0.0575243 0.22 0 pose: 0.0 -1.1452 -3.93 0 0.00717617 -0.00132647 0.999313 0.0363456 uwb: 0.49879951 1250.85 1111.95 +imu_odom_: 1691062875.227819969 0.739808 -0.1652 10.0485 -0.0383495 -0.015979 0.036219 0.18 0 pose: 0.68634476 -1.16183 -3.92696 0 0.0107226 -0.00157545 0.999295 0.0359513 uwb: 0.0 1250.85 1111.95 +imu_odom_: 1691062875.244723979 0.258574 -0.354342 9.2895 -0.0852212 -0.0223706 0.0596548 0.18 0 pose: 0.7034005 -1.1675 -3.92841 0 0.0113838 -0.00117859 0.999287 0.0359668 uwb: 0.50182391 1251.15 1112.08 +imu_odom_: 1691062875.260804369 0.691924 -0.414197 10.4315 -0.0553937 -0.00319579 0.0500674 0.18 0 pose: 0.0 -1.1675 -3.92841 0 0.0113838 -0.00117859 0.999287 0.0359668 uwb: 0.0 1251.15 1112.08 +imu_odom_: 1691062875.286694101 0.646434 -0.129287 10.2041 -0.0777643 0.0127832 0.0639159 0.24 0 pose: 0.42011537 -1.1675 -3.92841 0 0.0117722 -0.00164394 0.999289 0.035789 uwb: 0.0 1251.15 1112.08 +imu_odom_: 1691062875.312669287 0.481235 -0.335188 9.84256 -0.0649811 0.0426106 0.0415453 0.18 0 pose: 0.0 -1.1675 -3.92841 0 0.0117722 -0.00164394 0.999289 0.035789 uwb: 0.49941781 1250.91 1113.03 +imu_odom_: 1691062875.328661308 0.387861 -0.349553 9.8258 -0.0458064 0.00852212 0.04048 0.18 0 pose: 0.43014812 -1.17611 -3.92333 0 0.0109976 -0.0007488930.999311 0.0354386 uwb: 0.0 1250.91 1113.03 +imu_odom_: 1691062875.344714284 0.514753 -0.373495 9.93833 -0.0585895 -0.0308927 0.0479369 0.18 0.02 pose: 0.0 -1.17611 -3.92333 0 0.0109976 -0.0007488930.999311 0.0354386 uwb: 0.49848744 1251.02 1114.4 +imu_odom_: 1691062875.361690330 0.474052 -0.225055 10.1131 -0.0394148 0.0245011 0.0372843 0.18 0.02 pose: 0.40919601 -1.1898 -3.92685 0 0.00745333 -0.00320005 0.999342 0.0353579 uwb: 0.0 1251.02 1114.4 +imu_odom_: 1691062875.386693739 0.416591 -0.0814029 9.88566 -0.052198 -0.00532632 0.0447411 0.18 0 pose: 0.0 -1.1898 -3.92685 0 0.00745333 -0.00320005 0.999342 0.0353579 uwb: 0.0 1251.02 1114.4 +imu_odom_: 1691062875.412811833 0.806846 -0.184354 9.89045 -0.0415453 -0.00213053 0.0340885 0.18 0 pose: 0.33175138 -1.1898 -3.92685 0 0.00543949 -0.00212087 0.999359 0.0353202 uwb: 0.50003319 1251.37 1114.03 +imu_odom_: 1691062875.437799202 0.270545 -0.344765 9.34936 -0.056459 -0.0234358 0.0415453 0.18 0.02 pose: 0.0 -1.1898 -3.92685 0 0.00543949 -0.00212087 0.999359 0.0353202 uwb: 0.0 1251.37 1114.03 +imu_odom_: 1691062875.453715685 0.823605 -0.335188 9.98143 -0.036219 -0.0266316 0.0372843 0.18 0.02 pose: 0.43969381 -1.19842 -3.92177 0 0.00722859 -0.0001028670.999349 0.0353537 uwb: 0.50104521 1251.27 1115.04 +imu_odom_: 1691062875.479858861 0.845153 -0.304064 10.4291 -0.0639159 -0.0319579 0.0468716 0.18 0 pose: 0.7006881 -1.19842 -3.92177 0 0.00665767 -0.0004002230.999353 0.0353448 uwb: 0.0 1251.27 1115.04 +imu_odom_: 1691062875.505802840 0.770933 -0.220267 9.81144 -0.0617853 0.0170442 0.0447411 0.18 0 pose: 0.0 -1.19842 -3.92177 0 0.00665767 -0.0004002230.999353 0.0353448 uwb: 0.49951405 1250.83 1116.16 +imu_odom_: 1691062875.530963157 0.703895 -0.203507 9.79228 -0.072438 0.0117179 0.0340885 0.2 0 pose: 0.42024370 -1.21211 -3.9253 0 0.00777808 -0.00178818 0.999345 0.035308 uwb: 0.0 1250.83 1116.16 +imu_odom_: 1691062875.556814975 0.347159 -0.514753 10.1299 -0.0703074 -0.0191748 0.0617853 0.2 0 pose: 0.0 -1.21211 -3.9253 0 0.00777808 -0.00178818 0.999345 0.035308 uwb: 0.49933031 1251.23 1116.35 +imu_odom_: 1691062875.582667959 0.414197 -0.287304 10.1131 -0.0319579 0.00958738 0.0234358 0.2 0 pose: 0.50907140 -1.22072 -3.92022 0 0.0126088 -0.00170909 0.999299 0.0352099 uwb: 0.0 1251.23 1116.35 +imu_odom_: 1691062875.608699141 0.213084 -0.234632 10.2472 -0.04048 -0.0106526 0.0511327 0.23 -0.02 pose: 0.0 -1.22072 -3.92022 0 0.0126088 -0.00170909 0.999299 0.0352099 uwb: 0.49978237 1250.89 1117.26 +imu_odom_: 1691062875.624780115 0.308852 -0.0215478 9.85693 -0.0245011 -0.0319579 0.0372843 0.23 -0.02 pose: 0.51068715 -1.23442 -3.92376 0 0.011457 -0.00273437 0.999317 0.0350208 uwb: 0.0 1250.89 1117.26 +imu_odom_: 1691062875.650789132 0.328006 -0.0885855 9.87129 -0.0532632 0.00319579 0.056459 0.23 0 pose: 0.0 -1.23442 -3.92376 0 0.011457 -0.00273437 0.999317 0.0350208 uwb: 0.50112687 1251.7 1117.37 +imu_odom_: 1691062875.675702713 0.426168 -0.215478 9.73961 -0.0426106 0.0426106 0.0447411 0.23 0 pose: 0.51974287 -1.23442 -3.92376 0 0.0065723 -0.00156082 0.999364 0.0350184 uwb: 0.0 1251.7 1117.37 +imu_odom_: 1691062875.691636404 0.397437 -0.237026 9.85693 -0.0756338 -0.0532632 0.0596548 0.21 0 pose: 0.0 -1.23442 -3.92376 0 0.0065723 -0.00156082 0.999364 0.0350184 uwb: 0.49906200 1251.98 1118.04 +imu_odom_: 1691062875.718854309 0.727837 0.023942 10.501 -0.0660464 -0.0468716 0.0415453 0.21 0 pose: 0.75843178 -1.25263 -3.92463 0 0.000254377 -0.00110684 0.999401 0.0345929 uwb: 0.0 1251.98 1118.04 +imu_odom_: 1691062875.744654796 0.821211 -0.368707 9.81144 -0.0969391 0.0127832 0.0511327 0.25 0.02 pose: 0.8074610 -1.25673 -3.92223 0 0.00106661 -0.0006656130.999401 0.0345856 uwb: 0.50115020 1250.99 1120.25 +imu_odom_: 1691062875.769653539 0.627281 -0.114922 9.96706 -0.0532632 0.0447411 0.04048 0.19 -0.02 pose: 0.0 -1.25673 -3.92223 0 0.00106661 -0.0006656130.999401 0.0345856 uwb: 0.0 1250.99 1120.25 +imu_odom_: 1691062875.795640391 0.555455 -0.294487 9.67257 -0.0692422 0.00639159 0.04048 0.2 0.02 pose: 0.52090363 -1.26535 -3.91716 0 0.00541781 -0.0007966640.999393 0.0344162 uwb: 0.49995153 1250.95 1121.31 +imu_odom_: 1691062875.812633061 0.28491 -0.162806 9.7037 -0.0543285 0.0330232 0.0308927 0.2 0.02 pose: 0.0 -1.26535 -3.91716 0 0.00541781 -0.0007966640.999393 0.0344162 uwb: 0.0 1250.95 1121.31 +imu_odom_: 1691062875.838692242 0.653617 -0.246603 9.08839 -0.0436758 -0.00213053 0.0468716 0.25 -0.02 pose: 0.60831684 -1.27903 -3.92071 0 0.00502596 -0.0015652 0.999392 0.034465 uwb: 0.49879659 1250.48 1122.17 +imu_odom_: 1691062875.863705276 0.78051 0.0335188 9.37809 -0.0383495 0.00958738 0.0372843 0.19 -0.02 pose: 0.7012423 -1.27903 -3.92071 0 0.00571991 -0.00157915 0.999389 0.03444 uwb: 0.0 1250.48 1122.17 +imu_odom_: 1691062875.889787788 0.234632 -0.500388 9.414 -0.0575243 0.0149137 0.0351537 0.21 0.02 pose: 0.44059792 -1.28488 -3.91728 0 0.00913668 0.000439612 0.999366 0.0344154 uwb: 0.49991069 1250.69 1122.81 +imu_odom_: 1691062875.915698811 -0.162806 -0.438139 9.96467 -0.0639159 0.0266316 0.0553937 0.17 0 pose: 0.0 -1.28488 -3.91728 0 0.00913668 0.000439612 0.999366 0.0344154 uwb: 0.0 1250.69 1122.81 +imu_odom_: 1691062875.932639276 0.837971 -0.263362 9.89284 -0.0639159 0.02024 0.0436758 0.17 0 pose: 0.51993535 -1.29766 -3.91825 0 0.00395861 -0.0019764 0.999404 0.0342489 uwb: 0.0 1250.69 1122.81 +imu_odom_: 1691062875.958612420 0.35913 -0.229843 9.53611 -0.0692422 -0.00426106 0.0553937 0.19 0.02 pose: 0.0 -1.29766 -3.91825 0 0.00395861 -0.0019764 0.999404 0.0342489 uwb: 0.50042983 1250.04 1124.93 +imu_odom_: 1691062875.984752388 0.445322 -0.311246 10.2113 -0.052198 0.00213053 0.0372843 0.19 0.02 pose: 0.42913609 -1.30134 -3.9192 0 0.00287845 -0.00187243 0.999416 0.0340107 uwb: 0.0 1250.04 1124.93 +imu_odom_: 1691062876.697161 0.584185 -0.196325 10.1347 -0.0500674 -0.00532632 0.036219 0.19 0 pose: 0.0 -1.30134 -3.9192 0 0.00287845 -0.00187243 0.999416 0.0340107 uwb: 0.50087606 1250.24 1125.85 +imu_odom_: 1691062876.26663015 0.371101 -0.198719 9.52653 -0.0351537 0.00319579 0.0298274 0.19 0 pose: 0.42084741 -1.30997 -3.91415 0 0.00332218 -0.00336249 0.999408 0.0340661 uwb: 0.0 1250.24 1125.85 +imu_odom_: 1691062876.51678090 0.565032 -0.162806 9.97664 -0.0649811 -0.0138484 0.0490022 0.19 0 pose: 0.0 -1.30997 -3.91415 0 0.00332218 -0.00336249 0.999408 0.0340661 uwb: 0.49987278 1250.11 1126.88 +imu_odom_: 1691062876.68622347 0.47884 -0.167594 9.73961 -0.0415453 -0.0127832 0.0458064 0.19 0 pose: 0.33985634 -1.32365 -3.91771 0 0.00200496 -0.00107198 0.999414 0.034155 uwb: 0.0 1250.11 1126.88 +imu_odom_: 1691062876.94760857 0.6608 -0.181959 10.3765 -0.0575243 -0.0127832 0.0596548 0.18 -0.02 pose: 0.0 -1.32365 -3.91771 0 0.00200496 -0.00107198 0.999414 0.034155 uwb: 0.49886368 1250.18 1127.47 +imu_odom_: 1691062876.120785623 0.873884 -0.215478 10.0293 -0.0298274 -0.0149137 0.0287621 0.18 -0.02 pose: 0.24043007 -1.32365 -3.91771 0 0.00372826 0.000388184 0.999413 0.0340584 uwb: 0.0 1250.18 1127.47 +imu_odom_: 1691062876.145619876 0.861913 -0.466869 9.8258 -0.076699 -0.0394148 0.0660464 0.19 0 pose: 0.62059821 -1.33228 -3.91265 0 0.00939414 0.0013193 0.99938 0.0338967 uwb: 0.50037443 1250.04 1128.78 +imu_odom_: 1691062876.171824299 0.0861913 -0.107739 9.56962 -0.0575243 0.00426106 0.0607201 0.19 0 pose: 0.0 -1.33228 -3.91265 0 0.00939414 0.0013193 0.99938 0.0338967 uwb: 0.0 1250.04 1128.78 +imu_odom_: 1691062876.197784611 0.335188 -0.306458 9.77553 -0.0713727 -0.0351537 0.0447411 0.2 0.02 pose: 0.8000240 -1.33228 -3.91265 0 0.0100711 0.000637211 0.999378 0.0337855 uwb: 0.49919908 1249.53 1131 +imu_odom_: 1691062876.222684193 0.272939 -0.124498 10.3118 -0.0671117 -0.0479369 0.0575243 0.23 0 pose: 0.0 -1.33228 -3.91265 0 0.0100711 0.000637211 0.999378 0.0337855 uwb: 0.0 1249.53 1131 +imu_odom_: 1691062876.237771226 0.471658 -0.414197 9.39485 -0.0575243 -0.04048 0.0468716 0.23 0 pose: 0.51070174 -1.34596 -3.91623 0 0.00820186 -0.0005269230.999413 0.0332586 uwb: 0.0 1249.53 1131 +imu_odom_: 1691062876.254602614 0.430956 -0.102951 9.91678 -0.0532632 0.0191748 0.0426106 0.23 0 pose: 0.0 -1.34596 -3.91623 0 0.00820186 -0.0005269230.999413 0.0332586 uwb: 0.50077690 1249.44 1132.07 +imu_odom_: 1691062876.280732083 0.416591 -0.52433 9.76834 -0.0692422 -0.0149137 0.0500674 0.19 0 pose: 0.48849553 -1.3546 -3.91118 0 0.00506311 -0.0010197 0.999443 0.032965 uwb: 0.0 1249.44 1132.07 +imu_odom_: 1691062876.306770557 0.373495 -0.464475 10.2185 -0.015979 0.0213053 0.0308927 0.23 0 pose: 0.0 -1.3546 -3.91118 0 0.00506311 -0.0010197 0.999443 0.032965 uwb: 0.49973863 1250.41 1132.3 +imu_odom_: 1691062876.332670497 0.828394 -0.162806 10.0748 -0.0617853 0.00745685 0.0617853 0.18 0.02 pose: 0.33909513 -1.36828 -3.91478 0 0.00402319 -0.00120758 0.999451 0.0328636 uwb: 0.0 1250.41 1132.3 +imu_odom_: 1691062876.349623504 -0.114922 0.107739 9.30626 -0.0820254 0.0415453 0.072438 0.18 0.02 pose: 0.0 -1.36828 -3.91478 0 0.00402319 -0.00120758 0.999451 0.0328636 uwb: 0.49968904 1250.85 1132.53 +imu_odom_: 1691062876.374613498 0.248997 -0.320823 9.76116 -0.0830906 -0.0234358 0.0468716 0.18 0 pose: 0.52072865 -1.36828 -3.91478 0 0.0027102 -0.00456922 0.999449 0.0327778 uwb: 0.0 1250.85 1132.53 +imu_odom_: 1691062876.400609974 0.447716 -0.232238 10.307 -0.0458064 -0.0170442 0.0330232 0.23 0 pose: 0.0 -1.36828 -3.91478 0 0.0027102 -0.00456922 0.999449 0.0327778 uwb: 0.50004487 1250.39 1134.25 +imu_odom_: 1691062876.416612786 0.318429 -0.304064 9.50977 -0.056459 0.0117179 0.0490022 0.19 0.02 pose: 0.85922006 -1.38825 -3.91472 0 0.00178943 -0.0017251 0.999475 0.0323018 uwb: 0.0 1250.39 1134.25 +imu_odom_: 1691062876.443738238 0.500388 -0.213084 10.1275 -0.04048 -0.0191748 0.0436758 0.19 0.02 pose: 0.0 -1.38825 -3.91472 0 0.00178943 -0.0017251 0.999475 0.0323018 uwb: 0.50112104 1251.03 1134.6 +imu_odom_: 1691062876.468585907 0.612916 -0.148441 10.0245 -0.0458064 0.00426106 0.0436758 0.21 -0.02 pose: 0.7040421 -1.39059 -3.91335 0 0.00108956 -0.00201534 0.999477 0.0322671 uwb: 0.0 1251.03 1134.6 +imu_odom_: 1691062876.483584570 0.905008 -0.45011 9.64863 -0.052198 0.0191748 0.0383495 0.21 -0.02 pose: 0.0 -1.39059 -3.91335 0 0.00108956 -0.00201534 0.999477 0.0322671 uwb: 0.0 1251.03 1134.6 +imu_odom_: 1691062876.510715854 0.6608 -0.328006 10.3645 -0.0426106 0.0191748 0.0394148 0.18 0.02 pose: 0.17090373 -1.39059 -3.91335 0 0.000990004 -0.00196584 0.999479 0.032208 uwb: 0.49997487 1250.92 1135.95 +imu_odom_: 1691062876.536740329 0.426168 -0.220267 10.2615 -0.0436758 0.00426106 0.0426106 0.23 -0.02 pose: 0.66893038 -1.39923 -3.90833 0 0.0065647 -0.0009879180.999462 0.0321289 uwb: 0.0 1250.92 1135.95 +imu_odom_: 1691062876.552742558 0.0885855 -0.131681 9.76355 -0.0575243 0.00639159 0.0436758 0.17 0 pose: 0.0 -1.39923 -3.90833 0 0.0065647 -0.0009879180.999462 0.0321289 uwb: 0.0 1250.92 1135.95 +imu_odom_: 1691062876.578590002 0.272939 -0.186748 9.9503 -0.0692422 -0.0319579 0.0436758 0.17 0 pose: 0.0 -1.39923 -3.90833 0 0.0065647 -0.0009879180.999462 0.0321289 uwb: 0.0 1250.92 1135.95 +imu_odom_: 1691062876.603649700 0.251391 -0.0837971 10.0556 -0.0458064 -0.0319579 0.0458064 0.18 -0.02 pose: 0.52141111 -1.4129 -3.91194 0 0.00446133 -0.00108424 0.999475 0.0320688 uwb: 0.99873063 1250.63 1137.22 +imu_odom_: 1691062876.630703989 0.385466 -0.107739 10.0868 -0.0532632 0.0234358 0.0468716 0.21 0 pose: 0.59874783 -1.42155 -3.90692 0 -0.00019645 0.00127948 0.99949 0.0319217 uwb: 0.0 1250.63 1137.22 +imu_odom_: 1691062876.656572431 0.890643 -0.131681 9.64624 -0.0319579 0.0213053 0.0213053 0.19 0.02 pose: 0.7971366 -1.42155 -3.90692 0 -0.0004063 0.0020835 0.999489 0.0318924 uwb: 0.50017902 1250.14 1139.23 +imu_odom_: 1691062876.682658444 0.253785 -0.402226 9.68455 -0.0383495 0.00745685 0.0447411 0.23 -0.02 pose: 0.26036432 -1.43522 -3.91054 0 -0.0002996250.00408007 0.999483 0.0318828 uwb: 0.0 1250.14 1139.23 +imu_odom_: 1691062876.707597691 0.572214 -0.0574608 10.2568 -0.0468716 -0.0841559 0.0543285 0.23 -0.02 pose: 0.0 -1.43522 -3.91054 0 -0.0002996250.00408007 0.999483 0.0318828 uwb: 0.50103939 1249.64 1141.24 +imu_odom_: 1691062876.724703813 0.45011 -0.311246 9.38527 -0.0383495 0.0266316 0.0553937 0.21 0 pose: 0.26011351 -1.43522 -3.91054 0 0.00091587 0.00375072 0.999479 0.0320297 uwb: 0.0 1249.64 1141.24 +imu_odom_: 1691062876.750664709 0.296881 -0.0814029 9.94312 -0.0447411 0.0117179 0.0436758 0.21 0 pose: 0.0 -1.43522 -3.91054 0 0.00091587 0.00375072 0.999479 0.0320297 uwb: 0.49856328 1248.52 1143.48 +imu_odom_: 1691062876.776559399 0.0622492 -0.457293 9.84256 -0.0511327 -0.00213053 0.0468716 0.25 0 pose: 0.52047491 -1.44386 -3.90552 0 0.00272208 0.00293408 0.999489 0.0317286 uwb: 0.0 1248.52 1143.48 +imu_odom_: 1691062876.802562584 0.387861 -0.280122 10.2185 -0.0703074 -0.0181095 0.0468716 0.25 0 pose: 0.41925793 -1.45753 -3.90915 0 -0.0004081290.00319812 0.999496 0.0315852 uwb: 0.49900367 1249.19 1143.87 +imu_odom_: 1691062876.818565396 0.866701 -0.129287 9.54329 -0.0703074 -0.0340885 0.0340885 0.23 0 pose: 0.0 -1.45753 -3.90915 0 -0.0004081290.00319812 0.999496 0.0315852 uwb: 0.0 1249.19 1143.87 +imu_odom_: 1691062876.843565014 0.806846 -0.265756 9.55765 -0.0692422 -0.0181095 0.056459 0.23 0 pose: 0.0 -1.45753 -3.90915 0 -0.0004081290.00319812 0.999496 0.0315852 uwb: 0.49979696 1249.08 1144.96 +imu_odom_: 1691062876.860626223 0.428562 -0.380678 9.74201 -0.0788296 -0.00532632 0.0383495 0.2 0 pose: 0.51944831 -1.46618 -3.90413 0 -0.000399724-0.00068716 0.999505 0.0314499 uwb: 0.0 1249.08 1144.96 +imu_odom_: 1691062876.876614161 0.292093 -0.0837971 9.84975 -0.0490022 0.0276969 0.0351537 0.2 0 pose: 0.0 -1.46618 -3.90413 0 -0.000399724-0.00068716 0.999505 0.0314499 uwb: 0.0 1249.08 1144.96 +imu_odom_: 1691062876.902614720 0.761356 -0.251391 9.18176 -0.0447411 -0.00106526 0.052198 0.25 0.02 pose: 0.40987264 -1.47985 -3.90777 0 0.00306707 -0.0018711 0.999505 0.0312673 uwb: 0.50027235 1249.39 1146.02 +imu_odom_: 1691062876.928711232 0.526724 -0.059855 9.94791 -0.0511327 0.0330232 0.0372843 0.25 0.02 pose: 0.0 -1.47985 -3.90777 0 0.00306707 -0.0018711 0.999505 0.0312673 uwb: 0.0 1249.39 1146.02 +imu_odom_: 1691062876.953590399 0.232238 -0.442927 9.52892 -0.052198 0.0245011 0.0340885 0.23 -0.02 pose: 0.34002258 -1.47985 -3.90777 0 0.00228844 -0.00167069 0.999507 0.0312578 uwb: 0.50080898 1249.32 1147.15 +imu_odom_: 1691062876.968591978 0.339977 -0.241814 9.8665 -0.0458064 -0.0287621 0.0415453 0.23 -0.02 pose: 0.0 -1.47985 -3.90777 0 0.00228844 -0.00167069 0.999507 0.0312578 uwb: 0.0 1249.32 1147.15 +imu_odom_: 1691062876.995642768 0.715866 -0.294487 10.1754 -0.0756338 -0.0276969 0.0383495 0.19 0 pose: 0.51078339 -1.4885 -3.90276 0 0.00363902 0.00046468 0.999506 0.0312059 uwb: 0.49940323 1250.29 1147.14 +imu_odom_: 1691062877.11599500 0.42138 -0.253785 9.52653 -0.0394148 0.0223706 0.0276969 0.19 0 pose: 0.0 -1.4885 -3.90276 0 0.00363902 0.00046468 0.999506 0.0312059 uwb: 0.0 1250.29 1147.14 +imu_odom_: 1691062877.37628641 0.459687 -0.260968 9.83299 -0.0703074 -0.0255663 0.0447411 0.23 -0.02 pose: 0.41127548 -1.50217 -3.9064 0 0.00165088 -0.00109885 0.99951 0.03124 uwb: 0.0 1250.29 1147.14 +imu_odom_: 1691062877.62789834 0.988805 -0.385466 9.55765 -0.0585895 -0.0681769 0.0330232 0.23 -0.02 pose: 0.42898153 -1.50217 -3.9064 0 0.00265001 -0.00234991 0.999503 0.0313232 uwb: 0.49950823 1250.05 1148.47 +imu_odom_: 1691062877.88577490 0.294487 -0.258574 9.83777 -0.036219 0.00426106 0.0287621 0.21 0 pose: 0.0 -1.50217 -3.9064 0 0.00265001 -0.00234991 0.999503 0.0313232 uwb: 0.50025194 1250.4 1149.27 +imu_odom_: 1691062877.114712792 0.483629 -0.0023942 9.92875 -0.0617853 -0.0308927 0.0500674 0.2 0.02 pose: 0.49968323 -1.51082 -3.90139 0 0.0068493 -0.0040153 0.999475 0.0313973 uwb: 0.0 1250.4 1149.27 +imu_odom_: 1691062877.139571835 0.37589 -0.059855 9.81144 -0.0447411 0.0532632 0.0415453 0.23 -0.02 pose: 0.0 -1.51082 -3.90139 0 0.0068493 -0.0040153 0.999475 0.0313973 uwb: 0.50157603 1250.11 1150.58 +imu_odom_: 1691062877.162757685 0.751779 -0.0885855 9.64863 -0.0649811 -0.0127832 0.0607201 0.19 0.02 pose: 0.52020660 -1.52449 -3.90503 0 0.00456647 -0.0003977420.999498 0.0313642 uwb: 0.0 1250.11 1150.58 +imu_odom_: 1691062877.178559259 0.414197 -0.241814 9.87129 -0.0340885 0.0426106 0.0308927 0.19 0.02 pose: 0.0 -1.52449 -3.90503 0 0.00456647 -0.0003977420.999498 0.0313642 uwb: 0.0 1250.11 1150.58 +imu_odom_: 1691062877.204631857 0.342371 0.00718261 10.1035 -0.0553937 -0.0138484 0.0617853 0.19 0.02 pose: 0.24075673 -1.53314 -3.90002 0 0.00364261 0.0013368 0.999503 0.0312879 uwb: 0.49916117 1249.41 1152.54 +imu_odom_: 1691062877.229638766 0.390255 -0.107739 10.2352 -0.0436758 0.0138484 0.036219 0.23 0 pose: 0.39960075 -1.53314 -3.90002 0 0.00330707 0.00167602 0.99951 0.0310962 uwb: 0.0 1249.41 1152.54 +imu_odom_: 1691062877.246762097 0.308852 -0.265756 9.81862 -0.0692422 -0.00213053 0.0532632 0.23 0 pose: 0.0 -1.53314 -3.90002 0 0.00330707 0.00167602 0.99951 0.0310962 uwb: 0.50028403 1250.26 1152.46 +imu_odom_: 1691062877.272752449 0.0215478 -0.102951 9.53132 -0.04048 0.00958738 0.036219 0.21 0 pose: 0.51054426 -1.5468 -3.90366 0 -0.0002883480.00423722 0.999514 0.0308974 uwb: 0.0 1250.26 1152.46 +imu_odom_: 1691062877.297585244 0.196325 -0.476446 9.46667 -0.0756338 0.0245011 0.0500674 0.23 0 pose: 0.35992766 -1.55546 -3.89866 0 -0.00360627 0.00397053 0.999509 0.0308829 uwb: 0.50012653 1249.94 1153.76 +imu_odom_: 1691062877.322665941 0.158017 -0.395043 9.56723 -0.0649811 0.0191748 0.0458064 0.23 0 pose: 0.0 -1.55546 -3.89866 0 -0.00360627 0.00397053 0.999509 0.0308829 uwb: 0.0 1249.94 1153.76 +imu_odom_: 1691062877.347540734 0.328006 -0.134075 9.59357 -0.0617853 -0.0223706 0.0500674 0.18 -0.02 pose: 0.6960800 -1.55546 -3.89866 0 -0.00399247 0.00326768 0.999511 0.0308493 uwb: 0.49985238 1249.49 1155.29 +imu_odom_: 1691062877.364554403 0.459687 -0.0766145 9.86411 -0.0394148 0.00213053 0.0319579 0.18 -0.02 pose: 0.0 -1.55546 -3.89866 0 -0.00399247 0.00326768 0.999511 0.0308493 uwb: 0.0 1249.49 1155.29 +imu_odom_: 1691062877.390564588 0.529119 -0.244209 9.56962 -0.0820254 0.0138484 0.0415453 0.19 0 pose: 0.50892268 -1.56912 -3.90231 0 -0.0063447 2.74977e-05 0.99951 0.0306493 uwb: 0.49960448 1249.64 1156.29 +imu_odom_: 1691062877.417590879 0.986411 -0.227449 10.2424 -0.0703074 -0.0426106 0.0596548 0.19 0 pose: 0.0 -1.56912 -3.90231 0 -0.0063447 2.74977e-05 0.99951 0.0306493 uwb: 0.0 1249.64 1156.29 +imu_odom_: 1691062877.433656688 0.782904 -0.299275 9.22486 -0.0777643 -0.00106526 0.0639159 0.18 0.02 pose: 0.42117699 -1.57778 -3.89731 0 -0.00327034 0.00208391 0.999524 0.0306003 uwb: 0.0 1249.64 1156.29 +imu_odom_: 1691062877.459528047 0.162806 -0.155623 9.80186 -0.0490022 0.0298274 0.0340885 0.18 0.02 pose: 0.0 -1.57778 -3.89731 0 -0.00327034 0.00208391 0.999524 0.0306003 uwb: 0.49867994 1249.73 1157.57 +imu_odom_: 1691062877.485647309 0.177171 -0.531513 9.663 -0.0532632 0.0127832 0.0436758 0.18 0.02 pose: 0.52853320 -1.57778 -3.89731 0 0.00216879 0.000401422 0.999541 0.0302085 uwb: 0.0 1249.73 1157.57 +imu_odom_: 1691062877.512533900 0.301669 -0.217872 9.76834 -0.0479369 -0.0703074 0.0468716 0.2 0.02 pose: 0.60070773 -1.5978 -3.89732 0 -0.00179513 -0.00135926 0.999543 0.0301295 uwb: 0.50003321 1249.46 1158.61 +imu_odom_: 1691062877.538572083 0.296881 -0.282516 10.2975 -0.0340885 0.0170442 0.0383495 0.2 -0.02 pose: 0.6925219 -1.6001 -3.89599 0 -0.00221186 -0.0010888 0.999544 0.0301027 uwb: 0.50026360 1249.48 1159.55 +imu_odom_: 1691062877.555573503 0.3304 -0.205901 9.61751 -0.0788296 -0.0276969 0.0585895 0.2 -0.02 pose: 0.0 -1.6001 -3.89599 0 -0.00221186 -0.0010888 0.999544 0.0301027 uwb: 0.0 1249.48 1159.55 +imu_odom_: 1691062877.571522944 0.905008 -0.280122 10.0461 -0.0511327 -0.00106526 0.0436758 0.23 0.02 pose: 0.28029566 -1.6001 -3.89599 0 -0.00394287 -0.0008937090.999541 0.0300326 uwb: 0.0 1249.48 1159.55 +imu_odom_: 1691062877.598585400 0.773327 -0.323217 10.2592 -0.0426106 -0.0308927 0.0415453 0.23 0.02 pose: 0.0 -1.6001 -3.89599 0 -0.00394287 -0.0008937090.999541 0.0300326 uwb: 0.49966573 1249.3 1160.97 +imu_odom_: 1691062877.623601351 0.703895 -0.114922 9.48104 -0.0543285 0 0.0426106 0.18 0.02 pose: 0.77983306 -1.61986 -3.89616 0 0.000362288 -0.00146173 0.999554 0.0298275 uwb: 0.0 1249.3 1160.97 +imu_odom_: 1691062877.640579439 0.112527 -0.136469 9.9503 -0.0553937 -0.00852212 0.0426106 0.18 0.02 pose: 0.0 -1.61986 -3.89616 0 0.000362288 -0.00146173 0.999554 0.0298275 uwb: 0.49971822 1249.45 1161.68 +imu_odom_: 1691062877.666581749 0.184354 -0.201113 9.92636 -0.0479369 -0.0458064 0.0426106 0.18 0.02 pose: 0.8025321 -1.62243 -3.89468 0 0.00109235 -0.00115992 0.999554 0.0298166 uwb: 0.0 1249.45 1161.68 +imu_odom_: 1691062877.693535420 0.536301 -0.172383 10.2831 -0.0468716 -0.0117179 0.0426106 0.25 0 pose: 0.59971028 -1.63225 -3.89733 0 -0.00100793 0.000253783 0.999557 0.0297287 uwb: 0.49999529 1249.52 1162.66 +imu_odom_: 1691062877.709674724 0.409408 -0.296881 9.68455 -0.0500674 0.0127832 0.0330232 0.19 0 pose: 0.0 -1.63225 -3.89733 0 -0.00100793 0.000253783 0.999557 0.0297287 uwb: 0.0 1249.52 1162.66 +imu_odom_: 1691062877.736551108 0.418985 -0.342371 10.2328 -0.0319579 -0.00958738 0.0490022 0.19 0 pose: 0.34983076 -1.63608 -3.89836 0 0.00143866 0.000180546 0.999557 0.0297119 uwb: 0.0 1249.52 1162.66 +imu_odom_: 1691062877.761570559 0.129287 -0.0670376 10.2903 -0.0372843 0.0266316 0.036219 0.25 0 pose: 0.0 -1.63608 -3.89836 0 0.00143866 0.000180546 0.999557 0.0297119 uwb: 0.50084399 1250.4 1162.3 +imu_odom_: 1691062877.778666766 0.502782 -0.138864 9.98622 -0.0500674 -0.00213053 0.0553937 0.25 0 pose: 0.0 -1.63608 -3.89836 0 0.00143866 0.000180546 0.999557 0.0297119 uwb: 0.0 1250.4 1162.3 +imu_odom_: 1691062877.803507727 0.318429 -0.201113 10.003 -0.036219 0.0479369 0.04048 0.18 0 pose: 0.77101941 -1.6524 -3.89544 0 -6.20606e-05-0.0001379750.999564 0.0295107 uwb: 0.49968322 1250.28 1163.78 +imu_odom_: 1691062877.830672552 0.114922 -0.035913 9.39485 -0.0745685 -0.00213053 0.0543285 0.23 -0.02 pose: 0.7931410 -1.6584 -3.89707 0 -0.0010417 0.000118752 0.999564 0.0295071 uwb: 0.0 1250.28 1163.78 +imu_odom_: 1691062877.855541511 0.122104 -0.347159 9.47386 -0.0692422 0.0458064 0.0447411 0.18 0 pose: 0.0 -1.6584 -3.89707 0 -0.0010417 0.000118752 0.999564 0.0295071 uwb: 0.49963073 1249.73 1165.6 +imu_odom_: 1691062877.882744251 0.371101 -0.186748 9.8282 -0.0607201 -0.0426106 0.0426106 0.23 0 pose: 0.52035243 -1.66708 -3.89209 0 -0.0061093 0.0014995 0.999552 0.0292767 uwb: 0.0 1249.73 1165.6 +imu_odom_: 1691062877.907663083 0.553061 -0.047884 10.4244 -0.0543285 -0.0383495 0.0500674 0.23 0 pose: 0.0 -1.66708 -3.89209 0 -0.0061093 0.0014995 0.999552 0.0292767 uwb: 0.50249181 1249.22 1167.47 +imu_odom_: 1691062877.934673917 0.624887 -0.0550666 10.1754 -0.0351537 -0.0458064 0.0383495 0.22 0 pose: 0.69029664 -1.67678 -3.89472 0 -0.00204222 0.00197986 0.999574 0.0290565 uwb: 0.0 1249.22 1167.47 +imu_odom_: 1691062877.950702103 0.407014 -0.349553 9.43315 -0.052198 0.0255663 0.0394148 0.22 0 pose: 0.6896929 -1.68073 -3.89579 0 -0.00126076 0.00231477 0.999574 0.0290593 uwb: 0.50045026 1249.27 1168.45 +imu_odom_: 1691062877.977630108 0.553061 -0.37589 9.83059 -0.0553937 -0.0372843 0.04048 0.25 0 pose: 0.0 -1.68073 -3.89579 0 -0.00126076 0.00231477 0.999574 0.0290593 uwb: 0.0 1249.27 1168.45 +imu_odom_: 1691062878.2526483 0.531513 -0.23942 10.4004 -0.0617853 -0.0351537 0.0543285 0.25 0 pose: 0.36142091 -1.68509 -3.89329 0 0.000625619 0.00172772 0.999576 0.0290671 uwb: 0.49691838 1248.86 1169.76 +imu_odom_: 1691062878.29697433 0.742203 -0.150835 10.0485 -0.0532632 0.0245011 0.0276969 0.2 -0.02 pose: 0.51824380 -1.6894 -3.89081 0 0.00537285 -0.00119087 0.999568 0.0288677 uwb: 0.0 1248.86 1169.76 +imu_odom_: 1691062878.54631431 0.993594 -0.263362 9.43076 -0.0809601 -0.02024 0.0617853 0.19 -0.02 pose: 0.0 -1.6894 -3.89081 0 0.00537285 -0.00119087 0.999568 0.0288677 uwb: 0.50178894 1248.97 1170.47 +imu_odom_: 1691062878.71631685 -0.00957681-0.35913 10.0844 -0.0383495 -0.02024 0.0245011 0.21 0 pose: 0.52104948 -1.70305 -3.89452 0 0.0102232 -0.0009545640.999534 0.0287598 uwb: 0.0 1248.97 1170.47 +imu_odom_: 1691062878.87528921 0.629675 -0.0766145 10.0509 -0.0607201 -0.0330232 0.0426106 0.21 0 pose: 0.0 -1.70305 -3.89452 0 0.0102232 -0.0009545640.999534 0.0287598 uwb: 0.0 1248.97 1170.47 +imu_odom_: 1691062878.114529547 0.670376 0.107739 10.3358 -0.0490022 -0.0117179 0.0372843 0.25 -0.02 pose: 0.32897490 -1.71173 -3.88955 0 0.00947869 0.000322364 0.999538 0.0288716 uwb: 0.49818416 1248.05 1172.4 +imu_odom_: 1691062878.130659811 0.328006 -0.409408 9.44752 -0.0639159 -0.0415453 0.04048 0.25 -0.02 pose: 0.8144023 -1.71173 -3.88955 0 0.0097211 0.00113402 0.999535 0.028888 uwb: 0.0 1248.05 1172.4 +imu_odom_: 1691062878.147634692 0.509965 -0.0766145 10.4004 -0.0458064 -0.00426106 0.0458064 0.26 -0.02 pose: 0.34986867 -1.71608 -3.88705 0 0.00938976 0.00184854 0.999536 0.0289131 uwb: 0.50118522 1247.81 1173.84 +imu_odom_: 1691062878.163506262 0.605733 -0.241814 9.23444 -0.0415453 -0.00852212 0.0308927 0.26 -0.02 pose: 0.0 -1.71608 -3.88705 0 0.00938976 0.00184854 0.999536 0.0289131 uwb: 0.0 1247.81 1173.84 +imu_odom_: 1691062878.190648047 0.299275 -0.512359 9.69652 -0.0660464 0.00532632 0.0511327 0.25 0 pose: 0.8002281 -1.7204 -3.88458 0 0.00887268 0.00249625 0.99954 0.0288946 uwb: 0.50124356 1248.48 1173.67 +imu_odom_: 1691062878.216513574 0.198719 -0.126893 10.0892 -0.0394148 -0.00958738 0.0596548 0.25 0 pose: 0.0 -1.7204 -3.88458 0 0.00887268 0.00249625 0.99954 0.0288946 uwb: 0.0 1248.48 1173.67 +imu_odom_: 1691062878.243513326 0.64404 -0.237026 9.88087 -0.0490022 -0.0191748 0.0372843 0.23 0.02 pose: 0.32881741 -1.72537 -3.89325 0 0.00852918 0.00128868 0.999546 0.0288775 uwb: 0.0 1248.48 1173.67 +imu_odom_: 1691062878.268556109 0.744597 -0.102951 9.94791 -0.0426106 -0.0234358 0.0458064 0.23 0.02 pose: 0.0 -1.72537 -3.89325 0 0.00852918 0.00128868 0.999546 0.0288775 uwb: 0.0 1248.48 1173.67 +imu_odom_: 1691062878.295552069 0.349553 -0.0430956 9.79707 -0.0479369 0.0106526 0.0426106 0.21 0.02 pose: 0.52031744 -1.73405 -3.88828 0 0.00550229 0.000483015 0.999578 0.0285079 uwb: 0.0 1248.48 1173.67 +imu_odom_: 1691062878.321561962 0.304064 -0.363919 9.77074 -0.0617853 -0.0138484 0.056459 0.18 0 pose: 0.51939874 -1.7477 -3.892 0 0.0093908 0.0016943 0.99955 0.0284491 uwb: 0.0 1248.48 1173.67 +imu_odom_: 1691062878.338545301 0.59855 -0.31364 9.87848 -0.0447411 0.00532632 0.0340885 0.23 -0.02 pose: 0.0 -1.7477 -3.892 0 0.0093908 0.0016943 0.99955 0.0284491 uwb: 0.149809892 1248.32 1174.52 +imu_odom_: 1691062878.354664190 0.545878 -0.181959 9.90721 -0.0468716 0.015979 0.0458064 0.23 -0.02 pose: 0.0 -1.7477 -3.892 0 0.0093908 0.0016943 0.99955 0.0284491 uwb: 0.0 1248.32 1174.52 +imu_odom_: 1691062878.381491869 0.442927 -0.265756 10.1562 -0.0436758 0.00426106 0.04048 0.23 0.02 pose: 0.53100057 -1.75638 -3.88704 0 0.00598065 0.000539398 0.999584 0.0282216 uwb: 0.0 1248.32 1174.52 +imu_odom_: 1691062878.407505262 0.505177 -0.265756 10.0221 -0.0798948 -0.0245011 0.0532632 0.23 0.02 pose: 0.33918555 -1.75638 -3.88704 0 0.00638382 0.000849045 0.999582 0.0281956 uwb: 0.50005362 1248.51 1175.31 +imu_odom_: 1691062878.434651130 0.696713 -0.306458 9.79947 -0.0436758 -0.00639159 0.0340885 0.25 0 pose: 0.44971199 -1.77002 -3.89077 0 0.0053353 -0.00309335 0.999589 0.0279914 uwb: 0.0 1248.51 1175.31 +imu_odom_: 1691062878.459492092 0.73502 -0.203507 10.0341 -0.0713727 -0.0351537 0.0553937 0.18 0 pose: 0.7129665 -1.77002 -3.89077 0 0.00604136 -0.00320088 0.999584 0.028012 uwb: 0.49941492 1248.07 1176.62 +imu_odom_: 1691062878.486498843 0.275333 -0.213084 9.49301 -0.0617853 0.0436758 0.0511327 0.18 0 pose: 0.0 -1.77002 -3.89077 0 0.00604136 -0.00320088 0.999584 0.028012 uwb: 0.0 1248.07 1176.62 +imu_odom_: 1691062878.511494962 0.0143652 -0.162806 9.61033 -0.0671117 0.00532632 0.0585895 0.18 0.02 pose: 0.28041816 -1.77871 -3.88581 0 0.00888781 -0.0032649 0.999563 0.0280112 uwb: 0.49974156 1247.68 1177.98 +imu_odom_: 1691062878.538692744 0.529119 -0.260968 9.87848 -0.0511327 -0.015979 0.04048 0.18 0.02 pose: 0.0 -1.77871 -3.88581 0 0.00888781 -0.0032649 0.999563 0.0280112 uwb: 0.50062526 1247.79 1178.39 +imu_odom_: 1691062878.564546313 0.294487 -0.47884 9.78271 -0.0447411 0.00958738 0.0468716 0.18 -0.02 pose: 0.51853255 -1.7874 -3.88086 0 0.0065569 -0.00226014 0.999593 0.0276573 uwb: 0.0 1247.79 1178.39 +imu_odom_: 1691062878.581692392 0.648829 -0.272939 9.991 -0.04048 -0.015979 0.0500674 0.18 -0.02 pose: 0.0 -1.7874 -3.88086 0 0.0065569 -0.00226014 0.999593 0.0276573 uwb: 0.0 1247.79 1178.39 +imu_odom_: 1691062878.607492589 0.447716 -0.0215478 10.0844 -0.0458064 -0.00745685 0.0468716 0.18 0 pose: 0.52120405 -1.80104 -3.8846 0 0.00686676 -0.00328543 0.999594 0.027449 uwb: 0.49928367 1247.76 1179.68 +imu_odom_: 1691062878.634534047 0.344765 -0.442927 9.71088 -0.0735032 -0.0340885 0.0617853 0.25 0.02 pose: 0.42867239 -1.80104 -3.8846 0 0.00690072 -0.00315092 0.999599 0.0272641 uwb: 0.0 1247.76 1179.68 +imu_odom_: 1691062878.659618828 0.553061 -0.361524 10.1825 -0.0490022 -0.0319579 0.0458064 0.18 -0.02 pose: 0.25130570 -1.80973 -3.87966 0 0.00596523 -0.00195605 0.999612 0.0271249 uwb: 0.50128439 1248.1 1180.58 +imu_odom_: 1691062878.686545084 0.828394 -0.105345 10.3477 -0.0639159 -0.0426106 0.0479369 0.23 -0.02 pose: 0.27992235 -1.81467 -3.88836 0 0.0054327 -0.00427649 0.999615 0.0268661 uwb: 0.0 1248.1 1180.58 +imu_odom_: 1691062878.702606810 0.593762 -0.0933739 9.51695 -0.0553937 -0.00639159 0.0458064 0.23 -0.02 pose: 0.0 -1.81467 -3.88836 0 0.0054327 -0.00427649 0.999615 0.0268661 uwb: 0.49876745 1248.02 1181.52 +imu_odom_: 1691062878.729666350 0.464475 -0.3304 9.90721 -0.0660464 -0.0117179 0.0458064 0.25 0 pose: 0.23877643 -1.82337 -3.88342 0 0.00723701 -0.0053105 0.999601 0.0267843 uwb: 0.0 1248.02 1181.52 +imu_odom_: 1691062878.754519561 0.368707 -0.277727 9.68455 -0.0628506 0.0330232 0.0468716 0.25 0 pose: 0.0 -1.82337 -3.88342 0 0.00723701 -0.0053105 0.999601 0.0267843 uwb: 0.50048235 1248.14 1182.28 +imu_odom_: 1691062878.781702760 0.608127 -0.229843 9.81144 -0.0213053 -0.02024 0.0383495 0.23 0 pose: 0.44092459 -1.82337 -3.88342 0 0.00873852 -0.0030437 0.999602 0.0266515 uwb: 0.0 1248.14 1182.28 +imu_odom_: 1691062878.797473711 0.775721 -0.153229 9.93115 -0.0191748 0.0170442 0.0255663 0.23 0 pose: 0.0 -1.82337 -3.88342 0 0.00873852 -0.0030437 0.999602 0.0266515 uwb: 0.50007113 1248.46 1182.51 +imu_odom_: 1691062878.824530043 0.500388 -0.430956 9.30387 -0.0500674 0.0138484 0.0426106 0.25 0 pose: 0.50874770 -1.837 -3.88719 0 0.0048668 -0.00349679 0.999631 0.0264915 uwb: 0.0 1248.46 1182.51 +imu_odom_: 1691062878.849582159 0.35913 -0.114922 10.2185 -0.0447411 -0.0607201 0.056459 0.25 0 pose: 0.0 -1.837 -3.88719 0 0.0048668 -0.00349679 0.999631 0.0264915 uwb: 0.50085566 1248.66 1184 +imu_odom_: 1691062878.874474743 0.237026 -0.282516 9.94791 -0.0671117 -0.0585895 0.0500674 0.23 0 pose: 0.43017731 -1.8457 -3.88226 0 0.00791866 -0.00210188 0.999612 0.0266119 uwb: 0.0 1248.66 1184 +imu_odom_: 1691062878.897601680 0.378284 -0.0670376 10.0963 -0.052198 -0.02024 0.0500674 0.23 0 pose: 0.51961748 -1.8544 -3.87733 0 0.00556375 -0.00219923 0.999636 0.0263177 uwb: 0.50041236 1249.09 1184.32 +imu_odom_: 1691062878.914461067 0.679953 -0.222661 9.96467 -0.0585895 0.0106526 0.0426106 0.18 -0.02 pose: 0.0 -1.8544 -3.87733 0 0.00556375 -0.00219923 0.999636 0.0263177 uwb: 0.0 1249.09 1184.32 +imu_odom_: 1691062878.939521933 0.277727 -0.124498 10.2017 -0.0639159 -0.0447411 0.0607201 0.18 -0.02 pose: 0.49019295 -1.86803 -3.88111 0 0.00407149 -0.0004252990.999651 0.0260911 uwb: 0.49861871 1249.62 1184.71 +imu_odom_: 1691062878.964671168 0.957681 -0.169988 9.56244 -0.0692422 -0.00106526 0.0351537 0.19 0 pose: 0.0 -1.86803 -3.88111 0 0.00407149 -0.0004252990.999651 0.0260911 uwb: 0.0 1249.62 1184.71 +imu_odom_: 1691062878.990469032 -0.112527 -0.186748 9.58399 -0.0639159 0.04048 0.0607201 0.24 0 pose: 0.16120639 -1.86803 -3.88111 0 0.00439752 -0.0002048810.999652 0.0260036 uwb: 0.50035110 1249.33 1186.18 +imu_odom_: 1691062879.6448513 0.158017 -0.47884 9.92636 -0.0798948 0.00106526 0.04048 0.24 0 pose: 0.43066436 -1.87425 -3.8776 0 0.00560068 0.000398081 0.999649 0.0258726 uwb: 0.0 1249.33 1186.18 +imu_odom_: 1691062879.24512996 0.289698 -0.162806 9.4547 -0.0415453 0.00745685 0.0415453 0.24 0 pose: 0.0 -1.87425 -3.8776 0 0.00560068 0.000398081 0.999649 0.0258726 uwb: 0.0 1249.33 1186.18 +imu_odom_: 1691062879.42463154 0.414197 -0.361524 9.95509 -0.076699 -0.0255663 0.0543285 0.18 -0.02 pose: 0.6832183 -1.87673 -3.87619 0 0.00476411 0.000409527 0.999656 0.0258011 uwb: 0.50018780 1248.65 1187.71 +imu_odom_: 1691062879.67448774 0.943315 -0.186748 9.7037 -0.0479369 0.02024 0.0266316 0.18 -0.02 pose: 0.0 -1.87673 -3.87619 0 0.00476411 0.000409527 0.999656 0.0258011 uwb: 0.0 1248.65 1187.71 +imu_odom_: 1691062879.94518522 0.73502 -0.201113 9.80904 -0.0607201 0.00426106 0.0372843 0.21 -0.02 pose: 0.61094464 -1.89036 -3.87999 0 -0.000330424-0.00074509 0.999674 0.0255164 uwb: 0.49874704 1249.22 1188.48 +imu_odom_: 1691062879.119517558 1.15161 -0.0167594 9.94073 -0.0532632 -0.0585895 0.0500674 0.19 0 pose: 0.61920707 -1.90009 -3.8827 0 0.00464593 -0.00126036 0.999659 0.0256468 uwb: 0.0 1249.22 1188.48 +imu_odom_: 1691062879.146460147 0.270545 -0.208296 10.003 -0.0490022 0.0255663 0.0330232 0.22 0 pose: 0.0 -1.90009 -3.8827 0 0.00464593 -0.00126036 0.999659 0.0256468 uwb: 0.49917869 1248.66 1190.11 +imu_odom_: 1691062879.162447211 0.588974 -0.1652 10.4651 -0.0479369 -0.04048 0.0308927 0.22 0 pose: 0.0 -1.90009 -3.8827 0 0.00464593 -0.00126036 0.999659 0.0256468 uwb: 0.0 1248.66 1190.11 +imu_odom_: 1691062879.189584330 0.746991 -0.0311246 10.343 -0.0319579 -0.0490022 0.036219 0.23 -0.02 pose: 0.31982586 -1.90398 -3.88378 0 0.00691739 -0.0004428860.99965 0.0255437 uwb: 0.50138647 1249.29 1190.25 +imu_odom_: 1691062879.214457082 0.679953 -0.0167594 10.228 -0.0639159 0.00532632 0.036219 0.19 0 pose: 0.63083222 -1.91889 -3.87537 0 0.009119 0.00250244 0.999624 0.0257342 uwb: 0.0 1249.29 1190.25 +imu_odom_: 1691062879.238548796 0.184354 -0.0981623 9.65342 -0.0340885 -0.0170442 0.0298274 0.23 0 pose: 0.0 -1.91889 -3.87537 0 0.009119 0.00250244 0.999624 0.0257342 uwb: 0.49862163 1250 1190.45 +imu_odom_: 1691062879.253441008 0.490811 -0.316035 9.60314 -0.0490022 0.00426106 0.0383495 0.23 0 pose: 0.8073444 -1.9214 -3.87396 0 0.00954109 0.00313292 0.999618 0.0257527 uwb: 0.0 1250 1190.45 +imu_odom_: 1691062879.278447627 0.505177 -0.304064 9.81862 -0.0436758 -0.0234358 0.0553937 0.18 0 pose: 0.0 -1.9214 -3.87396 0 0.00954109 0.00313292 0.999618 0.0257527 uwb: 0.0 1250 1190.45 +imu_odom_: 1691062879.302490927 0.509965 -0.289698 10.1131 -0.0713727 0 0.0660464 0.18 0 pose: 0.47912486 -1.92632 -3.88266 0 0.00791278 0.00427559 0.999624 0.02592 uwb: 0.50001281 1250.19 1191.98 +imu_odom_: 1691062879.317447301 0.605733 -0.292093 9.77553 -0.0511327 -0.0681769 0.052198 0.19 0 pose: 0.0 -1.92632 -3.88266 0 0.00791278 0.00427559 0.999624 0.02592 uwb: 0.0 1250.19 1191.98 +imu_odom_: 1691062879.342449837 0.433351 -0.0191536 10.2208 -0.0383495 -0.036219 0.0490022 0.19 0 pose: 0.39863832 -1.93502 -3.87775 0 0.00688742 0.000584769 0.999648 0.0256101 uwb: 0.0 1250.19 1191.98 +imu_odom_: 1691062879.366489929 0.737414 -0.009576819.7444 -0.0458064 -0.0319579 0.0447411 0.25 0 pose: 0.0 -1.93502 -3.87775 0 0.00688742 0.000584769 0.999648 0.0256101 uwb: 0.0 1250.19 1191.98 +imu_odom_: 1691062879.390430861 0.445322 -0.0694318 10.3382 -0.0575243 0.00958738 0.052198 0.25 0 pose: 0.39017466 -1.94374 -3.87284 0 0.00771768 -0.00136467 0.999651 0.0252459 uwb: 0.99933731 1249.58 1193.59 +imu_odom_: 1691062879.406481213 0.179565 0.0909797 10.0987 -0.0532632 0.0149137 0.0436758 0.2 0 pose: 0.0 -1.94374 -3.87284 0 0.00771768 -0.00136467 0.999651 0.0252459 uwb: 0.0 1249.58 1193.59 +imu_odom_: 1691062879.423484384 0.861913 -0.344765 9.88087 -0.0426106 -0.0266316 0.036219 0.2 0 pose: 0.0 -1.94374 -3.87284 0 0.00771768 -0.00136467 0.999651 0.0252459 uwb: 0.0 1249.58 1193.59 +imu_odom_: 1691062879.448570623 0.536301 -0.519542 9.20331 -0.0617853 -0.0351537 0.0490022 0.18 0 pose: 0.49049044 -1.95736 -3.87664 0 0.00863153 0.0025236 0.999645 0.0250792 uwb: 0.50065152 1250.02 1194.29 +imu_odom_: 1691062879.473491205 0.335188 -0.160412 9.80186 -0.0532632 -0.0372843 0.0532632 0.18 0 pose: 0.75070021 -1.96956 -3.87794 0 0.00759774 0.000968956 0.999662 0.0248452 uwb: 0.0 1250.02 1194.29 +imu_odom_: 1691062879.496425071 0.246603 -0.146046 9.96467 -0.0596548 -0.0308927 0.0447411 0.18 0 pose: 0.0 -1.96956 -3.87794 0 0.00759774 0.000968956 0.999662 0.0248452 uwb: 0.49934492 1250.09 1195.39 +imu_odom_: 1691062879.522432048 0.232238 -0.0191536 9.95748 -0.056459 -0.0138484 0.0468716 0.18 0 pose: 0.6916761 -1.97097 -3.88046 0 0.00702986 0.00109152 0.999667 0.0247997 uwb: 0.0 1250.09 1195.39 +imu_odom_: 1691062879.547428459 0.667982 -0.3304 10.0509 -0.0543285 -0.00639159 0.0479369 0.23 0.02 pose: 0.0 -1.97097 -3.88046 0 0.00702986 0.00109152 0.999667 0.0247997 uwb: 0.50110649 1249.77 1196.9 +imu_odom_: 1691062879.561417140 0.186748 -0.136469 9.71328 -0.056459 0.0383495 0.0553937 0.23 0.02 pose: 0.48997131 -1.97969 -3.87556 0 0.00296996 0.00219304 0.999691 0.0246017 uwb: 0.0 1249.77 1196.9 +imu_odom_: 1691062879.586564917 0.122104 -0.146046 9.73004 -0.0639159 0.0340885 0.0553937 0.17 0 pose: 0.0 -1.97969 -3.87556 0 0.00296996 0.00219304 0.999691 0.0246017 uwb: 0.0 1249.77 1196.9 +imu_odom_: 1691062879.611555204 0.390255 -0.220267 9.65821 -0.052198 -0.0117179 0.0415453 0.17 0 pose: 0.49110583 -1.98841 -3.87066 0 0.00281878 0.0017621 0.999697 0.0243821 uwb: 0.49876746 1248.71 1199.25 +imu_odom_: 1691062879.637666300 0.196325 -0.356736 9.8258 -0.0383495 -0.0138484 0.0415453 0.18 0.02 pose: 0.0 -1.98841 -3.87066 0 0.00281878 0.0017621 0.999697 0.0243821 uwb: 0.0 1248.71 1199.25 +imu_odom_: 1691062879.663419542 0.37589 -0.153229 9.66539 -0.0479369 -0.0479369 0.0468716 0.21 0 pose: 0.39970284 -1.9933 -3.87938 0 -0.0009541960.00143497 0.999708 0.0241214 uwb: 0.50042695 1247.86 1201.07 +imu_odom_: 1691062879.677732245 0.323217 -0.105345 10.1011 -0.0415453 -0.0276969 0.0511327 0.21 0 pose: 0.0 -1.9933 -3.87938 0 -0.0009541960.00143497 0.999708 0.0241214 uwb: 0.0 1247.86 1201.07 +imu_odom_: 1691062879.695445000 1.00556 -0.114922 9.79707 -0.0500674 -0.0117179 0.0383495 0.21 0 pose: 0.50921143 -2.00203 -3.8745 0 -0.00229952 -0.0008465330.999708 0.0240532 uwb: 0.49972990 1247.83 1201.77 +imu_odom_: 1691062879.720493325 0.505177 -0.363919 9.67257 -0.0500674 0.00319579 0.0479369 0.18 -0.02 pose: 0.0 -2.00203 -3.8745 0 -0.00229952 -0.0008465330.999708 0.0240532 uwb: 0.0 1247.83 1201.77 +imu_odom_: 1691062879.747442621 0.502782 -0.347159 9.80426 -0.0500674 -0.0436758 0.04048 0.26 -0.02 pose: 0.76006800 -2.02166 -3.87497 0 0.000952507 0.00037272 0.999716 0.0237956 uwb: 0.50098983 1246.91 1203.9 +imu_odom_: 1691062879.772579316 0.526724 -0.100556 10.0509 -0.0511327 -0.0436758 0.0426106 0.19 -0.02 pose: 0.8086859 -2.02436 -3.87345 0 0.0015022 -0.0003196090.999716 0.0237911 uwb: 0.0 1246.91 1203.9 +imu_odom_: 1691062879.798438427 0.134075 -0.167594 9.24162 -0.0628506 -0.118244 0.0532632 0.22 0 pose: 0.43999132 -2.02436 -3.87345 0 0.00436044 0.000381526 0.999708 0.0237499 uwb: 0.49913202 1245.92 1206.34 +imu_odom_: 1691062879.820452721 -1.37667 -0.0335188 10.1754 -0.0351537 -0.0585895 0.04048 0.22 0 pose: 0.0 -2.02436 -3.87345 0 0.00436044 0.000381526 0.999708 0.0237499 uwb: 0.0 1245.92 1206.34 +imu_odom_: 1691062879.837561761 0.775721 -0.287304 8.24563 -0.0553937 0.152333 0.0735032 0.22 0 pose: 0.31875842 -2.03309 -3.86857 0 0.00283427 0.000717431 0.999718 0.0235746 uwb: 0.49965408 1245.13 1208.62 +imu_odom_: 1691062879.863410664 0.840365 -0.497994 9.28711 -0.0255663 0.0436758 0.0426106 0.19 -0.02 pose: 0.0 -2.03309 -3.86857 0 0.00283427 0.000717431 0.999718 0.0235746 uwb: 0.0 1245.13 1208.62 +imu_odom_: 1691062879.887557208 0.684742 0.198719 9.91918 -0.0308927 0.0255663 0.00213053 0.19 0 pose: 0.40052530 -2.0467 -3.87243 0 0.00237508 0.000292051 0.999727 0.0232626 uwb: 0.0 1245.13 1208.62 +imu_odom_: 1691062879.914401803 0.505177 -0.361524 9.84256 -0.0511327 0.00852212 0.0607201 0.19 0 pose: 0.43049520 -2.0467 -3.87243 0 0.00421352 0.00186136 0.999709 0.0236889 uwb: 0.50000697 1244.25 1210.45 +imu_odom_: 1691062879.930501735 -0.0502782 -0.277727 10.058 -0.0415453 -0.02024 0.0458064 0.21 0 pose: 0.6880597 -2.0467 -3.87243 0 0.00423136 0.00119115 0.999712 0.023613 uwb: 0.0 1244.25 1210.45 +imu_odom_: 1691062879.956595041 0.459687 0.0742203 10.149 -0.0383495 0.00213053 0.0596548 0.21 0 pose: 0.0 -2.0467 -3.87243 0 0.00423136 0.00119115 0.999712 0.023613 uwb: 0.50032778 1243.81 1211.56 +imu_odom_: 1691062879.981590869 0.138864 -0.277727 9.66539 -0.072438 0.015979 0.04048 0.19 0 pose: 0.44105001 -2.06031 -3.87628 0 0.00280151 0.000116093 0.999725 0.0232621 uwb: 0.0 1243.81 1211.56 +imu_odom_: 1691062880.7445896 0.292093 -0.138864 10.1083 -0.0585895 -0.0245011 0.0585895 0.19 0 pose: 0.43048063 -2.06904 -3.87141 0 0.000135466 0.00114281 0.999733 0.0230775 uwb: 0.50103941 1244.21 1212.29 +imu_odom_: 1691062880.32442891 0.397437 -0.153229 9.92397 -0.0660464 -0.0394148 0.0415453 0.19 -0.02 pose: 0.7842457 -2.06904 -3.87141 0 -0.0004880910.00147642 0.999734 0.0230039 uwb: 0.0 1244.21 1212.29 +imu_odom_: 1691062880.48443080 0.294487 -0.0957681 9.61751 -0.0468716 0.0245011 0.0490022 0.19 -0.02 pose: 0.0 -2.06904 -3.87141 0 -0.0004880910.00147642 0.999734 0.0230039 uwb: 0.49897454 1244.47 1212.89 +imu_odom_: 1691062880.73447949 0.73502 -0.251391 9.53611 -0.0777643 0.00852212 0.0468716 0.19 0 pose: 0.49014922 -2.08264 -3.87528 0 0.000105478 0.00355461 0.999734 0.0227771 uwb: 0.0 1244.47 1212.89 +imu_odom_: 1691062880.99389305 0.488417 -0.229843 9.97185 -0.0511327 -0.0308927 0.0511327 0.19 0 pose: 0.18011987 -2.08264 -3.87528 0 -0.00022922 0.00369412 0.999735 0.0227005 uwb: 0.49928369 1244.96 1213.69 +imu_odom_: 1691062880.115517236 0.842759 -0.189142 9.24401 -0.04048 -0.0223706 0.056459 0.21 0 pose: 0.0 -2.08264 -3.87528 0 -0.00022922 0.00369412 0.999735 0.0227005 uwb: 0.0 1244.96 1213.69 +imu_odom_: 1691062880.141407262 0.438139 0.129287 10.2975 -0.0532632 0.04048 0.04048 0.21 0 pose: 0.49077335 -2.09138 -3.87041 0 0.0038996 0.00101005 0.99974 0.0224232 uwb: 0.49985824 1245.01 1213.74 +imu_odom_: 1691062880.166411548 0.335188 -0.380678 9.50498 -0.052198 0.015979 0.0340885 0.18 -0.02 pose: 0.0 -2.09138 -3.87041 0 0.0038996 0.00101005 0.99974 0.0224232 uwb: 0.0 1245.01 1213.74 +imu_odom_: 1691062880.191544160 -0.0694318 -0.402226 10.1897 -0.0607201 0.0266316 0.052198 0.21 0 pose: 0.35869692 -2.09766 -3.86692 0 0.00394429 0.00366522 0.999736 0.0223385 uwb: 0.50090526 1244.57 1215.24 +imu_odom_: 1691062880.205533425 0.531513 -0.0837971 9.98861 -0.0660464 -0.0181095 0.0468716 0.21 0 pose: 0.0 -2.09766 -3.86692 0 0.00394429 0.00366522 0.999736 0.0223385 uwb: 0.0 1244.57 1215.24 +imu_odom_: 1691062880.230541502 0.581791 -0.112527 10.2951 -0.052198 -0.0330232 0.0479369 0.21 0 pose: 0.7014173 -2.10012 -3.86556 0 0.0035015 0.00308217 0.999739 0.0223565 uwb: 0.0 1244.57 1215.24 +imu_odom_: 1691062880.256417821 0.608127 0.248997 10.3789 -0.0372843 -0.0117179 0.036219 0.18 0 pose: 0.49005006 -2.11372 -3.86944 0 0.000129914 0.000942624 0.999753 0.0222235 uwb: 0.50057569 1243.8 1217.22 +imu_odom_: 1691062880.282649660 0.512359 -0.0191536 9.92875 -0.0660464 -0.0170442 0.0468716 0.19 0.02 pose: 0.0 -2.11372 -3.86944 0 0.000129914 0.000942624 0.999753 0.0222235 uwb: 0.0 1243.8 1217.22 +imu_odom_: 1691062880.299422428 0.52433 -0.28491 9.40442 -0.0308927 -0.015979 0.0287621 0.19 0.02 pose: 0.39991284 -2.11372 -3.86944 0 0.00373138 0.00313352 0.999744 0.0220998 uwb: 0.50176271 1243.95 1218.11 +imu_odom_: 1691062880.324428173 0.325611 -0.107739 10.1011 -0.0532632 -0.0191748 0.052198 0.2 0 pose: 0.0 -2.11372 -3.86944 0 0.00373138 0.00313352 0.999744 0.0220998 uwb: 0.0 1243.95 1218.11 +imu_odom_: 1691062880.350381778 0.493206 0.0430956 9.85693 -0.0383495 0.0447411 0.0415453 0.2 0 pose: 0.52032329 -2.12731 -3.87333 0 0.00542784 0.00688143 0.999718 0.0220814 uwb: 0.49835624 1243.11 1220.06 +imu_odom_: 1691062880.375374982 0.409408 -0.131681 9.68933 -0.0671117 0.0266316 0.0617853 0.19 0 pose: 0.0 -2.12731 -3.87333 0 0.00542784 0.00688143 0.999718 0.0220814 uwb: 0.0 1243.11 1220.06 +imu_odom_: 1691062880.392375820 0.282516 -0.349553 10.331 -0.0340885 -0.00852212 0.0330232 0.19 0 pose: 0.41987625 -2.13606 -3.86848 0 0.0032612 0.00662566 0.999731 0.02198 uwb: 0.50034821 1243.65 1220.93 +imu_odom_: 1691062880.418350716 0.430956 -0.25618 10.2687 -0.0713727 -0.0287621 0.0639159 0.18 0.02 pose: 0.0 -2.13606 -3.86848 0 0.0032612 0.00662566 0.999731 0.02198 uwb: 0.0 1243.65 1220.93 +imu_odom_: 1691062880.443424123 0.0933739 -0.0167594 9.98861 -0.0330232 0.0308927 0.0436758 0.18 0.02 pose: 0.50938351 -2.1448 -3.86363 0 0.00113834 0.00587805 0.999746 0.0217109 uwb: 0.0 1243.65 1220.93 +imu_odom_: 1691062880.465436668 0.483629 -0.620098 9.35175 -0.0191748 0.015979 0.0298274 0.18 0.02 pose: 0.0 -2.1448 -3.86363 0 0.00113834 0.00587805 0.999746 0.0217109 uwb: 0.0 1243.65 1220.93 +imu_odom_: 1691062880.491371025 0.746991 0.483629 9.55526 -0.100135 0.0266316 0.0873517 0.18 0.02 pose: 0.43130017 -2.14965 -3.87238 0 0.000444304 0.00270783 0.999767 0.0214156 uwb: 0.0 1243.65 1220.93 +imu_odom_: 1691062880.507424876 0.258574 -0.035913 9.43555 -0.157659 0.104396 0.134223 0.23 0.02 pose: 0.0 -2.14965 -3.87238 0 0.000444304 0.00270783 0.999767 0.0214156 uwb: 0.0 1243.65 1220.93 +imu_odom_: 1691062880.533499225 0.0933739 -0.713472 9.23922 -0.0394148 -0.0319579 -0.0245011 0.23 0.02 pose: 0.47899946 -2.1584 -3.86754 0 -0.0009705460.00245384 0.99977 0.0212989 uwb: 0.0 1243.65 1220.93 +imu_odom_: 1691062880.550408777 0.627281 0.339977 10.0245 -0.0681769 0.0319579 0.00213053 0.19 0 pose: 0.0 -2.1584 -3.86754 0 -0.0009705460.00245384 0.99977 0.0212989 uwb: 0.149931806 1242.25 1223.55 +imu_odom_: 1691062880.576550205 0.646434 -0.402226 9.97664 -0.0436758 -0.0127832 0.0671117 0.19 0 pose: 0.77002784 -2.17199 -3.87147 0 -0.00270053 0.00306085 0.999766 0.021263 uwb: 0.0 1242.25 1223.55 +imu_odom_: 1691062880.601490328 0.316035 0.0263362 9.66779 -0.0617853 0.00958738 0.0340885 0.2 -0.02 pose: 0.7094376 -2.17199 -3.87147 0 -0.00213252 0.00263773 0.99977 0.0211652 uwb: 0.49976783 1241.19 1225.31 +imu_odom_: 1691062880.626359580 0.160412 -0.0790087 9.5816 -0.0745685 0.0213053 0.072438 0.19 0 pose: 0.43987175 -2.17821 -3.86804 0 -0.0015618 0.00379577 0.999772 0.0209704 uwb: 0.0 1241.19 1225.31 +imu_odom_: 1691062880.651414614 0.37589 -0.244209 9.84017 -0.0671117 -0.0287621 0.0330232 0.19 0 pose: 0.0 -2.17821 -3.86804 0 -0.0015618 0.00379577 0.999772 0.0209704 uwb: 0.49964825 1242.02 1225.29 +imu_odom_: 1691062880.674510053 0.270545 -0.304064 9.87608 -0.0532632 -0.00213053 0.0458064 0.18 0 pose: 0.31896549 -2.18557 -3.8754 0 -0.00385729 0.00366256 0.999774 0.0205926 uwb: 0.0 1242.02 1225.29 +imu_odom_: 1691062880.699491591 0.258574 -0.45011 9.75637 -0.0426106 -0.0170442 0.0415453 0.18 0 pose: 0.0 -2.18557 -3.8754 0 -0.00385729 0.00366256 0.999774 0.0205926 uwb: 0.49925452 1243.66 1224.84 +imu_odom_: 1691062880.715392910 0.687136 -0.378284 9.91918 -0.0447411 -0.0447411 0.052198 0.23 0 pose: 0.47987149 -2.19433 -3.87057 0 -0.00426721 -0.0006128820.999779 0.020588 uwb: 0.0 1243.66 1224.84 +imu_odom_: 1691062880.740401279 0.794875 -0.059855 9.84496 -0.056459 -0.0383495 0.0543285 0.23 0 pose: 0.34018884 -2.19916 -3.86791 0 -0.0028415 -0.0026645 0.999783 0.020483 uwb: 0.50194353 1244.8 1224.71 +imu_odom_: 1691062880.757472113 0.881066 -0.426168 9.80904 -0.052198 0.0170442 0.036219 0.2 -0.02 pose: 0.8022988 -2.20309 -3.86575 0 -0.00197096 -0.0023477 0.999787 0.0204245 uwb: 0.0 1244.8 1224.71 +imu_odom_: 1691062880.782428277 0.792481 -0.351948 9.78031 -0.0479369 -0.0394148 0.0468716 0.2 -0.02 pose: 0.0 -2.20309 -3.86575 0 -0.00197096 -0.0023477 0.999787 0.0204245 uwb: 0.0 1244.8 1224.71 +imu_odom_: 1691062880.807473978 0.782904 -0.275333 10.1155 -0.0468716 -0.0383495 0.0415453 0.23 0.02 pose: 0.40944104 -2.21667 -3.86969 0 0.00206328 -0.00243792 0.999789 0.0203083 uwb: 0.49860998 1244.84 1225.54 +imu_odom_: 1691062880.832386102 0.402226 -0.059855 10.0317 -0.056459 -0.0394148 0.0468716 0.23 0.02 pose: 0.43113976 -2.21667 -3.86969 0 0.00705749 -0.00286058 0.999766 0.020225 uwb: 0.0 1244.84 1225.54 +imu_odom_: 1691062880.850321969 0.0622492 -0.237026 9.84256 -0.0511327 -0.00106526 0.0490022 0.2 0.02 pose: 0.6969842 -2.21667 -3.86969 0 0.00679957 -0.002283 0.99977 0.0202024 uwb: 0.49944409 1245.72 1225.55 +imu_odom_: 1691062880.874410767 0.4956 -0.390255 9.47146 -0.0703074 0.00745685 0.0436758 0.2 0.02 pose: 0.0 -2.21667 -3.86969 0 0.00679957 -0.002283 0.99977 0.0202024 uwb: 0.0 1245.72 1225.55 +imu_odom_: 1691062880.899444218 0.354342 -0.466869 10.0365 -0.072438 -0.0330232 0.0575243 0.23 0.02 pose: 0.35878149 -2.22544 -3.86487 0 0.00431344 -0.0007582210.999789 0.0200582 uwb: 0.50180354 1246.99 1225.14 +imu_odom_: 1691062880.921335437 0.260968 -0.35913 9.71567 -0.0490022 0.00319579 0.0372843 0.23 0.02 pose: 0.49122249 -2.23683 -3.87002 0 0.00314019 -0.00556915 0.999784 0.0197609 uwb: 0.0 1246.99 1225.14 +imu_odom_: 1691062880.943325233 0.596156 -0.102951 10.0149 -0.0394148 -0.0372843 0.0436758 0.19 0 pose: 0.0 -2.23683 -3.87002 0 0.00314019 -0.00556915 0.999784 0.0197609 uwb: 0.49806751 1247.24 1225.36 +imu_odom_: 1691062880.959480870 0.304064 -0.325611 9.73961 -0.0426106 0.0170442 0.0436758 0.19 0 pose: 0.0 -2.23683 -3.87002 0 0.00314019 -0.00556915 0.999784 0.0197609 uwb: 0.0 1247.24 1225.36 +imu_odom_: 1691062880.984530654 0.852336 -0.220267 10.0437 -0.0628506 -0.0681769 0.0575243 0.23 -0.02 pose: 0.51031971 -2.24778 -3.86401 0 0.001859 -0.00407205 0.999796 0.0197179 uwb: 0.0 1247.24 1225.36 +imu_odom_: 1691062880.998323638 0.861913 -0.430956 9.67257 -0.0681769 -0.00426106 0.0607201 0.23 -0.02 pose: 0.0 -2.24778 -3.86401 0 0.001859 -0.00407205 0.999796 0.0197179 uwb: 0.49969783 1248.78 1224.78 +imu_odom_: 1691062881.21347041 1.18752 -0.181959 10.1658 -0.0447411 -0.00213053 0.0436758 0.18 0 pose: 0.39889207 -2.25259 -3.87277 0 0.00469827 -0.00417076 0.999792 0.019418 uwb: 0.0 1248.78 1224.78 +imu_odom_: 1691062881.47422264 0.696713 -0.146046 9.86172 -0.0703074 -0.00532632 0.0490022 0.18 0 pose: 0.30981645 -2.26136 -3.86797 0 0.00769069 -0.00403059 0.999776 0.0193 uwb: 0.50006531 1248.81 1226.4 +imu_odom_: 1691062881.61539855 0.502782 0.134075 10.2759 -0.0692422 0.00426106 0.0500674 0.2 0 pose: 0.8073735 -2.26136 -3.86797 0 0.00827168 -0.00352717 0.999774 0.019269 uwb: 0.0 1248.81 1226.4 +imu_odom_: 1691062881.78534569 0.490811 -0.232238 10.0509 -0.0660464 -0.00426106 0.116114 0.2 0 pose: 0.0 -2.26136 -3.86797 0 0.00827168 -0.00352717 0.999774 0.019269 uwb: 0.0 1248.81 1226.4 +imu_odom_: 1691062881.92350885 0.126893 -0.280122 10.2759 -0.0575243 -0.0117179 0.176834 0.2 0 pose: 0.39119836 -2.27013 -3.86317 0 0.00849752 -0.00114161 0.999785 0.0188716 uwb: 0.50140399 1248.25 1227.88 +imu_odom_: 1691062881.107458917 0.773327 -0.526724 9.60554 -0.0703074 -0.0447411 0.233293 0.18 0.23 pose: 0.0 -2.27013 -3.86317 0 0.00849752 -0.00114161 0.999785 0.0188716 uwb: 0.0 1248.25 1227.88 +imu_odom_: 1691062881.124434674 0.773327 -0.4956 9.96946 -0.0639159 -0.0436758 0.294013 0.18 0.23 pose: 0.0 -2.27013 -3.86317 0 0.00849752 -0.00114161 0.999785 0.0188716 uwb: 0.0 1248.25 1227.88 +imu_odom_: 1691062881.142438787 0.234632 -0.347159 9.38288 -0.0436758 -0.00106526 0.333428 0.18 0.23 pose: 0.46780304 -2.27493 -3.87194 0 0.00813274 -0.00321003 0.999848 0.0150669 uwb: 0.50054362 1248.75 1228.34 +imu_odom_: 1691062881.155370530 0.548272 -0.146046 9.79947 -0.0617853 -0.00532632 0.368581 0.19 0.29 pose: 0.0 -2.27493 -3.87194 0 0.00813274 -0.00321003 0.999848 0.0150669 uwb: 0.0 1248.75 1228.34 +imu_odom_: 1691062881.171352345 0.59855 -0.390255 9.66539 -0.0660464 -0.00426106 0.400539 0.17 0.32 pose: 0.0 -2.27493 -3.87194 0 0.00813274 -0.00321003 0.999848 0.0150669 uwb: 0.0 1248.75 1228.34 +imu_odom_: 1691062881.189399330 0.641646 -0.258574 9.40442 -0.0713727 0.0319579 0.425041 0.17 0.32 pose: 0.47992982 -2.28369 -3.86713 0 0.00751507 -0.00368988 0.999935 0.00769393 uwb: 0.49886081 1248.2 1229.84 +imu_odom_: 1691062881.206347088 0.610521 -0.229843 9.92875 -0.0532632 0.0234358 0.46339 0.17 0.32 pose: 0.0 -2.28369 -3.86713 0 0.00751507 -0.00368988 0.999935 0.00769393 uwb: 0.0 1248.2 1229.84 +imu_odom_: 1691062881.220475178 0.158017 -0.301669 9.57441 -0.0585895 0.0841559 0.499609 0.19 0.41 pose: 0.43033190 -2.29248 -3.86235 0 0.00961246 -0.00242194 0.999951 -0.000796691 uwb: 0.0 1248.2 1229.84 +imu_odom_: 1691062881.236460492 0.586579 -0.347159 9.42118 -0.052198 0.0106526 0.530502 0.19 0.41 pose: 0.6164598 -2.29248 -3.86235 0 0.00872237 -0.00250532 0.999956 -0.00221591 uwb: 0.0 1248.2 1229.84 +imu_odom_: 1691062881.251578441 0.213084 -0.335188 9.87129 -0.0415453 0.0106526 0.549676 0.18 0.5 pose: 0.0 -2.29248 -3.86235 0 0.00872237 -0.00250532 0.999956 -0.00221591 uwb: 0.49968617 1247.82 1231.5 +imu_odom_: 1691062881.268515700 0.47884 -0.823605 10.1562 -0.052198 0.0117179 0.563525 0.18 0.5 pose: 0.39066755 -2.30603 -3.86634 0 0.00654653 -0.00415198 0.9999 -0.011845 uwb: 0.0 1247.82 1231.5 +imu_odom_: 1691062881.284462808 0.715866 0.0526724 10.1514 -0.0500674 -0.0340885 0.610397 0.18 0.5 pose: 0.0 -2.30603 -3.86634 0 0.00654653 -0.00415198 0.9999 -0.011845 uwb: 0.0 1247.82 1231.5 +imu_odom_: 1691062881.302330429 1.09894 -0.213084 9.96467 -0.0490022 -0.00426106 0.627441 0.18 0.55 pose: 0.0 -2.30603 -3.86634 0 0.00654653 -0.00415198 0.9999 -0.011845 uwb: 0.50005657 1249.01 1231.8 +imu_odom_: 1691062881.319378514 0.842759 -0.40462 9.73722 -0.0500674 0.00532632 0.627441 0.18 0.55 pose: 0.22943199 -2.30604 -3.86636 0 0.00657155 -0.00529162 0.999802 -0.0180022 uwb: 0.0 1249.01 1231.8 +imu_odom_: 1691062881.335406701 1.17316 -0.521936 9.96467 -0.0447411 0.00639159 0.611462 0.18 0.55 pose: 0.0 -2.30604 -3.86636 0 0.00657155 -0.00529162 0.999802 -0.0180022 uwb: 0.0 1249.01 1231.8 +imu_odom_: 1691062881.353295613 1.18034 -0.0622492 10.4052 -0.0607201 -0.0149137 0.612527 0.2 0.64 pose: 0.34907248 -2.31482 -3.86157 0 0.00948491 -0.00428184 0.999549 -0.0281568 uwb: 0.50128441 1250.04 1231.95 +imu_odom_: 1691062881.369398462 1.86029 -0.304064 10.0652 -0.0511327 -0.0671117 0.621049 0.15 0.44 pose: 0.33932848 -2.31966 -3.87031 0 0.0125017 -0.00476723 0.999191 -0.0379258 uwb: 0.0 1250.04 1231.95 +imu_odom_: 1691062881.386393467 1.94409 -0.280122 9.28232 -0.056459 -0.0351537 0.518784 0.15 0.44 pose: 0.0 -2.31966 -3.87031 0 0.0125017 -0.00476723 0.999191 -0.0379258 uwb: 0.0 1250.04 1231.95 +imu_odom_: 1691062881.403355516 1.64482 0.122104 9.85932 -0.0372843 -0.0127832 0.456998 0.12 0.29 pose: 0.0 -2.31966 -3.87031 0 0.0125017 -0.00476723 0.999191 -0.0379258 uwb: 0.49917870 1249.2 1233.61 +imu_odom_: 1691062881.420312899 0.957681 -0.316035 9.65103 -0.0681769 0.0394148 0.410127 0.12 0.29 pose: 0.43031731 -2.32846 -3.86555 0 0.0174528 -0.00423255 0.998613 -0.0494863 uwb: 0.0 1249.2 1233.61 +imu_odom_: 1691062881.438368925 0.931344 -0.265756 10.0485 -0.0607201 0.0181095 0.320645 0.12 0.29 pose: 0.0 -2.32846 -3.86555 0 0.0174528 -0.00423255 0.998613 -0.0494863 uwb: 0.50097526 1248.81 1234.88 +imu_odom_: 1691062881.463420168 0.823605 -0.282516 10.2472 -0.0479369 0.00532632 0.273773 0.09 0.29 pose: 0.8013948 -2.32846 -3.86555 0 0.0181797 -0.00380481 0.998518 -0.0511476 uwb: 0.0 1248.81 1234.88 +imu_odom_: 1691062881.480363551 0.792481 -0.268151 10.3166 -0.056459 0.0106526 0.279099 0.09 0.29 pose: 0.0 -2.32846 -3.86555 0 0.0181797 -0.00380481 0.998518 -0.0511476 uwb: 0.0 1248.81 1234.88 +imu_odom_: 1691062881.497291769 0.21069 -0.344765 9.65582 -0.0585895 0.0468716 0.204531 0.1 0.2 pose: 0.51970792 -2.32846 -3.86555 0 0.0211821 -0.00245333 0.997997 -0.0595654 uwb: 0.49779920 1248.93 1235.4 +imu_odom_: 1691062881.512355762 -0.237026 0.296881 10.0509 -0.0319579 0.0639159 0.108657 0.11 0.26 pose: 0.0 -2.32846 -3.86555 0 0.0211821 -0.00245333 0.997997 -0.0595654 uwb: 0.0 1248.93 1235.4 +imu_odom_: 1691062881.529286313 -0.720655 -0.158017 10.3094 -0.0692422 0.0223706 0.194943 0.11 0.23 pose: 0.0 -2.32846 -3.86555 0 0.0211821 -0.00245333 0.997997 -0.0595654 uwb: 0.0 1248.93 1235.4 +imu_odom_: 1691062881.546290359 -0.0454898 -0.711078 10.2568 -0.0703074 -0.0415453 0.262055 0.11 0.23 pose: 0.73991794 -2.34199 -3.86962 0 0.0133057 -0.00145427 0.997722 -0.0661142 uwb: 0.50046488 1249.74 1234.93 +imu_odom_: 1691062881.563286823 0.675165 -0.610521 10.307 -0.0266316 -0.00745685 0.216249 0.12 0.14 pose: 0.0 -2.34199 -3.86962 0 0.0133057 -0.00145427 0.997722 -0.0661142 uwb: 0.0 1249.74 1234.93 +imu_odom_: 1691062881.580282411 0.849942 0.0430956 9.92157 -0.0543285 -0.0138484 0.251402 0.12 0.14 pose: 0.32925198 -2.34199 -3.86962 0 0.011406 -0.00326204 0.997523 -0.069333 uwb: 0.0 1249.74 1234.93 +imu_odom_: 1691062881.597319706 0.141258 -0.112527 9.9096 -0.0490022 0.0330232 0.24288 0.12 0.14 pose: 0.0 -2.34199 -3.86962 0 0.011406 -0.00326204 0.997523 -0.069333 uwb: 0.50101609 1250.3 1235.46 +imu_odom_: 1691062881.615372816 0.3304 -0.229843 9.76116 -0.0500674 0.00532632 0.199204 0.13 0.17 pose: 0.44024507 -2.35341 -3.86966 0 0.0105285 -0.00217513 0.997221 -0.0737271 uwb: 0.0 1250.3 1235.46 +imu_odom_: 1691062881.632427026 0.339977 -0.320823 9.81144 -0.056459 0.0255663 0.203466 0.13 0.17 pose: 0.0 -2.35341 -3.86966 0 0.0105285 -0.00217513 0.997221 -0.0737271 uwb: 0.0 1250.3 1235.46 +imu_odom_: 1691062881.646366710 0.641646 -0.270545 10.1442 -0.0532632 0.0255663 0.20027 0.13 0.17 pose: 0.0 -2.35341 -3.86966 0 0.0105285 -0.00217513 0.997221 -0.0737271 uwb: 0.49851666 1249.39 1237.49 +imu_odom_: 1691062881.664427695 0.311246 -0.181959 9.80904 -0.0500674 0.02024 0.20027 0.14 0.14 pose: 0.8118650 -2.35554 -3.87361 0 0.00967623 -0.00210012 0.997181 -0.0743751 uwb: 0.0 1249.39 1237.49 +imu_odom_: 1691062881.681426492 0.486023 -0.122104 10.1921 -0.056459 0.0468716 0.204531 0.15 0.17 pose: 0.0 -2.35554 -3.87361 0 0.00967623 -0.00210012 0.997181 -0.0743751 uwb: 0.0 1249.39 1237.49 +imu_odom_: 1691062881.698436663 0.0574608 -0.308852 9.48583 -0.0617853 0.0543285 0.199204 0.15 0.17 pose: 0.67005620 -2.36434 -3.86886 0 0.00550783 -0.00113741 0.996796 -0.0797825 uwb: 0.50046487 1248.08 1239.56 +imu_odom_: 1691062881.715440709 0.347159 -0.0287304 10.0197 -0.0500674 0.0117179 0.176834 0.15 0.11 pose: 0.0 -2.36434 -3.86886 0 0.00550783 -0.00113741 0.996796 -0.0797825 uwb: 0.0 1248.08 1239.56 +imu_odom_: 1691062881.732305347 0.37589 -0.21069 9.81144 -0.0841559 -0.0500674 0.204531 0.15 0.11 pose: 0.0 -2.36434 -3.86886 0 0.00550783 -0.00113741 0.996796 -0.0797825 uwb: 0.0 1248.08 1239.56 +imu_odom_: 1691062881.749328351 0.97444 -0.11971 9.78031 -0.0575243 -0.0298274 0.206661 0.15 0.11 pose: 0.32998694 -2.36909 -3.87766 0 0.00242349 -0.0002523740.996601 -0.0823498 uwb: 0.49997199 1247.57 1241.17 +imu_odom_: 1691062881.767431916 1.36948 -0.181959 9.91439 -0.0671117 -0.0213053 0.266316 0.14 0.11 pose: 0.33878017 -2.36909 -3.87766 0 0.00131042 0.000296922 0.99638 -0.0850007 uwb: 0.0 1247.57 1241.17 +imu_odom_: 1691062881.784437713 1.74537 -0.4956 10.2065 -0.0543285 -0.0308927 0.245011 0.14 0.11 pose: 0.0 -2.36909 -3.87766 0 0.00131042 0.000296922 0.99638 -0.0850007 uwb: 0.0 1247.57 1241.17 +imu_odom_: 1691062881.801301476 1.56341 -0.0215478 9.61033 -0.0319579 0.0255663 0.157659 0.14 0.08 pose: 0.45117026 -2.37791 -3.87294 0 0.00628497 0.000442857 0.995956 -0.0896186 uwb: 0.49928370 1246.21 1243.64 +imu_odom_: 1691062881.818494220 1.39343 -0.0981623 9.89284 -0.0426106 0.0490022 0.137419 0.14 0.08 pose: 0.0 -2.37791 -3.87294 0 0.00628497 0.000442857 0.995956 -0.0896186 uwb: 0.0 1246.21 1243.64 +imu_odom_: 1691062881.834424996 0.6608 -0.399832 9.93115 -0.056459 0.0585895 0.0980043 0.14 0.08 pose: 0.0 -2.37791 -3.87294 0 0.00628497 0.000442857 0.995956 -0.0896186 uwb: 0.0 1246.21 1243.64 +imu_odom_: 1691062881.852562392 0.811634 -0.385466 10.1442 -0.0628506 -0.0138484 0.0532632 0.09 0.08 pose: 0.8008115 -2.37791 -3.87294 0 0.00692932 0.000740551 0.995909 -0.0900886 uwb: 0.50199895 1244.5 1245.78 +imu_odom_: 1691062881.869551565 0.895431 -0.071826 9.74919 -0.0575243 -0.0223706 0.0490022 0.09 0.08 pose: 0.0 -2.37791 -3.87294 0 0.00692932 0.000740551 0.995909 -0.0900886 uwb: 0.0 1244.5 1245.78 +imu_odom_: 1691062881.884603601 0.826 -0.172383 9.95988 -0.0543285 0.0170442 0.076699 0.09 0.08 pose: 0.0 -2.37791 -3.87294 0 0.00692932 0.000740551 0.995909 -0.0900886 uwb: 0.0 1244.5 1245.78 +imu_odom_: 1691062881.901521902 0.706289 -0.203507 9.94312 -0.0543285 -0.00426106 0.072438 0.06 0.08 pose: 0.50002448 -2.38261 -3.88176 0 0.00984147 -0.0003813930.995712 -0.0919793 uwb: 0.49934494 1243.21 1247.92 +imu_odom_: 1691062881.918408414 0.45011 -0.258574 9.79947 -0.0500674 -0.00958738 0.0841559 0.06 0.08 pose: 0.0 -2.38261 -3.88176 0 0.00984147 -0.0003813930.995712 -0.0919793 uwb: 0.0 1243.21 1247.92 +imu_odom_: 1691062881.935369004 0.718261 -0.167594 9.82102 -0.0585895 0.00319579 0.113983 0.06 0.08 pose: 0.65966764 -2.39145 -3.87707 0 0.0142446 0.00151769 0.995581 -0.0928054 uwb: 0.0 1243.21 1247.92 +imu_odom_: 1691062881.960283755 0.711078 -0.385466 9.84735 -0.0553937 0 0.11931 0.05 0.05 pose: 0.0 -2.39145 -3.87707 0 0.0142446 0.00151769 0.995581 -0.0928054 uwb: 0.49961618 1243.24 1248.81 +imu_odom_: 1691062881.985456031 -0.131681 -0.124498 9.91439 -0.0490022 0.0660464 0.111853 0.05 0.05 pose: 0.34891500 -2.39145 -3.87707 0 0.0145978 0.00163992 0.995467 -0.0939695 uwb: 0.0 1243.24 1248.81 +imu_odom_: 1691062881.998408482 -0.933739 -0.265756 9.86172 -0.0596548 0.0681769 0.106526 0.07 0.08 pose: 0.42149491 -2.39145 -3.87707 0 0.0115249 7.09816e-05 0.995355 -0.0955756 uwb: 0.50115317 1242.38 1250.11 +imu_odom_: 1691062882.23334898 -0.881066 -0.253785 9.80186 -0.0500674 -0.0628506 0.103331 0.07 0.08 pose: 0.5860991 -2.39145 -3.87707 0 0.0107328 -3.16396e-050.995345 -0.0957721 uwb: 0.0 1242.38 1250.11 +imu_odom_: 1691062882.47405031 0.203507 0.0167594 9.71328 -0.0543285 -0.04048 0.100135 0.11 0.08 pose: 0.32017876 -2.39144 -3.87705 0 0.00801595 -0.0002972690.995271 -0.0968065 uwb: 0.49793919 1241.59 1251.49 +imu_odom_: 1691062882.70309441 0.304064 -0.378284 9.72764 -0.072438 0.0426106 0.0820254 0.11 0.08 pose: 0.0 -2.39144 -3.87705 0 0.00801595 -0.0002972690.995271 -0.0968065 uwb: 0.0 1241.59 1251.49 +imu_odom_: 1691062882.96324877 -0.21069 -0.203507 9.67018 -0.0479369 -0.0117179 0.0873517 0.11 0.02 pose: 0.46974543 -2.40501 -3.88108 0 0.00416921 -0.0008563390.995176 -0.0980166 uwb: 0.50059321 1241.99 1251.89 +imu_odom_: 1691062882.113316966 0.100556 0 10.1299 -0.0532632 -0.036219 0.0735032 0.11 0.02 pose: 0.0 -2.40501 -3.88108 0 0.00416921 -0.0008563390.995176 -0.0980166 uwb: 0.0 1241.99 1251.89 +imu_odom_: 1691062882.137361726 0.292093 -0.167594 9.34936 -0.0543285 0.0255663 0.0756338 0.12 0.02 pose: 0.43007525 -2.40501 -3.88108 0 0.000443776 5.45698e-06 0.995095 -0.0989262 uwb: 0.0 1241.99 1251.89 +imu_odom_: 1691062882.162391387 0.296881 -0.201113 9.87608 -0.0383495 0.00319579 0.0756338 0.12 0.02 pose: 0.0 -2.40501 -3.88108 0 0.000443776 5.45698e-06 0.995095 -0.0989262 uwb: 0.49997492 1242.3 1252.22 +imu_odom_: 1691062882.187376425 0.469264 -0.0790087 10.5465 -0.0553937 -0.0426106 0.0873517 0.13 0.05 pose: 0.49074421 -2.41381 -3.87634 0 -0.00481429 0.000472272 0.994996 -0.0998021 uwb: 0.49915829 1242.65 1252.59 +imu_odom_: 1691062882.211315316 -0.0430956 -0.287304 9.78989 -0.056459 0.0127832 0.0660464 0.14 0.02 pose: 0.0 -2.41381 -3.87634 0 -0.00481429 0.000472272 0.994996 -0.0998021 uwb: 0.0 1242.65 1252.59 +imu_odom_: 1691062882.229369884 0.196325 -0.177171 10.2448 -0.0447411 0.00213053 0.0639159 0.14 0.02 pose: 0.33010943 -2.41854 -3.88515 0 -0.00325581 0.0018407 0.994929 -0.100508 uwb: 0.0 1242.65 1252.59 +imu_odom_: 1691062882.246276229 0.138864 -0.102951 9.77792 -0.0543285 0.00639159 0.0798948 0.14 0.02 pose: 0.0 -2.41854 -3.88515 0 -0.00325581 0.0018407 0.994929 -0.100508 uwb: 0.50107151 1242.92 1253.31 +imu_odom_: 1691062882.269382460 0.203507 -0.25618 10.1035 -0.0330232 -0.0809601 0.0628506 0.14 0 pose: 0.50873899 -2.42736 -3.88044 0 -0.00837891 0.00184292 0.994822 -0.101268 uwb: 0.0 1242.92 1253.31 +imu_odom_: 1691062882.285319944 0.356736 0.0383072 9.99579 -0.0266316 -0.0426106 0.0543285 0.14 0 pose: 0.7135207 -2.42736 -3.88044 0 -0.00830356 0.00126258 0.994816 -0.101343 uwb: 0.0 1242.92 1253.31 +imu_odom_: 1691062882.303444509 0.349553 0.023942 10.1179 -0.0585895 -0.04048 0.0980043 0.2 0.02 pose: 0.0 -2.42736 -3.88044 0 -0.00830356 0.00126258 0.994816 -0.101343 uwb: 0.49961036 1242.94 1253.78 +imu_odom_: 1691062882.319315205 0.768539 -0.488417 9.40682 -0.0479369 -0.00426106 0.0671117 0.15 0 pose: 0.50033073 -2.43206 -3.88926 0 -0.00638819 0.0034445 0.99474 -0.102178 uwb: 0.0 1242.94 1253.78 +imu_odom_: 1691062882.337313194 0.562637 -0.246603 9.89524 -0.0436758 -0.0213053 0.0575243 0.21 0.02 pose: 0.0 -2.43206 -3.88926 0 -0.00638819 0.0034445 0.99474 -0.102178 uwb: 0.0 1242.94 1253.78 +imu_odom_: 1691062882.354252202 0.562637 0.0143652 10.3382 -0.0458064 0.02024 0.0735032 0.21 0.02 pose: 0.0 -2.43206 -3.88926 0 -0.00638819 0.0034445 0.99474 -0.102178 uwb: 0.49957535 1242.69 1254.84 +imu_odom_: 1691062882.368262174 0.440533 -0.28491 10.5489 -0.052198 0 0.0745685 0.21 0.02 pose: 0.23904768 -2.44088 -3.88456 0 -0.00418233 0.00255174 0.994724 -0.102469 uwb: 0.0 1242.69 1254.84 +imu_odom_: 1691062882.385494583 0.277727 -0.162806 9.97664 -0.0575243 0.015979 0.0553937 0.15 0 pose: 0.0 -2.44088 -3.88456 0 -0.00418233 0.00255174 0.994724 -0.102469 uwb: 0.0 1242.69 1254.84 +imu_odom_: 1691062882.401249203 0.380678 -0.19393 9.47625 -0.0735032 -0.00106526 0.0830906 0.15 0 pose: 0.33040108 -2.44088 -3.88456 0 -0.00182936 0.00310284 0.994679 -0.102959 uwb: 0.49980575 1243.17 1255.35 +imu_odom_: 1691062882.418386242 0.691924 -0.282516 9.98143 -0.0830906 -0.0351537 0.0809601 0.16 0.02 pose: 0.15998731 -2.44564 -3.89335 0 -0.00231663 0.00235358 0.99466 -0.103158 uwb: 0.0 1243.17 1255.35 +imu_odom_: 1691062882.434322267 0.304064 -0.299275 10.0868 -0.0596548 0.0117179 0.0479369 0.16 0.02 pose: 0.0 -2.44564 -3.89335 0 -0.00231663 0.00235358 0.99466 -0.103158 uwb: 0.0 1243.17 1255.35 +imu_odom_: 1691062882.451229195 0.316035 -0.167594 9.89524 -0.0468716 0.00639159 0.056459 0.16 0.02 pose: 0.0 -2.44564 -3.89335 0 -0.00231663 0.00235358 0.99466 -0.103158 uwb: 0.49943537 1243.05 1256.11 +imu_odom_: 1691062882.467383958 -0.110133 -0.225055 10.0006 -0.0500674 -0.00426106 0.0703074 0.16 0 pose: 0.32870368 -2.45444 -3.8886 0 -0.00106925 0.00101554 0.994604 -0.103735 uwb: 0.0 1243.05 1256.11 +imu_odom_: 1691062882.484291177 0.691924 -0.433351 10.1634 -0.056459 -0.0319579 0.0490022 0.22 0 pose: 0.0 -2.45444 -3.8886 0 -0.00106925 0.00101554 0.994604 -0.103735 uwb: 0.0 1243.05 1256.11 +imu_odom_: 1691062882.499293049 0.972046 -0.0646434 9.67257 -0.0383495 0.0117179 0.04048 0.22 0 pose: 0.0 -2.45444 -3.8886 0 -0.00106925 0.00101554 0.994604 -0.103735 uwb: 0.50057279 1243.12 1256.63 +imu_odom_: 1691062882.517239416 0.11971 -0.0454898 10.0149 -0.052198 0.0234358 0.0841559 0.21 0.02 pose: 0.66051635 -2.45917 -3.89741 0 -0.0034122 -6.51507e-050.994528 -0.104413 uwb: 0.0 1243.12 1256.63 +imu_odom_: 1691062882.533290935 -0.0263362 -0.162806 9.6606 -0.0628506 -0.015979 0.0681769 0.21 0.02 pose: 0.0 -2.45917 -3.89741 0 -0.0034122 -6.51507e-050.994528 -0.104413 uwb: 0.0 1243.12 1256.63 +imu_odom_: 1691062882.550219445 0.488417 -0.059855 10.1131 -0.0383495 -0.0330232 0.052198 0.21 0.02 pose: 0.31937090 -2.46798 -3.89267 0 -0.00202544 0.000527782 0.994508 -0.104638 uwb: 0.50049113 1243.41 1257.39 +imu_odom_: 1691062882.566430496 0.562637 -0.0861913 10.0485 -0.0692422 -0.056459 0.100135 0.15 0 pose: 0.42972236 -2.47515 -3.89483 0 -0.00308614 0.00217848 0.994444 -0.105197 uwb: 0.0 1243.41 1257.39 +imu_odom_: 1691062882.583375630 1.42455 -0.368707 10.2185 -0.0617853 -0.0298274 0.134223 0.15 0 pose: 0.8000531 -2.48152 -3.89676 0 -0.00215312 0.0024986 0.99442 -0.105441 uwb: 0.0 1243.41 1257.39 +imu_odom_: 1691062882.599249534 2.28407 -0.608127 10.5967 -0.0479369 -0.0873517 0.1012 0.15 0 pose: 0.0 -2.48152 -3.89676 0 -0.00215312 0.0024986 0.99442 -0.105441 uwb: 0.50056405 1243.11 1258.88 +imu_odom_: 1691062882.617307019 1.94649 0.158017 9.35654 -0.056459 -0.00958738 0.0447411 0.17 -0.02 pose: 0.41029558 -2.48152 -3.89676 0 0.00294181 0.00255767 0.994254 -0.10698 uwb: 0.0 1243.11 1258.88 +imu_odom_: 1691062882.633369913 1.82438 0.131681 10.2615 -0.0671117 0.0447411 0.0575243 0.12 -0.02 pose: 0.0 -2.48152 -3.89676 0 0.00294181 0.00255767 0.994254 -0.10698 uwb: 0.0 1243.11 1258.88 +imu_odom_: 1691062882.651372276 0.770933 -0.181959 9.62948 -0.0660464 0.0649811 0.0191748 0.12 -0.02 pose: 0.0 -2.48152 -3.89676 0 0.00294181 0.00255767 0.994254 -0.10698 uwb: 0.49994283 1243.75 1259.11 +imu_odom_: 1691062882.668233123 0.68953 -0.241814 10.489 -0.0479369 0.00319579 -0.0149137 0.09 0 pose: 0.26012228 -2.48152 -3.89676 0 0.00526726 0.00332037 0.994229 -0.1071 uwb: 0.0 1243.75 1259.11 +imu_odom_: 1691062882.681226113 0.54109 -0.220267 9.40921 -0.0607201 -0.00958738 -0.0287621 0.09 0 pose: 0.0 -2.48152 -3.89676 0 0.00526726 0.00332037 0.994229 -0.1071 uwb: 0.0 1243.75 1259.11 +imu_odom_: 1691062882.698227243 0.656011 0.00957681 10.0126 -0.0511327 0.02024 -0.0149137 0.09 0 pose: 0.32999569 -2.49035 -3.89207 0 0.00762924 0.00311739 0.994245 -0.106815 uwb: 0.50045322 1245.01 1258.63 +imu_odom_: 1691062882.712231382 0.670376 -0.268151 10.2256 -0.0671117 -0.0255663 0.02024 0.08 0 pose: 0.39965912 -2.49299 -3.89703 0 0.00826919 0.00316839 0.994364 -0.105645 uwb: 0.0 1245.01 1258.63 +imu_odom_: 1691062882.727222463 0.744597 -0.416591 9.56484 -0.0543285 -0.0106526 0.0266316 0.08 0 pose: 0.7006590 -2.49506 -3.9009 0 0.00888055 0.00268047 0.994367 -0.105582 uwb: 0.0 1245.01 1258.63 +imu_odom_: 1691062882.745260407 0.653617 -0.304064 9.90002 -0.04048 0.00106526 0.036219 0.08 0 pose: 0.0 -2.49506 -3.9009 0 0.00888055 0.00268047 0.994367 -0.105582 uwb: 0.49823668 1244.07 1259.91 +imu_odom_: 1691062882.769231672 0.574608 -0.0287304 9.80186 -0.0575243 0.00852212 0.04048 0.06 0 pose: 0.40026574 -2.49506 -3.9009 0 0.0114258 -0.0003196090.994362 -0.105422 uwb: 0.0 1244.07 1259.91 +imu_odom_: 1691062882.787276616 0.371101 -0.301669 9.93354 -0.0628506 0.0223706 0.0213053 0.07 -0.02 pose: 0.0 -2.49506 -3.9009 0 0.0114258 -0.0003196090.994362 -0.105422 uwb: 0.0 1244.07 1259.91 +imu_odom_: 1691062882.803223724 -0.490811 -0.181959 9.60793 -0.0490022 0.0532632 -0.0649811 0.07 -0.02 pose: 0.32027502 -2.49506 -3.9009 0 0.00970283 0.00148032 0.994388 -0.105338 uwb: 0.50124650 1244.72 1260.14 +imu_odom_: 1691062882.820253436 -1.12049 0.0047884 9.46188 -0.0340885 0.00852212 -0.167247 0.11 -0.2 pose: 0.0 -2.49506 -3.9009 0 0.00970283 0.00148032 0.994388 -0.105338 uwb: 0.0 1244.72 1260.14 +imu_odom_: 1691062882.838330462 -0.756568 0.260968 10.3214 -0.0788296 -0.04048 -0.22051 0.11 -0.2 pose: 0.0 -2.49506 -3.9009 0 0.00970283 0.00148032 0.994388 -0.105338 uwb: 0.49940328 1246.37 1259.61 +imu_odom_: 1691062882.851204167 0.196325 -0.232238 9.95509 -0.076699 -0.0617853 -0.274838 0.11 -0.2 pose: 0.34013926 -2.49506 -3.9009 0 0.00577796 0.000940902 0.994603 -0.103593 uwb: 0.0 1246.37 1259.61 +imu_odom_: 1691062882.867297392 0.366313 -0.203507 9.7037 -0.0649811 0.0351537 -0.311057 0.1 -0.32 pose: 0.0 -2.49506 -3.9009 0 0.00577796 0.000940902 0.994603 -0.103593 uwb: 0.0 1246.37 1259.61 +imu_odom_: 1691062882.884360935 0.11971 -0.351948 9.97185 -0.0639159 -0.00319579 -0.308927 0.1 -0.32 pose: 0.0 -2.49506 -3.9009 0 0.00577796 0.000940902 0.994603 -0.103593 uwb: 0.0 1246.37 1259.61 +imu_odom_: 1691062882.900390872 0.1652 -0.246603 9.48583 -0.0490022 -0.0138484 -0.347276 0.1 -0.32 pose: 0.48124518 -2.5039 -3.89624 0 0.001556 0.000796126 0.995295 -0.0968792 uwb: 0.49984367 1246.68 1259.94 +imu_odom_: 1691062882.918285034 0.0885855 -0.0981623 10.1538 -0.0394148 -0.0245011 -0.383495 0.16 -0.55 pose: 0.40964519 -2.50859 -3.90507 0 -0.00232304 -0.0006177190.995988 -0.0894569 uwb: 0.0 1246.68 1259.94 +imu_odom_: 1691062882.933351069 0.169988 0.0407014 10.1586 -0.0660464 -0.0308927 -0.383495 0.12 -0.44 pose: 0.0 -2.50859 -3.90507 0 -0.00232304 -0.0006177190.995988 -0.0894569 uwb: 0.0 1246.68 1259.94 +imu_odom_: 1691062882.951361598 0.390255 -0.153229 9.84496 -0.0447411 0.0287621 -0.419714 0.12 -0.44 pose: 0.25979564 -2.50859 -3.90507 0 -0.00421945 0.000744749 0.996458 -0.0839862 uwb: 0.49939745 1246.68 1260.85 +imu_odom_: 1691062882.968354854 0.138864 -0.244209 10.0892 -0.052198 0.0170442 -0.450607 0.13 -0.53 pose: 0.0 -2.50859 -3.90507 0 -0.00421945 0.000744749 0.996458 -0.0839862 uwb: 0.0 1246.68 1260.85 +imu_odom_: 1691062882.982360743 0.253785 0.0837971 9.27753 -0.0639159 0.00745685 -0.462325 0.13 -0.53 pose: 0.0 -2.50859 -3.90507 0 -0.00421945 0.000744749 0.996458 -0.0839862 uwb: 0.0 1246.68 1260.85 +imu_odom_: 1691062882.998349266 0.138864 0.148441 10.1969 -0.0468716 0.0234358 -0.474043 0.13 -0.53 pose: 0.32994027 -2.51744 -3.90041 0 -0.00406143 0.00178499 0.997064 -0.0764419 uwb: 0.50109776 1245.27 1263.01 +imu_odom_: 1691062883.16234678 0.61531 -0.21069 9.87129 -0.0628506 -0.00639159 -0.525175 0.19 -0.73 pose: 0.38984803 -2.51978 -3.9049 0 -0.00654716 0.00405029 0.997747 -0.0666509 uwb: 0.0 1245.27 1263.01 +imu_odom_: 1691062883.33346927 0.31364 0.0981623 9.83777 -0.0639159 -0.0106526 -0.556068 0.19 -0.73 pose: 0.7890288 -2.52205 -3.90929 0 -0.00576812 0.0038671 0.997898 -0.0644304 uwb: 0.0 1245.27 1263.01 +imu_odom_: 1691062883.49347116 1.07739 0.272939 10.5967 -0.052198 -0.0660464 -0.556068 0.19 -0.73 pose: 0.0 -2.52205 -3.90929 0 -0.00576812 0.0038671 0.997898 -0.0644304 uwb: 0.49939454 1245.88 1263.21 +imu_odom_: 1691062883.67401976 1.46765 -0.213084 9.49301 -0.0852212 -0.0798948 -0.50387 0.17 -0.67 pose: 0.43107562 -2.53091 -3.90464 0 -0.00298727 0.00605566 0.998635 -0.0517874 uwb: 0.0 1245.88 1263.21 +imu_odom_: 1691062883.82343769 1.29047 -0.423774 9.19373 -0.0617853 0.0394148 -0.458064 0.11 -0.44 pose: 0.0 -2.53091 -3.90464 0 -0.00298727 0.00605566 0.998635 -0.0517874 uwb: 0.0 1245.88 1263.21 +imu_odom_: 1691062883.99215699 0.806846 -0.519542 9.92397 -0.0490022 0.0149137 -0.407996 0.11 -0.44 pose: 0.0 -2.53091 -3.90464 0 -0.00298727 0.00605566 0.998635 -0.0517874 uwb: 0.49990492 1246.3 1263.66 +imu_odom_: 1691062883.116347197 0.667982 -0.35913 9.51695 -0.0415453 0.00852212 -0.36432 0.1 -0.38 pose: 0.25955357 -2.53091 -3.90464 0 5.88695e-05 0.00545457 0.998975 -0.0449366 uwb: 0.0 1246.3 1263.66 +imu_odom_: 1691062883.133339869 0.866701 -0.186748 9.80665 -0.0468716 -0.0287621 -0.284426 0.1 -0.38 pose: 0.0 -2.53091 -3.90464 0 5.88695e-05 0.00545457 0.998975 -0.0449366 uwb: 0.0 1246.3 1263.66 +imu_odom_: 1691062883.148222457 0.711078 -0.474052 9.56484 -0.0596548 0.00213053 -0.232228 0.1 -0.38 pose: 0.32066290 -2.53091 -3.90464 0 0.00215818 0.00361761 0.999277 -0.037785 uwb: 0.49942954 1245.79 1264.96 +imu_odom_: 1691062883.174341138 0.464475 -0.0574608 9.87129 -0.0351537 0.00639159 -0.248207 0.11 -0.41 pose: 0.40853694 -2.53979 -3.90005 0 0.0054963 0.0018909 0.999496 -0.0312175 uwb: 0.0 1245.79 1264.96 +imu_odom_: 1691062883.189280889 0.280122 -0.0311246 9.76355 -0.0596548 0 -0.238619 0.11 -0.41 pose: 0.0 -2.53979 -3.90005 0 0.0054963 0.0018909 0.999496 -0.0312175 uwb: 0.50196688 1246.36 1265.11 +imu_odom_: 1691062883.206220189 0.0047884 -0.1652 9.64384 -0.0543285 0.0479369 -0.273773 0.08 -0.23 pose: 0.8132941 -2.53979 -3.90005 0 0.00513553 0.00272958 0.999532 -0.0300436 uwb: 0.0 1246.36 1265.11 +imu_odom_: 1691062883.219209096 -0.0263362 -0.272939 10.2903 -0.0426106 0.056459 -0.333428 0.09 -0.17 pose: 0.0 -2.53979 -3.90005 0 0.00513553 0.00272958 0.999532 -0.0300436 uwb: 0.0 1246.36 1265.11 +imu_odom_: 1691062883.236346136 -0.869095 0.251391 9.8689 -0.0426106 0.0330232 -0.259925 0.1 -0.14 pose: 0.0 -2.53979 -3.90005 0 0.00513553 0.00272958 0.999532 -0.0300436 uwb: 0.0 1246.36 1265.11 +imu_odom_: 1691062883.251219391 -0.648829 -0.725443 9.991 -0.0745685 -0.0745685 -0.109722 0.1 -0.14 pose: 0.71032428 -2.54443 -3.90891 0 -0.00178187 0.00482369 0.999805 -0.0190495 uwb: 0.49874708 1245.99 1266.1 +imu_odom_: 1691062883.268408635 0.138864 -0.378284 9.80426 -0.0213053 -0.0948085 -0.136354 0.1 -0.14 pose: 0.0 -2.54443 -3.90891 0 -0.00178187 0.00482369 0.999805 -0.0190495 uwb: 0.0 1245.99 1266.1 +imu_odom_: 1691062883.285464304 0.866701 0.248997 10.2711 -0.036219 -0.0276969 -0.106526 0.1 -0.17 pose: 0.0 -2.54443 -3.90891 0 -0.00178187 0.00482369 0.999805 -0.0190495 uwb: 0.0 1245.99 1266.1 +imu_odom_: 1691062883.302347025 0.490811 -0.155623 9.71806 -0.0692422 -0.00213053 -0.100135 0.1 -0.17 pose: 0.31988129 -2.55328 -3.90425 0 -0.00369181 0.00367475 0.999861 -0.0158603 uwb: 0.50001284 1245.76 1266.79 +imu_odom_: 1691062883.318292092 0.0526724 -0.318429 9.65582 -0.0532632 0.0127832 -0.135289 0.13 -0.14 pose: 0.42971070 -2.55328 -3.90425 0 -0.0006457 0.00390572 0.999912 -0.0126475 uwb: 0.0 1245.76 1266.79 +imu_odom_: 1691062883.335374301 -0.280122 -0.131681 9.44273 -0.0692422 -0.0106526 -0.113983 0.13 -0.14 pose: 0.0 -2.55328 -3.90425 0 -0.0006457 0.00390572 0.999912 -0.0126475 uwb: 0.0 1245.76 1266.79 +imu_odom_: 1691062883.351228665 0.047884 -0.466869 9.84735 -0.0543285 -0.0245011 -0.0948085 0.13 -0.14 pose: 0.0 -2.55328 -3.90425 0 -0.0006457 0.00390572 0.999912 -0.0126475 uwb: 0.49948786 1246.14 1266.73 +imu_odom_: 1691062883.369222571 -0.203507 -0.244209 9.35654 -0.0436758 0.00106526 -0.102265 0.18 -0.2 pose: 0.8011323 -2.55328 -3.90425 0 -0.00142094 0.00353076 0.999921 -0.0119443 uwb: 0.0 1246.14 1266.73 +imu_odom_: 1691062883.386247034 0.433351 0.107739 10.0221 -0.0383495 -0.0372843 -0.0788296 0.13 -0.11 pose: 0.0 -2.55328 -3.90425 0 -0.00142094 0.00353076 0.999921 -0.0119443 uwb: 0.0 1246.14 1266.73 +imu_odom_: 1691062883.401196701 0.117316 -0.308852 9.58878 -0.0830906 0.00852212 -0.0671117 0.13 -0.11 pose: 0.66862714 -2.56681 -3.90839 0 -0.00605892 0.00252257 0.999953 -0.00710752 uwb: 0.49964536 1246.44 1267.06 +imu_odom_: 1691062883.418254411 0.131681 -0.275333 9.96946 -0.052198 -0.0106526 -0.0937433 0.13 -0.11 pose: 0.0 -2.56681 -3.90839 0 -0.00605892 0.00252257 0.999953 -0.00710752 uwb: 0.0 1246.44 1267.06 +imu_odom_: 1691062883.431189655 0.177171 -0.217872 9.54329 -0.056459 0.0245011 -0.0777643 0.13 -0.11 pose: 0.0 -2.56681 -3.90839 0 -0.00605892 0.00252257 0.999953 -0.00710752 uwb: 0.0 1246.44 1267.06 +imu_odom_: 1691062883.448194285 0.318429 -0.136469 10.0485 -0.0639159 -0.0127832 -0.052198 0.13 -0.11 pose: 0.32077082 -2.56681 -3.90839 0 -0.00731515 0.00170703 0.999958 -0.00522823 uwb: 0.50104819 1247.68 1266.53 +imu_odom_: 1691062883.465200082 0.553061 -0.244209 10.0892 -0.0628506 -0.0639159 -0.0532632 0.14 -0.14 pose: 0.0 -2.56681 -3.90376 0 -0.00789408 0.00154824 0.999963 -0.00309215 uwb: 0.0 1247.68 1266.53 +imu_odom_: 1691062883.482188963 1.24259 -0.198719 10.228 -0.052198 -0.0245011 -0.0213053 0.14 -0.14 pose: 0.0 -2.57567 -3.90376 0 -0.00789408 0.00154824 0.999963 -0.00309215 uwb: 0.0 1247.68 1266.53 +imu_odom_: 1691062883.499247840 1.60412 -0.323217 10.3645 -0.0607201 -0.0351537 0.0426106 0.14 -0.14 pose: 0.0 -2.57567 -3.90376 0 -0.00789408 0.00154824 0.999963 -0.00309215 uwb: 0.49938287 1246.47 1268.5 +imu_odom_: 1691062883.516335882 1.83875 -0.263362 9.82341 -0.0703074 -0.0479369 0.036219 0.11 -0.14 pose: 0.7018256 -2.57567 -3.90376 0 -0.00699639 0.00138568 0.999971 -0.00276625 uwb: 0.0 1246.47 1268.5 +imu_odom_: 1691062883.533275475 1.5682 -0.0215478 9.72285 -0.0426106 0.0276969 -0.0490022 0.11 -0.14 pose: 0.0 -2.57567 -3.90376 0 -0.00699639 0.00138568 0.999971 -0.00276625 uwb: 0.0 1246.47 1268.5 +imu_odom_: 1691062883.550219734 0.694318 0.198719 10.0149 -0.056459 0.0468716 -0.052198 0.09 -0.05 pose: 0.51000767 -2.58919 -3.90793 0 -0.00103837 0.000868909 0.999997 -0.00180275 uwb: 0.50080029 1245.96 1269.83 +imu_odom_: 1691062883.565325433 0.512359 -0.311246 10.0652 -0.0735032 0.0106526 -0.0628506 0.09 -0.08 pose: 0.0 -2.58919 -3.90793 0 -0.00103837 0.000868909 0.999997 -0.00180275 uwb: 0.0 1245.96 1269.83 +imu_odom_: 1691062883.582325397 0.677559 -0.311246 9.91678 -0.0585895 -0.02024 -0.0820254 0.07 -0.08 pose: 0.0 -2.58919 -3.90793 0 -0.00103837 0.000868909 0.999997 -0.00180275 uwb: 0.0 1245.96 1269.83 +imu_odom_: 1691062883.598190261 0.864307 -0.203507 9.88326 -0.0660464 0 -0.0543285 0.07 -0.08 pose: 0.66181129 -2.58919 -3.90793 0 0.00329876 0.000676034 0.999994 0.000938186 uwb: 0.49877041 1247.01 1269.09 +imu_odom_: 1691062883.616265829 0.88346 -0.19393 10.0485 -0.0617853 0.0106526 -0.0213053 0.08 -0.05 pose: 0.0 -2.58919 -3.90793 0 0.00329876 0.000676034 0.999994 0.000938186 uwb: 0.0 1247.01 1269.09 +imu_odom_: 1691062883.633322373 0.574608 -0.31364 9.84735 -0.052198 0 -0.015979 0.08 -0.05 pose: 0.0 -2.58919 -3.90793 0 0.00329876 0.000676034 0.999994 0.000938186 uwb: 0.0 1247.01 1269.09 +imu_odom_: 1691062883.649373892 0.679953 -0.146046 9.9527 -0.0511327 -0.00426106 -0.0276969 0.08 -0.05 pose: 0.33876560 -2.58919 -3.90793 0 0.00655779 0.000159807 0.999975 0.0025313 uwb: 0.50053488 1246.91 1269.92 +imu_odom_: 1691062883.667253471 0.718261 -0.0909797 9.91918 -0.0575243 -0.0149137 -0.0170442 0.06 -0.02 pose: 0.33973679 -2.59803 -3.90325 0 0.00840274 -0.00100667 0.999958 0.00353381 uwb: 0.0 1246.91 1269.92 +imu_odom_: 1691062883.692397459 0.627281 -0.215478 10.0772 -0.0511327 -0.0149137 -0.0351537 0.06 -0.02 pose: 0.0 -2.59803 -3.90325 0 0.00840274 -0.00100667 0.999958 0.00353381 uwb: 0.49955787 1244.64 1272.65 +imu_odom_: 1691062883.718182492 -0.0023942 -0.275333 9.65342 -0.0575243 0.0916127 -0.0308927 0.04 -0.02 pose: 0.35100322 -2.59803 -3.90325 0 0.0110699 0.000196916 0.999928 0.00465947 uwb: 0.0 1244.64 1272.65 +imu_odom_: 1691062883.743166364 -1.54187 -0.328006 9.87848 -0.0415453 0.0170442 0.0181095 0.08 0 pose: 0.0 -2.59803 -3.90325 0 0.0110699 0.000196916 0.999928 0.00465947 uwb: 0.50146524 1244.58 1273.55 +imu_odom_: 1691062883.769241589 -0.0790087 -0.100556 9.84496 -0.0436758 -0.0830906 0.00532632 0.08 0 pose: 0.42837494 -2.59803 -3.90325 0 0.0084379 -0.00123699 0.999944 0.00618725 uwb: 0.0 1244.58 1273.55 +imu_odom_: 1691062883.794381493 0.653617 -0.3304 9.4978 -0.0585895 -0.015979 0.00745685 0.1 -0.05 pose: 0.8113692 -2.59803 -3.90325 0 0.007541 -0.00120926 0.999951 0.00627278 uwb: 0.49844085 1244.9 1273.9 +imu_odom_: 1691062883.820188983 0.0861913 -0.246603 9.88566 -0.04048 0.0234358 -0.00426106 0.1 -0.05 pose: 0.0 -2.59803 -3.90325 0 0.007541 -0.00120926 0.999951 0.00627278 uwb: 0.0 1244.9 1273.9 +imu_odom_: 1691062883.836307874 -0.112527 -0.148441 9.52892 -0.0543285 -0.0255663 0.0127832 0.12 -0.02 pose: 0.50901023 -2.60269 -3.91209 0 0.00488475 -0.0008469110.999963 0.00702195 uwb: 0.0 1244.9 1273.9 +imu_odom_: 1691062883.861174503 0.457293 -0.241814 10.2927 -0.0415453 0 -0.0117179 0.12 -0.02 pose: 0.0 -2.60269 -3.91209 0 0.00488475 -0.0008469110.999963 0.00702195 uwb: 0.49973285 1244.65 1274.59 +imu_odom_: 1691062883.884192364 -0.191536 -0.229843 9.52653 -0.0383495 0.0191748 0.0255663 0.12 -0.02 pose: 0.50146233 -2.61153 -3.90742 0 0.00286662 -0.00144689 0.999963 0.00795049 uwb: 0.0 1244.65 1274.59 +imu_odom_: 1691062883.900322629 0 -0.296881 10.1418 -0.0330232 -0.00213053 -0.00213053 0.12 -0.02 pose: 0.0 -2.61153 -3.90742 0 0.00286662 -0.00144689 0.999963 0.00795049 uwb: 0.50149441 1246.11 1274.29 +imu_odom_: 1691062883.926220823 -0.0430956 -0.349553 9.44513 -0.0617853 -0.0245011 0.0223706 0.17 -0.05 pose: 0.40921356 -2.61153 -3.90742 0 0.00370766 -0.00133201 0.999954 0.00875822 uwb: 0.0 1246.11 1274.29 +imu_odom_: 1691062883.949278932 0.713472 -0.134075 10.0006 -0.0447411 -0.00426106 0.00213053 0.17 -0.05 pose: 0.0 -2.61153 -3.90742 0 0.00370766 -0.00133201 0.999954 0.00875822 uwb: 0.49856334 1246.85 1274.14 +imu_odom_: 1691062883.973172618 -0.0502782 -0.251391 10.003 -0.0511327 0.00319579 0.015979 0.14 -0.02 pose: 0.39928873 -2.62035 -3.90271 0 -0.000375272-0.00138533 0.999956 0.00926796 uwb: 0.0 1246.85 1274.14 +imu_odom_: 1691062883.990158583 -0.0047884 -0.213084 9.58638 -0.0585895 -0.052198 0.0191748 0.14 -0.02 pose: 0.0 -2.62035 -3.90271 0 -0.000375272-0.00138533 0.999956 0.00926796 uwb: 0.49933329 1247.89 1273.86 +imu_odom_: 1691062884.16314594 0.466869 -0.153229 9.30387 -0.0575243 -0.0479369 0.00852212 0.14 0 pose: 0.49038548 -2.62504 -3.91154 0 -0.00057578 -0.00102939 0.99995 0.00994842 uwb: 0.0 1247.89 1273.86 +imu_odom_: 1691062884.33301726 0.304064 -0.0814029 9.78271 -0.0511327 0.0138484 0.0149137 0.14 0 pose: 0.0 -2.62504 -3.91154 0 -0.00057578 -0.00102939 0.99995 0.00994842 uwb: 0.0 1247.89 1273.86 +imu_odom_: 1691062884.59362660 0.0335188 -0.248997 9.90002 -0.0490022 0.0234358 0.0149137 0.15 -0.02 pose: 0.42134619 -2.6339 -3.90691 0 -0.00252747 -0.0004856850.999942 0.0104475 uwb: 0.50019367 1249.07 1273.24 +imu_odom_: 1691062884.86303793 0.627281 -0.107739 10.1394 -0.0266316 -0.0575243 0.00426106 0.15 -0.02 pose: 0.0 -2.6339 -3.90691 0 -0.00252747 -0.0004856850.999942 0.0104475 uwb: 0.0 1249.07 1273.24 +imu_odom_: 1691062884.112225611 0.59855 -0.409408 10.1227 -0.0500674 -0.0575243 0.0276969 0.15 -0.02 pose: 0.41980045 -2.64276 -3.90226 0 -0.00269771 0.0016967 0.999934 0.0110181 uwb: 0.49900956 1250.43 1272.82 +imu_odom_: 1691062884.138368498 0.129287 0.0837971 9.98622 -0.0340885 -0.0181095 0.00958738 0.21 -0.02 pose: 0.53929221 -2.64742 -3.9111 0 -0.0005314740.0017616 0.999929 0.0117692 uwb: 0.50088779 1249.33 1274.97 +imu_odom_: 1691062884.161156832 0.591368 -0.361524 9.59357 -0.0596548 -0.052198 0.0436758 0.21 -0.02 pose: 0.0 -2.64742 -3.9111 0 -0.0005314740.0017616 0.999929 0.0117692 uwb: 0.0 1249.33 1274.97 +imu_odom_: 1691062884.186188827 -0.0909797 -0.0407014 10.2376 -0.0266316 0.0191748 0.0245011 0.16 -0.02 pose: 0.65880730 -2.65626 -3.90643 0 0.0015422 0.000988777 0.999924 0.0122163 uwb: 0.0 1249.33 1274.97 +imu_odom_: 1691062884.203167209 0.507571 0.0335188 9.59596 -0.0660464 -0.0585895 0.0575243 0.16 -0.02 pose: 0.8155107 -2.65626 -3.90643 0 0.000667693 0.00134582 0.999923 0.0122786 uwb: 0.50060198 1250.24 1275 +imu_odom_: 1691062884.227294798 0.328006 -0.203507 9.7444 -0.0532632 -0.0170442 0.0213053 0.16 0 pose: 0.0 -2.65626 -3.90643 0 0.000667693 0.00134582 0.999923 0.0122786 uwb: 0.0 1250.24 1275 +imu_odom_: 1691062884.253140786 0.227449 -0.28491 10.0317 -0.0703074 0.04048 0.0543285 0.16 0 pose: 0.41945047 -2.6651 -3.90175 0 -0.0004002590.00298143 0.999919 0.0123289 uwb: 0.49868292 1249.82 1275.99 +imu_odom_: 1691062884.277152882 0.742203 -0.342371 9.44273 -0.0617853 0.0287621 0.0223706 0.17 0 pose: 0.41883800 -2.67618 -3.9072 0 -0.00426319 0.000343157 0.999915 0.0122948 uwb: 0.0 1249.82 1275.99 +imu_odom_: 1691062884.295291738 0.0814029 -0.007182619.73482 -0.0500674 -0.0149137 0.0479369 0.17 0 pose: 0.7154749 -2.67862 -3.90591 0 -0.00370211 9.60582e-05 0.999917 0.012357 uwb: 0.50103070 1249.86 1276.52 +imu_odom_: 1691062884.320169742 0.471658 -0.234632 9.47864 -0.0649811 -0.0127832 0.0308927 0.17 0 pose: 0.34996203 -2.6835 -3.90332 0 -0.00369532 0.000702038 0.999916 0.0124244 uwb: 0.0 1249.86 1276.52 +imu_odom_: 1691062884.346153972 0.349553 -0.1652 9.80426 -0.0500674 -0.0276969 0.0436758 0.17 0 pose: 0.0 -2.6835 -3.90332 0 -0.00369532 0.000702038 0.999916 0.0124244 uwb: 0.49956662 1249.06 1278.07 +imu_odom_: 1691062884.369222873 0.124498 -0.172383 9.991 -0.0500674 0.0213053 0.0330232 0.19 0 pose: 0.50862234 -2.68745 -3.90123 0 -0.00220494 0.00227814 0.999917 0.0124768 uwb: 0.0 1249.06 1278.07 +imu_odom_: 1691062884.385160941 0.744597 -0.0646434 9.82341 -0.0468716 0.0117179 0.0234358 0.19 0 pose: 0.0 -2.68745 -3.90123 0 -0.00220494 0.00227814 0.999917 0.0124768 uwb: 0.0 1249.06 1278.07 +imu_odom_: 1691062884.410143938 0.23942 -0.354342 9.39724 -0.0798948 0.00319579 0.0553937 0.24 0 pose: 0.39006969 -2.70097 -3.90538 0 -0.00337865 0.00277499 0.99991 0.0126804 uwb: 0.50069822 1248.2 1279.56 +imu_odom_: 1691062884.433136719 0.112527 -0.0550666 9.46907 -0.0383495 0.0117179 0.0372843 0.24 0 pose: 0.7013590 -2.70097 -3.90538 0 -0.00374069 0.00207275 0.999911 0.0126276 uwb: 0.0 1248.2 1279.56 +imu_odom_: 1691062884.458275457 0.153229 -0.268151 9.72525 -0.0553937 0.0106526 0.0543285 0.18 0 pose: 0.25111031 -2.70097 -3.90538 0 -0.00528666 0.000776506 0.999908 0.0124989 uwb: 0.50033657 1247.85 1280.65 +imu_odom_: 1691062884.474157820 0.0814029 -0.289698 9.79707 -0.0308927 -0.0426106 0.015979 0.18 0 pose: 0.0 -2.70097 -3.90538 0 -0.00528666 0.000776506 0.999908 0.0124989 uwb: 0.0 1247.85 1280.65 +imu_odom_: 1691062884.491144951 0.447716 -0.23942 9.89284 -0.0671117 -0.00426106 0.0553937 0.18 -0.02 pose: 0.23915560 -2.70981 -3.9007 0 -0.0073772 0.00142789 0.999894 0.012458 uwb: 0.49944121 1248.7 1280.62 +imu_odom_: 1691062884.516137281 0.68953 0.0622492 10.3597 -0.0372843 -0.036219 0.0266316 0.18 -0.02 pose: 0.0 -2.70981 -3.9007 0 -0.0073772 0.00142789 0.999894 0.012458 uwb: 0.0 1248.7 1280.62 +imu_odom_: 1691062884.541145069 0.505177 -0.071826 10.1035 -0.0703074 -0.0181095 0.0426106 0.18 -0.02 pose: 0.40972687 -2.71449 -3.90953 0 -0.00919834 -0.0002359960.99988 0.0124744 uwb: 0.50003909 1248.2 1281.54 +imu_odom_: 1691062884.565129458 0.509965 -0.0670376 9.52174 -0.0266316 -0.0415453 0.02024 0.18 -0.02 pose: 0.0 -2.71449 -3.90953 0 -0.00919834 -0.0002359960.99988 0.0124744 uwb: 0.0 1248.2 1281.54 +imu_odom_: 1691062884.591280512 0.332794 -0.213084 9.60554 -0.0681769 0.00319579 0.0511327 0.21 0 pose: 0.41029268 -2.72333 -3.90485 0 -0.00510105 0.00143163 0.999907 0.0125442 uwb: 0.49752799 1248.62 1282.01 +imu_odom_: 1691062884.617146041 0.071826 -0.0550666 9.64384 -0.0383495 0.0287621 0.0458064 0.2 0 pose: 0.49966286 -2.73216 -3.90016 0 -0.00142589 0.00305545 0.999914 0.0126909 uwb: 0.0 1248.62 1282.01 +imu_odom_: 1691062884.643267055 0.0622492 -0.40462 9.85932 -0.0511327 -0.02024 0.056459 0.2 0 pose: 0.0 -2.73216 -3.90016 0 -0.00142589 0.00305545 0.999914 0.0126909 uwb: 0.50107445 1248.48 1282.35 +imu_odom_: 1691062884.659304284 0.792481 -0.19393 10.082 -0.0340885 -0.0490022 0.0255663 0.18 0 pose: 0.70097692 -2.74568 -3.90431 0 -0.00699029 0.00105293 0.999899 0.0123069 uwb: 0.0 1248.48 1282.35 +imu_odom_: 1691062884.676173589 0.52433 -0.162806 9.80904 -0.0490022 0.0223706 0.00745685 0.18 0 pose: 0.8002282 -2.74568 -3.90431 0 -0.00600987 0.00112782 0.999905 0.012363 uwb: 0.0 1248.48 1282.35 +imu_odom_: 1691062884.692174070 0.00718261 -0.158017 9.51216 -0.0511327 0.0181095 -0.0532632 0.18 0 pose: 0.0 -2.74568 -3.90431 0 -0.00600987 0.00112782 0.999905 0.012363 uwb: 0.49986118 1250.66 1281.34 +imu_odom_: 1691062884.709165285 0.469264 0.153229 9.991 -0.052198 -0.0660464 -0.0841559 0.18 -0.14 pose: 0.32843246 -2.75452 -3.89963 0 -0.0044534 0.0015633 0.999904 0.0130566 uwb: 0.0 1250.66 1281.34 +imu_odom_: 1691062884.725155266 0.299275 -0.380678 9.87129 -0.0735032 -0.0298274 -0.109722 0.18 -0.14 pose: 0.0 -2.75452 -3.89963 0 -0.0044534 0.0015633 0.999904 0.0130566 uwb: 0.0 1250.66 1281.34 +imu_odom_: 1691062884.742239517 0.174777 -0.186748 9.83059 -0.0447411 -0.0340885 -0.167247 0.24 -0.35 pose: 0.0 -2.75452 -3.89963 0 -0.0044534 0.0015633 0.999904 0.0130566 uwb: 0.50137485 1252.58 1280.53 +imu_odom_: 1691062884.758181377 0.385466 -0.047884 10.0772 -0.0585895 -0.0287621 -0.210922 0.24 -0.35 pose: 0.49044965 -2.768 -3.9039 0 -0.00470497 0.00149562 0.999852 0.0165037 uwb: 0.0 1252.58 1280.53 +imu_odom_: 1691062884.775109303 0.823605 0.294487 9.98861 -0.0735032 -0.0245011 -0.276969 0.24 -0.35 pose: 0.0 -2.768 -3.9039 0 -0.00470497 0.00149562 0.999852 0.0165037 uwb: 0.0 1252.58 1280.53 +imu_odom_: 1691062884.791108618 0.596156 -0.0861913 9.14824 -0.056459 -0.00639159 -0.337689 0.18 -0.41 pose: 0.32961656 -2.768 -3.9039 0 -0.00369777 0.00327058 0.999774 0.0206843 uwb: 0.49986993 1254.78 1279.52 +imu_odom_: 1691062884.807158971 0.122104 0.0383072 9.80665 -0.0585895 -0.00958738 -0.388822 0.18 -0.41 pose: 0.0 -2.768 -3.9039 0 -0.00369777 0.00327058 0.999774 0.0206843 uwb: 0.0 1254.78 1279.52 +imu_odom_: 1691062884.824102355 0.723049 -0.0071826110.0293 -0.0852212 -0.00745685 -0.423975 0.18 -0.41 pose: 0.0 -2.768 -3.9039 0 -0.00369777 0.00327058 0.999774 0.0206843 uwb: 0.0 1254.78 1279.52 +imu_odom_: 1691062884.841126526 0.318429 -0.308852 9.45949 -0.0713727 -0.0447411 -0.454868 0.24 -0.61 pose: 0.16054145 -2.768 -3.9039 0 -0.00223735 0.00391633 0.999715 0.0234314 uwb: 0.49999826 1255.37 1280.16 +imu_odom_: 1691062884.857168421 0.519542 0.059855 9.84735 -0.0788296 -0.0415453 -0.465521 0.18 -0.5 pose: 0.0 -2.768 -3.9039 0 -0.00223735 0.00391633 0.999715 0.0234314 uwb: 0.0 1255.37 1280.16 +imu_odom_: 1691062884.874223799 0.641646 -0.205901 9.69891 -0.056459 -0.00745685 -0.458064 0.18 -0.5 pose: 0.65955101 -2.78583 -3.89485 0 -0.0007225010.00390248 0.999253 0.0384465 uwb: 0.0 1255.37 1280.16 +imu_odom_: 1691062884.890091288 0.562637 -0.407014 9.79947 -0.0681769 -0.0127832 -0.491087 0.18 -0.55 pose: 0.0 -2.78583 -3.89485 0 -0.0007225010.00390248 0.999253 0.0384465 uwb: 0.49914956 1255.52 1280.82 +imu_odom_: 1691062884.906086519 0.699107 -0.143652 9.71567 -0.0607201 -0.00852212 -0.526241 0.18 -0.55 pose: 0.0 -2.78583 -3.89485 0 -0.0007225010.00390248 0.999253 0.0384465 uwb: 0.0 1255.52 1280.82 +imu_odom_: 1691062884.923239016 0.56982 0.0766145 9.14106 -0.0639159 -0.0245011 -0.511327 0.18 -0.55 pose: 0.34044259 -2.79036 -3.90377 0 0.00192446 0.00313902 0.998885 0.0470629 uwb: 0.0 1255.52 1280.82 +imu_odom_: 1691062884.940130486 0.799663 -0.189142 9.8258 -0.0596548 -0.0735032 -0.48363 0.22 -0.7 pose: 0.41066307 -2.79922 -3.89916 0 0.00477227 0.00388972 0.998274 0.0583965 uwb: 0.49944413 1256.23 1281.6 +imu_odom_: 1691062884.956289333 1.2378 -0.411803 9.21528 -0.0873517 -0.0181095 -0.46339 0.22 -0.7 pose: 0.7066961 -2.79924 -3.89918 0 0.00569617 0.00370376 0.998161 0.0602393 uwb: 0.0 1256.23 1281.6 +imu_odom_: 1691062884.973290755 1.25696 -0.409408 10.3453 -0.0543285 -0.0287621 -0.448476 0.22 -0.7 pose: 0.0 -2.79924 -3.89918 0 0.00569617 0.00370376 0.998161 0.0602393 uwb: 0.0 1256.23 1281.6 +imu_odom_: 1691062884.989108955 1.28808 -0.110133 9.87369 -0.0553937 -0.0276969 -0.407996 0.12 -0.41 pose: 0.33997887 -2.79924 -3.89918 0 0.00935914 0.00222654 0.997585 0.0687939 uwb: 0.49984951 1256.88 1281.81 +imu_odom_: 1691062885.6230829 1.30723 -0.11971 9.64384 -0.0735032 0.0660464 -0.331297 0.17 -0.53 pose: 0.0 -2.79924 -3.89918 0 0.00935914 0.00222654 0.997585 0.0687939 uwb: 0.0 1256.88 1281.81 +imu_odom_: 1691062885.23234002 0.512359 -0.411803 10.1418 -0.0458064 0.0191748 -0.28336 0.17 -0.53 pose: 0.0 -2.79924 -3.89918 0 0.00935914 0.00222654 0.997585 0.0687939 uwb: 0.0 1256.88 1281.81 +imu_odom_: 1691062885.40114098 0.648829 -0.222661 9.89045 -0.0372843 0.00319579 -0.290817 0.15 -0.44 pose: 0.32872994 -2.80815 -3.89463 0 0.0125606 0.00185852 0.997028 0.075992 uwb: 0.50136027 1256.05 1283.39 +imu_odom_: 1691062885.56368898 1.00796 -0.134075 9.75398 -0.0543285 -0.0447411 -0.258859 0.15 -0.44 pose: 0.0 -2.80815 -3.89463 0 0.0125606 0.00185852 0.997028 0.075992 uwb: 0.0 1256.05 1283.39 +imu_odom_: 1691062885.73364196 0.866701 -0.354342 9.84256 -0.0660464 0.02024 -0.214118 0.15 -0.44 pose: 0.33087941 -2.80815 -3.89463 0 0.0121244 -5.12629e-050.996597 0.0815318 uwb: 0.0 1256.05 1283.39 +imu_odom_: 1691062885.90131132 0.964863 -0.414197 9.79707 -0.052198 -0.00745685 -0.227967 0.08 -0.26 pose: 0.43099397 -2.8216 -3.89892 0 0.0153022 -0.00189766 0.996028 0.08769 uwb: 0.49886667 1254.65 1285.31 +imu_odom_: 1691062885.106154362 0.737414 -0.167594 9.81623 -0.0649811 -0.0117179 -0.210922 0.08 -0.26 pose: 0.7953576 -2.82162 -3.89894 0 0.0159216 -0.00238924 0.995925 0.0887417 uwb: 0.0 1254.65 1285.31 +imu_odom_: 1691062885.123228989 0.593762 -0.131681 9.81623 -0.0575243 0.0245011 -0.184291 0.08 -0.26 pose: 0.0 -2.82162 -3.89894 0 0.0159216 -0.00238924 0.995925 0.0887417 uwb: 0.0 1254.65 1285.31 +imu_odom_: 1691062885.140367195 0.641646 -0.0933739 10.058 -0.0553937 -0.00532632 -0.178964 0.06 -0.2 pose: 0.41911217 -2.8216 -3.89892 0 0.0153391 -0.0003949990.995468 0.0938533 uwb: 0.50103071 1256.92 1283.84 +imu_odom_: 1691062885.157358702 0.567426 -0.222661 9.84496 -0.056459 -0.0170442 -0.177899 0.09 -0.26 pose: 0.0 -2.8216 -3.89892 0 0.0153391 -0.0003949990.995468 0.0938533 uwb: 0.0 1256.92 1283.84 +imu_odom_: 1691062885.173227649 0.725443 -0.244209 9.87608 -0.0500674 -0.00319579 -0.165116 0.09 -0.26 pose: 0.0 -2.8216 -3.89892 0 0.0153391 -0.0003949990.995468 0.0938533 uwb: 0.0 1256.92 1283.84 +imu_odom_: 1691062885.190339315 0.696713 -0.251391 9.86411 -0.0575243 0 -0.152333 0.07 -0.2 pose: 0.24087925 -2.82162 -3.89894 0 0.0139414 0.000901977 0.995236 0.0964917 uwb: 0.49888125 1255.82 1285.62 +imu_odom_: 1691062885.208084444 0.605733 -0.222661 9.90242 -0.0596548 -0.00213053 -0.142745 0.07 -0.2 pose: 0.0 -2.82162 -3.89894 0 0.0139414 0.000901977 0.995236 0.0964917 uwb: 0.0 1255.82 1285.62 +imu_odom_: 1691062885.221089392 0.651223 -0.129287 9.92397 -0.052198 -0.00639159 -0.133158 0.07 -0.2 pose: 0.33983013 -2.82162 -3.89894 0 0.0142827 -0.00136234 0.994891 0.0999333 uwb: 0.0 1255.82 1285.62 +imu_odom_: 1691062885.237081707 0.715866 -0.263362 9.84017 -0.056459 -0.00213053 -0.126766 0.04 -0.08 pose: 0.39789465 -2.82576 -3.8968 0 0.0128134 -0.00059315 0.994544 0.10353 uwb: 0.0 1255.82 1285.62 +imu_odom_: 1691062885.254115795 0.445322 -0.251391 9.73482 -0.0500674 0.0191748 -0.111853 0.04 -0.08 pose: 0.0 -2.82576 -3.8968 0 0.0128134 -0.00059315 0.994544 0.10353 uwb: 0.49961037 1256.07 1286.41 +imu_odom_: 1691062885.270117734 0.514753 -0.234632 10.082 -0.0511327 0.00958738 -0.0852212 0.04 -0.08 pose: 0.0 -2.82576 -3.8968 0 0.0128134 -0.00059315 0.994544 0.10353 uwb: 0.0 1256.07 1286.41 +imu_odom_: 1691062885.287331478 0.390255 -0.306458 9.77792 -0.0532632 -0.00958738 -0.056459 0.05 -0.11 pose: 0.7999658 -2.8305 -3.89434 0 0.0133119 -0.00120748 0.994468 0.104184 uwb: 0.50307517 1255.73 1287.53 +imu_odom_: 1691062885.303203633 0.608127 -0.248997 9.91918 -0.0479369 -0.00958738 -0.0394148 0.03 -0.05 pose: 0.0 -2.8305 -3.89434 0 0.0133119 -0.00120748 0.994468 0.104184 uwb: 0.0 1255.73 1287.53 +imu_odom_: 1691062885.320084605 0.73502 -0.167594 9.87608 -0.0511327 -0.00745685 -0.0330232 0.03 -0.05 pose: 0.66204171 -2.8305 -3.89434 0 0.00933753 -0.00240993 0.994079 0.108235 uwb: 0.0 1255.73 1287.53 +imu_odom_: 1691062885.337083986 0.667982 -0.136469 9.90002 -0.052198 0.00319579 -0.0266316 0.03 -0.05 pose: 0.0 -2.8305 -3.89434 0 0.00933753 -0.00240993 0.994079 0.108235 uwb: 0.49574019 1257.81 1286.33 +imu_odom_: 1691062885.354189819 0.612916 -0.198719 9.89045 -0.0532632 0 -0.00958738 0.03 -0.05 pose: 0.0 -2.8305 -3.89434 0 0.00933753 -0.00240993 0.994079 0.108235 uwb: 0.0 1257.81 1286.33 +imu_odom_: 1691062885.370185342 0.536301 -0.260968 9.81623 -0.056459 0.00532632 0.00319579 0.03 -0.05 pose: 0.33033402 -2.8305 -3.89434 0 0.0119816 -0.00122298 0.99392 0.109442 uwb: 0.0 1257.81 1286.33 +imu_odom_: 1691062885.386208280 0.557849 -0.263362 9.94073 -0.0500674 -0.00213053 0 0.03 -0.05 pose: 0.41858719 -2.8305 -3.89434 0 0.00920881 -0.00124525 0.993839 0.11044 uwb: 0.0 1257.81 1286.33 +imu_odom_: 1691062885.402083644 0.61531 -0.112527 9.82102 -0.0543285 -0.00745685 0.00426106 0.03 -0.05 pose: 0.6886723 -2.8305 -3.89434 0 0.00877577 -0.00176506 0.993828 0.11057 uwb: 0.50028408 1257.95 1287 +imu_odom_: 1691062885.419066693 0.617704 -0.155623 9.84735 -0.0543285 0.00106526 0.0149137 0.03 -0.05 pose: 0.0 -2.8305 -3.89434 0 0.00877577 -0.00176506 0.993828 0.11057 uwb: 0.0 1257.95 1287 +imu_odom_: 1691062885.435122296 0.627281 -0.280122 9.93354 -0.0543285 -0.00426106 0.0234358 0.01 -0.02 pose: 0.41994628 -2.8305 -3.89434 0 0.00998829 0.000295231 0.993742 0.111253 uwb: 0.0 1257.95 1287 +imu_odom_: 1691062885.452126343 0.56982 -0.248997 9.89045 -0.052198 -0.00106526 0.036219 0.01 0 pose: 0.0 -2.8305 -3.89434 0 0.00998829 0.000295231 0.993742 0.111253 uwb: 0.49954913 1258.82 1286.95 +imu_odom_: 1691062885.468119533 0.632069 -0.217872 9.90002 -0.0532632 -0.0106526 0.0479369 0.01 0 pose: 0.0 -2.8305 -3.89434 0 0.00998829 0.000295231 0.993742 0.111253 uwb: 0.0 1258.82 1286.95 +imu_odom_: 1691062885.485135247 0.636858 -0.169988 9.88326 -0.0543285 -0.00426106 0.0447411 0 0.02 pose: 0.24026970 -2.8305 -3.89434 0 0.00964404 -0.00171375 0.99373 0.111374 uwb: 0.0 1258.82 1286.95 +imu_odom_: 1691062885.509062764 0.584185 -0.205901 9.85453 -0.0585895 -0.00106526 0.0447411 0 0.02 pose: 0.0 -2.8305 -3.89434 0 0.00964404 -0.00171375 0.99373 0.111374 uwb: 0.50040657 1259.51 1286.7 +imu_odom_: 1691062885.524116551 0.476446 -0.275333 9.90242 -0.0543285 0.0234358 0.04048 0 0.02 pose: 0.32036252 -2.8305 -3.89434 0 0.0108538 -0.00117933 0.993726 0.111311 uwb: 0.0 1259.51 1286.7 +imu_odom_: 1691062885.539054261 -0.521936 -0.179565 9.75877 -0.0490022 0.0798948 0.0681769 0 0 pose: 0.39994787 -2.8305 -3.89434 0 0.00833293 -0.0009250460.99376 0.111227 uwb: 0.50032200 1258.73 1287.85 +imu_odom_: 1691062885.556196259 -1.15879 -0.37589 10.0461 -0.0447411 0.0490022 0.0852212 0 0 pose: 0.0 -2.8305 -3.89434 0 0.00833293 -0.0009250460.99376 0.111227 uwb: 0.0 1258.73 1287.85 +imu_odom_: 1691062885.573259511 -1.04387 -0.1652 9.89524 -0.0426106 -0.04048 0.0628506 0.04 0 pose: 0.41071557 -2.8305 -3.89434 0 0.00315293 -0.0007984010.993858 0.110619 uwb: 0.0 1258.73 1287.85 +imu_odom_: 1691062885.590222728 -0.112527 0.00718261 9.97903 -0.0490022 -0.0809601 0.0692422 0.04 0 pose: 0.0 -2.8305 -3.89434 0 0.00315293 -0.0007984010.993858 0.110619 uwb: 0.49927790 1258.84 1288.48 +imu_odom_: 1691062885.608195927 0.447716 -0.141258 9.84975 -0.0639159 -0.0287621 0.0745685 0.04 0 pose: 0.0 -2.8305 -3.89434 0 0.00315293 -0.0007984010.993858 0.110619 uwb: 0.0 1258.84 1288.48 +imu_odom_: 1691062885.623071807 0.248997 -0.304064 9.88805 -0.0468716 0.0170442 0.0436758 0.06 0.02 pose: 0.8019489 -2.8305 -3.89434 0 0.0025096 -0.0006445250.99387 0.110526 uwb: 0.0 1258.84 1288.48 +imu_odom_: 1691062885.640231887 -0.0885855 -0.0502782 9.99579 -0.0511327 0.00852212 0.052198 0.07 0 pose: 0.0 -2.8305 -3.89434 0 0.0025096 -0.0006445250.99387 0.110526 uwb: 0.0 1258.84 1288.48 +imu_odom_: 1691062885.655214511 -0.1652 -0.248997 9.85932 -0.0553937 -0.00106526 0.0713727 0.07 0 pose: 0.0 -2.8305 -3.89434 0 0.0025096 -0.0006445250.99387 0.110526 uwb: 0.0 1258.84 1288.48 +imu_odom_: 1691062885.672143896 0.146046 -0.203507 10.0221 -0.0543285 -0.0426106 0.0703074 0.07 0 pose: 0.66141758 -2.83939 -3.88978 0 -0.0001593140.00147902 0.993954 0.109786 uwb: 0.0 1258.84 1288.48 +imu_odom_: 1691062885.688209707 0.177171 -0.179565 9.60075 -0.0468716 -0.0458064 0.0628506 0.1 0.02 pose: 0.0 -2.83939 -3.88978 0 -0.0001593140.00147902 0.993954 0.109786 uwb: 0.100108730 1257.86 1290.43 +imu_odom_: 1691062885.705111386 0.418985 -0.0694318 10.2161 -0.0426106 -0.00532632 0.0585895 0.1 0.02 pose: 0.31856888 -2.83939 -3.88978 0 -0.0032251 0.00185301 0.993992 0.109385 uwb: 0.0 1257.86 1290.43 +imu_odom_: 1691062885.721053829 0.275333 -0.174777 9.91678 -0.0500674 0.0117179 0.056459 0.1 0 pose: 0.42896992 -2.8443 -3.88722 0 -0.00387596 0.00324456 0.994042 0.108885 uwb: 0.0 1257.86 1290.43 +imu_odom_: 1691062885.738203409 0.126893 -0.25618 9.85214 -0.0500674 0.0106526 0.0415453 0.1 0 pose: 0.0 -2.8443 -3.88722 0 -0.00387596 0.00324456 0.994042 0.108885 uwb: 0.50025492 1256.86 1291.87 +imu_odom_: 1691062885.754184933 0.071826 -0.0311246 9.8689 -0.0543285 -0.02024 0.0553937 0.1 0 pose: 0.0 -2.8443 -3.88722 0 -0.00387596 0.00324456 0.994042 0.108885 uwb: 0.0 1256.86 1291.87 +imu_odom_: 1691062885.771047822 0.277727 -0.320823 9.84017 -0.0585895 -0.0351537 0.0660464 0.15 0 pose: 0.7956201 -2.84826 -3.88515 0 -0.00471436 0.00310479 0.994045 0.108821 uwb: 0.0 1256.86 1291.87 +imu_odom_: 1691062885.787185671 0.830788 -0.177171 10.0844 -0.0490022 -0.0756338 0.0372843 0.11 0 pose: 0.0 -2.84826 -3.88515 0 -0.00471436 0.00310479 0.994045 0.108821 uwb: 0.0 1256.86 1291.87 +imu_odom_: 1691062885.803084658 1.02711 0.0933739 9.60075 -0.0436758 -0.0596548 0.0458064 0.11 0 pose: 0.66115510 -2.85288 -3.89402 0 -0.00664166 0.00172988 0.994082 0.108417 uwb: 0.50010035 1256.45 1292.95 +imu_odom_: 1691062885.820030667 1.06542 -0.268151 9.73961 -0.0671117 0.0500674 0.092678 0.08 0 pose: 0.0 -2.85288 -3.89402 0 -0.00664166 0.00172988 0.994082 0.108417 uwb: 0.0 1256.45 1292.95 +imu_odom_: 1691062885.836084812 1.24498 -0.45011 10.4603 -0.0639159 -0.0319579 0.12144 0.08 0 pose: 0.0 -2.85288 -3.89402 0 -0.00664166 0.00172988 0.994082 0.108417 uwb: 0.0 1256.45 1292.95 +imu_odom_: 1691062885.852039212 1.49877 -0.320823 9.5792 -0.0585895 -0.0372843 0.0948085 0.08 0 pose: 0.31916967 -2.86175 -3.88941 0 -0.00301329 0.00192393 0.994127 0.108161 uwb: 0.49886666 1255.22 1294.11 +imu_odom_: 1691062885.868035610 1.25217 0.0430956 9.71088 -0.0415453 0.0223706 0.0596548 0.08 0 pose: 0.40939148 -2.86175 -3.88941 0 0.0011287 0.000588738 0.994276 0.106831 uwb: 0.0 1255.22 1294.11 +imu_odom_: 1691062885.885095946 0.826 0.0215478 10.0245 -0.0628506 0.0213053 0.052198 0.08 0 pose: 0.7003674 -2.86175 -3.88941 0 0.00173128 0.000771994 0.994283 0.10676 uwb: 0.0 1255.22 1294.11 +imu_odom_: 1691062885.901247210 0.40462 -0.282516 9.89763 -0.0553937 0.00639159 0.00213053 0.08 0 pose: 0.0 -2.86175 -3.88941 0 0.00173128 0.000771994 0.994283 0.10676 uwb: 0.50347473 1256.69 1293.21 +imu_odom_: 1691062885.918314546 0.617704 -0.0957681 10.0054 -0.0532632 -0.0436758 -0.0298274 0.05 0 pose: 0.42204324 -2.86175 -3.88941 0 0.00274637 0.000396398 0.99427 0.10686 uwb: 0.0 1256.69 1293.21 +imu_odom_: 1691062885.935321218 0.790087 -0.124498 9.76116 -0.0639159 -0.0181095 0.00319579 0.06 0.02 pose: 0.0 -2.86175 -3.88941 0 0.00274637 0.000396398 0.99427 0.10686 uwb: 0.0 1256.69 1293.21 +imu_odom_: 1691062885.951174125 0.842759 -0.35913 9.87608 -0.0617853 0 0.0287621 0.06 0.02 pose: 0.0 -2.86175 -3.88941 0 0.00274637 0.000396398 0.99427 0.10686 uwb: 0.49931289 1256.21 1294.22 +imu_odom_: 1691062885.967134942 0.56982 -0.306458 9.88326 -0.0511327 0.00639159 0.0170442 0.05 0.02 pose: 0.24081217 -2.86175 -3.88941 0 0.00534813 0.00117872 0.994182 0.107576 uwb: 0.0 1256.21 1294.22 +imu_odom_: 1691062885.984285689 0.428562 0.0047884 9.90721 -0.0447411 0.0234358 0.0287621 0.05 0.02 pose: 0.0 -2.86175 -3.88941 0 0.00534813 0.00117872 0.994182 0.107576 uwb: 0.0 1256.21 1294.22 +imu_odom_: 1691062886.11123287 0.426168 -0.383072 9.84256 -0.0575243 -0.00745685 0.0703074 0.04 0.02 pose: 0.32846163 -2.86175 -3.88941 0 0.00765701 -0.0004433340.994132 0.107906 uwb: 0.49936831 1254.68 1295.58 +imu_odom_: 1691062886.36020831 -0.677559 -0.105345 9.54568 -0.0426106 0.0841559 0.0511327 0.04 0.02 pose: 0.34032886 -2.87062 -3.8848 0 0.00632218 -0.0002698640.994133 0.107978 uwb: 0.0 1254.68 1295.58 +imu_odom_: 1691062886.60286371 -1.05345 -0.304064 9.88326 -0.0585895 -0.0468716 0.0585895 0.07 0.02 pose: 0.43813355 -2.87062 -3.8848 0 0.00174092 -0.00101652 0.994199 0.107537 uwb: 0.49872668 1254.2 1296.06 +imu_odom_: 1691062886.75103339 -0.392649 -0.155623 9.81383 -0.0500674 -0.0820254 0.0383495 0.07 0.02 pose: 0.0 -2.87062 -3.8848 0 0.00174092 -0.00101652 0.994199 0.107537 uwb: 0.0 1254.2 1296.06 +imu_odom_: 1691062886.100328989 0.4956 -0.0670376 9.55526 -0.052198 -0.00958738 0.0394148 0.08 0.02 pose: 0.39082508 -2.87062 -3.8848 0 -0.00104664 -0.0006893460.994225 0.107313 uwb: 0.50042700 1255.81 1295.32 +imu_odom_: 1691062886.127134797 -0.0766145 -0.28491 9.86172 -0.0468716 0.0245011 0.0639159 0.08 0.02 pose: 0.0 -2.87062 -3.8848 0 -0.00104664 -0.0006893460.994225 0.107313 uwb: 0.0 1255.81 1295.32 +imu_odom_: 1691062886.153125153 0.213084 -0.0646434 9.58399 -0.052198 -0.0191748 0.0319579 0.11 0.02 pose: 0.52031458 -2.87694 -3.88153 0 -0.00238048 0.00118815 0.994256 0.106992 uwb: 0.49804714 1254.78 1296.73 +imu_odom_: 1691062886.170038206 0.270545 -0.150835 9.60314 -0.0596548 -0.015979 0.0543285 0.11 0.02 pose: 0.0 -2.87694 -3.88153 0 -0.00238048 0.00118815 0.994256 0.106992 uwb: 0.0 1254.78 1296.73 +imu_odom_: 1691062886.186103142 0.244209 -0.0957681 10.0317 -0.0436758 0.0255663 0.0415453 0.11 0 pose: 0.42903409 -2.87951 -3.88021 0 -0.00539669 0.00366993 0.994241 0.106965 uwb: 0.0 1254.78 1296.73 +imu_odom_: 1691062886.213034943 0.378284 -0.155623 9.78271 -0.0490022 -0.04048 0.0596548 0.11 0 pose: 0.0 -2.87951 -3.88021 0 -0.00539669 0.00366993 0.994241 0.106965 uwb: 0.50002452 1255.24 1296.74 +imu_odom_: 1691062886.238117685 -0.0550666 0.0287304 9.6606 -0.0436758 0.00639159 0.0330232 0.13 0 pose: 0.42996737 -2.88575 -3.87698 0 -0.00343557 0.00428079 0.994279 0.106673 uwb: 0.50042409 1254.64 1297.63 +imu_odom_: 1691062886.255061945 -0.059855 -0.009576819.17219 -0.0553937 -0.0319579 0.0628506 0.13 0 pose: 0.0 -2.88575 -3.87698 0 -0.00343557 0.00428079 0.994279 0.106673 uwb: 0.0 1254.64 1297.63 +imu_odom_: 1691062886.280011403 0.778116 -0.342371 9.83299 -0.0617853 0.0170442 0.0479369 0.13 -0.02 pose: 0.42027002 -2.89298 -3.88451 0 -0.00704165 0.00636104 0.99426 0.106566 uwb: 0.0 1254.64 1297.63 +imu_odom_: 1691062886.305086271 -0.234632 -0.153229 9.93594 -0.0607201 -0.0340885 0.0490022 0.13 -0.02 pose: 0.0 -2.89298 -3.88451 0 -0.00704165 0.00636104 0.99426 0.106566 uwb: 0.49981453 1255.91 1297 +imu_odom_: 1691062886.319046080 0.184354 -0.110133 9.68455 -0.052198 -0.0223706 0.0607201 0.13 0.02 pose: 0.50024326 -2.89973 -3.88103 0 -0.00729713 0.00508392 0.994289 0.106352 uwb: 0.0 1255.91 1297 +imu_odom_: 1691062886.335042770 -0.00957681-0.158017 9.72046 -0.0681769 -0.00426106 0.0649811 0.13 0.02 pose: 0.0 -2.89973 -3.88103 0 -0.00729713 0.00508392 0.994289 0.106352 uwb: 0.0 1255.91 1297 +imu_odom_: 1691062886.360022852 0.23942 -0.0670376 10.1083 -0.0490022 -0.0149137 0.0287621 0.21 0 pose: 0.29956499 -2.90187 -3.87993 0 -0.0100502 0.00550561 0.994299 0.106012 uwb: 0.49999244 1255.9 1297.51 +imu_odom_: 1691062886.383066380 0.385466 -0.227449 10.0485 -0.0703074 -0.0106526 0.0596548 0.21 0 pose: 0.0 -2.90187 -3.87993 0 -0.0100502 0.00550561 0.994299 0.106012 uwb: 0.0 1255.9 1297.51 +imu_odom_: 1691062886.408304280 0.253785 -0.138864 9.55765 -0.0575243 -0.0553937 0.0394148 0.14 0 pose: 0.48023610 -2.91076 -3.87535 0 -0.00653909 0.00546108 0.994341 0.105895 uwb: 0.49991953 1255.53 1298.66 +imu_odom_: 1691062886.435284494 0.399832 -0.138864 10.2831 -0.0575243 -0.0308927 0.0543285 0.14 0 pose: 0.0 -2.91076 -3.87535 0 -0.00653909 0.00546108 0.994341 0.105895 uwb: 0.0 1255.53 1298.66 +imu_odom_: 1691062886.451232479 0.4956 -0.172383 10.2711 -0.0660464 -0.0276969 0.0575243 0.15 -0.05 pose: 0.52218114 -2.91715 -3.87207 0 -0.00490811 0.00378065 0.994377 0.105715 uwb: 0.50108613 1256.51 1298.22 +imu_odom_: 1691062886.478231067 0.260968 0.011971 10.1083 -0.0628506 0 0.052198 0.15 -0.05 pose: 0.0 -2.91715 -3.87207 0 -0.00490811 0.00378065 0.994377 0.105715 uwb: 0.0 1256.51 1298.22 +imu_odom_: 1691062886.503011369 0.114922 -0.311246 9.77313 -0.134223 -0.0649811 0.0905475 0.15 0 pose: 0.42946573 -2.9229 -3.87711 0 -0.00404379 0.00581103 0.994405 0.105393 uwb: 0.50002161 1256.94 1298.19 +imu_odom_: 1691062886.530005291 0.600945 -0.244209 10.149 -0.0585895 -0.1012 0.0266316 0.2 0 pose: 0.0 -2.9229 -3.87711 0 -0.00404379 0.00581103 0.994405 0.105393 uwb: 0.0 1256.94 1298.19 +imu_odom_: 1691062886.555135281 0.423774 -0.349553 9.85693 -0.0628506 -0.0234358 0.0692422 0.16 0.02 pose: 0.31791851 -2.93312 -3.87513 0 -0.0043274 0.00289969 0.994477 0.104828 uwb: 0.49970662 1256.3 1299.55 +imu_odom_: 1691062886.582017793 0.0766145 -0.105345 10.0509 -0.0479369 0.0213053 0.0394148 0.2 0 pose: 0.45112363 -2.93945 -3.87189 0 -0.000771121-0.00052905 0.994515 0.104591 uwb: 0.0 1256.3 1299.55 +imu_odom_: 1691062886.598008941 0.40462 -0.179565 10.0413 -0.0735032 -0.0127832 0.0756338 0.2 0 pose: 0.6894013 -2.94203 -3.87058 0 -0.00147006 -0.0001783630.994514 0.104591 uwb: 0.49906208 1258.83 1298.27 +imu_odom_: 1691062886.623999881 0.646434 -0.380678 9.80904 -0.04048 -0.00106526 0.0255663 0.21 0 pose: 0.0 -2.94203 -3.87058 0 -0.00147006 -0.0001783630.994514 0.104591 uwb: 0.0 1258.83 1298.27 +imu_odom_: 1691062886.639021003 0.318429 -0.146046 10.4411 -0.0468716 -0.00213053 0.0426106 0.21 0 pose: 0.43091232 -2.94203 -3.87058 0 -0.00134115 0.000670533 0.994539 0.104351 uwb: 0.50162860 1257.81 1299.21 +imu_odom_: 1691062886.665266844 0.35913 -0.28491 10.3118 -0.0372843 -0.00106526 0.0468716 0.21 0 pose: 0.0 -2.94203 -3.87058 0 -0.00134115 0.000670533 0.994539 0.104351 uwb: 0.0 1257.81 1299.21 +imu_odom_: 1691062886.691283156 0.263362 0.0143652 9.71328 -0.0756338 0.00106526 0.0596548 0.19 0 pose: 0.40959564 -2.95094 -3.86604 0 -0.0011884 0.000194937 0.994531 0.104436 uwb: 0.49886376 1260.36 1297.94 +imu_odom_: 1691062886.718251705 0.402226 -0.380678 9.57441 -0.0862864 -0.0266316 0.0500674 0.21 0.02 pose: 0.45203066 -2.95984 -3.86149 0 -0.00273419 0.000832083 0.994562 0.104103 uwb: 0.0 1260.36 1297.94 +imu_odom_: 1691062886.743124751 0.246603 -0.110133 9.71567 -0.0511327 -0.0191748 0.036219 0.21 0.02 pose: 0.0 -2.95984 -3.86149 0 -0.00273419 0.000832083 0.994562 0.104103 uwb: 0.50070698 1261.11 1297.75 +imu_odom_: 1691062886.760010681 0.378284 -0.459687 9.80665 -0.0607201 -0.0298274 0.0479369 0.2 0 pose: 0.6992300 -2.95984 -3.86149 0 -0.00254003 2.89414e-05 0.994567 0.104068 uwb: 0.0 1261.11 1297.75 +imu_odom_: 1691062886.785141254 0.258574 -0.263362 9.60793 -0.052198 -0.0511327 0.0575243 0.2 0 pose: 0.0 -2.95984 -3.86149 0 -0.00254003 2.89414e-05 0.994567 0.104068 uwb: 0.0 1261.11 1297.75 +imu_odom_: 1691062886.812016183 0.383072 -0.213084 9.85932 -0.0543285 -0.0436758 0.0436758 0.22 0.02 pose: 0.51804264 -2.97329 -3.86587 0 -0.00303521 -0.0008708240.994575 0.103975 uwb: 0.50044159 1259.56 1299.63 +imu_odom_: 1691062886.837987290 -0.0191536 -0.117316 10.2615 -0.0532632 -0.0372843 0.0575243 0.22 0.02 pose: 0.0 -2.97329 -3.86587 0 -0.00303521 -0.0008708240.994575 0.103975 uwb: 0.49859252 1260.82 1298.97 +imu_odom_: 1691062886.865010669 0.416591 -0.11971 9.86411 -0.0447411 -0.0436758 0.0490022 0.24 0 pose: 0.42076582 -2.98221 -3.86134 0 -0.00403249 -0.00152951 0.9946 0.103691 uwb: 0.0 1260.82 1298.97 +imu_odom_: 1691062886.890008541 0.670376 -0.244209 9.64145 -0.072438 -0.0266316 0.0639159 0.17 0.02 pose: 0.53007318 -2.98221 -3.86134 0 -0.00317829 0.000853594 0.994637 0.103378 uwb: 0.50083531 1259.89 1300.56 +imu_odom_: 1691062886.916983506 0.21069 -0.222661 10.3238 -0.0383495 0.0266316 0.0415453 0.17 0.02 pose: 0.0 -2.98221 -3.86134 0 -0.00317829 0.000853594 0.994637 0.103378 uwb: 0.0 1259.89 1300.56 +imu_odom_: 1691062886.942112329 0.304064 -0.320823 9.91918 -0.0713727 0.00106526 0.0617853 0.2 0 pose: 0.71819886 -3.00074 -3.85984 0 -0.00174802 0.00128984 0.994684 0.102949 uwb: 0.49998369 1259.21 1301.36 +imu_odom_: 1691062886.959091295 0.40462 -0.0981623 9.71328 -0.0649811 -0.00213053 0.0372843 0.2 0 pose: 0.8002282 -3.0046 -3.86106 0 -0.0021994 0.000548162 0.994693 0.102863 uwb: 0.0 1259.21 1301.36 +imu_odom_: 1691062886.985097983 0.454898 -0.268151 10.1706 -0.0671117 0.0181095 0.0585895 0.18 0 pose: 0.0 -3.0046 -3.86106 0 -0.0021994 0.000548162 0.994693 0.102863 uwb: 0.0 1259.21 1301.36 +imu_odom_: 1691062887.2121280 0.553061 -0.167594 10.1059 -0.0745685 -0.0458064 0.0458064 0.18 0 pose: 0.34105507 -3.00958 -3.85847 0 -0.00237599 0.000372456 0.99471 0.102692 uwb: 0.49919041 1259.52 1301.72 +imu_odom_: 1691062887.26998409 0.493206 -0.318429 10.0126 -0.0735032 -0.0532632 0.0585895 0.18 0 pose: 0.0 -3.00958 -3.85847 0 -0.00237599 0.000372456 0.99471 0.102692 uwb: 0.0 1259.52 1301.72 +imu_odom_: 1691062887.54101409 0.385466 -0.282516 9.77792 -0.0415453 -0.0117179 0.0298274 0.18 0 pose: 0.51062890 -3.01348 -3.85646 0 0.00196753 -0.00169572 0.994748 0.10232 uwb: 0.49942956 1260.09 1302.38 +imu_odom_: 1691062887.79124655 0.35913 -0.0263362 10.0221 -0.0553937 -0.00213053 0.0415453 0.18 0 pose: 0.43947224 -3.02236 -3.85186 0 0.000571846 -0.0032145 0.99475 0.102281 uwb: 0.0 1260.09 1302.38 +imu_odom_: 1691062887.105977419 0.845153 -0.232238 9.39485 -0.0394148 0.0330232 0.0372843 0.23 0 pose: 0.25023246 -3.02863 -3.84862 0 0.000197747 -0.00073364 0.994758 0.102257 uwb: 0.50099281 1258.15 1304.4 +imu_odom_: 1691062887.132159097 0.232238 -0.304064 9.74201 -0.0500674 0.0319579 0.0543285 0.23 0 pose: 0.0 -3.02863 -3.84862 0 0.000197747 -0.00073364 0.994758 0.102257 uwb: 0.0 1258.15 1304.4 +imu_odom_: 1691062887.148002088 0.6608 -0.186748 9.8258 -0.0394148 0.0170442 0.036219 0.25 -0.02 pose: 0.7071920 -3.03124 -3.84727 0 0.000775551 -0.0007435340.994757 0.102266 uwb: 0.49877919 1258.47 1304.78 +imu_odom_: 1691062887.174024818 0.773327 -0.430956 9.79707 -0.0436758 0.0245011 0.0543285 0.25 -0.02 pose: 0.0 -3.03124 -3.84727 0 0.000775551 -0.0007435340.994757 0.102266 uwb: 0.0 1258.47 1304.78 +imu_odom_: 1691062887.201021657 0.126893 -0.0814029 10.1801 -0.0458064 -0.00426106 0.0394148 0.23 0 pose: 0.52788290 -3.04472 -3.85156 0 1.19633e-06 -0.00116483 0.994773 0.102107 uwb: 0.49995745 1256.95 1306.22 +imu_odom_: 1691062887.225950992 0.392649 -0.354342 9.79228 -0.0681769 -0.00213053 0.0468716 0.23 0 pose: 0.0 -3.04472 -3.85156 0 1.19633e-06 -0.00116483 0.994773 0.102107 uwb: 0.0 1256.95 1306.22 +imu_odom_: 1691062887.243032910 0.153229 -0.160412 9.67018 -0.0511327 -0.0479369 0.0458064 0.23 0 pose: 0.42009795 -3.04472 -3.85156 0 0.00200199 -0.00189125 0.994787 0.101933 uwb: 0.0 1256.95 1306.22 +imu_odom_: 1691062887.269095304 0.73502 -0.232238 9.89045 -0.0671117 -0.0607201 0.0319579 0.23 0 pose: 0.0 -3.04472 -3.85156 0 0.00200199 -0.00189125 0.994787 0.101933 uwb: 0.0 1256.95 1306.22 +imu_odom_: 1691062887.296022147 0.790087 -0.385466 9.52413 -0.0585895 -0.0127832 0.0458064 0.25 0 pose: 0.52117788 -3.0536 -3.84697 0 -0.000767628-0.00289773 0.994799 0.101817 uwb: 0.100013364 1257.75 1306.09 +imu_odom_: 1691062887.322034960 0.155623 0.0909797 10.003 -0.0436758 -0.0234358 0.0426106 0.16 -0.02 pose: 0.42864329 -3.06249 -3.84239 0 0.0025708 -0.00296256 0.99479 0.101865 uwb: 0.0 1257.75 1306.09 +imu_odom_: 1691062887.349156626 0.416591 -0.158017 9.8258 -0.0660464 -0.0298274 0.0458064 0.25 -0.02 pose: 0.0 -3.06249 -3.84239 0 0.0025708 -0.00296256 0.99479 0.101865 uwb: 0.50180943 1257.16 1307.02 +imu_odom_: 1691062887.365094694 0.622492 -0.174777 10.0461 -0.0372843 -0.0191748 0.0372843 0.25 -0.02 pose: 0.53066232 -3.07142 -3.83789 0 0.00294478 -0.00107936 0.994805 0.101749 uwb: 0.0 1257.16 1307.02 +imu_odom_: 1691062887.392109324 1.01275 -0.282516 9.88805 -0.0511327 0.0330232 0.0447411 0.18 -0.02 pose: 0.0 -3.07142 -3.83789 0 0.00294478 -0.00107936 0.994805 0.101749 uwb: 0.49820463 1257.15 1308.1 +imu_odom_: 1691062887.416977996 0.557849 -0.105345 9.75877 -0.0543285 0.0447411 0.04048 0.2 -0.02 pose: 0.63066315 -3.08485 -3.84233 0 0.00615048 0.000161653 0.994803 0.101631 uwb: 0.0 1257.15 1308.1 +imu_odom_: 1691062887.443974835 0.37589 -0.533907 9.47864 -0.0660464 0.0319579 0.0596548 0.2 -0.02 pose: 0.0 -3.08485 -3.84233 0 0.00615048 0.000161653 0.994803 0.101631 uwb: 0.50047367 1254.68 1310.6 +imu_odom_: 1691062887.469968983 0.126893 -0.234632 10.0006 -0.0479369 -0.0106526 0.0308927 0.18 0 pose: 0.7890581 -3.08485 -3.84233 0 0.00632087 0.000886747 0.994802 0.101632 uwb: 0.0 1254.68 1310.6 +imu_odom_: 1691062887.497059150 0.514753 -0.387861 10.4627 -0.0436758 -0.0287621 0.0351537 0.18 0 pose: 0.0 -3.08485 -3.84233 0 0.00632087 0.000886747 0.994802 0.101632 uwb: 0.49932166 1254.54 1311.54 +imu_odom_: 1691062887.522108936 0.521936 -0.0981623 10.1658 -0.0553937 0.0106526 0.0458064 0.18 0 pose: 0.52117496 -3.09378 -3.83783 0 0.00417006 -5.80511e-060.994838 0.101386 uwb: 0.0 1254.54 1311.54 +imu_odom_: 1691062887.539031905 0.397437 -0.292093 9.35415 -0.076699 -0.0319579 0.0479369 0.18 0 pose: 0.0 -3.09378 -3.83783 0 0.00417006 -5.80511e-060.994838 0.101386 uwb: 0.49974455 1254.86 1312.49 +imu_odom_: 1691062887.555966832 1.0343 -0.225055 10.2017 -0.0426106 0.00213053 0.0287621 0.23 0.02 pose: 0.53202432 -3.10272 -3.83334 0 0.00365258 -0.00164652 0.994828 0.101494 uwb: 0.0 1254.86 1312.49 +imu_odom_: 1691062887.580998245 0.720655 -0.0766145 10.6207 -0.0490022 0.00213053 0.0543285 0.23 0.02 pose: 0.0 -3.10272 -3.83334 0 0.00365258 -0.00164652 0.994828 0.101494 uwb: 0.0 1254.86 1312.49 +imu_odom_: 1691062887.603942612 0.579397 -0.25618 10.1299 -0.0436758 -0.0447411 0.0575243 0.2 0 pose: 0.75678412 -3.12283 -3.83443 0 0.00681115 -4.28807e-050.994834 0.101291 uwb: 0.50152652 1254.28 1314.02 +imu_odom_: 1691062887.630068877 0.593762 -0.160412 10.1442 -0.0532632 -0.0234358 0.0383495 0.2 0 pose: 0.0 -3.12283 -3.83443 0 0.00681115 -4.28807e-050.994834 0.101291 uwb: 0.0 1254.28 1314.02 +imu_odom_: 1691062887.656992221 0.802058 -0.167594 10.0868 -0.0468716 -0.0213053 0.0585895 0.25 0 pose: 0.5984942 -3.12508 -3.8333 0 0.00724166 -0.0005352350.994836 0.101234 uwb: 0.49855754 1252.3 1316.06 +imu_odom_: 1691062887.673003785 0.452504 -0.344765 9.39485 -0.0639159 0.00426106 0.0553937 0.25 0 pose: 0.0 -3.12508 -3.8333 0 0.00724166 -0.0005352350.994836 0.101234 uwb: 0.0 1252.3 1316.06 +imu_odom_: 1691062887.700079369 0.581791 -0.251391 9.79228 -0.0596548 -0.0447411 0.0575243 0.18 0.02 pose: 0.50158777 -3.13402 -3.82882 0 0.0103401 0.000548951 0.994829 0.10104 uwb: 0.50142153 1253.38 1316.28 +imu_odom_: 1691062887.726085766 0.52433 -0.28491 10.0868 -0.0490022 0.00639159 0.0308927 0.18 -0.02 pose: 0.62937405 -3.14296 -3.82434 0 0.009866 -0.00256688 0.99489 0.10045 uwb: 0.0 1253.38 1316.28 +imu_odom_: 1691062887.753052857 0.483629 -0.191536 9.91678 -0.0703074 -0.0149137 0.0607201 0.18 -0.02 pose: 0.0 -3.14296 -3.82434 0 0.009866 -0.00256688 0.99489 0.10045 uwb: 0.49872961 1252.61 1317.02 +imu_odom_: 1691062887.779064212 0.428562 -0.124498 9.87608 -0.0468716 0.0255663 0.0415453 0.18 0.02 pose: 0.7891456 -3.14296 -3.82434 0 0.0090863 -0.0028127 0.994894 0.10048 uwb: 0.0 1252.61 1317.02 +imu_odom_: 1691062887.805942933 0.280122 -0.533907 9.66779 -0.0820254 -0.00958738 0.0649811 0.18 0.02 pose: 0.0 -3.14296 -3.82434 0 0.0090863 -0.0028127 0.994894 0.10048 uwb: 0.50056408 1251.74 1318.76 +imu_odom_: 1691062887.830978137 0.761356 -0.37589 10.0652 -0.0585895 0.0298274 0.0298274 0.18 0.02 pose: 0.52965905 -3.15637 -3.82881 0 0.00524306 -0.0007372950.994946 0.100274 uwb: 0.0 1251.74 1318.76 +imu_odom_: 1691062887.858084053 0.720655 -0.387861 10.2639 -0.0596548 0.00106526 0.0447411 0.21 0 pose: 0.53039984 -3.16531 -3.82433 0 0.00299344 -0.00207918 0.994985 0.0999575 uwb: 0.50111822 1252.31 1318.91 +imu_odom_: 1691062887.874063828 0.189142 -0.143652 9.27035 -0.0553937 0.0234358 0.0458064 0.21 0 pose: 0.0 -3.16531 -3.82433 0 0.00299344 -0.00207918 0.994985 0.0999575 uwb: 0.0 1252.31 1318.91 +imu_odom_: 1691062887.891140496 0.28491 -0.40462 9.59835 -0.0639159 -0.00852212 0.0490022 0.21 0 pose: 0.0 -3.16531 -3.82433 0 0.00299344 -0.00207918 0.994985 0.0999575 uwb: 0.49810839 1249.52 1322.26 +imu_odom_: 1691062887.916088497 0.354342 -0.268151 9.98382 -0.036219 -0.0308927 0.0426106 0.18 0 pose: 0.77163782 -3.17927 -3.81736 0 0.0032126 -0.0045063 0.994989 0.099832 uwb: 0.0 1249.52 1322.26 +imu_odom_: 1691062887.943093502 0.636858 -0.433351 9.87369 -0.0532632 -0.036219 0.0500674 0.21 0 pose: 0.7878623 -3.18319 -3.81536 0 0.00257991 -0.00418448 0.994994 0.0998173 uwb: 0.50291478 1247.83 1324.15 +imu_odom_: 1691062887.969257098 0.507571 -0.203507 10.1203 -0.0511327 0.00639159 0.0660464 0.18 0.02 pose: 0.44074383 -3.18644 -3.82173 0 0.00362459 -0.00533482 0.995002 0.099646 uwb: 0.0 1247.83 1324.15 +imu_odom_: 1691062887.995985328 0.241814 -0.035913 10.0078 -0.0436758 0.0138484 0.0383495 0.25 0 pose: 0.0 -3.18644 -3.82173 0 0.00362459 -0.00533482 0.995002 0.099646 uwb: 0.49870919 1247.44 1325.4 +imu_odom_: 1691062888.21119401 0.25618 0.122104 10.3573 -0.0745685 -0.00958738 0.0660464 0.25 0 pose: 0.32971282 -3.19664 -3.81972 0 0.00373214 -0.00221021 0.995046 0.0993211 uwb: 0.0 1247.44 1325.4 +imu_odom_: 1691062888.48001914 0.416591 -0.155623 10.0533 -0.0575243 0.00639159 0.0383495 0.23 0 pose: 0.45054617 -3.20305 -3.81646 0 0.00125474 0.00145375 0.995085 0.0990106 uwb: 0.49858087 1247.2 1326.26 +imu_odom_: 1691062888.72924542 0.414197 -0.179565 10.4962 -0.072438 -0.00532632 0.0596548 0.23 0 pose: 0.7073087 -3.20556 -3.81518 0 0.00107768 0.00214398 0.995083 0.0990158 uwb: 0.0 1247.2 1326.26 +imu_odom_: 1691062888.99912048 1.00796 -0.0407014 10.173 -0.0671117 0.00426106 0.0372843 0.23 -0.02 pose: 0.44732054 -3.21185 -3.81198 0 0.000693186 0.00137438 0.995108 0.0987802 uwb: 0.50289729 1246.11 1327.79 +imu_odom_: 1691062888.115953070 0.280122 -0.272939 9.56723 -0.0777643 0.0234358 0.0500674 0.23 -0.02 pose: 0.0 -3.21185 -3.81198 0 0.000693186 0.00137438 0.995108 0.0987802 uwb: 0.0 1246.11 1327.79 +imu_odom_: 1691062888.140973400 0.296881 -0.191536 10.1323 -0.0340885 0.00639159 0.0319579 0.23 0 pose: 0.43028528 -3.2195 -3.80809 0 0.00150773 0.000849735 0.995113 0.0987244 uwb: 0.49863337 1246.56 1328.39 +imu_odom_: 1691062888.163951016 0.586579 -0.0143652 9.7875 -0.0532632 0.0234358 0.0383495 0.23 0 pose: 0.0 -3.2195 -3.80809 0 0.00150773 0.000849735 0.995113 0.0987244 uwb: 0.0 1246.56 1328.39 +imu_odom_: 1691062888.179900750 0.318429 -0.229843 10.1323 -0.0351537 0.056459 0.0394148 0.18 -0.02 pose: 0.47997946 -3.23397 -3.81196 0 0.000499147 0.00279203 0.9951 0.0988307 uwb: 0.0 1246.56 1328.39 +imu_odom_: 1691062888.206973710 0.529119 -0.237026 10.398 -0.0543285 0.00426106 0.0511327 0.18 -0.02 pose: 0.0 -3.23397 -3.81196 0 0.000499147 0.00279203 0.9951 0.0988307 uwb: 0.49978538 1247.19 1328.63 +imu_odom_: 1691062888.232053829 0.574608 -0.296881 9.87608 -0.0351537 0.00852212 0.0383495 0.25 0 pose: 0.23145606 -3.23683 -3.8105 0 -0.0006939940.00179855 0.995106 0.0987918 uwb: 0.0 1247.19 1328.63 +imu_odom_: 1691062888.258906010 0.481235 0.191536 10.0461 -0.04048 0.0213053 0.0490022 0.21 -0.02 pose: 0.44957207 -3.24318 -3.80727 0 0.0028009 -0.0004183510.995115 0.0986863 uwb: 0.49774968 1246.9 1330.04 +imu_odom_: 1691062888.283980878 0.11971 -0.122104 10.0509 -0.0394148 0.0308927 0.0351537 0.21 -0.02 pose: 0.6887014 -3.24574 -3.80597 0 0.002823 0.00032217 0.995118 0.0986558 uwb: 0.0 1246.9 1330.04 +imu_odom_: 1691062888.300890141 0.502782 -0.311246 9.65821 -0.0575243 -0.0276969 0.0426106 0.23 0 pose: 0.0 -3.24574 -3.80597 0 0.002823 0.00032217 0.995118 0.0986558 uwb: 0.0 1246.9 1330.04 +imu_odom_: 1691062888.326950493 0.457293 -0.105345 10.0509 -0.0490022 -0.0351537 0.0468716 0.23 0 pose: 0.51970505 -3.25467 -3.80147 0 0.000418595 0.00261207 0.995122 0.0986173 uwb: 0.0 1246.9 1330.04 +imu_odom_: 1691062888.354143904 0.804452 -0.301669 9.63187 -0.0543285 0.00852212 0.0319579 0.23 -0.02 pose: 0.36039145 -3.25467 -3.80147 0 0.0028262 0.00394599 0.995125 0.0985062 uwb: 0.99933162 1245.08 1332.42 +imu_odom_: 1691062888.378924498 0.158017 -0.19393 9.92157 -0.0511327 0.0213053 0.0383495 0.23 -0.02 pose: 0.7076587 -3.25467 -3.80147 0 0.00338917 0.0035913 0.995122 0.0985294 uwb: 0.0 1245.08 1332.42 +imu_odom_: 1691062888.395916881 0.45011 -0.316035 10.252 -0.0639159 -0.00958738 0.0330232 0.22 0 pose: 0.0 -3.25467 -3.80147 0 0.00338917 0.0035913 0.995122 0.0985294 uwb: 0.50005078 1243.81 1334.35 +imu_odom_: 1691062888.422059770 0.938527 -0.260968 10.094 -0.0447411 -0.04048 0.052198 0.22 0 pose: 0.44897418 -3.26807 -3.80599 0 0.00219797 0.0026236 0.99512 0.0986162 uwb: 0.0 1243.81 1334.35 +imu_odom_: 1691062888.448906410 0.529119 0.00718261 10.1969 -0.0415453 0.0117179 0.036219 0.25 0 pose: 0.43135272 -3.27703 -3.80155 0 0.00518021 0.000333894 0.995123 0.0985003 uwb: 0.50125530 1244.67 1334.3 +imu_odom_: 1691062888.473916241 0.792481 -0.222661 10.1682 -0.0468716 0.056459 0.0479369 0.19 0 pose: 0.0 -3.27703 -3.80155 0 0.00518021 0.000333894 0.995123 0.0985003 uwb: 0.0 1244.67 1334.3 +imu_odom_: 1691062888.490981535 0.232238 0.0047884 10.0676 -0.0372843 -0.02024 0.0245011 0.23 -0.02 pose: 0.51856471 -3.28599 -3.79711 0 0.00712378 0.00241684 0.995115 0.0984362 uwb: 0.0 1244.67 1334.3 +imu_odom_: 1691062888.516916187 0.483629 -0.143652 10.0748 -0.0692422 -0.0394148 0.0692422 0.23 -0.02 pose: 0.0 -3.28599 -3.79711 0 0.00712378 0.00241684 0.995115 0.0984362 uwb: 0.0 1244.67 1334.3 +imu_odom_: 1691062888.544050977 1.06781 -0.0646434 10.2448 -0.0479369 -0.0170442 0.0181095 0.18 0.02 pose: 0.25186862 -3.29495 -3.79268 0 0.00518319 0.0032309 0.995123 0.0984573 uwb: 0.0 1244.67 1334.3 +imu_odom_: 1691062888.569906591 0.521936 -0.289698 9.59835 -0.0745685 0.0383495 0.0447411 0.19 0 pose: 0.44947874 -3.29813 -3.79909 0 0.00664299 0.00289486 0.995112 0.0984826 uwb: 0.0 1244.67 1334.3 +imu_odom_: 1691062888.596890890 0.433351 -0.328006 9.67497 -0.0681769 -0.036219 0.0479369 0.19 0 pose: 0.7997033 -3.29939 -3.80164 0 0.0063807 0.0020394 0.995119 0.0984573 uwb: 0.150156686 1245.03 1333.57 +imu_odom_: 1691062888.612952327 0.550666 -0.526724 10.1179 -0.0575243 0.0138484 0.0649811 0.2 0.02 pose: 0.44842880 -3.30835 -3.7972 0 0.00455217 -0.00221701 0.995146 0.098278 uwb: 0.0 1245.03 1333.57 +imu_odom_: 1691062888.639940417 0.684742 0.0167594 10.082 -0.04048 0.00639159 0.0383495 0.2 0.02 pose: 0.0 -3.30835 -3.7972 0 0.00455217 -0.00221701 0.995146 0.098278 uwb: 0.49814049 1245.47 1334.18 +imu_odom_: 1691062888.665033076 0.483629 -0.196325 10.0341 -0.0596548 0.0223706 0.0490022 0.17 0 pose: 0.43049527 -3.31732 -3.79277 0 0.00606293 -0.00145799 0.995157 0.0980997 uwb: 0.0 1245.47 1334.18 +imu_odom_: 1691062888.682089038 -0.138864 -0.203507 10.07 -0.0372843 0.0319579 0.0490022 0.17 0 pose: 0.0 -3.31732 -3.79277 0 0.00606293 -0.00145799 0.995157 0.0980997 uwb: 0.0 1245.47 1334.18 +imu_odom_: 1691062888.698026523 0.399832 -0.21069 10.1131 -0.0532632 -0.0213053 0.0490022 0.18 -0.02 pose: 0.0 -3.31732 -3.79277 0 0.00606293 -0.00145799 0.995157 0.0980997 uwb: 0.49864795 1242.24 1337.11 +imu_odom_: 1691062888.725081693 0.727837 -0.131681 9.80426 -0.0458064 0.00958738 0.0351537 0.18 -0.02 pose: 0.42148621 -3.32628 -3.78834 0 0.0019782 0.000659774 0.995193 0.0979131 uwb: 0.0 1242.24 1337.11 +imu_odom_: 1691062888.741025594 -0.0023942 -0.196325 10.1801 -0.0500674 0.0117179 0.0585895 0.2 0.02 pose: 0.0 -3.32628 -3.78834 0 0.0019782 0.000659774 0.995193 0.0979131 uwb: 0.49994871 1244.6 1336.04 +imu_odom_: 1691062888.767910732 0.6608 -0.177171 10.1801 -0.0500674 -0.02024 0.036219 0.2 0.02 pose: 0.42992655 -3.33262 -3.78522 0 0.00306407 0.000851262 0.995191 0.0978973 uwb: 0.0 1244.6 1336.04 +imu_odom_: 1691062888.793953586 0.703895 -0.411803 10.3142 -0.0681769 -0.00213053 0.0543285 0.18 0.02 pose: 0.42829039 -3.34605 -3.78974 0 0.0042617 0.000991877 0.995197 0.0977898 uwb: 0.50009745 1245.79 1336.45 +imu_odom_: 1691062888.810881222 0.11971 -0.160412 9.42837 -0.0415453 -0.00213053 0.0191748 0.18 0.02 pose: 0.0 -3.34605 -3.78974 0 0.0042617 0.000991877 0.995197 0.0977898 uwb: 0.0 1245.79 1336.45 +imu_odom_: 1691062888.836013837 0.114922 -0.323217 9.414 -0.0788296 0.0117179 0.056459 0.18 0 pose: 0.42970490 -3.34864 -3.78846 0 0.00418544 -0.0006579890.995201 0.0977609 uwb: 0.0 1245.79 1336.45 +imu_odom_: 1691062888.862870393 0.196325 -0.0622492 9.40921 -0.0511327 -0.015979 0.0383495 0.18 0 pose: 0.0 -3.34864 -3.78846 0 0.00418544 -0.0006579890.995201 0.0977609 uwb: 0.50029577 1243.82 1338.69 +imu_odom_: 1691062888.887872349 0.407014 -0.40462 9.7875 -0.0660464 -0.0372843 0.056459 0.19 0 pose: 0.51989171 -3.35761 -3.78404 0 -0.00034797 0.000463881 0.995229 0.0975645 uwb: 0.50091116 1243.98 1340.17 +imu_odom_: 1691062888.914879980 0.356736 -0.011971 10.0437 -0.0426106 -0.015979 0.0372843 0.21 0 pose: 0.0 -3.35761 -3.78404 0 -0.00034797 0.000463881 0.995229 0.0975645 uwb: 0.0 1243.98 1340.17 +imu_odom_: 1691062888.939868811 0.59855 -0.361524 9.93115 -0.0553937 0.0117179 0.0511327 0.21 0 pose: 0.32035087 -3.36658 -3.77962 0 -7.55852e-05-0.00146729 0.995248 0.0973632 uwb: 0.49997787 1243.75 1341.09 +imu_odom_: 1691062888.957119012 0.433351 -0.179565 9.96467 -0.0436758 -0.052198 0.0553937 0.21 0.02 pose: 0.0 -3.36658 -3.77962 0 -7.55852e-05-0.00146729 0.995248 0.0973632 uwb: 0.0 1243.75 1341.09 +imu_odom_: 1691062888.972867800 0.457293 -0.158017 9.73243 -0.0575243 0 0.103331 0.21 0.02 pose: 0.44963331 -3.37287 -3.77653 0 0.00144603 -0.00108589 0.995259 0.0972405 uwb: 0.0 1243.75 1341.09 +imu_odom_: 1691062888.989868057 0.442927 -0.304064 9.72046 -0.0639159 0.0490022 0.184291 0.21 0.02 pose: 0.0 -3.37287 -3.77653 0 0.00144603 -0.00108589 0.995259 0.0972405 uwb: 0.50049118 1245.4 1340.89 +imu_odom_: 1691062889.7861089 0.497994 -0.318429 10.1418 -0.0351537 -0.0490022 0.246076 0.18 0.2 pose: 0.7210454 -3.37554 -3.77518 0 0.00168963 -0.0003421290.995265 0.0971847 uwb: 0.0 1245.4 1340.89 +imu_odom_: 1691062889.21863480 0.553061 -0.347159 9.78031 -0.052198 -0.0213053 0.3036 0.18 0.2 pose: 0.0 -3.37554 -3.77518 0 0.00168963 -0.0003421290.995265 0.0971847 uwb: 0.0 1245.4 1340.89 +imu_odom_: 1691062889.37858421 0.550666 -0.217872 9.84735 -0.0490022 -0.00958738 0.367516 0.18 0.2 pose: 0.0 -3.37554 -3.77518 0 0.00168963 -0.0003421290.995265 0.0971847 uwb: 0.49909418 1246.67 1340.75 +imu_odom_: 1691062889.53848112 0.337582 -0.514753 9.81144 -0.0585895 0 0.400539 0.18 0.32 pose: 0.50911234 -3.38898 -3.77962 0 0.00248422 -0.0003444810.995518 0.0945436 uwb: 0.0 1246.67 1340.75 +imu_odom_: 1691062889.69843344 0.670376 -0.138864 9.7875 -0.0468716 0.00852212 0.425041 0.18 0.35 pose: 0.0 -3.38898 -3.77962 0 0.00248422 -0.0003444810.995518 0.0945436 uwb: 0.0 1246.67 1340.75 +imu_odom_: 1691062889.85997234 0.378284 -0.517148 9.91199 -0.0692422 -0.052198 0.472977 0.18 0.35 pose: 0.0 -3.38898 -3.77962 0 0.00248422 -0.0003444810.995518 0.0945436 uwb: 0.0 1246.67 1340.75 +imu_odom_: 1691062889.101993050 0.54109 -0.0814029 9.77313 -0.052198 -0.0106526 0.48363 0.18 0.35 pose: 0.62863620 -3.39794 -3.77519 0 0.00498743 -0.00264591 0.996378 0.0848512 uwb: 0.50031036 1246.82 1341.6 +imu_odom_: 1691062889.118855648 0.402226 -0.0981623 10.2903 -0.0575243 -0.0426106 0.54222 0.21 0.47 pose: 0.0 -3.39794 -3.77519 0 0.00498743 -0.00264591 0.996378 0.0848512 uwb: 0.0 1246.82 1341.6 +imu_odom_: 1691062889.137001797 0.761356 -0.629675 10.003 -0.0756338 0.0191748 0.563525 0.21 0.47 pose: 0.31034146 -3.39794 -3.77519 0 0.00536759 -0.00310944 0.996908 0.07833 uwb: 0.49969207 1248.23 1341.65 +imu_odom_: 1691062889.153007820 0.229843 -0.703895 10.0916 -0.036219 0.0234358 0.570982 0.18 0.53 pose: 0.45113532 -3.40967 -3.77632 0 0.00563986 -0.00257999 0.997725 0.0671299 uwb: 0.0 1248.23 1341.65 +imu_odom_: 1691062889.170002828 0.246603 -0.318429 9.73004 -0.0458064 0 0.590156 0.18 0.53 pose: 0.0 -3.40967 -3.77632 0 0.00563986 -0.00257999 0.997725 0.0671299 uwb: 0.0 1248.23 1341.65 +imu_odom_: 1691062889.187989736 0.553061 -0.162806 9.84017 -0.0319579 -0.0585895 0.618919 0.18 0.53 pose: 0.0 -3.40967 -3.77632 0 0.00563986 -0.00257999 0.997725 0.0671299 uwb: 0.50137196 1247.64 1343.36 +imu_odom_: 1691062889.205161774 0.383072 -0.191536 9.83299 -0.056459 -0.0319579 0.638093 0.18 0.61 pose: 0.6010024 -3.41135 -3.77971 0 0.0051963 -0.00300722 0.997832 0.0655329 uwb: 0.0 1247.64 1343.36 +imu_odom_: 1691062889.221983250 0.984017 -0.486023 10.2879 -0.0383495 -0.0852212 0.633832 0.18 0.58 pose: 0.0 -3.41135 -3.77971 0 0.0051963 -0.00300722 0.997832 0.0655329 uwb: 0.0 1247.64 1343.36 +imu_odom_: 1691062889.239853206 0.864307 -0.227449 10.07 -0.0553937 -0.0436758 0.637028 0.18 0.58 pose: 0.68941307 -3.4203 -3.77524 0 0.00403 -0.00165508 0.998939 0.0458551 uwb: 0.50053494 1249.47 1343.37 +imu_odom_: 1691062889.256990539 1.96564 -0.560243 10.0245 -0.0511327 -0.111853 0.64342 0.14 0.44 pose: 0.0 -3.4203 -3.77524 0 0.00403 -0.00165508 0.998939 0.0458551 uwb: 0.0 1249.47 1343.37 +imu_odom_: 1691062889.274008003 1.71425 -0.416591 9.50498 -0.0266316 -0.0372843 0.50174 0.14 0.44 pose: 0.0 -3.4203 -3.77524 0 0.00403 -0.00165508 0.998939 0.0458551 uwb: 0.0 1249.47 1343.37 +imu_odom_: 1691062889.291998703 1.25217 0.203507 10.173 -0.0372843 0.0383495 0.400539 0.14 0.44 pose: 0.35095658 -3.42924 -3.77076 0 0.00852946 -0.00227066 0.999335 0.0353737 uwb: 0.49809966 1247.32 1346.08 +imu_odom_: 1691062889.308990210 0.931344 0.0263362 9.79947 -0.0628506 0.0234358 0.381365 0.16 0.44 pose: 0.35009914 -3.42924 -3.77076 0 0.0124576 -0.00210958 0.999556 0.0269943 uwb: 0.0 1247.32 1346.08 +imu_odom_: 1691062889.323988584 0.861913 -0.234632 9.85214 -0.0639159 0.0245011 0.340885 0.16 0.44 pose: 0.0 -3.42924 -3.77076 0 0.0124576 -0.00210958 0.999556 0.0269943 uwb: 0.0 1247.32 1346.08 +imu_odom_: 1691062889.341842500 0.737414 -0.191536 9.97185 -0.052198 -0.015979 0.3036 0.1 0.29 pose: 0.41929884 -3.4426 -3.77531 0 0.015337 -0.0006774870.999681 0.0200643 uwb: 0.49991663 1247.13 1347.11 +imu_odom_: 1691062889.359886279 0.97444 -0.0311246 9.65821 -0.052198 -0.0149137 0.3036 0.1 0.29 pose: 0.0 -3.4426 -3.77531 0 0.015337 -0.0006774870.999681 0.0200643 uwb: 0.0 1247.13 1347.11 +imu_odom_: 1691062889.375938383 0.912191 -0.205901 9.90002 -0.0458064 -0.015979 0.311057 0.1 0.29 pose: 0.0 -3.4426 -3.77531 0 0.015337 -0.0006774870.999681 0.0200643 uwb: 0.0 1247.13 1347.11 +imu_odom_: 1691062889.392828105 0.756568 -0.155623 9.76355 -0.0458064 0.0234358 0.275903 0.1 0.26 pose: 0.8065862 -3.44262 -3.77533 0 0.0159779 -0.0001351350.999692 0.0190082 uwb: 0.50156446 1245.69 1348.93 +imu_odom_: 1691062889.418970703 0.562637 -0.0742203 9.45231 -0.0479369 -0.00532632 0.252468 0.07 0.2 pose: 0.0 -3.44262 -3.77533 0 0.0159779 -0.0001351350.999692 0.0190082 uwb: 0.0 1245.69 1348.93 +imu_odom_: 1691062889.435962503 0.466869 -0.196325 10.1658 -0.0585895 0.0330232 0.230097 0.07 0.2 pose: 0.68938099 -3.4516 -3.77093 0 0.0178594 0.0028022 0.999783 0.0103395 uwb: 0.0 1245.69 1348.93 +imu_odom_: 1691062889.453901580 0.11971 -0.253785 9.9934 -0.0436758 0.0298274 0.124636 0.09 0.29 pose: 0.0 -3.4516 -3.77093 0 0.0178594 0.0028022 0.999783 0.0103395 uwb: 0.49980581 1248.24 1348.02 +imu_odom_: 1691062889.467904845 -1.13246 0.390255 9.414 -0.0298274 0.0756338 0.111853 0.09 0.29 pose: 0.0 -3.4516 -3.77093 0 0.0178594 0.0028022 0.999783 0.0103395 uwb: 0.0 1248.24 1348.02 +imu_odom_: 1691062889.484996097 -1.18992 -0.390255 10.0556 -0.0798948 -0.0234358 0.219444 0.09 0.29 pose: 0.25885655 -3.4516 -3.77093 0 0.0153479 0.00345391 0.999847 0.00769083 uwb: 0.0 1248.24 1348.02 +imu_odom_: 1691062889.502993213 -0.0957681 -0.696713 9.90002 -0.0426106 -0.102265 0.18216 0.1 0.17 pose: 0.48144938 -3.4516 -3.77093 0 0.00969508 0.00343111 0.999935 0.00492359 uwb: 0.49907668 1247.71 1349.2 +imu_odom_: 1691062889.518971821 0.593762 -0.071826 9.51935 -0.0234358 -0.0234358 0.168312 0.1 0.17 pose: 0.0 -3.4516 -3.77093 0 0.00969508 0.00343111 0.999935 0.00492359 uwb: 0.0 1247.71 1349.2 +imu_odom_: 1691062889.536855485 0.603339 0.0335188 9.61511 -0.0777643 0.0426106 0.237554 0.12 0.11 pose: 0.43948683 -3.45655 -3.7684 0 0.00896399 0.00389616 0.999951 0.00172517 uwb: 0.50081200 1248 1349.61 +imu_odom_: 1691062889.552895340 -0.0287304 -0.447716 9.79707 -0.0543285 0.052198 0.198139 0.12 0.11 pose: 0.0 -3.45655 -3.7684 0 0.00896399 0.00389616 0.999951 0.00172517 uwb: 0.0 1248 1349.61 +imu_odom_: 1691062889.569838142 0.174777 -0.308852 10.1227 -0.052198 -0.00426106 0.162985 0.12 0.11 pose: 0.0 -3.45655 -3.7684 0 0.00896399 0.00389616 0.999951 0.00172517 uwb: 0.0 1248 1349.61 +imu_odom_: 1691062889.588315021 0.399832 -0.0454898 10.2759 -0.0490022 -0.0223706 0.188552 0.13 0.08 pose: 0.8022115 -3.46055 -3.76647 0 0.0089169 0.00459042 0.999949 0.000937758 uwb: 0.50117365 1247.16 1352.33 +imu_odom_: 1691062889.605149913 0.924162 -0.265756 9.57681 -0.0639159 -0.02024 0.198139 0.2 0.2 pose: 0.0 -3.46055 -3.76647 0 0.0089169 0.00459042 0.999949 0.000937758 uwb: 0.0 1247.16 1352.33 +imu_odom_: 1691062889.620963739 0.253785 -0.19393 9.8282 -0.056459 0.0468716 0.165116 0.2 0.2 pose: 0.67878535 -3.47397 -3.771 0 0.0048966 0.00485744 0.999967 -0.00423509 uwb: 0.0 1247.16 1352.33 +imu_odom_: 1691062889.638904566 0.0287304 0.122104 9.87369 -0.0575243 -0.0149137 0.174703 0.19 0.11 pose: 0.0 -3.47397 -3.771 0 0.0048966 0.00485744 0.999967 -0.00423509 uwb: 0.49738511 1245.3 1354.26 +imu_odom_: 1691062889.656016525 0.438139 -0.174777 9.94073 -0.0830906 -0.0852212 0.175769 0.19 0.11 pose: 0.0 -3.47397 -3.771 0 0.0048966 0.00485744 0.999967 -0.00423509 uwb: 0.0 1245.3 1354.26 +imu_odom_: 1691062889.671840559 0.61531 -0.268151 10.3022 -0.0575243 -0.056459 0.143811 0.19 0.11 pose: 0.34153631 -3.47397 -3.771 0 0.00336601 0.00446628 0.999963 -0.00658539 uwb: 0.0 1245.3 1354.26 +imu_odom_: 1691062889.689148799 0.826 -0.143652 9.59117 -0.0607201 -0.00532632 0.151268 0.18 0.08 pose: 0.42814457 -3.48294 -3.76657 0 0.00450085 0.00209868 0.999945 -0.00924008 uwb: 0.0 1245.3 1354.26 +imu_odom_: 1691062889.706836474 1.15161 -0.0957681 10.1131 -0.052198 -0.00426106 0.160855 0.18 0.08 pose: 0.7109835 -3.48294 -3.76657 0 0.00521376 0.00215168 0.999938 -0.00963811 uwb: 0.0 1245.3 1354.26 +imu_odom_: 1691062889.720863363 1.1995 -0.198719 9.75398 -0.0628506 -0.0436758 0.199204 0.18 0.08 pose: 0.0 -3.48294 -3.76657 0 0.00521376 0.00215168 0.999938 -0.00963811 uwb: 0.0 1245.3 1354.26 +imu_odom_: 1691062889.737907076 1.06063 -0.241814 10.0987 -0.0692422 0.0415453 0.24288 0.12 0.08 pose: 0.41912969 -3.48731 -3.77556 0 0.00967555 0.00237156 0.999873 -0.012406 uwb: 0.100174358 1245.39 1355.05 +imu_odom_: 1691062889.751894301 1.9417 -0.368707 10.5153 -0.0383495 -0.0447411 0.204531 0.11 0.05 pose: 0.0 -3.48731 -3.77556 0 0.00967555 0.00237156 0.999873 -0.012406 uwb: 0.0 1245.39 1355.05 +imu_odom_: 1691062889.767947280 1.67115 0.0143652 9.68455 -0.0383495 0.00106526 0.137419 0.11 0.05 pose: 0.0 -3.48731 -3.77556 0 0.00967555 0.00237156 0.999873 -0.012406 uwb: 0.0 1245.39 1355.05 +imu_odom_: 1691062889.782944779 1.47722 0.0287304 10.1562 -0.0617853 0.00852212 0.125701 0.11 0.05 pose: 0.23047612 -3.48731 -3.77556 0 0.0116956 0.00195914 0.999822 -0.0146414 uwb: 0.0 1245.39 1355.05 +imu_odom_: 1691062889.799825751 0.708684 -0.0670376 9.52174 -0.0735032 0.0351537 0.0980043 0.1 0.05 pose: 0.0 -3.48731 -3.77556 0 0.0116956 0.00195914 0.999822 -0.0146414 uwb: 0.50225858 1244.64 1356.62 +imu_odom_: 1691062889.813821434 0.514753 -0.126893 10.07 -0.0671117 0.0191748 0.0820254 0.1 0.05 pose: 0.0 -3.48731 -3.77556 0 0.0116956 0.00195914 0.999822 -0.0146414 uwb: 0.0 1244.64 1356.62 +imu_odom_: 1691062889.829808500 0.608127 -0.251391 10.1179 -0.052198 -0.0276969 0.0639159 0.07 0.05 pose: 0.31037646 -3.49631 -3.77118 0 0.0148096 0.00252489 0.999753 -0.0163882 uwb: 0.0 1244.64 1356.62 +imu_odom_: 1691062889.844877453 0.715866 -0.347159 9.5792 -0.052198 -0.0181095 0.0756338 0.07 0.05 pose: 0.45932775 -3.49631 -3.77118 0 0.0135365 0.00357586 0.999747 -0.0175795 uwb: 0.49491485 1243.43 1358.19 +imu_odom_: 1691062889.862059116 0.952892 -0.0790087 9.96467 -0.0585895 -0.00213053 0.113983 0.07 0.05 pose: 0.0 -3.49631 -3.77118 0 0.0135365 0.00357586 0.999747 -0.0175795 uwb: 0.0 1243.43 1358.19 +imu_odom_: 1691062889.876808713 0.785298 -0.368707 9.90002 -0.0532632 -0.00319579 0.128897 0.07 0.05 pose: 0.41177720 -3.49631 -3.77118 0 0.0153598 0.00206904 0.999707 -0.0186194 uwb: 0.0 1243.43 1358.19 +imu_odom_: 1691062889.894031207 0.749385 -0.196325 10.0604 -0.0458064 0.0213053 0.0873517 0.07 0.05 pose: 0.0 -3.49631 -3.77118 0 0.0153598 0.00206904 0.999707 -0.0186194 uwb: 0.50124072 1243.78 1358.71 +imu_odom_: 1691062889.910961469 0.641646 0.0335188 9.80186 -0.052198 -0.00639159 0.0862864 0.07 0.05 pose: 0.0 -3.49631 -3.77118 0 0.0153598 0.00206904 0.999707 -0.0186194 uwb: 0.0 1243.78 1358.71 +imu_odom_: 1691062889.937935560 0.706289 -0.258574 9.78271 -0.0596548 -0.00213053 0.0788296 0.07 0.05 pose: 0.5892781 -3.49631 -3.77118 0 0.0155989 0.00153362 0.999699 -0.0188913 uwb: 0.50059326 1240.97 1360.64 +imu_odom_: 1691062889.962800733 0.299275 -0.129287 9.6199 -0.0553937 0.02024 0.0223706 0.05 0.05 pose: 0.69983663 -3.50849 -3.77339 0 0.0161314 0.000242348 0.999657 -0.0206431 uwb: 0.0 1240.97 1360.64 +imu_odom_: 1691062889.987844978 -1.1995 0.28491 9.46428 -0.0511327 0.0884169 -0.0340885 0.08 0.08 pose: 0.0 -3.50849 -3.77339 0 0.0161314 0.000242348 0.999657 -0.0206431 uwb: 0.49795967 1242.22 1361.13 +imu_odom_: 1691062890.10816470 -0.933739 -0.634463 10.0485 -0.0798948 -0.0596548 0.0862864 0.08 0.08 pose: 0.31002356 -3.50966 -3.77579 0 0.0125018 0.000860741 0.999718 -0.020194 uwb: 0.0 1242.22 1361.13 +imu_odom_: 1691062890.27935137 0.234632 -0.287304 10.0748 -0.0394148 -0.103331 0.0713727 0.08 0.08 pose: 0.0 -3.50966 -3.77579 0 0.0125018 0.000860741 0.999718 -0.020194 uwb: 0.0 1242.22 1361.13 +imu_odom_: 1691062890.52930678 0.663194 -0.0311246 9.73961 -0.0490022 0.0245011 0.0937433 0.1 0 pose: 0.48882812 -3.50966 -3.77579 0 0.00790282 0.000274556 0.999766 -0.0201418 uwb: 0.50125531 1240.48 1362.63 +imu_odom_: 1691062890.78797667 0.0861913 -0.543484 10.2304 -0.0458064 0.0234358 0.0681769 0.12 0.02 pose: 0.35109950 -3.51865 -3.77142 0 0.00835991 0.00232085 0.999743 -0.0209662 uwb: 0.0 1240.48 1362.63 +imu_odom_: 1691062890.102822598 -0.246603 0 9.91918 -0.036219 -0.0234358 0.0500674 0.12 0.02 pose: 0.0 -3.51865 -3.77142 0 0.00835991 0.00232085 0.999743 -0.0209662 uwb: 0.49884921 1239.86 1363.77 +imu_odom_: 1691062890.128935448 0.42138 -0.438139 10.1754 -0.0873517 0.0213053 0.0809601 0.13 0.02 pose: 0.6892847 -3.51865 -3.77142 0 0.00772534 0.00192097 0.999746 -0.0210677 uwb: 0.0 1239.86 1363.77 +imu_odom_: 1691062890.145867168 0.071826 0.0047884 10.0341 -0.0479369 -0.0308927 0.04048 0.13 0.02 pose: 0.0 -3.51865 -3.77142 0 0.00772534 0.00192097 0.999746 -0.0210677 uwb: 0.50043286 1240.65 1364.27 +imu_odom_: 1691062890.171802403 0.407014 -0.179565 10.2615 -0.0671117 0.00532632 0.0745685 0.14 0.02 pose: 0.50151780 -3.51865 -3.77142 0 0.00362904 0.000797503 0.999759 -0.0216193 uwb: 0.0 1240.65 1364.27 +imu_odom_: 1691062890.196812234 0.0909797 -0.268151 9.81144 -0.0607201 -0.0340885 0.0607201 0.14 0.02 pose: 0.0 -3.51865 -3.77142 0 0.00362904 0.000797503 0.999759 -0.0216193 uwb: 0.49992248 1238.34 1366.32 +imu_odom_: 1691062890.221797859 0.28491 -0.0981623 9.88805 -0.0415453 0.0266316 0.0660464 0.14 0.02 pose: 0.43896478 -3.53205 -3.77595 0 0.00125237 0.000170945 0.999754 -0.0221637 uwb: 0.0 1238.34 1366.32 +imu_odom_: 1691062890.238795200 -0.0502782 -0.071826 10.0317 -0.0585895 0.0181095 0.0905475 0.14 0.02 pose: 0.0 -3.53205 -3.77595 0 0.00125237 0.000170945 0.999754 -0.0221637 uwb: 0.50075367 1239.25 1366.31 +imu_odom_: 1691062890.264860511 0.332794 -0.246603 9.64145 -0.0511327 -0.015979 0.0596548 0.16 0.02 pose: 0.48957767 -3.53205 -3.77595 0 -0.00242241 0.00125093 0.999736 -0.0228153 uwb: 0.0 1239.25 1366.31 +imu_odom_: 1691062890.281862518 0.737414 -0.11971 10.0724 -0.0490022 -0.0490022 0.0660464 0.16 0.02 pose: 0.0 -3.53205 -3.77595 0 -0.00242241 0.00125093 0.999736 -0.0228153 uwb: 0.0 1239.25 1366.31 +imu_odom_: 1691062890.307945620 0.1652 -0.217872 10.252 -0.0479369 -0.0266316 0.0777643 0.16 0.02 pose: 0.43974057 -3.54102 -3.77154 0 -0.00542274 0.00242061 0.999704 -0.023575 uwb: 0.49999539 1235.61 1369.13 +imu_odom_: 1691062890.333850816 -0.0622492 0.0263362 9.19852 -0.0298274 0.0191748 0.0553937 0.2 0.02 pose: 0.42163497 -3.5544 -3.77613 0 -0.00316888 0.00111484 0.999704 -0.0241101 uwb: 0.0 1235.61 1369.13 +imu_odom_: 1691062890.355793660 0.328006 -0.371101 10.3717 -0.0777643 -0.0340885 0.0969391 0.14 0.02 pose: 0.0 -3.5544 -3.77613 0 -0.00316888 0.00111484 0.999704 -0.0241101 uwb: 0.49988748 1236.41 1368.96 +imu_odom_: 1691062890.380771993 0.555455 -0.0454898 9.94073 -0.04048 0.0266316 0.0500674 0.16 0 pose: 0.50910943 -3.5544 -3.77613 0 -0.00709101 0.00181494 0.999665 -0.0248453 uwb: 0.0 1236.41 1368.96 +imu_odom_: 1691062890.406788599 0.890643 -0.167594 10.1682 -0.0756338 -0.00319579 0.0809601 0.16 0 pose: 0.0 -3.5544 -3.77613 0 -0.00709101 0.00181494 0.999665 -0.0248453 uwb: 0.49877921 1236.84 1369.63 +imu_odom_: 1691062890.422907491 0.21069 -0.328006 9.85932 -0.0479369 0.0234358 0.0468716 0.17 0 pose: 0.22925412 -3.56339 -3.77176 0 -0.00578847 0.000582091 0.999662 -0.0253318 uwb: 0.0 1236.84 1369.63 +imu_odom_: 1691062890.448780605 0.483629 -0.071826 9.83538 -0.076699 -0.0127832 0.0937433 0.17 0 pose: 0.51011271 -3.57675 -3.7764 0 -0.00254802 0.0010519 0.999658 -0.0259999 uwb: 0.50176570 1240.25 1368.55 +imu_odom_: 1691062890.473778479 0.548272 -0.146046 10.489 -0.0575243 -0.00852212 0.056459 0.17 -0.02 pose: 0.34965875 -3.57675 -3.7764 0 -0.00134389 0.0019708 0.99964 -0.0267391 uwb: 0.0 1240.25 1368.55 +imu_odom_: 1691062890.499809667 0.52433 -0.0550666 10.0916 -0.0830906 0.0287621 0.0681769 0.17 -0.02 pose: 0.0 -3.57675 -3.7764 0 -0.00134389 0.0019708 0.99964 -0.0267391 uwb: 0.49873546 1239.06 1370.24 +imu_odom_: 1691062890.516050469 -0.112527 -0.28491 10.0126 -0.0756338 -0.00426106 0.0703074 0.17 0 pose: 0.51029062 -3.58334 -3.77322 0 0.00239902 0.00404887 0.999615 -0.0273293 uwb: 0.0 1239.06 1370.24 +imu_odom_: 1691062890.541844546 0.0694318 -0.0885855 10.0676 -0.0660464 -0.0117179 0.0596548 0.17 0 pose: 0.0 -3.58334 -3.77322 0 0.00239902 0.00404887 0.999615 -0.0273293 uwb: 0.49960166 1239.42 1370.8 +imu_odom_: 1691062890.566945081 0.466869 -0.342371 9.88805 -0.0937433 0.0149137 0.0681769 0.19 0 pose: 0.42034879 -3.59658 -3.77796 0 -0.00161379 0.00364262 0.999605 -0.0278225 uwb: 0.0 1239.42 1370.8 +imu_odom_: 1691062890.592925814 0.725443 -0.114922 10.0126 -0.0798948 -0.00745685 0.0553937 0.19 0 pose: 0.0 -3.59658 -3.77796 0 -0.00161379 0.00364262 0.999605 -0.0278225 uwb: 0.50232567 1238.96 1372.21 +imu_odom_: 1691062890.617906480 0.797269 -0.383072 11.1953 -0.056459 0.00426106 0.0351537 0.19 0.02 pose: 0.33097276 -3.59911 -3.77675 0 7.51805e-05 0.00102132 0.9996 -0.0282476 uwb: 0.0 1238.96 1372.21 +imu_odom_: 1691062890.634891863 1.13485 -0.354342 9.34217 -0.0415453 -0.0223706 0.0266316 0.19 0.02 pose: 0.0 -3.59911 -3.77675 0 7.51805e-05 0.00102132 0.9996 -0.0282476 uwb: 0.0 1238.96 1372.21 +imu_odom_: 1691062890.661039711 0.785298 -0.272939 9.10994 -0.052198 -0.0213053 0.052198 0.2 0 pose: 0.50853781 -3.60813 -3.77244 0 0.0048096 2.27767e-05 0.999588 -0.0282911 uwb: 0.49793051 1239.79 1372.79 +imu_odom_: 1691062890.686770792 0.407014 -0.0023942 9.87369 -0.0532632 -0.0255663 0.0500674 0.23 0.02 pose: 0.35244108 -3.61244 -3.78146 0 0.00858739 -0.0004543680.99956 -0.0284 uwb: 0.0 1239.79 1372.79 +imu_odom_: 1691062890.712758816 0.68953 -0.208296 10.0987 -0.0436758 -0.0436758 0.0394148 0.23 0.02 pose: 0.6975385 -3.61244 -3.78146 0 0.00823611 0.00010903 0.999562 -0.0284321 uwb: 0.50027246 1241.63 1372.78 +imu_odom_: 1691062890.729913065 0.0023942 -0.208296 10.058 -0.0468716 0.0330232 0.0447411 0.22 0.02 pose: 0.0 -3.61244 -3.78146 0 0.00823611 0.00010903 0.999562 -0.0284321 uwb: 0.0 1241.63 1372.78 +imu_odom_: 1691062890.754822277 0.610521 -0.387861 10.0197 -0.056459 0.0266316 0.0340885 0.22 0.02 pose: 0.51923843 -3.62142 -3.77706 0 0.00952947 0.00144709 0.999546 -0.0285413 uwb: 0.49961332 1244.28 1371.87 +imu_odom_: 1691062890.780807968 0.270545 -0.323217 10.0078 -0.0426106 0.0117179 0.04048 0.22 0.02 pose: 0.34883338 -3.63345 -3.77888 0 0.00854415 -0.00101816 0.999556 -0.0285201 uwb: 0.0 1244.28 1371.87 +imu_odom_: 1691062890.805762969 0.426168 -0.244209 9.85214 -0.056459 -0.0223706 0.0351537 0.22 0.02 pose: 0.8013949 -3.6348 -3.78165 0 0.00771303 -0.00120546 0.999563 -0.0285271 uwb: 0.49891629 1244.17 1372.42 +imu_odom_: 1691062890.831815156 0.550666 -0.543484 9.58878 -0.0788296 -0.0468716 0.0607201 0.21 0 pose: 0.42926743 -3.64101 -3.77861 0 0.00357939 -0.00155686 0.999586 -0.0284916 uwb: 0.0 1244.17 1372.42 +imu_odom_: 1691062890.848864702 0.392649 -0.332794 9.67736 -0.056459 0.00745685 0.0245011 0.21 0 pose: 0.0 -3.64101 -3.77861 0 0.00357939 -0.00155686 0.999586 -0.0284916 uwb: 0.0 1244.17 1372.42 +imu_odom_: 1691062890.873767207 0.596156 -0.131681 9.89524 -0.0436758 -0.0234358 0.0490022 0.25 0.02 pose: 0.43101733 -3.64378 -3.77725 0 0.00318638 -0.00492139 0.999572 -0.028655 uwb: 0.0 1244.17 1372.42 +imu_odom_: 1691062890.896788862 0.775721 -0.129287 9.84256 -0.02024 -0.00532632 0.02024 0.25 0.02 pose: 0.0 -3.64378 -3.77725 0 0.00318638 -0.00492139 0.999572 -0.028655 uwb: 0.100041075 1245.81 1372.07 +imu_odom_: 1691062890.921799277 0.476446 -0.181959 10.1921 -0.0468716 0.0330232 0.0596548 0.18 0 pose: 0.47924160 -3.65716 -3.78184 0 0.00687106 -0.00122115 0.999569 -0.0285287 uwb: 0.0 1245.81 1372.07 +imu_odom_: 1691062890.939794643 0.258574 -0.385466 9.76595 -0.0468716 -0.056459 0.036219 0.18 0 pose: 0.0 -3.65716 -3.78184 0 0.00687106 -0.00122115 0.999569 -0.0285287 uwb: 0.50052036 1245.68 1373.28 +imu_odom_: 1691062890.956744445 0.486023 0.3304 10.3597 -0.0340885 -0.036219 0.0415453 0.22 -0.02 pose: 0.32981200 -3.66614 -3.77744 0 0.00412766 7.93566e-05 0.999578 -0.0287596 uwb: 0.0 1245.68 1373.28 +imu_odom_: 1691062890.980731169 0.395043 -0.023942 10.161 -0.0681769 -0.02024 0.0553937 0.22 -0.02 pose: 0.0 -3.66614 -3.77744 0 0.00412766 7.93566e-05 0.999578 -0.0287596 uwb: 0.0 1245.68 1373.28 +imu_odom_: 1691062890.997886001 0.912191 -0.287304 9.68933 -0.056459 0.036219 0.0394148 0.18 0 pose: 0.50961107 -3.6757 -3.78072 0 0.00288049 0.00332619 0.999572 -0.0289357 uwb: 0.49994581 1247.09 1373.31 +imu_odom_: 1691062891.23890941 0.265756 -0.363919 10.1514 -0.072438 0.0127832 0.0415453 0.18 0 pose: 0.7177498 -3.67952 -3.78203 0 0.00342893 0.00313308 0.99957 -0.0289383 uwb: 0.0 1247.09 1373.31 +imu_odom_: 1691062891.40738666 0.679953 -0.0861913 9.65582 -0.0617853 0.0213053 0.0223706 0.21 0 pose: 0.0 -3.67952 -3.78203 0 0.00342893 0.00313308 0.99957 -0.0289383 uwb: 0.49943542 1246.4 1374.38 +imu_odom_: 1691062891.65866907 0.639252 -0.306458 9.93594 -0.056459 0.0266316 0.0490022 0.19 -0.02 pose: 0.42985365 -3.67952 -3.78203 0 0.00264304 0.00112217 0.999578 -0.0289093 uwb: 0.0 1246.4 1374.38 +imu_odom_: 1691062891.92879206 0.047884 -0.0383072 10.0533 -0.052198 0.0276969 0.0426106 0.21 -0.02 pose: 0.34972875 -3.6885 -3.77764 0 0.00509433 0.000116306 0.999568 -0.028951 uwb: 0.50388600 1248.46 1374.66 +imu_odom_: 1691062891.117892829 0.304064 -0.31364 9.67736 -0.076699 -0.00426106 0.0436758 0.17 0 pose: 0.0 -3.6885 -3.77764 0 0.00509433 0.000116306 0.999568 -0.028951 uwb: 0.0 1248.46 1374.66 +imu_odom_: 1691062891.144943041 0.31364 -0.158017 10.0987 -0.0671117 -0.015979 0.0351537 0.17 0 pose: 0.34943419 -3.69289 -3.78663 0 0.00152654 0.000436625 0.999578 -0.0290041 uwb: 0.49511027 1247.34 1376.52 +imu_odom_: 1691062891.170801865 0.141258 -0.294487 9.71567 -0.0458064 -0.00426106 0.0298274 0.2 -0.02 pose: 0.0 -3.69289 -3.78663 0 0.00152654 0.000436625 0.999578 -0.0290041 uwb: 0.0 1247.34 1376.52 +imu_odom_: 1691062891.197870452 0.500388 -0.0742203 10.1658 -0.0617853 -0.0127832 0.0447411 0.2 -0.02 pose: 0.52222201 -3.70188 -3.78224 0 -0.00249295 0.00029312 0.999578 -0.0289409 uwb: 0.50200778 1248.46 1376.8 +imu_odom_: 1691062891.222734750 0.260968 -0.150835 9.98382 -0.0298274 0.0340885 0.0319579 0.18 -0.02 pose: 0.44837925 -3.71399 -3.78441 0 -0.0019426 0.00134044 0.999579 -0.0289288 uwb: 0.0 1248.46 1376.8 +imu_odom_: 1691062891.239752507 0.251391 -0.323217 9.95988 -0.0820254 -0.02024 0.0553937 0.18 -0.02 pose: 0.0 -3.71399 -3.78441 0 -0.0019426 0.00134044 0.999579 -0.0289288 uwb: 0.49842632 1250.72 1375.92 +imu_odom_: 1691062891.264727924 0.294487 -0.189142 9.69412 -0.0575243 -0.00319579 0.0340885 0.23 0 pose: 0.7893789 -3.71521 -3.78697 0 -0.00285086 0.00167373 0.999577 -0.0288981 uwb: 0.0 1250.72 1375.92 +imu_odom_: 1691062891.291761221 0.531513 -0.260968 9.67257 -0.0692422 -0.0266316 0.0468716 0.23 0 pose: 0.23977683 -3.72423 -3.78267 0 -0.00496904 0.00163376 0.999569 -0.028884 uwb: 0.49934793 1249.45 1377.58 +imu_odom_: 1691062891.307742746 0.634463 -0.129287 9.92636 -0.0394148 -0.00958738 0.0138484 0.23 0 pose: 0.0 -3.72423 -3.78267 0 -0.00496904 0.00163376 0.999569 -0.028884 uwb: 0.0 1249.45 1377.58 +imu_odom_: 1691062891.334738420 0.878672 -0.383072 10.1155 -0.0862864 -0.0149137 0.0681769 0.23 -0.02 pose: 0.41997257 -3.72423 -3.78267 0 -0.00605857 0.00218072 0.999561 -0.0289245 uwb: 0.0 1249.45 1377.58 +imu_odom_: 1691062891.360756193 0.177171 -0.248997 9.69652 -0.0639159 0.0319579 0.0436758 0.23 -0.02 pose: 0.0 -3.72423 -3.78267 0 -0.00605857 0.00218072 0.999561 -0.0289245 uwb: 0.50122032 1251.82 1376.88 +imu_odom_: 1691062891.387767908 0.823605 -0.371101 9.96467 -0.0585895 -0.0660464 0.0468716 0.25 0 pose: 0.44055720 -3.73756 -3.78739 0 -0.00152704 0.00145488 0.99958 -0.028912 uwb: 0.49878214 1252.08 1377.98 +imu_odom_: 1691062891.403731643 0.562637 -0.234632 9.72046 -0.0415453 0.0340885 0.0468716 0.25 0 pose: 0.0 -3.73756 -3.78739 0 -0.00152704 0.00145488 0.99958 -0.028912 uwb: 0.0 1252.08 1377.98 +imu_odom_: 1691062891.430835810 0.347159 -0.280122 9.92636 -0.0468716 -0.0266316 0.0532632 0.25 0 pose: 0.51983632 -3.74659 -3.78309 0 -0.00175277 -0.0003691160.99957 -0.0292623 uwb: 0.0 1252.08 1377.98 +imu_odom_: 1691062891.455767480 0.567426 -0.253785 10.1993 -0.0575243 -0.0245011 0.0543285 0.25 0 pose: 0.0 -3.74659 -3.78309 0 -0.00175277 -0.0003691160.99957 -0.0292623 uwb: 0.50080618 1249.06 1380.6 +imu_odom_: 1691062891.472709116 0.627281 -0.28491 9.663 -0.0671117 -0.0138484 0.0426106 0.23 0 pose: 0.43017155 -3.75992 -3.78783 0 0.00152586 -0.00111982 0.999565 -0.0294396 uwb: 0.0 1249.06 1380.6 +imu_odom_: 1691062891.497922519 0.699107 -0.220267 10.2185 -0.0553937 -0.036219 0.0639159 0.23 0 pose: 0.0 -3.75992 -3.78783 0 0.00152586 -0.00111982 0.999565 -0.0294396 uwb: 0.49940043 1247.75 1382.23 +imu_odom_: 1691062891.522869646 0.4956 -0.035913 10.3238 -0.0436758 -0.0553937 0.0543285 0.22 -0.02 pose: 0.51933177 -3.75992 -3.78783 0 0.00345328 -0.00206275 0.999549 -0.029769 uwb: 0.0 1247.75 1382.23 +imu_odom_: 1691062891.547741236 0.641646 0.253785 10.2879 -0.0713727 -0.0191748 0.0575243 0.22 -0.02 pose: 0.0 -3.75992 -3.78783 0 0.00345328 -0.00206275 0.999549 -0.029769 uwb: 0.50146822 1246.21 1384.23 +imu_odom_: 1691062891.572715195 0.675165 -0.203507 10.0269 -0.0575243 -0.00213053 0.04048 0.18 0 pose: 0.42423940 -3.76895 -3.78355 0 0.00732588 -0.0009337580.999519 -0.0301306 uwb: 0.0 1246.21 1384.23 +imu_odom_: 1691062891.599732451 0.531513 -0.385466 9.82341 -0.0777643 -0.00106526 0.0553937 0.25 0.02 pose: 0.49620979 -3.78227 -3.78831 0 0.00853129 0.00289346 0.999495 -0.0304618 uwb: 0.50069536 1245.03 1386.1 +imu_odom_: 1691062891.624719825 0.248997 -0.299275 9.33739 -0.0660464 0.0287621 0.0351537 0.25 0.02 pose: 0.0 -3.78227 -3.78831 0 0.00853129 0.00289346 0.999495 -0.0304618 uwb: 0.0 1245.03 1386.1 +imu_odom_: 1691062891.641748956 0.466869 -0.0885855 10.1921 -0.0958738 -0.00532632 0.0543285 0.21 0.02 pose: 0.24963751 -3.78227 -3.78831 0 0.00997956 0.00149544 0.999483 -0.0305408 uwb: 0.50025788 1244.11 1387.63 +imu_odom_: 1691062891.666776870 0.23942 0.0047884 10.0413 -0.0628506 -0.0255663 0.0468716 0.21 0.02 pose: 0.52116916 -3.79563 -3.79295 0 0.00623772 -0.0008670820.999508 -0.0307136 uwb: 0.0 1244.11 1387.63 +imu_odom_: 1691062891.690867422 0.342371 -0.201113 10.398 -0.0649811 0.00426106 0.0490022 0.21 0 pose: 0.34922419 -3.80463 -3.78859 0 0.00410919 0.00126326 0.999514 -0.0308625 uwb: 0.49997498 1244.43 1388.15 +imu_odom_: 1691062891.705889129 0.292093 -0.0502782 9.76595 -0.0500674 -0.0127832 0.0468716 0.21 0 pose: 0.0 -3.80463 -3.78859 0 0.00410919 0.00126326 0.999514 -0.0308625 uwb: 0.0 1244.43 1388.15 +imu_odom_: 1691062891.729781067 0.622492 -0.184354 10.2615 -0.0479369 -0.0149137 0.0340885 0.17 0 pose: 0.39112259 -3.80951 -3.78623 0 0.000595356 0.00199786 0.999516 -0.0310258 uwb: 0.0 1244.43 1388.15 +imu_odom_: 1691062891.754710695 0.476446 -0.0790087 9.7851 -0.0447411 -0.0106526 0.0468716 0.17 0 pose: 0.0 -3.80951 -3.78623 0 0.000595356 0.00199786 0.999516 -0.0310258 uwb: 0.49832716 1244.01 1388.97 +imu_odom_: 1691062891.777840845 0.0766145 -0.141258 9.49062 -0.0649811 0.00639159 0.052198 0.2 0 pose: 0.48821566 -3.81687 -3.79094 0 0.00341161 0.00466803 0.999501 -0.0310482 uwb: 0.0 1244.01 1388.97 +imu_odom_: 1691062891.793708044 0.371101 -0.208296 10.1442 -0.0426106 -0.0298274 0.0500674 0.2 0 pose: 0.0 -3.81687 -3.79094 0 0.00341161 0.00466803 0.999501 -0.0310482 uwb: 0.50231693 1245.08 1389.18 +imu_odom_: 1691062891.811704577 0.897826 -0.112527 9.83777 -0.0543285 0.0255663 0.04048 0.2 0 pose: 0.0 -3.81687 -3.79094 0 0.00341161 0.00466803 0.999501 -0.0310482 uwb: 0.0 1245.08 1389.18 +imu_odom_: 1691062891.835893123 0.881066 -0.0766145 9.42837 -0.0490022 -0.0181095 0.0372843 0.25 0.02 pose: 0.47122416 -3.82699 -3.78889 0 0.00102848 0.0032647 0.999505 -0.0312709 uwb: 0.0 1245.08 1389.18 +imu_odom_: 1691062891.861700325 0.526724 -0.265756 9.73961 -0.0596548 0.02024 0.0447411 0.22 0 pose: 0.34060012 -3.83342 -3.78578 0 0.00439709 0.00394664 0.999494 -0.0312574 uwb: 0.49813758 1243.86 1391 +imu_odom_: 1691062891.883774119 0.1652 0.0837971 9.91199 -0.0553937 0.00319579 0.0426106 0.22 0 pose: 0.6825185 -3.83599 -3.78454 0 0.00452736 0.00328061 0.999495 -0.031279 uwb: 0.0 1243.86 1391 +imu_odom_: 1691062891.908708122 0.320823 0.0407014 9.99819 -0.0681769 0.0191748 0.0585895 0.18 0 pose: 0.41055811 -3.84659 -3.79053 0 0.00305332 0.00276985 0.9995 -0.0313636 uwb: 0.50047954 1242.55 1392.72 +imu_odom_: 1691062891.933928817 0.399832 -0.347159 9.54808 -0.0639159 0.0106526 0.0319579 0.18 0 pose: 0.0 -3.84659 -3.79053 0 0.00305332 0.00276985 0.9995 -0.0313636 uwb: 0.0 1242.55 1392.72 +imu_odom_: 1691062891.947685639 0.371101 -0.351948 9.72046 -0.0468716 0.0468716 0.0287621 0.2 -0.02 pose: 0.0 -3.84659 -3.79053 0 0.00305332 0.00276985 0.9995 -0.0313636 uwb: 0.0 1242.55 1392.72 +imu_odom_: 1691062891.972725219 0.3304 -0.351948 9.33739 -0.0266316 0.00639159 0.04048 0.2 -0.02 pose: 0.55969608 -3.84935 -3.7892 0 0.000522428 0.00141599 0.999504 -0.0314664 uwb: 0.0 1242.55 1392.72 +imu_odom_: 1691062891.997675845 0.656011 -0.0622492 10.2999 -0.0372843 -0.076699 0.0500674 0.23 -0.02 pose: 0.32981492 -3.8627 -3.79386 0 -0.00107379 -0.00124506 0.999504 -0.0314351 uwb: 0.100071700 1244.51 1392.81 +imu_odom_: 1691062892.11728400 0.54109 -0.335188 9.76595 -0.056459 -0.036219 0.0532632 0.23 -0.02 pose: 0.7020881 -3.8627 -3.79386 0 -0.000242649-0.0007753280.999504 -0.0314719 uwb: 0.0 1244.51 1392.81 +imu_odom_: 1691062892.35664670 0.605733 -0.244209 9.52174 -0.0372843 0.0106526 0.0415453 0.17 0.02 pose: 0.0 -3.8627 -3.79386 0 -0.000242649-0.0007753280.999504 -0.0314719 uwb: 0.0 1244.51 1392.81 +imu_odom_: 1691062892.61672235 0.4956 0.0574608 10.0126 -0.0681769 -0.0276969 0.0532632 0.17 0.02 pose: 0.38936978 -3.87171 -3.78952 0 0.00365464 -0.00064057 0.999491 -0.0316706 uwb: 0.50199611 1243.97 1394.25 +imu_odom_: 1691062892.83676326 0.318429 -0.316035 10.1993 -0.0447411 0.0149137 0.0596548 0.2 0 pose: 0.0 -3.87171 -3.78952 0 0.00365464 -0.00064057 0.999491 -0.0316706 uwb: 0.0 1243.97 1394.25 +imu_odom_: 1691062892.100667251 0.237026 -0.172383 9.23204 -0.0894822 0.00319579 0.0585895 0.2 0 pose: 0.49005598 -3.87171 -3.78952 0 0.00480917 0.00149473 0.999478 -0.0319121 uwb: 0.49794219 1244.72 1394.7 +imu_odom_: 1691062892.116815309 0.407014 -0.162806 10.7955 -0.0607201 -0.0330232 0.0308927 0.25 -0.02 pose: 0.0 -3.87171 -3.78952 0 0.00480917 0.00149473 0.999478 -0.0319121 uwb: 0.0 1244.72 1394.7 +imu_odom_: 1691062892.141882596 0.768539 -0.328006 9.86411 -0.076699 -0.0468716 0.0532632 0.25 -0.02 pose: 0.39236793 -3.88505 -3.79419 0 0.00132869 0.000991695 0.99948 -0.0322069 uwb: 0.49855174 1241.61 1397.38 +imu_odom_: 1691062892.167845539 0.612916 -0.100556 9.991 -0.0340885 0.0319579 0.04048 0.23 0.02 pose: 0.0 -3.88505 -3.79419 0 0.00132869 0.000991695 0.99948 -0.0322069 uwb: 0.0 1241.61 1397.38 +imu_odom_: 1691062892.193731195 0.893037 0.0191536 9.4954 -0.0735032 -0.0266316 0.0607201 0.23 0.02 pose: 0.42810668 -3.89407 -3.78986 0 0.00420043 0.00117269 0.999467 -0.0323395 uwb: 0.50085285 1241.89 1398.62 +imu_odom_: 1691062892.217887660 0.715866 -0.114922 10.0844 -0.0575243 0.0351537 0.036219 0.21 0 pose: 0.43995058 -3.90485 -3.79578 0 0.00785416 0.00349246 0.999431 -0.032615 uwb: 0.0 1241.89 1398.62 +imu_odom_: 1691062892.243672697 0.131681 -0.423774 9.67736 -0.0596548 0.0127832 0.0372843 0.21 0 pose: 0.7091169 -3.90741 -3.79455 0 0.00840057 0.00366092 0.999426 -0.0326043 uwb: 0.49875881 1241.16 1399.77 +imu_odom_: 1691062892.267801747 0.229843 -0.294487 10.2496 -0.0713727 -0.0276969 0.0585895 0.19 0.02 pose: 0.42850333 -3.91399 -3.79139 0 0.00733972 0.00258732 0.99944 -0.032555 uwb: 0.0 1241.16 1399.77 +imu_odom_: 1691062892.284679220 0.399832 -0.287304 9.74679 -0.0628506 0.00958738 0.0351537 0.19 0.02 pose: 0.0 -3.91399 -3.79139 0 0.00733972 0.00258732 0.99944 -0.032555 uwb: 0.0 1241.16 1399.77 +imu_odom_: 1691062892.309816212 0.505177 -0.153229 9.43315 -0.0553937 -0.00213053 0.0500674 0.19 0 pose: 0.41006523 -3.91873 -3.79514 0 0.00407626 0.000210151 0.999455 -0.0327512 uwb: 0.50114159 1238.63 1402.7 +imu_odom_: 1691062892.326830760 0.426168 -0.275333 9.79228 -0.072438 -0.0213053 0.0479369 0.19 0 pose: 0.0 -3.91873 -3.79514 0 0.00407626 0.000210151 0.999455 -0.0327512 uwb: 0.0 1238.63 1402.7 +imu_odom_: 1691062892.352869824 0.806846 -0.191536 10.0317 -0.0660464 -0.0649811 0.0468716 0.2 0 pose: 0.42151540 -3.92979 -3.79502 0 0.00419518 0.000982876 0.999448 -0.0329482 uwb: 0.49759804 1239.85 1403.15 +imu_odom_: 1691062892.377815201 0.715866 -0.023942 10.3334 -0.0447411 -0.052198 0.0330232 0.2 0 pose: 0.8121568 -3.92979 -3.79502 0 0.00525485 0.000990448 0.999442 -0.0329779 uwb: 0.0 1239.85 1403.15 +imu_odom_: 1691062892.403690358 0.775721 0.126893 10.1059 -0.0692422 -0.0372843 0.0511327 0.19 0.02 pose: 0.24923212 -3.92979 -3.79502 0 0.00820961 0.00158751 0.99942 -0.0330166 uwb: 0.50003040 1240.51 1404.27 +imu_odom_: 1691062892.429687424 0.706289 -0.0790087 9.94073 -0.0447411 0.0394148 0.0308927 0.21 -0.02 pose: 0.24962876 -3.94308 -3.79986 0 0.0102538 0.00364039 0.999397 -0.0329829 uwb: 0.0 1240.51 1404.27 +imu_odom_: 1691062892.454723504 0.342371 -0.373495 9.43076 -0.0639159 0.0255663 0.0585895 0.21 -0.02 pose: 0.0 -3.94308 -3.79986 0 0.0102538 0.00364039 0.999397 -0.0329829 uwb: 0.49981750 1239.87 1405.6 +imu_odom_: 1691062892.472735203 0.52433 -0.150835 9.991 -0.0372843 0.0170442 0.0319579 0.22 0 pose: 0.25880698 -3.94308 -3.79986 0 0.0119466 0.00556011 0.999367 -0.033045 uwb: 0.0 1239.87 1405.6 +imu_odom_: 1691062892.496646391 0.481235 -0.409408 9.38766 -0.0585895 -0.0245011 0.056459 0.22 0 pose: 0.0 -3.94308 -3.79986 0 0.0119466 0.00556011 0.999367 -0.033045 uwb: 0.49993415 1241.58 1406.06 +imu_odom_: 1691062892.522737952 0.138864 0.0407014 9.8665 -0.0394148 0.0213053 0.0511327 0.24 0 pose: 0.52010465 -3.95214 -3.79563 0 0.010104 0.00464772 0.999387 -0.0331823 uwb: 0.0 1241.58 1406.06 +imu_odom_: 1691062892.547655914 0.179565 -0.426168 9.07402 -0.0703074 0.0351537 0.0436758 0.24 0 pose: 0.0 -3.95214 -3.79563 0 0.010104 0.00464772 0.999387 -0.0331823 uwb: 0.50129033 1240.71 1407.84 +imu_odom_: 1691062892.572664871 0.122104 -0.445322 9.65582 -0.0585895 0.00958738 0.0649811 0.21 0.02 pose: 0.41013815 -3.96543 -3.80047 0 0.0078478 0.00250069 0.999408 -0.0334004 uwb: 0.0 1240.71 1407.84 +imu_odom_: 1691062892.586662013 0.387861 -0.629675 9.76116 -0.0585895 -0.00958738 0.0575243 0.21 0.02 pose: 0.0 -3.96543 -3.80047 0 0.0078478 0.00250069 0.999408 -0.0334004 uwb: 0.0 1240.71 1407.84 +imu_odom_: 1691062892.610802729 0.248997 -0.179565 9.78989 -0.036219 -0.0117179 0.0458064 0.18 0 pose: 0.50989982 -3.97449 -3.79623 0 0.00291273 0.00114805 0.999429 -0.0336474 uwb: 0.49966000 1240.75 1408.71 +imu_odom_: 1691062892.627777905 0.497994 -0.246603 9.48343 -0.0841559 -0.00106526 0.0628506 0.18 0 pose: 0.0 -3.97449 -3.79623 0 0.00291273 0.00114805 0.999429 -0.0336474 uwb: 0.0 1240.75 1408.71 +imu_odom_: 1691062892.652647745 0.186748 -0.275333 9.38288 -0.0713727 0.0479369 0.0490022 0.18 0 pose: 0.38988600 -3.97449 -3.79623 0 0.000680222 -0.00114057 0.99942 -0.0340271 uwb: 0.49886381 1244.61 1407.9 +imu_odom_: 1691062892.676709716 0.102951 -0.220267 9.80426 -0.072438 0 0.0575243 0.18 0 pose: 0.0 -3.97449 -3.79623 0 0.000680222 -0.00114057 0.99942 -0.0340271 uwb: 0.0 1244.61 1407.9 +imu_odom_: 1691062892.700638694 0.181959 -0.172383 10.1347 -0.0745685 0.0394148 0.0511327 0.18 -0.02 pose: 0.41961676 -3.98777 -3.8011 0 -0.000214486-0.00124088 0.99941 -0.0343166 uwb: 0.50062536 1247.95 1407.01 +imu_odom_: 1691062892.725686732 0.428562 -0.56982 9.9503 -0.0916127 0.0308927 0.0575243 0.18 -0.02 pose: 0.0 -3.98777 -3.8011 0 -0.000214486-0.00124088 0.99941 -0.0343166 uwb: 0.0 1247.95 1407.01 +imu_odom_: 1691062892.750899261 0.687136 -0.52433 10.3286 -0.0617853 0.00532632 0.0490022 0.23 0 pose: 0.47999990 -3.99681 -3.79682 0 -0.00551636 -0.0015224 0.999383 -0.0346611 uwb: 0.50126116 1247.67 1408.16 +imu_odom_: 1691062892.764661333 0.703895 -0.287304 9.70609 -0.0500674 -0.0127832 0.0479369 0.23 0 pose: 0.0 -3.99681 -3.79682 0 -0.00551636 -0.0015224 0.999383 -0.0346611 uwb: 0.0 1247.67 1408.16 +imu_odom_: 1691062892.781711171 0.208296 -0.311246 10.2711 -0.0223706 0.0287621 0.0394148 0.18 0 pose: 0.48975267 -4.01004 -3.80162 0 -0.0060133 -0.00389422 0.999361 -0.0350043 uwb: 0.0 1247.67 1408.16 +imu_odom_: 1691062892.806850787 0.349553 -0.229843 9.39245 -0.0617853 0.00213053 0.0490022 0.18 0 pose: 0.0 -4.01004 -3.80162 0 -0.0060133 -0.00389422 0.999361 -0.0350043 uwb: 0.50014415 1248.2 1409.03 +imu_odom_: 1691062892.830642690 0.442927 -0.3304 9.55765 -0.0617853 0.0255663 0.0543285 0.19 0 pose: 0.74191878 -4.02216 -3.80386 0 -0.00381289 -0.00244142 0.999368 -0.0352582 uwb: 0.0 1248.2 1409.03 +imu_odom_: 1691062892.855695395 0.40462 -0.378284 9.70609 -0.0500674 0.00213053 0.0575243 0.19 0 pose: 0.7006591 -4.02336 -3.80638 0 -0.00331187 -0.00282338 0.999367 -0.0353069 uwb: 0.50028997 1247.68 1410.6 +imu_odom_: 1691062892.878661638 0.225055 -0.464475 9.47625 -0.0458064 0.04048 0.0458064 0.19 0 pose: 0.41838017 -4.02986 -3.8033 0 -0.00103693 -0.00589841 0.999347 -0.0356383 uwb: 0.0 1247.68 1410.6 +imu_odom_: 1691062892.896643880 0.433351 -0.277727 9.65582 -0.0500674 -0.0330232 0.0458064 0.19 0 pose: 0.0 -4.02986 -3.8033 0 -0.00103693 -0.00589841 0.999347 -0.0356383 uwb: 0.49767095 1248.07 1411.24 +imu_odom_: 1691062892.922644737 0.275333 -0.0622492 9.29429 -0.0308927 -0.00958738 0.0394148 0.18 -0.02 pose: 0.30996232 -4.0324 -3.80211 0 -0.00247585 -0.00686549 0.999335 -0.0357372 uwb: 0.0 1248.07 1411.24 +imu_odom_: 1691062892.946644003 0.28491 -0.0167594 9.80904 -0.0639159 -0.0127832 0.0511327 0.22 0 pose: 0.0 -4.0324 -3.80211 0 -0.00247585 -0.00686549 0.999335 -0.0357372 uwb: 0.50060495 1246.5 1413.5 +imu_odom_: 1691062892.970991791 0.268151 -0.169988 9.89524 -0.0841559 -0.0138484 0.0617853 0.22 0 pose: 0.43004324 -4.04571 -3.80688 0 -0.00264996 -0.00280632 0.999351 -0.035817 uwb: 0.0 1246.5 1413.5 +imu_odom_: 1691062892.995778511 0.0047884 -0.275333 9.79707 -0.0490022 -0.00319579 0.0372843 0.19 0 pose: 0.0 -4.04571 -3.80688 0 -0.00264996 -0.00280632 0.999351 -0.035817 uwb: 0.50030747 1245.09 1415.26 +imu_odom_: 1691062893.12639069 0.864307 -0.0311246 10.3669 -0.0330232 -0.036219 0.036219 0.19 0 pose: 0.49098051 -4.05475 -3.80262 0 -0.00555941 -0.0001928980.999329 -0.0361892 uwb: 0.0 1245.09 1415.26 +imu_odom_: 1691062893.37782477 0.797269 -0.205901 10.0796 -0.0276969 -0.0223706 0.0415453 0.19 0 pose: 0.0 -4.05475 -3.80262 0 -0.00555941 -0.0001928980.999329 -0.0361892 uwb: 0.49996333 1246.3 1415.64 +imu_odom_: 1691062893.61686665 0.881066 -0.112527 10.2879 -0.0426106 -0.0170442 0.0596548 0.19 0 pose: 0.41899555 -4.0638 -3.79836 0 -0.00449376 0.000355122 0.999336 -0.0361489 uwb: 0.0 1246.3 1415.64 +imu_odom_: 1691062893.75740679 0.186748 -0.059855 9.43794 -0.0553937 0.0479369 0.0436758 0.19 0 pose: 0.0 -4.0638 -3.79836 0 -0.00449376 0.000355122 0.999336 -0.0361489 uwb: 0.0 1246.3 1415.64 +imu_odom_: 1691062893.91752828 0.222661 -0.174777 9.72285 -0.04048 0.0415453 -0.0127832 0.19 0 pose: 0.0 -4.0638 -3.79836 0 -0.00449376 0.000355122 0.999336 -0.0361489 uwb: 0.50024914 1246.02 1416.84 +imu_odom_: 1691062893.109754319 0.414197 0.0837971 10.0245 -0.0596548 -0.00852212 -0.0617853 0.19 0 pose: 0.48080778 -4.06806 -3.8074 0 -0.0009517090.00163 0.999335 -0.0364214 uwb: 0.0 1246.02 1416.84 +imu_odom_: 1691062893.127641484 -0.0766145 0.196325 9.73722 -0.0479369 0.0223706 -0.100135 0.19 -0.17 pose: 0.40979984 -4.07711 -3.80315 0 -0.00318045 0.00371214 0.999372 -0.0351088 uwb: 0.0 1246.02 1416.84 +imu_odom_: 1691062893.143624468 0.0670376 -0.474052 10.0628 -0.0671117 -0.0553937 -0.104396 0.19 -0.17 pose: 0.0 -4.07711 -3.80315 0 -0.00318045 0.00371214 0.999372 -0.0351088 uwb: 0.50102202 1249.8 1415.74 +imu_odom_: 1691062893.161728328 0.600945 -0.136469 10.3597 -0.0692422 -0.0820254 -0.175769 0.19 -0.17 pose: 0.0 -4.07711 -3.80315 0 -0.00318045 0.00371214 0.999372 -0.0351088 uwb: 0.0 1249.8 1415.74 +imu_odom_: 1691062893.177728228 0.806846 -0.0167594 9.18416 -0.0607201 -0.0383495 -0.259925 0.18 -0.32 pose: 0.8081320 -4.07711 -3.80315 0 -0.00393993 0.00422011 0.999387 -0.0345439 uwb: 0.0 1249.8 1415.74 +imu_odom_: 1691062893.195611018 0.775721 0.129287 9.90002 -0.0809601 -0.00745685 -0.297209 0.25 -0.53 pose: 0.0 -4.07711 -3.80315 0 -0.00393993 0.00422011 0.999387 -0.0345439 uwb: 0.49880839 1250.1 1416.24 +imu_odom_: 1691062893.212595818 0.861913 -0.162806 10.0604 -0.0607201 -0.00958738 -0.360059 0.25 -0.53 pose: 0.67902163 -4.09038 -3.80803 0 -0.0003528280.00420571 0.999626 -0.0270186 uwb: 0.0 1250.1 1416.24 +imu_odom_: 1691062893.225592602 0.251391 -0.25618 9.45949 -0.0660464 0.0383495 -0.399474 0.25 -0.53 pose: 0.0 -4.09038 -3.80803 0 -0.0003528280.00420571 0.999626 -0.0270186 uwb: 0.0 1250.1 1416.24 +imu_odom_: 1691062893.241593376 0.663194 0.172383 9.85932 -0.0703074 -0.0330232 -0.421845 0.18 -0.44 pose: 0.0 -4.09038 -3.80803 0 -0.0003528280.00420571 0.999626 -0.0270186 uwb: 0.50299649 1249.03 1418.59 +imu_odom_: 1691062893.259653489 0.579397 -0.126893 9.77553 -0.0553937 -0.0223706 -0.450607 0.18 -0.44 pose: 0.32864541 -4.09948 -3.80387 0 0.00155417 0.00413956 0.999777 -0.0206558 uwb: 0.0 1249.03 1418.59 +imu_odom_: 1691062893.276673580 0.641646 -0.225055 10.0221 -0.0383495 -0.0191748 -0.48363 0.18 -0.5 pose: 0.41051146 -4.10868 -3.81064 0 0.00394053 0.00484437 0.99992 -0.0110131 uwb: 0.0 1249.03 1418.59 +imu_odom_: 1691062893.289757275 0.533907 -0.0957681 9.52174 -0.0532632 0.0628506 -0.500674 0.18 -0.5 pose: 0.0 -4.10868 -3.81064 0 0.00394053 0.00484437 0.99992 -0.0110131 uwb: 0.49609314 1249.64 1419.62 +imu_odom_: 1691062893.305681929 0.208296 -0.167594 9.63906 -0.0596548 0.0191748 -0.507066 0.18 -0.5 pose: 0.0 -4.10868 -3.81064 0 0.00394053 0.00484437 0.99992 -0.0110131 uwb: 0.0 1249.64 1419.62 +imu_odom_: 1691062893.320739800 0.222661 0.0526724 10.1275 -0.0862864 0 -0.526241 0.25 -0.79 pose: 0.8039323 -4.11276 -3.80881 0 0.00466489 0.00448521 0.999939 -0.00891508 uwb: 0.0 1249.64 1419.62 +imu_odom_: 1691062893.333758749 0.409408 -0.304064 9.38766 -0.0692422 -0.00426106 -0.531567 0.25 -0.79 pose: 0.0 -4.11276 -3.80881 0 0.00466489 0.00448521 0.999939 -0.00891508 uwb: 0.0 1249.64 1419.62 +imu_odom_: 1691062893.349629739 1.13485 0.196325 10.2424 -0.0639159 -0.0511327 -0.533697 0.25 -0.79 pose: 0.0 -4.11276 -3.80881 0 0.00466489 0.00448521 0.999939 -0.00891508 uwb: 0.50202821 1248.29 1421.53 +imu_odom_: 1691062893.367664771 1.61369 0.138864 10.1155 -0.0692422 -0.0245011 -0.488956 0.21 -0.67 pose: 0.43929728 -4.11276 -3.80881 0 0.00342037 0.00517726 0.999976 0.00300711 uwb: 0.0 1248.29 1421.53 +imu_odom_: 1691062893.385601516 1.53229 -0.253785 10.2089 -0.0447411 -0.0447411 -0.465521 0.14 -0.41 pose: 0.0 -4.11276 -3.80881 0 0.00342037 0.00517726 0.999976 0.00300711 uwb: 0.0 1248.29 1421.53 +imu_odom_: 1691062893.399590783 0.849942 -0.184354 9.46907 -0.052198 0.0255663 -0.437824 0.14 -0.41 pose: 0.64054138 -4.12189 -3.80474 0 0.00698107 0.00499089 0.99975 0.0206329 uwb: 0.49818718 1248.65 1422.14 +imu_odom_: 1691062893.416720242 1.20428 -0.229843 10.082 -0.0745685 -0.0181095 -0.369647 0.13 -0.44 pose: 0.0 -4.12189 -3.80474 0 0.00698107 0.00499089 0.99975 0.0206329 uwb: 0.0 1248.65 1422.14 +imu_odom_: 1691062893.433663045 1.24498 -0.248997 10.173 -0.0703074 -0.00639159 -0.316384 0.13 -0.44 pose: 0.0 -4.12189 -3.80474 0 0.00698107 0.00499089 0.99975 0.0206329 uwb: 0.0 1248.65 1422.14 +imu_odom_: 1691062893.450623347 0.648829 -0.52433 9.69412 -0.0319579 0.056459 -0.311057 0.13 -0.44 pose: 0.30947236 -4.13512 -3.80975 0 0.0100146 0.00442098 0.999551 0.0278951 uwb: 0.49943544 1250.12 1422.09 +imu_odom_: 1691062893.468741790 0.723049 -0.114922 9.73961 -0.0511327 0.0372843 -0.282295 0.1 -0.29 pose: 0.43999433 -4.13509 -3.80973 0 0.0121579 0.00221763 0.999279 0.0359038 uwb: 0.0 1250.12 1422.09 +imu_odom_: 1691062893.485728923 0.442927 -0.134075 9.94073 -0.0468716 0.0181095 -0.24075 0.1 -0.29 pose: 0.8004908 -4.13512 -3.80975 0 0.0127028 0.00261949 0.999224 0.037193 uwb: 0.0 1250.12 1422.09 +imu_odom_: 1691062893.499789353 0.828394 -0.447716 10.1514 -0.0596548 0.00213053 -0.216249 0.1 -0.29 pose: 0.0 -4.13512 -3.80975 0 0.0127028 0.00261949 0.999224 0.037193 uwb: 0.50114159 1251.9 1421.74 +imu_odom_: 1691062893.516603830 0.90022 -0.363919 9.5385 -0.0511327 -0.00426106 -0.211988 0.07 -0.26 pose: 0.41161098 -4.14419 -3.80559 0 0.0121555 0.00214822 0.998999 0.0429874 uwb: 0.0 1251.9 1421.74 +imu_odom_: 1691062893.532739639 0.988805 -0.0981623 10.137 -0.0553937 -0.0223706 -0.196009 0.07 -0.23 pose: 0.0 -4.14419 -3.80559 0 0.0121555 0.00214822 0.998999 0.0429874 uwb: 0.0 1251.9 1421.74 +imu_odom_: 1691062893.550844666 0.943315 -0.126893 9.79707 -0.0585895 0 -0.164051 0.07 -0.23 pose: 0.0 -4.14419 -3.80559 0 0.0121555 0.00214822 0.998999 0.0429874 uwb: 0.50061663 1252.99 1421.88 +imu_odom_: 1691062893.574653193 0.620098 -0.246603 9.89045 -0.0479369 -0.00426106 -0.169377 0.07 -0.23 pose: 0.23985851 -4.14422 -3.80561 0 0.014228 0.00130616 0.998843 0.0459279 uwb: 0.0 1252.99 1421.88 +imu_odom_: 1691062893.592661101 0.390255 -0.186748 9.82102 -0.0511327 0.0255663 -0.162985 0.07 -0.23 pose: 0.0 -4.14422 -3.80561 0 0.014228 0.00130616 0.998843 0.0459279 uwb: 0.49879964 1253.46 1422.67 +imu_odom_: 1691062893.609662234 0.0143652 -0.0837971 9.96227 -0.0500674 0.0308927 -0.204531 0.07 -0.14 pose: 0.34885672 -4.14422 -3.80561 0 0.0162843 0.00135104 0.998634 0.0496339 uwb: 0.0 1253.46 1422.67 +imu_odom_: 1691062893.623599004 -1.03908 -0.0454898 9.44513 -0.0308927 0.105461 -0.253533 0.07 -0.14 pose: 0.42069296 -4.14422 -3.80561 0 0.0119533 0.00095317 0.998463 0.0541007 uwb: 0.0 1253.46 1422.67 +imu_odom_: 1691062893.640726130 -1.14443 -0.059855 10.3477 -0.0532632 0.0287621 -0.157659 0.07 -0.14 pose: 0.0 -4.14422 -3.80561 0 0.0119533 0.00095317 0.998463 0.0541007 uwb: 0.0 1253.46 1422.67 +imu_odom_: 1691062893.657636268 -0.426168 -0.952892 10.07 -0.0980043 -0.0468716 -0.072438 0.1 -0.11 pose: 0.39995958 -4.15331 -3.80143 0 0.00680059 0.00187114 0.998238 0.0589241 uwb: 0.0 1253.46 1422.67 +imu_odom_: 1691062893.674630110 0.378284 -0.344765 9.98622 -0.0298274 -0.0319579 -0.105461 0.1 -0.11 pose: 0.0 -4.15331 -3.80143 0 0.00680059 0.00187114 0.998238 0.0589241 uwb: 0.0 1253.46 1422.67 +imu_odom_: 1691062893.691625410 0.646434 0.141258 9.58399 -0.0532632 0.00106526 -0.0649811 0.1 -0.11 pose: 0.0 -4.15331 -3.80143 0 0.00680059 0.00187114 0.998238 0.0589241 uwb: 0.0 1253.46 1422.67 +imu_odom_: 1691062893.708573171 -0.148441 -0.141258 9.94551 -0.0681769 0.0340885 -0.056459 0.12 -0.11 pose: 0.6999008 -4.15331 -3.80143 0 0.00637218 0.00130699 0.998218 0.0593153 uwb: 0.0 1253.46 1422.67 +imu_odom_: 1691062893.725575471 -0.189142 -0.45011 9.83299 -0.0426106 0 -0.105461 0.12 -0.11 pose: 0.0 -4.15331 -3.80143 0 0.00637218 0.00130699 0.998218 0.0593153 uwb: 0.0 1253.46 1422.67 +imu_odom_: 1691062893.742581562 -0.229843 -0.383072 9.68455 -0.0543285 0 -0.0894822 0.12 -0.11 pose: 0.68916812 -4.16661 -3.80636 0 0.00269712 0.00103517 0.997985 0.0633865 uwb: 0.149900337 1252.51 1423.59 +imu_odom_: 1691062893.759568404 0.311246 -0.217872 9.92636 -0.0511327 -0.0351537 -0.056459 0.12 -0.11 pose: 0.0 -4.16661 -3.80636 0 0.00269712 0.00103517 0.997985 0.0633865 uwb: 0.0 1252.51 1423.59 +imu_odom_: 1691062893.777563479 0.4956 -0.311246 9.75158 -0.072438 -0.00852212 -0.04048 0.13 -0.11 pose: 0.0 -4.16661 -3.80636 0 0.00269712 0.00103517 0.997985 0.0633865 uwb: 0.0 1252.51 1423.59 +imu_odom_: 1691062893.794599318 0.47884 -0.225055 10.4435 -0.0649811 0.00532632 -0.072438 0.13 -0.11 pose: 0.32931037 -4.16661 -3.80636 0 -0.0004596350.000435814 0.997855 0.0654644 uwb: 0.50043580 1250.06 1426.21 +imu_odom_: 1691062893.810589302 0.23942 -0.205901 9.61511 -0.0660464 0.0170442 -0.0596548 0.14 -0.11 pose: 0.36052272 -4.17569 -3.80216 0 0.000771152 -0.0010165 0.997744 0.067115 uwb: 0.0 1250.06 1426.21 +imu_odom_: 1691062893.828645915 0.471658 -0.260968 10.1586 -0.056459 -0.02024 -0.0511327 0.14 -0.11 pose: 0.0 -4.17569 -3.80216 0 0.000771152 -0.0010165 0.997744 0.067115 uwb: 0.0 1250.06 1426.21 +imu_odom_: 1691062893.844640857 -0.00957681-0.229843 9.55526 -0.0543285 -0.0117179 -0.0415453 0.14 -0.11 pose: 0.43020656 -4.17569 -3.80216 0 0.00161603 -0.00161187 0.997598 0.0692263 uwb: 0.50208654 1250.98 1426.93 +imu_odom_: 1691062893.861849644 1.1157 -0.0550666 10.6374 -0.0415453 -0.0873517 -0.0585895 0.2 -0.11 pose: 0.0 -4.17569 -3.80216 0 0.00161603 -0.00161187 0.997598 0.0692263 uwb: 0.0 1250.98 1426.93 +imu_odom_: 1691062893.878584210 1.09415 0.0622492 9.57202 -0.0585895 -0.056459 -0.015979 0.13 -0.08 pose: 0.0 -4.17569 -3.80216 0 0.00161603 -0.00161187 0.997598 0.0692263 uwb: 0.0 1250.98 1426.93 +imu_odom_: 1691062893.895642798 1.57778 -0.37589 10.4459 -0.0617853 0.0191748 0.0383495 0.13 -0.08 pose: 0.7140750 -4.17569 -3.80216 0 0.00093236 -0.00153924 0.997579 0.0695143 uwb: 0.49788678 1249.58 1428.81 +imu_odom_: 1691062893.913684828 1.32878 -0.634463 9.97424 -0.0553937 -0.0340885 0.0436758 0.11 -0.08 pose: 0.0 -4.17569 -3.80216 0 0.00093236 -0.00153924 0.997579 0.0695143 uwb: 0.0 1249.58 1428.81 +imu_odom_: 1691062893.930891283 1.34794 -0.246603 9.68933 -0.04048 0.00958738 -0.02024 0.11 -0.08 pose: 0.49799761 -4.18477 -3.79798 0 0.00510338 -0.0006883910.99745 0.071185 uwb: 0.0 1249.58 1428.81 +imu_odom_: 1691062893.947577434 1.17076 0.191536 9.92157 -0.0553937 0.0287621 -0.036219 0.11 -0.08 pose: 0.0 -4.18477 -3.79798 0 0.00510338 -0.0006883910.99745 0.071185 uwb: 0.50149158 1248.43 1430.29 +imu_odom_: 1691062893.965700252 0.696713 -0.246603 9.79228 -0.0681769 0.0213053 -0.0276969 0.09 -0.02 pose: 0.0 -4.18477 -3.79798 0 0.00510338 -0.0006883910.99745 0.071185 uwb: 0.0 1248.43 1430.29 +imu_odom_: 1691062893.982697010 0.713472 -0.344765 9.9503 -0.056459 -0.0234358 -0.072438 0.09 -0.02 pose: 0.69997666 -4.19388 -3.79385 0 0.0111641 -0.00129243 0.9973 0.0725697 uwb: 0.0 1248.43 1430.29 +imu_odom_: 1691062893.995621173 0.775721 -0.181959 9.93354 -0.0500674 -0.0276969 -0.0671117 0.09 -0.02 pose: 0.0 -4.19388 -3.79385 0 0.0111641 -0.00129243 0.9973 0.0725697 uwb: 0.0 1248.43 1430.29 +imu_odom_: 1691062894.12564559 0.943315 -0.112527 9.84256 -0.0543285 -0.00958738 -0.0340885 0.07 -0.05 pose: 0.0 -4.19388 -3.79385 0 0.0111641 -0.00129243 0.9973 0.0725697 uwb: 0.0 1248.43 1430.29 +imu_odom_: 1691062894.28564751 0.727837 -0.349553 9.87608 -0.0553937 0.0191748 -0.0138484 0.07 -0.05 pose: 0.33041864 -4.19802 -3.80295 0 0.0135337 -0.00291414 0.99715 0.0741576 uwb: 0.0 1248.43 1430.29 +imu_odom_: 1691062894.45585133 0.792481 -0.229843 10.0173 -0.0447411 0 -0.0394148 0.06 -0.05 pose: 0.39938795 -4.19802 -3.80295 0 0.0157113 -0.0034665 0.997011 0.0755696 uwb: 0.100062953 1249.56 1430.51 +imu_odom_: 1691062894.71625072 0.778116 -0.0957681 9.83299 -0.056459 -0.00106526 -0.0245011 0.06 -0.05 pose: 0.0 -4.19802 -3.80295 0 0.0157113 -0.0034665 0.997011 0.0755696 uwb: 0.0 1249.56 1430.51 +imu_odom_: 1691062894.96604865 -0.122104 -0.349553 9.76834 -0.0490022 0.0809601 -0.0276969 0.06 -0.02 pose: 0.8031448 -4.19802 -3.80295 0 0.0164644 -0.00317484 0.996975 0.0758908 uwb: 0.49782263 1251.74 1429.94 +imu_odom_: 1691062894.112624306 -1.31921 -0.0861913 10.1801 -0.0532632 0.0862864 -0.00852212 0.06 0 pose: 0.0 -4.19802 -3.80295 0 0.0164644 -0.00317484 0.996975 0.0758908 uwb: 0.0 1251.74 1429.94 +imu_odom_: 1691062894.136753356 -0.864307 -0.383072 9.96467 -0.056459 -0.0830906 0.0276969 0.08 -0.02 pose: 0.76028107 -4.20712 -3.7988 0 0.0122112 -0.0001391780.996851 0.0783491 uwb: 0.49950253 1253.76 1429.08 +imu_odom_: 1691062894.162698218 1.07978 -0.258574 10.2831 -0.0468716 -0.0543285 0.0351537 0.12 -0.02 pose: 0.0 -4.20712 -3.7988 0 0.0122112 -0.0001391780.996851 0.0783491 uwb: 0.0 1253.76 1429.08 +imu_odom_: 1691062894.188569000 -0.0023942 -0.0814029 10.3286 -0.056459 0.0575243 0.0181095 0.12 -0.02 pose: 0.32011466 -4.20712 -3.7988 0 0.0117207 -0.0004657850.996845 0.0785076 uwb: 0.50202530 1255.24 1429.02 +imu_odom_: 1691062894.213567459 -0.361524 -0.426168 9.60793 -0.0532632 -0.00532632 0.0106526 0.15 0 pose: 0.43933228 -4.20712 -3.7988 0 0.0106496 -5.90024e-050.996831 0.0788287 uwb: 0.0 1255.24 1429.02 +imu_odom_: 1691062894.228556210 0.124498 -0.112527 10.2161 -0.052198 0.00213053 0.0106526 0.15 0 pose: 0.8012491 -4.20712 -3.7988 0 0.00986261 -0.0001703470.99683 0.0789435 uwb: 0.0 1255.24 1429.02 +imu_odom_: 1691062894.251586033 0.320823 -0.282516 9.79228 -0.0585895 -0.00319579 0.0351537 0.12 -0.02 pose: 0.0 -4.20712 -3.7988 0 0.00986261 -0.0001703470.99683 0.0789435 uwb: 0.49804428 1255.06 1429.57 +imu_odom_: 1691062894.268633538 0.344765 -0.177171 10.2568 -0.0447411 0.00426106 0.0106526 0.12 -0.02 pose: 0.39041390 -4.21621 -3.79463 0 0.00602821 -0.0001470550.996823 0.0794211 uwb: 0.0 1255.06 1429.57 +imu_odom_: 1691062894.293551793 -0.189142 -0.320823 9.66539 -0.0649811 -0.00745685 0.0426106 0.14 -0.02 pose: 0.0 -4.21621 -3.79463 0 0.00602821 -0.0001470550.996823 0.0794211 uwb: 0.50002458 1252.09 1431.4 +imu_odom_: 1691062894.319599607 0.529119 -0.189142 9.71088 -0.0735032 -0.0127832 0.02024 0.14 -0.02 pose: 0.42036923 -4.21621 -3.79463 0 0.0019304 -4.74525e-050.996818 0.0796883 uwb: 0.0 1252.09 1431.4 +imu_odom_: 1691062894.341564617 0.430956 -0.131681 10.228 -0.052198 0.00532632 0.0213053 0.14 -0.02 pose: 0.0 -4.21621 -3.79463 0 0.0019304 -4.74525e-050.996818 0.0796883 uwb: 0.50175990 1253.5 1431.22 +imu_odom_: 1691062894.366613240 -0.158017 -0.280122 9.39245 -0.0703074 -0.00852212 0.0213053 0.14 -0.02 pose: 0.47913663 -4.22529 -3.79044 0 0.00281083 0.000502617 0.996793 0.0799722 uwb: 0.0 1253.5 1431.22 +imu_odom_: 1691062894.384624647 -0.0263362 -0.150835 9.7851 -0.0458064 -0.0426106 0.0181095 0.17 -0.02 pose: 0.0 -4.22529 -3.79044 0 0.00281083 0.000502617 0.996793 0.0799722 uwb: 0.0 1253.5 1431.22 +imu_odom_: 1691062894.407527020 0.682347 -0.260968 9.80904 -0.0511327 0.00426106 0.0213053 0.17 -0.02 pose: 0.49041181 -4.23856 -3.79533 0 -0.0008545750.00177789 0.996757 0.0804428 uwb: 0.49852842 1255.36 1430.07 +imu_odom_: 1691062894.433531961 0.371101 -0.490811 9.64145 -0.0490022 0.0255663 0.0149137 0.19 0 pose: 0.32912372 -4.23856 -3.79533 0 0.000423305 0.00126874 0.996733 0.0807574 uwb: 0.0 1255.36 1430.07 +imu_odom_: 1691062894.446571325 0.277727 -0.366313 9.81144 -0.0468716 0.0553937 0.02024 0.19 0 pose: 0.8097069 -4.23856 -3.79533 0 0.000138609 0.000511426 0.996726 0.0808567 uwb: 0.50167240 1256.96 1429.34 +imu_odom_: 1691062894.471586991 0.651223 -0.311246 10.1586 -0.0468716 -0.0308927 0.0340885 0.15 -0.02 pose: 0.0 -4.23856 -3.79533 0 0.000138609 0.000511426 0.996726 0.0808567 uwb: 0.0 1256.96 1429.34 +imu_odom_: 1691062894.496546660 0.387861 -0.150835 9.41879 -0.0543285 -0.0372843 0.0319579 0.15 -0.02 pose: 0.39137925 -4.24763 -3.79112 0 -0.000929352-0.00215897 0.996693 0.0812257 uwb: 0.49824260 1256.04 1430.35 +imu_odom_: 1691062894.517585975 0.629675 -0.179565 10.3262 -0.0617853 -0.0415453 0.04048 0.17 -0.02 pose: 0.0 -4.24763 -3.79112 0 -0.000929352-0.00215897 0.996693 0.0812257 uwb: 0.0 1256.04 1430.35 +imu_odom_: 1691062894.532603015 1.11809 -0.229843 9.73961 -0.0553937 0.0181095 0.0330232 0.17 -0.02 pose: 0.47800795 -4.2567 -3.78691 0 0.00145786 -0.0001262470.996683 0.0813675 uwb: 0.0 1256.04 1430.35 +imu_odom_: 1691062894.556521203 0.610521 -0.129287 10.137 -0.0383495 -0.0170442 0.0234358 0.16 0 pose: 0.0 -4.2567 -3.78691 0 0.00145786 -0.0001262470.996683 0.0813675 uwb: 0.49832718 1256.55 1430.35 +imu_odom_: 1691062894.574548068 0.42138 -0.227449 9.6199 -0.0639159 -0.00532632 0.0553937 0.16 0 pose: 0.38044239 -4.2567 -3.78691 0 0.0053039 0.000260402 0.996661 0.0814747 uwb: 0.0 1256.55 1430.35 +imu_odom_: 1691062894.598865525 0.395043 0.0861913 10.343 -0.0479369 -0.00958738 0.0245011 0.16 0.02 pose: 0.0 -4.2567 -3.78691 0 0.0053039 0.000260402 0.996661 0.0814747 uwb: 0.50128451 1258.4 1430.04 +imu_odom_: 1691062894.624749140 0.272939 -0.349553 10.6207 -0.0575243 0.00532632 0.0394148 0.16 0.02 pose: 0.41936887 -4.26999 -3.79175 0 0.00487255 0.0013486 0.996658 0.0815269 uwb: 0.0 1258.4 1430.04 +imu_odom_: 1691062894.647687677 0.225055 -0.237026 10.0269 -0.0276969 0.0245011 0.0223706 0.18 -0.02 pose: 0.0 -4.26999 -3.79175 0 0.00487255 0.0013486 0.996658 0.0815269 uwb: 0.49983793 1256.72 1431.5 +imu_odom_: 1691062894.672623139 0.47884 -0.311246 9.55287 -0.0468716 0.00745685 0.0383495 0.18 -0.02 pose: 0.49259918 -4.27905 -3.78753 0 0.00150177 0.00133859 0.996653 0.0817199 uwb: 0.0 1256.72 1431.5 +imu_odom_: 1691062894.689570609 0.320823 -0.296881 10.2807 -0.0372843 -0.0170442 0.0245011 0.19 0 pose: 0.0 -4.27905 -3.78753 0 0.00150177 0.00133859 0.996653 0.0817199 uwb: 0.50130201 1256.56 1432.09 +imu_odom_: 1691062894.713543919 0.919373 -0.225055 10.1969 -0.0426106 -0.0426106 0.0426106 0.19 0 pose: 0.48899731 -4.28812 -3.78331 0 0.000175915 -0.0010472 0.996637 0.0819308 uwb: 0.0 1256.56 1432.09 +imu_odom_: 1691062894.738545877 0.306458 -0.143652 10.2544 -0.0447411 -0.00426106 0.0351537 0.2 -0.02 pose: 0.32840335 -4.28812 -3.78331 0 0.0023365 -0.0014107 0.996632 0.0819628 uwb: 0.50194947 1257.08 1432.11 +imu_odom_: 1691062894.752580058 0.746991 -0.0957681 10.3382 -0.0340885 -0.0181095 0.0372843 0.2 -0.02 pose: 0.8007241 -4.28812 -3.78331 0 0.00170693 -0.0008758270.996632 0.0819808 uwb: 0.0 1257.08 1432.11 +imu_odom_: 1691062894.777602140 0.0957681 -0.258574 9.93354 -0.0628506 0.00426106 0.0447411 0.17 0.05 pose: 0.0 -4.28812 -3.78331 0 0.00170693 -0.0008758270.996632 0.0819808 uwb: 0.0 1257.08 1432.11 +imu_odom_: 1691062894.802585141 0.186748 -0.213084 10.0533 -0.0458064 0.00958738 0.0607201 0.17 0.05 pose: 0.39039348 -4.29718 -3.77908 0 0.00100987 0.000633159 0.99663 0.0820144 uwb: 0.49677560 1254.5 1434.64 +imu_odom_: 1691062894.827597891 0.265756 -0.464475 9.77074 -0.0511327 0.0223706 0.0468716 0.16 0 pose: 0.41994633 -4.30754 -3.78528 0 -0.00342039 0.000684665 0.99665 0.081709 uwb: 0.0 1254.5 1434.64 +imu_odom_: 1691062894.853638996 0.328006 -0.169988 9.88566 -0.0458064 -0.0213053 0.04048 0.16 0 pose: 0.8103194 -4.31047 -3.78392 0 -0.00380367 -5.16343e-050.996651 0.0816823 uwb: 0.50231695 1251.68 1436.8 +imu_odom_: 1691062894.866630239 0.100556 -0.203507 9.74919 -0.0607201 -0.0127832 0.0490022 0.19 0 pose: 0.0 -4.31047 -3.78392 0 -0.00380367 -5.16343e-050.996651 0.0816823 uwb: 0.0 1251.68 1436.8 +imu_odom_: 1691062894.881632114 0.78051 -0.301669 10.07 -0.0436758 -0.0276969 0.02024 0.19 0 pose: 0.48837318 -4.31954 -3.77969 0 -0.00435287 0.00108255 0.996657 0.0815769 uwb: 0.0 1251.68 1436.8 +imu_odom_: 1691062894.899514029 -0.155623 -0.299275 9.25359 -0.056459 0.0298274 0.0479369 0.19 0 pose: 0.0 -4.31954 -3.77969 0 -0.00435287 0.00108255 0.996657 0.0815769 uwb: 0.49824260 1251.9 1437.16 +imu_odom_: 1691062894.923499005 0.117316 -0.129287 9.4954 -0.0575243 -0.0319579 0.04048 0.24 0 pose: 0.30096494 -4.31954 -3.77969 0 -0.00434459 0.000677241 0.996651 0.0816574 uwb: 0.0 1251.9 1437.16 +imu_odom_: 1691062894.949505404 0.174777 -0.150835 9.85693 -0.0585895 -0.00106526 0.0490022 0.22 0 pose: 0.33876858 -4.32857 -3.77545 0 -0.00726474 0.00169874 0.996637 0.0815997 uwb: 0.50066038 1251.68 1437.67 +imu_odom_: 1691062894.970554343 0.155623 -0.191536 10.1083 -0.0575243 0.04048 0.04048 0.22 0 pose: 0.0 -4.32857 -3.77545 0 -0.00726474 0.00169874 0.996637 0.0815997 uwb: 0.0 1251.68 1437.67 +imu_odom_: 1691062894.983496880 0.294487 -0.158017 9.67257 -0.0426106 0.0170442 0.04048 0.22 0 pose: 0.0 -4.32857 -3.77545 0 -0.00726474 0.00169874 0.996637 0.0815997 uwb: 0.0 1251.68 1437.67 +imu_odom_: 1691062895.7548060 0.1652 -0.160412 9.35654 -0.0649811 0.00426106 0.0511327 0.17 0 pose: 0.8072279 -4.3286 -3.77547 0 -0.00796855 0.00210618 0.996634 0.0815593 uwb: 0.50047664 1251.67 1438.54 +imu_odom_: 1691062895.24508363 0.344765 -0.172383 9.96946 -0.0319579 0.0458064 0.0276969 0.17 0 pose: 0.0 -4.3286 -3.77547 0 -0.00796855 0.00210618 0.996634 0.0815593 uwb: 0.0 1251.67 1438.54 +imu_odom_: 1691062895.49565735 0.328006 -0.227449 10.0102 -0.0532632 0 0.0543285 0.23 0.02 pose: 0.44940587 -4.33767 -3.77125 0 -0.0114845 0.00253096 0.996607 0.0814644 uwb: 0.49704976 1250.39 1439.86 +imu_odom_: 1691062895.75579718 0.507571 -0.0383072 10.4435 -0.0372843 -0.0255663 0.0383495 0.21 0 pose: 0.73053864 -4.35095 -3.7761 0 -0.00949677 0.00279841 0.996646 0.0812301 uwb: 0.0 1250.39 1439.86 +imu_odom_: 1691062895.98497839 0.641646 -0.289698 9.95988 -0.0660464 -0.0127832 0.0543285 0.21 0 pose: 0.0 -4.35095 -3.7761 0 -0.00949677 0.00279841 0.996646 0.0812301 uwb: 0.50047956 1248.91 1441.73 +imu_odom_: 1691062895.122504106 0.466869 -0.251391 9.68455 -0.0394148 -0.0276969 0.0308927 0.18 0 pose: 0.8069362 -4.35095 -3.7761 0 -0.0086424 0.0031296 0.996653 0.0812318 uwb: 0.0 1248.91 1441.73 +imu_odom_: 1691062895.139489490 0.471658 -0.129287 10.1131 -0.0788296 -0.0287621 0.0628506 0.18 0 pose: 0.0 -4.35095 -3.7761 0 -0.0086424 0.0031296 0.996653 0.0812318 uwb: 0.50056706 1247.9 1443.56 +imu_odom_: 1691062895.164509823 0.366313 -0.107739 10.0413 -0.0575243 0.036219 0.0490022 0.18 0 pose: 0.48951062 -4.36002 -3.77189 0 -0.00379637 0.00238718 0.996696 0.0811023 uwb: 0.0 1247.9 1443.56 +imu_odom_: 1691062895.188558087 0.447716 -0.141258 10.3094 -0.0649811 0.0511327 0.0532632 0.18 0 pose: 0.0 -4.36002 -3.77189 0 -0.00379637 0.00238718 0.996696 0.0811023 uwb: 0.49930713 1245.64 1445.89 +imu_odom_: 1691062895.205508765 -0.0670376 -0.174777 9.5385 -0.0500674 0.00213053 0.036219 0.18 0 pose: 0.41171599 -4.36909 -3.76768 0 -0.0008641930.00284402 0.996715 0.0809327 uwb: 0.0 1245.64 1445.89 +imu_odom_: 1691062895.231770650 0.320823 -0.117316 9.45231 -0.0745685 -0.0436758 0.0553937 0.18 0 pose: 0.0 -4.36909 -3.76768 0 -0.0008641930.00284402 0.996715 0.0809327 uwb: 0.0 1245.64 1445.89 +imu_odom_: 1691062895.256507499 0.723049 0.0191536 10.2448 -0.0500674 -0.0468716 0.0426106 0.17 0 pose: 0.47884208 -4.37816 -3.76347 0 -0.0007066580.00383882 0.996732 0.0806912 uwb: 0.50109203 1245 1447.5 +imu_odom_: 1691062895.281625826 0.0861913 -0.263362 9.12909 -0.0575243 -0.0639159 0.0436758 0.17 0 pose: 0.0 -4.37816 -3.76347 0 -0.0007066580.00383882 0.996732 0.0806912 uwb: 0.0 1245 1447.5 +imu_odom_: 1691062895.298576504 0.708684 0.0407014 10.8793 -0.0426106 -0.116114 0.0298274 0.18 0.02 pose: 0.44011100 -4.39144 -3.76834 0 -0.00240482 0.00535503 0.996738 0.0804949 uwb: 0.50117368 1247.39 1448.14 +imu_odom_: 1691062895.323499426 1.56341 -0.241814 8.93755 -0.0735032 0.0553937 0.0671117 0.18 0.02 pose: 0.0 -4.39144 -3.76834 0 -0.00240482 0.00535503 0.996738 0.0804949 uwb: 0.0 1247.39 1448.14 +imu_odom_: 1691062895.347625269 1.21865 -0.354342 9.10275 -0.0351537 -0.036219 0.0575243 0.2 0 pose: 0.48878732 -4.39144 -3.76834 0 -0.00094976 0.00498896 0.996745 0.0804607 uwb: 0.50038916 1246.56 1449.41 +imu_odom_: 1691062895.373569839 0.481235 -0.155623 9.26317 -0.0639159 0.0426106 0.0276969 0.2 0 pose: 0.0 -4.39144 -3.76834 0 -0.00094976 0.00498896 0.996745 0.0804607 uwb: 0.0 1246.56 1449.41 +imu_odom_: 1691062895.388557132 0.107739 -0.047884 10.1131 -0.0500674 -0.00958738 0.0532632 0.18 0 pose: 0.42977202 -4.40052 -3.76414 0 0.00314487 0.00449703 0.996774 0.0800723 uwb: 0.0 1246.56 1449.41 +imu_odom_: 1691062895.412500985 0.251391 -0.0071826110.5058 -0.0660464 -0.0617853 0.0543285 0.18 0 pose: 0.0 -4.40052 -3.76414 0 0.00314487 0.00449703 0.996774 0.0800723 uwb: 0.0 1246.56 1449.41 +imu_odom_: 1691062895.437559232 0.366313 0.1652 10.2185 -0.0447411 -0.0319579 0.052198 0.18 0 pose: 0.48021575 -4.40959 -3.75995 0 0.00293752 0.00181155 0.996787 0.0800254 uwb: 0.99976627 1243.51 1452.24 +imu_odom_: 1691062895.462485070 0.395043 -0.232238 9.92157 -0.0660464 0.00639159 0.052198 0.18 0 pose: 0.0 -4.40959 -3.75995 0 0.00293752 0.00181155 0.996787 0.0800254 uwb: 0.0 1243.51 1452.24 +imu_odom_: 1691062895.479611613 0.560243 -0.0311246 9.90721 -0.072438 -0.0266316 0.0415453 0.18 0 pose: 0.65980777 -4.42286 -3.76483 0 0.000991198 0.00547385 0.996812 0.079596 uwb: 0.0 1243.51 1452.24 +imu_odom_: 1691062895.503490137 0.56982 -0.011971 10.1921 -0.0852212 -0.0149137 0.0553937 0.18 0 pose: 0.0 -4.42286 -3.76483 0 0.000991198 0.00547385 0.996812 0.079596 uwb: 0.49815803 1245.07 1452.3 +imu_odom_: 1691062895.529782354 0.011971 -0.0933739 9.96227 -0.0426106 -0.0308927 0.0458064 0.18 0 pose: 0.42006008 -4.43195 -3.76065 0 0.00282592 0.00479826 0.996827 0.0794043 uwb: 0.0 1245.07 1452.3 +imu_odom_: 1691062895.554495579 0.244209 -0.122104 9.7037 -0.0511327 0.0127832 0.0340885 0.2 -0.02 pose: 0.42264994 -4.4383 -3.75773 0 0.00194028 0.00586889 0.996839 0.0792103 uwb: 0.50180074 1248.78 1451.59 +imu_odom_: 1691062895.571487380 0.703895 -0.172383 9.81862 -0.0351537 -0.00958738 0.0479369 0.2 -0.02 pose: 0.0 -4.4383 -3.75773 0 0.00194028 0.00586889 0.996839 0.0792103 uwb: 0.0 1248.78 1451.59 +imu_odom_: 1691062895.596494005 0.418985 -0.117316 10.3932 -0.0394148 0.0127832 0.0490022 0.18 -0.02 pose: 0.7852375 -4.44103 -3.75647 0 0.00109016 0.00585862 0.996838 0.079236 uwb: 0.49931880 1247.87 1453.67 +imu_odom_: 1691062895.622556110 0.466869 0.0814029 10.4651 -0.0479369 0.0181095 0.0458064 0.18 -0.02 pose: 0.0 -4.44103 -3.75647 0 0.00109016 0.00585862 0.996838 0.079236 uwb: 0.0 1247.87 1453.67 +imu_odom_: 1691062895.647476698 1.11091 -0.225055 9.49062 -0.0703074 -0.0223706 0.0553937 0.21 0 pose: 0.42878625 -4.45012 -3.75229 0 0.00107901 0.00471166 0.99685 0.0791673 uwb: 0.49930129 1246.76 1455.4 +imu_odom_: 1691062895.664531495 0.141258 -0.241814 9.95509 -0.0287621 -0.0170442 0.0330232 0.21 0 pose: 0.0 -4.45012 -3.75229 0 0.00107901 0.00471166 0.99685 0.0791673 uwb: 0.0 1246.76 1455.4 +imu_odom_: 1691062895.688460475 0.184354 -0.126893 9.7875 -0.0703074 -0.0266316 0.056459 0.18 0 pose: 0.50059913 -4.46338 -3.7572 0 0.00254232 0.00565582 0.99686 0.0789389 uwb: 0.49912048 1245.75 1457.36 +imu_odom_: 1691062895.705475316 0.629675 0.189142 10.24 -0.0447411 -0.0298274 0.0511327 0.18 0 pose: 0.0 -4.46338 -3.7572 0 0.00254232 0.00565582 0.99686 0.0789389 uwb: 0.0 1245.75 1457.36 +imu_odom_: 1691062895.730538521 0.153229 -0.0526724 10.1442 -0.072438 0.0149137 0.0490022 0.19 0 pose: 0.42100212 -4.47247 -3.75303 0 0.00208809 0.00477298 0.996877 0.0787945 uwb: 0.0 1245.75 1457.36 +imu_odom_: 1691062895.756531797 0.749385 -0.102951 10.0916 -0.0511327 -0.0255663 0.0340885 0.19 0 pose: 0.0 -4.47247 -3.75303 0 0.00208809 0.00477298 0.996877 0.0787945 uwb: 0.50220029 1244.05 1458.98 +imu_odom_: 1691062895.779452252 0.64404 -0.445322 9.25598 -0.0692422 0 0.0415453 0.19 -0.02 pose: 0.41841810 -4.47247 -3.75303 0 0.00102139 0.00620472 0.996892 0.0785317 uwb: 0.0 1244.05 1458.98 +imu_odom_: 1691062895.803502849 0.19393 -0.474052 9.77553 -0.0447411 -0.0287621 0.0490022 0.19 -0.02 pose: 0.0 -4.47247 -3.75303 0 0.00102139 0.00620472 0.996892 0.0785317 uwb: 0.49816679 1244.73 1460.27 +imu_odom_: 1691062895.829613368 0.526724 -0.162806 10.252 -0.0351537 -0.0223706 0.0351537 0.26 -0.02 pose: 0.48967102 -4.48156 -3.74886 0 0.00244768 0.0054732 0.996895 0.0785127 uwb: 0.0 1244.73 1460.27 +imu_odom_: 1691062895.855635225 0.648829 -0.035913 10.4507 -0.0479369 -0.0458064 0.052198 0.18 -0.02 pose: 0.47026174 -4.49481 -3.75379 0 0.00258125 0.00229627 0.996917 0.0783931 uwb: 0.50290025 1245.5 1460.74 +imu_odom_: 1691062895.872524365 0.31364 -0.122104 9.56244 -0.0553937 0.0191748 0.0447411 0.18 -0.02 pose: 0.0 -4.49481 -3.75379 0 0.00258125 0.00229627 0.996917 0.0783931 uwb: 0.0 1245.5 1460.74 +imu_odom_: 1691062895.896458011 0.280122 -0.263362 10.1299 -0.0649811 -0.00213053 0.0649811 0.2 -0.02 pose: 0.19104803 -4.50119 -3.75087 0 0.00468013 0.00239385 0.996906 0.0784303 uwb: 0.49810262 1249.65 1459.79 +imu_odom_: 1691062895.922455370 0.464475 -0.433351 9.73243 -0.00426106 0.052198 0.0127832 0.2 -0.02 pose: 0.50918822 -4.50391 -3.74963 0 0.00478604 0.00370748 0.996925 0.0781322 uwb: 0.0 1249.65 1459.79 +imu_odom_: 1691062895.935521566 0.751779 -0.383072 10.1897 -0.0138484 0.0319579 0.0287621 0.2 -0.02 pose: 0.0 -4.50391 -3.74963 0 0.00478604 0.00370748 0.996925 0.0781322 uwb: 0.0 1249.65 1459.79 +imu_odom_: 1691062895.960601395 0.617704 0.0287304 10.2137 -0.0543285 -0.00639159 0.0596548 0.18 -0.02 pose: 0.47936996 -4.513 -3.74547 0 0.00285791 0.000797789 0.996925 0.0782992 uwb: 0.49942087 1250.92 1460.22 +imu_odom_: 1691062895.986497260 1.03908 -0.270545 9.71088 -0.072438 -0.0585895 0.036219 0.23 -0.02 pose: 0.32132209 -4.52206 -3.74129 0 0.00486696 0.00252272 0.996931 0.078089 uwb: 0.50110661 1248.2 1462.87 +imu_odom_: 1691062896.9488295 0.656011 -0.277727 9.88326 -0.0596548 0.00745685 0.0447411 0.23 -0.02 pose: 0.0 -4.52206 -3.74129 0 0.00486696 0.00252272 0.996931 0.078089 uwb: 0.0 1248.2 1462.87 +imu_odom_: 1691062896.26541925 0.366313 -0.134075 9.76595 -0.0692422 0.0383495 0.0426106 0.19 0 pose: 0.7032840 -4.52209 -3.74131 0 0.00572984 0.00225381 0.996927 0.0780987 uwb: 0.0 1248.2 1462.87 +imu_odom_: 1691062896.50479071 0.560243 -0.23942 9.57681 -0.104396 0.0170442 0.0681769 0.19 0 pose: 0.0 -4.52209 -3.74131 0 0.00572984 0.00225381 0.996927 0.0780987 uwb: 0.49755141 1247.3 1464.12 +imu_odom_: 1691062896.68606556 0.275333 -0.225055 10.8314 -0.04048 -0.00426106 0.0447411 0.19 0 pose: 0.0 -4.52209 -3.74131 0 0.00572984 0.00225381 0.996927 0.0780987 uwb: 0.0 1247.3 1464.12 +imu_odom_: 1691062896.92445999 0.107739 -0.105345 10.07 -0.0383495 -0.00532632 0.0319579 0.2 -0.02 pose: 0.48978478 -4.5353 -3.74638 0 0.0085322 -6.47626e-050.996914 0.0780404 uwb: 0.50169574 1248.76 1464.89 +imu_odom_: 1691062896.117588533 0.31364 -0.19393 9.91199 -0.0490022 -0.0138484 0.0639159 0.24 0 pose: 0.75833286 -4.54439 -3.74222 0 0.00394557 -0.0009616120.996967 0.0777182 uwb: 0.0 1248.76 1464.89 +imu_odom_: 1691062896.141447517 0.694318 -0.126893 9.63906 -0.0415453 0.00958738 0.0543285 0.24 0 pose: 0.0 -4.54439 -3.74222 0 0.00394557 -0.0009616120.996967 0.0777182 uwb: 0.49741142 1250.81 1464.82 +imu_odom_: 1691062896.165498407 0.531513 -0.155623 9.77553 -0.0649811 0.0330232 0.052198 0.19 0 pose: 0.8024741 -4.54439 -3.74222 0 0.0032122 -0.00072175 0.996977 0.077621 uwb: 0.0 1250.81 1464.82 +imu_odom_: 1691062896.183498149 0.138864 0.0790087 10.307 -0.0479369 -0.0149137 0.0458064 0.19 0 pose: 0.0 -4.54439 -3.74222 0 0.0032122 -0.00072175 0.996977 0.077621 uwb: 0.0 1250.81 1464.82 +imu_odom_: 1691062896.207621951 0.416591 -0.0263362 10.331 -0.0500674 -0.0191748 0.0458064 0.18 0.02 pose: 0.49014642 -4.55349 -3.73807 0 0.0043342 0.000975423 0.997007 0.0771896 uwb: 0.50108328 1249.49 1466.26 +imu_odom_: 1691062896.225611777 0.462081 -0.337582 9.33739 -0.0671117 -0.0149137 0.0511327 0.18 0.02 pose: 0.0 -4.55349 -3.73807 0 0.0043342 0.000975423 0.997007 0.0771896 uwb: 0.0 1249.49 1466.26 +imu_odom_: 1691062896.249582462 0.392649 -0.201113 9.26077 -0.0777643 -0.00319579 0.0596548 0.18 -0.02 pose: 0.42096421 -4.56673 -3.74304 0 0.00380414 0.00372276 0.997015 0.0770226 uwb: 0.0 1249.49 1466.26 +imu_odom_: 1691062896.274445888 0.260968 -0.208296 9.62948 -0.0628506 -0.0298274 0.0426106 0.18 -0.02 pose: 0.0 -4.56673 -3.74304 0 0.00380414 0.00372276 0.997015 0.0770226 uwb: 0.0 1249.49 1466.26 +imu_odom_: 1691062896.297519751 0.335188 -0.112527 9.81623 -0.0649811 -0.00319579 0.0468716 0.18 0 pose: 0.41926388 -4.57584 -3.7389 0 0.00261385 0.00278936 0.99704 0.0767952 uwb: 0.99886218 1251.87 1465.8 +imu_odom_: 1691062896.313503611 0.500388 -0.287304 9.62708 -0.0490022 -0.0117179 0.0596548 0.18 0 pose: 0.0 -4.57584 -3.7389 0 0.00261385 0.00278936 0.99704 0.0767952 uwb: 0.0 1251.87 1465.8 +imu_odom_: 1691062896.330457205 0.268151 -0.426168 9.80186 -0.0639159 0.0170442 0.14168 0.23 0.14 pose: 0.47950413 -4.58494 -3.73476 0 -0.00124696 0.00195512 0.997061 0.0765781 uwb: 0.0 1251.87 1465.8 +imu_odom_: 1691062896.346585140 0.533907 -0.529119 10.1706 -0.0532632 -0.0213053 0.204531 0.23 0.14 pose: 0.0 -4.58494 -3.73476 0 -0.00124696 0.00195512 0.997061 0.0765781 uwb: 0.50205156 1253.45 1465.8 +imu_odom_: 1691062896.363514528 0.169988 -0.196325 9.49301 -0.0447411 0.02024 0.262055 0.23 0.14 pose: 0.0 -4.58494 -3.73476 0 -0.00124696 0.00195512 0.997061 0.0765781 uwb: 0.0 1253.45 1465.8 +imu_odom_: 1691062896.379445891 -0.0215478 -0.548272 10.0868 -0.0308927 -0.0308927 0.318514 0.18 0.26 pose: 0.40044665 -4.59405 -3.73064 0 -0.00134263 0.00143688 0.997109 0.0759526 uwb: 0.0 1253.45 1465.8 +imu_odom_: 1691062896.397575125 0.610521 -0.126893 10.0676 -0.0383495 -0.02024 0.356864 0.18 0.26 pose: 0.0 -4.59405 -3.73064 0 -0.00134263 0.00143688 0.997109 0.0759526 uwb: 0.49965712 1252.45 1466.88 +imu_odom_: 1691062896.414479140 0.3304 -0.368707 9.64384 -0.0692422 0.0511327 0.409062 0.18 0.26 pose: 0.0 -4.59405 -3.73064 0 -0.00134263 0.00143688 0.997109 0.0759526 uwb: 0.0 1252.45 1466.88 +imu_odom_: 1691062896.428418827 0.40462 -0.502782 10.1945 -0.0585895 0.0234358 0.429302 0.19 0.35 pose: 0.50043874 -4.59405 -3.73064 0 -0.00347036 -0.00073509 0.997457 0.0711783 uwb: 0.0 1252.45 1466.88 +imu_odom_: 1691062896.444478516 0.490811 -0.189142 9.80426 -0.0500674 0.00852212 0.474043 0.18 0.41 pose: 0.0 -4.59405 -3.73064 0 -0.00347036 -0.00073509 0.997457 0.0711783 uwb: 0.0 1252.45 1466.88 +imu_odom_: 1691062896.461491315 0.296881 -0.335188 10.0341 -0.0553937 -0.0340885 0.513457 0.18 0.41 pose: 0.64881550 -4.61642 -3.73156 0 -0.00239054 -0.00303522 0.998211 0.0596576 uwb: 0.0 1252.45 1466.88 +imu_odom_: 1691062896.478426245 0.768539 -0.366313 10.0269 -0.0426106 0.0117179 0.528371 0.18 0.47 pose: 0.0 -4.61642 -3.73156 0 -0.00239054 -0.00303522 0.998211 0.0596576 uwb: 0.0 1252.45 1466.88 +imu_odom_: 1691062896.495442544 0.737414 -0.40462 10.2927 -0.0862864 0.0745685 0.559264 0.18 0.47 pose: 0.0 -4.61642 -3.73156 0 -0.00239054 -0.00303522 0.998211 0.0596576 uwb: 0.99948339 1252.56 1468.07 +imu_odom_: 1691062896.510426337 1.02472 -0.265756 9.84017 -0.0958738 0.0138484 0.609331 0.18 0.47 pose: 0.33066072 -4.61642 -3.73156 0 -0.00212635 -0.00379279 0.998641 0.0519369 uwb: 0.0 1252.56 1468.07 +imu_odom_: 1691062896.526423613 0.471658 -0.893037 9.93354 -0.0298274 0.0543285 0.599744 0.18 0.53 pose: 0.40931572 -4.62548 -3.7274 0 0.000899548 -0.00499717 0.999142 0.0410972 uwb: 0.0 1252.56 1468.07 +imu_odom_: 1691062896.542664999 0.282516 -0.366313 10.0676 -0.0383495 0.00426106 0.608266 0.18 0.53 pose: 0.7065213 -4.62552 -3.72742 0 0.000714445 -0.00560708 0.999219 0.0391203 uwb: 0.0 1252.56 1468.07 +imu_odom_: 1691062896.560553331 0.648829 -0.37589 9.68933 -0.0436758 0.00532632 0.622114 0.18 0.53 pose: 0.0 -4.62552 -3.72742 0 0.000714445 -0.00560708 0.999219 0.0391203 uwb: 0.0 1252.56 1468.07 +imu_odom_: 1691062896.576613020 0.778116 -0.143652 9.39964 -0.056459 -0.0735032 0.648746 0.18 0.61 pose: 0.33178649 -4.63465 -3.72334 0 -0.000482726-0.00656347 0.999538 0.0296706 uwb: 0.0 1252.56 1468.07 +imu_odom_: 1691062896.593603946 0.677559 -0.555455 9.69652 -0.0234358 -0.0372843 0.650877 0.23 0.79 pose: 0.0 -4.63465 -3.72334 0 -0.000482726-0.00656347 0.999538 0.0296706 uwb: 0.100023877 1255.89 1467.38 +imu_odom_: 1691062896.609545225 1.075 -0.0957681 9.69652 -0.0553937 -0.00532632 0.656203 0.23 0.79 pose: 0.0 -4.63465 -3.72334 0 -0.000482726-0.00656347 0.999538 0.0296706 uwb: 0.0 1255.89 1467.38 +imu_odom_: 1691062896.626545192 1.91776 -0.553061 9.95748 -0.0458064 -0.0873517 0.618919 0.2 0.58 pose: 0.33894066 -4.63874 -3.73246 0 0.00305828 -0.00643095 0.999785 0.0194875 uwb: 0.0 1255.89 1467.38 +imu_odom_: 1691062896.643549825 1.60651 -0.213084 9.25359 -0.056459 0.00319579 0.492152 0.2 0.58 pose: 0.0 -4.63874 -3.73246 0 0.00305828 -0.00643095 0.999785 0.0194875 uwb: 0.50099870 1255.62 1468.82 +imu_odom_: 1691062896.658544410 1.84354 0.205901 10.5082 -0.056459 0.0149137 0.418649 0.2 0.58 pose: 0.32990534 -4.64787 -3.72837 0 0.00638444 -0.00648446 0.999913 0.00950635 uwb: 0.0 1255.62 1468.82 +imu_odom_: 1691062896.675540877 1.02472 0.0526724 9.83059 -0.0543285 0.00852212 0.357929 0.11 0.32 pose: 0.40989611 -4.64783 -3.72835 0 0.0104461 -0.00589038 0.999928 0.000243688 uwb: 0.0 1255.62 1468.82 +imu_odom_: 1691062896.691546319 0.572214 -0.3304 10.149 -0.0607201 0.00745685 0.331297 0.11 0.32 pose: 0.7998783 -4.64787 -3.72837 0 0.0109795 -0.00535974 0.999925 -0.00102002 uwb: 0.50074497 1255.17 1469.94 +imu_odom_: 1691062896.708538995 0.751779 -0.414197 9.96706 -0.0426106 -0.02024 0.289752 0.11 0.32 pose: 0.0 -4.64787 -3.72837 0 0.0109795 -0.00535974 0.999925 -0.00102002 uwb: 0.0 1255.17 1469.94 +imu_odom_: 1691062896.725598458 0.943315 -0.071826 9.96467 -0.0500674 -0.015979 0.288687 0.09 0.26 pose: 0.41995802 -4.657 -3.72429 0 0.0115257 -0.00610742 0.999891 -0.00691589 uwb: 0.0 1255.17 1469.94 +imu_odom_: 1691062896.741551986 0.914585 -0.263362 9.84735 -0.0596548 0 0.313188 0.09 0.26 pose: 0.0 -4.657 -3.72429 0 0.0115257 -0.00610742 0.999891 -0.00691589 uwb: 0.49809971 1255.78 1470.09 +imu_odom_: 1691062896.766475492 0.778116 -0.407014 9.60793 -0.0415453 -0.00319579 0.270577 0.09 0.26 pose: 0.23976810 -4.657 -3.72429 0 0.0135683 -0.00486671 0.999846 -0.00996143 uwb: 0.0 1255.78 1470.09 +imu_odom_: 1691062896.782538972 0.732626 -0.0407014 9.8665 -0.0511327 0.0234358 0.252468 0.08 0.26 pose: 0.0 -4.657 -3.72429 0 0.0135683 -0.00486671 0.999846 -0.00996143 uwb: 0.0 1255.78 1470.09 +imu_odom_: 1691062896.799540105 0.227449 -0.153229 9.77792 -0.0532632 0.0426106 0.2024 0.08 0.26 pose: 0.0 -4.657 -3.72429 0 0.0135683 -0.00486671 0.999846 -0.00996143 uwb: 0.50062831 1252.75 1472.34 +imu_odom_: 1691062896.815533298 -0.172383 0.265756 10.24 -0.0383495 0.0681769 0.0948085 0.08 0.26 pose: 0.39903798 -4.66101 -3.73345 0 0.0161376 -0.00571916 0.999745 -0.0147089 uwb: 0.0 1252.75 1472.34 +imu_odom_: 1691062896.832534140 -1.28329 0.0861913 10.1035 -0.0543285 0.0479369 0.156594 0.1 0.2 pose: 0.35129785 -4.67017 -3.72944 0 0.0130318 -0.00372474 0.999757 -0.0173688 uwb: 0.0 1252.75 1472.34 +imu_odom_: 1691062896.848415631 -0.28491 -0.804452 10.4028 -0.0532632 -0.0841559 0.217314 0.1 0.2 pose: 0.0 -4.67017 -3.72944 0 0.0130318 -0.00372474 0.999757 -0.0173688 uwb: 0.49975628 1255.54 1471.61 +imu_odom_: 1691062896.865461387 0.61531 -0.608127 10.0293 -0.0223706 -0.0862864 0.184291 0.15 0.2 pose: 0.40866243 -4.67017 -3.72944 0 0.00922441 -0.00377094 0.99975 -0.0200068 uwb: 0.0 1255.54 1471.61 +imu_odom_: 1691062896.882452605 0.627281 0.292093 9.81862 -0.0330232 -0.0255663 0.2024 0.15 0.2 pose: 0.0 -4.67017 -3.72944 0 0.00922441 -0.00377094 0.99975 -0.0200068 uwb: 0.0 1255.54 1471.61 +imu_odom_: 1691062896.898466504 0.335188 0.167594 10.082 -0.0436758 0.00106526 0.230097 0.15 0.2 pose: 0.0 -4.67017 -3.72944 0 0.00922441 -0.00377094 0.99975 -0.0200068 uwb: 0.49993127 1254.48 1473.57 +imu_odom_: 1691062896.915461805 -0.0263362 -0.21069 10.0078 -0.0383495 -0.0106526 0.196009 0.13 0.11 pose: 0.7989451 -4.67017 -3.72944 0 0.00964089 -0.00443168 0.999732 -0.020594 uwb: 0.0 1254.48 1473.57 +imu_odom_: 1691062896.931461997 -0.167594 -0.0861913 9.83538 -0.0500674 -0.0298274 0.181095 0.13 0.11 pose: 0.0 -4.67017 -3.72944 0 0.00964089 -0.00443168 0.999732 -0.020594 uwb: 0.0 1254.48 1473.57 +imu_odom_: 1691062896.948386719 0.0861913 0.0143652 9.66779 -0.0543285 -0.036219 0.203466 0.13 0.11 pose: 0.67006801 -4.67928 -3.72532 0 0.00709619 -0.00147788 0.999635 -0.026039 uwb: 0.49842927 1255.57 1473.63 +imu_odom_: 1691062896.964389244 0.0837971 -0.277727 9.65342 -0.0447411 -0.0170442 0.194943 0.13 0.11 pose: 0.0 -4.67928 -3.72532 0 0.00709619 -0.00147788 0.999635 -0.026039 uwb: 0.0 1255.57 1473.63 +imu_odom_: 1691062896.982435067 0.071826 -0.138864 10.0197 -0.0479369 -0.0223706 0.178964 0.13 0.11 pose: 0.0 -4.67928 -3.72532 0 0.00709619 -0.00147788 0.999635 -0.026039 uwb: 0.0 1255.57 1473.63 +imu_odom_: 1691062896.999437659 0.0263362 -0.102951 9.80904 -0.0692422 -0.0298274 0.196009 0.13 0.11 pose: 0.32982077 -4.68336 -3.73445 0 0.00445069 -0.0005543510.99958 -0.0286157 uwb: 0.50053498 1256.58 1474.5 +imu_odom_: 1691062897.13435093 0.251391 -0.220267 10.5632 -0.0660464 -0.0117179 0.177899 0.14 0.14 pose: 0.43043699 -4.69247 -3.73033 0 0.000665255 7.26564e-05 0.999493 -0.0318239 uwb: 0.0 1256.58 1474.5 +imu_odom_: 1691062897.30424269 0.703895 -0.0933739 10.0461 -0.076699 -0.00958738 0.160855 0.14 0.14 pose: 0.0 -4.69247 -3.73033 0 0.000665255 7.26564e-05 0.999493 -0.0318239 uwb: 0.0 1256.58 1474.5 +imu_odom_: 1691062897.43369723 0.217872 -0.100556 10.137 -0.0628506 -0.0575243 0.154463 0.14 0.14 pose: 0.0 -4.69247 -3.73033 0 0.000665255 7.26564e-05 0.999493 -0.0318239 uwb: 0.49786056 1255.63 1475.73 +imu_odom_: 1691062897.59468784 0.938527 -0.0790087 10.137 -0.0585895 -0.1012 0.187487 0.13 0.08 pose: 0.6999300 -4.69247 -3.73033 0 -5.75696e-06-1.48319e-050.999478 -0.0323077 uwb: 0.0 1255.63 1475.73 +imu_odom_: 1691062897.76385632 1.37667 -0.452504 10.0078 -0.0639159 -0.0394148 0.251402 0.13 0.08 pose: 0.0 -4.69247 -3.73033 0 -5.75696e-06-1.48319e-050.999478 -0.0323077 uwb: 0.0 1255.63 1475.73 +imu_odom_: 1691062897.92440946 2.2314 -0.641646 10.6638 -0.04048 -0.0873517 0.219444 0.13 0.08 pose: 0.0 -4.69247 -3.73033 0 -5.75696e-06-1.48319e-050.999478 -0.0323077 uwb: 0.50344857 1250.15 1479.45 +imu_odom_: 1691062897.108369101 1.55144 -0.122104 9.10036 -0.0340885 -0.0223706 0.160855 0.14 0.08 pose: 0.44941755 -4.70161 -3.72627 0 0.00128241 0.00111413 0.99938 -0.0351557 uwb: 0.0 1250.15 1479.45 +imu_odom_: 1691062897.125427981 1.41497 0.148441 9.95748 -0.0607201 0.0298274 0.149137 0.09 0.05 pose: 0.0 -4.70161 -3.72627 0 0.00128241 0.00111413 0.99938 -0.0351557 uwb: 0.0 1250.15 1479.45 +imu_odom_: 1691062897.142427949 0.61531 -0.186748 9.8689 -0.0703074 0.0585895 0.100135 0.09 0.05 pose: 0.64997920 -4.70563 -3.73543 0 0.00895279 0.00131541 0.999143 -0.0403931 uwb: 0.49932173 1251.43 1479.87 +imu_odom_: 1691062897.158370394 0.474052 -0.205901 10.1203 -0.0681769 -0.015979 0.0788296 0.08 0.05 pose: 0.0 -4.70563 -3.73543 0 0.00895279 0.00131541 0.999143 -0.0403931 uwb: 0.0 1251.43 1479.87 +imu_odom_: 1691062897.175365404 0.531513 -0.237026 9.68694 -0.0607201 -0.0287621 0.0713727 0.08 0.05 pose: 0.0 -4.70563 -3.73543 0 0.00895279 0.00131541 0.999143 -0.0403931 uwb: 0.0 1251.43 1479.87 +imu_odom_: 1691062897.191520754 0.713472 -0.153229 9.7851 -0.0596548 -0.00319579 0.0916127 0.08 0.05 pose: 0.33998185 -4.70563 -3.73543 0 0.0100332 0.00162168 0.999085 -0.0415544 uwb: 0.49951713 1251.46 1480.94 +imu_odom_: 1691062897.207516279 0.706289 -0.251391 10.1155 -0.0575243 -0.00745685 0.127832 0.09 0.05 pose: 0.41145935 -4.7148 -3.73145 0 0.00970615 0.00089962 0.999053 -0.0424032 uwb: 0.0 1251.46 1480.94 +imu_odom_: 1691062897.224515372 0.787692 -0.277727 9.81623 -0.0585895 -0.0117179 0.140615 0.09 0.05 pose: 0.7011549 -4.7148 -3.73145 0 0.0103737 0.000640618 0.999033 -0.0427149 uwb: 0.0 1251.46 1480.94 +imu_odom_: 1691062897.241585627 0.964863 -0.129287 10.0293 -0.0426106 0.00532632 0.104396 0.09 0.05 pose: 0.0 -4.7148 -3.73145 0 0.0103737 0.000640618 0.999033 -0.0427149 uwb: 0.50119120 1248.73 1482.89 +imu_odom_: 1691062897.266520798 0.651223 -0.102951 9.82102 -0.0681769 0.0181095 0.103331 0.05 0.05 pose: 0.33000451 -4.7148 -3.73145 0 0.0135393 6.01104e-05 0.998931 -0.0442011 uwb: 0.0 1248.73 1482.89 +imu_odom_: 1691062897.293587637 0.174777 -0.328006 9.85453 -0.0681769 0.0266316 0.04048 0.06 0.08 pose: 0.34988044 -4.7148 -3.73145 0 0.0133796 0.00266103 0.998881 -0.0452795 uwb: 0.49954922 1249.4 1483.15 +imu_odom_: 1691062897.309594246 -0.071826 -0.186748 10.1299 -0.04048 0.0372843 -0.056459 0.06 0.08 pose: 0.0 -4.7148 -3.73145 0 0.0133796 0.00266103 0.998881 -0.0452795 uwb: 0.0 1249.4 1483.15 +imu_odom_: 1691062897.336595755 -1.06542 -0.126893 10.4244 -0.0745685 -0.0181095 0.0756338 0.07 0.05 pose: 0.35040541 -4.7148 -3.73145 0 0.00945921 0.00157296 0.998945 -0.0449153 uwb: 0.0 1249.4 1483.15 +imu_odom_: 1691062897.361444015 0.497994 -0.622492 10.1778 -0.0543285 -0.11931 0.072438 0.1 0.02 pose: 0.0 -4.7148 -3.73145 0 0.00945921 0.00157296 0.998945 -0.0449153 uwb: 0.49825429 1247.15 1485.02 +imu_odom_: 1691062897.388378737 0.399832 0.102951 9.71328 -0.076699 -0.00106526 0.112918 0.1 0.02 pose: 0.42862585 -4.72396 -3.72744 0 0.00642119 0.000568585 0.99896 -0.0451433 uwb: 0.50113287 1247.49 1485.69 +imu_odom_: 1691062897.404531462 0.189142 -0.0957681 10.2951 -0.052198 -0.00958738 0.0841559 0.12 0 pose: 0.0 -4.72396 -3.72744 0 0.00642119 0.000568585 0.99896 -0.0451433 uwb: 0.0 1247.49 1485.69 +imu_odom_: 1691062897.431505556 0.462081 -0.0837971 10.1251 -0.0617853 -0.0138484 0.0607201 0.12 0 pose: 0.43954813 -4.72677 -3.73387 0 0.00619151 0.00105808 0.998903 -0.0463996 uwb: 0.0 1247.49 1485.69 +imu_odom_: 1691062897.456486517 0.129287 -0.363919 9.73961 -0.0596548 -0.0266316 0.0862864 0.14 0.02 pose: 0.43126819 -4.73441 -3.73375 0 0.00381509 0.00391397 0.998879 -0.0470265 uwb: 0.49931589 1246.18 1487.33 +imu_odom_: 1691062897.483394406 0.445322 0.205901 10.3477 -0.04048 0.0287621 0.056459 0.14 0.02 pose: 0.0 -4.73441 -3.73375 0 0.00381509 0.00391397 0.998879 -0.0470265 uwb: 0.0 1246.18 1487.33 +imu_odom_: 1691062897.508381492 0.126893 -0.287304 9.53611 -0.0692422 -0.0511327 0.0894822 0.14 0 pose: 0.51888850 -4.73713 -3.73261 0 0.00145356 0.00530885 0.99884 -0.0478278 uwb: 0.50108329 1246.85 1487.59 +imu_odom_: 1691062897.524424556 0.694318 -0.280122 9.9934 -0.0596548 -0.0276969 0.0490022 0.14 0 pose: 0.0 -4.73713 -3.73261 0 0.00145356 0.00530885 0.99884 -0.0478278 uwb: 0.0 1246.85 1487.59 +imu_odom_: 1691062897.551432190 -0.287304 -0.124498 9.80904 -0.0479369 0.00213053 0.0777643 0.16 0.02 pose: 0.32045591 -4.74627 -3.72856 0 0.000657654 0.00355515 0.998818 -0.0484736 uwb: 0.49892217 1245.18 1488.52 +imu_odom_: 1691062897.576369403 0.0814029 -0.392649 10.0796 -0.0543285 -0.00426106 0.0703074 0.19 0.02 pose: 0.0 -4.74627 -3.72856 0 0.000657654 0.00355515 0.998818 -0.0484736 uwb: 0.0 1245.18 1488.52 +imu_odom_: 1691062897.590412335 0.47884 -0.196325 9.43794 -0.0436758 0.0671117 0.0468716 0.19 0.02 pose: 0.42963495 -4.75031 -3.73771 0 -0.00172093 0.0027997 0.998787 -0.0491303 uwb: 0.50051749 1244.99 1489.21 +imu_odom_: 1691062897.615475249 0.603339 -0.426168 9.75158 -0.0703074 -0.0149137 0.0830906 0.19 0.02 pose: 0.0 -4.75031 -3.73771 0 -0.00172093 0.0027997 0.998787 -0.0491303 uwb: 0.0 1244.99 1489.21 +imu_odom_: 1691062897.642395971 0.842759 -0.158017 10.0461 -0.052198 -0.0255663 0.0713727 0.15 0 pose: 0.39036433 -4.75946 -3.73369 0 -0.00160126 0.00105579 0.998767 -0.0496066 uwb: 0.49929840 1245.76 1489.67 +imu_odom_: 1691062897.668640067 0.328006 -0.225055 10.0844 -0.0639159 -0.00426106 0.0713727 0.16 -0.02 pose: 0.44956046 -4.75946 -3.73369 0 0.00276272 0.00026945 0.998724 -0.0504247 uwb: 0.0 1245.76 1489.67 +imu_odom_: 1691062897.695631660 0.392649 -0.25618 9.89284 -0.0426106 0.0149137 0.0479369 0.16 -0.02 pose: 0.0 -4.75946 -3.73369 0 0.00276272 0.00026945 0.998724 -0.0504247 uwb: 0.49972128 1245.65 1490.51 +imu_odom_: 1691062897.711371409 0.852336 -0.227449 9.74201 -0.0553937 0.0106526 0.0671117 0.16 0 pose: 0.8130901 -4.75946 -3.73369 0 0.00196045 0.000112833 0.998719 -0.0505539 uwb: 0.0 1245.65 1490.51 +imu_odom_: 1691062897.728416874 0.452504 -0.241814 9.79947 -0.0490022 0.00958738 0.0628506 0.16 0 pose: 0.0 -4.75946 -3.73369 0 0.00196045 0.000112833 0.998719 -0.0505539 uwb: 0.0 1245.65 1490.51 +imu_odom_: 1691062897.754506978 0.371101 -0.222661 9.96467 -0.0532632 0.0117179 0.0639159 0.15 0 pose: 0.53149361 -4.77263 -3.73886 0 -0.000164316-0.00255309 0.998692 -0.0510631 uwb: 0.49992253 1241.69 1493.34 +imu_odom_: 1691062897.781368787 0.198719 -0.289698 9.64863 -0.056459 -0.0394148 0.072438 0.15 0 pose: 0.0 -4.77263 -3.73886 0 -0.000164316-0.00255309 0.998692 -0.0510631 uwb: 0.0 1241.69 1493.34 +imu_odom_: 1691062897.797360522 0.703895 -0.0670376 9.98143 -0.0575243 -0.0351537 0.0660464 0.16 0.02 pose: 0.32847335 -4.7818 -3.73487 0 0.0010602 -0.00132128 0.998674 -0.0514598 uwb: 0.49953463 1243.12 1494.07 +imu_odom_: 1691062897.824539937 0.828394 -0.0215478 10.2232 -0.0532632 -0.0458064 0.072438 0.16 0.02 pose: 0.0 -4.7818 -3.73487 0 0.0010602 -0.00132128 0.998674 -0.0514598 uwb: 0.0 1243.12 1494.07 +imu_odom_: 1691062897.849345033 0.926556 -0.047884 9.94312 -0.0639159 -0.00958738 0.0532632 0.18 0 pose: 0.52972037 -4.78578 -3.74405 0 -0.00201165 -0.00133366 0.998632 -0.0522295 uwb: 0.50417186 1244.62 1493.86 +imu_odom_: 1691062897.865399181 0.141258 -0.287304 9.54329 -0.0639159 0.0383495 0.0617853 0.18 0 pose: 0.0 -4.78578 -3.74405 0 -0.00201165 -0.00133366 0.998632 -0.0522295 uwb: 0.0 1244.62 1493.86 +imu_odom_: 1691062897.882337610 0.342371 -0.361524 10.173 -0.0735032 0.0117179 0.0532632 0.18 0.05 pose: 0.42873376 -4.79495 -3.74008 0 0.00250722 0.000641617 0.9986 -0.0528324 uwb: 0.0 1244.62 1493.86 +imu_odom_: 1691062897.898335177 0.179565 -0.0837971 9.33739 -0.0681769 -0.0298274 0.0553937 0.18 0.05 pose: 0.0 -4.79495 -3.74008 0 0.00250722 0.000641617 0.9986 -0.0528324 uwb: 0.49642857 1245.28 1494.11 +imu_odom_: 1691062897.914409740 1.07021 0.0694318 10.2711 -0.0660464 -0.0234358 0.0607201 0.18 0.05 pose: 0.0 -4.79495 -3.74008 0 0.00250722 0.000641617 0.9986 -0.0528324 uwb: 0.0 1245.28 1494.11 +imu_odom_: 1691062897.941506327 0.773327 -0.332794 10.0772 -0.0681769 0.0181095 0.0511327 0.21 0 pose: 0.40971820 -4.80414 -3.73613 0 0.00180067 -0.0001500680.998583 -0.0531816 uwb: 0.49830678 1243.86 1495.57 +imu_odom_: 1691062897.967460231 0.397437 -0.272939 10.2017 -0.0553937 -0.015979 0.052198 0.17 0.02 pose: 0.49062765 -4.80809 -3.74532 0 0.00234468 2.12043e-05 0.99856 -0.053587 uwb: 0.0 1243.86 1495.57 +imu_odom_: 1691062897.983336181 0.220267 -0.251391 9.67497 -0.0543285 0.0181095 0.0490022 0.23 0 pose: 0.0 -4.80809 -3.74532 0 0.00234468 2.12043e-05 0.99856 -0.053587 uwb: 0.0 1243.86 1495.57 +imu_odom_: 1691062897.999398495 0.497994 -0.289698 9.8689 -0.0394148 0.0276969 0.0532632 0.23 0 pose: 0.0 -4.80809 -3.74532 0 0.00234468 2.12043e-05 0.99856 -0.053587 uwb: 0.50106871 1246.92 1494.16 +imu_odom_: 1691062898.15329566 0.129287 -0.426168 9.69173 -0.0383495 0.0106526 0.04048 0.23 0 pose: 0.51978095 -4.81727 -3.74136 0 0.00107007 -0.0019393 0.998544 -0.0539024 uwb: 0.0 1246.92 1494.16 +imu_odom_: 1691062898.32330992 0.318429 -0.141258 10.0485 -0.056459 -0.00958738 0.0585895 0.22 0 pose: 0.0 -4.81727 -3.74136 0 0.00107007 -0.0019393 0.998544 -0.0539024 uwb: 0.0 1246.92 1494.16 +imu_odom_: 1691062898.49405330 0.509965 -0.201113 9.67018 -0.052198 -0.0117179 0.0617853 0.22 0 pose: 0.0 -4.81727 -3.74136 0 0.00107007 -0.0019393 0.998544 -0.0539024 uwb: 0.49925465 1246.2 1494.88 +imu_odom_: 1691062898.74385124 0.117316 -0.217872 9.53132 -0.0617853 -0.00106526 0.0596548 0.17 0 pose: 0.75023669 -4.83045 -3.74648 0 0.000617909 -0.0009917020.998518 -0.0544157 uwb: 0.0 1246.2 1494.88 +imu_odom_: 1691062898.90466979 0.184354 -0.253785 9.99579 -0.0468716 -0.052198 0.0607201 0.17 0 pose: 0.0 -4.83045 -3.74648 0 0.000617909 -0.0009917020.998518 -0.0544157 uwb: 0.50027251 1247.76 1494.78 +imu_odom_: 1691062898.106462797 0.864307 -0.155623 10.2663 -0.0447411 -0.0447411 0.0458064 0.18 0 pose: 0.7990035 -4.83045 -3.74648 0 -0.000192555-0.00101836 0.998513 -0.0544965 uwb: 0.0 1247.76 1494.78 +imu_odom_: 1691062898.122474364 0.42138 -0.146046 9.60793 -0.0532632 0.0117179 0.0575243 0.22 0.02 pose: 0.0 -4.83045 -3.74648 0 -0.000192555-0.00101836 0.998513 -0.0544965 uwb: 0.0 1247.76 1494.78 +imu_odom_: 1691062898.148349231 0.299275 -0.280122 9.89284 -0.0511327 0.0276969 0.0490022 0.17 0.02 pose: 0.65078999 -4.84694 -3.74534 0 -0.0007138180.000653819 0.998484 -0.0550331 uwb: 0.50076540 1253.2 1492.69 +imu_odom_: 1691062898.175488399 0.76375 -0.222661 9.94073 -0.0692422 -0.00852212 0.0511327 0.22 0 pose: 0.0 -4.84694 -3.74534 0 -0.0007138180.000653819 0.998484 -0.0550331 uwb: 0.0 1253.2 1492.69 +imu_odom_: 1691062898.200382740 0.78051 -0.246603 10.0245 -0.0671117 -0.0106526 0.0585895 0.22 0 pose: 0.33005409 -4.85278 -3.74762 0 -0.00225361 -0.00111056 0.998473 -0.055193 uwb: 0.49843221 1254.85 1492.71 +imu_odom_: 1691062898.217457953 0.723049 -0.114922 9.74201 -0.0585895 -0.0287621 0.0426106 0.22 0 pose: 0.0 -4.85278 -3.74762 0 -0.00225361 -0.00111056 0.998473 -0.055193 uwb: 0.0 1254.85 1492.71 +imu_odom_: 1691062898.233328362 0.6608 -0.25618 9.83299 -0.0575243 0.0181095 0.0426106 0.22 0 pose: 0.51870478 -4.86194 -3.74362 0 0.00307301 -0.0008434340.998451 -0.0555499 uwb: 0.0 1254.85 1492.71 +imu_odom_: 1691062898.260353495 0.37589 -0.342371 9.51216 -0.0479369 -0.0245011 0.0426106 0.23 0 pose: 0.0 -4.86194 -3.74362 0 0.00307301 -0.0008434340.998451 -0.0555499 uwb: 0.50179200 1251.78 1495.18 +imu_odom_: 1691062898.286341522 0.395043 -0.533907 9.93354 -0.0447411 0.0191748 0.0511327 0.23 0 pose: 0.25978111 -4.86194 -3.74362 0 0.00549672 -0.00058577 0.998439 -0.0555865 uwb: 0.49996920 1249.12 1497.47 +imu_odom_: 1691062898.312475666 0.323217 -0.196325 10.1825 -0.0500674 -0.0245011 0.0532632 0.22 -0.02 pose: 0.8017449 -4.86194 -3.74362 0 0.00499624 -0.00110641 0.99844 -0.0556024 uwb: 0.0 1249.12 1497.47 +imu_odom_: 1691062898.335399330 0.486023 -0.136469 9.82341 -0.0628506 0.015979 0.0479369 0.22 -0.02 pose: 0.0 -4.86194 -3.74362 0 0.00499624 -0.00110641 0.99844 -0.0556024 uwb: 0.50016169 1252.97 1496.45 +imu_odom_: 1691062898.351348775 0.457293 -0.354342 9.45231 -0.0585895 0.0127832 0.0458064 0.18 0 pose: 0.52006969 -4.8751 -3.74879 0 0.00241242 -0.00429563 0.998427 -0.05585 uwb: 0.0 1252.97 1496.45 +imu_odom_: 1691062898.377314054 0.0814029 -0.217872 10.307 -0.0426106 0.0106526 0.0607201 0.18 0 pose: 0.0 -4.8751 -3.74879 0 0.00241242 -0.00429563 0.998427 -0.05585 uwb: 0.0 1252.97 1496.45 +imu_odom_: 1691062898.403327454 0.471658 -0.009576819.50498 -0.076699 -0.00426106 0.0511327 0.19 0 pose: 0.49040892 -4.88427 -3.7448 0 0.00183885 -0.00171446 0.998422 -0.0560985 uwb: 0.50022876 1250.31 1498.76 +imu_odom_: 1691062898.429332981 -0.114922 -0.268151 9.85214 -0.0671117 0.0745685 0.0511327 0.19 0 pose: 0.0 -4.88427 -3.7448 0 0.00183885 -0.00171446 0.998422 -0.0560985 uwb: 0.0 1250.31 1498.76 +imu_odom_: 1691062898.455395670 0.287304 -0.0837971 9.82341 -0.0575243 -0.0245011 0.0319579 0.19 0 pose: 0.41994636 -4.89743 -3.74998 0 -0.000610144-0.00161474 0.998404 -0.0564487 uwb: 0.49915841 1252.74 1498.14 +imu_odom_: 1691062898.481451068 0.306458 -0.289698 9.96467 -0.0756338 -0.0117179 0.0681769 0.21 -0.02 pose: 0.53026868 -4.90661 -3.746 0 -0.00386372 0.000131962 0.998385 -0.0566802 uwb: 0.0 1252.74 1498.14 +imu_odom_: 1691062898.497446011 0.141258 -0.138864 10.1562 -0.0575243 0.0117179 0.0479369 0.21 -0.02 pose: 0.0 -4.90661 -3.746 0 -0.00386372 0.000131962 0.998385 -0.0566802 uwb: 0.49870052 1251.86 1499.67 +imu_odom_: 1691062898.514501392 0.490811 0.129287 10.1418 -0.0703074 0.0543285 0.00426106 0.21 -0.02 pose: 0.0 -4.90661 -3.746 0 -0.00386372 0.000131962 0.998385 -0.0566802 uwb: 0.0 1251.86 1499.67 +imu_odom_: 1691062898.530501001 0.486023 -0.1652 9.52174 -0.0841559 -0.0138484 -0.04048 0.19 -0.17 pose: 0.77086216 -4.91972 -3.75118 0 -0.00564875 0.000942341 0.998371 -0.0567591 uwb: 0.0 1251.86 1499.67 +imu_odom_: 1691062898.547369727 0.114922 -0.100556 9.97903 -0.0788296 -0.0276969 -0.072438 0.19 -0.17 pose: 0.6887890 -4.91976 -3.7512 0 -0.00493428 0.000975535 0.998391 -0.0564859 uwb: 0.50138370 1253.31 1500.36 +imu_odom_: 1691062898.565440632 0.385466 -0.0694318 10.0652 -0.072438 0.0372843 -0.115049 0.19 -0.17 pose: 0.0 -4.91976 -3.7512 0 -0.00493428 0.000975535 0.998391 -0.0564859 uwb: 0.0 1253.31 1500.36 +imu_odom_: 1691062898.579493480 0.890643 -0.205901 9.96946 -0.0703074 -0.036219 -0.177899 0.2 -0.29 pose: 0.44051350 -4.93135 -3.75303 0 -0.00470065 0.00270243 0.998537 -0.0537978 uwb: 0.0 1253.31 1500.36 +imu_odom_: 1691062898.596449116 0.751779 0.25618 9.8665 -0.0511327 0.0383495 -0.279099 0.18 -0.29 pose: 0.0 -4.93135 -3.75303 0 -0.00470065 0.00270243 0.998537 -0.0537978 uwb: 0.49846720 1249.66 1502.92 +imu_odom_: 1691062898.613365089 0.706289 -0.148441 10.07 -0.0830906 0.02024 -0.290817 0.18 -0.29 pose: 0.0 -4.93135 -3.75303 0 -0.00470065 0.00270243 0.998537 -0.0537978 uwb: 0.0 1249.66 1502.92 +imu_odom_: 1691062898.629299077 0.282516 0.0407014 9.78271 -0.0607201 -0.00319579 -0.353668 0.23 -0.5 pose: 0.20889991 -4.93288 -3.75652 0 -0.00276654 0.00307694 0.99868 -0.0511907 uwb: 0.0 1249.66 1502.92 +imu_odom_: 1691062898.645354100 0.488417 -0.205901 10.0916 -0.0447411 -0.0245011 -0.407996 0.23 -0.5 pose: 0.0 -4.93288 -3.75652 0 -0.00276654 0.00307694 0.99868 -0.0511907 uwb: 0.50036584 1245.98 1505.46 +imu_odom_: 1691062898.662466936 0.445322 0.423774 10.319 -0.0628506 -0.0319579 -0.430367 0.23 -0.5 pose: 0.34065265 -4.9421 -3.75265 0 -0.00122279 0.00418709 0.998958 -0.0454199 uwb: 0.0 1245.98 1505.46 +imu_odom_: 1691062898.679289289 0.627281 -0.260968 9.64145 -0.0777643 -0.0351537 -0.44315 0.23 -0.58 pose: 0.33080655 -4.9421 -3.75265 0 -0.0001323560.00484403 0.999259 -0.0381768 uwb: 0.0 1245.98 1505.46 +imu_odom_: 1691062898.695353061 0.888249 -0.244209 10.1275 -0.0660464 -0.0255663 -0.495348 0.23 -0.58 pose: 0.0 -4.9421 -3.75265 0 -0.0001323560.00484403 0.999259 -0.0381768 uwb: 0.49941798 1245.43 1506.59 +imu_odom_: 1691062898.712294115 1.18992 0.201113 10.5177 -0.0340885 -0.00745685 -0.511327 0.23 -0.58 pose: 0.0 -4.9421 -3.75265 0 -0.0001323560.00484403 0.999259 -0.0381768 uwb: 0.0 1245.43 1506.59 +imu_odom_: 1691062898.729347746 0.667982 -0.112527 9.78031 -0.0639159 -0.0127832 -0.500674 0.18 -0.55 pose: 0.32826920 -4.95519 -3.75802 0 0.00242515 0.0044215 0.999533 -0.0301422 uwb: 0.0 1245.43 1506.59 +imu_odom_: 1691062898.746291426 0.548272 0.124498 9.94073 -0.056459 -0.0330232 -0.523045 0.18 -0.55 pose: 0.0 -4.95519 -3.75802 0 0.00242515 0.0044215 0.999533 -0.0301422 uwb: 0.49982045 1247.09 1506.64 +imu_odom_: 1691062898.762348782 0.653617 0.162806 9.72764 -0.0298274 -0.0681769 -0.519849 0.18 -0.58 pose: 0.16999093 -4.95519 -3.75802 0 0.00410681 0.00461967 0.999655 -0.0255397 uwb: 0.0 1247.09 1506.64 +imu_odom_: 1691062898.778283645 1.57299 -0.1652 10.3094 -0.0639159 -0.0649811 -0.490022 0.18 -0.58 pose: 0.0 -4.95519 -3.75802 0 0.00410681 0.00461967 0.999655 -0.0255397 uwb: 0.0 1247.09 1506.64 +imu_odom_: 1691062898.794282379 1.58257 -0.1652 9.77553 -0.0575243 -0.0191748 -0.459129 0.18 -0.58 pose: 0.0 -4.95519 -3.75802 0 0.00410681 0.00461967 0.999655 -0.0255397 uwb: 0.0 1247.09 1506.64 +imu_odom_: 1691062898.811288179 1.62806 -0.42138 9.55287 -0.0553937 -0.0181095 -0.433563 0.17 -0.55 pose: 0.51049775 -4.96443 -3.75421 0 0.00751581 0.00774778 0.999876 -0.0114313 uwb: 0.0 1247.09 1506.64 +imu_odom_: 1691062898.827287789 0.993594 -0.0287304 9.50737 -0.0596548 0.00958738 -0.377104 0.12 -0.38 pose: 0.0 -4.96443 -3.75421 0 0.00751581 0.00774778 0.999876 -0.0114313 uwb: 0.0 1247.09 1506.64 +imu_odom_: 1691062898.843283023 0.799663 -0.191536 9.83777 -0.0553937 0.036219 -0.315318 0.12 -0.38 pose: 0.65000253 -4.97752 -3.75966 0 0.0142089 0.00780755 0.999858 0.00467109 uwb: 0.100107874 1245.53 1507.93 +imu_odom_: 1691062898.859348254 0.246603 -0.399832 9.77792 -0.0511327 -0.00426106 -0.286556 0.11 -0.35 pose: 0.0 -4.97752 -3.75966 0 0.0142089 0.00780755 0.999858 0.00467109 uwb: 0.0 1245.53 1507.93 +imu_odom_: 1691062898.876344138 0.517148 -0.270545 9.74201 -0.0394148 -0.036219 -0.278034 0.11 -0.35 pose: 0.0 -4.97752 -3.75966 0 0.0142089 0.00780755 0.999858 0.00467109 uwb: 0.0 1245.53 1507.93 +imu_odom_: 1691062898.892346664 0.821211 -0.0430956 9.7851 -0.0532632 -0.0436758 -0.236489 0.11 -0.35 pose: 0.31944680 -4.97752 -3.75966 0 0.0149114 0.00628216 0.999815 0.0104315 uwb: 0.0 1245.53 1507.93 +imu_odom_: 1691062898.908287943 0.818817 -0.349553 9.77074 -0.0585895 -0.0223706 -0.207727 0.11 -0.35 pose: 0.41049400 -4.98241 -3.75762 0 0.0150947 0.0054953 0.999732 0.0166401 uwb: 0.0 1245.53 1507.93 +imu_odom_: 1691062898.925335741 1.0343 -0.371101 9.91439 -0.0585895 -0.0149137 -0.226901 0.11 -0.35 pose: 0.0 -4.98241 -3.75762 0 0.0150947 0.0054953 0.999732 0.0166401 uwb: 0.0 1245.53 1507.93 +imu_odom_: 1691062898.941277021 0.730232 -0.141258 9.80665 -0.0575243 -0.0308927 -0.199204 0.11 -0.35 pose: 0.0 -4.98241 -3.75762 0 0.0150947 0.0054953 0.999732 0.0166401 uwb: 0.99936385 1242.02 1510.88 +imu_odom_: 1691062898.958337360 0.799663 -0.146046 9.89045 -0.0628506 0.00532632 -0.168312 0.07 -0.26 pose: 0.7003675 -4.98676 -3.75584 0 0.0154624 0.00486652 0.999716 0.0174952 uwb: 0.0 1242.02 1510.88 +imu_odom_: 1691062898.975335869 0.732626 -0.131681 10.0748 -0.0575243 -0.00532632 -0.171508 0.09 -0.29 pose: 0.0 -4.98676 -3.75584 0 0.0154624 0.00486652 0.999716 0.0174952 uwb: 0.0 1242.02 1510.88 +imu_odom_: 1691062898.992392417 0.507571 -0.181959 9.79228 -0.052198 -0.0213053 -0.169377 0.09 -0.29 pose: 0.65997404 -4.98676 -3.75584 0 0.0172898 0.00371551 0.999524 0.0252637 uwb: 0.49954338 1246.48 1509.89 +imu_odom_: 1691062899.6333271 0.679953 -0.189142 9.88566 -0.0585895 -0.02024 -0.151268 0.06 -0.2 pose: 0.0 -4.98676 -3.75584 0 0.0172898 0.00371551 0.999524 0.0252637 uwb: 0.0 1246.48 1509.89 +imu_odom_: 1691062899.21329022 0.775721 -0.35913 9.9503 -0.0671117 -0.00852212 -0.122505 0.06 -0.2 pose: 0.0 -4.98676 -3.75584 0 0.0172898 0.00371551 0.999524 0.0252637 uwb: 0.0 1246.48 1509.89 +imu_odom_: 1691062899.37417877 0.720655 -0.387861 10.0676 -0.0532632 0.0106526 -0.122505 0.06 -0.2 pose: 0.32996660 -4.98676 -3.75584 0 0.0146805 0.00291471 0.999477 0.0286656 uwb: 0.49980880 1247.69 1510.11 +imu_odom_: 1691062899.56361106 0.737414 -0.0981623 9.85693 -0.0553937 -0.0138484 -0.111853 0.05 -0.11 pose: 0.39073474 -4.99138 -3.75392 0 0.0151329 -0.0008940060.999376 0.0318898 uwb: 0.0 1247.69 1510.11 +imu_odom_: 1691062899.71423062 0.792481 -0.158017 9.73482 -0.0575243 -0.00639159 -0.092678 0.05 -0.11 pose: 0.9025099 -4.99601 -3.75203 0 0.015474 -3.25922e-050.999349 0.0325857 uwb: 0.0 1247.69 1510.11 +imu_odom_: 1691062899.89411139 0.770933 -0.213084 9.91439 -0.0585895 -0.0127832 -0.0841559 0.05 -0.11 pose: 0.0 -4.99601 -3.75203 0 0.015474 -3.25922e-050.999349 0.0325857 uwb: 0.49993129 1243.2 1513.36 +imu_odom_: 1691062899.107468629 0.632069 -0.339977 9.73243 -0.052198 0.00639159 -0.0798948 0.04 -0.08 pose: 0.42968163 -4.99601 -3.75203 0 0.0184639 -9.85313e-050.999201 0.0354364 uwb: 0.0 1243.2 1513.36 +imu_odom_: 1691062899.121470438 0.658405 -0.126893 10.082 -0.052198 -0.00532632 -0.076699 0.04 -0.11 pose: 0.0 -4.99601 -3.75203 0 0.0184639 -9.85313e-050.999201 0.0354364 uwb: 0.0 1243.2 1513.36 +imu_odom_: 1691062899.138410326 0.596156 -0.167594 9.73243 -0.0585895 -0.0181095 -0.0596548 0.04 -0.11 pose: 0.0 -4.99601 -3.75203 0 0.0184639 -9.85313e-050.999201 0.0354364 uwb: 0.50167535 1242.64 1514.51 +imu_odom_: 1691062899.155518496 0.797269 -0.304064 9.98143 -0.0553937 -0.00319579 -0.0415453 0.04 -0.11 pose: 0.23908274 -4.99601 -3.75203 0 0.0167377 -0.0008516 0.999181 0.0368381 uwb: 0.0 1242.64 1514.51 +imu_odom_: 1691062899.172397429 0.737414 -0.277727 9.79707 -0.0607201 -0.00532632 -0.0298274 0.03 -0.02 pose: 0.0 -4.99601 -3.75203 0 0.0167377 -0.0008516 0.999181 0.0368381 uwb: 0.0 1242.64 1514.51 +imu_odom_: 1691062899.188290586 0.588974 -0.184354 9.94551 -0.0532632 0.00852212 -0.00426106 0.03 -0.02 pose: 0.32240704 -4.99601 -3.75203 0 0.0152365 -0.0001530410.999144 0.0384538 uwb: 0.50024335 1240.69 1516.18 +imu_odom_: 1691062899.205267222 0.543484 -0.280122 9.98143 -0.056459 -0.00319579 0.0298274 0.03 0 pose: 0.42730469 -4.99601 -3.75203 0 0.0150228 -0.00173281 0.999095 0.0397645 uwb: 0.0 1240.69 1516.18 +imu_odom_: 1691062899.221264207 0.593762 -0.251391 9.8665 -0.052198 -0.00958738 0.036219 0.03 0 pose: 0.0 -4.99601 -3.75203 0 0.0150228 -0.00173281 0.999095 0.0397645 uwb: 0.0 1240.69 1516.18 +imu_odom_: 1691062899.237267899 0.823605 -0.227449 9.97424 -0.052198 -0.00958738 0.0479369 0.03 0 pose: 0.0 -4.99601 -3.75203 0 0.0150228 -0.00173281 0.999095 0.0397645 uwb: 0.50018503 1239.31 1517.88 +imu_odom_: 1691062899.254252410 0.636858 -0.179565 9.84735 -0.0532632 0.00745685 0.0617853 0.01 0.05 pose: 0.7115086 -4.99601 -3.75203 0 0.0143252 -0.00189703 0.999103 0.039796 uwb: 0.0 1239.31 1517.88 +imu_odom_: 1691062899.271319165 0.600945 -0.265756 9.92636 -0.0532632 0.00213053 0.0649811 0.01 0 pose: 0.0 -4.99601 -3.75203 0 0.0143252 -0.00189703 0.999103 0.039796 uwb: 0.0 1239.31 1517.88 +imu_odom_: 1691062899.288259345 0.59855 -0.208296 9.87608 -0.0532632 -0.00852212 0.0703074 0.01 0 pose: 0.65853913 -4.99601 -3.75203 0 0.0121657 -0.0009105 0.999144 0.0395361 uwb: 0.50138079 1239.55 1518.41 +imu_odom_: 1691062899.304290453 0.787692 -0.229843 9.93115 -0.0543285 -0.0117179 0.0809601 0 0.08 pose: 0.0 -4.99601 -3.75203 0 0.0121657 -0.0009105 0.999144 0.0395361 uwb: 0.0 1239.55 1518.41 +imu_odom_: 1691062899.329403239 0.605733 -0.189142 9.92397 -0.0532632 0.0106526 0.0671117 0 0.08 pose: 0.0 -4.99601 -3.75203 0 0.0121657 -0.0009105 0.999144 0.0395361 uwb: 0.0 1239.55 1518.41 +imu_odom_: 1691062899.346281881 0.112527 -0.191536 9.92875 -0.056459 0.056459 0.0500674 0 0.02 pose: 0.33042450 -4.99601 -3.75203 0 0.0109163 -0.0004014930.999178 0.0390264 uwb: 0.49781391 1244.39 1516.98 +imu_odom_: 1691062899.362266616 -1.27132 -0.189142 9.81383 -0.0532632 0.120375 0.0138484 0 0.02 pose: 0.42000177 -4.99601 -3.75203 0 0.00899578 0.00120789 0.999219 0.0384576 uwb: 0.0 1244.39 1516.98 +imu_odom_: 1691062899.379344455 -1.94888 -0.110133 10.1227 -0.0447411 0.0138484 -0.0287621 0 0.02 pose: 0.0 -4.99601 -3.75203 0 0.00899578 0.00120789 0.999219 0.0384576 uwb: 0.0 1244.39 1516.98 +imu_odom_: 1691062899.396411210 -1.01035 -0.0167594 9.76116 -0.0596548 -0.0948085 -0.0468716 0.06 -0.02 pose: 0.43042243 -4.99601 -3.75203 0 0.00324477 0.00156771 0.999225 0.0391992 uwb: 0.50004211 1244.08 1517.49 +imu_odom_: 1691062899.413346723 0.380678 -0.265756 10.1059 -0.0596548 -0.0894822 -0.0394148 0.06 -0.02 pose: 0.0 -4.99601 -3.75203 0 0.00324477 0.00156771 0.999225 0.0391992 uwb: 0.0 1244.08 1517.49 +imu_odom_: 1691062899.429265254 0.749385 -0.325611 9.46188 -0.0617853 -0.00319579 -0.0596548 0.06 -0.02 pose: 0.0 -4.99601 -3.75203 0 0.00324477 0.00156771 0.999225 0.0391992 uwb: 0.0 1244.08 1517.49 +imu_odom_: 1691062899.445294029 0.162806 -0.138864 10.2807 -0.04048 0.0426106 -0.0745685 0.12 -0.14 pose: 0.8069654 -4.99601 -3.75203 0 0.00281052 0.00165855 0.999212 0.0395501 uwb: 0.49990504 1242.94 1518.6 +imu_odom_: 1691062899.462248499 -0.282516 -0.387861 9.50498 -0.0532632 0.0181095 -0.0660464 0.1 -0.08 pose: 0.0 -4.99601 -3.75203 0 0.00281052 0.00165855 0.999212 0.0395501 uwb: 0.0 1242.94 1518.6 +imu_odom_: 1691062899.477247459 -0.131681 -0.126893 9.89524 -0.0596548 0.00106526 -0.0639159 0.1 -0.08 pose: 0.65897661 -5.00912 -3.75733 0 0.000632327 0.000155037 0.999086 0.0427354 uwb: 0.0 1242.94 1518.6 +imu_odom_: 1691062899.493239485 0.222661 -0.217872 10.24 -0.0511327 -0.0351537 -0.0490022 0.1 -0.08 pose: 0.0 -5.00912 -3.75733 0 0.000632327 0.000155037 0.999086 0.0427354 uwb: 0.49748727 1240.35 1520.16 +imu_odom_: 1691062899.510289325 0.612916 -0.177171 10.0317 -0.0628506 0.00532632 -0.0511327 0.1 -0.05 pose: 0.0 -5.00912 -3.75733 0 0.000632327 0.000155037 0.999086 0.0427354 uwb: 0.0 1240.35 1520.16 +imu_odom_: 1691062899.527386412 0.306458 -0.0742203 9.77792 -0.0490022 0.0223706 -0.0649811 0.1 -0.05 pose: 0.30955113 -5.00912 -3.75733 0 -0.00244616 0.000273968 0.999016 0.0442929 uwb: 0.0 1240.35 1520.16 +imu_odom_: 1691062899.544273803 -0.0023942 0.0335188 9.5385 -0.0596548 0.00852212 -0.0340885 0.16 -0.08 pose: 0.43119529 -5.01833 -3.75342 0 -0.00249181 0.00199092 0.99892 0.0463522 uwb: 0.50126413 1235.07 1523.06 +imu_odom_: 1691062899.561250148 0.0407014 -0.304064 9.18895 -0.0756338 0.00106526 -0.0330232 0.16 -0.08 pose: 0.0 -5.01833 -3.75342 0 -0.00249181 0.00199092 0.99892 0.0463522 uwb: 0.0 1235.07 1523.06 +imu_odom_: 1691062899.577252090 0.0047884 -0.383072 9.80904 -0.0628506 0.0191748 -0.0468716 0.16 -0.08 pose: 0.0 -5.01833 -3.75342 0 -0.00249181 0.00199092 0.99892 0.0463522 uwb: 0.0 1235.07 1523.06 +imu_odom_: 1691062899.594380967 0.0191536 -0.311246 9.65821 -0.0553937 0.0479369 -0.0511327 0.13 -0.08 pose: 0.7003676 -5.01833 -3.75342 0 -0.00312266 0.00236411 0.998905 0.0466099 uwb: 0.49976213 1232.43 1524.52 +imu_odom_: 1691062899.611380352 0.402226 -0.0574608 9.75398 -0.0713727 0.0191748 -0.0415453 0.12 -0.05 pose: 0.0 -5.01833 -3.75342 0 -0.00312266 0.00236411 0.998905 0.0466099 uwb: 0.0 1232.43 1524.52 +imu_odom_: 1691062899.628440400 0.488417 -0.215478 9.55526 -0.0692422 0.0117179 0.00852212 0.12 -0.05 pose: 0.68005412 -5.02754 -3.74954 0 -0.00868642 0.000957751 0.998741 0.0493931 uwb: 0.0 1232.43 1524.52 +imu_odom_: 1691062899.646294318 0.828394 -0.481235 9.88087 -0.0639159 0.0308927 0.0308927 0.1 -0.08 pose: 0.0 -5.02754 -3.74954 0 -0.00868642 0.000957751 0.998741 0.0493931 uwb: 0.49989337 1227.94 1526.77 +imu_odom_: 1691062899.660230797 0.866701 -0.378284 9.68455 -0.0553937 -0.0319579 0.0255663 0.1 -0.08 pose: 0.0 -5.02754 -3.74954 0 -0.00868642 0.000957751 0.998741 0.0493931 uwb: 0.0 1227.94 1526.77 +imu_odom_: 1691062899.675374415 1.43652 -0.0933739 10.1011 -0.0479369 -0.0127832 0.00745685 0.1 -0.08 pose: 0.33983895 -5.02754 -3.74954 0 -0.00599681 0.000681698 0.998728 0.0500507 uwb: 0.0 1227.94 1526.77 +imu_odom_: 1691062899.692315761 1.43892 0.181959 10.1897 -0.0607201 0.0500674 -0.0276969 0.11 -0.11 pose: 0.38995020 -5.03246 -3.74751 0 -0.0022204 -0.0001508780.998725 0.0504393 uwb: 0.0 1227.94 1526.77 +imu_odom_: 1691062899.710246967 0.56982 -0.107739 9.63666 -0.0671117 0.0287621 -0.0138484 0.11 -0.11 pose: 0.7005717 -5.03678 -3.74571 0 -0.00174216 5.06864e-05 0.998714 0.0506743 uwb: 0.0 1227.94 1526.77 +imu_odom_: 1691062899.724382935 0.608127 -0.440533 9.76595 -0.0660464 0.0191748 -0.0351537 0.11 -0.11 pose: 0.0 -5.03678 -3.74571 0 -0.00174216 5.06864e-05 0.998714 0.0506743 uwb: 0.0 1227.94 1526.77 +imu_odom_: 1691062899.740245469 0.469264 -0.332794 9.93833 -0.0585895 -0.0127832 -0.0788296 0.06 -0.08 pose: 0.42002803 -5.04062 -3.75495 0 0.000924104 -0.00018684 0.998646 0.0520107 uwb: 0.100086002 1231.93 1525.85 +imu_odom_: 1691062899.755429917 0.699107 -0.0407014 10.1107 -0.056459 -0.00958738 -0.0703074 0.06 -0.02 pose: 0.0 -5.04062 -3.75495 0 0.000924104 -0.00018684 0.998646 0.0520107 uwb: 0.0 1231.93 1525.85 +imu_odom_: 1691062899.771431860 0.85473 -0.0526724 9.8689 -0.0649811 -0.0149137 -0.0213053 0.06 -0.02 pose: 0.0 -5.04062 -3.75495 0 0.000924104 -0.00018684 0.998646 0.0520107 uwb: 0.0 1231.93 1525.85 +imu_odom_: 1691062899.788443494 0.708684 -0.474052 9.87369 -0.0585895 0.0138484 -0.0149137 0.06 -0.02 pose: 0.23060448 -5.04062 -3.75495 0 0.00213061 -0.00130063 0.998573 0.0533437 uwb: 0.49912925 1233.89 1525.31 +imu_odom_: 1691062899.804550139 0.746991 -0.265756 9.91918 -0.052198 -0.0127832 -0.0181095 0.07 -0.08 pose: 0.0 -5.04062 -3.75495 0 0.00213061 -0.00130063 0.998573 0.0533437 uwb: 0.0 1233.89 1525.31 +imu_odom_: 1691062899.831379867 0.620098 -0.126893 9.80665 -0.0543285 0.0191748 -0.00319579 0.07 -0.08 pose: 0.30946072 -5.04062 -3.75495 0 0.00474684 -0.0009174860.998504 0.0544597 uwb: 0.0 1233.89 1525.31 +imu_odom_: 1691062899.847244443 0.265756 -0.225055 9.94073 -0.0575243 0.0298274 -0.015979 0.06 -0.02 pose: 0.33908357 -5.04062 -3.75495 0 0.00731312 -0.00131973 0.998439 0.055365 uwb: 0.50095790 1234.97 1525.27 +imu_odom_: 1691062899.874343072 -1.30723 -0.380678 10.0892 -0.0500674 0.0255663 0.0181095 0.06 -0.02 pose: 0.0 -5.04062 -3.75495 0 0.00731312 -0.00131973 0.998439 0.055365 uwb: 0.0 1234.97 1525.27 +imu_odom_: 1691062899.899303618 -0.0814029 -0.366313 9.76595 -0.052198 -0.0820254 0.0213053 0.08 -0.02 pose: 0.43016577 -5.04982 -3.75102 0 0.00547375 0.000180967 0.998398 0.0563125 uwb: 0.49922841 1235.49 1525.19 +imu_odom_: 1691062899.926304545 0.457293 0.0574608 9.7851 -0.0426106 -0.00319579 0.00852212 0.11 0 pose: 0.43989229 -5.04982 -3.75102 0 0.00182497 -0.0003998750.998387 0.0567431 uwb: 0.0 1235.49 1525.19 +imu_odom_: 1691062899.952251450 -0.0550666 -0.304064 10.0078 -0.0532632 0.0532632 0.0106526 0.11 0 pose: 0.0 -5.04982 -3.75102 0 0.00182497 -0.0003998750.998387 0.0567431 uwb: 0.50062250 1235.2 1525.78 +imu_odom_: 1691062899.979344246 -0.00957681-0.392649 9.87369 -0.0319579 0 0.00426106 0.15 -0.05 pose: 0.7084171 -5.04982 -3.75102 0 0.00191111 0.000349937 0.998381 0.0568541 uwb: 0.0 1235.2 1525.78 +imu_odom_: 1691062899.995244695 0.493206 -0.1652 9.38288 -0.052198 0.00532632 0.0149137 0.15 -0.05 pose: 0.0 -5.04982 -3.75102 0 0.00191111 0.000349937 0.998381 0.0568541 uwb: 0.49921675 1232.7 1527.59 +imu_odom_: 1691062900.22239497 0.586579 -0.253785 9.8689 -0.0436758 0.0245011 0.0372843 0.17 0 pose: 0.52927416 -5.05904 -3.74716 0 -0.00177255 0.00174544 0.998333 0.0576703 uwb: 0.0 1232.7 1527.59 +imu_odom_: 1691062900.47217542 0.201113 -0.143652 9.9934 -0.0532632 -0.0458064 0.0138484 0.17 0 pose: 0.0 -5.05904 -3.74716 0 -0.00177255 0.00174544 0.998333 0.0576703 uwb: 0.50017628 1231.91 1528.29 +imu_odom_: 1691062900.74287882 -0.00957681-0.0933739 9.54089 -0.0585895 -0.0330232 0.0287621 0.15 -0.02 pose: 0.43922732 -5.05904 -3.74716 0 -0.00146469 0.00116618 0.998301 0.05823 uwb: 0.0 1231.91 1528.29 +imu_odom_: 1691062900.90216329 -0.0023942 -0.275333 9.69652 -0.0436758 -0.0287621 0.0266316 0.15 -0.02 pose: 0.0 -5.05904 -3.74716 0 -0.00146469 0.00116618 0.998301 0.05823 uwb: 0.49982046 1230.15 1529.3 +imu_odom_: 1691062900.117213757 0.363919 -0.138864 10.1155 -0.0543285 0.0138484 0.02024 0.15 0 pose: 0.51030236 -5.06825 -3.74328 0 -0.00234696 0.00168675 0.998277 0.0586121 uwb: 0.0 1230.15 1529.3 +imu_odom_: 1691062900.143243199 0.634463 -0.263362 9.55047 -0.0660464 0.0234358 0.0255663 0.15 -0.02 pose: 0.62945584 -5.07862 -3.74975 0 -0.00319003 0.00326568 0.998243 0.0590794 uwb: 0.49983797 1234.86 1527.48 +imu_odom_: 1691062900.170359036 0.155623 -0.459687 9.43315 -0.0809601 0.00745685 0.036219 0.15 -0.02 pose: 0.0 -5.07862 -3.74975 0 -0.00319003 0.00326568 0.998243 0.0590794 uwb: 0.0 1234.86 1527.48 +imu_odom_: 1691062900.196294858 0.629675 -0.275333 10.058 -0.056459 0.0308927 0.0191748 0.15 -0.02 pose: 0.8006950 -5.08136 -3.74859 0 -0.00256668 0.00291263 0.998243 0.0591337 uwb: 0.50013837 1234.64 1528.24 +imu_odom_: 1691062900.223274787 0.730232 -0.1652 10.5417 -0.0351537 -0.0117179 0.015979 0.15 -0.02 pose: 0.0 -5.08136 -3.74859 0 -0.00256668 0.00291263 0.998243 0.0591337 uwb: 0.0 1234.64 1528.24 +imu_odom_: 1691062900.248328369 0.622492 -0.0646434 10.0054 -0.0575243 -0.056459 0.0308927 0.15 0 pose: 0.53017245 -5.08136 -3.74859 0 -0.00251785 -0.0004269010.998232 0.0593878 uwb: 0.50036877 1239.42 1526.56 +imu_odom_: 1691062900.265394833 0.543484 -0.158017 9.98382 -0.0585895 -0.0170442 0.0500674 0.15 0 pose: 0.0 -5.08136 -3.74859 0 -0.00251785 -0.0004269010.998232 0.0593878 uwb: 0.0 1239.42 1526.56 +imu_odom_: 1691062900.291205246 0.395043 -0.126893 9.72525 -0.0607201 -0.015979 0.0255663 0.15 -0.05 pose: 0.53083741 -5.09056 -3.74468 0 0.0025781 0.000234027 0.998199 0.0599292 uwb: 0.49927217 1237.6 1527.43 +imu_odom_: 1691062900.308201715 0.521936 -0.0215478 10.2113 -0.04048 -0.00106526 0.0319579 0.15 -0.05 pose: 0.0 -5.09056 -3.74468 0 0.0025781 0.000234027 0.998199 0.0599292 uwb: 0.0 1237.6 1527.43 +imu_odom_: 1691062900.334284529 0.215478 -0.387861 9.71567 -0.0394148 -0.00958738 0.0319579 0.16 -0.05 pose: 0.76880022 -5.10478 -3.73862 0 0.00447446 0.00450561 0.998168 0.0601764 uwb: 0.0 1237.6 1527.43 +imu_odom_: 1691062900.361207585 0.378284 -0.134075 9.56723 -0.0639159 0.00319579 0.0479369 0.2 -0.02 pose: 0.8071988 -5.10897 -3.73687 0 0.00389216 0.00403725 0.99817 0.0602075 uwb: 0.50022877 1237.88 1528.06 +imu_odom_: 1691062900.386205754 0.708684 -0.0646434 10.7021 -0.0607201 -0.052198 0.0468716 0.18 0 pose: 0.44933882 -5.1128 -3.74611 0 -4.109e-05 0.00381121 0.998181 0.0601746 uwb: 0.49978839 1237.19 1528.98 +imu_odom_: 1691062900.413217181 0.723049 -0.047884 10.2759 -0.0607201 -0.0266316 0.04048 0.19 -0.02 pose: 0.0 -5.1128 -3.74611 0 -4.109e-05 0.00381121 0.998181 0.0601746 uwb: 0.0 1237.19 1528.98 +imu_odom_: 1691062900.429220582 0.816423 -0.311246 9.75637 -0.0575243 0.0308927 0.0308927 0.19 -0.02 pose: 0.32008553 -5.12204 -3.74228 0 0.00378254 0.00424469 0.998178 0.0600709 uwb: 0.0 1237.19 1528.98 +imu_odom_: 1691062900.456295588 0.383072 -0.0790087 9.81144 -0.0532632 0.0436758 0.0319579 0.23 -0.02 pose: 0.0 -5.12204 -3.74228 0 0.00378254 0.00424469 0.998178 0.0600709 uwb: 0.49874720 1240.68 1528.1 +imu_odom_: 1691062900.482280408 -0.102951 -0.28491 9.72764 -0.0607201 -0.0170442 0.0511327 0.23 -0.02 pose: 0.44012269 -5.13128 -3.73846 0 0.00604121 0.00404784 0.998163 0.0601469 uwb: 0.0 1240.68 1528.1 +imu_odom_: 1691062900.509253045 0.179565 -0.023942 9.75398 -0.0703074 -0.036219 0.0351537 0.21 -0.02 pose: 0.45052001 -5.13128 -3.73846 0 0.001468 0.00420733 0.998183 0.0600916 uwb: 0.50119414 1238.61 1529.68 +imu_odom_: 1691062900.535206950 0.332794 -0.114922 10.0916 -0.0617853 -0.00319579 0.0426106 0.21 -0.02 pose: 0.7094962 -5.13128 -3.73846 0 0.000945356 0.00447099 0.998181 0.0601109 uwb: 0.0 1238.61 1529.68 +imu_odom_: 1691062900.562222751 0.385466 -0.246603 9.79228 -0.052198 0.00745685 0.0500674 0.23 -0.02 pose: 0.45831580 -5.14315 -3.74097 0 -0.00313498 0.00511823 0.998172 0.0601388 uwb: 0.49869178 1243.56 1528.28 +imu_odom_: 1691062900.578344270 0.469264 -0.320823 10.0245 -0.0543285 -0.0607201 0.0532632 0.23 -0.02 pose: 0.0 -5.14315 -3.74097 0 -0.00313498 0.00511823 0.998172 0.0601388 uwb: 0.0 1243.56 1528.28 +imu_odom_: 1691062900.605339073 0.682347 -0.0047884 10.1562 -0.0426106 -0.0394148 0.0340885 0.22 0 pose: 0.43137320 -5.15359 -3.74004 0 -0.00111751 0.00123587 0.998203 0.0598937 uwb: 0.50001004 1244.3 1528.69 +imu_odom_: 1691062900.631344308 0.639252 -0.1652 10.2041 -0.0500674 -0.0287621 0.0394148 0.18 0 pose: 0.0 -5.15359 -3.74004 0 -0.00111751 0.00123587 0.998203 0.0598937 uwb: 0.0 1244.3 1528.69 +imu_odom_: 1691062900.658257157 0.797269 0.0167594 9.81144 -0.0490022 -0.0138484 0.0458064 0.23 0 pose: 0.53000038 -5.16283 -3.73622 0 0.00466252 0.00247056 0.998187 0.059959 uwb: 0.0 1244.3 1528.69 +imu_odom_: 1691062900.674249184 0.605733 -0.217872 9.99819 -0.0628506 -0.00639159 0.052198 0.23 0 pose: 0.0 -5.16283 -3.73622 0 0.00466252 0.00247056 0.998187 0.059959 uwb: 0.0 1244.3 1528.69 +imu_odom_: 1691062900.701364729 0.572214 -0.19393 9.93354 -0.0735032 0 0.0394148 0.18 0 pose: 0.34935840 -5.17207 -3.7324 0 0.00765522 0.00305927 0.998175 0.0598171 uwb: 0.100020382 1246.43 1528.43 +imu_odom_: 1691062900.727462418 0.557849 -0.189142 10.1801 -0.0681769 -0.0372843 0.0458064 0.18 0.02 pose: 0.35084581 -5.17207 -3.7324 0 0.00881945 -0.0004716390.998175 0.0597416 uwb: 0.0 1246.43 1528.43 +imu_odom_: 1691062900.754430097 0.409408 -0.0383072 9.83059 -0.0692422 -0.0745685 0.0500674 0.18 0.02 pose: 0.0 -5.17207 -3.7324 0 0.00881945 -0.0004716390.998175 0.0597416 uwb: 0.0 1246.43 1528.43 +imu_odom_: 1691062900.780177805 1.21625 -0.335188 9.9527 -0.056459 -0.0617853 0.0298274 0.18 -0.02 pose: 0.7987702 -5.17207 -3.7324 0 0.00843447 8.13274e-05 0.998179 0.0597226 uwb: 0.0 1246.43 1528.43 +imu_odom_: 1691062900.807200314 0.385466 -0.289698 10.1562 -0.0351537 -0.0117179 0.036219 0.18 -0.02 pose: 0.0 -5.17207 -3.7324 0 0.00843447 8.13274e-05 0.998179 0.0597226 uwb: 0.100106419 1253.34 1526.37 +imu_odom_: 1691062900.824198241 0.25618 -0.296881 9.46667 -0.0703074 0.00639159 0.04048 0.18 0 pose: 0.52867629 -5.18513 -3.73782 0 0.00768875 0.00285619 0.998189 0.0595935 uwb: 0.0 1253.34 1526.37 +imu_odom_: 1691062900.851319911 0.682347 -0.301669 10.1418 -0.0692422 -0.0298274 0.0511327 0.18 0 pose: 0.0 -5.18513 -3.73782 0 0.00768875 0.00285619 0.998189 0.0595935 uwb: 0.50147121 1253.99 1526.55 +imu_odom_: 1691062900.876313122 0.215478 -0.347159 9.91199 -0.0543285 -0.00319579 0.0330232 0.24 0.02 pose: 0.53012287 -5.19437 -3.734 0 0.00683076 0.000914773 0.998192 0.0597056 uwb: 0.0 1253.99 1526.55 +imu_odom_: 1691062900.903181349 0.873884 -0.131681 9.71088 -0.0585895 -0.0170442 0.0447411 0.22 -0.02 pose: 0.61080775 -5.20361 -3.73018 0 0.00601046 -0.0018882 0.998202 0.0596086 uwb: 0.49866845 1254.82 1527.09 +imu_odom_: 1691062900.919358281 1.02472 -0.172383 9.88805 -0.0447411 0.00106526 0.0458064 0.22 -0.02 pose: 0.0 -5.20361 -3.73018 0 0.00601046 -0.0018882 0.998202 0.0596086 uwb: 0.0 1254.82 1527.09 +imu_odom_: 1691062900.946193843 0.35913 -0.138864 10.0987 -0.0575243 0.0330232 0.0490022 0.23 0.05 pose: 0.6898973 -5.20361 -3.73018 0 0.00672276 -0.00173273 0.998199 0.0595929 uwb: 0.49878219 1255.16 1527.79 +imu_odom_: 1691062900.971169263 0.426168 -0.0574608 9.91678 -0.0543285 0.02024 0.0447411 0.23 0.05 pose: 0.0 -5.20361 -3.73018 0 0.00672276 -0.00173273 0.998199 0.0595929 uwb: 0.0 1255.16 1527.79 +imu_odom_: 1691062900.988171856 0.296881 -0.378284 9.93833 -0.0511327 0.00745685 0.0447411 0.21 0 pose: 0.44039976 -5.21286 -3.72637 0 0.00948286 -0.00078973 0.998185 0.0594641 uwb: 0.49975339 1255.67 1528.85 +imu_odom_: 1691062901.13302726 0.0550666 -0.287304 9.83059 -0.0660464 0 0.0500674 0.21 0 pose: 0.0 -5.21286 -3.72637 0 0.00948286 -0.00078973 0.998185 0.0594641 uwb: 0.0 1255.67 1528.85 +imu_odom_: 1691062901.40176202 0.392649 -0.28491 9.8282 -0.0777643 0.0383495 0.0585895 0.23 0 pose: 0.51034319 -5.22591 -3.73179 0 0.00503884 0.0015368 0.998226 0.059313 uwb: 0.50187077 1258.84 1528.32 +imu_odom_: 1691062901.65142582 0.739808 -0.409408 10.2185 -0.0745685 0.0351537 0.0447411 0.23 0 pose: 0.0 -5.22591 -3.73179 0 0.00503884 0.0015368 0.998226 0.059313 uwb: 0.0 1258.84 1528.32 +imu_odom_: 1691062901.92149342 0.0574608 -0.0981623 10.0892 -0.0575243 0.0276969 0.0500674 0.21 -0.02 pose: 0.42011553 -5.23516 -3.72798 0 0.00116977 -0.0002819420.998252 0.0590883 uwb: 0.49837390 1262.25 1527.14 +imu_odom_: 1691062901.117197092 0.474052 -0.258574 9.84975 -0.0607201 0.0255663 0.0436758 0.18 0 pose: 0.51897020 -5.24441 -3.72418 0 0.000679592 -0.00318099 0.998264 0.0588008 uwb: 0.0 1262.25 1527.14 +imu_odom_: 1691062901.144185770 0.399832 -0.208296 9.4978 -0.0468716 -0.0223706 0.036219 0.2 0 pose: 0.0 -5.24441 -3.72418 0 0.000679592 -0.00318099 0.998264 0.0588008 uwb: 0.50085874 1260.72 1528.68 +imu_odom_: 1691062901.160306123 0.320823 0.0311246 10.5848 -0.0287621 -0.0149137 0.0458064 0.2 0 pose: 0.52139672 -5.25366 -3.72038 0 0.000588497 -0.00167838 0.998276 0.05866 uwb: 0.0 1260.72 1528.68 +imu_odom_: 1691062901.187156851 0.766145 -0.0335188 10.1251 -0.0447411 -0.0458064 0.0458064 0.18 0.02 pose: 0.0 -5.25366 -3.72038 0 0.000588497 -0.00167838 0.998276 0.05866 uwb: 0.50000713 1263.96 1528.25 +imu_odom_: 1691062901.213298287 0.40462 0.0383072 10.1442 -0.0458064 0.0106526 0.0468716 0.19 0 pose: 0.43902609 -5.25746 -3.72963 0 0.00072242 0.00231026 0.998278 0.058617 uwb: 0.0 1263.96 1528.25 +imu_odom_: 1691062901.230302922 0.488417 -0.342371 9.85214 -0.0585895 -0.0415453 0.0468716 0.19 0 pose: 0.0 -5.25746 -3.72963 0 0.00072242 0.00231026 0.998278 0.058617 uwb: 0.0 1263.96 1528.25 +imu_odom_: 1691062901.255211554 0.656011 -0.368707 10.0006 -0.0468716 -0.00319579 0.0447411 0.18 0 pose: 0.27078215 -5.26671 -3.72583 0 0.00269263 0.0037952 0.998275 0.0585276 uwb: 0.50007422 1261.08 1530.57 +imu_odom_: 1691062901.282138986 0.344765 0.0263362 9.91918 -0.0596548 0.00213053 0.052198 0.18 0 pose: 0.0 -5.26671 -3.72583 0 0.00269263 0.0037952 0.998275 0.0585276 uwb: 0.0 1261.08 1530.57 +imu_odom_: 1691062901.307200735 0.6608 -0.059855 10.2448 -0.0756338 0.015979 0.052198 0.18 -0.02 pose: 0.42865504 -5.27596 -3.72203 0 0.00321701 0.00332633 0.998284 0.0583788 uwb: 0.49840889 1260.1 1532.1 +imu_odom_: 1691062901.324203328 -0.0430956 -0.368707 9.90242 -0.0543285 0.0117179 0.0330232 0.18 -0.02 pose: 0.0 -5.27596 -3.72203 0 0.00321701 0.00332633 0.998284 0.0583788 uwb: 0.0 1260.1 1532.1 +imu_odom_: 1691062901.349234162 0.047884 -0.189142 10.1682 -0.0394148 -0.0170442 0.036219 0.18 0 pose: 0.51965848 -5.28521 -3.71824 0 0.00342546 0.0043972 0.998294 0.0581164 uwb: 0.50049418 1261.43 1532.46 +imu_odom_: 1691062901.376212341 0.665588 -0.205901 10.1083 -0.0553937 -0.0308927 0.036219 0.18 0 pose: 0.0 -5.28521 -3.71824 0 0.00342546 0.0043972 0.998294 0.0581164 uwb: 0.0 1261.43 1532.46 +imu_odom_: 1691062901.402226326 0.471658 -0.433351 9.83777 -0.0319579 0.0213053 0.0383495 0.18 0.02 pose: 0.41998721 -5.289 -3.7275 0 0.00244647 0.00403149 0.998301 0.0580785 uwb: 0.49968340 1260.48 1534.05 +imu_odom_: 1691062901.429165132 0.40462 0.11971 10.2999 -0.0330232 0.0447411 0.0383495 0.23 0 pose: 0.52084550 -5.29826 -3.72371 0 0.00361579 0.00239489 0.998298 0.0581509 uwb: 0.0 1260.48 1534.05 +imu_odom_: 1691062901.454296585 0.562637 -0.0526724 10.2472 -0.0575243 0.0106526 0.0458064 0.23 0 pose: 0.0 -5.29826 -3.72371 0 0.00361579 0.00239489 0.998298 0.0581509 uwb: 0.0 1260.48 1534.05 +imu_odom_: 1691062901.481282930 0.134075 -0.0766145 10.0628 -0.0607201 0.0127832 0.0458064 0.23 -0.02 pose: 0.70066503 -5.31408 -3.71722 0 0.00422034 0.00511827 0.998289 0.0580932 uwb: 0.0 1260.48 1534.05 +imu_odom_: 1691062901.506169106 0.445322 -0.0502782 9.67018 -0.0916127 -0.0149137 0.0628506 0.23 -0.02 pose: 0.6943012 -5.31676 -3.71612 0 0.00347265 0.0052061 0.998293 0.0580755 uwb: 0.100008426 1258.49 1535.91 +imu_odom_: 1691062901.523284859 0.833182 -0.296881 9.82102 -0.092678 0.0500674 0.0500674 0.21 -0.02 pose: 0.0 -5.31676 -3.71612 0 0.00347265 0.0052061 0.998293 0.0580755 uwb: 0.0 1258.49 1535.91 +imu_odom_: 1691062901.539195224 0.19393 -0.304064 9.84496 -0.0553937 0.00639159 0.0266316 0.21 -0.02 pose: 0.51921810 -5.32602 -3.71234 0 0.00285658 0.00675582 0.998308 0.0576899 uwb: 0.50126706 1261.19 1535.51 +imu_odom_: 1691062901.566252440 0.287304 -0.136469 10.149 -0.0458064 -0.0287621 0.0394148 0.25 0 pose: 0.0 -5.32602 -3.71234 0 0.00285658 0.00675582 0.998308 0.0576899 uwb: 0.0 1261.19 1535.51 +imu_odom_: 1691062901.591133366 0.567426 -0.304064 10.0437 -0.0553937 -0.00426106 0.0447411 0.25 0 pose: 0.33988854 -5.3298 -3.72159 0 0.0013331 0.00506161 0.998318 0.0577406 uwb: 0.49858679 1258.38 1538.07 +imu_odom_: 1691062901.618108045 0.433351 0.0263362 9.64145 -0.0436758 -0.00319579 0.0383495 0.21 -0.02 pose: 0.43983105 -5.33906 -3.71781 0 0.00127846 0.00300972 0.99833 0.0576816 uwb: 0.0 1258.38 1538.07 +imu_odom_: 1691062901.644144487 0.282516 -0.272939 9.53371 -0.0628506 0.0340885 0.0340885 0.19 -0.02 pose: 0.7018258 -5.33906 -3.71781 0 0.00135297 0.00374889 0.998327 0.0576864 uwb: 0.49998964 1257.9 1539.47 +imu_odom_: 1691062901.668242042 0.529119 -0.371101 9.67736 -0.0585895 0.0298274 0.0511327 0.25 0 pose: 0.45992863 -5.34831 -3.71403 0 -0.0007325880.00389318 0.998322 0.0577765 uwb: 0.0 1257.9 1539.47 +imu_odom_: 1691062901.692112694 0.56982 -0.191536 9.55765 -0.0458064 0.0383495 0.0415453 0.25 0 pose: 0.0 -5.34831 -3.71403 0 -0.0007325880.00389318 0.998322 0.0577765 uwb: 0.50043002 1257.3 1540.64 +imu_odom_: 1691062901.708221381 0.141258 -0.462081 10.3669 -0.0394148 0.0117179 0.0415453 0.18 0.02 pose: 0.31048442 -5.35757 -3.71025 0 0.000563395 0.00172292 0.998337 0.057625 uwb: 0.0 1257.3 1540.64 +imu_odom_: 1691062901.735273055 0.64404 -0.263362 10.2807 -0.056459 -0.0383495 0.0500674 0.18 0.02 pose: 0.0 -5.35757 -3.71025 0 0.000563395 0.00172292 0.998337 0.057625 uwb: 0.0 1257.3 1540.64 +imu_odom_: 1691062901.760121316 0.363919 -0.289698 10.0126 -0.0532632 -0.00106526 0.0415453 0.25 0 pose: 0.41220308 -5.35757 -3.71025 0 0.00145364 0.000445128 0.998342 0.0575452 uwb: 0.49950841 1258.54 1540.81 +imu_odom_: 1691062901.785269977 0.56982 0.122104 10.0963 -0.0394148 -0.0415453 0.0394148 0.21 0 pose: 0.43708079 -5.37061 -3.71573 0 0.0013953 -0.00145036 0.998348 0.0574156 uwb: 0.0 1258.54 1540.81 +imu_odom_: 1691062901.799120420 0.1652 -0.201113 9.82102 -0.0458064 0.00426106 0.0351537 0.21 0 pose: 0.0 -5.37061 -3.71573 0 0.0013953 -0.00145036 0.998348 0.0574156 uwb: 0.49987297 1261.8 1540.33 +imu_odom_: 1691062901.824185961 0.172383 -0.253785 9.57441 -0.0607201 0 0.0415453 0.17 0 pose: 0.7068422 -5.37061 -3.71573 0 0.00181711 -0.0007554580.998348 0.0574172 uwb: 0.0 1261.8 1540.33 +imu_odom_: 1691062901.849156131 0.356736 -0.0263362 10.2663 -0.0788296 0.0191748 0.0543285 0.17 0 pose: 0.0 -5.37061 -3.71573 0 0.00181711 -0.0007554580.998348 0.0574172 uwb: 0.49995464 1260.73 1541.74 +imu_odom_: 1691062901.872184207 0.538695 -0.234632 10.1083 -0.0713727 0.00532632 0.0415453 0.2 0 pose: 0.38979855 -5.37987 -3.71195 0 0.000745329 0.000982376 0.998348 0.057447 uwb: 0.0 1260.73 1541.74 +imu_odom_: 1691062901.888107988 0.141258 -0.457293 9.71806 -0.052198 0.0383495 0.0330232 0.2 0 pose: 0.0 -5.37987 -3.71195 0 0.000745329 0.000982376 0.998348 0.057447 uwb: 0.49982922 1258.24 1543.84 +imu_odom_: 1691062901.915166370 0.505177 -0.215478 10.2592 -0.0468716 -0.0394148 0.0458064 0.25 -0.02 pose: 0.48996272 -5.38913 -3.70817 0 -0.00106761 0.00251359 0.998357 0.0572367 uwb: 0.0 1258.24 1543.84 +imu_odom_: 1691062901.931156064 0.11971 0.136469 9.59835 -0.0649811 -0.0170442 0.0585895 0.25 -0.02 pose: 0.0 -5.38913 -3.70817 0 -0.00106761 0.00251359 0.998357 0.0572367 uwb: 0.0 1258.24 1543.84 +imu_odom_: 1691062901.958111494 0.186748 -0.287304 9.3326 -0.0628506 -0.0170442 0.0308927 0.25 0 pose: 0.40946157 -5.39839 -3.7044 0 -0.0002170620.00048844 0.99836 0.0572447 uwb: 0.50140413 1258.69 1544.79 +imu_odom_: 1691062901.984222307 -0.0191536 -0.395043 10.07 -0.04048 -0.0138484 0.0532632 0.25 0 pose: 0.0 -5.39839 -3.7044 0 -0.0002170620.00048844 0.99836 0.0572447 uwb: 0.0 1258.69 1544.79 +imu_odom_: 1691062902.11165196 0.445322 -0.203507 9.663 -0.0511327 -0.0234358 0.0458064 0.25 0.02 pose: 0.43090949 -5.40216 -3.71366 0 0.000373545 0.00111279 0.998369 0.0570719 uwb: 0.49891928 1257.2 1546.58 +imu_odom_: 1691062902.36102995 0.792481 -0.351948 10.1155 -0.0575243 -0.0234358 0.0585895 0.25 0.02 pose: 0.0 -5.40216 -3.71366 0 0.000373545 0.00111279 0.998369 0.0570719 uwb: 0.49964257 1253.18 1549.13 +imu_odom_: 1691062902.53160418 0.440533 -0.196325 9.58878 -0.0671117 0.00532632 0.0436758 0.23 -0.02 pose: 0.51934933 -5.41142 -3.70989 0 -0.0028274 -0.00028501 0.998373 0.0569584 uwb: 0.0 1253.18 1549.13 +imu_odom_: 1691062902.79212318 0.471658 -0.459687 9.64384 -0.0671117 0.0330232 0.0468716 0.23 -0.02 pose: 0.0 -5.41142 -3.70989 0 -0.0028274 -0.00028501 0.998373 0.0569584 uwb: 0.0 1253.18 1549.13 +imu_odom_: 1691062902.105191597 0.718261 -0.136469 9.91439 -0.0617853 0.0127832 0.0372843 0.18 0 pose: 0.51995015 -5.42069 -3.70612 0 0.00191267 -0.0002794690.998392 0.0566471 uwb: 0.50095209 1252.55 1550.3 +imu_odom_: 1691062902.130112479 0.603339 -0.42138 9.98143 -0.072438 -0.00639159 0.0511327 0.2 0 pose: 0.62058678 -5.42995 -3.70236 0 0.00384212 -0.00127288 0.998391 0.0565651 uwb: 0.0 1252.55 1550.3 +imu_odom_: 1691062902.157158613 0.497994 -0.0263362 9.61511 -0.0628506 -0.00213053 0.0394148 0.2 0 pose: 0.0 -5.42995 -3.70236 0 0.00384212 -0.00127288 0.998391 0.0565651 uwb: 0.0 1252.55 1550.3 +imu_odom_: 1691062902.182227070 0.696713 -0.208296 9.67497 -0.0639159 -0.0394148 0.0415453 0.19 0 pose: 0.5909989 -5.42995 -3.70236 0 0.00414371 -0.00183477 0.998391 0.0565295 uwb: 0.0 1252.55 1550.3 +imu_odom_: 1691062902.209099089 0.787692 -0.308852 9.60314 -0.0639159 -0.00852212 0.0266316 0.19 0 pose: 0.0 -5.42995 -3.70236 0 0.00414371 -0.00183477 0.998391 0.0565295 uwb: 0.100089797 1253.44 1550.98 +imu_odom_: 1691062902.234254749 0.56982 -0.608127 9.53132 -0.0607201 0.0276969 0.0447411 0.18 -0.02 pose: 0.54262882 -5.45224 -3.7041 0 0.00612916 -0.00104021 0.998387 0.056425 uwb: 0.0 1253.44 1550.98 +imu_odom_: 1691062902.251348045 0.196325 -0.385466 10.2185 -0.0276969 0.00745685 0.0351537 0.18 -0.02 pose: 0.0 -5.45224 -3.7041 0 0.00612916 -0.00104021 0.998387 0.056425 uwb: 0.49963674 1250.98 1553.24 +imu_odom_: 1691062902.277303409 0.61531 -0.198719 9.36612 -0.0458064 0.0287621 0.0490022 0.18 0.02 pose: 0.51817108 -5.46151 -3.70035 0 0.0103732 -0.00303018 0.998341 0.056548 uwb: 0.0 1250.98 1553.24 +imu_odom_: 1691062902.304124681 0.397437 0.0263362 10.1227 -0.0490022 -0.015979 0.0436758 0.23 -0.05 pose: 0.42115382 -5.46151 -3.70035 0 0.00838286 -0.00406347 0.99836 0.0564829 uwb: 0.50005964 1246.02 1556.46 +imu_odom_: 1691062902.329169806 0.426168 -0.399832 9.99579 -0.0639159 0.00319579 0.0458064 0.17 -0.02 pose: 0.25018001 -5.47078 -3.69659 0 0.00879548 -0.00185794 0.998367 0.0564057 uwb: 0.0 1246.02 1556.46 +imu_odom_: 1691062902.346120194 0.61531 -0.433351 10.0365 -0.0426106 0.0127832 0.04048 0.17 -0.02 pose: 0.0 -5.47078 -3.69659 0 0.00879548 -0.00185794 0.998367 0.0564057 uwb: 0.49992256 1245.48 1557.88 +imu_odom_: 1691062902.363144661 0.184354 -0.0047884 9.56723 -0.0671117 0 0.0447411 0.23 0 pose: 0.27870919 -5.47453 -3.70585 0 0.00736623 -0.0007701010.998384 0.0563482 uwb: 0.0 1245.48 1557.88 +imu_odom_: 1691062902.390094842 0.0167594 -0.433351 9.79947 -0.0639159 -0.00426106 0.0458064 0.23 0 pose: 0.0 -5.47453 -3.70585 0 0.00736623 -0.0007701010.998384 0.0563482 uwb: 0.49982340 1245.31 1558.83 +imu_odom_: 1691062902.406125367 0.667982 -0.0909797 10.0892 -0.0617853 -0.0649811 0.0319579 0.26 0 pose: 0.42057343 -5.4838 -3.7021 0 0.00611781 -0.00314975 0.998393 0.0562499 uwb: 0.0 1245.31 1558.83 +imu_odom_: 1691062902.433134753 1.14203 -0.299275 9.74679 -0.0447411 0.0149137 0.0351537 0.26 0 pose: 0.0 -5.4838 -3.7021 0 0.00611781 -0.00314975 0.998393 0.0562499 uwb: 0.0 1245.31 1558.83 +imu_odom_: 1691062902.458130881 0.665588 -0.150835 10.0796 -0.0436758 0.0340885 0.0330232 0.23 0 pose: 0.16020026 -5.4838 -3.7021 0 0.00473796 -0.00284564 0.998404 0.0562045 uwb: 0.49986131 1242.84 1561.16 +imu_odom_: 1691062902.475128224 0.646434 -0.280122 10.1035 -0.0532632 -0.0191748 0.04048 0.23 0 pose: 0.0 -5.4838 -3.7021 0 0.00473796 -0.00284564 0.998404 0.0562045 uwb: 0.0 1242.84 1561.16 +imu_odom_: 1691062902.500130477 0.371101 -0.378284 9.52653 -0.0660464 -0.0340885 0.0372843 0.18 0 pose: 0.42881545 -5.49307 -3.69834 0 0.00518015 -0.00258044 0.998402 0.0562189 uwb: 0.49994589 1240.75 1563.08 +imu_odom_: 1691062902.527187402 0.220267 -0.435745 9.76116 -0.0383495 -0.00745685 0.0447411 0.23 0 pose: 0.69939928 -5.50234 -3.69459 0 0.00929202 -0.00247305 0.998365 0.0563517 uwb: 0.0 1240.75 1563.08 +imu_odom_: 1691062902.552086994 0.390255 -0.117316 9.991 -0.0500674 0.036219 0.0415453 0.18 -0.02 pose: 0.0 -5.50234 -3.69459 0 0.00929202 -0.00247305 0.998365 0.0563517 uwb: 0.49887845 1240.99 1563.64 +imu_odom_: 1691062902.579206915 0.339977 -0.189142 9.55526 -0.0745685 -0.00426106 0.052198 0.23 0 pose: 0.52062677 -5.51536 -3.7001 0 0.00500257 -0.0035023 0.998397 0.0562683 uwb: 0.0 1240.99 1563.64 +imu_odom_: 1691062902.604068300 0.0622492 -0.177171 9.89524 -0.052198 0.0447411 0.0340885 0.23 0 pose: 0.0 -5.51536 -3.7001 0 0.00500257 -0.0035023 0.998397 0.0562683 uwb: 0.49994590 1237.36 1566.05 +imu_odom_: 1691062902.621199803 0.73502 0.107739 10.5465 -0.0639159 -0.0692422 0.0436758 0.23 0 pose: 0.23950272 -5.52463 -3.69634 0 0.00310751 -0.0017678 0.998412 0.0562135 uwb: 0.0 1237.36 1566.05 +imu_odom_: 1691062902.647063880 0.555455 0.150835 10.2472 -0.04048 -0.0276969 0.0351537 0.23 0 pose: 0.52069093 -5.5339 -3.69259 0 -0.000955505-5.74712e-050.998422 0.0561393 uwb: 0.50028420 1240.09 1565.61 +imu_odom_: 1691062902.664068224 0.433351 -0.258574 9.59835 -0.0798948 -0.0607201 0.052198 0.25 0 pose: 0.0 -5.5339 -3.69259 0 -0.000955505-5.74712e-050.998422 0.0561393 uwb: 0.0 1240.09 1565.61 +imu_odom_: 1691062902.689061727 0.476446 -0.392649 9.38527 -0.0628506 0.00852212 0.036219 0.25 0 pose: 0.42902835 -5.54317 -3.68884 0 0.00177478 0.00221464 0.998419 0.0561302 uwb: 0.49959008 1243.38 1565.1 +imu_odom_: 1691062902.716101444 0.553061 -0.351948 9.93594 -0.0596548 -0.02024 0.0436758 0.23 0 pose: 0.34992130 -5.54581 -3.69536 0 0.00217568 -0.00149064 0.998421 0.0561034 uwb: 0.0 1243.38 1565.1 +imu_odom_: 1691062902.741267312 0.35913 -0.21069 10.0748 -0.0490022 -0.0276969 0.0500674 0.23 0 pose: 0.7106336 -5.54692 -3.69811 0 0.00269296 -0.00204945 0.99842 0.0560882 uwb: 0.49995756 1242.68 1566.19 +imu_odom_: 1691062902.768173746 0.778116 -0.0574608 9.73722 -0.0575243 -0.0170442 0.0351537 0.23 0 pose: 0.45099249 -5.55619 -3.69435 0 0.00230258 -0.0022247 0.998431 0.0559107 uwb: 0.0 1242.68 1566.19 +imu_odom_: 1691062902.794052405 0.275333 -0.409408 9.40921 -0.056459 0.0458064 0.0447411 0.2 0.02 pose: 0.0 -5.55619 -3.69435 0 0.00230258 -0.0022247 0.998431 0.0559107 uwb: 0.50110957 1243.33 1567.72 +imu_odom_: 1691062902.811198199 0.471658 -0.25618 10.0987 -0.0553937 -0.0468716 0.0479369 0.25 0.02 pose: 0.52785093 -5.56546 -3.6906 0 0.00212274 -0.00252116 0.998431 0.0559023 uwb: 0.0 1243.33 1567.72 +imu_odom_: 1691062902.837043902 0.344765 -0.0646434 10.0652 -0.0511327 -0.0266316 0.0511327 0.25 0.02 pose: 0.0 -5.56546 -3.6906 0 0.00212274 -0.00252116 0.998431 0.0559023 uwb: 0.49876763 1241.7 1569.39 +imu_odom_: 1691062902.864058829 0.529119 0.160412 10.1179 -0.0415453 -0.0191748 0.0415453 0.18 0 pose: 0.25037251 -5.57473 -3.68686 0 0.00381277 -0.00152332 0.998434 0.0557908 uwb: 0.0 1241.7 1569.39 +imu_odom_: 1691062902.889104246 0.521936 -0.0814029 10.252 -0.0596548 0.00106526 0.0426106 0.18 0.02 pose: 0.44969173 -5.58124 -3.68423 0 0.00384061 0.00279791 0.998438 0.0556714 uwb: 0.50012963 1236.48 1572.29 +imu_odom_: 1691062902.916113340 0.138864 -0.0574608 9.88566 -0.0553937 0.0106526 0.0426106 0.18 0.02 pose: 0.0 -5.58124 -3.68423 0 0.00384061 0.00279791 0.998438 0.0556714 uwb: 0.0 1236.48 1572.29 +imu_odom_: 1691062902.933138974 0.605733 -0.217872 9.84735 -0.0692422 -0.00426106 0.0500674 0.18 0.02 pose: 0.8028533 -5.58401 -3.68311 0 0.00427585 0.00344321 0.998435 0.0556603 uwb: 0.0 1236.48 1572.29 +imu_odom_: 1691062902.959180374 0.380678 -0.117316 9.66539 -0.0585895 0.00106526 0.0266316 0.18 0.02 pose: 0.0 -5.58401 -3.68311 0 0.00427585 0.00344321 0.998435 0.0556603 uwb: 0.50042128 1235.41 1573.97 +imu_odom_: 1691062902.983161853 0.397437 -0.0814029 10.0868 -0.0681769 -0.036219 0.0436758 0.2 0 pose: 0.52124215 -5.58775 -3.69238 0 0.00299713 0.0048482 0.998439 0.055564 uwb: 0.0 1235.41 1573.97 +imu_odom_: 1691062903.10171531 0.68953 -0.186748 10.0054 -0.0735032 -0.0490022 0.0490022 0.2 0 pose: 0.0 -5.58775 -3.69238 0 0.00299713 0.0048482 0.998439 0.055564 uwb: 0.0 1235.41 1573.97 +imu_odom_: 1691062903.35039041 0.21069 -0.426168 9.87608 -0.0511327 0.00958738 0.0298274 0.19 0 pose: 0.42030220 -5.59702 -3.68864 0 0.000868509 0.00529262 0.998434 0.0556816 uwb: 0.0 1235.41 1573.97 +imu_odom_: 1691062903.62093925 0.859518 -0.19393 9.77074 -0.0575243 -0.0479369 0.0490022 0.23 0.02 pose: 0.51890020 -5.6063 -3.6849 0 0.00286354 0.00476599 0.99844 0.0555527 uwb: 0.99798731 1232.16 1576.05 +imu_odom_: 1691062903.79146974 0.814029 -0.131681 10.161 -0.0468716 -0.0308927 0.0426106 0.23 0.02 pose: 0.0 -5.6063 -3.6849 0 0.00286354 0.00476599 0.99844 0.0555527 uwb: 0.0 1232.16 1576.05 +imu_odom_: 1691062903.104067565 0.581791 -0.213084 10.2615 -0.056459 0.04048 0.0490022 0.25 0 pose: 0.23934232 -5.61557 -3.68115 0 0.00247062 0.00340969 0.998444 0.0556012 uwb: 0.50007131 1231.47 1577.24 +imu_odom_: 1691062903.127105849 0.474052 -0.126893 10.0245 -0.0575243 0.0234358 0.0426106 0.25 0 pose: 0.37080925 -5.61766 -3.68635 0 0.00681929 0.00307937 0.998432 0.0554694 uwb: 0.0 1231.47 1577.24 +imu_odom_: 1691062903.152176056 0.459687 -0.0861913 9.90721 -0.0585895 0.0234358 0.0490022 0.19 0 pose: 0.7099337 -5.61931 -3.69043 0 0.00701068 0.00246586 0.998435 0.0554303 uwb: 0.49989340 1236.94 1576.29 +imu_odom_: 1691062903.169171067 0.246603 -0.244209 9.7851 -0.0628506 -0.00639159 0.0447411 0.19 0 pose: 0.0 -5.61931 -3.69043 0 0.00701068 0.00246586 0.998435 0.0554303 uwb: 0.0 1236.94 1576.29 +imu_odom_: 1691062903.194116156 0.596156 -0.107739 10.3765 -0.0660464 0.0234358 0.0543285 0.2 0 pose: 0.48943192 -5.62858 -3.68669 0 0.00494771 0.00315598 0.998454 0.055277 uwb: 0.49981757 1236.33 1577.66 +imu_odom_: 1691062903.220094853 0.641646 -0.493206 10.0006 -0.0756338 0.0138484 0.0426106 0.2 0 pose: 0.0 -5.62858 -3.68669 0 0.00494771 0.00315598 0.998454 0.055277 uwb: 0.0 1236.33 1577.66 +imu_odom_: 1691062903.242066865 0.995988 -0.186748 10.058 -0.0671117 -0.0117179 0.0394148 0.17 0 pose: 0.42097300 -5.63786 -3.68295 0 0.00304959 0.00388806 0.998468 0.0551048 uwb: 0.50033088 1234.66 1579.35 +imu_odom_: 1691062903.260304595 0.177171 -0.263362 9.77074 -0.0639159 0.0415453 0.0372843 0.17 0 pose: 0.0 -5.63786 -3.68295 0 0.00304959 0.00388806 0.998468 0.0551048 uwb: 0.0 1234.66 1579.35 +imu_odom_: 1691062903.286032764 0.588974 -0.459687 9.55287 -0.0660464 0.0117179 0.0298274 0.19 0.02 pose: 0.48790368 -5.64714 -3.67922 0 0.00573966 0.00123892 0.998473 0.05492 uwb: 0.50135748 1234.51 1580.42 +imu_odom_: 1691062903.303170975 0.457293 -0.134075 10.0724 -0.0500674 -0.00213053 0.0276969 0.19 0.02 pose: 0.0 -5.64714 -3.67922 0 0.00573966 0.00123892 0.998473 0.05492 uwb: 0.0 1234.51 1580.42 +imu_odom_: 1691062903.328171770 0.215478 -0.244209 10.0533 -0.0266316 0.00213053 0.036219 0.18 -0.02 pose: 0.77093804 -5.66532 -3.68268 0 0.00490149 -0.0002946690.998465 0.0551616 uwb: 0.0 1234.51 1580.42 +imu_odom_: 1691062903.352175122 0.823605 -0.181959 9.80426 -0.052198 0.00319579 0.0436758 0.18 -0.02 pose: 0.7912456 -5.66941 -3.68099 0 0.00409088 -0.0002165460.998468 0.0551742 uwb: 0.49966300 1235.33 1581 +imu_odom_: 1691062903.376040525 0.399832 -0.174777 9.83059 -0.0394148 0.00852212 0.0458064 0.18 0.02 pose: 0.41091691 -5.66941 -3.68099 0 0.00465306 6.09351e-05 0.998467 0.0551517 uwb: 0.0 1235.33 1581 +imu_odom_: 1691062903.401039278 0.572214 0.251391 10.1323 -0.0340885 0.00426106 0.0479369 0.18 0.02 pose: 0.0 -5.66941 -3.68099 0 0.00465306 6.09351e-05 0.998467 0.0551517 uwb: 0.0 1235.33 1581 +imu_odom_: 1691062903.425052255 0.184354 -0.011971 10.07 -0.0447411 -0.00319579 0.0394148 0.23 -0.02 pose: 0.48864156 -5.67864 -3.67716 0 0.00303392 0.00382914 0.998475 0.0549805 uwb: 0.0 1235.33 1581 +imu_odom_: 1691062903.440035758 0.186748 -0.311246 9.18895 -0.072438 -0.00745685 0.0447411 0.23 -0.02 pose: 0.0 -5.67864 -3.67716 0 0.00303392 0.00382914 0.998475 0.0549805 uwb: 0.99869020 1233.15 1582.92 +imu_odom_: 1691062903.465180919 0.0454898 -0.435745 9.76595 -0.0596548 -0.0415453 0.0458064 0.18 0 pose: 0.38996480 -5.68792 -3.67343 0 -0.0002934080.00403565 0.99848 0.0549606 uwb: 0.0 1233.15 1582.92 +imu_odom_: 1691062903.482142682 1.01275 -0.138864 9.96946 -0.0713727 -0.0500674 0.0340885 0.18 0 pose: 0.7180124 -5.68792 -3.67343 0 -0.0007303240.00357566 0.998483 0.0549414 uwb: 0.0 1233.15 1582.92 +imu_odom_: 1691062903.507092438 0.667982 -0.354342 9.80426 -0.0468716 0.0479369 0.04048 0.2 -0.02 pose: 0.34926800 -5.69681 -3.68063 0 0.000255394 0.00225324 0.998487 0.0549362 uwb: 0.50103375 1237.06 1582.35 +imu_odom_: 1691062903.531133122 0.138864 -0.0766145 9.97664 -0.036219 0.036219 0.0383495 0.2 -0.02 pose: 0.0 -5.69681 -3.68063 0 0.000255394 0.00225324 0.998487 0.0549362 uwb: 0.0 1237.06 1582.35 +imu_odom_: 1691062903.554103743 0.497994 -0.306458 9.62948 -0.0500674 -0.0127832 0.0468716 0.18 0 pose: 0.7893207 -5.70093 -3.67898 0 0.000673338 0.00180993 0.998488 0.0549307 uwb: 0.50038629 1235.88 1583.82 +imu_odom_: 1691062903.580046566 0.347159 0.0191536 10.2256 -0.0426106 0.0223706 0.0330232 0.18 -0.02 pose: 0.48035871 -5.71021 -3.67525 0 -0.0006084220.00160959 0.99849 0.0549107 uwb: 0.0 1235.88 1583.82 +imu_odom_: 1691062903.604068293 0.45011 -0.0095768110.2855 -0.0490022 0.0117179 0.0394148 0.18 -0.02 pose: 0.0 -5.71021 -3.67525 0 -0.0006084220.00160959 0.99849 0.0549107 uwb: 0.50120874 1240.37 1583.18 +imu_odom_: 1691062903.619051796 0.0383072 -0.366313 9.54089 -0.0543285 -0.00106526 0.0479369 0.18 -0.02 pose: 0.0 -5.71021 -3.67525 0 -0.0006084220.00160959 0.99849 0.0549107 uwb: 0.0 1240.37 1583.18 +imu_odom_: 1691062903.635085529 0.684742 -0.160412 10.58 -0.0532632 -0.00745685 0.0511327 0.19 0 pose: 0.73008375 -5.71949 -3.67152 0 -0.0002000280.00499755 0.998479 0.0549082 uwb: 0.0 1240.37 1583.18 +imu_odom_: 1691062903.660156611 0.835576 -0.244209 9.76834 -0.0745685 -0.0223706 0.0458064 0.19 0 pose: 0.0 -5.71949 -3.67152 0 -0.0002000280.00499755 0.998479 0.0549082 uwb: 0.49861306 1239.88 1584.88 +imu_odom_: 1691062903.685280774 0.368707 -0.241814 9.87369 -0.0532632 0.056459 0.0415453 0.25 0 pose: 0.31142062 -5.72877 -3.66779 0 0.00145197 0.00400943 0.998491 0.0547543 uwb: 0.50005380 1246.47 1583.56 +imu_odom_: 1691062903.710080913 0.581791 -0.0861913 9.78031 -0.0490022 0.0234358 0.0330232 0.2 0 pose: 0.0 -5.72877 -3.66779 0 0.00145197 0.00400943 0.998491 0.0547543 uwb: 0.0 1246.47 1583.56 +imu_odom_: 1691062903.733024995 0.114922 -0.148441 9.663 -0.0639159 -0.00426106 0.0500674 0.2 0 pose: 0.43058577 -5.73925 -3.67435 0 0.000669904 0.00166972 0.998503 0.0546653 uwb: 0.0 1246.47 1583.56 +imu_odom_: 1691062903.751137607 0.787692 -0.577003 9.70609 -0.0777643 -0.02024 0.0436758 0.2 0 pose: 0.0 -5.73925 -3.67435 0 0.000669904 0.00166972 0.998503 0.0546653 uwb: 0.50044462 1244.28 1585.5 +imu_odom_: 1691062903.776023492 0.648829 -0.270545 10.3908 -0.052198 -0.00426106 0.0383495 0.18 -0.02 pose: 0.6828394 -5.74177 -3.67334 0 0.00118756 0.00200191 0.998501 0.0546866 uwb: 0.0 1244.28 1585.5 +imu_odom_: 1691062903.802020270 0.73502 -0.215478 9.71088 -0.0607201 -0.00213053 0.0479369 0.22 0 pose: 0.48945234 -5.74177 -3.67334 0 0.000822639 0.00224762 0.998505 0.0546121 uwb: 0.50059628 1237.9 1588.88 +imu_odom_: 1691062903.828050005 0.42138 -0.232238 9.65582 -0.0628506 0 0.0447411 0.22 0 pose: 0.0 -5.74177 -3.67334 0 0.000822639 0.00224762 0.998505 0.0546121 uwb: 0.0 1237.9 1588.88 +imu_odom_: 1691062903.852984303 0.61531 -0.0287304 9.91918 -0.04048 0.0308927 0.0351537 0.23 -0.02 pose: 0.42012138 -5.75105 -3.66962 0 0.00449458 0.000258532 0.9985 0.05457 uwb: 0.49878221 1236.73 1590.44 +imu_odom_: 1691062903.867139521 0.174777 -0.442927 9.70131 -0.0468716 -0.0138484 0.0479369 0.23 -0.02 pose: 0.0 -5.75105 -3.66962 0 0.00449458 0.000258532 0.9985 0.05457 uwb: 0.0 1236.73 1590.44 +imu_odom_: 1691062903.892014323 0.287304 -0.471658 9.38766 -0.0553937 0.00213053 0.0490022 0.18 0 pose: 0.51993265 -5.76033 -3.66589 0 0.00405432 6.35023e-05 0.998509 0.0544381 uwb: 0.50016172 1239.08 1590.32 +imu_odom_: 1691062903.916098754 0.486023 -0.349553 9.9527 -0.0660464 -0.015979 0.0500674 0.18 0 pose: 0.0 -5.76033 -3.66589 0 0.00405432 6.35023e-05 0.998509 0.0544381 uwb: 0.0 1239.08 1590.32 +imu_odom_: 1691062903.931137962 0.430956 -0.45011 9.65582 -0.0543285 -0.0127832 0.0426106 0.18 0.02 pose: 0.39005521 -5.77334 -3.67145 0 0.00336386 0.000272251 0.998514 0.0543874 uwb: 0.0 1239.08 1590.32 +imu_odom_: 1691062903.947084201 0.0957681 -0.189142 9.69652 -0.0479369 0.0170442 0.0372843 0.18 0.02 pose: 0.0 -5.77334 -3.67145 0 0.00336386 0.000272251 0.998514 0.0543874 uwb: 0.49966883 1236.43 1592.68 +imu_odom_: 1691062903.964136958 0.545878 -0.213084 10.2687 -0.0628506 -0.0575243 0.0511327 0.18 0.02 pose: 0.0 -5.77334 -3.67145 0 0.00336386 0.000272251 0.998514 0.0543874 uwb: 0.0 1236.43 1592.68 +imu_odom_: 1691062903.990138986 0.490811 -0.0957681 10.343 -0.0681769 0.015979 0.0532632 0.18 0 pose: 0.49090768 -5.78262 -3.66773 0 0.00284976 -0.00430387 0.998519 0.0541541 uwb: 0.49994882 1240.88 1591.8 +imu_odom_: 1691062904.15018163 0.823605 -0.196325 10.1682 -0.0692422 -0.0149137 0.036219 0.18 0 pose: 0.66982892 -5.7919 -3.66402 0 0.00309947 -0.00114228 0.998541 0.0538921 uwb: 0.0 1240.88 1591.8 +imu_odom_: 1691062904.39057097 1.01514 -0.0430956 10.1442 -0.0426106 -0.0170442 0.0372843 0.18 0 pose: 0.0 -5.7919 -3.66402 0 0.00309947 -0.00114228 0.998541 0.0538921 uwb: 0.50068669 1238.07 1593.77 +imu_odom_: 1691062904.56039567 0.577003 -0.344765 9.54089 -0.0681769 -0.0127832 0.0458064 0.27 0.02 pose: 0.7916248 -5.7919 -3.66402 0 0.0039303 -0.00115832 0.998538 0.0539064 uwb: 0.0 1238.07 1593.77 +imu_odom_: 1691062904.81090235 0.667982 -0.354342 9.84735 -0.0713727 -0.0276969 0.0468716 0.27 0.02 pose: 0.0 -5.7919 -3.66402 0 0.0039303 -0.00115832 0.998538 0.0539064 uwb: 0.0 1238.07 1593.77 +imu_odom_: 1691062904.107974212 0.821211 -0.174777 10.1083 -0.0479369 -0.00852212 0.04048 0.21 0.02 pose: 0.48017497 -5.80119 -3.66031 0 0.00825618 -0.00105954 0.998509 0.0539423 uwb: 0.0 1238.07 1593.77 +imu_odom_: 1691062904.133044711 0.675165 -0.385466 9.72525 -0.056459 0.00639159 0.0447411 0.21 0.02 pose: 0.0 -5.80119 -3.66031 0 0.00825618 -0.00105954 0.998509 0.0539423 uwb: 0.0 1238.07 1593.77 +imu_odom_: 1691062904.157980468 0.679953 -0.0766145 9.62948 -0.052198 -0.00319579 0.0415453 0.22 0 pose: 0.42009222 -5.81419 -3.66588 0 0.0109221 -0.00393584 0.998484 0.0538016 uwb: 0.99936684 1237.42 1595.17 +imu_odom_: 1691062904.172041191 0.691924 -0.172383 10.0245 -0.0596548 0.0287621 0.0532632 0.22 0 pose: 0.0 -5.81419 -3.66588 0 0.0109221 -0.00393584 0.998484 0.0538016 uwb: 0.0 1237.42 1595.17 +imu_odom_: 1691062904.195997006 0.339977 -0.0814029 9.91439 -0.056459 0.0255663 0.0426106 0.18 0 pose: 0.52049845 -5.82347 -3.66217 0 0.0130735 -0.00478748 0.998459 0.0537144 uwb: 0.50020839 1240.94 1594.92 +imu_odom_: 1691062904.223011058 0.268151 -0.442927 9.79468 -0.0607201 0.015979 0.0468716 0.18 0 pose: 0.0 -5.82347 -3.66217 0 0.0130735 -0.00478748 0.998459 0.0537144 uwb: 0.0 1240.94 1594.92 +imu_odom_: 1691062904.238995212 0.368707 -0.23942 10.0269 -0.0596548 -0.00532632 0.04048 0.18 0 pose: 0.38909569 -5.83276 -3.65846 0 0.0128025 -0.00134033 0.998477 0.0536387 uwb: 0.49988466 1242.81 1595.04 +imu_odom_: 1691062904.264973616 0.454898 -0.347159 9.56005 -0.0713727 0.0234358 0.056459 0.18 0 pose: 0.0 -5.83276 -3.65846 0 0.0128025 -0.00134033 0.998477 0.0536387 uwb: 0.0 1242.81 1595.04 +imu_odom_: 1691062904.290108862 0.423774 -0.208296 9.76834 -0.0575243 0.0447411 0.0415453 0.2 0 pose: 0.52123634 -5.83276 -3.65846 0 0.00762672 -0.00191813 0.998537 0.053506 uwb: 0.0 1242.81 1595.04 +imu_odom_: 1691062904.307123413 0.545878 -0.217872 10.1131 -0.0617853 -0.0138484 0.0372843 0.2 0 pose: 0.0 -5.83276 -3.65846 0 0.00762672 -0.00191813 0.998537 0.053506 uwb: 0.0 1242.81 1595.04 +imu_odom_: 1691062904.332039922 0.37589 -0.395043 9.59357 -0.0596548 -0.0447411 0.0394148 0.18 -0.02 pose: 0.75958412 -5.85506 -3.66013 0 0.00422467 -0.00163284 0.99857 0.0532737 uwb: 0.0 1242.81 1595.04 +imu_odom_: 1691062904.355970362 0.277727 -0.560243 9.72046 -0.0340885 -0.0287621 0.0287621 0.18 -0.02 pose: 0.8064114 -5.85506 -3.66013 0 0.00388648 -0.00229126 0.99857 0.0532707 uwb: 0.100036136 1243.66 1595.63 +imu_odom_: 1691062904.380157746 0.335188 -0.0191536 10.6183 -0.0191748 -0.0106526 0.0458064 0.18 -0.02 pose: 0.40782835 -5.8616 -3.65752 0 0.00203192 -0.00533265 0.998558 0.0533802 uwb: 0.0 1243.66 1595.63 +imu_odom_: 1691062904.405077171 0.373495 0.0167594 10.5441 -0.0287621 -0.0213053 0.0415453 0.2 0 pose: 0.0 -5.8616 -3.65752 0 0.00203192 -0.00533265 0.998558 0.0533802 uwb: 0.50047671 1248.21 1594.85 +imu_odom_: 1691062904.421980312 0.126893 -0.184354 9.44273 -0.04048 0.0383495 0.052198 0.2 0 pose: 0.32090216 -5.86435 -3.65643 0 0.0013378 -0.00171478 0.998576 0.0532977 uwb: 0.0 1248.21 1594.85 +imu_odom_: 1691062904.446045495 0.572214 0.011971 10.0676 -0.0596548 -0.0447411 0.0479369 0.2 0 pose: 0.0 -5.86435 -3.65643 0 0.0013378 -0.00171478 0.998576 0.0532977 uwb: 0.49934802 1248.65 1595.91 +imu_odom_: 1691062904.464112610 0.548272 -0.42138 10.0054 -0.0330232 0.0138484 0.0447411 0.2 0 pose: 0.41925227 -5.87364 -3.65273 0 -8.98267e-050.00111845 0.998586 0.0531418 uwb: 0.0 1248.65 1595.91 +imu_odom_: 1691062904.487992012 0.545878 -0.416591 10.161 -0.0415453 0.0138484 0.0426106 0.2 0 pose: 0.0 -5.87364 -3.65273 0 -8.98267e-050.00111845 0.998586 0.0531418 uwb: 0.49842933 1249.56 1596.62 +imu_odom_: 1691062904.515007523 0.476446 -0.0933739 9.79468 -0.0639159 0.0223706 0.0511327 0.18 -0.02 pose: 0.42017096 -5.88663 -3.65832 0 0.00212273 9.9581e-05 0.998592 0.0530086 uwb: 0.0 1249.56 1596.62 +imu_odom_: 1691062904.538991919 0.292093 -0.292093 9.66539 -0.0575243 0.0351537 0.0372843 0.2 0 pose: 0.43004622 -5.89316 -3.65573 0 0.00278377 0.00129396 0.998599 0.0528332 uwb: 0.49981466 1249.47 1597.88 +imu_odom_: 1691062904.564992198 0.35913 -0.220267 10.1299 -0.0426106 0.0191748 0.0298274 0.2 0 pose: 0.0 -5.89316 -3.65573 0 0.00278377 0.00129396 0.998599 0.0528332 uwb: 0.0 1249.47 1597.88 +imu_odom_: 1691062904.586162757 0.663194 -0.260968 9.59117 -0.0543285 -0.02024 0.0436758 0.18 0 pose: 0.8036408 -5.89592 -3.65463 0 0.00192765 0.000894545 0.998601 0.0528421 uwb: 0.49992549 1244.47 1600.63 +imu_odom_: 1691062904.599093630 0.557849 -0.007182619.43555 -0.0479369 -0.0106526 0.0415453 0.18 0 pose: 0.0 -5.89592 -3.65463 0 0.00192765 0.000894545 0.998601 0.0528421 uwb: 0.0 1244.47 1600.63 +imu_odom_: 1691062904.623029028 0.600945 -0.339977 9.88566 -0.052198 -0.00213053 0.0383495 0.18 0 pose: 0.47948376 -5.90522 -3.65093 0 -0.00201358 -0.0001150870.998594 0.0529743 uwb: 0.0 1244.47 1600.63 +imu_odom_: 1691062904.649001017 0.227449 -0.162806 10.0197 -0.052198 -0.00532632 0.0394148 0.18 0 pose: 0.0 -5.90522 -3.65093 0 -0.00201358 -0.0001150870.998594 0.0529743 uwb: 0.49997215 1246.39 1600.83 +imu_odom_: 1691062904.664962713 0.35913 -0.423774 9.74679 -0.0319579 -0.0426106 0.0468716 0.18 -0.02 pose: 0.35983156 -5.90522 -3.65093 0 0.00107818 0.00014895 0.998597 0.0529356 uwb: 0.0 1246.39 1600.83 +imu_odom_: 1691062904.688966358 0.548272 -0.179565 9.7875 -0.0511327 0.00532632 0.0447411 0.18 -0.02 pose: 0.0 -5.90522 -3.65093 0 0.00107818 0.00014895 0.998597 0.0529356 uwb: 0.49995174 1247.32 1601.59 +imu_odom_: 1691062904.714966928 0.445322 -0.0814029 9.88566 -0.0660464 0 0.052198 0.25 -0.02 pose: 0.49296964 -5.9182 -3.65653 0 -0.000160079-0.00055625 0.998599 0.0529199 uwb: 0.0 1247.32 1601.59 +imu_odom_: 1691062904.731175360 0.380678 -0.208296 9.36133 -0.0490022 0.0319579 0.0415453 0.25 -0.02 pose: 0.0 -5.9182 -3.65653 0 -0.000160079-0.00055625 0.998599 0.0529199 uwb: 0.0 1247.32 1601.59 +imu_odom_: 1691062904.756036163 0.0430956 -0.347159 9.8258 -0.056459 -0.0127832 0.0436758 0.24 0 pose: 0.40764461 -5.9275 -3.65284 0 0.00199966 0.00030582 0.998604 0.0527803 uwb: 0.49995757 1247.63 1602.35 +imu_odom_: 1691062904.770028348 -0.0023942 -0.225055 9.60075 -0.0660464 -0.0117179 0.0372843 0.24 0 pose: 0.0 -5.9275 -3.65284 0 0.00199966 0.00030582 0.998604 0.0527803 uwb: 0.0 1247.63 1602.35 +imu_odom_: 1691062904.787019860 0.608127 0.0957681 10.1107 -0.0585895 -0.015979 0.0436758 0.24 0 pose: 0.0 -5.9275 -3.65284 0 0.00199966 0.00030582 0.998604 0.0527803 uwb: 0.50072169 1242.18 1605.48 +imu_odom_: 1691062904.801050251 0.112527 -0.172383 9.65582 -0.0649811 -0.036219 0.0511327 0.18 0.02 pose: 0.42006014 -5.93679 -3.64915 0 -0.0003571680.00107858 0.998613 0.0526408 uwb: 0.0 1242.18 1605.48 +imu_odom_: 1691062904.817037613 0.799663 -0.337582 10.0604 -0.0820254 -0.0330232 0.0436758 0.18 0.02 pose: 0.0 -5.93679 -3.64915 0 -0.0003571680.00107858 0.998613 0.0526408 uwb: 0.0 1242.18 1605.48 +imu_odom_: 1691062904.831007925 0.538695 -0.339977 9.67257 -0.0479369 0 0.0287621 0.18 0.02 pose: 0.0 -5.93679 -3.64915 0 -0.0003571680.00107858 0.998613 0.0526408 uwb: 0.0 1242.18 1605.48 +imu_odom_: 1691062904.845925515 0.667982 -0.0909797 10.1825 -0.0596548 0.00745685 0.0415453 0.19 0 pose: 0.53901821 -5.94609 -3.64546 0 -0.00243595 0.00161131 0.998614 0.052552 uwb: 0.49912345 1243.14 1606.36 +imu_odom_: 1691062904.863973381 0.430956 -0.502782 9.49062 -0.0532632 0.0191748 0.0394148 0.23 0 pose: 0.0 -5.94609 -3.64546 0 -0.00243595 0.00161131 0.998614 0.052552 uwb: 0.0 1243.14 1606.36 +imu_odom_: 1691062904.879979699 0.454898 -0.222661 9.9503 -0.0447411 -0.0191748 0.0479369 0.23 0 pose: 0.61039073 -5.95907 -3.65107 0 0.000773621 -0.0003347230.998619 0.0525342 uwb: 0.0 1243.14 1606.36 +imu_odom_: 1691062904.897976235 0.339977 -0.201113 9.7037 -0.0639159 0 0.0426106 0.25 -0.02 pose: 0.0 -5.95907 -3.65107 0 0.000773621 -0.0003347230.998619 0.0525342 uwb: 0.50037463 1247.4 1606.28 +imu_odom_: 1691062904.914971538 0.481235 -0.124498 10.1394 -0.0319579 -0.0223706 0.0351537 0.25 -0.02 pose: 0.0 -5.95907 -3.65107 0 0.000773621 -0.0003347230.998619 0.0525342 uwb: 0.0 1247.4 1606.28 +imu_odom_: 1691062904.937068377 0.940921 -0.148441 10.7021 -0.0426106 0.00639159 0.0426106 0.25 -0.02 pose: 0.33939566 -5.96836 -3.64739 0 0.00147597 -0.0004736430.998622 0.0524574 uwb: 0.50215661 1248.3 1606.95 +imu_odom_: 1691062904.950120867 1.06781 -0.40462 9.87369 -0.0596548 -0.04048 0.0276969 0.18 0.02 pose: 0.33162612 -5.96836 -3.64739 0 0.00229401 0.00132358 0.998619 0.0524704 uwb: 0.0 1248.3 1606.95 +imu_odom_: 1691062904.968057907 0.112527 0.184354 10.6279 -0.0553937 0.0639159 -0.0127832 0.18 0.02 pose: 0.0 -5.96836 -3.64739 0 0.00229401 0.00132358 0.998619 0.0524704 uwb: 0.0 1248.3 1606.95 +imu_odom_: 1691062904.984057809 0.227449 -0.0742203 9.32781 -0.0532632 0.0127832 -0.0660464 0.2 -0.17 pose: 0.46971933 -5.97766 -3.6437 0 0.00339065 0.00222927 0.998587 0.0529941 uwb: 0.0 1248.3 1606.95 +imu_odom_: 1691062905.987782 0.52433 -0.0047884 10.1562 -0.0671117 -0.0372843 -0.134223 0.2 -0.17 pose: 0.0 -5.97766 -3.6437 0 0.00339065 0.00222927 0.998587 0.0529941 uwb: 0.49752230 1240.57 1610.71 +imu_odom_: 1691062905.16951228 0.703895 -0.304064 10.0868 -0.0436758 -0.0149137 -0.143811 0.2 -0.17 pose: 0.0 -5.97766 -3.6437 0 0.00339065 0.00222927 0.998587 0.0529941 uwb: 0.0 1240.57 1610.71 +imu_odom_: 1691062905.34909267 0.311246 -0.47884 9.16979 -0.076699 0.0234358 -0.171508 0.27 -0.41 pose: 0.8006951 -5.97766 -3.6437 0 0.00259675 0.00258403 0.998565 0.053419 uwb: 0.49983508 1241.28 1610.96 +imu_odom_: 1691062905.51074534 0.878672 -0.0646434 10.4172 -0.0607201 -0.00958738 -0.221575 0.27 -0.41 pose: 0.0 -5.97766 -3.6437 0 0.00259675 0.00258403 0.998565 0.053419 uwb: 0.0 1241.28 1610.96 +imu_odom_: 1691062905.68068379 0.995988 0.150835 9.62948 -0.0692422 -0.00319579 -0.302535 0.27 -0.41 pose: 0.0 -5.97766 -3.6437 0 0.00259675 0.00258403 0.998565 0.053419 uwb: 0.0 1241.28 1610.96 +imu_odom_: 1691062905.86142786 0.955286 0.0670376 9.62469 -0.0617853 -0.00639159 -0.368581 0.18 -0.41 pose: 0.48849574 -5.99064 -3.64929 0 0.00382198 0.00256232 0.998329 0.0576034 uwb: 0.50063129 1236.43 1614.34 +imu_odom_: 1691062905.99040702 0.577003 -0.047884 9.663 -0.056459 0.0532632 -0.427171 0.18 -0.41 pose: 0.0 -5.99064 -3.64929 0 0.00382198 0.00256232 0.998329 0.0576034 uwb: 0.0 1236.43 1614.34 +imu_odom_: 1691062905.114922778 0.852336 -0.0622492 10.1969 -0.0873517 0 -0.431432 0.18 -0.41 pose: 0.67163425 -5.99993 -3.64561 0 0.00794447 0.00388965 0.997596 0.0687272 uwb: 0.0 1236.43 1614.34 +imu_odom_: 1691062905.132969478 0.277727 -0.174777 9.79468 -0.0649811 -0.04048 -0.452737 0.25 -0.64 pose: 0.0 -5.99993 -3.64561 0 0.00794447 0.00388965 0.997596 0.0687272 uwb: 0.0 1236.43 1614.34 +imu_odom_: 1691062905.149970614 0.217872 -0.0335188 10.1873 -0.0426106 -0.0426106 -0.474043 0.25 -0.64 pose: 0.0 -5.99993 -3.64561 0 0.00794447 0.00388965 0.997596 0.0687272 uwb: 0.50050296 1238.38 1614.59 +imu_odom_: 1691062905.163976799 0.555455 0.124498 10.137 -0.0383495 -0.0106526 -0.506001 0.25 -0.64 pose: 0.30849247 -6.00926 -3.64199 0 0.00883163 0.00436614 0.997056 0.0760456 uwb: 0.0 1238.38 1614.59 +imu_odom_: 1691062905.181040347 0.430956 -0.23942 10.5369 -0.0735032 0.0287621 -0.513457 0.17 -0.53 pose: 0.41049695 -6.01413 -3.64006 0 0.00701204 0.00637476 0.99619 0.0866927 uwb: 0.0 1238.38 1614.59 +imu_odom_: 1691062905.193976178 0.746991 -0.0766145 9.89524 -0.0607201 -0.0330232 -0.539024 0.17 -0.53 pose: 0.0 -6.01413 -3.64006 0 0.00701204 0.00637476 0.99619 0.0866927 uwb: 0.49949385 1237.53 1615.6 +imu_odom_: 1691062905.209919792 0.35913 -0.0335188 9.35654 -0.0394148 -0.0298274 -0.579504 0.17 -0.53 pose: 0.0 -6.01413 -3.64006 0 0.00701204 0.00637476 0.99619 0.0866927 uwb: 0.0 1237.53 1615.6 +imu_odom_: 1691062905.228025989 1.09654 0.0215478 10.1514 -0.056459 -0.04048 -0.533697 0.24 -0.79 pose: 0.7013300 -6.01857 -3.63835 0 0.00645675 0.00577489 0.996028 0.0886235 uwb: 0.0 1237.53 1615.6 +imu_odom_: 1691062905.244901423 1.63285 -0.160412 10.0461 -0.0681769 -0.0447411 -0.476173 0.24 -0.79 pose: 0.0 -6.01857 -3.63835 0 0.00645675 0.00577489 0.996028 0.0886235 uwb: 0.49924304 1231.96 1618.78 +imu_odom_: 1691062905.257893542 1.42694 -0.612916 9.59117 -0.0681769 0.00319579 -0.461259 0.24 -0.79 pose: 0.0 -6.01857 -3.63835 0 0.00645675 0.00577489 0.996028 0.0886235 uwb: 0.0 1231.96 1618.78 +imu_odom_: 1691062905.274031104 1.81002 -0.0574608 10.3238 -0.0426106 -0.0276969 -0.452737 0.13 -0.44 pose: 0.46939269 -6.02789 -3.63472 0 0.00686383 0.0059475 0.994711 0.102314 uwb: 0.0 1231.96 1618.78 +imu_odom_: 1691062905.291945395 1.43892 -0.0047884 9.87369 -0.0543285 0.00319579 -0.383495 0.18 -0.55 pose: 0.0 -6.02789 -3.63472 0 0.00686383 0.0059475 0.994711 0.102314 uwb: 0.50189413 1227.94 1621.24 +imu_odom_: 1691062905.308975404 0.893037 -0.466869 9.79228 -0.0745685 0.0458064 -0.312122 0.18 -0.55 pose: 0.64143393 -6.04084 -3.6404 0 0.0135038 0.00477735 0.99287 0.11834 uwb: 0.0 1227.94 1621.24 +imu_odom_: 1691062905.321965190 0.991199 -0.363919 10.1035 -0.0628506 0.0223706 -0.307861 0.18 -0.55 pose: 0.0 -6.04084 -3.6404 0 0.0135038 0.00477735 0.99287 0.11834 uwb: 0.0 1227.94 1621.24 +imu_odom_: 1691062905.337907637 0.859518 -0.0430956 10.1347 -0.0532632 0.00319579 -0.313188 0.11 -0.38 pose: 0.0 -6.04084 -3.6404 0 0.0135038 0.00477735 0.99287 0.11834 uwb: 0.49872098 1231.03 1621.25 +imu_odom_: 1691062905.355904465 0.677559 0.0023942 9.73243 -0.0777643 0.0149137 -0.273773 0.11 -0.38 pose: 0.32899544 -6.04084 -3.6404 0 0.015001 0.00274741 0.992118 0.124379 uwb: 0.0 1231.03 1621.25 +imu_odom_: 1691062905.372962181 0.632069 -0.433351 9.77553 -0.0703074 0.00319579 -0.243946 0.09 -0.29 pose: 0.40932160 -6.04084 -3.6404 0 0.0162622 0.00455548 0.991213 0.131194 uwb: 0.0 1231.03 1621.25 +imu_odom_: 1691062905.386021962 0.840365 -0.31364 9.90721 -0.0692422 0.00639159 -0.234358 0.09 -0.29 pose: 0.0 -6.04084 -3.6404 0 0.0162622 0.00455548 0.991213 0.131194 uwb: 0.49936553 1225.86 1623.93 +imu_odom_: 1691062905.401889164 0.950498 -0.241814 9.84017 -0.0500674 0.0223706 -0.218379 0.09 -0.29 pose: 0.0 -6.04084 -3.6404 0 0.0162622 0.00455548 0.991213 0.131194 uwb: 0.0 1225.86 1623.93 +imu_odom_: 1691062905.427973730 0.68953 -0.0957681 9.83777 -0.0575243 -0.00213053 -0.184291 0.1 -0.35 pose: 0.8009284 -6.04084 -3.6404 0 0.0159575 0.00376124 0.991073 0.13231 uwb: 0.0 1225.86 1623.93 +imu_odom_: 1691062905.453987716 -0.0766145 -0.397437 9.51216 -0.0490022 0.0692422 -0.24075 0.07 -0.23 pose: 0.64059981 -6.05013 -3.63671 0 0.0159072 0.00321036 0.989981 0.140265 uwb: 0.50003632 1236.23 1620.58 +imu_odom_: 1691062905.470917398 -0.42138 -0.0502782 9.95509 -0.0383495 0.0319579 -0.401605 0.07 -0.23 pose: 0.0 -6.05013 -3.63671 0 0.0159072 0.00321036 0.989981 0.140265 uwb: 0.0 1236.23 1620.58 +imu_odom_: 1691062905.494907335 -0.296881 0.4956 9.84735 -0.0458064 -0.0543285 -0.498544 0.1 -0.41 pose: 0.0 -6.05013 -3.63671 0 0.0159072 0.00321036 0.989981 0.140265 uwb: 0.50006257 1237.11 1621.27 +imu_odom_: 1691062905.521150850 -0.318429 -0.572214 9.7875 -0.076699 -0.0287621 -0.493217 0.1 -0.41 pose: 0.51075736 -6.05013 -3.63671 0 0.0100726 0.00410764 0.988664 0.14975 uwb: 0.0 1237.11 1621.27 +imu_odom_: 1691062905.546973806 0.462081 -0.0454898 9.87608 -0.0596548 -0.0383495 -0.527306 0.12 -0.55 pose: 0.23930150 -6.05944 -3.63307 0 0.00861442 0.0048955 0.98769 0.156112 uwb: 0.49922846 1236.24 1622.25 +imu_odom_: 1691062905.563898821 0.397437 -0.277727 9.87129 -0.052198 0.0436758 -0.523045 0.12 -0.55 pose: 0.0 -6.05944 -3.63307 0 0.00861442 0.0048955 0.98769 0.156112 uwb: 0.0 1236.24 1622.25 +imu_odom_: 1691062905.579955304 -0.201113 0.0047884 9.80665 -0.0436758 0 -0.552872 0.15 -0.67 pose: 0.26086315 -6.05944 -3.63307 0 0.00674747 0.00472774 0.986572 0.163121 uwb: 0.0 1236.24 1622.25 +imu_odom_: 1691062905.597907801 0.418985 -0.23942 9.95748 -0.0553937 -0.0298274 -0.568851 0.15 -0.67 pose: 0.0 -6.05944 -3.63307 0 0.00674747 0.00472774 0.986572 0.163121 uwb: 0.49994299 1242.14 1621.34 +imu_odom_: 1691062905.621932444 0.557849 -0.155623 10.2903 -0.0820254 0.00745685 -0.58483 0.13 -0.64 pose: 0.68841870 -6.06869 -3.62939 0 0.00262336 0.00384812 0.983121 0.182897 uwb: 0.0 1242.14 1621.34 +imu_odom_: 1691062905.647959555 0.423774 -0.31364 9.54089 -0.0830906 0.0117179 -0.588026 0.13 -0.64 pose: 0.0 -6.06869 -3.62939 0 0.00262336 0.00384812 0.983121 0.182897 uwb: 0.0 1242.14 1621.34 +imu_odom_: 1691062905.671042754 0.31364 -0.0167594 10.0078 -0.0649811 0.0181095 -0.593352 0.15 -0.73 pose: 0.8132068 -6.06875 -3.62941 0 0.0032907 0.00342696 0.982654 0.185389 uwb: 0.0 1242.14 1621.34 +imu_odom_: 1691062905.694977278 0.158017 -0.4956 9.51935 -0.0809601 -0.00532632 -0.619984 0.14 -0.7 pose: 0.0 -6.06875 -3.62941 0 0.0032907 0.00342696 0.982654 0.185389 uwb: 0.99999390 1242.88 1621.61 +imu_odom_: 1691062905.712900901 0.648829 0.0215478 9.63666 -0.0543285 -0.0127832 -0.658333 0.2 -0.97 pose: 0.72887051 -6.07806 -3.62577 0 0.00104711 0.0014904 0.978134 0.207967 uwb: 0.0 1242.88 1621.61 +imu_odom_: 1691062905.736923795 0.529119 -0.146046 9.51695 -0.052198 -0.0213053 -0.687096 0.2 -0.97 pose: 0.0 -6.07806 -3.62577 0 0.00104711 0.0014904 0.978134 0.207967 uwb: 0.49919637 1240.98 1623.18 +imu_odom_: 1691062905.762942448 0.363919 -0.102951 10.5608 -0.0553937 0.0106526 -0.725445 0.15 -0.73 pose: 0.42189462 -6.08738 -3.62215 0 0.00225195 0.00131377 0.975007 0.222159 uwb: 0.0 1240.98 1623.18 +imu_odom_: 1691062905.775885570 0.811634 -0.172383 9.91678 -0.0532632 -0.0266316 -0.736098 0.15 -0.73 pose: 0.0 -6.08738 -3.62215 0 0.00225195 0.00131377 0.975007 0.222159 uwb: 0.0 1240.98 1623.18 +imu_odom_: 1691062905.799901756 -0.0407014 -0.205901 9.42837 -0.0458064 -0.00958738 -0.740359 0.15 -0.73 pose: 0.54769188 -6.09648 -3.61844 0 0.00315986 0.00295534 0.970189 0.24231 uwb: 0.50143332 1240.09 1624.12 +imu_odom_: 1691062905.825949574 0.727837 0.169988 10.2783 -0.0735032 -0.0298274 -0.76699 0.15 -0.73 pose: 0.0 -6.09648 -3.61844 0 0.00315986 0.00295534 0.970189 0.24231 uwb: 0.0 1240.09 1624.12 +imu_odom_: 1691062905.849917054 0.744597 0.0837971 10.3022 -0.0809601 -0.02024 -0.754207 0.17 -0.85 pose: 0.8009284 -6.09671 -3.61852 0 0.00238577 0.00309664 0.969429 0.245342 uwb: 0.50239577 1236.44 1626.07 +imu_odom_: 1691062905.867075098 0.529119 0.00718261 9.8258 -0.0553937 -0.0447411 -0.76699 0.17 -0.85 pose: 0.0 -6.09671 -3.61852 0 0.00238577 0.00309664 0.969429 0.245342 uwb: 0.0 1236.44 1626.07 +imu_odom_: 1691062905.891945817 0.268151 0.0191536 9.94073 -0.0415453 -0.0308927 -0.797883 0.16 -0.82 pose: 0.49095143 -6.10603 -3.61491 0 0.00402802 0.00448063 0.96444 0.264232 uwb: 0.49770021 1232.83 1628.12 +imu_odom_: 1691062905.908871999 0.670376 -0.0646434 9.86172 -0.0660464 -0.00745685 -0.782969 0.16 -0.82 pose: 0.0 -6.10603 -3.61491 0 0.00402802 0.00448063 0.96444 0.264232 uwb: 0.0 1232.83 1628.12 +imu_odom_: 1691062905.934118947 0.272939 -0.0933739 9.7875 -0.0468716 -0.0117179 -0.778708 0.15 -0.76 pose: 0.66898316 -6.11168 -3.60203 0 0.00604992 0.00729468 0.956832 0.290485 uwb: 0.0 1232.83 1628.12 +imu_odom_: 1691062905.960898222 -0.009576810.129287 9.7037 -0.0415453 -0.0543285 -0.801079 0.21 -1.06 pose: 0.0 -6.11168 -3.60203 0 0.00604992 0.00729468 0.956832 0.290485 uwb: 0.50042130 1228.47 1629.84 +imu_odom_: 1691062905.985868102 0.409408 0.0191536 9.84496 -0.0703074 -0.0458064 -0.784035 0.21 -1.06 pose: 0.34230634 -6.11148 -3.60195 0 0.00438448 0.00729311 0.95267 0.303889 uwb: 0.49813477 1229.33 1630.48 +imu_odom_: 1691062906.11968125 0.332794 0.11971 10.4435 -0.0639159 -0.056459 -0.793622 0.21 -1.06 pose: 0.7839544 -6.11168 -3.60203 0 0.00396377 0.00780375 0.951659 0.307033 uwb: 0.0 1229.33 1630.48 +imu_odom_: 1691062906.34955372 0.205901 -0.107739 10.3022 -0.052198 -0.00532632 -0.810666 0.21 -1.06 pose: 0.0 -6.11168 -3.60203 0 0.00396377 0.00780375 0.951659 0.307033 uwb: 0.49982925 1234.66 1629.67 +imu_odom_: 1691062906.51870763 0.529119 0.011971 10.0413 -0.0756338 -0.0575243 -0.803209 0.17 -0.85 pose: 0.51997932 -6.12102 -3.59844 0 0.00423791 0.0116121 0.944755 0.327543 uwb: 0.0 1234.66 1629.67 +imu_odom_: 1691062906.75016083 0.280122 -0.438139 10.1107 -0.0628506 0.0245011 -0.831972 0.17 -0.85 pose: 0.0 -6.12102 -3.59844 0 0.00423791 0.0116121 0.944755 0.327543 uwb: 0.0 1234.66 1629.67 +imu_odom_: 1691062906.98877403 0.778116 0.0287304 10.082 -0.0671117 -0.00852212 -0.843689 0.17 -0.85 pose: 0.48959527 -6.13034 -3.59483 0 0.00250165 0.011752 0.937788 0.347 uwb: 0.50141583 1236.06 1630.07 +imu_odom_: 1691062906.115877956 0.447716 -0.45011 10.0628 -0.072438 -0.00852212 -0.833037 0.17 -0.85 pose: 0.0 -6.13034 -3.59483 0 0.00250165 0.011752 0.937788 0.347 uwb: 0.0 1236.06 1630.07 +imu_odom_: 1691062906.140874668 0.203507 -0.395043 9.67497 -0.0447411 0.00958738 -0.840494 0.19 -0.97 pose: 0.39988966 -6.13615 -3.58195 0 0.00245325 0.00915037 0.931659 0.36321 uwb: 0.50091128 1237.86 1629.83 +imu_odom_: 1691062906.166949318 0.596156 0.0550666 10.0006 -0.0436758 -0.015979 -0.833037 0.19 -0.97 pose: 0.0 -6.13615 -3.58195 0 0.00245325 0.00915037 0.931659 0.36321 uwb: 0.0 1237.86 1629.83 +imu_odom_: 1691062906.192158060 0.227449 -0.122104 10.3501 -0.0607201 0 -0.834102 0.19 -0.97 pose: 0.42086218 -6.14549 -3.57837 0 0.00254996 0.00650505 0.924812 0.38036 uwb: 0.49899514 1239.71 1629.72 +imu_odom_: 1691062906.207926976 -0.158017 -0.141258 10.0652 -0.0543285 -0.0149137 -0.850081 0.19 -0.97 pose: 0.0 -6.14549 -3.57837 0 0.00254996 0.00650505 0.924812 0.38036 uwb: 0.0 1239.71 1629.72 +imu_odom_: 1691062906.231869375 -0.035913 0.131681 10.8266 -0.0276969 -0.0213053 -0.8863 0.2 -1 pose: 0.50027257 -6.14549 -3.57837 0 0.00296218 0.00651019 0.916265 0.400509 uwb: 0.0 1239.71 1629.72 +imu_odom_: 1691062906.257857405 0.220267 0.301669 10.2328 -0.0585895 0.00106526 -0.877778 0.2 -1 pose: 0.0 -6.14549 -3.57837 0 0.00296218 0.00651019 0.916265 0.400509 uwb: 0.50048255 1242.71 1629.3 +imu_odom_: 1691062906.280853109 0.826 0.186748 9.85693 -0.076699 -0.0596548 -0.875647 0.2 -0.94 pose: 0.40923702 -6.15133 -3.56553 0 -0.0006992530.00788983 0.908803 0.41715 uwb: 0.0 1242.71 1629.3 +imu_odom_: 1691062906.296870802 0.605733 0.0957681 10.1035 -0.0745685 -0.0628506 -0.898018 0.2 -0.94 pose: 0.0 -6.15133 -3.56553 0 -0.0006992530.00788983 0.908803 0.41715 uwb: 0.49994009 1243.39 1629.42 +imu_odom_: 1691062906.313886229 0.969652 0.011971 10.1897 -0.0745685 -0.0340885 -0.896953 0.25 -1.23 pose: 0.48928029 -6.16067 -3.56195 0 -0.0002714410.0116068 0.899159 0.437469 uwb: 0.0 1243.39 1629.42 +imu_odom_: 1691062906.339003393 0.153229 -0.0981623 10.1083 -0.0415453 -0.00319579 -0.8863 0.25 -1.23 pose: 0.0 -6.16067 -3.56195 0 -0.0002714410.0116068 0.899159 0.437469 uwb: 0.49945594 1245.8 1629.09 +imu_odom_: 1691062906.364237508 0.25618 -0.148441 10.1945 -0.0415453 0.052198 -0.887365 0.21 -1.06 pose: 0.74133271 -6.16624 -3.54897 0 0.0024728 0.0100588 0.883594 0.468139 uwb: 0.0 1245.8 1629.09 +imu_odom_: 1691062906.388005209 0.876278 0.105345 9.60793 -0.0692422 -0.0692422 -0.863929 0.21 -1.06 pose: 0.7874250 -6.16644 -3.54904 0 0.0015621 0.00986315 0.881881 0.471366 uwb: 0.50018799 1243.05 1630.16 +imu_odom_: 1691062906.412853472 0.744597 0.241814 10.0987 -0.0692422 -0.0383495 -0.864995 0.19 -0.94 pose: 0.41127566 -6.17533 -3.54532 0 0.00237557 0.00841058 0.872886 0.487845 uwb: 0.0 1243.05 1630.16 +imu_odom_: 1691062906.437982885 0.979228 -0.21069 9.85453 -0.0937433 -0.0127832 -0.883104 0.25 -1.23 pose: 0.0 -6.17533 -3.54532 0 0.00237557 0.00841058 0.872886 0.487845 uwb: 0.49981468 1247.22 1629.46 +imu_odom_: 1691062906.460840347 0.241814 -0.282516 9.81862 -0.0628506 -0.00639159 -0.919323 0.25 -1.23 pose: 0.31862730 -6.17227 -3.53612 0 0.00543157 0.00777629 0.86574 0.500405 uwb: 0.0 1247.22 1629.46 +imu_odom_: 1691062906.484867325 0.790087 -0.153229 9.9503 -0.0607201 0.0372843 -0.908671 0.18 -0.91 pose: 0.0 -6.17227 -3.53612 0 0.00543157 0.00777629 0.86574 0.500405 uwb: 0.0 1247.22 1629.46 +imu_odom_: 1691062906.501905792 0.512359 -0.122104 10.1562 -0.0692422 0.0106526 -0.899083 0.18 -0.91 pose: 0.49033898 -6.18162 -3.53259 0 0.00462249 0.0049638 0.853957 0.5203 uwb: 0.49985550 1234.83 1634.79 +imu_odom_: 1691062906.526831342 0.220267 -0.153229 10.0676 -0.0500674 -0.0319579 -0.895887 0.18 -0.94 pose: 0.0 -6.18162 -3.53259 0 0.00462249 0.0049638 0.853957 0.5203 uwb: 0.0 1234.83 1634.79 +imu_odom_: 1691062906.543845894 0.474052 -0.0430956 9.74919 -0.0458064 -0.0628506 -0.901214 0.18 -0.94 pose: 0.41003614 -6.1875 -3.51973 0 0.00540812 0.00284355 0.843767 0.536674 uwb: 0.50038048 1237.18 1634.32 +imu_odom_: 1691062906.568896561 0.354342 -0.131681 10.1155 -0.0617853 0.0127832 -0.896953 0.19 -0.94 pose: 0.0 -6.1875 -3.51973 0 0.00540812 0.00284355 0.843767 0.536674 uwb: 0.0 1237.18 1634.32 +imu_odom_: 1691062906.593839902 0.677559 -0.215478 9.93354 -0.0617853 0.0340885 -0.941694 0.19 -0.94 pose: 0.41989974 -6.1875 -3.51973 0 0.00510116 0.00420301 0.833028 0.553191 uwb: 0.49828059 1237.86 1634.46 +imu_odom_: 1691062906.619064101 0.366313 0.217872 9.87369 -0.0607201 -0.0852212 -0.919323 0.19 -0.94 pose: 0.41944477 -6.19044 -3.50785 0 0.00412897 0.00267293 0.821698 0.569902 uwb: 0.0 1237.86 1634.46 +imu_odom_: 1691062906.635836876 0.785298 0.378284 10.0556 -0.056459 -0.0681769 -0.92465 0.19 -0.94 pose: 0.0 -6.19044 -3.50785 0 0.00412897 0.00267293 0.821698 0.569902 uwb: 0.50078879 1234.55 1635.74 +imu_odom_: 1691062906.660929541 0.423774 -0.0407014 10.0149 -0.0596548 -0.0298274 -0.92678 0.19 -0.94 pose: 0.41996974 -6.19124 -3.50156 0 0.0078659 0.00465976 0.810001 0.586358 uwb: 0.0 1234.55 1635.74 +imu_odom_: 1691062906.686888114 0.545878 -0.196325 9.7851 -0.0585895 0.0181095 -0.92678 0.19 -0.94 pose: 0.0 -6.19124 -3.50156 0 0.0078659 0.00465976 0.810001 0.586358 uwb: 0.49981176 1234.15 1636.37 +imu_odom_: 1691062906.702848936 0.241814 -0.0430956 9.65582 -0.0245011 0.00958738 -0.92678 0.19 -0.97 pose: 0.51051238 -6.1964 -3.48709 0 0.00597577 0.00390808 0.795302 0.606172 uwb: 0.0 1234.15 1636.37 +imu_odom_: 1691062906.719958857 0.299275 -0.0694318 9.8665 -0.0394148 0.00213053 -0.916127 0.19 -0.97 pose: 0.0 -6.1964 -3.48709 0 0.00597577 0.00390808 0.795302 0.606172 uwb: 0.0 1234.15 1636.37 +imu_odom_: 1691062906.735944761 0.90022 -0.430956 10.1299 -0.0585895 -0.0106526 -0.871386 0.19 -0.97 pose: 0.0 -6.1964 -3.48709 0 0.00597577 0.00390808 0.795302 0.606172 uwb: 0.49897764 1235.31 1636.09 +imu_odom_: 1691062906.752808821 0.567426 -0.0335188 10.489 -0.0575243 -0.00426106 -0.826645 0.19 -0.79 pose: 0.41068945 -6.1958 -3.48463 0 0.00384273 0.00590241 0.783301 0.621602 uwb: 0.0 1235.31 1636.09 +imu_odom_: 1691062906.768971756 -0.0885855 -0.0790087 9.93833 -0.0532632 0.00532632 -0.728641 0.19 -0.79 pose: 0.0 -6.1958 -3.48463 0 0.00384273 0.00590241 0.783301 0.621602 uwb: 0.0 1235.31 1636.09 +imu_odom_: 1691062906.785026197 -0.241814 -0.500388 9.41879 -0.0692422 -0.0117179 -0.635963 0.25 -0.85 pose: 0.0 -6.1958 -3.48463 0 0.00384273 0.00590241 0.783301 0.621602 uwb: 0.50076545 1238.77 1635.18 +imu_odom_: 1691062906.801907757 0.153229 -0.531513 9.96467 -0.0447411 -0.02024 -0.585895 0.25 -0.85 pose: 0.49082894 -6.20158 -3.47172 0 0.00339928 0.00562431 0.770795 0.63705 uwb: 0.0 1238.77 1635.18 +imu_odom_: 1691062906.818825773 0.545878 -0.378284 10.2999 -0.056459 0.0170442 -0.540089 0.25 -0.85 pose: 0.0 -6.20158 -3.47172 0 0.00339928 0.00562431 0.770795 0.63705 uwb: 0.0 1238.77 1635.18 +imu_odom_: 1691062906.834885172 0.912191 -0.397437 10.7524 -0.0681769 0.00319579 -0.50174 0.19 -0.53 pose: 0.41785820 -6.19959 -3.46656 0 0.000891404 0.00340674 0.76253 0.646943 uwb: 0.0 1238.77 1635.18 +imu_odom_: 1691062906.852876167 0.426168 -0.225055 9.70609 -0.0479369 0.00639159 -0.487891 0.25 -0.67 pose: 0.0 -6.19959 -3.46656 0 0.000891404 0.00340674 0.76253 0.646943 uwb: 0.0 1238.77 1635.18 +imu_odom_: 1691062906.867871628 0.500388 -0.0454898 9.7875 -0.0511327 0.0287621 -0.452737 0.25 -0.67 pose: 0.0 -6.19959 -3.46656 0 0.000891404 0.00340674 0.76253 0.646943 uwb: 0.0 1238.77 1635.18 +imu_odom_: 1691062906.884817934 -0.0502782 -0.047884 10.1011 -0.0820254 -0.0255663 -0.393083 0.25 -0.61 pose: 0.23999270 -6.19802 -3.46238 0 0.00120719 0.00120118 0.758354 0.65184 uwb: 0.0 1238.77 1635.18 +imu_odom_: 1691062906.900881416 0.373495 -0.418985 9.85453 -0.0458064 -0.00426106 -0.389887 0.25 -0.61 pose: 0.0 -6.19802 -3.46238 0 0.00120719 0.00120118 0.758354 0.65184 uwb: 0.99969935 1241.04 1634.47 +imu_odom_: 1691062906.918887285 0.593762 -0.184354 9.63666 -0.0532632 -0.0394148 -0.357929 0.25 -0.61 pose: 0.33056161 -6.20737 -3.45883 0 0.00170079 0.00151713 0.753065 0.657942 uwb: 0.0 1241.04 1634.47 +imu_odom_: 1691062906.933878372 0.339977 -0.294487 9.50259 -0.0628506 0.0223706 -0.331297 0.25 -0.53 pose: 0.32956707 -6.20377 -3.4495 0 0.000821383 0.000479282 0.748464 0.663174 uwb: 0.0 1241.04 1634.47 +imu_odom_: 1691062906.951938488 0.658405 -0.54109 9.99579 -0.0553937 -0.0149137 -0.314253 0.25 -0.53 pose: 0.0 -6.20377 -3.4495 0 0.000821383 0.000479282 0.748464 0.663174 uwb: 0.50036006 1244.51 1633.59 +imu_odom_: 1691062906.968876336 0.811634 0.0670376 10.5656 -0.0458064 -0.00745685 -0.309992 0.25 -0.53 pose: 0.0 -6.20377 -3.4495 0 0.000821383 0.000479282 0.748464 0.663174 uwb: 0.0 1244.51 1633.59 +imu_odom_: 1691062906.982935309 1.16598 0.0550666 9.93115 -0.0639159 -0.0415453 -0.252468 0.18 -0.29 pose: 0.51103444 -6.20944 -3.43655 0 0.000860624 -0.00216977 0.742215 0.670158 uwb: 0.0 1244.51 1633.59 +imu_odom_: 1691062906.999852742 1.58017 -0.287304 10.0221 -0.0713727 -0.0447411 -0.203466 0.18 -0.29 pose: 0.0 -6.20944 -3.43655 0 0.000860624 -0.00216977 0.742215 0.670158 uwb: 0.50018215 1252.36 1630.93 +imu_odom_: 1691062907.13925132 1.27611 -0.428562 9.87369 -0.0490022 -0.056459 -0.189617 0.14 -0.26 pose: 0.0 -6.20944 -3.43655 0 0.000860624 -0.00216977 0.742215 0.670158 uwb: 0.0 1252.36 1630.93 +imu_odom_: 1691062907.29865246 1.65679 -0.184354 10.0149 -0.0511327 -0.0500674 -0.191748 0.14 -0.26 pose: 0.39911387 -6.20944 -3.43655 0 0.00461137 -0.00444191 0.738387 0.674347 uwb: 0.0 1252.36 1630.93 +imu_odom_: 1691062907.46807761 1.63763 -0.19393 9.8689 -0.0575243 0.0191748 -0.205596 0.14 -0.26 pose: 0.0 -6.20944 -3.43655 0 0.00461137 -0.00444191 0.738387 0.674347 uwb: 0.50042714 1248.5 1632.47 +imu_odom_: 1691062907.62918491 1.18752 0.0383072 10.1897 -0.0490022 0.0340885 -0.214118 0.11 -0.26 pose: 0.6945346 -6.20944 -3.43655 0 0.00513042 -0.00513397 0.737847 0.674929 uwb: 0.0 1248.5 1632.47 +imu_odom_: 1691062907.79859256 0.972046 -0.181959 9.54089 -0.0543285 0.0181095 -0.216249 0.11 -0.26 pose: 0.0 -6.20944 -3.43655 0 0.00513042 -0.00513397 0.737847 0.674929 uwb: 0.0 1248.5 1632.47 +imu_odom_: 1691062907.95874616 0.97444 -0.37589 10.058 -0.052198 -0.036219 -0.204531 0.11 -0.26 pose: 0.0 -6.20944 -3.43655 0 0.00513042 -0.00513397 0.737847 0.674929 uwb: 0.49936555 1246.72 1632.79 +imu_odom_: 1691062907.112813922 0.565032 -0.323217 9.81383 -0.056459 0.0138484 -0.187487 0.13 -0.26 pose: 0.48070579 -6.20579 -3.42724 0 0.00899501 -0.00817792 0.733909 0.679139 uwb: 0.0 1246.72 1632.79 +imu_odom_: 1691062907.128883238 0.787692 -0.316035 10.0485 -0.0585895 -0.0138484 -0.15979 0.08 -0.17 pose: 0.0 -6.20579 -3.42724 0 0.00899501 -0.00817792 0.733909 0.679139 uwb: 0.0 1246.72 1632.79 +imu_odom_: 1691062907.145891957 0.610521 -0.356736 9.81144 -0.0607201 -0.00745685 -0.142745 0.08 -0.17 pose: 0.64981304 -6.20222 -3.4179 0 0.00987784 -0.0112779 0.728604 0.684771 uwb: 0.49917305 1247.7 1632.05 +imu_odom_: 1691062907.161801157 0.746991 -0.220267 10.0006 -0.0617853 -0.00639159 -0.126766 0.07 -0.17 pose: 0.0 -6.20222 -3.4179 0 0.00987784 -0.0112779 0.728604 0.684771 uwb: 0.0 1247.7 1632.05 +imu_odom_: 1691062907.178953076 0.885855 -0.428562 9.80186 -0.0553937 -0.0127832 -0.120375 0.07 -0.17 pose: 0.0 -6.20222 -3.4179 0 0.00987784 -0.0112779 0.728604 0.684771 uwb: 0.0 1247.7 1632.05 +imu_odom_: 1691062907.203815630 0.802058 -0.141258 9.84975 -0.0628506 -0.015979 -0.111853 0.06 -0.11 pose: 0.33950651 -6.21156 -3.41433 0 0.00912447 -0.0123287 0.726481 0.687016 uwb: 0.50149166 1250.98 1630.68 +imu_odom_: 1691062907.228814676 0.311246 -0.392649 9.71806 -0.0607201 0.0127832 -0.135289 0.06 -0.11 pose: 0.34063810 -6.21156 -3.41433 0 0.0109293 -0.0138066 0.724581 0.688964 uwb: 0.0 1250.98 1630.68 +imu_odom_: 1691062907.243808095 -0.821211 0.0047884 9.86172 -0.036219 0.109722 -0.178964 0.06 -0.11 pose: 0.0 -6.21156 -3.41433 0 0.0109293 -0.0138066 0.724581 0.688964 uwb: 0.49926930 1248.79 1631.57 +imu_odom_: 1691062907.267807366 -1.20189 -0.351948 9.85453 -0.072438 -0.0266316 -0.0436758 0.07 -0.08 pose: 0.48014291 -6.21156 -3.41433 0 0.00936156 -0.0113136 0.721731 0.692017 uwb: 0.0 1248.79 1631.57 +imu_odom_: 1691062907.294803338 0.390255 -0.447716 9.89763 -0.036219 -0.0852212 -0.0628506 0.14 -0.08 pose: 0.31928643 -6.20794 -3.40501 0 0.00686129 -0.00906867 0.720472 0.693391 uwb: 0.50066922 1247.63 1631.87 +imu_odom_: 1691062907.319804134 0.52433 0.110133 9.83777 -0.052198 0.0319579 -0.0543285 0.14 -0.08 pose: 0.0 -6.20794 -3.40501 0 0.00686129 -0.00906867 0.720472 0.693391 uwb: 0.0 1247.63 1631.87 +imu_odom_: 1691062907.344878134 -0.167594 -0.316035 9.97424 -0.04048 -0.0149137 -0.0276969 0.15 -0.11 pose: 0.51996768 -6.20794 -3.40501 0 0.00620342 -0.00701141 0.718715 0.695242 uwb: 0.49861308 1247.55 1631.66 +imu_odom_: 1691062907.371977058 -0.117316 -0.1652 10.2592 -0.0500674 -0.0138484 -0.0436758 0.15 -0.11 pose: 0.0 -6.20794 -3.40501 0 0.00620342 -0.00701141 0.718715 0.695242 uwb: 0.0 1247.55 1631.66 +imu_odom_: 1691062907.388933863 0.466869 -0.0335188 9.68215 -0.0649811 -0.0575243 -0.0266316 0.15 -0.08 pose: 0.33291522 -6.20432 -3.39569 0 0.00395898 -0.00482146 0.717912 0.696106 uwb: 0.50263202 1246.93 1631.7 +imu_odom_: 1691062907.413799917 -0.0861913 -0.52433 9.96467 -0.0532632 0.0330232 -0.015979 0.15 -0.08 pose: 0.0 -6.20432 -3.39569 0 0.00395898 -0.00482146 0.717912 0.696106 uwb: 0.0 1246.93 1631.7 +imu_odom_: 1691062907.439853569 0.466869 -0.112527 10.2208 -0.052198 0.00745685 -0.036219 0.17 -0.08 pose: 0.27043511 -6.20432 -3.39569 0 0.00347441 -0.00293671 0.717181 0.696872 uwb: 0.49865100 1242.55 1633.51 +imu_odom_: 1691062907.453956874 0.770933 -0.232238 9.33739 -0.0703074 -0.0266316 -0.00852212 0.17 -0.08 pose: 0.0 -6.20432 -3.39569 0 0.00347441 -0.00293671 0.717181 0.696872 uwb: 0.0 1242.55 1633.51 +imu_odom_: 1691062907.479928571 0.586579 -0.155623 10.2472 -0.0681769 0.0181095 -0.00958738 0.14 -0.02 pose: 0.41732156 -6.20998 -3.38272 0 0.00207929 -0.0009810240.716287 0.697802 uwb: 0.0 1242.55 1633.51 +imu_odom_: 1691062907.505079275 0.6608 -0.318429 9.87848 -0.0798948 0.0181095 -0.0138484 0.14 -0.02 pose: 0.0 -6.20998 -3.38272 0 0.00207929 -0.0009810240.716287 0.697802 uwb: 0.50069254 1239.65 1634.19 +imu_odom_: 1691062907.528804979 0.68953 -0.3304 9.45949 -0.0745685 -0.0415453 -0.0149137 0.15 -0.02 pose: 0.40073836 -6.20998 -3.38272 0 0.00490944 -0.0016822 0.71543 0.698665 uwb: 0.0 1239.65 1634.19 +imu_odom_: 1691062907.544790299 0.545878 -0.21069 10.1897 -0.0553937 0.0138484 -0.0138484 0.15 -0.02 pose: 0.0 -6.20998 -3.38272 0 0.00490944 -0.0016822 0.71543 0.698665 uwb: 0.49901557 1241.25 1633.41 +imu_odom_: 1691062907.569850883 0.423774 -0.146046 10.1969 -0.0617853 -0.0319579 -0.00426106 0.15 -0.02 pose: 0.49867433 -6.20635 -3.3734 0 0.00573838 -0.006012 0.714522 0.699563 uwb: 0.0 1241.25 1633.41 +imu_odom_: 1691062907.594888719 0.177171 -0.328006 9.98861 -0.0585895 -0.0181095 0.00106526 0.15 -0.02 pose: 0.0 -6.20635 -3.3734 0 0.00573838 -0.006012 0.714522 0.699563 uwb: 0.0 1241.25 1633.41 +imu_odom_: 1691062907.609785311 0.402226 -0.0861913 10.4267 -0.0479369 -0.036219 -0.00852212 0.15 -0.02 pose: 0.83076127 -6.21201 -3.36044 0 0.00284042 -0.00334758 0.713192 0.700955 uwb: 0.0 1241.25 1633.41 +imu_odom_: 1691062907.626789947 0.385466 -0.435745 9.45949 -0.0500674 -0.0127832 -0.00213053 0.15 -0.02 pose: 0.0 -6.21201 -3.36044 0 0.00284042 -0.00334758 0.713192 0.700955 uwb: 0.0 1241.25 1633.41 +imu_odom_: 1691062907.652944801 0.308852 -0.363919 9.83299 -0.0532632 0.0447411 -0.00639159 0.16 -0.02 pose: 0.31901228 -6.21022 -3.3558 0 0.00187328 -0.00274953 0.712695 0.701466 uwb: 0.99996476 1234.98 1635.24 +imu_odom_: 1691062907.669021116 0.73502 -0.335188 9.4954 -0.0394148 0.0372843 0.00106526 0.16 -0.02 pose: 0.0 -6.21022 -3.3558 0 0.00187328 -0.00274953 0.712695 0.701466 uwb: 0.0 1234.98 1635.24 +imu_odom_: 1691062907.685904134 -0.0191536 -0.265756 8.99023 -0.0426106 0 0.00852212 0.16 -0.02 pose: 0.0 -6.21022 -3.3558 0 0.00187328 -0.00274953 0.712695 0.701466 uwb: 0.50074796 1236 1634.58 +imu_odom_: 1691062907.712907980 0.217872 -0.277727 9.8665 -0.0649811 0.015979 0.0127832 0.16 -0.05 pose: 0.50275451 -6.20842 -3.3511 0 -0.00102578 -0.00254944 0.711973 0.702202 uwb: 0.0 1236 1634.58 +imu_odom_: 1691062907.737852487 0.371101 -0.31364 9.77553 -0.052198 0.0415453 0.00532632 0.17 0 pose: 0.35842582 -6.21146 -3.3392 0 -0.00398397 -4.12819e-050.711625 0.702548 uwb: 0.49981759 1231.52 1636.08 +imu_odom_: 1691062907.764917580 0.37589 -0.296881 9.60314 -0.0639159 0.00213053 0.0245011 0.17 0 pose: 0.8054781 -6.21413 -3.33816 0 -0.00435624 -0.0006689590.711524 0.702648 uwb: 0.0 1231.52 1636.08 +imu_odom_: 1691062907.789859754 0.40462 0.00957681 10.0533 -0.0532632 -0.0117179 0.0149137 0.17 -0.02 pose: 0.43954819 -6.21166 -3.33182 0 -0.00257763 -0.0022362 0.71117 0.703011 uwb: 0.49940346 1223.69 1638.68 +imu_odom_: 1691062907.815773706 0.280122 -0.184354 10.1418 -0.0543285 -0.0127832 0.0181095 0.17 -0.02 pose: 0.0 -6.21166 -3.33182 0 -0.00257763 -0.0022362 0.71117 0.703011 uwb: 0.0 1223.69 1638.68 +imu_odom_: 1691062907.838813157 0.229843 -0.296881 9.99579 -0.0266316 -0.0106526 0.00745685 0.21 -0.02 pose: 0.32959625 -6.2105 -3.32885 0 -0.0009906120.000165276 0.710898 0.703294 uwb: 0.50045339 1219.06 1639.76 +imu_odom_: 1691062907.862774514 0.21069 -0.141258 9.57441 -0.036219 -0.0276969 0.0245011 0.17 0 pose: 0.0 -6.2105 -3.32885 0 -0.0009906120.000165276 0.710898 0.703294 uwb: 0.0 1219.06 1639.76 +imu_odom_: 1691062907.878809415 0.428562 -0.241814 10.2783 -0.036219 -0.0245011 0.0234358 0.17 0 pose: 0.48896531 -6.20686 -3.31953 0 -0.00359784 0.00315614 0.710453 0.703729 uwb: 0.0 1219.06 1639.76 +imu_odom_: 1691062907.904888731 0.59855 -0.335188 10.3094 -0.056459 0.00639159 0.0351537 0.17 -0.02 pose: 0.0 -6.20686 -3.31953 0 -0.00359784 0.00315614 0.710453 0.703729 uwb: 0.50085004 1215.59 1640.54 +imu_odom_: 1691062907.931096374 0.641646 -0.325611 10.3573 -0.0372843 0.0266316 0.0191748 0.17 -0.02 pose: 0.41137191 -6.21252 -3.30657 0 -0.00228938 0.00247487 0.710268 0.703924 uwb: 0.0 1215.59 1640.54 +imu_odom_: 1691062907.945831100 -0.117316 -0.0766145 9.71328 -0.0372843 0.04048 0.0330232 0.17 -0.02 pose: 0.0 -6.21252 -3.30657 0 -0.00228938 0.00247487 0.710268 0.703924 uwb: 0.49813770 1217.28 1639.99 +imu_odom_: 1691062907.972804031 0.148441 -0.318429 9.35893 -0.0617853 0.0266316 0.0383495 0.18 -0.02 pose: 0.50013258 -6.20887 -3.29726 0 -0.00114855 -0.0002218030.710037 0.704163 uwb: 0.0 1217.28 1639.99 +imu_odom_: 1691062907.998834934 0.299275 -0.280122 10.0652 -0.0692422 -0.0138484 0.0617853 0.19 -0.02 pose: 0.34879846 -6.20887 -3.29726 0 -0.00444298 0.00192234 0.71 0.704185 uwb: 0.50056713 1218.84 1639.09 +imu_odom_: 1691062908.23769817 0.402226 -0.213084 9.88326 -0.0809601 0.00852212 0.0340885 0.19 -0.02 pose: 0.0 -6.20887 -3.29726 0 -0.00444298 0.00192234 0.71 0.704185 uwb: 0.0 1218.84 1639.09 +imu_odom_: 1691062908.48895148 0.579397 -0.311246 10.0149 -0.076699 -0.0298274 0.0575243 0.18 0 pose: 0.8972895 -6.20887 -3.29726 0 -0.00529809 0.00153703 0.710065 0.704114 uwb: 0.50055256 1214.22 1640.18 +imu_odom_: 1691062908.74953466 0.476446 -0.0622492 9.89524 -0.0532632 0.0149137 0.0266316 0.18 0 pose: 0.0 -6.20887 -3.29726 0 -0.00529809 0.00153703 0.710065 0.704114 uwb: 0.0 1214.22 1640.18 +imu_odom_: 1691062908.90774296 0.260968 -0.232238 9.88805 -0.056459 -0.0447411 0.0490022 0.18 0 pose: 0.49999843 -6.21451 -3.2843 0 -0.00428335 -0.00033839 0.710201 0.703986 uwb: 0.49838852 1216.52 1639.61 +imu_odom_: 1691062908.116759702 0.459687 -0.244209 9.73961 -0.0649811 -0.0149137 0.0308927 0.18 0 pose: 0.0 -6.21451 -3.2843 0 -0.00428335 -0.00033839 0.710201 0.703986 uwb: 0.0 1216.52 1639.61 +imu_odom_: 1691062908.141875700 0.691924 -0.0454898 10.0868 -0.0756338 -0.0308927 0.0458064 0.22 -0.02 pose: 0.50203122 -6.21085 -3.27499 0 -0.00136653 -0.0003496580.710215 0.703983 uwb: 0.49969512 1213.07 1640.42 +imu_odom_: 1691062908.166750212 0.366313 -0.0957681 10.1394 -0.0607201 -0.0266316 0.0351537 0.2 0 pose: 0.16853270 -6.21085 -3.27499 0 -0.00131167 -0.00050101 0.71022 0.703978 uwb: 0.0 1213.07 1640.42 +imu_odom_: 1691062908.182806112 0.919373 -0.232238 9.9096 -0.0585895 -0.0351537 0.0436758 0.2 0 pose: 0.43042539 -6.2072 -3.26568 0 0.00241295 -0.00274281 0.710211 0.703979 uwb: 0.0 1213.07 1640.42 +imu_odom_: 1691062908.198878636 0.344765 -0.474052 9.41879 -0.0713727 0.0276969 0.04048 0.2 0 pose: 0.0 -6.2072 -3.26568 0 0.00241295 -0.00274281 0.710211 0.703979 uwb: 0.50096962 1209.16 1641.73 +imu_odom_: 1691062908.224869291 0.294487 -0.509965 9.42597 -0.052198 0.0415453 0.0276969 0.18 0 pose: 0.6891391 -6.2072 -3.26568 0 0.00249298 -0.00212104 0.7102 0.703992 uwb: 0.0 1209.16 1641.73 +imu_odom_: 1691062908.249870962 0.588974 -0.395043 9.79707 -0.0426106 -0.036219 0.0426106 0.18 0 pose: 0.0 -6.2072 -3.26568 0 0.00249298 -0.00212104 0.7102 0.703992 uwb: 0.50016758 1203.99 1643 +imu_odom_: 1691062908.273880441 0.624887 -0.263362 9.94312 -0.0490022 -0.0191748 0.0458064 0.18 0 pose: 0.58174492 -6.21285 -3.25272 0 0.00119301 -0.00246423 0.710171 0.704023 uwb: 0.0 1203.99 1643 +imu_odom_: 1691062908.298889987 0.474052 -0.323217 9.97424 -0.0415453 -0.0245011 0.0351537 0.18 0 pose: 0.49899516 -6.20919 -3.24341 0 0.000460277 -0.00570263 0.71013 0.704047 uwb: 0.49973594 1200.58 1643.92 +imu_odom_: 1691062908.326008452 0.600945 -0.191536 9.77074 -0.0745685 -0.0117179 0.0553937 0.18 0 pose: 0.0 -6.20919 -3.24341 0 0.000460277 -0.00570263 0.71013 0.704047 uwb: 0.0 1200.58 1643.92 +imu_odom_: 1691062908.341790492 0.694318 -0.282516 9.7875 -0.0596548 0.0276969 0.036219 0.18 0 pose: 0.24955882 -6.20919 -3.24341 0 0.00129936 -0.00667083 0.710149 0.704018 uwb: 0.49906223 1201.04 1643.43 +imu_odom_: 1691062908.367870101 0.476446 -0.476446 10.2544 -0.0585895 0.0319579 0.052198 0.18 0 pose: 0.51104028 -6.21484 -3.23045 0 0.00278279 -0.007199 0.710255 0.703902 uwb: 0.0 1201.04 1643.43 +imu_odom_: 1691062908.393889338 0.277727 -0.28491 9.56005 -0.056459 -0.0106526 0.036219 0.18 0.02 pose: 0.34969092 -6.21118 -3.22114 0 0.000485243 -0.00844209 0.710368 0.70378 uwb: 0.50001301 1206.71 1641.93 +imu_odom_: 1691062908.409821578 0.107739 -0.059855 10.1754 -0.0394148 -0.00745685 0.0458064 0.18 0.02 pose: 0.0 -6.21118 -3.22114 0 0.000485243 -0.00844209 0.710368 0.70378 uwb: 0.0 1206.71 1641.93 +imu_odom_: 1691062908.434828499 0.550666 -0.40462 9.98622 -0.0575243 0.0170442 0.0383495 0.18 0 pose: 0.6922014 -6.21118 -3.22114 0 8.41926e-05 -0.00790576 0.710365 0.703789 uwb: 0.49972136 1204.33 1642.22 +imu_odom_: 1691062908.460788240 0.617704 -0.282516 10.1897 -0.0596548 -0.00106526 0.0468716 0.18 0 pose: 0.0 -6.21118 -3.22114 0 8.41926e-05 -0.00790576 0.710365 0.703789 uwb: 0.0 1204.33 1642.22 +imu_odom_: 1691062908.485721373 0.0957681 -0.299275 10.0963 -0.04048 0.0553937 0.0287621 0.18 -0.02 pose: 0.43071996 -6.20753 -3.21183 0 -0.00129341 -0.00553448 0.710393 0.703782 uwb: 0.50014717 1212.11 1639.52 +imu_odom_: 1691062908.511856395 0.378284 -0.426168 9.9527 -0.0639159 0 0.0553937 0.18 -0.02 pose: 0.0 -6.20753 -3.21183 0 -0.00129341 -0.00553448 0.710393 0.703782 uwb: 0.0 1212.11 1639.52 +imu_odom_: 1691062908.537920547 0.189142 -0.294487 9.86172 -0.0383495 0.0266316 0.036219 0.19 0 pose: 0.49932180 -6.21319 -3.19887 0 0.000248541 -0.00742498 0.710404 0.703754 uwb: 0.50127002 1207.56 1640.79 +imu_odom_: 1691062908.554853729 0.514753 -0.0909797 10.0293 -0.0660464 -0.0447411 0.056459 0.19 0 pose: 0.0 -6.21319 -3.19887 0 0.000248541 -0.00742498 0.710404 0.703754 uwb: 0.0 1207.56 1640.79 +imu_odom_: 1691062908.579791820 0.778116 -0.160412 10.1059 -0.0553937 -0.00319579 0.036219 0.23 -0.02 pose: 0.50969286 -6.20954 -3.18956 0 -0.00435864 -0.00537182 0.710493 0.70367 uwb: 0.0 1207.56 1640.79 +imu_odom_: 1691062908.605869679 0.54109 -0.40462 9.76116 -0.0745685 0.0191748 0.0468716 0.23 0.02 pose: 0.61026243 -6.20701 -3.18311 0 -0.00136052 -0.00422961 0.710551 0.703632 uwb: 0.49926930 1205.24 1641.27 +imu_odom_: 1691062908.630723192 0.153229 -0.213084 9.5792 -0.0735032 -0.0106526 0.0458064 0.23 0.02 pose: 0.0 -6.20701 -3.18311 0 -0.00136052 -0.00422961 0.710551 0.703632 uwb: 0.0 1205.24 1641.27 +imu_odom_: 1691062908.656717931 0.452504 -0.447716 9.81623 -0.0756338 0.0191748 0.0394148 0.21 -0.02 pose: 0.8004327 -6.20589 -3.18025 0 -0.00153131 -0.00501698 0.710567 0.70361 uwb: 0.49931597 1208 1640.23 +imu_odom_: 1691062908.672708501 0.476446 -0.184354 10.2951 -0.0458064 0.0319579 0.0330232 0.21 -0.02 pose: 0.0 -6.20589 -3.18025 0 -0.00153131 -0.00501698 0.710567 0.70361 uwb: 0.0 1208 1640.23 +imu_odom_: 1691062908.698718405 0.543484 -0.392649 9.91678 -0.0798948 0.0308927 0.0447411 0.23 0 pose: 0.50941871 -6.21158 -3.16728 0 -0.00361478 -0.00541491 0.710668 0.703498 uwb: 0.49904182 1210.21 1639.41 +imu_odom_: 1691062908.721842144 1.01514 -0.227449 9.9934 -0.0426106 -0.0340885 0.0298274 0.23 0 pose: 0.0 -6.21158 -3.16728 0 -0.00361478 -0.00541491 0.710668 0.703498 uwb: 0.0 1210.21 1639.41 +imu_odom_: 1691062908.748904029 0.766145 -0.19393 9.54089 -0.0532632 0.00852212 0.036219 0.18 0 pose: 0.42097594 -6.21158 -3.16728 0 -0.00353023 -0.00650897 0.71063 0.703527 uwb: 0.50087337 1212.4 1638.51 +imu_odom_: 1691062908.764831894 0.584185 -0.275333 9.58638 -0.0308927 0.0191748 0.0340885 0.18 0 pose: 0.0 -6.21158 -3.16728 0 -0.00353023 -0.00650897 0.71063 0.703527 uwb: 0.0 1212.4 1638.51 +imu_odom_: 1691062908.790706181 0.426168 -0.318429 10.3645 -0.0330232 -0.0298274 0.036219 0.24 0 pose: 0.49017566 -6.20803 -3.15793 0 -0.000109593-0.00951314 0.710535 0.703598 uwb: 0.49879683 1213.98 1637.74 +imu_odom_: 1691062908.814713327 0.586579 -0.131681 9.68694 -0.0490022 -0.0287621 0.0447411 0.24 0 pose: 0.0 -6.20803 -3.15793 0 -0.000109593-0.00951314 0.710535 0.703598 uwb: 0.0 1213.98 1637.74 +imu_odom_: 1691062908.838697724 0.272939 -0.225055 9.99579 -0.0436758 -0.0149137 0.0245011 0.18 -0.05 pose: 0.42872507 -6.21383 -3.14503 0 0.00272963 -0.00863356 0.710455 0.703684 uwb: 0.50286535 1212.34 1638.41 +imu_odom_: 1691062908.854752749 0.591368 0.0335188 10.4459 -0.0575243 -0.0308927 0.0330232 0.18 -0.05 pose: 0.0 -6.21383 -3.14503 0 0.00272963 -0.00863356 0.710455 0.703684 uwb: 0.0 1212.34 1638.41 +imu_odom_: 1691062908.871710721 0.414197 -0.363919 9.55287 -0.0585895 -0.0340885 0.0394148 0.18 0 pose: 0.50013842 -6.21027 -3.13568 0 0.00361022 -0.00604756 0.710444 0.703718 uwb: 0.0 1212.34 1638.41 +imu_odom_: 1691062908.896760223 0.387861 -0.225055 9.8282 -0.0500674 -0.0713727 0.0447411 0.18 0 pose: 0.0 -6.21027 -3.13568 0 0.00361022 -0.00604756 0.710444 0.703718 uwb: 0.49859851 1211.63 1638.15 +imu_odom_: 1691062908.922690215 0.620098 -0.275333 9.59117 -0.0628506 -0.0319579 0.0308927 0.2 0.02 pose: 0.74020696 -6.21297 -3.12395 0 0.00188192 -0.00325298 0.710383 0.703805 uwb: 0.0 1211.63 1638.15 +imu_odom_: 1691062908.947685179 0.565032 -0.253785 9.93594 -0.04048 -0.0308927 0.0372843 0.2 0.02 pose: 0.8346140 -6.21606 -3.12278 0 0.00235287 -0.00408411 0.710355 0.703828 uwb: 0.49965719 1205.88 1639.49 +imu_odom_: 1691062908.971743655 0.512359 -0.19393 10.1801 -0.0266316 -0.0287621 0.0500674 0.21 0.02 pose: 0.42578816 -6.2125 -3.11343 0 0.00527517 -0.0078927 0.710256 0.703879 uwb: 0.0 1205.88 1639.49 +imu_odom_: 1691062908.995843545 0.620098 -0.155623 10.3022 -0.0500674 0.00213053 0.0500674 0.21 0.02 pose: 0.0 -6.2125 -3.11343 0 0.00527517 -0.0078927 0.710256 0.703879 uwb: 0.50057298 1202.95 1639.93 +imu_odom_: 1691062909.13921161 0.395043 -0.462081 9.71328 -0.0490022 -0.00745685 0.0340885 0.18 0 pose: 0.31073526 -6.20894 -3.10409 0 0.00608109 -0.00543967 0.710373 0.703778 uwb: 0.0 1202.95 1639.93 +imu_odom_: 1691062909.37826521 0.517148 -0.258574 9.99819 -0.0468716 -0.0287621 0.056459 0.18 0 pose: 0.0 -6.20894 -3.10409 0 0.00608109 -0.00543967 0.710373 0.703778 uwb: 0.50005676 1197.85 1641.3 +imu_odom_: 1691062909.62743323 0.577003 -0.0742203 10.0078 -0.0553937 -0.0234358 0.0468716 0.2 0 pose: 0.41135734 -6.20894 -3.10409 0 0.00554423 -0.00572164 0.710442 0.70371 uwb: 0.0 1197.85 1641.3 +imu_odom_: 1691062909.88835764 0.703895 -0.392649 10.0269 -0.0713727 -0.00532632 0.0596548 0.25 0 pose: 0.42848884 -6.21473 -3.09118 0 0.00622996 -0.0046192 0.710609 0.703544 uwb: 0.49922265 1193.22 1642.22 +imu_odom_: 1691062909.105035739 0.186748 -0.351948 9.79228 -0.072438 0.0553937 0.036219 0.25 0 pose: 0.0 -6.21473 -3.09118 0 0.00622996 -0.0046192 0.710609 0.703544 uwb: 0.0 1193.22 1642.22 +imu_odom_: 1691062909.130676707 0.124498 -0.402226 9.78989 -0.0745685 -0.0117179 0.0660464 0.23 -0.02 pose: 0.6948554 -6.21473 -3.09118 0 0.00609551 -0.0053496 0.710659 0.703489 uwb: 0.0 1193.22 1642.22 +imu_odom_: 1691062909.155677503 0.347159 -0.402226 10.0556 -0.0607201 0.0319579 0.0340885 0.23 -0.02 pose: 0.0 -6.21473 -3.09118 0 0.00609551 -0.0053496 0.710659 0.703489 uwb: 0.50128752 1194.78 1641.31 +imu_odom_: 1691062909.179696607 0.521936 -0.287304 10.4651 -0.0703074 0.0266316 0.056459 0.21 0.02 pose: 0.42022640 -6.21117 -3.08184 0 0.00322622 -0.00612917 0.710857 0.703303 uwb: 0.0 1194.78 1641.31 +imu_odom_: 1691062909.194699360 0.56982 -0.270545 9.73961 -0.072438 -0.00958738 0.036219 0.21 0.02 pose: 0.0 -6.21117 -3.08184 0 0.00322622 -0.00612917 0.710857 0.703303 uwb: 0.49892516 1194.21 1641.46 +imu_odom_: 1691062909.221764162 0.459687 -0.1652 9.84735 -0.0862864 0.00106526 0.0585895 0.18 0.02 pose: 0.49999260 -6.20763 -3.07249 0 -0.00099434 -0.0052835 0.711038 0.703133 uwb: 0.0 1194.21 1641.46 +imu_odom_: 1691062909.246839912 0.514753 -0.263362 9.87608 -0.0639159 0.0628506 0.0372843 0.18 0.02 pose: 0.0 -6.20763 -3.07249 0 -0.00099434 -0.0052835 0.711038 0.703133 uwb: 0.49989344 1194.2 1641.41 +imu_odom_: 1691062909.271757589 0.557849 -0.371101 9.31584 -0.0916127 0.00639159 0.0500674 0.2 0 pose: 0.39996259 -6.21344 -3.05959 0 0.00171092 -0.00624098 0.711154 0.703007 uwb: 0.0 1194.2 1641.41 +imu_odom_: 1691062909.294821539 0.88346 -0.203507 9.66539 -0.0511327 0.00213053 0.0330232 0.2 0 pose: 0.0 -6.21344 -3.05959 0 0.00171092 -0.00624098 0.711154 0.703007 uwb: 0.49916723 1196.38 1640.55 +imu_odom_: 1691062909.310892314 0.842759 -0.366313 10.0844 -0.00426106 -0.04048 0.0191748 0.19 0 pose: 0.93111503 -6.2099 -3.05024 0 0.0027041 -0.0099629 0.711269 0.702844 uwb: 0.0 1196.38 1640.55 +imu_odom_: 1691062909.337829956 0.59855 0.0526724 10.3789 0.00106526 -0.0426106 -0.00639159 0.19 0 pose: 0.0 -6.2099 -3.05024 0 0.0027041 -0.0099629 0.711269 0.702844 uwb: 0.50079464 1194.16 1641.3 +imu_odom_: 1691062909.363696952 0.701501 -0.105345 9.22486 -0.0756338 -0.0245011 0.0458064 0.25 0 pose: 0.23920818 -6.20637 -3.04088 0 0.00489735 -0.0105446 0.711013 0.703083 uwb: 0.0 1194.16 1641.3 +imu_odom_: 1691062909.390939077 0.311246 -0.241814 10.0604 -0.0809601 0 0.0958738 0.23 -0.02 pose: 0.44954595 -6.2132 -3.03069 0 0.0093305 -0.0088577 0.710722 0.703356 uwb: 0.0 1194.16 1641.3 +imu_odom_: 1691062909.406834569 0.0694318 -0.837971 9.31584 -0.076699 0.0127832 0.0798948 0.23 -0.02 pose: 0.7265286 -6.21218 -3.02799 0 0.00868993 -0.00845352 0.710872 0.703217 uwb: 0.0 1194.16 1641.3 +imu_odom_: 1691062909.433797002 0.114922 -0.244209 9.34217 -0.0287621 0.0138484 0.0255663 0.23 -0.02 pose: 0.35872331 -6.21212 -3.02798 0 0.00512638 -0.00751538 0.711522 0.702605 uwb: 0.0 1194.16 1641.3 +imu_odom_: 1691062909.460054517 0.208296 -0.0143652 10.2065 -0.0490022 0.00958738 0.036219 0.23 -0.02 pose: 0.0 -6.21212 -3.02798 0 0.00512638 -0.00751538 0.711522 0.702605 uwb: 0.99885068 1188.99 1642.23 +imu_odom_: 1691062909.486719759 0.124498 -0.107739 9.98622 -0.076699 -0.0330232 0.052198 0.25 -0.02 pose: 0.53219948 -6.21517 -3.01612 0 0.00279412 -0.00240479 0.711383 0.702795 uwb: 0.50113004 1190.06 1641.72 +imu_odom_: 1691062909.511665142 0.146046 0.0526724 9.69891 -0.0543285 -0.0298274 0.0436758 0.25 -0.02 pose: 0.0 -6.21517 -3.01612 0 0.00279412 -0.00240479 0.711383 0.702795 uwb: 0.0 1190.06 1641.72 +imu_odom_: 1691062909.527805037 1.075 -0.0766145 10.4148 -0.052198 -0.0436758 0.0458064 0.22 0 pose: 0.34692317 -6.21437 -3.00577 0 0.00158935 0.000184996 0.711513 0.702671 uwb: 0.0 1190.06 1641.72 +imu_odom_: 1691062909.544710513 0.428562 -0.579397 9.22486 -0.0511327 0.0415453 0.0319579 0.22 0 pose: 0.0 -6.21437 -3.00577 0 0.00158935 0.000184996 0.711513 0.702671 uwb: 0.49843811 1184.42 1643.14 +imu_odom_: 1691062909.569656771 0.452504 -0.287304 9.88326 -0.0266316 0.0713727 0.04048 0.25 0 pose: 0.49963679 -6.21075 -2.99644 0 0.00170737 -0.0003342290.71153 0.702653 uwb: 0.0 1184.42 1643.14 +imu_odom_: 1691062909.583661498 0.371101 -0.397437 9.7444 -0.0649811 0.00852212 0.0617853 0.25 0 pose: 0.0 -6.21075 -2.99644 0 0.00170737 -0.0003342290.71153 0.702653 uwb: 0.0 1184.42 1643.14 +imu_odom_: 1691062909.607665436 0.529119 -0.122104 9.78031 -0.052198 0.036219 0.0330232 0.18 0 pose: 0.38950985 -6.20883 -2.99149 0 -0.00137928 -0.00216883 0.711651 0.702528 uwb: 0.50144210 1189.37 1641.34 +imu_odom_: 1691062909.624941015 0.308852 -0.169988 10.0963 -0.0681769 -0.02024 0.0511327 0.18 0 pose: 0.7050632 -6.20713 -2.98712 0 -0.000771338-0.00198623 0.711634 0.702547 uwb: 0.0 1189.37 1641.34 +imu_odom_: 1691062909.649683702 0.332794 -0.222661 9.97185 -0.0372843 -0.0319579 0.0298274 0.18 0 pose: 0.34228885 -6.21645 -2.9835 0 9.05869e-05 -0.00010853 0.711664 0.70252 uwb: 0.49980886 1193.21 1639.9 +imu_odom_: 1691062909.676783793 0.514753 -0.203507 9.44273 -0.0873517 -0.0191748 0.0511327 0.18 0 pose: 0.0 -6.21645 -2.9835 0 9.05869e-05 -0.00010853 0.711664 0.70252 uwb: 0.0 1193.21 1639.9 +imu_odom_: 1691062909.702873318 -0.150835 -0.229843 9.63666 -0.0639159 0.0191748 0.0490022 0.19 0 pose: 0.7821462 -6.21645 -2.9835 0 -0.0003949160.000353634 0.711637 0.702547 uwb: 0.49999260 1190.9 1640.32 +imu_odom_: 1691062909.729718216 0.6608 -0.469264 9.77792 -0.0820254 -0.0191748 0.0372843 0.19 0 pose: 0.0 -6.21645 -2.9835 0 -0.0003949160.000353634 0.711637 0.702547 uwb: 0.0 1190.9 1640.32 +imu_odom_: 1691062909.754670307 0.296881 -0.318429 10.2256 -0.0585895 -0.0372843 0.0447411 0.2 0 pose: 0.52077848 -6.21283 -2.97418 0 -0.000202961-0.0002414690.711717 0.702466 uwb: 0.0 1190.9 1640.32 +imu_odom_: 1691062909.770896822 1.06542 -0.289698 9.6223 -0.0585895 0.015979 0.036219 0.2 0 pose: 0.0 -6.21283 -2.97418 0 -0.000202961-0.0002414690.711717 0.702466 uwb: 0.0 1190.9 1640.32 +imu_odom_: 1691062909.796916934 0.646434 -0.126893 9.88566 -0.0458064 -0.0234358 0.0340885 0.19 0 pose: 0.52905257 -6.20931 -2.96482 0 -0.00223359 -0.00180963 0.711766 0.702411 uwb: 0.100021560 1188.62 1640.85 +imu_odom_: 1691062909.823766498 0.320823 -0.296881 10.058 -0.0468716 -0.00319579 0.0351537 0.23 0 pose: 0.42099053 -6.21515 -2.95194 0 -0.00167393 -0.00273676 0.711756 0.702419 uwb: 0.0 1188.62 1640.85 +imu_odom_: 1691062909.849704366 0.100556 -0.272939 10.1873 -0.0394148 0.0298274 0.0372843 0.19 0 pose: 0.23891361 -6.21515 -2.95194 0 -0.000415152-0.00280376 0.711712 0.702466 uwb: 0.49958429 1190.31 1640.4 +imu_odom_: 1691062909.876791916 0.272939 -0.203507 10.1945 -0.0298274 -0.00532632 0.0383495 0.22 0 pose: 0.28090825 -6.21162 -2.94258 0 -0.00277555 -0.00111289 0.711679 0.702498 uwb: 0.0 1190.31 1640.4 +imu_odom_: 1691062909.892777237 0.35913 -0.179565 10.0509 -0.0607201 -0.00106526 0.0500674 0.22 0 pose: 0.0 -6.21162 -2.94258 0 -0.00277555 -0.00111289 0.711679 0.702498 uwb: 0.50127003 1193.09 1639.49 +imu_odom_: 1691062909.919675798 0.672771 -0.517148 9.73961 -0.0468716 0.00958738 0.02024 0.23 0 pose: 0.25139039 -6.21162 -2.94258 0 -0.00411213 0.00124235 0.711663 0.702508 uwb: 0.0 1193.09 1639.49 +imu_odom_: 1691062909.944679511 0.371101 -0.574608 9.64863 -0.072438 -0.0127832 0.0415453 0.23 0 pose: 0.0 -6.21162 -2.94258 0 -0.00411213 0.00124235 0.711663 0.702508 uwb: 0.49808521 1185.74 1641.13 +imu_odom_: 1691062909.971922511 0.663194 -0.220267 10.0365 -0.0585895 -0.0703074 0.0468716 0.23 0 pose: 0.43711876 -6.21746 -2.9297 0 -0.00238202 0.00240292 0.711669 0.702506 uwb: 0.0 1185.74 1641.13 +imu_odom_: 1691062909.987802837 0.703895 -0.545878 9.94073 -0.0798948 0.0170442 0.0532632 0.23 0 pose: 0.0 -6.21746 -2.9297 0 -0.00238202 0.00240292 0.711669 0.702506 uwb: 0.50059631 1181.3 1642.59 +imu_odom_: 1691062910.13666917 0.59855 -0.31364 10.0868 -0.0415453 0.0415453 0.0234358 0.25 -0.02 pose: 0.51255395 -6.21393 -2.92034 0 -0.00332133 -0.00194756 0.711567 0.702607 uwb: 0.0 1181.3 1642.59 +imu_odom_: 1691062910.39661365 0.517148 -0.514753 9.91199 -0.0543285 -0.00852212 0.0468716 0.25 -0.02 pose: 0.0 -6.21393 -2.92034 0 -0.00332133 -0.00194756 0.711567 0.702607 uwb: 0.50035134 1178.46 1643.24 +imu_odom_: 1691062910.66644796 0.718261 -0.246603 10.4124 -0.0468716 -0.015979 0.0543285 0.23 0 pose: 0.41733615 -6.21041 -2.91098 0 -0.00107472 -0.00538805 0.711649 0.702514 uwb: 0.0 1178.46 1643.24 +imu_odom_: 1691062910.92734905 0.567426 -0.107739 10.3597 -0.0372843 0.0127832 0.0415453 0.18 -0.02 pose: 0.53145578 -6.21624 -2.8981 0 -0.000765755-0.00873542 0.711619 0.702511 uwb: 0.50015593 1171.12 1645.13 +imu_odom_: 1691062910.119652132 0.507571 -0.11971 10.2185 -0.0692422 -0.0191748 0.0607201 0.18 -0.02 pose: 0.0 -6.21624 -2.8981 0 -0.000765755-0.00873542 0.711619 0.702511 uwb: 0.0 1171.12 1645.13 +imu_odom_: 1691062910.135690533 0.411803 -0.146046 9.7444 -0.0575243 -0.0181095 0.0532632 0.2 0.02 pose: 0.27841757 -6.21624 -2.8981 0 0.00187257 -0.00867785 0.711711 0.702416 uwb: 0.50061674 1168.86 1645.63 +imu_odom_: 1691062910.162790917 0.665588 -0.399832 9.92875 -0.072438 -0.0308927 0.0617853 0.2 0.02 pose: 0.0 -6.21624 -2.8981 0 0.00187257 -0.00867785 0.711711 0.702416 uwb: 0.0 1168.86 1645.63 +imu_odom_: 1691062910.188778656 0.701501 -0.0933739 9.7444 -0.0447411 0.00319579 0.0340885 0.18 0.02 pose: 0.53058958 -6.21272 -2.88874 0 0.00436063 -0.00440016 0.711952 0.7022 uwb: 0.49883184 1165.96 1646.09 +imu_odom_: 1691062910.215703466 0.502782 -0.435745 9.31823 -0.0873517 -0.0106526 0.0511327 0.18 0.02 pose: 0.0 -6.21272 -2.88874 0 0.00436063 -0.00440016 0.711952 0.7022 uwb: 0.0 1165.96 1646.09 +imu_odom_: 1691062910.232664064 0.287304 -0.150835 10.0892 -0.0372843 -0.00958738 0.0383495 0.2 0.02 pose: 0.43207322 -6.2092 -2.87938 0 0.00484537 -0.00670152 0.712178 0.70195 uwb: 0.0 1165.96 1646.09 +imu_odom_: 1691062910.259767947 0.684742 -0.361524 10.501 -0.0756338 -0.02024 0.0681769 0.2 0.02 pose: 0.52933548 -6.21505 -2.86651 0 0.0037799 -0.0073428 0.712255 0.701872 uwb: 0.50008010 1167.13 1645.94 +imu_odom_: 1691062910.285775519 0.995988 -0.0933739 10.647 -0.0660464 0.0255663 0.0319579 0.25 -0.02 pose: 0.0 -6.21505 -2.86651 0 0.0037799 -0.0073428 0.712255 0.701872 uwb: 0.49981178 1167.63 1645.54 +imu_odom_: 1691062910.312675830 0.543484 -0.454898 9.92157 -0.0777643 0.0234358 0.0468716 0.23 0 pose: 0.61921610 -6.21155 -2.85714 0 0.00598677 -0.0101014 0.712416 0.701659 uwb: 0.0 1167.63 1645.54 +imu_odom_: 1691062910.338834477 0.454898 -0.438139 10.2137 -0.0681769 0.00426106 0.0532632 0.23 0 pose: 0.0 -6.21155 -2.85714 0 0.00598677 -0.0101014 0.712416 0.701659 uwb: 0.0 1167.63 1645.54 +imu_odom_: 1691062910.365826949 0.555455 -0.387861 10.0533 -0.052198 0.0191748 0.0351537 0.23 0.02 pose: 0.53058958 -6.21571 -2.84783 0 0.000209896 -0.0106761 0.712655 0.701433 uwb: 0.0 1167.63 1645.54 +imu_odom_: 1691062910.382607307 0.21069 -0.107739 10.2065 -0.0596548 0.00319579 0.0447411 0.23 0.02 pose: 0.0 -6.21571 -2.84783 0 0.000209896 -0.0106761 0.712655 0.701433 uwb: 0.0 1167.63 1645.54 +imu_odom_: 1691062910.406619412 0.608127 -0.277727 9.68933 -0.0426106 0.0138484 0.0426106 0.18 -0.05 pose: 0.43772830 -6.21539 -2.83907 0 -0.00199963 -0.0106903 0.712657 0.701428 uwb: 0.0 1167.63 1645.54 +imu_odom_: 1691062910.431688163 0.253785 -0.160412 9.63187 -0.0671117 -0.00106526 0.0575243 0.18 -0.05 pose: 0.0 -6.21539 -2.83907 0 -0.00199963 -0.0106903 0.712657 0.701428 uwb: 0.0 1167.63 1645.54 +imu_odom_: 1691062910.448621637 0.0981623 -0.378284 10.0604 -0.0426106 -0.0170442 0.0447411 0.23 0.02 pose: 0.49080856 -6.2138 -2.83493 0 -0.000336975-0.00778467 0.712845 0.701278 uwb: 0.149922828 1165.92 1645.91 +imu_odom_: 1691062910.474671498 0.416591 -0.0550666 10.2735 -0.056459 -0.0383495 0.0479369 0.23 0.02 pose: 0.0 -6.2138 -2.83493 0 -0.000336975-0.00778467 0.712845 0.701278 uwb: 0.0 1165.92 1645.91 +imu_odom_: 1691062910.501601558 0.852336 -0.0454898 10.0269 -0.0490022 -0.0234358 0.0426106 0.25 0 pose: 0.42983335 -6.21694 -2.82301 0 0.00017563 -0.00486262 0.712971 0.701177 uwb: 0.49946181 1165.24 1645.62 +imu_odom_: 1691062910.526674101 0.756568 0.0287304 10.3669 -0.0575243 0.015979 0.0543285 0.18 0.02 pose: 0.0 -6.21694 -2.82301 0 0.00017563 -0.00486262 0.712971 0.701177 uwb: 0.0 1165.24 1645.62 +imu_odom_: 1691062910.543708486 0.0909797 -0.378284 9.73961 -0.056459 -0.0245011 0.0372843 0.21 0 pose: 0.35025673 -6.21597 -2.81267 0 0.0037915 -0.00543431 0.713023 0.70111 uwb: 0.50241913 1169.2 1644.65 +imu_odom_: 1691062910.568660869 0.351948 -0.265756 9.63906 -0.0692422 -0.0490022 0.0543285 0.21 0 pose: 0.0 -6.21597 -2.81267 0 0.0037915 -0.00543431 0.713023 0.70111 uwb: 0.0 1169.2 1644.65 +imu_odom_: 1691062910.595606386 0.42138 0 10.0341 -0.0447411 0.0319579 0.0319579 0.23 0 pose: 0.58963698 -6.21342 -2.80604 0 0.00203449 -0.0038101 0.713233 0.700913 uwb: 0.50007135 1169.69 1644.23 +imu_odom_: 1691062910.621600250 0.308852 -0.538695 9.30147 -0.0500674 0.0490022 0.0394148 0.19 0 pose: 0.6955262 -6.21239 -2.80333 0 0.00231527 -0.00309125 0.713214 0.700935 uwb: 0.0 1169.69 1644.23 +imu_odom_: 1691062910.647611613 0.117316 -0.311246 9.81383 -0.0213053 0.0266316 0.0447411 0.25 0 pose: 0.45984119 -6.21653 -2.79405 0 0.000276186 -0.00148864 0.713163 0.700996 uwb: 0.0 1169.69 1644.23 +imu_odom_: 1691062910.663715344 0.442927 -0.488417 9.64145 -0.0585895 -0.0191748 0.052198 0.25 0 pose: 0.0 -6.21653 -2.79405 0 0.000276186 -0.00148864 0.713163 0.700996 uwb: 0.0 1169.69 1644.23 +imu_odom_: 1691062910.690616531 0.275333 -0.0454898 10.2161 -0.0330232 -0.0138484 0.0436758 0.17 0 pose: 0.33044788 -6.21815 -2.79042 0 -0.00226223 -0.0002486610.713242 0.700914 uwb: 0.99907235 1169.13 1644.4 +imu_odom_: 1691062910.715595162 0.64404 -0.217872 10.0437 -0.072438 -0.02024 0.0468716 0.18 0.02 pose: 0.35971493 -6.21457 -2.78108 0 -0.00147069 0.00156138 0.713324 0.700831 uwb: 0.0 1169.13 1644.4 +imu_odom_: 1691062910.742683004 0.347159 -0.155623 10.0197 -0.0841559 -0.00639159 0.0596548 0.18 0.02 pose: 0.8130902 -6.21457 -2.78108 0 -0.0009018980.000885642 0.713346 0.700811 uwb: 0.50098130 1166.79 1644.67 +imu_odom_: 1691062910.758688741 0.308852 -0.399832 9.96946 -0.072438 0.0138484 0.0447411 0.19 0 pose: 0.0 -6.21457 -2.78108 0 -0.0009018980.000885642 0.713346 0.700811 uwb: 0.0 1166.79 1644.67 +imu_odom_: 1691062910.785660507 0.646434 -0.205901 9.86172 -0.0756338 -0.00639159 0.052198 0.19 0 pose: 0.43935571 -6.21203 -2.77445 0 -9.64484e-050.00189543 0.713578 0.700573 uwb: 0.49827771 1159.34 1646.11 +imu_odom_: 1691062910.810600640 0.679953 -0.459687 9.93354 -0.0649811 0.0330232 0.0330232 0.18 -0.02 pose: 0.42977503 -6.21779 -2.76149 0 0.000150618 -0.0008462730.713726 0.700425 uwb: 0.0 1159.34 1646.11 +imu_odom_: 1691062910.837598946 0.177171 -0.102951 10.1634 -0.072438 0.00958738 0.052198 0.18 -0.02 pose: 0.0 -6.21779 -2.76149 0 0.000150618 -0.0008462730.713726 0.700425 uwb: 0.49933639 1153.06 1647.39 +imu_odom_: 1691062910.862597702 0.289698 -0.282516 10.1083 -0.0468716 0.0458064 0.0298274 0.19 0 pose: 0.32008264 -6.21677 -2.75883 0 -0.000363755-0.00242436 0.713698 0.700449 uwb: 0.0 1153.06 1647.39 +imu_odom_: 1691062910.888639688 0.253785 -0.469264 9.34217 -0.0490022 -0.0117179 0.0319579 0.21 -0.02 pose: 0.0 -6.21677 -2.75883 0 -0.000363755-0.00242436 0.713698 0.700449 uwb: 0.50186208 1153.62 1647.23 +imu_odom_: 1691062910.905133938 0.526724 -0.241814 9.96227 -0.0372843 -0.0298274 0.0340885 0.21 -0.02 pose: 0.44928931 -6.21316 -2.74948 0 -0.00380479 0.000896585 0.713699 0.700442 uwb: 0.0 1153.62 1647.23 +imu_odom_: 1691062910.931624481 0.337582 -0.263362 9.64384 -0.0639159 -0.00745685 0.0479369 0.23 0 pose: 0.0 -6.21316 -2.74948 0 -0.00380479 0.000896585 0.713699 0.700442 uwb: 0.0 1153.62 1647.23 +imu_odom_: 1691062910.957731797 0.246603 -0.160412 9.97185 -0.0511327 0.00852212 0.0468716 0.23 0 pose: 0.49201598 -6.21912 -2.73664 0 -0.00432428 -0.0003498080.71361 0.700529 uwb: 0.49636740 1151.93 1647.68 +imu_odom_: 1691062910.984788725 0.653617 -0.387861 9.91918 -0.0735032 -0.00106526 0.036219 0.25 -0.02 pose: 0.45932497 -6.21661 -2.72988 0 -0.00409118 0.00430517 0.713743 0.700383 uwb: 0.50316576 1148.99 1647.86 +imu_odom_: 1691062911.10642306 0.380678 -0.454898 10.1442 -0.0628506 -0.0117179 0.0458064 0.25 -0.02 pose: 0.0 -6.21661 -2.72988 0 -0.00409118 0.00430517 0.713743 0.700383 uwb: 0.0 1148.99 1647.86 +imu_odom_: 1691062911.27597362 0.754174 -0.289698 9.75637 -0.0809601 -0.0223706 0.0436758 0.25 -0.02 pose: 0.7020592 -6.21564 -2.72726 0 -0.00390654 0.00360659 0.713736 0.700394 uwb: 0.0 1148.99 1647.86 +imu_odom_: 1691062911.52662614 0.964863 -0.277727 9.55526 -0.0660464 -0.0298274 0.0479369 0.25 -0.02 pose: 0.0 -6.21564 -2.72726 0 -0.00390654 0.00360659 0.713736 0.700394 uwb: 0.49919932 1145.48 1648.17 +imu_odom_: 1691062911.79581883 0.203507 -0.493206 9.67257 -0.0372843 0.0138484 0.0287621 0.21 0.02 pose: 0.52869969 -6.21217 -2.71788 0 -0.00426181 -0.00132231 0.713771 0.700364 uwb: 0.0 1145.48 1648.17 +imu_odom_: 1691062911.105598788 0.299275 -0.263362 9.71806 -0.0415453 -0.0351537 0.0458064 0.18 -0.02 pose: 0.61959525 -6.21908 -2.70773 0 -0.00430208 -0.0036788 0.713752 0.700375 uwb: 0.50015010 1147.15 1647.77 +imu_odom_: 1691062911.132718712 0.579397 -0.373495 9.58878 -0.0319579 0.00213053 0.0490022 0.23 0.02 pose: 0.8024450 -6.21809 -2.70503 0 -0.00435947 -0.00294438 0.713775 0.700356 uwb: 0.0 1147.15 1647.77 +imu_odom_: 1691062911.157720676 0.543484 -0.047884 9.82102 -0.04048 -0.00106526 0.0468716 0.19 0 pose: 0.25132040 -6.21809 -2.70503 0 -0.00414263 -0.00186822 0.713845 0.700289 uwb: 0.49980304 1148.32 1647.67 +imu_odom_: 1691062911.174722979 0.296881 -0.227449 9.89763 -0.036219 0.00106526 0.0436758 0.19 0 pose: 0.0 -6.21809 -2.70503 0 -0.00414263 -0.00186822 0.713845 0.700289 uwb: 0.0 1148.32 1647.67 +imu_odom_: 1691062911.200590560 0.304064 -0.526724 9.81623 -0.0703074 0.00532632 0.0553937 0.18 0 pose: 0.27880546 -6.21462 -2.69565 0 -0.00238984 -0.00317598 0.713924 0.700212 uwb: 0.50029593 1153.44 1646.55 +imu_odom_: 1691062911.227639321 0.612916 -0.289698 10.319 -0.0575243 -0.036219 0.0703074 0.18 0 pose: 0.0 -6.21462 -2.69565 0 -0.00238984 -0.00317598 0.713924 0.700212 uwb: 0.0 1153.44 1646.55 +imu_odom_: 1691062911.252638368 0.648829 -0.146046 10.2472 -0.0735032 -0.0319579 0.0436758 0.18 0 pose: 0.42042766 -6.21116 -2.68627 0 -0.00227744 -0.00133718 0.714039 0.700101 uwb: 0.50036884 1159.04 1645 +imu_odom_: 1691062911.269775123 0.289698 -0.234632 9.89284 -0.0543285 0.0106526 0.0372843 0.18 0 pose: 0.0 -6.21116 -2.68627 0 -0.00227744 -0.00133718 0.714039 0.700101 uwb: 0.0 1159.04 1645 +imu_odom_: 1691062911.294757254 0.373495 -0.483629 9.53132 -0.0681769 -0.0127832 0.0447411 0.18 0 pose: 0.52939090 -6.21708 -2.67343 0 -0.000875554-0.00453281 0.714426 0.699695 uwb: 0.49993720 1162.92 1643.86 +imu_odom_: 1691062911.321631901 0.459687 -0.275333 9.91439 -0.0543285 -0.0447411 0.052198 0.18 0 pose: 0.0 -6.21708 -2.67343 0 -0.000875554-0.00453281 0.714426 0.699695 uwb: 0.0 1162.92 1643.86 +imu_odom_: 1691062911.337737090 0.514753 -0.174777 9.63187 -0.0681769 -0.0255663 0.0596548 0.2 -0.02 pose: 0.42141051 -6.21708 -2.67343 0 -0.000902305-0.00395558 0.714452 0.699672 uwb: 0.49932474 1167.37 1642.53 +imu_odom_: 1691062911.364634486 0.332794 -0.21069 10.1179 -0.0649811 0.00106526 0.0447411 0.2 -0.02 pose: 0.0 -6.21708 -2.67343 0 -0.000902305-0.00395558 0.714452 0.699672 uwb: 0.0 1167.37 1642.53 +imu_odom_: 1691062911.389595910 0.179565 -0.691924 9.74679 -0.0671117 0.0511327 0.0415453 0.23 0.05 pose: 0.51872236 -6.21363 -2.66404 0 0.00132472 -0.00434828 0.714652 0.699466 uwb: 0.49830396 1165.59 1642.58 +imu_odom_: 1691062911.416577884 0.275333 -0.418985 10.2663 -0.0649811 -0.0191748 0.0500674 0.21 0.02 pose: 0.59981848 -6.21948 -2.65124 0 -0.00251435 -0.00228057 0.714779 0.699343 uwb: 0.0 1165.59 1642.58 +imu_odom_: 1691062911.441543975 0.335188 -0.354342 10.0437 -0.0308927 0.0234358 0.0340885 0.21 0.02 pose: 0.0 -6.21948 -2.65124 0 -0.00251435 -0.00228057 0.714779 0.699343 uwb: 0.49935390 1165.54 1642.42 +imu_odom_: 1691062911.468764226 0.61531 -0.222661 10.2161 -0.0596548 -0.00106526 0.0511327 0.23 0 pose: 0.8104946 -6.21948 -2.65124 0 -0.00330851 -0.00239666 0.714808 0.699309 uwb: 0.0 1165.54 1642.42 +imu_odom_: 1691062911.484649220 0.246603 -0.0885855 9.74201 -0.0383495 -0.00213053 0.0415453 0.23 0 pose: 0.0 -6.21948 -2.65124 0 -0.00330851 -0.00239666 0.714808 0.699309 uwb: 0.0 1165.54 1642.42 +imu_odom_: 1691062911.511539324 0.459687 -0.232238 10.2041 -0.0585895 -0.0298274 0.0500674 0.23 0 pose: 0.50903958 -6.21595 -2.64189 0 -0.00704636 -0.00242056 0.714848 0.699241 uwb: 0.50029301 1167.21 1641.92 +imu_odom_: 1691062911.536581827 0.222661 -0.579397 9.70131 -0.0298274 -0.00106526 0.0234358 0.23 0 pose: 0.0 -6.21595 -2.64189 0 -0.00704636 -0.00242056 0.714848 0.699241 uwb: 0.50071591 1168.94 1641.63 +imu_odom_: 1691062911.563618340 0.395043 -0.248997 9.77792 -0.04048 -0.0298274 0.0479369 0.23 0 pose: 0.42980711 -6.22177 -2.629 0 -0.00393585 -0.00167956 0.714976 0.699136 uwb: 0.0 1168.94 1641.63 +imu_odom_: 1691062911.579559038 0.418985 -0.277727 10.0102 -0.0426106 0.0500674 0.0383495 0.23 0 pose: 0.0 -6.22177 -2.629 0 -0.00393585 -0.00167956 0.714976 0.699136 uwb: 0.0 1168.94 1641.63 +imu_odom_: 1691062911.606701128 0.675165 -0.562637 9.83777 -0.0830906 0.0308927 0.0596548 0.2 0 pose: 0.52143179 -6.21824 -2.61964 0 -0.0033397 -0.0022505 0.71493 0.699185 uwb: 0.50065757 1163.76 1642.42 +imu_odom_: 1691062911.631615013 0.201113 -0.502782 9.71806 -0.0490022 0.0223706 0.036219 0.18 0 pose: 0.62972424 -6.21471 -2.61029 0 -0.00257767 -0.00507648 0.71516 0.698938 uwb: 0.0 1163.76 1642.42 +imu_odom_: 1691062911.658702273 0.761356 -0.344765 10.0006 -0.0585895 -0.00426106 0.0372843 0.18 0 pose: 0.0 -6.21471 -2.61029 0 -0.00257767 -0.00507648 0.71516 0.698938 uwb: 0.50190583 1161.02 1643.35 +imu_odom_: 1691062911.674813295 0.184354 -0.241814 9.47146 -0.0532632 0.0490022 0.0340885 0.2 0 pose: 0.8055657 -6.21471 -2.61029 0 -0.00343702 -0.00489514 0.715152 0.698943 uwb: 0.0 1161.02 1643.35 +imu_odom_: 1691062911.701807518 0.292093 -0.25618 9.90002 -0.0500674 -0.0436758 0.0287621 0.2 0 pose: 0.0 -6.21471 -2.61029 0 -0.00343702 -0.00489514 0.715152 0.698943 uwb: 0.49994887 1155.89 1644.3 +imu_odom_: 1691062911.726815606 0.0670376 -0.117316 10.24 -0.04048 -0.00745685 0.0468716 0.18 0 pose: 0.51927649 -6.22054 -2.5974 0 -0.00376977 -0.00552618 0.715087 0.699004 uwb: 0.0 1155.89 1644.3 +imu_odom_: 1691062911.753624632 0.447716 -0.100556 10.228 -0.0436758 -0.02024 0.0330232 0.18 0 pose: 0.0 -6.22054 -2.5974 0 -0.00376977 -0.00552618 0.715087 0.699004 uwb: 0.50006261 1154.19 1644.68 +imu_odom_: 1691062911.778786711 0.399832 -0.198719 10.1323 -0.0628506 -0.0330232 0.056459 0.19 0 pose: 0.42913048 -6.21701 -2.58805 0 -0.00444049 -0.0014968 0.715013 0.699095 uwb: 0.0 1154.19 1644.68 +imu_odom_: 1691062911.805613528 0.845153 -0.244209 9.99579 -0.0553937 0.0234358 0.0351537 0.23 -0.02 pose: 0.52018061 -6.21348 -2.57869 0 -0.0009939830.000647963 0.715059 0.699063 uwb: 0.49829813 1153.66 1644.93 +imu_odom_: 1691062911.830690737 0.457293 -0.399832 9.75158 -0.0830906 0.0149137 0.0511327 0.23 -0.02 pose: 0.0 -6.21348 -2.57869 0 -0.0009939830.000647963 0.715059 0.699063 uwb: 0.0 1153.66 1644.93 +imu_odom_: 1691062911.857734249 0.4956 -0.347159 9.72525 -0.0756338 -0.0276969 0.0479369 0.23 -0.02 pose: 0.69075194 -6.21927 -2.5658 0 0.000158349 -0.00335855 0.715224 0.698888 uwb: 0.50079173 1156.52 1644.44 +imu_odom_: 1691062911.873620992 0.287304 -0.519542 10.2544 -0.0596548 0.0245011 0.056459 0.23 -0.02 pose: 0.6884975 -6.21931 -2.5658 0 -3.74585e-05-0.00412233 0.715242 0.698865 uwb: 0.0 1156.52 1644.44 +imu_odom_: 1691062911.900547261 0.538695 -0.0766145 10.0963 -0.056459 0.00106526 0.0383495 0.23 0 pose: 0.0 -6.21931 -2.5658 0 -3.74585e-05-0.00412233 0.715242 0.698865 uwb: 0.49997803 1157.05 1644.19 +imu_odom_: 1691062911.926546959 0.198719 -0.517148 9.45231 -0.0660464 0.0234358 0.0415453 0.23 0 pose: 0.43166783 -6.21588 -2.55641 0 -0.00177657 -0.00592257 0.71539 0.698698 uwb: 0.0 1157.05 1644.19 +imu_odom_: 1691062911.953688465 0.1652 -0.593762 10.3477 -0.0511327 0.00213053 0.0266316 0.25 -0.02 pose: 0.45804464 -6.22283 -2.54627 0 -0.00302582 -0.00466697 0.715403 0.69869 uwb: 0.49936557 1152.39 1644.58 +imu_odom_: 1691062911.969666203 0.737414 -0.0814029 10.0173 -0.0543285 -0.0436758 0.0266316 0.25 -0.02 pose: 0.7138418 -6.22185 -2.54359 0 -0.00374561 -0.00465857 0.715371 0.698719 uwb: 0.0 1152.39 1644.58 +imu_odom_: 1691062911.996672384 0.588974 -0.260968 10.2903 -0.056459 -0.0170442 0.0543285 0.25 0 pose: 0.35980826 -6.22001 -2.53854 0 -0.00393994 -0.00501572 0.715209 0.698882 uwb: 0.49895142 1147.27 1645.53 +imu_odom_: 1691062912.22677914 0.342371 -0.172383 10.2544 -0.0415453 0.0287621 0.0308927 0.19 0 pose: 0.0 -6.22001 -2.53854 0 -0.00393994 -0.00501572 0.715209 0.698882 uwb: 0.0 1147.27 1645.53 +imu_odom_: 1691062912.47651297 0.799663 -0.454898 9.85693 -0.0713727 -0.0394148 0.0543285 0.23 0 pose: 0.53011711 -6.21595 -2.52739 0 -0.00129122 -0.00298554 0.715269 0.698841 uwb: 0.50003345 1150.66 1644.79 +imu_odom_: 1691062912.70539384 0.830788 -0.339977 9.69412 -0.0458064 -0.0149137 0.0191748 0.2 0 pose: 0.0 -6.21595 -2.52739 0 -0.00129122 -0.00298554 0.715269 0.698841 uwb: 0.0 1150.66 1644.79 +imu_odom_: 1691062912.86663530 0.265756 -0.196325 9.79947 -0.0500674 -0.0266316 0.0468716 0.2 0 pose: 0.30918663 -6.22439 -2.52138 0 0.000146102 -0.00625107 0.715341 0.698748 uwb: 0.0 1150.66 1644.79 +imu_odom_: 1691062912.113716959 0.545878 -0.134075 10.4459 -0.0553937 -0.00958738 0.0351537 0.25 0 pose: 0.0 -6.22439 -2.52138 0 0.000146102 -0.00625107 0.715341 0.698748 uwb: 0.0 1150.66 1644.79 +imu_odom_: 1691062912.139551291 1.23301 -0.320823 10.2544 -0.0841559 -0.0117179 0.0553937 0.25 0 pose: 0.41076821 -6.22097 -2.51198 0 0.00154617 -0.00578988 0.715246 0.698847 uwb: 0.99990941 1153.47 1644.16 +imu_odom_: 1691062912.166668882 0.368707 -0.299275 10.2352 -0.0276969 0.00319579 0.0276969 0.25 0.02 pose: 0.44877893 -6.2186 -2.5055 0 0.00465219 -0.00717514 0.715336 0.698729 uwb: 0.0 1153.47 1644.16 +imu_odom_: 1691062912.182702618 0.708684 -0.258574 9.61033 -0.0415453 -0.0319579 0.0447411 0.25 0.02 pose: 0.0 -6.2186 -2.5055 0 0.00465219 -0.00717514 0.715336 0.698729 uwb: 0.0 1153.47 1644.16 +imu_odom_: 1691062912.199510391 0.497994 -0.0861913 9.94551 -0.0245011 0 0.0415453 0.25 0.02 pose: 0.0 -6.2186 -2.5055 0 0.00465219 -0.00717514 0.715336 0.698729 uwb: 0.50005678 1153.33 1643.54 +imu_odom_: 1691062912.224578851 0.28491 -0.213084 9.96946 -0.0468716 0.00958738 0.0532632 0.23 -0.02 pose: 0.8002577 -6.21754 -2.50259 0 0.00402561 -0.00665772 0.71531 0.698764 uwb: 0.0 1153.33 1643.54 +imu_odom_: 1691062912.251636654 0.567426 -0.191536 9.80426 -0.0372843 -0.00426106 0.0394148 0.23 0 pose: 0.42984211 -6.21754 -2.50259 0 0.00432466 -0.00584655 0.715269 0.698811 uwb: 0.0 1153.33 1643.54 +imu_odom_: 1691062912.277510360 0.363919 -0.474052 9.70849 -0.0649811 0 0.0585895 0.23 0 pose: 0.0 -6.21754 -2.50259 0 0.00432466 -0.00584655 0.715269 0.698811 uwb: 0.0 1153.33 1643.54 +imu_odom_: 1691062912.294561952 0.433351 -0.0909797 10.2232 -0.0553937 0.00958738 0.04048 0.25 -0.02 pose: 0.41103362 -6.22351 -2.48976 0 0.00367724 -0.00324835 0.715402 0.698696 uwb: 0.0 1153.33 1643.54 +imu_odom_: 1691062912.310565356 0.100556 -0.246603 9.71806 -0.0756338 -0.015979 0.0649811 0.25 -0.02 pose: 0.0 -6.22351 -2.48976 0 0.00367724 -0.00324835 0.715402 0.698696 uwb: 0.0 1153.33 1643.54 +imu_odom_: 1691062912.337561329 0.332794 -0.407014 9.79228 -0.0468716 0.0298274 0.0340885 0.23 0 pose: 0.52932675 -6.22008 -2.48037 0 0.00309032 -0.00405268 0.71558 0.698512 uwb: 0.149904458 1151.57 1643.64 +imu_odom_: 1691062912.362630373 -0.0407014 -0.344765 9.68215 -0.0692422 0.00319579 0.056459 0.23 0 pose: 0.0 -6.22008 -2.48037 0 0.00309032 -0.00405268 0.71558 0.698512 uwb: 0.0 1151.57 1643.64 +imu_odom_: 1691062912.379693632 0.68953 0.0574608 10.1897 -0.04048 -0.0170442 0.0351537 0.21 0 pose: 0.33008041 -6.21666 -2.47097 0 0.00128791 -0.00225187 0.715717 0.698386 uwb: 0.0 1151.57 1643.64 +imu_odom_: 1691062912.395524087 0.160412 -0.265756 9.31584 -0.0585895 -0.0138484 0.0500674 0.21 0 pose: 0.0 -6.21666 -2.47097 0 0.00128791 -0.00225187 0.715717 0.698386 uwb: 0.50067508 1152.14 1643.53 +imu_odom_: 1691062912.422577807 0.418985 -0.272939 9.59117 -0.0649811 -0.0106526 0.0436758 0.23 0 pose: 0.52049559 -6.22265 -2.45816 0 -0.0023594 -0.0009900150.715823 0.698278 uwb: 0.0 1152.14 1643.53 +imu_odom_: 1691062912.447502775 0.351948 -0.160412 10.082 -0.076699 -0.0106526 0.0394148 0.23 0 pose: 0.0 -6.22265 -2.45816 0 -0.0023594 -0.0009900150.715823 0.698278 uwb: 0.50259996 1151.6 1643.76 +imu_odom_: 1691062912.464548535 0.711078 -0.316035 10.1538 -0.0809601 0.0543285 0.0468716 0.21 0 pose: 0.77871059 -6.21923 -2.44876 0 -0.00113681 -0.0005861860.715903 0.698199 uwb: 0.0 1151.6 1643.76 +imu_odom_: 1691062912.489634786 1.09176 -0.186748 10.0413 -0.056459 -0.0245011 0.0458064 0.21 0 pose: 0.7057049 -6.21923 -2.44876 0 -0.000973306-0.00110548 0.71592 0.698181 uwb: 0.49891935 1149.34 1644.26 +imu_odom_: 1691062912.516507100 0.59855 -0.332794 9.87848 -0.056459 0.0308927 0.0372843 0.21 0 pose: 0.35074962 -6.22357 -2.43947 0 0.00138805 -0.00360296 0.715991 0.698099 uwb: 0.0 1149.34 1644.26 +imu_odom_: 1691062912.542511756 0.521936 -0.301669 10.1921 -0.0575243 0.00426106 0.0500674 0.21 0 pose: 0.0 -6.22357 -2.43947 0 0.00138805 -0.00360296 0.715991 0.698099 uwb: 0.49932474 1146.57 1645.11 +imu_odom_: 1691062912.569515895 0.557849 -0.134075 10.2879 -0.0234358 0.00213053 0.036219 0.25 0 pose: 0.52876970 -6.22277 -2.42918 0 0.000763215 -0.00836529 0.716051 0.697998 uwb: 0.0 1146.57 1645.11 +imu_odom_: 1691062912.585632459 0.663194 -0.0694318 9.82102 -0.0703074 0 0.0532632 0.25 0 pose: 0.0 -6.22277 -2.42918 0 0.000763215 -0.00836529 0.716051 0.697998 uwb: 0.0 1146.57 1645.11 +imu_odom_: 1691062912.602644387 0.23942 -0.332794 10.0341 -0.0372843 -0.00639159 0.0351537 0.18 0.02 pose: 0.35136792 -6.22182 -2.42654 0 0.00386481 -0.00619337 0.716048 0.698013 uwb: 0.0 1146.57 1645.11 +imu_odom_: 1691062912.627637894 0.378284 -0.1652 10.2711 -0.0596548 -0.0245011 0.0479369 0.18 0.02 pose: 0.0 -6.22182 -2.42654 0 0.00386481 -0.00619337 0.716048 0.698013 uwb: 0.0 1146.57 1645.11 +imu_odom_: 1691062912.654527706 0.701501 -0.220267 10.3932 -0.0479369 -0.0213053 0.04048 0.2 0 pose: 0.33069870 -6.21831 -2.41718 0 0.00301104 -0.00448676 0.716092 0.697985 uwb: 0.99903446 1144.3 1645.53 +imu_odom_: 1691062912.670526152 0.529119 -0.198719 10.003 -0.0649811 0.02024 0.0532632 0.2 0 pose: 0.0 -6.21831 -2.41718 0 0.00301104 -0.00448676 0.716092 0.697985 uwb: 0.0 1144.3 1645.53 +imu_odom_: 1691062912.697518625 0.203507 -0.426168 9.50259 -0.0585895 -0.00213053 0.0394148 0.18 -0.02 pose: 0.51763743 -6.22418 -2.40431 0 0.00492339 -0.00416701 0.716177 0.697888 uwb: 0.50108339 1145.44 1645.32 +imu_odom_: 1691062912.722522048 0.378284 -0.203507 9.92636 -0.0649811 0 0.0532632 0.18 0 pose: 0.35036464 -6.22418 -2.40431 0 0.00233681 -0.00301566 0.716225 0.697859 uwb: 0.0 1145.44 1645.32 +imu_odom_: 1691062912.749528229 0.462081 -0.0502782 10.2256 -0.04048 0.015979 0.0330232 0.18 0 pose: 0.0 -6.22418 -2.40431 0 0.00233681 -0.00301566 0.716225 0.697859 uwb: 0.49999845 1139.19 1646.48 +imu_odom_: 1691062912.775574007 0.581791 -0.574608 9.50259 -0.0532632 0.0149137 0.0394148 0.18 0.02 pose: 0.8120987 -6.22418 -2.40431 0 0.00184878 -0.00235432 0.716266 0.697821 uwb: 0.0 1139.19 1646.48 +imu_odom_: 1691062912.792631433 0.304064 -0.368707 9.75877 -0.0330232 0.0106526 0.0308927 0.18 0.02 pose: 0.0 -6.22418 -2.40431 0 0.00184878 -0.00235432 0.716266 0.697821 uwb: 0.0 1139.19 1646.48 +imu_odom_: 1691062912.818635797 0.773327 -0.667982 10.2352 -0.0617853 -0.0681769 0.0575243 0.18 -0.02 pose: 0.51994729 -6.22069 -2.39494 0 0.00262475 0.000209662 0.716283 0.697804 uwb: 0.0 1139.19 1646.48 +imu_odom_: 1691062912.845507819 1.03669 0.0023942 9.56723 -0.0394148 0.036219 0.0490022 0.18 -0.02 pose: 0.0 -6.22069 -2.39494 0 0.00262475 0.000209662 0.716283 0.697804 uwb: 0.100006399 1138.67 1646.83 +imu_odom_: 1691062912.861797331 1.26653 -0.390255 9.78031 -0.0905475 0.00213053 0.0639159 0.18 0 pose: 0.42943672 -6.22656 -2.38208 0 0.000205277 -0.00218636 0.716287 0.697803 uwb: 0.0 1138.67 1646.83 +imu_odom_: 1691062912.888574567 0.378284 -0.351948 9.90721 -0.0532632 0.0436758 0.0255663 0.18 0 pose: 0.0 -6.22656 -2.38208 0 0.000205277 -0.00218636 0.716287 0.697803 uwb: 0.49870061 1139.15 1646.3 +imu_odom_: 1691062912.913559324 0.244209 -0.378284 9.84256 -0.0809601 0.00319579 0.0543285 0.19 -0.02 pose: 0.53140621 -6.22307 -2.37271 0 0.0030635 -0.00552098 0.716537 0.697521 uwb: 0.0 1139.15 1646.3 +imu_odom_: 1691062912.940613044 0.52433 -0.196325 9.75398 -0.0660464 -0.0266316 0.0415453 0.23 0.02 pose: 0.42901674 -6.21967 -2.3633 0 -0.000481451-0.00494878 0.716532 0.697537 uwb: 0.50100172 1139.17 1646.41 +imu_odom_: 1691062912.965730793 0.414197 -0.416591 9.52653 -0.072438 0.0106526 0.0383495 0.2 -0.02 pose: 0.23942693 -6.22908 -2.35991 0 -0.00152178 -0.00444069 0.716628 0.69744 uwb: 0.0 1139.17 1646.41 +imu_odom_: 1691062912.991521087 0.244209 -0.222661 10.4579 -0.0639159 0.00852212 0.0426106 0.23 -0.02 pose: 0.28080618 -6.22569 -2.3505 0 -0.000255038-0.00483194 0.716634 0.697432 uwb: 0.50098423 1138.59 1646.46 +imu_odom_: 1691062913.16611421 0.481235 -0.234632 10.1323 -0.0479369 0.0138484 0.0287621 0.23 -0.02 pose: 0.0 -6.22569 -2.3505 0 -0.000255038-0.00483194 0.716634 0.697432 uwb: 0.0 1138.59 1646.46 +imu_odom_: 1691062913.33892834 0.418985 -0.507571 9.53611 -0.0575243 -0.00639159 0.0319579 0.19 0 pose: 0.23870072 -6.22569 -2.3505 0 -0.00227236 -0.00493232 0.716638 0.697424 uwb: 0.0 1138.59 1646.46 +imu_odom_: 1691062913.58517112 0.138864 -0.344765 10.2855 -0.0415453 -0.00532632 0.0351537 0.19 0 pose: 0.0 -6.22569 -2.3505 0 -0.00227236 -0.00493232 0.716638 0.697424 uwb: 0.49752235 1139.64 1645.85 +imu_odom_: 1691062913.85609621 0.656011 -0.117316 9.95748 -0.0532632 -0.0340885 0.0436758 0.2 0 pose: 0.51250439 -6.22229 -2.34109 0 -0.00117535 -0.00353586 0.716549 0.697527 uwb: 0.50018512 1138.42 1645.64 +imu_odom_: 1691062913.101475075 0.787692 -0.198719 10.1083 -0.04048 -0.0234358 0.0276969 0.2 0 pose: 0.0 -6.22229 -2.34109 0 -0.00117535 -0.00353586 0.716549 0.697527 uwb: 0.0 1138.42 1645.64 +imu_odom_: 1691062913.128522087 0.758962 -0.474052 9.74201 -0.0756338 -0.0479369 0.0490022 0.25 0 pose: 0.41951480 -6.22831 -2.32829 0 -0.00299143 -0.00284656 0.716501 0.697574 uwb: 0.0 1138.42 1645.64 +imu_odom_: 1691062913.154517119 0.392649 -0.371101 10.1203 -0.0340885 0.0245011 0.0181095 0.25 0 pose: 0.0 -6.22831 -2.32829 0 -0.00299143 -0.00284656 0.716501 0.697574 uwb: 0.49949390 1131.58 1646.73 +imu_odom_: 1691062913.181594755 0.706289 -0.232238 9.99579 -0.0671117 -0.0340885 0.0372843 0.25 -0.02 pose: 0.43876077 -6.22491 -2.31889 0 0.000944166 -0.00521709 0.71648 0.697587 uwb: 0.0 1131.58 1646.73 +imu_odom_: 1691062913.207652491 0.885855 -0.366313 9.98861 -0.056459 -0.0255663 0.04048 0.19 0 pose: 0.51867570 -6.22491 -2.31889 0 -0.00044945 -0.00665635 0.716346 0.697713 uwb: 0.49935099 1132.72 1646.54 +imu_odom_: 1691062913.224586257 -0.117316 -0.205901 9.65103 -0.0596548 -0.0170442 0.0458064 0.25 0 pose: 0.0 -6.22491 -2.31889 0 -0.00044945 -0.00665635 0.716346 0.697713 uwb: 0.0 1132.72 1646.54 +imu_odom_: 1691062913.250559999 0.624887 -0.270545 10.1682 -0.0308927 -0.02024 0.0255663 0.25 0 pose: 0.53099500 -6.23092 -2.30608 0 0.00283815 -0.00957716 0.716322 0.697698 uwb: 0.50007138 1133.88 1646.47 +imu_odom_: 1691062913.277574346 0.699107 -0.258574 9.91199 -0.036219 -0.0181095 0.0490022 0.18 0 pose: 0.0 -6.23092 -2.30608 0 0.00283815 -0.00957716 0.716322 0.697698 uwb: 0.0 1133.88 1646.47 +imu_odom_: 1691062913.303458843 0.42138 -0.229843 10.4914 -0.0436758 0.0138484 0.0490022 0.19 0 pose: 0.63015589 -6.22509 -2.28995 0 0.00770302 -0.0108134 0.716262 0.697706 uwb: 0.50030177 1130.43 1646.87 +imu_odom_: 1691062913.330507022 0.526724 -0.105345 9.99579 -0.0330232 -0.00426106 0.0383495 0.19 0 pose: 0.0 -6.22509 -2.28995 0 0.00770302 -0.0108134 0.716262 0.697706 uwb: 0.0 1130.43 1646.87 +imu_odom_: 1691062913.347623361 0.402226 -0.3304 9.94791 -0.0500674 0.0149137 0.0532632 0.18 0.02 pose: 0.7997911 -6.22412 -2.28727 0 0.00719008 -0.0101005 0.716297 0.697686 uwb: 0.49944141 1126.42 1647.33 +imu_odom_: 1691062913.373683722 0.351948 -0.0790087 10.4674 -0.0511327 0.0255663 0.0436758 0.18 0.02 pose: 0.0 -6.22412 -2.28727 0 0.00719008 -0.0101005 0.716297 0.697686 uwb: 0.0 1126.42 1647.33 +imu_odom_: 1691062913.400464458 0.59855 -0.373495 9.62469 -0.0873517 0.0191748 0.0649811 0.2 0.02 pose: 0.52883970 -6.22072 -2.27787 0 0.00616398 -0.00550928 0.716403 0.697637 uwb: 0.50161419 1123.56 1647.71 +imu_odom_: 1691062913.417529467 -0.148441 -0.383072 9.85932 -0.0415453 0.0213053 0.0276969 0.2 0.02 pose: 0.0 -6.22072 -2.27787 0 0.00616398 -0.00550928 0.716403 0.697637 uwb: 0.0 1123.56 1647.71 +imu_odom_: 1691062913.442471352 0.497994 -0.328006 9.52653 -0.072438 -0.0447411 0.056459 0.18 0 pose: 0.43066165 -6.23013 -2.27447 0 0.00408439 -0.00322864 0.716567 0.697499 uwb: 0.49827190 1123.02 1647.93 +imu_odom_: 1691062913.469457993 0.136469 -0.181959 9.49062 -0.0575243 0.0170442 0.0415453 0.18 0 pose: 0.0 -6.23013 -2.27447 0 0.00408439 -0.00322864 0.716567 0.697499 uwb: 0.0 1123.02 1647.93 +imu_odom_: 1691062913.494443625 0.328006 -0.174777 10.2759 -0.0916127 -0.0127832 0.076699 0.19 0 pose: 0.42947464 -6.22673 -2.26506 0 0.0014031 -0.00471065 0.716717 0.697347 uwb: 0.50004512 1119.59 1648.39 +imu_odom_: 1691062913.520562024 0.251391 -0.220267 9.79228 -0.0234358 0.0490022 -0.00745685 0.23 0 pose: 0.52210842 -6.22334 -2.25566 0 -0.000978647-0.00346524 0.716947 0.697118 uwb: 0.0 1119.59 1648.39 +imu_odom_: 1691062913.545426330 0.196325 -0.390255 9.97903 -0.0543285 0.0319579 0.0671117 0.23 0 pose: 0.0 -6.22334 -2.25566 0 -0.000978647-0.00346524 0.716947 0.697118 uwb: 0.50002762 1117.84 1648.44 +imu_odom_: 1691062913.571541813 0.141258 -0.277727 10.1706 -0.0639159 0.00319579 0.0532632 0.21 -0.02 pose: 0.68745632 -6.22937 -2.24286 0 -0.00565129 0.00132258 0.716982 0.697068 uwb: 0.0 1117.84 1648.44 +imu_odom_: 1691062913.588467413 0.622492 -0.0837971 10.2232 -0.0671117 -0.0426106 0.0213053 0.21 -0.02 pose: 0.8013951 -6.22937 -2.24286 0 -0.00628166 0.00186757 0.717018 0.697023 uwb: 0.50092590 1113.86 1649.06 +imu_odom_: 1691062913.614494818 0.318429 -0.378284 10.0461 -0.0735032 -0.0127832 0.0596548 0.25 -0.02 pose: 0.0 -6.22937 -2.24286 0 -0.00628166 0.00186757 0.717018 0.697023 uwb: 0.0 1113.86 1649.06 +imu_odom_: 1691062913.639446911 0.555455 0.0790087 10.2065 -0.0351537 0.00213053 0.0447411 0.25 -0.02 pose: 0.35027132 -6.22599 -2.23345 0 -0.00592127 0.00231185 0.717004 0.69704 uwb: 0.49905643 1113.85 1649.01 +imu_odom_: 1691062913.665489481 0.335188 -0.311246 10.0221 -0.0607201 0.0330232 0.0532632 0.2 0 pose: 0.50979498 -6.22927 -2.22165 0 -0.00470994 0.000595875 0.717228 0.696822 uwb: 0.0 1113.85 1649.01 +imu_odom_: 1691062913.682567031 0.287304 -0.124498 10.0197 -0.0351537 0.0127832 0.0298274 0.2 0 pose: 0.0 -6.22927 -2.22165 0 -0.00470994 0.000595875 0.717228 0.696822 uwb: 0.0 1113.85 1649.01 +imu_odom_: 1691062913.708574895 0.280122 -0.141258 9.55287 -0.0788296 0.00319579 0.0575243 0.25 0 pose: 0.43120120 -6.22865 -2.21125 0 -0.0056241 0.000383989 0.717287 0.696755 uwb: 0.50023470 1106.48 1650.24 +imu_odom_: 1691062913.734494973 0.263362 -0.232238 9.61272 -0.0543285 0.036219 0.0383495 0.25 0 pose: 0.0 -6.22865 -2.21125 0 -0.0056241 0.000383989 0.717287 0.696755 uwb: 0.0 1106.48 1650.24 +imu_odom_: 1691062913.759428692 0.59855 -0.565032 9.71567 -0.0852212 0.0394148 0.0575243 0.21 0 pose: 0.51927942 -6.22619 -2.20437 0 -0.0064596 0.00509522 0.71744 0.696572 uwb: 0.50052343 1103.61 1650.46 +imu_odom_: 1691062913.774457694 0.174777 -0.339977 9.89524 -0.04048 -0.0149137 0.0287621 0.21 0 pose: 0.0 -6.22619 -2.20437 0 -0.0064596 0.00509522 0.71744 0.696572 uwb: 0.0 1103.61 1650.46 +imu_odom_: 1691062913.801483707 0.356736 -0.220267 10.3118 -0.0777643 -0.0223706 0.056459 0.18 0.02 pose: 0.39962721 -6.23024 -2.20006 0 -0.00835876 0.00294939 0.717524 0.696477 uwb: 0.0 1103.61 1650.46 +imu_odom_: 1691062913.827416618 0.270545 -0.205901 9.68933 -0.0436758 0.0330232 0.0372843 0.19 0 pose: 0.8111070 -6.23469 -2.19847 0 -0.0075799 0.00264473 0.717578 0.696432 uwb: 0.0 1103.61 1650.46 +imu_odom_: 1691062913.852420040 0.0646434 -0.122104 9.991 -0.0436758 0.00852212 0.0319579 0.23 0 pose: 0.18914943 -6.23233 -2.19186 0 -0.00576356 0.00193425 0.717702 0.696324 uwb: 0.99900530 1104.17 1650.33 +imu_odom_: 1691062913.877415005 0.301669 -0.0909797 10.2424 -0.036219 -0.0181095 0.0468716 0.2 0 pose: 0.33009791 -6.23133 -2.18905 0 -0.00540736 0.00555795 0.717665 0.696346 uwb: 0.0 1104.17 1650.33 +imu_odom_: 1691062913.894633713 0.325611 -0.263362 9.97664 -0.0415453 0.00426106 0.0511327 0.2 0 pose: 0.0 -6.23133 -2.18905 0 -0.00540736 0.00555795 0.717665 0.696346 uwb: 0.49994013 1099.02 1650.89 +imu_odom_: 1691062913.920450256 0.701501 -0.131681 9.89763 -0.0660464 -0.0426106 0.0543285 0.19 0 pose: 0.24066644 -6.22797 -2.17963 0 -0.00535658 0.00745162 0.71763 0.696364 uwb: 0.0 1099.02 1650.89 +imu_odom_: 1691062913.946476785 0.205901 -0.237026 9.77553 -0.0490022 0.0415453 0.0372843 0.19 0 pose: 0.44078481 -6.2246 -2.17021 0 -0.00283855 0.00543825 0.71781 0.696212 uwb: 0.50053509 1098.42 1650.77 +imu_odom_: 1691062913.971468251 0.0957681 -0.134075 9.7037 -0.076699 0.0127832 0.0649811 0.18 0 pose: 0.43838162 -6.23147 -2.15969 0 -0.00410285 0.00531493 0.717875 0.696139 uwb: 0.0 1098.42 1650.77 +imu_odom_: 1691062913.989448164 0.639252 -0.373495 10.0868 -0.0511327 -0.0319579 0.0447411 0.18 0 pose: 0.0 -6.23147 -2.15969 0 -0.00410285 0.00531493 0.717875 0.696139 uwb: 0.50010346 1095.56 1651.1 +imu_odom_: 1691062914.14410465 0.486023 -0.107739 10.2304 -0.0852212 0.00319579 0.0479369 0.19 0 pose: 0.5953738 -6.23066 -2.15744 0 -0.0044517 0.00583624 0.717926 0.696081 uwb: 0.0 1095.56 1651.1 +imu_odom_: 1691062914.40558321 0.629675 -0.318429 9.94791 -0.0703074 -0.00319579 0.036219 0.19 0 pose: 0.0 -6.23066 -2.15744 0 -0.0044517 0.00583624 0.717926 0.696081 uwb: 0.50058176 1097.25 1650.71 +imu_odom_: 1691062914.65489123 0.351948 -0.213084 9.93115 -0.0830906 0.015979 0.0447411 0.19 -0.02 pose: 0.44007027 -6.23066 -2.15744 0 -0.00414372 0.00535849 0.718151 0.695855 uwb: 0.0 1097.25 1650.71 +imu_odom_: 1691062914.91552110 -0.023942 -0.402226 9.88805 -0.0372843 0.0319579 0.0383495 0.19 -0.02 pose: 0.0 -6.23066 -2.15744 0 -0.00414372 0.00535849 0.718151 0.695855 uwb: 0.50060509 1096.17 1651.3 +imu_odom_: 1691062914.108403631 0.641646 -0.251391 10.094 -0.0639159 -0.0426106 0.0330232 0.19 -0.02 pose: 0.51015079 -6.22731 -2.14801 0 -0.00203754 0.00129956 0.718204 0.695829 uwb: 0.0 1096.17 1651.3 +imu_odom_: 1691062914.134527573 0.136469 -0.246603 9.84256 -0.0340885 0.04048 0.0436758 0.19 -0.02 pose: 0.0 -6.22731 -2.14801 0 -0.00203754 0.00129956 0.718204 0.695829 uwb: 0.0 1096.17 1651.3 +imu_odom_: 1691062914.160737259 0.435745 -0.347159 9.48343 -0.0692422 0.0117179 0.0415453 0.25 0 pose: 0.51193569 -6.23338 -2.13524 0 -0.00460972 0.000458953 0.718202 0.695819 uwb: 0.49861605 1095.63 1651.57 +imu_odom_: 1691062914.186440933 0.177171 -0.411803 9.74679 -0.0447411 -0.015979 0.0447411 0.21 0.02 pose: 0.62091061 -6.23004 -2.12582 0 -0.00534319 -0.0002595050.718226 0.695789 uwb: 0.49939475 1097.35 1651.38 +imu_odom_: 1691062914.203507109 0.634463 0.0191536 10.3334 -0.052198 -0.0319579 0.0426106 0.21 0.02 pose: 0.0 -6.23004 -2.12582 0 -0.00534319 -0.0002595050.718226 0.695789 uwb: 0.0 1097.35 1651.38 +imu_odom_: 1691062914.228434703 0.730232 0.114922 10.3142 -0.0532632 -0.02024 0.0298274 0.23 -0.02 pose: 0.6828395 -6.23004 -2.12582 0 -0.00596832 -0.0001900650.718236 0.695774 uwb: 0.0 1097.35 1651.38 +imu_odom_: 1691062914.254550769 0.538695 -0.105345 9.9503 -0.0500674 -0.0447411 0.04048 0.23 -0.02 pose: 0.0 -6.23004 -2.12582 0 -0.00596832 -0.0001900650.718236 0.695774 uwb: 0.50017053 1094.54 1652.03 +imu_odom_: 1691062914.279581024 0.363919 -0.318429 9.86411 -0.0681769 0.0106526 0.0458064 0.19 0.02 pose: 0.43136745 -6.23611 -2.11305 0 -0.00503339 -0.0001390970.71827 0.695747 uwb: 0.0 1094.54 1652.03 +imu_odom_: 1691062914.304535450 0.337582 -0.387861 9.81383 -0.0266316 -0.0426106 0.0245011 0.19 0.02 pose: 0.0 -6.23611 -2.11305 0 -0.00503339 -0.0001390970.71827 0.695747 uwb: 0.50036303 1096.82 1651.72 +imu_odom_: 1691062914.321513256 0.500388 -0.160412 9.81383 -0.0319579 -0.00532632 0.052198 0.19 0.02 pose: 0.50862255 -6.23276 -2.10363 0 -0.000836182-0.0008719990.718242 0.695792 uwb: 0.0 1096.82 1651.72 +imu_odom_: 1691062914.338458105 0.502782 -0.605733 9.91678 -0.0532632 -0.015979 0.140615 0.19 0.02 pose: 0.0 -6.23276 -2.10363 0 -0.000836182-0.0008719990.718242 0.695792 uwb: 0.0 1096.82 1651.72 +imu_odom_: 1691062914.355531280 0.304064 -0.533907 9.31105 -0.0276969 0.0181095 0.197074 0.19 0.02 pose: 0.0 -6.23276 -2.10363 0 -0.000836182-0.0008719990.718242 0.695792 uwb: 0.0 1096.82 1651.72 +imu_odom_: 1691062914.372528043 0.155623 -0.438139 9.98143 -0.0394148 -0.0298274 0.258859 0.25 0.17 pose: 0.49912351 -6.22941 -2.0942 0 -0.0036545 -0.00241182 0.718175 0.695849 uwb: 0.0 1096.82 1651.72 +imu_odom_: 1691062914.389374023 0.591368 -0.349553 9.84256 -0.0543285 0.0287621 0.319579 0.25 0.17 pose: 0.0 -6.22941 -2.0942 0 -0.0036545 -0.00241182 0.718175 0.695849 uwb: 0.99920656 1097.41 1651.78 +imu_odom_: 1691062914.405487087 0.641646 -0.684742 10.1778 -0.0298274 0.0106526 0.34195 0.2 0.38 pose: 0.77897018 -6.2335 -2.07621 0 -0.0051479 -0.00451317 0.72266 0.691169 uwb: 0.0 1097.41 1651.78 +imu_odom_: 1691062914.423486834 0.184354 -0.129287 9.84735 -0.04048 0.0127832 0.401605 0.2 0.38 pose: 0.0 -6.2335 -2.07621 0 -0.0051479 -0.00451317 0.72266 0.691169 uwb: 0.0 1097.41 1651.78 +imu_odom_: 1691062914.439383202 0.378284 -0.248997 9.64145 -0.0852212 0.0138484 0.453803 0.2 0.38 pose: 0.0 -6.2335 -2.07621 0 -0.0051479 -0.00451317 0.72266 0.691169 uwb: 0.50084716 1097.95 1651.53 +imu_odom_: 1691062914.454497658 0.454898 -0.665588 10.0221 -0.0628506 0.0266316 0.458064 0.19 0.41 pose: 0.8067032 -6.23206 -2.07196 0 -0.00522042 -0.00519209 0.723497 0.690288 uwb: 0.0 1097.95 1651.53 +imu_odom_: 1691062914.471441924 0.0430956 -0.584185 10.0509 -0.0394148 0.0127832 0.497478 0.18 0.44 pose: 0.0 -6.23206 -2.07196 0 -0.00522042 -0.00519209 0.723497 0.690288 uwb: 0.0 1097.95 1651.53 +imu_odom_: 1691062914.485381615 0.502782 -0.328006 10.2089 -0.052198 -0.00958738 0.529436 0.18 0.44 pose: 0.0 -6.23206 -2.07196 0 -0.00522042 -0.00519209 0.723497 0.690288 uwb: 0.50064885 1095.67 1651.77 +imu_odom_: 1691062914.502470247 0.11971 -0.514753 9.67976 -0.0330232 0.0298274 0.561394 0.18 0.44 pose: 0.64009241 -6.22865 -2.06256 0 -0.00620345 -0.00371953 0.732087 0.681173 uwb: 0.0 1095.67 1651.77 +imu_odom_: 1691062914.516424228 0.519542 -0.277727 9.98861 -0.0553937 0.0266316 0.577373 0.17 0.44 pose: 0.0 -6.22865 -2.06256 0 -0.00620345 -0.00371953 0.732087 0.681173 uwb: 0.0 1095.67 1651.77 +imu_odom_: 1691062914.532573457 0.466869 -0.42138 9.92397 -0.0649811 -0.00852212 0.627441 0.17 0.44 pose: 0.31000033 -6.23804 -2.05912 0 -0.00670923 -0.00387066 0.737201 0.675629 uwb: 0.0 1095.67 1651.77 +imu_odom_: 1691062914.548382331 0.272939 -0.782904 9.55765 -0.0511327 0.015979 0.638093 0.18 0.55 pose: 0.40123128 -6.23464 -2.04971 0 -0.00615983 -0.00529347 0.74465 0.667405 uwb: 0.50180961 1089.41 1652.76 +imu_odom_: 1691062914.565372386 0.423774 -0.366313 10.0173 -0.0596548 0.0170442 0.638093 0.18 0.55 pose: 0.0 -6.23464 -2.04971 0 -0.00615983 -0.00529347 0.74465 0.667405 uwb: 0.0 1089.41 1652.76 +imu_odom_: 1691062914.582432145 0.715866 -0.25618 9.48343 -0.0852212 -0.0287621 0.66579 0.18 0.55 pose: 0.0 -6.23464 -2.04971 0 -0.00615983 -0.00529347 0.74465 0.667405 uwb: 0.0 1089.41 1652.76 +imu_odom_: 1691062914.599427450 0.723049 -0.344765 10.1011 -0.0511327 -0.0532632 0.658333 0.22 0.7 pose: 0.6826646 -6.23464 -2.04971 0 -0.00678351 -0.00559903 0.746008 0.665879 uwb: 0.0 1089.41 1652.76 +imu_odom_: 1691062914.615478101 1.06781 -0.59855 9.25359 -0.0458064 -0.0127832 0.659399 0.22 0.7 pose: 0.0 -6.23464 -2.04971 0 -0.00678351 -0.00559903 0.746008 0.665879 uwb: 0.0 1089.41 1652.76 +imu_odom_: 1691062914.633425642 1.30484 -0.416591 9.95988 -0.0639159 -0.0415453 0.642354 0.2 0.58 pose: 0.50088216 -6.23121 -2.04032 0 -0.00384895 -0.00748325 0.75609 0.654414 uwb: 0.0 1089.41 1652.76 +imu_odom_: 1691062914.650439321 1.29526 -0.234632 9.71328 -0.0245011 0.0340885 0.540089 0.13 0.38 pose: 0.0 -6.23121 -2.04032 0 -0.00384895 -0.00748325 0.75609 0.654414 uwb: 0.99600132 1084.86 1653.48 +imu_odom_: 1691062914.664504421 1.22104 0.0550666 10.0628 -0.052198 0.0255663 0.477238 0.13 0.38 pose: 0.0 -6.23121 -2.04032 0 -0.00384895 -0.00748325 0.75609 0.654414 uwb: 0.0 1084.86 1653.48 +imu_odom_: 1691062914.680509283 0.986411 -0.0335188 9.75398 -0.0681769 0.0287621 0.407996 0.13 0.38 pose: 0.67030732 -6.23729 -2.02747 0 0.00132253 -0.0114633 0.768357 0.639917 uwb: 0.0 1084.86 1653.48 +imu_odom_: 1691062914.697555043 0.828394 -0.225055 9.52174 -0.0543285 0.0287621 0.345146 0.13 0.38 pose: 0.0 -6.23729 -2.02747 0 0.00132253 -0.0114633 0.768357 0.639917 uwb: 0.49917310 1087.19 1653.48 +imu_odom_: 1691062914.713399498 0.828394 -0.296881 10.0892 -0.0617853 0.0106526 0.324906 0.16 0.5 pose: 0.0 -6.23729 -2.02747 0 0.00132253 -0.0114633 0.768357 0.639917 uwb: 0.0 1087.19 1653.48 +imu_odom_: 1691062914.730424259 0.790087 -0.416591 9.75877 -0.0596548 -0.00852212 0.309992 0.16 0.5 pose: 0.30938495 -6.23729 -2.02747 0 0.00388892 -0.0115154 0.771998 0.635508 uwb: 0.0 1087.19 1653.48 +imu_odom_: 1691062914.748375592 0.80924 -0.162806 9.99819 -0.0553937 0.00532632 0.286556 0.08 0.29 pose: 0.42966713 -6.23729 -2.02747 0 0.00650472 -0.0140674 0.775813 0.630772 uwb: 0.50189127 1086.6 1653.42 +imu_odom_: 1691062914.774575945 0.634463 -0.263362 9.7851 -0.0500674 0.0106526 0.286556 0.08 0.29 pose: 0.0 -6.23729 -2.02747 0 0.00650472 -0.0140674 0.775813 0.630772 uwb: 0.0 1086.6 1653.42 +imu_odom_: 1691062914.791587291 0.672771 -0.222661 9.91439 -0.0660464 0.0181095 0.280165 0.08 0.29 pose: 0.8091239 -6.23729 -2.02747 0 0.00723968 -0.0138287 0.776434 0.630005 uwb: 0.49939475 1083.73 1653.75 +imu_odom_: 1691062914.808483726 -0.201113 -0.486023 9.75637 -0.0585895 0.0703074 0.169377 0.09 0.08 pose: 0.0 -6.23729 -2.02747 0 0.00723968 -0.0138287 0.776434 0.630005 uwb: 0.0 1083.73 1653.75 +imu_odom_: 1691062914.825542319 -0.667982 0.225055 10.1873 -0.0511327 -0.0138484 -0.0191748 0.14 0.02 pose: 0.0 -6.23729 -2.02747 0 0.00723968 -0.0138287 0.776434 0.630005 uwb: 0.0 1083.73 1653.75 +imu_odom_: 1691062914.841529391 -0.344765 0.407014 9.52174 -0.0511327 -0.0308927 -0.135289 0.14 0.02 pose: 0.77099064 -6.24344 -2.01472 0 0.00650516 -0.00815563 0.781087 0.624335 uwb: 0.50065176 1088.87 1653.09 +imu_odom_: 1691062914.859607591 -0.162806 -0.215478 9.65103 -0.0745685 0.0106526 -0.148072 0.15 -0.14 pose: 0.0 -6.24344 -2.01472 0 0.00650516 -0.00815563 0.781087 0.624335 uwb: 0.0 1088.87 1653.09 +imu_odom_: 1691062914.876365784 -0.0742203 -0.785298 10.0102 -0.0628506 -0.0223706 -0.164051 0.15 -0.14 pose: 0.33767498 -6.24344 -2.01472 0 0.00512489 -0.00538133 0.779587 0.62625 uwb: 0.0 1088.87 1653.09 +imu_odom_: 1691062914.890360597 -0.356736 -0.519542 9.73482 -0.0532632 0.0149137 -0.204531 0.15 -0.14 pose: 0.0 -6.24344 -2.01472 0 0.00512489 -0.00538133 0.779587 0.62625 uwb: 0.49887561 1090.04 1653.14 +imu_odom_: 1691062914.907357068 -0.011971 0.0933739 9.84496 -0.0511327 -0.0383495 -0.216249 0.12 -0.26 pose: 0.40978537 -6.24008 -2.00528 0 0.00125623 -0.0043642 0.776862 0.629655 uwb: 0.0 1090.04 1653.14 +imu_odom_: 1691062914.921490122 0.107739 0.0933739 9.71328 -0.0511327 -0.0138484 -0.239684 0.12 -0.26 pose: 0.7009218 -6.24014 -2.00528 0 0.00118519 -0.00374861 0.776299 0.630352 uwb: 0.0 1090.04 1653.14 +imu_odom_: 1691062914.937365492 0.54109 -0.023942 10.4794 -0.0660464 0.0117179 -0.271642 0.12 -0.26 pose: 0.0 -6.24014 -2.00528 0 0.00118519 -0.00374861 0.776299 0.630352 uwb: 0.0 1090.04 1653.14 +imu_odom_: 1691062914.952408202 0.363919 -0.222661 9.69173 -0.0490022 0.015979 -0.304666 0.14 -0.38 pose: 0.39995677 -6.24014 -2.00528 0 0.00230564 -0.0008272170.772682 0.634789 uwb: 0.0 1090.04 1653.14 +imu_odom_: 1691062914.969404965 0.0574608 -0.263362 10.0676 -0.0426106 0 -0.34408 0.13 -0.35 pose: 0.0 -6.24014 -2.00528 0 0.00230564 -0.0008272170.772682 0.634789 uwb: 0.0 1090.04 1653.14 +imu_odom_: 1691062914.983479689 0.107739 -0.177171 9.68933 -0.0628506 -0.0117179 -0.36432 0.13 -0.35 pose: 0.0 -6.24014 -2.00528 0 0.00230564 -0.0008272170.772682 0.634789 uwb: 0.0 1090.04 1653.14 +imu_odom_: 1691062914.999479593 0.363919 0.220267 10.5896 -0.0585895 -0.0340885 -0.379234 0.13 -0.41 pose: 0.22012847 -6.24625 -1.99252 0 0.000254229 0.000309391 0.770185 0.63782 uwb: 0.99912198 1091.18 1652.96 +imu_odom_: 1691062915.16550727 0.304064 -0.237026 9.60793 -0.0500674 -0.0117179 -0.395213 0.13 -0.41 pose: 0.0 -6.24625 -1.99252 0 0.000254229 0.000309391 0.770185 0.63782 uwb: 0.0 1091.18 1652.96 +imu_odom_: 1691062915.34532391 0.158017 -0.277727 9.62708 -0.0511327 0.00532632 -0.409062 0.13 -0.41 pose: 0.0 -6.24625 -1.99252 0 0.000254229 0.000309391 0.770185 0.63782 uwb: 0.50138380 1090.03 1653 +imu_odom_: 1691062915.52474100 0.952892 0.0311246 10.1658 -0.0596548 -0.0490022 -0.425041 0.15 -0.5 pose: 0.75154052 -6.24436 -1.98726 0 -0.00374513 0.00330213 0.759959 0.649951 uwb: 0.0 1090.03 1653 +imu_odom_: 1691062915.68532917 1.47243 -0.215478 9.80426 -0.0745685 -0.0937433 -0.370712 0.15 -0.5 pose: 0.0 -6.24436 -1.98726 0 -0.00374513 0.00330213 0.759959 0.649951 uwb: 0.0 1090.03 1653 +imu_odom_: 1691062915.85408646 1.59214 -0.428562 9.5792 -0.0692422 -0.00639159 -0.357929 0.15 -0.5 pose: 0.0 -6.24436 -1.98726 0 -0.00374513 0.00330213 0.759959 0.649951 uwb: 0.50028137 1083.19 1653.98 +imu_odom_: 1691062915.103477513 1.11091 -0.335188 9.23922 -0.0479369 0.0479369 -0.350472 0.11 -0.35 pose: 0.7953580 -6.24296 -1.98308 0 -0.00287815 0.00289482 0.758761 0.651356 uwb: 0.0 1083.19 1653.98 +imu_odom_: 1691062915.120426154 0.916979 -0.237026 9.74201 -0.056459 0.0298274 -0.297209 0.1 -0.32 pose: 0.0 -6.24296 -1.98308 0 -0.00287815 0.00289482 0.758761 0.651356 uwb: 0.0 1083.19 1653.98 +imu_odom_: 1691062915.137473081 0.646434 -0.4956 9.67497 -0.052198 0.0223706 -0.233293 0.1 -0.32 pose: 0.67995219 -6.2524 -1.9798 0 0.00208149 -0.00214401 0.749791 0.661668 uwb: 0.50052928 1084.89 1653.64 +imu_odom_: 1691062915.154415306 0.555455 -0.526724 10.0078 -0.0543285 0.0330232 -0.223706 0.09 -0.26 pose: 0.0 -6.2524 -1.9798 0 0.00208149 -0.00214401 0.749791 0.661668 uwb: 0.0 1084.89 1653.64 +imu_odom_: 1691062915.171588809 0.438139 -0.148441 10.0652 -0.0351537 0.0106526 -0.227967 0.09 -0.26 pose: 0.0 -6.2524 -1.9798 0 0.00208149 -0.00214401 0.749791 0.661668 uwb: 0.0 1084.89 1653.64 +imu_odom_: 1691062915.189403941 0.646434 0.162806 10.2161 -0.0585895 -0.0372843 -0.18003 0.09 -0.26 pose: 0.34999426 -6.24908 -1.97036 0 0.00174684 -0.00482324 0.746436 0.665438 uwb: 0.50057302 1081.49 1654.22 +imu_odom_: 1691062915.206478283 0.665588 -0.282516 9.84975 -0.0585895 -0.0170442 -0.125701 0.06 -0.2 pose: 0.43923325 -6.24908 -1.97036 0 0.00360255 -0.00308388 0.742807 0.669488 uwb: 0.0 1081.49 1654.22 +imu_odom_: 1691062915.223404467 0.766145 -0.574608 9.80665 -0.052198 0.0117179 -0.123571 0.06 -0.2 pose: 0.7071923 -6.24908 -1.97036 0 0.00393535 -0.0037589 0.742414 0.669919 uwb: 0.0 1081.49 1654.22 +imu_odom_: 1691062915.240331818 0.837971 -0.373495 9.77313 -0.0436758 0.0106526 -0.127832 0.07 -0.2 pose: 0.0 -6.24908 -1.97036 0 0.00393535 -0.0037589 0.742414 0.669919 uwb: 0.49691865 1082.05 1654.05 +imu_odom_: 1691062915.258468931 0.648829 -0.110133 10.0389 -0.0553937 0.00213053 -0.0937433 0.05 -0.14 pose: 0.43855954 -6.24908 -1.97036 0 0.00480604 -0.00764417 0.739971 0.672578 uwb: 0.0 1082.05 1654.05 +imu_odom_: 1691062915.272475410 0.617704 -0.213084 9.76834 -0.0607201 -0.00106526 -0.0756338 0.05 -0.17 pose: 0.0 -6.24908 -1.97036 0 0.00480604 -0.00764417 0.739971 0.672578 uwb: 0.0 1082.05 1654.05 +imu_odom_: 1691062915.297400379 0.696713 -0.320823 10.0221 -0.056459 -0.00532632 -0.0894822 0.05 -0.17 pose: 0.24040395 -6.24908 -1.97036 0 0.00700822 -0.00707863 0.738908 0.673732 uwb: 0.50085883 1074.05 1655.01 +imu_odom_: 1691062915.315468663 0.131681 -0.292093 9.80665 -0.0681769 0.0276969 -0.110787 0.06 -0.17 pose: 0.33028166 -6.24574 -1.96094 0 0.00761634 -0.00979742 0.737499 0.675234 uwb: 0.0 1074.05 1655.01 +imu_odom_: 1691062915.341484111 -0.656011 -0.0646434 9.8689 -0.0511327 0.0138484 -0.307861 0.06 -0.17 pose: 0.7944831 -6.24574 -1.96094 0 0.00687086 -0.00925233 0.737105 0.67568 uwb: 0.50246583 1074.07 1655.12 +imu_odom_: 1691062915.365399973 -0.483629 0.416591 9.81144 -0.0500674 -0.0117179 -0.449542 0.08 -0.35 pose: 0.36138901 -6.24569 -1.96094 0 0.00419779 -0.0062971 0.733557 0.679586 uwb: 0.0 1074.07 1655.12 +imu_odom_: 1691062915.381385586 -0.268151 -0.114922 10.1299 -0.0713727 -0.0852212 -0.420779 0.08 -0.35 pose: 0.0 -6.24569 -1.96094 0 0.00419779 -0.0062971 0.733557 0.679586 uwb: 0.0 1074.07 1655.12 +imu_odom_: 1691062915.407388785 0.19393 -0.306458 10.1562 -0.0585895 -0.0426106 -0.474043 0.13 -0.58 pose: 0.39901475 -6.24568 -1.96094 0 0.0031436 -0.00325064 0.727057 0.686562 uwb: 0.49928976 1076.36 1654.84 +imu_odom_: 1691062915.433633178 0.117316 0.234632 9.95509 -0.0703074 -0.0447411 -0.460194 0.13 -0.58 pose: 0.0 -6.24568 -1.96094 0 0.0031436 -0.00325064 0.727057 0.686562 uwb: 0.0 1076.36 1654.84 +imu_odom_: 1691062915.459478011 0.208296 -0.339977 9.79228 -0.0703074 -0.0340885 -0.508131 0.14 -0.7 pose: 0.52247592 -6.25163 -1.94817 0 0.00181708 -0.0003182030.717912 0.696131 uwb: 0.49767111 1074.08 1655.17 +imu_odom_: 1691062915.484491058 0.385466 0.0933739 9.8665 -0.0756338 -0.0532632 -0.547546 0.12 -0.58 pose: 0.0 -6.25163 -1.94817 0 0.00181708 -0.0003182030.717912 0.696131 uwb: 0.0 1074.08 1655.17 +imu_odom_: 1691062915.501496863 -0.0742203 -0.0622492 10.0772 -0.0692422 0.0213053 -0.558199 0.12 -0.58 pose: 0.33959112 -6.25183 -1.94818 0 5.47829e-05 0.000190637 0.711296 0.702893 uwb: 0.50230250 1070.66 1655.74 +imu_odom_: 1691062915.527462438 0.430956 -0.0574608 9.65821 -0.0703074 -0.00852212 -0.586961 0.13 -0.64 pose: 0.0 -6.25183 -1.94818 0 5.47829e-05 0.000190637 0.711296 0.702893 uwb: 0.0 1070.66 1655.74 +imu_odom_: 1691062915.552315662 0.237026 -0.366313 9.80665 -0.0617853 0.00213053 -0.612527 0.13 -0.64 pose: 0.41741201 -6.24848 -1.93875 0 0.000953716 0.00275361 0.702452 0.711725 uwb: 0.49936559 1072.95 1655.46 +imu_odom_: 1691062915.569447168 0.325611 -0.0814029 10.0197 -0.0266316 0.0170442 -0.638093 0.14 -0.7 pose: 0.0 -6.24848 -1.93875 0 0.000953716 0.00275361 0.702452 0.711725 uwb: 0.0 1072.95 1655.46 +imu_odom_: 1691062915.595435200 0.445322 -0.100556 9.9527 -0.0607201 -0.04048 -0.637028 0.14 -0.7 pose: 0.50136922 -6.24519 -1.92931 0 0.000315294 0.00356603 0.690824 0.723014 uwb: 0.50005097 1077.01 1655.4 +imu_odom_: 1691062915.621455315 0.260968 -0.318429 9.52653 -0.0660464 0.00106526 -0.657268 0.14 -0.76 pose: 0.35964787 -6.24474 -1.92929 0 0.00335499 0.00320172 0.681977 0.731359 uwb: 0.0 1077.01 1655.4 +imu_odom_: 1691062915.647453847 0.665588 0.0215478 10.2448 -0.0426106 -0.0266316 -0.70627 0.14 -0.76 pose: 0.0 -6.24474 -1.92929 0 0.00335499 0.00320172 0.681977 0.731359 uwb: 0.50057593 1082.09 1654.26 +imu_odom_: 1691062915.663321634 0.169988 -0.0287304 9.47386 -0.0543285 -0.0308927 -0.72438 0.17 -0.82 pose: 0.7914499 -6.24519 -1.92931 0 0.00251476 0.00310731 0.679958 0.73324 uwb: 0.0 1082.09 1654.26 +imu_odom_: 1691062915.688564793 0.323217 -0.296881 9.09318 -0.0756338 -0.0458064 -0.721184 0.17 -0.82 pose: 0.0 -6.24519 -1.92931 0 0.00251476 0.00310731 0.679958 0.73324 uwb: 0.50013846 1078.07 1654.33 +imu_odom_: 1691062915.714383669 0.385466 -0.035913 9.41879 -0.0436758 -0.0436758 -0.752077 0.15 -0.76 pose: 0.51165571 -6.25141 -1.91662 0 0.00324362 0.00272514 0.666126 0.745827 uwb: 0.0 1078.07 1654.33 +imu_odom_: 1691062915.731509633 0.272939 -0.181959 9.61272 -0.0639159 -0.0245011 -0.754207 0.15 -0.76 pose: 0.0 -6.25141 -1.91662 0 0.00324362 0.00272514 0.666126 0.745827 uwb: 0.0 1078.07 1654.33 +imu_odom_: 1691062915.748503188 0.433351 -0.131681 10.2208 -0.0553937 -0.0181095 -0.755272 0.17 -0.85 pose: 0.40899209 -6.25141 -1.91662 0 0.00142607 0.00251452 0.654347 0.756189 uwb: 0.49974182 1072.28 1654.38 +imu_odom_: 1691062915.765382417 0.852336 -0.237026 10.1394 -0.0532632 -0.0106526 -0.756338 0.17 -0.85 pose: 0.0 -6.25141 -1.91662 0 0.00142607 0.00251452 0.654347 0.756189 uwb: 0.0 1072.28 1654.38 +imu_odom_: 1691062915.782356723 0.225055 -0.102951 9.9503 -0.0511327 0.0117179 -0.763795 0.17 -0.85 pose: 0.0 -6.25141 -1.91662 0 0.00142607 0.00251452 0.654347 0.756189 uwb: 0.0 1072.28 1654.38 +imu_odom_: 1691062915.799298072 0.332794 -0.0814029 9.61272 -0.0266316 -0.0138484 -0.758468 0.16 -0.82 pose: 0.44165686 -6.2481 -1.90719 0 0.00224052 0.00344007 0.640999 0.767531 uwb: 0.49896020 1074.02 1654.4 +imu_odom_: 1691062915.817299861 0.361524 0.00718261 9.68933 -0.0596548 -0.0276969 -0.748881 0.16 -0.82 pose: 0.0 -6.2481 -1.90719 0 0.00224052 0.00344007 0.640999 0.767531 uwb: 0.0 1074.02 1654.4 +imu_odom_: 1691062915.834356704 0.107739 -0.100556 9.65582 -0.0468716 -0.0191748 -0.768056 0.17 -0.82 pose: 0.77719696 -6.24287 -1.89247 0 0.0045438 0.00574293 0.616938 0.786977 uwb: 0.0 1074.02 1654.4 +imu_odom_: 1691062915.851282013 0.0766145 -0.545878 9.85693 -0.0660464 0.036219 -0.789361 0.17 -0.82 pose: 0.0 -6.24287 -1.89247 0 0.0045438 0.00574293 0.616938 0.786977 uwb: 0.50036886 1078 1653.72 +imu_odom_: 1691062915.869356713 0.0837971 -0.0981623 9.84256 -0.0617853 -0.0223706 -0.788296 0.17 -0.82 pose: 0.0 -6.24287 -1.89247 0 0.0045438 0.00574293 0.616938 0.786977 uwb: 0.0 1078 1653.72 +imu_odom_: 1691062915.886325770 0.390255 0.213084 10.2161 -0.0692422 -0.0415453 -0.778708 0.17 -0.82 pose: 0.8001702 -6.24159 -1.88828 0 0.00404424 0.00631895 0.614387 0.788969 uwb: 0.49982349 1076.26 1653.67 +imu_odom_: 1691062915.902443500 0.447716 -0.117316 9.46188 -0.0511327 -0.04048 -0.786165 0.17 -0.85 pose: 0.0 -6.24159 -1.88828 0 0.00404424 0.00631895 0.614387 0.788969 uwb: 0.0 1076.26 1653.67 +imu_odom_: 1691062915.920437414 0.641646 -0.136469 9.68215 -0.072438 0.00106526 -0.802144 0.17 -0.85 pose: 0.67030441 -6.23836 -1.87881 0 0.00243045 0.00785376 0.592388 0.805611 uwb: 0.0 1076.26 1653.67 +imu_odom_: 1691062915.945295304 0.620098 -0.114922 9.84017 -0.0596548 -0.0223706 -0.821319 0.17 -0.88 pose: 0.0 -6.23836 -1.87881 0 0.00243045 0.00785376 0.592388 0.805611 uwb: 0.49951433 1072.76 1653.4 +imu_odom_: 1691062915.962410477 0.395043 -0.184354 9.66539 -0.0692422 0.0213053 -0.797883 0.17 -0.88 pose: 0.34971428 -6.23836 -1.87882 0 0.00397226 0.00456343 0.580504 0.814235 uwb: 0.0 1072.76 1653.4 +imu_odom_: 1691062915.978359051 0.675165 -0.423774 9.9503 -0.0596548 0.0436758 -0.770186 0.18 -0.76 pose: 0.35107045 -6.23513 -1.86933 0 0.00313053 0.0023878 0.568313 0.822803 uwb: 0.0 1072.76 1653.4 +imu_odom_: 1691062915.996291135 0.723049 -0.172383 9.98382 -0.0596548 0.02024 -0.768056 0.18 -0.76 pose: 0.7960871 -6.23519 -1.86933 0 0.00284212 0.00176493 0.565661 0.824631 uwb: 0.50043594 1069.28 1653.29 +imu_odom_: 1691062916.13345937 0.184354 -0.37589 9.8665 -0.0575243 0.0745685 -0.680704 0.18 -0.76 pose: 0.0 -6.23519 -1.86933 0 0.00284212 0.00176493 0.565661 0.824631 uwb: 0.0 1069.28 1653.29 +imu_odom_: 1691062916.27319167 0.0766145 -0.277727 10.2328 -0.0692422 -0.0138484 -0.570982 0.18 -0.58 pose: 0.42974589 -6.23191 -1.85986 0 0.001315 0.000855286 0.55189 0.833915 uwb: 0.0 1069.28 1653.29 +imu_odom_: 1691062916.44424716 0.380678 -0.538695 9.663 -0.0426106 -0.0713727 -0.508131 0.18 -0.58 pose: 0.0 -6.23191 -1.85986 0 0.001315 0.000855286 0.55189 0.833915 uwb: 0.50027846 1073.29 1652.94 +imu_odom_: 1691062916.57333425 0.761356 -0.361524 9.72046 -0.0468716 -0.0351537 -0.491087 0.18 -0.58 pose: 0.0 -6.23191 -1.85986 0 0.001315 0.000855286 0.55189 0.833915 uwb: 0.0 1073.29 1652.94 +imu_odom_: 1691062916.73428991 0.828394 -0.0143652 10.2352 -0.0181095 -0.0308927 -0.449542 0.17 -0.47 pose: 0.43987488 -6.22862 -1.85042 0 -0.00038845 -0.00110853 0.541524 0.840685 uwb: 0.0 1073.29 1652.94 +imu_odom_: 1691062916.91425529 0.593762 -0.124498 9.65342 -0.0458064 -0.0255663 -0.426106 0.24 -0.64 pose: 0.0 -6.22862 -1.85042 0 -0.00038845 -0.00110853 0.541524 0.840685 uwb: 0.49969224 1073.25 1652.64 +imu_odom_: 1691062916.108350255 0.184354 -0.21069 9.94791 -0.0426106 0.0426106 -0.398409 0.24 -0.64 pose: 0.0 -6.22862 -1.85042 0 -0.00038845 -0.00110853 0.541524 0.840685 uwb: 0.0 1073.25 1652.64 +imu_odom_: 1691062916.125302688 0.363919 -0.533907 10.1059 -0.0713727 0.00745685 -0.360059 0.18 -0.44 pose: 0.24096684 -6.22868 -1.85042 0 0.00219033 -0.00231829 0.536635 0.843808 uwb: 0.0 1073.25 1652.64 +imu_odom_: 1691062916.142277869 0.169988 0.0263362 9.99579 -0.052198 -0.00852212 -0.343015 0.18 -0.44 pose: 0.0 -6.22868 -1.85042 0 0.00219033 -0.00231829 0.536635 0.843808 uwb: 0.49989932 1073.23 1652.48 +imu_odom_: 1691062916.159409375 0.392649 0.0646434 9.40203 -0.0628506 -0.0447411 -0.299339 0.18 -0.44 pose: 0.33938114 -6.22536 -1.84099 0 0.00135102 -0.00127427 0.530347 0.847779 uwb: 0.0 1073.23 1652.48 +imu_odom_: 1691062916.176410221 0.071826 -0.131681 9.54329 -0.0596548 -0.015979 -0.288687 0.26 -0.47 pose: 0.44041152 -6.22204 -1.83153 0 0.00224108 0.000722079 0.523432 0.852064 uwb: 0.0 1073.23 1652.48 +imu_odom_: 1691062916.192404001 0.383072 -0.136469 10.1801 -0.0511327 -0.0181095 -0.292948 0.26 -0.47 pose: 0.7006301 -6.2221 -1.83154 0 0.00195347 0.00131785 0.52245 0.852667 uwb: 0.50066344 1070.9 1652.29 +imu_odom_: 1691062916.210339293 0.354342 -0.253785 9.86411 -0.0383495 0.00213053 -0.262055 0.23 -0.35 pose: 0.0 -6.2221 -1.83154 0 0.00195347 0.00131785 0.52245 0.852667 uwb: 0.0 1070.9 1652.29 +imu_odom_: 1691062916.226280576 0.921768 -0.320823 10.1179 -0.0490022 -0.0106526 -0.239684 0.17 -0.29 pose: 0.43923617 -6.22018 -1.82598 0 0.00139195 0.00250912 0.51646 0.856306 uwb: 0.0 1070.9 1652.29 +imu_odom_: 1691062916.240350343 0.998382 -0.0263362 10.2663 -0.0553937 -0.0170442 -0.211988 0.17 -0.29 pose: 0.0 -6.22018 -1.82598 0 0.00139195 0.00250912 0.51646 0.856306 uwb: 0.50009763 1069.15 1652.1 +imu_odom_: 1691062916.256340331 1.10373 -0.447716 9.52413 -0.0639159 -0.0223706 -0.181095 0.17 -0.29 pose: 0.0 -6.22018 -1.82598 0 0.00139195 0.00250912 0.51646 0.856306 uwb: 0.0 1069.15 1652.1 +imu_odom_: 1691062916.274339786 1.30723 -0.181959 9.7851 -0.0351537 -0.0916127 -0.177899 0.19 -0.35 pose: 0.22948168 -6.21882 -1.82209 0 0.00239077 0.000419372 0.513801 0.857906 uwb: 0.0 1069.15 1652.1 +imu_odom_: 1691062916.291293677 1.47243 -0.220267 9.54808 -0.0735032 -0.0628506 -0.20027 0.19 -0.35 pose: 0.0 -6.21882 -1.82209 0 0.00239077 0.000419372 0.513801 0.857906 uwb: 0.49863064 1073.09 1651.31 +imu_odom_: 1691062916.304279965 1.75974 0.110133 10.3453 -0.052198 -0.0340885 -0.226901 0.19 -0.35 pose: 0.0 -6.21882 -1.82209 0 0.00239077 0.000419372 0.513801 0.857906 uwb: 0.0 1073.09 1651.31 +imu_odom_: 1691062916.320286286 1.44849 -0.0694318 9.8282 -0.0575243 -0.0468716 -0.190682 0.11 -0.2 pose: 0.70992504 -6.21554 -1.81262 0 0.00659827 -0.00705342 0.506586 0.862136 uwb: 0.0 1073.09 1651.31 +imu_odom_: 1691062916.338422233 1.28329 -0.248997 9.55047 -0.0681769 -0.0330232 -0.123571 0.11 -0.2 pose: 0.8089781 -6.21559 -1.81262 0 0.00717574 -0.00784439 0.505778 0.862598 uwb: 0.50040679 1067.36 1651.53 +imu_odom_: 1691062916.355370874 0.885855 -0.402226 9.48343 -0.0490022 -0.00213053 -0.132093 0.11 -0.2 pose: 0.0 -6.21559 -1.81262 0 0.00717574 -0.00784439 0.505778 0.862598 uwb: 0.0 1067.36 1651.53 +imu_odom_: 1691062916.368373495 0.572214 -0.11971 10.3597 -0.0415453 0.00213053 -0.172573 0.1 -0.2 pose: 0.43001128 -6.20613 -1.81586 0 0.00815368 -0.0121456 0.502452 0.864481 uwb: 0.0 1067.36 1651.53 +imu_odom_: 1691062916.384376024 0.713472 0.0861913 9.7444 -0.0628506 -0.0607201 -0.153398 0.09 -0.14 pose: 0.0 -6.20613 -1.81586 0 0.00815368 -0.0121456 0.502452 0.864481 uwb: 0.49961058 1065.58 1651 +imu_odom_: 1691062916.401371038 0.835576 -0.208296 9.89045 -0.076699 0.00319579 -0.122505 0.09 -0.14 pose: 0.0 -6.20613 -1.81586 0 0.00815368 -0.0121456 0.502452 0.864481 uwb: 0.0 1065.58 1651 +imu_odom_: 1691062916.418377134 0.967257 -0.543484 10.161 -0.0596548 -0.00958738 -0.111853 0.07 -0.11 pose: 0.20930244 -6.20289 -1.8064 0 0.00907194 -0.0106932 0.500584 0.865574 uwb: 0.0 1065.58 1651 +imu_odom_: 1691062916.433320683 0.864307 -0.260968 9.81862 -0.0553937 -0.0223706 -0.105461 0.07 -0.11 pose: 0.0 -6.20289 -1.8064 0 0.00907194 -0.0106932 0.500584 0.865574 uwb: 0.0 1065.58 1651 +imu_odom_: 1691062916.456411759 0.895431 -0.114922 10.0317 -0.0596548 -0.00532632 -0.0607201 0.07 -0.11 pose: 0.33186823 -6.20289 -1.8064 0 0.0096759 -0.01308 0.498177 0.866923 uwb: 0.49996639 1062.14 1651.03 +imu_odom_: 1691062916.481418974 0.234632 -0.371101 9.991 -0.0575243 0.0415453 -0.107592 0.06 -0.14 pose: 0.30820378 -6.20289 -1.8064 0 0.0100707 -0.01581 0.496343 0.867924 uwb: 0.0 1062.14 1651.03 +imu_odom_: 1691062916.506279489 -0.830788 0.253785 9.72525 -0.0500674 0.0671117 -0.183225 0.07 -0.08 pose: 0.41110655 -6.20289 -1.8064 0 0.00935588 -0.0143735 0.494054 0.869262 uwb: 0.50006556 1063.21 1650.29 +imu_odom_: 1691062916.531605186 -0.811634 -0.988805 9.56962 -0.0777643 -0.0394148 -0.0255663 0.07 -0.08 pose: 0.0 -6.20289 -1.8064 0 0.00935588 -0.0143735 0.494054 0.869262 uwb: 0.0 1063.21 1650.29 +imu_odom_: 1691062916.557259863 0.651223 -0.277727 9.70131 -0.036219 -0.0692422 -0.0671117 0.14 -0.11 pose: 0.7019134 -6.20289 -1.8064 0 0.00909471 -0.0134571 0.493378 0.869663 uwb: 0.50113591 1061.49 1650.27 +imu_odom_: 1691062916.573374678 0.620098 0.112527 9.38048 -0.0596548 -0.0223706 -0.0106526 0.14 -0.11 pose: 0.0 -6.20289 -1.8064 0 0.00909471 -0.0134571 0.493378 0.869663 uwb: 0.0 1061.49 1650.27 +imu_odom_: 1691062916.591419047 0.114922 -0.229843 9.89045 -0.0681769 0.00532632 0.0990696 0.14 0.02 pose: 0.50967834 -6.19957 -1.79697 0 0.00588022 -0.0110245 0.490602 0.871294 uwb: 0.0 1061.49 1650.27 +imu_odom_: 1691062916.607420118 0.141258 -0.902614 9.85453 -0.0532632 -0.0426106 0.157659 0.14 0.02 pose: 0.0 -6.19957 -1.79697 0 0.00588022 -0.0110245 0.490602 0.871294 uwb: 0.0 1061.49 1650.27 +imu_odom_: 1691062916.621318395 0.378284 -0.555455 9.55526 -0.0436758 -0.0213053 0.201335 0.14 0.02 pose: 0.0 -6.19957 -1.79697 0 0.00588022 -0.0110245 0.490602 0.871294 uwb: 0.0 1061.49 1650.27 +imu_odom_: 1691062916.637256178 0.134075 -0.299275 9.90002 -0.0511327 -0.00213053 0.276969 0.13 0.2 pose: 0.41935149 -6.19957 -1.79697 0 0.00592029 -0.0111884 0.489626 0.871841 uwb: 0.100011944 1059.73 1649.82 +imu_odom_: 1691062916.655246009 0.237026 -0.462081 9.73961 -0.0628506 0.0117179 0.340885 0.13 0.2 pose: 0.0 -6.19957 -1.79697 0 0.00592029 -0.0111884 0.489626 0.871841 uwb: 0.0 1059.73 1649.82 +imu_odom_: 1691062916.672257646 0.0646434 -0.471658 10.1394 -0.0372843 0.015979 0.36219 0.13 0.2 pose: 0.0 -6.19957 -1.79697 0 0.00592029 -0.0111884 0.489626 0.871841 uwb: 0.0 1059.73 1649.82 +imu_odom_: 1691062916.685303431 0.143652 -0.260968 9.63187 -0.0276969 0.0298274 0.386691 0.14 0.32 pose: 0.48061543 -6.19626 -1.78754 0 0.00218844 -0.00959316 0.492569 0.870218 uwb: 0.49975058 1057.42 1649.58 +imu_odom_: 1691062916.701289045 0.265756 -0.361524 9.60554 -0.0735032 0.0266316 0.437824 0.13 0.35 pose: 0.0 -6.19626 -1.78754 0 0.00218844 -0.00959316 0.492569 0.870218 uwb: 0.0 1057.42 1649.58 +imu_odom_: 1691062916.719289958 0.529119 -0.368707 9.92875 -0.0415453 0.00426106 0.453803 0.13 0.35 pose: 0.63919415 -6.19292 -1.77811 0 -0.00246544 -0.00453389 0.501507 0.865138 uwb: 0.0 1057.42 1649.58 +imu_odom_: 1691062916.736231308 0.339977 -0.0766145 9.98382 -0.0458064 0.0213053 0.477238 0.13 0.35 pose: 0.0 -6.19292 -1.77811 0 -0.00246544 -0.00453389 0.501507 0.865138 uwb: 0.49870938 1060.76 1648.71 +imu_odom_: 1691062916.749227803 -0.011971 -0.435745 9.74201 -0.0543285 -0.0255663 0.527306 0.15 0.44 pose: 0.0 -6.19292 -1.77811 0 -0.00246544 -0.00453389 0.501507 0.865138 uwb: 0.0 1060.76 1648.71 +imu_odom_: 1691062916.765284580 0.234632 -0.565032 10.3334 -0.0543285 -0.0213053 0.551807 0.15 0.44 pose: 0.32969544 -6.1896 -1.76868 0 -0.00290453 -0.00490464 0.507414 0.861683 uwb: 0.0 1060.76 1648.71 +imu_odom_: 1691062916.783287826 0.191536 -0.577003 9.45949 -0.0490022 0.0351537 0.561394 0.21 0.7 pose: 0.38992987 -6.1896 -1.76868 0 -0.00483609 -0.00311555 0.51555 0.85684 uwb: 0.0 1060.76 1648.71 +imu_odom_: 1691062916.800222468 0.64404 -0.131681 9.98861 -0.0585895 0.0149137 0.598679 0.21 0.7 pose: 0.8002577 -6.1896 -1.76868 0 -0.00569319 -0.00283055 0.517338 0.855757 uwb: 0.49969516 1064.16 1648.5 +imu_odom_: 1691062916.813220130 0.275333 -0.134075 10.0796 -0.0468716 0.00745685 0.617853 0.21 0.7 pose: 0.0 -6.1896 -1.76868 0 -0.00569319 -0.00283055 0.517338 0.855757 uwb: 0.0 1064.16 1648.5 +imu_odom_: 1691062916.830456338 0.225055 -0.833182 9.74201 -0.0394148 -0.0308927 0.641289 0.15 0.55 pose: 0.39932973 -6.17682 -1.7625 0 -0.00469014 -0.0016012 0.526808 0.84997 uwb: 0.0 1064.16 1648.5 +imu_odom_: 1691062916.847386314 1.01993 -0.727837 10.1203 -0.0713727 -0.0340885 0.611462 0.15 0.55 pose: 0.0 -6.17682 -1.7625 0 -0.00469014 -0.0016012 0.526808 0.84997 uwb: 0.50002473 1061.85 1648.18 +imu_odom_: 1691062916.865383436 0.742203 -0.304064 9.68933 -0.0394148 -0.015979 0.600809 0.15 0.55 pose: 0.0 -6.17682 -1.7625 0 -0.00469014 -0.0016012 0.526808 0.84997 uwb: 0.0 1061.85 1648.18 +imu_odom_: 1691062916.882381074 1.55144 -0.52433 10.4914 -0.0681769 -0.0596548 0.591222 0.11 0.38 pose: 0.24026397 -6.17688 -1.7625 0 -0.00610874 -0.00293384 0.532845 0.846185 uwb: 0.0 1061.85 1648.18 +imu_odom_: 1691062916.896233562 1.62327 -0.184354 9.40442 -0.0223706 -0.0308927 0.488956 0.11 0.41 pose: 0.0 -6.17688 -1.7625 0 -0.00610874 -0.00293384 0.532845 0.846185 uwb: 0.50203711 1058.97 1647.91 +imu_odom_: 1691062916.913401232 1.59693 -0.0191536 10.003 -0.0436758 0.0266316 0.409062 0.11 0.41 pose: 0.36022534 -6.17358 -1.75306 0 -0.00435652 -0.00636392 0.541364 0.840753 uwb: 0.0 1058.97 1647.91 +imu_odom_: 1691062916.930400620 1.20428 -0.0143652 9.95748 -0.076699 0.0127832 0.36432 0.09 0.29 pose: 0.40132171 -6.17358 -1.75306 0 -0.00149616 -0.00930437 0.548707 0.835961 uwb: 0.0 1058.97 1647.91 +imu_odom_: 1691062916.947511127 0.799663 -0.344765 9.64863 -0.0607201 0.036219 0.305731 0.09 0.29 pose: 0.6980345 -6.17358 -1.75306 0 -0.00100045 -0.00964954 0.549647 0.835341 uwb: 0.49812316 1060.04 1647.2 +imu_odom_: 1691062916.963238631 0.572214 -0.387861 9.92157 -0.056459 -0.0149137 0.265251 0.09 0.29 pose: 0.0 -6.17358 -1.75306 0 -0.00100045 -0.00964954 0.549647 0.835341 uwb: 0.0 1060.04 1647.2 +imu_odom_: 1691062916.981362620 0.782904 -0.155623 9.94312 -0.0436758 -0.0117179 0.22264 0.1 0.35 pose: 0.42857054 -6.17192 -1.74841 0 -0.00122549 -0.0118197 0.554366 0.832188 uwb: 0.0 1060.04 1647.2 +imu_odom_: 1691062916.998360842 0.785298 -0.150835 9.86172 -0.056459 -0.00426106 0.24075 0.1 0.35 pose: 0.0 -6.17192 -1.74841 0 -0.00122549 -0.0118197 0.554366 0.832188 uwb: 0.50005681 1060.01 1646.87 +imu_odom_: 1691062917.11488871 0.756568 -0.380678 9.87608 -0.0532632 0.00532632 0.237554 0.1 0.35 pose: 0.0 -6.17192 -1.74841 0 -0.00122549 -0.0118197 0.554366 0.832188 uwb: 0.0 1060.01 1646.87 +imu_odom_: 1691062917.27296287 0.790087 -0.409408 9.9527 -0.0490022 0.00639159 0.209857 0.05 0.2 pose: 0.26156898 -6.17035 -1.74359 0 0.00144438 -0.0122825 0.556389 0.83083 uwb: 0.0 1060.01 1646.87 +imu_odom_: 1691062917.45241204 0.890643 -0.126893 9.84735 -0.0447411 -0.00639159 0.20027 0.08 0.29 pose: 0.0 -6.17035 -1.74359 0 0.00144438 -0.0122825 0.556389 0.83083 uwb: 0.49892812 1060.55 1646.56 +imu_odom_: 1691062917.62294548 0.526724 -0.201113 9.79947 -0.0660464 0.0319579 0.22051 0.08 0.29 pose: 0.29986551 -6.17035 -1.74359 0 0.0024227 -0.0144383 0.55875 0.829207 uwb: 0.0 1060.55 1646.56 +imu_odom_: 1691062917.85294338 0.40462 -0.222661 9.91918 -0.0543285 0.0149137 0.209857 0.05 0.17 pose: 0.42912468 -6.17029 -1.7436 0 0.00398238 -0.0135959 0.561757 0.827181 uwb: 0.49982058 1056.52 1645.98 +imu_odom_: 1691062917.103269587 -0.232238 -0.328006 9.70609 -0.0553937 0.0596548 0.230097 0.05 0.17 pose: 0.0 -6.17029 -1.7436 0 0.00398238 -0.0135959 0.561757 0.827181 uwb: 0.0 1056.52 1645.98 +imu_odom_: 1691062917.116358827 -0.859518 -0.395043 10.1011 -0.0585895 0.0756338 0.225836 0.05 0.17 pose: 0.7074548 -6.17035 -1.74359 0 0.00372234 -0.0128661 0.562261 0.826852 uwb: 0.0 1056.52 1645.98 +imu_odom_: 1691062917.134440528 -0.866701 -0.289698 10.1251 -0.0553937 -0.0298274 0.210922 0.07 0.17 pose: 0.0 -6.17035 -1.74359 0 0.00372234 -0.0128661 0.562261 0.826852 uwb: 0.0 1056.52 1645.98 +imu_odom_: 1691062917.149432782 -0.227449 -0.215478 9.77074 -0.052198 -0.0649811 0.2024 0.07 0.17 pose: 0.0 -6.17035 -1.74359 0 0.00372234 -0.0128661 0.562261 0.826852 uwb: 0.0 1056.52 1645.98 +imu_odom_: 1691062917.167431654 0.533907 -0.270545 9.79707 -0.0490022 -0.0468716 0.181095 0.13 0.2 pose: 0.73076634 -6.16705 -1.73416 0 -0.000572309-0.00606124 0.567671 0.823233 uwb: 0.0 1056.52 1645.98 +imu_odom_: 1691062917.185317658 0.667982 -0.129287 9.76834 -0.0575243 -0.0170442 0.178964 0.13 0.2 pose: 0.0 -6.16705 -1.73416 0 -0.000572309-0.00606124 0.567671 0.823233 uwb: 0.100101774 1054.81 1645.92 +imu_odom_: 1691062917.198433147 0.409408 -0.399832 9.94551 -0.0585895 0.0266316 0.173638 0.13 0.2 pose: 0.0 -6.16705 -1.73416 0 -0.000572309-0.00606124 0.567671 0.823233 uwb: 0.0 1054.81 1645.92 +imu_odom_: 1691062917.214371805 -0.275333 -0.526724 9.76834 -0.0735032 0.0351537 0.158724 0.11 0.11 pose: 0.32991710 -6.16705 -1.73416 0 0.00175593 -0.00712285 0.569633 0.821866 uwb: 0.0 1054.81 1645.92 +imu_odom_: 1691062917.232472463 -0.0311246 -0.335188 10.0485 -0.0628506 -0.00319579 0.152333 0.11 0.11 pose: 0.38934365 -6.16541 -1.72946 0 -0.000250985-0.00583817 0.571712 0.820434 uwb: 0.0 1054.81 1645.92 +imu_odom_: 1691062917.249346442 0.3304 -0.354342 10.2496 -0.0543285 -0.0127832 0.165116 0.11 0.11 pose: 0.0 -6.16541 -1.72946 0 -0.000250985-0.00583817 0.571712 0.820434 uwb: 0.50064011 1054.78 1645.52 +imu_odom_: 1691062917.262344979 0.624887 -0.0909797 10.2376 -0.0543285 -0.0330232 0.158724 0.12 0.11 pose: 0.0 -6.16541 -1.72946 0 -0.000250985-0.00583817 0.571712 0.820434 uwb: 0.0 1054.78 1645.52 +imu_odom_: 1691062917.279371491 0.529119 -0.344765 9.94791 -0.0479369 -0.0426106 0.156594 0.12 0.11 pose: 0.8061782 -6.16376 -1.72471 0 -0.000802547-0.00523689 0.572089 0.820174 uwb: 0.0 1054.78 1645.52 +imu_odom_: 1691062917.294490322 -0.00718261-0.213084 9.94073 -0.0553937 0.00639159 0.140615 0.12 0.11 pose: 0.0 -6.16376 -1.72471 0 -0.000802547-0.00523689 0.572089 0.820174 uwb: 0.50120883 1054.76 1645.31 +imu_odom_: 1691062917.312494444 0.225055 -0.153229 10.4483 -0.0383495 -0.0308927 0.138484 0.13 0.05 pose: 0.63954122 -6.16376 -1.72471 0 -0.00167447 -0.00528366 0.575167 0.818017 uwb: 0.0 1054.76 1645.31 +imu_odom_: 1691062917.328217281 0.679953 -0.229843 10.0054 -0.0617853 -0.0543285 0.135289 0.13 0.05 pose: 0.0 -6.16376 -1.72471 0 -0.00167447 -0.00528366 0.575167 0.818017 uwb: 0.0 1054.76 1645.31 +imu_odom_: 1691062917.346427016 0.718261 -0.198719 9.90242 -0.0383495 -0.00852212 0.11931 0.13 0.05 pose: 0.0 -6.16376 -1.72471 0 -0.00167447 -0.00528366 0.575167 0.818017 uwb: 0.0 1054.76 1645.31 +imu_odom_: 1691062917.363356409 1.23541 -0.275333 9.94791 -0.0607201 -0.052198 0.142745 0.14 0.08 pose: 0.34113979 -6.16047 -1.71527 0 -0.00118027 -0.00355518 0.576553 0.817051 uwb: 0.0 1054.76 1645.31 +imu_odom_: 1691062917.380361339 1.2402 -0.150835 9.84735 -0.0490022 -0.0213053 0.173638 0.14 0.08 pose: 0.33926156 -6.15722 -1.70581 0 0.00156747 -0.00618126 0.577769 0.816175 uwb: 0.0 1054.76 1645.31 +imu_odom_: 1691062917.398354669 1.12288 -0.160412 10.003 -0.0585895 -0.0596548 0.22264 0.14 0.08 pose: 0.0 -6.15722 -1.70581 0 0.00156747 -0.00618126 0.577769 0.816175 uwb: 0.99759960 1054.73 1644.91 +imu_odom_: 1691062917.415345892 1.83635 -0.320823 10.058 -0.0479369 -0.0351537 0.183225 0.1 0.02 pose: 0.43926825 -6.15716 -1.70581 0 0.00500586 -0.0101176 0.580381 0.814267 uwb: 0.0 1054.73 1644.91 +imu_odom_: 1691062917.431272009 1.48441 0.0023942 9.77074 -0.0372843 0.0351537 0.103331 0.09 0.05 pose: 0.0 -6.15716 -1.70581 0 0.00500586 -0.0101176 0.580381 0.814267 uwb: 0.0 1054.73 1644.91 +imu_odom_: 1691062917.448270231 0.979228 0.0191536 9.80904 -0.0490022 0.0181095 0.0756338 0.09 0.05 pose: 0.0 -6.15716 -1.70581 0 0.00500586 -0.0101176 0.580381 0.814267 uwb: 0.0 1054.73 1644.91 +imu_odom_: 1691062917.465267578 0.634463 -0.339977 9.91918 -0.0703074 -0.00106526 0.0617853 0.08 0.02 pose: 0.8042242 -6.15722 -1.70581 0 0.0055245 -0.0108852 0.580845 0.813923 uwb: 0.0 1054.73 1644.91 +imu_odom_: 1691062917.482260550 0.821211 -0.445322 9.85932 -0.052198 -0.0298274 0.0308927 0.08 0.02 pose: 0.0 -6.15722 -1.70581 0 0.0055245 -0.0108852 0.580845 0.813923 uwb: 0.0 1054.73 1644.91 +imu_odom_: 1691062917.499324393 0.871489 -0.208296 9.90481 -0.0575243 -0.0276969 0.0447411 0.08 0.02 pose: 0.49818734 -6.15398 -1.69635 0 0.00802945 -0.0126923 0.582067 0.813002 uwb: 0.100041694 1053 1644.59 +imu_odom_: 1691062917.515330714 0.893037 -0.251391 9.95509 -0.0649811 -0.00745685 0.0788296 0.06 0.02 pose: 0.0 -6.15398 -1.69635 0 0.00802945 -0.0126923 0.582067 0.813002 uwb: 0.0 1053 1644.59 +imu_odom_: 1691062917.533334836 0.823605 -0.407014 9.79707 -0.0532632 -0.00745685 0.0841559 0.06 0.02 pose: 0.0 -6.15398 -1.69635 0 0.00802945 -0.0126923 0.582067 0.813002 uwb: 0.0 1053 1644.59 +imu_odom_: 1691062917.550217272 0.682347 -0.234632 9.96706 -0.0511327 -0.00958738 0.072438 0.05 0.05 pose: 0.67182976 -6.15398 -1.69635 0 0.00870767 -0.0176004 0.582497 0.812595 uwb: 0.49999848 1055.21 1644.02 +imu_odom_: 1691062917.575200572 0.691924 -0.100556 10.1035 -0.0553937 -0.0149137 0.0458064 0.05 0.02 pose: 0.0 -6.15398 -1.69635 0 0.00870767 -0.0176004 0.582497 0.812595 uwb: 0.0 1055.21 1644.02 +imu_odom_: 1691062917.592183629 0.251391 -0.174777 9.65582 -0.0607201 0.0426106 0.036219 0.05 0.05 pose: 0.33873659 -6.15398 -1.69635 0 0.00839512 -0.0161899 0.582934 0.812315 uwb: 0.49928978 1050.71 1644.25 +imu_odom_: 1691062917.617454204 -1.08218 -0.292093 10.3262 -0.0553937 0.0298274 0.0713727 0.05 0.05 pose: 0.34911349 -6.15398 -1.69635 0 0.00829309 -0.0129507 0.582959 0.812356 uwb: 0.0 1050.71 1644.25 +imu_odom_: 1691062917.642399589 -0.454898 -0.253785 9.98622 -0.0394148 -0.0777643 0.0703074 0.06 0 pose: 0.7079214 -6.15398 -1.69635 0 0.00778906 -0.0122925 0.583058 0.8123 uwb: 0.50383076 1050.11 1643.85 +imu_odom_: 1691062917.667345266 0.385466 -0.0622492 9.52892 -0.0575243 -0.0213053 0.0809601 0.1 0.02 pose: 0.43136746 -6.15078 -1.68688 0 0.00569111 -0.00923257 0.583639 0.811941 uwb: 0.0 1050.11 1643.85 +imu_odom_: 1691062917.692342857 -0.0047884 -0.306458 9.48822 -0.0490022 0.00426106 0.0745685 0.1 0.02 pose: 0.0 -6.15078 -1.68688 0 0.00569111 -0.00923257 0.583639 0.811941 uwb: 0.49609620 1044.47 1643.89 +imu_odom_: 1691062917.709325622 -0.361524 -0.277727 9.85932 -0.0500674 -0.00426106 0.0681769 0.1 0.02 pose: 0.49943268 -6.15078 -1.68688 0 0.00404575 -0.00506139 0.584425 0.811422 uwb: 0.0 1044.47 1643.89 +imu_odom_: 1691062917.727194126 0.0430956 -0.215478 10.0868 -0.0543285 -0.0543285 0.162985 0.11 0.02 pose: 0.0 -6.15078 -1.68688 0 0.00404575 -0.00506139 0.584425 0.811422 uwb: 0.0 1044.47 1643.89 +imu_odom_: 1691062917.744326799 0.47884 -0.703895 9.84017 -0.0490022 -0.0181095 0.238619 0.11 0.02 pose: 0.0 -6.15078 -1.68688 0 0.00404575 -0.00506139 0.584425 0.811422 uwb: 0.49948518 1046.15 1643.72 +imu_odom_: 1691062917.761318604 0.320823 -0.639252 9.76355 -0.0234358 -0.00532632 0.291882 0.13 0.26 pose: 0.41920567 -6.14749 -1.67743 0 0.00166486 -0.00311279 0.586097 0.810233 uwb: 0.0 1046.15 1643.72 +imu_odom_: 1691062917.779316601 0.1652 -0.265756 9.89763 -0.0266316 0.00852212 0.36219 0.13 0.26 pose: 0.0 -6.14749 -1.67743 0 0.00166486 -0.00311279 0.586097 0.810233 uwb: 0.0 1046.15 1643.72 +imu_odom_: 1691062917.796319198 0.316035 -0.351948 9.91918 -0.0415453 -0.0298274 0.437824 0.14 0.35 pose: 0.35055424 -6.14749 -1.67743 0 -0.000907752-0.00328608 0.589697 0.807618 uwb: 0.50036888 1041.64 1643.84 +imu_odom_: 1691062917.809240448 0.146046 -0.40462 9.76834 -0.0383495 -0.0127832 0.46339 0.15 0.44 pose: 0.0 -6.14749 -1.67743 0 -0.000907752-0.00328608 0.589697 0.807618 uwb: 0.0 1041.64 1643.84 +imu_odom_: 1691062917.826302541 0.847547 -0.232238 10.0365 -0.0255663 -0.0117179 0.477238 0.13 0.47 pose: 0.0 -6.14749 -1.67743 0 -0.000907752-0.00328608 0.589697 0.807618 uwb: 0.0 1041.64 1643.84 +imu_odom_: 1691062917.842226909 0.68953 -0.141258 9.71088 -0.036219 0.0170442 0.493217 0.13 0.47 pose: 0.48042295 -6.14422 -1.66798 0 -0.00319912 -0.0019038 0.59736 0.801965 uwb: 0.49997223 1038.83 1643.97 +imu_odom_: 1691062917.859219589 0.162806 -0.471658 9.68455 -0.0596548 0.0340885 0.529436 0.14 0.47 pose: 0.0 -6.14422 -1.66798 0 -0.00319912 -0.0019038 0.59736 0.801965 uwb: 0.0 1038.83 1643.97 +imu_odom_: 1691062917.875176913 0.143652 -0.311246 10.1227 -0.0447411 0.00639159 0.568851 0.14 0.47 pose: 0.41858446 -6.14089 -1.65853 0 -0.00288889 -0.00225311 0.605131 0.796117 uwb: 0.0 1038.83 1643.97 +imu_odom_: 1691062917.892172218 0.354342 -0.45011 9.88805 -0.0585895 0.0127832 0.575243 0.14 0.47 pose: 0.0 -6.14089 -1.65853 0 -0.00288889 -0.00225311 0.605131 0.796117 uwb: 0.0 1038.83 1643.97 +imu_odom_: 1691062917.908166290 0.361524 -0.191536 9.89045 -0.0447411 -0.0191748 0.58483 0.15 0.58 pose: 0.0 -6.14089 -1.65853 0 -0.00288889 -0.00225311 0.605131 0.796117 uwb: 0.0 1038.83 1643.97 +imu_odom_: 1691062917.925254340 0.304064 -0.481235 9.38766 -0.0436758 0.0149137 0.618919 0.15 0.58 pose: 0.8080739 -6.14095 -1.65853 0 -0.00343 -0.00158951 0.606834 0.79482 uwb: 0.0 1038.83 1643.97 +imu_odom_: 1691062917.941191832 0.141258 -0.555455 10.0006 -0.0436758 -0.0138484 0.627441 0.15 0.58 pose: 0.0 -6.14095 -1.65853 0 -0.00343 -0.00158951 0.606834 0.79482 uwb: 0.100002322 1038.84 1644.21 +imu_odom_: 1691062917.959313780 0.385466 -0.0502782 9.87369 -0.0500674 0.0266316 0.66579 0.2 0.85 pose: 0.65963006 -6.13768 -1.64908 0 -0.00650895 -0.00107074 0.621271 0.783568 uwb: 0.0 1038.84 1644.21 +imu_odom_: 1691062917.976203217 0.866701 -0.543484 10.2615 -0.0468716 -0.072438 0.657268 0.14 0.58 pose: 0.0 -6.13768 -1.64908 0 -0.00650895 -0.00107074 0.621271 0.783568 uwb: 0.0 1038.84 1644.21 +imu_odom_: 1691062917.992454232 1.10133 0.102951 9.50259 -0.0436758 -0.0191748 0.616788 0.14 0.58 pose: 0.0 -6.13768 -1.64908 0 -0.00650895 -0.00107074 0.621271 0.783568 uwb: 0.49931310 1036 1644 +imu_odom_: 1691062918.10180703 1.17555 -0.316035 9.59357 -0.0511327 -0.0191748 0.633832 0.12 0.44 pose: 0.33943363 -6.13768 -1.64908 0 -0.00538135 -0.0008210790.629423 0.777044 uwb: 0.0 1036 1644 +imu_odom_: 1691062918.27175717 1.72143 -0.275333 9.97903 -0.0511327 -0.0436758 0.548611 0.12 0.44 pose: 0.33122078 -6.13442 -1.63963 0 -0.00274326 -0.00314487 0.637009 0.770845 uwb: 0.0 1036 1644 +imu_odom_: 1691062918.44175397 1.84114 -0.011971 9.88087 -0.04048 0.0181095 0.450607 0.12 0.44 pose: 0.0 -6.13442 -1.63963 0 -0.00274326 -0.00314487 0.637009 0.770845 uwb: 0.50069553 1033.72 1643.58 +imu_odom_: 1691062918.61222325 1.22344 0.0335188 9.76116 -0.052198 0.0181095 0.386691 0.1 0.32 pose: 0.0 -6.13442 -1.63963 0 -0.00274326 -0.00314487 0.637009 0.770845 uwb: 0.0 1033.72 1643.58 +imu_odom_: 1691062918.78287334 0.565032 -0.0766145 9.39485 -0.0585895 0.0394148 0.338754 0.1 0.32 pose: 0.43846622 -6.13959 -1.6378 0 0.000539685 -0.00630016 0.645235 0.763958 uwb: 0.0 1033.72 1643.58 +imu_odom_: 1691062918.95226060 0.711078 -0.363919 10.1514 -0.0617853 -0.00639159 0.292948 0.1 0.32 pose: 0.0 -6.13959 -1.6378 0 0.000539685 -0.00630016 0.645235 0.763958 uwb: 0.50061387 1030.34 1643.44 +imu_odom_: 1691062918.112218449 0.754174 -0.146046 9.87608 -0.0447411 0 0.265251 0.07 0.29 pose: 0.8053033 -6.14388 -1.63639 0 0.00120666 -0.00657649 0.646297 0.763057 uwb: 0.0 1030.34 1643.44 +imu_odom_: 1691062918.128223312 0.849942 -0.138864 10.1083 -0.056459 -0.00852212 0.274838 0.07 0.23 pose: 0.0 -6.14388 -1.63639 0 0.00120666 -0.00657649 0.646297 0.763057 uwb: 0.0 1030.34 1643.44 +imu_odom_: 1691062918.145222409 0.761356 -0.287304 9.59835 -0.052198 -0.00213053 0.266316 0.07 0.23 pose: 0.0 -6.14388 -1.63639 0 0.00120666 -0.00657649 0.646297 0.763057 uwb: 0.50056137 1028.65 1643.54 +imu_odom_: 1691062918.161144443 0.768539 -0.222661 9.97903 -0.0500674 0 0.24075 0.07 0.23 pose: 0.51001082 -6.14065 -1.62692 0 0.00408308 -0.00777746 0.651721 0.758408 uwb: 0.0 1028.65 1643.54 +imu_odom_: 1691062918.179230519 0.725443 -0.0191536 9.90481 -0.0511327 0.00106526 0.234358 0.07 0.23 pose: 0.0 -6.14065 -1.62692 0 0.00408308 -0.00777746 0.651721 0.758408 uwb: 0.0 1028.65 1643.54 +imu_odom_: 1691062918.195141762 0.677559 -0.251391 9.92397 -0.0553937 0.00639159 0.245011 0.07 0.23 pose: 0.65981088 -6.14065 -1.62692 0 0.00891409 -0.0109199 0.657114 0.753659 uwb: 0.49816401 1028.65 1643.54 +imu_odom_: 1691062918.212163316 0.596156 -0.308852 9.87129 -0.0575243 -0.00532632 0.251402 0.07 0.29 pose: 0.0 -6.14065 -1.62692 0 0.00891409 -0.0109199 0.657114 0.753659 uwb: 0.0 1028.65 1643.54 +imu_odom_: 1691062918.229199453 0.567426 -0.304064 9.85453 -0.0490022 0 0.245011 0.07 0.29 pose: 0.0 -6.14065 -1.62692 0 0.00891409 -0.0109199 0.657114 0.753659 uwb: 0.0 1028.65 1643.54 +imu_odom_: 1691062918.243141477 0.670376 -0.158017 9.93833 -0.0511327 -0.0255663 0.251402 0.07 0.29 pose: 0.34023568 -6.14065 -1.62692 0 0.00757562 -0.011185 0.659742 0.751371 uwb: 0.50055554 1028.66 1643.59 +imu_odom_: 1691062918.259142257 0.708684 -0.184354 9.76116 -0.0500674 -0.00745685 0.258859 0.04 0.2 pose: 0.39907309 -6.13733 -1.61747 0 0.00649806 -0.0100765 0.66289 0.748621 uwb: 0.0 1028.66 1643.59 +imu_odom_: 1691062918.276141646 0.766145 -0.351948 10.0341 -0.0575243 -0.00639159 0.266316 0.05 0.29 pose: 0.8007827 -6.13739 -1.61747 0 0.0073065 -0.0101911 0.663537 0.748039 uwb: 0.0 1028.66 1643.59 +imu_odom_: 1691062918.293173116 0.605733 -0.213084 9.80426 -0.0490022 0.00852212 0.262055 0.05 0.29 pose: 0.0 -6.13739 -1.61747 0 0.0073065 -0.0101911 0.663537 0.748039 uwb: 0.49947060 1028.11 1643.99 +imu_odom_: 1691062918.307158304 0.600945 -0.253785 10.0221 -0.0575243 0.00426106 0.270577 0.05 0.29 pose: 0.42023812 -6.13739 -1.61747 0 0.00747156 -0.0102546 0.667043 0.744911 uwb: 0.0 1028.11 1643.99 +imu_odom_: 1691062918.322158726 0.663194 -0.234632 9.83299 -0.0553937 -0.0149137 0.269512 0.03 0.23 pose: 0.0 -6.13739 -1.61747 0 0.00747156 -0.0102546 0.667043 0.744911 uwb: 0.0 1028.11 1643.99 +imu_odom_: 1691062918.340206595 0.667982 -0.215478 9.85453 -0.0500674 0.00319579 0.262055 0.03 0.23 pose: 0.0 -6.13739 -1.61747 0 0.00747156 -0.0102546 0.667043 0.744911 uwb: 0.50195838 1032.04 1643.64 +imu_odom_: 1691062918.357193734 0.639252 -0.160412 9.8258 -0.0553937 0 0.270577 0.02 0.2 pose: 0.21999432 -6.13739 -1.61747 0 0.00693933 -0.00991832 0.668937 0.743221 uwb: 0.0 1032.04 1643.64 +imu_odom_: 1691062918.373187806 0.632069 -0.277727 9.91918 -0.0543285 -0.00213053 0.279099 0.02 0.2 pose: 0.0 -6.13739 -1.61747 0 0.00693933 -0.00991832 0.668937 0.743221 uwb: 0.0 1032.04 1643.64 +imu_odom_: 1691062918.390171738 0.574608 -0.201113 9.84256 -0.0458064 0.00532632 0.271642 0.02 0.2 pose: 0.33007459 -6.13739 -1.61747 0 0.00953511 -0.00926342 0.671671 0.74073 uwb: 0.49754571 1027.55 1644.11 +imu_odom_: 1691062918.405361440 0.591368 -0.184354 9.89045 -0.0532632 0.00639159 0.273773 0.02 0.23 pose: 0.41991731 -6.13739 -1.61747 0 0.00746657 -0.00762917 0.675338 0.737431 uwb: 0.0 1027.55 1644.11 +imu_odom_: 1691062918.422165423 0.548272 -0.227449 9.88805 -0.052198 -0.00852212 0.257794 0.02 0.26 pose: 0.7069298 -6.13739 -1.61747 0 0.00751965 -0.00690021 0.675948 0.736879 uwb: 0.0 1027.55 1644.11 +imu_odom_: 1691062918.437182760 0.531513 -0.227449 9.86172 -0.0468716 -0.00213053 0.232228 0.02 0.26 pose: 0.0 -6.13739 -1.61747 0 0.00751965 -0.00690021 0.675948 0.736879 uwb: 0.49935978 1025.3 1644.1 +imu_odom_: 1691062918.454153275 0.562637 -0.146046 9.87608 -0.0532632 -0.00426106 0.211988 0.02 0.23 pose: 0.39941724 -6.13739 -1.61747 0 0.00455014 -0.00543964 0.679084 0.734026 uwb: 0.0 1025.3 1644.1 +imu_odom_: 1691062918.469209110 0.531513 -0.184354 9.87369 -0.0543285 -0.00213053 0.201335 0.02 0.23 pose: 0.0 -6.13739 -1.61747 0 0.00455014 -0.00543964 0.679084 0.734026 uwb: 0.0 1025.3 1644.1 +imu_odom_: 1691062918.486143461 0.562637 -0.237026 9.87129 -0.0532632 0.00319579 0.183225 0.02 0.23 pose: 0.0 -6.13739 -1.61747 0 0.00455014 -0.00543964 0.679084 0.734026 uwb: 0.50033680 1021.93 1644.35 +imu_odom_: 1691062918.510290893 0.596156 -0.153229 9.88326 -0.052198 0.00106526 0.16192 0.01 0.17 pose: 0.24979509 -6.13739 -1.61747 0 0.00569737 -0.0039432 0.680622 0.732602 uwb: 0.0 1021.93 1644.35 +imu_odom_: 1691062918.527280365 0.35913 -0.1652 9.9096 -0.0575243 0.0426106 0.153398 0.01 0.17 pose: 0.0 -6.13739 -1.61747 0 0.00569737 -0.0039432 0.680622 0.732602 uwb: 0.0 1021.93 1644.35 +imu_odom_: 1691062918.543155152 -0.770933 -0.272939 9.75637 -0.0596548 0.1012 0.122505 0.03 0.08 pose: 0.31995435 -6.13739 -1.61747 0 0.0058204 -0.00493598 0.682288 0.731044 uwb: 0.49920520 1016.87 1644.26 +imu_odom_: 1691062918.560144042 -1.66397 -0.215478 10.07 -0.0585895 0.0213053 0.0916127 0.06 0.02 pose: 0.41132238 -6.13739 -1.61747 0 0.00513005 -0.00255495 0.683957 0.729499 uwb: 0.0 1016.87 1644.26 +imu_odom_: 1691062918.576141905 -0.972046 -0.275333 9.91199 -0.0628506 -0.0649811 0.0671117 0.06 -0.02 pose: 0.0 -6.13739 -1.61747 0 0.00513005 -0.00255495 0.683957 0.729499 uwb: 0.0 1016.87 1644.26 +imu_odom_: 1691062918.593172792 0.301669 -0.023942 10.2017 -0.0490022 -0.0884169 0.0340885 0.06 -0.02 pose: 0.40851963 -6.13581 -1.61282 0 0.00201405 0.000317148 0.684683 0.728838 uwb: 0.50176005 1017.43 1644.25 +imu_odom_: 1691062918.609142074 0.646434 -0.263362 9.52653 -0.0596548 -0.0426106 0.0372843 0.06 -0.02 pose: 0.0 -6.13581 -1.61282 0 0.00201405 0.000317148 0.684683 0.728838 uwb: 0.0 1017.43 1644.25 +imu_odom_: 1691062918.626278829 0.311246 -0.292093 9.7444 -0.0532632 0.052198 0.0426106 0.08 0 pose: 0.0 -6.13581 -1.61282 0 0.00201405 0.000317148 0.684683 0.728838 uwb: 0.0 1017.43 1644.25 +imu_odom_: 1691062918.642213696 -0.201113 -0.387861 9.92636 -0.0596548 0.0308927 0.0298274 0.08 0 pose: 0.8197399 -6.13418 -1.608 0 0.00238757 0.000894907 0.684664 0.728854 uwb: 0.49835942 1019.13 1644.36 +imu_odom_: 1691062918.659278414 -0.464475 -0.181959 9.81623 -0.0607201 -0.0351537 0.0319579 0.14 -0.02 pose: 0.0 -6.13418 -1.608 0 0.00238757 0.000894907 0.684664 0.728854 uwb: 0.0 1019.13 1644.36 +imu_odom_: 1691062918.675353273 -0.201113 -0.225055 9.6223 -0.0479369 -0.0255663 0.036219 0.14 -0.02 pose: 0.0 -6.13418 -1.608 0 0.00238757 0.000894907 0.684664 0.728854 uwb: 0.0 1019.13 1644.36 +imu_odom_: 1691062918.693284775 0.452504 -0.31364 9.46907 -0.0543285 -0.00213053 0.0394148 0.14 -0.02 pose: 0.65967673 -6.13418 -1.608 0 -0.0006332770.0017418 0.684574 0.728941 uwb: 0.50025514 1023.07 1644.33 +imu_odom_: 1691062918.710295538 0.299275 -0.306458 9.88326 -0.0436758 0.0340885 0.0458064 0.11 -0.02 pose: 0.0 -6.13418 -1.608 0 -0.0006332770.0017418 0.684574 0.728941 uwb: 0.0 1023.07 1644.33 +imu_odom_: 1691062918.726281735 -0.126893 -0.320823 9.95509 -0.0703074 0.0340885 0.0426106 0.11 0 pose: 0.32868926 -6.13098 -1.59853 0 -0.00214186 0.00255836 0.684524 0.728983 uwb: 0.0 1023.07 1644.33 +imu_odom_: 1691062918.744204487 0.356736 -0.148441 10.0149 -0.052198 0.0372843 0.0266316 0.11 0 pose: 0.43105832 -6.13098 -1.59853 0 -0.00551591 0.00268436 0.684567 0.728924 uwb: 0.49944143 1027.02 1644.39 +imu_odom_: 1691062918.761135921 0.653617 -0.344765 9.10036 -0.0532632 0.0862864 0.0255663 0.12 0.02 pose: 0.7923540 -6.13098 -1.59853 0 -0.00484352 0.00297305 0.684534 0.728959 uwb: 0.0 1027.02 1644.39 +imu_odom_: 1691062918.777189489 -0.328006 -0.150835 10.4507 -0.056459 0.0287621 0.0628506 0.12 0.02 pose: 0.0 -6.13098 -1.59853 0 -0.00484352 0.00297305 0.684534 0.728959 uwb: 0.0 1027.02 1644.39 +imu_odom_: 1691062918.794184212 0.701501 -0.699107 9.8282 -0.056459 -0.0692422 0.0479369 0.12 0.02 pose: 0.42984214 -6.13429 -1.59182 0 -0.00493243 0.00385886 0.684535 0.728953 uwb: 0.49990225 1027.02 1644.39 +imu_odom_: 1691062918.810179159 0.864307 -0.110133 9.50019 -0.0436758 -0.0532632 0.0383495 0.11 0 pose: 0.0 -6.13429 -1.59182 0 -0.00493243 0.00385886 0.684535 0.728953 uwb: 0.0 1027.02 1644.39 +imu_odom_: 1691062918.827239502 1.075 -0.179565 10.0772 -0.0617853 0.0276969 0.116114 0.11 0 pose: 0.0 -6.13429 -1.59182 0 -0.00493243 0.00385886 0.684535 0.728953 uwb: 0.0 1027.02 1644.39 +imu_odom_: 1691062918.845127547 1.71185 -0.474052 10.3837 -0.0639159 -0.0117179 0.137419 0.11 0 pose: 0.25009258 -6.13725 -1.58585 0 -0.00385476 0.00122203 0.684584 0.728923 uwb: 0.0 1027.02 1644.39 +imu_odom_: 1691062918.861127744 1.52511 -0.318429 9.6223 -0.052198 0.00639159 0.0777643 0.08 0 pose: 0.0 -6.13725 -1.58585 0 -0.00385476 0.00122203 0.684584 0.728923 uwb: 0.0 1027.02 1644.39 +imu_odom_: 1691062918.878165339 1.23301 0.177171 10.2185 -0.0543285 0.0607201 0.0276969 0.07 -0.02 pose: 0.33056165 -6.13725 -1.58585 0 -0.00151177 -0.0009866910.685343 0.728218 uwb: 0.0 1027.02 1644.39 +imu_odom_: 1691062918.895139645 0.445322 -0.1652 9.55047 -0.0649811 0.0245011 0.0255663 0.07 -0.02 pose: 0.42910427 -6.13406 -1.57637 0 0.00126842 -0.00312778 0.685833 0.727752 uwb: 0.100139106 1031.52 1644.09 +imu_odom_: 1691062918.911148008 0.45011 -0.296881 10.07 -0.0532632 -0.00745685 -0.0181095 0.09 0 pose: 0.7983620 -6.13406 -1.57637 0 0.00160119 -0.00240358 0.685791 0.727793 uwb: 0.0 1031.52 1644.09 +imu_odom_: 1691062918.928253849 0.672771 -0.167594 10.0221 -0.0553937 -0.0213053 -0.036219 0.09 0 pose: 0.0 -6.13406 -1.57637 0 0.00160119 -0.00240358 0.685791 0.727793 uwb: 0.0 1031.52 1644.09 +imu_odom_: 1691062918.944252879 0.823605 -0.184354 9.92875 -0.0553937 -0.00958738 -0.00958738 0.09 0 pose: 0.42104890 -6.13406 -1.57637 0 0.00240579 -0.00358333 0.684932 0.728594 uwb: 0.50040096 1030.96 1644.26 +imu_odom_: 1691062918.960314614 0.85473 -0.347159 9.75398 -0.0639159 0.0117179 0.0149137 0.05 -0.02 pose: 0.0 -6.13406 -1.57637 0 0.00240579 -0.00358333 0.684932 0.728594 uwb: 0.0 1030.96 1644.26 +imu_odom_: 1691062918.977316336 0.670376 -0.299275 9.8689 -0.0543285 0.00639159 0.0223706 0.05 -0.02 pose: 0.0 -6.13406 -1.57637 0 0.00240579 -0.00358333 0.684932 0.728594 uwb: 0.0 1030.96 1644.26 +imu_odom_: 1691062919.2181809 0.596156 -0.107739 9.8689 -0.0543285 0.00213053 0.0181095 0.04 0 pose: 0.24017940 -6.13406 -1.57637 0 0.00392376 -0.00534298 0.684564 0.728923 uwb: 0.49956976 1029.26 1644.13 +imu_odom_: 1691062919.18287875 0.248997 -0.217872 9.85693 -0.0681769 0.0500674 0.0191748 0.05 0.02 pose: 0.0 -6.13406 -1.57637 0 0.00392376 -0.00534298 0.684564 0.728923 uwb: 0.0 1029.26 1644.13 +imu_odom_: 1691062919.43125351 -1.31202 -0.222661 10.2328 -0.0553937 0.0756338 0.0234358 0.06 0 pose: 0.66016086 -6.13406 -1.57637 0 0.00509273 -0.00478656 0.684055 0.729397 uwb: 0.49946186 1031.51 1643.88 +imu_odom_: 1691062919.68247185 -0.591368 -0.354342 9.78031 -0.0607201 -0.0660464 0.0532632 0.09 0 pose: 0.7839254 -6.13406 -1.57637 0 0.00433675 -0.00399035 0.684014 0.729445 uwb: 0.0 1031.51 1643.88 +imu_odom_: 1691062919.93175072 0.469264 -0.234632 9.51216 -0.0543285 0.00319579 0.0543285 0.09 0 pose: 0.42120056 -6.13085 -1.5669 0 0.00122261 -0.00129646 0.684049 0.729433 uwb: 0.49924895 1033.22 1644.24 +imu_odom_: 1691062919.110254373 0.253785 -0.23942 10.1347 -0.0660464 0.0511327 0.0479369 0.1 -0.02 pose: 0.0 -6.13085 -1.5669 0 0.00122261 -0.00129646 0.684049 0.729433 uwb: 0.0 1033.22 1644.24 +imu_odom_: 1691062919.135253423 -0.42138 -0.191536 9.70609 -0.0649811 0.00106526 0.0415453 0.1 -0.02 pose: 0.42007188 -6.13085 -1.5669 0 0.000112391 -0.00213048 0.684238 0.729256 uwb: 0.0 1033.22 1644.24 +imu_odom_: 1691062919.160271138 0.215478 -0.059855 9.91678 -0.0607201 -0.0245011 0.0298274 0.14 -0.02 pose: 0.0 -6.13085 -1.5669 0 0.000112391 -0.00213048 0.684238 0.729256 uwb: 0.0 1033.22 1644.24 +imu_odom_: 1691062919.185131071 0.0933739 -0.272939 9.96227 -0.0681769 0.0127832 0.0585895 0.14 -0.02 pose: 0.50016765 -6.12764 -1.55743 0 -0.00133618 0.0020229 0.684172 0.729317 uwb: 0.100002616 1033.78 1644.14 +imu_odom_: 1691062919.202368446 -0.0766145 -0.402226 9.69891 -0.0585895 -0.0117179 0.0394148 0.13 -0.02 pose: 0.0 -6.12764 -1.55743 0 -0.00133618 0.0020229 0.684172 0.729317 uwb: 0.0 1033.78 1644.14 +imu_odom_: 1691062919.228256444 0.646434 0.0622492 10.3094 -0.0660464 -0.0394148 0.0532632 0.13 -0.02 pose: 0.32894300 -6.12764 -1.55743 0 -0.00442872 0.00367639 0.684332 0.729148 uwb: 0.0 1033.78 1644.14 +imu_odom_: 1691062919.253251119 0.229843 -0.486023 9.79947 -0.0745685 0.0255663 0.0383495 0.17 0 pose: 0.0 -6.12764 -1.55743 0 -0.00442872 0.00367639 0.684332 0.729148 uwb: 0.49994016 1030.39 1644.24 +imu_odom_: 1691062919.278244628 0.0622492 -0.047884 9.96227 -0.0468716 -0.00958738 0.036219 0.17 0 pose: 0.43103208 -6.1339 -1.54475 0 -0.00336586 0.00288745 0.684465 0.729032 uwb: 0.0 1030.39 1644.24 +imu_odom_: 1691062919.303241344 0.143652 -0.363919 9.90002 -0.0553937 0.0234358 0.0596548 0.14 0 pose: 0.41975982 -6.13168 -1.5382 0 -0.00515513 0.00478607 0.684421 0.729053 uwb: 0.50059638 1028.13 1644.15 +imu_odom_: 1691062919.319301621 -0.268151 -0.339977 9.62469 -0.0426106 -0.00958738 0.02024 0.14 0 pose: 0.0 -6.13168 -1.5382 0 -0.00515513 0.00478607 0.684421 0.729053 uwb: 0.0 1028.13 1644.15 +imu_odom_: 1691062919.346249474 0.0981623 -0.268151 9.87369 -0.0671117 0.0436758 0.0649811 0.15 0 pose: 0.8014243 -6.1307 -1.53528 0 -0.00603189 0.00483848 0.684474 0.728997 uwb: 0.49935394 1025.88 1644.08 +imu_odom_: 1691062919.371187569 0.220267 -0.342371 10.307 -0.0553937 0.0181095 0.0287621 0.14 0 pose: 0.0 -6.1307 -1.53528 0 -0.00603189 0.00483848 0.684474 0.728997 uwb: 0.0 1025.88 1644.08 +imu_odom_: 1691062919.396235908 0.818817 -0.263362 10.2592 -0.0617853 -0.00745685 0.0415453 0.14 0 pose: 0.42020896 -6.1307 -1.53528 0 -0.00988581 0.00671676 0.684535 0.728882 uwb: 0.49991392 1027.57 1644.11 +imu_odom_: 1691062919.411245370 0.536301 -0.402226 9.88326 -0.0575243 0.0585895 0.056459 0.14 0 pose: 0.0 -6.1307 -1.53528 0 -0.00988581 0.00671676 0.684535 0.728882 uwb: 0.0 1027.57 1644.11 +imu_odom_: 1691062919.437193448 0.88346 -0.0861913 10.422 -0.0319579 0.0138484 0.015979 0.15 -0.02 pose: 0.49982058 -6.12749 -1.5258 0 -0.0108868 0.00543393 0.684588 0.728829 uwb: 0.50127009 1027 1644.01 +imu_odom_: 1691062919.452112791 0.246603 -0.21069 9.42837 -0.0458064 0.0298274 0.0468716 0.15 -0.02 pose: 0.0 -6.12749 -1.5258 0 -0.0108868 0.00543393 0.684588 0.728829 uwb: 0.0 1027 1644.01 +imu_odom_: 1691062919.479238551 -0.0383072 -0.31364 9.96706 -0.04048 0.0181095 0.0383495 0.15 0 pose: 0.41124365 -6.12429 -1.51633 0 -0.00856851 0.0028393 0.684631 0.728834 uwb: 0.0 1027 1644.01 +imu_odom_: 1691062919.504118024 0 -0.0790087 10.24 -0.0426106 0.0138484 0.0553937 0.16 -0.02 pose: 0.0 -6.12429 -1.51633 0 -0.00856851 0.0028393 0.684631 0.728834 uwb: 0.49995183 1027.56 1643.94 +imu_odom_: 1691062919.530104308 0.301669 -0.25618 10.489 -0.0415453 -0.00852212 0.0394148 0.16 -0.02 pose: 0.40774384 -6.13377 -1.51313 0 -0.00726555 0.00449016 0.68452 0.728944 uwb: 0.0 1027.56 1643.94 +imu_odom_: 1691062919.555102775 0.399832 -0.23942 10.1251 -0.0351537 0.0330232 0.04048 0.17 0 pose: 0.0 -6.13377 -1.51313 0 -0.00726555 0.00449016 0.68452 0.728944 uwb: 0.50124383 1029.25 1643.89 +imu_odom_: 1691062919.581108308 0.464475 -0.0981623 10.4244 -0.0319579 -0.00213053 0.0330232 0.17 0 pose: 0.52097978 -6.13056 -1.50366 0 -0.0083826 0.00796176 0.684646 0.728784 uwb: 0.0 1029.25 1643.89 +imu_odom_: 1691062919.596219556 0.378284 -0.0909797 10.4196 -0.0330232 -0.00852212 0.0372843 0.18 0.02 pose: 0.0 -6.13056 -1.50366 0 -0.0083826 0.00796176 0.684646 0.728784 uwb: 0.49928687 1029.81 1643.65 +imu_odom_: 1691062919.614167681 0.509965 -0.337582 9.8689 -0.0671117 0.0127832 0.072438 0.18 0.02 pose: 0.50898130 -6.12736 -1.49418 0 -0.00497099 0.00498464 0.684654 0.728834 uwb: 0.0 1029.81 1643.65 +imu_odom_: 1691062919.639225061 0.234632 -0.0909797 10.0437 -0.04048 0.036219 0.0234358 0.17 0 pose: 0.0 -6.12736 -1.49418 0 -0.00497099 0.00498464 0.684654 0.728834 uwb: 0.49934228 1029.81 1643.77 +imu_odom_: 1691062919.664120867 0.605733 -0.337582 9.43315 -0.0543285 0.0138484 0.056459 0.17 0 pose: 0.76068379 -6.12416 -1.48471 0 -0.0016671 0.00606678 0.684679 0.728817 uwb: 0.0 1029.81 1643.77 +imu_odom_: 1691062919.687113366 0.138864 -0.205901 9.44513 -0.04048 -0.0191748 0.0330232 0.17 0 pose: 0.0 -6.12416 -1.48471 0 -0.0016671 0.00606678 0.684679 0.728817 uwb: 0.50058471 1028.13 1643.94 +imu_odom_: 1691062919.713273474 0.148441 -0.186748 9.96227 -0.0628506 -0.00852212 0.0703074 0.17 0 pose: 0.7020009 -6.12416 -1.48471 0 -0.00154856 0.00543167 0.684725 0.728779 uwb: 0.0 1028.13 1643.94 +imu_odom_: 1691062919.739089143 0.110133 0.110133 9.89045 -0.0735032 -0.015979 0.0468716 0.24 0 pose: 0.49006491 -6.13044 -1.47204 0 -0.00334835 0.00583332 0.684862 0.728642 uwb: 0.49942395 1025.32 1643.96 +imu_odom_: 1691062919.764215352 0.725443 -0.351948 10.161 -0.0937433 0.015979 0.0617853 0.18 0 pose: 0.0 -6.13044 -1.47204 0 -0.00334835 0.00583332 0.684862 0.728642 uwb: 0.0 1025.32 1643.96 +imu_odom_: 1691062919.781278029 0.138864 -0.306458 9.75637 -0.0649811 -0.00532632 0.04048 0.18 0 pose: 0.25998533 -6.12725 -1.46256 0 -0.00434846 0.0076938 0.685076 0.728418 uwb: 0.0 1025.32 1643.96 +imu_odom_: 1691062919.805204390 -0.0957681 -0.416591 9.7444 -0.052198 0.0106526 0.0628506 0.18 0 pose: 0.49973601 -6.12725 -1.46256 0 -0.00404766 0.00663595 0.685345 0.728177 uwb: 0.49998099 1024.19 1643.75 +imu_odom_: 1691062919.828070606 0.399832 -0.318429 9.37569 -0.0628506 0.0117179 0.04048 0.18 0 pose: 0.33980695 -6.12407 -1.45308 0 -0.00749922 0.00734196 0.68552 0.727978 uwb: 0.0 1024.19 1643.75 +imu_odom_: 1691062919.854087805 0.395043 -0.342371 9.4571 -0.0809601 0.00958738 0.0575243 0.24 0 pose: 0.0 -6.12407 -1.45308 0 -0.00749922 0.00734196 0.68552 0.727978 uwb: 0.49984684 1020.8 1643.7 +imu_odom_: 1691062919.879275260 0.268151 -0.344765 10.2352 -0.0436758 0.00532632 0.0340885 0.24 0 pose: 0.48883415 -6.12089 -1.4436 0 -0.00692834 0.00256869 0.685699 0.727848 uwb: 0.0 1020.8 1643.7 +imu_odom_: 1691062919.896079827 0.600945 -0.414197 9.95988 -0.0735032 -0.00852212 0.056459 0.21 0 pose: 0.0 -6.12089 -1.4436 0 -0.00692834 0.00256869 0.685699 0.727848 uwb: 0.50002766 1019.68 1643.64 +imu_odom_: 1691062919.920072685 0.950498 -0.280122 9.89284 -0.0553937 -0.00852212 0.0330232 0.21 0 pose: 0.41992022 -6.12263 -1.43247 0 -0.00805036 -0.0005511930.685727 0.727814 uwb: 0.0 1019.68 1643.64 +imu_odom_: 1691062919.947306647 0.684742 -0.296881 10.2376 -0.0617853 0.036219 0.0490022 0.21 0 pose: 0.0 -6.12263 -1.43247 0 -0.00805036 -0.0005511930.685727 0.727814 uwb: 0.50062554 1016.87 1643.89 +imu_odom_: 1691062919.963200683 0.117316 -0.459687 9.1267 -0.0575243 0.0383495 0.0372843 0.21 0 pose: 0.32094013 -6.1272 -1.43094 0 -0.00573135 -0.0026078 0.685693 0.727864 uwb: 0.0 1016.87 1643.89 +imu_odom_: 1691062919.990202492 -0.0526724 -0.126893 9.85693 -0.0532632 -0.00639159 0.0532632 0.25 0.02 pose: 0.0 -6.1272 -1.43094 0 -0.00573135 -0.0026078 0.685693 0.727864 uwb: 0.49813777 1022.49 1644 +imu_odom_: 1691062920.15216416 0.0287304 -0.23942 10.0317 -0.0255663 0.00213053 0.0308927 0.25 0.02 pose: 0.42927926 -6.12403 -1.42146 0 -0.0065177 -0.00206473 0.685781 0.727776 uwb: 0.0 1022.49 1644 +imu_odom_: 1691062920.42075899 0.035913 -0.296881 10.1586 -0.056459 -0.0223706 0.0479369 0.23 -0.02 pose: 0.0 -6.12403 -1.42146 0 -0.0065177 -0.00206473 0.685781 0.727776 uwb: 0.49979434 1024.74 1643.89 +imu_odom_: 1691062920.58186923 0.378284 -0.191536 9.92875 -0.0330232 0.00319579 0.036219 0.23 -0.02 pose: 0.52114602 -6.12086 -1.41197 0 -0.00844756 0.00283995 0.685832 0.727705 uwb: 0.0 1024.74 1643.89 +imu_odom_: 1691062920.83241095 0.390255 -0.205901 9.98143 -0.0703074 -0.0276969 0.0628506 0.25 0.02 pose: 0.0 -6.12086 -1.41197 0 -0.00844756 0.00283995 0.685832 0.727705 uwb: 0.0 1024.74 1643.89 +imu_odom_: 1691062920.106060355 0.414197 -0.0861913 10.1251 -0.0245011 0.0127832 0.0351537 0.25 0.02 pose: 0.42857931 -6.11769 -1.40249 0 -0.00720979 0.00347979 0.68595 0.727605 uwb: 0.49988184 1019.69 1644.42 +imu_odom_: 1691062920.132074638 0.203507 -0.19393 9.44752 -0.0511327 -0.0372843 0.0575243 0.18 -0.02 pose: 0.39986056 -6.12172 -1.39442 0 -0.00317812 0.00329316 0.686079 0.727513 uwb: 0.0 1019.69 1644.42 +imu_odom_: 1691062920.159052823 0.306458 -0.246603 9.72285 -0.0479369 -0.015979 0.0468716 0.25 -0.02 pose: 0.9073224 -6.12401 -1.38984 0 -0.00354955 0.00396205 0.686136 0.727454 uwb: 0.50024640 1019.69 1644.28 +imu_odom_: 1691062920.175169971 0.720655 -0.270545 10.4483 -0.072438 -0.04048 0.0596548 0.25 -0.02 pose: 0.0 -6.12401 -1.38984 0 -0.00354955 0.00396205 0.686136 0.727454 uwb: 0.0 1019.69 1644.28 +imu_odom_: 1691062920.201172297 0.555455 0.0383072 10.1801 -0.0585895 -0.0266316 0.0490022 0.25 0 pose: 0.43919244 -6.12176 -1.38307 0 -0.00447784 0.00249691 0.68631 0.727291 uwb: 0.50050597 1021.96 1644.7 +imu_odom_: 1691062920.226110100 0.840365 -0.11971 10.4315 -0.0703074 -0.0276969 0.0468716 0.25 0 pose: 0.42119474 -6.12085 -1.38035 0 -0.0005857750.0010339 0.686527 0.727104 uwb: 0.0 1021.96 1644.7 +imu_odom_: 1691062920.253099368 0.464475 -0.0670376 9.87129 -0.0660464 -0.00745685 0.0490022 0.21 0 pose: 0.0 -6.12085 -1.38035 0 -0.0005857750.0010339 0.686527 0.727104 uwb: 0.49942395 1019.71 1644.77 +imu_odom_: 1691062920.269096065 0.423774 -0.433351 9.88326 -0.0671117 0.0213053 0.0532632 0.21 0 pose: 0.51927071 -6.1177 -1.37086 0 0.00375338 0.000491108 0.686679 0.726951 uwb: 0.0 1019.71 1644.77 +imu_odom_: 1691062920.296092333 0.153229 -0.0909797 10.1466 -0.0596548 -0.0106526 0.0500674 0.25 0.02 pose: 0.0 -6.1177 -1.37086 0 0.00375338 0.000491108 0.686679 0.726951 uwb: 0.50126134 1016.89 1644.94 +imu_odom_: 1691062920.321167212 0.572214 -0.253785 10.1418 -0.0671117 -0.0138484 0.036219 0.25 0.02 pose: 0.24017940 -6.11455 -1.36137 0 0.00196173 0.000270074 0.686794 0.72685 uwb: 0.0 1016.89 1644.94 +imu_odom_: 1691062920.337089830 0.270545 0.0215478 9.6223 -0.0596548 -0.02024 0.0340885 0.21 0 pose: 0.0 -6.11455 -1.36137 0 0.00196173 0.000270074 0.686794 0.72685 uwb: 0.50010641 1018.58 1644.8 +imu_odom_: 1691062920.364045558 0.282516 -0.466869 9.85693 -0.0639159 -0.00852212 0.0479369 0.21 0 pose: 0.59972522 -6.1209 -1.34873 0 0.00227339 0.000816107 0.686801 0.726842 uwb: 0.0 1018.58 1644.8 +imu_odom_: 1691062920.389046358 0.608127 -0.0383072 10.0509 -0.0500674 -0.0191748 0.04048 0.23 0 pose: 0.8972896 -6.1209 -1.34873 0 0.00140451 0.000496552 0.686829 0.726817 uwb: 0.49982351 1018.02 1644.89 +imu_odom_: 1691062920.412160476 0.150835 -0.409408 9.75637 -0.0511327 0.0383495 0.0308927 0.23 0 pose: 0.42983632 -6.11865 -1.34193 0 0.00233262 -0.0004602630.68689 0.726757 uwb: 0.0 1018.02 1644.89 +imu_odom_: 1691062920.437082239 0.186748 -0.19393 9.83299 -0.0340885 -0.0213053 0.052198 0.18 -0.02 pose: 0.0 -6.11865 -1.34193 0 0.00233262 -0.0004602630.68689 0.726757 uwb: 0.49924604 1015.77 1645.25 +imu_odom_: 1691062920.453073394 0.507571 -0.0143652 9.77313 -0.036219 -0.0287621 0.0255663 0.18 -0.02 pose: 0.31072948 -6.11776 -1.33924 0 -0.0006330470.000939978 0.686856 0.726793 uwb: 0.0 1015.77 1645.25 +imu_odom_: 1691062920.479233502 0.371101 -0.260968 9.39485 -0.072438 0.0191748 0.052198 0.19 0 pose: 0.0 -6.11776 -1.33924 0 -0.0006330470.000939978 0.686856 0.726793 uwb: 0.0 1015.77 1645.25 +imu_odom_: 1691062920.505222995 -0.215478 -0.332794 9.35175 -0.0490022 0.00319579 0.04048 0.19 0 pose: 0.41198443 -6.11462 -1.32974 0 -0.00035438 0.00186714 0.686891 0.726758 uwb: 0.49976227 1013.52 1645.42 +imu_odom_: 1691062920.520094215 0.519542 -0.0670376 9.991 -0.0458064 -0.0490022 0.0447411 0.18 0.02 pose: 0.0 -6.11462 -1.32974 0 -0.00035438 0.00186714 0.686891 0.726758 uwb: 0.0 1013.52 1645.42 +imu_odom_: 1691062920.546151371 0.859518 -0.205901 10.5489 -0.036219 -0.00639159 0.0266316 0.18 0.02 pose: 0.50834260 -6.11157 -1.32022 0 -0.00325687 0.00227761 0.686991 0.726655 uwb: 0.50082387 1012.95 1645.36 +imu_odom_: 1691062920.572047535 0.823605 0.0191536 10.1538 -0.0468716 0.00532632 0.0426106 0.21 0 pose: 0.33999362 -6.11899 -1.31056 0 -0.0002771050.000387841 0.686889 0.726762 uwb: 0.0 1012.95 1645.36 +imu_odom_: 1691062920.596149471 0.699107 -0.153229 10.0269 -0.0532632 -0.036219 0.0436758 0.21 0 pose: 0.0 -6.11899 -1.31056 0 -0.0002771050.000387841 0.686889 0.726762 uwb: 0.49851108 1012.96 1645.79 +imu_odom_: 1691062920.621029236 0.830788 -0.110133 9.99819 -0.056459 0.00213053 0.0585895 0.21 0 pose: 0.7915082 -6.11805 -1.30765 0 0.000473304 0.00019103 0.686898 0.726754 uwb: 0.0 1012.96 1645.79 +imu_odom_: 1691062920.647019604 0.42138 -0.0383072 9.98382 -0.0394148 -0.00319579 0.0330232 0.18 0 pose: 0.0 -6.11805 -1.30765 0 0.000473304 0.00019103 0.686898 0.726754 uwb: 0.50085304 1018.6 1646.07 +imu_odom_: 1691062920.663072589 0.409408 -0.241814 9.71806 -0.052198 0.0191748 0.0447411 0.18 0 pose: 0.49165440 -6.11501 -1.29812 0 0.00488894 -0.00244007 0.686994 0.726642 uwb: 0.0 1018.6 1646.07 +imu_odom_: 1691062920.680073436 0.349553 -0.227449 9.79947 -0.0490022 0.0149137 0.0372843 0.18 0 pose: 0.0 -6.11501 -1.29812 0 0.00488894 -0.00244007 0.686994 0.726642 uwb: 0.0 1018.6 1646.07 +imu_odom_: 1691062920.705059071 0.45011 -0.270545 9.62469 -0.0617853 0.00319579 0.0649811 0.18 0 pose: 0.50848259 -6.11501 -1.29813 0 0.00593171 -0.0006644890.687057 0.726579 uwb: 0.49931603 1014.09 1645.86 +imu_odom_: 1691062920.730999858 0.225055 -0.162806 9.6606 -0.0458064 0.0213053 0.0372843 0.19 0.02 pose: 0.0 -6.11501 -1.29813 0 0.00593171 -0.0006644890.687057 0.726579 uwb: 0.0 1014.09 1645.86 +imu_odom_: 1691062920.746020695 -0.0550666 -0.189142 9.72285 -0.0585895 0.0223706 0.052198 0.19 0.02 pose: 0.76919706 -6.11589 -1.27677 0 -1.21313e-060.000808729 0.687285 0.726387 uwb: 0.49987893 1015.78 1645.68 +imu_odom_: 1691062920.761138651 0.533907 0.0335188 10.4411 -0.0490022 -0.036219 0.0937433 0.19 0.02 pose: 0.6189974 -6.11833 -1.27597 0 -0.0004756350.00132558 0.687313 0.72636 uwb: 0.0 1015.78 1645.68 +imu_odom_: 1691062920.778135415 0.380678 -0.502782 9.17937 -0.0628506 -0.0149137 0.165116 0.18 0.14 pose: 0.0 -6.11833 -1.27597 0 -0.0004756350.00132558 0.687313 0.72636 uwb: 0.0 1015.78 1645.68 +imu_odom_: 1691062920.795070350 0.548272 -0.373495 10.0916 -0.072438 -0.0117179 0.254598 0.18 0.14 pose: 0.31958980 -6.1152 -1.26647 0 -2.24427e-050.00148975 0.688017 0.725693 uwb: 0.50062554 1011.82 1645.69 +imu_odom_: 1691062920.811069380 0.37589 -0.715866 9.39245 -0.0756338 0.0191748 0.294013 0.18 0.14 pose: 0.0 -6.1152 -1.26647 0 -2.24427e-050.00148975 0.688017 0.725693 uwb: 0.0 1011.82 1645.69 +imu_odom_: 1691062920.827162905 0.514753 -0.217872 10.422 -0.052198 0.0106526 0.329167 0.25 0.38 pose: 0.0 -6.1152 -1.26647 0 -2.24427e-050.00148975 0.688017 0.725693 uwb: 0.0 1011.82 1645.69 +imu_odom_: 1691062920.844285079 -0.0837971 -0.533907 9.86172 -0.0628506 -0.00958738 0.385626 0.19 0.35 pose: 0.49018740 -6.11208 -1.25697 0 -0.00157955 -0.00220363 0.691956 0.721935 uwb: 0.50065472 1014.65 1645.96 +imu_odom_: 1691062920.860037957 0.675165 -0.203507 9.83299 -0.0617853 0.0170442 0.413323 0.19 0.35 pose: 0.0 -6.11208 -1.25697 0 -0.00157955 -0.00220363 0.691956 0.721935 uwb: 0.0 1014.65 1645.96 +imu_odom_: 1691062920.877015472 0.201113 -0.433351 9.65582 -0.0511327 -0.0117179 0.460194 0.19 0.41 pose: 0.41870405 -6.11039 -1.25205 0 -0.00123382 -0.00271555 0.697139 0.71693 uwb: 0.0 1014.65 1645.96 +imu_odom_: 1691062920.893009836 0.265756 -0.428562 9.61751 -0.0681769 -0.0330232 0.507066 0.19 0.41 pose: 0.8253104 -6.10897 -1.24746 0 -0.00202061 -0.00259183 0.698383 0.715716 uwb: 0.49875023 1012.39 1645.68 +imu_odom_: 1691062920.910067263 0.316035 -0.196325 9.72285 -0.0447411 0.00745685 0.518784 0.19 0.41 pose: 0.0 -6.10897 -1.24746 0 -0.00202061 -0.00259183 0.698383 0.715716 uwb: 0.0 1012.39 1645.68 +imu_odom_: 1691062920.926066294 0.507571 -0.579397 10.2687 -0.0308927 -0.0255663 0.530502 0.24 0.64 pose: 0.41776202 -6.10892 -1.24747 0 -0.00392612 -0.0009296080.705272 0.708926 uwb: 0.0 1012.39 1645.68 +imu_odom_: 1691062920.943157261 0.318429 -0.430956 9.99579 -0.0426106 -0.0245011 0.573112 0.24 0.64 pose: 0.0 -6.10892 -1.24747 0 -0.00392612 -0.0009296080.705272 0.708926 uwb: 0.50036890 1011.82 1645.43 +imu_odom_: 1691062920.959118960 0.790087 -0.560243 9.87848 -0.0820254 -0.0223706 0.611462 0.24 0.64 pose: 0.0 -6.10892 -1.24747 0 -0.00392612 -0.0009296080.705272 0.708926 uwb: 0.0 1011.82 1645.43 +imu_odom_: 1691062920.976061185 0.703895 -0.253785 9.86172 -0.0340885 -0.0170442 0.604005 0.18 0.55 pose: 0.24009774 -6.11538 -1.23486 0 -0.00485018 -0.00269246 0.709549 0.704634 uwb: 0.0 1011.82 1645.43 +imu_odom_: 1691062920.992055549 0.493206 -0.620098 10.3813 -0.0298274 -0.0106526 0.615723 0.24 0.79 pose: 0.0 -6.11538 -1.23486 0 -0.00485018 -0.00269246 0.709549 0.704634 uwb: 0.49977101 1006.21 1645.14 +imu_odom_: 1691062921.8110868 0.368707 -0.071826 9.78031 -0.072438 -0.02024 0.655138 0.24 0.79 pose: 0.32995795 -6.11538 -1.23486 0 -0.00440092 -0.00508182 0.71601 0.698058 uwb: 0.0 1006.21 1645.14 +imu_odom_: 1691062921.25105591 1.19471 -0.292093 10.1179 -0.0490022 -0.0234358 0.649811 0.24 0.79 pose: 0.41038036 -6.1122 -1.22536 0 -0.00337826 -0.00548292 0.724392 0.689358 uwb: 0.0 1006.21 1645.14 +imu_odom_: 1691062921.41133495 1.46765 -0.201113 9.9527 -0.0383495 -0.0223706 0.660464 0.21 0.7 pose: 0.0 -6.1122 -1.22536 0 -0.00337826 -0.00548292 0.724392 0.689358 uwb: 0.49939187 1004.52 1645.6 +imu_odom_: 1691062921.58134342 1.75974 -0.395043 9.89763 -0.0426106 -0.0553937 0.624245 0.21 0.7 pose: 0.0 -6.1122 -1.22536 0 -0.00337826 -0.00548292 0.724392 0.689358 uwb: 0.0 1004.52 1645.6 +imu_odom_: 1691062921.74191120 1.67834 -0.385466 9.76355 -0.0585895 0.015979 0.523045 0.12 0.35 pose: 0.8008994 -6.11225 -1.22536 0 -0.00270416 -0.00602355 0.72607 0.687589 uwb: 0.0 1004.52 1645.6 +imu_odom_: 1691062921.90133862 1.55384 0.143652 10.1394 -0.0447411 0.0308927 0.455933 0.12 0.35 pose: 0.0 -6.11225 -1.22536 0 -0.00270416 -0.00602355 0.72607 0.687589 uwb: 0.50082971 1002.83 1645.3 +imu_odom_: 1691062921.107131793 0.933739 -0.0957681 10.0245 -0.076699 0.0585895 0.358994 0.12 0.35 pose: 0.65020105 -6.10912 -1.21586 0 0.00259831 -0.0101442 0.738289 0.674403 uwb: 0.0 1002.83 1645.3 +imu_odom_: 1691062921.123002789 0.553061 0.0311246 9.99579 -0.0713727 0.0330232 0.30147 0.14 0.41 pose: 0.0 -6.10912 -1.21586 0 0.00259831 -0.0101442 0.738289 0.674403 uwb: 0.0 1002.83 1645.3 +imu_odom_: 1691062921.140039509 0.723049 -0.301669 9.84735 -0.0500674 -0.015979 0.284426 0.09 0.29 pose: 0.0 -6.10912 -1.21586 0 0.00259831 -0.0101442 0.738289 0.674403 uwb: 0.49929563 998.324 1645.35 +imu_odom_: 1691062921.156135076 0.866701 -0.272939 10.1155 -0.0447411 0.00426106 0.274838 0.09 0.29 pose: 0.32902758 -6.11866 -1.21288 0 0.00472936 -0.00969758 0.741954 0.670364 uwb: 0.0 998.324 1645.35 +imu_odom_: 1691062921.182249687 0.579397 -0.1652 9.96467 -0.0490022 -0.00106526 0.270577 0.08 0.26 pose: 0.42092351 -6.11563 -1.20334 0 0.00740304 -0.0112014 0.745363 0.666524 uwb: 0.0 998.324 1645.35 +imu_odom_: 1691062921.199181996 0.373495 -0.387861 9.94791 -0.056459 0.0372843 0.221575 0.08 0.26 pose: 0.0 -6.11563 -1.20334 0 0.00740304 -0.0112014 0.745363 0.666524 uwb: 0.50102511 995.505 1645.41 +imu_odom_: 1691062921.215988313 -0.198719 -0.0311246 10.0509 -0.052198 0.0490022 0.0958738 0.09 0.08 pose: 0.8020368 -6.11569 -1.20333 0 0.00750549 -0.0103845 0.745981 0.665843 uwb: 0.0 995.505 1645.41 +imu_odom_: 1691062921.230170949 -0.76375 0.237026 9.62948 -0.0447411 0.0543285 -0.0298274 0.09 0.08 pose: 0.0 -6.11569 -1.20333 0 0.00750549 -0.0103845 0.745981 0.665843 uwb: 0.0 995.505 1645.41 +imu_odom_: 1691062921.246056236 -0.732626 0.292093 10.1801 -0.0671117 0.00106526 -0.0852212 0.09 0.08 pose: 0.0 -6.11569 -1.20333 0 0.00750549 -0.0103845 0.745981 0.665843 uwb: 0.50151509 996.067 1645.58 +imu_odom_: 1691062921.261988188 0 -0.189142 10.2089 -0.0809601 -0.0447411 -0.0958738 0.11 -0.14 pose: 0.72845651 -6.11569 -1.20333 0 0.00330494 -0.00407683 0.748144 0.663516 uwb: 0.0 996.067 1645.58 +imu_odom_: 1691062921.278980286 0.351948 -0.519542 9.96946 -0.0745685 -0.0298274 -0.157659 0.11 -0.14 pose: 0.0 -6.11569 -1.20333 0 0.00330494 -0.00407683 0.748144 0.663516 uwb: 0.0 996.067 1645.58 +imu_odom_: 1691062921.296031880 0.500388 -0.229843 10.0796 -0.0639159 -0.0340885 -0.189617 0.11 -0.14 pose: 0.0 -6.11569 -1.20333 0 0.00330494 -0.00407683 0.748144 0.663516 uwb: 0.0 996.067 1645.58 +imu_odom_: 1691062921.312120739 0.275333 0.0526724 9.54568 -0.072438 -0.00532632 -0.207727 0.18 -0.35 pose: 0.33028168 -6.11261 -1.19382 0 0.00117684 -0.00299619 0.746531 0.665342 uwb: 0.0 996.067 1645.58 +imu_odom_: 1691062921.329009301 0.150835 -0.100556 9.81383 -0.0617853 -0.00319579 -0.24288 0.18 -0.35 pose: 0.42091476 -6.11261 -1.19382 0 0.00236383 -0.00244618 0.743306 0.668943 uwb: 0.0 996.067 1645.58 +imu_odom_: 1691062921.345008332 -0.21069 -0.023942 10.0102 -0.036219 -0.00852212 -0.292948 0.18 -0.35 pose: 0.0 -6.11261 -1.19382 0 0.00236383 -0.00244618 0.743306 0.668943 uwb: 0.99756173 996.067 1645.67 +imu_odom_: 1691062921.361039152 0.351948 -0.129287 10.0102 -0.0415453 -0.0308927 -0.338754 0.14 -0.38 pose: 0.0 -6.11261 -1.19382 0 0.00236383 -0.00244618 0.743306 0.668943 uwb: 0.0 996.067 1645.67 +imu_odom_: 1691062921.377160967 0.603339 -0.181959 9.92397 -0.052198 -0.0351537 -0.346211 0.18 -0.5 pose: 0.7926457 -6.11261 -1.19382 0 0.0019792 -0.0017558 0.742558 0.669777 uwb: 0.0 996.067 1645.67 +imu_odom_: 1691062921.394129150 0.217872 -0.241814 9.47386 -0.0735032 -0.00639159 -0.36219 0.18 -0.5 pose: 0.0 -6.11261 -1.19382 0 0.0019792 -0.0017558 0.742558 0.669777 uwb: 0.50059930 993.806 1646.14 +imu_odom_: 1691062921.411168495 0.0263362 0.0335188 9.79468 -0.0543285 0.0106526 -0.38243 0.2 -0.58 pose: 0.65107599 -6.11908 -1.18124 0 0.00166866 0.00100422 0.734688 0.678402 uwb: 0.0 993.806 1646.14 +imu_odom_: 1691062921.427992894 0.54109 -0.275333 9.60554 -0.0798948 0 -0.4048 0.2 -0.58 pose: 0.0 -6.11908 -1.18124 0 0.00166866 0.00100422 0.734688 0.678402 uwb: 0.0 993.806 1646.14 +imu_odom_: 1691062921.444169248 0.177171 0.00957681 10.2041 -0.0426106 0.0170442 -0.447411 0.2 -0.58 pose: 0.0 -6.11908 -1.18124 0 0.00166866 0.00100422 0.734688 0.678402 uwb: 0.49970394 991.55 1646.05 +imu_odom_: 1691062921.462116791 0.61531 -0.035913 10.0724 -0.0692422 -0.0649811 -0.413323 0.15 -0.5 pose: 0.33820872 -6.11612 -1.17169 0 0.000351675 0.00223667 0.729828 0.683627 uwb: 0.0 991.55 1646.05 +imu_odom_: 1691062921.479110347 0.840365 -0.143652 9.80186 -0.076699 -0.0255663 -0.34408 0.15 -0.5 pose: 0.33141037 -6.11612 -1.17169 0 0.0012199 0.0026853 0.724514 0.689253 uwb: 0.0 991.55 1646.05 +imu_odom_: 1691062921.495098586 1.5682 -0.782904 9.61511 -0.0820254 -0.0127832 -0.320645 0.15 -0.5 pose: 0.0 -6.11612 -1.17169 0 0.0012199 0.0026853 0.724514 0.689253 uwb: 0.49933063 987.604 1645.87 +imu_odom_: 1691062921.510989998 1.45089 -0.201113 9.95748 -0.052198 0.0298274 -0.354733 0.11 -0.35 pose: 0.0 -6.11612 -1.17169 0 0.0012199 0.0026853 0.724514 0.689253 uwb: 0.0 987.604 1645.87 +imu_odom_: 1691062921.528211916 1.02232 0.0933739 9.88326 -0.0543285 -0.0106526 -0.308927 0.1 -0.35 pose: 0.50043014 -6.11314 -1.16215 0 0.00438685 -0.0013777 0.717733 0.696303 uwb: 0.0 987.604 1645.87 +imu_odom_: 1691062921.545024358 0.876278 -0.172383 9.55765 -0.0585895 -0.0298274 -0.223706 0.1 -0.35 pose: 0.0 -6.11314 -1.16215 0 0.00438685 -0.0013777 0.717733 0.696303 uwb: 0.50010058 987.611 1645.52 +imu_odom_: 1691062921.560968558 0.560243 -0.725443 9.50498 -0.0692422 0.0372843 -0.189617 0.09 -0.26 pose: 0.16944851 -6.12268 -1.15916 0 0.0057073 -0.00213586 0.715528 0.698557 uwb: 0.0 987.611 1645.52 +imu_odom_: 1691062921.578075858 0.440533 -0.296881 9.77553 -0.056459 0.0127832 -0.20027 0.09 -0.26 pose: 0.0 -6.12268 -1.15916 0 0.0057073 -0.00213586 0.715528 0.698557 uwb: 0.0 987.611 1645.52 +imu_odom_: 1691062921.595159825 0.248997 0.0814029 10.2639 -0.0607201 -0.00213053 -0.192813 0.09 -0.26 pose: 0.0 -6.12268 -1.15916 0 0.0057073 -0.00213586 0.715528 0.698557 uwb: 0.50054681 989.857 1645.81 +imu_odom_: 1691062921.612110217 0.59855 -0.0502782 9.92875 -0.0671117 -0.0383495 -0.157659 0.11 -0.29 pose: 0.33922950 -6.12268 -1.15916 0 0.00719027 -0.00427681 0.712221 0.701906 uwb: 0.0 989.857 1645.81 +imu_odom_: 1691062921.628164661 0.830788 -0.414197 9.58638 -0.0692422 -0.015979 -0.137419 0.11 -0.29 pose: 0.0 -6.12268 -1.15916 0 0.00719027 -0.00427681 0.712221 0.701906 uwb: 0.0 989.857 1645.81 +imu_odom_: 1691062921.645079181 0.768539 -0.292093 10.1778 -0.0553937 -0.00958738 -0.133158 0.11 -0.29 pose: 0.67030446 -6.11974 -1.14961 0 0.00652731 -0.00364402 0.70707 0.707104 uwb: 0.49980893 986.481 1645.35 +imu_odom_: 1691062921.661068587 0.861913 -0.186748 9.93594 -0.0575243 -0.00958738 -0.11931 0.06 -0.17 pose: 0.0 -6.11974 -1.14961 0 0.00652731 -0.00364402 0.70707 0.707104 uwb: 0.0 986.481 1645.35 +imu_odom_: 1691062921.678073809 0.682347 -0.232238 9.83538 -0.0596548 0.00426106 -0.103331 0.07 -0.2 pose: 0.0 -6.11974 -1.14961 0 0.00652731 -0.00364402 0.70707 0.707104 uwb: 0.0 986.481 1645.35 +imu_odom_: 1691062921.694015676 0.476446 -0.311246 9.70131 -0.0607201 0.00958738 -0.104396 0.07 -0.2 pose: 0.32910925 -6.11974 -1.14961 0 0.00775114 -0.00670324 0.705075 0.709058 uwb: 0.50116219 982.542 1645.05 +imu_odom_: 1691062921.710009749 0.596156 -0.229843 9.84017 -0.0617853 -0.00745685 -0.110787 0.06 -0.2 pose: 0.41046786 -6.11968 -1.14961 0 0.00716562 -0.00838434 0.702948 0.711155 uwb: 0.0 982.542 1645.05 +imu_odom_: 1691062921.726956058 0.699107 -0.268151 9.93354 -0.0596548 0.00426106 -0.092678 0.06 -0.2 pose: 0.0 -6.11968 -1.14961 0 0.00716562 -0.00838434 0.702948 0.711155 uwb: 0.0 982.542 1645.05 +imu_odom_: 1691062921.743014293 0.658405 -0.253785 9.88566 -0.0639159 0.00852212 -0.0692422 0.06 -0.2 pose: 0.0 -6.11968 -1.14961 0 0.00716562 -0.00838434 0.702948 0.711155 uwb: 0.49808528 987.6 1645.66 +imu_odom_: 1691062921.759005157 0.584185 -0.263362 9.80426 -0.0543285 0.00106526 -0.0671117 0.04 -0.08 pose: 0.6998136 -6.11974 -1.14961 0 0.00667604 -0.00789937 0.702579 0.71153 uwb: 0.0 987.6 1645.66 +imu_odom_: 1691062921.775068934 0.56982 -0.234632 9.87129 -0.0553937 0.00319579 -0.0649811 0.04 -0.08 pose: 0.0 -6.11974 -1.14961 0 0.00667604 -0.00789937 0.702579 0.71153 uwb: 0.0 987.6 1645.66 +imu_odom_: 1691062921.791940872 0.397437 -0.153229 10.07 -0.052198 -0.0106526 -0.0596548 0.04 -0.08 pose: 0.0 -6.11974 -1.14961 0 0.00667604 -0.00789937 0.702579 0.71153 uwb: 0.50093179 989.852 1645.93 +imu_odom_: 1691062921.808047522 0.627281 -0.225055 9.83299 -0.0553937 -0.0106526 -0.052198 0.04 -0.08 pose: 0.64946609 -6.11682 -1.14004 0 0.00578031 -0.00854836 0.699816 0.714249 uwb: 0.0 989.852 1645.93 +imu_odom_: 1691062921.823934850 0.68953 -0.280122 9.86172 -0.056459 -0.00213053 -0.0383495 0.03 -0.05 pose: 0.0 -6.11682 -1.14004 0 0.00578031 -0.00854836 0.699816 0.714249 uwb: 0.0 989.852 1645.93 +imu_odom_: 1691062921.839937089 0.591368 -0.272939 9.8282 -0.0575243 -0.00426106 -0.0266316 0.03 -0.05 pose: 0.32984712 -6.11682 -1.14004 0 0.00552323 -0.00657134 0.698653 0.715409 uwb: 0.49961936 990.412 1646.2 +imu_odom_: 1691062921.857011724 0.596156 -0.246603 9.84496 -0.052198 0.00639159 -0.0255663 0.02 -0.02 pose: 0.40991956 -6.11682 -1.14004 0 0.00504595 -0.00897851 0.697535 0.716476 uwb: 0.0 990.412 1646.2 +imu_odom_: 1691062921.874142647 0.452504 -0.225055 9.83299 -0.0543285 0 -0.00852212 0.02 -0.02 pose: 0.8002869 -6.11682 -1.14004 0 0.00558262 -0.00836028 0.697345 0.716666 uwb: 0.0 990.412 1646.2 +imu_odom_: 1691062921.889954439 0.452504 -0.328006 9.94312 -0.0553937 -0.0106526 0.0106526 0.02 -0.02 pose: 0.0 -6.11682 -1.14004 0 0.00558262 -0.00836028 0.697345 0.716666 uwb: 0.49958436 984.213 1646.05 +imu_odom_: 1691062921.907114235 0.682347 -0.287304 9.9503 -0.052198 -0.015979 0.02024 0.02 -0.02 pose: 0.42014481 -6.11682 -1.14004 0 0.00349978 -0.00626251 0.696692 0.717335 uwb: 0.0 984.213 1646.05 +imu_odom_: 1691062921.923089059 0.632069 -0.220267 9.85693 -0.052198 -0.00319579 0.0330232 0.02 -0.02 pose: 0.0 -6.11682 -1.14004 0 0.00349978 -0.00626251 0.696692 0.717335 uwb: 0.0 984.213 1646.05 +imu_odom_: 1691062921.940095448 0.694318 -0.25618 9.87369 -0.0543285 -0.00106526 0.0458064 0.02 -0.02 pose: 0.0 -6.11682 -1.14004 0 0.00349978 -0.00626251 0.696692 0.717335 uwb: 0.49988476 984.771 1646.28 +imu_odom_: 1691062921.957016675 0.509965 -0.251391 9.87608 -0.0553937 0.00213053 0.0447411 0.01 0 pose: 0.25153916 -6.11682 -1.14004 0 0.00523298 -0.00797456 0.696536 0.717458 uwb: 0.0 984.771 1646.28 +imu_odom_: 1691062921.971981515 0.519542 -0.237026 9.91678 -0.0543285 -0.00426106 0.0490022 0.01 0 pose: 0.0 -6.11682 -1.14004 0 0.00523298 -0.00797456 0.696536 0.717458 uwb: 0.0 984.771 1646.28 +imu_odom_: 1691062921.987932132 0.603339 -0.215478 9.90721 -0.0553937 -0.0106526 0.052198 0.01 0 pose: 0.32944465 -6.11682 -1.14004 0 0.00638711 -0.00894639 0.696558 0.717417 uwb: 0.49859276 986.453 1646.76 +imu_odom_: 1691062922.3984243 0.608127 -0.220267 9.84975 -0.0553937 -0.00319579 0.0479369 0 0.02 pose: 0.39879312 -6.11682 -1.14004 0 0.00645223 -0.00732376 0.6967 0.717296 uwb: 0.0 986.453 1646.76 +imu_odom_: 1691062922.17988389 0.486023 -0.205901 9.89284 -0.0543285 0.0106526 0.04048 0 0.02 pose: 0.6996386 -6.11682 -1.14004 0 0.00703861 -0.00769829 0.696715 0.717272 uwb: 0.0 986.453 1646.76 +imu_odom_: 1691062922.32979187 0.275333 -0.203507 9.88805 -0.056459 0.00852212 0.0394148 0 0.02 pose: 0.0 -6.11682 -1.14004 0 0.00703861 -0.00769829 0.696715 0.717272 uwb: 0.0 986.453 1646.76 +imu_odom_: 1691062922.48190180 0.258574 -0.253785 9.89763 -0.0553937 -0.00745685 0.0383495 0 0 pose: 0.0 -6.11682 -1.14004 0 0.00703861 -0.00769829 0.696715 0.717272 uwb: 0.50057597 984.194 1646.64 +imu_odom_: 1691062922.70231610 0.526724 -0.241814 9.89284 -0.0553937 -0.0138484 0.036219 0 0 pose: 0.38050669 -6.11682 -1.14004 0 0.00575407 -0.00584944 0.696758 0.71726 uwb: 0.0 984.194 1646.64 +imu_odom_: 1691062922.85980697 -0.129287 -0.241814 9.70609 -0.0543285 0.0692422 0.0511327 0 0 pose: 0.0 -6.11682 -1.14004 0 0.00575407 -0.00584944 0.696758 0.71726 uwb: 0.49955229 984.191 1646.76 +imu_odom_: 1691062922.102957921 -1.05105 -0.328006 10.1418 -0.0436758 0.0735032 0.0639159 0.02 0.02 pose: 0.43999157 -6.11682 -1.14004 0 0.00204637 -0.00530146 0.696776 0.717266 uwb: 0.0 984.191 1646.76 +imu_odom_: 1691062922.119074778 -1.26174 -0.277727 9.84975 -0.052198 -0.0276969 0.0617853 0.03 0.02 pose: 0.0 -6.11682 -1.14004 0 0.00204637 -0.00530146 0.696776 0.717266 uwb: 0.0 984.191 1646.76 +imu_odom_: 1691062922.135963633 -0.174777 -0.0670376 10.0054 -0.0490022 -0.0703074 0.052198 0.03 0.02 pose: 0.0 -6.11682 -1.14004 0 0.00204637 -0.00530146 0.696776 0.717266 uwb: 0.49978560 989.837 1646.92 +imu_odom_: 1691062922.153134804 0.512359 -0.225055 9.79468 -0.0596548 -0.0426106 0.0660464 0.03 0.02 pose: 0.34168519 -6.11682 -1.14004 0 -0.000922499-0.00217219 0.697041 0.717028 uwb: 0.0 989.837 1646.92 +imu_odom_: 1691062922.170004701 0.545878 -0.292093 9.90002 -0.0575243 0.0276969 0.052198 0.05 0.02 pose: 0.0 -6.11682 -1.14004 0 -0.000922499-0.00217219 0.697041 0.717028 uwb: 0.0 989.837 1646.92 +imu_odom_: 1691062922.186141390 0.035913 -0.189142 9.85693 -0.04048 0.0234358 0.0511327 0.05 0.02 pose: 0.32957298 -6.11682 -1.14004 0 -0.000973384-0.00112192 0.697263 0.716814 uwb: 0.50201965 993.793 1646.97 +imu_odom_: 1691062922.202074216 -0.356736 -0.220267 9.69652 -0.0575243 -0.0213053 0.0649811 0.1 0 pose: 0.42037229 -6.11386 -1.13049 0 -0.000737887-0.00162937 0.697491 0.716591 uwb: 0.0 993.793 1646.97 +imu_odom_: 1691062922.219075939 -0.0790087 -0.349553 9.74201 -0.0468716 -0.02024 0.0383495 0.1 0 pose: 0.6821396 -6.11386 -1.13049 0 -0.00116163 -0.00117136 0.697554 0.71653 uwb: 0.0 993.793 1646.97 +imu_odom_: 1691062922.236202196 0.117316 -0.167594 9.76116 -0.0458064 -0.0308927 0.0500674 0.1 0 pose: 0.0 -6.11386 -1.13049 0 -0.00116163 -0.00117136 0.697554 0.71653 uwb: 0.49936855 990.413 1646.48 +imu_odom_: 1691062922.252191602 0.332794 -0.411803 10.082 -0.0628506 -0.0138484 0.056459 0.09 -0.02 pose: 0.43239410 -6.11386 -1.13049 0 -0.00350846 0.00177229 0.697696 0.716384 uwb: 0.0 990.413 1646.48 +imu_odom_: 1691062922.269191866 0.112527 -0.148441 10.0987 -0.0436758 0.0106526 0.0298274 0.13 0.02 pose: 0.0 -6.11386 -1.13049 0 -0.00350846 0.00177229 0.697696 0.716384 uwb: 0.0 990.413 1646.48 +imu_odom_: 1691062922.285200522 0.205901 0.0023942 10.0485 -0.0511327 -0.0447411 0.0532632 0.13 0.02 pose: 0.0 -6.11386 -1.13049 0 -0.00350846 0.00177229 0.697696 0.716384 uwb: 0.50008308 992.671 1646.74 +imu_odom_: 1691062922.300956608 0.172383 -0.265756 9.84256 -0.0681769 -0.00319579 0.0585895 0.14 0.02 pose: 0.23003874 -6.11386 -1.13049 0 -0.00480311 0.00127877 0.697762 0.716312 uwb: 0.0 992.671 1646.74 +imu_odom_: 1691062922.318144695 0.172383 -0.323217 10.1825 -0.0330232 -0.0149137 0.0298274 0.14 0.02 pose: 0.0 -6.11386 -1.13049 0 -0.00480311 0.00127877 0.697762 0.716312 uwb: 0.0 992.671 1646.74 +imu_odom_: 1691062922.335004384 0.25618 -0.237026 10.1586 -0.0553937 -0.0490022 0.0479369 0.14 0.02 pose: 0.32803307 -6.12047 -1.11798 0 -0.00475862 0.00385773 0.697857 0.716211 uwb: 0.49933939 989.847 1646.89 +imu_odom_: 1691062922.352072311 0.97444 -0.469264 10.0269 -0.0639159 -0.0596548 0.0639159 0.1 0 pose: 0.42995007 -6.12047 -1.11798 0 -0.00517291 0.00423275 0.697906 0.716158 uwb: 0.0 989.847 1646.89 +imu_odom_: 1691062922.369198277 1.00078 -0.282516 9.39006 -0.056459 -0.0138484 0.0543285 0.1 0 pose: 0.8006369 -6.12047 -1.11798 0 -0.00469822 0.00332703 0.697978 0.716096 uwb: 0.0 989.847 1646.89 +imu_odom_: 1691062922.386078090 0.890643 -0.275333 9.85453 -0.0607201 0.0351537 0.0788296 0.1 0 pose: 0.0 -6.12047 -1.11798 0 -0.00469822 0.00332703 0.697978 0.716096 uwb: 0.50054098 987.588 1646.74 +imu_odom_: 1691062922.402077120 1.36709 -0.248997 10.3166 -0.056459 -0.052198 0.0820254 0.07 0 pose: 0.43067337 -6.11875 -1.11259 0 -0.00214896 -0.0001315710.698389 0.715715 uwb: 0.0 987.588 1646.74 +imu_odom_: 1691062922.417979032 1.49159 -0.148441 9.42837 -0.0479369 -0.0117179 0.0500674 0.06 -0.02 pose: 0.0 -6.11875 -1.11259 0 -0.00214896 -0.0001315710.698389 0.715715 uwb: 0.0 987.588 1646.74 +imu_odom_: 1691062922.434980754 1.30963 0.0047884 9.9096 -0.0479369 0.0287621 0.0596548 0.06 -0.02 pose: 0.0 -6.11875 -1.11259 0 -0.00214896 -0.0001315710.698389 0.715715 uwb: 0.49992268 987.589 1646.71 +imu_odom_: 1691062922.451041032 0.600945 -0.507571 9.7851 -0.0639159 0.0340885 0.0735032 0.07 -0.02 pose: 0.22913463 -6.11744 -1.10845 0 -0.000208379-0.00200875 0.698656 0.715455 uwb: 0.0 987.589 1646.71 +imu_odom_: 1691062922.467919970 0.435745 -0.153229 10.2592 -0.0372843 0.00532632 -0.04048 0.07 -0.02 pose: 0.0 -6.11744 -1.10845 0 -0.000208379-0.00200875 0.698656 0.715455 uwb: 0.0 987.589 1646.71 +imu_odom_: 1691062922.484916442 0.418985 0.138864 9.67736 -0.0543285 -0.0308927 -0.0372843 0.07 -0.02 pose: 0.32935715 -6.11744 -1.10846 0 0.00149121 -0.00376805 0.698889 0.715218 uwb: 0.49876483 986.464 1646.5 +imu_odom_: 1691062922.500917515 0.802058 -0.155623 10.0149 -0.0713727 0.0276969 -0.0170442 0.04 0.05 pose: 0.42989174 -6.11744 -1.10846 0 0.00294863 -0.00162445 0.698046 0.716045 uwb: 0.0 986.464 1646.5 +imu_odom_: 1691062922.517922154 0.25618 -0.632069 9.68694 -0.0575243 0.00319579 0.0415453 0.04 0.05 pose: 0.7012719 -6.11744 -1.10846 0 0.00337663 -0.00202471 0.697902 0.716182 uwb: 0.0 986.464 1646.5 +imu_odom_: 1691062922.533911560 0.466869 -0.486023 10.0365 -0.0490022 -0.00745685 0.072438 0.04 0.05 pose: 0.0 -6.11744 -1.10846 0 0.00337663 -0.00202471 0.697902 0.716182 uwb: 0.0 986.464 1646.5 +imu_odom_: 1691062922.549922257 0.646434 -0.0957681 9.89524 -0.0426106 -0.0255663 0.0777643 0.04 0.02 pose: 0.41982399 -6.11744 -1.10846 0 0.0011024 -0.00403339 0.697929 0.716155 uwb: 0.0 986.464 1646.5 +imu_odom_: 1691062922.566893940 0.653617 0.0694318 9.78271 -0.0511327 0.00745685 0.0798948 0.03 0 pose: 0.0 -6.11744 -1.10846 0 0.0011024 -0.00403339 0.697929 0.716155 uwb: 0.0 986.464 1646.5 +imu_odom_: 1691062922.594214231 0.794875 -0.335188 9.93833 -0.056459 -0.0106526 0.0287621 0.03 0 pose: 0.24065772 -6.11744 -1.10846 0 0.00364238 -0.00388635 0.698253 0.715831 uwb: 0.100003202 987.029 1646.54 +imu_odom_: 1691062922.619907991 -0.871489 -0.282516 9.80665 -0.0596548 0.102265 0.0777643 0.04 0 pose: 0.0 -6.11744 -1.10846 0 0.00364238 -0.00388635 0.698253 0.715831 uwb: 0.0 987.029 1646.54 +imu_odom_: 1691062922.646907176 -1.4868 -0.25618 9.91439 -0.052198 -0.0340885 0.0585895 0.07 0.02 pose: 0.61930659 -6.11441 -1.09892 0 0.00253047 -0.00352893 0.698634 0.715466 uwb: 0.50030766 981.395 1646 +imu_odom_: 1691062922.662888999 -0.363919 -0.0383072 10.1418 -0.0511327 -0.100135 0.0607201 0.07 0.02 pose: 0.0 -6.11441 -1.09892 0 0.00253047 -0.00352893 0.698634 0.715466 uwb: 0.0 981.395 1646 +imu_odom_: 1691062922.689991428 0.770933 -0.217872 9.98622 -0.0553937 0 0.0447411 0.11 0.02 pose: 0.7022051 -6.11441 -1.09892 0 0.0021136 -0.00310105 0.698684 0.715421 uwb: 0.50028724 978.578 1645.96 +imu_odom_: 1691062922.715963130 -0.167594 -0.160412 10.0533 -0.0543285 0.0394148 0.0479369 0.11 0.02 pose: 0.0 -6.11441 -1.09892 0 0.0021136 -0.00310105 0.698684 0.715421 uwb: 0.0 978.578 1645.96 +imu_odom_: 1691062922.742919442 -0.112527 -0.414197 9.93115 -0.0468716 -0.00319579 0.0287621 0.14 0.02 pose: 0.42994424 -6.11441 -1.09892 0 0.00114537 -0.00153067 0.698959 0.715159 uwb: 0.50361206 981.405 1646 +imu_odom_: 1691062922.768953558 0.323217 -0.21069 9.81862 -0.0426106 -0.052198 0.0596548 0.14 0.02 pose: 0.0 -6.11441 -1.09892 0 0.00114537 -0.00153067 0.698959 0.715159 uwb: 0.0 981.405 1646 +imu_odom_: 1691062922.796053653 0.129287 0.0670376 10.1418 -0.0372843 0.00213053 0.0330232 0.16 0.02 pose: 0.52994511 -6.11441 -1.09892 0 -0.000113683-0.0001813860.699047 0.715075 uwb: 0.49575500 976.895 1645.64 +imu_odom_: 1691062922.811946815 0.0311246 -0.373495 9.79228 -0.0532632 -0.00426106 0.0628506 0.16 0.02 pose: 0.0 -6.11441 -1.09892 0 -0.000113683-0.0001813860.699047 0.715075 uwb: 0.0 976.895 1645.64 +imu_odom_: 1691062922.838897003 0.684742 -0.141258 9.72525 -0.0436758 -0.0191748 0.0298274 0.12 0 pose: 0.53061590 -6.12093 -1.08638 0 -0.00207025 0.00360346 0.699139 0.714974 uwb: 0.50176883 976.325 1645.79 +imu_odom_: 1691062922.863885262 -0.047884 -0.344765 9.89284 -0.0553937 0.0479369 0.056459 0.13 0 pose: 0.62916436 -6.11792 -1.07684 0 -0.0009230670.00419284 0.69913 0.714981 uwb: 0.0 976.325 1645.79 +imu_odom_: 1691062922.890902237 0.445322 -0.0023942 10.1227 -0.0543285 -0.0511327 0.0553937 0.13 0 pose: 0.0 -6.11792 -1.07684 0 -0.0009230670.00419284 0.69913 0.714981 uwb: 0.0 976.325 1645.79 +imu_odom_: 1691062922.915896330 0.588974 -0.160412 10.0389 -0.0607201 -0.0149137 0.0351537 0.14 0 pose: 0.8100572 -6.11792 -1.07684 0 -0.00182756 0.00463388 0.699175 0.714933 uwb: 0.0 976.325 1645.79 +imu_odom_: 1691062922.932949966 0.423774 -0.0502782 9.9934 -0.0713727 0.0287621 0.0671117 0.14 0 pose: 0.0 -6.11792 -1.07684 0 -0.00182756 0.00463388 0.699175 0.714933 uwb: 0.0 976.325 1645.79 +imu_odom_: 1691062922.957888062 0.203507 -0.191536 9.96467 -0.0532632 0.02024 0.036219 0.14 0.02 pose: 0.51913656 -6.11492 -1.0673 0 -4.92924e-060.00454799 0.699427 0.71469 uwb: 0.99971995 977.456 1645.76 +imu_odom_: 1691062922.984942077 0.258574 -0.270545 10.2879 -0.0575243 0.0181095 0.0436758 0.14 0.02 pose: 0.0 -6.11492 -1.0673 0 -4.92924e-060.00454799 0.699427 0.71469 uwb: 0.49814362 979.155 1645.51 +imu_odom_: 1691062923.1866512 0.023942 -0.160412 9.89045 -0.0511327 -0.00213053 0.0543285 0.15 0 pose: 0.42028189 -6.11492 -1.0673 0 0.00170834 0.00427265 0.699563 0.714556 uwb: 0.0 979.155 1645.51 +imu_odom_: 1691062923.26923018 0.715866 -0.208296 10.0844 -0.0585895 -0.0276969 0.0383495 0.15 0 pose: 0.0 -6.11492 -1.0673 0 0.00170834 0.00427265 0.699563 0.714556 uwb: 0.0 979.155 1645.51 +imu_odom_: 1691062923.49906477 0.533907 -0.270545 9.67976 -0.056459 -0.00639159 0.0617853 0.14 0 pose: 0.51974028 -6.11192 -1.05776 0 -0.00327433 0.00525952 0.699605 0.714503 uwb: 0.49988769 976.353 1644.94 +imu_odom_: 1691062923.76017006 0.0837971 -0.385466 9.22965 -0.0628506 -0.00639159 0.0447411 0.15 0 pose: 0.34009570 -6.11683 -1.04836 0 -0.00198205 0.00386817 0.699649 0.714474 uwb: 0.0 976.353 1644.94 +imu_odom_: 1691062923.102876199 -0.100556 -0.332794 9.71806 -0.0639159 0.0383495 0.0447411 0.19 0 pose: 0.25024424 -6.11847 -1.04523 0 -0.00185459 0.00188916 0.699849 0.714286 uwb: 0.50002185 971.281 1644.83 +imu_odom_: 1691062923.129121177 0.0742203 -0.35913 9.78989 -0.0543285 0.072438 0.04048 0.16 -0.02 pose: 0.25001385 -6.11847 -1.04523 0 -0.00435882 0.00269993 0.699887 0.714236 uwb: 0.0 971.281 1644.83 +imu_odom_: 1691062923.145886080 0.277727 -0.0909797 9.91918 -0.0447411 0.0149137 0.0500674 0.16 -0.02 pose: 0.0 -6.11847 -1.04523 0 -0.00435882 0.00269993 0.699887 0.714236 uwb: 0.50166383 971.27 1645.09 +imu_odom_: 1691062923.172157599 0.380678 -0.129287 9.57441 -0.0628506 0.00639159 0.0511327 0.16 0 pose: 0.28070122 -6.11548 -1.03568 0 -0.00740081 0.00445334 0.699907 0.714181 uwb: 0.0 971.27 1645.09 +imu_odom_: 1691062923.199016792 0.430956 -0.392649 9.36851 -0.0468716 -0.0308927 0.0351537 0.16 0 pose: 0.0 -6.11548 -1.03568 0 -0.00740081 0.00445334 0.699907 0.714181 uwb: 0.49995186 966.784 1644.45 +imu_odom_: 1691062923.224873293 0.201113 -0.526724 9.26317 -0.0628506 -0.00958738 0.0458064 0.17 -0.02 pose: 0.42913929 -6.11249 -1.02614 0 -0.00737467 0.00602934 0.700011 0.714068 uwb: 0.0 966.784 1644.45 +imu_odom_: 1691062923.251892311 -0.0670376 -0.368707 9.11473 -0.0617853 0.0149137 0.0543285 0.17 -0.02 pose: 0.53112630 -6.11249 -1.02614 0 -0.00612279 0.00243898 0.70007 0.714044 uwb: 0.49933064 963.406 1644.41 +imu_odom_: 1691062923.269003985 0.691924 -0.260968 9.9096 -0.0543285 -0.02024 0.0415453 0.17 -0.02 pose: 0.0 -6.11249 -1.02614 0 -0.00612279 0.00243898 0.70007 0.714044 uwb: 0.0 963.406 1644.41 +imu_odom_: 1691062923.292867352 -0.00957681-0.237026 10.252 -0.0458064 -0.0127832 0.0351537 0.17 -0.02 pose: 0.0 -6.11249 -1.02614 0 -0.00612279 0.00243898 0.70007 0.714044 uwb: 0.50164342 961.731 1644.12 +imu_odom_: 1691062923.317955064 0.129287 -0.351948 10.0892 -0.0628506 -0.0266316 0.0436758 0.17 0.02 pose: 0.52880476 -6.11905 -1.01361 0 -0.00957657 0.00266621 0.700236 0.713842 uwb: 0.0 961.731 1644.12 +imu_odom_: 1691062923.344951333 0.567426 -0.009576819.81383 -0.0585895 -0.00639159 0.04048 0.22 0 pose: 0.58059301 -6.11607 -1.00407 0 -0.0121258 0.00431936 0.700224 0.713807 uwb: 0.49817862 960.024 1644.42 +imu_odom_: 1691062923.360874535 0.531513 -0.311246 10.1586 -0.0681769 0 0.0617853 0.22 0 pose: 0.0 -6.11607 -1.00407 0 -0.0121258 0.00431936 0.700224 0.713807 uwb: 0.0 960.024 1644.42 +imu_odom_: 1691062923.387894135 0.452504 -0.280122 10.137 -0.0319579 0.0138484 0.0255663 0.24 0.02 pose: 0.6929890 -6.11607 -1.00407 0 -0.0114403 0.00422669 0.700234 0.71381 uwb: 0.49948229 958.347 1644.15 +imu_odom_: 1691062923.412882104 0.416591 -0.198719 9.9527 -0.0532632 0 0.0628506 0.24 0.02 pose: 0.0 -6.11607 -1.00407 0 -0.0114403 0.00422669 0.700234 0.71381 uwb: 0.0 958.347 1644.15 +imu_odom_: 1691062923.439897038 0.141258 -0.28491 9.43555 -0.0660464 0.0181095 0.04048 0.22 -0.02 pose: 0.44134484 -6.1131 -0.994521 0 -0.00786263 0.00230733 0.700351 0.713751 uwb: 0.49900983 961.166 1644.25 +imu_odom_: 1691062923.464893755 0.318429 -0.486023 9.65103 -0.0575243 0.0617853 0.0532632 0.22 -0.02 pose: 0.0 -6.1131 -0.994521 0 -0.00786263 0.00230733 0.700351 0.713751 uwb: 0.0 961.166 1644.25 +imu_odom_: 1691062923.491881566 -0.162806 -0.25618 10.0269 -0.0468716 0.00213053 0.052198 0.21 0 pose: 0.51044833 -6.11012 -0.984974 0 -0.0046063 0.0014495 0.700477 0.713659 uwb: 0.49960187 961.705 1644.69 +imu_odom_: 1691062923.507957884 0.0263362 -0.25618 9.50977 -0.0671117 -0.0319579 0.052198 0.21 0 pose: 0.0 -6.11012 -0.984974 0 -0.0046063 0.0014495 0.700477 0.713659 uwb: 0.0 961.705 1644.69 +imu_odom_: 1691062923.525016187 0.591368 -0.0191536 10.2089 -0.0575243 -0.0436758 0.0394148 0.22 -0.02 pose: 0.51955946 -6.11669 -0.972453 0 -0.00890242 0.00187107 0.700608 0.713489 uwb: 0.0 961.705 1644.69 +imu_odom_: 1691062923.549886620 0.328006 -0.0454898 10.0389 -0.0692422 -0.00745685 0.0500674 0.22 -0.02 pose: 0.0 -6.11669 -0.972453 0 -0.00890242 0.00187107 0.700608 0.713489 uwb: 0.49984978 958.89 1644.49 +imu_odom_: 1691062923.576886388 0.447716 -0.191536 10.0772 -0.0596548 -0.00213053 0.0426106 0.23 0 pose: 0.43035547 -6.11373 -0.962903 0 -0.0100209 0.00449117 0.700775 0.713298 uwb: 0.0 958.89 1644.49 +imu_odom_: 1691062923.601893605 0.531513 -0.466869 9.35654 -0.0894822 0.0106526 0.0426106 0.23 0 pose: 0.0 -6.11373 -0.962903 0 -0.0100209 0.00449117 0.700775 0.713298 uwb: 0.50014434 961.69 1644.94 +imu_odom_: 1691062923.628900957 0.107739 -0.361524 9.70849 -0.0660464 0.00319579 0.056459 0.22 -0.02 pose: 0.41856116 -6.11373 -0.962903 0 -0.00609039 0.00448808 0.700913 0.713206 uwb: 0.0 961.69 1644.94 +imu_odom_: 1691062923.654020167 0.337582 -0.28491 9.99579 -0.0617853 0.00852212 0.0330232 0.18 0 pose: 0.52111395 -6.11077 -0.953352 0 -0.00563391 0.00102149 0.701009 0.71313 uwb: 0.50047099 961.117 1645.07 +imu_odom_: 1691062923.679918957 0.699107 0.0311246 10.4986 -0.052198 -0.052198 0.04048 0.18 0 pose: 0.0 -6.11077 -0.953352 0 -0.00563391 0.00102149 0.701009 0.71313 uwb: 0.0 961.117 1645.07 +imu_odom_: 1691062923.705024169 0.146046 -0.299275 9.98382 -0.0308927 -0.0372843 0.0372843 0.18 0 pose: 0.70895682 -6.1152 -0.933855 0 -0.00265803 -0.0002580940.701085 0.713073 uwb: 0.49945313 963.923 1645.45 +imu_odom_: 1691062923.721898149 0.407014 -0.268151 10.0987 -0.0585895 -0.0490022 0.0426106 0.18 0 pose: 0.0 -6.1152 -0.933855 0 -0.00265803 -0.0002580940.701085 0.713073 uwb: 0.0 963.923 1645.45 +imu_odom_: 1691062923.747850020 0.47884 -0.35913 10.0126 -0.0617853 0.0106526 0.0458064 0.18 0 pose: 0.6985012 -6.1144 -0.931289 0 -0.00309266 0.000114987 0.701079 0.713077 uwb: 0.50010934 969.549 1645.93 +imu_odom_: 1691062923.774883911 0.244209 -0.373495 9.85453 -0.0639159 -0.0181095 0.0479369 0.18 0 pose: 0.0 -6.1144 -0.931289 0 -0.00309266 0.000114987 0.701079 0.713077 uwb: 0.0 969.549 1645.93 +imu_odom_: 1691062923.801051894 0.761356 -0.229843 10.4363 -0.0468716 -0.0394148 0.0447411 0.18 0.02 pose: 0.42997050 -6.11145 -0.921736 0 -0.0029461 -0.00130672 0.701098 0.713057 uwb: 0.49949105 965.007 1646.26 +imu_odom_: 1691062923.818112238 0.407014 -0.21069 9.92875 -0.0585895 0.0426106 0.0351537 0.18 0.02 pose: 0.0 -6.11145 -0.921736 0 -0.0029461 -0.00130672 0.701098 0.713057 uwb: 0.0 965.007 1646.26 +imu_odom_: 1691062923.843931117 0.0790087 -0.3304 9.66779 -0.0340885 0.0276969 0.0319579 0.25 0.02 pose: 0.53119629 -6.10849 -0.912182 0 -0.00465533 -0.00283215 0.701229 0.712916 uwb: 0.50001018 968.942 1646.81 +imu_odom_: 1691062923.870930885 0.277727 -0.318429 9.72525 -0.0575243 -0.0330232 0.0468716 0.23 0 pose: 0.60910469 -6.11591 -0.902317 0 -0.0042754 -0.0003484340.701167 0.712984 uwb: 0.0 968.942 1646.81 +imu_odom_: 1691062923.895985349 0.430956 -0.385466 9.69652 -0.0394148 0.0170442 0.0553937 0.23 0 pose: 0.0 -6.11591 -0.902317 0 -0.0042754 -0.0003484340.701167 0.712984 uwb: 0.50075097 967.251 1646.66 +imu_odom_: 1691062923.923108777 0.237026 -0.0526724 10.1849 -0.0436758 -0.0415453 0.0436758 0.23 0 pose: 0.6896642 -6.11509 -0.899676 0 -0.00487415 -0.0002305710.701184 0.712964 uwb: 0.0 967.251 1646.66 +imu_odom_: 1691062923.949023900 0.457293 -0.328006 9.67736 -0.0340885 -0.0170442 0.0372843 0.23 0 pose: 0.0 -6.11509 -0.899676 0 -0.00487415 -0.0002305710.701184 0.712964 uwb: 0.50066640 961.593 1646.61 +imu_odom_: 1691062923.965898755 0.299275 -0.462081 9.75637 -0.0500674 -0.0213053 0.0468716 0.23 0.05 pose: 0.52156893 -6.11214 -0.890122 0 -0.00582465 -0.00145244 0.701376 0.712766 uwb: 0.0 961.593 1646.61 +imu_odom_: 1691062923.990894306 0.459687 -0.23942 9.83777 -0.0490022 -0.0777643 0.0660464 0.23 0.05 pose: 0.0 -6.11214 -0.890122 0 -0.00582465 -0.00145244 0.701376 0.712766 uwb: 0.49977394 958.757 1646.72 +imu_odom_: 1691062924.7900695 0.921768 -0.0622492 9.83299 -0.0575243 -0.00745685 0.0596548 0.18 0 pose: 0.52900017 -6.10919 -0.880566 0 -0.004014 -0.00239179 0.701408 0.712745 uwb: 0.0 958.757 1646.72 +imu_odom_: 1691062924.32823918 0.967257 -0.0574608 9.74919 -0.0511327 0.0234358 0.0383495 0.18 0 pose: 0.0 -6.10919 -0.880566 0 -0.004014 -0.00239179 0.701408 0.712745 uwb: 0.0 958.757 1646.72 +imu_odom_: 1691062924.59830977 0.486023 -0.304064 9.68455 -0.0575243 -0.00532632 0.0447411 0.21 0 pose: 0.76939249 -6.11581 -0.868065 0 0.00200084 -0.00475702 0.701766 0.712389 uwb: 0.50142761 957.592 1647.18 +imu_odom_: 1691062924.85839137 0.311246 -0.411803 9.9096 -0.0745685 -0.015979 0.0607201 0.18 0.02 pose: 0.7099630 -6.11581 -0.868065 0 0.0014163 -0.00517373 0.70178 0.712373 uwb: 0.49798905 957.023 1647.19 +imu_odom_: 1691062924.112873612 0.684742 -0.1652 9.5792 -0.0617853 -0.0149137 0.0372843 0.25 0.02 pose: 0.0 -6.11581 -0.868065 0 0.0014163 -0.00517373 0.70178 0.712373 uwb: 0.0 957.023 1647.19 +imu_odom_: 1691062924.128958388 0.335188 -0.335188 10.1514 -0.0660464 0.00852212 0.0500674 0.25 0.02 pose: 0.52923058 -6.11287 -0.858506 0 -0.00211677 -0.00615071 0.702018 0.71213 uwb: 0.0 957.023 1647.19 +imu_odom_: 1691062924.155954656 0.308852 -0.289698 9.77792 -0.0479369 0.0394148 0.0415453 0.18 0.02 pose: 0.0 -6.11287 -0.858506 0 -0.00211677 -0.00615071 0.702018 0.71213 uwb: 0.49989936 957.02 1647.24 +imu_odom_: 1691062924.181022829 0.507571 -0.342371 9.991 -0.0660464 0.0127832 0.0639159 0.2 0.02 pose: 0.63108050 -6.10994 -0.848945 0 -0.00347385 -0.00298802 0.702091 0.712072 uwb: 0.0 957.02 1647.24 +imu_odom_: 1691062924.205899095 0.447716 -0.433351 9.78031 -0.056459 0.0308927 0.0351537 0.2 0.02 pose: 0.0 -6.10994 -0.848945 0 -0.00347385 -0.00298802 0.702091 0.712072 uwb: 0.50123512 956.998 1647.57 +imu_odom_: 1691062924.219844912 0.0407014 -0.35913 9.76834 -0.0468716 0.0319579 0.04048 0.18 0 pose: 0.7962914 -6.10994 -0.848945 0 -0.00320435 -0.00368605 0.702157 0.712006 uwb: 0.0 956.998 1647.57 +imu_odom_: 1691062924.235847735 0.656011 -0.272939 10.2592 -0.0585895 0 0.0500674 0.18 0 pose: 0.0 -6.10994 -0.848945 0 -0.00320435 -0.00368605 0.702157 0.712006 uwb: 0.49952605 957.022 1647.21 +imu_odom_: 1691062924.260878284 0.672771 -0.0790087 9.85693 -0.0607201 0.00426106 0.0468716 0.18 0 pose: 0.0 -6.10994 -0.848945 0 -0.00320435 -0.00368605 0.702157 0.712006 uwb: 0.0 957.022 1647.21 +imu_odom_: 1691062924.277879715 0.203507 -0.366313 9.31105 -0.0692422 0.0490022 0.0532632 0.18 0 pose: 0.47933222 -6.11657 -0.836456 0 -0.00503496 -0.00623758 0.702251 0.711884 uwb: 0.0 957.022 1647.21 +imu_odom_: 1691062924.304084738 0.215478 -0.521936 9.62708 -0.0330232 -0.00106526 0.0319579 0.18 0 pose: 0.0 -6.11657 -0.836456 0 -0.00503496 -0.00623758 0.702251 0.711884 uwb: 0.50099597 956.437 1647.46 +imu_odom_: 1691062924.329943864 0.37589 -0.35913 9.32302 -0.0447411 -0.0170442 0.0426106 0.18 0 pose: 0.73014518 -6.11073 -0.81733 0 -0.00431888 -0.00469129 0.702442 0.711712 uwb: 0.0 956.437 1647.46 +imu_odom_: 1691062924.354853087 0.383072 -0.167594 9.49301 -0.0447411 -0.0276969 0.0447411 0.19 0 pose: 0.45078554 -6.10859 -0.810325 0 -0.00848589 -0.00447533 0.702415 0.711703 uwb: 0.49890191 958.098 1648.06 +imu_odom_: 1691062924.371813105 1.63524 -0.241814 11.224 -0.0735032 0.076699 0.0479369 0.19 0 pose: 0.0 -6.10859 -0.810325 0 -0.00848589 -0.00447533 0.702415 0.711703 uwb: 0.0 958.098 1648.06 +imu_odom_: 1691062924.396836071 1.02472 -0.409408 9.48822 -0.0745685 0.145941 0.0543285 0.18 0 pose: 0.6951473 -6.10781 -0.807766 0 -0.00784209 -0.00409534 0.702434 0.711694 uwb: 0.50053516 959.782 1648.36 +imu_odom_: 1691062924.422816232 0.253785 -0.337582 9.16022 -0.0543285 0.00532632 0.0351537 0.18 0 pose: 0.0 -6.10781 -0.807766 0 -0.00784209 -0.00409534 0.702434 0.711694 uwb: 0.0 959.782 1648.36 +imu_odom_: 1691062924.447867780 0.775721 -0.342371 9.89763 -0.0639159 -0.0394148 0.056459 0.18 0 pose: 0.41968692 -6.10781 -0.807766 0 -0.0054532 -0.00405077 0.702552 0.7116 uwb: 0.49915566 960.345 1648.46 +imu_odom_: 1691062924.464846463 0.392649 -0.423774 9.2488 -0.052198 0.00426106 0.0458064 0.18 0 pose: 0.0 -6.10781 -0.807766 0 -0.0054532 -0.00405077 0.702552 0.7116 uwb: 0.0 960.345 1648.46 +imu_odom_: 1691062924.489825682 0.124498 -0.181959 9.9096 -0.0276969 0.02024 0.0372843 0.19 0 pose: 0.52114022 -6.11445 -0.795284 0 -0.00657701 -0.00330384 0.702647 0.711501 uwb: 0.50041558 960.352 1648.34 +imu_odom_: 1691062924.516819617 -0.167594 -0.428562 9.4978 -0.0553937 -0.00639159 0.0479369 0.19 0 pose: 0.0 -6.11445 -0.795284 0 -0.00657701 -0.00330384 0.702647 0.711501 uwb: 0.0 960.352 1648.34 +imu_odom_: 1691062924.542080570 0.102951 -0.282516 9.72764 -0.056459 -0.0276969 0.052198 0.19 0.02 pose: 0.41963734 -6.11154 -0.785718 0 -0.00662179 -0.00483354 0.702771 0.711369 uwb: 0.50104846 961.45 1649 +imu_odom_: 1691062924.567952237 -0.035913 -0.328006 10.1801 -0.0436758 -0.00213053 0.0394148 0.23 0 pose: 0.51020918 -6.10863 -0.776151 0 -0.0092311 -0.0006877980.702888 0.711241 uwb: 0.0 961.45 1649 +imu_odom_: 1691062924.593932398 0.0263362 -0.275333 9.68694 -0.0649811 -0.0298274 0.052198 0.23 0 pose: 0.0 -6.10863 -0.776151 0 -0.0092311 -0.0006877980.702888 0.711241 uwb: 0.49856652 959.746 1648.94 +imu_odom_: 1691062924.610797921 0.670376 -0.0502782 10.1801 -0.0692422 -0.0127832 0.0426106 0.23 0 pose: 0.69969695 -6.11529 -0.763676 0 -0.0125193 0.00485616 0.703093 0.710971 uwb: 0.0 959.746 1648.94 +imu_odom_: 1691062924.636849827 0.785298 -0.40462 9.90002 -0.0798948 -0.0340885 0.0479369 0.23 0 pose: 0.8002870 -6.11529 -0.763676 0 -0.0117691 0.00455625 0.703111 0.710969 uwb: 0.49915566 957.447 1649.27 +imu_odom_: 1691062924.660980929 0.926556 -0.318429 9.92397 -0.056459 0.00532632 0.0436758 0.25 0 pose: 0.34914559 -6.11239 -0.754107 0 -0.00938042 0.00160298 0.703215 0.710914 uwb: 0.0 957.447 1649.27 +imu_odom_: 1691062924.676791263 0.215478 -0.1652 10.1897 -0.076699 -0.0181095 0.0532632 0.25 0 pose: 0.0 -6.11239 -0.754107 0 -0.00938042 0.00160298 0.703215 0.710914 uwb: 0.0 957.447 1649.27 +imu_odom_: 1691062924.703855777 0.323217 -0.071826 9.9503 -0.0735032 0.0170442 0.0436758 0.18 -0.02 pose: 0.6961680 -6.11239 -0.754107 0 -0.00891262 0.00113198 0.703225 0.71091 uwb: 0.50018809 954.587 1649.42 +imu_odom_: 1691062924.729850229 0.481235 -0.517148 9.2081 -0.072438 -0.0468716 0.0468716 0.18 -0.02 pose: 0.0 -6.11239 -0.754107 0 -0.00891262 0.00113198 0.703225 0.71091 uwb: 0.0 954.587 1649.42 +imu_odom_: 1691062924.755796267 0.519542 -0.414197 9.47864 -0.0394148 -0.0106526 0.0287621 0.23 0 pose: 0.41096369 -6.10949 -0.744536 0 -0.00672388 0.00174467 0.703356 0.710804 uwb: 0.49973020 948.917 1649.05 +imu_odom_: 1691062924.780936185 0.023942 -0.287304 10.082 -0.0298274 -0.0490022 0.0330232 0.23 0 pose: 0.0 -6.10949 -0.744536 0 -0.00672388 0.00174467 0.703356 0.710804 uwb: 0.0 948.917 1649.05 +imu_odom_: 1691062924.798862146 0.409408 -0.25618 9.98382 -0.0660464 -0.0607201 0.04048 0.22 0 pose: 0.51888284 -6.1066 -0.734964 0 -0.00549235 -0.0009048950.703425 0.710747 uwb: 0.50103972 947.26 1648.42 +imu_odom_: 1691062924.822799592 0.665588 -0.308852 10.0844 -0.0703074 -0.00852212 0.0447411 0.22 0 pose: 0.0 -6.1066 -0.734964 0 -0.00549235 -0.0009048950.703425 0.710747 uwb: 0.0 947.26 1648.42 +imu_odom_: 1691062924.848801335 0.306458 -0.433351 10.07 -0.072438 -0.0149137 0.0490022 0.23 0 pose: 0.52062983 -6.11327 -0.722499 0 -0.00499374 -0.00123866 0.703302 0.710873 uwb: 0.49862485 943.868 1648.11 +imu_odom_: 1691062924.865842723 0.521936 -0.169988 10.343 -0.0596548 -0.0234358 0.0436758 0.23 0 pose: 0.0 -6.11327 -0.722499 0 -0.00499374 -0.00123866 0.703302 0.710873 uwb: 0.0 943.868 1648.11 +imu_odom_: 1691062924.882805948 -0.0143652 -0.385466 9.13388 -0.0713727 0.0426106 0.0426106 0.25 0 pose: 0.76983580 -6.11038 -0.712927 0 -0.00322911 -0.00396535 0.703457 0.710719 uwb: 0.0 943.868 1648.11 +imu_odom_: 1691062924.909035469 0.059855 -0.124498 10.0628 -0.056459 -0.0191748 0.0447411 0.25 0 pose: 0.7015635 -6.11038 -0.712927 0 -0.00396084 -0.00348743 0.703466 0.710709 uwb: 0.50123220 939.901 1647.83 +imu_odom_: 1691062924.934910053 0.373495 -0.287304 9.97185 -0.0447411 -0.0255663 0.0330232 0.25 0 pose: 0.36177111 -6.10748 -0.703355 0 -0.0054221 -0.0003922650.703538 0.710637 uwb: 0.50009185 938.238 1647.34 +imu_odom_: 1691062924.959770862 0.395043 -0.215478 9.99579 -0.0553937 -0.036219 0.0543285 0.17 0.02 pose: 0.0 -6.10748 -0.703355 0 -0.0054221 -0.0003922650.703538 0.710637 uwb: 0.0 938.238 1647.34 +imu_odom_: 1691062924.976832957 0.409408 -0.378284 10.0293 -0.0735032 -0.0181095 0.0596548 0.21 0 pose: 0.50735393 -6.11417 -0.690891 0 -0.000755413-0.0006091890.703614 0.710581 uwb: 0.0 938.238 1647.34 +imu_odom_: 1691062925.2767912 0.45011 -0.371101 9.92875 -0.0575243 0.00532632 0.0298274 0.21 0 pose: 0.0 -6.11417 -0.690891 0 -0.000755413-0.0006091890.703614 0.710581 uwb: 0.49915565 945.552 1648.33 +imu_odom_: 1691062925.28898565 0.533907 -0.351948 9.96946 -0.0490022 -0.00106526 0.0415453 0.25 0.02 pose: 0.42997050 -6.11209 -0.684009 0 -0.00298066 -0.00442061 0.703634 0.710542 uwb: 0.0 945.552 1648.33 +imu_odom_: 1691062925.54782190 0.368707 -0.229843 10.5991 0.0223706 -0.0383495 0.00958738 0.18 0.02 pose: 0.26130653 -6.11128 -0.681316 0 -0.00174641 -0.00665309 0.703637 0.710526 uwb: 0.50038642 943.828 1648.46 +imu_odom_: 1691062925.71898823 0.0454898 -0.241814 9.46188 -0.00745685 -0.0436758 0.0468716 0.23 -0.02 pose: 0.0 -6.11128 -0.681316 0 -0.00174641 -0.00665309 0.703637 0.710526 uwb: 0.0 943.828 1648.46 +imu_odom_: 1691062925.98042308 0.488417 -0.0167594 9.77553 -0.052198 0.00319579 0.0777643 0.23 -0.02 pose: 0.33028752 -6.10839 -0.671743 0 -0.00093418 -0.00310185 0.703402 0.710785 uwb: 0.50046225 943.282 1648.18 +imu_odom_: 1691062925.123798482 0.426168 -0.277727 9.59596 -0.0745685 0.00958738 0.0415453 0.18 -0.02 pose: 0.0 -6.10839 -0.671743 0 -0.00093418 -0.00310185 0.703402 0.710785 uwb: 0.0 943.282 1648.18 +imu_odom_: 1691062925.148859363 0.483629 -0.112527 10.1778 -0.0660464 0.0170442 0.0308927 0.19 0 pose: 0.61871165 -6.11241 -0.660082 0 -0.00123239 -0.00273197 0.703803 0.710388 uwb: 0.49996353 939.321 1647.8 +imu_odom_: 1691062925.174786736 0.411803 -0.462081 9.9096 -0.072438 -0.0149137 0.052198 0.19 0 pose: 0.0 -6.11241 -0.660082 0 -0.00123239 -0.00273197 0.703803 0.710388 uwb: 0.0 939.321 1647.8 +imu_odom_: 1691062925.191770669 -0.122104 -0.445322 9.93594 -0.0372843 0.00958738 0.036219 0.18 0.02 pose: 0.7055591 -6.11507 -0.659282 0 -0.000667946-0.00241395 0.703781 0.710412 uwb: 0.49983812 938.193 1647.67 +imu_odom_: 1691062925.217873323 0.457293 -0.351948 9.33499 -0.072438 -0.0287621 0.052198 0.18 0.02 pose: 0.0 -6.11507 -0.659282 0 -0.000667946-0.00241395 0.703781 0.710412 uwb: 0.0 938.193 1647.67 +imu_odom_: 1691062925.243765697 0.0143652 -0.275333 9.86411 -0.0458064 -0.0106526 0.0468716 0.19 0.02 pose: 0.50990296 -6.11219 -0.649707 0 -0.00191521 -0.00306328 0.703833 0.710356 uwb: 0.49858986 935.861 1648.13 +imu_odom_: 1691062925.269001568 0.646434 -0.251391 10.2304 -0.0511327 -0.0276969 0.0479369 0.19 0.02 pose: 0.0 -6.11219 -0.649707 0 -0.00191521 -0.00306328 0.703833 0.710356 uwb: 0.0 935.861 1648.13 +imu_odom_: 1691062925.293778383 0.378284 -0.0023942 10.4052 -0.04048 -0.0394148 0.0415453 0.18 -0.02 pose: 0.43979326 -6.1093 -0.640131 0 -0.00338462 -0.00481391 0.703953 0.710222 uwb: 0.50019394 933.03 1647.84 +imu_odom_: 1691062925.310947805 0.251391 -0.418985 9.29429 -0.0639159 0.0245011 0.0490022 0.18 -0.02 pose: 0.0 -6.1093 -0.640131 0 -0.00338462 -0.00481391 0.703953 0.710222 uwb: 0.0 933.03 1647.84 +imu_odom_: 1691062925.334021968 0.543484 -0.390255 9.7037 -0.0617853 -0.00106526 0.0596548 0.19 0.02 pose: 0.50068974 -6.10643 -0.630554 0 -0.00142619 -0.00424255 0.704084 0.710103 uwb: 0.50108346 937.571 1648.13 +imu_odom_: 1691062925.358745702 0.555455 -0.246603 10.0149 -0.052198 -0.00852212 0.0479369 0.19 0.02 pose: 0.0 -6.10643 -0.630554 0 -0.00142619 -0.00424255 0.704084 0.710103 uwb: 0.0 937.571 1648.13 +imu_odom_: 1691062925.375835795 0.823605 -0.483629 9.94551 -0.0511327 0.0276969 0.0394148 0.22 0 pose: 0.40904463 -6.10643 -0.630554 0 -0.00204744 -0.00322595 0.7042 0.709992 uwb: 0.0 937.571 1648.13 +imu_odom_: 1691062925.400867219 0.806846 -0.339977 10.1251 -0.0287621 -0.0106526 0.0426106 0.22 0 pose: 0.0 -6.10643 -0.630554 0 -0.00204744 -0.00322595 0.7042 0.709992 uwb: 0.49945023 930.78 1647.49 +imu_odom_: 1691062925.427990939 0.651223 -0.229843 10.2376 -0.0490022 0.0255663 0.0426106 0.18 0.02 pose: 0.49089031 -6.11313 -0.618103 0 0.00059365 -0.00620139 0.704374 0.709802 uwb: 0.0 930.78 1647.49 +imu_odom_: 1691062925.443808856 -0.0191536 -0.23942 9.84735 -0.0330232 0.036219 0.0383495 0.18 0.02 pose: 0.0 -6.11313 -0.618103 0 0.00059365 -0.00620139 0.704374 0.709802 uwb: 0.49902733 925.122 1646.9 +imu_odom_: 1691062925.469931342 0.19393 -0.122104 10.2232 -0.0490022 -0.00958738 0.0436758 0.18 -0.02 pose: 0.68887675 -6.1074 -0.598942 0 0.00454959 -0.00803456 0.704388 0.709755 uwb: 0.0 925.122 1646.9 +imu_odom_: 1691062925.494891604 0.368707 -0.361524 9.8282 -0.056459 0.00745685 0.0372843 0.19 -0.02 pose: 0.35157504 -6.1074 -0.598942 0 0.00292465 -0.00477324 0.704442 0.709739 uwb: 0.50075682 925.109 1647.02 +imu_odom_: 1691062925.520881390 0.754174 -0.213084 9.92397 -0.056459 -0.0117179 0.056459 0.19 -0.02 pose: 0.0 -6.1074 -0.598942 0 0.00292465 -0.00477324 0.704442 0.709739 uwb: 0.0 925.109 1647.02 +imu_odom_: 1691062925.545859151 0.354342 -0.277727 10.1658 -0.0319579 0.0223706 0.0223706 0.21 0 pose: 0.6815564 -6.1074 -0.598942 0 0.00221404 -0.00469744 0.70444 0.709744 uwb: 0.50180967 925.136 1646.79 +imu_odom_: 1691062925.571791482 0.588974 -0.399832 9.56484 -0.0607201 -0.00745685 0.0543285 0.21 0 pose: 0.0 -6.1074 -0.598942 0 0.00221404 -0.00469744 0.70444 0.709744 uwb: 0.0 925.136 1646.79 +imu_odom_: 1691062925.588764623 0.536301 -0.0335188 10.0844 -0.0394148 -0.0138484 0.0383495 0.19 -0.02 pose: 0.51250155 -6.11411 -0.586496 0 0.00200094 -0.00542122 0.704537 0.709644 uwb: 0.0 925.136 1646.79 +imu_odom_: 1691062925.612875601 0.258574 -0.213084 9.82102 -0.056459 -0.0436758 0.0479369 0.19 -0.02 pose: 0.0 -6.11411 -0.586496 0 0.00200094 -0.00542122 0.704537 0.709644 uwb: 0.0 925.136 1646.79 +imu_odom_: 1691062925.639014420 1.15401 -0.19393 10.2711 -0.0468716 -0.0138484 0.0426106 0.19 0.02 pose: 0.50743560 -6.11125 -0.576915 0 0.00104378 -0.00617187 0.704561 0.709615 uwb: 0.99875463 922.22 1647.2 +imu_odom_: 1691062925.664728888 0.694318 -0.186748 9.59596 -0.0575243 0.00532632 0.04048 0.19 0.02 pose: 0.0 -6.11125 -0.576915 0 0.00104378 -0.00617187 0.704561 0.709615 uwb: 0.0 922.22 1647.2 +imu_odom_: 1691062925.689790061 0.562637 -0.241814 9.45231 -0.0798948 -0.0575243 0.0490022 0.2 0 pose: 0.41023164 -6.10839 -0.567333 0 0.0015062 -0.00431218 0.704641 0.709549 uwb: 0.49863069 921.648 1647.18 +imu_odom_: 1691062925.706731996 0.464475 -0.368707 10.0317 -0.0426106 0.0106526 0.0372843 0.2 0 pose: 0.0 -6.10839 -0.567333 0 0.0015062 -0.00431218 0.704641 0.709549 uwb: 0.0 921.648 1647.18 +imu_odom_: 1691062925.732740447 0.253785 -0.234632 10.137 -0.0511327 0.00639159 0.052198 0.18 -0.02 pose: 0.50996420 -6.10553 -0.557751 0 0.00502298 -0.00728505 0.704663 0.709487 uwb: 0.0 921.648 1647.18 +imu_odom_: 1691062925.757761081 0.59855 -0.289698 9.69173 -0.0660464 0.00532632 0.0372843 0.23 0 pose: 0.26013118 -6.11511 -0.554892 0 0.00343453 -0.00914585 0.704729 0.709409 uwb: 0.50001311 921.625 1647.36 +imu_odom_: 1691062925.782919081 0.610521 -0.160412 10.149 -0.0745685 -0.00852212 0.0596548 0.23 0 pose: 0.35967124 -6.11225 -0.545308 0 0.00101386 -0.00648743 0.704867 0.709309 uwb: 0.0 921.625 1647.36 +imu_odom_: 1691062925.798732623 0.213084 -0.339977 9.87608 -0.0596548 0.0308927 0.0340885 0.23 0 pose: 0.0 -6.11225 -0.545308 0 0.00101386 -0.00648743 0.704867 0.709309 uwb: 0.50120596 927.249 1648.28 +imu_odom_: 1691062925.824847818 0.648829 -0.0454898 10.5249 -0.0426106 -0.0426106 0.036219 0.19 0 pose: 0.7163502 -6.11225 -0.545308 0 0.00146061 -0.00700506 0.704856 0.709314 uwb: 0.0 927.249 1648.28 +imu_odom_: 1691062925.849777457 0.536301 -0.186748 10.0963 -0.036219 -0.0500674 0.0330232 0.2 -0.02 pose: 0.48837920 -6.1094 -0.535724 0 0.00417385 -0.0071362 0.704983 0.709176 uwb: 0.49995478 924.948 1648.4 +imu_odom_: 1691062925.871707187 0.548272 -0.201113 9.84735 -0.04048 -0.0245011 0.0308927 0.2 -0.02 pose: 0.0 -6.1094 -0.535724 0 0.00417385 -0.0071362 0.704983 0.709176 uwb: 0.0 924.948 1648.4 +imu_odom_: 1691062925.887728383 0.802058 -0.126893 9.73482 -0.0735032 -0.0106526 0.036219 0.19 0 pose: 0.43049839 -6.10655 -0.526139 0 0.00614088 -0.00525429 0.704906 0.709255 uwb: 0.49949105 925.485 1648.72 +imu_odom_: 1691062925.913872743 0.402226 -0.320823 9.75398 -0.0671117 -0.0213053 0.0490022 0.19 0 pose: 0.0 -6.10655 -0.526139 0 0.00614088 -0.00525429 0.704906 0.709255 uwb: 0.0 925.485 1648.72 +imu_odom_: 1691062925.939735078 0.328006 -0.222661 10.3022 -0.0543285 -0.0255663 0.0436758 0.19 0 pose: 0.46955612 -6.11328 -0.513701 0 0.006274 -0.00610103 0.704788 0.709364 uwb: 0.0 925.485 1648.72 +imu_odom_: 1691062925.956784048 0.873884 -0.323217 9.58638 -0.0585895 -0.00745685 0.0319579 0.19 0 pose: 0.0 -6.11328 -0.513701 0 0.006274 -0.00610103 0.704788 0.709364 uwb: 0.0 925.485 1648.72 +imu_odom_: 1691062925.981855429 0.732626 -0.234632 9.60314 -0.0415453 0 0.0298274 0.19 0 pose: 0.42143100 -6.11042 -0.504118 0 0.00414954 -0.00572346 0.70489 0.709281 uwb: 0.0 925.485 1648.72 +imu_odom_: 1691062926.7734096 0.37589 -0.059855 9.87369 -0.0532632 -0.0127832 0.0468716 0.19 0 pose: 0.0 -6.11042 -0.504118 0 0.00414954 -0.00572346 0.70489 0.709281 uwb: 0.99925627 927.183 1648.96 +imu_odom_: 1691062926.33895372 0.0670376 -0.323217 9.59117 -0.0532632 0.0319579 0.0500674 0.19 0 pose: 0.42983051 -6.11042 -0.504118 0 0.00447988 -0.00637596 0.704844 0.709319 uwb: 0.50137220 930.521 1649.96 +imu_odom_: 1691062926.58782722 0.387861 -0.167594 9.65342 -0.036219 -0.0319579 0.0426106 0.19 0 pose: 0.0 -6.11042 -0.504118 0 0.00447988 -0.00637596 0.704844 0.709319 uwb: 0.0 930.521 1649.96 +imu_odom_: 1691062926.74791961 0.507571 -0.215478 10.2256 -0.0255663 -0.0149137 0.0319579 0.19 0 pose: 0.51850079 -6.10757 -0.494534 0 0.00494552 -0.0044502 0.704874 0.709301 uwb: 0.0 930.521 1649.96 +imu_odom_: 1691062926.100737708 0.452504 -0.493206 9.80904 -0.0607201 -0.0255663 0.052198 0.19 0 pose: 0.0 -6.10757 -0.494534 0 0.00494552 -0.0044502 0.704874 0.709301 uwb: 0.49906525 922.599 1649.02 +imu_odom_: 1691062926.125845254 0.208296 -0.155623 9.61511 -0.0479369 -0.0436758 0.0617853 0.19 0 pose: 0.49096322 -6.1143 -0.482098 0 0.00301795 -0.00152858 0.704965 0.709234 uwb: 0.0 922.599 1649.02 +imu_odom_: 1691062926.142706985 0.790087 -0.268151 10.0389 -0.0596548 -0.0351537 0.0575243 0.19 0 pose: 0.0 -6.1143 -0.482098 0 0.00301795 -0.00152858 0.704965 0.709234 uwb: 0.50130221 923.131 1649.39 +imu_odom_: 1691062926.160783146 0 -0.100556 9.63427 -0.0436758 0.0266316 0.0415453 0.21 -0.02 pose: 0.69136453 -6.10859 -0.462928 0 0.00150166 -0.0030368 0.705313 0.708888 uwb: 0.0 923.131 1649.39 +imu_odom_: 1691062926.183832811 0.337582 -0.158017 9.58399 -0.0777643 0.00213053 0.0596548 0.21 -0.02 pose: 0.0 -6.10859 -0.462928 0 0.00150166 -0.0030368 0.705313 0.708888 uwb: 0.49884944 922.499 1649.86 +imu_odom_: 1691062926.207760633 0.445322 -0.150835 9.9527 -0.0628506 0.0106526 0.0596548 0.19 0.02 pose: 0.49876486 -6.10657 -0.456111 0 0.000398351 0.000147398 0.705547 0.708663 uwb: 0.0 922.499 1649.86 +imu_odom_: 1691062926.224687694 0.629675 -0.246603 9.94073 -0.0692422 -0.0372843 0.056459 0.19 0.02 pose: 0.0 -6.10657 -0.456111 0 0.000398351 0.000147398 0.705547 0.708663 uwb: 0.0 922.499 1649.86 +imu_odom_: 1691062926.249751784 0.509965 -0.21069 9.83059 -0.0543285 0.0383495 0.0330232 0.18 0 pose: 0.6951472 -6.10575 -0.45334 0 0.00102821 0.00029012 0.705597 0.708613 uwb: 0.50036017 923.02 1650.32 +imu_odom_: 1691062926.267690578 0.122104 -0.232238 9.92157 -0.0713727 -0.00106526 0.0500674 0.23 0.02 pose: 0.0 -6.10575 -0.45334 0 0.00102821 0.00029012 0.705597 0.708613 uwb: 0.0 923.02 1650.32 +imu_odom_: 1691062926.292684380 -0.0383072 -0.0814029 9.87608 -0.0479369 -0.0149137 0.0426106 0.18 0.02 pose: 0.76906295 -6.11251 -0.440919 0 0.00215841 -0.00212358 0.705832 0.708373 uwb: 0.49740285 924.121 1650.76 +imu_odom_: 1691062926.317728345 0.464475 -0.339977 9.87369 -0.0671117 -0.0223706 0.0553937 0.25 0.02 pose: 0.0 -6.11251 -0.440919 0 0.00215841 -0.00212358 0.705832 0.708373 uwb: 0.0 924.121 1650.76 +imu_odom_: 1691062926.341686791 0.244209 -0.354342 9.79228 -0.036219 0.00852212 0.0340885 0.25 0.02 pose: 0.31016369 -6.10968 -0.431327 0 0.000809531 -0.0005904560.705895 0.708316 uwb: 0.50043310 920.145 1650.28 +imu_odom_: 1691062926.368682477 0.723049 -0.244209 9.991 -0.0703074 -0.0213053 0.0500674 0.19 -0.02 pose: 0.42979844 -6.10773 -0.42471 0 -0.00224708 -0.00154449 0.705958 0.708249 uwb: 0.0 920.145 1650.28 +imu_odom_: 1691062926.393723234 0.859518 -0.272939 9.84496 -0.0543285 -0.0223706 0.0553937 0.19 -0.02 pose: 0.8041076 -6.10686 -0.421735 0 -0.00163375 -0.00216415 0.705986 0.70822 uwb: 0.50308418 919.542 1650.49 +imu_odom_: 1691062926.411831185 0.275333 -0.208296 9.90721 -0.0713727 -0.00852212 0.0458064 0.2 0 pose: 0.0 -6.10686 -0.421735 0 -0.00163375 -0.00216415 0.705986 0.70822 uwb: 0.0 919.542 1650.49 +imu_odom_: 1691062926.435680554 0.603339 -0.328006 9.8282 -0.0468716 0.00532632 0.0319579 0.2 0 pose: 0.43995367 -6.10686 -0.421735 0 0.00172364 -0.00557561 0.70618 0.708008 uwb: 0.49660082 912.725 1649.71 +imu_odom_: 1691062926.462698113 0.818817 -0.304064 9.94312 -0.036219 -0.0330232 0.0415453 0.23 0.02 pose: 0.41957320 -6.1108 -0.410154 0 0.00147508 -0.00625351 0.706153 0.70803 uwb: 0.0 912.725 1649.71 +imu_odom_: 1691062926.478833637 0.505177 -0.124498 9.92636 -0.0511327 0.0607201 0.0436758 0.23 0.02 pose: 0.0 -6.1108 -0.410154 0 0.00147508 -0.00625351 0.706153 0.70803 uwb: 0.0 912.725 1649.71 +imu_odom_: 1691062926.495814653 0.565032 -0.179565 10.0844 -0.0575243 -0.0106526 0.04048 0.23 0 pose: 0.0 -6.1108 -0.410154 0 0.00147508 -0.00625351 0.706153 0.70803 uwb: 0.50001603 914.413 1650.05 +imu_odom_: 1691062926.520739043 0.208296 -0.347159 9.85214 -0.0447411 0 0.0319579 0.23 0 pose: 0.50156177 -6.11082 -0.399728 0 0.00454998 -0.00613905 0.706176 0.707996 uwb: 0.0 914.413 1650.05 +imu_odom_: 1691062926.547748728 0.665588 -0.181959 9.87129 -0.0692422 -0.0490022 0.0447411 0.23 0 pose: 0.34902312 -6.10882 -0.392926 0 0.00318849 -0.00445153 0.706122 0.708069 uwb: 0.50042434 916.632 1650.76 +imu_odom_: 1691062926.563758259 0.392649 -0.335188 9.32302 -0.0575243 -0.00532632 0.036219 0.23 0 pose: 0.6960221 -6.108 -0.390133 0 0.00388292 -0.00491719 0.70613 0.708054 uwb: 0.0 916.632 1650.76 +imu_odom_: 1691062926.581757716 0.768539 -0.282516 10.2256 -0.0575243 -0.0223706 0.0543285 0.23 0 pose: 0.0 -6.108 -0.390133 0 0.00388292 -0.00491719 0.70613 0.708054 uwb: 0.0 916.632 1650.76 +imu_odom_: 1691062926.605670955 0.363919 -0.351948 9.93833 -0.0340885 0.0266316 0.0245011 0.23 0 pose: 0.44028033 -6.10518 -0.380539 0 0.00478658 -0.0067052 0.706181 0.707983 uwb: 0.49935399 911.527 1650.04 +imu_odom_: 1691062926.622683178 0.189142 0.0814029 10.2328 -0.0351537 -0.0330232 0.0468716 0.23 0.02 pose: 0.0 -6.10518 -0.380539 0 0.00478658 -0.0067052 0.706181 0.707983 uwb: 0.0 911.527 1650.04 +imu_odom_: 1691062926.647735019 0.37589 -0.0909797 9.42597 -0.0458064 -0.0276969 0.0436758 0.23 0.02 pose: 0.40962502 -6.11477 -0.37772 0 0.0031763 -0.00570653 0.706143 0.70804 uwb: 0.50045934 908.668 1649.79 +imu_odom_: 1691062926.674679374 0.306458 -0.263362 10.1107 -0.0607201 -0.0319579 0.0479369 0.22 0 pose: 0.0 -6.11477 -0.37772 0 0.0031763 -0.00570653 0.706143 0.70804 uwb: 0.0 908.668 1649.79 +imu_odom_: 1691062926.699673176 0.897826 -0.158017 10.0389 -0.0415453 -0.0308927 0.0383495 0.22 0 pose: 0.42030232 -6.11195 -0.368126 0 0.00313228 -0.00214694 0.706229 0.707974 uwb: 0.50021435 908.691 1649.63 +imu_odom_: 1691062926.726760440 0.488417 -0.205901 9.65582 -0.0596548 -0.0127832 0.0468716 0.23 0 pose: 0.44953145 -6.10913 -0.358531 0 0.00380903 -0.00319634 0.706273 0.707922 uwb: 0.0 908.691 1649.63 +imu_odom_: 1691062926.752672939 0.217872 -0.0143652 9.80665 -0.0660464 -0.0383495 0.0490022 0.2 0 pose: 0.7003386 -6.10913 -0.358531 0 0.00334264 -0.00271525 0.706293 0.707906 uwb: 0.50103681 908.146 1649.38 +imu_odom_: 1691062926.769658913 0.414197 -0.517148 9.77553 -0.0553937 -0.00106526 0.0426106 0.24 0 pose: 0.0 -6.10913 -0.358531 0 0.00334264 -0.00271525 0.706293 0.707906 uwb: 0.0 908.146 1649.38 +imu_odom_: 1691062926.786679011 0.806846 -0.222661 9.92875 -0.0532632 -0.0447411 0.0436758 0.24 0 pose: 0.45996377 -6.10632 -0.348936 0 0.0019775 0.000833785 0.706431 0.707778 uwb: 0.49813197 902.471 1648.63 +imu_odom_: 1691062926.803733814 0.328006 -0.306458 9.59117 -0.0703074 0.00106526 0.0575243 0.27 -0.02 pose: 0.0 -6.10632 -0.348936 0 0.0019775 0.000833785 0.706431 0.707778 uwb: 0.0 902.471 1648.63 +imu_odom_: 1691062926.827723175 0.320823 -0.141258 9.58399 -0.0713727 -0.0340885 0.0436758 0.27 -0.02 pose: 0.41011208 -6.10351 -0.339339 0 0.00140915 -0.00173555 0.706521 0.707689 uwb: 0.0 902.471 1648.63 +imu_odom_: 1691062926.853641506 0.395043 -0.277727 10.2711 -0.0777643 -0.0106526 0.0479369 0.23 0.02 pose: 0.0 -6.10351 -0.339339 0 0.00140915 -0.00173555 0.706521 0.707689 uwb: 0.50044768 897.91 1648.28 +imu_odom_: 1691062926.876671339 0.531513 -0.368707 10.2328 -0.0394148 -0.00852212 0.0255663 0.23 0.02 pose: 0.41971318 -6.1131 -0.336529 0 -0.000410951-0.0002174470.706645 0.707568 uwb: 0.0 897.91 1648.28 +imu_odom_: 1691062926.892658121 0.529119 -0.304064 10.6231 -0.0628506 -0.0458064 0.052198 0.18 0 pose: 0.41015874 -6.1103 -0.326931 0 -0.00145442 -0.00375557 0.706575 0.707627 uwb: 0.50069849 900.696 1649 +imu_odom_: 1691062926.919664890 0.682347 -0.268151 10.3693 -0.036219 -0.00426106 0.0308927 0.18 0 pose: 0.8141695 -6.1103 -0.326931 0 -0.000860773-0.004544 0.706608 0.70759 uwb: 0.0 900.696 1649 +imu_odom_: 1691062926.944658400 0.600945 -0.148441 9.42118 -0.0681769 -0.00745685 0.0511327 0.18 0 pose: 0.34851856 -6.10749 -0.317333 0 0.00203917 -0.00676343 0.70654 0.707638 uwb: 0.49872694 897.281 1648.58 +imu_odom_: 1691062926.961860778 -0.105345 -0.306458 10.2065 -0.0383495 0.015979 0.036219 0.18 0 pose: 0.0 -6.10749 -0.317333 0 0.00203917 -0.00676343 0.70654 0.707638 uwb: 0.0 897.281 1648.58 +imu_odom_: 1691062926.987872438 0.107739 -0.169988 10.0676 -0.0639159 -0.0138484 0.0511327 0.18 0 pose: 0.42195888 -6.10468 -0.307736 0 0.00305002 -0.00504509 0.706617 0.707571 uwb: 0.50022602 895.534 1648.61 +imu_odom_: 1691062927.13726024 0.857124 -0.191536 10.2185 -0.052198 -0.00639159 0.0394148 0.18 0 pose: 0.0 -6.10468 -0.307736 0 0.00305002 -0.00504509 0.706617 0.707571 uwb: 0.0 895.534 1648.61 +imu_odom_: 1691062927.30779078 0.454898 -0.237026 9.90002 -0.0639159 0.0276969 0.0372843 0.17 0.02 pose: 0.51865246 -6.11224 -0.297937 0 0.00364365 -0.00467756 0.70672 0.707468 uwb: 0.0 895.534 1648.61 +imu_odom_: 1691062927.56795696 0.371101 -0.368707 9.69412 -0.0298274 -0.0223706 0.0266316 0.17 0.02 pose: 0.0 -6.11224 -0.297937 0 0.00364365 -0.00467756 0.70672 0.707468 uwb: 0.50110972 890.44 1647.8 +imu_odom_: 1691062927.82794815 0.663194 -0.361524 9.88087 -0.0575243 -0.00852212 0.04048 0.25 -0.02 pose: 0.24076272 -6.11148 -0.295331 0 0.00145984 -0.00355438 0.706685 0.707518 uwb: 0.0 890.44 1647.8 +imu_odom_: 1691062927.106789425 0.213084 -0.0885855 10.3358 -0.0330232 -0.00852212 0.0617853 0.23 0.02 pose: 0.0 -6.11148 -0.295331 0 0.00145984 -0.00355438 0.706685 0.707518 uwb: 0.49875903 890.959 1648.17 +imu_odom_: 1691062927.129673433 0.337582 -0.299275 9.52413 -0.0415453 -0.0308927 0.0436758 0.23 0.02 pose: 0.51878953 -6.10867 -0.285732 0 0.00075878 -0.0054828 0.706658 0.707534 uwb: 0.0 890.959 1648.17 +imu_odom_: 1691062927.154655569 0.407014 -0.268151 9.65342 -0.0276969 0.0170442 0.0276969 0.17 0 pose: 0.39992184 -6.10673 -0.279096 0 -0.00112169 -0.00280881 0.70684 0.707367 uwb: 0.50047101 884.826 1646.66 +imu_odom_: 1691062927.171726997 0.253785 -0.3304 9.93354 -0.0681769 -0.015979 0.0490022 0.17 0 pose: 0.0 -6.10673 -0.279096 0 -0.00112169 -0.00280881 0.70684 0.707367 uwb: 0.0 884.826 1646.66 +imu_odom_: 1691062927.187825773 0.373495 -0.205901 9.73482 -0.0415453 -0.00852212 0.0436758 0.17 0 pose: 0.0 -6.10673 -0.279096 0 -0.00112169 -0.00280881 0.70684 0.707367 uwb: 0.50029311 887.061 1647.17 +imu_odom_: 1691062927.213826350 0.770933 -0.294487 9.84496 -0.0532632 -0.0447411 0.0596548 0.18 0 pose: 0.7134045 -6.10587 -0.276133 0 -0.0016241 -0.00219519 0.706812 0.707396 uwb: 0.0 887.061 1647.17 +imu_odom_: 1691062927.239690144 0.984017 -0.1652 10.0796 -0.0394148 -0.00532632 0.0383495 0.17 0.02 pose: 0.42926472 -6.11266 -0.263732 0 -0.00375486 2.04002e-05 0.706809 0.707394 uwb: 0.50049434 888.645 1648.11 +imu_odom_: 1691062927.263655297 0.550666 -0.380678 9.28471 -0.0735032 -0.0266316 0.0479369 0.17 0.02 pose: 0.0 -6.11266 -0.263732 0 -0.00375486 2.04002e-05 0.706809 0.707394 uwb: 0.0 888.645 1648.11 +imu_odom_: 1691062927.286652757 0.469264 -0.426168 9.6223 -0.0692422 0.0234358 0.0596548 0.18 0 pose: 0.41937196 -6.11266 -0.263732 0 -0.000260632-0.00240758 0.707002 0.707208 uwb: 0.50059059 887.991 1648.52 +imu_odom_: 1691062927.302772240 0.682347 -0.25618 10.0509 -0.076699 0.02024 0.0532632 0.18 0 pose: 0.0 -6.11266 -0.263732 0 -0.000260632-0.00240758 0.707002 0.707208 uwb: 0.0 887.991 1648.52 +imu_odom_: 1691062927.327716170 0.1652 -0.23942 10.058 -0.0415453 0.036219 0.0383495 0.23 0 pose: 0.81101094 -6.10707 -0.244529 0 -0.000207173-0.00785254 0.707284 0.706885 uwb: 0.0 887.991 1648.52 +imu_odom_: 1691062927.350863246 0.565032 -0.217872 9.67736 -0.0703074 -0.0245011 0.052198 0.23 0 pose: 0.8028826 -6.10707 -0.244529 0 -0.000692473-0.0070068 0.707287 0.706891 uwb: 0.49809990 892.463 1649.66 +imu_odom_: 1691062927.375777136 0.11971 -0.282516 9.41879 -0.052198 0.0245011 0.0458064 0.18 0.05 pose: 0.40062180 -6.10517 -0.237974 0 0.000627186 -0.00577974 0.707384 0.706805 uwb: 0.0 892.463 1649.66 +imu_odom_: 1691062927.402778072 0.385466 -0.301669 9.50259 -0.0500674 -0.00532632 0.052198 0.18 0.05 pose: 0.0 -6.10517 -0.237974 0 0.000627186 -0.00577974 0.707384 0.706805 uwb: 0.50116222 889.614 1649.25 +imu_odom_: 1691062927.426643190 0.402226 -0.213084 9.93833 -0.0458064 -0.00639159 0.0351537 0.18 -0.02 pose: 0.51914826 -6.11191 -0.225294 0 -0.00378057 -0.00261968 0.707577 0.706621 uwb: 0.0 889.614 1649.25 +imu_odom_: 1691062927.444653147 0.687136 -0.253785 9.85214 -0.0681769 -0.00639159 0.0436758 0.18 -0.02 pose: 0.0 -6.11191 -0.225294 0 -0.00378057 -0.00261968 0.707577 0.706621 uwb: 0.50058767 890.695 1649.77 +imu_odom_: 1691062927.468804664 0.739808 -0.25618 9.84975 -0.0596548 0.0127832 0.056459 0.18 0 pose: 0.41875075 -6.10957 -0.217221 0 -0.000524653-0.00253737 0.707569 0.70664 uwb: 0.0 890.695 1649.77 +imu_odom_: 1691062927.494780160 0.392649 -0.129287 10.2065 -0.0479369 0.00532632 0.0436758 0.18 0 pose: 0.8055366 -6.10832 -0.21293 0 -1.42423e-05-0.00306938 0.707614 0.706592 uwb: 0.49994896 888.364 1649.73 +imu_odom_: 1691062927.508652481 0.696713 -0.275333 9.73722 -0.0372843 -0.00106526 0.0287621 0.2 0 pose: 0.24070439 -6.10832 -0.21293 0 0.00116752 -0.00330494 0.707717 0.706487 uwb: 0.0 888.364 1649.73 +imu_odom_: 1691062927.524844877 0.486023 -0.129287 10.1945 -0.0660464 -0.02024 0.0585895 0.2 0 pose: 0.0 -6.10832 -0.21293 0 0.00116752 -0.00330494 0.707717 0.706487 uwb: 0.0 888.364 1649.73 +imu_odom_: 1691062927.550831163 0.742203 -0.122104 10.0341 -0.036219 0.0191748 0.0330232 0.25 0 pose: 0.23921990 -6.10832 -0.21293 0 0.00187187 -0.00189865 0.70772 0.706488 uwb: 0.49933066 884.34 1649.34 +imu_odom_: 1691062927.575698389 1.01035 -0.0981623 10.2161 -0.072438 -0.015979 0.04048 0.25 0 pose: 0.0 -6.10832 -0.21293 0 0.00187187 -0.00189865 0.70772 0.706488 uwb: 0.0 884.34 1649.34 +imu_odom_: 1691062927.601827293 0.634463 -0.397437 9.8689 -0.0692422 0.02024 0.0415453 0.21 0.05 pose: 0.30988955 -6.10555 -0.203323 0 0.00424386 -0.00196594 0.707775 0.706423 uwb: 0.49994312 889.414 1650.41 +imu_odom_: 1691062927.625769698 0.715866 -0.25618 9.78031 -0.0596548 -0.0138484 0.036219 0.21 0.05 pose: 0.51036085 -6.11238 -0.19094 0 0.00736248 -0.00498722 0.70773 0.706427 uwb: 0.0 889.414 1650.41 +imu_odom_: 1691062927.651686280 0.768539 -0.222661 10.331 -0.0713727 -0.0149137 0.052198 0.22 -0.05 pose: 0.0 -6.11238 -0.19094 0 0.00736248 -0.00498722 0.70773 0.706427 uwb: 0.0 889.414 1650.41 +imu_odom_: 1691062927.674616660 0.509965 -0.323217 9.69173 -0.0436758 -0.0149137 0.036219 0.22 -0.05 pose: 0.50951216 -6.1096 -0.181334 0 0.00801541 -0.00933926 0.707737 0.706369 uwb: 0.0 889.414 1650.41 +imu_odom_: 1691062927.698611562 0.433351 -0.0957681 10.252 -0.0468716 -0.0255663 0.0511327 0.2 -0.02 pose: 0.0 -6.1096 -0.181334 0 0.00801541 -0.00933926 0.707737 0.706369 uwb: 0.100063871 891.652 1651 +imu_odom_: 1691062927.715751819 0.383072 -0.265756 9.81144 -0.0490022 0.00213053 0.0490022 0.2 -0.02 pose: 0.24012109 -6.1096 -0.181334 0 0.00883055 -0.0104986 0.707797 0.706282 uwb: 0.0 891.652 1651 +imu_odom_: 1691062927.740943943 0.785298 -0.19393 10.4603 -0.0649811 -0.0543285 0.0543285 0.22 0 pose: 0.48073799 -6.1096 -0.181334 0 0.00661092 -0.00733168 0.707934 0.706209 uwb: 0.0 891.652 1651 +imu_odom_: 1691062927.766646163 0.3304 -0.172383 9.77792 -0.0490022 0.0575243 0.04048 0.21 -0.02 pose: 0.35180837 -6.11341 -0.169829 0 0.00820535 -0.00870559 0.70808 0.706031 uwb: 0.0 891.652 1651 +imu_odom_: 1691062927.782754563 0.0287304 -0.131681 10.319 -0.0511327 -0.0383495 0.0575243 0.21 -0.02 pose: 0.0 -6.11341 -0.169829 0 0.00820535 -0.00870559 0.70808 0.706031 uwb: 0.0 891.652 1651 +imu_odom_: 1691062927.807771114 0.519542 -0.280122 9.98382 -0.0394148 -0.0468716 0.0394148 0.25 -0.02 pose: 0.7888835 -6.11644 -0.168956 0 0.00758845 -0.00787614 0.70809 0.706037 uwb: 0.99783304 889.385 1650.57 +imu_odom_: 1691062927.830750783 0.342371 -0.325611 9.80904 -0.0617853 -0.0266316 0.052198 0.25 -0.02 pose: 0.0 -6.11644 -0.168956 0 0.00758845 -0.00787614 0.70809 0.706037 uwb: 0.0 889.385 1650.57 +imu_odom_: 1691062927.846751856 0.237026 -0.0694318 10.3166 -0.0479369 -0.02024 0.0436758 0.25 -0.02 pose: 0.0 -6.11644 -0.168956 0 0.00758845 -0.00787614 0.70809 0.706037 uwb: 0.49988771 890.413 1651.41 +imu_odom_: 1691062927.873792456 0.560243 0.011971 10.173 -0.0703074 -0.00745685 0.052198 0.18 0 pose: 0.40812302 -6.11367 -0.159346 0 0.00496308 -0.00523114 0.708222 0.705953 uwb: 0.0 890.413 1651.41 +imu_odom_: 1691062927.897751777 -0.102951 0.0430956 10.0341 -0.0511327 0.00106526 0.0415453 0.19 -0.02 pose: 0.84147376 -6.10894 -0.142863 0 0.00386893 -0.00282407 0.708484 0.705711 uwb: 0.50171344 892.102 1651.79 +imu_odom_: 1691062927.915750068 0.402226 -0.282516 9.78031 -0.0628506 0.00106526 0.0479369 0.19 -0.02 pose: 0.0 -6.10894 -0.142863 0 0.00386893 -0.00282407 0.708484 0.705711 uwb: 0.0 892.102 1651.79 +imu_odom_: 1691062927.931812096 0.517148 -0.47884 9.72525 -0.0852212 -0.0319579 0.0543285 0.19 -0.02 pose: 0.0 -6.10894 -0.142863 0 0.00386893 -0.00282407 0.708484 0.705711 uwb: 0.0 892.102 1651.79 +imu_odom_: 1691062927.957589561 0.316035 -0.227449 9.84496 -0.0458064 0.0181095 0.04048 0.2 0 pose: 0.7975747 -6.10815 -0.140123 0 0.00355331 -0.00206233 0.70849 0.705709 uwb: 0.49932774 893.718 1652.63 +imu_odom_: 1691062927.973734126 0.280122 -0.320823 9.91918 -0.0553937 0.00426106 0.0415453 0.2 0 pose: 0.0 -6.10815 -0.140123 0 0.00355331 -0.00206233 0.70849 0.705709 uwb: 0.0 893.718 1652.63 +imu_odom_: 1691062927.990599357 0.933739 -0.208296 10.2544 -0.04048 -0.0319579 0.0234358 0.19 0 pose: 0.41968985 -6.11776 -0.137367 0 0.000766404 -0.00202285 0.7086 0.705607 uwb: 0.50098140 891.953 1652.67 +imu_odom_: 1691062928.6594306 0.624887 -0.31364 9.8665 -0.0607201 -0.0213053 0.0447411 0.19 0 pose: 0.0 -6.11776 -0.137367 0 0.000766404 -0.00202285 0.7086 0.705607 uwb: 0.0 891.953 1652.67 +imu_odom_: 1691062928.24654427 0.639252 -0.0430956 10.0916 -0.0479369 -0.0127832 0.0436758 0.25 0 pose: 0.40006183 -6.11501 -0.127754 0 -0.00186392 -0.0004052180.708658 0.705549 uwb: 0.0 891.953 1652.67 +imu_odom_: 1691062928.41587029 0.828394 -0.0454898 10.2663 -0.0490022 -0.0138484 0.0319579 0.25 0 pose: 0.0 -6.11501 -0.127754 0 -0.00186392 -0.0004052180.708658 0.705549 uwb: 0.49779659 889.061 1652.45 +imu_odom_: 1691062928.54640398 0.232238 -0.246603 9.5792 -0.0639159 -0.00213053 0.052198 0.25 0 pose: 0.0 -6.11501 -0.127754 0 -0.00186392 -0.0004052180.708658 0.705549 uwb: 0.0 889.061 1652.45 +imu_odom_: 1691062928.71644164 0.830788 -0.306458 10.0413 -0.0660464 -0.0298274 0.0415453 0.18 0 pose: 0.50912718 -6.11226 -0.11814 0 0.000376765 -0.0028642 0.708603 0.705601 uwb: 0.0 889.061 1652.45 +imu_odom_: 1691062928.88583474 0.363919 -0.368707 9.28471 -0.0585895 0.0436758 0.0340885 0.18 0 pose: 0.0 -6.11226 -0.11814 0 0.000376765 -0.0028642 0.708603 0.705601 uwb: 0.50057892 890.711 1653.1 +imu_odom_: 1691062928.104654835 0.557849 -0.0933739 10.2687 -0.0585895 -0.0372843 0.0394148 0.18 0 pose: 0.0 -6.11226 -0.11814 0 0.000376765 -0.0028642 0.708603 0.705601 uwb: 0.0 890.711 1653.1 +imu_odom_: 1691062928.121639935 0.694318 -0.337582 9.75637 -0.0468716 0.00426106 0.0330232 0.26 0 pose: 0.47999429 -6.10951 -0.108526 0 0.00253931 -0.00335183 0.708629 0.705569 uwb: 0.0 890.711 1653.1 +imu_odom_: 1691062928.137631092 0.385466 -0.275333 10.1825 -0.0458064 0.0117179 0.0372843 0.19 0.02 pose: 0.0 -6.10951 -0.108526 0 0.00253931 -0.00335183 0.708629 0.705569 uwb: 0.0 890.711 1653.1 +imu_odom_: 1691062928.154632233 0.696713 -0.339977 9.81383 -0.0543285 -0.00426106 0.0394148 0.19 0.02 pose: 0.67043575 -6.11637 -0.0961593 0 0.00254146 -0.00472255 0.708556 0.705635 uwb: 0.0 890.711 1653.1 +imu_odom_: 1691062928.171635706 0.306458 0.035913 10.0604 -0.0426106 0.0223706 0.0479369 0.18 0.02 pose: 0.0 -6.11637 -0.0961593 0 0.00254146 -0.00472255 0.708556 0.705635 uwb: 0.0 890.711 1653.1 +imu_odom_: 1691062928.188699551 0.490811 -0.3304 9.73004 -0.0649811 -0.00532632 0.0575243 0.18 0.02 pose: 0.0 -6.11637 -0.0961593 0 0.00254146 -0.00472255 0.708556 0.705635 uwb: 0.99954503 893.562 1653.6 +imu_odom_: 1691062928.204566758 0.442927 -0.167594 9.83299 -0.0372843 -0.0245011 0.0458064 0.18 0.02 pose: 0.31880821 -6.11361 -0.0865461 0 0.00255171 -0.00502849 0.708568 0.70562 uwb: 0.0 893.562 1653.6 +imu_odom_: 1691062928.222635336 0.73502 -0.177171 9.88087 -0.0298274 -0.00106526 0.0319579 0.25 -0.02 pose: 0.42986844 -6.11361 -0.0865461 0 0.00209786 -0.00365319 0.708746 0.705451 uwb: 0.0 893.562 1653.6 +imu_odom_: 1691062928.239621019 0.811634 -0.263362 10.1299 -0.0383495 -0.0383495 0.0490022 0.25 -0.02 pose: 0.0 -6.11361 -0.0865461 0 0.00209786 -0.00365319 0.708746 0.705451 uwb: 0.49993439 892.377 1653.67 +imu_odom_: 1691062928.252558312 0.972046 -0.294487 9.414 -0.0458064 -0.00213053 0.0681769 0.25 -0.02 pose: 0.0 -6.11361 -0.0865461 0 0.00209786 -0.00365319 0.708746 0.705451 uwb: 0.0 892.377 1653.67 +imu_odom_: 1691062928.268562301 1.1971 -0.191536 10.3813 -0.0426106 0.0138484 0.106526 0.14 0 pose: 0.8071699 -6.11361 -0.0865461 0 0.00284863 -0.00399518 0.708721 0.705472 uwb: 0.0 892.377 1653.67 +imu_odom_: 1691062928.286598799 1.83396 -0.447716 10.3765 -0.0628506 -0.056459 0.120375 0.19 -0.02 pose: 0.0 -6.11361 -0.0865461 0 0.00284863 -0.00399518 0.708721 0.705472 uwb: 0.50056726 896.826 1655.12 +imu_odom_: 1691062928.303578649 1.72622 -0.246603 9.66539 -0.052198 -0.015979 0.0553937 0.19 -0.02 pose: 0.63926714 -6.11086 -0.0769317 0 0.00766062 -0.00858356 0.709449 0.704663 uwb: 0.0 896.826 1655.12 +imu_odom_: 1691062928.316581271 1.39582 0.454898 9.90002 -0.0585895 0.0298274 0.0351537 0.19 -0.02 pose: 0.0 -6.11086 -0.0769317 0 0.00766062 -0.00858356 0.709449 0.704663 uwb: 0.0 896.826 1655.12 +imu_odom_: 1691062928.332637466 0.991199 -0.0454898 9.90721 -0.0490022 0.0117179 0.0319579 0.12 -0.02 pose: 0.0 -6.11086 -0.0769317 0 0.00766062 -0.00858356 0.709449 0.704663 uwb: 0.0 896.826 1655.12 +imu_odom_: 1691062928.350591134 0.746991 -0.275333 10.149 -0.0511327 -0.0117179 0.00639159 0.12 -0.02 pose: 0.33027004 -6.10813 -0.0673112 0 0.0101902 -0.0108285 0.709784 0.704263 uwb: 0.49991105 893.937 1654.85 +imu_odom_: 1691062928.367572734 0.936133 -0.529119 9.76595 -0.052198 -0.0138484 0.0181095 0.09 -0.02 pose: 0.15005381 -6.11776 -0.0645923 0 0.011547 -0.0108957 0.709731 0.704294 uwb: 0.0 893.937 1654.85 +imu_odom_: 1691062928.380566023 0.785298 -0.306458 9.79947 -0.0735032 0.0106526 0.0181095 0.09 -0.02 pose: 0.0 -6.11776 -0.0645923 0 0.011547 -0.0108957 0.709731 0.704294 uwb: 0.0 893.937 1654.85 +imu_odom_: 1691062928.404571133 0.718261 -0.287304 9.82102 -0.0585895 0.00213053 0.0479369 0.09 -0.02 pose: 0.33108083 -6.11776 -0.0645923 0 0.011246 -0.0132261 0.709452 0.70454 uwb: 0.50074225 890.555 1653.98 +imu_odom_: 1691062928.422721082 0.617704 -0.167594 10.1706 -0.0692422 0.0287621 0.0553937 0.08 0.02 pose: 0.0 -6.11776 -0.0645923 0 0.011246 -0.0132261 0.709452 0.70454 uwb: 0.0 890.555 1653.98 +imu_odom_: 1691062928.439591855 -0.0383072 -0.292093 9.80186 -0.0575243 0.0511327 -0.0191748 0.09 0 pose: 0.0 -6.11776 -0.0645923 0 0.011246 -0.0132261 0.709452 0.70454 uwb: 0.49940941 888.873 1653.51 +imu_odom_: 1691062928.453755535 -0.600945 0.110133 10.0341 -0.0468716 0.0735032 -0.0788296 0.09 0 pose: 0.72045078 -6.11503 -0.0549713 0 0.00790779 -0.0115092 0.709359 0.704709 uwb: 0.0 888.873 1653.51 +imu_odom_: 1691062928.470744426 -1.02711 0.124498 10.1035 -0.0830906 0.0223706 0.0330232 0.1 0 pose: 0.0 -6.11503 -0.0549713 0 0.00790779 -0.0115092 0.709359 0.704709 uwb: 0.0 888.873 1653.51 +imu_odom_: 1691062928.484587874 -0.54109 -0.948104 9.96706 -0.076699 -0.0532632 0.0703074 0.1 0 pose: 0.0 -6.11503 -0.0549713 0 0.00790779 -0.0115092 0.709359 0.704709 uwb: 0.50010354 887.166 1653.19 +imu_odom_: 1691062928.508712269 0.452504 0.0335188 9.88566 -0.0351537 -0.0511327 0.0330232 0.1 0 pose: 0.31973856 -6.11503 -0.0549713 0 0.005397 -0.00829974 0.708579 0.705562 uwb: 0.0 887.166 1653.19 +imu_odom_: 1691062928.525707576 0.445322 0.0263362 9.88805 -0.0735032 0.0117179 0.0830906 0.11 0.02 pose: 0.30068509 -6.11228 -0.0453577 0 0.00401739 -0.00699139 0.708705 0.705459 uwb: 0.0 887.166 1653.19 +imu_odom_: 1691062928.542769088 -0.0502782 -0.371101 9.8282 -0.0532632 0.0447411 -0.0106526 0.11 0.02 pose: 0.0 -6.11228 -0.0453577 0 0.00401739 -0.00699139 0.708705 0.705459 uwb: 0.49884652 887.653 1653.78 +imu_odom_: 1691062928.557705640 -0.129287 -0.112527 9.98382 -0.0426106 -0.00852212 -0.100135 0.14 -0.14 pose: 0.0 -6.11228 -0.0453577 0 0.00401739 -0.00699139 0.708705 0.705459 uwb: 0.0 887.653 1653.78 +imu_odom_: 1691062928.574585746 0.136469 0.0766145 10.0341 -0.052198 -0.0447411 -0.154463 0.14 -0.14 pose: 0.41939821 -6.11228 -0.0453577 0 0.00473961 -0.00353697 0.70878 0.705404 uwb: 0.0 887.653 1653.78 +imu_odom_: 1691062928.588590768 0.325611 -0.177171 9.80665 -0.076699 -0.0170442 -0.178964 0.14 -0.14 pose: 0.0 -6.11228 -0.0453577 0 0.00473961 -0.00353697 0.70878 0.705404 uwb: 0.50146263 885.344 1653.52 +imu_odom_: 1691062928.605570910 0.536301 -0.292093 10.0916 -0.0575243 -0.00852212 -0.234358 0.14 -0.32 pose: 0.15866915 -6.11228 -0.0453577 0 0.00342494 -0.00237908 0.70829 0.705909 uwb: 0.0 885.344 1653.52 +imu_odom_: 1691062928.621700017 0.277727 -0.189142 9.55526 -0.0426106 -0.0436758 -0.292948 0.14 -0.32 pose: 0.0 -6.11228 -0.0453577 0 0.00342494 -0.00237908 0.70829 0.705909 uwb: 0.0 885.344 1653.52 +imu_odom_: 1691062928.639565316 0.632069 0.00957681 9.80426 -0.0777643 -0.0383495 -0.32384 0.14 -0.32 pose: 0.0 -6.11228 -0.0453577 0 0.00342494 -0.00237908 0.70829 0.705909 uwb: 0.50000438 887.618 1653.98 +imu_odom_: 1691062928.655681591 0.799663 -0.100556 9.98861 -0.076699 -0.0319579 -0.373908 0.15 -0.41 pose: 0.47114854 -6.10951 -0.0357466 0 0.00203858 -0.0002553640.70486 0.709344 uwb: 0.0 887.618 1653.98 +imu_odom_: 1691062928.673764169 0.107739 0.129287 9.43076 -0.0553937 -0.00426106 -0.420779 0.21 -0.58 pose: 0.0 -6.10951 -0.0357466 0 0.00203858 -0.0002553640.70486 0.709344 uwb: 0.0 887.618 1653.98 +imu_odom_: 1691062928.691756335 0.349553 -0.0143652 10.0221 -0.0500674 0.0479369 -0.462325 0.21 -0.58 pose: 0.66996329 -6.11637 -0.0233758 0 0.00446683 -0.0007969950.696059 0.71797 uwb: 0.50052059 890.474 1654.47 +imu_odom_: 1691062928.707698204 0.368707 0.205901 10.0628 -0.0245011 0.0181095 -0.491087 0.14 -0.47 pose: 0.0 -6.11637 -0.0233758 0 0.00446683 -0.0007969950.696059 0.71797 uwb: 0.0 890.474 1654.47 +imu_odom_: 1691062928.725625040 -0.129287 -0.335188 9.73722 -0.0490022 0.00106526 -0.529436 0.14 -0.47 pose: 0.0 -6.11637 -0.0233758 0 0.00446683 -0.0007969950.696059 0.71797 uwb: 0.0 890.474 1654.47 +imu_odom_: 1691062928.741696401 0.445322 -0.205901 9.7875 -0.0703074 0.0255663 -0.543285 0.14 -0.47 pose: 0.35874089 -6.11367 -0.0137471 0 0.00477715 0.00318515 0.689624 0.724144 uwb: 0.49816115 888.161 1654.27 +imu_odom_: 1691062928.758688209 0.816423 -0.158017 10.2544 -0.0703074 0.00532632 -0.547546 0.23 -0.85 pose: 0.42111311 -6.1122 -0.00860495 0 0.00287822 0.00334897 0.680932 0.732334 uwb: 0.0 888.161 1654.27 +imu_odom_: 1691062928.774741196 0.445322 -0.208296 9.51216 -0.056459 -0.0426106 -0.551807 0.23 -0.85 pose: 0.7036926 -6.11099 -0.00411301 0 0.00324854 0.00279324 0.67942 0.733737 uwb: 0.0 888.161 1654.27 +imu_odom_: 1691062928.792694865 0.797269 0.0526724 9.93354 -0.0777643 -0.0532632 -0.529436 0.21 -0.79 pose: 0.0 -6.11099 -0.00411301 0 0.00324854 0.00279324 0.67942 0.733737 uwb: 0.50051477 884.703 1653.86 +imu_odom_: 1691062928.809757543 1.22583 -0.189142 9.88566 -0.0777643 -0.0138484 -0.478304 0.14 -0.53 pose: 0.43961538 -6.11093 -0.00413107 0 0.0050229 -0.0005499640.669993 0.74235 uwb: 0.0 884.703 1653.86 +imu_odom_: 1691062928.824678929 1.65679 -0.533907 10.0485 -0.0628506 0.0138484 -0.470847 0.12 -0.44 pose: 0.0 -6.11093 -0.00413107 0 0.0050229 -0.0005499640.669993 0.74235 uwb: 0.0 884.703 1653.86 +imu_odom_: 1691062928.842599933 1.10612 -0.19393 9.50498 -0.0479369 0.0383495 -0.455933 0.12 -0.44 pose: 0.0 -6.11093 -0.00413107 0 0.0050229 -0.0005499640.669993 0.74235 uwb: 0.50033977 886.416 1654.16 +imu_odom_: 1691062928.858598090 0.88346 -0.162806 10.24 -0.0394148 -0.0138484 -0.366451 0.12 -0.44 pose: 0.24124394 -6.11099 -0.004113 0 0.0062342 -0.0026507 0.665362 0.74649 uwb: 0.0 886.416 1654.16 +imu_odom_: 1691062928.875597480 0.557849 -0.390255 9.81383 -0.04048 0.00213053 -0.294013 0.1 -0.41 pose: 0.0 -6.11099 -0.004113 0 0.0062342 -0.0026507 0.665362 0.74649 uwb: 0.0 886.416 1654.16 +imu_odom_: 1691062928.891620427 0.383072 -0.464475 9.63906 -0.0372843 0.0138484 -0.285491 0.1 -0.41 pose: 0.32728063 -6.10824 0.00550301 0 0.0079376 -0.00486948 0.659473 0.75167 uwb: 0.49919068 884.157 1653.62 +imu_odom_: 1691062928.908548947 0.399832 -0.110133 10.0221 -0.0394148 -0.0245011 -0.264186 0.11 -0.41 pose: 0.42073105 -6.10824 0.00550301 0 0.0056914 -0.006198 0.654016 0.756434 uwb: 0.0 884.157 1653.62 +imu_odom_: 1691062928.924539229 0.806846 -0.320823 9.87129 -0.0649811 -0.00639159 -0.234358 0.11 -0.41 pose: 0.0 -6.10824 0.00550301 0 0.0056914 -0.006198 0.654016 0.756434 uwb: 0.0 884.157 1653.62 +imu_odom_: 1691062928.949542656 0.90022 -0.220267 9.99819 -0.0458064 -0.0298274 -0.232228 0.1 -0.38 pose: 0.6926099 -6.10824 0.00550301 0 0.00565946 -0.00552789 0.65322 0.757127 uwb: 0.50007437 885.814 1654.24 +imu_odom_: 1691062928.963608342 0.651223 -0.354342 9.67018 -0.0713727 0.0213053 -0.216249 0.07 -0.23 pose: 0.0 -6.10824 0.00550301 0 0.00565946 -0.00552789 0.65322 0.757127 uwb: 0.0 885.814 1654.24 +imu_odom_: 1691062928.979596291 0.00957681 -0.42138 9.83059 -0.0628506 0.0937433 -0.28123 0.08 -0.35 pose: 0.0 -6.10824 0.00550301 0 0.00565946 -0.00552789 0.65322 0.757127 uwb: 0.0 885.814 1654.24 +imu_odom_: 1691062928.996531810 -0.52433 -0.0526724 10.0604 -0.036219 0.0308927 -0.42291 0.08 -0.35 pose: 0.73048936 -6.10548 0.0151125 0 0.00583017 -0.0085942 0.645476 0.76371 uwb: 0.50171928 880.163 1652.95 +imu_odom_: 1691062929.13693358 -0.253785 0.445322 10.0293 -0.0575243 -0.0223706 -0.515588 0.1 -0.41 pose: 0.0 -6.10548 0.0151125 0 0.00583017 -0.0085942 0.645476 0.76371 uwb: 0.0 880.163 1652.95 +imu_odom_: 1691062929.30639377 0.0574608 0.253785 9.97424 -0.0756338 0.00213053 -0.530502 0.1 -0.41 pose: 0.0 -6.10548 0.0151125 0 0.00583017 -0.0085942 0.645476 0.76371 uwb: 0.0 880.163 1652.95 +imu_odom_: 1691062929.46581245 -0.416591 -0.47884 9.89045 -0.0820254 0.00213053 -0.507066 0.1 -0.41 pose: 0.32963133 -6.10548 0.0151128 0 0.00405148 -0.00531143 0.639806 0.768507 uwb: 0.49863071 881.312 1653.11 +imu_odom_: 1691062929.63517640 0.117316 -0.584185 9.991 -0.0628506 -0.0394148 -0.536893 0.17 -0.79 pose: 0.42022650 -6.10277 0.0247385 0 0.00260297 -0.00202572 0.630753 0.775976 uwb: 0.0 881.312 1653.11 +imu_odom_: 1691062929.79578501 0.0574608 -0.335188 9.62948 -0.0745685 -0.0191748 -0.520914 0.17 -0.79 pose: 0.0 -6.10277 0.0247385 0 0.00260297 -0.00202572 0.630753 0.775976 uwb: 0.0 881.312 1653.11 +imu_odom_: 1691062929.96582267 0.158017 0.160412 10.1251 -0.0596548 -0.00745685 -0.531567 0.17 -0.79 pose: 0.0 -6.10277 0.0247385 0 0.00260297 -0.00202572 0.630753 0.775976 uwb: 0.49929859 885.258 1654.08 +imu_odom_: 1691062929.112578966 0.438139 -0.292093 9.80665 -0.0649811 0.00319579 -0.553937 0.12 -0.58 pose: 0.7017677 -6.10277 0.0247385 0 0.00196375 -0.00209398 0.629184 0.777251 uwb: 0.0 885.258 1654.08 +imu_odom_: 1691062929.130518635 -0.0861913 -0.011971 9.93594 -0.0543285 -0.0127832 -0.586961 0.18 -0.82 pose: 0.0 -6.10277 0.0247385 0 0.00196375 -0.00209398 0.629184 0.777251 uwb: 0.0 885.258 1654.08 +imu_odom_: 1691062929.145575347 0.25618 0.0311246 10.0652 -0.072438 -0.0127832 -0.594418 0.18 -0.82 pose: 0.66930125 -6.09998 0.0343429 0 -0.000806295-0.0005189520.613951 0.789343 uwb: 0.50003355 883.543 1653.8 +imu_odom_: 1691062929.163580929 0.493206 -0.117316 9.90242 -0.0969391 -0.0660464 -0.599744 0.18 -0.82 pose: 0.0 -6.09998 0.0343429 0 -0.000806295-0.0005189520.613951 0.789343 uwb: 0.0 883.543 1653.8 +imu_odom_: 1691062929.179569170 0.337582 -0.292093 9.80665 -0.0692422 -0.0319579 -0.613592 0.18 -0.82 pose: 0.0 -6.09998 0.0343429 0 -0.000806295-0.0005189520.613951 0.789343 uwb: 0.0 883.543 1653.8 +imu_odom_: 1691062929.196504398 0.344765 -0.0407014 10.1394 -0.0511327 0.036219 -0.656203 0.18 -0.82 pose: 0.33063461 -6.10959 0.0371028 0 0.000363428 0.0011028 0.60566 0.795722 uwb: 0.50101932 880.068 1653.48 +imu_odom_: 1691062929.213505539 0.591368 -0.251391 9.83538 -0.0617853 -0.00106526 -0.656203 0.14 -0.67 pose: 0.42911890 -6.10686 0.0467183 0 0.000605166 0.00181601 0.594215 0.804304 uwb: 0.0 880.068 1653.48 +imu_odom_: 1691062929.227563350 0.430956 -0.0694318 10.2592 -0.0511327 0.0191748 -0.653007 0.14 -0.67 pose: 0.0 -6.10686 0.0467183 0 0.000605166 0.00181601 0.594215 0.804304 uwb: 0.0 880.068 1653.48 +imu_odom_: 1691062929.243505218 0.699107 0.0191536 10.2903 -0.056459 -0.0798948 -0.592287 0.14 -0.67 pose: 0.0 -6.10686 0.0467183 0 0.000605166 0.00181601 0.594215 0.804304 uwb: 0.49945316 878.35 1653.21 +imu_odom_: 1691062929.260631768 0.995988 -0.371101 9.65821 -0.0649811 -0.0308927 -0.533697 0.17 -0.79 pose: 0.8005495 -6.10691 0.0467373 0 0.000828611 0.00105343 0.591974 0.805956 uwb: 0.0 878.35 1653.21 +imu_odom_: 1691062929.277506916 1.08457 -0.474052 9.63187 -0.0511327 -0.0245011 -0.504935 0.1 -0.47 pose: 0.0 -6.10691 0.0467373 0 0.000828611 0.00105343 0.591974 0.805956 uwb: 0.0 878.35 1653.21 +imu_odom_: 1691062929.291622765 1.11091 -0.181959 9.9527 -0.0543285 -0.0319579 -0.507066 0.1 -0.47 pose: 0.0 -6.10691 0.0467373 0 0.000828611 0.00105343 0.591974 0.805956 uwb: 0.50184470 877.175 1653.18 +imu_odom_: 1691062929.307534594 0.658405 -0.244209 9.34217 -0.0500674 0.0181095 -0.4815 0.1 -0.47 pose: 0.64019168 -6.09457 0.0536583 0 0.00472407 -0.00275909 0.575663 0.817669 uwb: 0.0 877.175 1653.18 +imu_odom_: 1691062929.324845467 0.964863 -0.136469 9.96706 -0.0617853 -0.0191748 -0.399474 0.09 -0.44 pose: 0.0 -6.09457 0.0536583 0 0.00472407 -0.00275909 0.575663 0.817669 uwb: 0.0 877.175 1653.18 +imu_odom_: 1691062929.341794985 0.706289 -0.52433 9.65821 -0.0500674 -0.0138484 -0.337689 0.09 -0.44 pose: 0.31027453 -6.09457 0.0536583 0 0.0059114 -0.0056955 0.568797 0.822437 uwb: 0.49784909 877.775 1653.12 +imu_odom_: 1691062929.356531757 0.830788 -0.344765 10.0317 -0.0500674 -0.0575243 -0.278034 0.07 -0.38 pose: 0.16195313 -6.09457 0.0536583 0 0.00654348 -0.00705616 0.565597 0.824626 uwb: 0.0 877.775 1653.12 +imu_odom_: 1691062929.373707304 0.976834 -0.306458 9.69412 -0.0617853 -0.00958738 -0.194943 0.07 -0.38 pose: 0.0 -6.09457 0.0536583 0 0.00654348 -0.00705616 0.565597 0.824626 uwb: 0.0 877.775 1653.12 +imu_odom_: 1691062929.389644215 0.162806 -0.454898 9.67736 -0.0500674 0.0639159 -0.2024 0.07 -0.38 pose: 0.0 -6.09457 0.0536583 0 0.00654348 -0.00705616 0.565597 0.824626 uwb: 0.50220050 874.953 1652.47 +imu_odom_: 1691062929.407495223 0.0933739 0 10.2568 -0.04048 -0.0553937 -0.289752 0.06 -0.29 pose: 0.33057044 -6.09457 0.0536583 0 0.00638333 -0.00996919 0.560389 0.828145 uwb: 0.0 874.953 1652.47 +imu_odom_: 1691062929.422516353 0.509965 0.181959 9.54089 -0.0639159 -0.0649811 -0.274838 0.05 -0.26 pose: 0.0 -6.09457 0.0536583 0 0.00638333 -0.00996919 0.560389 0.828145 uwb: 0.0 874.953 1652.47 +imu_odom_: 1691062929.449525748 0.849942 -0.761356 9.96467 -0.0585895 -0.00319579 -0.206661 0.05 -0.26 pose: 0.66800632 -6.0918 0.0632659 0 0.0063274 -0.00934445 0.552602 0.833369 uwb: 0.49802408 871.011 1651.54 +imu_odom_: 1691062929.474511676 -0.272939 -0.227449 9.54089 -0.0266316 0.0617853 -0.276969 0.07 -0.32 pose: 0.0 -6.0918 0.0632659 0 0.0063274 -0.00934445 0.552602 0.833369 uwb: 0.0 871.011 1651.54 +imu_odom_: 1691062929.492619919 -0.703895 0.25618 10.4579 -0.0383495 -0.0170442 -0.389887 0.07 -0.32 pose: 0.14980883 -6.0918 0.0632659 0 0.00642717 -0.00967477 0.550866 0.834513 uwb: 0.0 871.011 1651.54 +imu_odom_: 1691062929.516541617 -0.433351 0.174777 10.1754 -0.0394148 0.0287621 -0.493217 0.09 -0.44 pose: 0.51975490 -6.0918 0.0632659 0 0.00383193 -0.00740725 0.544199 0.838915 uwb: 0.0 871.011 1651.54 +imu_odom_: 1691062929.542574568 0.270545 -0.507571 9.50737 -0.0756338 -0.0298274 -0.482565 0.12 -0.58 pose: 0.0 -6.0918 0.0632659 0 0.00383193 -0.00740725 0.544199 0.838915 uwb: 0.100004960 867.588 1650.9 +imu_odom_: 1691062929.565637358 0.0407014 -0.0694318 9.6606 -0.0490022 -0.00319579 -0.519849 0.12 -0.58 pose: 0.42059982 -6.08904 0.0728768 0 0.0024651 -0.00369012 0.53525 0.844682 uwb: 0.0 867.588 1650.9 +imu_odom_: 1691062929.581551812 0.169988 0.035913 10.1131 -0.0692422 0.00106526 -0.54435 0.12 -0.58 pose: 0.0 -6.08904 0.0728768 0 0.0024651 -0.00369012 0.53525 0.844682 uwb: 0.0 867.588 1650.9 +imu_odom_: 1691062929.607645717 0.464475 -0.0622492 9.75877 -0.052198 -0.0511327 -0.598679 0.11 -0.58 pose: 0.49037702 -6.08904 0.0728768 0 0.000460385 -0.00076436 0.523825 0.851826 uwb: 0.50069851 862.562 1649.52 +imu_odom_: 1691062929.631509669 0.356736 -0.0861913 9.96706 -0.0596548 -0.0330232 -0.621049 0.13 -0.64 pose: 0.0 -6.08904 0.0728768 0 0.000460385 -0.00076436 0.523825 0.851826 uwb: 0.0 862.562 1649.52 +imu_odom_: 1691062929.657610283 0.0526724 -0.007182619.62469 -0.0681769 -0.0138484 -0.627441 0.13 -0.64 pose: 0.33982157 -6.08691 0.0797582 0 0.00350845 -3.57143e-050.514736 0.857341 uwb: 0.49852863 861.495 1648.95 +imu_odom_: 1691062929.673639063 0.102951 -0.150835 10.2161 -0.0681769 0.00319579 -0.659399 0.13 -0.67 pose: 0.6997554 -6.0863 0.0824945 0 0.0036585 0.000570104 0.51275 0.85853 uwb: 0.0 861.495 1648.95 +imu_odom_: 1691062929.698557037 0.25618 -0.174777 10.07 -0.0628506 -0.036219 -0.682835 0.13 -0.67 pose: 0.0 -6.0863 0.0824945 0 0.0036585 0.000570104 0.51275 0.85853 uwb: 0.50068101 855.919 1647.33 +imu_odom_: 1691062929.723639210 0.328006 -0.217872 9.68933 -0.0703074 0.0127832 -0.699879 0.14 -0.7 pose: 0.49847322 -6.0863 0.082495 0 0.0029022 0.00497248 0.498335 0.866965 uwb: 0.0 855.919 1647.33 +imu_odom_: 1691062929.748652553 0.0646434 0 9.98622 -0.0639159 -0.00852212 -0.714792 0.14 -0.7 pose: 0.0 -6.0863 0.082495 0 0.0029022 0.00497248 0.498335 0.866965 uwb: 0.50049436 857.083 1647.42 +imu_odom_: 1691062929.765648444 0.6608 0.071826 10.1873 -0.0798948 -0.0234358 -0.733967 0.21 -1 pose: 0.41086162 -6.08347 0.0920847 0 -0.0004941670.00572146 0.485436 0.874254 uwb: 0.0 857.083 1647.42 +imu_odom_: 1691062929.790550960 0.438139 -0.385466 9.80186 -0.0777643 0.0149137 -0.741424 0.21 -1 pose: 0.0 -6.08347 0.0920847 0 -0.0004941670.00572146 0.485436 0.874254 uwb: 0.50005688 852.612 1646.18 +imu_odom_: 1691062929.815615342 0.687136 -0.220267 9.78031 -0.0649811 0.0170442 -0.758468 0.19 -0.97 pose: 0.50093767 -6.08065 0.101679 0 -0.0008539660.00620654 0.468895 0.883232 uwb: 0.0 852.612 1646.18 +imu_odom_: 1691062929.840556065 0.186748 -0.172383 9.35654 -0.0511327 0.0117179 -0.768056 0.19 -0.97 pose: 0.0 -6.08065 0.101679 0 -0.0008539660.00620654 0.468895 0.883232 uwb: 0.49957274 852.073 1645.93 +imu_odom_: 1691062929.857602411 -0.0023942 -0.126893 9.89763 -0.052198 0.00213053 -0.771251 0.17 -0.82 pose: 0.41999901 -6.07105 0.0988697 0 -0.00154329 0.00293239 0.454333 0.890826 uwb: 0.0 852.073 1645.93 +imu_odom_: 1691062929.882479846 0.19393 -0.0454898 9.80904 -0.0490022 -0.00852212 -0.762729 0.17 -0.82 pose: 0.0 -6.07105 0.0988697 0 -0.00154329 0.00293239 0.454333 0.890826 uwb: 0.0 852.073 1645.93 +imu_odom_: 1691062929.900698333 0.471658 -0.354342 9.98861 -0.052198 0.0479369 -0.790426 0.16 -0.79 pose: 0.50846806 -6.06831 0.108487 0 -0.00172248 0.00486795 0.436012 0.899926 uwb: 0.49896319 851.535 1645.69 +imu_odom_: 1691062929.924560534 0.73502 -0.0311246 9.67257 -0.0692422 -0.015979 -0.777643 0.16 -0.79 pose: 0.0 -6.06831 0.108487 0 -0.00172248 0.00486795 0.436012 0.899926 uwb: 0.0 851.535 1645.69 +imu_odom_: 1691062929.950692938 0.179565 -0.241814 9.39485 -0.0479369 0.0170442 -0.761664 0.21 -1.03 pose: 0.76043305 -6.05894 0.116209 0 0.000182363 0.00458024 0.40795 0.912993 uwb: 0.49930151 848.23 1644.56 +imu_odom_: 1691062929.975631327 0.713472 0.126893 10.0987 -0.0713727 -0.00532632 -0.784035 0.21 -1.03 pose: 0.0 -6.05894 0.116209 0 0.000182363 0.00458024 0.40795 0.912993 uwb: 0.0 848.23 1644.56 +imu_odom_: 1691062930.1678569 0.612916 -0.385466 9.5792 -0.0798948 -0.0149137 -0.811731 0.18 -0.88 pose: 0.8098531 -6.05591 0.115315 0 -0.0004417420.00521583 0.404982 0.91431 uwb: 0.50094349 847.208 1643.86 +imu_odom_: 1691062930.24637532 0.948104 0.0885855 9.81383 -0.0479369 -0.0319579 -0.810666 0.18 -0.88 pose: 0.51008380 -6.05318 0.124935 0 -0.0001911650.00438269 0.38578 0.92258 uwb: 0.0 847.208 1643.86 +imu_odom_: 1691062930.42499331 0.675165 -0.519542 9.91439 -0.0436758 -0.00958738 -0.818123 0.17 -0.85 pose: 0.0 -6.05318 0.124935 0 -0.0001911650.00438269 0.38578 0.92258 uwb: 0.49971857 847.371 1643.17 +imu_odom_: 1691062930.68620069 0.227449 -0.141258 9.78271 -0.0298274 -0.00639159 -0.831972 0.17 -0.85 pose: 0.24980971 -6.05043 0.134549 0 -0.0001958380.0019072 0.375955 0.926636 uwb: 0.0 847.371 1643.17 +imu_odom_: 1691062930.93467464 0.241814 -0.215478 9.3326 -0.0479369 0.0436758 -0.823449 0.17 -0.85 pose: 0.43007260 -6.04079 0.131882 0 0.000495893 4.93702e-05 0.358802 0.933414 uwb: 0.49999272 845.772 1642.41 +imu_odom_: 1691062930.107507776 0.806846 0.11971 10.2807 -0.0596548 0.0372843 -0.833037 0.17 -0.85 pose: 0.0 -6.04079 0.131882 0 0.000495893 4.93702e-05 0.358802 0.933414 uwb: 0.0 845.772 1642.41 +imu_odom_: 1691062930.131584924 0.23942 -0.368707 9.15543 -0.072438 -0.0191748 -0.833037 0.18 -0.88 pose: 0.48863879 -6.03806 0.141501 0 -0.00025057 0.00424362 0.338939 0.940799 uwb: 0.0 845.772 1642.41 +imu_odom_: 1691062930.157501798 0.529119 -0.275333 9.72764 -0.0681769 0.0234358 -0.837298 0.22 -1.06 pose: 0.0 -6.03806 0.141501 0 -0.00025057 0.00424362 0.338939 0.940799 uwb: 0.49883487 843.693 1641.2 +imu_odom_: 1691062930.183466795 0.0574608 0.129287 9.99819 -0.0479369 -0.0351537 -0.857538 0.22 -1.06 pose: 0.31065369 -6.03605 0.147874 0 -0.00232932 0.00407294 0.32615 0.945306 uwb: 0.50007147 844.897 1641.11 +imu_odom_: 1691062930.209465915 0.0526724 -0.023942 9.81623 -0.0671117 0.02024 -0.844755 0.21 -1.03 pose: 0.7923833 -6.03532 0.151119 0 -0.00232409 0.00336549 0.322863 0.946437 uwb: 0.0 844.897 1641.11 +imu_odom_: 1691062930.233631141 0.213084 -0.25618 9.85693 -0.0447411 -0.0298274 -0.862864 0.21 -1.03 pose: 0.0 -6.03532 0.151119 0 -0.00232409 0.00336549 0.322863 0.946437 uwb: 0.50110099 843.301 1640.36 +imu_odom_: 1691062930.250665822 0.385466 0.112527 10.1634 -0.036219 -0.0383495 -0.873517 0.18 -0.91 pose: 0.52036154 -6.02569 0.148419 0 -0.0005660470.00441182 0.300916 0.95364 uwb: 0.0 843.301 1640.36 +imu_odom_: 1691062930.275567172 0.416591 -0.0861913 9.83777 -0.0681769 0.0149137 -0.858603 0.18 -0.91 pose: 0.0 -6.02569 0.148419 0 -0.0005660470.00441182 0.300916 0.95364 uwb: 0.0 843.301 1640.36 +imu_odom_: 1691062930.300466189 0.766145 -0.122104 9.75877 -0.0553937 0.0181095 -0.877778 0.19 -0.97 pose: 0.49962524 -6.01339 0.155403 0 -0.00141978 0.00697094 0.279449 0.960134 uwb: 0.49948525 845.613 1640.6 +imu_odom_: 1691062930.323463941 0.42138 -0.172383 9.51456 -0.0607201 -0.0234358 -0.867125 0.19 -0.97 pose: 0.0 -6.01339 0.155403 0 -0.00141978 0.00697094 0.279449 0.960134 uwb: 0.0 845.613 1640.6 +imu_odom_: 1691062930.339453932 0.268151 -0.162806 9.3709 -0.0798948 -0.02024 -0.862864 0.18 -0.88 pose: 0.42041025 -6.01076 0.165052 0 0.00147719 0.00470784 0.261158 0.965284 uwb: 0.49990523 844.089 1639.56 +imu_odom_: 1691062930.356454489 0.237026 -0.232238 9.48104 -0.0703074 -0.0234358 -0.870321 0.18 -0.88 pose: 0.0 -6.01076 0.165052 0 0.00147719 0.00470784 0.261158 0.965284 uwb: 0.0 844.089 1639.56 +imu_odom_: 1691062930.381509247 0.617704 -0.0790087 9.81144 -0.0426106 -0.00639159 -0.872452 0.18 -0.88 pose: 0.47927684 -6.00113 0.162359 0 0.00198677 0.00153163 0.240064 0.970754 uwb: 0.0 844.089 1639.56 +imu_odom_: 1691062930.407507200 0.545878 -0.011971 10.0173 -0.0415453 -0.0383495 -0.860734 0.18 -0.88 pose: 0.0 -6.00113 0.162359 0 0.00198677 0.00153163 0.240064 0.970754 uwb: 0.0 844.089 1639.56 +imu_odom_: 1691062930.420507781 0.490811 0.0646434 9.48104 -0.0415453 0.02024 -0.864995 0.18 -0.94 pose: 0.76031056 -5.98869 0.16931 0 0.00459803 -0.0004309490.206477 0.978441 uwb: 0.0 844.089 1639.56 +imu_odom_: 1691062930.437505422 0.572214 -0.0335188 9.87848 -0.0447411 0.0149137 -0.836233 0.18 -0.94 pose: 0.6003903 -5.98886 0.169372 0 0.00522291 -0.0003964570.203819 0.978995 uwb: 0.100047833 840.303 1638.12 +imu_odom_: 1691062930.452491846 0.538695 -0.344765 10.0126 -0.0511327 -0.0181095 -0.804275 0.18 -0.94 pose: 0.0 -5.98886 0.169372 0 0.00522291 -0.0003964570.203819 0.978995 uwb: 0.0 840.303 1638.12 +imu_odom_: 1691062930.468576332 0.332794 -0.40462 9.99819 -0.0511327 0.0330232 -0.76486 0.18 -0.64 pose: 0.38980743 -5.981 0.177592 0 0.00579106 -0.00223528 0.187229 0.982297 uwb: 0.0 840.303 1638.12 +imu_odom_: 1691062930.484510618 0.270545 -0.287304 10.58 -0.0745685 -0.0191748 -0.637028 0.18 -0.64 pose: 0.0 -5.981 0.177592 0 0.00579106 -0.00223528 0.187229 0.982297 uwb: 0.50009189 842.636 1638.26 +imu_odom_: 1691062930.501631627 0.617704 -0.184354 10.4938 -0.0372843 -0.056459 -0.560329 0.18 -0.64 pose: 0.0 -5.981 0.177592 0 0.00579106 -0.00223528 0.187229 0.982297 uwb: 0.0 842.636 1638.26 +imu_odom_: 1691062930.518607102 0.897826 -0.148441 9.7037 -0.0458064 -0.0713727 -0.532632 0.18 -0.55 pose: 0.40086388 -5.97655 0.176346 0 0.00300348 -0.00162245 0.173187 0.984883 uwb: 0.0 842.636 1638.26 +imu_odom_: 1691062930.534631508 0.213084 0.172383 10.2615 -0.0585895 -0.0319579 -0.491087 0.26 -0.76 pose: 0.0 -5.97655 0.176346 0 0.00300348 -0.00162245 0.173187 0.984883 uwb: 0.50051185 846.075 1638.69 +imu_odom_: 1691062930.550629957 0.665588 -0.332794 10.2137 -0.0575243 -0.00852212 -0.468716 0.26 -0.76 pose: 0.33016505 -5.96428 0.183377 0 0.00414988 -0.00447302 0.163894 0.986459 uwb: 0.0 846.075 1638.69 +imu_odom_: 1691062930.568689786 0.948104 0.186748 10.24 -0.0436758 -0.0447411 -0.450607 0.23 -0.58 pose: 0.0 -5.96428 0.183377 0 0.00414988 -0.00447302 0.163894 0.986459 uwb: 0.0 846.075 1638.69 +imu_odom_: 1691062930.585448274 0.620098 -0.220267 9.93594 -0.072438 -0.0319579 -0.395213 0.23 -0.58 pose: 0.0 -5.96428 0.183377 0 0.00414988 -0.00447302 0.163894 0.986459 uwb: 0.49930152 853.4 1639.93 +imu_odom_: 1691062930.601501845 0.574608 -0.0933739 9.89524 -0.0820254 -0.0468716 -0.354733 0.23 -0.58 pose: 0.33097584 -5.96428 0.183377 0 0.00437292 -0.00580405 0.155565 0.987799 uwb: 0.0 853.4 1639.93 +imu_odom_: 1691062930.619507428 0.531513 -0.21069 10.1969 -0.0426106 -0.00639159 -0.352603 0.18 -0.38 pose: 0.42809522 -5.95458 0.180704 0 0.00548239 -0.00831576 0.146403 0.989175 uwb: 0.0 853.4 1639.93 +imu_odom_: 1691062930.636468904 0.608127 0.105345 10.2161 -0.0639159 0.015979 -0.316384 0.18 -0.38 pose: 0.8006370 -5.95464 0.180725 0 0.00482233 -0.00796809 0.144855 0.989409 uwb: 0.50019104 860.229 1640.88 +imu_odom_: 1691062930.661651113 0.3304 -0.0407014 10.2951 -0.0692422 -0.00426106 -0.299339 0.18 -0.35 pose: 0.0 -5.95464 0.180725 0 0.00482233 -0.00796809 0.144855 0.989409 uwb: 0.0 860.229 1640.88 +imu_odom_: 1691062930.677460573 0.035913 -0.153229 9.79707 -0.0607201 -0.0372843 -0.288687 0.18 -0.32 pose: 0.26960689 -5.95197 0.190362 0 0.00562057 -0.00739417 0.13992 0.990119 uwb: 0.0 860.229 1640.88 +imu_odom_: 1691062930.693562557 0.514753 -0.272939 9.48104 -0.0585895 -0.0266316 -0.292948 0.26 -0.47 pose: 0.0 -5.95197 0.190362 0 0.00562057 -0.00739417 0.13992 0.990119 uwb: 0.49913527 865.373 1641.47 +imu_odom_: 1691062930.709486927 0.0670376 -0.0023942 9.80665 -0.0585895 -0.0170442 -0.351537 0.26 -0.47 pose: 0.47998846 -5.94234 0.187673 0 0.00495753 -0.00392718 0.131946 0.991237 uwb: 0.0 865.373 1641.47 +imu_odom_: 1691062930.726490401 0.617704 0.0167594 10.0413 -0.0553937 -0.015979 -0.405866 0.23 -0.58 pose: 0.0 -5.94234 0.187673 0 0.00495753 -0.00392718 0.131946 0.991237 uwb: 0.0 865.373 1641.47 +imu_odom_: 1691062930.742415354 0.318429 -0.126893 9.24162 -0.0777643 0.00532632 -0.434628 0.23 -0.58 pose: 0.0 -5.94234 0.187673 0 0.00495753 -0.00392718 0.131946 0.991237 uwb: 0.50090850 866.582 1641.27 +imu_odom_: 1691062930.759569028 0.486023 -0.280122 10.1706 -0.0575243 0.00852212 -0.459129 0.23 -0.58 pose: 0.33027005 -5.93006 0.194691 0 0.00505971 -0.00336211 0.125586 0.992064 uwb: 0.0 866.582 1641.27 +imu_odom_: 1691062930.776569294 0.624887 -0.146046 9.96467 -0.0777643 0.00852212 -0.472977 0.18 -0.55 pose: 0.42074273 -5.93001 0.19467 0 0.00366636 -0.00261861 0.115602 0.993285 uwb: 0.0 866.582 1641.27 +imu_odom_: 1691062930.792578242 0.447716 0.0143652 9.64145 -0.0713727 -0.0436758 -0.492152 0.18 -0.55 pose: 0.0 -5.93001 0.19467 0 0.00366636 -0.00261861 0.115602 0.993285 uwb: 0.49821658 861.682 1639.56 +imu_odom_: 1691062930.809568592 0.785298 0.241814 9.69891 -0.0735032 -0.052198 -0.54222 0.18 -0.55 pose: 0.0 -5.93001 0.19467 0 0.00366636 -0.00261861 0.115602 0.993285 uwb: 0.0 861.682 1639.56 +imu_odom_: 1691062930.825461172 0.531513 0.153229 9.87369 -0.076699 -0.0276969 -0.594418 0.24 -0.82 pose: 0.7900792 -5.93006 0.19469 0 0.00368297 -0.00335546 0.113593 0.993515 uwb: 0.0 861.682 1639.56 +imu_odom_: 1691062930.841470411 0.148441 -0.222661 9.49301 -0.0575243 -0.0213053 -0.619984 0.18 -0.64 pose: 0.0 -5.93006 0.19469 0 0.00368297 -0.00335546 0.113593 0.993515 uwb: 0.50018521 864.61 1639.54 +imu_odom_: 1691062930.858623502 0.6608 -0.162806 9.73482 -0.0490022 -0.00319579 -0.658333 0.18 -0.64 pose: 0.65159812 -5.90817 0.199173 0 0.00761235 -0.00476117 0.094736 0.995462 uwb: 0.0 864.61 1639.54 +imu_odom_: 1691062930.876449720 0.586579 -0.0454898 9.7444 -0.0447411 -0.00106526 -0.661529 0.18 -0.67 pose: 0.0 -5.90817 0.199173 0 0.00761235 -0.00476117 0.094736 0.995462 uwb: 0.0 864.61 1639.54 +imu_odom_: 1691062930.892575328 0.316035 -0.186748 9.56723 -0.0511327 -0.0149137 -0.66366 0.18 -0.67 pose: 0.0 -5.90817 0.199173 0 0.00761235 -0.00476117 0.094736 0.995462 uwb: 0.49980606 862.011 1638.04 +imu_odom_: 1691062930.909561303 0.0407014 0.191536 10.0149 -0.0490022 -0.0543285 -0.689226 0.18 -0.67 pose: 0.33795793 -5.90817 0.199173 0 0.00729043 -0.00612639 0.0831571 0.996491 uwb: 0.0 862.011 1638.04 +imu_odom_: 1691062930.925620707 0.567426 -0.275333 10.0389 -0.0692422 -0.0223706 -0.692422 0.18 -0.73 pose: 0.34148398 -5.89851 0.19656 0 0.00767981 -0.0049324 0.0710827 0.997429 uwb: 0.0 862.011 1638.04 +imu_odom_: 1691062930.942560893 0.950498 0.0502782 10.1514 -0.0617853 -0.0372843 -0.695618 0.18 -0.73 pose: 0.0 -5.89851 0.19656 0 0.00767981 -0.0049324 0.0710827 0.997429 uwb: 0.50008022 860.443 1637.2 +imu_odom_: 1691062930.958557008 1.30245 -0.344765 9.59596 -0.0830906 -0.0628506 -0.66579 0.18 -0.73 pose: 0.0 -5.89851 0.19656 0 0.00767981 -0.0049324 0.0710827 0.997429 uwb: 0.0 860.443 1637.2 +imu_odom_: 1691062930.975559316 1.35033 -0.0837971 9.6606 -0.076699 -0.0500674 -0.632767 0.16 -0.64 pose: 0.49996356 -5.89851 0.19656 0 0.00686634 -0.00782067 0.0529235 0.998544 uwb: 0.0 860.443 1637.2 +imu_odom_: 1691062930.993579189 1.39821 -0.395043 9.77553 -0.0543285 0.0106526 -0.649811 0.16 -0.64 pose: 0.0 -5.89851 0.19656 0 0.00686634 -0.00782067 0.0529235 0.998544 uwb: 0.50051186 857.831 1635.87 +imu_odom_: 1691062931.8558614 1.34315 0.0670376 10.3286 -0.0639159 -0.04048 -0.590156 0.13 -0.53 pose: 0.43009010 -5.88619 0.203572 0 0.00608052 -0.0124017 0.0382236 0.999174 uwb: 0.0 857.831 1635.87 +imu_odom_: 1691062931.24417362 0.919373 -0.225055 9.46428 -0.0553937 -0.0319579 -0.507066 0.13 -0.53 pose: 0.0 -5.88619 0.203572 0 0.00608052 -0.0124017 0.0382236 0.999174 uwb: 0.0 857.831 1635.87 +imu_odom_: 1691062931.38435801 1.19231 -0.517148 10.3406 -0.0820254 0.00532632 -0.459129 0.13 -0.53 pose: 0.0 -5.88619 0.203572 0 0.00608052 -0.0124017 0.0382236 0.999174 uwb: 0.49937734 857.388 1635.25 +imu_odom_: 1691062931.53420184 1.12527 -0.371101 9.73961 -0.0639159 -0.0234358 -0.417584 0.1 -0.38 pose: 0.7041592 -5.88624 0.203593 0 0.00627672 -0.0131946 0.0360085 0.999245 uwb: 0.0 857.388 1635.25 +imu_odom_: 1691062931.70558692 0.80924 -0.466869 9.49301 -0.056459 0.0458064 -0.361125 0.1 -0.38 pose: 0.0 -5.88624 0.203593 0 0.00627672 -0.0131946 0.0360085 0.999245 uwb: 0.0 857.388 1635.25 +imu_odom_: 1691062931.86443689 0.969652 -0.227449 9.97903 -0.0639159 0.02024 -0.300405 0.1 -0.38 pose: 0.0 -5.88624 0.203593 0 0.00627672 -0.0131946 0.0360085 0.999245 uwb: 0.49991982 855.863 1634.25 +imu_odom_: 1691062931.103690982 0.40462 -0.433351 9.7444 -0.056459 0.0383495 -0.278034 0.12 -0.5 pose: 0.44830947 -5.87661 0.200912 0 0.0045237 -0.0173837 0.0241248 0.999548 uwb: 0.0 855.863 1634.25 +imu_odom_: 1691062931.121575531 0.567426 -0.244209 10.1969 -0.0372843 0.0117179 -0.312122 0.08 -0.35 pose: 0.0 -5.87661 0.200912 0 0.0045237 -0.0173837 0.0241248 0.999548 uwb: 0.0 855.863 1634.25 +imu_odom_: 1691062931.136727029 0.730232 -0.112527 9.7037 -0.0532632 -0.0394148 -0.295078 0.08 -0.35 pose: 0.67248900 -5.87661 0.200912 0 0.00101876 -0.0166862 0.0119239 0.999789 uwb: 0.50270798 857.642 1634.12 +imu_odom_: 1691062931.153556388 0.998382 -0.160412 9.38527 -0.056459 -0.0223706 -0.254598 0.06 -0.32 pose: 0.0 -5.87661 0.200912 0 0.00101876 -0.0166862 0.0119239 0.999789 uwb: 0.0 857.642 1634.12 +imu_odom_: 1691062931.167559369 0.866701 -0.45011 10.173 -0.056459 0.00319579 -0.223706 0.06 -0.32 pose: 0.0 -5.87661 0.200912 0 0.00101876 -0.0166862 0.0119239 0.999789 uwb: 0.0 857.642 1634.12 +imu_odom_: 1691062931.184451725 0.78051 -0.411803 9.79228 -0.0532632 0.00852212 -0.231162 0.06 -0.32 pose: 0.31721580 -5.87661 0.200912 0 0.00247292 -0.0172486 0.0066799 0.999826 uwb: 0.49779369 857.719 1633.78 +imu_odom_: 1691062931.200534752 0.605733 -0.196325 9.80426 -0.0426106 0.00745685 -0.24288 0.06 -0.23 pose: 0.40029517 -5.86696 0.198269 0 -0.000390446-0.0186604 0.0012657 0.999825 uwb: 0.0 857.719 1633.78 +imu_odom_: 1691062931.217517519 0.433351 -0.0143652 9.76116 -0.0596548 -0.0223706 -0.223706 0.06 -0.23 pose: 0.7990621 -5.86696 0.198269 0 -0.000188907-0.0178249 0.000136155 0.999841 uwb: 0.0 857.719 1633.78 +imu_odom_: 1691062931.233575756 0.622492 -0.270545 9.88326 -0.0607201 -0.00958738 -0.20027 0.06 -0.23 pose: 0.0 -5.86696 0.198269 0 -0.000188907-0.0178249 0.000136155 0.999841 uwb: 0.50171346 854.524 1632.48 +imu_odom_: 1691062931.250394033 0.670376 -0.416591 9.87848 -0.0575243 0.00426106 -0.199204 0.07 -0.29 pose: 0.41133410 -5.86696 0.198269 0 -9.32597e-05-0.0145452 -0.00517109 0.999881 uwb: 0.0 854.524 1632.48 +imu_odom_: 1691062931.266397732 0.713472 -0.306458 9.91199 -0.0607201 -0.0138484 -0.183225 0.04 -0.2 pose: 0.0 -5.86696 0.198269 0 -9.32597e-05-0.0145452 -0.00517109 0.999881 uwb: 0.0 854.524 1632.48 +imu_odom_: 1691062931.283388665 0.627281 -0.134075 9.90481 -0.0628506 -0.00958738 -0.170442 0.04 -0.2 pose: 0.0 -5.86696 0.198269 0 -9.32597e-05-0.0145452 -0.00517109 0.999881 uwb: 0.49809117 856.39 1631.94 +imu_odom_: 1691062931.299440194 0.596156 -0.251391 9.90002 -0.0575243 -0.0213053 -0.15979 0.04 -0.2 pose: 0.24832813 -5.86696 0.198268 0 -0.00248739 -0.0147153 -0.00803788 0.999856 uwb: 0.0 856.39 1631.94 +imu_odom_: 1691062931.315395771 0.543484 -0.272939 9.90481 -0.056459 0.00213053 -0.160855 0.04 -0.2 pose: 0.0 -5.86696 0.198268 0 -0.00248739 -0.0147153 -0.00803788 0.999856 uwb: 0.0 856.39 1631.94 +imu_odom_: 1691062931.330488355 0.641646 -0.308852 9.92397 -0.052198 0.00213053 -0.151268 0.04 -0.2 pose: 0.33029922 -5.86696 0.198268 0 -0.00177447 -0.0136588 -0.0115241 0.999839 uwb: 0.0 856.39 1631.94 +imu_odom_: 1691062931.347399085 0.6608 -0.251391 10.0533 -0.0660464 -0.0106526 -0.128897 0.04 -0.17 pose: 0.39049864 -5.86696 0.198268 0 -0.00355692 -0.0116719 -0.0153358 0.999808 uwb: 0.50008023 852.163 1630.12 +imu_odom_: 1691062931.363392284 0.574608 -0.19393 9.78989 -0.0543285 -0.00426106 -0.124636 0.04 -0.17 pose: 0.0 -5.86696 0.198268 0 -0.00355692 -0.0116719 -0.0153358 0.999808 uwb: 0.0 852.163 1630.12 +imu_odom_: 1691062931.379501852 0.600945 -0.205901 9.94551 -0.0553937 -0.0191748 -0.111853 0.04 -0.17 pose: 0.0 -5.86696 0.198268 0 -0.00355692 -0.0116719 -0.0153358 0.999808 uwb: 0.0 852.163 1630.12 +imu_odom_: 1691062931.395424180 0.744597 -0.203507 9.81623 -0.0628506 -0.0127832 -0.0937433 0.03 -0.11 pose: 0.7019427 -5.86696 0.198268 0 -0.00304962 -0.0121465 -0.0159352 0.999795 uwb: 0.49990231 848.979 1628.86 +imu_odom_: 1691062931.412404031 0.653617 -0.308852 9.94312 -0.0532632 -0.00213053 -0.0713727 0.03 -0.14 pose: 0.0 -5.86696 0.198268 0 -0.00304962 -0.0121465 -0.0159352 0.999795 uwb: 0.0 848.979 1628.86 +imu_odom_: 1691062931.428532556 0.665588 -0.371101 9.81862 -0.0543285 -0.00639159 -0.0617853 0.03 -0.14 pose: 0.0 -5.86696 0.198268 0 -0.00304962 -0.0121465 -0.0159352 0.999795 uwb: 0.0 848.979 1628.86 +imu_odom_: 1691062931.444408220 0.591368 -0.203507 9.8665 -0.052198 0.00106526 -0.052198 0.03 -0.14 pose: 0.66061302 -5.85461 0.205197 0 -0.000891686-0.0122962 -0.0208386 0.999707 uwb: 0.50000731 850.712 1628.91 +imu_odom_: 1691062931.461597184 0.579397 -0.222661 9.90002 -0.0553937 -0.00426106 -0.0383495 0.02 -0.14 pose: 0.0 -5.85461 0.205197 0 -0.000891686-0.0122962 -0.0208386 0.999707 uwb: 0.0 850.712 1628.91 +imu_odom_: 1691062931.478600366 0.641646 -0.234632 9.8665 -0.0585895 -0.0117179 -0.0234358 0.02 -0.14 pose: 0.31868280 -5.85461 0.205197 0 -0.00277946 -0.0121683 -0.0224375 0.99967 uwb: 0.0 850.712 1628.91 +imu_odom_: 1691062931.494532611 0.624887 -0.342371 9.90721 -0.0585895 -0.00745685 -0.0117179 0.01 -0.05 pose: 0.43163002 -5.85455 0.205176 0 -0.00131826 -0.0118489 -0.0240692 0.999639 uwb: 0.50014439 853.036 1628.9 +imu_odom_: 1691062931.511522086 0.624887 -0.282516 9.8665 -0.0553937 -0.00532632 -0.00958738 0.01 -0.05 pose: 0.0 -5.85455 0.205176 0 -0.00131826 -0.0118489 -0.0240692 0.999639 uwb: 0.0 853.036 1628.9 +imu_odom_: 1691062931.527518493 0.624887 -0.237026 9.85693 -0.0553937 -0.00426106 0.00319579 0.01 -0.05 pose: 0.0 -5.85455 0.205176 0 -0.00131826 -0.0118489 -0.0240692 0.999639 uwb: 0.0 853.036 1628.9 +imu_odom_: 1691062931.543446071 0.627281 -0.25618 9.85453 -0.056459 -0.00639159 0.0181095 0 -0.02 pose: 0.7829339 -5.85461 0.205197 0 -0.00210655 -0.011764 -0.0242607 0.999634 uwb: 0.50037479 852.609 1628.25 +imu_odom_: 1691062931.558494033 0.634463 -0.296881 9.88566 -0.0553937 -0.00532632 0.0319579 0 0.02 pose: 0.0 -5.85461 0.205197 0 -0.00210655 -0.011764 -0.0242607 0.999634 uwb: 0.0 852.609 1628.25 +imu_odom_: 1691062931.572446851 0.579397 -0.272939 9.91918 -0.0553937 0.00213053 0.0436758 0 0.02 pose: 0.0 -5.85461 0.205197 0 -0.00210655 -0.011764 -0.0242607 0.999634 uwb: 0.0 852.609 1628.25 +imu_odom_: 1691062931.586387419 0.474052 -0.28491 9.88805 -0.052198 0.00958738 0.0479369 0 0.02 pose: 0.64026169 -5.85461 0.205197 0 -0.00222677 -0.0119729 -0.0253721 0.999604 uwb: 0.49926360 846.751 1626.29 +imu_odom_: 1691062931.600488395 0.335188 -0.196325 9.87848 -0.0543285 0.00213053 0.0426106 0 0 pose: 0.0 -5.85461 0.205197 0 -0.00222677 -0.0119729 -0.0253721 0.999604 uwb: 0.0 846.751 1626.29 +imu_odom_: 1691062931.614362467 0.337582 -0.179565 9.92157 -0.0543285 -0.00745685 0.04048 0 0 pose: 0.0 -5.85461 0.205197 0 -0.00222677 -0.0119729 -0.0253721 0.999604 uwb: 0.0 846.751 1626.29 +imu_odom_: 1691062931.628365156 0.42138 -0.237026 9.87369 -0.056459 -0.0117179 0.0351537 0 0 pose: 0.41932239 -5.85461 0.205197 0 -0.00300373 -0.00838142 -0.0252873 0.999641 uwb: 0.0 846.751 1626.29 +imu_odom_: 1691062931.642369595 0.536301 -0.260968 9.89763 -0.0575243 -0.00958738 0.0340885 0 0 pose: 0.35977043 -5.85461 0.205197 0 -0.00194045 -0.00500731 -0.0252994 0.999665 uwb: 0.50126432 846.812 1626.04 +imu_odom_: 1691062931.656362952 0.529119 -0.275333 9.88326 -0.0553937 -0.00319579 0.0383495 0 0 pose: 0.6028693 -5.85461 0.205197 0 -0.00214455 -0.00559384 -0.025316 0.999662 uwb: 0.0 846.812 1626.04 +imu_odom_: 1691062931.670424555 0.483629 -0.248997 9.88566 -0.0553937 0 0.0436758 0 0 pose: 0.0 -5.85461 0.205197 0 -0.00214455 -0.00559384 -0.025316 0.999662 uwb: 0.0 846.812 1626.04 +imu_odom_: 1691062931.684365123 0.416591 -0.213084 9.91678 -0.0543285 0.00106526 0.0415453 0 0 pose: 0.0 -5.85461 0.205197 0 -0.00214455 -0.00559384 -0.025316 0.999662 uwb: 0.49858114 843.1 1624.68 +imu_odom_: 1691062931.698558260 0.392649 -0.184354 9.88326 -0.056459 -0.00639159 0.0394148 0 0 pose: 0.42031984 -5.85461 0.205197 0 -0.00257159 -0.00474114 -0.0253053 0.999665 uwb: 0.0 843.1 1624.68 +imu_odom_: 1691062931.712533826 0.428562 -0.205901 9.90242 -0.056459 -0.00958738 0.036219 0 0 pose: 0.0 -5.85461 0.205197 0 -0.00257159 -0.00474114 -0.0253053 0.999665 uwb: 0.0 843.1 1624.68 +imu_odom_: 1691062931.727471253 0.500388 -0.244209 9.90721 -0.0553937 -0.00745685 0.0383495 0 0 pose: 0.0 -5.85461 0.205197 0 -0.00257159 -0.00474114 -0.0253053 0.999665 uwb: 0.0 843.1 1624.68 +imu_odom_: 1691062931.741530231 0.4956 -0.268151 9.87608 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.43008135 -5.85461 0.205197 0 -0.000560132-0.00265055 -0.0253296 0.999675 uwb: 0.50119724 849.091 1626.18 +imu_odom_: 1691062931.756525405 0.438139 -0.241814 9.88566 -0.0543285 -0.00319579 0.0415453 0 0 pose: 0.0 -5.85461 0.205197 0 -0.000560132-0.00265055 -0.0253296 0.999675 uwb: 0.0 849.091 1626.18 +imu_odom_: 1691062931.771538369 0.418985 -0.234632 9.94551 -0.056459 -0.00319579 0.0415453 0 0 pose: 0.0 -5.85461 0.205197 0 -0.000560132-0.00265055 -0.0253296 0.999675 uwb: 0.0 849.091 1626.18 +imu_odom_: 1691062931.785531143 0.438139 -0.232238 9.87608 -0.056459 -0.00532632 0.0372843 0 0 pose: 0.43983121 -5.85461 0.205197 0 -0.00146517 -0.00203628 -0.0253085 0.999677 uwb: 0.49865406 849.753 1625.83 +imu_odom_: 1691062931.800573855 0.438139 -0.246603 9.90242 -0.0553937 -0.00745685 0.0383495 0 0 pose: 0.0 -5.85461 0.205197 0 -0.00146517 -0.00203628 -0.0253085 0.999677 uwb: 0.0 849.753 1625.83 +imu_odom_: 1691062931.814584419 0.481235 -0.260968 9.8665 -0.056459 -0.00852212 0.0383495 0 0 pose: 0.0 -5.85461 0.205197 0 -0.00146517 -0.00203628 -0.0253085 0.999677 uwb: 0.0 849.753 1625.83 +imu_odom_: 1691062931.829572302 0.462081 -0.244209 9.89763 -0.0553937 -0.00213053 0.0394148 0 0 pose: 0.37156766 -5.85461 0.205197 0 -0.00181385 -0.00167842 -0.025324 0.999676 uwb: 0.0 849.753 1625.83 +imu_odom_: 1691062931.844516145 0.433351 -0.248997 9.87608 -0.0543285 -0.00319579 0.0415453 0 0 pose: 0.0 -5.85461 0.205197 0 -0.00181385 -0.00167842 -0.025324 0.999676 uwb: 0.50049436 847.615 1625.1 +imu_odom_: 1691062931.859393201 0.387861 -0.23942 9.86411 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 -5.85461 0.205197 0 -0.00181385 -0.00167842 -0.025324 0.999676 uwb: 0.0 847.615 1625.1 +imu_odom_: 1691062931.874569197 0.435745 -0.23942 9.87608 -0.056459 -0.00639159 0.0394148 0 0 pose: 0.43942290 -5.85461 0.205197 0 -0.00165234 -0.00167216 -0.0253215 0.999677 uwb: 0.0 847.615 1625.1 +imu_odom_: 1691062931.889454711 0.464475 -0.23942 9.8689 -0.0553937 -0.00639159 0.04048 0 0 pose: 0.0 -5.85461 0.205197 0 -0.00165234 -0.00167216 -0.0253215 0.999677 uwb: 0.49860447 850.972 1625.57 +imu_odom_: 1691062931.904390096 0.505177 -0.246603 9.85453 -0.056459 -0.00319579 0.0383495 0 0 pose: 0.44938566 -5.85461 0.205197 0 -0.0013553 -0.00324818 -0.0253192 0.999673 uwb: 0.0 850.972 1625.57 +imu_odom_: 1691062931.918563693 0.454898 -0.244209 9.87129 -0.0543285 -0.00106526 0.04048 0 0 pose: 0.0 -5.85461 0.205197 0 -0.0013553 -0.00324818 -0.0253192 0.999673 uwb: 0.0 850.972 1625.57 +imu_odom_: 1691062931.933503453 0.426168 -0.232238 9.93354 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.0 -5.85461 0.205197 0 -0.0013553 -0.00324818 -0.0253192 0.999673 uwb: 0.0 850.972 1625.57 +imu_odom_: 1691062931.947439938 0.411803 -0.237026 9.88566 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.44048742 -5.85461 0.205197 0 -0.00114807 -0.00182832 -0.0253135 0.999677 uwb: 0.0 850.972 1625.57 +imu_odom_: 1691062931.962561979 0.454898 -0.217872 9.90481 -0.056459 -0.00532632 0.0383495 0 0 pose: 0.0 -5.85461 0.205197 0 -0.00114807 -0.00182832 -0.0253135 0.999677 uwb: 0.0 850.972 1625.57 +imu_odom_: 1691062931.977364664 0.488417 -0.270545 9.88805 -0.056459 -0.00639159 0.0394148 0 0 pose: 0.0 -5.85461 0.205197 0 -0.00114807 -0.00182832 -0.0253135 0.999677 uwb: 0.0 850.972 1625.57 +imu_odom_: 1691062931.991572675 0.483629 -0.268151 9.89045 -0.0543285 -0.00106526 0.0394148 0 0 pose: 0.43861211 -5.85461 0.205197 0 -0.00162426 -0.00291343 -0.0253315 0.999674 uwb: 0.100096832 847.838 1624.21 +imu_odom_: 1691062932.13341707 0.47884 -0.234632 9.89763 -0.056459 -0.00319579 0.0394148 0 0 pose: 0.0 -5.85461 0.205197 0 -0.00162426 -0.00291343 -0.0253315 0.999674 uwb: 0.0 847.838 1624.21 +imu_odom_: 1691062932.30501797 -0.201113 -0.275333 9.67497 -0.052198 0.0745685 0.0458064 0 0 pose: 0.0 -5.85461 0.205197 0 -0.00162426 -0.00291343 -0.0253315 0.999674 uwb: 0.0 847.838 1624.21 +imu_odom_: 1691062932.47505272 -1.05345 -0.25618 10.1562 -0.0415453 0.0713727 0.0415453 0.02 0 pose: 0.43210541 -5.85461 0.205197 0 -0.000510837-0.00281682 -0.0253186 0.999675 uwb: 0.49984107 851.634 1625.2 +imu_odom_: 1691062932.64501746 -1.17076 -0.23942 9.87608 -0.0617853 -0.0245011 0.0458064 0.05 0.08 pose: 0.0 -5.85461 0.205197 0 -0.000510837-0.00281682 -0.0253186 0.999675 uwb: 0.0 851.634 1625.2 +imu_odom_: 1691062932.80499904 -0.323217 -0.225055 9.93833 -0.0617853 -0.0575243 0.056459 0.05 0.08 pose: 0.33937536 -5.85461 0.205197 0 -0.0004110520.00153865 -0.0252476 0.99968 uwb: 0.0 851.634 1625.2 +imu_odom_: 1691062932.97501045 0.411803 -0.268151 9.91439 -0.0596548 -0.0468716 0.0585895 0.07 0.05 pose: 0.0 -5.85461 0.205197 0 -0.0004110520.00153865 -0.0252476 0.99968 uwb: 0.50044771 850.601 1624.68 +imu_odom_: 1691062932.116548693 0.605733 -0.263362 9.88805 -0.0543285 -0.00319579 0.0596548 0.07 0.05 pose: 0.0 -5.85461 0.205197 0 -0.0004110520.00153865 -0.0252476 0.99968 uwb: 0.0 850.601 1624.68 +imu_odom_: 1691062932.132489687 -0.181959 -0.198719 9.6223 -0.0649811 0.0319579 0.0660464 0.07 0.05 pose: 0.33069878 -5.85461 0.205197 0 -0.0008255060.00284921 -0.025014 0.999683 uwb: 0.49947651 853.933 1625.23 +imu_odom_: 1691062932.149370085 -0.181959 -0.265756 10.1538 -0.0447411 0 0.0447411 0.07 0 pose: 0.35928629 -5.85461 0.205197 0 -0.00151503 0.00071482 -0.0246407 0.999695 uwb: 0.0 853.933 1625.23 +imu_odom_: 1691062932.165363868 -0.0407014 -0.179565 9.8689 -0.0617853 -0.0308927 0.0436758 0.07 0 pose: 0.0 -5.85461 0.205197 0 -0.00151503 0.00071482 -0.0246407 0.999695 uwb: 0.0 853.933 1625.23 +imu_odom_: 1691062932.182549915 0.416591 -0.23942 10.1538 -0.0639159 -0.0298274 0.0511327 0.07 0 pose: 0.0 -5.85461 0.205197 0 -0.00151503 0.00071482 -0.0246407 0.999695 uwb: 0.0 853.933 1625.23 +imu_odom_: 1691062932.198397581 0.282516 -0.440533 9.80665 -0.0500674 0.00745685 0.04048 0.12 0 pose: 0.49044704 -5.845 0.202432 0 -0.00119162 0.00404203 -0.0243974 0.999693 uwb: 0.50075685 852.364 1624.55 +imu_odom_: 1691062932.215486801 -0.00718261-0.134075 9.95988 -0.0287621 -0.00426106 0.036219 0.12 0 pose: 0.0 -5.845 0.202432 0 -0.00119162 0.00404203 -0.0243974 0.999693 uwb: 0.0 852.364 1624.55 +imu_odom_: 1691062932.231488166 0.385466 -0.0574608 9.99819 -0.0543285 -0.0532632 0.0543285 0.1 0.02 pose: 0.42930849 -5.845 0.202432 0 -0.00181365 0.00509949 -0.0243601 0.999689 uwb: 0.0 852.364 1624.55 +imu_odom_: 1691062932.248485516 0.198719 -0.134075 9.67257 -0.0532632 -0.0127832 0.0543285 0.1 0.02 pose: 0.0 -5.845 0.202432 0 -0.00181365 0.00509949 -0.0243601 0.999689 uwb: 0.49957859 849.169 1623.45 +imu_odom_: 1691062932.264484549 0.229843 -0.399832 9.7037 -0.0543285 -0.00958738 0.056459 0.1 0.02 pose: 0.0 -5.845 0.202432 0 -0.00181365 0.00509949 -0.0243601 0.999689 uwb: 0.0 849.169 1623.45 +imu_odom_: 1691062932.280484748 0.035913 -0.181959 9.83059 -0.0532632 0.00106526 0.0383495 0.15 0.02 pose: 0.8013661 -5.845 0.202432 0 -0.00108247 0.00457427 -0.0242977 0.999694 uwb: 0.0 849.169 1623.45 +imu_odom_: 1691062932.297372729 0.725443 -0.356736 10.422 -0.0468716 -0.0351537 0.0415453 0.11 0 pose: 0.0 -5.845 0.202432 0 -0.00108247 0.00457427 -0.0242977 0.999694 uwb: 0.49950276 847.013 1622.82 +imu_odom_: 1691062932.313354262 1.01754 -0.126893 9.87369 -0.0553937 -0.0383495 0.0553937 0.11 0 pose: 0.65004947 -5.83538 0.199677 0 -0.00063695 0.00659195 -0.0239797 0.999691 uwb: 0.0 847.013 1622.82 +imu_odom_: 1691062932.328356727 1.26414 -0.217872 9.71806 -0.0585895 0.0181095 0.0841559 0.11 0 pose: 0.0 -5.83538 0.199677 0 -0.00063695 0.00659195 -0.0239797 0.999691 uwb: 0.0 847.013 1622.82 +imu_odom_: 1691062932.344484086 1.2378 -0.40462 9.93833 -0.0500674 -0.0106526 0.0969391 0.08 -0.02 pose: 0.0 -5.83538 0.199677 0 -0.00063695 0.00659195 -0.0239797 0.999691 uwb: 0.50068978 843.75 1622.04 +imu_odom_: 1691062932.361481727 1.14922 -0.380678 9.76116 -0.0458064 -0.00639159 0.104396 0.08 -0.02 pose: 0.31988440 -5.83538 0.199677 0 -0.0006826410.00311068 -0.0236889 0.999714 uwb: 0.0 843.75 1622.04 +imu_odom_: 1691062932.378478785 1.34315 -0.272939 10.0604 -0.0511327 0.0181095 0.104396 0.09 -0.02 pose: 0.40987878 -5.82577 0.196931 0 -0.00128857 -0.000896522-0.0225053 0.999745 uwb: 0.0 843.75 1622.04 +imu_odom_: 1691062932.394567646 0.682347 -0.141258 9.81383 -0.0500674 0.036219 0.0756338 0.09 -0.02 pose: 0.0 -5.82577 0.196931 0 -0.00128857 -0.000896522-0.0225053 0.999745 uwb: 0.49924319 847.058 1622.67 +imu_odom_: 1691062932.411488583 0.438139 0.023942 9.84975 -0.0490022 0.0276969 0.0127832 0.09 -0.02 pose: 0.0 -5.82577 0.196931 0 -0.00128857 -0.000896522-0.0225053 0.999745 uwb: 0.0 847.058 1622.67 +imu_odom_: 1691062932.427407995 0.742203 -0.0287304 9.95509 -0.056459 -0.0351537 0.00639159 0.05 0.02 pose: 0.8002579 -5.82577 0.196931 0 -0.00131655 -0.00160674 -0.0222471 0.99975 uwb: 0.0 847.058 1622.67 +imu_odom_: 1691062932.444419344 0.890643 -0.380678 9.94551 -0.0660464 0.00532632 0.0117179 0.06 0.02 pose: 0.0 -5.82577 0.196931 0 -0.00131655 -0.00160674 -0.0222471 0.99975 uwb: 0.50087352 848.792 1622.63 +imu_odom_: 1691062932.460362963 0.972046 -0.414197 10.0317 -0.052198 -0.00745685 0.0223706 0.06 0.02 pose: 0.65063568 -5.82577 0.196931 0 0.00142634 -0.00533804 -0.0222651 0.999737 uwb: 0.0 848.792 1622.63 +imu_odom_: 1691062932.477489514 0.675165 -0.318429 9.74679 -0.0447411 0.00852212 0.00958738 0.05 0.02 pose: 0.0 -5.82577 0.196931 0 0.00142634 -0.00533804 -0.0222651 0.999737 uwb: 0.0 848.792 1622.63 +imu_odom_: 1691062932.494407826 0.675165 0.0502782 10.1107 -0.0553937 0.00213053 0.0138484 0.05 0.02 pose: 0.0 -5.82577 0.196931 0 0.00142634 -0.00533804 -0.0222651 0.999737 uwb: 0.49988482 850.49 1622.75 +imu_odom_: 1691062932.519478626 0.311246 -0.244209 9.87608 -0.0617853 0.00958738 0.0330232 0.05 0.02 pose: 0.34005782 -5.82577 0.196931 0 -0.000317547-0.00814942 -0.0226479 0.99971 uwb: 0.0 850.49 1622.75 +imu_odom_: 1691062932.544401267 -0.696713 -0.354342 9.47146 -0.0532632 0.0735032 0.0639159 0.03 0.02 pose: 0.32991132 -5.82577 0.196931 0 0.000587557 -0.00853362 -0.0230318 0.999698 uwb: 0.49944151 849.974 1622.51 +imu_odom_: 1691062932.561453447 -1.15401 -0.160412 10.1323 -0.0532632 0.0426106 0.0692422 0.03 0.02 pose: 0.0 -5.82577 0.196931 0 0.000587557 -0.00853362 -0.0230318 0.999698 uwb: 0.0 849.974 1622.51 +imu_odom_: 1691062932.586369963 -0.452504 -0.0454898 9.76595 -0.0585895 -0.0777643 0.0735032 0.08 0.05 pose: 0.49991399 -5.81615 0.194197 0 0.000120001 -0.00230159 -0.0226802 0.99974 uwb: 0.49956984 848.42 1621.79 +imu_odom_: 1691062932.613483186 0.481235 -0.203507 9.66539 -0.0490022 -0.02024 0.0447411 0.1 0.02 pose: 0.34833776 -5.81615 0.194197 0 0.000644864 0.000445857 -0.0221121 0.999755 uwb: 0.0 848.42 1621.79 +imu_odom_: 1691062932.639450808 -0.114922 -0.150835 9.67736 -0.0617853 0.0138484 0.0617853 0.1 0.02 pose: 0.0 -5.81615 0.194197 0 0.000644864 0.000445857 -0.0221121 0.999755 uwb: 0.0 848.42 1621.79 +imu_odom_: 1691062932.666329252 0.167594 -0.160412 10.0102 -0.0639159 -0.00106526 0.0191748 0.14 -0.02 pose: 0.6994637 -5.81615 0.194197 0 0.000642182 -0.000310384-0.0220937 0.999756 uwb: 0.0 848.42 1621.79 +imu_odom_: 1691062932.691387511 0.442927 -0.54109 9.92636 -0.0681769 0 0.0756338 0.14 -0.02 pose: 0.0 -5.81615 0.194197 0 0.000642182 -0.000310384-0.0220937 0.999756 uwb: 0.100097416 847.893 1621.59 +imu_odom_: 1691062932.716317735 -0.047884 -0.0742203 9.71328 -0.0671117 0.0127832 0.0213053 0.15 0 pose: 0.54105994 -5.81343 0.203822 0 0.000958272 0.00113746 -0.0218372 0.99976 uwb: 0.0 847.893 1621.59 +imu_odom_: 1691062932.739329195 0.102951 -0.177171 9.76834 -0.0756338 -0.00852212 0.0607201 0.15 0 pose: 0.51015964 -5.80381 0.201111 0 -0.00111307 0.00315749 -0.0216485 0.99976 uwb: 0.49901571 847.446 1621.07 +imu_odom_: 1691062932.755385974 0.270545 -0.299275 9.91678 -0.0649811 -0.0319579 0.0479369 0.13 0.02 pose: 0.0 -5.80381 0.201111 0 -0.00111307 0.00315749 -0.0216485 0.99976 uwb: 0.0 847.446 1621.07 +imu_odom_: 1691062932.782458949 0.287304 -0.452504 10.0054 -0.0596548 0.0127832 0.0351537 0.13 0.02 pose: 0.23850537 -5.80381 0.201111 0 -0.0004043990.00551682 -0.0217422 0.999748 uwb: 0.49982941 845.829 1620.62 +imu_odom_: 1691062932.807523915 0.155623 -0.244209 9.77792 -0.0447411 -0.0372843 0.052198 0.18 0 pose: 0.41140702 -5.79418 0.198403 0 -0.00265211 0.00681391 -0.0215259 0.999742 uwb: 0.0 845.829 1620.62 +imu_odom_: 1691062932.824514265 0.629675 -0.536301 10.331 -0.0585895 -0.0862864 0.0596548 0.18 0 pose: 0.0 -5.79418 0.198403 0 -0.00265211 0.00681391 -0.0215259 0.999742 uwb: 0.0 845.829 1620.62 +imu_odom_: 1691062932.850337812 0.308852 -0.181959 9.18176 -0.0575243 -0.0245011 0.0223706 0.17 0.02 pose: 0.50994966 -5.78455 0.195698 0 -0.00363813 0.00775853 -0.0213377 0.999736 uwb: 0.50052936 840.077 1618.39 +imu_odom_: 1691062932.877638274 0.289698 -0.342371 9.56484 -0.0596548 -0.0127832 0.056459 0.2 -0.02 pose: 0.35865049 -5.78455 0.195698 0 -0.0017274 0.00569071 -0.02145 0.999752 uwb: 0.0 840.077 1618.39 +imu_odom_: 1691062932.903312788 0.1652 -0.356736 9.85453 -0.0490022 -0.00745685 0.0340885 0.2 -0.02 pose: 0.0 -5.78455 0.195698 0 -0.0017274 0.00569071 -0.02145 0.999752 uwb: 0.49998982 837.966 1617.64 +imu_odom_: 1691062932.930325683 0.653617 -0.150835 10.058 -0.0511327 0.0287621 0.052198 0.19 0 pose: 0.7042468 -5.78455 0.195698 0 -0.00244403 0.00572612 -0.0213943 0.999752 uwb: 0.0 837.966 1617.64 +imu_odom_: 1691062932.956341428 0.414197 -0.263362 10.3956 -0.0447411 -0.00213053 0.0255663 0.19 0 pose: 0.45932508 -5.77493 0.192996 0 -0.0053525 0.00818201 -0.0212989 0.999725 uwb: 0.50036313 837.509 1617.18 +imu_odom_: 1691062932.973444647 0.316035 -0.0430956 10.2424 -0.0468716 0.00958738 0.0490022 0.21 0 pose: 0.0 -5.77493 0.192996 0 -0.0050753 0.00764521 -0.0212569 0.999732 uwb: 0.0 837.509 1617.18 +imu_odom_: 1691062932.999464474 0.227449 -0.172383 9.92875 -0.0415453 -0.0394148 0.0447411 0.21 0 pose: 0.0 -5.77493 0.192996 0 -0.0050753 0.00764521 -0.0212569 0.999732 uwb: 0.49892821 836.462 1616.79 +imu_odom_: 1691062933.26310546 0.00957681 -0.112527 10.1059 -0.0340885 -0.00106526 0.0436758 0.22 0 pose: 0.53058096 -5.7626 0.199925 0 -0.00269121 0.00371258 -0.0212915 0.999763 uwb: 0.0 836.462 1616.79 +imu_odom_: 1691062933.51445508 0.68953 -0.414197 10.4315 -0.0511327 0.00532632 0.0372843 0.16 0 pose: 0.43087757 -5.7626 0.199925 0 0.000458133 0.0060735 -0.0211486 0.999758 uwb: 0.50066644 841.337 1617.96 +imu_odom_: 1691062933.68446941 0.622492 -0.0383072 10.0772 -0.0426106 0.0149137 0.0170442 0.17 -0.02 pose: 0.28016462 -5.75297 0.197229 0 0.0010137 0.00726942 -0.0211169 0.99975 uwb: 0.0 841.337 1617.96 +imu_odom_: 1691062933.84297232 0.246603 -0.148441 10.1873 -0.0458064 0.0330232 0.0351537 0.17 -0.02 pose: 0.0 -5.75297 0.197229 0 0.0010137 0.00726942 -0.0211169 0.99975 uwb: 0.49814660 839.871 1616.95 +imu_odom_: 1691062933.111400831 0.3304 -0.339977 9.89045 -0.0340885 -0.0245011 0.0276969 0.22 0 pose: 0.23907408 -5.75297 0.197229 0 0.000615107 0.00528932 -0.0212176 0.999761 uwb: 0.0 839.871 1616.95 +imu_odom_: 1691062933.127479776 0.0766145 -0.0383072 9.74679 -0.0383495 -0.0255663 0.0394148 0.22 0 pose: 0.0 -5.75297 0.197229 0 0.000615107 0.00528932 -0.0212176 0.999761 uwb: 0.0 839.871 1616.95 +imu_odom_: 1691062933.154430841 0.416591 -0.349553 9.76595 -0.0692422 -0.00852212 0.0479369 0.21 -0.02 pose: 0.33015923 -5.74334 0.19453 0 0.0015185 0.00580696 -0.0214074 0.999753 uwb: 0.50145682 837.895 1615.71 +imu_odom_: 1691062933.179310902 0.395043 -0.0047884 10.0102 -0.0585895 0.00958738 0.0372843 0.21 -0.02 pose: 0.0 -5.74334 0.19453 0 0.0015185 0.00580696 -0.0214074 0.999753 uwb: 0.0 837.895 1615.71 +imu_odom_: 1691062933.196312043 0.416591 -0.440533 9.53132 -0.0532632 0.0234358 0.0543285 0.18 -0.02 pose: 0.44044660 -5.73371 0.191827 0 0.000286583 0.00562629 -0.0215046 0.999753 uwb: 0.50092310 835.323 1614.56 +imu_odom_: 1691062933.221493961 0.107739 -0.248997 9.81623 -0.015979 0.0340885 0.0298274 0.18 -0.02 pose: 0.0 -5.73371 0.191827 0 0.000286583 0.00562629 -0.0215046 0.999753 uwb: 0.0 835.323 1614.56 +imu_odom_: 1691062933.248486441 0.560243 -0.289698 10.0628 -0.0745685 0.00319579 0.0649811 0.21 0 pose: 0.50884723 -5.73101 0.201454 0 0.000353529 0.00359632 -0.0214024 0.999764 uwb: 0.49999565 831.699 1613.07 +imu_odom_: 1691062933.274409733 0.617704 -0.0814029 10.1299 -0.0490022 -0.00852212 0.036219 0.18 0 pose: 0.42129687 -5.72138 0.198752 0 -0.0005016590.00576501 -0.021368 0.999755 uwb: 0.0 831.699 1613.07 +imu_odom_: 1691062933.291299755 -0.122104 -0.268151 9.69652 -0.056459 -0.00319579 0.0713727 0.22 0 pose: 0.0 -5.72138 0.198752 0 -0.0005016590.00576501 -0.021368 0.999755 uwb: 0.49768579 834.588 1613.03 +imu_odom_: 1691062933.307325620 0.184354 -0.260968 9.80665 -0.04048 -0.0351537 0.0383495 0.22 0 pose: 0.0 -5.72138 0.198752 0 -0.0005016590.00576501 -0.021368 0.999755 uwb: 0.0 834.588 1613.03 +imu_odom_: 1691062933.332286176 0.0287304 0.0023942 9.56962 -0.072438 -0.00639159 0.0596548 0.24 0 pose: 0.52829735 -5.71175 0.196052 0 1.53188e-05 0.00222896 -0.0210493 0.999776 uwb: 0.0 834.588 1613.03 +imu_odom_: 1691062933.355442878 0.31364 -0.198719 9.79947 -0.0745685 -0.00319579 0.0394148 0.24 0 pose: 0.0 -5.71175 0.196052 0 1.53188e-05 0.00222896 -0.0210493 0.999776 uwb: 0.50003065 836.426 1612.6 +imu_odom_: 1691062933.380475471 0.610521 -0.1652 9.63427 -0.0852212 -0.00639159 0.0500674 0.19 0.02 pose: 0.74142336 -5.69555 0.191521 0 0.000671086 0.00414825 -0.0206414 0.999778 uwb: 0.0 836.426 1612.6 +imu_odom_: 1691062933.407282462 0.380678 -0.380678 9.80186 -0.0543285 0.0287621 0.0298274 0.19 0.02 pose: 0.7892918 -5.69249 0.190669 0 0.000641627 0.00335791 -0.0205987 0.999782 uwb: 0.50002774 839.247 1612.74 +imu_odom_: 1691062933.432300472 0.0550666 -0.344765 10.1059 -0.0660464 0.0117179 0.0500674 0.18 0 pose: 0.43946666 -5.68386 0.195538 0 -0.00208128 0.00199352 -0.0206407 0.999783 uwb: 0.0 839.247 1612.74 +imu_odom_: 1691062933.449312405 0.426168 -0.23942 10.1347 -0.0596548 0.02024 0.0276969 0.18 0 pose: 0.0 -5.68386 0.195538 0 -0.00208128 0.00199352 -0.0206407 0.999783 uwb: 0.0 839.247 1612.74 +imu_odom_: 1691062933.474282585 0.457293 -0.378284 9.7875 -0.0617853 0.00319579 0.0447411 0.21 -0.02 pose: 0.32145640 -5.68017 0.197615 0 -0.00266851 0.00401843 -0.0205494 0.999777 uwb: 0.0 839.247 1612.74 +imu_odom_: 1691062933.491410302 0.131681 -0.399832 9.69412 -0.0585895 -0.0106526 0.0394148 0.21 -0.02 pose: 0.0 -5.68017 0.197615 0 -0.00266851 0.00401843 -0.0205494 0.999777 uwb: 0.99989798 842.498 1613.39 +imu_odom_: 1691062933.516344026 0.0502782 -0.19393 9.85214 -0.0340885 0.0458064 0.0426106 0.18 0 pose: 0.51982200 -5.67054 0.194929 0 -0.0049712 0.00309505 -0.0205505 0.999772 uwb: 0.0 842.498 1613.39 +imu_odom_: 1691062933.532252648 0.509965 -0.1652 10.1754 -0.0575243 -0.04048 0.0372843 0.18 0 pose: 0.7932291 -5.67054 0.194929 0 -0.00457076 0.00402222 -0.0205351 0.999771 uwb: 0.0 842.498 1613.39 +imu_odom_: 1691062933.558287058 0.0407014 -0.203507 9.98382 -0.0426106 0.0330232 0.0372843 0.18 0 pose: 0.0 -5.67054 0.194929 0 -0.00457076 0.00402222 -0.0205351 0.999771 uwb: 0.49994899 848.015 1614.1 +imu_odom_: 1691062933.585297620 0.354342 -0.260968 10.0796 -0.056459 -0.0213053 0.0287621 0.23 0 pose: 0.32910055 -5.66548 0.193517 0 -0.00298742 0.00431773 -0.0205201 0.999776 uwb: 0.50125850 847.137 1613.06 +imu_odom_: 1691062933.610491496 0.430956 0.0502782 9.58878 -0.0777643 0.0287621 0.0490022 0.18 0 pose: 0.53044972 -5.65403 0.190325 0 -0.00222293 0.00438005 -0.0206935 0.999774 uwb: 0.0 847.137 1613.06 +imu_odom_: 1691062933.637428562 -0.0311246 -0.459687 9.75877 -0.0458064 0.0415453 0.0266316 0.23 -0.02 pose: 0.0 -5.65403 0.190325 0 -0.00222293 0.00438005 -0.0206935 0.999774 uwb: 0.49850240 845.778 1611.68 +imu_odom_: 1691062933.663279233 -0.0837971 -0.007182619.72764 -0.0713727 -0.0266316 0.0500674 0.23 -0.02 pose: 0.32213303 -5.65127 0.189556 0 -0.0004792150.00465791 -0.0206133 0.999777 uwb: 0.0 845.778 1611.68 +imu_odom_: 1691062933.690397122 0.691924 -0.131681 9.89763 -0.0308927 -0.0234358 0.0276969 0.23 -0.02 pose: 0.45768310 -5.63895 0.196502 0 -0.0001832140.00862887 -0.0205956 0.999751 uwb: 0.0 845.778 1611.68 +imu_odom_: 1691062933.706279495 0.85473 -0.138864 10.1059 -0.0596548 0.0223706 0.0500674 0.23 -0.02 pose: 0.7062883 -5.63895 0.196502 0 2.35531e-05 0.00786347 -0.0206375 0.999756 uwb: 0.0 845.778 1611.68 +imu_odom_: 1691062933.733379302 0.440533 -0.260968 10.003 -0.0351537 0.00532632 0.0383495 0.23 0 pose: 0.0 -5.63895 0.196502 0 2.35531e-05 0.00786347 -0.0206375 0.999756 uwb: 0.100231576 843.827 1610.43 +imu_odom_: 1691062933.759330009 0.639252 -0.308852 9.73482 -0.0607201 0.0266316 0.0426106 0.23 0 pose: 0.43958040 -5.62932 0.193815 0 0.000452422 0.00363884 -0.0206775 0.999779 uwb: 0.0 843.827 1610.43 +imu_odom_: 1691062933.786408526 0.402226 -0.0694318 10.1347 -0.0340885 0.0234358 0.0553937 0.25 0.02 pose: 0.45029853 -5.6224 0.191881 0 -0.00112899 -2.88643e-05-0.0206555 0.999786 uwb: 0.49924903 845.744 1609.59 +imu_odom_: 1691062933.812315485 0.438139 -0.0957681 10.422 -0.0681769 0.0372843 0.0383495 0.18 0.02 pose: 0.0 -5.6224 0.191881 0 -0.00112899 -2.88643e-05-0.0206555 0.999786 uwb: 0.0 845.744 1609.59 +imu_odom_: 1691062933.829315751 0.0215478 -0.0622492 9.84735 -0.0532632 0.0245011 0.0468716 0.18 0.02 pose: 0.35115218 -5.61969 0.191127 0 0.00253536 9.36758e-05 -0.0204456 0.999788 uwb: 0.0 845.744 1609.59 +imu_odom_: 1691062933.855327705 0.234632 -0.351948 9.61272 -0.0788296 0.0490022 0.0458064 0.2 0 pose: 0.0 -5.61969 0.191127 0 0.00253536 9.36758e-05 -0.0204456 0.999788 uwb: 0.49918487 842.2 1607.93 +imu_odom_: 1691062933.882447052 0.158017 -0.244209 9.56962 -0.0777643 -0.00106526 0.0596548 0.2 0 pose: 0.42865812 -5.61006 0.188443 0 0.00361428 0.00216102 -0.0203744 0.999784 uwb: 0.49940652 843.014 1606.97 +imu_odom_: 1691062933.907409650 0.438139 -0.287304 10.0126 -0.0809601 -0.00745685 0.0436758 0.18 0.02 pose: 0.45136013 -5.5985 0.192672 0 0.000725088 0.00624967 -0.020057 0.999779 uwb: 0.0 843.014 1606.97 +imu_odom_: 1691062933.934460168 0.452504 -0.246603 10.0796 -0.0756338 0.00426106 0.0543285 0.18 0.02 pose: 0.7889127 -5.59774 0.195395 0 0.000239238 0.00554941 -0.0200423 0.999784 uwb: 0.50041563 847.424 1607.4 +imu_odom_: 1691062933.960373252 0.251391 -0.241814 10.0197 -0.0330232 -0.00852212 0.0340885 0.18 0.02 pose: 0.44123989 -5.58811 0.192719 0 -0.00143204 0.00147184 -0.0198135 0.999802 uwb: 0.0 847.424 1607.4 +imu_odom_: 1691062933.977302939 0.514753 -0.361524 9.73482 -0.072438 -0.0191748 0.0426106 0.18 0.02 pose: 0.0 -5.58811 0.192719 0 -0.00143204 0.00147184 -0.0198135 0.999802 uwb: 0.0 847.424 1607.4 +imu_odom_: 1691062933.994456322 0.667982 -0.237026 9.66539 -0.0713727 -0.0319579 0.0415453 0.25 0.02 pose: 0.0 -5.58811 0.192719 0 -0.00143204 0.00147184 -0.0198135 0.999802 uwb: 0.49917612 850.936 1606.86 +imu_odom_: 1691062934.19346590 0.344765 -0.311246 9.91678 -0.0575243 -0.00319579 0.0490022 0.25 0.02 pose: 0.32813518 -5.57847 0.190047 0 -0.00150941 0.00338272 -0.0198725 0.999796 uwb: 0.0 850.936 1606.86 +imu_odom_: 1691062934.42367092 0.56982 -0.311246 10.1418 -0.0287621 -0.00958738 0.04048 0.18 0 pose: 0.52072904 -5.57843 0.190032 0 -0.00405591 0.00227817 -0.0197256 0.999795 uwb: 0.50005690 850.209 1605.26 +imu_odom_: 1691062934.67273109 0.354342 -0.225055 10.1227 -0.0628506 -0.015979 0.056459 0.18 0 pose: 0.6054358 -5.57847 0.190048 0 -0.00402898 0.00165706 -0.0197256 0.999796 uwb: 0.0 850.209 1605.26 +imu_odom_: 1691062934.94298546 0.531513 -0.220267 9.76355 -0.0394148 -0.0170442 0.0436758 0.21 -0.02 pose: 0.41872161 -5.56886 0.187281 0 -0.00203202 0.0012408 -0.0195093 0.999807 uwb: 0.50235511 848.304 1603.89 +imu_odom_: 1691062934.119294975 0.124498 -0.215478 10.1682 -0.0532632 -0.00745685 0.0585895 0.18 0 pose: 0.0 -5.56886 0.187281 0 -0.00203202 0.0012408 -0.0195093 0.999807 uwb: 0.0 848.304 1603.89 +imu_odom_: 1691062934.146367075 0.373495 0.0574608 10.0197 -0.0479369 -0.0234358 0.0447411 0.18 0 pose: 0.35047848 -5.55649 0.194131 0 -0.00119309 -0.000801078-0.0193815 0.999811 uwb: 0.49877656 844.415 1601.54 +imu_odom_: 1691062934.162359692 0.54109 -0.490811 9.4164 -0.0649811 -0.052198 0.0639159 0.18 -0.02 pose: 0.0 -5.55649 0.194131 0 -0.00119309 -0.000801078-0.0193815 0.999811 uwb: 0.0 844.415 1601.54 +imu_odom_: 1691062934.189244262 0.754174 -0.138864 10.0317 -0.0330232 -0.0234358 0.0213053 0.18 -0.02 pose: 0.51987742 -5.54688 0.191373 0 0.00103233 0.000142683 -0.0190494 0.999818 uwb: 0.50074520 846.29 1600.79 +imu_odom_: 1691062934.215240175 0.402226 -0.21069 9.92875 -0.0628506 -0.0276969 0.0490022 0.19 0 pose: 0.34935563 -5.54005 0.189419 0 0.00104608 -0.0033001 -0.0191966 0.99981 uwb: 0.0 846.29 1600.79 +imu_odom_: 1691062934.242344940 0.366313 -0.294487 9.46188 -0.072438 -0.0649811 0.056459 0.19 0 pose: 0.8120988 -5.53726 0.18862 0 0.000814363 -0.00260665 -0.0191588 0.999813 uwb: 0.50003358 848.633 1600.36 +imu_odom_: 1691062934.258277185 0.543484 -0.35913 9.73722 -0.0788296 -0.0223706 0.0468716 0.2 0 pose: 0.0 -5.53726 0.18862 0 0.000814363 -0.00260665 -0.0191588 0.999813 uwb: 0.0 848.633 1600.36 +imu_odom_: 1691062934.285299997 0.584185 -0.203507 9.77313 -0.0436758 -0.0170442 0.0436758 0.2 0 pose: 0.44979690 -5.53039 0.186653 0 -0.00217685 -0.00035801 -0.0188453 0.99982 uwb: 0.49940361 851.423 1600.36 +imu_odom_: 1691062934.311247787 0.339977 -0.332794 10.1107 -0.0426106 0.0138484 0.0308927 0.18 0 pose: 0.42955057 -5.52765 0.185868 0 -0.00201594 -0.00434536 -0.0187432 0.999813 uwb: 0.0 851.423 1600.36 +imu_odom_: 1691062934.338404175 0.414197 -0.160412 10.1131 -0.0809601 -0.0266316 0.072438 0.23 0 pose: 0.0 -5.52765 0.185868 0 -0.00201594 -0.00434536 -0.0187432 0.999813 uwb: 0.49984983 856.944 1600.49 +imu_odom_: 1691062934.364361881 0.292093 -0.213084 9.84017 -0.0426106 0.0287621 0.0213053 0.18 0 pose: 0.33090877 -5.51803 0.18312 0 -0.00240817 -0.00172525 -0.0187294 0.99982 uwb: 0.0 856.944 1600.49 +imu_odom_: 1691062934.391279116 0.730232 -0.25618 10.1059 -0.0820254 -0.0639159 0.056459 0.25 0 pose: 0.45971007 -5.50835 0.190758 0 -0.0002165060.00146995 -0.0186387 0.999825 uwb: 0.49915862 855.083 1599.01 +imu_odom_: 1691062934.407239068 1.20189 -0.184354 9.87369 -0.0372843 0.0213053 0.0223706 0.25 0 pose: 0.0 -5.50835 0.190758 0 -0.0002165060.00146995 -0.0186387 0.999825 uwb: 0.0 855.083 1599.01 +imu_odom_: 1691062934.434282295 0.411803 -0.299275 10.0676 -0.0820254 0.0287621 0.0575243 0.25 0 pose: 0.42877187 -5.50058 0.188541 0 -0.000697131-0.00339538 -0.0185506 0.999822 uwb: 0.49956111 853.186 1597.7 +imu_odom_: 1691062934.450250121 0.373495 -0.464475 9.65103 -0.0745685 0.00958738 0.0319579 0.25 0 pose: 0.7049467 -5.49606 0.18725 0 -0.00132594 -0.00281971 -0.0184857 0.999824 uwb: 0.0 853.186 1597.7 +imu_odom_: 1691062934.466229322 0.361524 -0.124498 10.2472 -0.052198 0.02024 0.02024 0.25 0 pose: 0.0 -5.49606 0.18725 0 -0.00132594 -0.00281971 -0.0184857 0.999824 uwb: 0.0 853.186 1597.7 +imu_odom_: 1691062934.483248254 0.519542 -0.411803 9.7444 -0.0852212 -0.00106526 0.0479369 0.23 0 pose: 0.42950390 -5.49606 0.18725 0 -0.00410453 -0.000343264-0.0184269 0.999822 uwb: 0.50014731 858.111 1597.9 +imu_odom_: 1691062934.510259691 0.299275 -0.217872 9.8689 -0.0532632 -0.00213053 0.0458064 0.23 0 pose: 0.0 -5.49606 0.18725 0 -0.00410453 -0.000343264-0.0184269 0.999822 uwb: 0.0 858.111 1597.9 +imu_odom_: 1691062934.535221997 0.555455 -0.409408 9.75877 -0.0809601 -0.0298274 0.0266316 0.25 -0.02 pose: 0.33182456 -5.48644 0.184509 0 -0.00435581 -0.000458156-0.0184216 0.999821 uwb: 0.50282467 853.757 1595.37 +imu_odom_: 1691062934.562224685 0.368707 -0.328006 10.0149 -0.052198 -0.0191748 0.0415453 0.2 0 pose: 0.44800616 -5.4768 0.181864 0 -0.00503852 -0.00110871 -0.0185216 0.999815 uwb: 0.0 853.757 1595.37 +imu_odom_: 1691062934.587269237 1.08218 -0.227449 9.72764 -0.0340885 0.0255663 0.0223706 0.2 0 pose: 0.0 -5.4768 0.181864 0 -0.00503852 -0.00110871 -0.0185216 0.999815 uwb: 0.49687500 851.345 1594 +imu_odom_: 1691062934.614263175 0.61531 -0.318429 9.92157 -0.0745685 0.0298274 0.0458064 0.23 -0.02 pose: 0.7064633 -5.4768 0.181864 0 -0.00518167 -0.000471868-0.0185108 0.999815 uwb: 0.0 851.345 1594 +imu_odom_: 1691062934.639395221 0.73502 -0.21069 9.77074 -0.0511327 -0.00639159 0.0287621 0.23 -0.02 pose: 0.0 -5.4768 0.181864 0 -0.00518167 -0.000471868-0.0185108 0.999815 uwb: 0.50002191 849.495 1592.59 +imu_odom_: 1691062934.666242751 0.155623 -0.579397 9.93354 -0.0628506 0.0223706 0.0340885 0.21 -0.02 pose: 0.51943995 -5.46451 0.188861 0 -0.0051203 -0.0013728 -0.018694 0.999811 uwb: 0.0 849.495 1592.59 +imu_odom_: 1691062934.691244722 0.416591 0.023942 9.87369 -0.0553937 -0.0330232 0.04048 0.18 0 pose: 0.72012126 -5.45486 0.186212 0 -0.00618191 -0.0029096 -0.0188518 0.999799 uwb: 0.50017357 849.726 1591.68 +imu_odom_: 1691062934.708260446 0.785298 -0.363919 9.97185 -0.0820254 -0.00745685 0.0479369 0.23 0 pose: 0.8200609 -5.45486 0.186212 0 -0.00536825 -0.00293931 -0.0188493 0.999804 uwb: 0.0 849.726 1591.68 +imu_odom_: 1691062934.724361264 -0.0814029 -0.383072 9.43794 -0.0383495 0.0117179 0.0223706 0.23 0 pose: 0.0 -5.45486 0.186212 0 -0.00536825 -0.00293931 -0.0188493 0.999804 uwb: 0.0 849.726 1591.68 +imu_odom_: 1691062934.751261875 0.687136 -0.354342 9.64624 -0.0649811 -0.036219 0.04048 0.25 -0.02 pose: 0.23807665 -5.44522 0.183559 0 -0.00397198 -0.00368856 -0.018817 0.999808 uwb: 0.49962526 853.061 1591.5 +imu_odom_: 1691062934.776286010 0.296881 -0.203507 9.80904 -0.0298274 0.00106526 0.0234358 0.25 -0.02 pose: 0.0 -5.44522 0.183559 0 -0.00397198 -0.00368856 -0.018817 0.999808 uwb: 0.0 853.061 1591.5 +imu_odom_: 1691062934.793228530 0.270545 -0.289698 9.90002 -0.0692422 0.0149137 0.0575243 0.23 -0.02 pose: 0.34169981 -5.44522 0.183559 0 -0.00468584 -0.00385769 -0.0189075 0.999803 uwb: 0.50142766 848.61 1589.58 +imu_odom_: 1691062934.818477528 0.596156 -0.155623 10.0078 -0.0458064 0.0127832 0.04048 0.23 -0.02 pose: 0.0 -5.44522 0.183559 0 -0.00468584 -0.00385769 -0.0189075 0.999803 uwb: 0.0 848.61 1589.58 +imu_odom_: 1691062934.845417220 0.222661 -0.531513 9.64863 -0.0479369 0.0351537 0.036219 0.23 0 pose: 0.50819102 -5.43293 0.190547 0 -0.0038368 -0.00293334 -0.0190358 0.999807 uwb: 0.0 848.61 1589.58 +imu_odom_: 1691062934.861279177 0.158017 -0.114922 9.75637 -0.0234358 0.00958738 0.0298274 0.23 0 pose: 0.0 -5.43293 0.190547 0 -0.0038368 -0.00293334 -0.0190358 0.999807 uwb: 0.0 848.61 1589.58 +imu_odom_: 1691062934.878347981 0.311246 -0.462081 9.7875 -0.0830906 -0.00958738 0.0713727 0.25 0 pose: 0.42249848 -5.42328 0.187891 0 -0.00263183 -0.00294275 -0.018952 0.999813 uwb: 0.0 848.61 1589.58 +imu_odom_: 1691062934.894259519 0.426168 -0.356736 9.66539 -0.0692422 -0.0106526 0.0468716 0.25 0 pose: 0.0 -5.42328 0.187891 0 -0.00263183 -0.00294275 -0.018952 0.999813 uwb: 0.0 848.61 1589.58 +imu_odom_: 1691062934.911365363 0.565032 -0.0790087 9.71806 -0.0447411 0.00532632 0.0415453 0.25 0 pose: 0.43016886 -5.41364 0.185236 0 -0.00360802 0.000523386 -0.0189355 0.999814 uwb: 0.0 848.61 1589.58 +imu_odom_: 1691062934.936334377 0.773327 -0.430956 10.0485 -0.0884169 -0.00213053 0.0543285 0.25 0 pose: 0.0 -5.41364 0.185236 0 -0.00360802 0.000523386 -0.0189355 0.999814 uwb: 0.149986157 849.884 1588.88 +imu_odom_: 1691062934.963195906 0.351948 -0.131681 9.47146 -0.072438 0.0138484 0.0585895 0.23 -0.02 pose: 0.67827535 -5.404 0.182581 0 -0.00582901 -0.00319544 -0.0185404 0.999806 uwb: 0.0 849.884 1588.88 +imu_odom_: 1691062934.979265518 0.454898 -0.462081 10.0556 -0.0937433 -0.00532632 0.0628506 0.23 -0.02 pose: 0.0 -5.404 0.182581 0 -0.00582901 -0.00319544 -0.0185404 0.999806 uwb: 0.0 849.884 1588.88 +imu_odom_: 1691062934.996173915 0.462081 -0.306458 10.1945 -0.0447411 0.0692422 0.04048 0.23 -0.02 pose: 0.0 -5.404 0.182581 0 -0.00582901 -0.00319544 -0.0185404 0.999806 uwb: 0.49872115 847.546 1587.34 +imu_odom_: 1691062935.21228674 -0.0023942 -0.0861913 10.1203 -0.072438 0.0649811 0.0628506 0.25 0 pose: 0.7877461 -5.404 0.182581 0 -0.00520961 -0.00273371 -0.0184662 0.999812 uwb: 0.0 847.546 1587.34 +imu_odom_: 1691062935.48172741 -0.198719 -0.177171 9.80904 -0.0426106 0.0234358 0.0330232 0.23 0.02 pose: 0.41983280 -5.39436 0.179936 0 -0.00511186 -0.00201179 -0.0181006 0.999821 uwb: 0.50005107 843.704 1585.31 +imu_odom_: 1691062935.74325853 0.143652 -0.0766145 9.63187 -0.0415453 -0.0191748 0.0532632 0.23 0.02 pose: 0.0 -5.39436 0.179936 0 -0.00511186 -0.00201179 -0.0181006 0.999821 uwb: 0.0 843.704 1585.31 +imu_odom_: 1691062935.101206340 0.440533 -0.277727 9.87369 -0.0585895 -0.0106526 0.0511327 0.23 0 pose: 0.42048317 -5.38207 0.186944 0 -0.00327276 0.00152941 -0.01783 0.999835 uwb: 0.50070438 840.309 1583.68 +imu_odom_: 1691062935.117374239 0.610521 -0.208296 10.0197 -0.052198 0.0117179 0.0426106 0.23 0 pose: 0.0 -5.38207 0.186944 0 -0.00327276 0.00152941 -0.01783 0.999835 uwb: 0.0 840.309 1583.68 +imu_odom_: 1691062935.143181746 0.555455 -0.268151 9.75637 -0.0553937 -0.0223706 0.0543285 0.25 0.02 pose: 0.53118470 -5.37243 0.184292 0 -0.0009290730.0046803 -0.0176594 0.999833 uwb: 0.0 840.309 1583.68 +imu_odom_: 1691062935.166323866 0.739808 0.047884 9.9934 -0.0490022 -0.00426106 0.0458064 0.25 0.02 pose: 0.0 -5.37243 0.184292 0 -0.0009290730.0046803 -0.0176594 0.999833 uwb: 0.0 840.309 1583.68 +imu_odom_: 1691062935.191198969 0.514753 -0.117316 9.68933 -0.056459 0.0245011 0.0490022 0.18 -0.02 pose: 0.84961961 -5.35627 0.179719 0 -0.000159131-0.003196 -0.0172742 0.999846 uwb: 0.99988050 844.675 1583.72 +imu_odom_: 1691062935.218209240 0.574608 -0.392649 9.73722 -0.0319579 -0.015979 0.0266316 0.23 0.02 pose: 0.8083366 -5.35319 0.178847 0 0.000553327 -0.00345829 -0.0172385 0.999845 uwb: 0.0 844.675 1583.72 +imu_odom_: 1691062935.243168046 0.0814029 -0.627281 9.4571 -0.0703074 -0.00106526 0.0628506 0.23 0.02 pose: 0.0 -5.35319 0.178847 0 0.000553327 -0.00345829 -0.0172385 0.999845 uwb: 0.49793953 847.026 1583.08 +imu_odom_: 1691062935.260168605 0.68953 -0.268151 9.991 -0.0553937 0.00532632 0.0287621 0.21 0 pose: 0.23883785 -5.35319 0.178847 0 0.00146087 -0.004318 -0.0172067 0.999842 uwb: 0.0 847.026 1583.08 +imu_odom_: 1691062935.285176700 0.711078 -0.102951 10.1849 -0.0617853 -0.0181095 0.0468716 0.21 0 pose: 0.0 -5.35319 0.178847 0 0.00146087 -0.004318 -0.0172067 0.999842 uwb: 0.49994900 848.228 1582.64 +imu_odom_: 1691062935.312191929 0.608127 -0.3304 9.3733 -0.0511327 0.00319579 0.0383495 0.23 0.02 pose: 0.51894707 -5.34085 0.185754 0 -0.00210848 -0.00401586 -0.0170668 0.999844 uwb: 0.0 848.228 1582.64 +imu_odom_: 1691062935.328222752 0.672771 -0.265756 10.2113 -0.0585895 -0.0298274 0.0532632 0.23 0.02 pose: 0.0 -5.34085 0.185754 0 -0.00210848 -0.00401586 -0.0170668 0.999844 uwb: 0.0 848.228 1582.64 +imu_odom_: 1691062935.355420262 0.814029 -0.457293 9.80665 -0.052198 0.00639159 0.0330232 0.25 0.02 pose: 0.42188893 -5.33122 0.183039 0 -0.00139669 -0.00754478 -0.0170432 0.999825 uwb: 0.49982943 843.826 1580.82 +imu_odom_: 1691062935.380225952 0.600945 -0.351948 9.87848 -0.0319579 0.0138484 0.0532632 0.25 0.02 pose: 0.0 -5.33122 0.183039 0 -0.00139669 -0.00754478 -0.0170432 0.999825 uwb: 0.0 843.826 1580.82 +imu_odom_: 1691062935.407237682 0.342371 0.201113 10.1754 -0.0287621 0.00532632 0.0458064 0.23 0 pose: 0.43813091 -5.3216 0.180326 0 -0.00347915 -0.010926 -0.0169613 0.99979 uwb: 0.50068979 842.555 1579.48 +imu_odom_: 1691062935.433247594 -0.0167594 -0.512359 9.68215 -0.0820254 0.00532632 0.0596548 0.19 -0.02 pose: 0.50991467 -5.3216 0.180326 0 -0.00558651 -0.0100064 -0.0167943 0.999793 uwb: 0.50165223 841.785 1578.32 +imu_odom_: 1691062935.460164829 0.25618 -0.114922 10.0868 -0.0575243 -0.0191748 0.052198 0.23 0.02 pose: 0.0 -5.3216 0.180326 0 -0.00558651 -0.0100064 -0.0167943 0.999793 uwb: 0.0 841.785 1578.32 +imu_odom_: 1691062935.476211692 0.682347 -0.390255 10.0437 -0.0681769 -0.00639159 0.0585895 0.23 0.02 pose: 0.53028058 -5.31197 0.177618 0 -0.00437095 -0.00595839 -0.0164251 0.999838 uwb: 0.0 841.785 1578.32 +imu_odom_: 1691062935.503436034 0.184354 -0.0861913 9.85214 -0.0575243 0.0255663 0.0628506 0.23 0.02 pose: 0.0 -5.31197 0.177618 0 -0.00437095 -0.00595839 -0.0164251 0.999838 uwb: 0.49821077 840.541 1576.93 +imu_odom_: 1691062935.529303913 0.270545 -0.196325 10.0533 -0.076699 -0.0170442 0.0553937 0.18 -0.02 pose: 0.63228801 -5.2927 0.182601 0 -0.00272816 -0.00316832 -0.0158315 0.999866 uwb: 0.0 840.541 1576.93 +imu_odom_: 1691062935.556310685 0.701501 -0.579397 9.78989 -0.072438 0.015979 0.0490022 0.25 0 pose: 0.7854713 -5.29001 0.18185 0 -0.00253241 -0.00248301 -0.0157685 0.999869 uwb: 0.49982359 839.848 1575.52 +imu_odom_: 1691062935.582227852 0.153229 -0.296881 9.96706 -0.0436758 0.0394148 0.04048 0.18 -0.02 pose: 0.24944515 -5.29001 0.18185 0 -0.00267412 -0.00128537 -0.0155919 0.999874 uwb: 0.49982359 840.721 1574.32 +imu_odom_: 1691062935.599209453 0.366313 -0.225055 9.79468 -0.0873517 0.00106526 0.052198 0.18 -0.02 pose: 0.0 -5.29001 0.18185 0 -0.00267412 -0.00128537 -0.0155919 0.999874 uwb: 0.0 840.721 1574.32 +imu_odom_: 1691062935.625206825 0.426168 -0.40462 9.52653 -0.0596548 0.0479369 0.0372843 0.18 0.02 pose: 0.28024921 -5.28037 0.179184 0 -0.00431422 -0.00140081 -0.0154927 0.99987 uwb: 0.0 840.721 1574.32 +imu_odom_: 1691062935.652202513 0.545878 -0.155623 10.5656 -0.052198 -0.0127832 0.0308927 0.18 0.02 pose: 0.0 -5.28037 0.179184 0 -0.00431422 -0.00140081 -0.0154927 0.99987 uwb: 0.50016482 835.567 1571.57 +imu_odom_: 1691062935.678288838 0.76375 -0.0694318 10.0485 -0.0372843 -0.0298274 0.0426106 0.18 0 pose: 0.42966140 -5.27071 0.176597 0 -0.00357815 0.0012953 -0.0153794 0.999874 uwb: 0.0 835.567 1571.57 +imu_odom_: 1691062935.705224155 0.790087 -0.323217 10.1634 -0.0266316 -0.0809601 0.0266316 0.18 0 pose: 0.53088429 -5.26105 0.17401 0 -0.00288317 -0.00163138 -0.0155197 0.999874 uwb: 0.0 835.567 1571.57 +imu_odom_: 1691062935.731423348 0.416591 -0.0407014 9.84975 -0.0553937 -0.0394148 0.0628506 0.18 0 pose: 0.0 -5.26105 0.17401 0 -0.00288317 -0.00163138 -0.0155197 0.999874 uwb: 0.0 835.567 1571.57 +imu_odom_: 1691062935.756352115 1.01275 -0.217872 9.69652 -0.052198 0.00213053 0.0308927 0.23 -0.02 pose: 0.52867651 -5.24881 0.181079 0 -0.00138982 -0.00681192 -0.0155822 0.999854 uwb: 0.99962094 834.948 1569.98 +imu_odom_: 1691062935.770291808 0.442927 -0.272939 9.87129 -0.0617853 0 0.0447411 0.23 -0.02 pose: 0.0 -5.24881 0.181079 0 -0.00138982 -0.00681192 -0.0155822 0.999854 uwb: 0.0 834.948 1569.98 +imu_odom_: 1691062935.787191456 0.823605 -0.270545 10.2065 -0.0820254 -0.0149137 0.0447411 0.23 -0.02 pose: 0.0 -5.24881 0.181079 0 -0.00138982 -0.00681192 -0.0155822 0.999854 uwb: 0.50123809 833.401 1567.89 +imu_odom_: 1691062935.810313160 0.519542 -0.387861 9.78989 -0.0543285 -0.0671117 0.0298274 0.18 0.02 pose: 0.74009053 -5.23915 0.178493 0 -0.00104365 -0.00910208 -0.0154014 0.999839 uwb: 0.0 833.401 1567.89 +imu_odom_: 1691062935.836153916 0.543484 -0.320823 9.72764 -0.0553937 -0.00213053 0.0394148 0.18 0.02 pose: 0.6012360 -5.23915 0.178493 0 -0.0016017 -0.00906609 -0.0154252 0.999839 uwb: 0.49938320 832.794 1566.29 +imu_odom_: 1691062935.862144579 0.232238 -0.0670376 9.97424 -0.056459 0.00106526 0.0617853 0.25 -0.02 pose: 0.42950100 -5.23224 0.176644 0 -0.00529228 -0.00743355 -0.0154715 0.999839 uwb: 0.0 832.794 1566.29 +imu_odom_: 1691062935.888170824 0.225055 -0.189142 9.65103 -0.052198 0.0436758 0.0383495 0.19 0 pose: 0.0 -5.23224 0.176644 0 -0.00529228 -0.00743355 -0.0154715 0.999839 uwb: 0.0 832.794 1566.29 +imu_odom_: 1691062935.905169632 0.402226 -0.349553 10.0126 -0.0468716 -0.02024 0.0490022 0.19 0 pose: 0.33055004 -5.22949 0.175906 0 -0.00342612 -0.00450528 -0.015189 0.999869 uwb: 0.0 832.794 1566.29 +imu_odom_: 1691062935.931203751 0.172383 -0.318429 10.3382 -0.0287621 -0.0117179 0.0436758 0.18 0 pose: 0.0 -5.22949 0.175906 0 -0.00342612 -0.00450528 -0.015189 0.999869 uwb: 0.0 832.794 1566.29 +imu_odom_: 1691062935.958326599 0.553061 -0.244209 9.81144 -0.0820254 -0.0213053 0.0756338 0.18 0 pose: 0.43953375 -5.21725 0.182985 0 -0.00409306 -0.0007638 -0.0150926 0.999877 uwb: 0.100052213 832.033 1565.23 +imu_odom_: 1691062935.983134331 0.134075 -0.110133 9.71328 -0.0490022 0.0372843 0.0468716 0.2 0 pose: 0.45164304 -5.20758 0.180405 0 -0.00362325 -0.00188133 -0.014567 0.999886 uwb: 0.49996067 834.297 1564.82 +imu_odom_: 1691062936.10206432 0.0407014 -0.153229 10.0533 -0.072438 -0.0234358 0.0628506 0.2 0 pose: 0.6953223 -5.20758 0.180405 0 -0.00324712 -0.0011367 -0.0145407 0.999888 uwb: 0.0 834.297 1564.82 +imu_odom_: 1691062936.27135536 0.816423 -0.203507 10.1586 -0.0447411 -0.0255663 0.0308927 0.18 0.02 pose: 0.44926610 -5.19792 0.177835 0 -0.00168159 0.00309809 -0.0141507 0.999894 uwb: 0.0 834.297 1564.82 +imu_odom_: 1691062936.52183880 0.811634 -0.447716 9.42837 -0.0916127 -0.00532632 0.0692422 0.18 0.02 pose: 0.0 -5.19792 0.177835 0 -0.00168159 0.00309809 -0.0141507 0.999894 uwb: 0.49858408 835.619 1563.96 +imu_odom_: 1691062936.75208173 0.035913 -0.265756 9.69412 -0.0607201 0.015979 0.0394148 0.2 -0.02 pose: 0.41977448 -5.19068 0.175914 0 -0.00302004 -0.00102325 -0.0138592 0.999899 uwb: 0.0 835.619 1563.96 +imu_odom_: 1691062936.100133440 0.287304 -0.277727 9.991 -0.0692422 -0.0117179 0.052198 0.2 -0.02 pose: 0.0 -5.19068 0.175914 0 -0.00302004 -0.00102325 -0.0138592 0.999899 uwb: 0.50143642 835.476 1562.62 +imu_odom_: 1691062936.127293328 0.146046 -0.222661 9.79707 -0.04048 -0.0287621 0.0372843 0.23 0 pose: 0.47949560 -5.18144 0.173472 0 -0.0032425 0.00391729 -0.0136897 0.999893 uwb: 0.0 835.476 1562.62 +imu_odom_: 1691062936.144275804 0.548272 -0.426168 9.9527 -0.0553937 -0.0351537 0.0426106 0.23 0 pose: 0.0 -5.18144 0.173472 0 -0.0032425 0.00391729 -0.0136897 0.999893 uwb: 0.49926071 835.349 1561.24 +imu_odom_: 1691062936.169345729 0.658405 -0.179565 10.3262 -0.0436758 -0.056459 0.0458064 0.18 0 pose: 0.35125136 -5.17603 0.182388 0 -0.00264765 0.00537484 -0.0137007 0.999888 uwb: 0.0 835.349 1561.24 +imu_odom_: 1691062936.192286319 0.248997 -0.328006 9.88326 -0.0479369 -0.0308927 0.0447411 0.18 0 pose: 0.0 -5.17603 0.182388 0 -0.00264765 0.00537484 -0.0137007 0.999888 uwb: 0.50078021 835.627 1560.29 +imu_odom_: 1691062936.218193571 0.557849 -0.0047884 10.2448 -0.0266316 -0.0617853 0.0436758 0.2 0 pose: 0.40101556 -5.16636 0.179834 0 -0.00258692 0.00185633 -0.0136002 0.999902 uwb: 0.0 835.627 1560.29 +imu_odom_: 1691062936.235269375 0.337582 -0.380678 9.63666 -0.0617853 0.00639159 0.0500674 0.2 0 pose: 0.0 -5.16636 0.179834 0 -0.00258692 0.00185633 -0.0136002 0.999902 uwb: 0.49926363 838.838 1560.2 +imu_odom_: 1691062936.261321869 0.263362 -0.263362 9.72285 -0.0447411 0.00639159 0.0500674 0.25 0 pose: 0.49975651 -5.15672 0.177186 0 -0.00161133 0.00104192 -0.0134612 0.999908 uwb: 0.0 838.838 1560.2 +imu_odom_: 1691062936.288249312 0.306458 -0.244209 9.97664 -0.0415453 -0.0106526 0.0330232 0.25 0.02 pose: 0.35986086 -5.14972 0.175266 0 -0.00237615 0.00417589 -0.0132665 0.9999 uwb: 0.49921405 833.731 1557.75 +imu_odom_: 1691062936.313222993 0.316035 -0.253785 10.0365 -0.0671117 -0.0308927 0.0692422 0.25 0.02 pose: 0.0 -5.14972 0.175266 0 -0.00237615 0.00417589 -0.0132665 0.9999 uwb: 0.0 833.731 1557.75 +imu_odom_: 1691062936.330178054 0.811634 -0.323217 10.1299 -0.056459 0.0117179 0.0426106 0.23 0.02 pose: 0.6818772 -5.14708 0.174542 0 -0.00179503 0.00457733 -0.0132858 0.9999 uwb: 0.0 833.731 1557.75 +imu_odom_: 1691062936.355252354 0.876278 -0.201113 10.2041 -0.036219 -0.0170442 0.0319579 0.23 0.02 pose: 0.0 -5.14708 0.174542 0 -0.00179503 0.00457733 -0.0132858 0.9999 uwb: 0.49993734 834.06 1556.65 +imu_odom_: 1691062936.381216477 0.356736 -0.263362 9.31344 -0.0575243 -0.0181095 0.0351537 0.21 0 pose: 0.52119570 -5.13743 0.171901 0 -0.00234807 0.00331183 -0.0129745 0.999908 uwb: 0.0 834.06 1556.65 +imu_odom_: 1691062936.407135103 0.533907 -0.497994 9.71806 -0.0735032 -0.0372843 0.0607201 0.21 0 pose: 0.0 -5.13743 0.171901 0 -0.00234807 0.00331183 -0.0129745 0.999908 uwb: 0.50021440 835.852 1555.95 +imu_odom_: 1691062936.434154124 0.727837 -0.392649 9.79707 -0.0458064 0.00319579 0.0255663 0.23 -0.02 pose: 0.41866620 -5.13479 0.181547 0 -0.00213928 0.000376132 -0.0130775 0.999912 uwb: 0.50071605 839.671 1555.48 +imu_odom_: 1691062936.450144991 0.452504 -0.0454898 9.56244 -0.0500674 0.0223706 0.0426106 0.23 -0.02 pose: 0.0 -5.13479 0.181547 0 -0.00213928 0.000376132 -0.0130775 0.999912 uwb: 0.0 839.671 1555.48 +imu_odom_: 1691062936.477216801 0.35913 -0.363919 9.92875 -0.036219 0.0245011 0.0266316 0.2 0 pose: 0.52025367 -5.12515 0.178909 0 -0.00508539 -0.000474749-0.0129011 0.999904 uwb: 0.0 839.671 1555.48 +imu_odom_: 1691062936.502291684 0.766145 -0.490811 9.40921 -0.0820254 0.0138484 0.0745685 0.18 0.02 pose: 0.63064603 -5.10858 0.174382 0 -0.00531608 0.000304842 -0.0131964 0.999899 uwb: 0.49880574 839.99 1554.37 +imu_odom_: 1691062936.529166338 0.0694318 -0.213084 10.0796 -0.04048 -0.00852212 0.036219 0.18 0.02 pose: 0.0 -5.10858 0.174382 0 -0.00531608 0.000304842 -0.0131964 0.999899 uwb: 0.0 839.99 1554.37 +imu_odom_: 1691062936.554112896 0.687136 -0.31364 10.0317 -0.0681769 -0.0713727 0.0490022 0.19 0 pose: 0.7888544 -5.10586 0.173637 0 -0.00577281 -0.000328345-0.0130626 0.999898 uwb: 0.50138100 840.863 1553.16 +imu_odom_: 1691062936.571240030 1.08218 -0.126893 9.89763 -0.0415453 0.0319579 0.0287621 0.19 0 pose: 0.0 -5.10586 0.173637 0 -0.00577281 -0.000328345-0.0130626 0.999898 uwb: 0.0 840.863 1553.16 +imu_odom_: 1691062936.596100259 0.368707 -0.351948 9.7851 -0.0756338 0.00852212 0.0639159 0.18 0 pose: 0.52023908 -5.0962 0.171028 0 -0.0056396 -0.00032074 -0.0127657 0.999903 uwb: 0.49884657 839.689 1551.79 +imu_odom_: 1691062936.623132988 0.725443 -0.337582 9.50498 -0.0628506 -0.0170442 0.0372843 0.18 0 pose: 0.0 -5.0962 0.171028 0 -0.0056396 -0.00032074 -0.0127657 0.999903 uwb: 0.0 839.689 1551.79 +imu_odom_: 1691062936.648256868 0.371101 -0.395043 10.0341 -0.056459 0.00532632 0.0330232 0.19 0 pose: 0.42107523 -5.0962 0.171028 0 -0.00542735 -0.00311284 -0.012695 0.9999 uwb: 0.50007733 839.873 1551.16 +imu_odom_: 1691062936.675257807 0.0430956 -0.323217 10.3286 -0.0607201 -0.02024 0.056459 0.22 0 pose: 0.51908707 -5.084 0.178168 0 -0.00668949 -0.00351192 -0.0125478 0.999893 uwb: 0.0 839.873 1551.16 +imu_odom_: 1691062936.691111890 -0.11971 -0.272939 9.96946 -0.0671117 -0.015979 0.0596548 0.22 0 pose: 0.0 -5.084 0.178168 0 -0.00668949 -0.00351192 -0.0125478 0.999893 uwb: 0.49985276 841.584 1550.65 +imu_odom_: 1691062936.718098829 -0.047884 -0.411803 10.1754 -0.0543285 0.00319579 0.0276969 0.25 0 pose: 0.59966407 -5.0695 0.174376 0 -0.00698397 0.00206876 -0.0121718 0.999899 uwb: 0.0 841.584 1550.65 +imu_odom_: 1691062936.743113633 0.213084 -0.445322 9.78031 -0.0383495 -0.015979 0.0266316 0.25 0 pose: 0.8046326 -5.06465 0.17311 0 -0.00707872 0.00289691 -0.0122144 0.999896 uwb: 0.49969527 843.329 1550 +imu_odom_: 1691062936.760297056 0.646434 -0.205901 9.89045 -0.0511327 -0.02024 0.0490022 0.21 -0.02 pose: 0.0 -5.06465 0.17311 0 -0.00707872 0.00289691 -0.0122144 0.999896 uwb: 0.0 843.329 1550 +imu_odom_: 1691062936.786095231 0.509965 -0.169988 10.1873 -0.0458064 0.0298274 0.0223706 0.21 -0.02 pose: 0.51055048 -5.05497 0.170583 0 -0.00842497 0.00587744 -0.0124404 0.99987 uwb: 0.50156183 843.945 1549.67 +imu_odom_: 1691062936.812356837 0.646434 -0.627281 9.32302 -0.0703074 0.0117179 0.0553937 0.23 0 pose: 0.35881967 -5.05497 0.170583 0 -0.0060255 0.00348625 -0.0126297 0.999896 uwb: 0.0 843.945 1549.67 +imu_odom_: 1691062936.838173969 0.280122 -0.169988 10.1227 -0.0287621 0.02024 0.015979 0.23 0 pose: 0.7001053 -5.05497 0.170583 0 -0.00657422 0.00304973 -0.0125792 0.999895 uwb: 0.50159975 846.074 1549.46 +imu_odom_: 1691062936.863232812 0.248997 -0.418985 10.0149 -0.0820254 -0.00532632 0.0681769 0.2 0 pose: 0.45077685 -5.04276 0.177725 0 -0.00534596 0.00314079 -0.0127358 0.9999 uwb: 0.0 846.074 1549.46 +imu_odom_: 1691062936.877153840 0.586579 -0.342371 9.96227 -0.0585895 -0.0340885 0.0340885 0.2 0 pose: 0.0 -5.04276 0.177725 0 -0.00534596 0.00314079 -0.0127358 0.9999 uwb: 0.0 846.074 1549.46 +imu_odom_: 1691062936.894130191 0.658405 -0.105345 9.85932 -0.04048 0.0245011 0.0223706 0.17 0.02 pose: 0.0 -5.04276 0.177725 0 -0.00534596 0.00314079 -0.0127358 0.9999 uwb: 0.49736790 847.28 1548.85 +imu_odom_: 1691062936.908142506 -0.00957681-0.186748 9.44752 -0.0639159 -0.00958738 0.0479369 0.17 0.02 pose: 0.46076002 -5.03309 0.175192 0 -0.00691948 0.00283003 -0.0124838 0.999894 uwb: 0.0 847.28 1548.85 +imu_odom_: 1691062936.933090230 0.196325 -0.268151 9.77553 -0.04048 -0.00958738 0.0298274 0.18 0 pose: 0.0 -5.03309 0.175192 0 -0.00691948 0.00283003 -0.0124838 0.999894 uwb: 0.49971277 844.273 1546.71 +imu_odom_: 1691062936.960255076 0.696713 -0.325611 9.8282 -0.0490022 -0.0500674 0.052198 0.18 0 pose: 0.30886881 -5.02342 0.172661 0 -0.00544431 0.00407934 -0.0125353 0.999898 uwb: 0.0 844.273 1546.71 +imu_odom_: 1691062936.976226986 0.744597 -0.112527 9.81383 -0.0468716 -0.00319579 0.0415453 0.18 0 pose: 0.0 -5.02342 0.172661 0 -0.00544431 0.00407934 -0.0125353 0.999898 uwb: 0.0 844.273 1546.71 +imu_odom_: 1691062937.3089099 0.497994 -0.296881 9.90002 -0.0511327 0.0117179 0.0330232 0.19 0 pose: 0.53112053 -5.01374 0.17013 0 -0.00430794 0.00162832 -0.0124457 0.999912 uwb: 0.50048856 843.148 1545.24 +imu_odom_: 1691062937.28343930 0.663194 -0.186748 9.83059 -0.0553937 0.00532632 0.0617853 0.2 0 pose: 0.34840194 -5.01374 0.17013 0 -0.00402489 -0.00155719 -0.0125401 0.999912 uwb: 0.0 843.148 1545.24 +imu_odom_: 1691062937.55343703 0.373495 -0.167594 10.3693 -0.0532632 0.0234358 0.0372843 0.2 0 pose: 0.0 -5.01374 0.17013 0 -0.00402489 -0.00155719 -0.0125401 0.999912 uwb: 0.49931321 842.49 1543.95 +imu_odom_: 1691062937.80303385 0.766145 -0.251391 10.2185 -0.0628506 -0.0276969 0.0639159 0.18 0 pose: 0.8085991 -5.01374 0.17013 0 -0.00369481 -0.00225647 -0.012454 0.999913 uwb: 0.0 842.49 1543.95 +imu_odom_: 1691062937.107189122 1.20907 -0.0646434 10.1347 -0.0458064 -0.0106526 0.0255663 0.23 0 pose: 0.51963537 -5.00154 0.177276 0 -0.00110098 -0.0023532 -0.0122107 0.999922 uwb: 0.49999276 843.694 1543.34 +imu_odom_: 1691062937.132205384 0.371101 -0.356736 9.77553 -0.0852212 0.0287621 0.072438 0.18 0.02 pose: 0.0 -5.00154 0.177276 0 -0.00110098 -0.0023532 -0.0122107 0.999922 uwb: 0.50122060 845.854 1542.96 +imu_odom_: 1691062937.149072367 0.0933739 -0.205901 9.98143 -0.0713727 0.00106526 0.0426106 0.18 0.02 pose: 0.0 -5.00154 0.177276 0 -0.00110098 -0.0023532 -0.0122107 0.999922 uwb: 0.0 845.854 1542.96 +imu_odom_: 1691062937.165083358 0.629675 -0.0670376 10.5034 -0.0649811 -0.0170442 0.0351537 0.21 -0.02 pose: 0.52086322 -4.99186 0.174752 0 -0.00115684 -0.00621042 -0.0120618 0.999907 uwb: 0.0 845.854 1542.96 +imu_odom_: 1691062937.192118711 0.184354 -0.28491 9.81862 -0.0351537 0.0106526 0.0308927 0.21 -0.02 pose: 0.0 -4.99186 0.174752 0 -0.00115684 -0.00621042 -0.0120618 0.999907 uwb: 0.50044482 843.295 1541.17 +imu_odom_: 1691062937.217186012 0.505177 -0.342371 9.71088 -0.0681769 -0.0234358 0.0500674 0.25 0.02 pose: 0.57859821 -4.98218 0.172231 0 -0.0012416 -0.00317497 -0.0118236 0.999924 uwb: 0.0 843.295 1541.17 +imu_odom_: 1691062937.234110450 0.464475 -0.155623 9.57681 -0.0628506 -0.0394148 0.0447411 0.25 0.02 pose: 0.0 -4.98218 0.172231 0 -0.0012416 -0.00317497 -0.0118236 0.999924 uwb: 0.49807662 842.567 1540.15 +imu_odom_: 1691062937.259210416 0.373495 -0.328006 9.77792 -0.0607201 -0.0170442 0.0426106 0.2 0 pose: 0.61025680 -4.96681 0.168232 0 -0.00186703 -0.0032985 -0.0117311 0.999924 uwb: 0.0 842.567 1540.15 +imu_odom_: 1691062937.286207271 1.29526 -0.0933739 10.1945 -0.0458064 0.00319579 0.036219 0.2 0 pose: 0.0 -4.96681 0.168232 0 -0.00186703 -0.0032985 -0.0117311 0.999924 uwb: 0.50137226 844.984 1540.63 +imu_odom_: 1691062937.311090249 0.730232 -0.373495 9.36133 -0.0745685 0.0117179 0.0553937 0.19 0 pose: 0.6969264 -4.96283 0.167198 0 -0.00232573 -0.00280208 -0.0117181 0.999925 uwb: 0.0 844.984 1540.63 +imu_odom_: 1691062937.328196385 0.0742203 -0.246603 10.149 -0.0308927 0.0106526 0.0447411 0.19 0 pose: 0.0 -4.96283 0.167198 0 -0.00232573 -0.00280208 -0.0117181 0.999925 uwb: 0.0 844.984 1540.63 +imu_odom_: 1691062937.354243046 0.505177 -0.411803 9.85693 -0.0596548 0.00745685 0.0426106 0.18 0.02 pose: 0.53021934 -4.95063 0.174362 0 -0.00322588 -0.00471558 -0.0116786 0.999915 uwb: 0.49886990 843.306 1539.37 +imu_odom_: 1691062937.371125778 0.21069 -0.294487 10.0245 -0.052198 0.00852212 0.0319579 0.18 0.02 pose: 0.0 -4.95063 0.174362 0 -0.00322588 -0.00471558 -0.0116786 0.999915 uwb: 0.0 843.306 1539.37 +imu_odom_: 1691062937.396074669 0.155623 -0.555455 9.31344 -0.0777643 0.00745685 0.0660464 0.18 0 pose: 0.77024130 -4.94095 0.171852 0 -0.00599391 -0.00270259 -0.0115033 0.999912 uwb: 0.0 843.306 1539.37 +imu_odom_: 1691062937.423240682 -0.368707 -0.356736 9.47625 -0.0287621 0.0127832 0.0298274 0.23 0.02 pose: 0.8127697 -4.94095 0.171852 0 -0.00657486 -0.00200495 -0.011391 0.999911 uwb: 0.0 843.306 1539.37 +imu_odom_: 1691062937.448049872 0.150835 -0.0646434 9.9934 -0.0426106 -0.0319579 0.0426106 0.18 0.02 pose: 0.43987207 -4.93127 0.169344 0 -0.007371 0.00238228 -0.0112716 0.999906 uwb: 0.100002927 839.846 1537.25 +imu_odom_: 1691062937.475079393 0.0550666 0.0766145 10.2448 -0.0458064 -0.0276969 0.0447411 0.23 -0.02 pose: 0.0 -4.93127 0.169344 0 -0.007371 0.00238228 -0.0112716 0.999906 uwb: 0.0 839.846 1537.25 +imu_odom_: 1691062937.500269770 0.390255 -0.071826 9.64384 -0.0490022 -0.0223706 0.0479369 0.23 -0.02 pose: 0.31876740 -4.92159 0.166838 0 -0.00454953 0.0037542 -0.0111942 0.99992 uwb: 0.50004817 839.605 1536.34 +imu_odom_: 1691062937.527138883 0.105345 -0.107739 10.0844 -0.0490022 0.0330232 0.0372843 0.23 0 pose: 0.45152348 -4.91295 0.171927 0 -0.00038616 0.00349877 -0.0110166 0.999933 uwb: 0.0 839.605 1536.34 +imu_odom_: 1691062937.552226891 0.536301 -0.268151 9.80665 -0.036219 0.0181095 0.0351537 0.23 0 pose: 0.6985596 -4.90941 0.174015 0 -4.04573e-050.00424855 -0.0110233 0.99993 uwb: 0.50166974 840.79 1535.79 +imu_odom_: 1691062937.569288112 0.416591 -0.217872 10.2759 -0.0436758 0.0213053 0.0671117 0.22 0 pose: 0.0 -4.90941 0.174015 0 -4.04573e-050.00424855 -0.0110233 0.99993 uwb: 0.0 840.79 1535.79 +imu_odom_: 1691062937.586123597 0.0933739 -0.519542 9.44513 -0.0713727 -0.0255663 0.0585895 0.22 0 pose: 0.44971525 -4.90257 0.172248 0 0.000496095 0.00424614 -0.0111016 0.999929 uwb: 0.50054981 839.206 1534.28 +imu_odom_: 1691062937.610101003 0.191536 -0.0742203 9.71328 -0.0479369 -0.015979 0.0543285 0.19 0 pose: 0.0 -4.90257 0.172248 0 0.000496095 0.00424614 -0.0111016 0.999929 uwb: 0.0 839.206 1534.28 +imu_odom_: 1691062937.635194844 0.213084 -0.287304 9.55526 -0.0596548 0.0458064 0.0319579 0.19 0 pose: 0.40814056 -4.89973 0.171513 0 -0.0004996520.0040929 -0.0106575 0.999935 uwb: 0.49752540 838.531 1533.15 +imu_odom_: 1691062937.662113829 -0.191536 -0.222661 9.66779 -0.0671117 0.0106526 0.0660464 0.22 0 pose: 0.42153897 -4.89004 0.169019 0 -0.0008872920.00757924 -0.0106308 0.999914 uwb: 0.0 838.531 1533.15 +imu_odom_: 1691062937.687052512 0.335188 -0.354342 9.6199 -0.0607201 0.0181095 0.0308927 0.22 0 pose: 0.7011844 -4.89004 0.169019 0 -0.0009034180.00833306 -0.0105369 0.999909 uwb: 0.50047398 842.125 1533 +imu_odom_: 1691062937.714032452 0.457293 -0.0742203 10.4004 -0.0628506 -0.0298274 0.0468716 0.23 0 pose: 0.44845824 -4.88036 0.166527 0 -0.00271606 0.00892776 -0.0103979 0.999902 uwb: 0.0 842.125 1533 +imu_odom_: 1691062937.730097690 0.622492 -0.280122 9.75877 -0.0628506 -0.00106526 0.0319579 0.23 0 pose: 0.0 -4.88036 0.166527 0 -0.00271606 0.00892776 -0.0103979 0.999902 uwb: 0.0 842.125 1533 +imu_odom_: 1691062937.757012884 0.519542 -0.248997 9.85932 -0.0681769 -0.0447411 0.052198 0.19 0 pose: 0.35000601 -4.86818 0.173723 0 -0.00124756 0.00571175 -0.0103203 0.99993 uwb: 0.49951737 841.403 1532.03 +imu_odom_: 1691062937.782054519 0.694318 -0.347159 9.80665 -0.036219 -0.0106526 0.0287621 0.19 0 pose: 0.0 -4.86818 0.173723 0 -0.00124756 0.00571175 -0.0103203 0.99993 uwb: 0.49980902 840.682 1531.05 +imu_odom_: 1691062937.799024163 0.047884 -0.624887 9.4954 -0.0681769 0.00852212 0.0415453 0.19 0 pose: 0.43067635 -4.86818 0.173723 0 -0.00184138 0.000891275 -0.010231 0.999946 uwb: 0.0 840.682 1531.05 +imu_odom_: 1691062937.824139002 -0.105345 -0.263362 9.66779 -0.0287621 0.0500674 0.0308927 0.19 0 pose: 0.0 -4.86818 0.173723 0 -0.00184138 0.000891275 -0.010231 0.999946 uwb: 0.0 840.682 1531.05 +imu_odom_: 1691062937.849066603 0.531513 -0.323217 9.63427 -0.072438 0.0234358 0.0479369 0.19 0 pose: 0.41998739 -4.8585 0.171236 0 -0.00334325 0.00157203 -0.0103396 0.99994 uwb: 0.49998109 839.191 1529.3 +imu_odom_: 1691062937.872169350 0.706289 -0.208296 9.64863 -0.0543285 -0.00852212 0.0394148 0.18 0 pose: 0.0 -4.8585 0.171236 0 -0.00334325 0.00157203 -0.0103396 0.99994 uwb: 0.0 839.191 1529.3 +imu_odom_: 1691062937.888085555 0.306458 -0.332794 9.84017 -0.0479369 -0.00106526 0.0511327 0.18 0 pose: 0.48122509 -4.84881 0.168748 0 -0.00373497 0.001051 -0.0103176 0.999939 uwb: 0.50122061 837.587 1527.95 +imu_odom_: 1691062937.915032539 0.311246 -0.117316 10.1131 -0.0351537 -0.00745685 0.0266316 0.25 0 pose: 0.0 -4.84881 0.168748 0 -0.00373497 0.001051 -0.0103176 0.999939 uwb: 0.0 837.587 1527.95 +imu_odom_: 1691062937.940043259 0.632069 -0.418985 9.87608 -0.0788296 0.0287621 0.0585895 0.25 0 pose: 0.40895427 -4.83913 0.16626 0 -0.00314267 0.00112422 -0.0102778 0.999942 uwb: 0.49989651 837.801 1527.25 +imu_odom_: 1691062937.967089987 0.435745 -0.167594 9.79468 -0.0479369 0.0245011 0.0213053 0.21 0 pose: 0.43905836 -4.83051 0.171353 0 -0.00293064 0.00018421 -0.0101632 0.999944 uwb: 0.0 837.801 1527.25 +imu_odom_: 1691062937.992102750 0.184354 -0.363919 9.63427 -0.0340885 -0.0266316 0.0255663 0.21 0 pose: 0.6999012 -4.82695 0.173459 0 -0.00224313 5.02027e-05 -0.0102281 0.999945 uwb: 0.50010942 839.447 1526.8 +imu_odom_: 1691062938.19084440 0.818817 -0.287304 9.80665 -0.056459 -0.0308927 0.0500674 0.22 0 pose: 0.45060479 -4.82037 0.171767 0 -0.00133891 0.00150704 -0.0105878 0.999942 uwb: 0.0 839.447 1526.8 +imu_odom_: 1691062938.44125492 0.0885855 -0.114922 10.4603 -0.02024 0.00426106 0.0383495 0.19 0 pose: 0.0 -4.82037 0.171767 0 -0.00133891 0.00150704 -0.0105878 0.999942 uwb: 0.50179807 834.24 1524.17 +imu_odom_: 1691062938.61063638 0.134075 -0.287304 9.70609 -0.0575243 0.02024 0.0500674 0.19 0 pose: 0.35007601 -4.81727 0.170968 0 -0.00122741 -0.000755691-0.0104539 0.999944 uwb: 0.0 834.24 1524.17 +imu_odom_: 1691062938.86031486 0.799663 0.0143652 9.76834 -0.0340885 0.0170442 0.0276969 0.18 0 pose: 0.0 -4.81727 0.170968 0 -0.00122741 -0.000755691-0.0104539 0.999944 uwb: 0.49801538 833.995 1523.36 +imu_odom_: 1691062938.112008443 0.337582 -0.433351 9.73004 -0.0830906 0.00213053 0.0681769 0.18 0 pose: 0.41966657 -4.80758 0.168477 0 -0.0002700710.00212271 -0.0104209 0.999943 uwb: 0.0 833.995 1523.36 +imu_odom_: 1691062938.134070584 0.0454898 -0.146046 9.85214 -0.0500674 0.0106526 0.0436758 0.2 0 pose: 0.42931435 -4.80023 0.166586 0 -0.0021875 0.00146181 -0.0101518 0.999945 uwb: 0.49864534 833.823 1522.32 +imu_odom_: 1691062938.151068810 0.512359 -0.205901 10.2951 -0.0671117 -0.0127832 0.0596548 0.2 0 pose: 0.0 -4.80023 0.166586 0 -0.0021875 0.00146181 -0.0101518 0.999945 uwb: 0.0 833.823 1522.32 +imu_odom_: 1691062938.174197806 0.42138 -0.323217 9.63906 -0.0479369 -0.0553937 0.0308927 0.23 0.02 pose: 0.6009736 -4.7979 0.165988 0 -0.00197253 0.00207454 -0.0101381 0.999945 uwb: 0.0 833.823 1522.32 +imu_odom_: 1691062938.192021109 0.301669 -0.0694318 9.50977 -0.0841559 0.00852212 0.0628506 0.23 0.02 pose: 0.0 -4.7979 0.165988 0 -0.00197253 0.00207454 -0.0101381 0.999945 uwb: 0.50032816 834.507 1521.75 +imu_odom_: 1691062938.217073828 0.124498 -0.433351 9.9527 -0.072438 0.0191748 0.0468716 0.19 0 pose: 0.39023619 -4.78573 0.173192 0 -0.0016569 0.00149755 -0.0099587 0.999948 uwb: 0.0 834.507 1521.75 +imu_odom_: 1691062938.244081766 0.533907 -0.335188 10.0317 -0.0873517 -0.0234358 0.0511327 0.19 0 pose: 0.0 -4.78573 0.173192 0 -0.0016569 0.00149755 -0.0099587 0.999948 uwb: 0.50099604 836.681 1521.2 +imu_odom_: 1691062938.269068280 0.497994 -0.433351 10.6949 -0.0394148 -0.00958738 0.0245011 0.19 0 pose: 0.41982406 -4.78573 0.173192 0 -0.0021568 0.00168341 -0.00980112 0.999948 uwb: 0.0 836.681 1521.2 +imu_odom_: 1691062938.286199790 0.447716 -0.328006 9.55526 -0.0681769 -0.0372843 0.0447411 0.19 0 pose: 0.0 -4.78573 0.173192 0 -0.0021568 0.00168341 -0.00980112 0.999948 uwb: 0.50029900 836.088 1519.91 +imu_odom_: 1691062938.311198261 0.0694318 -0.234632 9.74679 -0.0415453 0 0.0426106 0.2 0 pose: 0.53052559 -4.77604 0.170714 0 -0.00506328 -1.3105e-05 -0.00964971 0.999941 uwb: 0.0 836.088 1519.91 +imu_odom_: 1691062938.338023336 0.380678 -0.294487 9.9503 -0.0532632 -0.0458064 0.0490022 0.2 0 pose: 0.0 -4.77604 0.170714 0 -0.00506328 -1.3105e-05 -0.00964971 0.999941 uwb: 0.0 836.088 1519.91 +imu_odom_: 1691062938.354043951 1.02951 0.0287304 10.1514 -0.0308927 -0.02024 0.0330232 0.18 -0.02 pose: 0.41929617 -4.76635 0.168239 0 -0.00580193 -0.00234682 -0.00973236 0.999933 uwb: 0.0 836.088 1519.91 +imu_odom_: 1691062938.381128011 0.299275 -0.3304 9.69173 -0.0553937 0.00319579 0.0553937 0.18 -0.02 pose: 0.0 -4.76635 0.168239 0 -0.00580193 -0.00234682 -0.00973236 0.999933 uwb: 0.0 836.088 1519.91 +imu_odom_: 1691062938.406068736 0.440533 -0.332794 10.0772 -0.0426106 0.00213053 0.0500674 0.19 0.02 pose: 0.52067074 -4.75666 0.165763 0 -0.00330533 0.000246385 -0.00958601 0.999949 uwb: 0.99852144 834.155 1518.13 +imu_odom_: 1691062938.430012018 0.447716 -0.347159 9.84735 -0.052198 -0.0213053 0.0458064 0.19 0.02 pose: 0.0 -4.75666 0.165763 0 -0.00330533 0.000246385 -0.00958601 0.999949 uwb: 0.0 834.155 1518.13 +imu_odom_: 1691062938.455168272 0.538695 -0.155623 9.91918 -0.0703074 -0.056459 0.0660464 0.18 0.02 pose: 0.43017471 -4.7445 0.17298 0 -0.00440952 0.00127562 -0.00935498 0.999946 uwb: 0.50005109 832.337 1516.04 +imu_odom_: 1691062938.480024419 0.612916 -0.160412 9.991 -0.0500674 -0.0468716 0.0415453 0.19 0 pose: 0.47979602 -4.73481 0.170493 0 -0.00601443 -0.0026992 -0.0091162 0.999937 uwb: 0.0 832.337 1516.04 +imu_odom_: 1691062938.496988521 0.517148 -0.134075 10.1083 -0.0383495 0.0340885 0.0266316 0.19 0 pose: 0.0 -4.73481 0.170493 0 -0.00601443 -0.0026992 -0.0091162 0.999937 uwb: 0.49986152 835.329 1516.02 +imu_odom_: 1691062938.522012950 0.181959 -0.220267 9.87848 -0.0585895 -0.0319579 0.04048 0.19 0 pose: 0.25936125 -4.73481 0.170493 0 -0.00393908 -0.0046757 -0.008879 0.999942 uwb: 0.0 835.329 1516.02 +imu_odom_: 1691062938.546996839 0.533907 -0.42138 9.5792 -0.0671117 -0.0681769 0.0617853 0.2 0 pose: 0.41058169 -4.72515 0.167936 0 -0.000795597-0.00514684 -0.00898707 0.999946 uwb: 0.50111854 835.186 1514.91 +imu_odom_: 1691062938.570015591 0.493206 -0.383072 9.165 -0.0639159 -0.0319579 0.036219 0.18 0 pose: 0.42932018 -4.71548 0.165378 0 -0.0033013 -0.00514511 -0.00869242 0.999944 uwb: 0.0 835.186 1514.91 +imu_odom_: 1691062938.586137409 0.754174 -0.225055 10.2759 -0.0490022 -0.0447411 0.0447411 0.18 0 pose: 0.0 -4.71548 0.165378 0 -0.0033013 -0.00514511 -0.00869242 0.999944 uwb: 0.50114186 833.678 1513.44 +imu_odom_: 1691062938.612011997 0.440533 -0.220267 10.1562 -0.0479369 -0.00426106 0.0340885 0.26 0 pose: 0.6007986 -4.71548 0.165378 0 -0.00392796 -0.00520332 -0.00869919 0.999941 uwb: 0.0 833.678 1513.44 +imu_odom_: 1691062938.637074923 0.318429 -0.0909797 10.41 -0.0500674 0.0276969 0.0692422 0.26 0 pose: 0.0 -4.71548 0.165378 0 -0.00392796 -0.00520332 -0.00869919 0.999941 uwb: 0.49764206 832.609 1512.15 +imu_odom_: 1691062938.662049188 0.430956 -0.134075 9.76595 -0.0596548 0.0436758 0.0298274 0.22 0 pose: 0.41029878 -4.70581 0.162825 0 -0.00447063 -0.00658868 -0.00870871 0.99993 uwb: 0.0 832.609 1512.15 +imu_odom_: 1691062938.676031463 0.217872 -0.0287304 9.76355 -0.0532632 -0.00958738 0.0532632 0.22 0 pose: 0.0 -4.70581 0.162825 0 -0.00447063 -0.00658868 -0.00870871 0.99993 uwb: 0.0 832.609 1512.15 +imu_odom_: 1691062938.700985312 0.0215478 -0.318429 9.73961 -0.0575243 0.0330232 0.0298274 0.18 -0.02 pose: 0.50007442 -4.69359 0.169949 0 -0.000715163-0.00270579 -0.00842848 0.999961 uwb: 0.50050315 832.901 1511.26 +imu_odom_: 1691062938.727037806 0.122104 -0.260968 9.71088 -0.0681769 -0.0149137 0.0660464 0.18 -0.02 pose: 0.0 -4.69359 0.169949 0 -0.000715163-0.00270579 -0.00842848 0.999961 uwb: 0.0 832.901 1511.26 +imu_odom_: 1691062938.751986697 0.493206 -0.464475 9.40921 -0.0681769 0.00532632 0.0308927 0.19 0 pose: 0.38922417 -4.69359 0.169949 0 0.00162148 7.9246e-05 -0.00846324 0.999963 uwb: 0.50003943 832.823 1510 +imu_odom_: 1691062938.769088167 0.268151 0.126893 10.1514 -0.0660464 0.0181095 0.0383495 0.19 0 pose: 0.0 -4.69359 0.169949 0 0.00162148 7.9246e-05 -0.00846324 0.999963 uwb: 0.0 832.823 1510 +imu_odom_: 1691062938.794034725 0.390255 -0.215478 9.94791 -0.0585895 0 0.0298274 0.19 0 pose: 0.51157418 -4.68389 0.167497 0 -0.0004464730.00413947 -0.00824535 0.999957 uwb: 0.50091729 833.101 1509.15 +imu_odom_: 1691062938.819111358 0.742203 -0.521936 9.63906 -0.0916127 0.0351537 0.0490022 0.19 0 pose: 0.0 -4.68389 0.167497 0 -0.0004464730.00413947 -0.00824535 0.999957 uwb: 0.0 833.101 1509.15 +imu_odom_: 1691062938.840134351 0.548272 -0.234632 9.70131 -0.0660464 0.052198 0.0276969 0.18 0.02 pose: 0.42966433 -4.6742 0.16505 0 -0.0003544080.00293628 -0.00837248 0.999961 uwb: 0.49881159 834.208 1508.77 +imu_odom_: 1691062938.854117501 0.177171 -0.21069 9.74201 -0.0490022 -0.0127832 0.0372843 0.18 0.02 pose: 0.0 -4.6742 0.16505 0 -0.0003544080.00293628 -0.00837248 0.999961 uwb: 0.0 834.208 1508.77 +imu_odom_: 1691062938.878246273 0.0837971 -0.418985 9.68933 -0.0596548 0.0191748 0.0330232 0.17 0 pose: 0.47915438 -4.6645 0.162599 0 -0.00217389 -0.000535825-0.00837543 0.999962 uwb: 0.0 834.208 1508.77 +imu_odom_: 1691062938.903247953 0.301669 -0.320823 10.1825 -0.052198 0.0138484 0.0490022 0.17 0 pose: 0.0 -4.6645 0.162599 0 -0.00217389 -0.000535825-0.00837543 0.999962 uwb: 0.49958445 836.683 1508.71 +imu_odom_: 1691062938.928162138 0.246603 -0.399832 9.49062 -0.0479369 0.0681769 0.0191748 0.2 0 pose: 0.35998336 -4.65236 0.169843 0 -0.00206985 0.000405939 -0.00850469 0.999962 uwb: 0.0 836.683 1508.71 +imu_odom_: 1691062938.946230718 0.426168 -0.102951 9.91439 -0.0532632 -0.0266316 0.0479369 0.2 0 pose: 0.0 -4.65236 0.169843 0 -0.00206985 0.000405939 -0.00850469 0.999962 uwb: 0.50121186 838.385 1507.97 +imu_odom_: 1691062938.962105217 0.227449 -0.600945 9.29669 -0.072438 0.0287621 0.0394148 0.18 -0.02 pose: 0.50134018 -4.64266 0.167391 0 -0.00500612 0.0050892 -0.00852161 0.999938 uwb: 0.0 838.385 1507.97 +imu_odom_: 1691062938.987084732 0.0885855 -0.0837971 9.74919 -0.0607201 -0.0106526 0.0532632 0.18 -0.02 pose: 0.0 -4.64266 0.167391 0 -0.00500612 0.0050892 -0.00852161 0.999938 uwb: 0.49919072 838.335 1506.6 +imu_odom_: 1691062939.11178214 0.167594 -0.387861 10.2232 -0.0671117 -0.0223706 0.052198 0.18 0 pose: 0.40926926 -4.63297 0.164936 0 -0.00538342 0.00577596 -0.0086222 0.999932 uwb: 0.0 838.335 1506.6 +imu_odom_: 1691062939.35033418 0.428562 -0.0574608 10.1442 -0.052198 -0.0234358 0.0319579 0.18 0 pose: 0.0 -4.63297 0.164936 0 -0.00538342 0.00577596 -0.0086222 0.999932 uwb: 0.50060524 839.084 1505.78 +imu_odom_: 1691062939.59964227 0.955286 -0.311246 10.0724 -0.0340885 -0.015979 0.015979 0.18 -0.02 pose: 0.42110149 -4.63297 0.164936 0 -0.00504347 0.00806911 -0.00838967 0.99992 uwb: 0.0 839.084 1505.78 +imu_odom_: 1691062939.76995118 0.23942 -0.0167594 9.80904 -0.0490022 0.0223706 0.0479369 0.18 -0.02 pose: 0.0 -4.63297 0.164936 0 -0.00504347 0.00806911 -0.00838967 0.99992 uwb: 0.0 839.084 1505.78 +imu_odom_: 1691062939.99002429 0.452504 -0.289698 9.81623 -0.0458064 -0.00532632 0.0479369 0.19 0 pose: 0.47848359 -4.62327 0.162485 0 -0.00431192 0.00674781 -0.00845179 0.999932 uwb: 0.49876783 839.791 1505.06 +imu_odom_: 1691062939.123960070 0.488417 -0.131681 9.67976 -0.0543285 -0.015979 0.0532632 0.19 0 pose: 0.0 -4.62327 0.162485 0 -0.00431192 0.00674781 -0.00845179 0.999932 uwb: 0.0 839.791 1505.06 +imu_odom_: 1691062939.149952776 0.567426 -0.129287 9.64863 -0.0426106 -0.0255663 0.0319579 0.23 0 pose: 0.40995173 -4.61113 0.169727 0 -0.00252494 0.00487653 -0.00857013 0.999948 uwb: 0.49999569 841.873 1504.61 +imu_odom_: 1691062939.164679342 1.34794 -0.071826 10.2185 -0.0532632 0.036219 0.0553937 0.23 0 pose: 0.0 -4.61113 0.169727 0 -0.00252494 0.00487653 -0.00857013 0.999948 uwb: 0.0 841.873 1504.61 +imu_odom_: 1691062939.181096893 1.31681 -0.440533 9.67018 -0.0820254 0.0500674 0.0660464 0.18 0 pose: 0.47985726 -4.60143 0.167276 0 -0.00066472 0.000599516 -0.00836477 0.999965 uwb: 0.0 841.873 1504.61 +imu_odom_: 1691062939.206097698 0.474052 -0.349553 9.53371 -0.0458064 -0.00639159 0.0511327 0.18 0 pose: 0.0 -4.60143 0.167276 0 -0.00066472 0.000599516 -0.00836477 0.999965 uwb: 0.49990527 841.757 1503.44 +imu_odom_: 1691062939.232272393 0.620098 -0.196325 9.47625 -0.0713727 0.0127832 0.0436758 0.2 0 pose: 0.75095160 -4.59174 0.164826 0 -0.00246082 -0.00364156 -0.00794784 0.999959 uwb: 0.49981195 842.102 1502.35 +imu_odom_: 1691062939.257039295 0.533907 -0.158017 9.38527 -0.0798948 0.00532632 0.0649811 0.2 0 pose: 0.8026203 -4.59174 0.164826 0 -0.00221286 -0.00431374 -0.00793475 0.999957 uwb: 0.0 842.102 1502.35 +imu_odom_: 1691062939.280973537 0.433351 -0.37589 9.74679 -0.0777643 0.0191748 0.0479369 0.23 0.02 pose: 0.42915394 -4.58204 0.162385 0 0.000436599 -0.00635255 -0.00760757 0.999951 uwb: 0.0 842.102 1502.35 +imu_odom_: 1691062939.308436158 0.414197 -0.395043 10.1658 -0.0937433 -0.00319579 0.052198 0.25 0.02 pose: 0.0 -4.58204 0.162385 0 0.000436599 -0.00635255 -0.00760757 0.999951 uwb: 0.50144518 841.741 1501.96 +imu_odom_: 1691062939.325080029 0.035913 -0.430956 9.84256 -0.0468716 0.0319579 0.0266316 0.25 0.02 pose: 0.31136534 -4.5699 0.16965 0 -0.00267657 -0.00452893 -0.00744787 0.999958 uwb: 0.0 841.741 1501.96 +imu_odom_: 1691062939.349942592 0.586579 -0.392649 9.60554 -0.0713727 -0.0500674 0.0500674 0.18 0.02 pose: 0.0 -4.5699 0.16965 0 -0.00267657 -0.00452893 -0.00744787 0.999958 uwb: 0.49877076 840.303 1500.42 +imu_odom_: 1691062939.374052407 0.682347 -0.186748 9.73722 -0.056459 0.0138484 0.0394148 0.18 0.02 pose: 0.43794719 -4.5699 0.16965 0 -0.00553536 -0.00229576 -0.00737697 0.999955 uwb: 0.0 840.303 1500.42 +imu_odom_: 1691062939.401048972 -0.00957681-0.272939 9.83538 -0.0500674 -0.0234358 0.0479369 0.23 -0.02 pose: 0.42081859 -4.5602 0.167219 0 -0.005069 -0.00598609 -0.0073099 0.999943 uwb: 0.0 840.303 1500.42 +imu_odom_: 1691062939.425929325 0.129287 -0.296881 9.91918 -0.0117179 -0.0511327 0.036219 0.23 -0.02 pose: 0.7949207 -4.5602 0.167219 0 -0.00498394 -0.00526943 -0.00727258 0.999947 uwb: 0.0 840.303 1500.42 +imu_odom_: 1691062939.442945634 0.387861 -0.399832 9.40921 -0.0681769 0.0138484 0.056459 0.23 0.02 pose: 0.0 -4.5602 0.167219 0 -0.00498394 -0.00526943 -0.00727258 0.999947 uwb: 0.99999137 840.675 1499.26 +imu_odom_: 1691062939.467015201 0.373495 -0.318429 9.76595 -0.0394148 0.0106526 0.0532632 0.23 0.02 pose: 0.50948306 -4.5505 0.164791 0 -0.00483173 -0.00130427 -0.00714758 0.999962 uwb: 0.0 840.675 1499.26 +imu_odom_: 1691062939.492957451 0.411803 -0.354342 9.99819 -0.0500674 -0.00958738 0.0468716 0.24 0 pose: 0.34065281 -4.5408 0.162365 0 -0.00517884 0.00173349 -0.00688334 0.999961 uwb: 0.50035149 842.124 1499.22 +imu_odom_: 1691062939.518102040 0.263362 -0.124498 10.3765 -0.0649811 -0.00958738 0.0607201 0.24 0 pose: 0.8010453 -4.5408 0.162365 0 -0.00569149 0.00111373 -0.00685807 0.99996 uwb: 0.0 842.124 1499.22 +imu_odom_: 1691062939.535957716 0.842759 -0.253785 10.1251 -0.0585895 0.0383495 0.0543285 0.19 0 pose: 0.24986223 -4.52868 0.169646 0 -0.00627487 8.25858e-05 -0.00672445 0.999958 uwb: 0.49826912 842.015 1498.06 +imu_odom_: 1691062939.559943871 0.191536 -0.196325 9.91678 -0.0372843 0.00213053 0.0340885 0.19 0 pose: 0.0 -4.52868 0.169646 0 -0.00482801 0.000996056 -0.00652685 0.999967 uwb: 0.0 842.015 1498.06 +imu_odom_: 1691062939.585085543 0.423774 -0.280122 9.28471 -0.0596548 -0.0468716 0.04048 0.19 0 pose: 0.26015454 -4.51897 0.167233 0 -0.00420155 0.000356385 -0.00642464 0.99997 uwb: 0.50118270 841.836 1497.11 +imu_odom_: 1691062939.609078698 0.466869 -0.363919 9.4571 -0.0798948 -0.0458064 0.0649811 0.19 0 pose: 0.0 -4.51897 0.167233 0 -0.00420155 0.000356385 -0.00642464 0.99997 uwb: 0.0 841.836 1497.11 +imu_odom_: 1691062939.626066425 0.306458 -0.354342 9.95988 -0.0500674 0.00106526 0.0479369 0.19 0 pose: 0.47978436 -4.51897 0.167233 0 -0.00432153 -0.00167486 -0.00636842 0.999969 uwb: 0.0 841.836 1497.11 +imu_odom_: 1691062939.650070662 0.557849 -0.229843 10.2999 -0.0394148 -0.0447411 0.0468716 0.19 0 pose: 0.0 -4.51897 0.167233 0 -0.00432153 -0.00167486 -0.00636842 0.999969 uwb: 0.49865993 844.694 1497.13 +imu_odom_: 1691062939.674990680 0.553061 -0.177171 9.91678 -0.0511327 0.0106526 0.0383495 0.19 0.02 pose: 0.24880937 -4.50927 0.164822 0 -0.00614196 -0.00196161 -0.0061145 0.999961 uwb: 0.0 844.694 1497.13 +imu_odom_: 1691062939.700976970 0.380678 -0.292093 9.95988 -0.0777643 -0.0106526 0.0735032 0.23 -0.02 pose: 0.16095861 -4.50927 0.164822 0 -0.00573215 -0.00171821 -0.00604818 0.999964 uwb: 0.49983236 845.408 1496.37 +imu_odom_: 1691062939.717085372 0.0790087 -0.272939 9.80186 -0.0532632 -0.0340885 0.0479369 0.23 -0.02 pose: 0.0 -4.50927 0.164822 0 -0.00573215 -0.00171821 -0.00604818 0.999964 uwb: 0.0 845.408 1496.37 +imu_odom_: 1691062939.742934295 0.56982 -0.248997 10.2352 -0.0596548 -0.036219 0.0617853 0.24 0 pose: 0.49919365 -4.49956 0.162417 0 -0.00268709 -0.00383021 -0.00588435 0.999972 uwb: 0.50136061 846.107 1495.65 +imu_odom_: 1691062939.767981472 0.629675 -0.325611 10.1778 -0.0319579 -0.0532632 0.0340885 0.24 0 pose: 0.0 -4.49956 0.162417 0 -0.00268709 -0.00383021 -0.00588435 0.999972 uwb: 0.0 846.107 1495.65 +imu_odom_: 1691062939.793974470 0.708684 -0.323217 9.62469 -0.0809601 0 0.0617853 0.2 0.02 pose: 0.41947992 -4.48746 0.169723 0 -0.00315995 -0.00167101 -0.00541543 0.999979 uwb: 0.49877950 842.073 1493.39 +imu_odom_: 1691062939.809967379 0.509965 -0.251391 9.88326 -0.0745685 -0.015979 0.0479369 0.2 0.02 pose: 0.0 -4.48746 0.169723 0 -0.00315995 -0.00167101 -0.00541543 0.999979 uwb: 0.0 842.073 1493.39 +imu_odom_: 1691062939.835923920 0.52433 -0.696713 10.2137 0.0149137 -0.0170442 0.00426106 0.22 0 pose: 0.50987970 -4.47775 0.167331 0 -0.00370062 -0.00744076 -0.00520394 0.999952 uwb: 0.49999860 841.149 1491.84 +imu_odom_: 1691062939.859911534 0.0646434 0.011971 10.0461 -0.0426106 -0.0191748 0.0628506 0.22 0 pose: 0.0 -4.47775 0.167331 0 -0.00370062 -0.00744076 -0.00520394 0.999952 uwb: 0.0 841.149 1491.84 +imu_odom_: 1691062939.885923489 0.596156 -0.246603 9.91199 -0.0884169 -0.00213053 0.0575243 0.21 -0.02 pose: 0.40992839 -4.46804 0.164945 0 -0.00409084 -0.00788797 -0.00505966 0.999948 uwb: 0.49998402 841.902 1490.97 +imu_odom_: 1691062939.908925034 0.727837 -0.167594 10.2496 -0.0458064 -0.0223706 0.0181095 0.21 -0.02 pose: 0.0 -4.46804 0.164945 0 -0.00409084 -0.00788797 -0.00505966 0.999948 uwb: 0.0 841.902 1490.97 +imu_odom_: 1691062939.927108817 0.713472 -0.407014 8.89207 -0.0596548 -0.0127832 0.0298274 0.19 0 pose: 0.50995552 -4.45833 0.16256 0 -0.00355762 -0.00670702 -0.00502668 0.999959 uwb: 0.0 841.902 1490.97 +imu_odom_: 1691062939.951979254 -0.0622492 -0.232238 10.24 -0.0234358 -0.015979 0.0266316 0.19 0 pose: 0.0 -4.45833 0.16256 0 -0.00355762 -0.00670702 -0.00502668 0.999959 uwb: 0.49986444 843.488 1490.44 +imu_odom_: 1691062939.976907438 0.244209 -0.397437 9.9527 -0.0543285 -0.0245011 0.0447411 0.22 -0.02 pose: 0.49210656 -4.44861 0.160175 0 -0.00225317 -0.0109147 -0.00517396 0.999925 uwb: 0.0 843.488 1490.44 +imu_odom_: 1691062940.1064792 0.337582 -0.1652 9.65821 -0.0415453 -0.00639159 0.0383495 0.22 -0.02 pose: 0.42833732 -4.44623 0.169886 0 -0.00278842 -0.00856355 -0.00534054 0.999945 uwb: 0.50054107 839.924 1488.32 +imu_odom_: 1691062940.17062951 0.469264 -0.234632 10.0293 -0.0820254 0.00426106 0.0468716 0.19 -0.02 pose: 0.41103958 -4.43652 0.167495 0 -0.0020358 -0.00508053 -0.0053018 0.999971 uwb: 0.0 839.924 1488.32 +imu_odom_: 1691062940.42908666 0.332794 -0.162806 9.65582 -0.0639159 0.00106526 0.0468716 0.19 -0.02 pose: 0.0 -4.43652 0.167495 0 -0.0020358 -0.00508053 -0.0053018 0.999971 uwb: 0.50007735 836.622 1486.88 +imu_odom_: 1691062940.69055071 0.497994 -0.373495 10.4531 -0.0649811 -0.0287621 0.0500674 0.26 0.02 pose: 0.24054985 -4.42681 0.165105 0 -0.00108253 -0.00290194 -0.00521722 0.999982 uwb: 0.0 836.622 1486.88 +imu_odom_: 1691062940.93939800 0.608127 -0.0646434 10.5345 -0.0617853 -0.0117179 0.0415453 0.23 -0.02 pose: 0.0 -4.42681 0.165105 0 -0.00108253 -0.00290194 -0.00521722 0.999982 uwb: 0.49916449 837.375 1486.04 +imu_odom_: 1691062940.117971161 0.744597 -0.215478 10.0365 -0.0298274 -0.0245011 0.015979 0.23 -0.02 pose: 0.50942473 -4.4171 0.162717 0 -0.00225384 -0.00311097 -0.00500958 0.99998 uwb: 0.0 837.375 1486.04 +imu_odom_: 1691062940.135063590 0.143652 0.00957681 9.65103 -0.0532632 0.0149137 0.0553937 0.23 -0.02 pose: 0.0 -4.4171 0.162717 0 -0.00225384 -0.00311097 -0.00500958 0.99998 uwb: 0.49990236 839.372 1485.69 +imu_odom_: 1691062940.161101794 0.299275 -0.306458 9.5385 -0.0500674 0.0245011 0.0340885 0.18 0 pose: 0.48990169 -4.4171 0.162717 0 -4.88351e-05-0.00619515 -0.00522968 0.999967 uwb: 0.0 839.372 1485.69 +imu_odom_: 1691062940.184955540 0.126893 -0.306458 9.67018 -0.0532632 -0.0106526 0.0575243 0.23 0 pose: 0.36049375 -4.40568 0.167259 0 -0.000604863-0.00253145 -0.00521978 0.999983 uwb: 0.50158227 838.68 1484.94 +imu_odom_: 1691062940.198887360 0.502782 -0.35913 9.71328 -0.0394148 -0.0106526 0.036219 0.23 0 pose: 0.0 -4.40568 0.167259 0 -0.000604863-0.00253145 -0.00521978 0.999983 uwb: 0.0 838.68 1484.94 +imu_odom_: 1691062940.223225829 0.519542 -0.0454898 10.3789 -0.0447411 -0.0149137 0.0660464 0.17 0 pose: 0.0 -4.40568 0.167259 0 -0.000604863-0.00253145 -0.00521978 0.999983 uwb: 0.0 838.68 1484.94 +imu_odom_: 1691062940.249927244 0.517148 -0.0335188 10.5177 -0.0553937 0.0138484 0.036219 0.17 0 pose: 0.45809436 -4.39529 0.16765 0 -0.00136513 -0.00153983 -0.00492205 0.999986 uwb: 0.49861326 838.517 1484.02 +imu_odom_: 1691062940.274902093 0.215478 -0.500388 9.56962 -0.0862864 0.036219 0.072438 0.19 0 pose: 0.43016014 -4.38846 0.165975 0 0.00271458 -0.00299689 -0.00475932 0.99998 uwb: 0.0 838.517 1484.02 +imu_odom_: 1691062940.299937021 0.746991 -0.1652 9.7851 -0.0532632 0.0266316 0.0287621 0.19 0 pose: 0.8024453 -4.38557 0.165268 0 0.00194226 -0.00236029 -0.00462678 0.999985 uwb: 0.49997236 841.301 1484.08 +imu_odom_: 1691062940.312868774 -0.0766145 -0.277727 9.74679 -0.0809601 0.04048 0.0628506 0.2 -0.02 pose: 0.0 -4.38557 0.165268 0 0.00194226 -0.00236029 -0.00462678 0.999985 uwb: 0.0 841.301 1484.08 +imu_odom_: 1691062940.329961494 0.287304 -0.337582 10.4148 -0.0681769 -0.0117179 0.0628506 0.2 -0.02 pose: 0.47923606 -4.37586 0.162891 0 0.000504414 -0.00239379 -0.00441279 0.999987 uwb: 0.0 841.301 1484.08 +imu_odom_: 1691062940.355034045 0.711078 0.0430956 10.3932 -0.056459 -0.0138484 0.0330232 0.18 0.02 pose: 0.0 -4.37586 0.162891 0 0.000504414 -0.00239379 -0.00441279 0.999987 uwb: 0.49987612 841.77 1482.65 +imu_odom_: 1691062940.379021659 0.392649 -0.483629 9.6199 -0.0458064 0.0223706 0.0223706 0.18 0.02 pose: 0.31200988 -4.37586 0.162891 0 -0.000437708-0.000877856-0.0041557 0.999991 uwb: 0.0 841.77 1482.65 +imu_odom_: 1691062940.403950718 0.557849 -0.241814 10.0293 -0.0628506 -0.0394148 0.0543285 0.25 0 pose: 0.0 -4.37586 0.162891 0 -0.000437708-0.000877856-0.0041557 0.999991 uwb: 0.50129936 842.868 1482.14 +imu_odom_: 1691062940.427048509 1.02951 -0.126893 9.91918 -0.0532632 0.0223706 0.04048 0.25 0 pose: 0.49867160 -4.36377 0.170238 0 -0.00149833 -0.00244639 -0.00435955 0.999986 uwb: 0.0 842.868 1482.14 +imu_odom_: 1691062940.442921550 0.641646 -0.253785 9.95748 -0.0532632 0.00639159 0.0436758 0.2 0 pose: 0.0 -4.36377 0.170238 0 -0.00149833 -0.00244639 -0.00435955 0.999986 uwb: 0.50004819 843.195 1481.14 +imu_odom_: 1691062940.468915423 0.318429 -0.452504 9.98622 -0.0351537 -0.0117179 0.0394148 0.2 0 pose: 0.48143510 -4.35406 0.167866 0 -0.00116627 -0.00714939 -0.00421531 0.999965 uwb: 0.0 843.195 1481.14 +imu_odom_: 1691062940.485024408 0.68953 0.0502782 9.9527 -0.0436758 -0.0330232 0.0468716 0.2 0 pose: 0.0 -4.35406 0.167866 0 -0.00116627 -0.00714939 -0.00421531 0.999965 uwb: 0.49983819 843.914 1480.36 +imu_odom_: 1691062940.510026672 0.840365 -0.047884 10.1107 -0.0394148 -0.0479369 0.0458064 0.2 0 pose: 0.41080626 -4.34434 0.165496 0 -0.0020666 -0.00646873 -0.00416091 0.999968 uwb: 0.0 843.914 1480.36 +imu_odom_: 1691062940.534019827 0.617704 -0.007182619.35654 -0.0532632 0.0149137 0.0436758 0.17 0.02 pose: 0.0 -4.34434 0.165496 0 -0.0020666 -0.00646873 -0.00416091 0.999968 uwb: 0.49994028 843.322 1479.33 +imu_odom_: 1691062940.556912879 0.134075 -0.318429 9.77553 -0.0543285 0.0223706 0.0340885 0.17 0.02 pose: 0.40889012 -4.33463 0.163129 0 0.00100876 -0.00973041 -0.00405805 0.999944 uwb: 0.0 843.322 1479.33 +imu_odom_: 1691062940.575121160 0.349553 -0.0287304 10.3932 -0.0607201 -0.0340885 0.0575243 0.25 0 pose: 0.0 -4.33463 0.163129 0 0.00100876 -0.00973041 -0.00405805 0.999944 uwb: 0.0 843.322 1479.33 +imu_odom_: 1691062940.598919785 0.732626 -0.0837971 9.84975 -0.0458064 -0.0649811 0.04048 0.25 0 pose: 0.47993310 -4.32491 0.160762 0 0.00243015 -0.0068566 -0.004032 0.999965 uwb: 0.49947072 842.727 1478.32 +imu_odom_: 1691062940.621936205 0.416591 -0.110133 9.97424 -0.0319579 -0.0223706 0.0287621 0.23 0 pose: 0.0 -4.32491 0.160762 0 0.00243015 -0.0068566 -0.004032 0.999965 uwb: 0.0 842.727 1478.32 +imu_odom_: 1691062940.647865331 0.409408 -0.31364 10.2304 -0.0340885 -0.0330232 0.036219 0.23 0 pose: 0.40891637 -4.32255 0.170478 0 0.00406376 -0.00853407 -0.00397803 0.999947 uwb: 0.50055274 843.013 1477.44 +imu_odom_: 1691062940.671915358 0.768539 -0.287304 10.331 -0.0543285 -0.0319579 0.0479369 0.2 0.02 pose: 0.41923785 -4.3128 0.168097 0 0.00269107 -0.00595365 -0.00410731 0.99997 uwb: 0.0 843.013 1477.44 +imu_odom_: 1691062940.686860953 0.155623 -0.0287304 9.61033 -0.0468716 -0.0106526 0.0426106 0.2 0.02 pose: 0.0 -4.3128 0.168097 0 0.00269107 -0.00595365 -0.00410731 0.99997 uwb: 0.49869493 842.006 1476.3 +imu_odom_: 1691062940.705191144 0.392649 -0.150835 10.07 -0.0426106 -0.0138484 0.0436758 0.25 0.02 pose: 0.0 -4.3128 0.168097 0 0.00269107 -0.00595365 -0.00410731 0.99997 uwb: 0.0 842.006 1476.3 +imu_odom_: 1691062940.729010184 0.514753 -0.280122 9.60793 -0.0426106 -0.0308927 0.0330232 0.25 0.02 pose: 0.46992368 -4.30314 0.165648 0 0.00233464 -0.00631191 -0.00396469 0.999969 uwb: 0.0 842.006 1476.3 +imu_odom_: 1691062940.755066761 0.629675 -0.112527 9.93115 -0.0607201 -0.0298274 0.0713727 0.23 0.02 pose: 0.34152485 -4.29671 0.164016 0 0.000317415 -0.00586419 -0.00401131 0.999975 uwb: 0.50117104 843.97 1475.93 +imu_odom_: 1691062940.779919117 0.840365 -0.0814029 10.2759 -0.0628506 -0.0117179 0.036219 0.23 0.02 pose: 0.8105531 -4.29345 0.163186 0 0.000819636 -0.00658631 -0.00388549 0.99997 uwb: 0.0 843.97 1475.93 +imu_odom_: 1691062940.805964903 0.782904 -0.225055 9.68455 -0.0798948 -0.0223706 0.0617853 0.19 0.02 pose: 0.42803402 -4.28685 0.161514 0 0.00264089 -0.0106336 -0.00365148 0.999933 uwb: 0.49878826 844.16 1475.35 +imu_odom_: 1691062940.829987224 1.23062 -0.0742203 10.0437 -0.0436758 -0.036219 0.0340885 0.2 0 pose: 0.0 -4.28685 0.161514 0 0.00264089 -0.0106336 -0.00365148 0.999933 uwb: 0.0 844.16 1475.35 +imu_odom_: 1691062940.855864437 0.624887 -0.280122 9.71806 -0.0756338 0.0149137 0.0575243 0.2 0 pose: 0.33998202 -4.28375 0.16073 0 0.00164582 -0.014233 -0.00337277 0.999892 uwb: 0.49993153 844.023 1474.36 +imu_odom_: 1691062940.869908833 0.514753 -0.232238 9.99819 -0.0798948 -0.00213053 0.0436758 0.2 0 pose: 0.0 -4.28375 0.16073 0 0.00164582 -0.014233 -0.00337277 0.999892 uwb: 0.0 844.023 1474.36 +imu_odom_: 1691062940.892854091 0.368707 -0.134075 10.0317 -0.076699 -0.00639159 0.0436758 0.2 0.02 pose: 0.47944604 -4.27161 0.167975 0 -0.000340423-0.0135668 -0.00314858 0.999903 uwb: 0.49982945 842.376 1472.41 +imu_odom_: 1691062940.918050593 0.517148 -0.280122 9.81862 -0.0585895 0.0213053 0.0255663 0.23 -0.02 pose: 0.0 -4.27161 0.167975 0 -0.000340423-0.0135668 -0.00314858 0.999903 uwb: 0.0 842.376 1472.41 +imu_odom_: 1691062940.933055101 0.512359 -0.272939 10.0054 -0.0671117 -0.00852212 0.0607201 0.23 -0.02 pose: 0.30992168 -4.26516 0.166361 0 -5.8985e-05 -0.0105915 -0.00309635 0.999939 uwb: 0.50133727 839.247 1470.81 +imu_odom_: 1691062940.956895140 0.471658 -0.141258 9.79707 -0.072438 -0.0426106 0.0351537 0.23 -0.02 pose: 0.0 -4.26516 0.166361 0 -5.8985e-05 -0.0105915 -0.00309635 0.999939 uwb: 0.0 839.247 1470.81 +imu_odom_: 1691062940.983122333 0.35913 -0.260968 10.3214 -0.0575243 -0.0394148 0.0308927 0.18 0 pose: 0.8160070 -4.26191 0.165551 0 -0.000541976-0.00982008 -0.00314867 0.999947 uwb: 0.0 839.247 1470.81 +imu_odom_: 1691062941.119392 0.301669 -0.320823 9.46188 -0.0553937 -0.00213053 0.0308927 0.18 0 pose: 0.0 -4.26191 0.165551 0 -0.000541976-0.00982008 -0.00314867 0.999947 uwb: 0.0 839.247 1470.81 +imu_odom_: 1691062941.26120848 0.0574608 -0.344765 10.4196 -0.0575243 0.0234358 0.0532632 0.19 -0.02 pose: 0.39845780 -4.25219 0.163202 0 -0.00172001 -0.00668596 -0.00311346 0.999971 uwb: 0.0 839.247 1470.81 +imu_odom_: 1691062941.50850127 0.416591 -0.275333 9.79947 -0.036219 0.0426106 0.0191748 0.18 -0.02 pose: 0.50280720 -4.24247 0.160854 0 -0.0013847 -0.0033829 -0.0032991 0.999988 uwb: 0.99880729 837.431 1469.44 +imu_odom_: 1691062941.76838459 0.555455 -0.0861913 9.77792 -0.0532632 -0.0149137 0.0511327 0.18 -0.02 pose: 0.0 -4.24247 0.160854 0 -0.0013847 -0.0033829 -0.0032991 0.999988 uwb: 0.0 837.431 1469.44 +imu_odom_: 1691062941.90845525 0.287304 -0.102951 9.80904 -0.0447411 -0.0149137 0.0245011 0.2 -0.05 pose: 0.43863840 -4.24247 0.160854 0 -0.00283171 -0.00017858 -0.00324554 0.999991 uwb: 0.50045650 840.021 1468.56 +imu_odom_: 1691062941.114836930 0.272939 0.0574608 9.75877 -0.0788296 0.0117179 0.0639159 0.2 -0.05 pose: 0.0 -4.24247 0.160854 0 -0.00283171 -0.00017858 -0.00324554 0.999991 uwb: 0.0 840.021 1468.56 +imu_odom_: 1691062941.139987061 0.871489 -0.21069 9.97903 -0.056459 0 0.0351537 0.25 0 pose: 0.47993019 -4.23039 0.168223 0 -0.00100135 -0.00222282 -0.00331511 0.999992 uwb: 0.49938031 839.045 1467.41 +imu_odom_: 1691062941.164910871 0.277727 -0.426168 9.68933 -0.0575243 0.0276969 0.0511327 0.25 0 pose: 0.0 -4.23039 0.168223 0 -0.00100135 -0.00222282 -0.00331511 0.999992 uwb: 0.0 839.045 1467.41 +imu_odom_: 1691062941.182045297 -0.035913 -0.387861 9.77313 -0.0330232 -0.0213053 0.0298274 0.18 0 pose: 0.39842573 -4.22068 0.165871 0 0.00130222 -0.00105669 -0.00310276 0.999994 uwb: 0.49868619 841.815 1467.31 +imu_odom_: 1691062941.205178377 0.964863 -0.191536 10.0485 -0.056459 -0.0671117 0.0553937 0.18 0 pose: 0.0 -4.22068 0.165871 0 0.00130222 -0.00105669 -0.00310276 0.999994 uwb: 0.0 841.815 1467.31 +imu_odom_: 1691062941.230040941 0.746991 -0.296881 9.45949 -0.04048 0.015979 0.0308927 0.2 0 pose: 0.50040984 -4.21095 0.163524 0 -0.000974551-0.000139941-0.00302828 0.999995 uwb: 0.0 841.815 1467.31 +imu_odom_: 1691062941.253873397 0.445322 -0.363919 9.33499 -0.0596548 -0.0298274 0.0553937 0.2 0 pose: 0.0 -4.21095 0.163524 0 -0.000974551-0.000139941-0.00302828 0.999995 uwb: 0.50002194 841.769 1466.11 +imu_odom_: 1691062941.278891410 0.277727 -0.177171 10.0748 -0.0340885 0.0330232 0.0340885 0.25 0 pose: 0.40124598 -4.20123 0.161179 0 -0.00111181 -0.00307603 -0.00292501 0.99999 uwb: 0.0 841.769 1466.11 +imu_odom_: 1691062941.292867269 0.433351 0.0837971 10.0916 -0.056459 -0.00532632 0.0703074 0.25 0 pose: 0.0 -4.20123 0.161179 0 -0.00111181 -0.00307603 -0.00292501 0.99999 uwb: 0.50088231 839.283 1464.09 +imu_odom_: 1691062941.316866841 0.617704 0.00718261 10.5129 -0.0543285 0.02024 0.0372843 0.18 0 pose: 0.49052583 -4.19151 0.158835 0 -0.00318211 -0.00323023 -0.00282133 0.999986 uwb: 0.0 839.283 1464.09 +imu_odom_: 1691062941.333825694 0.282516 -0.31364 9.83777 -0.0703074 -0.0149137 0.0490022 0.18 0 pose: 0.0 -4.19151 0.158835 0 -0.00318211 -0.00323023 -0.00282133 0.999986 uwb: 0.49973905 836.743 1462.3 +imu_odom_: 1691062941.358823292 -0.21069 -0.426168 9.48822 -0.056459 0.0447411 0.0394148 0.18 0 pose: 0.37988555 -4.18917 0.168557 0 -0.000244326-0.00180232 -0.00266261 0.999995 uwb: 0.0 836.743 1462.3 +imu_odom_: 1691062941.382844445 0.292093 -0.244209 9.92636 -0.0820254 0.0181095 0.0681769 0.18 0 pose: 0.0 -4.18917 0.168557 0 -0.000244326-0.00180232 -0.00266261 0.999995 uwb: 0.50014735 836.25 1461.13 +imu_odom_: 1691062941.407969785 0.459687 -0.445322 10.0748 -0.0692422 0.0245011 0.0458064 0.25 0.02 pose: 0.42791152 -4.17945 0.166218 0 -0.000288405-0.000250116-0.00260474 0.999997 uwb: 0.0 836.25 1461.13 +imu_odom_: 1691062941.420970951 0.718261 -0.234632 10.0413 -0.0543285 -0.0181095 0.0372843 0.25 0.02 pose: 0.0 -4.17945 0.166218 0 -0.000288405-0.000250116-0.00260474 0.999997 uwb: 0.0 836.25 1461.13 +imu_odom_: 1691062941.439003951 0.371101 -0.213084 9.78989 -0.0713727 0.0234358 0.0511327 0.18 0 pose: 0.48009060 -4.16972 0.163879 0 -0.00223638 0.00395394 -0.00223896 0.999987 uwb: 0.50021735 837.826 1460.52 +imu_odom_: 1691062941.463977341 0.0407014 -0.268151 10.0389 -0.0372843 -0.00106526 0.036219 0.18 0 pose: 0.0 -4.16972 0.163879 0 -0.00223638 0.00395394 -0.00223896 0.999987 uwb: 0.0 837.826 1460.52 +imu_odom_: 1691062941.489838222 0.177171 -0.500388 9.52653 -0.052198 0.0223706 0.0511327 0.21 0 pose: 0.38136713 -4.16 0.161548 0 -0.00282524 0.00190605 -0.00216459 0.999992 uwb: 0.50017651 837.698 1459.6 +imu_odom_: 1691062941.513801337 0.409408 -0.344765 9.78271 -0.0458064 0.00532632 0.0458064 0.21 0 pose: 0.0 -4.16 0.161548 0 -0.00282524 0.00190605 -0.00216459 0.999992 uwb: 0.0 837.698 1459.6 +imu_odom_: 1691062941.531892667 0.392649 -0.122104 10.0365 -0.052198 -0.0287621 0.0458064 0.19 0 pose: 0.43028847 -4.16 0.161548 0 -0.00248005 0.00503295 -0.00209967 0.999982 uwb: 0.50001903 836.942 1457.91 +imu_odom_: 1691062941.556810061 0.476446 0.0383072 10.4196 -0.0553937 -0.00745685 0.0500674 0.19 0 pose: 0.0 -4.16 0.161548 0 -0.00248005 0.00503295 -0.00209967 0.999982 uwb: 0.0 836.942 1457.91 +imu_odom_: 1691062941.574939596 0.11971 -0.397437 9.69173 -0.0479369 0.0234358 0.0468716 0.25 0 pose: 0.49798331 -4.14795 0.168945 0 -0.00406028 0.00367027 -0.00191686 0.999983 uwb: 0.0 836.942 1457.91 +imu_odom_: 1691062941.598024846 0.435745 -0.397437 10.0221 -0.0372843 -0.00213053 0.0479369 0.25 0 pose: 0.0 -4.14795 0.168945 0 -0.00406028 0.00367027 -0.00191686 0.999983 uwb: 0.49993736 837.61 1457.3 +imu_odom_: 1691062941.624084049 0.521936 -0.215478 10.1251 -0.04048 -0.0319579 0.0372843 0.2 -0.02 pose: 0.43103801 -4.13824 0.166523 0 -0.0012441 0.00292883 -0.00171894 0.999993 uwb: 0.0 837.61 1457.3 +imu_odom_: 1691062941.641061568 0.153229 -0.124498 9.95988 -0.0394148 0.0276969 0.0500674 0.2 -0.02 pose: 0.0 -4.13824 0.166523 0 -0.0012441 0.00292883 -0.00171894 0.999993 uwb: 0.0 837.61 1457.3 +imu_odom_: 1691062941.665825845 0.548272 -0.37589 10.1562 -0.0649811 0.0223706 0.0458064 0.25 0 pose: 0.41103375 -4.12854 0.164104 0 -0.00306658 0.00168823 -0.00160794 0.999993 uwb: 0.0 837.61 1457.3 +imu_odom_: 1691062941.688903220 0.624887 -0.19393 10.1107 -0.0426106 0.0191748 0.0298274 0.25 0 pose: 0.0 -4.12854 0.164104 0 -0.00306658 0.00168823 -0.00160794 0.999993 uwb: 0.100173546 837.112 1456.17 +imu_odom_: 1691062941.713876027 0.349553 -0.237026 9.34936 -0.0617853 -0.0234358 0.04048 0.18 0.02 pose: 0.42810694 -4.11884 0.161688 0 -0.00184213 0.00101657 -0.00151803 0.999997 uwb: 0.0 837.112 1456.17 +imu_odom_: 1691062941.731801117 0.129287 -0.234632 9.91678 -0.0298274 0.0138484 0.0458064 0.18 0.02 pose: 0.0 -4.11884 0.161688 0 -0.00184213 0.00101657 -0.00151803 0.999997 uwb: 0.0 837.112 1456.17 +imu_odom_: 1691062941.755854935 0.282516 -0.320823 9.80904 -0.0532632 -0.0106526 0.0426106 0.2 -0.02 pose: 0.49009710 -4.10913 0.159274 0 -0.00190796 -0.00121312 -0.00158289 0.999996 uwb: 0.49855203 835.169 1454.1 +imu_odom_: 1691062941.782073379 0.715866 -0.122104 10.2065 -0.0458064 -0.0458064 0.0447411 0.2 -0.02 pose: 0.0 -4.10913 0.159274 0 -0.00190796 -0.00121312 -0.00158289 0.999996 uwb: 0.50224139 835.538 1453.08 +imu_odom_: 1691062941.807875055 0.457293 -0.354342 10.1251 -0.0500674 0.0319579 0.0298274 0.2 0.02 pose: 0.84234883 -4.09701 0.166564 0 -0.00197173 0.000803869 -0.00141411 0.999997 uwb: 0.0 835.538 1453.08 +imu_odom_: 1691062941.832815780 0.399832 -0.368707 10.094 -0.076699 -0.0127832 0.0703074 0.2 0.02 pose: 0.0 -4.09701 0.166564 0 -0.00197173 0.000803869 -0.00141411 0.999997 uwb: 0.0 835.538 1453.08 +imu_odom_: 1691062941.847929365 0.138864 -0.40462 9.73004 -0.056459 -0.0447411 0.0500674 0.21 -0.02 pose: 0.25801676 -4.09035 0.164906 0 -0.00401835 -0.00020649 -0.00154552 0.999991 uwb: 0.0 835.538 1453.08 +imu_odom_: 1691062941.871846692 0.344765 -0.227449 9.94312 -0.056459 -0.0298274 0.0479369 0.21 -0.02 pose: 0.0 -4.09035 0.164906 0 -0.00401835 -0.00020649 -0.00154552 0.999991 uwb: 0.0 835.538 1453.08 +imu_odom_: 1691062941.897798859 0.708684 -0.392649 10.1778 -0.0415453 -0.0479369 0.0308927 0.18 -0.02 pose: 0.48000309 -4.0776 0.161738 0 -0.00634783 0.00123548 -0.00103275 0.999979 uwb: 0.99723530 833.53 1451.25 +imu_odom_: 1691062941.921854719 0.316035 -0.155623 9.52413 -0.0703074 -0.0127832 0.0639159 0.19 0 pose: 0.41923495 -4.07092 0.160082 0 -0.00525514 -0.00162137 -0.00108306 0.999984 uwb: 0.0 833.53 1451.25 +imu_odom_: 1691062941.939798182 0.521936 -0.201113 9.99819 -0.0788296 -0.0106526 0.0458064 0.19 0 pose: 0.8076075 -4.0679 0.159333 0 -0.00466745 -0.00117297 -0.00098323 0.999988 uwb: 0.49977113 835.453 1450.88 +imu_odom_: 1691062941.963793379 0.229843 0.023942 10.0365 -0.0777643 0.0149137 0.0383495 0.18 0 pose: 0.0 -4.0679 0.159333 0 -0.00466745 -0.00117297 -0.00098323 0.999988 uwb: 0.0 835.453 1450.88 +imu_odom_: 1691062941.981775632 0.260968 -0.316035 10.1897 -0.052198 -0.00639159 0.036219 0.18 0 pose: 0.33923248 -4.06656 0.164721 0 -0.0026551 -0.00179415 -0.0007350920.999995 uwb: 0.49994028 835.006 1449.66 +imu_odom_: 1691062942.4896754 0.337582 -0.244209 10.2903 -0.0585895 -0.0191748 0.0479369 0.18 0 pose: 0.0 -4.06656 0.164721 0 -0.0026551 -0.00179415 -0.0007350920.999995 uwb: 0.0 835.006 1449.66 +imu_odom_: 1691062942.30792342 0.557849 -0.225055 10.1275 -0.0745685 -0.0181095 0.0308927 0.18 -0.02 pose: 0.50050608 -4.05581 0.166749 0 -0.00167682 0.00211746 -0.0007437540.999996 uwb: 0.0 835.006 1449.66 +imu_odom_: 1691062942.54865701 0.584185 -0.42138 9.54089 -0.0777643 0.0127832 0.0415453 0.17 0 pose: 0.40943552 -4.04608 0.164447 0 -0.00144977 0.000716965 -0.0007918370.999998 uwb: 0.50029026 836.025 1449.31 +imu_odom_: 1691062942.80926945 0.620098 -0.241814 9.71328 -0.0330232 0.036219 0.0319579 0.17 0 pose: 0.8005496 -4.04608 0.164447 0 -0.00208327 0.000196345 -0.0007852510.999998 uwb: 0.0 836.025 1449.31 +imu_odom_: 1691062942.105156046 0.608127 -0.265756 9.43555 -0.0777643 0.0383495 0.0436758 0.2 -0.02 pose: 0.42129107 -4.03932 0.162848 0 -0.00258985 -0.00288633 -0.0008818820.999992 uwb: 0.50006861 836.565 1447.83 +imu_odom_: 1691062942.121789127 0.174777 -0.196325 9.88805 -0.0298274 0.0223706 0.0245011 0.2 -0.02 pose: 0.0 -4.03932 0.162848 0 -0.00258985 -0.00288633 -0.0008818820.999992 uwb: 0.0 836.565 1447.83 +imu_odom_: 1691062942.138834017 0.143652 -0.0861913 9.97185 -0.0479369 0.00319579 0.036219 0.19 -0.02 pose: 0.0 -4.03932 0.162848 0 -0.00258985 -0.00288633 -0.0008818820.999992 uwb: 0.50071899 840.485 1447.97 +imu_odom_: 1691062942.155840701 0.268151 -0.617704 9.97185 -0.0660464 0.0191748 0.0415453 0.19 -0.02 pose: 0.48907633 -4.02661 0.159838 0 -0.0018993 -0.00221612 -0.0009756770.999995 uwb: 0.0 840.485 1447.97 +imu_odom_: 1691062942.179790693 0.186748 -0.122104 9.94551 -0.0511327 -0.0170442 0.0426106 0.19 0 pose: 0.0 -4.02661 0.159838 0 -0.0018993 -0.00221612 -0.0009756770.999995 uwb: 0.0 840.485 1447.97 +imu_odom_: 1691062942.205913475 0.54109 -0.287304 10.2448 -0.0660464 -0.0394148 0.04048 0.19 0 pose: 0.33956497 -4.02431 0.169568 0 -0.00261974 9.24166e-05 -0.0009567820.999996 uwb: 0.49916450 840.323 1447.19 +imu_odom_: 1691062942.220879194 0.711078 -0.335188 9.61511 -0.0468716 0.00958738 0.0213053 0.19 0 pose: 0.0 -4.02431 0.169568 0 -0.00261974 9.24166e-05 -0.0009567820.999996 uwb: 0.0 840.323 1447.19 +imu_odom_: 1691062942.246819404 0.299275 -0.407014 9.69652 -0.0436758 -0.00213053 0.0394148 0.19 -0.02 pose: 0.49054041 -4.01458 0.167262 0 -0.00257748 -0.00231141 -0.0009856830.999994 uwb: 0.49997237 843.287 1447.49 +imu_odom_: 1691062942.271832167 0.565032 -0.277727 10.0149 -0.0575243 -0.0266316 0.052198 0.19 0.02 pose: 0.33974288 -4.00485 0.164956 0 -0.00429601 -0.00103574 -0.0010519 0.99999 uwb: 0.0 843.287 1447.49 +imu_odom_: 1691062942.288815519 0.366313 -0.237026 9.77553 -0.0500674 -0.0234358 0.0490022 0.19 0.02 pose: 0.0 -4.00485 0.164956 0 -0.00429601 -0.00103574 -0.0010519 0.99999 uwb: 0.49863078 841.667 1445.87 +imu_odom_: 1691062942.313768495 0.191536 -0.172383 9.71567 -0.0575243 0.0234358 0.0500674 0.19 0 pose: 0.8118947 -4.00485 0.164956 0 -0.00418116 -0.00193017 -0.00100388 0.999989 uwb: 0.0 841.667 1445.87 +imu_odom_: 1691062942.338902876 0.557849 -0.237026 9.87608 -0.0319579 -0.0468716 0.0436758 0.19 0 pose: 0.0 -4.00485 0.164956 0 -0.00418116 -0.00193017 -0.00100388 0.999989 uwb: 0.49995778 841.687 1444.58 +imu_odom_: 1691062942.361977335 0.320823 -0.143652 10.1131 -0.0798948 0.00852212 0.0671117 0.19 0 pose: 0.42857066 -3.99512 0.162649 0 -0.00282873 -0.00146809 -0.0007714660.999995 uwb: 0.0 841.687 1444.58 +imu_odom_: 1691062942.377972869 0.54109 -0.339977 9.87848 -0.0713727 -0.00532632 0.0532632 0.19 0 pose: 0.0 -3.99512 0.162649 0 -0.00282873 -0.00146809 -0.0007714660.999995 uwb: 0.0 841.687 1444.58 +imu_odom_: 1691062942.394936389 0.533907 -0.181959 9.7444 -0.0511327 -0.00213053 0.0458064 0.19 0 pose: 0.48124845 -3.98539 0.160347 0 -0.00128826 -0.00218326 -0.0005421220.999997 uwb: 0.50018236 845.879 1445.06 +imu_odom_: 1691062942.419905405 0.667982 -0.299275 9.59835 -0.0830906 0.00958738 0.0500674 0.25 0 pose: 0.0 -3.98539 0.160347 0 -0.00128826 -0.00218326 -0.0005421220.999997 uwb: 0.0 845.879 1445.06 +imu_odom_: 1691062942.446755854 0.0933739 -0.263362 9.59117 -0.0852212 0.0298274 0.0628506 0.24 0 pose: 0.39946693 -3.97336 0.167789 0 -0.00127175 -0.002603 -0.0001902440.999996 uwb: 0.49972446 842.784 1442.73 +imu_odom_: 1691062942.471803907 0.509965 -0.387861 10.0652 -0.0735032 0.0138484 0.0447411 0.24 0 pose: 0.0 -3.97336 0.167789 0 -0.00127175 -0.002603 -0.0001902440.999996 uwb: 0.0 842.784 1442.73 +imu_odom_: 1691062942.488904211 0.493206 -0.023942 10.24 -0.056459 -0.0170442 0.036219 0.23 0 pose: 0.85936952 -3.96362 0.165502 0 -0.00487932 -0.00322123 0.000347624 0.999983 uwb: 0.49983238 846.209 1442.86 +imu_odom_: 1691062942.512815121 0.371101 -0.318429 9.77553 -0.0575243 0.0287621 0.0308927 0.23 0 pose: 0.7012428 -3.96362 0.165502 0 -0.00418321 -0.00332613 0.000333498 0.999986 uwb: 0.0 846.209 1442.86 +imu_odom_: 1691062942.538811619 0.280122 -0.337582 9.61511 -0.0660464 -0.0319579 0.0479369 0.2 0 pose: 0.33998786 -3.95389 0.163222 0 -0.00414791 -0.0008809190.000218241 0.999991 uwb: 0.50067524 846.124 1441.86 +imu_odom_: 1691062942.552810519 0.196325 -0.481235 9.65342 -0.0585895 0.0276969 0.0511327 0.2 0 pose: 0.0 -3.95389 0.163222 0 -0.00414791 -0.0008809190.000218241 0.999991 uwb: 0.0 846.124 1441.86 +imu_odom_: 1691062942.575792816 0.481235 -0.174777 9.93354 -0.0447411 0 0.0500674 0.17 0.02 pose: 0.0 -3.95389 0.163222 0 -0.00414791 -0.0008809190.000218241 0.999991 uwb: 0.0 846.124 1441.86 +imu_odom_: 1691062942.592766836 0.538695 -0.196325 10.0293 -0.0511327 -0.0575243 0.0490022 0.17 0.02 pose: 0.39995398 -3.9487 0.162006 0 -0.00604551 0.00248791 0.00042297 0.999979 uwb: 0.50104564 843.793 1439.92 +imu_odom_: 1691062942.617813722 0.483629 0.0143652 10.2544 -0.0319579 -0.052198 0.04048 0.19 0 pose: 0.0 -3.9487 0.162006 0 -0.00604551 0.00248791 0.00042297 0.999979 uwb: 0.0 843.793 1439.92 +imu_odom_: 1691062942.643749849 0.782904 0.0574608 9.82102 -0.0426106 -0.0447411 0.0511327 0.19 0 pose: 0.39956317 -3.93933 0.159812 0 -0.00318001 -0.0007836530.000615539 0.999994 uwb: 0.50041567 842.879 1438.85 +imu_odom_: 1691062942.668785944 0.588974 0.0215478 9.70849 -0.0553937 0.00319579 0.0479369 0.19 0 pose: 0.50983013 -3.92542 0.166832 0 0.00137569 -0.00445453 0.00077162 0.999989 uwb: 0.0 842.879 1438.85 +imu_odom_: 1691062942.694030861 0.155623 -0.332794 9.7875 -0.052198 0.02024 0.0351537 0.19 0 pose: 0.0 -3.92542 0.166832 0 0.00137569 -0.00445453 0.00077162 0.999989 uwb: 0.50050026 841.76 1437.14 +imu_odom_: 1691062942.708762385 0.184354 -0.102951 10.3046 -0.0639159 -0.0138484 0.056459 0.18 -0.02 pose: 0.50281012 -3.9224 0.166126 0 0.00248363 -0.00290466 0.000811621 0.999992 uwb: 0.0 841.76 1437.14 +imu_odom_: 1691062942.732806871 0.270545 -0.143652 10.1203 -0.0447411 -0.0607201 0.0447411 0.18 -0.02 pose: 0.0 -3.9224 0.166126 0 0.00248363 -0.00290466 0.000811621 0.999992 uwb: 0.49873285 842.534 1436.2 +imu_odom_: 1691062942.759024148 0.581791 -0.134075 10.6686 -0.0436758 -0.0191748 0.036219 0.25 0 pose: 0.38776010 -3.91266 0.163856 0 0.00310056 0.000182295 0.000984554 0.999995 uwb: 0.0 842.534 1436.2 +imu_odom_: 1691062942.784791409 0.991199 0.0646434 10.1442 -0.0340885 -0.0181095 0.0330232 0.25 0 pose: 0.8014828 -3.91266 0.163856 0 0.00321458 -0.0006774230.00097338 0.999994 uwb: 0.50054692 838.266 1433.78 +imu_odom_: 1691062942.801748513 0.476446 -0.380678 9.55287 -0.0713727 -0.0660464 0.0575243 0.23 0 pose: 0.26109950 -3.90292 0.161587 0 0.00384734 -0.00342175 0.000923904 0.999986 uwb: 0.0 838.266 1433.78 +imu_odom_: 1691062942.826756027 0.490811 -0.282516 10.1011 -0.0468716 -0.0298274 0.0330232 0.23 0 pose: 0.0 -3.90292 0.161587 0 0.00384734 -0.00342175 0.000923904 0.999986 uwb: 0.0 838.266 1433.78 +imu_odom_: 1691062942.852885226 0.634463 -0.608127 9.7851 -0.0607201 -0.00426106 0.0500674 0.19 0 pose: 0.24984182 -3.90292 0.161587 0 0.00392504 -0.00536134 0.000935436 0.999977 uwb: 0.49993737 839.063 1432.8 +imu_odom_: 1691062942.878850226 0.282516 -0.0694318 9.80186 -0.0181095 0.0127832 0.0372843 0.18 0 pose: 0.60969395 -3.89089 0.169042 0 -0.00204937 -0.00621293 0.0011071 0.999978 uwb: 0.0 839.063 1432.8 +imu_odom_: 1691062942.894726767 0.577003 -0.337582 9.67497 -0.0809601 -0.00426106 0.0660464 0.18 0 pose: 0.0 -3.89089 0.169042 0 -0.00204937 -0.00621293 0.0011071 0.999978 uwb: 0.49939198 838.651 1431.59 +imu_odom_: 1691062942.919732822 0.208296 -0.294487 9.5792 -0.056459 0.0585895 0.0308927 0.18 -0.02 pose: 0.8031744 -3.89092 0.169058 0 -0.00141124 -0.00550688 0.00109695 0.999983 uwb: 0.0 838.651 1431.59 +imu_odom_: 1691062942.945791442 0.280122 -0.208296 10.1011 -0.0660464 -0.0479369 0.0596548 0.18 -0.02 pose: 0.0 -3.89092 0.169058 0 -0.00141124 -0.00550688 0.00109695 0.999983 uwb: 0.50191768 838.587 1430.62 +imu_odom_: 1691062942.961724563 1.19471 -0.258574 10.4124 -0.0415453 -0.0298274 0.0308927 0.18 -0.02 pose: 0.0 -3.89092 0.169058 0 -0.00141124 -0.00550688 0.00109695 0.999983 uwb: 0.0 838.587 1430.62 +imu_odom_: 1691062942.984726109 0.423774 -0.332794 9.61511 -0.0777643 -0.0245011 0.0607201 0.19 0 pose: 0.41831333 -3.8812 0.166695 0 -0.00157958 -0.00388572 0.00125506 0.99999 uwb: 0.49871827 839.964 1430.38 +imu_odom_: 1691062943.12067988 0.550666 -0.0814029 9.85932 -0.0575243 -0.0223706 0.0351537 0.25 0 pose: 0.81977806 -3.86498 0.16293 0 -0.00379839 -0.00156606 0.00162604 0.99999 uwb: 0.0 839.964 1430.38 +imu_odom_: 1691062943.37752421 0.600945 -0.40462 9.46667 -0.0852212 0.0127832 0.0436758 0.25 0 pose: 0.0 -3.86498 0.16293 0 -0.00379839 -0.00156606 0.00162604 0.99999 uwb: 0.49994029 838.831 1428.82 +imu_odom_: 1691062943.63999155 0.138864 -0.232238 9.77553 -0.056459 0.00639159 0.0458064 0.25 -0.02 pose: 0.8032036 -3.86172 0.162174 0 -0.00310689 -0.00203305 0.00160593 0.999992 uwb: 0.0 838.831 1428.82 +imu_odom_: 1691062943.86866835 0.184354 -0.131681 9.63666 -0.076699 -0.0511327 0.0447411 0.25 -0.02 pose: 0.0 -3.86172 0.162174 0 -0.00310689 -0.00203305 0.00160593 0.999992 uwb: 0.49865120 838.347 1427.84 +imu_odom_: 1691062943.103733235 0.859518 -0.0957681 10.0269 -0.0394148 -0.0181095 0.036219 0.18 0 pose: 0.53186720 -3.85197 0.159918 0 -0.00366072 -0.00375441 0.0016402 0.999985 uwb: 0.0 838.347 1427.84 +imu_odom_: 1691062943.128865575 0.620098 -0.124498 9.87608 -0.0553937 -0.00745685 0.0372843 0.18 0 pose: 0.0 -3.85197 0.159918 0 -0.00366072 -0.00375441 0.0016402 0.999985 uwb: 0.0 838.347 1427.84 +imu_odom_: 1691062943.153726098 0.588974 -0.153229 9.70131 -0.052198 0.00639159 0.0468716 0.19 -0.02 pose: 0.48928049 -3.83998 0.167406 0 -0.0021445 -0.00123391 0.00175114 0.999995 uwb: 0.49970697 837.375 1427.02 +imu_odom_: 1691062943.177703796 0.744597 -0.179565 10.3741 -0.0490022 0.02024 0.0276969 0.19 -0.02 pose: 0.0 -3.83998 0.167406 0 -0.0021445 -0.00123391 0.00175114 0.999995 uwb: 0.0 837.375 1427.02 +imu_odom_: 1691062943.193852447 0.402226 -0.237026 9.56244 -0.0340885 -0.00852212 0.0319579 0.25 0 pose: 0.65916943 -3.83023 0.165152 0 0.00114915 -0.00679231 0.00174191 0.999975 uwb: 0.49935990 836.312 1425.33 +imu_odom_: 1691062943.219711578 0.146046 -0.325611 10.4722 -0.0511327 -0.0319579 0.0426106 0.25 0 pose: 0.0 -3.83023 0.165152 0 0.00114915 -0.00679231 0.00174191 0.999975 uwb: 0.0 836.312 1425.33 +imu_odom_: 1691062943.244729883 0.0957681 -0.035913 9.94073 -0.0617853 -0.00639159 0.0500674 0.19 0 pose: 0.23919368 -3.83023 0.165152 0 0.0011823 -0.00761642 0.00161782 0.999969 uwb: 0.50026694 833.047 1422.77 +imu_odom_: 1691062943.271987476 1.34794 -0.514753 10.2496 -0.0596548 0.0628506 0.0330232 0.18 0 pose: 0.17012517 -3.82049 0.162896 0 0.000784482 -0.00612127 0.00159765 0.99998 uwb: 0.0 833.047 1422.77 +imu_odom_: 1691062943.287851768 -0.0670376 -0.0861913 9.15543 -0.0553937 0.0575243 0.0191748 0.18 0 pose: 0.0 -3.82049 0.162896 0 0.000784482 -0.00612127 0.00159765 0.99998 uwb: 0.50120605 833.006 1421.79 +imu_odom_: 1691062943.314791753 -0.155623 -0.435745 10.2113 -0.0276969 -0.0628506 0.0127832 0.24 0 pose: 0.51165003 -3.81075 0.160641 0 0.000875907 -0.00288731 0.00172771 0.999994 uwb: 0.0 833.006 1421.79 +imu_odom_: 1691062943.340777752 0.507571 -0.201113 10.7045 -0.0596548 -0.0330232 0.056459 0.24 0 pose: 0.0 -3.81075 0.160641 0 0.000875907 -0.00288731 0.00172771 0.999994 uwb: 0.49889036 835.122 1421.81 +imu_odom_: 1691062943.363729718 0.114922 -0.0837971 10.4028 -0.02024 -0.0255663 0.036219 0.25 -0.02 pose: 0.42992101 -3.8085 0.170383 0 0.000361845 -0.00149528 0.00139862 0.999998 uwb: 0.0 835.122 1421.81 +imu_odom_: 1691062943.380746027 0.397437 -0.304064 9.65103 -0.0532632 0.02024 0.0553937 0.25 -0.02 pose: 0.0 -3.8085 0.170383 0 0.000361845 -0.00149528 0.00139862 0.999998 uwb: 0.0 835.122 1421.81 +imu_odom_: 1691062943.405696378 0.823605 -0.181959 9.49062 -0.0436758 0.0276969 0.0287621 0.18 -0.02 pose: 0.51863212 -3.79875 0.168123 0 0.000627204 -0.00264667 0.00135264 0.999995 uwb: 0.49984113 832.749 1420.3 +imu_odom_: 1691062943.422735144 0.414197 0 10.3166 -0.0500674 -0.0138484 0.0575243 0.18 -0.02 pose: 0.0 -3.79875 0.168123 0 0.000627204 -0.00264667 0.00135264 0.999995 uwb: 0.0 832.749 1420.3 +imu_odom_: 1691062943.448862884 0.402226 -0.246603 10.6087 -0.0543285 0.02024 0.0351537 0.18 0 pose: 0.41965202 -3.78901 0.165862 0 -5.64808e-05-0.00141967 0.00141221 0.999998 uwb: 0.50024652 833.515 1419.44 +imu_odom_: 1691062943.475856534 0.011971 -0.373495 9.53132 -0.076699 0.0298274 0.0713727 0.18 0 pose: 0.0 -3.78901 0.165862 0 -5.64808e-05-0.00141967 0.00141221 0.999998 uwb: 0.0 833.515 1419.44 +imu_odom_: 1691062943.500831674 0.414197 -0.162806 10.0197 -0.0585895 0.0340885 0.0298274 0.18 0 pose: 0.41059628 -3.77927 0.163602 0 0.00124893 -0.00190483 0.00145677 0.999996 uwb: 0.50029318 831.333 1417.5 +imu_odom_: 1691062943.527756494 0.411803 -0.488417 10.1155 -0.0948085 0.0117179 0.0585895 0.23 0 pose: 0.52944942 -3.76953 0.161346 0 -0.0008385350.00206524 0.00181101 0.999996 uwb: 0.0 831.333 1417.5 +imu_odom_: 1691062943.543741238 0.146046 -0.428562 9.64384 -0.0628506 0.0330232 0.0330232 0.23 0 pose: 0.0 -3.76953 0.161346 0 -0.0008385350.00206524 0.00181101 0.999996 uwb: 0.50002196 829.239 1415.35 +imu_odom_: 1691062943.570961499 0.215478 -0.0766145 10.1634 -0.072438 -0.0127832 0.0607201 0.25 0 pose: 0.25134090 -3.76728 0.171089 0 -0.0004295260.00135523 0.00180432 0.999997 uwb: 0.0 829.239 1415.35 +imu_odom_: 1691062943.596928832 0.1652 -0.265756 9.84735 -0.0415453 0.00213053 0.0287621 0.25 0 pose: 0.43072595 -3.75753 0.168836 0 -0.00303409 0.0032624 0.00202169 0.999988 uwb: 0.50239015 831.492 1415 +imu_odom_: 1691062943.622757049 0.217872 -0.248997 9.55765 -0.0447411 -0.00852212 0.0500674 0.24 0 pose: 0.45010317 -3.74779 0.166588 0 -0.00174249 0.00684069 0.00209328 0.999973 uwb: 0.0 831.492 1415 +imu_odom_: 1691062943.648688218 0.0311246 -0.0837971 9.93354 -0.052198 0.0181095 0.04048 0.24 0 pose: 0.0 -3.74779 0.166588 0 -0.00174249 0.00684069 0.00209328 0.999973 uwb: 0.49875327 834.406 1415.09 +imu_odom_: 1691062943.673677066 0.0311246 -0.581791 9.90002 -0.056459 0.0117179 0.0426106 0.23 0.02 pose: 0.51759386 -3.73805 0.164342 0 4.81252e-05 0.0116174 0.00226167 0.99993 uwb: 0.0 834.406 1415.09 +imu_odom_: 1691062943.697701137 0.19393 -0.414197 10.082 -0.0532632 -0.00532632 0.052198 0.23 0.02 pose: 0.0 -3.73805 0.164342 0 4.81252e-05 0.0116174 0.00226167 0.99993 uwb: 0.49819914 834.986 1414.69 +imu_odom_: 1691062943.712699812 0.533907 -0.146046 9.84017 -0.0415453 -0.0394148 0.0511327 0.18 0 pose: 0.32357089 -3.73805 0.164342 0 -0.00299328 0.0125143 0.00230947 0.999915 uwb: 0.0 834.986 1414.69 +imu_odom_: 1691062943.737841777 0.675165 -0.0550666 9.97903 -0.0426106 -0.0287621 0.0415453 0.18 0 pose: 0.0 -3.73805 0.164342 0 -0.00299328 0.0125143 0.00230947 0.999915 uwb: 0.49934241 834.567 1413.63 +imu_odom_: 1691062943.760943651 0.272939 -0.100556 9.7851 -0.0532632 0.0276969 0.0351537 0.19 0.02 pose: 0.23887870 -3.7283 0.162099 0 -0.00423692 0.0112496 0.00243509 0.999925 uwb: 0.0 834.567 1413.63 +imu_odom_: 1691062943.785744385 0.227449 -0.131681 9.68933 -0.0671117 0.0117179 0.0703074 0.19 0.02 pose: 0.0 -3.7283 0.162099 0 -0.00423692 0.0112496 0.00243509 0.999925 uwb: 0.50168436 837.369 1413.91 +imu_odom_: 1691062943.801664674 0.0047884 -0.617704 9.97903 -0.0596548 0.0340885 0.0543285 0.23 0 pose: 0.39988399 -3.71631 0.169604 0 -0.00188375 0.00786239 0.00249685 0.999964 uwb: 0.0 837.369 1413.91 +imu_odom_: 1691062943.827836162 0.37589 -0.0766145 9.87129 -0.0394148 -0.00639159 0.0276969 0.23 0 pose: 0.0 -3.71631 0.169604 0 -0.00188375 0.00786239 0.00249685 0.999964 uwb: 0.0 837.369 1413.91 +imu_odom_: 1691062943.852763181 0.102951 -0.464475 10.003 -0.0458064 -0.0170442 0.0372843 0.18 0 pose: 0.46924706 -3.70657 0.167369 0 0.00141433 0.00916634 0.00291374 0.999953 uwb: 0.49883202 835.439 1412.46 +imu_odom_: 1691062943.875669649 0.514753 -0.418985 10.0054 -0.0628506 -0.0255663 0.056459 0.18 0 pose: 0.0 -3.70657 0.167369 0 0.00141433 0.00916634 0.00291374 0.999953 uwb: 0.0 835.439 1412.46 +imu_odom_: 1691062943.891736055 0.222661 -0.342371 9.92636 -0.0490022 -0.0149137 0.0511327 0.18 0 pose: 0.67864289 -3.69682 0.165139 0 -0.00021738 0.00802145 0.00284311 0.999964 uwb: 0.0 835.439 1412.46 +imu_odom_: 1691062943.909012807 0.588974 -0.0646434 9.95748 -0.0372843 0.00106526 0.036219 0.18 0 pose: 0.0 -3.69682 0.165139 0 -0.00021738 0.00802145 0.00284311 0.999964 uwb: 0.0 835.439 1412.46 +imu_odom_: 1691062943.933829873 0.442927 -0.196325 9.6199 -0.0596548 -0.0245011 0.0500674 0.18 0 pose: 0.49302236 -3.68707 0.162907 0 -0.00154818 0.00576408 0.00302676 0.999978 uwb: 0.100187838 835.743 1411.7 +imu_odom_: 1691062943.959861078 0.464475 -0.296881 9.76116 -0.0245011 -0.0287621 0.04048 0.18 0 pose: 0.0 -3.68707 0.162907 0 -0.00154818 0.00576408 0.00302676 0.999978 uwb: 0.0 835.743 1411.7 +imu_odom_: 1691062943.982700467 0.0143652 0.122104 10.0269 -0.0543285 -0.0937433 0.0490022 0.19 0 pose: 0.7707138 -3.68707 0.162907 0 -0.00132873 0.00495104 0.00306761 0.999982 uwb: 0.49804165 835.462 1410.32 +imu_odom_: 1691062944.6691582 0.294487 -0.174777 9.28471 -0.0990696 -0.0511327 0.0862864 0.19 0 pose: 0.50053525 -3.6751 0.17043 0 -0.00118811 0.000719064 0.00319738 0.999994 uwb: 0.0 835.462 1410.32 +imu_odom_: 1691062944.23768554 0.694318 -0.543484 10.1969 -0.076699 -0.0319579 0.0372843 0.18 -0.02 pose: 0.0 -3.6751 0.17043 0 -0.00118811 0.000719064 0.00319738 0.999994 uwb: 0.0 835.462 1410.32 +imu_odom_: 1691062944.48808149 0.981623 -0.332794 9.97903 -0.0553937 -0.0553937 0.0372843 0.18 -0.02 pose: 0.0 -3.6751 0.17043 0 -0.00118811 0.000719064 0.00319738 0.999994 uwb: 0.49906535 835.411 1409.41 +imu_odom_: 1691062944.74732611 0.373495 0.0502782 10.477 -0.0745685 0.0117179 0.0436758 0.2 0 pose: 0.65011662 -3.66535 0.168209 0 -0.00107259 0.000299802 0.00380641 0.999992 uwb: 0.0 835.411 1409.41 +imu_odom_: 1691062944.99763457 0.385466 -0.0766145 9.57681 -0.0820254 -0.00745685 0.0447411 0.19 0.02 pose: 0.42947479 -3.65824 0.166598 0 0.000937748 -0.00102014 0.00383388 0.999992 uwb: 0.0 835.411 1409.41 +imu_odom_: 1691062944.126722692 0.687136 -0.47884 9.64863 -0.0596548 0.0351537 0.04048 0.19 0.02 pose: 0.0 -3.65824 0.166598 0 0.000937748 -0.00102014 0.00383388 0.999992 uwb: 0.0 835.411 1409.41 +imu_odom_: 1691062944.142649980 0.1652 -0.270545 10.2472 -0.0607201 -0.00745685 0.0436758 0.19 -0.02 pose: 0.7093215 -3.65559 0.165996 0 0.00152069 -0.00082057 0.00385118 0.999991 uwb: 0.100102969 836.466 1408.85 +imu_odom_: 1691062944.168667478 0.785298 -0.131681 9.7851 -0.0671117 0.0117179 0.0181095 0.19 -0.02 pose: 0.0 -3.65559 0.165996 0 0.00152069 -0.00082057 0.00385118 0.999991 uwb: 0.0 836.466 1408.85 +imu_odom_: 1691062944.194682350 0.246603 -0.656011 9.23683 -0.0479369 -0.00426106 0.0468716 0.19 0 pose: 0.52848990 -3.64584 0.163784 0 0.000664684 -0.00080466 0.00393048 0.999992 uwb: 0.50023778 836.451 1407.86 +imu_odom_: 1691062944.220673016 0.275333 -0.294487 9.46667 -0.0149137 0.0149137 0.0298274 0.19 0 pose: 0.0 -3.64584 0.163784 0 0.000664684 -0.00080466 0.00393048 0.999992 uwb: 0.0 836.451 1407.86 +imu_odom_: 1691062944.245666239 0.208296 -0.208296 9.88566 -0.0596548 -0.0287621 0.0383495 0.2 0 pose: 0.41999324 -3.63388 0.171324 0 8.0564e-05 -0.00207308 0.00369901 0.999991 uwb: 0.50003654 836.594 1406.47 +imu_odom_: 1691062944.272661347 -0.011971 -0.260968 10.1203 -0.0394148 -0.00319579 0.0351537 0.22 0 pose: 0.52063869 -3.62413 0.169108 0 -0.0016466 0.00204598 0.00364357 0.99999 uwb: 0.0 836.594 1406.47 +imu_odom_: 1691062944.289656366 0.442927 -0.545878 9.56005 -0.0798948 0.0127832 0.0458064 0.22 0 pose: 0.0 -3.62413 0.169108 0 -0.0016466 0.00204598 0.00364357 0.99999 uwb: 0.50002779 836.971 1405.53 +imu_odom_: 1691062944.313714268 0.296881 -0.0646434 9.67018 -0.0479369 -0.0191748 0.0458064 0.25 0 pose: 0.24003655 -3.62413 0.169108 0 -0.00126816 0.00419606 0.00362198 0.999984 uwb: 0.0 836.971 1405.53 +imu_odom_: 1691062944.338718866 0.533907 -0.0095768110.0724 -0.0830906 -0.0106526 0.0553937 0.25 0 pose: 0.43919255 -3.61437 0.166891 0 -0.00223207 0.00551431 0.00364879 0.999976 uwb: 0.49929866 837.745 1404.63 +imu_odom_: 1691062944.352805844 0.363919 -0.332794 9.81862 -0.0479369 -0.0532632 0.0319579 0.25 0 pose: 0.0 -3.61437 0.166891 0 -0.00223207 0.00551431 0.00364879 0.999976 uwb: 0.0 837.745 1404.63 +imu_odom_: 1691062944.376874537 0.167594 -0.275333 9.48822 -0.0777643 -0.0170442 0.0383495 0.18 0.02 pose: 0.47999728 -3.60462 0.164675 0 0.000312778 0.00318672 0.00389449 0.999987 uwb: 0.0 837.745 1404.63 +imu_odom_: 1691062944.402671256 0.430956 -0.150835 9.96227 -0.0287621 -0.02024 0.036219 0.23 0 pose: 0.32213890 -3.59764 0.163091 0 -0.00139642 0.00497635 0.00384568 0.999979 uwb: 0.50057318 838.396 1404.03 +imu_odom_: 1691062944.428772457 0.577003 -0.0383072 10.0437 -0.0426106 -0.00106526 0.0319579 0.23 0 pose: 0.0 -3.59764 0.163091 0 -0.00139642 0.00497635 0.00384568 0.999979 uwb: 0.0 838.396 1404.03 +imu_odom_: 1691062944.445642066 0.500388 -0.205901 9.69652 -0.0372843 -0.00745685 0.0415453 0.21 0 pose: 0.6819065 -3.59487 0.162463 0 -0.0009042360.00437072 0.00383509 0.999983 uwb: 0.49994904 835.587 1401.87 +imu_odom_: 1691062944.461634392 0.260968 -0.323217 9.71088 -0.0479369 -0.0234358 0.0575243 0.21 0 pose: 0.0 -3.59487 0.162463 0 -0.0009042360.00437072 0.00383509 0.999983 uwb: 0.0 835.587 1401.87 +imu_odom_: 1691062944.488685497 0.770933 -0.0790087 10.161 -0.0234358 -0.0394148 0.0351537 0.25 0 pose: 0.52144947 -3.58291 0.170001 0 0.00204785 -6.16244e-050.00371906 0.999991 uwb: 0.49890494 836.085 1400.66 +imu_odom_: 1691062944.505653975 0.519542 -0.28491 9.46667 -0.076699 -0.00213053 0.0649811 0.25 0 pose: 0.0 -3.58291 0.170001 0 0.00204785 -6.16244e-050.00371906 0.999991 uwb: 0.0 836.085 1400.66 +imu_odom_: 1691062944.532662499 0.758962 -0.150835 9.97185 -0.0458064 -0.0436758 0.0500674 0.25 -0.02 pose: 0.32888184 -3.58291 0.170001 0 0.00117864 -0.0007767590.00385738 0.999992 uwb: 0.49936575 838.109 1400.69 +imu_odom_: 1691062944.557638223 0.672771 -0.320823 10.2041 -0.0948085 -0.0372843 0.0585895 0.25 -0.02 pose: 0.0 -3.58291 0.170001 0 0.00117864 -0.0007767590.00385738 0.999992 uwb: 0.0 838.109 1400.69 +imu_odom_: 1691062944.584780031 0.593762 -0.059855 10.1035 -0.0628506 -0.0234358 0.0553937 0.21 0.02 pose: 0.43964752 -3.57315 0.167789 0 0.000621978 -0.0046543 0.00407245 0.999981 uwb: 0.49998987 837.012 1399.38 +imu_odom_: 1691062944.600659197 0.3304 -0.395043 9.74679 -0.0894822 0.0223706 0.0596548 0.21 0.02 pose: 0.0 -3.57315 0.167789 0 0.000621978 -0.0046543 0.00407245 0.999981 uwb: 0.0 837.012 1399.38 +imu_odom_: 1691062944.626702360 0.435745 -0.347159 9.7037 -0.0543285 -0.0106526 0.0298274 0.23 0.02 pose: 0.52118116 -3.5634 0.165583 0 -0.00044866 -0.00929328 0.00447428 0.999947 uwb: 0.0 837.012 1399.38 +imu_odom_: 1691062944.651685667 0.42138 -0.296881 9.55287 -0.0916127 -0.0149137 0.0479369 0.23 0.02 pose: 0.0 -3.5634 0.165583 0 -0.00044866 -0.00929328 0.00447428 0.999947 uwb: 0.50015320 838.028 1398.88 +imu_odom_: 1691062944.676744803 0.229843 -0.222661 9.60554 -0.0447411 -0.0351537 0.0340885 0.19 0 pose: 0.42871940 -3.55364 0.163385 0 -0.000323501-0.00766627 0.00474813 0.999959 uwb: 0.0 838.028 1398.88 +imu_odom_: 1691062944.690647167 0.318429 -0.409408 10.0078 -0.0639159 -0.00532632 0.0298274 0.19 0 pose: 0.0 -3.55364 0.163385 0 -0.000323501-0.00766627 0.00474813 0.999959 uwb: 0.49992863 840.007 1399 +imu_odom_: 1691062944.716682163 0.68953 -0.220267 9.95988 -0.0308927 -0.0617853 0.0490022 0.17 0 pose: 0.50978348 -3.54169 0.170947 0 -0.00308279 -0.00376253 0.00476232 0.999977 uwb: 0.0 840.007 1399 +imu_odom_: 1691062944.741654096 0.608127 -0.28491 10.2735 -0.0649811 -0.0170442 0.0468716 0.17 0 pose: 0.0 -3.54169 0.170947 0 -0.00308279 -0.00376253 0.00476232 0.999977 uwb: 0.50213350 838.658 1397.34 +imu_odom_: 1691062944.756764182 0.845153 0.0143652 9.97903 -0.0308927 -0.00106526 0.0234358 0.18 0 pose: 0.39062119 -3.54169 0.170947 0 -0.00344282 -0.00223619 0.00468647 0.999981 uwb: 0.0 838.658 1397.34 +imu_odom_: 1691062944.782714600 0.667982 -0.454898 9.53132 -0.0788296 -0.0170442 0.0511327 0.18 0 pose: 0.0 -3.54169 0.170947 0 -0.00344282 -0.00223619 0.00468647 0.999981 uwb: 0.49814374 838.072 1395.8 +imu_odom_: 1691062944.808663560 0.447716 -0.277727 9.8689 -0.0330232 -0.0127832 0.0426106 0.24 0 pose: 0.50948891 -3.53194 0.168751 0 -0.00257513 -0.00774446 0.00479494 0.999955 uwb: 0.0 838.072 1395.8 +imu_odom_: 1691062944.834659475 0.426168 -0.423774 9.72046 -0.0607201 -0.0319579 0.0468716 0.23 0 pose: 0.59992661 -3.52218 0.166557 0 -0.00376665 -0.0072571 0.00493852 0.999954 uwb: 0.49935699 839.507 1395.25 +imu_odom_: 1691062944.850696424 0.895431 -0.213084 9.93115 -0.0340885 -0.0213053 0.0245011 0.23 0 pose: 0.0 -3.52218 0.166557 0 -0.00376665 -0.0072571 0.00493852 0.999954 uwb: 0.0 839.507 1395.25 +imu_odom_: 1691062944.876615636 0.835576 -0.299275 10.1658 -0.0596548 -0.00319579 0.0490022 0.23 0.02 pose: 0.7127922 -3.52218 0.166557 0 -0.00433055 -0.00689589 0.00497043 0.999954 uwb: 0.0 839.507 1395.25 +imu_odom_: 1691062944.902746877 0.981623 -0.363919 10.0365 -0.0234358 -0.00213053 0.0213053 0.23 0.02 pose: 0.0 -3.52218 0.166557 0 -0.00433055 -0.00689589 0.00497043 0.999954 uwb: 0.50016487 839.481 1394.32 +imu_odom_: 1691062944.926625998 0.596156 -0.124498 10.094 -0.0585895 -0.0351537 0.0468716 0.23 0 pose: 0.42925604 -3.51242 0.164367 0 -0.00512552 -0.00840227 0.00495698 0.999939 uwb: 0.0 839.481 1394.32 +imu_odom_: 1691062944.942737317 0.430956 -0.339977 9.62469 -0.0330232 0.0255663 0.0330232 0.23 0 pose: 0.0 -3.51242 0.164367 0 -0.00512552 -0.00840227 0.00495698 0.999939 uwb: 0.50099023 839.854 1393.41 +imu_odom_: 1691062944.960620409 0.531513 -0.311246 10.1394 -0.0681769 -0.0170442 0.0415453 0.23 0 pose: 0.0 -3.51242 0.164367 0 -0.00512552 -0.00840227 0.00495698 0.999939 uwb: 0.0 839.854 1393.41 +imu_odom_: 1691062944.985602258 0.526724 -0.220267 9.93833 -0.0223706 0.0127832 0.0298274 0.18 0 pose: 0.50978348 -3.50048 0.171934 0 -0.00427908 -0.0126362 0.00480441 0.999899 uwb: 0.49879120 838.847 1391.96 +imu_odom_: 1691062945.9823193 0.407014 -0.0885855 10.1873 -0.0436758 -0.00106526 0.0468716 0.23 -0.02 pose: 0.40990508 -3.49072 0.169741 0 -0.00341399 -0.00993007 0.00482178 0.999933 uwb: 0.0 838.847 1391.96 +imu_odom_: 1691062945.25821936 0.533907 -0.304064 9.54808 -0.0458064 0.0181095 0.0308927 0.23 -0.02 pose: 0.0 -3.49072 0.169741 0 -0.00341399 -0.00993007 0.00482178 0.999933 uwb: 0.0 838.847 1391.96 +imu_odom_: 1691062945.52766880 0.588974 -0.447716 9.8665 -0.0639159 0.0138484 0.052198 0.18 0.02 pose: 0.41920287 -3.48096 0.167547 0 -0.000911928-0.00684368 0.00472983 0.999965 uwb: 0.50047110 839.799 1391.58 +imu_odom_: 1691062945.78754046 0.682347 -0.105345 10.4722 -0.0479369 -0.0458064 0.04048 0.18 0.02 pose: 0.0 -3.48096 0.167547 0 -0.000911928-0.00684368 0.00472983 0.999965 uwb: 0.0 839.799 1391.58 +imu_odom_: 1691062945.103698564 0.744597 -0.263362 9.75637 -0.072438 0.0255663 0.0490022 0.23 0 pose: 0.41186497 -3.48096 0.167547 0 -0.001814 -0.00604551 0.00477988 0.999969 uwb: 0.49929575 839.509 1390.35 +imu_odom_: 1691062945.118599246 0.507571 -0.205901 10.0126 -0.0308927 0.0330232 0.0308927 0.23 0 pose: 0.0 -3.48096 0.167547 0 -0.001814 -0.00604551 0.00477988 0.999969 uwb: 0.0 839.509 1390.35 +imu_odom_: 1691062945.145734929 0.241814 -0.562637 9.84735 -0.0788296 0 0.056459 0.19 0 pose: 0.51865547 -3.46901 0.17511 0 -0.00166196 -0.00920233 0.00493518 0.999944 uwb: 0.50116232 838.204 1388.69 +imu_odom_: 1691062945.171605144 0.505177 -0.181959 9.94791 -0.0447411 0.00639159 0.0255663 0.19 0 pose: 0.0 -3.46901 0.17511 0 -0.00166196 -0.00920233 0.00493518 0.999944 uwb: 0.0 838.204 1388.69 +imu_odom_: 1691062945.197607184 0.794875 -0.222661 9.9503 -0.0660464 -0.0298274 0.0458064 0.22 -0.05 pose: 0.40954927 -3.45926 0.172919 0 -0.00185387 -0.00850107 0.00502253 0.99995 uwb: 0.50018237 838.629 1387.67 +imu_odom_: 1691062945.220600856 0.486023 -0.244209 10.1634 -0.0543285 -0.0415453 0.036219 0.22 -0.05 pose: 0.0 -3.45926 0.172919 0 -0.00185387 -0.00850107 0.00502253 0.99995 uwb: 0.0 838.629 1387.67 +imu_odom_: 1691062945.236657054 0.148441 0.0407014 9.84735 -0.0532632 -0.056459 0.0426106 0.19 0 pose: 0.53051103 -3.4495 0.170729 0 -0.00085678 -0.0069515 0.0050248 0.999963 uwb: 0.49912659 839.265 1387.09 +imu_odom_: 1691062945.262631388 -0.0622492 -0.361524 10.082 -0.0490022 0.0245011 0.0298274 0.19 0 pose: 0.0 -3.4495 0.170729 0 -0.00085678 -0.0069515 0.0050248 0.999963 uwb: 0.0 839.265 1387.09 +imu_odom_: 1691062945.287663692 0.198719 -0.486023 9.67257 -0.0479369 -0.0181095 0.0330232 0.2 -0.02 pose: 0.47945773 -3.43974 0.16854 0 -0.000726402-0.0067301 0.00505331 0.999964 uwb: 0.50009488 837.241 1385.33 +imu_odom_: 1691062945.303658644 0.648829 -0.0550666 10.3334 -0.0383495 -0.0330232 0.0372843 0.2 -0.02 pose: 0.0 -3.43974 0.16854 0 -0.000726402-0.0067301 0.00505331 0.999964 uwb: 0.0 837.241 1385.33 +imu_odom_: 1691062945.331669860 0.663194 -0.270545 10.1897 -0.052198 0.0298274 0.0223706 0.18 0.02 pose: 0.76048568 -3.42365 0.170359 0 -0.0011168 -0.00306872 0.00484601 0.999983 uwb: 0.49930159 838.813 1385.35 +imu_odom_: 1691062945.356735412 0.706289 -0.174777 9.65342 -0.072438 0.00532632 0.0511327 0.19 0 pose: 0.8020370 -3.41804 0.173915 0 -0.00123283 -0.00372383 0.00477638 0.999981 uwb: 0.0 838.813 1385.35 +imu_odom_: 1691062945.383729937 0.299275 -0.294487 10.1466 -0.0330232 -0.00319579 0.02024 0.23 -0.02 pose: 0.45056398 -3.41111 0.172356 0 -0.000908092-0.00760651 0.00473815 0.999959 uwb: 0.50131688 838.496 1384.22 +imu_odom_: 1691062945.408606501 0.648829 -0.323217 10.0293 -0.0841559 -0.0170442 0.0585895 0.18 0.02 pose: 0.0 -3.41111 0.172356 0 -0.000908092-0.00760651 0.00473815 0.999959 uwb: 0.0 838.496 1384.22 +imu_odom_: 1691062945.435587026 0.778116 -0.464475 9.84496 -0.0383495 -0.0607201 0.02024 0.18 0.02 pose: 0.34949857 -3.40828 0.171719 0 -0.00174591 -0.00571377 0.00456285 0.999972 uwb: 0.49985864 841.214 1384.31 +imu_odom_: 1691062945.451663056 0.0909797 -0.203507 9.87129 -0.052198 0.0234358 0.0468716 0.19 0 pose: 0.0 -3.40828 0.171719 0 -0.00174591 -0.00571377 0.00456285 0.999972 uwb: 0.0 841.214 1384.31 +imu_odom_: 1691062945.478666039 0.325611 -0.407014 9.94312 -0.0276969 -0.0287621 0.0298274 0.19 0 pose: 0.51934960 -3.39852 0.16952 0 -0.00414418 -0.00924098 0.00450522 0.999939 uwb: 0.0 841.214 1384.31 +imu_odom_: 1691062945.505118678 0.672771 -0.181959 9.95509 -0.0532632 -0.0266316 0.052198 0.19 0.02 pose: 0.35045810 -3.39166 0.167973 0 -0.0047713 -0.00622813 0.00442838 0.999959 uwb: 0.49886120 841.157 1383.5 +imu_odom_: 1691062945.531769056 0.545878 -0.177171 10.2376 -0.0372843 -0.0170442 0.0479369 0.19 0.02 pose: 0.0 -3.39166 0.167973 0 -0.0047713 -0.00622813 0.00442838 0.999959 uwb: 0.50048277 840.09 1382.29 +imu_odom_: 1691062945.557589107 0.608127 -0.244209 10.0197 -0.0330232 -0.0383495 0.0426106 0.19 0 pose: 0.7944250 -3.38877 0.167321 0 -0.00424158 -0.00691636 0.00447285 0.999957 uwb: 0.0 840.09 1382.29 +imu_odom_: 1691062945.574642747 0.423774 -0.129287 10.1849 -0.0351537 0.00319579 0.056459 0.19 0 pose: 0.0 -3.38877 0.167321 0 -0.00424158 -0.00691636 0.00447285 0.999957 uwb: 0.0 840.09 1382.29 +imu_odom_: 1691062945.600640413 0.502782 -0.150835 10.2017 -0.0649811 0.015979 0.0436758 0.23 0.02 pose: 0.53014355 -3.37682 0.174879 0 -0.000481009-0.00875414 0.00468625 0.999951 uwb: 0.49930742 841.769 1382.02 +imu_odom_: 1691062945.626604539 0.950498 -0.253785 10.1251 -0.0756338 -0.00426106 0.0649811 0.23 0 pose: 0.61015769 -3.36706 0.172685 0 0.00138524 -0.00679678 0.00489742 0.999964 uwb: 0.0 841.769 1382.02 +imu_odom_: 1691062945.652592580 1.00317 -0.124498 10.1035 -0.0500674 0.0276969 0.0319579 0.23 0 pose: 0.0 -3.36706 0.172685 0 0.00138524 -0.00679678 0.00489742 0.999964 uwb: 0.50275472 841.427 1380.96 +imu_odom_: 1691062945.669603056 0.0023942 -0.316035 9.57681 -0.0862864 0.0351537 0.0553937 0.21 0 pose: 0.7020011 -3.36706 0.172685 0 0.00120527 -0.00749101 0.00498776 0.999959 uwb: 0.0 841.427 1380.96 +imu_odom_: 1691062945.694701857 0.395043 -0.268151 9.93115 -0.0692422 -0.0149137 0.04048 0.21 0 pose: 0.0 -3.36706 0.172685 0 0.00120527 -0.00749101 0.00498776 0.999959 uwb: 0.49863079 840.425 1379.63 +imu_odom_: 1691062945.721699298 0.462081 -0.332794 9.92157 -0.0703074 -0.02024 0.056459 0.21 0.02 pose: 0.52001164 -3.3573 0.170494 0 0.00102183 -0.0106701 0.00518618 0.999929 uwb: 0.0 840.425 1379.63 +imu_odom_: 1691062945.747772501 0.414197 -0.244209 10.2496 -0.0372843 -0.00426106 0.0298274 0.21 0.02 pose: 0.0 -3.3573 0.170494 0 0.00102183 -0.0106701 0.00518618 0.999929 uwb: 0.49931909 839.44 1378.26 +imu_odom_: 1691062945.764570364 0.213084 -0.462081 9.66779 -0.0596548 0.00532632 0.0415453 0.23 -0.02 pose: 0.43109928 -3.34754 0.168309 0 -0.00103225 -0.00684359 0.00535277 0.999962 uwb: 0.0 839.44 1378.26 +imu_odom_: 1691062945.790663691 0.459687 -0.179565 9.83538 -0.036219 -0.0394148 0.04048 0.23 -0.02 pose: 0.0 -3.34754 0.168309 0 -0.00103225 -0.00684359 0.00535277 0.999962 uwb: 0.50060234 841.009 1378.24 +imu_odom_: 1691062945.817681256 0.531513 -0.3304 10.3286 -0.0553937 -0.0276969 0.0458064 0.18 0 pose: 0.51883629 -3.33779 0.166128 0 -0.00232635 -0.00276341 0.00540976 0.999979 uwb: 0.0 841.009 1378.24 +imu_odom_: 1691062945.842593984 0.814029 0.0502782 10.2328 -0.0458064 -0.0468716 0.0458064 0.18 0.02 pose: 0.63026111 -3.32584 0.173705 0 -0.00246698 -0.00466174 0.00552053 0.999971 uwb: 0.49982656 840.705 1377.12 +imu_odom_: 1691062945.869573051 0.54109 0.117316 10.1323 -0.0553937 -0.00852212 0.0426106 0.18 0.02 pose: 0.0 -3.32584 0.173705 0 -0.00246698 -0.00466174 0.00552053 0.999971 uwb: 0.0 840.705 1377.12 +imu_odom_: 1691062945.885853236 0.19393 -0.399832 9.97664 -0.0426106 -0.00852212 0.04048 0.18 0.02 pose: 0.7948333 -3.32584 0.173705 0 -0.00186362 -0.00539188 0.00554184 0.999968 uwb: 0.50147438 841.756 1376.46 +imu_odom_: 1691062945.912692312 0.45011 -0.155623 9.95748 -0.0458064 0.00319579 0.0383495 0.18 0.02 pose: 0.0 -3.32584 0.173705 0 -0.00186362 -0.00539188 0.00554184 0.999968 uwb: 0.0 841.756 1376.46 +imu_odom_: 1691062945.937592499 0.454898 -0.11971 10.0389 -0.0617853 0.00319579 0.0681769 0.18 0.02 pose: 0.52086617 -3.31608 0.171526 0 0.00172963 -0.0063208 0.00561514 0.999963 uwb: 0.49904785 842.111 1375.62 +imu_odom_: 1691062945.964828218 0.42138 -0.287304 9.95748 -0.0458064 0.0553937 0.0234358 0.18 0.02 pose: 0.0 -3.31608 0.171526 0 0.00172963 -0.0063208 0.00561514 0.999963 uwb: 0.0 842.111 1375.62 +imu_odom_: 1691062945.980686386 0.371101 -0.143652 9.9096 -0.0330232 0.00319579 0.0298274 0.18 0 pose: 0.42930271 -3.30635 0.169258 0 0.00342443 -0.00292329 0.00570584 0.999974 uwb: 0.0 842.111 1375.62 +imu_odom_: 1691062946.6615805 0.588974 -0.28491 9.91439 -0.0330232 -0.0298274 0.0319579 0.18 0 pose: 0.0 -3.30635 0.169258 0 0.00342443 -0.00292329 0.00570584 0.999974 uwb: 0.49954365 842.221 1374.44 +imu_odom_: 1691062946.29704847 0.651223 -0.301669 10.2615 -0.056459 -0.0191748 0.0511327 0.25 0 pose: 0.51991540 -3.29661 0.166987 0 0.00283042 -0.0003945610.0056905 0.99998 uwb: 0.0 842.221 1374.44 +imu_odom_: 1691062946.55700180 0.59855 -0.356736 9.92875 -0.0458064 -0.00106526 0.0319579 0.25 0 pose: 0.0 -3.29661 0.166987 0 0.00283042 -0.0003945610.0056905 0.99998 uwb: 0.50073651 841.292 1373 +imu_odom_: 1691062946.81682972 0.514753 -0.368707 9.94791 -0.0372843 -0.0213053 0.0468716 0.18 -0.02 pose: 0.63968140 -3.28459 0.17445 0 0.000304256 -0.00462078 0.00567169 0.999973 uwb: 0.49939784 841.715 1372 +imu_odom_: 1691062946.98549956 0.701501 -0.141258 9.61033 -0.0383495 0.00852212 0.0298274 0.18 -0.02 pose: 0.0 -3.28459 0.17445 0 0.000304256 -0.00462078 0.00567169 0.999973 uwb: 0.0 841.715 1372 +imu_odom_: 1691062946.123651090 0.469264 -0.627281 9.40921 -0.0830906 0.0298274 0.0639159 0.21 0 pose: 0.51991540 -3.27486 0.172175 0 -0.0030382 -0.00643629 0.00567992 0.999959 uwb: 0.0 841.715 1372 +imu_odom_: 1691062946.150693738 0.591368 0.0454898 10.2615 -0.0308927 -0.0319579 0.0394148 0.23 -0.02 pose: 0.35053393 -3.26797 0.170568 0 -0.00517328 -0.00630235 0.00594588 0.999949 uwb: 0.0 841.715 1372 +imu_odom_: 1691062946.176554620 0.548272 -0.416591 9.96227 -0.072438 -0.0117179 0.0575243 0.23 -0.02 pose: 0.0 -3.26797 0.170568 0 -0.00517328 -0.00630235 0.00594588 0.999949 uwb: 0.0 841.715 1372 +imu_odom_: 1691062946.193750877 0.203507 -0.191536 9.83299 -0.0298274 0.0319579 0.0287621 0.26 0.02 pose: 0.7025845 -3.26511 0.169932 0 -0.0043923 -0.00651078 0.0059414 0.999952 uwb: 0.99845736 842.705 1371.48 +imu_odom_: 1691062946.218676146 0.656011 -0.318429 9.97664 -0.0884169 0.00639159 0.0671117 0.26 0.02 pose: 0.0 -3.26511 0.169932 0 -0.0043923 -0.00651078 0.0059414 0.999952 uwb: 0.0 842.705 1371.48 +imu_odom_: 1691062946.245690795 0.445322 -0.0909797 10.0197 -0.0479369 0.00319579 0.0276969 0.21 -0.02 pose: 0.52899738 -3.25535 0.167762 0 -0.00465551 -0.00651562 0.00614106 0.999949 uwb: 0.50130522 843.601 1371.17 +imu_odom_: 1691062946.270562984 0.265756 -0.268151 10.5058 -0.056459 -0.0330232 0.0426106 0.21 -0.02 pose: 0.0 -3.25535 0.167762 0 -0.00465551 -0.00651562 0.00614106 0.999949 uwb: 0.0 843.601 1371.17 +imu_odom_: 1691062946.287674955 0.529119 -0.299275 9.71806 -0.0639159 -0.00426106 0.0468716 0.21 -0.02 pose: 0.41986492 -3.24342 0.175359 0 -0.00429388 -0.0073745 0.00637602 0.999943 uwb: 0.50173687 843.117 1370.5 +imu_odom_: 1691062946.312576892 0.112527 -0.0383072 9.80186 -0.0681769 -0.0490022 0.052198 0.21 -0.02 pose: 0.0 -3.24342 0.175359 0 -0.00429388 -0.0073745 0.00637602 0.999943 uwb: 0.0 843.117 1370.5 +imu_odom_: 1691062946.339548668 0.392649 -0.31364 10.1251 -0.056459 -0.0340885 0.04048 0.23 0 pose: 0.52011081 -3.24342 0.175359 0 -0.00294351 -0.00481067 0.00631808 0.999964 uwb: 0.49806791 846.287 1371.09 +imu_odom_: 1691062946.365544584 1.05584 -0.258574 9.95509 -0.0340885 0.00532632 0.0234358 0.19 0 pose: 0.61974422 -3.22671 0.171658 0 -0.00378886 -0.00206109 0.00653841 0.999969 uwb: 0.0 846.287 1371.09 +imu_odom_: 1691062946.392534151 0.737414 -0.225055 9.81623 -0.0692422 0.0319579 0.0511327 0.25 0 pose: 0.8089492 -3.22389 0.171035 0 -0.00365687 -0.00282968 0.00646997 0.999968 uwb: 0.0 846.287 1371.09 +imu_odom_: 1691062946.417579872 0.852336 -0.304064 9.63906 -0.0511327 -0.0276969 0.0436758 0.21 0 pose: 0.25098217 -3.22389 0.171035 0 -0.00325363 -0.00510174 0.00635624 0.999961 uwb: 0.0 846.287 1371.09 +imu_odom_: 1691062946.434512769 0.265756 -0.356736 9.55765 -0.0468716 0.00639159 0.0553937 0.21 0 pose: 0.0 -3.22389 0.171035 0 -0.00325363 -0.00510174 0.00635624 0.999961 uwb: 0.99943147 846.074 1369.78 +imu_odom_: 1691062946.459589697 0.383072 -0.155623 10.0054 -0.0351537 -0.0287621 0.0298274 0.2 0 pose: 0.27810853 -3.21413 0.168872 0 -0.00300558 -0.00756566 0.0064751 0.999946 uwb: 0.0 846.074 1369.78 +imu_odom_: 1691062946.486567014 0.821211 -0.387861 9.83059 -0.0820254 -0.00426106 0.0596548 0.2 0 pose: 0.0 -3.21413 0.168872 0 -0.00300558 -0.00756566 0.0064751 0.999946 uwb: 0.49991697 846.544 1368.65 +imu_odom_: 1691062946.512556514 0.636858 -0.232238 9.69173 -0.0500674 0.0330232 0.0266316 0.19 0 pose: 0.41981826 -3.20221 0.176477 0 -0.00293616 -0.00718596 0.00661087 0.999948 uwb: 0.0 846.544 1368.65 +imu_odom_: 1691062946.539540248 0.545878 -0.428562 9.81144 -0.0319579 -0.04048 0.0351537 0.19 0 pose: 0.52224569 -3.19244 0.17432 0 -0.00275803 -0.00902238 0.00673831 0.999933 uwb: 0.49870080 847.198 1367.98 +imu_odom_: 1691062946.556513976 0.543484 -0.0861913 9.62948 -0.0415453 0.00213053 0.0511327 0.19 0.02 pose: 0.0 -3.19244 0.17432 0 -0.00275803 -0.00902238 0.00673831 0.999933 uwb: 0.0 847.198 1367.98 +imu_odom_: 1691062946.581584779 0.323217 -0.100556 9.91678 -0.0500674 0.0319579 0.0394148 0.19 0.02 pose: 0.0 -3.19244 0.17432 0 -0.00275803 -0.00902238 0.00673831 0.999933 uwb: 0.49988781 846.552 1366.82 +imu_odom_: 1691062946.606530755 0.150835 -0.186748 9.87848 -0.056459 0.0298274 0.0553937 0.18 0.02 pose: 0.52871448 -3.18268 0.172161 0 -0.00317439 -0.00969267 0.00662152 0.999926 uwb: 0.0 846.552 1366.82 +imu_odom_: 1691062946.633566694 0.42138 -0.325611 9.53132 -0.04048 0.0127832 0.0234358 0.25 0 pose: 0.58905682 -3.17594 0.170673 0 -0.000642377-0.00394251 0.00685321 0.999969 uwb: 0.50015612 846.249 1365.75 +imu_odom_: 1691062946.649656141 0.332794 0.0143652 10.4914 -0.0479369 -0.02024 0.0639159 0.19 0.02 pose: 0.8074326 -3.17291 0.170006 0 -0.00128737 -0.00347925 0.00679127 0.99997 uwb: 0.0 846.249 1365.75 +imu_odom_: 1691062946.676674581 0.600945 -0.102951 10.331 -0.0543285 0.0181095 0.0383495 0.19 0.02 pose: 0.27092811 -3.17291 0.170006 0 -0.00202232 -0.00213839 0.00674408 0.999973 uwb: 0.0 846.249 1365.75 +imu_odom_: 1691062946.701725551 0.260968 -0.373495 9.49301 -0.0798948 0.0394148 0.0703074 0.25 0 pose: 0.0 -3.17291 0.170006 0 -0.00202232 -0.00213839 0.00674408 0.999973 uwb: 0.49987614 845.732 1364.3 +imu_odom_: 1691062946.728665246 0.198719 -0.28491 9.73722 -0.0500674 0.02024 0.0351537 0.21 0.02 pose: 0.60027659 -3.161 0.177615 0 -0.00136141 -0.00113005 0.0072061 0.999972 uwb: 0.0 845.732 1364.3 +imu_odom_: 1691062946.753650887 0.373495 -0.385466 10.1418 -0.0937433 0.0213053 0.0628506 0.21 0.02 pose: 0.0 -3.161 0.177615 0 -0.00136141 -0.00113005 0.0072061 0.999972 uwb: 0.49916744 846.679 1363.84 +imu_odom_: 1691062946.770534787 0.253785 -0.373495 9.63906 -0.0660464 0.015979 0.036219 0.23 0.02 pose: 0.6820232 -3.161 0.177615 0 -0.00147896 -0.0003776890.00719198 0.999973 uwb: 0.0 846.679 1363.84 +imu_odom_: 1691062946.796530995 0.232238 -0.129287 9.99579 -0.0692422 0.0149137 0.0596548 0.23 0.02 pose: 0.0 -3.161 0.177615 0 -0.00147896 -0.0003776890.00719198 0.999973 uwb: 0.49993155 847.044 1362.97 +imu_odom_: 1691062946.823903498 0.0909797 -0.0909797 10.1323 -0.0436758 -0.00532632 0.036219 0.25 0 pose: 0.52110824 -3.15123 0.175468 0 -0.00521005 0.00266568 0.00742639 0.999955 uwb: 0.0 847.044 1362.97 +imu_odom_: 1691062946.848645903 0.0790087 -0.158017 9.53611 -0.0436758 0.00319579 0.0511327 0.25 0 pose: 0.0 -3.15123 0.175468 0 -0.00521005 0.00266568 0.00742639 0.999955 uwb: 0.50016196 847.951 1362.58 +imu_odom_: 1691062946.875733756 0.19393 -0.292093 10.0892 -0.0575243 -0.0234358 0.0447411 0.21 -0.02 pose: 0.43143176 -3.14146 0.173325 0 -0.00311039 0.00556168 0.00767969 0.99995 uwb: 0.0 847.951 1362.58 +imu_odom_: 1691062946.891571216 0.610521 -0.0694318 10.2424 -0.052198 0.00213053 0.0479369 0.21 -0.02 pose: 0.0 -3.14146 0.173325 0 -0.00311039 0.00556168 0.00767969 0.99995 uwb: 0.49994906 847.099 1361.08 +imu_odom_: 1691062946.918708358 0.636858 -0.368707 9.51935 -0.0585895 -0.0138484 0.0543285 0.23 0 pose: 0.52873490 -3.13169 0.171187 0 -0.00126337 0.00955399 0.00782359 0.999923 uwb: 0.0 847.099 1361.08 +imu_odom_: 1691062946.944538034 0.253785 -0.509965 10.2256 -0.0426106 0.0351537 0.036219 0.19 0 pose: 0.41861666 -3.11979 0.178821 0 -0.00255038 0.00786312 0.0079732 0.999934 uwb: 0.50207226 846.458 1359.96 +imu_odom_: 1691062946.971719506 0.622492 -0.418985 9.8282 -0.0607201 -0.00852212 0.0543285 0.25 -0.02 pose: 0.0 -3.11979 0.178821 0 -0.00255038 0.00786312 0.0079732 0.999934 uwb: 0.0 846.458 1359.96 +imu_odom_: 1691062946.987703958 0.0263362 -0.416591 9.75158 -0.0447411 0.0255663 0.0383495 0.25 -0.02 pose: 0.53145891 -3.11002 0.176689 0 -0.00572224 0.00594506 0.00810128 0.999933 uwb: 0.49885245 845.841 1358.8 +imu_odom_: 1691062947.14483537 0.289698 -0.493206 9.33978 -0.076699 0.00745685 0.0628506 0.19 0 pose: 0.0 -3.11002 0.176689 0 -0.00572224 0.00594506 0.00810128 0.999933 uwb: 0.0 845.841 1358.8 +imu_odom_: 1691062947.39510009 -0.217872 -0.40462 9.64145 -0.0266316 0.0287621 0.0287621 0.19 0 pose: 0.62802707 -3.10023 0.174544 0 -0.00961556 0.00599046 0.00852885 0.999899 uwb: 0.50029904 846.534 1358.05 +imu_odom_: 1691062947.66638402 0.263362 -0.0263362 9.93115 -0.0447411 -0.0372843 0.0490022 0.19 0 pose: 0.0 -3.10023 0.174544 0 -0.00961556 0.00599046 0.00852885 0.999899 uwb: 0.0 846.534 1358.05 +imu_odom_: 1691062947.92510659 0.222661 0.0311246 10.2951 -0.0468716 -0.0117179 0.0458064 0.18 0.02 pose: 0.8005788 -3.10025 0.174559 0 -0.00952092 0.00692359 0.00849113 0.999895 uwb: 0.50060235 846.784 1357.47 +imu_odom_: 1691062947.109627879 0.337582 -0.397437 9.78031 -0.0575243 -0.015979 0.0532632 0.18 0.02 pose: 0.0 -3.10025 0.174559 0 -0.00952092 0.00692359 0.00849113 0.999895 uwb: 0.0 846.784 1357.47 +imu_odom_: 1691062947.135515885 0.679953 -0.0933739 10.1658 -0.0479369 -0.0383495 0.04048 0.18 -0.02 pose: 0.52173822 -3.0905 0.172339 0 -0.00563078 0.00822043 0.00859531 0.999913 uwb: 0.49999864 847.466 1356.73 +imu_odom_: 1691062947.162765020 0.641646 -0.383072 9.76355 -0.0426106 -0.00532632 0.04048 0.18 -0.02 pose: 0.0 -3.0905 0.172339 0 -0.00563078 0.00822043 0.00859531 0.999913 uwb: 0.0 847.466 1356.73 +imu_odom_: 1691062947.187600170 0.198719 -0.0622492 10.4267 -0.0468716 0.0351537 0.0660464 0.18 0.02 pose: 0.43031766 -3.07853 0.179871 0 -0.00466805 0.00616399 0.00877189 0.999932 uwb: 0.49990240 848.559 1355.9 +imu_odom_: 1691062947.214747520 0.442927 -0.0430956 10.149 -0.056459 0.0149137 0.0340885 0.21 -0.02 pose: 0.53085519 -3.06878 0.177657 0 -0.00365236 0.00228529 0.00888601 0.999951 uwb: 0.0 848.559 1355.9 +imu_odom_: 1691062947.230647394 0.407014 -0.260968 9.72525 -0.0511327 -0.0138484 0.0553937 0.21 -0.02 pose: 0.0 -3.06878 0.177657 0 -0.00365236 0.00228529 0.00888601 0.999951 uwb: 0.0 848.559 1355.9 +imu_odom_: 1691062947.257672250 0.732626 -0.263362 10.1251 -0.0394148 -0.052198 0.0351537 0.25 0 pose: 0.24054112 -3.06878 0.177657 0 -0.00157279 0.003338 0.00909516 0.999952 uwb: 0.50065485 848.298 1354.79 +imu_odom_: 1691062947.282479693 0.35913 -0.25618 9.54329 -0.0788296 -0.00426106 0.0628506 0.25 0 pose: 0.43676896 -3.059 0.175547 0 -0.0008474150.000399698 0.00914946 0.999958 uwb: 0.49868330 847.162 1353.17 +imu_odom_: 1691062947.309533423 0.19393 -0.136469 9.87129 -0.052198 -0.00319579 0.0372843 0.23 0 pose: 0.43968253 -3.04923 0.173438 0 -0.00189809 0.000390498 0.00939693 0.999954 uwb: 0.0 847.162 1353.17 +imu_odom_: 1691062947.334591977 0.371101 -0.0335188 10.0006 -0.0798948 -0.00426106 0.0532632 0.23 0 pose: 0.0 -3.04923 0.173438 0 -0.00189809 0.000390498 0.00939693 0.999954 uwb: 0.50107191 847.518 1351.51 +imu_odom_: 1691062947.351477336 0.567426 -0.366313 9.7444 -0.0490022 0.0330232 0.0319579 0.21 -0.02 pose: 0.52112284 -3.03802 0.178004 0 0.00165129 0.00249094 0.00954982 0.99995 uwb: 0.0 847.518 1351.51 +imu_odom_: 1691062947.367597405 0.577003 -0.0814029 10.0772 -0.0585895 -0.0245011 0.052198 0.21 -0.02 pose: 0.0 -3.03802 0.178004 0 0.00165129 0.00249094 0.00954982 0.99995 uwb: 0.0 847.518 1351.51 +imu_odom_: 1691062947.384477223 0.0837971 -0.21069 9.73243 -0.0617853 -0.0181095 0.0511327 0.21 -0.02 pose: 0.0 -3.03802 0.178004 0 0.00165129 0.00249094 0.00954982 0.99995 uwb: 0.49880871 847.474 1350.77 +imu_odom_: 1691062947.410501429 0.237026 -0.402226 9.56005 -0.0500674 0.0234358 0.0319579 0.25 0 pose: 0.39904405 -3.02756 0.179006 0 0.00133814 0.000615741 0.00962782 0.999953 uwb: 0.0 847.474 1350.77 +imu_odom_: 1691062947.437470872 0.651223 -0.191536 10.5321 -0.0223706 -0.056459 0.0276969 0.25 0 pose: 0.36005047 -3.02054 0.177498 0 -0.0009062290.00330122 0.00957997 0.999948 uwb: 0.49981781 846.886 1349.61 +imu_odom_: 1691062947.463471163 1.88184 -0.21069 9.11951 -0.0820254 0.0458064 0.0415453 0.25 0 pose: 0.7057926 -3.01778 0.176906 0 -0.00069027 0.00241909 0.00953753 0.999951 uwb: 0.0 846.886 1349.61 +imu_odom_: 1691062947.490523435 0.423774 -0.280122 8.84657 -0.052198 -0.072438 0.0372843 0.23 -0.02 pose: 0.45911808 -3.01103 0.175454 0 -0.000399487-0.00202223 0.00944297 0.999953 uwb: 0.50064611 846.227 1348.63 +imu_odom_: 1691062947.515591321 0.993594 -0.392649 9.98622 -0.0798948 -0.0490022 0.0490022 0.23 -0.02 pose: 0.0 -3.01103 0.175454 0 -0.000399487-0.00202223 0.00944297 0.999953 uwb: 0.0 846.227 1348.63 +imu_odom_: 1691062947.542516725 0.562637 -0.244209 9.64863 -0.0575243 -0.00639159 0.0479369 0.21 0 pose: 0.52120158 -3.00106 0.173309 0 -0.00379351 -0.00533116 0.0095307 0.999933 uwb: 0.50073943 842.99 1346.13 +imu_odom_: 1691062947.568531890 0.445322 -0.225055 10.1778 -0.0713727 -0.0436758 0.0500674 0.2 0 pose: 0.0 -3.00106 0.173309 0 -0.00379351 -0.00533116 0.0095307 0.999933 uwb: 0.0 842.99 1346.13 +imu_odom_: 1691062947.595580663 0.948104 -0.124498 10.2735 -0.0798948 -0.0287621 0.0511327 0.2 0 pose: 0.34968523 -2.99823 0.172702 0 -0.00201435 -0.00689316 0.00966821 0.999927 uwb: 0.49806208 841.137 1343.83 +imu_odom_: 1691062947.611455163 0.232238 -0.502782 9.64624 -0.0458064 0.0223706 0.0415453 0.18 0 pose: 0.24996433 -2.99613 0.182479 0 -0.00150227 -0.00629289 0.00979998 0.999931 uwb: 0.0 841.137 1343.83 +imu_odom_: 1691062947.638496644 0.371101 -0.21069 9.91439 -0.0596548 -0.0479369 0.0607201 0.18 0 pose: 0.0 -2.99613 0.182479 0 -0.00150227 -0.00629289 0.00979998 0.999931 uwb: 0.49996364 841.232 1342.84 +imu_odom_: 1691062947.654449598 0.639252 -0.294487 9.95748 -0.0500674 -0.0181095 0.0553937 0.17 0 pose: 0.27929554 -2.98635 0.180383 0 -0.00163711 -0.00774242 0.00992122 0.999919 uwb: 0.0 841.232 1342.84 +imu_odom_: 1691062947.681606280 0.275333 -0.155623 9.90481 -0.0532632 0.0127832 0.0543285 0.17 0 pose: 0.0 -2.98635 0.180383 0 -0.00163711 -0.00774242 0.00992122 0.999919 uwb: 0.50008030 840.742 1341.55 +imu_odom_: 1691062947.706473512 0.488417 -0.265756 10.082 -0.0308927 -0.0276969 0.0436758 0.2 0.02 pose: 0.42964395 -2.97658 0.178291 0 -0.00170726 -0.00579571 0.010285 0.999929 uwb: 0.0 840.742 1341.55 +imu_odom_: 1691062947.733464537 0.409408 -0.373495 9.72046 -0.0820254 0.00958738 0.0692422 0.2 0.02 pose: 0.0 -2.97658 0.178291 0 -0.00170726 -0.00579571 0.010285 0.999929 uwb: 0.49994323 839.071 1339.69 +imu_odom_: 1691062947.758507342 0.0215478 -0.107739 9.87848 -0.0468716 -0.0255663 0.0490022 0.18 0 pose: 0.43062973 -2.9668 0.176206 0 -0.00163489 -0.00415249 0.0105667 0.999934 uwb: 0.0 839.071 1339.69 +imu_odom_: 1691062947.785603944 0.751779 -0.186748 10.1442 -0.092678 -0.0458064 0.0596548 0.23 0.02 pose: 0.52028580 -2.95701 0.17413 0 -0.00508429 -0.0022761 0.0110629 0.999923 uwb: 0.49927826 838.883 1338.56 +imu_odom_: 1691062947.801595979 0.790087 -0.0670376 9.75877 -0.0468716 0.04048 0.0298274 0.23 0.02 pose: 0.0 -2.95701 0.17413 0 -0.00508429 -0.0022761 0.0110629 0.999923 uwb: 0.0 838.883 1338.56 +imu_odom_: 1691062947.819476156 -0.0550666 -0.220267 9.71088 -0.0820254 0.02024 0.056459 0.23 0.02 pose: 0.0 -2.95701 0.17413 0 -0.00508429 -0.0022761 0.0110629 0.999923 uwb: 0.0 838.883 1338.56 +imu_odom_: 1691062947.844605872 0.474052 -0.258574 10.1466 -0.0692422 0.00639159 0.0447411 0.18 0 pose: 0.77934377 -2.94516 0.181845 0 -0.0029548 -0.00297486 0.011478 0.999925 uwb: 0.50066069 839.327 1337.63 +imu_odom_: 1691062947.871631604 0.548272 -0.23942 9.85214 -0.0681769 -0.0117179 0.056459 0.25 0 pose: 0.7142504 -2.94516 0.181845 0 -0.00242747 -0.00335853 0.0114932 0.999925 uwb: 0.0 839.327 1337.63 +imu_odom_: 1691062947.896583705 0.586579 -0.3304 10.3573 -0.0490022 0.0298274 0.0298274 0.2 0 pose: 0.0 -2.94516 0.181845 0 -0.00242747 -0.00335853 0.0114932 0.999925 uwb: 0.49937451 839.093 1336.6 +imu_odom_: 1691062947.923604770 0.342371 -0.54109 9.59835 -0.0596548 0.02024 0.0500674 0.23 0 pose: 0.52868823 -2.93538 0.179783 0 -0.00204151 -0.00731782 0.0117224 0.999902 uwb: 0.0 839.093 1336.6 +imu_odom_: 1691062947.949576188 0.225055 -0.189142 9.81862 -0.0479369 0.00106526 0.0500674 0.23 0 pose: 0.0 -2.93538 0.179783 0 -0.00204151 -0.00731782 0.0117224 0.999902 uwb: 0.50086484 839.863 1335.75 +imu_odom_: 1691062947.976578004 0.45011 -0.555455 9.93115 -0.0490022 -0.00745685 0.0415453 0.23 0 pose: 0.70088705 -2.92561 0.177626 0 -0.00455003 -0.00330167 0.0119553 0.999913 uwb: 0.0 839.863 1335.75 +imu_odom_: 1691062948.1623142 0.433351 -0.225055 10.3908 -0.0511327 -0.00852212 0.0575243 0.23 0 pose: 0.7007179 -2.92561 0.177626 0 -0.00522714 -0.00327425 0.0119648 0.999909 uwb: 0.49948825 839.744 1334.49 +imu_odom_: 1691062948.18450171 0.483629 -0.0143652 10.0389 -0.0490022 -0.0191748 0.0532632 0.21 0.02 pose: 0.0 -2.92561 0.177626 0 -0.00522714 -0.00327425 0.0119648 0.999909 uwb: 0.0 839.744 1334.49 +imu_odom_: 1691062948.43502600 0.347159 -0.378284 9.49301 -0.0617853 0.02024 0.0500674 0.21 0.02 pose: 0.45039775 -2.91432 0.182417 0 -0.00467856 -0.00262155 0.0122139 0.999911 uwb: 0.49942701 840.623 1334.15 +imu_odom_: 1691062948.70488376 0.526724 -0.502782 9.69891 -0.0319579 -0.0319579 0.0319579 0.18 0 pose: 0.24849733 -2.90393 0.183096 0 -0.00354288 -0.00223077 0.0123697 0.999915 uwb: 0.0 840.623 1334.15 +imu_odom_: 1691062948.95596219 0.706289 -0.459687 9.4547 -0.0671117 -0.0319579 0.0660464 0.2 0 pose: 0.0 -2.90393 0.183096 0 -0.00354288 -0.00223077 0.0123697 0.999915 uwb: 0.50134315 841.339 1333.4 +imu_odom_: 1691062948.122524540 0.466869 -0.292093 9.87129 0.0266316 -0.0458064 0.0127832 0.2 0 pose: 0.52029163 -2.89416 0.180952 0 -0.00720085 -0.00337968 0.0124621 0.999891 uwb: 0.0 841.339 1333.4 +imu_odom_: 1691062948.138441621 0.129287 -0.186748 9.79468 0.00106526 -0.00852212 0.0298274 0.2 -0.02 pose: 0.0 -2.89416 0.180952 0 -0.00720085 -0.00337968 0.0124621 0.999891 uwb: 0.50062277 840.852 1332.18 +imu_odom_: 1691062948.155486221 0.488417 0.191536 10.3693 -0.052198 -0.0649811 0.0735032 0.2 -0.02 pose: 0.52121034 -2.8844 0.17881 0 -0.00395944 -0.00384354 0.0122906 0.999909 uwb: 0.0 840.852 1332.18 +imu_odom_: 1691062948.181478637 0.584185 -0.246603 9.91199 -0.105461 -0.0319579 0.0628506 0.18 0 pose: 0.0 -2.8844 0.17881 0 -0.00395944 -0.00384354 0.0122906 0.999909 uwb: 0.0 840.852 1332.18 +imu_odom_: 1691062948.198601107 0.325611 -0.215478 9.96706 -0.0649811 -0.02024 0.0117179 0.18 0 pose: 0.32886144 -2.8844 0.17881 0 -0.00193724 -0.00460055 0.0126325 0.999908 uwb: 0.49974200 838.94 1330.23 +imu_odom_: 1691062948.224522361 0.299275 -0.258574 9.74679 -0.0596548 0.056459 0.0415453 0.18 0 pose: 0.0 -2.8844 0.17881 0 -0.00193724 -0.00460055 0.0126325 0.999908 uwb: 0.0 838.94 1330.23 +imu_odom_: 1691062948.251409560 0.596156 -0.169988 9.59117 -0.0298274 -0.00213053 0.0340885 0.18 0 pose: 0.42984228 -2.87463 0.176671 0 -0.00207497 -0.00408459 0.0126086 0.99991 uwb: 0.49970407 838.255 1328.72 +imu_odom_: 1691062948.276423783 0.445322 -0.514753 9.54089 -0.0756338 -0.00745685 0.0703074 0.18 0 pose: 0.0 -2.87463 0.176671 0 -0.00207497 -0.00408459 0.0126086 0.99991 uwb: 0.0 838.255 1328.72 +imu_odom_: 1691062948.293416760 0.428562 -0.0861913 10.1394 -0.0607201 0.0255663 0.0351537 0.18 0 pose: 0.52974401 -2.86272 0.184301 0 -0.00141351 -0.00398538 0.012675 0.999911 uwb: 0.50028446 839.275 1328.09 +imu_odom_: 1691062948.318626389 0.914585 -0.335188 9.61751 -0.0884169 -0.00319579 0.0628506 0.18 0 pose: 0.0 -2.86272 0.184301 0 -0.00141351 -0.00398538 0.012675 0.999911 uwb: 0.0 839.275 1328.09 +imu_odom_: 1691062948.345483547 0.229843 -0.399832 9.96467 -0.0266316 0.0234358 0.0308927 0.18 0 pose: 0.42111319 -2.85295 0.182165 0 -0.00196186 -0.00393682 0.0129919 0.999906 uwb: 0.49955534 836.487 1325.84 +imu_odom_: 1691062948.370611805 0.47884 -0.304064 10.0126 -0.072438 0.0213053 0.0596548 0.19 0 pose: 0.43904383 -2.84597 0.180643 0 -0.00334453 -0.00281794 0.0130848 0.999905 uwb: 0.0 836.487 1325.84 +imu_odom_: 1691062948.387409378 0.0957681 -0.25618 9.65582 -0.0511327 0.0266316 0.0351537 0.19 0 pose: 0.7953000 -2.84318 0.180034 0 -0.00399107 -0.00326401 0.0131638 0.9999 uwb: 0.0 836.487 1325.84 +imu_odom_: 1691062948.413544411 0.380678 0.0694318 10.0149 -0.0777643 -0.00852212 0.0553937 0.18 0 pose: 0.33972831 -2.83781 0.178865 0 -0.00510995 -0.00230571 0.0133041 0.999896 uwb: 0.0 836.487 1325.84 +imu_odom_: 1691062948.430419562 0.821211 -0.430956 9.71088 -0.0596548 0.015979 0.0351537 0.18 0 pose: 0.0 -2.83781 0.178865 0 -0.00510995 -0.00230571 0.0133041 0.999896 uwb: 0.0 836.487 1325.84 +imu_odom_: 1691062948.456434436 0.349553 -0.40462 9.94073 -0.0649811 -0.00852212 0.0458064 0.18 -0.02 pose: 0.43010184 -2.83341 0.177907 0 -0.00350678 -0.00327945 0.0134658 0.999898 uwb: 0.99997979 835.849 1324.28 +imu_odom_: 1691062948.483585869 0.967257 0.0191536 9.99819 -0.0394148 -0.0415453 0.036219 0.25 0 pose: 0.0 -2.83341 0.177907 0 -0.00350678 -0.00327945 0.0134658 0.999898 uwb: 0.50149189 835.225 1323.41 +imu_odom_: 1691062948.509475916 0.418985 -0.225055 10.0245 -0.0649811 0.00319579 0.04048 0.19 0 pose: 0.53166307 -2.82159 0.185677 0 -0.00380066 -0.00431459 0.0135016 0.999892 uwb: 0.0 835.225 1323.41 +imu_odom_: 1691062948.536501940 0.701501 -0.339977 9.26556 -0.052198 0.0138484 0.0436758 0.21 -0.02 pose: 0.0 -2.82159 0.185677 0 -0.00380066 -0.00431459 0.0135016 0.999892 uwb: 0.49899245 835.057 1322.35 +imu_odom_: 1691062948.561489331 0.562637 -0.275333 10.3286 -0.0436758 0.0436758 0.015979 0.21 -0.02 pose: 0.32900726 -2.8118 0.183653 0 -0.00235865 -0.00293494 0.0135253 0.999901 uwb: 0.0 835.057 1322.35 +imu_odom_: 1691062948.588571351 0.40462 -0.550666 9.73722 -0.0585895 0.00426106 0.0532632 0.2 0 pose: 0.45002736 -2.80486 0.182219 0 -0.00274302 -0.00656144 0.0132595 0.999887 uwb: 0.49882622 836.222 1322.15 +imu_odom_: 1691062948.614449733 0.385466 -0.0957681 9.94791 -0.0330232 0 0.0308927 0.2 0 pose: 0.6984722 -2.80201 0.181629 0 -0.0033982 -0.00625849 0.0133121 0.999886 uwb: 0.0 836.222 1322.15 +imu_odom_: 1691062948.641438134 0.447716 -0.397437 9.97903 -0.0809601 0.0106526 0.0511327 0.23 -0.02 pose: 0.45975680 -2.79523 0.180229 0 -0.00273884 -0.00405962 0.013347 0.999899 uwb: 0.50036612 837.123 1321.76 +imu_odom_: 1691062948.666544227 0.462081 -0.373495 9.77313 -0.0479369 0.0447411 0.0223706 0.18 0.02 pose: 0.0 -2.79523 0.180229 0 -0.00273884 -0.00405962 0.013347 0.999899 uwb: 0.0 837.123 1321.76 +imu_odom_: 1691062948.683436585 0.25618 -0.225055 9.55765 -0.0745685 -0.0468716 0.0447411 0.18 0.02 pose: 0.34997689 -2.79221 0.179603 0 -0.0064754 -0.00298429 0.0134458 0.999884 uwb: 0.50007739 837.009 1320.6 +imu_odom_: 1691062948.699610318 1.00078 -0.167594 9.99579 -0.0340885 0.0181095 0.0255663 0.18 0.02 pose: 0.0 -2.79221 0.179603 0 -0.0064754 -0.00298429 0.0134458 0.999884 uwb: 0.0 837.009 1320.6 +imu_odom_: 1691062948.726470685 0.466869 -0.174777 10.1682 -0.0649811 0.0191748 0.0585895 0.18 0 pose: 0.42110153 -2.7804 0.187372 0 -0.00693904 -0.0022161 0.0132933 0.999885 uwb: 0.0 837.009 1320.6 +imu_odom_: 1691062948.751452243 0.603339 -0.258574 9.85453 -0.0426106 -0.0106526 0.0415453 0.18 -0.02 pose: 0.34913110 -2.7735 0.185944 0 -0.00403207 -0.00265169 0.0134751 0.999898 uwb: 0.49862497 836.706 1319.81 +imu_odom_: 1691062948.778589094 0.531513 -0.383072 9.84496 -0.0458064 0.00426106 0.0383495 0.18 -0.02 pose: 0.0 -2.7735 0.185944 0 -0.00403207 -0.00265169 0.0134751 0.999898 uwb: 0.0 836.706 1319.81 +imu_odom_: 1691062948.803530404 0.605733 -0.0790087 10.2951 -0.0458064 0.00106526 0.0607201 0.2 0 pose: 0.7997330 -2.7706 0.185345 0 -0.0037868 -0.00345257 0.0134796 0.999896 uwb: 0.50002489 836.813 1318.91 +imu_odom_: 1691062948.830525221 0.600945 -0.213084 10.5249 -0.056459 0.0181095 0.0394148 0.2 0 pose: 0.0 -2.7706 0.185345 0 -0.0037868 -0.00345257 0.0134796 0.999896 uwb: 0.0 836.813 1318.91 +imu_odom_: 1691062948.855400036 0.826 -0.232238 9.96946 -0.0777643 0.00106526 0.0660464 0.2 0 pose: 0.52044038 -2.76081 0.183321 0 -0.00495281 -0.00602559 0.0135613 0.999878 uwb: 0.50004531 836.568 1318.02 +imu_odom_: 1691062948.872396221 -0.0646434 -0.299275 9.82102 -0.0543285 0.0181095 0.0426106 0.2 0 pose: 0.0 -2.76081 0.183321 0 -0.00495281 -0.00602559 0.0135613 0.999878 uwb: 0.0 836.568 1318.02 +imu_odom_: 1691062948.897544312 0.0383072 -0.270545 9.62948 -0.0852212 0.0234358 0.0596548 0.22 0 pose: 0.51996208 -2.75102 0.181302 0 -0.00128448 -0.00874965 0.0138101 0.999866 uwb: 0.49989657 836.103 1316.88 +imu_odom_: 1691062948.923598850 0.591368 -0.361524 9.84017 -0.0756338 -0.00958738 0.0383495 0.23 0.02 pose: 0.23916744 -2.75102 0.181302 0 -0.00146165 -0.0096163 0.0140415 0.999854 uwb: 0.0 836.103 1316.88 +imu_odom_: 1691062948.949436984 0.577003 -0.244209 9.88326 -0.0703074 -0.0127832 0.0543285 0.23 0.02 pose: 0.35119307 -2.74122 0.179289 0 -0.00208626 -0.00565475 0.014313 0.999879 uwb: 0.50001323 836.471 1316.17 +imu_odom_: 1691062948.974438082 0.351948 -0.323217 10.2496 -0.04048 -0.00745685 0.0383495 0.23 0 pose: 0.6999013 -2.74122 0.179289 0 -0.00271025 -0.00610351 0.0143105 0.999875 uwb: 0.0 836.471 1316.17 +imu_odom_: 1691062948.991742834 0.457293 -0.486023 9.85214 -0.0628506 -0.0245011 0.0468716 0.23 0 pose: 0.0 -2.74122 0.179289 0 -0.00271025 -0.00610351 0.0143105 0.999875 uwb: 0.50124982 836.52 1315.4 +imu_odom_: 1691062949.18400795 0.205901 -0.179565 10.0485 -0.0394148 0 0.0447411 0.18 0 pose: 0.51858840 -2.72942 0.187079 0 -0.00244969 -0.0079844 0.0144706 0.99986 uwb: 0.0 836.52 1315.4 +imu_odom_: 1691062949.43371855 0.282516 -0.232238 10.1011 -0.052198 -0.0191748 0.0458064 0.18 0 pose: 0.0 -2.72942 0.187079 0 -0.00244969 -0.0079844 0.0144706 0.99986 uwb: 0.49854915 837.341 1315.16 +imu_odom_: 1691062949.70743192 0.711078 0.0742203 10.2735 -0.0490022 -0.0415453 0.0458064 0.21 0.02 pose: 0.42201148 -2.71963 0.185036 0 -0.00421896 -0.00529957 0.0145635 0.999871 uwb: 0.0 837.341 1315.16 +imu_odom_: 1691062949.95533428 0.588974 0.0407014 10.0293 -0.0543285 -0.0276969 0.0468716 0.21 0.02 pose: 0.0 -2.71963 0.185036 0 -0.00421896 -0.00529957 0.0145635 0.999871 uwb: 0.50016488 836.742 1313.63 +imu_odom_: 1691062949.112436286 0.339977 -0.263362 10.1921 -0.0415453 -0.0308927 0.04048 0.23 0.02 pose: 0.51856508 -2.70985 0.182936 0 -0.00211791 -0.00174524 0.0147248 0.999888 uwb: 0.0 836.742 1313.63 +imu_odom_: 1691062949.137508839 0.407014 -0.198719 10.0221 -0.0415453 -0.0170442 0.0372843 0.23 0.02 pose: 0.0 -2.70985 0.182936 0 -0.00211791 -0.00174524 0.0147248 0.999888 uwb: 0.0 836.742 1313.63 +imu_odom_: 1691062949.164395163 0.603339 -0.0430956 9.67976 -0.0681769 -0.0149137 0.0681769 0.18 0 pose: 0.51968501 -2.70007 0.18084 0 0.00154791 -0.00415223 0.0148696 0.99988 uwb: 0.0 836.742 1313.63 +imu_odom_: 1691062949.190524072 0.627281 -0.325611 10.1586 -0.0415453 0.0511327 0.0287621 0.19 0 pose: 0.61966841 -2.69107 0.189139 0 0.00265061 -0.00324518 0.0152289 0.999875 uwb: 0.100002063 835.998 1312.39 +imu_odom_: 1691062949.217423228 0.0981623 -0.430956 9.72764 -0.0415453 0.0106526 0.0490022 0.19 0 pose: 0.0 -2.69107 0.189139 0 0.00265061 -0.00324518 0.0152289 0.999875 uwb: 0.0 835.998 1312.39 +imu_odom_: 1691062949.233405347 0.620098 -0.237026 10.161 -0.0266316 -0.0170442 0.0330232 0.2 0 pose: 0.8321353 -2.6882 0.188525 0 0.00211541 -0.00360261 0.0151881 0.999876 uwb: 0.49960493 835.653 1311.07 +imu_odom_: 1691062949.251504845 0.617704 -0.397437 9.5816 -0.0649811 -0.0628506 0.0628506 0.2 0 pose: 0.0 -2.6882 0.188525 0 0.00211541 -0.00360261 0.0151881 0.999876 uwb: 0.0 835.653 1311.07 +imu_odom_: 1691062949.276377035 0.347159 -0.445322 9.43794 -0.0639159 -0.0181095 0.036219 0.18 0 pose: 0.51651478 -2.67842 0.186437 0 -0.000220185-0.00261469 0.01521 0.999881 uwb: 0.0 835.653 1311.07 +imu_odom_: 1691062949.293430384 0.775721 -0.138864 9.92636 -0.0436758 -0.0351537 0.0490022 0.18 0 pose: 0.0 -2.67842 0.186437 0 -0.000220185-0.00261469 0.01521 0.999881 uwb: 0.50151231 836.166 1310.75 +imu_odom_: 1691062949.318376361 0.579397 -0.23942 9.9096 -0.0479369 0.00106526 0.0372843 0.18 0 pose: 0.34039619 -2.66864 0.18435 0 -0.00220012 -0.00490924 0.0153874 0.999867 uwb: 0.0 836.166 1310.75 +imu_odom_: 1691062949.345514087 0.42138 -0.280122 9.98861 -0.0713727 0.02024 0.0713727 0.18 0 pose: 0.0 -2.66864 0.18435 0 -0.00220012 -0.00490924 0.0153874 0.999867 uwb: 0.0 836.166 1310.75 +imu_odom_: 1691062949.370437607 0.337582 -0.162806 9.60075 -0.0671117 0.0330232 0.0287621 0.19 0 pose: 0.43030017 -2.66864 0.18435 0 -0.00242017 -0.00642272 0.015426 0.999857 uwb: 0.0 836.166 1310.75 +imu_odom_: 1691062949.387511372 0.399832 -0.117316 10.3501 -0.0532632 -0.0276969 0.0543285 0.19 0 pose: 0.0 -2.66864 0.18435 0 -0.00242017 -0.00642272 0.015426 0.999857 uwb: 0.99888028 835.222 1309.27 +imu_odom_: 1691062949.412557093 0.605733 -0.337582 9.96467 -0.0383495 -0.0436758 0.0351537 0.18 0 pose: 0.52041414 -2.65678 0.192047 0 -0.00209876 -0.00409134 0.0157926 0.999865 uwb: 0.0 835.222 1309.27 +imu_odom_: 1691062949.436528960 0.332794 -0.153229 9.93354 -0.0692422 -0.0351537 0.0649811 0.18 0 pose: 0.0 -2.65678 0.192047 0 -0.00209876 -0.00409134 0.0157926 0.999865 uwb: 0.0 835.222 1309.27 +imu_odom_: 1691062949.451644296 0.483629 0.0933739 10.2304 -0.0617853 -0.0330232 0.0553937 0.18 -0.02 pose: 0.41933414 -2.647 0.189971 0 -0.000127663-0.00265301 0.015806 0.999872 uwb: 0.0 835.222 1309.27 +imu_odom_: 1691062949.476452323 0.217872 -0.0526724 10.1083 -0.0777643 0.00639159 0.0415453 0.18 -0.02 pose: 0.0 -2.647 0.189971 0 -0.000127663-0.00265301 0.015806 0.999872 uwb: 0.0 835.222 1309.27 +imu_odom_: 1691062949.500362360 0.548272 -0.234632 9.90242 -0.0553937 -0.00213053 0.0351537 0.25 0 pose: 0.48142930 -2.63721 0.187916 0 0.000605329 -0.00275085 0.0161257 0.999866 uwb: 0.99979314 835.037 1308.31 +imu_odom_: 1691062949.524404806 0.64404 -0.102951 10.0676 -0.0788296 0.0149137 0.0500674 0.25 0 pose: 0.0 -2.63721 0.187916 0 0.000605329 -0.00275085 0.0161257 0.999866 uwb: 0.0 835.037 1308.31 +imu_odom_: 1691062949.540398883 0.0407014 -0.059855 9.90721 -0.0745685 -0.0458064 0.0458064 0.18 0.02 pose: 0.39831202 -2.62741 0.185944 0 0.00198254 -0.00122897 0.0161911 0.999866 uwb: 0.49992282 837.877 1308.81 +imu_odom_: 1691062949.558375887 0.878672 -0.0526724 9.85453 -0.0415453 -0.0245011 0.036219 0.18 0.02 pose: 0.0 -2.62741 0.185944 0 0.00198254 -0.00122897 0.0161911 0.999866 uwb: 0.0 837.877 1308.81 +imu_odom_: 1691062949.582388877 0.85473 -0.105345 9.98143 -0.0713727 -0.00426106 0.04048 0.18 0 pose: 0.49204535 -2.6176 0.183973 0 0.00215172 -0.0040592 0.016305 0.999857 uwb: 0.50110983 837.777 1307.69 +imu_odom_: 1691062949.609349863 0.727837 -0.4956 9.39006 -0.052198 0.0170442 0.0468716 0.18 0 pose: 0.0 -2.6176 0.183973 0 0.00215172 -0.0040592 0.016305 0.999857 uwb: 0.0 837.777 1307.69 +imu_odom_: 1691062949.625358231 0.205901 -0.399832 9.66539 -0.0649811 -0.00958738 0.0447411 0.19 0 pose: 0.32929892 -2.6176 0.183973 0 0.00298455 -0.00606795 0.0163022 0.999844 uwb: 0.0 837.777 1307.69 +imu_odom_: 1691062949.642341876 0.550666 0 10.0389 -0.0415453 -0.0149137 0.0383495 0.19 0 pose: 0.0 -2.6176 0.183973 0 0.00298455 -0.00606795 0.0163022 0.999844 uwb: 0.50018822 838.593 1306.79 +imu_odom_: 1691062949.667410638 0.349553 -0.311246 9.79707 -0.0894822 -0.00213053 0.0532632 0.18 0 pose: 0.50894646 -2.60583 0.191808 0 0.000434859 -0.0081624 0.0164545 0.999831 uwb: 0.0 838.593 1306.79 +imu_odom_: 1691062949.694345667 0.648829 -0.167594 9.75637 -0.0649811 -0.015979 0.0479369 0.18 0 pose: 0.0 -2.60583 0.191808 0 0.000434859 -0.0081624 0.0164545 0.999831 uwb: 0.49876497 838.22 1305.55 +imu_odom_: 1691062949.719466925 0.383072 -0.217872 10.3214 -0.0660464 -0.0191748 0.0553937 0.18 0.02 pose: 0.33969332 -2.59602 0.189842 0 0.00118595 -0.00679842 0.0165145 0.99984 uwb: 0.0 838.22 1305.55 +imu_odom_: 1691062949.743394753 0.320823 -0.0957681 10.1849 -0.0468716 -0.00745685 0.0330232 0.18 0.02 pose: 0.0 -2.59602 0.189842 0 0.00118595 -0.00679842 0.0165145 0.99984 uwb: 0.50043904 837.41 1303.87 +imu_odom_: 1691062949.758466633 0.268151 -0.304064 9.75398 -0.0735032 -0.0372843 0.0490022 0.18 0 pose: 0.51977542 -2.58622 0.187878 0 0.000627143 -0.00732045 0.0168031 0.999832 uwb: 0.0 837.41 1303.87 +imu_odom_: 1691062949.783341448 0.430956 -0.0861913 10.094 -0.04048 -0.00213053 0.0383495 0.18 0 pose: 0.0 -2.58622 0.187878 0 0.000627143 -0.00732045 0.0168031 0.999832 uwb: 0.49932494 838.78 1303.85 +imu_odom_: 1691062949.807620422 0.565032 -0.263362 10.1706 -0.0468716 -0.02024 0.0543285 0.25 0 pose: 0.47972316 -2.58622 0.187878 0 0.0012019 -0.0032058 0.0168854 0.999852 uwb: 0.0 838.78 1303.85 +imu_odom_: 1691062949.831481462 0.529119 -0.169988 10.0676 -0.0415453 0.02024 0.0468716 0.25 0 pose: 0.0 -2.58622 0.187878 0 0.0012019 -0.0032058 0.0168854 0.999852 uwb: 0.50116817 839.519 1303.1 +imu_odom_: 1691062949.847367337 0.438139 -0.244209 9.74679 -0.0660464 0.0191748 0.0436758 0.18 0 pose: 0.40046439 -2.57641 0.185921 0 0.00286986 -0.00261544 0.0169564 0.999849 uwb: 0.0 839.519 1303.1 +imu_odom_: 1691062949.871465488 0.361524 -0.122104 9.76116 -0.0383495 -0.0149137 0.0511327 0.18 0 pose: 0.0 -2.57641 0.185921 0 0.00286986 -0.00261544 0.0169564 0.999849 uwb: 0.0 839.519 1303.1 +imu_odom_: 1691062949.895588138 0.280122 -0.368707 9.59117 -0.0681769 0.02024 0.0649811 0.18 0 pose: 0.48993964 -2.56465 0.193771 0 0.00192904 -0.00537621 0.0171976 0.999836 uwb: 0.49887288 839.543 1301.78 +imu_odom_: 1691062949.920327335 0.00718261 -0.306458 9.37809 -0.0639159 -0.00319579 0.0490022 0.18 0 pose: 0.0 -2.56465 0.193771 0 0.00192904 -0.00537621 0.0171976 0.999836 uwb: 0.0 839.543 1301.78 +imu_odom_: 1691062949.937576382 0.514753 -0.155623 9.96946 -0.0756338 -0.0681769 0.0617853 0.23 0.02 pose: 0.80952079 -2.54799 0.190464 0 -0.0001601540.00156916 0.0177713 0.999841 uwb: 0.50117108 841.848 1301.88 +imu_odom_: 1691062949.962382659 0.476446 0.0526724 10.3597 -0.0660464 -0.0106526 0.0500674 0.23 0.02 pose: 0.0 -2.54799 0.190464 0 -0.0001601540.00156916 0.0177713 0.999841 uwb: 0.0 841.848 1301.88 +imu_odom_: 1691062949.987353718 0.318429 -0.265756 10.556 -0.0649811 -0.0117179 0.0617853 0.23 -0.02 pose: 0.7294163 -2.54503 0.189879 0 7.13692e-05 0.000670285 0.0178528 0.99984 uwb: 0.49924327 841.99 1300.97 +imu_odom_: 1691062950.8451959 0.605733 -0.299275 9.89763 -0.052198 -0.0127832 0.036219 0.23 -0.02 pose: 0.0 -2.54503 0.189879 0 7.13692e-05 0.000670285 0.0178528 0.99984 uwb: 0.0 841.99 1300.97 +imu_odom_: 1691062950.31315556 0.177171 -0.28491 9.70609 -0.0585895 -0.0138484 0.0415453 0.18 0 pose: 0.41717593 -2.53522 0.187942 0 0.00215318 -0.0007045280.0181691 0.999832 uwb: 0.49807960 841.937 1299.8 +imu_odom_: 1691062950.47485498 0.612916 -0.42138 10.5967 -0.056459 0.0213053 0.015979 0.18 0 pose: 0.0 -2.53522 0.187942 0 0.00215318 -0.0007045280.0181691 0.999832 uwb: 0.0 841.937 1299.8 +imu_odom_: 1691062950.64375524 0.378284 -0.316035 9.56005 -0.056459 -0.0106526 -0.04048 0.23 -0.11 pose: 0.45045609 -2.53522 0.187942 0 -0.000216954-0.0009726210.0183386 0.999831 uwb: 0.0 841.937 1299.8 +imu_odom_: 1691062950.81467954 0.217872 0.0526724 9.59117 -0.0681769 -0.0372843 -0.0809601 0.23 -0.11 pose: 0.0 -2.53522 0.187942 0 -0.000216954-0.0009726210.0183386 0.999831 uwb: 0.49964284 840.225 1297.36 +imu_odom_: 1691062950.96588832 0.545878 -0.289698 10.1035 -0.0543285 -0.00319579 -0.0958738 0.23 -0.11 pose: 0.0 -2.53522 0.187942 0 -0.000216954-0.0009726210.0183386 0.999831 uwb: 0.0 840.225 1297.36 +imu_odom_: 1691062950.113382905 0.543484 -0.196325 9.75877 -0.0596548 -0.00958738 -0.155529 0.18 -0.17 pose: 0.74128056 -2.51367 0.193887 0 -0.00207035 6.34209e-05 0.0159851 0.99987 uwb: 0.0 840.225 1297.36 +imu_odom_: 1691062950.127441594 0.893037 -0.11971 9.51456 -0.0553937 -0.0149137 -0.198139 0.18 -0.17 pose: 0.0 -2.51367 0.193887 0 -0.00207035 6.34209e-05 0.0159851 0.99987 uwb: 0.0 840.225 1297.36 +imu_odom_: 1691062950.144496985 0.993594 -0.385466 9.9934 -0.0649811 -0.0223706 -0.233293 0.18 -0.29 pose: 0.38928838 -2.50839 0.192834 0 -0.00111509 -0.00370177 0.0121208 0.999919 uwb: 0.50029905 839.68 1295.89 +imu_odom_: 1691062950.158327312 0.526724 -0.107739 9.78031 -0.0575243 -0.0426106 -0.296144 0.18 -0.29 pose: 0.0 -2.50839 0.192834 0 -0.00111509 -0.00370177 0.0121208 0.999919 uwb: 0.0 839.68 1295.89 +imu_odom_: 1691062950.174429300 0.610521 0.205901 9.38288 -0.0394148 0.00426106 -0.353668 0.18 -0.29 pose: 0.0 -2.50839 0.192834 0 -0.00111509 -0.00370177 0.0121208 0.999919 uwb: 0.0 839.68 1295.89 +imu_odom_: 1691062950.189319482 0.373495 -0.189142 9.46907 -0.0585895 0.00213053 -0.388822 0.19 -0.44 pose: 0.7003387 -2.50386 0.191947 0 -0.00132881 -0.00444285 0.0111652 0.999927 uwb: 0.50123525 838.375 1294 +imu_odom_: 1691062950.205362265 0.25618 -0.0694318 10.5441 -0.036219 -0.015979 -0.417584 0.19 -0.44 pose: 0.0 -2.50386 0.191947 0 -0.00132881 -0.00444285 0.0111652 0.999927 uwb: 0.0 838.375 1294 +imu_odom_: 1691062950.220292112 0.0885855 -0.42138 8.98065 -0.0681769 0.0213053 -0.451672 0.19 -0.44 pose: 0.0 -2.50386 0.191947 0 -0.00132881 -0.00444285 0.0111652 0.999927 uwb: 0.0 838.375 1294 +imu_odom_: 1691062950.236296105 0.306458 -0.0885855 10.0533 -0.0458064 0.0319579 -0.474043 0.18 -0.47 pose: 0.46951250 -2.50386 0.191947 0 0.00144969 -0.00549221 0.00279673 0.99998 uwb: 0.49989658 837.805 1292.61 +imu_odom_: 1691062950.251293615 0.737414 0.0622492 9.91199 -0.0596548 -0.0234358 -0.471912 0.18 -0.47 pose: 0.0 -2.50386 0.191947 0 0.00144969 -0.00549221 0.00279673 0.99998 uwb: 0.0 837.805 1292.61 +imu_odom_: 1691062950.268323924 0.864307 0.035913 9.50977 -0.0607201 -0.00426106 -0.518784 0.18 -0.47 pose: 0.0 -2.50386 0.191947 0 0.00144969 -0.00549221 0.00279673 0.99998 uwb: 0.0 837.805 1292.61 +imu_odom_: 1691062950.282432193 0.191536 -0.150835 9.80186 -0.0681769 -0.0191748 -0.537959 0.18 -0.61 pose: 0.45894602 -2.49405 0.190007 0 0.00184223 -0.00117284 -0.00803905 0.999965 uwb: 0.50134899 837.855 1291.32 +imu_odom_: 1691062950.298433562 0.129287 -0.325611 9.73243 -0.056459 -0.0127832 -0.566721 0.18 -0.53 pose: 0.0 -2.49405 0.190007 0 0.00184223 -0.00117284 -0.00803905 0.999965 uwb: 0.0 837.855 1291.32 +imu_odom_: 1691062950.313434571 0.931344 0.146046 9.97185 -0.0553937 -0.00532632 -0.546481 0.18 -0.53 pose: 0.0 -2.49405 0.190007 0 0.00184223 -0.00117284 -0.00803905 0.999965 uwb: 0.0 837.855 1291.32 +imu_odom_: 1691062950.330445923 1.25935 -0.466869 10.0868 -0.0607201 -0.0596548 -0.498544 0.15 -0.47 pose: 0.62170705 -2.4725 0.196058 0 0.00340345 -0.00129574 -0.0251472 0.999677 uwb: 0.49863956 838.661 1291.07 +imu_odom_: 1691062950.344320581 1.32878 -0.296881 10.3334 -0.0553937 -0.00426106 -0.52198 0.15 -0.47 pose: 0.0 -2.4725 0.196058 0 0.00340345 -0.00129574 -0.0251472 0.999677 uwb: 0.0 838.661 1291.07 +imu_odom_: 1691062950.361357890 1.3216 -0.150835 10.7571 -0.04048 0.0127832 -0.493217 0.15 -0.47 pose: 0.30990712 -2.4725 0.196058 0 0.00337862 -0.00268533 -0.0341434 0.999408 uwb: 0.0 838.661 1291.07 +imu_odom_: 1691062950.375406663 1.35272 -0.311246 9.60793 -0.0660464 -0.0276969 -0.449542 0.14 -0.47 pose: 0.40905640 -2.46268 0.194178 0 0.00277059 -0.00676692 -0.0452429 0.998949 uwb: 0.0 838.661 1291.07 +imu_odom_: 1691062950.392557423 0.919373 -0.332794 9.27993 -0.0330232 0.0287621 -0.380299 0.14 -0.47 pose: 0.6010612 -2.46268 0.194178 0 0.00260738 -0.00741749 -0.0467089 0.998878 uwb: 0.50052946 838.841 1290.14 +imu_odom_: 1691062950.406302005 1.14443 -0.397437 9.94073 -0.0447411 0.0234358 -0.345146 0.14 -0.47 pose: 0.0 -2.46268 0.194178 0 0.00260738 -0.00741749 -0.0467089 0.998878 uwb: 0.0 838.841 1290.14 +imu_odom_: 1691062950.423296733 0.907402 -0.184354 9.81623 -0.0426106 -0.0596548 -0.279099 0.1 -0.32 pose: 0.38933503 -2.46266 0.19416 0 0.00134934 -0.0105782 -0.0548825 0.998436 uwb: 0.0 838.841 1290.14 +imu_odom_: 1691062950.440296127 0.459687 -0.493206 9.46188 -0.0436758 0.0255663 -0.24288 0.1 -0.32 pose: 0.0 -2.46266 0.19416 0 0.00134934 -0.0105782 -0.0548825 0.998436 uwb: 0.49864248 840.162 1290.15 +imu_odom_: 1691062950.457288522 0.550666 -0.45011 10.0868 -0.0383495 0.0106526 -0.252468 0.1 -0.32 pose: 0.0 -2.46266 0.19416 0 0.00134934 -0.0105782 -0.0548825 0.998436 uwb: 0.0 840.162 1290.15 +imu_odom_: 1691062950.474350621 0.378284 -0.110133 9.8665 -0.0585895 -0.0415453 -0.232228 0.09 -0.26 pose: 0.40996927 -2.45286 0.192258 0 -0.000532664-0.0112635 -0.0609719 0.998076 uwb: 0.0 840.162 1290.15 +imu_odom_: 1691062950.491312976 0.670376 -0.23942 9.88566 -0.0617853 -0.0127832 -0.218379 0.12 -0.41 pose: 0.0 -2.45286 0.192258 0 -0.000532664-0.0112635 -0.0609719 0.998076 uwb: 0.49932494 839.458 1288.44 +imu_odom_: 1691062950.508287871 1.02232 -0.342371 9.73722 -0.0681769 -0.0500674 -0.186421 0.12 -0.41 pose: 0.34053035 -2.45286 0.192258 0 -0.000809564-0.0103402 -0.0656369 0.99779 uwb: 0.0 839.458 1288.44 +imu_odom_: 1691062950.524423690 0.948104 -0.253785 9.97664 -0.0617853 0.00532632 -0.170442 0.07 -0.2 pose: 0.0 -2.45286 0.192258 0 -0.000809564-0.0103402 -0.0656369 0.99779 uwb: 0.0 839.458 1288.44 +imu_odom_: 1691062950.541290967 0.708684 -0.124498 10.07 -0.0575243 -0.0170442 -0.160855 0.07 -0.2 pose: 0.0 -2.45286 0.192258 0 -0.000809564-0.0103402 -0.0656369 0.99779 uwb: 0.49996949 838.947 1286.99 +imu_odom_: 1691062950.557401413 0.687136 -0.158017 9.8689 -0.0575243 -0.00639159 -0.15979 0.07 -0.2 pose: 0.34009580 -2.45286 0.192258 0 -0.00202798 -0.0139444 -0.069564 0.997478 uwb: 0.0 838.947 1286.99 +imu_odom_: 1691062950.574347144 0.658405 -0.316035 9.79228 -0.0490022 -0.00106526 -0.155529 0.07 -0.23 pose: 0.42039866 -2.44304 0.190369 0 0.001095 -0.0148828 -0.0738497 0.997158 uwb: 0.0 838.947 1286.99 +imu_odom_: 1691062950.592365854 0.550666 -0.335188 9.91439 -0.056459 0 -0.144876 0.07 -0.23 pose: 0.8008413 -2.44304 0.190369 0 0.000364117 -0.0146479 -0.0746174 0.997105 uwb: 0.50041863 839.293 1286.38 +imu_odom_: 1691062950.606434459 0.667982 -0.316035 10.0389 -0.0543285 0.00639159 -0.13955 0.07 -0.23 pose: 0.0 -2.44304 0.190369 0 0.000364117 -0.0146479 -0.0746174 0.997105 uwb: 0.0 839.293 1286.38 +imu_odom_: 1691062950.623431520 0.588974 -0.129287 9.8665 -0.0596548 -0.015979 -0.11931 0.04 -0.14 pose: 0.41024633 -2.44304 0.190369 0 -0.00298125 -0.0128833 -0.0783528 0.996838 uwb: 0.0 839.293 1286.38 +imu_odom_: 1691062950.640567406 0.584185 -0.335188 9.7037 -0.0596548 0.00213053 -0.107592 0.05 -0.11 pose: 0.0 -2.44304 0.190369 0 -0.00298125 -0.0128833 -0.0783528 0.996838 uwb: 0.50151523 838.405 1285.04 +imu_odom_: 1691062950.657618131 0.694318 -0.229843 9.87608 -0.0596548 -0.0330232 -0.092678 0.05 -0.11 pose: 0.0 -2.44304 0.190369 0 -0.00298125 -0.0128833 -0.0783528 0.996838 uwb: 0.0 838.405 1285.04 +imu_odom_: 1691062950.675342275 0.703895 -0.289698 9.75637 -0.0532632 0.00213053 -0.0798948 0.04 -0.08 pose: 0.25012182 -2.44304 0.190369 0 -0.00215552 -0.0118305 -0.0802971 0.996698 uwb: 0.0 838.405 1285.04 +imu_odom_: 1691062950.691416556 0.684742 -0.251391 9.96467 -0.052198 -0.00639159 -0.072438 0.04 -0.08 pose: 0.0 -2.44304 0.190369 0 -0.00215552 -0.0118305 -0.0802971 0.996698 uwb: 0.49946202 839.794 1284.9 +imu_odom_: 1691062950.708473697 0.593762 -0.234632 9.82102 -0.0553937 -0.00319579 -0.0617853 0.04 -0.08 pose: 0.34085700 -2.44304 0.190369 0 -0.00314631 -0.0136762 -0.0825515 0.996488 uwb: 0.0 839.794 1284.9 +imu_odom_: 1691062950.726348332 0.667982 -0.268151 9.93594 -0.0596548 -0.00852212 -0.0479369 0.03 -0.05 pose: 0.42941356 -2.44304 0.190369 0 -0.00210082 -0.0122767 -0.0849062 0.996311 uwb: 0.0 839.794 1284.9 +imu_odom_: 1691062950.743580463 0.471658 -0.282516 9.90242 -0.0607201 -0.00319579 -0.0479369 0.03 -0.05 pose: 0.7947458 -2.44304 0.190369 0 -0.00281834 -0.0126632 -0.0852445 0.996276 uwb: 0.50114776 840.151 1284.27 +imu_odom_: 1691062950.761286525 0.677559 -0.294487 9.94312 -0.0500674 0.00106526 -0.0447411 0.03 -0.05 pose: 0.0 -2.44304 0.190369 0 -0.00281834 -0.0126632 -0.0852445 0.996276 uwb: 0.0 840.151 1284.27 +imu_odom_: 1691062950.778320917 0.632069 -0.186748 9.90721 -0.0607201 -0.0117179 -0.0170442 0.02 -0.02 pose: 0.44865370 -2.43737 0.189251 0 -0.00471167 -0.0128247 -0.0871494 0.996102 uwb: 0.0 840.151 1284.27 +imu_odom_: 1691062950.795256440 0.591368 -0.368707 9.8258 -0.056459 -0.00426106 -0.00213053 0.02 -0.02 pose: 0.0 -2.43737 0.189251 0 -0.00471167 -0.0128247 -0.0871494 0.996102 uwb: 0.49930161 839.026 1282.79 +imu_odom_: 1691062950.812435491 0.593762 -0.179565 9.94791 -0.0500674 -0.00639159 -0.00106526 0.02 -0.02 pose: 0.0 -2.43737 0.189251 0 -0.00471167 -0.0128247 -0.0871494 0.996102 uwb: 0.0 839.026 1282.79 +imu_odom_: 1691062950.828549728 0.612916 -0.181959 9.82341 -0.0553937 -0.0127832 0.0138484 0.01 -0.02 pose: 0.24047404 -2.43323 0.188434 0 -0.00368266 -0.012167 -0.0877882 0.996058 uwb: 0.0 839.026 1282.79 +imu_odom_: 1691062950.846555897 0.703895 -0.306458 9.91199 -0.0585895 -0.00852212 0.0191748 0.01 -0.02 pose: 0.0 -2.43323 0.188434 0 -0.00368266 -0.012167 -0.0877882 0.996058 uwb: 0.50068403 838.473 1282.04 +imu_odom_: 1691062950.863456714 0.708684 -0.258574 9.85453 -0.0532632 -0.00319579 0.0245011 0.01 -0.02 pose: 0.35295172 -2.43323 0.188434 0 -0.00202875 -0.0111032 -0.0884612 0.996016 uwb: 0.0 838.473 1282.04 +imu_odom_: 1691062950.877366953 0.667982 -0.23942 9.88566 -0.0553937 -0.00213053 0.0383495 0.01 0 pose: 0.42827613 -2.43323 0.188434 0 -0.0031494 -0.0138545 -0.0888621 0.995943 uwb: 0.0 838.473 1282.04 +imu_odom_: 1691062950.893360155 0.639252 -0.282516 9.89763 -0.0532632 0 0.0447411 0.01 0 pose: 0.5911450 -2.43323 0.188434 0 -0.00266202 -0.0135129 -0.088872 0.995948 uwb: 0.49805626 839.445 1282.05 +imu_odom_: 1691062950.910350217 0.579397 -0.196325 9.87608 -0.0532632 0.00213053 0.0468716 0.01 0 pose: 0.0 -2.43323 0.188434 0 -0.00266202 -0.0135129 -0.088872 0.995948 uwb: 0.0 839.445 1282.05 +imu_odom_: 1691062950.934303418 0.550666 -0.244209 9.85932 -0.056459 -0.00426106 0.0490022 0 0.02 pose: 0.40982053 -2.43323 0.188434 0 -0.00211558 -0.0110764 -0.0887759 0.995988 uwb: 0.50134024 838.393 1281.04 +imu_odom_: 1691062950.950353784 0.349553 -0.251391 9.991 -0.052198 0.0394148 0.04048 0 0 pose: 0.0 -2.43323 0.188434 0 -0.00211558 -0.0110764 -0.0887759 0.995988 uwb: 0.0 838.393 1281.04 +imu_odom_: 1691062950.967474213 -0.775721 -0.186748 9.73961 -0.0479369 0.0905475 0.0553937 0 0 pose: 0.30028851 -2.43323 0.188434 0 -0.00212445 -0.00793866 -0.0886571 0.996028 uwb: 0.0 838.393 1281.04 +imu_odom_: 1691062950.984282285 -1.24498 -0.418985 9.86411 -0.0575243 0.00106526 0.0756338 0.03 0.02 pose: 0.0 -2.43323 0.188434 0 -0.00212445 -0.00793866 -0.0886571 0.996028 uwb: 0.49838875 838.268 1280.13 +imu_odom_: 1691062951.1320760 -0.593762 -0.299275 9.86411 -0.0585895 -0.0649811 0.052198 0.03 0.02 pose: 0.0 -2.43323 0.188434 0 -0.00212445 -0.00793866 -0.0886571 0.996028 uwb: 0.0 838.268 1280.13 +imu_odom_: 1691062951.18255991 0.378284 -0.023942 9.92397 -0.0532632 -0.0617853 0.04048 0.03 0.02 pose: 0.35098308 -2.43323 0.188434 0 -0.00170106 -0.00339981 -0.0883723 0.99608 uwb: 0.0 838.268 1280.13 +imu_odom_: 1691062951.36320491 0.529119 -0.225055 9.96467 -0.0703074 -0.00532632 0.0596548 0.06 0 pose: 0.42778615 -2.43323 0.188434 0 -8.29919e-05-0.00154159 -0.088096 0.996111 uwb: 0.50001907 838.259 1279.58 +imu_odom_: 1691062951.50302476 0.268151 -0.459687 9.7851 -0.0575243 0.015979 0.0543285 0.06 0 pose: 0.8005789 -2.43323 0.188434 0 -0.000308275-0.00232408 -0.0880158 0.996116 uwb: 0.0 838.259 1279.58 +imu_odom_: 1691062951.67295163 -0.265756 -0.308852 9.94312 -0.0490022 -0.00639159 0.0585895 0.06 0 pose: 0.0 -2.43323 0.188434 0 -0.000308275-0.00232408 -0.0880158 0.996116 uwb: 0.0 838.259 1279.58 +imu_odom_: 1691062951.83246076 0.011971 -0.217872 10.0772 -0.056459 -0.0308927 0.0617853 0.08 0.02 pose: 0.41033383 -2.43322 0.188416 0 -0.00154309 -0.000499015-0.087645 0.99615 uwb: 0.49989658 839.456 1280.32 +imu_odom_: 1691062951.100237887 0.25618 -0.3304 9.96467 -0.0500674 -0.0106526 0.0479369 0.11 0 pose: 0.0 -2.43322 0.188416 0 -0.00154309 -0.000499015-0.087645 0.99615 uwb: 0.0 839.456 1280.32 +imu_odom_: 1691062951.117235532 0.277727 -0.191536 10.3669 -0.0458064 -0.0213053 0.0468716 0.11 0 pose: 0.0 -2.43322 0.188416 0 -0.00154309 -0.000499015-0.087645 0.99615 uwb: 0.0 839.456 1280.32 +imu_odom_: 1691062951.134422457 0.342371 -0.371101 9.40921 -0.0436758 -0.00426106 0.0532632 0.12 0.02 pose: 0.22956634 -2.42342 0.186486 0 -0.00164705 0.00145798 -0.0874362 0.996168 uwb: 0.50135192 839.225 1279.59 +imu_odom_: 1691062951.150423826 0.368707 -0.201113 10.4076 -0.052198 -0.00958738 0.052198 0.12 0.02 pose: 0.0 -2.42342 0.186486 0 -0.00164705 0.00145798 -0.0874362 0.996168 uwb: 0.0 839.225 1279.59 +imu_odom_: 1691062951.168472285 0.107739 -0.19393 10.2663 -0.0479369 0.0138484 0.0511327 0.12 0.02 pose: 0.33993539 -2.42342 0.186486 0 -0.00148051 0.00340017 -0.0872809 0.996177 uwb: 0.0 839.225 1279.59 +imu_odom_: 1691062951.185292314 0.363919 -0.277727 9.89763 -0.0585895 -0.00852212 0.0543285 0.1 0 pose: 0.44226949 -2.42342 0.186486 0 -0.0004585730.00453193 -0.0870048 0.996197 uwb: 0.49993741 840.808 1280.23 +imu_odom_: 1691062951.199402334 0.454898 -0.215478 9.99819 -0.0692422 0.0298274 0.0490022 0.1 0 pose: 0.6998429 -2.42342 0.186486 0 -0.0009984590.00405728 -0.086956 0.996203 uwb: 0.0 840.808 1280.23 +imu_odom_: 1691062951.215401661 1.11809 -0.186748 10.1059 -0.0607201 -0.0585895 0.0447411 0.1 0 pose: 0.0 -2.42342 0.186486 0 -0.0009984590.00405728 -0.086956 0.996203 uwb: 0.0 840.808 1280.23 +imu_odom_: 1691062951.232270688 1.10612 -0.0263362 9.60075 -0.056459 -0.0500674 0.0543285 0.1 0 pose: 0.39930947 -2.41361 0.184549 0 -0.00158305 0.00023962 -0.0867837 0.996226 uwb: 0.49875914 841.891 1280.6 +imu_odom_: 1691062951.250258192 1.14922 -0.296881 9.99579 -0.0490022 0 0.0937433 0.09 -0.02 pose: 0.0 -2.41361 0.184549 0 -0.00158305 0.00023962 -0.0867837 0.996226 uwb: 0.0 841.891 1280.6 +imu_odom_: 1691062951.267368705 1.1133 -0.560243 10.0533 -0.0639159 -0.0500674 0.113983 0.09 -0.02 pose: 0.0 -2.41361 0.184549 0 -0.00158305 0.00023962 -0.0867837 0.996226 uwb: 0.0 841.891 1280.6 +imu_odom_: 1691062951.281364981 1.32639 -0.143652 10.2041 -0.0436758 -0.0287621 0.0756338 0.09 -0.02 pose: 0.24899605 -2.41361 0.184549 0 -0.00137845 -0.00257049 -0.0864455 0.996252 uwb: 0.49995491 841.239 1280.04 +imu_odom_: 1691062951.298257631 1.1133 -0.131681 9.56244 -0.052198 0 0.0585895 0.07 0 pose: 0.0 -2.41361 0.184549 0 -0.00137845 -0.00257049 -0.0864455 0.996252 uwb: 0.0 841.239 1280.04 +imu_odom_: 1691062951.314388493 1.09894 -0.19393 10.149 -0.0671117 0.0106526 0.0745685 0.07 0 pose: 0.0 -2.41361 0.184549 0 -0.00137845 -0.00257049 -0.0864455 0.996252 uwb: 0.0 841.239 1280.04 +imu_odom_: 1691062951.331398386 0.567426 -0.526724 9.9503 -0.056459 0.0436758 0.0255663 0.07 0 pose: 0.74087227 -2.4038 0.182642 0 -0.00223627 -0.0100783 -0.0848587 0.99634 uwb: 0.49996366 841.53 1279.53 +imu_odom_: 1691062951.348398364 0.407014 -0.0885855 10.0556 -0.052198 -0.0319579 -0.0287621 0.07 0 pose: 0.0 -2.4038 0.182642 0 -0.00223627 -0.0100783 -0.0848587 0.99634 uwb: 0.0 841.53 1279.53 +imu_odom_: 1691062951.365397758 0.691924 0.00957681 9.65582 -0.0628506 -0.015979 -0.0223706 0.07 0 pose: 0.0 -2.4038 0.182642 0 -0.00223627 -0.0100783 -0.0848587 0.99634 uwb: 0.0 841.53 1279.53 +imu_odom_: 1691062951.381275759 0.955286 -0.488417 10.1275 -0.0671117 -0.0191748 0.00852212 0.04 0 pose: 0.8054785 -2.4038 0.182642 0 -0.003012 -0.00971458 -0.084907 0.996337 uwb: 0.49933953 840.905 1278.36 +imu_odom_: 1691062951.398350983 0.792481 -0.519542 9.94312 -0.0532632 0 0.00745685 0.05 0.02 pose: 0.0 -2.4038 0.182642 0 -0.003012 -0.00971458 -0.084907 0.996337 uwb: 0.0 840.905 1278.36 +imu_odom_: 1691062951.416390984 0.577003 -0.208296 10.0844 -0.0500674 0.0117179 0.056459 0.05 0.02 pose: 0.65983152 -2.4038 0.182642 0 -0.00293903 -0.0110302 -0.086431 0.996192 uwb: 0.0 840.905 1278.36 +imu_odom_: 1691062951.441445747 0.476446 -0.225055 10.1251 -0.0543285 -0.0181095 0.0681769 0.04 0 pose: 0.0 -2.4038 0.182642 0 -0.00293903 -0.0110302 -0.086431 0.996192 uwb: 0.50327972 841.566 1278.33 +imu_odom_: 1691062951.467309838 -0.600945 -0.153229 9.66539 -0.0660464 0.0916127 0.0436758 0.04 0 pose: 0.35909679 -2.4038 0.182642 0 -0.00217381 -0.00946459 -0.0863294 0.996219 uwb: 0.0 841.566 1278.33 +imu_odom_: 1691062951.492268940 -1.01035 -0.469264 9.89763 -0.0617853 -0.0468716 0.0543285 0.07 0 pose: 0.42973729 -2.4038 0.182642 0 -0.00141962 -0.00411276 -0.086037 0.996282 uwb: 0.49942411 843.432 1279.57 +imu_odom_: 1691062951.509369245 -0.0335188 -0.220267 10.1801 -0.0511327 -0.0596548 0.0490022 0.07 0 pose: 0.0 -2.4038 0.182642 0 -0.00141962 -0.00411276 -0.086037 0.996282 uwb: 0.0 843.432 1279.57 +imu_odom_: 1691062951.533236118 0.490811 -0.356736 9.75158 -0.0543285 -0.0117179 0.0458064 0.09 0 pose: 0.42059407 -2.39398 0.180724 0 -0.00148734 -0.00092543 -0.0857664 0.996314 uwb: 0.49741172 843.538 1279.95 +imu_odom_: 1691062951.557260774 0.229843 -0.296881 9.77792 -0.0468716 0.00426106 0.0383495 0.09 0 pose: 0.0 -2.39398 0.180724 0 -0.00148734 -0.00092543 -0.0857664 0.996314 uwb: 0.0 843.538 1279.95 +imu_odom_: 1691062951.582364826 0.205901 -0.37589 9.90481 -0.0436758 -0.0213053 0.0447411 0.14 0 pose: 0.31024252 -2.39398 0.180724 0 -0.00359652 -0.0012979 -0.0856931 0.996314 uwb: 0.50127900 843.002 1279.19 +imu_odom_: 1691062951.607296221 0.354342 -0.184354 10.1945 -0.0607201 -0.00639159 0.0585895 0.11 0.02 pose: 0.24999350 -2.39398 0.180724 0 -0.00373803 0.00114531 -0.0856738 0.996316 uwb: 0.0 843.002 1279.19 +imu_odom_: 1691062951.624362695 0.452504 -0.339977 10.1562 -0.056459 -0.00106526 0.0553937 0.11 0.02 pose: 0.0 -2.39398 0.180724 0 -0.00373803 0.00114531 -0.0856738 0.996316 uwb: 0.0 843.002 1279.19 +imu_odom_: 1691062951.649229927 0.181959 -0.268151 9.77074 -0.0490022 -0.0170442 0.0479369 0.12 0 pose: 0.24030197 -2.38417 0.178813 0 -0.00356117 0.00254282 -0.0855556 0.996324 uwb: 0.49950869 842.642 1278.13 +imu_odom_: 1691062951.673294539 0.512359 -0.553061 10.1299 -0.0500674 -0.0276969 0.0543285 0.12 0 pose: 0.0 -2.38417 0.178813 0 -0.00356117 0.00254282 -0.0855556 0.996324 uwb: 0.0 842.642 1278.13 +imu_odom_: 1691062951.690382304 0.445322 -0.332794 10.003 -0.0479369 -0.036219 0.0511327 0.12 0 pose: 0.0 -2.38417 0.178813 0 -0.00356117 0.00254282 -0.0855556 0.996324 uwb: 0.50039822 842.02 1277.53 +imu_odom_: 1691062951.716423426 -0.0454898 -0.222661 9.90002 -0.0543285 0.0276969 0.052198 0.17 0.02 pose: 0.90960045 -2.37435 0.17691 0 -0.00501502 0.00141551 -0.0849361 0.996373 uwb: 0.0 842.02 1277.53 +imu_odom_: 1691062951.741240495 0.500388 -0.248997 10.4291 -0.0617853 0.00426106 0.0607201 0.18 0 pose: 0.36040337 -2.37435 0.17691 0 -0.00451635 0.00321603 -0.084708 0.99639 uwb: 0.49846166 842.183 1277.24 +imu_odom_: 1691062951.755214897 0.658405 -0.323217 9.91678 -0.0607201 -0.0447411 0.0511327 0.18 0 pose: 0.0 -2.37435 0.17691 0 -0.00451635 0.00321603 -0.084708 0.99639 uwb: 0.0 842.183 1277.24 +imu_odom_: 1691062951.778344188 0.533907 -0.237026 9.79228 -0.0490022 -0.0191748 0.0553937 0.18 0 pose: 0.0 -2.37435 0.17691 0 -0.00451635 0.00321603 -0.084708 0.99639 uwb: 0.0 842.183 1277.24 +imu_odom_: 1691062951.804280025 -0.158017 -0.31364 9.6223 -0.0490022 0.0127832 0.0415453 0.13 0 pose: 0.6976848 -2.37435 0.17691 0 -0.00432553 0.00258173 -0.0846371 0.996399 uwb: 0.50006282 842.899 1277.11 +imu_odom_: 1691062951.827303155 0.584185 -0.136469 10.2065 -0.056459 -0.0330232 0.0500674 0.15 0 pose: 0.38872549 -2.36453 0.175018 0 -0.00389426 -0.00139506 -0.0843268 0.99643 uwb: 0.0 842.899 1277.11 +imu_odom_: 1691062951.851433097 0.251391 -0.237026 9.94073 -0.076699 -0.0170442 0.0585895 0.15 0 pose: 0.0 -2.36453 0.175018 0 -0.00389426 -0.00139506 -0.0843268 0.99643 uwb: 0.49988492 843.478 1276.65 +imu_odom_: 1691062951.868241461 0.134075 -0.531513 9.14106 -0.0617853 0.00426106 0.0394148 0.19 0.02 pose: 0.48977050 -2.35471 0.173134 0 -0.00271504 -0.000869578-0.0841385 0.99645 uwb: 0.0 843.478 1276.65 +imu_odom_: 1691062951.885223356 0.711078 -0.220267 9.9527 -0.0458064 -0.0372843 0.04048 0.19 0.02 pose: 0.0 -2.35471 0.173134 0 -0.00271504 -0.000869578-0.0841385 0.99645 uwb: 0.50278974 844.661 1276.8 +imu_odom_: 1691062951.910364739 0.418985 -0.409408 9.84496 -0.0628506 0.00213053 0.052198 0.15 0 pose: 0.47019204 -2.35471 0.173134 0 -0.00226088 0.000380561 -0.0838262 0.996478 uwb: 0.0 844.661 1276.8 +imu_odom_: 1691062951.934333981 0.617704 -0.0383072 9.50259 -0.0607201 -0.0170442 0.0426106 0.15 0 pose: 0.0 -2.35471 0.173134 0 -0.00226088 0.000380561 -0.0838262 0.996478 uwb: 0.49926662 844.133 1276.05 +imu_odom_: 1691062951.960245612 0.225055 -0.227449 9.56244 -0.0703074 0.00958738 0.0756338 0.2 0 pose: 0.33972541 -2.34489 0.171259 0 -0.00347591 -0.000701167-0.083777 0.996478 uwb: 0.0 844.133 1276.05 +imu_odom_: 1691062951.982218219 0.68953 -0.143652 10.3573 -0.052198 0.00852212 0.0383495 0.2 0 pose: 0.0 -2.34489 0.171259 0 -0.00347591 -0.000701167-0.083777 0.996478 uwb: 0.49686926 844.662 1276.24 +imu_odom_: 1691062952.7223402 0.691924 -0.378284 10.2615 -0.0585895 0.00532632 0.0543285 0.17 0 pose: 0.50123525 -2.33506 0.169386 0 -0.00340488 -0.00131197 -0.0834872 0.996502 uwb: 0.0 844.662 1276.24 +imu_odom_: 1691062952.31256516 0.61531 -0.124498 10.1634 -0.0479369 -0.0468716 0.0308927 0.17 0 pose: 0.0 -2.33506 0.169386 0 -0.00340488 -0.00131197 -0.0834872 0.996502 uwb: 0.50117109 845.214 1276.38 +imu_odom_: 1691062952.48201955 0.557849 -0.241814 9.75877 -0.0756338 -0.00213053 0.0660464 0.24 0 pose: 0.48937677 -2.32524 0.167519 0 -0.00266497 -0.00214741 -0.083116 0.996534 uwb: 0.0 845.214 1276.38 +imu_odom_: 1691062952.74193789 0.337582 -0.572214 10.0221 -0.0617853 -0.00319579 0.0649811 0.24 0 pose: 0.0 -2.32524 0.167519 0 -0.00266497 -0.00214741 -0.083116 0.996534 uwb: 0.0 845.214 1276.38 +imu_odom_: 1691062952.99478373 0.651223 -0.253785 9.83538 -0.0628506 0.0170442 0.0511327 0.21 -0.02 pose: 0.46898170 -2.32524 0.167519 0 -0.00194414 -0.00638468 -0.0830231 0.996525 uwb: 0.50065196 845.043 1275.56 +imu_odom_: 1691062952.116479809 0.138864 -0.292093 9.46667 -0.0458064 0.00958738 0.0383495 0.21 -0.02 pose: 0.0 -2.32524 0.167519 0 -0.00194414 -0.00638468 -0.0830231 0.996525 uwb: 0.0 845.043 1275.56 +imu_odom_: 1691062952.141225132 0.172383 -0.294487 9.44991 -0.0479369 -0.00106526 0.0532632 0.21 0.02 pose: 0.43229507 -2.31541 0.16566 0 -0.00420035 -0.00636894 -0.082508 0.996561 uwb: 0.49993741 845.24 1275.21 +imu_odom_: 1691062952.166230023 0.378284 -0.0574608 9.95748 -0.0383495 0.0170442 0.04048 0.21 0.02 pose: 0.0 -2.31541 0.16566 0 -0.00420035 -0.00636894 -0.082508 0.996561 uwb: 0.0 845.24 1275.21 +imu_odom_: 1691062952.190215014 0.682347 -0.102951 10.5489 -0.056459 0.00426106 0.0596548 0.2 0 pose: 0.42885943 -2.30559 0.163811 0 -0.00371157 -0.00534357 -0.0823631 0.996581 uwb: 0.50046530 844.844 1274.23 +imu_odom_: 1691062952.207261073 0.122104 -0.320823 9.59596 -0.0628506 0.00106526 0.052198 0.2 0 pose: 0.0 -2.30559 0.163811 0 -0.00371157 -0.00534357 -0.0823631 0.996581 uwb: 0.0 844.844 1274.23 +imu_odom_: 1691062952.231321602 0.299275 -0.158017 9.56484 -0.0585895 0.00745685 0.0532632 0.17 0 pose: 0.50058196 -2.29576 0.161967 0 -0.000673621-0.00323281 -0.0821572 0.996614 uwb: 0.50032532 844.714 1273.34 +imu_odom_: 1691062952.257262981 0.483629 -0.442927 9.88566 -0.0596548 0 0.0436758 0.17 0 pose: 0.40908849 -2.28593 0.160127 0 -9.7067e-05 -0.00211189 -0.0818397 0.996643 uwb: 0.0 844.714 1273.34 +imu_odom_: 1691062952.270241107 0.521936 -0.155623 9.80904 -0.0553937 -0.00852212 0.0394148 0.17 0 pose: 0.41979496 -2.28593 0.160127 0 -0.00201607 -0.0010301 -0.0816771 0.996656 uwb: 0.0 844.714 1273.34 +imu_odom_: 1691062952.295465902 0.596156 -0.356736 9.67497 -0.0511327 -0.0191748 0.0447411 0.17 0 pose: 0.0 -2.28593 0.160127 0 -0.00201607 -0.0010301 -0.0816771 0.996656 uwb: 0.49919079 846.005 1273.29 +imu_odom_: 1691062952.320346259 0.758962 -0.246603 9.82102 -0.0383495 -0.0223706 0.0426106 0.22 0 pose: 0.38202921 -2.2761 0.158294 0 -0.00287688 -0.00406455 -0.0816136 0.996652 uwb: 0.0 846.005 1273.29 +imu_odom_: 1691062952.345315861 0.4956 -0.189142 9.77792 -0.0649811 -0.0181095 0.0639159 0.22 0 pose: 0.0 -2.2761 0.158294 0 -0.00287688 -0.00406455 -0.0816136 0.996652 uwb: 0.50183605 845.655 1272.79 +imu_odom_: 1691062952.362188679 0.828394 -0.222661 9.8689 -0.052198 -0.0436758 0.0394148 0.2 0 pose: 0.32900728 -2.26627 0.156463 0 -0.00206325 -0.00647576 -0.0814873 0.996651 uwb: 0.0 845.655 1272.79 +imu_odom_: 1691062952.378296792 0.826 -0.435745 9.81623 -0.0426106 0.0756338 0.0447411 0.2 0 pose: 0.0 -2.26627 0.156463 0 -0.00206325 -0.00647576 -0.0814873 0.996651 uwb: 0.0 845.655 1272.79 +imu_odom_: 1691062952.395457469 0.0215478 -0.469264 9.73243 -0.0319579 -0.00958738 0.04048 0.2 0 pose: 0.25050388 -2.26627 0.156463 0 -0.000730696-0.00676295 -0.0812907 0.996667 uwb: 0.49743798 845.876 1272.4 +imu_odom_: 1691062952.420181501 0.0335188 -0.0311246 9.43076 -0.052198 -0.0191748 0.0479369 0.24 0 pose: 0.0 -2.26627 0.156463 0 -0.000730696-0.00676295 -0.0812907 0.996667 uwb: 0.0 845.876 1272.4 +imu_odom_: 1691062952.445462001 0.3304 -0.474052 9.43076 -0.0660464 0.00106526 0.0394148 0.23 0 pose: 0.66764483 -2.25643 0.154638 0 -0.000944158-0.00477812 -0.0811253 0.996692 uwb: 0.50017074 845.229 1271.33 +imu_odom_: 1691062952.468250645 0.718261 -0.294487 9.65582 -0.0671117 -0.00319579 0.0468716 0.23 0 pose: 0.0 -2.25643 0.154638 0 -0.000944158-0.00477812 -0.0811253 0.996692 uwb: 0.0 845.229 1271.33 +imu_odom_: 1691062952.493193998 0.387861 -0.368707 9.71806 -0.0639159 0.0585895 0.0415453 0.18 0 pose: 0.8083367 -2.25643 0.154638 0 -0.00162423 -0.00425715 -0.0811228 0.996694 uwb: 0.49982075 843.812 1269.43 +imu_odom_: 1691062952.511392365 0.155623 -0.0263362 10.1227 -0.0511327 -0.00426106 0.0500674 0.18 0 pose: 0.0 -2.25643 0.154638 0 -0.00162423 -0.00425715 -0.0811228 0.996694 uwb: 0.0 843.812 1269.43 +imu_odom_: 1691062952.529276626 0.325611 -0.0574608 9.64145 -0.0852212 -0.0660464 0.0692422 0.2 0 pose: 0.49082336 -2.2466 0.152816 0 -0.00412751 -0.00430841 -0.0810267 0.996694 uwb: 0.0 843.812 1269.43 +imu_odom_: 1691062952.554301349 0.0191536 -0.272939 10.094 -0.0575243 0.0149137 0.0266316 0.2 0 pose: 0.0 -2.2466 0.152816 0 -0.00412751 -0.00430841 -0.0810267 0.996694 uwb: 0.49922579 843.399 1267.44 +imu_odom_: 1691062952.572376348 -0.11971 -0.138864 9.11473 -0.052198 0.0628506 0.0415453 0.19 0 pose: 0.42125320 -2.23677 0.150996 0 -0.00300491 -0.00119366 -0.0807865 0.996726 uwb: 0.0 843.399 1267.44 +imu_odom_: 1691062952.596170892 -0.486023 -0.299275 11.6406 -0.0298274 0.0287621 0.0372843 0.19 0 pose: 0.0 -2.23677 0.150996 0 -0.00300491 -0.00119366 -0.0807865 0.996726 uwb: 0.50190606 843.792 1266.77 +imu_odom_: 1691062952.620349831 -0.0957681 -0.0933739 11.0636 -0.0543285 -0.0223706 0.0585895 0.24 0 pose: 0.42740702 -2.22694 0.149181 0 -0.00188008 0.00262454 -0.080788 0.996726 uwb: 0.0 843.792 1266.77 +imu_odom_: 1691062952.638506784 0.847547 -0.339977 8.79869 -0.0511327 -0.0500674 0.0575243 0.24 0 pose: 0.0 -2.22694 0.149181 0 -0.00188008 0.00262454 -0.080788 0.996726 uwb: 0.49954368 843.893 1266.07 +imu_odom_: 1691062952.655182739 0.483629 0.102951 10.1275 -0.0511327 0 0.0628506 0.24 0 pose: 0.0 -2.22694 0.149181 0 -0.00188008 0.00262454 -0.080788 0.996726 uwb: 0.0 843.893 1266.07 +imu_odom_: 1691062952.680179755 0.509965 -0.047884 10.5345 -0.052198 -0.0436758 0.0234358 0.18 0 pose: 0.42033451 -2.2171 0.147365 0 -0.0007372350.00731803 -0.0807198 0.99671 uwb: 0.49968368 843.178 1264.63 +imu_odom_: 1691062952.706221170 0.754174 0.0215478 10.1131 -0.0553937 -0.00532632 0.0394148 0.19 -0.02 pose: 0.75933078 -2.20727 0.145551 0 0.00220683 0.00281743 -0.0803951 0.996757 uwb: 0.0 843.178 1264.63 +imu_odom_: 1691062952.722313242 0.0790087 -0.426168 9.38288 -0.0660464 -0.00319579 0.0479369 0.19 -0.02 pose: 0.0 -2.20727 0.145551 0 0.00220683 0.00281743 -0.0803951 0.996757 uwb: 0.0 843.178 1264.63 +imu_odom_: 1691062952.747242596 0.275333 -0.270545 9.3326 -0.0617853 -0.0170442 0.0351537 0.18 0 pose: 0.7213668 -2.20727 0.145551 0 0.00246504 0.00213925 -0.0803936 0.996758 uwb: 0.49916163 842.292 1262.98 +imu_odom_: 1691062952.770166274 0.318429 -0.308852 9.82102 -0.0500674 -0.0106526 0.0468716 0.18 0 pose: 0.0 -2.20727 0.145551 0 0.00246504 0.00213925 -0.0803936 0.996758 uwb: 0.0 842.292 1262.98 +imu_odom_: 1691062952.795146375 0.134075 -0.402226 9.90242 -0.0575243 -0.00426106 0.0639159 0.2 0 pose: 0.41934581 -2.19743 0.143743 0 0.00162789 0.00218243 -0.0803443 0.996763 uwb: 0.50120901 842.378 1262.32 +imu_odom_: 1691062952.812151894 0.866701 -0.146046 10.0006 -0.0458064 -0.0191748 0.0511327 0.2 0 pose: 0.0 -2.19743 0.143743 0 0.00162789 0.00218243 -0.0803443 0.996763 uwb: 0.0 842.378 1262.32 +imu_odom_: 1691062952.836176842 0.577003 -0.134075 9.79228 -0.052198 0.00213053 0.036219 0.18 0.02 pose: 0.49894289 -2.1876 0.141937 0 -0.00224727 0.00471979 -0.0802035 0.996765 uwb: 0.49847625 842.068 1261.28 +imu_odom_: 1691062952.861200107 0.713472 0.0191536 10.1083 -0.0436758 -0.0479369 0.0458064 0.18 0.02 pose: 0.0 -2.1876 0.141937 0 -0.00224727 0.00471979 -0.0802035 0.996765 uwb: 0.0 842.068 1261.28 +imu_odom_: 1691062952.875164593 0.31364 -0.328006 9.00938 -0.0713727 0.0191748 0.0628506 0.18 0.02 pose: 0.40056065 -2.17776 0.140135 0 -0.00247103 0.00362408 -0.0799299 0.996791 uwb: 0.0 842.068 1261.28 +imu_odom_: 1691062952.899167667 0.392649 -0.354342 9.63906 -0.0607201 -0.0276969 0.0681769 0.18 0.02 pose: 0.0 -2.17776 0.140135 0 -0.00247103 0.00362408 -0.0799299 0.996791 uwb: 0.50039822 840.294 1259.09 +imu_odom_: 1691062952.925159501 0.260968 -0.047884 10.0461 -0.0585895 0.00319579 0.0532632 0.23 0.02 pose: 0.48933594 -2.16792 0.138337 0 -0.0007902588.26355e-05 -0.0798012 0.99681 uwb: 0.0 840.294 1259.09 +imu_odom_: 1691062952.938158043 0.371101 -0.275333 9.53132 -0.0468716 -0.0276969 0.04048 0.23 0.02 pose: 0.0 -2.16792 0.138337 0 -0.0007902588.26355e-05 -0.0798012 0.99681 uwb: 0.49933954 840.751 1258.35 +imu_odom_: 1691062952.963300301 0.248997 -0.23942 9.33739 -0.0617853 -0.00106526 0.0479369 0.17 0.02 pose: 0.39009042 -2.16613 0.148175 0 -0.0030754 0.000953706 -0.0793222 0.996844 uwb: 0.0 840.751 1258.35 +imu_odom_: 1691062952.990158627 0.177171 -0.411803 9.98622 -0.04048 -0.00639159 0.04048 0.17 0.02 pose: 0.0 -2.16613 0.148175 0 -0.0030754 0.000953706 -0.0793222 0.996844 uwb: 0.50099902 840.958 1257.01 +imu_odom_: 1691062953.15217182 0.442927 -0.071826 9.83538 -0.0628506 -0.0106526 0.0628506 0.2 -0.02 pose: 0.39155742 -2.15629 0.146388 0 -0.00250228 0.0025622 -0.0791555 0.996856 uwb: 0.0 840.958 1257.01 +imu_odom_: 1691062953.32198203 0.711078 -0.435745 10.4315 -0.0681769 0.0138484 0.0372843 0.2 -0.02 pose: 0.0 -2.15629 0.146388 0 -0.00250228 0.0025622 -0.0791555 0.996856 uwb: 0.50207229 840.202 1255.23 +imu_odom_: 1691062953.58281616 0.356736 -0.141258 9.93594 -0.0660464 0.00745685 0.0628506 0.18 0.02 pose: 0.52852202 -2.14645 0.144605 0 -0.00296437 0.00559106 -0.0789629 0.996857 uwb: 0.0 840.202 1255.23 +imu_odom_: 1691062953.83171305 0.948104 -0.189142 9.87608 -0.0575243 -0.0415453 0.0458064 0.18 0.02 pose: 0.0 -2.14645 0.144605 0 -0.00296437 0.00559106 -0.0789629 0.996857 uwb: 0.49793671 840.334 1254.04 +imu_odom_: 1691062953.106163813 0.682347 -0.220267 10.0796 -0.0617853 -0.0276969 0.056459 0.2 0 pose: 0.41962580 -2.13661 0.142825 0 -0.00185008 0.00310473 -0.0786928 0.996892 uwb: 0.0 840.334 1254.04 +imu_odom_: 1691062953.122268717 0.921768 -0.148441 10.1275 -0.0628506 0.00426106 0.0372843 0.2 0 pose: 0.0 -2.13661 0.142825 0 -0.00185008 0.00310473 -0.0786928 0.996892 uwb: 0.0 840.334 1254.04 +imu_odom_: 1691062953.147157824 0.316035 -0.258574 9.49062 -0.0745685 0.0319579 0.0649811 0.25 0 pose: 0.48984925 -2.12677 0.141053 0 -0.00044219 -0.000807636-0.078355 0.996925 uwb: 0.49943286 840.249 1252.7 +imu_odom_: 1691062953.171293307 0.383072 -0.272939 9.69652 -0.0532632 0.0298274 0.0596548 0.25 0 pose: 0.0 -2.12677 0.141053 0 -0.00044219 -0.000807636-0.078355 0.996925 uwb: 0.0 840.249 1252.7 +imu_odom_: 1691062953.196276325 0.323217 0.0502782 10.2639 -0.100135 0.0117179 0.0713727 0.19 0 pose: 0.39974403 -2.11693 0.139287 0 -0.000738878-0.00319268 -0.0781402 0.996937 uwb: 0.50028740 840.275 1251.69 +imu_odom_: 1691062953.212139451 0.799663 -0.356736 9.8665 -0.0862864 -0.0191748 0.0490022 0.19 0 pose: 0.0 -2.11693 0.139287 0 -0.000738878-0.00319268 -0.0781402 0.996937 uwb: 0.0 840.275 1251.69 +imu_odom_: 1691062953.237198006 0.600945 -0.459687 9.84496 -0.0596548 -0.0617853 0.0394148 0.25 0.02 pose: 0.49164873 -2.10708 0.13753 0 -0.00188968 0.00133141 -0.0775505 0.996986 uwb: 0.50103111 840.01 1250.65 +imu_odom_: 1691062953.253195292 0.505177 -0.172383 9.79468 -0.0436758 0.0149137 0.0340885 0.25 0.02 pose: 0.0 -2.10708 0.13753 0 -0.00188968 0.00133141 -0.0775505 0.996986 uwb: 0.0 840.01 1250.65 +imu_odom_: 1691062953.270201395 0.591368 -0.0837971 10.0389 -0.0479369 -0.0149137 0.0458064 0.18 0.02 pose: 0.73879573 -2.09724 0.135785 0 -0.00202329 -0.00284956 -0.0772591 0.997005 uwb: 0.0 840.01 1250.65 +imu_odom_: 1691062953.295187912 -0.0407014 -0.40462 9.7851 -0.0617853 0.0276969 0.0426106 0.18 0.02 pose: 0.0 -2.09724 0.135785 0 -0.00202329 -0.00284956 -0.0772591 0.997005 uwb: 0.49926663 840.042 1249.16 +imu_odom_: 1691062953.311137368 0.538695 -0.222661 10.2544 -0.0245011 -0.0756338 0.0266316 0.19 -0.02 pose: 0.7953583 -2.09724 0.135785 0 -0.00140713 -0.00342818 -0.077237 0.997006 uwb: 0.0 840.042 1249.16 +imu_odom_: 1691062953.336132926 0.45011 -0.124498 10.0006 -0.0117179 -0.0628506 0.0223706 0.18 0.02 pose: 0.0 -2.09724 0.135785 0 -0.00140713 -0.00342818 -0.077237 0.997006 uwb: 0.50078028 839.66 1247.85 +imu_odom_: 1691062953.360202788 0.68953 -0.0335188 9.96227 -0.036219 -0.00639159 0.0490022 0.2 0 pose: 0.74984051 -2.0805 0.132652 0 0.00191936 -0.00388317 -0.0774945 0.996983 uwb: 0.0 839.66 1247.85 +imu_odom_: 1691062953.377201016 0.612916 -0.392649 9.7851 -0.0447411 0.0149137 0.0490022 0.2 0 pose: 0.0 -2.0805 0.132652 0 0.00191936 -0.00388317 -0.0774945 0.996983 uwb: 0.0 839.66 1247.85 +imu_odom_: 1691062953.393125681 0.605733 0.0263362 10.082 -0.00319579 0.00426106 0.0213053 0.19 0 pose: 0.41068090 -2.07758 0.132115 0 0.00176543 -0.00638585 -0.0772876 0.996987 uwb: 0.49893123 841.667 1248.05 +imu_odom_: 1691062953.410128576 0.311246 -0.277727 9.36851 -0.0607201 0.0490022 0.0436758 0.19 0 pose: 0.7008929 -2.07758 0.132115 0 0.00257946 -0.00668016 -0.0773534 0.996978 uwb: 0.0 841.667 1248.05 +imu_odom_: 1691062953.426107196 0.531513 -0.301669 10.319 -0.0596548 -0.0330232 0.0479369 0.19 0 pose: 0.0 -2.07758 0.132115 0 0.00257946 -0.00668016 -0.0773534 0.996978 uwb: 0.0 841.667 1248.05 +imu_odom_: 1691062953.443142755 0.311246 -0.296881 9.48104 -0.0394148 -0.0245011 0.0383495 0.19 -0.02 pose: 0.34014831 -2.06773 0.130367 0 0.00196404 -0.00530701 -0.0773641 0.996987 uwb: 0.49990826 841.718 1247.01 +imu_odom_: 1691062953.459263117 0.253785 -0.0885855 10.0868 -0.0426106 -0.0298274 0.0426106 0.19 -0.02 pose: 0.0 -2.06773 0.130367 0 0.00196404 -0.00530701 -0.0773641 0.996987 uwb: 0.0 841.718 1247.01 +imu_odom_: 1691062953.484193638 0.25618 -0.134075 10.3334 -0.04048 -0.052198 0.0383495 0.25 0 pose: 0.41038341 -2.05788 0.128619 0 0.00142413 -0.00296552 -0.0773155 0.997001 uwb: 0.49828376 841.608 1245.77 +imu_odom_: 1691062953.507172730 0.37589 -0.629675 9.84017 -0.0596548 -0.0234358 0.0553937 0.25 0 pose: 0.0 -2.05788 0.128619 0 0.00142413 -0.00296552 -0.0773155 0.997001 uwb: 0.0 841.608 1245.77 +imu_odom_: 1691062953.523110810 -0.100556 -0.225055 9.45231 -0.0340885 -0.0234358 0.04048 0.19 0 pose: 0.8098825 -2.05788 0.128619 0 0.00171017 -0.00239037 -0.0773225 0.997002 uwb: 0.0 841.608 1245.77 +imu_odom_: 1691062953.539098764 0.517148 -0.0909797 10.3717 -0.0617853 -0.0266316 0.052198 0.25 0 pose: 0.0 -2.05788 0.128619 0 0.00171017 -0.00239037 -0.0773225 0.997002 uwb: 0.49996076 842.09 1245.49 +imu_odom_: 1691062953.555249749 0.275333 -0.371101 9.93115 -0.0468716 0.00958738 0.0511327 0.18 -0.02 pose: 0.0 -2.05788 0.128619 0 0.00171017 -0.00239037 -0.0773225 0.997002 uwb: 0.0 842.09 1245.49 +imu_odom_: 1691062953.580151105 -0.0407014 -0.0430956 10.1059 -0.0511327 0.04048 0.0500674 0.18 -0.02 pose: 0.79863061 -2.03819 0.12513 0 0.000627545 -0.000370464-0.0769995 0.997031 uwb: 0.0 842.09 1245.49 +imu_odom_: 1691062953.596099685 0.00718261 -0.328006 9.96706 -0.0649811 0.0181095 0.0703074 0.18 0 pose: 0.0 -2.03819 0.12513 0 0.000627545 -0.000370464-0.0769995 0.997031 uwb: 0.50105152 842.473 1244.89 +imu_odom_: 1691062953.613130286 0.337582 -0.514753 9.19373 -0.0617853 0.00106526 0.0436758 0.18 0 pose: 0.39987819 -2.03819 0.12513 0 0.00101446 0.00378501 -0.0767156 0.997045 uwb: 0.0 842.473 1244.89 +imu_odom_: 1691062953.638266712 0.665588 -0.155623 10.2208 -0.0511327 -0.0372843 0.0394148 0.18 0 pose: 0.25917464 -2.02834 0.123395 0 -0.00104166 0.00479851 -0.0765538 0.997053 uwb: 0.50041573 843.069 1244.44 +imu_odom_: 1691062953.654436071 0.861913 -0.325611 9.60075 -0.0553937 0.0234358 0.0383495 0.18 0 pose: 0.8270023 -2.02834 0.123395 0 -0.0009001620.00384408 -0.0765549 0.997058 uwb: 0.0 843.069 1244.44 +imu_odom_: 1691062953.680122839 0.521936 -0.213084 9.5816 -0.0532632 0.0287621 0.0426106 0.18 0 pose: 0.0 -2.02834 0.123395 0 -0.0009001620.00384408 -0.0765549 0.997058 uwb: 0.0 843.069 1244.44 +imu_odom_: 1691062953.705357551 0.713472 -0.129287 9.94551 -0.0607201 -0.0607201 0.0596548 0.18 0 pose: 0.41887626 -2.01849 0.121663 0 -0.000924548-0.000175561-0.0765565 0.997065 uwb: 0.49865416 844.303 1244.39 +imu_odom_: 1691062953.728258772 0.622492 -0.0670376 9.96227 -0.0692422 0.00213053 0.04048 0.18 -0.02 pose: 0.42069616 -2.01132 0.120402 0 -0.000205303-0.0047239 -0.0762821 0.997075 uwb: 0.0 844.303 1244.39 +imu_odom_: 1691062953.753262788 0.416591 -0.21069 9.991 -0.0660464 0.00213053 0.0447411 0.18 -0.02 pose: 0.6763360 -2.00864 0.119933 0 0.000223463 -0.00518154 -0.0762815 0.997073 uwb: 0.50183022 845.284 1244.25 +imu_odom_: 1691062953.779377116 0.344765 -0.071826 10.0509 -0.0735032 -0.00639159 0.0479369 0.23 0 pose: 0.41141877 -2.00195 0.11876 0 0.00063466 -0.00372824 -0.0762172 0.997084 uwb: 0.0 845.284 1244.25 +imu_odom_: 1691062953.805335411 0.138864 -0.059855 10.4722 -0.0458064 -0.0170442 0.0372843 0.23 0 pose: 0.0 -2.00195 0.11876 0 0.00063466 -0.00372824 -0.0762172 0.997084 uwb: 0.49948537 844.965 1242.88 +imu_odom_: 1691062953.821115126 0.395043 -0.442927 9.54568 -0.0468716 -0.00319579 0.0415453 0.21 0.02 pose: 0.52072623 -1.99155 0.11694 0 0.00347293 0.000224608 -0.0761552 0.99709 uwb: 0.0 844.965 1242.88 +imu_odom_: 1691062953.837106578 0.158017 -0.260968 10.2232 -0.0426106 0.00213053 0.0351537 0.21 0.02 pose: 0.0 -1.99155 0.11694 0 0.00347293 0.000224608 -0.0761552 0.99709 uwb: 0.50052363 845.473 1242.08 +imu_odom_: 1691062953.861117527 0.337582 -0.237026 9.52653 -0.0660464 0.02024 0.0628506 0.23 0 pose: 0.31771167 -1.98894 0.116483 0 0.00164226 0.00192515 -0.0761791 0.997091 uwb: 0.0 845.473 1242.08 +imu_odom_: 1691062953.878226291 0.0646434 -0.248997 10.0868 -0.0458064 0.0117179 0.0511327 0.23 0 pose: 0.8039329 -1.98894 0.116483 0 0.000929555 0.00245914 -0.0760876 0.997098 uwb: 0.0 845.473 1242.08 +imu_odom_: 1691062953.903107522 0.155623 -0.131681 10.3789 -0.0319579 -0.0191748 0.0394148 0.19 0 pose: 0.33080384 -1.97909 0.114761 0 -0.0003869930.00536194 -0.075806 0.997108 uwb: 0.49931913 846.14 1241.5 +imu_odom_: 1691062953.928267863 0.629675 0.0047884 10.2735 -0.0255663 -0.0532632 0.0436758 0.19 0 pose: 0.0 -1.97909 0.114761 0 -0.0003869930.00536194 -0.075806 0.997108 uwb: 0.0 846.14 1241.5 +imu_odom_: 1691062953.953119638 0.641646 -0.0933739 9.67736 -0.0628506 0.00958738 0.0681769 0.18 0.02 pose: 0.8950733 -1.97909 0.114761 0 0.000288398 0.00597426 -0.0758036 0.997105 uwb: 0.49987909 846.412 1240.61 +imu_odom_: 1691062953.979239799 0.344765 -0.201113 9.62708 -0.052198 0.0276969 0.0447411 0.18 0.02 pose: 0.0 -1.97909 0.114761 0 0.000288398 0.00597426 -0.0758036 0.997105 uwb: 0.0 846.412 1240.61 +imu_odom_: 1691062954.2226473 0.0981623 -0.342371 9.42358 -0.0585895 0.052198 0.0458064 0.18 0.02 pose: 0.48086644 -1.96924 0.113044 0 0.00292036 0.0034773 -0.0756394 0.997125 uwb: 0.49936578 845.98 1239.44 +imu_odom_: 1691062954.27171285 0.167594 -0.047884 9.51216 -0.0532632 -0.0138484 0.0490022 0.19 0 pose: 0.50883857 -1.95939 0.11133 0 0.000598155 0.00429676 -0.0752979 0.997152 uwb: 0.0 845.98 1239.44 +imu_odom_: 1691062954.52080224 0.232238 -0.299275 10.0389 -0.0532632 0.00426106 0.0468716 0.19 0 pose: 0.0 -1.95939 0.11133 0 0.000598155 0.00429676 -0.0752979 0.997152 uwb: 0.49966911 846.546 1239.02 +imu_odom_: 1691062954.74220822 0.328006 -0.0215478 10.24 -0.0511327 0.0127832 0.0415453 0.18 -0.02 pose: 0.65932699 -1.94954 0.109624 0 -0.0002744030.008088 -0.0750474 0.997147 uwb: 0.0 846.546 1239.02 +imu_odom_: 1691062954.91148180 0.572214 -0.366313 9.34696 -0.0671117 -0.0436758 0.0532632 0.18 -0.02 pose: 0.7005138 -1.94954 0.109624 0 0.000370491 0.00782912 -0.0750359 0.99715 uwb: 0.49960203 846.669 1238.37 +imu_odom_: 1691062954.117251133 0.304064 -0.232238 9.76834 -0.0532632 -0.0266316 0.0447411 0.25 0.02 pose: 0.0 -1.94954 0.109624 0 0.000370491 0.00782912 -0.0750359 0.99715 uwb: 0.0 846.669 1238.37 +imu_odom_: 1691062954.142199444 0.61531 -0.373495 10.3094 -0.0639159 -0.0223706 0.052198 0.25 0.02 pose: 0.32062818 -1.93968 0.107922 0 0.000693985 0.00554032 -0.0749004 0.997175 uwb: 0.50099319 846.768 1237.76 +imu_odom_: 1691062954.158166690 0.275333 -0.1652 9.76834 -0.04048 0.0213053 0.0500674 0.21 -0.02 pose: 0.0 -1.93968 0.107922 0 0.000693985 0.00554032 -0.0749004 0.997175 uwb: 0.0 846.768 1237.76 +imu_odom_: 1691062954.184095529 0.332794 -0.500388 9.56244 -0.076699 0.0426106 0.0585895 0.21 -0.02 pose: 0.58072735 -1.92983 0.106223 0 -0.0023643 0.00254139 -0.0746598 0.997203 uwb: 0.50070738 846.543 1236.29 +imu_odom_: 1691062954.210080364 0.0670376 -0.215478 10.0533 -0.0553937 0.04048 0.0468716 0.23 0.02 pose: 0.34874614 -1.91996 0.104514 0 -0.00436655 0.00412565 -0.0743717 0.997212 uwb: 0.0 846.543 1236.29 +imu_odom_: 1691062954.236080656 0.567426 -0.268151 10.3142 -0.072438 0.0138484 0.0575243 0.23 0.02 pose: 0.8066160 -1.91997 0.104528 0 -0.00402907 0.00504541 -0.0743385 0.997212 uwb: 0.50016783 845.994 1234.44 +imu_odom_: 1691062954.262078033 0.658405 -0.138864 10.0413 -0.0479369 0.0287621 0.0490022 0.22 0.02 pose: 0.43918967 -1.91013 0.102727 0 -0.00347053 0.00473791 -0.0740405 0.997238 uwb: 0.0 845.994 1234.44 +imu_odom_: 1691062954.275078908 0.316035 -0.299275 9.92157 -0.0511327 0.0266316 0.04048 0.22 0.02 pose: 0.0 -1.91013 0.102727 0 -0.00347053 0.00473791 -0.0740405 0.997238 uwb: 0.0 845.994 1234.44 +imu_odom_: 1691062954.300075925 0.25618 -0.335188 9.67976 -0.0458064 0.0117179 0.0490022 0.18 0 pose: 0.38998252 -1.90558 0.101918 0 -0.00320214 0.00395208 -0.0739194 0.997251 uwb: 0.50055573 846.188 1234.15 +imu_odom_: 1691062954.324082208 0.457293 -0.244209 9.51935 -0.0458064 0.0617853 0.0340885 0.18 0 pose: 0.0 -1.90558 0.101918 0 -0.00320214 0.00395208 -0.0739194 0.997251 uwb: 0.0 846.188 1234.15 +imu_odom_: 1691062954.341218678 0.308852 -0.0574608 10.2017 -0.0436758 0.00532632 0.04048 0.26 -0.02 pose: 0.49003300 -1.89336 0.0997196 0 -0.00352726 0.00475537 -0.0738772 0.99725 uwb: 0.49747590 846.364 1232.99 +imu_odom_: 1691062954.359093314 0.28491 -0.0502782 10.0628 -0.0617853 -0.00532632 0.0596548 0.26 -0.02 pose: 0.0 -1.89336 0.0997196 0 -0.00352726 0.00475537 -0.0738772 0.99725 uwb: 0.0 846.364 1232.99 +imu_odom_: 1691062954.384072832 0.47884 -0.126893 9.55526 -0.0617853 -0.0340885 0.0532632 0.19 0 pose: 0.35011106 -1.89045 0.0992057 0 1.9171e-05 0.00482693 -0.0736751 0.997271 uwb: 0.50004241 845.004 1231.1 +imu_odom_: 1691062954.408125778 0.500388 -0.299275 9.61751 -0.0703074 -0.00213053 0.0415453 0.19 0 pose: 0.7143088 -1.89045 0.0992057 0 0.000293166 0.00407606 -0.073625 0.997278 uwb: 0.0 845.004 1231.1 +imu_odom_: 1691062954.425317954 0.397437 -0.395043 9.91678 -0.0511327 -0.00106526 0.0351537 0.24 0 pose: 0.41889376 -1.8806 0.0974185 0 -0.0007385 0.000387462 -0.0734774 0.997297 uwb: 0.0 845.004 1231.1 +imu_odom_: 1691062954.450061527 0.395043 -0.426168 9.92636 -0.04048 -0.00745685 0.0436758 0.24 0 pose: 0.0 -1.8806 0.0974185 0 -0.0007385 0.000387462 -0.0734774 0.997297 uwb: 0.50122360 844.795 1230.1 +imu_odom_: 1691062954.477214128 0.407014 -0.0167594 10.0676 -0.0415453 0.0106526 0.0479369 0.23 0 pose: 0.8015705 -1.88061 0.0974333 0 -0.00152159 0.000453935 -0.0734953 0.997294 uwb: 0.0 844.795 1230.1 +imu_odom_: 1691062954.494142361 0.21069 -0.308852 10.1083 -0.0628506 -0.0372843 0.0543285 0.23 0 pose: 0.0 -1.88061 0.0974333 0 -0.00152159 0.000453935 -0.0734953 0.997294 uwb: 0.49913831 845.138 1229.59 +imu_odom_: 1691062954.520078199 0.402226 -0.155623 10.082 -0.0415453 -0.0276969 0.0340885 0.25 0.02 pose: 0.40968929 -1.87076 0.0956635 0 -0.00395287 0.00064926 -0.0734365 0.997292 uwb: 0.0 845.138 1229.59 +imu_odom_: 1691062954.544120646 0.526724 -0.208296 9.77792 -0.0351537 -0.0553937 0.036219 0.25 0.02 pose: 0.0 -1.87076 0.0956635 0 -0.00395287 0.00064926 -0.0734365 0.997292 uwb: 0.50019699 845.799 1229.04 +imu_odom_: 1691062954.570061442 0.344765 -0.134075 9.65103 -0.0511327 -0.0127832 0.0500674 0.2 -0.02 pose: 0.45066027 -1.86092 0.0938948 0 -0.0014769 0.00154405 -0.0732469 0.997312 uwb: 0.0 845.799 1229.04 +imu_odom_: 1691062954.596189477 0.294487 -0.0215478 9.4954 -0.0490022 -0.0223706 0.0383495 0.18 0.02 pose: 0.50018241 -1.85107 0.0921504 0 0.000860212 -0.00178615 -0.0732931 0.997308 uwb: 0.50021158 845.915 1228.01 +imu_odom_: 1691062954.613177497 0.387861 -0.64404 9.72285 -0.0585895 0.00639159 0.0468716 0.18 0.02 pose: 0.0 -1.85107 0.0921504 0 0.000860212 -0.00178615 -0.0732931 0.997308 uwb: 0.0 845.915 1228.01 +imu_odom_: 1691062954.639266160 0.347159 -0.3304 10.0293 -0.0511327 0.02024 0.0479369 0.19 0 pose: 0.60982817 -1.84121 0.0904847 0 0.00256584 0.000889355 -0.0731625 0.997316 uwb: 0.49919080 845.651 1226.69 +imu_odom_: 1691062954.662187505 0.840365 -0.110133 9.76355 -0.0703074 0.00319579 0.0585895 0.19 0 pose: 0.8973775 -1.84121 0.0904847 0 0.00172906 0.00124586 -0.0731263 0.99732 uwb: 0.0 845.651 1226.69 +imu_odom_: 1691062954.679193316 0.629675 -0.395043 9.36133 -0.0788296 0.04048 0.0458064 0.25 -0.02 pose: 0.0 -1.84121 0.0904847 0 0.00172906 0.00124586 -0.0731263 0.99732 uwb: 0.0 845.651 1226.69 +imu_odom_: 1691062954.704108379 0.3304 -0.361524 9.06445 -0.04048 0.015979 0.0479369 0.25 -0.02 pose: 0.47052162 -1.83135 0.0888207 0 -0.000261103-0.000586171-0.0728167 0.997345 uwb: 0.49989659 845.135 1224.91 +imu_odom_: 1691062954.730104297 0.258574 -0.289698 9.44513 -0.036219 -0.00532632 0.0372843 0.23 0 pose: 0.34904945 -1.82452 0.0876712 0 -0.00276654 0.000767577 -0.0726775 0.997351 uwb: 0.0 845.135 1224.91 +imu_odom_: 1691062954.756060259 0.0766145 -0.395043 9.80186 -0.0436758 0.00958738 0.0468716 0.23 0 pose: 0.7069010 -1.82149 0.0871637 0 -0.00276578 0.00146375 -0.0726836 0.99735 uwb: 0.0 845.135 1224.91 +imu_odom_: 1691062954.782088550 0.4956 -0.167594 9.81383 -0.0490022 0.015979 0.0372843 0.23 -0.02 pose: 0.44882870 -1.81472 0.0860269 0 -0.00350902 0.00592745 -0.0726019 0.997337 uwb: 0.100095687 845.124 1223.67 +imu_odom_: 1691062954.808306122 0.457293 -0.150835 9.98622 -0.0543285 -0.0138484 0.0372843 0.23 -0.02 pose: 0.0 -1.81472 0.0860269 0 -0.00350902 0.00592745 -0.0726019 0.997337 uwb: 0.0 845.124 1223.67 +imu_odom_: 1691062954.824094295 0.311246 -0.272939 9.77792 -0.0692422 -0.00106526 0.0394148 0.23 0 pose: 0.52245863 -1.80445 0.0843043 0 -0.0006159330.00165749 -0.0726641 0.997355 uwb: 0.0 845.124 1223.67 +imu_odom_: 1691062954.840124829 0.292093 -0.153229 9.90002 -0.056459 -0.0340885 0.0490022 0.23 0 pose: 0.0 -1.80445 0.0843043 0 -0.0006159330.00165749 -0.0726641 0.997355 uwb: 0.0 845.124 1223.67 +imu_odom_: 1691062954.857059186 0.804452 -0.186748 9.82341 -0.0703074 -0.00213053 0.0394148 0.23 0 pose: 0.0 -1.80445 0.0843043 0 -0.0006159330.00165749 -0.0726641 0.997355 uwb: 0.0 845.124 1223.67 +imu_odom_: 1691062954.882115408 0.292093 -0.189142 9.7037 -0.0351537 0.0383495 0.0415453 0.23 0 pose: 0.38797304 -1.80177 0.083854 0 -0.0001786840.00279127 -0.0725849 0.997358 uwb: 0.99954237 845.802 1223.11 +imu_odom_: 1691062954.908076911 0.260968 -0.316035 9.78271 -0.0458064 0 0.04048 0.23 0.02 pose: 0.35011982 -1.79074 0.0891643 0 0.00119214 0.00455579 -0.0725585 0.997353 uwb: 0.0 845.802 1223.11 +imu_odom_: 1691062954.922182847 0.25618 -0.244209 9.88326 -0.0436758 -0.00852212 0.04048 0.23 0.02 pose: 0.7098465 -1.79025 0.0920631 0 0.000601277 0.00490392 -0.0725587 0.997352 uwb: 0.0 845.802 1223.11 +imu_odom_: 1691062954.939183701 0.926556 -0.071826 10.0102 -0.0575243 -0.00639159 0.0543285 0.23 0.02 pose: 0.0 -1.79025 0.0920631 0 0.000601277 0.00490392 -0.0725587 0.997352 uwb: 0.49927538 845.677 1222.04 +imu_odom_: 1691062954.954181503 0.634463 -0.124498 10.0341 -0.0500674 -0.00639159 0.0415453 0.18 0 pose: 0.41004803 -1.78039 0.0904103 0 -0.0007518560.00640576 -0.0724918 0.997348 uwb: 0.0 845.677 1222.04 +imu_odom_: 1691062954.971296974 0.25618 -0.469264 9.37809 -0.0415453 0.0170442 0.0394148 0.18 0 pose: 0.0 -1.78039 0.0904103 0 -0.0007518560.00640576 -0.0724918 0.997348 uwb: 0.0 845.677 1222.04 +imu_odom_: 1691062954.987162434 0.100556 -0.325611 10.3094 -0.0500674 0 0.0479369 0.2 0 pose: 0.0 -1.78039 0.0904103 0 -0.0007518560.00640576 -0.0724918 0.997348 uwb: 0.50180690 845.102 1220.81 +imu_odom_: 1691062955.13100897 0.593762 -0.0885855 9.92636 -0.0575243 -0.00319579 0.0553937 0.2 0 pose: 0.49177414 -1.77053 0.0887586 0 -0.00185712 0.00561361 -0.0723844 0.997359 uwb: 0.0 845.102 1220.81 +imu_odom_: 1691062955.29029937 0.414197 -0.162806 9.97185 -0.0798948 0.0106526 0.0713727 0.2 0 pose: 0.0 -1.77053 0.0887586 0 -0.00185712 0.00561361 -0.0723844 0.997359 uwb: 0.0 845.102 1220.81 +imu_odom_: 1691062955.46043623 0.42138 -0.136469 9.98861 -0.0585895 -0.00745685 0.131028 0.24 0.11 pose: 0.49633847 -1.76066 0.0870923 0 -0.00019433 0.00289536 -0.0718901 0.997408 uwb: 0.49935121 844.726 1219.3 +imu_odom_: 1691062955.62221732 0.155623 -0.737414 9.63427 -0.0649811 0.0383495 0.20027 0.18 0.14 pose: 0.0 -1.76066 0.0870923 0 -0.00019433 0.00289536 -0.0718901 0.997408 uwb: 0.0 844.726 1219.3 +imu_odom_: 1691062955.79277707 0.126893 -0.572214 9.72764 -0.0490022 -0.0191748 0.248207 0.18 0.14 pose: 0.0 -1.76066 0.0870923 0 -0.00019433 0.00289536 -0.0718901 0.997408 uwb: 0.0 844.726 1219.3 +imu_odom_: 1691062955.95026799 0.222661 -0.246603 9.84975 -0.0255663 -0.0213053 0.298274 0.18 0.14 pose: 0.25139634 -1.76066 0.087109 0 0.000221752 0.00219041 -0.0704611 0.997512 uwb: 0.49991702 844.891 1218.26 +imu_odom_: 1691062955.112087149 0.909797 -0.418985 9.9096 -0.0830906 0.0181095 0.361125 0.18 0.26 pose: 0.0 -1.76066 0.087109 0 0.000221752 0.00219041 -0.0704611 0.997512 uwb: 0.0 844.891 1218.26 +imu_odom_: 1691062955.128086185 0.739808 -0.289698 10.0916 -0.0330232 -0.00745685 0.369647 0.18 0.26 pose: 0.32973058 -1.75081 0.0853991 0 -0.00160943 0.00432165 -0.0670283 0.99774 uwb: 0.0 844.891 1218.26 +imu_odom_: 1691062955.145155576 0.141258 -0.289698 9.43794 -0.0458064 0.015979 0.412257 0.25 0.47 pose: 0.40943556 -1.74096 0.0836583 0 -0.00218486 0.00201324 -0.0606462 0.998155 uwb: 0.50040698 845.344 1217.22 +imu_odom_: 1691062955.162265215 0.608127 -0.196325 10.1323 -0.0681769 -0.0671117 0.460194 0.25 0.47 pose: 0.0 -1.74096 0.0836583 0 -0.00218486 0.00201324 -0.0606462 0.998155 uwb: 0.0 845.344 1217.22 +imu_odom_: 1691062955.179156991 0.567426 -0.514753 9.80665 -0.0372843 0.00639159 0.496413 0.25 0.47 pose: 0.0 -1.74096 0.0836583 0 -0.00218486 0.00201324 -0.0606462 0.998155 uwb: 0.0 845.344 1217.22 +imu_odom_: 1691062955.195023326 1.10852 -0.3304 10.1873 -0.0671117 -0.00319579 0.508131 0.18 0.47 pose: 0.7960000 -1.74096 0.0836583 0 -0.00220264 0.00288797 -0.0591642 0.998242 uwb: 0.49728342 845.448 1215.87 +imu_odom_: 1691062955.211027320 0.869095 0.0646434 10.0987 -0.0500674 -0.00745685 0.550742 0.25 0.67 pose: 0.0 -1.74096 0.0836583 0 -0.00220264 0.00288797 -0.0591642 0.998242 uwb: 0.0 845.448 1215.87 +imu_odom_: 1691062955.228024674 0.713472 -0.758962 10.0724 -0.0681769 0.0170442 0.579504 0.25 0.67 pose: 0.66100397 -1.73111 0.0819743 0 -0.00313372 -0.00131432 -0.0445042 0.999003 uwb: 0.0 845.448 1215.87 +imu_odom_: 1691062955.244080581 0.208296 -0.373495 9.93594 -0.0639159 0.0351537 0.589091 0.24 0.7 pose: 0.0 -1.73111 0.0819743 0 -0.00313372 -0.00131432 -0.0445042 0.999003 uwb: 0.50164650 847.033 1215.64 +imu_odom_: 1691062955.259127964 0.325611 -0.411803 10.1538 -0.0607201 0.0138484 0.617853 0.24 0.7 pose: 0.0 -1.73111 0.0819743 0 -0.00313372 -0.00131432 -0.0445042 0.999003 uwb: 0.0 847.033 1215.64 +imu_odom_: 1691062955.275005674 0.40462 -0.387861 10.0293 -0.0809601 0 0.657268 0.24 0.7 pose: 0.32950309 -1.72125 0.0802842 0 -0.00445374 -0.00176462 -0.0357094 0.999351 uwb: 0.0 847.033 1215.64 +imu_odom_: 1691062955.291002668 0.938527 -0.603339 9.92157 -0.0703074 0.00958738 0.638093 0.19 0.61 pose: 0.39908783 -1.71605 0.0793392 0 -0.00761609 0.000395772 -0.0239851 0.999683 uwb: 0.50113902 847.429 1215.08 +imu_odom_: 1691062955.308053102 1.01754 -0.588974 10.1394 -0.0372843 -0.0266316 0.608266 0.19 0.61 pose: 0.8001997 -1.7114 0.078562 0 -0.00801547 -0.000253257-0.0215972 0.999735 uwb: 0.0 847.429 1215.08 +imu_odom_: 1691062955.324050388 1.17795 -0.0550666 9.89763 -0.0340885 0.0106526 0.617853 0.19 0.61 pose: 0.0 -1.7114 0.078562 0 -0.00801547 -0.000253257-0.0215972 0.999735 uwb: 0.0 847.429 1215.08 +imu_odom_: 1691062955.341183067 1.60412 -0.292093 10.5249 -0.0532632 -0.0788296 0.591222 0.19 0.53 pose: 0.41042717 -1.7114 0.078562 0 -0.00804984 -0.00395877 -0.00976552 0.999912 uwb: 0.49880583 847.771 1214.6 +imu_odom_: 1691062955.359350228 1.6113 -0.105345 9.03572 -0.0245011 -0.0319579 0.482565 0.12 0.35 pose: 0.0 -1.7114 0.078562 0 -0.00804984 -0.00395877 -0.00976552 0.999912 uwb: 0.0 847.771 1214.6 +imu_odom_: 1691062955.376155093 1.39343 -0.146046 9.84256 -0.056459 0.052198 0.420779 0.12 0.35 pose: 0.0 -1.7114 0.078562 0 -0.00804984 -0.00395877 -0.00976552 0.999912 uwb: 0.0 847.771 1214.6 +imu_odom_: 1691062955.393031703 0.727837 -0.0646434 9.77553 -0.0479369 0.0191748 0.360059 0.14 0.41 pose: 0.26016042 -1.70154 0.076907 0 -0.00761881 -0.00724444 -0.00308815 0.99994 uwb: 0.50194398 847.365 1212.8 +imu_odom_: 1691062955.418015888 0.708684 -0.124498 9.54808 -0.0490022 -0.00639159 0.295078 0.14 0.41 pose: 0.0 -1.70154 0.076907 0 -0.00761881 -0.00724444 -0.00308815 0.99994 uwb: 0.0 847.365 1212.8 +imu_odom_: 1691062955.434068004 0.802058 -0.102951 9.72764 -0.0532632 0.00958738 0.298274 0.14 0.41 pose: 0.34237068 -1.70154 0.076907 0 -0.00616308 -0.0096587 0.00344124 0.999928 uwb: 0.49867750 846.71 1211.37 +imu_odom_: 1691062955.449149801 0.253785 -0.371101 9.88087 -0.0543285 0.0500674 0.247141 0.11 0.32 pose: 0.40729777 -1.69167 0.0752763 0 -0.00269621 -0.0117024 0.00889377 0.999888 uwb: 0.0 846.71 1211.37 +imu_odom_: 1691062955.465203084 -0.174777 0.0885855 10.2113 -0.036219 0.0490022 0.151268 0.11 0.32 pose: 0.0 -1.69167 0.0752763 0 -0.00269621 -0.0117024 0.00889377 0.999888 uwb: 0.0 846.71 1211.37 +imu_odom_: 1691062955.482073570 -0.948104 0.25618 9.77553 -0.0649811 0.0308927 0.197074 0.11 0.23 pose: 0.40169809 -1.69167 0.0752597 0 -0.00173988 -0.00852668 0.0125198 0.999884 uwb: 0.49977702 846.661 1210.67 +imu_odom_: 1691062955.499149377 -0.464475 -0.806846 9.81383 -0.0649811 -0.0671117 0.257794 0.11 0.23 pose: 0.0 -1.69167 0.0752597 0 -0.00173988 -0.00852668 0.0125198 0.999884 uwb: 0.0 846.661 1210.67 +imu_odom_: 1691062955.515005796 0.390255 -0.766145 9.35893 -0.0351537 -0.0798948 0.221575 0.11 0.23 pose: 0.0 -1.69167 0.0752597 0 -0.00173988 -0.00852668 0.0125198 0.999884 uwb: 0.0 846.661 1210.67 +imu_odom_: 1691062955.531193530 0.531513 -0.0885855 9.8258 -0.0511327 0.00106526 0.245011 0.18 0.26 pose: 0.9008772 -1.69167 0.0752764 0 -0.00151631 -0.00750978 0.0132277 0.999883 uwb: 0.49919664 847.005 1209.81 +imu_odom_: 1691062955.548002477 0.141258 -0.0287304 9.61272 -0.0777643 0.0149137 0.251402 0.18 0.26 pose: 0.0 -1.69167 0.0752764 0 -0.00151631 -0.00750978 0.0132277 0.999883 uwb: 0.0 847.005 1209.81 +imu_odom_: 1691062955.565060202 0.059855 -0.110133 9.89284 -0.0436758 -0.00426106 0.215183 0.18 0.26 pose: 0.0 -1.69167 0.0752764 0 -0.00151631 -0.00750978 0.0132277 0.999883 uwb: 0.0 847.005 1209.81 +imu_odom_: 1691062955.581140317 -0.0622492 -0.277727 9.90242 -0.0415453 -0.00213053 0.186421 0.14 0.17 pose: 0.47806078 -1.68182 0.0735786 0 -0.00295286 -0.0059595 0.0178867 0.999818 uwb: 0.49930455 847.197 1208.78 +imu_odom_: 1691062955.598036760 0.246603 -0.153229 9.99819 -0.052198 -0.0319579 0.203466 0.19 0.2 pose: 0.0 -1.68182 0.0735786 0 -0.00295286 -0.0059595 0.0178867 0.999818 uwb: 0.0 847.197 1208.78 +imu_odom_: 1691062955.615107317 0.304064 -0.402226 9.34936 -0.0458064 -0.00852212 0.20027 0.19 0.2 pose: 0.65980529 -1.67029 0.0817729 0 -0.000607417-0.0005619110.0238427 0.999715 uwb: 0.0 847.197 1208.78 +imu_odom_: 1691062955.631064939 0.0742203 -0.277727 10.0892 -0.0415453 -0.0191748 0.175769 0.21 0.17 pose: 0.0 -1.67029 0.0817729 0 -0.000607417-0.0005619110.0238427 0.999715 uwb: 0.50089404 846.471 1207.48 +imu_odom_: 1691062955.647053184 0.380678 -0.0861913 9.65821 -0.0415453 -0.0596548 0.187487 0.21 0.17 pose: 0.0 -1.67029 0.0817729 0 -0.000607417-0.0005619110.0238427 0.999715 uwb: 0.0 846.471 1207.48 +imu_odom_: 1691062955.664180905 0.500388 -0.222661 10.1059 -0.0543285 0.00106526 0.193878 0.21 0.17 pose: 0.34111659 -1.67029 0.0817729 0 -0.00169365 0.00158181 0.0265142 0.999646 uwb: 0.0 846.471 1207.48 +imu_odom_: 1691062955.680283768 0.0861913 -0.514753 9.85214 -0.0607201 0.0245011 0.175769 0.15 0.11 pose: 0.42070783 -1.66042 0.0800864 0 -7.74576e-050.000104473 0.0296318 0.999561 uwb: 0.0 846.471 1207.48 +imu_odom_: 1691062955.696134938 0.579397 -0.174777 9.48343 -0.0532632 -0.0127832 0.157659 0.15 0.11 pose: 0.7975165 -1.66043 0.0801031 0 -0.0006686610.000781325 0.0301745 0.999544 uwb: 0.50118861 846.655 1206.85 +imu_odom_: 1691062955.713273741 0.782904 0.035913 9.82102 -0.0649811 -0.0383495 0.203466 0.15 0.11 pose: 0.0 -1.66043 0.0801031 0 -0.0006686610.000781325 0.0301745 0.999544 uwb: 0.0 846.655 1206.85 +imu_odom_: 1691062955.730271678 1.01035 -0.502782 9.4954 -0.0713727 0.0117179 0.252468 0.17 0.08 pose: 0.41117671 -1.65518 0.0792223 0 0.000215417 -0.0017631 0.0330647 0.999452 uwb: 0.49808837 846.785 1206.3 +imu_odom_: 1691062955.747110957 1.4461 -0.651223 9.9503 -0.0511327 -0.0234358 0.225836 0.11 0.08 pose: 0.0 -1.65518 0.0792223 0 0.000215417 -0.0017631 0.0330647 0.999452 uwb: 0.0 846.785 1206.3 +imu_odom_: 1691062955.763063038 1.14682 0.1652 9.36851 -0.0330232 0.0266316 0.164051 0.11 0.08 pose: 0.0 -1.65518 0.0792223 0 0.000215417 -0.0017631 0.0330647 0.999452 uwb: 0.0 846.785 1206.3 +imu_odom_: 1691062955.778995578 1.39103 0.363919 10.4196 -0.0490022 0.0223706 0.14168 0.11 0.08 pose: 0.24871900 -1.65057 0.0784561 0 -0.000916241-0.00398418 0.0356075 0.999357 uwb: 0.0 846.785 1206.3 +imu_odom_: 1691062955.796003139 0.751779 -0.105345 9.67736 -0.0575243 0.0170442 0.115049 0.09 0.05 pose: 0.0 -1.65057 0.0784561 0 -0.000916241-0.00398418 0.0356075 0.999357 uwb: 0.50191190 846.57 1205.47 +imu_odom_: 1691062955.812993493 0.727837 -0.354342 10.173 -0.0607201 0.0319579 0.0873517 0.09 0.05 pose: 0.32921435 -1.65057 0.0784561 0 0.000325161 -0.00651283 0.0378341 0.999263 uwb: 0.0 846.57 1205.47 +imu_odom_: 1691062955.829051442 0.553061 -0.371101 9.78989 -0.0575243 -0.0308927 0.0649811 0.12 0.14 pose: 0.41926417 -1.64502 0.0775324 0 0.000304863 -0.0092894 0.0392892 0.999185 uwb: 0.0 846.57 1205.47 +imu_odom_: 1691062955.845044062 0.919373 -0.112527 10.0437 -0.0575243 -0.0330232 0.0745685 0.12 0.14 pose: 0.0 -1.64502 0.0775324 0 0.000304863 -0.0092894 0.0392892 0.999185 uwb: 0.49820211 847.036 1204.84 +imu_odom_: 1691062955.862307400 0.859518 -0.227449 9.7851 -0.0543285 -0.00852212 0.115049 0.12 0.14 pose: 0.0 -1.64502 0.0775324 0 0.000304863 -0.0092894 0.0392892 0.999185 uwb: 0.0 847.036 1204.84 +imu_odom_: 1691062955.878063491 0.756568 -0.316035 9.87848 -0.056459 0.0149137 0.129962 0.06 0.08 pose: 0.7003388 -1.6407 0.0768251 0 -0.000393026-0.00927759 0.0393845 0.999181 uwb: 0.0 847.036 1204.84 +imu_odom_: 1691062955.894043279 0.737414 -0.342371 9.91918 -0.0490022 0.00852212 0.124636 0.08 0.05 pose: 0.0 -1.6407 0.0768251 0 -0.000393026-0.00927759 0.0393845 0.999181 uwb: 0.50094945 847.296 1204.12 +imu_odom_: 1691062955.920978601 0.612916 -0.0287304 9.86411 -0.052198 0.00106526 0.110787 0.08 0.05 pose: 0.65087206 -1.6407 0.0768251 0 -0.00198487 -0.0142361 0.0414528 0.999037 uwb: 0.0 847.296 1204.12 +imu_odom_: 1691062955.947992377 0.270545 -0.229843 9.77553 -0.0660464 0.0330232 0.072438 0.05 0.08 pose: 0.0 -1.6407 0.0768251 0 -0.00198487 -0.0142361 0.0414528 0.999037 uwb: 0.50148318 847.686 1203.97 +imu_odom_: 1691062955.974201491 -1.23301 0.122104 9.81144 -0.0447411 0.0852212 0.0106526 0.07 0.08 pose: 0.62908290 -1.6407 0.0768251 0 -0.000396156-0.0105812 0.0432111 0.99901 uwb: 0.0 847.686 1203.97 +imu_odom_: 1691062955.990987981 -1.15161 -0.232238 10.2376 -0.0617853 -0.0394148 0.0990696 0.07 0.08 pose: 0.0 -1.6407 0.0768251 0 -0.000396156-0.0105812 0.0432111 0.99901 uwb: 0.49783463 848.302 1203.52 +imu_odom_: 1691062956.7036306 0.0143652 -0.816423 9.84975 -0.0703074 -0.0958738 0.107592 0.07 0.08 pose: 0.0 -1.6407 0.0768251 0 -0.000396156-0.0105812 0.0432111 0.99901 uwb: 0.0 848.302 1203.52 +imu_odom_: 1691062956.33985920 0.758962 -0.0550666 10.0173 -0.0500674 -0.00319579 0.105461 0.11 0.02 pose: 0.8037578 -1.6407 0.0768251 0 -0.000250462-0.00942489 0.0430947 0.999027 uwb: 0.49943871 849.322 1203.63 +imu_odom_: 1691062956.50030162 0.251391 0.0287304 10.1083 -0.0777643 0.00745685 0.105461 0.11 0.02 pose: 0.0 -1.6407 0.0768251 0 -0.000250462-0.00942489 0.0430947 0.999027 uwb: 0.0 849.322 1203.63 +imu_odom_: 1691062956.77201429 -0.342371 -0.222661 9.58399 -0.0703074 0.0490022 0.0500674 0.12 0.05 pose: 0.43221050 -1.6292 0.0850518 0 -0.000755763-0.00531261 0.0436147 0.999034 uwb: 0.0 849.322 1203.63 +imu_odom_: 1691062956.103010691 0.837971 -0.459687 10.0724 -0.0607201 -0.0649811 0.0820254 0.12 0.05 pose: 0.42799325 -1.6292 0.0850518 0 0.000753133 -0.00657045 0.0450183 0.998964 uwb: 0.50145985 849.631 1203.21 +imu_odom_: 1691062956.130023592 0.146046 -0.0550666 9.98622 -0.0436758 -0.0319579 0.0894822 0.12 0.05 pose: 0.0 -1.6292 0.0850518 0 0.000753133 -0.00657045 0.0450183 0.998964 uwb: 0.49921706 849.311 1202.53 +imu_odom_: 1691062956.156114005 0.399832 -0.0023942 9.50019 -0.0745685 0.0351537 0.0692422 0.15 0.02 pose: 0.43006979 -1.61932 0.0834537 0 0.000283432 -0.00337414 0.045585 0.998955 uwb: 0.0 849.311 1202.53 +imu_odom_: 1691062956.183020746 0.861913 -0.292093 9.88087 -0.0639159 -0.02024 0.0617853 0.15 0.02 pose: 0.0 -1.61932 0.0834537 0 0.000283432 -0.00337414 0.045585 0.998955 uwb: 0.50006284 850.188 1202.83 +imu_odom_: 1691062956.198985951 0.395043 -0.270545 9.96706 -0.056459 0.0234358 0.0660464 0.14 0.02 pose: 0.52998029 -1.60946 0.0818421 0 0.00124253 -0.00290751 0.0467549 0.998901 uwb: 0.0 850.188 1202.83 +imu_odom_: 1691062956.216163252 0.454898 -0.184354 10.4387 -0.0617853 -0.00852212 0.0735032 0.14 0.02 pose: 0.0 -1.60946 0.0818421 0 0.00124253 -0.00290751 0.0467549 0.998901 uwb: 0.0 850.188 1202.83 +imu_odom_: 1691062956.232001881 0.356736 -0.270545 9.97903 -0.0447411 0.00319579 0.0575243 0.14 0.02 pose: 0.52953697 -1.60946 0.0818421 0 0.00140164 -0.00406397 0.0474291 0.998865 uwb: 0.50101362 849.199 1201.95 +imu_odom_: 1691062956.259108694 0.727837 -0.124498 10.4962 -0.0458064 0.0106526 0.0649811 0.14 0.02 pose: 0.0 -1.60946 0.0818421 0 0.00140164 -0.00406397 0.0474291 0.998865 uwb: 0.0 849.199 1201.95 +imu_odom_: 1691062956.285102279 0.37589 -0.148441 9.7851 -0.0479369 -0.0127832 0.0649811 0.15 0 pose: 0.68099659 -1.59843 0.0871527 0 0.00164813 -0.00334131 0.0483104 0.998825 uwb: 0.49896332 848.954 1201.17 +imu_odom_: 1691062956.312006686 0.0933739 -0.37589 9.6606 -0.0681769 -0.00532632 0.0607201 0.15 0 pose: 0.0 -1.59843 0.0871527 0 0.00164813 -0.00334131 0.0483104 0.998825 uwb: 0.0 848.954 1201.17 +imu_odom_: 1691062956.337041618 0.976834 -0.294487 9.77074 -0.0532632 -0.0500674 0.072438 0.15 0 pose: 0.7904877 -1.59795 0.0900552 0 0.00193756 -0.00262655 0.0484087 0.998822 uwb: 0.49841503 848.803 1200.65 +imu_odom_: 1691062956.353006240 0.720655 -0.201113 9.83777 -0.0617853 0.0298274 0.0660464 0.15 0 pose: 0.0 -1.59795 0.0900552 0 0.00193756 -0.00262655 0.0484087 0.998822 uwb: 0.0 848.803 1200.65 +imu_odom_: 1691062956.379103360 0.474052 -0.0981623 9.6606 -0.072438 -0.0213053 0.072438 0.16 0.02 pose: 0.51980754 -1.58809 0.0884231 0 0.000814385 0.00033129 0.0490284 0.998797 uwb: 0.0 848.803 1200.65 +imu_odom_: 1691062956.406081264 0.440533 -0.203507 10.1921 -0.0511327 0.0181095 0.0607201 0.16 0.02 pose: 0.0 -1.58809 0.0884231 0 0.000814385 0.00033129 0.0490284 0.998797 uwb: 0.49964578 849.295 1200.72 +imu_odom_: 1691062956.422000388 -0.136469 -0.186748 9.46667 -0.0553937 -0.0213053 0.0617853 0.17 0 pose: 0.43144638 -1.57822 0.0868032 0 0.00151756 -0.003317 0.0496837 0.998758 uwb: 0.0 849.295 1200.72 +imu_odom_: 1691062956.449102242 -0.0957681 -0.0143652 9.90481 -0.04048 -0.0351537 0.0628506 0.17 0 pose: 0.51972296 -1.56835 0.0852043 0 0.000888001 -0.0009459930.0503337 0.998732 uwb: 0.50123527 850.103 1200.74 +imu_odom_: 1691062956.474292332 0.189142 -0.378284 10.0963 -0.0394148 -0.0191748 0.052198 0.22 0.02 pose: 0.0 -1.56835 0.0852043 0 0.000888001 -0.0009459930.0503337 0.998732 uwb: 0.0 850.103 1200.74 +imu_odom_: 1691062956.501073372 0.229843 -0.246603 9.95988 -0.0532632 -0.0117179 0.0703074 0.19 0.05 pose: 0.43059185 -1.56835 0.0852043 0 0.00132176 0.00240078 0.0507809 0.998706 uwb: 0.49967787 849.872 1199.59 +imu_odom_: 1691062956.517108281 0.418985 -0.311246 10.0533 -0.0628506 -0.00213053 0.0681769 0.19 0.05 pose: 0.0 -1.56835 0.0852043 0 0.00132176 0.00240078 0.0507809 0.998706 uwb: 0.0 849.872 1199.59 +imu_odom_: 1691062956.534096885 0.237026 -0.208296 9.99819 -0.0426106 -0.00639159 0.0511327 0.19 0.05 pose: 0.0 -1.56835 0.0852043 0 0.00132176 0.00240078 0.0507809 0.998706 uwb: 0.50160859 849.723 1199.06 +imu_odom_: 1691062956.560059263 0.205901 -0.282516 9.64863 -0.0585895 0.0383495 0.0703074 0.17 0 pose: 0.23857833 -1.55847 0.0836197 0 -0.0001286930.0039367 0.0509858 0.998692 uwb: 0.0 849.723 1199.06 +imu_odom_: 1691062956.584990660 0.337582 -0.117316 9.94791 -0.0490022 0.0276969 0.052198 0.17 0 pose: 0.0 -1.55847 0.0836197 0 -0.0001286930.0039367 0.0509858 0.998692 uwb: 0.49852001 849.59 1198.52 +imu_odom_: 1691062956.607990751 0.474052 -0.299275 10.1634 -0.0756338 0.00852212 0.0660464 0.17 0.02 pose: 0.60932946 -1.54702 0.0919183 0 -0.00147567 0.00672027 0.0517347 0.998637 uwb: 0.0 849.59 1198.52 +imu_odom_: 1691062956.623948373 0.696713 -0.253785 9.85214 -0.0671117 -0.0319579 0.0649811 0.17 0.02 pose: 0.0 -1.54702 0.0919183 0 -0.00147567 0.00672027 0.0517347 0.998637 uwb: 0.0 849.59 1198.52 +imu_odom_: 1691062956.651126348 0.411803 -0.1652 10.058 -0.0841559 0.00639159 0.0713727 0.22 0 pose: 0.50124694 -1.53714 0.0903588 0 -0.0007519730.00693204 0.0522693 0.998609 uwb: 0.49859585 849.875 1198.14 +imu_odom_: 1691062956.676216693 0.452504 -0.0143652 10.1945 -0.0841559 -0.00852212 0.0607201 0.18 0 pose: 0.40023985 -1.53714 0.0903588 0 -0.0010042 0.00314366 0.0528096 0.998599 uwb: 0.0 849.875 1198.14 +imu_odom_: 1691062956.703129558 0.509965 -0.148441 9.98382 -0.0745685 -0.02024 0.056459 0.21 0.02 pose: 0.26924531 -1.52726 0.0888154 0 0.000687681 0.00157588 0.0532006 0.998582 uwb: 0.50390387 849.743 1197.24 +imu_odom_: 1691062956.719088055 0.608127 -0.42138 9.40442 -0.0585895 -0.0820254 0.0490022 0.21 0.02 pose: 0.0 -1.52726 0.0888154 0 0.000687681 0.00157588 0.0532006 0.998582 uwb: 0.0 849.743 1197.24 +imu_odom_: 1691062956.746086082 0.464475 -0.328006 9.64863 -0.052198 -0.0553937 0.0532632 0.18 0 pose: 0.23965744 -1.52726 0.0888154 0 0.00215798 0.000200459 0.053444 0.998568 uwb: 0.49622181 850.087 1196.79 +imu_odom_: 1691062956.771998006 0.514753 0.0407014 10.1323 -0.0628506 -0.0255663 0.04048 0.17 0.02 pose: 0.63085905 -1.51585 0.0971654 0 -0.00141952 -0.00419764 0.0538892 0.998537 uwb: 0.0 850.087 1196.79 +imu_odom_: 1691062956.799209520 0.23942 -0.19393 9.98622 -0.0681769 -0.00319579 0.0543285 0.17 0.02 pose: 0.0 -1.51585 0.0971654 0 -0.00141952 -0.00419764 0.0538892 0.998537 uwb: 0.50120611 850.63 1196.43 +imu_odom_: 1691062956.816259954 0.715866 -0.335188 9.87608 -0.0553937 -0.0213053 0.04048 0.17 -0.02 pose: 0.8015122 -1.51585 0.0971654 0 -0.000642831-0.00432234 0.0538895 0.998537 uwb: 0.0 850.63 1196.43 +imu_odom_: 1691062956.833210352 0.632069 -0.31364 9.95988 -0.0458064 -0.00852212 0.0617853 0.17 -0.02 pose: 0.0 -1.51585 0.0971654 0 -0.000642831-0.00432234 0.0538895 0.998537 uwb: 0.50123819 850.132 1195.66 +imu_odom_: 1691062956.849052189 0.126893 -0.409408 10.0796 -0.0500674 -0.00852212 0.052198 0.17 -0.02 pose: 0.0 -1.51585 0.0971654 0 -0.000642831-0.00432234 0.0538895 0.998537 uwb: 0.0 850.132 1195.66 +imu_odom_: 1691062956.864999020 0.584185 -0.0430956 10.1586 -0.0543285 -0.0255663 0.0394148 0.18 0 pose: 0.52951073 -1.50598 0.0955431 0 0.000510488 -0.00266598 0.0540919 0.998532 uwb: 0.0 850.132 1195.66 +imu_odom_: 1691062956.880984640 0.538695 -0.301669 9.55765 -0.0543285 -0.0372843 0.056459 0.18 0 pose: 0.0 -1.50598 0.0955431 0 0.000510488 -0.00266598 0.0540919 0.998532 uwb: 0.50181566 849.24 1194.71 +imu_odom_: 1691062956.907943003 0.42138 -0.155623 10.0987 -0.04048 -0.04048 0.0436758 0.22 0 pose: 0.73932363 -1.48625 0.0923112 0 -0.00114331 -0.00571909 0.0545264 0.998495 uwb: 0.0 849.24 1194.71 +imu_odom_: 1691062956.932940604 0.440533 -0.162806 10.2975 -0.0511327 -0.0255663 0.0703074 0.22 0 pose: 0.0 -1.48625 0.0923112 0 -0.00114331 -0.00571909 0.0545264 0.998495 uwb: 0.49718426 849.041 1193.57 +imu_odom_: 1691062956.949093339 0.737414 -0.311246 10.0365 -0.0511327 0.00958738 0.0394148 0.21 0 pose: 0.6989389 -1.48625 0.0923112 0 -0.000636769-0.00530595 0.0545394 0.998497 uwb: 0.0 849.041 1193.57 +imu_odom_: 1691062956.966069694 -0.0311246 -0.172383 9.77313 -0.0468716 -0.00106526 -0.00213053 0.18 -0.08 pose: 0.0 -1.48625 0.0923112 0 -0.000636769-0.00530595 0.0545394 0.998497 uwb: 0.0 849.041 1193.57 +imu_odom_: 1691062956.983088922 0.0933739 0.00718261 10.4148 -0.036219 -0.0330232 -0.0479369 0.24 -0.17 pose: 0.0 -1.48625 0.0923112 0 -0.000636769-0.00530595 0.0545394 0.998497 uwb: 0.50087072 848.483 1192.2 +imu_odom_: 1691062957.58568 0.232238 -0.318429 9.68694 -0.0458064 -0.0106526 -0.105461 0.24 -0.17 pose: 0.78095665 -1.47477 0.100557 0 0.00178949 -0.00203493 0.0546004 0.998505 uwb: 0.0 848.483 1192.2 +imu_odom_: 1691062957.17113669 0.143652 0.167594 9.5816 -0.0394148 -0.0117179 -0.129962 0.26 -0.38 pose: 0.0 -1.47477 0.100557 0 0.00178949 -0.00203493 0.0546004 0.998505 uwb: 0.0 848.483 1192.2 +imu_odom_: 1691062957.33059333 0.804452 -0.227449 10.4507 -0.0798948 -0.0532632 -0.16192 0.26 -0.38 pose: 0.40893977 -1.46488 0.0990581 0 0.002214 0.000890093 0.052036 0.998642 uwb: 0.49880291 847.817 1190.98 +imu_odom_: 1691062957.50041813 0.912191 -0.258574 9.62708 -0.0543285 -0.0234358 -0.280165 0.26 -0.38 pose: 0.0 -1.46488 0.0990581 0 0.002214 0.000890093 0.052036 0.998642 uwb: 0.0 847.817 1190.98 +imu_odom_: 1691062957.67106538 0.897826 0.438139 10.331 -0.0511327 -0.0372843 -0.312122 0.25 -0.44 pose: 0.33113924 -1.46488 0.0990581 0 0.00261697 -0.00124374 0.0484561 0.998821 uwb: 0.0 847.817 1190.98 +imu_odom_: 1691062957.82978998 0.521936 -0.107739 9.78031 -0.052198 -0.0266316 -0.325971 0.25 -0.44 pose: 0.0 -1.46488 0.0990581 0 0.00261697 -0.00124374 0.0484561 0.998821 uwb: 0.50009785 846.725 1189.28 +imu_odom_: 1691062957.101045832 0.715866 -0.213084 9.98861 -0.052198 -0.0181095 -0.395213 0.18 -0.41 pose: 0.0 -1.46488 0.0990581 0 0.00261697 -0.00124374 0.0484561 0.998821 uwb: 0.0 846.725 1189.28 +imu_odom_: 1691062957.117162403 0.830788 0.316035 10.1586 -0.0308927 -0.00532632 -0.428236 0.18 -0.41 pose: 0.42901403 -1.455 0.0975088 0 0.00498297 -0.0049615 0.0409698 0.999136 uwb: 0.0 846.725 1189.28 +imu_odom_: 1691062957.134046888 0.368707 -0.011971 9.72046 -0.0617853 0.0308927 -0.431432 0.18 -0.41 pose: 0.0 -1.455 0.0975088 0 0.00498297 -0.0049615 0.0409698 0.999136 uwb: 0.50037199 846.767 1188.55 +imu_odom_: 1691062957.151041034 1.27372 -0.0861913 11.1857 -0.0798948 0.0436758 -0.460194 0.18 -0.53 pose: 0.8292480 -1.455 0.0975257 0 0.00470462 -0.00578197 0.0391736 0.999205 uwb: 0.0 846.767 1188.55 +imu_odom_: 1691062957.167033945 0.208296 0.162806 8.89207 -0.0458064 0.0245011 -0.498544 0.18 -0.53 pose: 0.0 -1.455 0.0975257 0 0.00470462 -0.00578197 0.0391736 0.999205 uwb: 0.0 846.767 1188.55 +imu_odom_: 1691062957.183042315 0.0790087 -0.0311246 10.8218 -0.0351537 0.0873517 -0.515588 0.18 -0.53 pose: 0.0 -1.455 0.0975257 0 0.00470462 -0.00578197 0.0391736 0.999205 uwb: 0.49884376 845.816 1187.04 +imu_odom_: 1691062957.199963256 0.466869 0.0143652 8.79151 -0.0745685 0.00106526 -0.536893 0.18 -0.58 pose: 0.50713828 -1.44362 0.105895 0 0.00657763 -0.00630009 0.0273197 0.999585 uwb: 0.0 845.816 1187.04 +imu_odom_: 1691062957.215964917 0.555455 0.167594 10.9583 -0.0639159 -0.0372843 -0.54435 0.22 -0.76 pose: 0.0 -1.44362 0.105895 0 0.00657763 -0.00630009 0.0273197 0.999585 uwb: 0.0 845.816 1187.04 +imu_odom_: 1691062957.231923122 1.31681 -0.280122 10.3046 -0.072438 -0.0511327 -0.487891 0.22 -0.76 pose: 0.64994754 -1.42383 0.103016 0 0.00996007 -0.00350669 0.00937088 0.9999 uwb: 0.49970120 845.851 1186.34 +imu_odom_: 1691062957.248973265 1.58496 -0.378284 9.30866 -0.0553937 -0.00213053 -0.478304 0.22 -0.76 pose: 0.0 -1.42383 0.103016 0 0.00996007 -0.00350669 0.00937088 0.9999 uwb: 0.0 845.851 1186.34 +imu_odom_: 1691062957.265953995 1.33118 -0.246603 10.1035 -0.052198 -0.0383495 -0.474043 0.19 -0.58 pose: 0.0 -1.42383 0.103016 0 0.00996007 -0.00350669 0.00937088 0.9999 uwb: 0.0 845.851 1186.34 +imu_odom_: 1691062957.282032943 1.34794 -0.0191536 9.51216 -0.0788296 0.0617853 -0.421845 0.19 -0.58 pose: 0.32958767 -1.42383 0.103016 0 0.00989639 -0.00657186 0.000486293 0.999929 uwb: 0.50232896 846.322 1185.44 +imu_odom_: 1691062957.299026797 1.29287 -0.232238 10.556 -0.0553937 -0.0330232 -0.346211 0.12 -0.38 pose: 0.42094116 -1.41854 0.102225 0 0.00910109 -0.0103176 -0.00987754 0.999857 uwb: 0.0 846.322 1185.44 +imu_odom_: 1691062957.314903340 1.25935 -0.402226 9.15064 -0.0447411 -0.0458064 -0.302535 0.12 -0.38 pose: 0.0 -1.41854 0.102225 0 0.00910109 -0.0103176 -0.00987754 0.999857 uwb: 0.0 846.322 1185.44 +imu_odom_: 1691062957.330955748 1.22823 -0.184354 9.61272 -0.0511327 0.0181095 -0.26312 0.12 -0.38 pose: 0.0 -1.41854 0.102225 0 0.00910109 -0.0103176 -0.00987754 0.999857 uwb: 0.49890208 846.366 1184.4 +imu_odom_: 1691062957.346883914 0.620098 -0.430956 9.78031 -0.0660464 -0.00319579 -0.210922 0.1 -0.32 pose: 0.7883587 -1.41394 0.101543 0 0.00887412 -0.0111688 -0.0113896 0.999833 uwb: 0.0 846.366 1184.4 +imu_odom_: 1691062957.363877768 0.325611 -0.318429 9.85932 -0.0415453 0.0138484 -0.238619 0.11 -0.35 pose: 0.0 -1.41394 0.101543 0 0.00887412 -0.0111688 -0.0113896 0.999833 uwb: 0.0 846.366 1184.4 +imu_odom_: 1691062957.379877679 0.28491 -0.0407014 9.95988 -0.0532632 -0.0181095 -0.235423 0.11 -0.35 pose: 0.64028518 -1.41394 0.101543 0 0.00574144 -0.014165 -0.0211956 0.999659 uwb: 0.0 846.366 1184.4 +imu_odom_: 1691062957.397041856 1.0319 -0.222661 9.90002 -0.0660464 -0.02024 -0.198139 0.1 -0.35 pose: 0.0 -1.41394 0.101543 0 0.00574144 -0.014165 -0.0211956 0.999659 uwb: 0.0 846.366 1184.4 +imu_odom_: 1691062957.412894776 1.10133 -0.457293 10.0796 -0.0617853 -0.00958738 -0.186421 0.1 -0.35 pose: 0.0 -1.41394 0.101543 0 0.00574144 -0.014165 -0.0211956 0.999659 uwb: 0.0 846.366 1184.4 +imu_odom_: 1691062957.428882438 0.672771 -0.328006 9.60314 -0.0436758 0.0308927 -0.185356 0.1 -0.35 pose: 0.33019722 -1.40404 0.100114 0 0.0054118 -0.0124654 -0.0256217 0.999579 uwb: 0.0 846.366 1184.4 +imu_odom_: 1691062957.445883292 0.493206 -0.136469 10.058 -0.0479369 0.0106526 -0.165116 0.06 -0.2 pose: 0.41917668 -1.40404 0.100097 0 0.00251992 -0.0143371 -0.0303533 0.999433 uwb: 0.99834664 845.639 1182.99 +imu_odom_: 1691062957.461940366 0.474052 -0.174777 9.84496 -0.0617853 0 -0.145941 0.06 -0.2 pose: 0.8009288 -1.40404 0.100114 0 0.0026674 -0.0134823 -0.0311758 0.999419 uwb: 0.0 845.639 1182.99 +imu_odom_: 1691062957.478939178 0.545878 -0.301669 10.0437 -0.0511327 0.00426106 -0.150202 0.06 -0.2 pose: 0.0 -1.40404 0.100114 0 0.0026674 -0.0134823 -0.0311758 0.999419 uwb: 0.0 845.639 1182.99 +imu_odom_: 1691062957.494945797 0.629675 -0.270545 9.81383 -0.0617853 -0.00532632 -0.138484 0.07 -0.23 pose: 0.42047452 -1.40404 0.100098 0 0.00118928 -0.010012 -0.035189 0.99933 uwb: 0.49959912 845.588 1182.08 +imu_odom_: 1691062957.510939001 0.684742 -0.153229 10.0844 -0.0553937 -0.00532632 -0.128897 0.05 -0.17 pose: 0.0 -1.40404 0.100098 0 0.00118928 -0.010012 -0.035189 0.99933 uwb: 0.0 845.588 1182.08 +imu_odom_: 1691062957.526879999 0.624887 -0.246603 9.84735 -0.0596548 -0.0127832 -0.109722 0.05 -0.17 pose: 0.0 -1.40404 0.100098 0 0.00118928 -0.010012 -0.035189 0.99933 uwb: 0.0 845.588 1182.08 +imu_odom_: 1691062957.544026094 0.608127 -0.167594 9.88566 -0.0553937 -0.00852212 -0.106526 0.04 -0.14 pose: 0.23954078 -1.40404 0.100114 0 0.000140204 -0.0111706 -0.0372718 0.999243 uwb: 0.50007160 845.409 1181.65 +imu_odom_: 1691062957.561083819 0.751779 -0.215478 9.97185 -0.0500674 -0.00958738 -0.0958738 0.04 -0.14 pose: 0.0 -1.40404 0.100114 0 0.000140204 -0.0111706 -0.0372718 0.999243 uwb: 0.0 845.409 1181.65 +imu_odom_: 1691062957.576955113 0.553061 -0.253785 9.68215 -0.0543285 0.0117179 -0.0937433 0.04 -0.14 pose: 0.32003906 -1.39415 0.0986482 0 -0.000183231-0.0113486 -0.0397194 0.999146 uwb: 0.0 845.409 1181.65 +imu_odom_: 1691062957.593948967 0.646434 -0.189142 10.1299 -0.0490022 -0.00319579 -0.0894822 0.04 -0.14 pose: 0.42057951 -1.39415 0.0986482 0 -0.000355797-0.0112631 -0.0425916 0.999029 uwb: 0.50141902 846.225 1181.01 +imu_odom_: 1691062957.609941295 0.608127 -0.198719 9.8258 -0.0596548 -0.00958738 -0.0703074 0.04 -0.14 pose: 0.6947391 -1.39415 0.0986482 0 0.000204585 -0.0117069 -0.0430452 0.999005 uwb: 0.0 846.225 1181.01 +imu_odom_: 1691062957.625876460 0.555455 -0.203507 9.96706 -0.0553937 -0.00213053 -0.0575243 0.04 -0.14 pose: 0.0 -1.39415 0.0986482 0 0.000204585 -0.0117069 -0.0430452 0.999005 uwb: 0.0 846.225 1181.01 +imu_odom_: 1691062957.642938268 0.627281 -0.294487 9.8282 -0.056459 -0.0127832 -0.0447411 0.03 -0.05 pose: 0.41973956 -1.39415 0.0986482 0 0.000332328 -0.00928381 -0.0453478 0.998928 uwb: 0.50042157 845.665 1179.75 +imu_odom_: 1691062957.660016409 0.624887 -0.172383 9.90481 -0.052198 -0.00106526 -0.0436758 0.04 -0.11 pose: 0.0 -1.39415 0.0986482 0 0.000332328 -0.00928381 -0.0453478 0.998928 uwb: 0.0 845.665 1179.75 +imu_odom_: 1691062957.676005529 0.648829 -0.167594 9.87848 -0.0585895 -0.00958738 -0.0319579 0.04 -0.11 pose: 0.0 -1.39415 0.0986482 0 0.000332328 -0.00928381 -0.0453478 0.998928 uwb: 0.0 845.665 1179.75 +imu_odom_: 1691062957.693005800 0.557849 -0.225055 9.80904 -0.056459 0.00852212 -0.0181095 0.04 -0.11 pose: 0.24071904 -1.39415 0.0986482 0 -0.000606073-0.0103061 -0.0463493 0.998872 uwb: 0.49952621 845.689 1178.77 +imu_odom_: 1691062957.708876218 0.509965 -0.289698 9.95748 -0.0532632 0.00319579 -0.00958738 0.03 -0.05 pose: 0.0 -1.39415 0.0986482 0 -0.000606073-0.0103061 -0.0463493 0.998872 uwb: 0.0 845.689 1178.77 +imu_odom_: 1691062957.724870880 0.452504 -0.237026 9.78271 -0.056459 -0.0106526 0.0106526 0.03 -0.05 pose: 0.32999599 -1.39415 0.0986482 0 0.000945398 -0.0113843 -0.0475552 0.998803 uwb: 0.0 845.689 1178.77 +imu_odom_: 1691062957.741937355 0.627281 -0.234632 9.94312 -0.056459 -0.0127832 0.0287621 0.01 -0.02 pose: 0.41922917 -1.39415 0.0986482 0 -0.000733079-0.00763845 -0.0484499 0.998796 uwb: 0.50049158 845.375 1177.88 +imu_odom_: 1691062957.758925959 0.675165 -0.232238 9.89045 -0.0532632 -0.00958738 0.0372843 0.01 -0.02 pose: 0.8009580 -1.39415 0.0986482 0 -0.000915297-0.00845347 -0.0484921 0.998787 uwb: 0.0 845.375 1177.88 +imu_odom_: 1691062957.774929953 0.670376 -0.19393 9.91678 -0.0532632 0.00106526 0.0447411 0.01 -0.02 pose: 0.0 -1.39415 0.0986482 0 -0.000915297-0.00845347 -0.0484921 0.998787 uwb: 0.0 845.375 1177.88 +imu_odom_: 1691062957.792001969 0.636858 -0.237026 9.86172 -0.0575243 0 0.0532632 0 0.02 pose: 0.42049493 -1.39415 0.0986482 0 -0.000383577-0.0124111 -0.0485277 0.998745 uwb: 0.49853751 845.346 1176.97 +imu_odom_: 1691062957.807875013 0.557849 -0.229843 9.88805 -0.0543285 0 0.0532632 0 0.02 pose: 0.0 -1.39415 0.0986482 0 -0.000383577-0.0124111 -0.0485277 0.998745 uwb: 0.0 845.346 1176.97 +imu_odom_: 1691062957.823874049 0.476446 -0.23942 9.91678 -0.056459 0.00106526 0.0543285 0 0.02 pose: 0.0 -1.39415 0.0986482 0 -0.000383577-0.0124111 -0.0485277 0.998745 uwb: 0.0 845.346 1176.97 +imu_odom_: 1691062957.838863685 0.397437 -0.191536 9.88087 -0.0543285 0 0.04048 0 0.02 pose: 0.24082404 -1.39415 0.0986482 0 -0.00185523 -0.0110883 -0.0483443 0.998767 uwb: 0.49991994 845.456 1176.53 +imu_odom_: 1691062957.853925651 0.380678 -0.138864 9.87129 -0.0553937 -0.00319579 0.0340885 0 0 pose: 0.0 -1.39415 0.0986482 0 -0.00185523 -0.0110883 -0.0483443 0.998767 uwb: 0.0 845.456 1176.53 +imu_odom_: 1691062957.868864831 0.397437 -0.237026 9.89524 -0.0596548 -0.00852212 0.0383495 0 0 pose: 0.0 -1.39415 0.0986482 0 -0.00185523 -0.0110883 -0.0483443 0.998767 uwb: 0.0 845.456 1176.53 +imu_odom_: 1691062957.883930005 0.416591 -0.289698 9.91439 -0.0553937 -0.00852212 0.036219 0 0 pose: 0.30872887 -1.39415 0.0986482 0 -0.00143086 -0.00797533 -0.0481638 0.998807 uwb: 0.50105154 845.322 1175.76 +imu_odom_: 1691062957.898919932 0.447716 -0.208296 9.93115 -0.0553937 0 0.0394148 0 0 pose: 0.14991095 -1.39415 0.0986482 0 -0.000830557-0.00658882 -0.0481794 0.998817 uwb: 0.0 845.322 1175.76 +imu_odom_: 1691062957.912917376 0.440533 -0.241814 9.82341 -0.0575243 -0.00852212 0.0468716 0 0 pose: 0.0 -1.39415 0.0986482 0 -0.000830557-0.00658882 -0.0481794 0.998817 uwb: 0.0 845.322 1175.76 +imu_odom_: 1691062957.928015506 0.418985 -0.201113 9.93833 -0.0543285 -0.00213053 0.0394148 0 0 pose: 0.30050143 -1.39415 0.0986482 0 -0.00096278 -0.00391836 -0.0482234 0.998828 uwb: 0.0 845.322 1175.76 +imu_odom_: 1691062957.942889940 0.428562 -0.186748 9.87369 -0.0543285 -0.00319579 0.0372843 0 0 pose: 0.0 -1.39415 0.0986482 0 -0.00096278 -0.00391836 -0.0482234 0.998828 uwb: 0.49747300 844.606 1174.11 +imu_odom_: 1691062957.956904882 0.426168 -0.215478 9.91439 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 -1.39415 0.0986482 0 -0.00096278 -0.00391836 -0.0482234 0.998828 uwb: 0.0 844.606 1174.11 +imu_odom_: 1691062957.971968014 0.445322 -0.229843 9.89045 -0.0553937 -0.00639159 0.0383495 0 0 pose: 0.44009964 -1.39415 0.0986482 0 -0.000953743-0.00162059 -0.0481872 0.998837 uwb: 0.0 844.606 1174.11 +imu_odom_: 1691062957.986992648 0.426168 -0.222661 9.92157 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 -1.39415 0.0986482 0 -0.000953743-0.00162059 -0.0481872 0.998837 uwb: 0.50168734 844.795 1173.9 +imu_odom_: 1691062958.7856404 0.411803 -0.191536 9.89045 -0.0543285 -0.00213053 0.0426106 0 0 pose: 0.0 -1.39415 0.0986482 0 -0.000953743-0.00162059 -0.0481872 0.998837 uwb: 0.0 844.795 1173.9 +imu_odom_: 1691062958.24915880 -0.430956 -0.21069 9.63666 -0.0553937 0.0756338 0.0500674 0 0 pose: 0.44074418 -1.39415 0.0986482 0 -0.000453204-0.00164811 -0.0482106 0.998836 uwb: 0.0 844.795 1173.9 +imu_odom_: 1691062958.42004812 -1.07978 -0.272939 10.2161 -0.0500674 0.0735032 0.0553937 0.02 0.02 pose: 0.0 -1.39415 0.0986482 0 -0.000453204-0.00164811 -0.0482106 0.998836 uwb: 0.50107779 844.947 1174.04 +imu_odom_: 1691062958.57868522 -1.20668 -0.272939 9.7875 -0.0575243 -0.0351537 0.0543285 0.02 0.02 pose: 0.70003841 -1.39415 0.0986482 0 0.00170548 0.00317697 -0.048036 0.998839 uwb: 0.0 844.947 1174.04 +imu_odom_: 1691062958.73864642 -0.059855 -0.112527 9.99579 -0.056459 -0.0798948 0.0511327 0.04 0.02 pose: 0.0 -1.39415 0.0986482 0 0.00170548 0.00317697 -0.048036 0.998839 uwb: 0.0 844.947 1174.04 +imu_odom_: 1691062958.89852888 0.366313 -0.21069 9.73482 -0.0575243 -0.0458064 0.0617853 0.04 0.02 pose: 0.0 -1.39415 0.0986482 0 0.00170548 0.00317697 -0.048036 0.998839 uwb: 0.50001035 844.886 1173.19 +imu_odom_: 1691062958.106904489 0.177171 -0.268151 9.89045 -0.0511327 0.0191748 0.0543285 0.04 0.02 pose: 0.31869163 -1.39415 0.0986482 0 0.00185297 0.00618143 -0.0478116 0.998836 uwb: 0.0 844.886 1173.19 +imu_odom_: 1691062958.123862470 -0.294487 -0.172383 9.97424 -0.056459 0.0213053 0.0490022 0.07 0 pose: 0.42020621 -1.38426 0.0971724 0 0.000715637 0.00657771 -0.0474646 0.998851 uwb: 0.0 844.886 1173.19 +imu_odom_: 1691062958.140975609 -0.181959 -0.234632 9.89284 -0.056459 -0.0287621 0.0639159 0.07 0 pose: 0.8008996 -1.38426 0.0971891 0 0.000802774 0.00747756 -0.0474266 0.998846 uwb: 0.49803881 845.602 1173.61 +imu_odom_: 1691062958.156908441 -0.0023942 -0.244209 9.75877 -0.0500674 -0.015979 0.0468716 0.07 0 pose: 0.0 -1.38426 0.0971891 0 0.000802774 0.00747756 -0.0474266 0.998846 uwb: 0.0 845.602 1173.61 +imu_odom_: 1691062958.173905503 0.227449 -0.251391 10.0054 -0.0585895 -0.02024 0.0447411 0.11 0 pose: 0.41994956 -1.38426 0.0971891 0 0.000683333 0.0114729 -0.0471223 0.998823 uwb: 0.0 845.602 1173.61 +imu_odom_: 1691062958.189846209 0.00718261 -0.205901 9.87369 -0.0468716 0.00852212 0.0298274 0.09 0.02 pose: 0.0 -1.38426 0.0971891 0 0.000683333 0.0114729 -0.0471223 0.998823 uwb: 0.50118862 845.431 1172.88 +imu_odom_: 1691062958.206905393 -0.201113 -0.241814 9.65342 -0.0458064 0.00426106 0.0426106 0.09 0.02 pose: 0.0 -1.38426 0.0971891 0 0.000683333 0.0114729 -0.0471223 0.998823 uwb: 0.0 845.431 1172.88 +imu_odom_: 1691062958.223954369 0.0981623 -0.260968 9.88326 -0.0639159 0.00852212 0.0479369 0.1 0.02 pose: 0.24949770 -1.38426 0.0971891 0 -0.0002690820.0108715 -0.0471275 0.99883 uwb: 0.0 845.431 1172.88 +imu_odom_: 1691062958.239830329 0.311246 -0.201113 10.0796 -0.0490022 0.00532632 0.0255663 0.1 0.02 pose: 0.0 -1.38426 0.0971891 0 -0.0002690820.0108715 -0.0471275 0.99883 uwb: 0.49878250 845.636 1172.65 +imu_odom_: 1691062958.255889445 0.234632 0.0454898 9.69652 -0.0490022 -0.00852212 0.0436758 0.1 0.02 pose: 0.33056470 -1.37438 0.0956442 0 -0.0004997080.0141781 -0.0471106 0.998789 uwb: 0.0 845.636 1172.65 +imu_odom_: 1691062958.271828985 -0.112527 -0.169988 9.59117 -0.056459 0.00639159 0.0596548 0.11 0 pose: 0.40974764 -1.37438 0.0956442 0 0.00083413 0.0128939 -0.0471375 0.998805 uwb: 0.0 845.636 1172.65 +imu_odom_: 1691062958.286826788 0.545878 -0.387861 10.1825 -0.04048 -0.0649811 0.0394148 0.11 0 pose: 0.7940459 -1.37438 0.0956442 0 0.00098702 0.0137161 -0.047056 0.998798 uwb: 0.50119154 846.046 1172.2 +imu_odom_: 1691062958.302880946 0.866701 -0.169988 9.54329 -0.0532632 -0.0298274 0.052198 0.11 0 pose: 0.0 -1.37438 0.0956442 0 0.00098702 0.0137161 -0.047056 0.998798 uwb: 0.0 846.046 1172.2 +imu_odom_: 1691062958.318883482 0.893037 -0.289698 9.93594 -0.0639159 0.0532632 0.0862864 0.1 0 pose: 0.39051042 -1.3645 0.094101 0 0.000623361 0.0109174 -0.0468847 0.99884 uwb: 0.0 846.046 1172.2 +imu_odom_: 1691062958.334989846 1.24498 -0.258574 10.2304 -0.0553937 -0.0372843 0.122505 0.1 0 pose: 0.0 -1.3645 0.094101 0 0.000623361 0.0109174 -0.0468847 0.99884 uwb: 0.49950580 845.453 1171.95 +imu_odom_: 1691062958.351860915 1.32639 -0.268151 9.23922 -0.0500674 -0.0127832 0.129962 0.1 0 pose: 0.0 -1.3645 0.094101 0 0.000623361 0.0109174 -0.0468847 0.99884 uwb: 0.0 845.453 1171.95 +imu_odom_: 1691062958.367840411 1.34554 -0.0957681 10.0748 -0.0426106 0.0287621 0.102265 0.06 0 pose: 0.39045208 -1.3645 0.094101 0 0.000141986 0.00720529 -0.045535 0.998937 uwb: 0.0 845.453 1171.95 +imu_odom_: 1691062958.384860805 0.500388 -0.023942 9.75637 -0.0511327 0.0553937 0.0383495 0.09 -0.02 pose: 0.0 -1.3645 0.094101 0 0.000141986 0.00720529 -0.045535 0.998937 uwb: 0.49989953 845.777 1171.89 +imu_odom_: 1691062958.401942738 0.696713 -0.0191536 10.2639 -0.0543285 -0.0330232 0.00852212 0.09 -0.02 pose: 0.0 -1.3645 0.094101 0 0.000141986 0.00720529 -0.045535 0.998937 uwb: 0.0 845.777 1171.89 +imu_odom_: 1691062958.416849837 0.68953 -0.306458 9.55765 -0.0649811 -0.0170442 -0.00213053 0.05 0.05 pose: 0.32953226 -1.3645 0.094101 0 0.00080347 0.00452182 -0.0445895 0.998995 uwb: 0.0 845.777 1171.89 +imu_odom_: 1691062958.431869221 0.905008 -0.260968 9.97903 -0.0607201 0.00532632 0.00852212 0.05 0.05 pose: 0.0 -1.3645 0.094101 0 0.00080347 0.00452182 -0.0445895 0.998995 uwb: 0.50010368 845.998 1171.64 +imu_odom_: 1691062958.448861034 0.773327 -0.378284 9.81144 -0.0553937 0.00532632 0.0245011 0.05 0.05 pose: 0.34009291 -1.3645 0.094101 0 0.00181304 0.00156547 -0.044997 0.998984 uwb: 0.0 845.998 1171.64 +imu_odom_: 1691062958.465848764 0.732626 -0.107739 10.0461 -0.0585895 0.00852212 0.0213053 0.04 0.02 pose: 0.39972363 -1.35461 0.0925985 0 0.000284962 -0.00200376 -0.0455187 0.998961 uwb: 0.0 845.998 1171.64 +imu_odom_: 1691062958.481987209 0.476446 -0.186748 9.76834 -0.0468716 -0.00213053 0.0138484 0.04 0.02 pose: 0.8038162 -1.35461 0.0925985 0 0.000500319 -0.00272335 -0.0455923 0.998956 uwb: 0.49909166 845.998 1171.64 +imu_odom_: 1691062958.500050543 0.392649 -0.160412 10.003 -0.0585895 0.00745685 0.0436758 0.04 0.02 pose: 0.0 -1.35461 0.0925985 0 0.000500319 -0.00272335 -0.0455923 0.998956 uwb: 0.0 845.998 1171.64 +imu_odom_: 1691062958.517943845 0.430956 -0.423774 9.84735 -0.056459 -0.015979 0.076699 0.03 0 pose: 0.43151347 -1.35461 0.0925985 0 0.00236943 -0.00247619 -0.0458532 0.998942 uwb: 0.0 845.998 1171.64 +imu_odom_: 1691062958.542990152 0.804452 -0.0670376 9.8689 -0.0490022 -0.00958738 0.076699 0.03 0.02 pose: 0.0 -1.35461 0.0925985 0 0.00236943 -0.00247619 -0.0458532 0.998942 uwb: 0.49894583 846.212 1171.11 +imu_odom_: 1691062958.559848680 0.00718261 -0.131681 9.71567 -0.0628506 0.0809601 0.0894822 0.03 0.02 pose: 0.23945328 -1.35461 0.0925985 0 0.000782467 -0.00296602 -0.0454058 0.998964 uwb: 0.0 846.212 1171.11 +imu_odom_: 1691062958.585881055 -1.40779 -0.328006 10.1538 -0.0511327 0.0255663 0.0585895 0.03 0.05 pose: 0.0 -1.35461 0.0925985 0 0.000782467 -0.00296602 -0.0454058 0.998964 uwb: 0.50048575 844.946 1170.41 +imu_odom_: 1691062958.611895056 -0.31364 -0.299275 9.81623 -0.0575243 -0.0671117 0.0639159 0.08 0 pose: 0.43894763 -1.35461 0.0925985 0 0.0016426 -0.00151575 -0.0445611 0.999004 uwb: 0.0 844.946 1170.41 +imu_odom_: 1691062958.637886309 0.646434 -0.131681 9.5792 -0.0596548 -0.0255663 0.0511327 0.08 0 pose: 0.0 -1.35461 0.0925985 0 0.0016426 -0.00151575 -0.0445611 0.999004 uwb: 0.49920540 845.079 1170.56 +imu_odom_: 1691062958.663962431 -0.514753 -0.272939 9.80665 -0.056459 0.0500674 0.0479369 0.12 0 pose: 0.25113969 -1.35461 0.0925985 0 0.00152731 0.00103454 -0.0443076 0.999016 uwb: 0.0 845.079 1170.56 +imu_odom_: 1691062958.689853356 0.220267 -0.0909797 9.6199 -0.0479369 -0.0852212 0.0319579 0.12 0 pose: 0.0 -1.35461 0.0925985 0 0.00152731 0.00103454 -0.0443076 0.999016 uwb: 0.50051491 845.026 1170.32 +imu_odom_: 1691062958.705975760 0.383072 -0.241814 9.87129 -0.0607201 -0.00958738 0.0596548 0.14 0 pose: 0.51893551 -1.34472 0.0911097 0 0.00158391 0.000371765 -0.0438996 0.999035 uwb: 0.0 845.026 1170.32 +imu_odom_: 1691062958.731096729 0.102951 -0.0023942 9.65821 -0.0628506 0.00639159 0.0340885 0.14 0 pose: 0.0 -1.34472 0.0911097 0 0.00158391 0.000371765 -0.0438996 0.999035 uwb: 0.50194399 845.286 1170.33 +imu_odom_: 1691062958.756984446 0.011971 -0.395043 10.0197 -0.0553937 -0.0436758 0.0511327 0.14 0 pose: 0.51990963 -1.34472 0.0911097 0 0.00257458 0.00336533 -0.0438511 0.999029 uwb: 0.0 845.286 1170.33 +imu_odom_: 1691062958.774017964 0.203507 -0.229843 9.87369 -0.052198 -0.0585895 0.0266316 0.14 0 pose: 0.0 -1.34472 0.0911097 0 0.00257458 0.00336533 -0.0438511 0.999029 uwb: 0.0 845.286 1170.33 +imu_odom_: 1691062958.799947095 0.37589 -0.129287 9.79947 -0.0585895 0.0479369 0.0447411 0.16 0 pose: 0.42106657 -1.33335 0.09952 0 0.00277699 0.00544615 -0.0437876 0.999022 uwb: 0.49909166 844.46 1169.45 +imu_odom_: 1691062958.825941264 0.162806 -0.150835 9.81144 -0.0511327 -0.0276969 0.0383495 0.12 0 pose: 0.41956457 -1.33335 0.09952 0 0.00121031 0.00714068 -0.0437922 0.999014 uwb: 0.0 844.46 1169.45 +imu_odom_: 1691062958.850873536 0.445322 -0.009576819.85693 -0.0628506 -0.0106526 0.0575243 0.17 0 pose: 0.0 -1.33335 0.09952 0 0.00121031 0.00714068 -0.0437922 0.999014 uwb: 0.50076281 844.197 1169.14 +imu_odom_: 1691062958.872830104 0.328006 -0.248997 10.0485 -0.0553937 0.0458064 0.0426106 0.14 0.02 pose: 0.52025086 -1.32346 0.0980414 0 0.0032343 0.00758536 -0.043684 0.999011 uwb: 0.0 844.197 1169.14 +imu_odom_: 1691062958.889869164 0.301669 -0.186748 10.1514 -0.111853 -0.052198 0.0745685 0.14 0.02 pose: 0.0 -1.32346 0.0980414 0 0.0032343 0.00758536 -0.043684 0.999011 uwb: 0.49895166 844.229 1169.11 +imu_odom_: 1691062958.914832058 0.198719 -0.0957681 10.2711 -0.100135 0.0191748 0.0490022 0.14 0.02 pose: 0.23902164 -1.32346 0.0980414 0 0.00363846 0.00599889 -0.0435038 0.999029 uwb: 0.0 844.229 1169.11 +imu_odom_: 1691062958.939822077 0.557849 -0.289698 9.66539 -0.0745685 -0.0575243 0.0340885 0.18 -0.02 pose: 0.39997737 -1.31357 0.0965689 0 0.00105361 0.00461607 -0.0431526 0.999057 uwb: 0.50012702 845.363 1170.24 +imu_odom_: 1691062958.965819745 0.383072 -0.203507 9.52413 -0.0671117 0 0.0543285 0.15 0 pose: 0.42944859 -1.30642 0.0955081 0 0.000632674 0.0031964 -0.0431326 0.999064 uwb: 0.0 845.363 1170.24 +imu_odom_: 1691062958.980829797 0.059855 -0.244209 10.0533 -0.0607201 0.0340885 0.0447411 0.15 0 pose: 0.0 -1.30642 0.0955081 0 0.000632674 0.0031964 -0.0431326 0.999064 uwb: 0.49982953 845.49 1170.1 +imu_odom_: 1691062959.7868364 0.237026 -0.280122 10.1323 -0.04048 -0.00852212 0.0319579 0.16 0.02 pose: 0.7223000 -1.30368 0.0951031 0 0.000592002 0.00249002 -0.0430788 0.999068 uwb: 0.0 845.49 1170.1 +imu_odom_: 1691062959.32846133 0.347159 -0.411803 9.9527 -0.0436758 -0.052198 0.0319579 0.16 0.02 pose: 0.0 -1.30368 0.0951031 0 0.000592002 0.00249002 -0.0430788 0.999068 uwb: 0.50043908 845.337 1169.68 +imu_odom_: 1691062959.58948213 0.277727 -0.114922 9.74679 -0.0490022 0.00958738 0.052198 0.17 0.02 pose: 0.41919126 -1.30368 0.0951031 0 1.7982e-05 0.00313727 -0.0429332 0.999073 uwb: 0.0 845.337 1169.68 +imu_odom_: 1691062959.76013813 0.222661 -0.179565 10.1323 -0.0479369 -0.0170442 0.0436758 0.17 0.02 pose: 0.0 -1.30368 0.0951031 0 1.7982e-05 0.00313727 -0.0429332 0.999073 uwb: 0.0 845.337 1169.68 +imu_odom_: 1691062959.100801135 0.0215478 -0.275333 9.84975 -0.0479369 0.00639159 0.0372843 0.22 0 pose: 0.51003437 -1.29379 0.0936414 0 -0.00238751 0.00399948 -0.0430674 0.999061 uwb: 0.50029618 845.337 1169.68 +imu_odom_: 1691062959.125831693 0.251391 -0.277727 9.75158 -0.056459 0.00426106 0.0490022 0.22 0 pose: 0.0 -1.29379 0.0936414 0 -0.00238751 0.00399948 -0.0430674 0.999061 uwb: 0.0 845.337 1169.68 +imu_odom_: 1691062959.151948355 0.325611 -0.158017 9.23204 -0.0692422 0.00958738 0.0436758 0.17 0.02 pose: 0.42880404 -1.2839 0.0921769 0 0.000351127 0.00671435 -0.0429089 0.999056 uwb: 0.50065782 845.888 1169.66 +imu_odom_: 1691062959.174804080 0.474052 -0.1652 9.90721 -0.0607201 -0.0266316 0.0372843 0.17 0.02 pose: 0.0 -1.2839 0.0921769 0 0.000351127 0.00671435 -0.0429089 0.999056 uwb: 0.0 845.888 1169.66 +imu_odom_: 1691062959.190959149 0.387861 -0.19393 9.6606 -0.0426106 -0.0298274 0.0319579 0.17 0 pose: 0.51053017 -1.274 0.090716 0 -0.00179616 0.0078008 -0.0428145 0.999051 uwb: 0.49859002 845.6 1168.79 +imu_odom_: 1691062959.216811284 0.469264 -0.198719 9.65582 -0.0511327 -0.0330232 0.0447411 0.17 0 pose: 0.0 -1.274 0.090716 0 -0.00179616 0.0078008 -0.0428145 0.999051 uwb: 0.0 845.6 1168.79 +imu_odom_: 1691062959.242860867 0.577003 -0.217872 10.0245 -0.0543285 -0.0276969 0.0511327 0.21 -0.02 pose: 0.64062351 -1.26411 0.0892574 0 0.000624928 0.00184358 -0.0428328 0.99908 uwb: 0.49966330 846.13 1168.51 +imu_odom_: 1691062959.268926782 0.3304 -0.0909797 10.1323 -0.0415453 -0.0308927 0.0394148 0.21 0 pose: 0.44897455 -1.25422 0.0877978 0 0.000305649 -0.00320231 -0.0426311 0.999086 uwb: 0.0 846.13 1168.51 +imu_odom_: 1691062959.285955051 0.59855 -0.105345 10.1107 -0.0415453 -0.0681769 0.0479369 0.21 0 pose: 0.0 -1.25422 0.0877978 0 0.000305649 -0.00320231 -0.0426311 0.999086 uwb: 0.50036034 846.063 1168.29 +imu_odom_: 1691062959.311817686 0.586579 -0.323217 9.94073 -0.0447411 -0.0191748 0.0479369 0.23 -0.02 pose: 0.6951766 -1.25422 0.0877978 0 0.000819996 -0.00278358 -0.0426333 0.999087 uwb: 0.0 846.063 1168.29 +imu_odom_: 1691062959.336792830 0.672771 -0.332794 9.78031 -0.0671117 -0.0330232 0.0575243 0.23 -0.02 pose: 0.0 -1.25422 0.0877978 0 0.000819996 -0.00278358 -0.0426333 0.999087 uwb: 0.50138403 846.007 1167.47 +imu_odom_: 1691062959.362854954 0.68953 0.102951 10.3884 -0.052198 -0.04048 0.0468716 0.2 -0.02 pose: 0.43028854 -1.24432 0.086342 0 0.00231576 -0.00420623 -0.0425341 0.999083 uwb: 0.0 846.007 1167.47 +imu_odom_: 1691062959.378797702 0.555455 -0.172383 9.63427 -0.0660464 -0.0330232 0.04048 0.2 -0.02 pose: 0.0 -1.24432 0.086342 0 0.00231576 -0.00420623 -0.0425341 0.999083 uwb: 0.0 846.007 1167.47 +imu_odom_: 1691062959.404947903 0.509965 -0.172383 9.43555 -0.0671117 0.00426106 0.0490022 0.22 0 pose: 0.51965590 -1.23443 0.0848901 0 -0.000307462-0.00801638 -0.0421885 0.999077 uwb: 0.49852003 845.908 1166.99 +imu_odom_: 1691062959.430857202 0.42138 -0.538695 9.42118 -0.0703074 0.00958738 0.0511327 0.22 0 pose: 0.0 -1.23443 0.0848901 0 -0.000307462-0.00801638 -0.0421885 0.999077 uwb: 0.50076573 846.31 1166.84 +imu_odom_: 1691062959.456815207 0.392649 -0.268151 10.003 -0.0713727 -0.0468716 0.0479369 0.22 0.02 pose: 0.42160029 -1.23443 0.0848901 0 0.00196602 -0.00703293 -0.0421019 0.999087 uwb: 0.0 846.31 1166.84 +imu_odom_: 1691062959.482825416 0.584185 -0.203507 10.0724 -0.0639159 -0.0671117 0.0276969 0.18 0 pose: 0.50847112 -1.22454 0.0834446 0 -0.00112825 -0.00382116 -0.0418313 0.999117 uwb: 0.49850836 847.34 1166.89 +imu_odom_: 1691062959.499924556 0.641646 -0.136469 9.76355 -0.0479369 -0.00426106 0.036219 0.18 0 pose: 0.0 -1.22454 0.0834446 0 -0.00112825 -0.00382116 -0.0418313 0.999117 uwb: 0.0 847.34 1166.89 +imu_odom_: 1691062959.524815706 0.68953 -0.282516 9.50977 -0.052198 0.00426106 0.0511327 0.18 0 pose: 0.62110338 -1.20877 0.081152 0 -0.000254664-0.00712849 -0.0419432 0.999095 uwb: 0.0 847.34 1166.89 +imu_odom_: 1691062959.550779543 0.553061 -0.0550666 10.2328 -0.0532632 0.0575243 0.0298274 0.18 0 pose: 0.6925226 -1.20474 0.0805652 0 -0.000554133-0.00771901 -0.0419009 0.999092 uwb: 0.49986162 847.499 1166.72 +imu_odom_: 1691062959.575771311 0.529119 -0.0861913 9.74201 -0.072438 -0.0191748 0.0490022 0.19 0 pose: 0.43929761 -1.19766 0.0795336 0 0.00129361 -0.00801439 -0.0419416 0.999087 uwb: 0.0 847.499 1166.72 +imu_odom_: 1691062959.593775149 -0.0933739 -0.241814 10.0173 -0.0490022 -0.0298274 0.0340885 0.19 0 pose: 0.0 -1.19766 0.0795336 0 0.00129361 -0.00801439 -0.0419416 0.999087 uwb: 0.50053241 848.09 1166.07 +imu_odom_: 1691062959.618768959 0.361524 -0.138864 9.87848 -0.0703074 -0.0511327 0.0351537 0.18 0 pose: 0.42995606 -1.19485 0.0791237 0 0.00334457 -0.00606237 -0.0419011 0.999098 uwb: 0.0 848.09 1166.07 +imu_odom_: 1691062959.643861930 0.490811 -0.337582 10.4004 -0.052198 0.0127832 0.04048 0.18 0 pose: 0.0 -1.19485 0.0791237 0 0.00334457 -0.00606237 -0.0419011 0.999098 uwb: 0.49881459 848.746 1165.64 +imu_odom_: 1691062959.665794000 0.878672 -0.148441 10.4148 -0.0671117 -0.0596548 0.04048 0.18 0 pose: 0.50086781 -1.18386 0.0851846 0 0.000865553 -0.00389788 -0.0419473 0.999112 uwb: 0.0 848.746 1165.64 +imu_odom_: 1691062959.682769189 0.490811 -0.244209 9.50977 -0.0436758 0.0276969 0.0340885 0.18 0 pose: 0.0 -1.18386 0.0851846 0 0.000865553 -0.00389788 -0.0419473 0.999112 uwb: 0.50128487 848.44 1165.11 +imu_odom_: 1691062959.709046258 0.361524 -0.0861913 9.71088 -0.056459 -0.00532632 0.0351537 0.24 0 pose: 0.38907259 -1.17362 0.086135 0 -0.000352506-0.00536571 -0.0419746 0.999104 uwb: 0.0 848.44 1165.11 +imu_odom_: 1691062959.734770068 0.308852 -0.366313 9.54568 -0.0596548 0.0287621 0.0447411 0.24 0 pose: 0.0 -1.17362 0.086135 0 -0.000352506-0.00536571 -0.0419746 0.999104 uwb: 0.50108072 847.93 1164.22 +imu_odom_: 1691062959.759902995 0.459687 -0.270545 9.63427 -0.0330232 0.00745685 0.0372843 0.21 0 pose: 0.34316397 -1.16372 0.0846919 0 0.000881171 -0.00281849 -0.0420204 0.999112 uwb: 0.0 847.93 1164.22 +imu_odom_: 1691062959.784979341 0.483629 -0.361524 9.96706 -0.056459 0.0149137 0.0500674 0.18 0 pose: 0.0 -1.16372 0.0846919 0 0.000881171 -0.00281849 -0.0420204 0.999112 uwb: 0.49957288 848.507 1163.88 +imu_odom_: 1691062959.801880743 0.371101 -0.371101 9.97185 -0.0617853 0.00639159 0.0468716 0.18 0 pose: 0.42817409 -1.16372 0.0846919 0 -0.00231024 -0.0024394 -0.0419979 0.999112 uwb: 0.0 848.507 1163.88 +imu_odom_: 1691062959.818901429 0.325611 -0.277727 9.8282 -0.056459 0 0.0436758 0.18 0 pose: 0.0 -1.16372 0.0846919 0 -0.00231024 -0.0024394 -0.0419979 0.999112 uwb: 0.0 848.507 1163.88 +imu_odom_: 1691062959.844902597 0.562637 -0.416591 9.9096 -0.0543285 -0.0426106 0.0490022 0.24 0 pose: 0.58998434 -1.14802 0.0824034 0 -0.00498706 0.00026695 -0.0417496 0.999116 uwb: 0.0 848.507 1163.88 +imu_odom_: 1691062959.861990363 0.201113 -0.0909797 9.43315 -0.0639159 0.0383495 0.0458064 0.24 0 pose: 0.6941266 -1.14393 0.081809 0 -0.00539063 -0.000432269-0.0417191 0.999115 uwb: 0.0 848.507 1163.88 +imu_odom_: 1691062959.887768419 0.253785 -0.277727 9.31344 -0.072438 0.0287621 0.0394148 0.23 0 pose: 0.36147668 -1.14393 0.081809 0 -0.00531737 -0.000807257-0.0415803 0.999121 uwb: 0.100097733 848.063 1162.08 +imu_odom_: 1691062959.903804495 0.608127 -0.356736 10.0365 -0.0511327 -0.0191748 0.0372843 0.19 0 pose: 0.0 -1.14393 0.081809 0 -0.00531737 -0.000807257-0.0415803 0.999121 uwb: 0.0 848.063 1162.08 +imu_odom_: 1691062959.929955572 0.610521 -0.169988 10.2089 -0.0585895 -0.0351537 0.0415453 0.21 0 pose: 0.32918812 -1.13403 0.0803742 0 -0.00504465 0.0013808 -0.0415838 0.999121 uwb: 0.0 848.063 1162.08 +imu_odom_: 1691062959.955914160 0.342371 -0.280122 9.67257 -0.052198 0.0234358 0.0458064 0.18 0 pose: 0.35046397 -1.12689 0.0793388 0 -0.00385684 -0.00215143 -0.0415815 0.999125 uwb: 0.0 848.063 1162.08 +imu_odom_: 1691062959.981879164 0.308852 -0.246603 9.69173 -0.0671117 0.00745685 0.0436758 0.18 0 pose: 0.0 -1.12689 0.0793388 0 -0.00385684 -0.00215143 -0.0415815 0.999125 uwb: 0.99942867 848.331 1161.23 +imu_odom_: 1691062959.998791356 0.102951 -0.129287 9.96227 -0.0639159 -0.00852212 0.0585895 0.18 0 pose: 0.0 -1.12689 0.0793388 0 -0.00385684 -0.00215143 -0.0415815 0.999125 uwb: 0.0 848.331 1161.23 +imu_odom_: 1691062960.24944475 0.385466 -0.299275 9.64384 -0.0692422 -0.0479369 0.0383495 0.18 0 pose: 0.59863468 -1.11424 0.0775056 0 -0.0021384 0.00393552 -0.0413522 0.999135 uwb: 0.0 848.331 1161.23 +imu_odom_: 1691062960.50823734 0.383072 -0.205901 10.1897 -0.0628506 -0.0170442 0.0553937 0.19 0.02 pose: 0.35125435 -1.107 0.0764596 0 -0.00348249 0.0020266 -0.0412885 0.999139 uwb: 0.49903042 848.321 1159.55 +imu_odom_: 1691062960.76773572 0.603339 -0.23942 9.72764 -0.0703074 0.00106526 0.0468716 0.19 0.02 pose: 0.0 -1.107 0.0764596 0 -0.00348249 0.0020266 -0.0412885 0.999139 uwb: 0.0 848.321 1159.55 +imu_odom_: 1691062960.102770658 0.416591 -0.234632 9.81862 -0.056459 -0.00213053 0.0575243 0.2 -0.02 pose: 0.7013595 -1.10434 0.0760754 0 -0.00283163 0.00180289 -0.0412323 0.999144 uwb: 0.50030784 847.323 1157.55 +imu_odom_: 1691062960.128778826 0.31364 -0.3304 9.88326 -0.0372843 0 0.0458064 0.23 -0.02 pose: 0.52867080 -1.09444 0.0746514 0 -0.00103916 -0.000595929-0.0409165 0.999162 uwb: 0.0 847.323 1157.55 +imu_odom_: 1691062960.153883464 0.411803 0.105345 10.24 -0.0596548 -0.02024 0.0426106 0.23 -0.02 pose: 0.0 -1.09444 0.0746514 0 -0.00103916 -0.000595929-0.0409165 0.999162 uwb: 0.0 847.323 1157.55 +imu_odom_: 1691062960.170884609 0.768539 -0.174777 10.319 -0.04048 0.0149137 0.0500674 0.2 0 pose: 0.24985061 -1.09444 0.0746514 0 -0.0007186920.00141909 -0.0407332 0.999169 uwb: 0.0 847.323 1157.55 +imu_odom_: 1691062960.196774368 0.770933 -0.320823 9.9503 -0.0511327 -0.0106526 0.036219 0.2 0 pose: 0.52152829 -1.09444 0.0746514 0 0.000394892 0.00110243 -0.0405894 0.999175 uwb: 0.99931785 847.862 1156.72 +imu_odom_: 1691062960.222760954 0.390255 -0.0837971 9.77074 -0.056459 0.0106526 0.0553937 0.25 0 pose: 0.34811328 -1.08771 0.0736883 0 -0.000308028-0.00223119 -0.040585 0.999174 uwb: 0.0 847.862 1156.72 +imu_odom_: 1691062960.247872299 0.651223 -0.160412 9.43076 -0.0692422 -0.0255663 0.0415453 0.25 0 pose: 0.0 -1.08771 0.0736883 0 -0.000308028-0.00223119 -0.040585 0.999174 uwb: 0.50036034 848.488 1156.07 +imu_odom_: 1691062960.265870304 0.189142 -0.208296 10.0533 -0.0415453 -0.015979 0.0436758 0.2 0 pose: 0.51097931 -1.07766 0.0722525 0 0.001989 -0.00390829 -0.0403554 0.999176 uwb: 0.0 848.488 1156.07 +imu_odom_: 1691062960.290812492 0.481235 -0.304064 9.9934 -0.0458064 -0.0436758 0.0394148 0.2 0 pose: 0.0 -1.07766 0.0722525 0 0.001989 -0.00390829 -0.0403554 0.999176 uwb: 0.49849379 847.747 1153.85 +imu_odom_: 1691062960.315785595 0.682347 -0.25618 10.1658 -0.0426106 0.0330232 0.0447411 0.25 0.02 pose: 0.42940193 -1.0672 0.0707621 0 -0.000374393-0.00328472 -0.0403178 0.999181 uwb: 0.0 847.747 1153.85 +imu_odom_: 1691062960.339764464 0.54109 -0.172383 9.97664 -0.0479369 0.00532632 0.0394148 0.25 0.02 pose: 0.0 -1.0672 0.0707621 0 -0.000374393-0.00328472 -0.0403178 0.999181 uwb: 0.50015619 848.816 1153.84 +imu_odom_: 1691062960.356742569 0.155623 -0.110133 10.1323 -0.0394148 -0.0170442 0.0372843 0.19 0 pose: 0.30914011 -1.06475 0.070413 0 -0.000210397-0.00558333 -0.040255 0.999174 uwb: 0.0 848.816 1153.84 +imu_odom_: 1691062960.382743738 0.205901 -0.342371 9.88805 -0.0436758 -0.0106526 0.0383495 0.19 0 pose: 0.0 -1.06475 0.070413 0 -0.000210397-0.00558333 -0.040255 0.999174 uwb: 0.50137236 848.696 1152.63 +imu_odom_: 1691062960.409763057 1.07978 -0.186748 10.635 -0.0490022 -0.0245011 0.0436758 0.21 0 pose: 0.25006935 -1.05484 0.0690043 0 0.00154997 -0.005903 -0.0402743 0.99917 uwb: 0.0 848.696 1152.63 +imu_odom_: 1691062960.435712604 0.699107 -0.141258 9.9503 -0.052198 0.015979 0.0436758 0.19 -0.05 pose: 0.43033521 -1.05484 0.0690043 0 0.000803456 -0.00354944 -0.0402873 0.999182 uwb: 0.49857253 848.504 1150.96 +imu_odom_: 1691062960.462699257 0.612916 -0.112527 9.4954 -0.072438 -0.0436758 0.0394148 0.23 -0.02 pose: 0.0 -1.05484 0.0690043 0 0.000803456 -0.00354944 -0.0402873 0.999182 uwb: 0.0 848.504 1150.96 +imu_odom_: 1691062960.479701278 0.153229 -0.131681 10.2376 -0.0372843 0.0245011 0.0415453 0.23 -0.02 pose: 0.52960699 -1.04354 0.0774956 0 0.0019167 -0.00863819 -0.0401959 0.999153 uwb: 0.0 848.504 1150.96 +imu_odom_: 1691062960.505792275 0.416591 -0.280122 10.3358 -0.0585895 -0.0298274 0.0532632 0.19 0 pose: 0.0 -1.04354 0.0774956 0 0.0019167 -0.00863819 -0.0401959 0.999153 uwb: 0.50077741 848.127 1149.51 +imu_odom_: 1691062960.530722505 0.6608 -0.208296 10.094 -0.0692422 0.0308927 0.0426106 0.18 0 pose: 0.63064617 -1.02638 0.0750557 0 0.00170588 -0.00680658 -0.040013 0.999175 uwb: 0.49993161 848.322 1148.79 +imu_odom_: 1691062960.556714341 0.56982 -0.222661 10.0126 -0.0671117 0.00106526 0.0415453 0.18 0 pose: 0.0 -1.02638 0.0750557 0 0.00170588 -0.00680658 -0.040013 0.999175 uwb: 0.0 848.322 1148.79 +imu_odom_: 1691062960.582717260 0.035913 -0.253785 9.89045 -0.0468716 0.0149137 0.0415453 0.18 -0.02 pose: 0.6941850 -1.02374 0.0746806 0 0.0014558 -0.00734535 -0.0399999 0.999172 uwb: 0.49879710 848.846 1148.28 +imu_odom_: 1691062960.597857971 0.181959 -0.136469 10.3765 -0.0447411 -0.0213053 0.0511327 0.18 -0.02 pose: 0.0 -1.02374 0.0746806 0 0.0014558 -0.00734535 -0.0399999 0.999172 uwb: 0.0 848.846 1148.28 +imu_odom_: 1691062960.621831882 0.100556 -0.363919 9.73004 -0.0479369 0.0213053 0.0351537 0.17 0.02 pose: 0.51056225 -1.01383 0.0732774 0 -0.00183059 -0.00733189 -0.039912 0.999175 uwb: 0.0 848.846 1148.28 +imu_odom_: 1691062960.648752040 0.0694318 -0.0933739 10.3789 -0.0490022 0 0.0436758 0.17 0.02 pose: 0.0 -1.01383 0.0732774 0 -0.00183059 -0.00733189 -0.039912 0.999175 uwb: 0.49997245 847.709 1145.54 +imu_odom_: 1691062960.673740308 0.308852 -0.287304 10.1107 -0.0426106 -0.0532632 0.0308927 0.19 0 pose: 0.41059927 -1.01383 0.0732774 0 -0.00126579 -0.00321448 -0.039817 0.999201 uwb: 0.0 847.709 1145.54 +imu_odom_: 1691062960.690855781 0.318429 -0.227449 9.55287 -0.0660464 -0.0213053 0.0394148 0.19 0 pose: 0.0 -1.01383 0.0732774 0 -0.00126579 -0.00321448 -0.039817 0.999201 uwb: 0.50114197 848.101 1144.4 +imu_odom_: 1691062960.706741366 0.641646 -0.167594 10.1083 -0.0596548 -0.015979 0.0394148 0.19 0 pose: 0.52107331 -1.00393 0.0718776 0 -0.0009132160.00155074 -0.0398292 0.999205 uwb: 0.0 848.101 1144.4 +imu_odom_: 1691062960.733755726 0.842759 -0.234632 10.003 -0.0553937 -0.00958738 0.0319579 0.19 0 pose: 0.0 -1.00393 0.0718776 0 -0.0009132160.00155074 -0.0398292 0.999205 uwb: 0.49954080 848.257 1143.5 +imu_odom_: 1691062960.758699373 0.667982 -0.177171 9.34457 -0.0436758 0.0447411 0.0351537 0.18 0.02 pose: 0.41907170 -0.994031 0.0704774 0 -0.0008969260.00289436 -0.0398992 0.999199 uwb: 0.0 848.257 1143.5 +imu_odom_: 1691062960.785863058 0.253785 -0.19393 9.54808 -0.056459 0.0117179 0.0319579 0.18 0.02 pose: 0.0 -0.994031 0.0704774 0 -0.0008969260.00289436 -0.0398992 0.999199 uwb: 0.50121488 848.181 1142.07 +imu_odom_: 1691062960.811835645 0.146046 -0.414197 9.71806 -0.0596548 0.0500674 0.0500674 0.19 0 pose: 0.42852115 -0.98413 0.0690752 0 -0.000712386-0.00129016 -0.0400239 0.999198 uwb: 0.0 848.181 1142.07 +imu_odom_: 1691062960.838779134 0.304064 -0.0909797 10.137 -0.0319579 -0.0319579 0.0351537 0.22 0.02 pose: 0.52123955 -0.97423 0.0676695 0 -0.0003559740.00120318 -0.0401257 0.999194 uwb: 0.49931040 848.68 1141.36 +imu_odom_: 1691062960.863834191 0.634463 -0.258574 10.1442 -0.0458064 -0.00852212 0.052198 0.22 0.02 pose: 0.0 -0.97423 0.0676695 0 -0.0003559740.00120318 -0.0401257 0.999194 uwb: 0.0 848.68 1141.36 +imu_odom_: 1691062960.880834462 0.1652 -0.347159 9.65103 -0.0532632 0.0106526 0.0415453 0.23 0.02 pose: 0.25039308 -0.97423 0.0676695 0 -0.0006786510.00317715 -0.040045 0.999193 uwb: 0.49984413 849.494 1140.6 +imu_odom_: 1691062960.905865312 0.260968 -0.201113 9.79947 -0.0639159 -0.0266316 0.0596548 0.23 0.02 pose: 0.51973173 -0.964329 0.066265 0 0.000574116 0.00146 -0.0399179 0.999202 uwb: 0.0 849.494 1140.6 +imu_odom_: 1691062960.932853132 0.459687 -0.189142 10.0556 -0.0532632 -0.0127832 0.04048 0.23 0 pose: 0.35011983 -0.954427 0.0648631 0 0.000407876 0.00456819 -0.0396566 0.999203 uwb: 0.49877085 849.979 1140.14 +imu_odom_: 1691062960.958956670 0.567426 -0.136469 10.1562 -0.0639159 -0.0298274 0.0394148 0.23 0 pose: 0.0 -0.954427 0.0648631 0 0.000407876 0.00456819 -0.0396566 0.999203 uwb: 0.0 849.979 1140.14 +imu_odom_: 1691062960.985855245 0.435745 -0.263362 10.4651 -0.0692422 0.036219 0.0553937 0.25 0 pose: 0.6926392 -0.954427 0.0648631 0 0.000484226 0.00384875 -0.0396531 0.999206 uwb: 0.50125571 850.446 1139.46 +imu_odom_: 1691062961.10758061 0.653617 -0.0957681 10.0437 -0.0553937 -0.0106526 0.0351537 0.18 0.02 pose: 0.53055194 -0.944525 0.0634665 0 0.000564451 -0.00101059 -0.0395864 0.999215 uwb: 0.0 850.446 1139.46 +imu_odom_: 1691062961.27824536 0.672771 -0.126893 9.77074 -0.0543285 -0.0149137 0.0394148 0.21 -0.02 pose: 0.0 -0.944525 0.0634665 0 0.000564451 -0.00101059 -0.0395864 0.999215 uwb: 0.0 850.446 1139.46 +imu_odom_: 1691062961.52818930 0.402226 -0.19393 9.68694 -0.0703074 -0.0255663 0.0436758 0.21 -0.02 pose: 0.0 -0.944525 0.0634665 0 0.000564451 -0.00101059 -0.0395864 0.999215 uwb: 0.49869502 850.776 1138.67 +imu_odom_: 1691062961.79820750 0.605733 -0.272939 9.9096 -0.0628506 0.0255663 0.0490022 0.18 0 pose: 0.51996796 -0.934623 0.062072 0 -3.60484e-05-0.00374934 -0.0394862 0.999213 uwb: 0.49869211 851.002 1138.22 +imu_odom_: 1691062961.104834684 0.577003 -0.246603 9.32063 -0.0607201 0.0447411 0.0351537 0.18 0.02 pose: 0.61977056 -0.917724 0.0596944 0 -0.000786809-0.00452939 -0.0393093 0.999217 uwb: 0.0 851.002 1138.22 +imu_odom_: 1691062961.128701851 0.59855 -0.462081 9.49062 -0.0788296 0.036219 0.056459 0.18 0.02 pose: 0.0 -0.917724 0.0596944 0 -0.000786809-0.00452939 -0.0393093 0.999217 uwb: 0.0 851.002 1138.22 +imu_odom_: 1691062961.145807407 0.251391 -0.430956 10.1107 -0.0671117 0.0234358 0.0468716 0.18 0 pose: 0.7940751 -0.914818 0.0592865 0 -0.0010094 -0.00510027 -0.0393266 0.999213 uwb: 0.50012994 852.006 1138.01 +imu_odom_: 1691062961.171817034 0.622492 -0.0766145 10.0006 -0.0575243 0.0298274 0.0479369 0.18 0 pose: 0.0 -0.914818 0.0592865 0 -0.0010094 -0.00510027 -0.0393266 0.999213 uwb: 0.0 852.006 1138.01 +imu_odom_: 1691062961.197954404 0.265756 -0.282516 10.0652 -0.0351537 -0.00106526 0.0447411 0.18 -0.02 pose: 0.48059523 -0.914818 0.0592865 0 -0.00436736 -0.00575745 -0.0391215 0.999208 uwb: 0.50238149 851.109 1136.2 +imu_odom_: 1691062961.223810915 0.536301 0.0023942 10.1778 -0.0308927 -0.0234358 0.0372843 0.18 -0.02 pose: 0.0 -0.914818 0.0592865 0 -0.00436736 -0.00575745 -0.0391215 0.999208 uwb: 0.0 851.109 1136.2 +imu_odom_: 1691062961.241003966 0.174777 -0.407014 9.69412 -0.0436758 -0.0117179 0.0426106 0.18 0 pose: 0.43025064 -0.904915 0.0579009 0 -0.00255306 -0.00486413 -0.0389701 0.999225 uwb: 0.49994037 850.614 1134.98 +imu_odom_: 1691062961.266949430 0.687136 -0.112527 9.67497 -0.0468716 -0.0394148 0.0394148 0.18 0 pose: 0.0 -0.904915 0.0579009 0 -0.00255306 -0.00486413 -0.0389701 0.999225 uwb: 0.0 850.614 1134.98 +imu_odom_: 1691062961.291806748 0.562637 -0.1652 9.7037 -0.0543285 -0.0628506 0.0500674 0.19 0 pose: 0.88103342 -0.883724 0.0650394 0 0.000630398 -0.00542731 -0.0389276 0.999227 uwb: 0.50067241 850.373 1134.26 +imu_odom_: 1691062961.317683091 0.555455 -0.191536 10.3837 -0.0639159 -0.036219 0.04048 0.19 0 pose: 0.7770719 -0.883724 0.0650394 0 0.00099636 -0.00633842 -0.0388884 0.999223 uwb: 0.0 850.373 1134.26 +imu_odom_: 1691062961.334813438 0.435745 -0.237026 9.69891 -0.0628506 0.0170442 0.036219 0.2 0.02 pose: 0.0 -0.883724 0.0650394 0 0.00099636 -0.00633842 -0.0388884 0.999223 uwb: 0.49853170 849.893 1133.04 +imu_odom_: 1691062961.359663756 0.629675 -0.241814 10.0556 -0.0617853 -0.0149137 0.0426106 0.2 0.02 pose: 0.42962942 -0.87382 0.0636578 0 -0.00023454 -0.00700298 -0.03878 0.999223 uwb: 0.0 849.893 1133.04 +imu_odom_: 1691062961.384701898 0.509965 -0.306458 10.0221 -0.04048 -0.0181095 0.0447411 0.19 0 pose: 0.41980665 -0.866418 0.0626267 0 -0.00116466 -0.00770128 -0.0387682 0.999218 uwb: 0.49949415 849.688 1132.06 +imu_odom_: 1691062961.408727431 0.493206 -0.356736 9.8282 -0.0394148 -0.0106526 0.04048 0.19 0 pose: 0.0 -0.866418 0.0626267 0 -0.00116466 -0.00770128 -0.0387682 0.999218 uwb: 0.0 849.688 1132.06 +imu_odom_: 1691062961.432674218 0.52433 -0.0670376 10.2137 -0.0415453 -0.02024 0.0330232 0.25 -0.02 pose: 0.49063675 -0.856915 0.0613051 0 -0.00503893 -0.00552062 -0.038655 0.999225 uwb: 0.49982371 849.391 1130.92 +imu_odom_: 1691062961.447670854 0.383072 -0.351948 9.98143 -0.0585895 -0.0596548 0.0511327 0.25 -0.02 pose: 0.0 -0.856915 0.0613051 0 -0.00503893 -0.00552062 -0.038655 0.999225 uwb: 0.0 849.391 1130.92 +imu_odom_: 1691062961.472804948 0.409408 -0.263362 10.0102 -0.0351537 -0.02024 0.0436758 0.17 -0.02 pose: 0.38943423 -0.84881 0.0601786 0 -0.00332106 -0.00500553 -0.0386508 0.999235 uwb: 0.0 849.391 1130.92 +imu_odom_: 1691062961.499792185 0.105345 -0.0885855 9.58638 -0.0553937 0.0276969 0.0532632 0.17 -0.02 pose: 0.7211626 -0.844106 0.0595249 0 -0.00312482 -0.00435567 -0.0386339 0.999239 uwb: 0.50164361 849.642 1130.02 +imu_odom_: 1691062961.515715393 0.234632 -0.464475 9.91678 -0.0649811 0.00106526 0.0468716 0.19 0 pose: 0.17922468 -0.844106 0.0595249 0 -0.00263711 -0.00274063 -0.0385918 0.999248 uwb: 0.0 849.642 1130.02 +imu_odom_: 1691062961.542652758 0.454898 -0.234632 10.1035 -0.0490022 -0.00958738 0.0372843 0.19 0 pose: 0.34957737 -0.834201 0.0581511 0 -0.00198822 0.000588791 -0.0383762 0.999261 uwb: 0.49852003 849.405 1128.4 +imu_odom_: 1691062961.558666669 0.648829 -0.0287304 9.67018 -0.0692422 -0.00852212 0.0500674 0.25 0 pose: 0.0 -0.834201 0.0581511 0 -0.00198822 0.000588791 -0.0383762 0.999261 uwb: 0.0 849.405 1128.4 +imu_odom_: 1691062961.575780392 0.521936 -0.409408 10.0509 -0.0628506 0.0191748 0.0575243 0.25 0 pose: 0.0 -0.834201 0.0581511 0 -0.00198822 0.000588791 -0.0383762 0.999261 uwb: 0.0 849.405 1128.4 +imu_odom_: 1691062961.592777163 0.586579 -0.0957681 10.3837 -0.0649811 -0.0266316 0.0394148 0.19 0 pose: 0.15052633 -0.834201 0.0581511 0 -0.00234601 0.000439674 -0.0383562 0.999261 uwb: 0.49975663 848.912 1127.01 +imu_odom_: 1691062961.607677846 -0.071826 0.023942 10.0652 -0.0479369 -0.0106526 0.052198 0.19 0 pose: 0.52965074 -0.824295 0.0567801 0 -0.00223919 -0.00296327 -0.038145 0.999265 uwb: 0.0 848.912 1127.01 +imu_odom_: 1691062961.632778692 -0.0622492 -0.37589 9.9096 -0.0607201 0.015979 0.036219 0.19 0 pose: 0.0 -0.824295 0.0567801 0 -0.00223919 -0.00296327 -0.038145 0.999265 uwb: 0.50011828 848.616 1126.13 +imu_odom_: 1691062961.657907828 0.335188 -0.323217 10.058 -0.0415453 -0.00958738 0.0447411 0.23 -0.05 pose: 0.7924419 -0.824295 0.0567801 0 -0.0016633 -0.00354754 -0.0381485 0.999264 uwb: 0.0 848.616 1126.13 +imu_odom_: 1691062961.683671594 0.387861 -0.179565 9.86411 -0.0553937 -0.0255663 0.0490022 0.2 0 pose: 0.74203017 -0.807476 0.0544604 0 -0.00268151 0.00134941 -0.0380328 0.999272 uwb: 0.49866295 848.543 1124.85 +imu_odom_: 1691062961.700895269 0.620098 -0.131681 10.0868 -0.0585895 0.015979 0.0340885 0.2 0 pose: 0.0 -0.807476 0.0544604 0 -0.00268151 0.00134941 -0.0380328 0.999272 uwb: 0.0 848.543 1124.85 +imu_odom_: 1691062961.725719923 0.234632 -0.071826 10.0413 -0.0649811 -0.00532632 0.0543285 0.21 0 pose: 0.32962852 -0.804483 0.0540482 0 7.90742e-05 0.000104992 -0.0379282 0.99928 uwb: 0.0 848.543 1124.85 +imu_odom_: 1691062961.752726117 0.507571 -0.557849 10.2472 -0.0607201 0.0170442 0.0276969 0.23 0 pose: 0.34849243 -0.797469 0.0530835 0 0.00180945 0.00119027 -0.0377746 0.999284 uwb: 0.50104864 848.927 1124.54 +imu_odom_: 1691062961.777703303 0.129287 -0.258574 9.87369 -0.0458064 0.015979 0.036219 0.23 0 pose: 0.6941850 -0.794576 0.0526866 0 0.00112891 0.00106471 -0.0378161 0.999284 uwb: 0.0 848.927 1124.54 +imu_odom_: 1691062961.804953026 0.806846 -0.339977 10.0844 -0.0628506 -0.0660464 0.0351537 0.22 0 pose: 0.45041530 -0.787565 0.051724 0 -0.0008728980.00344329 -0.0379761 0.999272 uwb: 0.50121196 848.773 1123.34 +imu_odom_: 1691062961.830644754 0.579397 -0.253785 9.48583 -0.0426106 0.036219 0.0372843 0.22 0 pose: 0.0 -0.787565 0.051724 0 -0.0008728980.00344329 -0.0379761 0.999272 uwb: 0.49955248 849.007 1122.27 +imu_odom_: 1691062961.847708896 0.292093 -0.316035 9.92875 -0.0458064 0.00745685 0.0383495 0.25 0 pose: 0.52941451 -0.777563 0.0503464 0 -0.00172351 -0.00207933 -0.0380747 0.999271 uwb: 0.0 849.007 1122.27 +imu_odom_: 1691062961.872639127 0.316035 -0.332794 9.92397 -0.0351537 -0.00852212 0.0468716 0.25 0 pose: 0.0 -0.777563 0.0503464 0 -0.00172351 -0.00207933 -0.0380747 0.999271 uwb: 0.0 849.007 1122.27 +imu_odom_: 1691062961.897779346 0.555455 -0.40462 10.0078 -0.0500674 -0.0308927 0.0500674 0.21 0.02 pose: 0.41994373 -0.767752 0.0489942 0 -0.00346831 0.00157571 -0.0379847 0.999271 uwb: 0.49908875 848.808 1121.35 +imu_odom_: 1691062961.921767256 0.579397 -0.181959 10.2041 -0.0468716 0.02024 0.0490022 0.21 0.02 pose: 0.7008055 -0.764856 0.0485956 0 -0.00386361 0.000912749 -0.0379502 0.999272 uwb: 0.0 848.808 1121.35 +imu_odom_: 1691062961.937712046 0.454898 -0.11971 10.0197 -0.056459 -0.00852212 0.0596548 0.2 0.02 pose: 0.25447909 -0.764856 0.0485956 0 -0.00440463 -0.00129307 -0.0378303 0.999274 uwb: 0.50147154 848.522 1119.85 +imu_odom_: 1691062961.964768404 0.466869 -0.071826 9.90002 -0.052198 0 0.04048 0.2 0.02 pose: 0.0 -0.764856 0.0485956 0 -0.00440463 -0.00129307 -0.0378303 0.999274 uwb: 0.0 848.522 1119.85 +imu_odom_: 1691062961.989632139 0.260968 -0.339977 9.64624 -0.0585895 -0.0127832 0.0500674 0.23 0 pose: 0.24563335 -0.754949 0.0472356 0 -0.00252306 -0.00246506 -0.037683 0.999284 uwb: 0.50028160 848.347 1119.12 +imu_odom_: 1691062962.6824898 0.21069 -0.0407014 10.1801 -0.0553937 -0.00319579 0.0490022 0.23 0 pose: 0.0 -0.754949 0.0472356 0 -0.00252306 -0.00246506 -0.037683 0.999284 uwb: 0.0 848.347 1119.12 +imu_odom_: 1691062962.31671426 0.514753 -0.102951 9.9503 -0.0703074 -0.0351537 0.0436758 0.23 0.02 pose: 0.67001308 -0.745041 0.0458797 0 2.8413e-05 -0.000319163-0.0374348 0.999299 uwb: 0.50034285 848.26 1118.13 +imu_odom_: 1691062962.56773438 0.708684 0.0383072 10.2448 -0.0585895 -0.0319579 0.0532632 0.21 0.02 pose: 0.0 -0.745041 0.0458797 0 2.8413e-05 -0.000319163-0.0374348 0.999299 uwb: 0.0 848.26 1118.13 +imu_odom_: 1691062962.82658531 0.639252 -0.0861913 10.3908 -0.0500674 -0.00532632 0.0383495 0.21 0.02 pose: 0.35011692 -0.738339 0.0449646 0 0.00201663 -0.00193625 -0.0373343 0.999299 uwb: 0.49990538 848.132 1116.95 +imu_odom_: 1691062962.107643301 0.471658 -0.272939 9.71567 -0.0596548 -0.0117179 0.0436758 0.21 0 pose: 0.8133240 -0.735133 0.0445276 0 0.00247854 -0.00270723 -0.0372784 0.999298 uwb: 0.0 848.132 1116.95 +imu_odom_: 1691062962.123635630 0.617704 -0.007182619.69891 -0.0745685 -0.0500674 0.0394148 0.21 0 pose: 0.0 -0.735133 0.0445276 0 0.00247854 -0.00270723 -0.0372784 0.999298 uwb: 0.0 848.132 1116.95 +imu_odom_: 1691062962.149689587 0.591368 -0.47884 9.69173 -0.072438 -0.00319579 0.0553937 0.18 0.02 pose: 0.49871836 -0.723875 0.0530868 0 0.00364435 -0.00653536 -0.0371547 0.999282 uwb: 0.49684597 847.704 1115.18 +imu_odom_: 1691062962.174766227 0.718261 -0.191536 9.76355 -0.0532632 -0.0330232 0.0340885 0.18 0.02 pose: 0.0 -0.723875 0.0530868 0 0.00364435 -0.00653536 -0.0371547 0.999282 uwb: 0.0 847.704 1115.18 +imu_odom_: 1691062962.198760845 0.337582 -0.215478 10.0963 -0.0607201 0 0.0607201 0.22 0.02 pose: 0.41956750 -0.723875 0.0530868 0 0.00225486 -0.00721865 -0.0370508 0.999285 uwb: 0.50034868 848.403 1115.28 +imu_odom_: 1691062962.216771391 0.73502 -0.270545 9.61272 -0.0735032 -0.015979 0.0490022 0.22 0.02 pose: 0.0 -0.723875 0.0530868 0 0.00225486 -0.00721865 -0.0370508 0.999285 uwb: 0.0 848.403 1115.28 +imu_odom_: 1691062962.240764843 0.502782 -0.220267 9.80426 -0.0735032 0.0117179 0.0415453 0.18 -0.02 pose: 0.50044493 -0.713966 0.0517414 0 0.000365181 -0.00959503 -0.036891 0.999273 uwb: 0.50052368 848.66 1114.04 +imu_odom_: 1691062962.267768996 0.711078 -0.296881 9.9096 -0.0479369 -0.0276969 0.0436758 0.18 -0.02 pose: 0.0 -0.713966 0.0517414 0 0.000365181 -0.00959503 -0.036891 0.999273 uwb: 0.0 848.66 1114.04 +imu_odom_: 1691062962.292710018 1.02232 -0.383072 10.058 -0.0426106 -0.0372843 0.0276969 0.19 0 pose: 0.42097326 -0.704056 0.0503993 0 -0.000615164-0.00885726 -0.0366157 0.99929 uwb: 0.49963706 849.309 1113.76 +imu_odom_: 1691062962.317675830 1.17795 -0.122104 10.1011 -0.0511327 0.0319579 0.0383495 0.23 0 pose: 0.51902011 -0.694146 0.0490629 0 -0.00202757 -0.010652 -0.0365817 0.999272 uwb: 0.0 849.309 1113.76 +imu_odom_: 1691062962.331698064 0.54109 -0.253785 10.1442 -0.0490022 0.0170442 0.0458064 0.23 0 pose: 0.0 -0.694146 0.0490629 0 -0.00202757 -0.010652 -0.0365817 0.999272 uwb: 0.49990829 849.509 1113.2 +imu_odom_: 1691062962.347618064 0.304064 -0.337582 9.95509 -0.0372843 -0.0106526 0.04048 0.23 0 pose: 0.0 -0.694146 0.0490629 0 -0.00202757 -0.010652 -0.0365817 0.999272 uwb: 0.0 849.509 1113.2 +imu_odom_: 1691062962.371776589 0.112527 -0.277727 9.78989 -0.0617853 0.00426106 0.0500674 0.19 0 pose: 0.71940982 -0.678756 0.0469874 0 -0.00213424 -0.0114814 -0.0366423 0.99926 uwb: 0.0 849.509 1113.2 +imu_odom_: 1691062962.396805398 0.268151 -0.428562 9.92875 -0.0660464 -0.00639159 0.0394148 0.19 0 pose: 0.7147463 -0.674326 0.0463899 0 -0.00217191 -0.0107354 -0.0366038 0.99927 uwb: 0.49941832 849.809 1112.77 +imu_odom_: 1691062962.423718265 0.363919 -0.454898 9.75158 -0.0532632 0.0181095 0.0394148 0.23 0 pose: 0.42039871 -0.667641 0.0454902 0 -0.00354552 -0.00675613 -0.0365004 0.999305 uwb: 0.0 849.809 1112.77 +imu_odom_: 1691062962.439633307 0.213084 -0.282516 9.62708 -0.0500674 0.0245011 0.0351537 0.23 0 pose: 0.0 -0.667641 0.0454902 0 -0.00354552 -0.00675613 -0.0365004 0.999305 uwb: 0.49999288 849.643 1111.87 +imu_odom_: 1691062962.465613769 1.00078 -0.390255 10.4459 -0.0468716 -0.0191748 0.052198 0.19 0.02 pose: 0.34857409 -0.664415 0.0450561 0 -0.0052243 -0.00361149 -0.0364987 0.999314 uwb: 0.0 849.643 1111.87 +imu_odom_: 1691062962.490663576 1.08697 -0.531513 9.34217 -0.0543285 0.072438 0.0436758 0.19 0.02 pose: 0.0 -0.664415 0.0450561 0 -0.0052243 -0.00361149 -0.0364987 0.999314 uwb: 0.50052659 850.098 1111.33 +imu_odom_: 1691062962.514661402 -0.0047884 -0.418985 9.17698 -0.0276969 -0.0138484 0.052198 0.19 0.02 pose: 0.40965433 -0.654504 0.0437232 0 -0.00568149 -0.00584405 -0.0363484 0.999306 uwb: 0.0 850.098 1111.33 +imu_odom_: 1691062962.537667911 0.361524 -0.105345 9.90721 -0.00958738 -0.00106526 0.0500674 0.18 -0.02 pose: 0.0 -0.654504 0.0437232 0 -0.00568149 -0.00584405 -0.0363484 0.999306 uwb: 0.49994912 850.304 1110.37 +imu_odom_: 1691062962.551596525 0.737414 -0.196325 10.319 -0.0394148 -0.0372843 0.0479369 0.18 -0.02 pose: 0.49052591 -0.644593 0.0423938 0 -0.00557326 -0.00422451 -0.0361121 0.999323 uwb: 0.0 850.304 1110.37 +imu_odom_: 1691062962.568642002 0.59855 -0.205901 9.42597 -0.0628506 0.00106526 0.0553937 0.18 -0.02 pose: 0.0 -0.644593 0.0423938 0 -0.00557326 -0.00422451 -0.0361121 0.999323 uwb: 0.0 850.304 1110.37 +imu_odom_: 1691062962.593615106 0.318429 -0.11971 9.92636 -0.072438 0.00852212 0.0490022 0.2 0 pose: 0.46961171 -0.634681 0.0410678 0 -0.00244747 -0.00641911 -0.0358504 0.999334 uwb: 0.50141029 850.17 1109.06 +imu_odom_: 1691062962.617656388 0.677559 -0.141258 9.97185 -0.0735032 -0.0436758 0.0415453 0.2 0 pose: 0.0 -0.634681 0.0410678 0 -0.00244747 -0.00641911 -0.0358504 0.999334 uwb: 0.0 850.17 1109.06 +imu_odom_: 1691062962.642718153 1.00556 -0.292093 9.87129 -0.0713727 -0.0117179 0.0607201 0.23 0 pose: 0.49014386 -0.627689 0.0401375 0 -0.000462594-0.00686912 -0.0357225 0.999338 uwb: 0.49883211 850.686 1109.08 +imu_odom_: 1691062962.667783418 0.122104 -0.0981623 10.0485 -0.0543285 0.0213053 0.0319579 0.19 -0.02 pose: 0.0 -0.627689 0.0401375 0 -0.000462594-0.00686912 -0.0357225 0.999338 uwb: 0.0 850.686 1109.08 +imu_odom_: 1691062962.691724664 0.335188 -0.301669 9.77313 -0.0575243 -0.0532632 0.0468716 0.19 -0.02 pose: 0.32021697 -0.624769 0.039749 0 -0.000923595-0.00866481 -0.0354843 0.999332 uwb: 0.49972164 849.973 1107.61 +imu_odom_: 1691062962.706660054 0.818817 -0.169988 10.173 -0.056459 -0.0585895 0.0298274 0.19 -0.02 pose: 0.0 -0.624769 0.039749 0 -0.000923595-0.00866481 -0.0354843 0.999332 uwb: 0.0 849.973 1107.61 +imu_odom_: 1691062962.730708335 0.950498 -0.107739 10.1754 -0.0596548 -0.00213053 0.0490022 0.18 -0.02 pose: 0.49182085 -0.614855 0.0384351 0 -0.00115249 -0.00595766 -0.0354997 0.999351 uwb: 0.50194109 849.773 1105.98 +imu_odom_: 1691062962.754580752 0.754174 -0.268151 9.64384 -0.0575243 -0.0138484 0.0458064 0.22 0 pose: 0.31848165 -0.604942 0.0371209 0 -0.000468994-0.00923724 -0.0354321 0.999329 uwb: 0.0 849.773 1105.98 +imu_odom_: 1691062962.771633520 0.548272 -0.217872 9.97903 -0.0639159 0.0266316 0.0351537 0.22 0 pose: 0.0 -0.604942 0.0371209 0 -0.000468994-0.00923724 -0.0354321 0.999329 uwb: 0.0 849.773 1105.98 +imu_odom_: 1691062962.796586208 0.526724 -0.56982 9.25598 -0.076699 0.0191748 0.0500674 0.18 0 pose: 0.6944475 -0.604942 0.0371209 0 -0.000695352-0.00992988 -0.0354086 0.999323 uwb: 0.50227941 850.026 1105.8 +imu_odom_: 1691062962.821728469 0.778116 -0.54109 10.0533 -0.0703074 0.00639159 0.0308927 0.18 0 pose: 0.0 -0.604942 0.0371209 0 -0.000695352-0.00992988 -0.0354086 0.999323 uwb: 0.0 850.026 1105.8 +imu_odom_: 1691062962.846612327 0.275333 -0.217872 9.94791 -0.0415453 -0.00852212 0.04048 0.19 0 pose: 0.40938310 -0.595028 0.0358093 0 -0.00174253 -0.00945962 -0.0353501 0.999329 uwb: 0.49631808 850.628 1105.37 +imu_odom_: 1691062962.871659218 0.337582 -0.203507 9.75158 -0.0607201 -0.0809601 0.036219 0.19 0 pose: 0.0 -0.595028 0.0358093 0 -0.00174253 -0.00945962 -0.0353501 0.999329 uwb: 0.0 850.628 1105.37 +imu_odom_: 1691062962.888709945 0.402226 -0.368707 9.86172 -0.0511327 0.0245011 0.0415453 0.18 0 pose: 0.51025603 -0.585115 0.0344986 0 -0.00561752 -0.00947989 -0.0353322 0.999315 uwb: 0.50030202 850.156 1103.95 +imu_odom_: 1691062962.911709162 1.04627 -0.371101 10.4076 -0.0671117 0.0276969 0.0394148 0.18 0 pose: 0.0 -0.585115 0.0344986 0 -0.00561752 -0.00947989 -0.0353322 0.999315 uwb: 0.0 850.156 1103.95 +imu_odom_: 1691062962.936578438 0.639252 -0.234632 9.81862 -0.0479369 0.0351537 0.0415453 0.2 0 pose: 0.50017953 -0.573891 0.0431021 0 -0.00428683 -0.00582855 -0.0353438 0.999349 uwb: 0.49981789 850.272 1102.91 +imu_odom_: 1691062962.959612361 0.474052 -0.227449 9.93354 -0.0628506 -0.0138484 0.0553937 0.2 0 pose: 0.0 -0.573891 0.0431021 0 -0.00428683 -0.00582855 -0.0353438 0.999349 uwb: 0.0 850.272 1102.91 +imu_odom_: 1691062962.973778671 0.047884 -0.184354 9.93115 -0.0511327 -0.00426106 0.0468716 0.19 0 pose: 0.39961282 -0.573891 0.0431021 0 -0.00469688 -0.00730419 -0.0353413 0.999338 uwb: 0.0 850.272 1102.91 +imu_odom_: 1691062962.998643572 0.459687 -0.198719 10.0628 -0.0628506 -0.00106526 0.0500674 0.19 0 pose: 0.0 -0.573891 0.0431021 0 -0.00469688 -0.00730419 -0.0353413 0.999338 uwb: 0.50172819 850.138 1102.04 +imu_odom_: 1691062963.23617842 0.181959 -0.35913 9.71567 -0.0511327 0.00319579 0.0436758 0.18 0 pose: 0.46074554 -0.563977 0.0417916 0 -0.00242441 -0.00589744 -0.0351384 0.999362 uwb: 0.0 850.138 1102.04 +imu_odom_: 1691062963.47573379 0.263362 -0.0909797 9.84256 -0.0543285 -0.0436758 0.0628506 0.18 0 pose: 0.0 -0.563977 0.0417916 0 -0.00242441 -0.00589744 -0.0351384 0.999362 uwb: 0.49812631 850.217 1100.84 +imu_odom_: 1691062963.65627965 0.830788 -0.102951 9.9096 -0.0479369 -0.0287621 0.0436758 0.25 0 pose: 0.39921326 -0.554063 0.0404847 0 -0.00062513 -0.00289514 -0.0349698 0.999384 uwb: 0.0 850.217 1100.84 +imu_odom_: 1691062963.81555548 0.117316 -0.323217 9.4571 -0.0671117 0.00745685 0.0458064 0.25 0 pose: 0.0 -0.554063 0.0404847 0 -0.00062513 -0.00289514 -0.0349698 0.999384 uwb: 0.49912668 850.185 1099.72 +imu_odom_: 1691062963.107550593 0.490811 -0.301669 9.55765 -0.0607201 -0.00958738 0.036219 0.25 0 pose: 0.75963710 -0.538893 0.0384935 0 0.000167826 -0.000322045-0.0345635 0.999402 uwb: 0.0 850.185 1099.72 +imu_odom_: 1691062963.131711160 0.0622492 -0.143652 10.1275 -0.0937433 -0.0117179 0.076699 0.25 0 pose: 0.7012721 -0.534233 0.0378845 0 -0.000387807-0.000791987-0.034575 0.999402 uwb: 0.49937749 850.494 1099.33 +imu_odom_: 1691062963.154594300 0.514753 -0.241814 9.8282 -0.0777643 -0.0106526 0.0298274 0.21 0 pose: 0.43142891 -0.527224 0.0369685 0 -0.00162737 0.000165495 -0.0341561 0.999415 uwb: 0.0 850.494 1099.33 +imu_odom_: 1691062963.179596569 0.857124 -0.368707 9.89045 -0.0745685 -0.0298274 0.0543285 0.21 0 pose: 0.0 -0.527224 0.0369685 0 -0.00162737 0.000165495 -0.0341561 0.999415 uwb: 0.50078325 850.401 1097.89 +imu_odom_: 1691062963.193588472 0.826 -0.134075 9.82102 -0.0894822 -0.0319579 0.0585895 0.18 0.02 pose: 0.0 -0.527224 0.0369685 0 -0.00162737 0.000165495 -0.0341561 0.999415 uwb: 0.0 850.401 1097.89 +imu_odom_: 1691062963.217712583 0.0383072 -0.198719 9.7037 -0.0426106 -0.0234358 0.0276969 0.18 0.02 pose: 0.47885409 -0.524317 0.036591 0 -0.00290421 -0.00487838 -0.0340891 0.999403 uwb: 0.0 850.401 1097.89 +imu_odom_: 1691062963.243578427 0.442927 -0.100556 10.386 -0.0575243 -0.0308927 0.0543285 0.21 0 pose: 0.38116014 -0.5144 0.0353062 0 -0.0021281 -0.00423335 -0.0341011 0.999407 uwb: 0.49983830 850.659 1097.72 +imu_odom_: 1691062963.268605777 0.260968 -0.292093 10.2855 -0.0575243 0.00426106 0.0511327 0.21 0 pose: 0.0 -0.5144 0.0353062 0 -0.0021281 -0.00423335 -0.0341011 0.999407 uwb: 0.0 850.659 1097.72 +imu_odom_: 1691062963.293641002 0.627281 -0.177171 9.7875 -0.0756338 0.00639159 0.0490022 0.19 -0.02 pose: 0.50893194 -0.504482 0.0340207 0 -0.000534774-0.00141828 -0.0337724 0.999428 uwb: 0.50001621 850.718 1096.94 +imu_odom_: 1691062963.309564502 0.442927 -0.299275 9.84975 -0.0788296 0.0117179 0.0426106 0.19 -0.02 pose: 0.0 -0.504482 0.0340207 0 -0.000534774-0.00141828 -0.0337724 0.999428 uwb: 0.0 850.718 1096.94 +imu_odom_: 1691062963.333673739 0.277727 -0.550666 9.75398 -0.0479369 -0.00639159 0.04048 0.19 0 pose: 0.32040072 -0.494565 0.0327415 0 -0.00100652 -0.00338763 -0.033644 0.999428 uwb: 0.49952916 850.677 1094.94 +imu_odom_: 1691062963.358571014 0.567426 -0.622492 9.62948 -0.04048 -0.0170442 0.0383495 0.19 0 pose: 0.0 -0.494565 0.0327415 0 -0.00100652 -0.00338763 -0.033644 0.999428 uwb: 0.0 850.677 1094.94 +imu_odom_: 1691062963.372553292 0.517148 0.011971 9.77074 -0.0607201 -0.0298274 0.0479369 0.25 0 pose: 0.40967766 -0.494565 0.0327415 0 -0.00454525 -0.00196973 -0.0336123 0.999423 uwb: 0.0 850.677 1094.94 +imu_odom_: 1691062963.395697459 0.445322 -0.0957681 10.173 -0.0532632 -0.0426106 0.0500674 0.25 0 pose: 0.0 -0.494565 0.0327415 0 -0.00454525 -0.00196973 -0.0336123 0.999423 uwb: 0.49991996 850.339 1093.33 +imu_odom_: 1691062963.420611066 0.550666 -0.158017 10.07 -0.0447411 -0.0394148 0.0351537 0.19 0 pose: 0.37945398 -0.484646 0.0314648 0 -0.00399495 -0.00318622 -0.0335321 0.999425 uwb: 0.0 850.339 1093.33 +imu_odom_: 1691062963.445583003 0.706289 -0.328006 10.2831 -0.0500674 -0.0436758 0.0500674 0.19 0 pose: 0.0 -0.484646 0.0314648 0 -0.00399495 -0.00318622 -0.0335321 0.999425 uwb: 0.50001912 850.985 1092.39 +imu_odom_: 1691062963.462676019 0.548272 -0.110133 9.79947 -0.072438 -0.0191748 0.0500674 0.18 0 pose: 0.48067108 -0.474728 0.0301898 0 -0.000698612-0.00614338 -0.0334756 0.99942 uwb: 0.0 850.985 1092.39 +imu_odom_: 1691062963.487619666 0.462081 -0.308852 9.49301 -0.0671117 -0.0234358 0.04048 0.18 0 pose: 0.0 -0.474728 0.0301898 0 -0.000698612-0.00614338 -0.0334756 0.99942 uwb: 0.50052952 850.805 1091.78 +imu_odom_: 1691062963.513613253 0.23942 -0.37589 9.65821 -0.0479369 -0.00426106 0.0340885 0.18 -0.02 pose: 0.42962068 -0.46481 0.0289157 0 -0.000657077-0.00757459 -0.0332935 0.999417 uwb: 0.0 850.805 1091.78 +imu_odom_: 1691062963.538562150 0.560243 -0.416591 9.84975 -0.0426106 -0.0298274 0.0447411 0.18 0.02 pose: 0.24187107 -0.46481 0.0289157 0 -0.00220861 -0.00586362 -0.0332937 0.999426 uwb: 0.50290937 851.49 1092.26 +imu_odom_: 1691062963.555695413 0.490811 -0.0383072 10.0365 -0.0426106 0.00639159 0.0426106 0.18 0.02 pose: 0.0 -0.46481 0.0289157 0 -0.00220861 -0.00586362 -0.0332937 0.999426 uwb: 0.0 851.49 1092.26 +imu_odom_: 1691062963.579559955 0.653617 -0.162806 10.4244 -0.0436758 -0.0170442 0.0330232 0.18 0 pose: 0.25771932 -0.454891 0.0276452 0 -0.00343202 -0.00449766 -0.0333169 0.999429 uwb: 0.49658058 851.132 1091.22 +imu_odom_: 1691062963.604582640 1.01754 -0.143652 9.76834 -0.0500674 -0.0106526 0.0479369 0.18 0 pose: 0.0 -0.454891 0.0276452 0 -0.00343202 -0.00449766 -0.0333169 0.999429 uwb: 0.0 851.132 1091.22 +imu_odom_: 1691062963.630640681 0.756568 -0.299275 10.1778 -0.0500674 0.0223706 0.0447411 0.18 -0.02 pose: 0.42039288 -0.444972 0.0263751 0 -0.00268258 -0.00589995 -0.0332736 0.999425 uwb: 0.50033702 850.933 1089.56 +imu_odom_: 1691062963.647680616 -0.134075 -0.155623 9.54089 -0.0575243 -0.02024 0.0596548 0.18 -0.02 pose: 0.0 -0.444972 0.0263751 0 -0.00268258 -0.00589995 -0.0332736 0.999425 uwb: 0.0 850.933 1089.56 +imu_odom_: 1691062963.665741910 0.442927 0.189142 10.1203 -0.0468716 -0.0106526 0.116114 0.18 0.08 pose: 0.50182444 -0.435052 0.0251054 0 -0.00141641 -0.0105421 -0.0332146 0.999392 uwb: 0.0 850.933 1089.56 +imu_odom_: 1691062963.679608111 0.0526724 -0.476446 9.36851 -0.0585895 -0.0351537 0.171508 0.18 0.08 pose: 0.0 -0.435052 0.0251054 0 -0.00141641 -0.0105421 -0.0332146 0.999392 uwb: 0.50031077 850.938 1088.51 +imu_odom_: 1691062963.696547428 0.574608 -0.296881 9.87608 -0.0596548 -0.0479369 0.229032 0.18 0.08 pose: 0.0 -0.435052 0.0251054 0 -0.00141641 -0.0105421 -0.0332146 0.999392 uwb: 0.0 850.938 1088.51 +imu_odom_: 1691062963.710665615 0.861913 -0.325611 9.87129 -0.0735032 0.00426106 0.286556 0.19 0.26 pose: 0.42992399 -0.433761 0.0350218 0 -0.00112633 -0.0101206 -0.0326887 0.999414 uwb: 0.0 850.938 1088.51 +imu_odom_: 1691062963.728656620 0.409408 -0.323217 9.8665 -0.056459 0.0106526 0.333428 0.19 0.26 pose: 0.0 -0.433761 0.0350218 0 -0.00112633 -0.0101206 -0.0326887 0.999414 uwb: 0.0 850.938 1088.51 +imu_odom_: 1691062963.745595645 0.134075 -0.35913 9.98622 -0.0553937 -0.0117179 0.372843 0.19 0.26 pose: 0.0 -0.433761 0.0350218 0 -0.00112633 -0.0101206 -0.0326887 0.999414 uwb: 0.49990830 850.604 1087.47 +imu_odom_: 1691062963.762540794 0.272939 -0.390255 9.81144 -0.0735032 -0.0106526 0.410127 0.19 0.35 pose: 0.47943156 -0.423854 0.0336642 0 -0.00277856 -0.00974183 -0.0288947 0.999531 uwb: 0.0 850.604 1087.47 +imu_odom_: 1691062963.780595088 0.174777 -0.1652 9.52413 -0.0383495 -0.00213053 0.442085 0.18 0.38 pose: 0.0 -0.423854 0.0336642 0 -0.00277856 -0.00974183 -0.0288947 0.999531 uwb: 0.49957582 850.725 1086.88 +imu_odom_: 1691062963.797766266 0.452504 -0.311246 9.93354 -0.0575243 -0.0191748 0.494283 0.18 0.38 pose: 0.66913231 -0.404026 0.0310454 0 -0.00417627 -0.00456011 -0.0177802 0.999823 uwb: 0.0 850.725 1086.88 +imu_odom_: 1691062963.813543066 0.85473 -0.488417 10.1658 -0.0415453 -0.0223706 0.516653 0.2 0.5 pose: 0.0 -0.404026 0.0310454 0 -0.00417627 -0.00456011 -0.0177802 0.999823 uwb: 0.0 850.725 1086.88 +imu_odom_: 1691062963.830530796 0.730232 -0.31364 9.76834 -0.056459 0.0106526 0.528371 0.2 0.5 pose: 0.0 -0.404026 0.0310454 0 -0.00417627 -0.00456011 -0.0177802 0.999823 uwb: 0.50105740 849.808 1084.46 +imu_odom_: 1691062963.846592246 0.687136 0.1652 10.1658 -0.0468716 -0.0266316 0.56246 0.2 0.5 pose: 0.33989459 -0.404026 0.0310454 0 -0.00523075 -0.00323269 -0.0102276 0.999929 uwb: 0.0 849.808 1084.46 +imu_odom_: 1691062963.863538270 0.577003 -0.732626 10.1754 -0.0543285 0.0372843 0.597613 0.25 0.7 pose: 0.41985041 -0.394123 0.0297209 0 -0.00397142 -0.00635553 0.000231269 0.999972 uwb: 0.0 849.808 1084.46 +imu_odom_: 1691062963.879528850 0.409408 -0.399832 10.2472 -0.0394148 0.00639159 0.597613 0.25 0.7 pose: 0.8175238 -0.394112 0.029737 0 -0.00479551 -0.00626238 0.00251636 0.999966 uwb: 0.0 849.808 1084.46 +imu_odom_: 1691062963.896583076 0.507571 -0.390255 9.44991 -0.0330232 -0.0468716 0.630637 0.25 0.7 pose: 0.0 -0.394112 0.029737 0 -0.00479551 -0.00626238 0.00251636 0.999966 uwb: 0.49942416 849.888 1083.04 +imu_odom_: 1691062963.913539600 0.756568 -0.466869 10.2999 -0.0415453 -0.0628506 0.632767 0.17 0.53 pose: 0.41815592 -0.384215 0.0283681 0 -0.0078426 -0.0055554 0.0144888 0.999849 uwb: 0.0 849.888 1083.04 +imu_odom_: 1691062963.930716902 0.976834 -0.61531 9.61751 -0.0532632 -0.0330232 0.619984 0.22 0.64 pose: 0.0 -0.384215 0.0283681 0 -0.0078426 -0.0055554 0.0144888 0.999849 uwb: 0.50074533 849.789 1082.07 +imu_odom_: 1691062963.947643678 1.56102 -0.445322 10.1131 -0.0500674 -0.131028 0.581634 0.22 0.64 pose: 0.0 -0.384215 0.0283681 0 -0.0078426 -0.0055554 0.0144888 0.999849 uwb: 0.0 849.789 1082.07 +imu_odom_: 1691062963.964583285 1.08218 -0.294487 8.76278 -0.0340885 0.0117179 0.493217 0.14 0.38 pose: 0.24146568 -0.384204 0.0283841 0 -0.00866015 -0.008328 0.0215958 0.999695 uwb: 0.0 849.789 1082.07 +imu_odom_: 1691062963.981581515 1.43652 -0.169988 10.6087 -0.0873517 0.0660464 0.438889 0.14 0.38 pose: 0.0 -0.384204 0.0283841 0 -0.00866015 -0.008328 0.0215958 0.999695 uwb: 0.49856088 849.687 1080.43 +imu_odom_: 1691062963.998642741 1.37427 -0.0095768110.0054 -0.0553937 0.0127832 0.394148 0.14 0.38 pose: 0.34922447 -0.374285 0.027113 0 -0.00891644 -0.0127529 0.0308767 0.999402 uwb: 0.0 849.687 1080.43 +imu_odom_: 1691062964.16717159 1.12049 -0.280122 9.95748 -0.0671117 0.0372843 0.366451 0.12 0.32 pose: 0.33885049 -0.374285 0.027113 0 -0.00805532 -0.015125 0.037648 0.999144 uwb: 0.0 849.687 1080.43 +imu_odom_: 1691062964.33534857 0.617704 -0.418985 9.50498 -0.0703074 0.015979 0.334493 0.12 0.32 pose: 0.0 -0.374285 0.027113 0 -0.00805532 -0.015125 0.037648 0.999144 uwb: 0.50040993 849.375 1079.07 +imu_odom_: 1691062964.49515229 0.629675 -0.23942 9.63906 -0.0479369 -0.0170442 0.265251 0.09 0.29 pose: 0.0 -0.374285 0.027113 0 -0.00805532 -0.015125 0.037648 0.999144 uwb: 0.0 849.375 1079.07 +imu_odom_: 1691062964.67648851 0.727837 0.0837971 9.9527 -0.0585895 -0.0138484 0.253533 0.09 0.29 pose: 0.43997717 -0.364374 0.0258482 0 -0.00832048 -0.0155282 0.0446707 0.998846 uwb: 0.0 849.375 1079.07 +imu_odom_: 1691062964.91519519 0.919373 -0.428562 9.90242 -0.0575243 0.00426106 0.252468 0.09 0.29 pose: 0.0 -0.364374 0.0258482 0 -0.00832048 -0.0155282 0.0446707 0.998846 uwb: 0.50021746 849.47 1078.02 +imu_odom_: 1691062964.108696238 0.514753 -0.301669 9.82102 -0.0628506 0.0191748 0.223706 0.1 0.32 pose: 0.6987348 -0.364363 0.0258641 0 -0.00767299 -0.0152648 0.0454521 0.99882 uwb: 0.0 849.47 1078.02 +imu_odom_: 1691062964.124585615 -0.572214 -0.071826 9.82102 -0.0500674 0.103331 0.215183 0.1 0.23 pose: 0.0 -0.364363 0.0258641 0 -0.00767299 -0.0152648 0.0454521 0.99882 uwb: 0.0 849.47 1078.02 +imu_odom_: 1691062964.142542206 -1.12049 -0.435745 9.90481 -0.0617853 -0.036219 0.251402 0.1 0.23 pose: 0.76047997 -0.364363 0.025864 0 -0.00572164 -0.0140711 0.0531794 0.998469 uwb: 0.50029328 849.303 1076.44 +imu_odom_: 1691062964.158521120 -0.260968 -0.344765 9.80904 -0.0500674 -0.092678 0.22051 0.1 0.23 pose: 0.0 -0.364363 0.025864 0 -0.00572164 -0.0140711 0.0531794 0.998469 uwb: 0.0 849.303 1076.44 +imu_odom_: 1691062964.175570680 0.90022 -0.237026 10.1227 -0.0436758 -0.04048 0.232228 0.11 0.2 pose: 0.0 -0.364363 0.025864 0 -0.00572164 -0.0140711 0.0531794 0.998469 uwb: 0.0 849.303 1076.44 +imu_odom_: 1691062964.192623156 0.500388 -0.047884 9.78271 -0.0713727 0.0479369 0.24288 0.11 0.2 pose: 0.34128576 -0.353115 0.0344362 0 -0.00588577 -0.0108749 0.0565414 0.998324 uwb: 0.49780842 849.177 1075.18 +imu_odom_: 1691062964.206642766 0.265756 -0.282516 10.2855 -0.0490022 0.0596548 0.20027 0.12 0.17 pose: 0.41924378 -0.353115 0.0344362 0 -0.0038187 -0.0110201 0.0605939 0.998094 uwb: 0.0 849.177 1075.18 +imu_odom_: 1691062964.224778430 -0.402226 -0.0742203 9.82102 -0.0511327 0.0436758 0.18216 0.12 0.17 pose: 0.6942726 -0.353115 0.0344362 0 -0.0038132 -0.0101 0.0611532 0.99807 uwb: 0.0 849.177 1075.18 +imu_odom_: 1691062964.239654615 0.0694318 -0.31364 9.78989 -0.056459 0.00319579 0.211988 0.12 0.17 pose: 0.0 -0.353115 0.0344362 0 -0.0038132 -0.0101 0.0611532 0.99807 uwb: 0.50114781 848.784 1073.25 +imu_odom_: 1691062964.257652621 0.363919 -0.4956 9.84496 -0.056459 -0.0340885 0.198139 0.15 0.2 pose: 0.40088733 -0.343197 0.0331565 0 -0.00369809 -0.00539456 0.0643035 0.997909 uwb: 0.0 848.784 1073.25 +imu_odom_: 1691062964.273542289 0.342371 -0.222661 9.75877 -0.0479369 0.0223706 0.177899 0.14 0.11 pose: 0.0 -0.343197 0.0331565 0 -0.00369809 -0.00539456 0.0643035 0.997909 uwb: 0.0 848.784 1073.25 +imu_odom_: 1691062964.291632456 0.11971 -0.21069 10.2065 -0.0500674 0.0383495 0.191748 0.14 0.11 pose: 0.0 -0.343197 0.0331565 0 -0.00369809 -0.00539456 0.0643035 0.997909 uwb: 0.49927834 848.581 1071.72 +imu_odom_: 1691062964.308510234 0.0981623 -0.110133 9.62469 -0.0575243 0.0458064 0.162985 0.14 0.14 pose: 0.26015169 -0.343197 0.0331565 0 -0.00481608 -0.003932 0.0662947 0.997781 uwb: 0.0 848.581 1071.72 +imu_odom_: 1691062964.322558426 0.629675 -0.0981623 10.1682 -0.0436758 0.0170442 0.165116 0.14 0.14 pose: 0.0 -0.343197 0.0331565 0 -0.00481608 -0.003932 0.0662947 0.997781 uwb: 0.0 848.581 1071.72 +imu_odom_: 1691062964.338566796 0.517148 -0.488417 9.76355 -0.0745685 0.0191748 0.191748 0.14 0.14 pose: 0.34018625 -0.333279 0.0318792 0 -0.00367409 -4.9597e-05 0.0687158 0.99763 uwb: 0.50164654 848.231 1070.76 +imu_odom_: 1691062964.356621964 0.378284 -0.301669 10.082 -0.0607201 0.0223706 0.166181 0.22 0.17 pose: 0.0 -0.333279 0.0318792 0 -0.00367409 -4.9597e-05 0.0687158 0.99763 uwb: 0.0 848.231 1070.76 +imu_odom_: 1691062964.372556839 0.608127 -0.179565 9.90721 -0.0479369 -0.056459 0.166181 0.22 0.17 pose: 0.0 -0.333279 0.0318792 0 -0.00367409 -4.9597e-05 0.0687158 0.99763 uwb: 0.0 848.231 1070.76 +imu_odom_: 1691062964.389550985 1.11809 -0.227449 9.77553 -0.0639159 -0.0255663 0.235423 0.22 0.17 pose: 0.46822638 -0.333279 0.0318792 0 -0.00418114 0.000244194 0.0718537 0.997406 uwb: 0.49858421 848.187 1069.81 +imu_odom_: 1691062964.407605279 1.24498 -0.646434 9.87608 -0.076699 -0.0607201 0.298274 0.12 0.05 pose: 0.34009292 -0.32336 0.030613 0 -0.00355251 -0.00131155 0.0742732 0.997231 uwb: 0.0 848.187 1069.81 +imu_odom_: 1691062964.420544909 1.58017 -0.656011 10.3932 -0.0649811 -0.0351537 0.217314 0.11 0.08 pose: 0.0 -0.32336 0.030613 0 -0.00355251 -0.00131155 0.0742732 0.997231 uwb: 0.0 848.187 1069.81 +imu_odom_: 1691062964.436488241 1.4461 0.215478 9.40921 -0.0490022 0.0575243 0.112918 0.11 0.08 pose: 0.0 -0.32336 0.030613 0 -0.00355251 -0.00131155 0.0742732 0.997231 uwb: 0.50224150 847.784 1068.23 +imu_odom_: 1691062964.453541010 0.979228 0.433351 9.89763 -0.0788296 0.0372843 0.147006 0.11 0.08 pose: 0.33046555 -0.32209 0.040532 0 -0.00438058 -0.00518703 0.0780029 0.99693 uwb: 0.0 847.784 1068.23 +imu_odom_: 1691062964.471501975 0.526724 -0.617704 9.73961 -0.0617853 0.0426106 0.0980043 0.13 0.08 pose: 0.0 -0.32209 0.040532 0 -0.00438058 -0.00518703 0.0780029 0.99693 uwb: 0.0 847.784 1068.23 +imu_odom_: 1691062964.484557974 0.696713 -0.486023 10.3645 -0.0596548 -0.00958738 0.0372843 0.13 0.08 pose: 0.30939094 -0.312168 0.0392894 0 -0.00306979 -0.00701117 0.0796098 0.996797 uwb: 0.49782009 847.929 1066.73 +imu_odom_: 1691062964.500492848 0.723049 -0.277727 9.64384 -0.052198 -0.0479369 0.0426106 0.07 0.08 pose: 0.0 -0.312168 0.0392894 0 -0.00306979 -0.00701117 0.0796098 0.996797 uwb: 0.0 847.929 1066.73 +imu_odom_: 1691062964.517469787 0.893037 -0.184354 9.89045 -0.0639159 0.015979 0.0980043 0.07 0.08 pose: 0.40051986 -0.312168 0.0392894 0 -0.00518895 -0.00790786 0.080605 0.996701 uwb: 0.0 847.929 1066.73 +imu_odom_: 1691062964.535473917 0.715866 -0.500388 9.99819 -0.0543285 -0.0127832 0.127832 0.07 0.08 pose: 0.0 -0.312168 0.0392894 0 -0.00518895 -0.00790786 0.080605 0.996701 uwb: 0.50033994 847.507 1065.04 +imu_odom_: 1691062964.548471586 0.512359 -0.4956 9.64384 -0.0490022 0.015979 0.092678 0.06 0.05 pose: 0.7980999 -0.312168 0.0392894 0 -0.00489424 -0.00883239 0.0806116 0.996694 uwb: 0.0 847.507 1065.04 +imu_odom_: 1691062964.564472665 0.588974 -0.0191536 10.0748 -0.0447411 -0.0127832 0.0798948 0.06 0.05 pose: 0.0 -0.312168 0.0392894 0 -0.00489424 -0.00883239 0.0806116 0.996694 uwb: 0.0 847.507 1065.04 +imu_odom_: 1691062964.581470311 0.64404 -0.215478 9.73243 -0.056459 -0.00852212 0.0948085 0.06 0.05 pose: 0.0 -0.312168 0.0392894 0 -0.00489424 -0.00883239 0.0806116 0.996694 uwb: 0.50009204 847.795 1064.13 +imu_odom_: 1691062964.605484178 0.773327 -0.387861 10.0102 -0.0553937 -0.0170442 0.0905475 0.05 0.08 pose: 0.48942057 -0.312168 0.0392894 0 -0.00590313 -0.0117512 0.0820658 0.99654 uwb: 0.0 847.795 1064.13 +imu_odom_: 1691062964.631645756 0.122104 -0.129287 9.8665 -0.0543285 0.0798948 0.0585895 0.06 0.05 pose: 0.64003148 -0.302247 0.0380296 0 -0.00426669 -0.0138358 0.0836287 0.996392 uwb: 0.50135197 847.781 1063.67 +imu_odom_: 1691062964.656605152 -1.55863 -0.208296 10.1347 -0.0596548 0.04048 0.092678 0.08 0.05 pose: 0.0 -0.302247 0.0380296 0 -0.00426669 -0.0138358 0.0836287 0.996392 uwb: 0.0 847.781 1063.67 +imu_odom_: 1691062964.680628644 -0.189142 -0.380678 9.87848 -0.0479369 -0.0990696 0.0692422 0.08 0.05 pose: 0.34073747 -0.302247 0.0380296 0 -0.00375462 -0.00923574 0.0840886 0.996408 uwb: 0.49835090 847.692 1063.08 +imu_odom_: 1691062964.704656802 0.64404 -0.198719 9.9934 -0.0585895 -0.0372843 0.1012 0.13 0.05 pose: 0.41070719 -0.302258 0.0380151 0 -0.0041713 -0.00592013 0.0849195 0.996361 uwb: 0.0 847.692 1063.08 +imu_odom_: 1691062964.729638072 0.158017 -0.100556 10.3046 -0.052198 0.0149137 0.0660464 0.13 0.05 pose: 0.8028246 -0.302247 0.0380296 0 -0.00361299 -0.00662813 0.0851606 0.996339 uwb: 0.50024078 847.695 1062.15 +imu_odom_: 1691062964.745694564 0.107739 -0.181959 9.91678 -0.056459 0.015979 0.0607201 0.11 0.02 pose: 0.0 -0.302247 0.0380296 0 -0.00361299 -0.00662813 0.0851606 0.996339 uwb: 0.0 847.695 1062.15 +imu_odom_: 1691062964.763621699 0.31364 -0.373495 10.3525 -0.0458064 0.0298274 0.0713727 0.11 0.02 pose: 0.47913116 -0.292332 0.0367311 0 -0.00161311 -0.00467233 0.0860447 0.996279 uwb: 0.0 847.695 1062.15 +imu_odom_: 1691062964.787672898 0.146046 -0.100556 9.75158 -0.056459 -0.0191748 0.0713727 0.12 0 pose: 0.0 -0.292332 0.0367311 0 -0.00161311 -0.00467233 0.0860447 0.996279 uwb: 0.49935417 847.34 1059.98 +imu_odom_: 1691062964.814487770 0.150835 -0.246603 10.1873 -0.0468716 -0.0138484 0.0607201 0.12 0 pose: 0.35068565 -0.292332 0.0367311 0 -0.0023316 -0.00135576 0.0865608 0.996243 uwb: 0.0 847.34 1059.98 +imu_odom_: 1691062964.840608225 -0.114922 -0.447716 9.34696 -0.0553937 -0.00958738 0.0553937 0.13 -0.02 pose: 0.42849199 -0.281554 0.0421641 0 -0.00174486 0.00253361 0.0871044 0.996194 uwb: 0.50064034 847.406 1059.49 +imu_odom_: 1691062964.857537917 0.059855 -0.299275 9.74201 -0.0575243 -0.0255663 0.0660464 0.13 -0.02 pose: 0.9062729 -0.281145 0.0453794 0 -0.00217736 0.00330594 0.0871758 0.996185 uwb: 0.0 847.406 1059.49 +imu_odom_: 1691062964.881463706 0.217872 -0.160412 9.86172 -0.0490022 0.0308927 0.0703074 0.14 0.02 pose: 0.0 -0.281145 0.0453794 0 -0.00217736 0.00330594 0.0871758 0.996185 uwb: 0.49923751 847.234 1058.19 +imu_odom_: 1691062964.907454085 0.339977 -0.251391 10.3358 -0.0639159 -0.0127832 0.0639159 0.14 0.02 pose: 0.33987418 -0.275629 0.0446793 0 -0.00337756 0.00622746 0.0875361 0.996136 uwb: 0.0 847.234 1058.19 +imu_odom_: 1691062964.932608595 0.435745 -0.225055 9.89284 -0.0479369 -0.04048 0.0628506 0.14 0 pose: 0.49916168 -0.271225 0.0441235 0 -0.00180538 0.00527342 0.0882278 0.996085 uwb: 0.49854629 847.076 1057.64 +imu_odom_: 1691062964.956591548 0.131681 -0.42138 9.81623 -0.0426106 0.0149137 0.0500674 0.14 0 pose: 0.0 -0.271225 0.0441235 0 -0.00180538 0.00527342 0.0882278 0.996085 uwb: 0.0 847.076 1057.64 +imu_odom_: 1691062964.978525951 0.658405 -0.442927 10.2376 -0.0319579 0.00319579 0.0415453 0.2 0.02 pose: 0.49137463 -0.261301 0.0428871 0 -0.00273653 0.0042944 0.0886405 0.996051 uwb: 0.0 847.076 1057.64 +imu_odom_: 1691062964.995574053 0.356736 -0.0047884 9.97424 -0.0372843 -0.0234358 0.0660464 0.2 0.02 pose: 0.0 -0.261301 0.0428871 0 -0.00273653 0.0042944 0.0886405 0.996051 uwb: 0.50086200 847.182 1057.44 +imu_odom_: 1691062965.11524093 0.373495 -0.37589 9.69412 -0.04048 -0.02024 0.0617853 0.15 0 pose: 0.0 -0.261301 0.0428871 0 -0.00273653 0.0042944 0.0886405 0.996051 uwb: 0.0 847.182 1057.44 +imu_odom_: 1691062965.37467225 0.227449 -0.0407014 9.77792 -0.0436758 -0.0127832 0.056459 0.15 0 pose: 0.46994127 -0.251377 0.0416596 0 -0.00217322 0.00210663 0.0889679 0.99603 uwb: 0.49908002 846.95 1056.62 +imu_odom_: 1691062965.61526007 0.725443 -0.220267 10.0102 -0.0692422 -0.015979 0.0628506 0.16 0.02 pose: 0.33881550 -0.250533 0.0485032 0 -0.0006193230.00330378 0.0892798 0.996001 uwb: 0.0 846.95 1056.62 +imu_odom_: 1691062965.87467097 0.237026 -0.229843 9.76116 -0.0553937 0.0234358 0.0436758 0.16 0.02 pose: 0.0 -0.250533 0.0485032 0 -0.0006193230.00330378 0.0892798 0.996001 uwb: 0.50148613 846.253 1055.96 +imu_odom_: 1691062965.111534920 0.351948 -0.385466 9.8282 -0.0713727 -0.0213053 0.0639159 0.17 0 pose: 0.8057703 -0.250156 0.0515847 0 -0.0005969950.00244924 0.0893734 0.995995 uwb: 0.0 846.253 1055.96 +imu_odom_: 1691062965.137504008 0.361524 -0.45011 9.70849 -0.0607201 0.036219 0.04048 0.17 0.02 pose: 0.48985222 -0.24023 0.0503696 0 -0.0016565 0.00346053 0.0896952 0.995962 uwb: 0.49883795 845.616 1054.82 +imu_odom_: 1691062965.162658227 0.258574 -0.486023 9.61272 -0.0426106 0.0628506 0.0490022 0.17 0.02 pose: 0.0 -0.24023 0.0503696 0 -0.0016565 0.00346053 0.0896952 0.995962 uwb: 0.0 845.616 1054.82 +imu_odom_: 1691062965.179585294 0.00718261 -0.0766145 9.95509 -0.0436758 -0.00639159 0.0553937 0.18 0 pose: 0.25127386 -0.24023 0.0503696 0 -0.0042707 0.00292018 0.0898954 0.995938 uwb: 0.50226776 845.543 1054.55 +imu_odom_: 1691062965.195541750 0.105345 -0.153229 9.68933 -0.0415453 -0.0319579 0.0458064 0.18 0 pose: 0.50973691 -0.230303 0.0491647 0 -0.00780493 0.0052726 0.0900744 0.99589 uwb: 0.0 845.543 1054.55 +imu_odom_: 1691062965.220540811 0.35913 -0.241814 9.94551 -0.0671117 -0.0319579 0.0692422 0.18 0 pose: 0.0 -0.230303 0.0491647 0 -0.00780493 0.0052726 0.0900744 0.99589 uwb: 0.0 845.543 1054.55 +imu_odom_: 1691062965.236495226 0.399832 -0.0095768110.0844 -0.0319579 0.00213053 0.0543285 0.23 0 pose: 0.32937187 -0.220375 0.0479628 0 -0.00546268 0.00621683 0.0903386 0.995877 uwb: 0.49749636 845.077 1053.65 +imu_odom_: 1691062965.261443832 0.23942 -0.169988 10.2352 -0.052198 0.0181095 0.0490022 0.23 0 pose: 0.0 -0.220375 0.0479628 0 -0.00546268 0.00621683 0.0903386 0.995877 uwb: 0.0 845.077 1053.65 +imu_odom_: 1691062965.286579676 0.462081 -0.248997 10.1897 -0.0532632 0.0127832 0.0426106 0.17 0.02 pose: 0.40929853 -0.219179 0.057891 0 -0.00207504 0.0050383 0.0907565 0.995858 uwb: 0.50127323 844.638 1052.44 +imu_odom_: 1691062965.310496425 0.452504 -0.287304 9.7851 -0.0617853 -0.0607201 0.0458064 0.17 0 pose: 0.0 -0.219179 0.057891 0 -0.00207504 0.0050383 0.0907565 0.995858 uwb: 0.0 844.638 1052.44 +imu_odom_: 1691062965.328462349 0.893037 -0.497994 9.75637 -0.0660464 0.0245011 0.0383495 0.17 0 pose: 0.42101409 -0.209249 0.0567034 0 -0.00097843 0.00409558 0.0908792 0.995853 uwb: 0.0 844.638 1052.44 +imu_odom_: 1691062965.345586863 0.117316 -0.45011 9.50019 -0.0447411 -0.0191748 -0.02024 0.17 0 pose: 0.0 -0.209249 0.0567034 0 -0.00097843 0.00409558 0.0908792 0.995853 uwb: 0.49981498 844.614 1051.54 +imu_odom_: 1691062965.360453132 0.301669 -0.035913 9.80904 -0.0660464 -0.0372843 -0.0745685 0.18 -0.11 pose: 0.8068203 -0.209249 0.0567034 0 -0.00125896 0.00310705 0.0909029 0.995854 uwb: 0.0 844.614 1051.54 +imu_odom_: 1691062965.377585813 0.620098 0.0407014 9.87129 -0.0671117 -0.0234358 -0.107592 0.18 -0.11 pose: 0.0 -0.209249 0.0567034 0 -0.00125896 0.00310705 0.0909029 0.995854 uwb: 0.0 844.614 1051.54 +imu_odom_: 1691062965.393610224 0.0311246 -0.150835 9.47864 -0.0436758 0.0255663 -0.142745 0.18 -0.11 pose: 0.0 -0.209249 0.0567034 0 -0.00125896 0.00310705 0.0909029 0.995854 uwb: 0.49973331 844.415 1050.55 +imu_odom_: 1691062965.411832508 0.179565 -0.282516 10.1131 -0.0735032 -0.0138484 -0.168312 0.21 -0.32 pose: 0.57946456 -0.19932 0.0555187 0 -0.00290671 0.00110413 0.0900315 0.995934 uwb: 0.0 844.415 1050.55 +imu_odom_: 1691062965.429435911 0.553061 -0.0981623 9.96467 -0.0330232 -0.0340885 -0.252468 0.18 -0.35 pose: 0.0 -0.19932 0.0555187 0 -0.00290671 0.00110413 0.0900315 0.995934 uwb: 0.50067826 844.19 1050.47 +imu_odom_: 1691062965.443575972 0.363919 0.124498 9.98143 -0.0287621 -0.0223706 -0.298274 0.18 -0.35 pose: 0.67036016 -0.178294 0.0630814 0 -0.0009187020.00280398 0.0838563 0.996473 uwb: 0.0 844.19 1050.47 +imu_odom_: 1691062965.461583311 0.531513 -0.110133 10.1011 -0.072438 -0.0245011 -0.354733 0.17 -0.38 pose: 0.0 -0.178294 0.0630814 0 -0.0009187020.00280398 0.0838563 0.996473 uwb: 0.0 844.19 1050.47 +imu_odom_: 1691062965.477553475 0.672771 -0.126893 9.72764 -0.0543285 -0.0287621 -0.411192 0.17 -0.38 pose: 0.0 -0.178294 0.0630814 0 -0.0009187020.00280398 0.0838563 0.996473 uwb: 0.0 844.19 1050.47 +imu_odom_: 1691062965.494677114 0.550666 -0.378284 10.228 -0.0649811 0.0106526 -0.455933 0.17 -0.38 pose: 0.31938286 -0.178293 0.0630814 0 0.00171479 0.00110919 0.0784827 0.996913 uwb: 0.49998122 843.675 1049.89 +imu_odom_: 1691062965.511558976 1.07021 0.160412 10.6279 -0.0628506 -0.0138484 -0.474043 0.25 -0.64 pose: 0.34007251 -0.168358 0.0619472 0 0.00181358 -0.00197306 0.0709496 0.997476 uwb: 0.0 843.675 1049.89 +imu_odom_: 1691062965.527558596 0.399832 -0.150835 9.62948 -0.0660464 -0.015979 -0.500674 0.25 -0.64 pose: 0.0 -0.168358 0.0619472 0 0.00181358 -0.00197306 0.0709496 0.997476 uwb: 0.0 843.675 1049.89 +imu_odom_: 1691062965.543579216 -0.258574 0.0694318 10.0365 -0.0500674 0.0308927 -0.52411 0.25 -0.64 pose: 0.0 -0.168358 0.0619472 0 0.00181358 -0.00197306 0.0709496 0.997476 uwb: 0.50225901 843.124 1047.96 +imu_odom_: 1691062965.560665232 0.397437 -0.54109 9.95748 -0.0745685 -0.00319579 -0.523045 0.18 -0.55 pose: 0.49990247 -0.158417 0.0608615 0 0.0025748 -0.0015176 0.057802 0.998324 uwb: 0.0 843.124 1047.96 +imu_odom_: 1691062965.576499196 0.814029 0.110133 10.2256 -0.0372843 -0.0426106 -0.561394 0.18 -0.55 pose: 0.0 -0.158417 0.0608615 0 0.0025748 -0.0015176 0.057802 0.998324 uwb: 0.0 843.124 1047.96 +imu_odom_: 1691062965.594432163 1.05345 -0.272939 9.78271 -0.0532632 -0.0596548 -0.578439 0.25 -0.82 pose: 0.40933061 -0.158431 0.0608448 0 0.00212268 -0.00208221 0.0459946 0.998937 uwb: 0.49882337 842.61 1046.92 +imu_odom_: 1691062965.611546762 1.61369 0.124498 9.79707 -0.0532632 -0.0703074 -0.535828 0.25 -0.82 pose: 0.0 -0.158431 0.0608448 0 0.00212268 -0.00208221 0.0459946 0.998937 uwb: 0.0 842.61 1046.92 +imu_odom_: 1691062965.625423171 1.65918 -0.42138 9.68933 -0.0575243 -0.0191748 -0.502805 0.25 -0.82 pose: 0.0 -0.158431 0.0608448 0 0.00212268 -0.00208221 0.0459946 0.998937 uwb: 0.0 842.61 1046.92 +imu_odom_: 1691062965.643549503 1.62087 -0.325611 10.2615 -0.0585895 -0.0255663 -0.484695 0.13 -0.41 pose: 0.7999081 -0.158417 0.0608615 0 0.00205633 -0.00309309 0.0435267 0.999045 uwb: 0.49984997 842.286 1045.82 +imu_odom_: 1691062965.656429053 1.17555 -0.339977 9.56005 -0.0372843 -0.0234358 -0.454868 0.13 -0.5 pose: 0.0 -0.158417 0.0608615 0 0.00205633 -0.00309309 0.0435267 0.999045 uwb: 0.0 842.286 1045.82 +imu_odom_: 1691062965.673416783 1.41976 -0.258574 10.1897 -0.0543285 0.0213053 -0.386691 0.13 -0.5 pose: 0.0 -0.158417 0.0608615 0 0.00205633 -0.00309309 0.0435267 0.999045 uwb: 0.0 842.286 1045.82 +imu_odom_: 1691062965.687476932 1.12049 -0.500388 9.75877 -0.0713727 0 -0.330232 0.13 -0.5 pose: 0.65059213 -0.147353 0.0696628 0 0.00204975 -0.0106173 0.0255579 0.999615 uwb: 0.49919085 842.307 1044.77 +imu_odom_: 1691062965.703477720 0.857124 -0.272939 9.8258 -0.0511327 0.00426106 -0.315318 0.11 -0.38 pose: 0.0 -0.147353 0.0696628 0 0.00204975 -0.0106173 0.0255579 0.999615 uwb: 0.0 842.307 1044.77 +imu_odom_: 1691062965.720473616 0.636858 -0.0335188 9.85693 -0.0511327 -0.0319579 -0.264186 0.11 -0.38 pose: 0.30917512 -0.137424 0.0684685 0 0.00145992 -0.0133918 0.018949 0.99973 uwb: 0.0 842.307 1044.77 +imu_odom_: 1691062965.736412865 0.61531 -0.263362 9.5792 -0.0660464 -0.0276969 -0.230097 0.09 -0.29 pose: 0.39998614 -0.137424 0.0684685 0 0.00219898 -0.0149946 0.012226 0.99981 uwb: 0.49944750 841.868 1044 +imu_odom_: 1691062965.753472342 1.09894 -0.459687 10.0604 -0.0596548 -0.0223706 -0.225836 0.09 -0.29 pose: 0.0 -0.137424 0.0684685 0 0.00219898 -0.0149946 0.012226 0.99981 uwb: 0.0 841.868 1044 +imu_odom_: 1691062965.769522126 0.972046 -0.23942 9.991 -0.0639159 0.0106526 -0.215183 0.09 -0.29 pose: 0.0 -0.137424 0.0684685 0 0.00219898 -0.0149946 0.012226 0.99981 uwb: 0.0 841.868 1044 +imu_odom_: 1691062965.786411862 0.699107 -0.0383072 10.058 -0.052198 0.00745685 -0.208792 0.1 -0.35 pose: 0.8008414 -0.137424 0.0684685 0 0.00155126 -0.0145826 0.0111538 0.99983 uwb: 0.49833923 841.624 1044.37 +imu_odom_: 1691062965.802462813 0.876278 -0.148441 9.74201 -0.0585895 -0.0234358 -0.185356 0.06 -0.2 pose: 0.0 -0.137424 0.0684685 0 0.00155126 -0.0145826 0.0111538 0.99983 uwb: 0.0 841.624 1044.37 +imu_odom_: 1691062965.819552038 0.821211 -0.289698 9.84735 -0.052198 0.00958738 -0.166181 0.06 -0.2 pose: 0.65995701 -0.127495 0.0672861 0 0.00174354 -0.0175833 0.00276401 0.99984 uwb: 0.0 841.624 1044.37 +imu_odom_: 1691062965.835420416 0.565032 -0.248997 9.98861 -0.0585895 0.00213053 -0.165116 0.06 -0.2 pose: 0.0 -0.127495 0.0672861 0 0.00174354 -0.0175833 0.00276401 0.99984 uwb: 0.50023495 841.165 1043.15 +imu_odom_: 1691062965.852555138 0.718261 -0.198719 9.79947 -0.0607201 -0.0138484 -0.153398 0.06 -0.17 pose: 0.0 -0.127495 0.0672861 0 0.00174354 -0.0175833 0.00276401 0.99984 uwb: 0.0 841.165 1043.15 +imu_odom_: 1691062965.871606291 0.663194 -0.227449 9.76116 -0.0575243 -0.0117179 -0.123571 0.06 -0.17 pose: 0.33152425 -0.127495 0.0672861 0 0.000331963 -0.0182916 -0.0006882590.999832 uwb: 0.0 841.165 1043.15 +imu_odom_: 1691062965.887445796 0.68953 -0.328006 9.87608 -0.0575243 -0.00532632 -0.106526 0.05 -0.14 pose: 0.43976135 -0.127508 0.0672695 0 -8.92025e-05-0.014513 -0.00469032 0.999884 uwb: 0.49965749 841.249 1043.28 +imu_odom_: 1691062965.905665164 0.488417 -0.306458 9.72285 -0.0511327 0.00426106 -0.102265 0.05 -0.14 pose: 0.0 -0.127508 0.0672695 0 -8.92025e-05-0.014513 -0.00469032 0.999884 uwb: 0.0 841.249 1043.28 +imu_odom_: 1691062965.922603606 0.593762 -0.100556 10.0078 -0.0532632 -0.0255663 -0.0969391 0.05 -0.14 pose: 0.0 -0.127508 0.0672695 0 -8.92025e-05-0.014513 -0.00469032 0.999884 uwb: 0.0 841.249 1043.28 +imu_odom_: 1691062965.937551537 0.64404 -0.253785 9.81144 -0.0596548 -0.0181095 -0.0830906 0.04 -0.11 pose: 0.8008998 -0.127495 0.067286 0 -0.000890589-0.0145351 -0.00526383 0.99988 uwb: 0.50000455 840.923 1041.88 +imu_odom_: 1691062965.954597889 0.744597 -0.294487 9.89284 -0.0607201 -0.0117179 -0.076699 0.04 -0.08 pose: 0.0 -0.127495 0.067286 0 -0.000890589-0.0145351 -0.00526383 0.99988 uwb: 0.0 840.923 1041.88 +imu_odom_: 1691062965.971541872 0.799663 -0.387861 9.81862 -0.0585895 -0.0127832 -0.0660464 0.04 -0.08 pose: 0.65816919 -0.117556 0.0661753 0 -0.00239137 -0.0132536 -0.00963436 0.999863 uwb: 0.0 840.923 1041.88 +imu_odom_: 1691062965.987660486 0.754174 -0.205901 9.991 -0.0575243 -0.00106526 -0.0468716 0.04 -0.08 pose: 0.0 -0.117556 0.0661753 0 -0.00239137 -0.0132536 -0.00963436 0.999863 uwb: 0.50022329 840.786 1040.88 +imu_odom_: 1691062966.4471768 0.588974 -0.248997 9.78271 -0.056459 0.00426106 -0.036219 0.04 -0.08 pose: 0.0 -0.117556 0.0661753 0 -0.00239137 -0.0132536 -0.00963436 0.999863 uwb: 0.0 840.786 1040.88 +imu_odom_: 1691062966.21547868 0.342371 -0.220267 9.87129 -0.0511327 0.00639159 -0.0383495 0.04 -0.08 pose: 0.33128218 -0.117556 0.0661753 0 -0.00340103 -0.0157199 -0.0113594 0.999806 uwb: 0.0 840.786 1040.88 +imu_odom_: 1691062966.37566446 0.438139 -0.28491 9.85693 -0.0575243 -0.0181095 -0.00106526 0.02 -0.02 pose: 0.42987442 -0.117556 0.0661753 0 -0.0021683 -0.0126265 -0.0130673 0.999833 uwb: 0.50001330 840.366 1040.1 +imu_odom_: 1691062966.54608716 0.754174 -0.40462 9.9503 -0.0607201 -0.015979 0.0170442 0.02 -0.02 pose: 0.7944835 -0.117556 0.0661753 0 -0.00228157 -0.0118937 -0.0132258 0.999839 uwb: 0.0 840.366 1040.1 +imu_odom_: 1691062966.79659690 0.766145 -0.220267 9.83538 -0.0532632 0.00639159 0.0394148 0.01 0.02 pose: 0.0 -0.117556 0.0661753 0 -0.00228157 -0.0118937 -0.0132258 0.999839 uwb: 0.50166988 840.666 1039.43 +imu_odom_: 1691062966.96601340 0.469264 -0.248997 9.991 -0.0543285 0.0490022 0.056459 0.01 0.02 pose: 0.34080163 -0.117556 0.0661753 0 -0.0033087 -0.0131245 -0.013576 0.999816 uwb: 0.0 840.666 1039.43 +imu_odom_: 1691062966.113556698 -1.09894 -0.191536 9.91199 -0.0394148 0.12144 0.1012 0.04 0.08 pose: 0.0 -0.117556 0.0661753 0 -0.0033087 -0.0131245 -0.013576 0.999816 uwb: 0.0 840.666 1039.43 +imu_odom_: 1691062966.130412894 -1.62806 -0.526724 10.0221 -0.0543285 0.00958738 0.18003 0.04 0.08 pose: 0.42036373 -0.117556 0.0661753 0 -0.00231028 -0.0108677 -0.0131688 0.999852 uwb: 0.50141905 840.771 1039.26 +imu_odom_: 1691062966.147421915 -0.73502 -0.545878 9.56005 -0.0617853 -0.0692422 0.264186 0.06 0.2 pose: 0.0 -0.117556 0.0661753 0 -0.00231028 -0.0108677 -0.0131688 0.999852 uwb: 0.0 840.771 1039.26 +imu_odom_: 1691062966.163567069 0.167594 -0.378284 10.161 -0.0511327 -0.0628506 0.332363 0.06 0.2 pose: 0.0 -0.117556 0.0661753 0 -0.00231028 -0.0108677 -0.0131688 0.999852 uwb: 0.0 840.771 1039.26 +imu_odom_: 1691062966.180534384 0.691924 -0.363919 9.95748 -0.0585895 -0.0266316 0.365386 0.06 0.2 pose: 0.32881774 -0.117556 0.0661753 0 -0.00258893 -0.00724634 -0.0108237 0.999912 uwb: 0.49791635 840.452 1038.45 +imu_odom_: 1691062966.196529339 0.37589 -0.0502782 9.76834 -0.0511327 -0.00213053 0.369647 0.13 0.44 pose: 0.42043371 -0.107626 0.064995 0 -0.00403319 -0.00727412 -0.00468105 0.999954 uwb: 0.0 840.452 1038.45 +imu_odom_: 1691062966.213455531 0.00718261 -0.282516 9.50498 -0.0649811 0.0372843 0.399474 0.13 0.44 pose: 0.0 -0.107626 0.064995 0 -0.00403319 -0.00727412 -0.00468105 0.999954 uwb: 0.0 840.452 1038.45 +imu_odom_: 1691062966.229444361 -0.011971 -0.426168 10.2735 -0.0798948 0 0.452737 0.13 0.44 pose: 0.0 -0.107626 0.064995 0 -0.00403319 -0.00727412 -0.00468105 0.999954 uwb: 0.50010663 840.594 1038.12 +imu_odom_: 1691062966.245436982 0.0885855 -0.818817 9.69652 -0.052198 -0.00852212 0.452737 0.11 0.38 pose: 0.7011264 -0.107626 0.064995 0 -0.00344932 -0.00686449 -0.00352653 0.999964 uwb: 0.0 840.594 1038.12 +imu_odom_: 1691062966.262497625 0.553061 -0.186748 10.2256 -0.0596548 -0.015979 0.465521 0.14 0.55 pose: 0.0 -0.107626 0.064995 0 -0.00344932 -0.00686449 -0.00352653 0.999964 uwb: 0.0 840.594 1038.12 +imu_odom_: 1691062966.278515328 -0.0023942 0.0215478 9.74919 -0.052198 0.0255663 0.498544 0.14 0.55 pose: 0.65901498 -0.107626 0.064995 0 -0.00426351 -0.00241046 0.00932329 0.999945 uwb: 0.0 840.594 1038.12 +imu_odom_: 1691062966.295393982 0.306458 -0.565032 9.8282 -0.0735032 -0.00745685 0.519849 0.14 0.55 pose: 0.0 -0.107626 0.064995 0 -0.00426351 -0.00241046 0.00932329 0.999945 uwb: 0.0 840.594 1038.12 +imu_odom_: 1691062966.311463307 0.287304 -0.502782 9.73482 -0.036219 -0.0308927 0.523045 0.16 0.64 pose: 0.0 -0.107626 0.064995 0 -0.00426351 -0.00241046 0.00932329 0.999945 uwb: 0.0 840.594 1038.12 +imu_odom_: 1691062966.328436163 0.435745 -0.526724 10.137 -0.0372843 -0.0298274 0.555003 0.16 0.64 pose: 0.33065805 -0.0977007 0.0637767 0 -0.00354529 -0.00116586 0.0168457 0.999851 uwb: 0.0 840.594 1038.12 +imu_odom_: 1691062966.344375413 0.328006 -0.347159 9.56962 -0.0585895 0.00213053 0.578439 0.13 0.53 pose: 0.41923212 -0.0924773 0.0631189 0 -0.00717818 -0.0006850320.0272414 0.999603 uwb: 0.99851586 840.527 1037.84 +imu_odom_: 1691062966.361366643 0.646434 -0.428562 10.2256 -0.0351537 -0.0330232 0.577373 0.13 0.53 pose: 0.0 -0.0924773 0.0631189 0 -0.00717818 -0.0006850320.0272414 0.999603 uwb: 0.0 840.527 1037.84 +imu_odom_: 1691062966.377363347 1.12527 -0.296881 9.92157 -0.04048 -0.0543285 0.541154 0.13 0.53 pose: 0.0 -0.0924773 0.0631189 0 -0.00717818 -0.0006850320.0272414 0.999603 uwb: 0.0 840.527 1037.84 +imu_odom_: 1691062966.394523735 1.07021 -0.234632 9.49301 -0.0511327 -0.00426106 0.546481 0.14 0.55 pose: 0.7997915 -0.0877715 0.0625874 0 -0.00718197 0.000156341 0.0294009 0.999542 uwb: 0.50044203 840.178 1037.19 +imu_odom_: 1691062966.411394514 1.96325 -0.433351 10.6015 -0.0585895 -0.0532632 0.495348 0.09 0.32 pose: 0.0 -0.0877715 0.0625874 0 -0.00718197 0.000156341 0.0294009 0.999542 uwb: 0.0 840.178 1037.19 +imu_odom_: 1691062966.436430323 1.47243 0.146046 10.228 -0.0415453 0.0553937 0.309992 0.09 0.32 pose: 0.66122278 -0.0877715 0.0625874 0 -0.00666119 -0.00546263 0.0462567 0.998892 uwb: 0.49955250 840.221 1036.74 +imu_odom_: 1691062966.453426511 0.675165 0.105345 9.81144 -0.0628506 0.0585895 0.268447 0.08 0.29 pose: 0.0 -0.0877715 0.0625874 0 -0.00666119 -0.00546263 0.0462567 0.998892 uwb: 0.0 840.221 1036.74 +imu_odom_: 1691062966.469481254 0.107739 -0.311246 9.75398 -0.0713727 0.0394148 0.176834 0.08 0.29 pose: 0.0 -0.0877715 0.0625874 0 -0.00666119 -0.00546263 0.0462567 0.998892 uwb: 0.0 840.221 1036.74 +imu_odom_: 1691062966.485545329 -1.15879 0.0837971 9.48583 -0.0319579 0.115049 0.0894822 0.08 0.29 pose: 0.16981897 -0.0877715 0.0625874 0 -0.00622638 -0.00699846 0.0493546 0.998737 uwb: 0.50037786 840.212 1036.59 +imu_odom_: 1691062966.501411083 -1.05345 0.0167594 10.7691 -0.0777643 0.015979 0.221575 0.09 0.23 pose: 0.56959222 -0.0767169 0.0714076 0 -0.00385961 -0.00470822 0.0548226 0.998478 uwb: 0.0 840.212 1036.59 +imu_odom_: 1691062966.519432420 -0.205901 -1.13246 9.77313 -0.0490022 -0.103331 0.253533 0.09 0.23 pose: 0.0 -0.0767169 0.0714076 0 -0.00385961 -0.00470822 0.0548226 0.998478 uwb: 0.0 840.212 1036.59 +imu_odom_: 1691062966.535444290 0.622492 -0.11971 9.81144 -0.0181095 -0.0511327 0.186421 0.11 0.14 pose: 0.42934945 -0.0767314 0.071391 0 -0.00498645 -0.00142554 0.0584284 0.998278 uwb: 0.50078618 840.155 1036.02 +imu_odom_: 1691062966.551374790 0.682347 0.136469 9.9096 -0.04048 0.00958738 0.243946 0.11 0.14 pose: 0.0 -0.0767314 0.071391 0 -0.00498645 -0.00142554 0.0584284 0.998278 uwb: 0.0 840.155 1036.02 +imu_odom_: 1691062966.568429600 0.490811 -0.0837971 10.1897 -0.0660464 0.0298274 0.235423 0.11 0.14 pose: 0.0 -0.0767314 0.071391 0 -0.00498645 -0.00142554 0.0584284 0.998278 uwb: 0.0 840.155 1036.02 +imu_odom_: 1691062966.585417914 0.205901 -0.23942 9.76595 -0.0351537 -0.00852212 0.178964 0.13 0.14 pose: 0.8058286 -0.0767169 0.0714076 0 -0.00422932 -0.00214555 0.0590167 0.998246 uwb: 0.49877671 840.267 1036.73 +imu_odom_: 1691062966.601476448 -0.126893 -0.232238 9.7875 -0.0585895 0.0106526 0.186421 0.17 0.2 pose: 0.0 -0.0767169 0.0714076 0 -0.00422932 -0.00214555 0.0590167 0.998246 uwb: 0.0 840.267 1036.73 +imu_odom_: 1691062966.617479569 0.258574 -0.351948 10.1969 -0.0553937 -0.0308927 0.201335 0.17 0.2 pose: 0.64958887 -0.066792 0.0701838 0 -0.000440848-0.0008061660.0645749 0.997912 uwb: 0.0 840.267 1036.73 +imu_odom_: 1691062966.634413052 0.42138 -0.440533 9.76834 -0.0351537 -0.0266316 0.187487 0.17 0.17 pose: 0.0 -0.066792 0.0701838 0 -0.000440848-0.0008061660.0645749 0.997912 uwb: 0.50230567 840.427 1036.25 +imu_odom_: 1691062966.650359885 0.349553 -0.138864 9.72525 -0.0415453 -0.0234358 0.157659 0.17 0.17 pose: 0.0 -0.066792 0.0701838 0 -0.000440848-0.0008061660.0645749 0.997912 uwb: 0.0 840.427 1036.25 +imu_odom_: 1691062966.666567452 0.373495 -0.047884 9.81144 -0.0340885 -0.0511327 0.166181 0.17 0.17 pose: 0.33040431 -0.0568658 0.0689713 0 -0.00235027 0.000766689 0.0671184 0.997742 uwb: 0.0 840.427 1036.25 +imu_odom_: 1691062966.683508518 0.483629 -0.0957681 9.79468 -0.0490022 0.00319579 0.170442 0.15 0.11 pose: 0.41077428 -0.0568658 0.0689713 0 0.000308258 0.000697079 0.0697434 0.997565 uwb: 0.49885254 840.713 1035.46 +imu_odom_: 1691062966.699387104 0.244209 -0.25618 10.6326 -0.0468716 -0.0223706 0.153398 0.15 0.11 pose: 0.8056244 -0.0568658 0.0689713 0 0.000985218 0.000256156 0.0702698 0.997528 uwb: 0.0 840.713 1035.46 +imu_odom_: 1691062966.715562298 0.320823 -0.158017 9.64624 -0.0639159 -0.052198 0.152333 0.15 0.11 pose: 0.0 -0.0568658 0.0689713 0 0.000985218 0.000256156 0.0702698 0.997528 uwb: 0.0 840.713 1035.46 +imu_odom_: 1691062966.732499574 1.11091 -0.213084 10.2975 -0.0500674 -0.0649811 0.192813 0.17 0.11 pose: 0.40938602 -0.0469379 0.0677728 0 0.00167414 0.00209579 0.0726573 0.997353 uwb: 0.49803592 840.635 1035.33 +imu_odom_: 1691062966.749499553 1.36469 -0.490811 9.84256 -0.056459 -0.0181095 0.24288 0.12 0.08 pose: 0.0 -0.0469379 0.0677728 0 0.00167414 0.00209579 0.0726573 0.997353 uwb: 0.0 840.635 1035.33 +imu_odom_: 1691062966.765358599 2.09253 -0.56982 10.3693 -0.0447411 -0.0660464 0.215183 0.12 0.08 pose: 0.0 -0.0469379 0.0677728 0 0.00167414 0.00209579 0.0726573 0.997353 uwb: 0.0 840.635 1035.33 +imu_odom_: 1691062966.782416617 1.71425 -0.126893 9.3709 -0.0383495 -0.00106526 0.137419 0.12 0.08 pose: 0.24899026 -0.0469378 0.0677727 0 0.00161214 -0.0009410240.0747619 0.9972 uwb: 0.49933959 840.855 1034.55 +imu_odom_: 1691062966.799429430 1.36469 0.11971 10.2448 -0.0585895 0.0447411 0.136354 0.1 0.08 pose: 0.0 -0.0469378 0.0677727 0 0.00161214 -0.0009410240.0747619 0.9972 uwb: 0.0 840.855 1034.55 +imu_odom_: 1691062966.816488906 0.658405 -0.296881 9.65821 -0.072438 0.0255663 0.113983 0.1 0.08 pose: 0.32101319 -0.0370111 0.0665643 0 0.00143133 -0.00463485 0.0774215 0.996987 uwb: 0.0 840.855 1034.55 +imu_odom_: 1691062966.832382950 0.550666 -0.292093 10.1538 -0.0607201 0.00106526 0.0692422 0.08 0.05 pose: 0.43926263 -0.0358557 0.0764973 0 0.00105407 -0.00782387 0.0793634 0.996814 uwb: 0.50260024 841.074 1033.06 +imu_odom_: 1691062966.849489965 0.636858 -0.263362 9.75637 -0.0511327 -0.0234358 0.0607201 0.08 0.05 pose: 0.0 -0.0358557 0.0764973 0 0.00105407 -0.00782387 0.0793634 0.996814 uwb: 0.0 841.074 1033.06 +imu_odom_: 1691062966.865356010 0.814029 -0.0526724 9.96706 -0.0543285 -0.02024 0.092678 0.08 0.05 pose: 0.0 -0.0358557 0.0764973 0 0.00105407 -0.00782387 0.0793634 0.996814 uwb: 0.0 841.074 1033.06 +imu_odom_: 1691062966.882621683 0.617704 -0.380678 9.71567 -0.0532632 -0.00745685 0.116114 0.09 0.05 pose: 0.8013080 -0.0358557 0.0764973 0 0.000228323 -0.00776907 0.079488 0.996806 uwb: 0.49876796 841.203 1032.74 +imu_odom_: 1691062966.901557635 0.78051 -0.203507 9.991 -0.0426106 -0.0117179 0.108657 0.06 0.05 pose: 0.0 -0.0358557 0.0764973 0 0.000228323 -0.00776907 0.079488 0.996806 uwb: 0.0 841.203 1032.74 +imu_odom_: 1691062966.917422805 0.713472 -0.191536 9.81623 -0.0458064 -0.00106526 0.124636 0.06 0.05 pose: 0.67017935 -0.0259179 0.0753822 0 -0.00102735 -0.0118809 0.0811771 0.996628 uwb: 0.0 841.203 1032.74 +imu_odom_: 1691062966.944478289 0.565032 -0.263362 9.90242 -0.0511327 -0.00426106 0.115049 0.06 0.08 pose: 0.0 -0.0259179 0.0753822 0 -0.00102735 -0.0118809 0.0811771 0.996628 uwb: 0.50007455 840.95 1032.21 +imu_odom_: 1691062966.962597330 0.158017 -0.287304 9.72046 -0.0617853 0.0415453 0.0458064 0.06 0.08 pose: 0.33971961 -0.0259179 0.0753822 0 0.000323345 -0.0131785 0.0824823 0.996505 uwb: 0.0 840.95 1032.21 +imu_odom_: 1691062966.978414961 -0.627281 0.0263362 10.003 -0.0415453 0.0330232 -0.1012 0.07 -0.11 pose: 0.37105448 -0.0259179 0.0753822 0 -0.000843419-0.00925213 0.0832695 0.996484 uwb: 0.0 840.95 1032.21 +imu_odom_: 1691062966.994495077 -0.861913 0.335188 9.87608 -0.0447411 -0.0255663 -0.219444 0.07 -0.11 pose: 0.7843340 -0.0259179 0.0753822 0 -0.000688407-0.0083257 0.0827199 0.996538 uwb: 0.49993456 840.862 1031.65 +imu_odom_: 1691062967.11358565 -0.600945 0.205901 9.51935 -0.0756338 -0.0298274 -0.236489 0.07 -0.11 pose: 0.0 -0.0259179 0.0753822 0 -0.000688407-0.0083257 0.0827199 0.996538 uwb: 0.0 840.862 1031.65 +imu_odom_: 1691062967.28540535 0.0550666 -0.543484 9.75637 -0.0735032 -0.0756338 -0.268447 0.13 -0.38 pose: 0.40917895 -0.0259179 0.0753822 0 0.000401867 -0.00462439 0.0777605 0.996961 uwb: 0.0 840.862 1031.65 +imu_odom_: 1691062967.44359624 0.201113 -0.318429 9.32302 -0.0543285 -0.0127832 -0.325971 0.13 -0.38 pose: 0.0 -0.0259179 0.0753822 0 0.000401867 -0.00462439 0.0777605 0.996961 uwb: 0.50070160 840.522 1031.29 +imu_odom_: 1691062967.60482613 -0.00957681-0.126893 10.0126 -0.0447411 0.00958738 -0.325971 0.13 -0.38 pose: 0.0 -0.0259179 0.0753822 0 0.000401867 -0.00462439 0.0777605 0.996961 uwb: 0.0 840.522 1031.29 +imu_odom_: 1691062967.77542381 -0.342371 -0.0742203 9.92875 -0.0596548 -0.0127832 -0.329167 0.11 -0.38 pose: 0.40028655 -0.0159865 0.0742118 0 -0.00121737 -0.00181034 0.0709661 0.997476 uwb: 0.0 840.522 1031.29 +imu_odom_: 1691062967.93344847 -0.277727 -0.0981623 9.75398 -0.0596548 -0.0245011 -0.38243 0.16 -0.58 pose: 0.0 -0.0159865 0.0742118 0 -0.00121737 -0.00181034 0.0709661 0.997476 uwb: 0.49937459 840.748 1030.95 +imu_odom_: 1691062967.109356134 0.414197 -0.205901 10.0892 -0.0671117 -0.0681769 -0.413323 0.16 -0.58 pose: 0.0 -0.0159865 0.0742118 0 -0.00121737 -0.00181034 0.0709661 0.997476 uwb: 0.0 840.748 1030.95 +imu_odom_: 1691062967.126538395 0.143652 -0.0670376 9.17937 -0.0639159 -0.0266316 -0.415453 0.15 -0.58 pose: 0.33043640 -0.0159865 0.0742118 0 -0.0007214960.00137258 0.0647225 0.997902 uwb: 0.0 840.748 1030.95 +imu_odom_: 1691062967.144412450 0.323217 -0.112527 10.1562 -0.0660464 -0.0340885 -0.425041 0.15 -0.58 pose: 0.0 -0.0159865 0.0742118 0 -0.0007214960.00137258 0.0647225 0.997902 uwb: 0.49987332 840.621 1030.55 +imu_odom_: 1691062967.158347189 0.328006 -0.452504 9.663 -0.0777643 -0.00106526 -0.455933 0.15 -0.58 pose: 0.33075430 -0.006048960.0730964 0 0.000249007 0.000796862 0.0573772 0.998352 uwb: 0.0 840.621 1030.55 +imu_odom_: 1691062967.173329827 0.0981623 -0.0957681 9.91678 -0.0543285 0.0138484 -0.478304 0.13 -0.5 pose: 0.40840899 -0.006064450.0730797 0 0.000478825 0.00233096 0.0477296 0.998857 uwb: 0.0 840.621 1030.55 +imu_odom_: 1691062967.190326307 0.222661 -0.126893 9.96467 -0.0820254 -0.0191748 -0.4815 0.13 -0.5 pose: 0.7013305 -0.006049060.0730965 0 0.000712104 0.00305673 0.0459157 0.99894 uwb: 0.50173404 840.729 1030.09 +imu_odom_: 1691062967.206384550 0.684742 0.0311246 10.0892 -0.0756338 -0.0830906 -0.493217 0.13 -0.5 pose: 0.0 -0.006049060.0730965 0 0.000712104 0.00305673 0.0459157 0.99894 uwb: 0.0 840.729 1030.09 +imu_odom_: 1691062967.223448401 0.775721 -0.047884 9.8665 -0.0479369 -0.0415453 -0.532632 0.19 -0.79 pose: 0.41024056 0.00496325 0.0819331 0 0.00223786 0.0032195 0.0351639 0.999374 uwb: 0.0 840.729 1030.09 +imu_odom_: 1691062967.241349871 1.56102 -0.146046 9.61272 -0.0490022 -0.0575243 -0.512392 0.13 -0.55 pose: 0.0 0.00496325 0.0819331 0 0.00223786 0.0032195 0.0351639 0.999374 uwb: 0.49866589 840.974 1029.33 +imu_odom_: 1691062967.255463975 1.6113 -0.220267 9.55287 -0.0703074 -0.0479369 -0.471912 0.13 -0.55 pose: 0.0 0.00496325 0.0819331 0 0.00223786 0.0032195 0.0351639 0.999374 uwb: 0.0 840.974 1029.33 +imu_odom_: 1691062967.270326745 1.19471 -0.229843 10.8649 -0.0468716 0 -0.46339 0.13 -0.55 pose: 0.25007227 0.00497876 0.0819501 0 0.00287559 0.000288366 0.0280993 0.999601 uwb: 0.0 840.974 1029.33 +imu_odom_: 1691062967.286327241 1.20668 0.124498 9.92636 -0.0490022 -0.0181095 -0.427171 0.1 -0.44 pose: 0.0 0.00497876 0.0819501 0 0.00287559 0.000288366 0.0280993 0.999601 uwb: 0.49802425 841.081 1028.45 +imu_odom_: 1691062967.303445048 1.29766 -0.272939 9.6223 -0.0458064 -0.0138484 -0.370712 0.1 -0.44 pose: 0.31086378 0.0149241 0.0809062 0 0.00280187 -0.00335396 0.0199873 0.999791 uwb: 0.0 841.081 1028.45 +imu_odom_: 1691062967.319380214 0.955286 -0.387861 9.91678 -0.072438 -0.0138484 -0.295078 0.12 -0.44 pose: 0.40966893 0.0149241 0.0809062 0 0.00332524 -0.00745495 0.0107802 0.999909 uwb: 0.0 841.081 1028.45 +imu_odom_: 1691062967.336353070 1.08936 -0.395043 10.1993 -0.052198 0.00319579 -0.24288 0.12 -0.44 pose: 0.0 0.0149241 0.0809062 0 0.00332524 -0.00745495 0.0107802 0.999909 uwb: 0.50246317 841.288 1027.84 +imu_odom_: 1691062967.353328843 0.97444 -0.383072 9.86411 -0.0639159 -0.00213053 -0.2024 0.12 -0.44 pose: 0.0 0.0149241 0.0809062 0 0.00332524 -0.00745495 0.0107802 0.999909 uwb: 0.0 841.288 1027.84 +imu_odom_: 1691062967.369458832 0.40462 -0.253785 9.56962 -0.052198 0.0319579 -0.201335 0.06 -0.26 pose: 0.7001638 0.0149241 0.0809062 0 0.00292781 -0.00809373 0.00961273 0.999917 uwb: 0.0 841.288 1027.84 +imu_odom_: 1691062967.386336902 0.481235 -0.179565 9.90481 -0.0575243 -0.00852212 -0.201335 0.09 -0.32 pose: 0.0 0.0149241 0.0809062 0 0.00292781 -0.00809373 0.00961273 0.999917 uwb: 0.49986748 841.667 1028.2 +imu_odom_: 1691062967.403333674 0.684742 -0.0335188 9.73722 -0.0585895 -0.0191748 -0.18003 0.09 -0.32 pose: 0.66090780 0.0149241 0.0809062 0 0.000716222 -0.00933094 0.000899447 0.999956 uwb: 0.0 841.667 1028.2 +imu_odom_: 1691062967.419365960 1.1157 -0.349553 10.1035 -0.0639159 -0.0234358 -0.155529 0.05 -0.23 pose: 0.0 0.0149241 0.0809062 0 0.000716222 -0.00933094 0.000899447 0.999956 uwb: 0.0 841.667 1028.2 +imu_odom_: 1691062967.436337358 0.835576 -0.280122 9.84017 -0.0532632 0.00213053 -0.138484 0.05 -0.23 pose: 0.0 0.0149241 0.0809062 0 0.000716222 -0.00933094 0.000899447 0.999956 uwb: 0.50036913 841.406 1027.82 +imu_odom_: 1691062967.453320714 0.799663 -0.131681 10.0437 -0.0543285 0.00958738 -0.123571 0.05 -0.23 pose: 0.33829637 0.0248647 0.0798183 0 0.00201548 -0.0102539 -0.00284349 0.999941 uwb: 0.0 841.406 1027.82 +imu_odom_: 1691062967.469294087 0.464475 -0.203507 9.7444 -0.056459 0.00852212 -0.122505 0.05 -0.17 pose: 0.33963503 0.0248647 0.0798183 0 0.00132867 -0.0133515 -0.00587193 0.999893 uwb: 0.0 841.406 1027.82 +imu_odom_: 1691062967.486310107 0.59855 -0.0694318 10.1227 -0.0553937 -0.0266316 -0.136354 0.05 -0.17 pose: 0.0 0.0248647 0.0798183 0 0.00132867 -0.0133515 -0.00587193 0.999893 uwb: 0.50122073 841.356 1026.83 +imu_odom_: 1691062967.502311770 0.782904 -0.222661 9.7444 -0.0607201 -0.0181095 -0.124636 0.05 -0.17 pose: 0.0 0.0248647 0.0798183 0 0.00132867 -0.0133515 -0.00587193 0.999893 uwb: 0.0 841.356 1026.83 +imu_odom_: 1691062967.519312041 0.790087 -0.320823 10.0365 -0.056459 0.00852212 -0.100135 0.05 -0.2 pose: 0.48986098 0.0248647 0.0798183 0 0.00278467 -0.0125796 -0.00999074 0.999867 uwb: 0.0 841.356 1026.83 +imu_odom_: 1691062967.535458945 0.703895 -0.35913 9.84975 -0.056459 -0.00213053 -0.0798948 0.05 -0.2 pose: 0.0 0.0248647 0.0798183 0 0.00278467 -0.0125796 -0.00999074 0.999867 uwb: 0.49616645 841.123 1026.3 +imu_odom_: 1691062967.551447775 0.651223 -0.179565 9.85453 -0.0532632 0 -0.0703074 0.03 -0.11 pose: 0.17030312 0.0248647 0.0798183 0 0.00174529 -0.0138842 -0.0112738 0.999839 uwb: 0.0 841.123 1026.3 +imu_odom_: 1691062967.567446521 0.471658 -0.234632 9.7851 -0.0596548 -0.00106526 -0.0628506 0.03 -0.11 pose: 0.0 0.0248647 0.0798183 0 0.00174529 -0.0138842 -0.0112738 0.999839 uwb: 0.0 841.123 1026.3 +imu_odom_: 1691062967.584334216 0.617704 -0.241814 9.99579 -0.0532632 -0.00958738 -0.0660464 0.03 -0.11 pose: 0.0 0.0248647 0.0798183 0 0.00174529 -0.0138842 -0.0112738 0.999839 uwb: 0.50100784 841.021 1024.61 +imu_odom_: 1691062967.600309047 0.718261 -0.268151 9.88566 -0.0543285 -0.0149137 -0.052198 0.03 -0.08 pose: 0.32109485 0.0248647 0.0798183 0 -8.83588e-06-0.0140773 -0.0132222 0.999813 uwb: 0.0 841.021 1024.61 +imu_odom_: 1691062967.616377497 0.667982 -0.280122 9.89763 -0.056459 0 -0.0340885 0.02 -0.05 pose: 0.0 0.0248647 0.0798183 0 -8.83588e-06-0.0140773 -0.0132222 0.999813 uwb: 0.0 841.021 1024.61 +imu_odom_: 1691062967.633315356 0.622492 -0.272939 9.88326 -0.0553937 -0.00426106 -0.0191748 0.02 -0.05 pose: 0.64873142 0.0248647 0.0798183 0 -0.00227347 -0.0129499 -0.0163958 0.999779 uwb: 0.50151822 841.186 1024.59 +imu_odom_: 1691062967.649314977 0.565032 -0.186748 9.89284 -0.0575243 -0.00639159 -0.0138484 0.02 -0.05 pose: 0.0 0.0248647 0.0798183 0 -0.00227347 -0.0129499 -0.0163958 0.999779 uwb: 0.0 841.186 1024.59 +imu_odom_: 1691062967.665307015 0.636858 -0.203507 9.92397 -0.056459 -0.00745685 -0.00639159 0.01 -0.05 pose: 0.0 0.0248647 0.0798183 0 -0.00227347 -0.0129499 -0.0163958 0.999779 uwb: 0.0 841.186 1024.59 +imu_odom_: 1691062967.681307802 0.620098 -0.263362 9.87848 -0.056459 -0.00852212 0.00106526 0.01 -0.05 pose: 0.32992601 0.0248647 0.0798183 0 -0.00259657 -0.0111651 -0.0174033 0.999783 uwb: 0.49856672 840.925 1024.77 +imu_odom_: 1691062967.697368961 0.701501 -0.277727 9.87369 -0.0553937 -0.00532632 0.0117179 0 -0.02 pose: 0.40985558 0.0248647 0.0798183 0 -0.00207867 -0.0112118 -0.018324 0.999767 uwb: 0.0 840.925 1024.77 +imu_odom_: 1691062967.713355166 0.677559 -0.260968 9.84496 -0.056459 -0.00213053 0.0287621 0 -0.02 pose: 0.0 0.0248647 0.0798183 0 -0.00207867 -0.0112118 -0.018324 0.999767 uwb: 0.0 840.925 1024.77 +imu_odom_: 1691062967.729414867 0.593762 -0.229843 9.93115 -0.0543285 0.00213053 0.0394148 0 -0.02 pose: 0.0 0.0248647 0.0798183 0 -0.00207867 -0.0112118 -0.018324 0.999767 uwb: 0.0 840.925 1024.77 +imu_odom_: 1691062967.743357190 0.42138 -0.225055 9.84735 -0.0543285 0.00532632 0.0458064 0 0 pose: 0.7018263 0.0248647 0.0798183 0 -0.00231431 -0.0118775 -0.0184204 0.999757 uwb: 0.50007164 840.882 1024.49 +imu_odom_: 1691062967.758296955 0.387861 -0.229843 9.90481 -0.0543285 -0.00106526 0.0394148 0 0 pose: 0.0 0.0248647 0.0798183 0 -0.00231431 -0.0118775 -0.0184204 0.999757 uwb: 0.0 840.882 1024.49 +imu_odom_: 1691062967.772289733 0.349553 -0.203507 9.90242 -0.0553937 -0.00852212 0.036219 0 0 pose: 0.0 0.0248647 0.0798183 0 -0.00231431 -0.0118775 -0.0184204 0.999757 uwb: 0.0 840.882 1024.49 +imu_odom_: 1691062967.786304093 0.466869 -0.220267 9.87848 -0.0553937 -0.0106526 0.0383495 0 0 pose: 0.47041668 0.0348069 0.0787444 0 -0.00201257 -0.0121402 -0.0186215 0.999751 uwb: 0.49962541 840.625 1024.39 +imu_odom_: 1691062967.800295121 0.548272 -0.294487 9.84735 -0.0553937 -0.00639159 0.04048 0 0 pose: 0.0 0.0348069 0.0787444 0 -0.00201257 -0.0121402 -0.0186215 0.999751 uwb: 0.0 840.625 1024.39 +imu_odom_: 1691062967.814349146 0.52433 -0.248997 9.92157 -0.0553937 -0.00106526 0.04048 0 0 pose: 0.0 0.0348069 0.0787444 0 -0.00201257 -0.0121402 -0.0186215 0.999751 uwb: 0.0 840.625 1024.39 +imu_odom_: 1691062967.828348340 0.459687 -0.203507 9.88566 -0.0553937 0 0.04048 0 0 pose: 0.42988901 0.0348069 0.0787444 0 -0.00136595 -0.00788108 -0.0186246 0.999795 uwb: 0.0 840.625 1024.39 +imu_odom_: 1691062967.843334478 0.430956 -0.189142 9.89524 -0.056459 -0.00426106 0.0415453 0 0 pose: 0.0 0.0348069 0.0787444 0 -0.00136595 -0.00788108 -0.0186246 0.999795 uwb: 0.50012414 840.656 1023.96 +imu_odom_: 1691062967.857272134 0.442927 -0.203507 9.91439 -0.056459 -0.00745685 0.0383495 0 0 pose: 0.0 0.0348069 0.0787444 0 -0.00136595 -0.00788108 -0.0186246 0.999795 uwb: 0.0 840.656 1023.96 +imu_odom_: 1691062967.871272495 0.483629 -0.248997 9.89045 -0.0553937 -0.00639159 0.0372843 0 0 pose: 0.41975126 0.0348069 0.0787444 0 -0.00146809 -0.00556411 -0.0186087 0.99981 uwb: 0.0 840.656 1023.96 +imu_odom_: 1691062967.886331253 0.536301 -0.244209 9.90242 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.0348069 0.0787444 0 -0.00146809 -0.00556411 -0.0186087 0.99981 uwb: 0.49993748 840.609 1023.96 +imu_odom_: 1691062967.901300184 0.507571 -0.260968 9.88087 -0.0553937 -0.00213053 0.04048 0 0 pose: 0.0 0.0348069 0.0787444 0 -0.00146809 -0.00556411 -0.0186087 0.99981 uwb: 0.0 840.609 1023.96 +imu_odom_: 1691062967.915430329 0.464475 -0.189142 9.88566 -0.052198 -0.00213053 0.04048 0 0 pose: 0.42945737 0.0348069 0.0787444 0 -0.000101103-0.00276383 -0.0186113 0.999823 uwb: 0.0 840.609 1023.96 +imu_odom_: 1691062967.930431049 0.442927 -0.220267 9.89284 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.0 0.0348069 0.0787444 0 -0.000101103-0.00276383 -0.0186113 0.999823 uwb: 0.50077743 840.756 1023.66 +imu_odom_: 1691062967.945311026 0.493206 -0.246603 9.88805 -0.0543285 -0.00639159 0.0383495 0 0 pose: 0.0 0.0348069 0.0787444 0 -0.000101103-0.00276383 -0.0186113 0.999823 uwb: 0.0 840.756 1023.66 +imu_odom_: 1691062967.967296469 0.505177 -0.265756 9.88087 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.44053131 0.0348069 0.0787444 0 -0.00195034 -0.00498644 -0.0186063 0.999813 uwb: 0.0 840.756 1023.66 +imu_odom_: 1691062967.982377101 0.201113 -0.294487 9.86172 -0.0639159 0.0245011 0.0191748 0 0 pose: 0.0 0.0348069 0.0787444 0 -0.00195034 -0.00498644 -0.0186063 0.999813 uwb: 0.0 840.756 1023.66 +imu_odom_: 1691062967.996294050 -0.574608 -0.189142 9.88566 -0.04048 0.0894822 -0.0266316 0.01 0.02 pose: 0.43984594 0.0348069 0.0787444 0 -0.00208144 -0.00474583 -0.0186133 0.999813 uwb: 0.0 840.756 1023.66 +imu_odom_: 1691062968.12442121 -1.45567 0.0215478 9.94791 -0.0458064 0.0479369 0.0213053 0.03 0.02 pose: 0.0 0.0348069 0.0787444 0 -0.00208144 -0.00474583 -0.0186133 0.999813 uwb: 0.0 840.756 1023.66 +imu_odom_: 1691062968.28424826 -0.509965 -0.665588 10.1203 -0.0639159 -0.0852212 0.0713727 0.04 0.05 pose: 0.0 0.0348069 0.0787444 0 -0.00208144 -0.00474583 -0.0186133 0.999813 uwb: 0.0 840.756 1023.66 +imu_odom_: 1691062968.45442014 0.229843 -0.42138 9.58638 -0.052198 -0.0575243 0.0585895 0.04 0.05 pose: 0.68011586 0.0348069 0.0787444 0 -0.00317396 0.000484957 -0.0192501 0.99981 uwb: 0.99819797 840.934 1024.2 +imu_odom_: 1691062968.62322417 0.641646 -0.138864 10.24 -0.056459 -0.0127832 0.0692422 0.06 0.02 pose: 0.0 0.0348069 0.0787444 0 -0.00317396 0.000484957 -0.0192501 0.99981 uwb: 0.0 840.934 1024.2 +imu_odom_: 1691062968.79477847 -0.0335188 -0.047884 9.5792 -0.0468716 0.0245011 0.0447411 0.06 0.02 pose: 0.0 0.0348069 0.0787444 0 -0.00317396 0.000484957 -0.0192501 0.99981 uwb: 0.50041288 840.986 1023.91 +imu_odom_: 1691062968.95353517 -0.071826 -0.215478 10.0293 -0.0596548 0.0223706 0.0298274 0.06 0.02 pose: 0.34001127 0.0348069 0.0787444 0 -0.00425209 0.00109209 -0.0188205 0.999813 uwb: 0.0 840.986 1023.91 +imu_odom_: 1691062968.111480005 -0.1652 -0.35913 9.79947 -0.056459 -0.0117179 0.0511327 0.11 0.05 pose: 0.42025582 0.0348069 0.0787444 0 -0.00265732 0.00379827 -0.0187134 0.999814 uwb: 0.0 840.986 1023.91 +imu_odom_: 1691062968.128478527 0.332794 -0.47884 10.0317 -0.036219 -0.015979 0.052198 0.11 0.05 pose: 0.6962557 0.0348069 0.0787444 0 -0.00277519 0.00445935 -0.0186717 0.999812 uwb: 0.0 840.986 1023.91 +imu_odom_: 1691062968.145421344 0.155623 -0.225055 9.77313 -0.0500674 -0.0127832 0.0596548 0.11 0.05 pose: 0.0 0.0348069 0.0787444 0 -0.00277519 0.00445935 -0.0186717 0.999812 uwb: 0.49940084 841.028 1024.18 +imu_odom_: 1691062968.161421548 0.289698 -0.208296 9.92875 -0.0607201 0.00639159 0.0681769 0.1 0 pose: 0.43105270 0.0447371 0.0775655 0 -0.00361317 0.00640452 -0.0183389 0.999805 uwb: 0.0 841.028 1024.18 +imu_odom_: 1691062968.177365173 0.229843 -0.241814 9.80665 -0.052198 -0.0149137 0.0479369 0.13 0.02 pose: 0.0 0.0447371 0.0775655 0 -0.00361317 0.00640452 -0.0183389 0.999805 uwb: 0.0 841.028 1024.18 +imu_odom_: 1691062968.194415900 0.25618 -0.059855 9.83299 -0.0447411 -0.0287621 0.0319579 0.13 0.02 pose: 0.0 0.0447371 0.0775655 0 -0.00361317 0.00640452 -0.0183389 0.999805 uwb: 0.49978583 840.936 1024.06 +imu_odom_: 1691062968.211291929 0.244209 0.0550666 9.78031 -0.0479369 0.0106526 0.0596548 0.14 0 pose: 0.22970637 0.0447371 0.0775655 0 -0.00185622 0.00687411 -0.0180692 0.999811 uwb: 0.0 840.936 1024.06 +imu_odom_: 1691062968.228422860 0.37589 -0.627281 10.1993 -0.0479369 0.0106526 0.0607201 0.14 0 pose: 0.0 0.0447371 0.0775655 0 -0.00185622 0.00687411 -0.0180692 0.999811 uwb: 0.0 840.936 1024.06 +imu_odom_: 1691062968.244543224 0.603339 -0.318429 9.79468 -0.0458064 -0.0351537 0.0287621 0.14 0 pose: 0.33028474 0.0447371 0.0775655 0 0.000938556 0.00750632 -0.0180052 0.999809 uwb: 0.50129074 840.779 1023.65 +imu_odom_: 1691062968.262411737 1.10133 -0.222661 9.79707 -0.0575243 -0.0117179 0.0447411 0.1 0.02 pose: 0.43122769 0.054669 0.0764002 0 -6.90326e-050.0055281 -0.0178213 0.999826 uwb: 0.0 840.779 1023.65 +imu_odom_: 1691062968.278378985 1.39103 -0.148441 10.4244 -0.0607201 -0.0106526 0.0958738 0.1 0.02 pose: 0.7897296 0.054669 0.0764002 0 -9.66913e-050.00470908 -0.0178011 0.99983 uwb: 0.0 840.779 1023.65 +imu_odom_: 1691062968.294534056 1.43173 -0.304064 10.1155 -0.0511327 -0.0447411 0.127832 0.1 0.02 pose: 0.0 0.054669 0.0764002 0 -9.66913e-050.00470908 -0.0178011 0.99983 uwb: 0.49877088 840.963 1023.91 +imu_odom_: 1691062968.311468706 1.13485 -0.361524 9.23444 -0.0532632 -0.0127832 0.137419 0.07 0 pose: 0.42093536 0.054669 0.0764002 0 -0.0002251929.38464e-05 -0.0166139 0.999862 uwb: 0.0 840.963 1023.91 +imu_odom_: 1691062968.328392566 1.23062 -0.0957681 10.2927 -0.0319579 0.02024 0.0948085 0.09 -0.02 pose: 0.0 0.054669 0.0764002 0 -0.0002251929.38464e-05 -0.0166139 0.999862 uwb: 0.0 840.963 1023.91 +imu_odom_: 1691062968.344379354 0.845153 0.117316 10.1179 -0.0575243 0.00852212 0.0553937 0.09 -0.02 pose: 0.0 0.054669 0.0764002 0 -0.0002251929.38464e-05 -0.0166139 0.999862 uwb: 0.50003665 840.494 1023.84 +imu_odom_: 1691062968.361421040 0.816423 -0.110133 10.1873 -0.0575243 -0.00639159 0.0266316 0.07 0 pose: 0.23981203 0.054669 0.0764002 0 -0.000373427-0.00224758 -0.0155918 0.999876 uwb: 0.0 840.494 1023.84 +imu_odom_: 1691062968.377406662 0.696713 -0.3304 9.59117 -0.0639159 -0.02024 0 0.07 0 pose: 0.0 0.054669 0.0764002 0 -0.000373427-0.00224758 -0.0155918 0.999876 uwb: 0.0 840.494 1023.84 +imu_odom_: 1691062968.393283790 1.01035 -0.189142 9.93833 -0.0532632 -0.00426106 0.0106526 0.07 0 pose: 0.32820528 0.0646063 0.0752827 0 0.00106391 -0.00490553 -0.0152418 0.999871 uwb: 0.50110991 840.105 1023.33 +imu_odom_: 1691062968.410297186 0.766145 -0.301669 9.88087 -0.0596548 0.0149137 0.0255663 0.04 0.02 pose: 0.41948003 0.0646063 0.0752827 0 0.000279226 -0.00885813 -0.0158456 0.999835 uwb: 0.0 840.105 1023.33 +imu_odom_: 1691062968.427426659 0.629675 -0.146046 9.98861 -0.052198 0.00319579 0.00958738 0.04 0.02 pose: 0.8165905 0.0646063 0.0752827 0 -0.000114155-0.00950441 -0.0158993 0.999828 uwb: 0.0 840.105 1023.33 +imu_odom_: 1691062968.453277922 0.691924 -0.124498 9.91439 -0.056459 -0.00213053 0.00213053 0.03 0.02 pose: 0.25976964 0.0646063 0.0752827 0 0.00111126 -0.0107012 -0.0162308 0.99981 uwb: 0.50020289 839.918 1022.36 +imu_odom_: 1691062968.470265652 0.292093 -0.318429 9.95748 -0.0575243 0.0543285 0.0287621 0.04 0.05 pose: 0.0 0.0646063 0.0752827 0 0.00111126 -0.0107012 -0.0162308 0.99981 uwb: 0.0 839.918 1022.36 +imu_odom_: 1691062968.496252240 -1.50116 -0.308852 10.2424 -0.04048 0.0575243 0.0639159 0.05 0.02 pose: 0.42838993 0.0646063 0.0752827 0 0.00202955 -0.0106419 -0.0168162 0.9998 uwb: 0.49975374 839.935 1021.78 +imu_odom_: 1691062968.523321433 -0.237026 -0.0263362 9.77313 -0.0543285 -0.105461 0.0490022 0.09 0.02 pose: 0.0 0.0646063 0.0752827 0 0.00202955 -0.0106419 -0.0168162 0.9998 uwb: 0.0 839.935 1021.78 +imu_odom_: 1691062968.539277015 0.725443 -0.246603 9.85453 -0.052198 -0.0628506 0.0532632 0.09 0.02 pose: 0.0 0.0646063 0.0752827 0 0.00202955 -0.0106419 -0.0168162 0.9998 uwb: 0.0 839.935 1021.78 +imu_odom_: 1691062968.566330166 0.538695 -0.469264 9.96946 -0.0575243 0.0479369 0.0607201 0.12 0.02 pose: 0.69011363 0.0745417 0.0741474 0 0.00202234 -0.00790029 -0.0162698 0.999834 uwb: 0.0 839.935 1021.78 +imu_odom_: 1691062968.592314713 -0.464475 -0.0885855 10.2927 -0.0553937 -0.00532632 0.036219 0.12 0.02 pose: 0.8058869 0.0745417 0.0741474 0 0.001213 -0.00762436 -0.0161781 0.999839 uwb: 0.100029203 839.865 1021.08 +imu_odom_: 1691062968.619316534 0.442927 -0.45011 9.38527 -0.0681769 -0.0372843 0.0500674 0.15 0.02 pose: 0.44978829 0.0745417 0.0741474 0 -0.000302035-0.00441974 -0.0160068 0.999862 uwb: 0.0 839.865 1021.08 +imu_odom_: 1691062968.645449531 0.694318 -0.150835 9.84256 -0.0511327 0.02024 0.0511327 0.15 0.02 pose: 0.0 0.0745417 0.0741474 0 -0.000302035-0.00441974 -0.0160068 0.999862 uwb: 0.49839757 840.541 1021.28 +imu_odom_: 1691062968.672301444 -0.138864 -0.184354 9.81144 -0.0617853 0.0181095 0.0255663 0.17 0 pose: 0.35029776 0.0844782 0.0730226 0 -0.0027105 -0.00493243 -0.0158117 0.999859 uwb: 0.0 840.541 1021.28 +imu_odom_: 1691062968.688300190 0.0622492 0.220267 9.86172 -0.056459 0.00639159 0.0415453 0.17 0 pose: 0.0 0.0844782 0.0730226 0 -0.0027105 -0.00493243 -0.0158117 0.999859 uwb: 0.50060244 840.314 1021.73 +imu_odom_: 1691062968.715407297 0.773327 -0.459687 10.3525 -0.072438 0.0106526 0.0415453 0.13 0.02 pose: 0.52956911 0.0844782 0.0730226 0 -0.000942366-0.00274462 -0.0158964 0.999869 uwb: 0.0 840.314 1021.73 +imu_odom_: 1691062968.741240185 0.423774 -0.189142 9.75398 -0.0511327 0.0117179 0.0340885 0.13 -0.02 pose: 0.35105897 0.0944149 0.0718991 0 -0.00220251 -0.00413879 -0.0158608 0.999863 uwb: 0.49959042 840.139 1021.33 +imu_odom_: 1691062968.768225091 0.162806 -0.148441 9.69652 -0.0713727 -0.0127832 0.0703074 0.13 -0.02 pose: 0.7835466 0.0944149 0.0718991 0 -0.00159289 -0.00356225 -0.0158838 0.999866 uwb: 0.0 840.139 1021.33 +imu_odom_: 1691062968.794362170 0.457293 -0.323217 9.90721 -0.0639159 0.0191748 0.0351537 0.14 0 pose: 0.44982328 0.10149 0.0710993 0 0.000270737 0.000261185 -0.0155234 0.999879 uwb: 0.49989665 839.97 1020.22 +imu_odom_: 1691062968.810264089 0.21069 -0.222661 10.0676 -0.0703074 0.0479369 0.0319579 0.14 0 pose: 0.0 0.10149 0.0710993 0 0.000270737 0.000261185 -0.0155234 0.999879 uwb: 0.0 839.97 1020.22 +imu_odom_: 1691062968.836278967 0.517148 -0.586579 9.67736 -0.0745685 0.0426106 0.0575243 0.14 0 pose: 0.42038998 0.105468 0.0807154 0 -0.00199272 0.00137674 -0.0156398 0.999875 uwb: 0.50032247 839.953 1020.08 +imu_odom_: 1691062968.863248415 0.0502782 -0.220267 9.81144 -0.0511327 -0.02024 0.0479369 0.14 0 pose: 0.0 0.105468 0.0807154 0 -0.00199272 0.00137674 -0.0156398 0.999875 uwb: 0.0 839.953 1020.08 +imu_odom_: 1691062968.888263809 0.696713 -0.253785 10.5105 -0.0628506 0.00745685 0.0543285 0.15 0.02 pose: 0.52984326 0.115406 0.0795983 0 -0.00389038 0.00341352 -0.0152859 0.99987 uwb: 0.49954667 840.013 1019.79 +imu_odom_: 1691062968.915243173 0.581791 0.0311246 10.7284 -0.0447411 0.0127832 0.0255663 0.18 -0.02 pose: 0.0 0.115406 0.0795983 0 -0.00389038 0.00341352 -0.0152859 0.99987 uwb: 0.0 840.013 1019.79 +imu_odom_: 1691062968.932228279 0.399832 -0.294487 9.3733 -0.0671117 0 0.0671117 0.18 -0.02 pose: 0.32075946 0.115406 0.0795983 0 -0.00309147 0.000749395 -0.0151612 0.99988 uwb: 0.49986749 839.948 1019.65 +imu_odom_: 1691062968.959427256 0.483629 -0.112527 9.96946 -0.0458064 -0.0596548 0.0383495 0.23 0 pose: 0.36903918 0.125344 0.0784894 0 -0.00308389 0.000106415 -0.0150695 0.999882 uwb: 0.0 839.948 1019.65 +imu_odom_: 1691062968.984368279 0.56982 -0.059855 9.31823 -0.0607201 0.0671117 0.0447411 0.23 0 pose: 0.0 0.125344 0.0784894 0 -0.00308389 0.000106415 -0.0150695 0.999882 uwb: 0.50187987 839.888 1018.95 +imu_odom_: 1691062969.11244691 -0.823605 -0.248997 9.64863 -0.0479369 -0.00639159 0.0276969 0.2 0 pose: 0.7064344 0.125344 0.0784894 0 -0.00242586 -0.000416256-0.0150742 0.999883 uwb: 0.0 839.888 1018.95 +imu_odom_: 1691062969.37249361 0.232238 -0.146046 9.9503 -0.0617853 -0.0649811 0.0607201 0.2 0 pose: 0.0 0.125344 0.0784894 0 -0.00242586 -0.000416256-0.0150742 0.999883 uwb: 0.49955834 839.925 1018.24 +imu_odom_: 1691062969.64227851 0.497994 -0.0742203 9.97424 -0.0479369 -0.00958738 0.0255663 0.22 0 pose: 0.52078461 0.135283 0.0773822 0 0.00132581 -0.00191077 -0.0150707 0.999884 uwb: 0.0 839.925 1018.24 +imu_odom_: 1691062969.90302226 0.409408 -0.0742203 9.77792 -0.0649811 0.0340885 0.0617853 0.17 0 pose: 0.52867959 0.145221 0.076275 0 0.00236152 0.00120972 -0.0149679 0.999884 uwb: 0.49980624 839.974 1017.38 +imu_odom_: 1691062969.107273041 0.0047884 -0.560243 10.0556 -0.0458064 0.0426106 0.0340885 0.17 0 pose: 0.0 0.145221 0.076275 0 0.00236152 0.00120972 -0.0149679 0.999884 uwb: 0.0 839.974 1017.38 +imu_odom_: 1691062969.124275646 0.574608 0.035913 9.94551 -0.0138484 -0.0415453 0.0276969 0.17 0 pose: 0.0 0.145221 0.076275 0 0.00236152 0.00120972 -0.0149679 0.999884 uwb: 0.0 839.974 1017.38 +imu_odom_: 1691062969.141278543 0.579397 -0.502782 9.7875 -0.0617853 0.0149137 0.0585895 0.17 0 pose: 0.71042996 0.15516 0.0751691 0 0.00559071 0.000778642 -0.0149084 0.999873 uwb: 0.49975375 840.312 1016.5 +imu_odom_: 1691062969.157272039 0.428562 -0.366313 9.98143 -0.0436758 -0.0266316 0.0298274 0.17 0 pose: 0.0 0.15516 0.0751691 0 0.00559071 0.000778642 -0.0149084 0.999873 uwb: 0.0 840.312 1016.5 +imu_odom_: 1691062969.173269911 0.311246 0.0023942 9.67976 -0.0426106 -0.0383495 0.0447411 0.23 -0.02 pose: 0.0 0.15516 0.0751691 0 0.00559071 0.000778642 -0.0149084 0.999873 uwb: 0.0 840.312 1016.5 +imu_odom_: 1691062969.189215285 1.07978 -0.349553 10.094 -0.0671117 -0.0245011 0.072438 0.23 -0.02 pose: 0.41990000 0.165099 0.0740653 0 0.00317278 -0.000856229-0.0148693 0.999884 uwb: 0.49949710 840.486 1015.36 +imu_odom_: 1691062969.206325509 -0.0933739 -0.253785 9.44513 -0.0351537 0.0276969 0.0319579 0.23 -0.02 pose: 0.0 0.165099 0.0740653 0 0.00317278 -0.000856229-0.0148693 0.999884 uwb: 0.0 840.486 1015.36 +imu_odom_: 1691062969.222326588 0.232238 0.184354 10.3525 -0.0500674 -0.0276969 0.0447411 0.17 0 pose: 0.7007181 0.165099 0.0740653 0 0.00379895 -0.000587899-0.0148533 0.999882 uwb: 0.0 840.486 1015.36 +imu_odom_: 1691062969.239209909 0.378284 -0.397437 9.84735 -0.072438 -0.00852212 0.0628506 0.17 0 pose: 0.0 0.165099 0.0740653 0 0.00379895 -0.000587899-0.0148533 0.999882 uwb: 0.49904503 840.41 1014.8 +imu_odom_: 1691062969.256265886 0.37589 -0.260968 10.058 -0.0649811 -0.0117179 0.0298274 0.17 0 pose: 0.0 0.165099 0.0740653 0 0.00379895 -0.000587899-0.0148533 0.999882 uwb: 0.0 840.41 1014.8 +imu_odom_: 1691062969.270221916 0.430956 0.0023942 9.3733 -0.0596548 -0.0255663 0.0394148 0.17 0 pose: 0.50000165 0.175038 0.0729624 0 0.00454648 0.000308509 -0.0146155 0.999883 uwb: 0.0 840.41 1014.8 +imu_odom_: 1691062969.285325881 0.68953 -0.6608 9.91199 -0.0788296 0.00958738 0.0777643 0.16 0 pose: 0.0 0.175038 0.0729624 0 0.00454648 0.000308509 -0.0146155 0.999883 uwb: 0.50000165 840.454 1014.24 +imu_odom_: 1691062969.301265130 0.141258 -0.385466 9.76116 -0.0628506 -0.00958738 0.052198 0.16 0 pose: 0.0 0.175038 0.0729624 0 0.00454648 0.000308509 -0.0146155 0.999883 uwb: 0.0 840.454 1014.24 +imu_odom_: 1691062969.318265402 0.756568 0.0622492 10.2592 -0.0500674 -0.02024 0.036219 0.17 0 pose: 0.61992808 0.184977 0.0718644 0 0.00240256 6.44207e-05 -0.0143702 0.999894 uwb: 0.0 840.454 1014.24 +imu_odom_: 1691062969.334220109 0.723049 -0.387861 9.61511 -0.0820254 0.0628506 0.052198 0.17 0 pose: 0.0 0.184977 0.0718644 0 0.00240256 6.44207e-05 -0.0143702 0.999894 uwb: 0.50109243 840.216 1013.14 +imu_odom_: 1691062969.351343749 0 -0.361524 9.67018 -0.0660464 -0.00745685 0.0394148 0.17 0 pose: 0.33000185 0.194918 0.0707738 0 0.000987358 0.000211561 -0.0141101 0.9999 uwb: 0.0 840.216 1013.14 +imu_odom_: 1691062969.368217153 0.663194 0.011971 10.1754 -0.0426106 -0.0820254 0.0245011 0.23 0 pose: 0.42071371 0.194918 0.0707738 0 -0.0002260530.000208138 -0.014022 0.999902 uwb: 0.0 840.216 1013.14 +imu_odom_: 1691062969.384287937 1.17555 -0.399832 9.0022 -0.0575243 -0.0138484 0.0585895 0.23 0 pose: 0.7008638 0.194918 0.0707738 0 0.000269698 -0.000599751-0.0140748 0.999901 uwb: 0.50080368 840.699 1011.98 +imu_odom_: 1691062969.401259919 0.773327 -0.416591 10.0221 -0.0543285 0.00639159 0.103331 0.23 0 pose: 0.0 0.194918 0.0707738 0 0.000269698 -0.000599751-0.0140748 0.999901 uwb: 0.0 840.699 1011.98 +imu_odom_: 1691062969.417292788 1.64003 -0.287304 10.0509 -0.0426106 -0.0532632 0.0681769 0.13 0 pose: 0.42907532 0.204858 0.0696865 0 -0.000482829-0.00464643 -0.013449 0.999899 uwb: 0.0 840.699 1011.98 +imu_odom_: 1691062969.434356056 1.50835 -0.0814029 10.1442 -0.0490022 -0.0213053 0.0149137 0.17 -0.05 pose: 0.0 0.204858 0.0696865 0 -0.000482829-0.00464643 -0.013449 0.999899 uwb: 0.49883797 840.993 1012.38 +imu_odom_: 1691062969.452405685 1.67355 -0.253785 10.0844 -0.0553937 0.02024 -0.0117179 0.17 -0.05 pose: 0.0 0.204858 0.0696865 0 -0.000482829-0.00464643 -0.013449 0.999899 uwb: 0.0 840.993 1012.38 +imu_odom_: 1691062969.466245055 1.06781 -0.282516 9.94791 -0.072438 0.0117179 0.015979 0.1 0 pose: 0.23156126 0.204858 0.0696865 0 -0.000382706-0.00740981 -0.0133079 0.999884 uwb: 0.0 840.993 1012.38 +imu_odom_: 1691062969.482359586 1.03669 -0.229843 10.003 -0.0617853 0.0330232 0.0436758 0.1 0 pose: 0.0 0.204858 0.0696865 0 -0.000382706-0.00740981 -0.0133079 0.999884 uwb: 0.50133449 840.771 1011.97 +imu_odom_: 1691062969.498229715 0.794875 -0.301669 9.69652 -0.0479369 -0.00426106 0.076699 0.1 0 pose: 0.0 0.204858 0.0696865 0 -0.000382706-0.00740981 -0.0133079 0.999884 uwb: 0.0 840.771 1011.97 +imu_odom_: 1691062969.514379536 0.438139 -0.323217 9.82102 -0.0585895 0.0447411 0.0798948 0.08 0 pose: 0.73813670 0.214801 0.0686144 0 -0.0014074 -0.0140336 -0.0137205 0.999806 uwb: 0.0 840.771 1011.97 +imu_odom_: 1691062969.533369152 0.21069 -0.150835 10.2783 -0.0447411 0.0191748 0.00958738 0.08 0 pose: 0.0 0.214801 0.0686144 0 -0.0014074 -0.0140336 -0.0137205 0.999806 uwb: 0.50016789 840.634 1010.73 +imu_odom_: 1691062969.550214557 0.471658 -0.0837971 9.96467 -0.0607201 -0.0468716 -0.00319579 0.08 0 pose: 0.0 0.214801 0.0686144 0 -0.0014074 -0.0140336 -0.0137205 0.999806 uwb: 0.0 840.634 1010.73 +imu_odom_: 1691062969.566336963 0.679953 -0.172383 9.71328 -0.0639159 -0.00639159 0.0170442 0.06 0.02 pose: 0.7046553 0.214801 0.0686144 0 -0.00164648 -0.0131942 -0.0135749 0.999819 uwb: 0.0 840.634 1010.73 +imu_odom_: 1691062969.583350359 0.869095 -0.471658 10.1849 -0.0649811 -0.0223706 0.04048 0.09 0.02 pose: 0.0 0.214801 0.0686144 0 -0.00164648 -0.0131942 -0.0135749 0.999819 uwb: 0.49910337 840.797 1010.3 +imu_odom_: 1691062969.600351798 0.948104 -0.325611 9.85932 -0.0479369 -0.00213053 0.0383495 0.09 0.02 pose: 0.68024128 0.225827 0.0774784 0 -0.000135682-0.0113742 -0.0142242 0.999834 uwb: 0.0 840.797 1010.3 +imu_odom_: 1691062969.615328020 0.770933 -0.208296 9.91199 -0.0532632 0.0106526 0.0458064 0.06 0 pose: 0.0 0.225827 0.0774784 0 -0.000135682-0.0113742 -0.0142242 0.999834 uwb: 0.0 840.797 1010.3 +imu_odom_: 1691062969.631322099 0.502782 -0.1652 9.69891 -0.0543285 0.0138484 0.0426106 0.06 0 pose: 0.0 0.225827 0.0774784 0 -0.000135682-0.0113742 -0.0142242 0.999834 uwb: 0.49747013 840.618 1008.91 +imu_odom_: 1691062969.646323695 0.562637 -0.248997 10.1299 -0.0490022 0.0170442 0.0138484 0.06 0 pose: 0.33922673 0.225827 0.0774784 0 -0.00120221 -0.0143451 -0.0141982 0.999796 uwb: 0.0 840.618 1008.91 +imu_odom_: 1691062969.662264986 0.474052 -0.131681 9.94073 -0.0617853 -0.00426106 0.0447411 0.04 0 pose: 0.39100626 0.225827 0.0774784 0 -0.000745869-0.0117977 -0.0143467 0.999827 uwb: 0.0 840.618 1008.91 +imu_odom_: 1691062969.679315713 0.531513 -0.442927 9.78989 -0.0639159 0.0138484 0.0873517 0.04 0 pose: 0.7118590 0.225827 0.0774784 0 -0.000400472-0.0111881 -0.0143326 0.999835 uwb: 0.50201403 840.951 1007.5 +imu_odom_: 1691062969.696312485 0.562637 -0.371101 9.93115 -0.052198 -0.00319579 0.0862864 0.04 0 pose: 0.0 0.225827 0.0774784 0 -0.000400472-0.0111881 -0.0143326 0.999835 uwb: 0.0 840.951 1007.5 +imu_odom_: 1691062969.711191879 0.4956 -0.0622492 9.81862 -0.0500674 0.00106526 0.0958738 0.04 0.08 pose: 0.42870200 0.225827 0.0774784 0 -0.00328345 -0.00928862 -0.013478 0.999861 uwb: 0.0 840.951 1007.5 +imu_odom_: 1691062969.727186542 0.591368 -0.232238 9.94312 -0.0617853 -0.00426106 0.110787 0.03 0.08 pose: 0.0 0.225827 0.0774784 0 -0.00328345 -0.00928862 -0.013478 0.999861 uwb: 0.0 840.951 1007.5 +imu_odom_: 1691062969.744246019 0.677559 -0.320823 9.93354 -0.0468716 -0.00639159 0.0990696 0.03 0.08 pose: 0.0 0.225827 0.0774784 0 -0.00328345 -0.00928862 -0.013478 0.999861 uwb: 0.49921711 840.903 1007.51 +imu_odom_: 1691062969.761301121 0.612916 -0.301669 9.91918 -0.052198 0.00745685 0.0980043 0.03 0.05 pose: 0.21885116 0.235767 0.0763843 0 -0.00140153 -0.00919879 -0.0128261 0.999874 uwb: 0.0 840.903 1007.51 +imu_odom_: 1691062969.776178182 0.526724 -0.189142 9.89763 -0.0543285 0.00213053 0.113983 0.03 0.05 pose: 0.0 0.235767 0.0763843 0 -0.00140153 -0.00919879 -0.0128261 0.999874 uwb: 0.0 840.903 1007.51 +imu_odom_: 1691062969.792229134 0.497994 -0.265756 9.8689 -0.0596548 -0.00426106 0.122505 0.03 0.05 pose: 0.0 0.235767 0.0763843 0 -0.00140153 -0.00919879 -0.0128261 0.999874 uwb: 0.49986166 841.094 1007.5 +imu_odom_: 1691062969.808177716 0.629675 -0.292093 9.9527 -0.0575243 -0.015979 0.117179 0.02 0.08 pose: 0.74031533 0.235767 0.0763843 0 -0.00265646 -0.00801527 -0.0102613 0.999912 uwb: 0.0 841.094 1007.5 +imu_odom_: 1691062969.825318855 0.663194 -0.220267 9.83777 -0.0490022 -0.00532632 0.107592 0.02 0.08 pose: 0.7068135 0.235767 0.0763843 0 -0.00293209 -0.00871163 -0.00998656 0.999908 uwb: 0.0 841.094 1007.5 +imu_odom_: 1691062969.841246439 0.565032 -0.248997 9.94551 -0.0532632 0.00319579 0.117179 0.02 0.08 pose: 0.0 0.235767 0.0763843 0 -0.00293209 -0.00871163 -0.00998656 0.999908 uwb: 0.50160281 841.087 1006.8 +imu_odom_: 1691062969.857330346 0.529119 -0.320823 9.91678 -0.056459 0.00213053 0.126766 0.02 0.08 pose: 0.41949170 0.235767 0.0763843 0 -0.00197111 -0.00932207 -0.00845335 0.999919 uwb: 0.0 841.087 1006.8 +imu_odom_: 1691062969.874391865 0.586579 -0.28491 9.89524 -0.0532632 -0.00426106 0.12144 0.01 0.05 pose: 0.0 0.235767 0.0763843 0 -0.00197111 -0.00932207 -0.00845335 0.999919 uwb: 0.0 841.087 1006.8 +imu_odom_: 1691062969.891211314 0.536301 -0.158017 9.89524 -0.0543285 -0.00532632 0.122505 0.01 0.05 pose: 0.0 0.235767 0.0763843 0 -0.00197111 -0.00932207 -0.00845335 0.999919 uwb: 0.49824592 841.201 1006.1 +imu_odom_: 1691062969.909188030 0.653617 -0.21069 9.90481 -0.0607201 -0.00319579 0.123571 0 0.05 pose: 0.24099030 0.235767 0.0763842 0 -0.0035115 -0.0089771 -0.00741073 0.999926 uwb: 0.0 841.201 1006.1 +imu_odom_: 1691062969.924299285 0.584185 -0.351948 9.8689 -0.056459 0.00426106 0.109722 0 0.05 pose: 0.0 0.235767 0.0763842 0 -0.0035115 -0.0089771 -0.00741073 0.999926 uwb: 0.0 841.201 1006.1 +imu_odom_: 1691062969.941304224 0.416591 -0.225055 9.92636 -0.0532632 0.00852212 0.0990696 0 0.05 pose: 0.33869301 0.235767 0.0763842 0 -0.00188414 -0.00979866 -0.00602503 0.999932 uwb: 0.49996957 841.181 1005.55 +imu_odom_: 1691062969.957189226 0.392649 -0.205901 9.90721 -0.056459 -0.00639159 0.0948085 0 0.02 pose: 0.42089454 0.235767 0.0763842 0 -0.00243222 -0.00844305 -0.00456136 0.999951 uwb: 0.0 841.181 1005.55 +imu_odom_: 1691062969.974187748 0.493206 -0.215478 9.84496 -0.0543285 -0.00852212 0.0692422 0 0.02 pose: 0.6882645 0.235767 0.0763842 0 -0.00222726 -0.00779432 -0.00437153 0.999958 uwb: 0.0 841.181 1005.55 +imu_odom_: 1691062969.989165137 0.526724 -0.169988 9.87129 -0.052198 -0.00106526 0.0479369 0 0.02 pose: 0.0 0.235767 0.0763842 0 -0.00222726 -0.00779432 -0.00437153 0.999958 uwb: 0.49986457 841.44 1004.71 +imu_odom_: 1691062970.4283684 0.476446 -0.248997 9.9096 -0.0585895 -0.00319579 0.0383495 0 0 pose: 0.40978268 0.235767 0.0763842 0 0.000612011 -0.00595834 -0.00382181 0.999975 uwb: 0.0 841.44 1004.71 +imu_odom_: 1691062970.19222574 0.438139 -0.270545 9.84735 -0.0575243 0.00213053 0.0319579 0 0 pose: 0.0 0.235767 0.0763842 0 0.000612011 -0.00595834 -0.00382181 0.999975 uwb: 0.0 841.44 1004.71 +imu_odom_: 1691062970.33288848 0.318429 -0.296881 9.87848 -0.0543285 0 0.036219 0 0 pose: 0.0 0.235767 0.0763842 0 0.000612011 -0.00595834 -0.00382181 0.999975 uwb: 0.49940377 841.156 1003.88 +imu_odom_: 1691062970.48149577 0.347159 -0.282516 9.90721 -0.0553937 -0.00958738 0.0447411 0 0 pose: 0.21012208 0.235767 0.0763842 0 -0.000879092-0.00442998 -0.00384584 0.999982 uwb: 0.0 841.156 1003.88 +imu_odom_: 1691062970.63306330 0.426168 -0.234632 9.88805 -0.0532632 -0.00852212 0.0415453 0 0 pose: 0.0 0.235767 0.0763842 0 -0.000879092-0.00442998 -0.00384584 0.999982 uwb: 0.0 841.156 1003.88 +imu_odom_: 1691062970.77330315 0.462081 -0.196325 9.86411 -0.0532632 -0.00426106 0.0372843 0 0 pose: 0.0 0.235767 0.0763842 0 -0.000879092-0.00442998 -0.00384584 0.999982 uwb: 0.0 841.156 1003.88 +imu_odom_: 1691062970.92258414 0.416591 -0.232238 9.87608 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.29105784 0.235767 0.0763842 0 -0.00205839 -0.00175884 -0.00388043 0.999989 uwb: 0.49971292 841.197 1003.6 +imu_odom_: 1691062970.107307257 0.361524 -0.270545 9.86411 -0.0553937 -0.00106526 0.036219 0 0 pose: 0.43930639 0.235767 0.0763842 0 -0.000152698-0.00176474 -0.00386031 0.999991 uwb: 0.0 841.197 1003.6 +imu_odom_: 1691062970.122242065 0.351948 -0.296881 9.87848 -0.056459 -0.00745685 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.000152698-0.00176474 -0.00386031 0.999991 uwb: 0.0 841.197 1003.6 +imu_odom_: 1691062970.137231702 0.40462 -0.28491 9.88326 -0.0553937 -0.00745685 0.0415453 0 0 pose: 0.0 0.235767 0.0763842 0 -0.000152698-0.00176474 -0.00386031 0.999991 uwb: 0.50106035 840.836 1003.47 +imu_odom_: 1691062970.151193858 0.457293 -0.25618 9.90002 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.44977663 0.235767 0.0763842 0 -0.00300464 0.000729253 -0.00387145 0.999988 uwb: 0.0 840.836 1003.47 +imu_odom_: 1691062970.166205077 0.423774 -0.234632 9.92875 -0.0543285 -0.00106526 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00300464 0.000729253 -0.00387145 0.999988 uwb: 0.0 840.836 1003.47 +imu_odom_: 1691062970.180171607 0.366313 -0.246603 9.85453 -0.056459 -0.00213053 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00300464 0.000729253 -0.00387145 0.999988 uwb: 0.50259442 840.538 1002.92 +imu_odom_: 1691062970.195431021 0.354342 -0.277727 9.90721 -0.0532632 -0.00532632 0.0394148 0 0 pose: 0.44147044 0.235767 0.0763842 0 -0.00145171 -0.000449704-0.00387624 0.999991 uwb: 0.0 840.538 1002.92 +imu_odom_: 1691062970.210377786 0.411803 -0.227449 9.86172 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00145171 -0.000449704-0.00387624 0.999991 uwb: 0.0 840.538 1002.92 +imu_odom_: 1691062970.224195866 0.402226 -0.244209 9.89045 -0.056459 -0.00958738 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00145171 -0.000449704-0.00387624 0.999991 uwb: 0.0 840.538 1002.92 +imu_odom_: 1691062970.239215544 0.447716 -0.258574 9.87129 -0.0553937 -0.00213053 0.0383495 0 0 pose: 0.44040591 0.235767 0.0763842 0 -0.00155756 -0.000174202-0.00388029 0.999991 uwb: 0.49866590 840.87 1002.78 +imu_odom_: 1691062970.254302885 0.409408 -0.270545 9.89284 -0.0543285 -0.00106526 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00155756 -0.000174202-0.00388029 0.999991 uwb: 0.0 840.87 1002.78 +imu_odom_: 1691062970.269181112 0.37589 -0.251391 9.87608 -0.0532632 -0.00319579 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00155756 -0.000174202-0.00388029 0.999991 uwb: 0.0 840.87 1002.78 +imu_odom_: 1691062970.283195764 0.366313 -0.251391 9.92397 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.43929765 0.235767 0.0763842 0 -0.00248402 -0.000285365-0.00387389 0.999989 uwb: 0.49903920 840.718 1002.22 +imu_odom_: 1691062970.298295062 0.445322 -0.246603 9.88326 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00248402 -0.000285365-0.00387389 0.999989 uwb: 0.0 840.718 1002.22 +imu_odom_: 1691062970.313303949 0.445322 -0.25618 9.89524 -0.056459 -0.00639159 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00248402 -0.000285365-0.00387389 0.999989 uwb: 0.0 840.718 1002.22 +imu_odom_: 1691062970.327313351 0.416591 -0.28491 9.89284 -0.056459 -0.00319579 0.0372843 0 0 pose: 0.37986231 0.235767 0.0763842 0 -0.00177615 0.000388004 -0.00386233 0.999991 uwb: 0.0 840.718 1002.22 +imu_odom_: 1691062970.342302114 0.378284 -0.265756 9.89045 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00177615 0.000388004 -0.00386233 0.999991 uwb: 0.49969543 840.666 1001.95 +imu_odom_: 1691062970.357225256 0.380678 -0.237026 9.85453 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.6010321 0.235767 0.0763842 0 -0.00186342 -0.000213658-0.00386071 0.999991 uwb: 0.0 840.666 1001.95 +imu_odom_: 1691062970.371204910 0.409408 -0.251391 9.87848 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00186342 -0.000213658-0.00386071 0.999991 uwb: 0.0 840.666 1001.95 +imu_odom_: 1691062970.386136801 0.426168 -0.234632 9.85214 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00186342 -0.000213658-0.00386071 0.999991 uwb: 0.50043038 840.593 1001.81 +imu_odom_: 1691062970.401132272 0.411803 -0.263362 9.91918 -0.0553937 -0.00213053 0.0394148 0 0 pose: 0.43999761 0.235767 0.0763842 0 -0.00224609 0.000841217 -0.00386868 0.99999 uwb: 0.0 840.593 1001.81 +imu_odom_: 1691062970.415187463 0.397437 -0.237026 9.8689 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00224609 0.000841217 -0.00386868 0.99999 uwb: 0.0 840.593 1001.81 +imu_odom_: 1691062970.430126937 0.402226 -0.270545 9.88805 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00224609 0.000841217 -0.00386868 0.99999 uwb: 0.49971875 840.321 1000 +imu_odom_: 1691062970.445320146 0.402226 -0.251391 9.91199 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.81821793 0.235767 0.0763842 0 -0.00260657 9.81132e-05 -0.00386035 0.999989 uwb: 0.0 840.321 1000 +imu_odom_: 1691062970.459280843 0.40462 -0.25618 9.89045 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.6067484 0.235767 0.0763842 0 -0.00200056 6.39925e-05 -0.0038609 0.999991 uwb: 0.0 840.321 1000 +imu_odom_: 1691062970.474278064 0.411803 -0.244209 9.92397 -0.0553937 -0.00426106 0.0415453 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00200056 6.39925e-05 -0.0038609 0.999991 uwb: 0.0 840.321 1000 +imu_odom_: 1691062970.489160666 0.407014 -0.234632 9.93115 -0.0532632 -0.00426106 0.0394148 0 0 pose: 0.38083643 0.235767 0.0763842 0 -0.00105648 -0.000593571-0.00384221 0.999992 uwb: 0.49962834 840.608 999.443 +imu_odom_: 1691062970.504206592 0.414197 -0.227449 9.91199 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00105648 -0.000593571-0.00384221 0.999992 uwb: 0.0 840.608 999.443 +imu_odom_: 1691062970.519171731 0.40462 -0.227449 9.91439 -0.056459 -0.00639159 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00105648 -0.000593571-0.00384221 0.999992 uwb: 0.0 840.608 999.443 +imu_odom_: 1691062970.533189592 0.402226 -0.248997 9.90481 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.44893667 0.235767 0.0763842 0 -0.0006855010.000887786 -0.00384457 0.999992 uwb: 0.49875048 840.822 999.722 +imu_odom_: 1691062970.548297639 0.402226 -0.272939 9.8665 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0006855010.000887786 -0.00384457 0.999992 uwb: 0.0 840.822 999.722 +imu_odom_: 1691062970.563288152 0.402226 -0.246603 9.93115 -0.0543285 -0.00319579 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0006855010.000887786 -0.00384457 0.999992 uwb: 0.0 840.822 999.722 +imu_odom_: 1691062970.577194602 0.397437 -0.253785 9.92397 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.44116421 0.235767 0.0763842 0 -0.00179472 6.08814e-05 -0.00384169 0.999991 uwb: 0.0 840.822 999.722 +imu_odom_: 1691062970.592190364 0.373495 -0.244209 9.81862 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00179472 6.08814e-05 -0.00384169 0.999991 uwb: 0.49983250 840.584 1000.55 +imu_odom_: 1691062970.607128380 0.392649 -0.220267 9.89045 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00179472 6.08814e-05 -0.00384169 0.999991 uwb: 0.0 840.584 1000.55 +imu_odom_: 1691062970.622192097 0.411803 -0.253785 9.90721 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.43840228 0.235767 0.0763842 0 -0.0002683010.000508315 -0.00384027 0.999992 uwb: 0.0 840.584 1000.55 +imu_odom_: 1691062970.637200400 0.395043 -0.225055 9.92875 -0.056459 -0.00319579 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0002683010.000508315 -0.00384027 0.999992 uwb: 0.50014456 840.655 1000.42 +imu_odom_: 1691062970.652250118 0.397437 -0.272939 9.86411 -0.0553937 -0.00639159 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0002683010.000508315 -0.00384027 0.999992 uwb: 0.0 840.655 1000.42 +imu_odom_: 1691062970.666195649 0.402226 -0.244209 9.88326 -0.0532632 -0.00532632 0.04048 0 0 pose: 0.45121738 0.235767 0.0763842 0 -0.00180672 0.000399955 -0.0038448 0.999991 uwb: 0.0 840.655 1000.42 +imu_odom_: 1691062970.681182078 0.397437 -0.248997 9.92157 -0.0553937 -0.00745685 0.0415453 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00180672 0.000399955 -0.0038448 0.999991 uwb: 0.50110409 840.774 1000.42 +imu_odom_: 1691062970.696242004 0.430956 -0.232238 9.87848 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00180672 0.000399955 -0.0038448 0.999991 uwb: 0.0 840.774 1000.42 +imu_odom_: 1691062970.710173827 0.397437 -0.237026 9.89284 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.43991886 0.235767 0.0763842 0 -0.0011797 -0.000910178-0.00383516 0.999992 uwb: 0.0 840.774 1000.42 +imu_odom_: 1691062970.725269042 0.40462 -0.260968 9.89524 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.5944408 0.235767 0.0763842 0 -0.00116298 -0.000315846-0.0038318 0.999992 uwb: 0.0 840.774 1000.42 +imu_odom_: 1691062970.740283179 0.390255 -0.227449 9.91918 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00116298 -0.000315846-0.0038318 0.999992 uwb: 0.49853174 841.186 998.613 +imu_odom_: 1691062970.754189629 0.411803 -0.260968 9.88326 -0.056459 -0.00532632 0.04048 0 0 pose: 0.13929782 0.235767 0.0763842 0 -0.00168355 0.00023684 -0.00383148 0.999991 uwb: 0.0 841.186 998.613 +imu_odom_: 1691062970.769241388 0.390255 -0.258574 9.84735 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00168355 0.00023684 -0.00383148 0.999991 uwb: 0.0 841.186 998.613 +imu_odom_: 1691062970.784119032 0.392649 -0.234632 9.88566 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00168355 0.00023684 -0.00383148 0.999991 uwb: 0.50182738 841.335 998.06 +imu_odom_: 1691062970.798115602 0.37589 -0.265756 9.89045 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.30164765 0.235767 0.0763842 0 -0.00163651 9.66337e-05 -0.00382781 0.999991 uwb: 0.0 841.335 998.06 +imu_odom_: 1691062970.813176402 0.397437 -0.251391 9.8689 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00163651 9.66337e-05 -0.00382781 0.999991 uwb: 0.0 841.335 998.06 +imu_odom_: 1691062970.828232536 0.409408 -0.260968 9.86411 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00163651 9.66337e-05 -0.00382781 0.999991 uwb: 0.0 841.335 998.06 +imu_odom_: 1691062970.842174276 0.407014 -0.225055 9.90242 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.57907960 0.235767 0.0763842 0 -0.0019587 0.000562823 -0.00381609 0.999991 uwb: 0.50148615 841.295 997.505 +imu_odom_: 1691062970.857108500 0.411803 -0.268151 9.88805 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0019587 0.000562823 -0.00381609 0.999991 uwb: 0.0 841.295 997.505 +imu_odom_: 1691062970.872100179 0.40462 -0.237026 9.87848 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0019587 0.000562823 -0.00381609 0.999991 uwb: 0.0 841.295 997.505 +imu_odom_: 1691062970.886146329 0.402226 -0.251391 9.91199 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.29942528 0.235767 0.0763842 0 -0.00261976 -0.000301828-0.00381189 0.999989 uwb: 0.49933961 841.534 997.508 +imu_odom_: 1691062970.901261668 0.399832 -0.248997 9.91439 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.43975553 0.235767 0.0763842 0 -0.00195027 0.000354449 -0.00381016 0.999991 uwb: 0.0 841.534 997.508 +imu_odom_: 1691062970.916263264 0.397437 -0.272939 9.90721 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00195027 0.000354449 -0.00381016 0.999991 uwb: 0.0 841.534 997.508 +imu_odom_: 1691062970.931142366 0.378284 -0.23942 9.84496 -0.0543285 -0.00532632 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00195027 0.000354449 -0.00381016 0.999991 uwb: 0.49927545 841.247 997.504 +imu_odom_: 1691062970.946257413 0.423774 -0.227449 9.87608 -0.0543285 -0.00426106 0.0415453 0 0 pose: 0.44161335 0.235767 0.0763842 0 -0.00244546 0.000589116 -0.00380752 0.99999 uwb: 0.0 841.247 997.504 +imu_odom_: 1691062970.960253983 0.392649 -0.234632 9.88805 -0.056459 -0.00532632 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00244546 0.000589116 -0.00380752 0.99999 uwb: 0.0 841.247 997.504 +imu_odom_: 1691062970.975306325 0.390255 -0.237026 9.86411 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00244546 0.000589116 -0.00380752 0.99999 uwb: 0.0 841.247 997.504 +imu_odom_: 1691062970.990126515 0.416591 -0.251391 9.90721 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.15072174 0.235767 0.0763842 0 -0.0014009 0.000474328 -0.003806 0.999992 uwb: 0.49923461 841.066 996.946 +imu_odom_: 1691062971.5266352 0.392649 -0.237026 9.9096 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0014009 0.000474328 -0.003806 0.999992 uwb: 0.0 841.066 996.946 +imu_odom_: 1691062971.20330069 0.402226 -0.253785 9.88566 -0.0543285 -0.00319579 0.0383495 0 0 pose: 0.28917670 0.235767 0.0763842 0 -0.00119599 0.000484814 -0.00378854 0.999992 uwb: 0.0 841.066 996.946 +imu_odom_: 1691062971.35386203 0.373495 -0.241814 9.87129 -0.0532632 -0.00426106 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00119599 0.000484814 -0.00378854 0.999992 uwb: 0.50149782 841.104 997.503 +imu_odom_: 1691062971.50365050 0.40462 -0.241814 9.88805 -0.0543285 -0.00639159 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00119599 0.000484814 -0.00378854 0.999992 uwb: 0.0 841.104 997.503 +imu_odom_: 1691062971.64382035 0.392649 -0.244209 9.87129 -0.0553937 -0.00319579 0.0383495 0 0 pose: 0.45036576 0.235767 0.0763842 0 -0.0022302 0.000138776 -0.00378217 0.99999 uwb: 0.0 841.104 997.503 +imu_odom_: 1691062971.79386256 0.409408 -0.25618 9.92157 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0022302 0.000138776 -0.00378217 0.99999 uwb: 0.50007165 841.095 996.669 +imu_odom_: 1691062971.94257775 0.380678 -0.234632 9.93354 -0.056459 -0.00532632 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0022302 0.000138776 -0.00378217 0.99999 uwb: 0.0 841.095 996.669 +imu_odom_: 1691062971.108139435 0.418985 -0.234632 9.90721 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.45094032 0.235767 0.0763842 0 -0.00148258 0.000396663 -0.00379148 0.999992 uwb: 0.0 841.095 996.669 +imu_odom_: 1691062971.123263232 0.407014 -0.260968 9.85453 -0.056459 -0.00426106 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00148258 0.000396663 -0.00379148 0.999992 uwb: 0.0 841.095 996.669 +imu_odom_: 1691062971.138262203 0.40462 -0.248997 9.87608 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00148258 0.000396663 -0.00379148 0.999992 uwb: 0.49839759 841.084 996.113 +imu_odom_: 1691062971.152222608 0.383072 -0.268151 9.91199 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.43860935 0.235767 0.0763842 0 -0.0011369 0.000318162 -0.00378368 0.999992 uwb: 0.0 841.084 996.113 +imu_odom_: 1691062971.167164998 0.40462 -0.237026 9.89763 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0011369 0.000318162 -0.00378368 0.999992 uwb: 0.0 841.084 996.113 +imu_odom_: 1691062971.182121388 0.392649 -0.246603 9.9096 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0011369 0.000318162 -0.00378368 0.999992 uwb: 0.50151532 841.405 995.705 +imu_odom_: 1691062971.196108625 0.42138 -0.232238 9.87369 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.43927140 0.235767 0.0763842 0 -0.00155525 0.000313454 -0.00379156 0.999992 uwb: 0.0 841.405 995.705 +imu_odom_: 1691062971.211093597 0.392649 -0.220267 9.92636 -0.0532632 -0.00319579 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00155525 0.000313454 -0.00379156 0.999992 uwb: 0.0 841.405 995.705 +imu_odom_: 1691062971.226154689 0.390255 -0.232238 9.90481 -0.0532632 -0.00426106 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00155525 0.000313454 -0.00379156 0.999992 uwb: 0.0 841.405 995.705 +imu_odom_: 1691062971.240125594 0.42138 -0.248997 9.85453 -0.0575243 -0.00426106 0.0394148 0 0 pose: 0.43942015 0.235767 0.0763842 0 -0.0017003 0.000453104 -0.00378304 0.999991 uwb: 0.49922004 841.298 995.287 +imu_odom_: 1691062971.255145271 0.37589 -0.248997 9.86172 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0017003 0.000453104 -0.00378304 0.999991 uwb: 0.0 841.298 995.287 +imu_odom_: 1691062971.270237570 0.392649 -0.246603 9.88326 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0017003 0.000453104 -0.00378304 0.999991 uwb: 0.0 841.298 995.287 +imu_odom_: 1691062971.284114855 0.373495 -0.270545 9.85214 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.44108254 0.235767 0.0763842 0 -0.0016605 4.14845e-05 -0.00378082 0.999991 uwb: 0.49908004 841.484 995.431 +imu_odom_: 1691062971.299092827 0.418985 -0.234632 9.90002 -0.0532632 -0.00319579 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0016605 4.14845e-05 -0.00378082 0.999991 uwb: 0.0 841.484 995.431 +imu_odom_: 1691062971.314199125 0.380678 -0.265756 9.90242 -0.0532632 -0.00532632 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0016605 4.14845e-05 -0.00378082 0.999991 uwb: 0.0 841.484 995.431 +imu_odom_: 1691062971.328102950 0.402226 -0.227449 9.88805 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.43867644 0.235767 0.0763842 0 -0.00136397 -0.000102658-0.003781 0.999992 uwb: 0.0 841.484 995.431 +imu_odom_: 1691062971.343091421 0.383072 -0.275333 9.87608 -0.0543285 -0.00639159 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00136397 -0.000102658-0.003781 0.999992 uwb: 0.50035164 841.616 995.019 +imu_odom_: 1691062971.358112849 0.397437 -0.246603 9.83777 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00136397 -0.000102658-0.003781 0.999992 uwb: 0.0 841.616 995.019 +imu_odom_: 1691062971.372148208 0.368707 -0.248997 9.92157 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.44051674 0.235767 0.0763842 0 -0.00142148 0.000258591 -0.00376358 0.999992 uwb: 0.0 841.616 995.019 +imu_odom_: 1691062971.387110723 0.40462 -0.248997 9.90481 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00142148 0.000258591 -0.00376358 0.999992 uwb: 0.49888755 841.433 995.568 +imu_odom_: 1691062971.402100361 0.399832 -0.270545 9.90242 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00142148 0.000258591 -0.00376358 0.999992 uwb: 0.0 841.433 995.568 +imu_odom_: 1691062971.416092556 0.416591 -0.268151 9.87369 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.44010552 0.235767 0.0763842 0 -0.00108551 0.000241679 -0.00376757 0.999992 uwb: 0.0 841.433 995.568 +imu_odom_: 1691062971.431227727 0.414197 -0.23942 9.88566 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00108551 0.000241679 -0.00376757 0.999992 uwb: 0.49969835 841.787 995.716 +imu_odom_: 1691062971.446101288 0.387861 -0.244209 9.90242 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00108551 0.000241679 -0.00376757 0.999992 uwb: 0.0 841.787 995.716 +imu_odom_: 1691062971.460236392 0.385466 -0.23942 9.90002 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.81944287 0.235767 0.0763842 0 -0.00154614 0.000893364 -0.00377643 0.999991 uwb: 0.0 841.787 995.716 +imu_odom_: 1691062971.475120161 0.402226 -0.241814 9.89045 -0.056459 -0.00319579 0.04048 0 0 pose: 0.6136314 0.235767 0.0763842 0 -0.0009325720.000917388 -0.00377633 0.999992 uwb: 0.0 841.787 995.716 +imu_odom_: 1691062971.490259707 0.402226 -0.220267 9.89284 -0.0543285 -0.00639159 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0009325720.000917388 -0.00377633 0.999992 uwb: 0.50036913 841.914 995.443 +imu_odom_: 1691062971.504351646 0.380678 -0.23942 9.90242 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.38022105 0.235767 0.0763842 0 0.000170256 1.15283e-05 -0.00378002 0.999993 uwb: 0.0 841.914 995.443 +imu_odom_: 1691062971.519245331 0.399832 -0.268151 9.90242 -0.0575243 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 0.000170256 1.15283e-05 -0.00378002 0.999993 uwb: 0.0 841.914 995.443 +imu_odom_: 1691062971.534157682 0.399832 -0.253785 9.91678 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 0.000170256 1.15283e-05 -0.00378002 0.999993 uwb: 0.50026123 841.865 996.408 +imu_odom_: 1691062971.548287536 0.414197 -0.232238 9.84256 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.43897975 0.235767 0.0763842 0 -0.000978842-0.000309932-0.00379407 0.999992 uwb: 0.0 841.865 996.408 +imu_odom_: 1691062971.563283006 0.363919 -0.251391 9.88087 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.000978842-0.000309932-0.00379407 0.999992 uwb: 0.0 841.865 996.408 +imu_odom_: 1691062971.578113695 0.395043 -0.272939 9.87848 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.000978842-0.000309932-0.00379407 0.999992 uwb: 0.0 841.865 996.408 +imu_odom_: 1691062971.592351460 0.399832 -0.265756 9.87608 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.20078636 0.235767 0.0763842 0 -0.000788628-0.00112047 -0.00379334 0.999992 uwb: 0.49898963 842.132 995.314 +imu_odom_: 1691062971.607212480 0.383072 -0.25618 9.90242 -0.0575243 -0.00532632 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.000788628-0.00112047 -0.00379334 0.999992 uwb: 0.0 842.132 995.314 +imu_odom_: 1691062971.622078166 0.414197 -0.23942 9.90002 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.000788628-0.00112047 -0.00379334 0.999992 uwb: 0.0 842.132 995.314 +imu_odom_: 1691062971.637072471 0.409408 -0.237026 9.87848 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.30032356 0.235767 0.0763842 0 -0.0030422 -3.91901e-07-0.00379307 0.999988 uwb: 0.50004249 842.136 995.176 +imu_odom_: 1691062971.652218141 0.409408 -0.265756 9.89524 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.43921891 0.235767 0.0763842 0 -0.000905938-0.000287371-0.003804 0.999992 uwb: 0.0 842.136 995.176 +imu_odom_: 1691062971.666233377 0.411803 -0.227449 9.88326 -0.0543285 -0.00319579 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.000905938-0.000287371-0.003804 0.999992 uwb: 0.0 842.136 995.176 +imu_odom_: 1691062971.681211640 0.392649 -0.23942 9.89763 -0.056459 -0.00639159 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.000905938-0.000287371-0.003804 0.999992 uwb: 0.49997833 841.965 995.309 +imu_odom_: 1691062971.696200695 0.442927 -0.23942 9.88326 -0.056459 -0.00532632 0.04048 0 0 pose: 0.44054008 0.235767 0.0763842 0 -0.000590301-0.000126608-0.00380897 0.999993 uwb: 0.0 841.965 995.309 +imu_odom_: 1691062971.710215055 0.395043 -0.244209 9.90721 -0.0575243 -0.00319579 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.000590301-0.000126608-0.00380897 0.999993 uwb: 0.0 841.965 995.309 +imu_odom_: 1691062971.725131781 0.392649 -0.246603 9.88566 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.000590301-0.000126608-0.00380897 0.999993 uwb: 0.0 841.965 995.309 +imu_odom_: 1691062971.740127835 0.416591 -0.246603 9.90721 -0.056459 -0.00319579 0.0394148 0 0 pose: 0.43897975 0.235767 0.0763842 0 -0.00185736 0.000857736 -0.00379122 0.999991 uwb: 0.50148032 841.745 996.408 +imu_odom_: 1691062971.754128488 0.409408 -0.244209 9.88566 -0.0543285 -0.00639159 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00185736 0.000857736 -0.00379122 0.999991 uwb: 0.0 841.745 996.408 +imu_odom_: 1691062971.769062129 0.399832 -0.23942 9.89763 -0.056459 -0.00532632 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00185736 0.000857736 -0.00379122 0.999991 uwb: 0.0 841.745 996.408 +imu_odom_: 1691062971.784066349 0.390255 -0.260968 9.87369 -0.056459 -0.00532632 0.04048 0 0 pose: 0.43924515 0.235767 0.0763842 0 -0.00115593 -0.000344957-0.00379461 0.999992 uwb: 0.49996374 841.701 996.268 +imu_odom_: 1691062971.798120666 0.426168 -0.268151 9.87608 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00115593 -0.000344957-0.00379461 0.999992 uwb: 0.0 841.701 996.268 +imu_odom_: 1691062971.813123428 0.418985 -0.265756 9.89763 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00115593 -0.000344957-0.00379461 0.999992 uwb: 0.0 841.701 996.268 +imu_odom_: 1691062971.828105483 0.416591 -0.251391 9.89524 -0.0543285 -0.00639159 0.04048 0 0 pose: 0.43997136 0.235767 0.0763842 0 -0.0022964 -0.00103997 -0.00378694 0.99999 uwb: 0.0 841.701 996.268 +imu_odom_: 1691062971.842270918 0.395043 -0.23942 9.85932 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0022964 -0.00103997 -0.00378694 0.99999 uwb: 0.50001624 842.107 996.278 +imu_odom_: 1691062971.857222058 0.399832 -0.244209 9.91439 -0.056459 -0.00532632 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0022964 -0.00103997 -0.00378694 0.99999 uwb: 0.0 842.107 996.278 +imu_odom_: 1691062971.872186614 0.414197 -0.246603 9.92397 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.38206719 0.235767 0.0763842 0 -0.0009264850.000679604 -0.00376713 0.999992 uwb: 0.0 842.107 996.278 +imu_odom_: 1691062971.886131270 0.395043 -0.237026 9.88326 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0009264850.000679604 -0.00376713 0.999992 uwb: 0.49870382 841.81 995.718 +imu_odom_: 1691062971.901060828 0.385466 -0.237026 9.87848 -0.0543285 -0.00426106 0.0426106 0 0 pose: 0.6005655 0.235767 0.0763842 0 -0.00138364 0.000283129 -0.0037715 0.999992 uwb: 0.0 841.81 995.718 +imu_odom_: 1691062971.916214374 0.428562 -0.23942 9.90002 -0.0532632 -0.00319579 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00138364 0.000283129 -0.0037715 0.999992 uwb: 0.0 841.81 995.718 +imu_odom_: 1691062971.930082618 0.414197 -0.260968 9.92636 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00138364 0.000283129 -0.0037715 0.999992 uwb: 0.50171947 842.014 996.137 +imu_odom_: 1691062971.945172291 0.371101 -0.23942 9.90721 -0.0543285 -0.00639159 0.0394148 0 0 pose: 0.43797647 0.235767 0.0763842 0 -0.00113979 0.000867564 -0.00375587 0.999992 uwb: 0.0 842.014 996.137 +imu_odom_: 1691062971.960105932 0.409408 -0.23942 9.88566 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00113979 0.000867564 -0.00375587 0.999992 uwb: 0.0 842.014 996.137 +imu_odom_: 1691062971.974113293 0.383072 -0.263362 9.92636 -0.0543285 -0.00319579 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00113979 0.000867564 -0.00375587 0.999992 uwb: 0.0 842.014 996.137 +imu_odom_: 1691062971.989175552 0.390255 -0.25618 9.8689 -0.0575243 -0.00426106 0.0394148 0 0 pose: 0.44145295 0.235767 0.0763842 0 -0.00206483 -5.37452e-06-0.0037388 0.999991 uwb: 0.49699184 842.087 997.242 +imu_odom_: 1691062972.4053196 0.387861 -0.234632 9.91439 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00206483 -5.37452e-06-0.0037388 0.999991 uwb: 0.0 842.087 997.242 +imu_odom_: 1691062972.19104664 0.399832 -0.253785 9.87369 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00206483 -5.37452e-06-0.0037388 0.999991 uwb: 0.0 842.087 997.242 +imu_odom_: 1691062972.33119900 0.426168 -0.244209 9.87608 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.43851311 0.235767 0.0763842 0 -0.00232164 0.00101557 -0.00373251 0.99999 uwb: 0.50091452 842.254 997.245 +imu_odom_: 1691062972.48158826 0.407014 -0.251391 9.87608 -0.0543285 -0.00426106 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00232164 0.00101557 -0.00373251 0.99999 uwb: 0.0 842.254 997.245 +imu_odom_: 1691062972.63107050 0.409408 -0.253785 9.85932 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00232164 0.00101557 -0.00373251 0.99999 uwb: 0.0 842.254 997.245 +imu_odom_: 1691062972.77106828 0.392649 -0.246603 9.91199 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.45049409 0.235767 0.0763842 0 -0.00188747 -0.000713136-0.00372725 0.999991 uwb: 0.0 842.254 997.245 +imu_odom_: 1691062972.92097633 0.392649 -0.244209 9.85932 -0.0553937 -0.00426106 0.0415453 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00188747 -0.000713136-0.00372725 0.999991 uwb: 0.49922587 841.875 997.1 +imu_odom_: 1691062972.107157267 0.397437 -0.248997 9.90721 -0.056459 -0.00639159 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00188747 -0.000713136-0.00372725 0.999991 uwb: 0.0 841.875 997.1 +imu_odom_: 1691062972.122040453 0.414197 -0.251391 9.87369 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.43990428 0.235767 0.0763842 0 -0.001972 -0.000869434-0.00372741 0.999991 uwb: 0.0 841.875 997.1 +imu_odom_: 1691062972.136035564 0.395043 -0.263362 9.88087 -0.0532632 -0.00532632 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.001972 -0.000869434-0.00372741 0.999991 uwb: 0.50099036 842.087 997.242 +imu_odom_: 1691062972.151036285 0.399832 -0.253785 9.87608 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.001972 -0.000869434-0.00372741 0.999991 uwb: 0.0 842.087 997.242 +imu_odom_: 1691062972.166033214 0.416591 -0.234632 9.89524 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.43933849 0.235767 0.0763842 0 -0.00188078 -0.000624298-0.00370693 0.999991 uwb: 0.0 842.087 997.242 +imu_odom_: 1691062972.180030368 0.411803 -0.258574 9.94791 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00188078 -0.000624298-0.00370693 0.999991 uwb: 0.50020290 841.961 997.654 +imu_odom_: 1691062972.195127333 0.414197 -0.244209 9.87848 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00188078 -0.000624298-0.00370693 0.999991 uwb: 0.0 841.961 997.654 +imu_odom_: 1691062972.210097430 0.407014 -0.268151 9.8665 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.44055466 0.235767 0.0763842 0 -0.00129981 0.000463222 -0.00371467 0.999992 uwb: 0.0 841.961 997.654 +imu_odom_: 1691062972.224156997 0.402226 -0.241814 9.86411 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00129981 0.000463222 -0.00371467 0.999992 uwb: 0.0 841.961 997.654 +imu_odom_: 1691062972.239224213 0.385466 -0.232238 9.87129 -0.0543285 -0.00319579 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00129981 0.000463222 -0.00371467 0.999992 uwb: 0.50152991 842.323 997.384 +imu_odom_: 1691062972.254164271 0.40462 -0.277727 9.85932 -0.0532632 -0.00319579 0.0394148 0 0 pose: 0.43946973 0.235767 0.0763842 0 -0.00156196 -0.000493286-0.00370821 0.999992 uwb: 0.0 842.323 997.384 +imu_odom_: 1691062972.268165216 0.418985 -0.232238 9.8665 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00156196 -0.000493286-0.00370821 0.999992 uwb: 0.0 842.323 997.384 +imu_odom_: 1691062972.283331302 0.383072 -0.260968 9.90721 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00156196 -0.000493286-0.00370821 0.999992 uwb: 0.49810885 842.319 997.659 +imu_odom_: 1691062972.298202238 0.40462 -0.272939 9.89524 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.44124879 0.235767 0.0763842 0 -0.00121398 0.00129134 -0.00369701 0.999992 uwb: 0.0 842.319 997.659 +imu_odom_: 1691062972.312188892 0.423774 -0.265756 9.88566 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00121398 0.00129134 -0.00369701 0.999992 uwb: 0.0 842.319 997.659 +imu_odom_: 1691062972.327188446 0.428562 -0.251391 9.85453 -0.0543285 -0.00319579 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00121398 0.00129134 -0.00369701 0.999992 uwb: 0.0 842.319 997.659 +imu_odom_: 1691062972.342060258 0.387861 -0.246603 9.94073 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.44150836 0.235767 0.0763842 0 -0.00257934 0.000347284 -0.00370346 0.99999 uwb: 0.49999583 842.336 998.21 +imu_odom_: 1691062972.356187779 0.397437 -0.215478 9.90242 -0.0553937 -0.00639159 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00257934 0.000347284 -0.00370346 0.99999 uwb: 0.0 842.336 998.21 +imu_odom_: 1691062972.371245663 0.409408 -0.270545 9.85453 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00257934 0.000347284 -0.00370346 0.99999 uwb: 0.0 842.336 998.21 +imu_odom_: 1691062972.386093267 0.409408 -0.237026 9.89524 -0.056459 -0.00319579 0.0394148 0 0 pose: 0.43881059 0.235767 0.0763842 0 -0.00111076 -0.000497274-0.00371385 0.999992 uwb: 0.50020873 842.293 997.796 +imu_odom_: 1691062972.400046090 0.409408 -0.270545 9.84017 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00111076 -0.000497274-0.00371385 0.999992 uwb: 0.0 842.293 997.796 +imu_odom_: 1691062972.415103974 0.395043 -0.258574 9.84975 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00111076 -0.000497274-0.00371385 0.999992 uwb: 0.0 842.293 997.796 +imu_odom_: 1691062972.430175274 0.378284 -0.246603 9.89045 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.58874489 0.235767 0.0763842 0 -0.000937731-0.000810252-0.00372602 0.999992 uwb: 0.49978584 842.361 998.072 +imu_odom_: 1691062972.444175635 0.409408 -0.253785 9.89045 -0.0532632 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.000937731-0.000810252-0.00372602 0.999992 uwb: 0.0 842.361 998.072 +imu_odom_: 1691062972.459307598 0.407014 -0.23942 9.87608 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.000937731-0.000810252-0.00372602 0.999992 uwb: 0.0 842.361 998.072 +imu_odom_: 1691062972.474177660 0.402226 -0.253785 9.85693 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.29108701 0.235767 0.0763842 0 -0.00191164 0.00107653 -0.00372693 0.999991 uwb: 0.0 842.361 998.072 +imu_odom_: 1691062972.489177505 0.407014 -0.268151 9.87129 -0.0543285 -0.00426106 0.0383495 0 0 pose: 0.44122255 0.235767 0.0763842 0 -0.00120549 -0.000492656-0.00374185 0.999992 uwb: 0.50008041 842.245 997.796 +imu_odom_: 1691062972.504277970 0.399832 -0.234632 9.8665 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00120549 -0.000492656-0.00374185 0.999992 uwb: 0.0 842.245 997.796 +imu_odom_: 1691062972.518094884 0.397437 -0.248997 9.91439 -0.0543285 -0.00532632 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00120549 -0.000492656-0.00374185 0.999992 uwb: 0.0 842.245 997.796 +imu_odom_: 1691062972.533236472 0.416591 -0.253785 9.85932 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.44787799 0.235767 0.0763842 0 -0.00165515 0.000488888 -0.00375808 0.999991 uwb: 0.50219487 842.085 997.381 +imu_odom_: 1691062972.548042662 0.407014 -0.248997 9.87608 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00165515 0.000488888 -0.00375808 0.999991 uwb: 0.0 842.085 997.381 +imu_odom_: 1691062972.562023191 0.42138 -0.234632 9.90481 -0.056459 -0.00639159 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00165515 0.000488888 -0.00375808 0.999991 uwb: 0.0 842.085 997.381 +imu_odom_: 1691062972.577309437 0.40462 -0.244209 9.92875 -0.0543285 -0.00319579 0.04048 0 0 pose: 0.43937931 0.235767 0.0763842 0 -0.000713154-0.000221416-0.00376668 0.999993 uwb: 0.0 842.085 997.381 +imu_odom_: 1691062972.592016466 0.392649 -0.237026 9.90002 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.000713154-0.000221416-0.00376668 0.999993 uwb: 0.49757513 841.992 997.241 +imu_odom_: 1691062972.606079824 0.40462 -0.270545 9.9096 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.000713154-0.000221416-0.00376668 0.999993 uwb: 0.0 841.992 997.241 +imu_odom_: 1691062972.621128084 0.399832 -0.275333 9.87608 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.43989846 0.235767 0.0763842 0 -0.0008846530.000554657 -0.00375666 0.999992 uwb: 0.0 841.992 997.241 +imu_odom_: 1691062972.636014477 0.42138 -0.241814 9.87129 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0008846530.000554657 -0.00375666 0.999992 uwb: 0.50023790 841.796 997.514 +imu_odom_: 1691062972.650024755 0.385466 -0.241814 9.90721 -0.0553937 -0.00319579 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0008846530.000554657 -0.00375666 0.999992 uwb: 0.0 841.796 997.514 +imu_odom_: 1691062972.665076223 0.361524 -0.229843 9.88566 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.37989731 0.235767 0.0763842 0 -0.00189216 -0.000619054-0.00375915 0.999991 uwb: 0.0 841.796 997.514 +imu_odom_: 1691062972.680017739 0.409408 -0.241814 9.85932 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00189216 -0.000619054-0.00375915 0.999991 uwb: 0.49941836 841.701 997.513 +imu_odom_: 1691062972.694208256 0.392649 -0.237026 9.8665 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.6148564 0.235767 0.0763842 0 -0.00169875 -3.2197e-05 -0.00376196 0.999991 uwb: 0.0 841.701 997.513 +imu_odom_: 1691062972.709086192 0.402226 -0.25618 9.86172 -0.0532632 -0.00319579 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00169875 -3.2197e-05 -0.00376196 0.999991 uwb: 0.0 841.701 997.513 +imu_odom_: 1691062972.724254903 0.387861 -0.25618 9.88326 -0.0532632 -0.00426106 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00169875 -3.2197e-05 -0.00376196 0.999991 uwb: 0.0 841.701 997.513 +imu_odom_: 1691062972.753147491 0.37589 -0.251391 9.90242 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.43918974 0.235767 0.0763842 0 -0.00104141 2.29823e-05 -0.00376383 0.999992 uwb: 0.50148908 841.866 997.653 +imu_odom_: 1691062972.768143545 0.42138 -0.227449 9.87848 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00104141 2.29823e-05 -0.00376383 0.999992 uwb: 0.0 841.866 997.653 +imu_odom_: 1691062972.782096076 0.414197 -0.248997 9.86172 -0.0532632 -0.00639159 0.0394148 0 0 pose: 0.43934431 0.235767 0.0763842 0 -0.0017571 0.00112673 -0.00376 0.999991 uwb: 0.49843550 841.761 998.343 +imu_odom_: 1691062972.797013094 0.390255 -0.265756 9.89763 -0.0543285 -0.00426106 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0017571 0.00112673 -0.00376 0.999991 uwb: 0.0 841.761 998.343 +imu_odom_: 1691062972.812006523 0.397437 -0.237026 9.87369 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0017571 0.00112673 -0.00376 0.999991 uwb: 0.0 841.761 998.343 +imu_odom_: 1691062972.826194124 0.402226 -0.270545 9.87369 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.44245039 0.235767 0.0763842 0 -0.0016081 -0.000172443-0.0037574 0.999992 uwb: 0.0 841.761 998.343 +imu_odom_: 1691062972.841129806 0.407014 -0.246603 9.87608 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0016081 -0.000172443-0.0037574 0.999992 uwb: 0.50280442 841.352 998.754 +imu_odom_: 1691062972.856056740 0.40462 -0.234632 9.90481 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0016081 -0.000172443-0.0037574 0.999992 uwb: 0.0 841.352 998.754 +imu_odom_: 1691062972.870020353 0.414197 -0.260968 9.84975 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.43810481 0.235767 0.0763842 0 -0.00160022 0.000202895 -0.00376371 0.999992 uwb: 0.0 841.352 998.754 +imu_odom_: 1691062972.885008533 0.418985 -0.265756 9.89524 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00160022 0.000202895 -0.00376371 0.999992 uwb: 0.49985000 841.829 998.758 +imu_odom_: 1691062972.900007212 0.40462 -0.251391 9.92397 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00160022 0.000202895 -0.00376371 0.999992 uwb: 0.0 841.829 998.758 +imu_odom_: 1691062972.915006766 0.397437 -0.234632 9.84256 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.44003261 0.235767 0.0763842 0 -0.00145148 0.000575856 -0.00375271 0.999992 uwb: 0.0 841.829 998.758 +imu_odom_: 1691062972.929120871 0.40462 -0.260968 9.88566 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00145148 0.000575856 -0.00375271 0.999992 uwb: 0.49912088 841.86 998.068 +imu_odom_: 1691062972.944125092 0.385466 -0.23942 9.89524 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00145148 0.000575856 -0.00375271 0.999992 uwb: 0.0 841.86 998.068 +imu_odom_: 1691062972.959138645 0.387861 -0.253785 9.90242 -0.0543285 -0.00319579 0.0383495 0 0 pose: 0.43991303 0.235767 0.0763842 0 -0.00134817 0.000152894 -0.0037451 0.999992 uwb: 0.0 841.86 998.068 +imu_odom_: 1691062972.974178446 0.411803 -0.234632 9.88805 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00134817 0.000152894 -0.0037451 0.999992 uwb: 0.0 841.86 998.068 +imu_odom_: 1691062972.989123462 0.40462 -0.280122 9.91439 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00134817 0.000152894 -0.0037451 0.999992 uwb: 0.50024957 841.531 997.649 +imu_odom_: 1691062973.3050619 0.409408 -0.251391 9.88326 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.44066549 0.235767 0.0763842 0 -0.00151492 0.00102486 -0.00375086 0.999991 uwb: 0.0 841.531 997.649 +imu_odom_: 1691062973.18046090 0.392649 -0.25618 9.85453 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00151492 0.00102486 -0.00375086 0.999991 uwb: 0.0 841.531 997.649 +imu_odom_: 1691062973.32104782 0.392649 -0.265756 9.87369 -0.056459 -0.00639159 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00151492 0.00102486 -0.00375086 0.999991 uwb: 0.0 841.531 997.649 +imu_odom_: 1691062973.47178415 0.402226 -0.227449 9.90481 -0.0543285 -0.00639159 0.0394148 0 0 pose: 0.44999246 0.235767 0.0763842 0 -0.00206255 -0.000274441-0.00375407 0.999991 uwb: 0.0 841.531 997.649 +imu_odom_: 1691062973.62124306 0.402226 -0.232238 9.91199 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00206255 -0.000274441-0.00375407 0.999991 uwb: 0.0 841.531 997.649 +imu_odom_: 1691062973.77029949 0.399832 -0.246603 9.88566 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00206255 -0.000274441-0.00375407 0.999991 uwb: 0.0 841.531 997.649 +imu_odom_: 1691062973.92055168 0.414197 -0.244209 9.91918 -0.0543285 -0.00639159 0.0394148 0 0 pose: 0.43048691 0.235767 0.0763842 0 -0.00296542 0.000129693 -0.00375777 0.999989 uwb: 0.99940253 841.464 997.371 +imu_odom_: 1691062973.107132884 0.442927 -0.244209 9.8689 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00296542 0.000129693 -0.00375777 0.999989 uwb: 0.0 841.464 997.371 +imu_odom_: 1691062973.121051584 0.397437 -0.251391 9.88326 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00296542 0.000129693 -0.00375777 0.999989 uwb: 0.0 841.464 997.371 +imu_odom_: 1691062973.136039181 0.409408 -0.270545 9.9096 -0.0543285 -0.00426106 0.0415453 0 0 pose: 0.44944707 0.235767 0.0763842 0 -0.00170593 -0.00027828 -0.00375434 0.999991 uwb: 0.49863091 841.746 997.652 +imu_odom_: 1691062973.150983030 0.385466 -0.253785 9.91918 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00170593 -0.00027828 -0.00375434 0.999991 uwb: 0.0 841.746 997.652 +imu_odom_: 1691062973.165113175 0.397437 -0.229843 9.93354 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00170593 -0.00027828 -0.00375434 0.999991 uwb: 0.0 841.746 997.652 +imu_odom_: 1691062973.179985862 0.414197 -0.270545 9.88805 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.58866615 0.235767 0.0763842 0 -0.00259617 0.000237232 -0.00373919 0.99999 uwb: 0.50047705 841.359 998.062 +imu_odom_: 1691062973.194995624 0.385466 -0.241814 9.88805 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00259617 0.000237232 -0.00373919 0.99999 uwb: 0.0 841.359 998.062 +imu_odom_: 1691062973.208990152 0.383072 -0.258574 9.84017 -0.056459 -0.00532632 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00259617 0.000237232 -0.00373919 0.99999 uwb: 0.0 841.359 998.062 +imu_odom_: 1691062973.223990290 0.411803 -0.244209 9.83059 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.29127075 0.235767 0.0763842 0 -0.00128137 4.67873e-05 -0.00374015 0.999992 uwb: 0.0 841.359 998.062 +imu_odom_: 1691062973.238983136 0.40462 -0.23942 9.89763 -0.0532632 -0.00426106 0.04048 0 0 pose: 0.43874061 0.235767 0.0763842 0 -0.00235179 0.000579905 -0.00375141 0.99999 uwb: 0.50009208 841.577 997.788 +imu_odom_: 1691062973.253054952 0.402226 -0.251391 9.87848 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00235179 0.000579905 -0.00375141 0.99999 uwb: 0.0 841.577 997.788 +imu_odom_: 1691062973.268045173 0.392649 -0.265756 9.90481 -0.0543285 -0.00426106 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00235179 0.000579905 -0.00375141 0.99999 uwb: 0.0 841.577 997.788 +imu_odom_: 1691062973.282976481 0.426168 -0.248997 9.91199 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.44056925 0.235767 0.0763842 0 -0.00220958 0.000331878 -0.00375109 0.99999 uwb: 0.50044206 841.226 997.367 +imu_odom_: 1691062973.297118877 0.387861 -0.232238 9.88087 -0.056459 -0.00426106 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00220958 0.000331878 -0.00375109 0.99999 uwb: 0.0 841.226 997.367 +imu_odom_: 1691062973.312121347 0.416591 -0.251391 9.85693 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00220958 0.000331878 -0.00375109 0.99999 uwb: 0.0 841.226 997.367 +imu_odom_: 1691062973.327116527 0.407014 -0.246603 9.85932 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.44075590 0.235767 0.0763842 0 -0.00149896 -2.6797e-05 -0.00376862 0.999992 uwb: 0.0 841.226 997.367 +imu_odom_: 1691062973.342015753 0.40462 -0.253785 9.88087 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00149896 -2.6797e-05 -0.00376862 0.999992 uwb: 0.49813219 841.369 997.37 +imu_odom_: 1691062973.357052347 0.438139 -0.260968 9.91199 -0.0553937 -0.00426106 0.0415453 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00149896 -2.6797e-05 -0.00376862 0.999992 uwb: 0.0 841.369 997.37 +imu_odom_: 1691062973.372119564 0.423774 -0.227449 9.87848 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.38889764 0.235767 0.0763842 0 -0.00242214 -0.000408946-0.00376479 0.99999 uwb: 0.0 841.369 997.37 +imu_odom_: 1691062973.386995750 0.399832 -0.25618 9.88566 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00242214 -0.000408946-0.00376479 0.99999 uwb: 0.49961668 841.356 998.333 +imu_odom_: 1691062973.401981888 0.387861 -0.246603 9.90242 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.6004197 0.235767 0.0763842 0 -0.00240082 -0.00100973 -0.00376036 0.99999 uwb: 0.0 841.356 998.333 +imu_odom_: 1691062973.416003540 0.399832 -0.25618 9.90721 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00240082 -0.00100973 -0.00376036 0.99999 uwb: 0.0 841.356 998.333 +imu_odom_: 1691062973.430994053 0.411803 -0.234632 9.85693 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00240082 -0.00100973 -0.00376036 0.99999 uwb: 0.50012125 841.378 998.472 +imu_odom_: 1691062973.446020148 0.409408 -0.260968 9.89284 -0.0553937 -0.00532632 0.0415453 0 0 pose: 0.44966289 0.235767 0.0763842 0 -0.00173635 0.000482447 -0.00374617 0.999991 uwb: 0.0 841.378 998.472 +imu_odom_: 1691062973.459996594 0.402226 -0.246603 9.89763 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00173635 0.000482447 -0.00374617 0.999991 uwb: 0.0 841.378 998.472 +imu_odom_: 1691062973.475046020 0.40462 -0.25618 9.88566 -0.0532632 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00173635 0.000482447 -0.00374617 0.999991 uwb: 0.0 841.378 998.472 +imu_odom_: 1691062973.489959246 0.40462 -0.260968 9.88805 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.44088132 0.235767 0.0763842 0 -0.00140864 -0.000467241-0.00373723 0.999992 uwb: 0.50110410 841.186 998.609 +imu_odom_: 1691062973.504083267 0.42138 -0.248997 9.91199 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00140864 -0.000467241-0.00373723 0.999992 uwb: 0.0 841.186 998.609 +imu_odom_: 1691062973.519022742 0.395043 -0.241814 9.87848 -0.0575243 -0.00639159 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00140864 -0.000467241-0.00373723 0.999992 uwb: 0.0 841.186 998.609 +imu_odom_: 1691062973.533961633 0.411803 -0.251391 9.88087 -0.0532632 -0.00639159 0.0394148 0 0 pose: 0.43890101 0.235767 0.0763842 0 -0.00216616 0.000298717 -0.00372203 0.999991 uwb: 0.49989375 841.252 1000.13 +imu_odom_: 1691062973.547958494 0.397437 -0.225055 9.90002 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00216616 0.000298717 -0.00372203 0.999991 uwb: 0.0 841.252 1000.13 +imu_odom_: 1691062973.562958340 0.416591 -0.265756 9.93115 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00216616 0.000298717 -0.00372203 0.999991 uwb: 0.0 841.252 1000.13 +imu_odom_: 1691062973.578004558 0.409408 -0.258574 9.93594 -0.056459 -0.00319579 0.0394148 0 0 pose: 0.43998595 0.235767 0.0763842 0 -0.00139641 0.000469781 -0.00373297 0.999992 uwb: 0.0 841.252 1000.13 +imu_odom_: 1691062973.592002587 0.387861 -0.251391 9.88326 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00139641 0.000469781 -0.00373297 0.999992 uwb: 0.50071913 841.538 999.717 +imu_odom_: 1691062973.606944103 0.433351 -0.258574 9.93354 -0.0543285 -0.00639159 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00139641 0.000469781 -0.00373297 0.999992 uwb: 0.0 841.538 999.717 +imu_odom_: 1691062973.622000529 0.390255 -0.227449 9.92636 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.44100089 0.235767 0.0763842 0 -0.00252991 -0.000269723-0.00373759 0.99999 uwb: 0.0 841.538 999.717 +imu_odom_: 1691062973.636055429 0.392649 -0.260968 9.88805 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00252991 -0.000269723-0.00373759 0.99999 uwb: 0.49928712 841.611 1000.55 +imu_odom_: 1691062973.650994320 0.37589 -0.263362 9.89284 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00252991 -0.000269723-0.00373759 0.99999 uwb: 0.0 841.611 1000.55 +imu_odom_: 1691062973.665938169 0.385466 -0.241814 9.89045 -0.052198 -0.00532632 0.0415453 0 0 pose: 0.43939973 0.235767 0.0763842 0 -0.00179826 -0.000500492-0.00374585 0.999991 uwb: 0.0 841.611 1000.55 +imu_odom_: 1691062973.679941155 0.402226 -0.275333 9.89045 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00179826 -0.000500492-0.00374585 0.999991 uwb: 0.50113619 841.302 1000.96 +imu_odom_: 1691062973.695155655 0.407014 -0.25618 9.87369 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00179826 -0.000500492-0.00374585 0.999991 uwb: 0.0 841.302 1000.96 +imu_odom_: 1691062973.710037383 0.402226 -0.253785 9.89524 -0.0553937 -0.00213053 0.0394148 0 0 pose: 0.44053425 0.235767 0.0763842 0 -0.00206511 0.00162854 -0.00373359 0.99999 uwb: 0.0 841.302 1000.96 +imu_odom_: 1691062973.724100741 0.42138 -0.244209 9.8665 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00206511 0.00162854 -0.00373359 0.99999 uwb: 0.0 841.302 1000.96 +imu_odom_: 1691062973.739100295 0.407014 -0.237026 9.93354 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00206511 0.00162854 -0.00373359 0.99999 uwb: 0.49994916 841.544 1001.38 +imu_odom_: 1691062973.754185594 0.399832 -0.248997 9.88087 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.44166294 0.235767 0.0763842 0 -0.00184707 -0.000196972-0.00373169 0.999991 uwb: 0.0 841.544 1001.38 +imu_odom_: 1691062973.769154817 0.414197 -0.241814 9.87608 -0.0543285 -0.00532632 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00184707 -0.000196972-0.00373169 0.999991 uwb: 0.0 841.544 1001.38 +imu_odom_: 1691062973.784015254 0.430956 -0.244209 9.88326 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00184707 -0.000196972-0.00373169 0.999991 uwb: 0.50125576 841.45 1001.52 +imu_odom_: 1691062973.798070738 0.402226 -0.263362 9.91199 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.43881352 0.235767 0.0763842 0 -0.00117317 0.000258048 -0.00373563 0.999992 uwb: 0.0 841.45 1001.52 +imu_odom_: 1691062973.828116218 0.418985 -0.229843 9.89284 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.44977372 0.235767 0.0763842 0 -0.00222322 -0.00136971 -0.00374824 0.99999 uwb: 0.49929879 841.445 1000.96 +imu_odom_: 1691062973.843056276 0.395043 -0.251391 9.89045 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00222322 -0.00136971 -0.00374824 0.99999 uwb: 0.0 841.445 1000.96 +imu_odom_: 1691062973.858118826 0.42138 -0.260968 9.89045 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00222322 -0.00136971 -0.00374824 0.99999 uwb: 0.0 841.445 1000.96 +imu_odom_: 1691062973.872001945 0.40462 -0.263362 9.85932 -0.0543285 -0.00639159 0.0415453 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00222322 -0.00136971 -0.00374824 0.99999 uwb: 0.0 841.445 1000.96 +imu_odom_: 1691062973.886993916 0.418985 -0.222661 9.8689 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.58895488 0.235767 0.0763842 0 -0.00194834 -0.000468569-0.00375813 0.999991 uwb: 0.49876507 841.808 1001.51 +imu_odom_: 1691062973.901981512 0.392649 -0.272939 9.88566 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00194834 -0.000468569-0.00375813 0.999991 uwb: 0.0 841.808 1001.51 +imu_odom_: 1691062973.916050995 0.40462 -0.263362 9.89524 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00194834 -0.000468569-0.00375813 0.999991 uwb: 0.0 841.808 1001.51 +imu_odom_: 1691062973.929927697 0.397437 -0.23942 9.90481 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.29030831 0.235767 0.0763842 0 -0.00194077 -3.73858e-05-0.003747 0.999991 uwb: 0.50047997 841.384 1002.07 +imu_odom_: 1691062973.945050036 0.402226 -0.232238 9.86172 -0.0575243 -0.00532632 0.04048 0 0 pose: 0.43994512 0.235767 0.0763842 0 -0.00218583 -0.00070159 -0.00374968 0.99999 uwb: 0.0 841.384 1002.07 +imu_odom_: 1691062973.958980693 0.399832 -0.227449 9.89045 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00218583 -0.00070159 -0.00374968 0.99999 uwb: 0.0 841.384 1002.07 +imu_odom_: 1691062973.972990388 0.390255 -0.260968 9.92157 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00218583 -0.00070159 -0.00374968 0.99999 uwb: 0.0 841.384 1002.07 +imu_odom_: 1691062973.987105951 0.363919 -0.246603 9.87369 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.42983362 0.235767 0.0763842 0 -0.00206389 0.000445627 -0.00373626 0.999991 uwb: 0.49875341 841.603 1002.35 +imu_odom_: 1691062974.1096688 0.409408 -0.263362 9.85693 -0.0543285 -0.00532632 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00206389 0.000445627 -0.00373626 0.999991 uwb: 0.0 841.603 1002.35 +imu_odom_: 1691062974.16123074 0.40462 -0.232238 9.89524 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00206389 0.000445627 -0.00373626 0.999991 uwb: 0.0 841.603 1002.35 +imu_odom_: 1691062974.31073631 0.37589 -0.237026 9.89045 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.41966670 0.235767 0.0763842 0 -0.00165316 0.000326437 -0.00374322 0.999992 uwb: 0.50127034 842.104 1002.34 +imu_odom_: 1691062974.45064077 0.414197 -0.263362 9.91678 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00165316 0.000326437 -0.00374322 0.999992 uwb: 0.0 842.104 1002.34 +imu_odom_: 1691062974.60219664 0.397437 -0.258574 9.92157 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00165316 0.000326437 -0.00374322 0.999992 uwb: 0.0 842.104 1002.34 +imu_odom_: 1691062974.73997497 0.402226 -0.253785 9.93833 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.44236290 0.235767 0.0763842 0 -0.00253858 0.000379068 -0.00373539 0.99999 uwb: 0.0 842.104 1002.34 +imu_odom_: 1691062974.87962277 0.407014 -0.253785 9.90002 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00253858 0.000379068 -0.00373539 0.99999 uwb: 0.49993168 842.194 1001.92 +imu_odom_: 1691062974.101995887 0.399832 -0.25618 9.92875 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00253858 0.000379068 -0.00373539 0.99999 uwb: 0.0 842.194 1001.92 +imu_odom_: 1691062974.116951402 0.416591 -0.258574 9.89763 -0.056459 -0.00639159 0.04048 0 0 pose: 0.42820913 0.235767 0.0763842 0 -0.00179395 -0.000616347-0.00373377 0.999991 uwb: 0.0 842.194 1001.92 +imu_odom_: 1691062974.130931057 0.411803 -0.263362 9.8689 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00179395 -0.000616347-0.00373377 0.999991 uwb: 0.49925796 842.176 1002.34 +imu_odom_: 1691062974.145104075 0.40462 -0.263362 9.9096 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00179395 -0.000616347-0.00373377 0.999991 uwb: 0.0 842.176 1002.34 +imu_odom_: 1691062974.158921281 0.387861 -0.253785 9.87848 -0.056459 -0.00426106 0.04048 0 0 pose: 0.42938156 0.235767 0.0763842 0 -0.00223835 -0.000480256-0.00372866 0.99999 uwb: 0.0 842.176 1002.34 +imu_odom_: 1691062974.172923684 0.378284 -0.241814 9.89524 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00223835 -0.000480256-0.00372866 0.99999 uwb: 0.0 842.176 1002.34 +imu_odom_: 1691062974.187171948 0.395043 -0.25618 9.91199 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00223835 -0.000480256-0.00372866 0.99999 uwb: 0.50122077 842.266 1001.92 +imu_odom_: 1691062974.201928266 0.363919 -0.241814 9.88326 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.50224154 0.235767 0.0763842 0 -0.00219343 0.000314131 -0.00371716 0.999991 uwb: 0.0 842.266 1001.92 +imu_odom_: 1691062974.216058704 0.414197 -0.232238 9.91199 -0.0553937 -0.00639159 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00219343 0.000314131 -0.00371716 0.999991 uwb: 0.0 842.266 1001.92 +imu_odom_: 1691062974.229928990 0.402226 -0.268151 9.89524 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00219343 0.000314131 -0.00371716 0.999991 uwb: 0.50004833 841.864 1002.2 +imu_odom_: 1691062974.244927961 0.371101 -0.25618 9.91439 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.5888120 0.235767 0.0763842 0 -0.00194041 0.000843008 -0.0037164 0.999991 uwb: 0.0 841.864 1002.2 +imu_odom_: 1691062974.258918407 0.399832 -0.25618 9.85932 -0.0553937 -0.00319579 0.0372843 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00194041 0.000843008 -0.0037164 0.999991 uwb: 0.0 841.864 1002.2 +imu_odom_: 1691062974.272981765 0.423774 -0.222661 9.91199 -0.0553937 -0.00319579 0.0415453 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00194041 0.000843008 -0.0037164 0.999991 uwb: 0.0 841.864 1002.2 +imu_odom_: 1691062974.287990652 0.395043 -0.251391 9.8665 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.71929906 0.235767 0.0763842 0 -0.00163262 -0.000207236-0.00371599 0.999992 uwb: 0.49800387 842.011 1002.48 +imu_odom_: 1691062974.302058676 0.387861 -0.246603 9.8689 -0.0543285 -0.00532632 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00163262 -0.000207236-0.00371599 0.999992 uwb: 0.0 842.011 1002.48 +imu_odom_: 1691062974.316059913 0.418985 -0.258574 9.91199 -0.0543285 -0.00319579 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00163262 -0.000207236-0.00371599 0.999992 uwb: 0.0 842.011 1002.48 +imu_odom_: 1691062974.329932824 0.399832 -0.246603 9.91439 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.28973084 0.235767 0.0763842 0 -0.00151804 0.000902562 -0.00371115 0.999992 uwb: 0.49996958 841.86 1001.93 +imu_odom_: 1691062974.344047804 0.380678 -0.25618 9.89524 -0.0543285 -0.00532632 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00151804 0.000902562 -0.00371115 0.999992 uwb: 0.0 841.86 1001.93 +imu_odom_: 1691062974.358990486 0.378284 -0.263362 9.89524 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.41971921 0.235767 0.0763842 0 -0.0017612 -0.000538987-0.00370924 0.999991 uwb: 0.0 841.86 1001.93 +imu_odom_: 1691062974.372919685 0.392649 -0.253785 9.89763 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0017612 -0.000538987-0.00370924 0.999991 uwb: 0.0 841.86 1001.93 +imu_odom_: 1691062974.386932005 0.430956 -0.265756 9.92397 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.0017612 -0.000538987-0.00370924 0.999991 uwb: 0.50009792 841.873 1000.41 +imu_odom_: 1691062974.400921867 0.411803 -0.248997 9.88566 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.14119646 0.235767 0.0763842 0 -0.00221045 0.000777969 -0.00371228 0.99999 uwb: 0.0 841.873 1000.41 +imu_odom_: 1691062974.415982085 0.409408 -0.25618 9.88566 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00221045 0.000777969 -0.00371228 0.99999 uwb: 0.0 841.873 1000.41 +imu_odom_: 1691062974.429918283 0.371101 -0.244209 9.8665 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00221045 0.000777969 -0.00371228 0.99999 uwb: 0.49874174 841.801 1000.27 +imu_odom_: 1691062974.443926228 0.399832 -0.23942 9.88566 -0.056459 -0.00532632 0.04048 0 0 pose: 0.71939531 0.235767 0.0763842 0 -0.00245261 3.19874e-05 -0.0037047 0.99999 uwb: 0.0 841.801 1000.27 +imu_odom_: 1691062974.457974129 0.385466 -0.241814 9.91918 -0.0532632 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00245261 3.19874e-05 -0.0037047 0.99999 uwb: 0.0 841.801 1000.27 +imu_odom_: 1691062974.471903619 0.390255 -0.25618 9.84975 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00245261 3.19874e-05 -0.0037047 0.99999 uwb: 0.0 841.801 1000.27 +imu_odom_: 1691062974.485967561 0.407014 -0.260968 9.90002 -0.056459 -0.00532632 0.04048 0 0 pose: 0.27991682 0.235767 0.0763842 0 -0.00116317 0.000458144 -0.00369813 0.999992 uwb: 0.49979168 841.849 1000.41 +imu_odom_: 1691062974.499913384 0.37589 -0.268151 9.89284 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00116317 0.000458144 -0.00369813 0.999992 uwb: 0.0 841.849 1000.41 +imu_odom_: 1691062974.513981700 0.409408 -0.280122 9.89763 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.49927546 0.235767 0.0763842 0 -0.00243064 0.000336094 -0.00370412 0.99999 uwb: 0.0 841.849 1000.41 +imu_odom_: 1691062974.527942689 0.416591 -0.260968 9.9096 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00243064 0.000336094 -0.00370412 0.99999 uwb: 0.50026416 841.467 999.446 +imu_odom_: 1691062974.542911329 0.40462 -0.253785 9.88566 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00243064 0.000336094 -0.00370412 0.99999 uwb: 0.0 841.467 999.446 +imu_odom_: 1691062974.557907383 0.380678 -0.263362 9.8665 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.6056693 0.235767 0.0763842 0 -0.00292725 -1.20295e-05-0.00370563 0.999989 uwb: 0.0 841.467 999.446 +imu_odom_: 1691062974.571896662 0.411803 -0.268151 9.90721 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00292725 -1.20295e-05-0.00370563 0.999989 uwb: 0.0 841.467 999.446 +imu_odom_: 1691062974.586011351 0.430956 -0.248997 9.88566 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00292725 -1.20295e-05-0.00370563 0.999989 uwb: 0.50037206 841.278 999.168 +imu_odom_: 1691062974.601045320 0.409408 -0.244209 9.90002 -0.0553937 -0.00426106 0.0372843 0 0 pose: 0.71980654 0.235767 0.0763842 0 -0.00247365 -0.000387743-0.00369728 0.99999 uwb: 0.0 841.278 999.168 +imu_odom_: 1691062974.615101678 0.392649 -0.241814 9.90002 -0.0553937 -0.00639159 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00247365 -0.000387743-0.00369728 0.99999 uwb: 0.0 841.278 999.168 +imu_odom_: 1691062974.630012862 0.426168 -0.258574 9.92875 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00247365 -0.000387743-0.00369728 0.99999 uwb: 0.49976543 841.172 997.782 +imu_odom_: 1691062974.644039181 0.430956 -0.248997 9.87369 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.28988541 0.235767 0.0763842 0 -0.00148309 0.000684114 -0.00370795 0.999992 uwb: 0.0 841.172 997.782 +imu_odom_: 1691062974.658037793 0.416591 -0.253785 9.89284 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.235767 0.0763842 0 -0.00148309 0.000684114 -0.00370795 0.999992 uwb: 0.0 841.172 997.782 +imu_odom_: 1691062974.672041363 0.418985 -0.215478 9.9096 -0.0532632 -0.00532632 0.0394148 0 0 pose: 0.42990945 0.235767 0.0763842 0 -0.00192781 -0.000911486-0.00369577 0.999991 uwb: 0.0 841.172 997.782 diff --git a/Code/RK3588/Robot_ROS_Driver/dataset/data2.txt b/Code/RK3588/Robot_ROS_Driver/dataset/data2.txt new file mode 100644 index 0000000..c3e001f --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/dataset/data2.txt @@ -0,0 +1,9313 @@ +imu_odom_: 1691062406.60567234 0.40462 -0.203507 9.88087 -0.0553937 -0.00532632 0.04048 0 0 pose: 4.992375385 0 0 0 -0.0001201543.25945e-05 0.0017383 0.999998 uwb: 5.69647 848.899 990.624 +imu_odom_: 1691062406.74560911 0.395043 -0.217872 9.89284 -0.0532632 -0.00532632 0.04048 0 0 pose: 0.0 0 0 0 -0.0001201543.25945e-05 0.0017383 0.999998 uwb: 0.0 848.899 990.624 +imu_odom_: 1691062406.88551088 0.407014 -0.220267 9.93354 -0.056459 -0.00319579 0.0394148 0 0 pose: 0.0 0 0 0 -0.0001201543.25945e-05 0.0017383 0.999998 uwb: 0.0 848.899 990.624 +imu_odom_: 1691062406.103499256 0.407014 -0.201113 9.86411 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.41938452 0 0 0 -0.000324512-8.4751e-05 0.00174832 0.999998 uwb: 0.49796316 848.749 990.349 +imu_odom_: 1691062406.117553882 0.395043 -0.215478 9.90721 -0.0553937 -0.00639159 0.0383495 0 0 pose: 0.0 0 0 0 -0.000324512-8.4751e-05 0.00174832 0.999998 uwb: 0.0 848.749 990.349 +imu_odom_: 1691062406.131637380 0.411803 -0.234632 9.89763 -0.0543285 -0.00639159 0.0394148 0 0 pose: 0.0 0 0 0 -0.000324512-8.4751e-05 0.00174832 0.999998 uwb: 0.0 848.749 990.349 +imu_odom_: 1691062406.145511781 0.402226 -0.213084 9.86172 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.42989764 0 0 0 -0.000664817-3.48417e-060.00173524 0.999998 uwb: 0.0 848.749 990.349 +imu_odom_: 1691062406.159568449 0.385466 -0.21069 9.90242 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 -0.000664817-3.48417e-060.00173524 0.999998 uwb: 0.50022618 848.829 990.222 +imu_odom_: 1691062406.174740294 0.395043 -0.198719 9.88805 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 -0.000664817-3.48417e-060.00173524 0.999998 uwb: 0.0 848.829 990.222 +imu_odom_: 1691062406.189629554 0.368707 -0.21069 9.90242 -0.0553937 -0.00213053 0.0394148 0 0 pose: 0.42203248 0 0 0 0.000574562 0.000871917 0.00174669 0.999998 uwb: 0.0 848.829 990.222 +imu_odom_: 1691062406.203636062 0.399832 -0.215478 9.88326 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 0.000574562 0.000871917 0.00174669 0.999998 uwb: 0.50110397 848.408 991.655 +imu_odom_: 1691062406.218761831 0.40462 -0.198719 9.85693 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0 0 0 0.000574562 0.000871917 0.00174669 0.999998 uwb: 0.0 848.408 991.655 +imu_odom_: 1691062406.232487212 0.397437 -0.227449 9.91918 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.43939590 0 0 0 0.000515237 -2.01853e-050.00174243 0.999998 uwb: 0.0 848.408 991.655 +imu_odom_: 1691062406.246468640 0.392649 -0.205901 9.88566 -0.056459 -0.00319579 0.04048 0 0 pose: 0.0 0 0 0 0.000515237 -2.01853e-050.00174243 0.999998 uwb: 0.49904509 848.374 990.99 +imu_odom_: 1691062406.261469884 0.442927 -0.208296 9.88805 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.0 0 0 0 0.000515237 -2.01853e-050.00174243 0.999998 uwb: 0.0 848.374 990.99 +imu_odom_: 1691062406.275469393 0.392649 -0.203507 9.90721 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.42895860 0 0 0 0.000866584 0.000589087 0.00175076 0.999998 uwb: 0.0 848.374 990.99 +imu_odom_: 1691062406.289530144 0.397437 -0.208296 9.88566 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0 0 0 0.000866584 0.000589087 0.00175076 0.999998 uwb: 0.0 848.374 990.99 +imu_odom_: 1691062406.303534610 0.395043 -0.196325 9.91678 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0 0 0 0.000866584 0.000589087 0.00175076 0.999998 uwb: 0.49984707 848.287 991.251 +imu_odom_: 1691062406.317526828 0.407014 -0.246603 9.88087 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.43000554 0 0 0 0.000633687 0.000122746 0.00174983 0.999998 uwb: 0.0 848.287 991.251 +imu_odom_: 1691062406.331611784 0.390255 -0.208296 9.88087 -0.0553937 -0.00426106 0.0415453 0 0 pose: 0.0 0 0 0 0.000633687 0.000122746 0.00174983 0.999998 uwb: 0.0 848.287 991.251 +imu_odom_: 1691062406.346509209 0.397437 -0.222661 9.86172 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 0.000633687 0.000122746 0.00174983 0.999998 uwb: 0.50000746 848.374 990.591 +imu_odom_: 1691062406.361576361 0.399832 -0.222661 9.85932 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.42095055 0 0 0 0.000423404 0.000852043 0.00176396 0.999998 uwb: 0.0 848.374 990.591 +imu_odom_: 1691062406.375555456 0.407014 -0.213084 9.87608 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0 0 0 0.000423404 0.000852043 0.00176396 0.999998 uwb: 0.0 848.374 990.591 +imu_odom_: 1691062406.389449105 0.409408 -0.246603 9.92875 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0 0 0 0.000423404 0.000852043 0.00176396 0.999998 uwb: 0.0 848.374 990.591 +imu_odom_: 1691062406.403450072 0.407014 -0.232238 9.90242 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.43840729 0 0 0 -0.000477101-0.0002333210.00177124 0.999998 uwb: 0.49956418 848.589 991.4 +imu_odom_: 1691062406.417437916 0.40462 -0.232238 9.90002 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 -0.000477101-0.0002333210.00177124 0.999998 uwb: 0.0 848.589 991.4 +imu_odom_: 1691062406.431440341 0.387861 -0.213084 9.89284 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 -0.000477101-0.0002333210.00177124 0.999998 uwb: 0.0 848.589 991.4 +imu_odom_: 1691062406.445570207 0.385466 -0.234632 9.87369 -0.056459 -0.00532632 0.0383495 0 0 pose: 0.0 0 0 0 -0.000477101-0.0002333210.00177124 0.999998 uwb: 0.49974208 848.861 991.68 +imu_odom_: 1691062406.459430902 0.40462 -0.222661 9.89524 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.41972863 0 0 0 -0.00079746 0.000198817 0.00178639 0.999998 uwb: 0.0 848.861 991.68 +imu_odom_: 1691062406.473489903 0.385466 -0.203507 9.92636 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 -0.00079746 0.000198817 0.00178639 0.999998 uwb: 0.0 848.861 991.68 +imu_odom_: 1691062406.487484162 0.378284 -0.21069 9.90242 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.41991528 0 0 0 -5.58655e-050.000411178 0.00178643 0.999998 uwb: 0.0 848.861 991.68 +imu_odom_: 1691062406.501428554 0.383072 -0.196325 9.88566 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 -5.58655e-050.000411178 0.00178643 0.999998 uwb: 0.50040991 849.074 991.295 +imu_odom_: 1691062406.515422522 0.418985 -0.215478 9.93833 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 -5.58655e-050.000411178 0.00178643 0.999998 uwb: 0.0 849.074 991.295 +imu_odom_: 1691062406.529420281 0.423774 -0.203507 9.91199 -0.0553937 -0.00639159 0.04048 0 0 pose: 0.42008151 0 0 0 0.000522006 0.000584839 0.00179126 0.999998 uwb: 0.0 849.074 991.295 +imu_odom_: 1691062406.543414541 0.414197 -0.213084 9.87848 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 0.000522006 0.000584839 0.00179126 0.999998 uwb: 0.0 849.074 991.295 +imu_odom_: 1691062406.557481999 0.42138 -0.232238 9.91439 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 0.000522006 0.000584839 0.00179126 0.999998 uwb: 0.49959626 849.679 990.803 +imu_odom_: 1691062406.571417058 0.399832 -0.222661 9.89524 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.50036616 0 0 0 -0.00121253 -0.00117036 0.00181061 0.999997 uwb: 0.0 849.679 990.803 +imu_odom_: 1691062406.585471685 0.402226 -0.232238 9.90242 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0 0 0 -0.00121253 -0.00117036 0.00181061 0.999997 uwb: 0.0 849.679 990.803 +imu_odom_: 1691062406.600479636 0.428562 -0.198719 9.87848 -0.0553937 -0.00213053 0.0394148 0 0 pose: 0.0 0 0 0 -0.00121253 -0.00117036 0.00181061 0.999997 uwb: 0.50178346 849.711 991.069 +imu_odom_: 1691062406.614416446 0.390255 -0.196325 9.91199 -0.0543285 -0.00426106 0.0383495 0 0 pose: 0.5995248 0 0 0 -0.000904869-0.0006590710.00181358 0.999998 uwb: 0.0 849.711 991.069 +imu_odom_: 1691062406.628428786 0.387861 -0.191536 9.87129 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0 0 0 -0.000904869-0.0006590710.00181358 0.999998 uwb: 0.0 849.711 991.069 +imu_odom_: 1691062406.642425087 0.40462 -0.229843 9.90002 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.0 0 0 0 -0.000904869-0.0006590710.00181358 0.999998 uwb: 0.0 849.711 991.069 +imu_odom_: 1691062406.657601891 0.392649 -0.208296 9.91199 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.70946788 0 0 0 0.00112456 0.00085094 0.00180015 0.999997 uwb: 0.49945046 849.52 990.662 +imu_odom_: 1691062406.671486499 0.387861 -0.198719 9.90481 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0 0 0 0.00112456 0.00085094 0.00180015 0.999997 uwb: 0.0 849.52 990.662 +imu_odom_: 1691062406.685474634 0.409408 -0.220267 9.90242 -0.0575243 -0.00532632 0.04048 0 0 pose: 0.0 0 0 0 0.00112456 0.00085094 0.00180015 0.999997 uwb: 0.0 849.52 990.662 +imu_odom_: 1691062406.699437690 0.385466 -0.234632 9.87369 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.29053246 0 0 0 -0.0003847890.00103862 0.00179286 0.999998 uwb: 0.49975666 849.584 991.193 +imu_odom_: 1691062406.713414744 0.387861 -0.234632 9.87608 -0.0553937 -0.00319579 0.0383495 0 0 pose: 0.0 0 0 0 -0.0003847890.00103862 0.00179286 0.999998 uwb: 0.0 849.584 991.193 +imu_odom_: 1691062406.728469356 0.42138 -0.229843 9.88805 -0.0543285 -0.00426106 0.0383495 0 0 pose: 0.49937463 0 0 0 -0.00147886 -0.0004448520.00179571 0.999997 uwb: 0.0 849.584 991.193 +imu_odom_: 1691062406.742406457 0.409408 -0.227449 9.91199 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0 0 0 -0.00147886 -0.0004448520.00179571 0.999997 uwb: 0.0 849.584 991.193 +imu_odom_: 1691062406.756404799 0.407014 -0.222661 9.92875 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 -0.00147886 -0.0004448520.00179571 0.999997 uwb: 0.49735366 849.998 991.48 +imu_odom_: 1691062406.770462342 0.407014 -0.232238 9.90721 -0.056459 -0.00426106 0.04048 0 0 pose: 0.6061447 0 0 0 -0.000978658-0.0007928610.00179124 0.999998 uwb: 0.0 849.998 991.48 +imu_odom_: 1691062406.784402651 0.42138 -0.215478 9.88087 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0 0 0 -0.000978658-0.0007928610.00179124 0.999998 uwb: 0.0 849.998 991.48 +imu_odom_: 1691062406.798463401 0.390255 -0.201113 9.90242 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 -0.000978658-0.0007928610.00179124 0.999998 uwb: 0.50061404 849.918 990.424 +imu_odom_: 1691062406.813396988 0.445322 -0.225055 9.86411 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.70934831 0 0 0 0.000341352 -0.0005377510.00179746 0.999998 uwb: 0.0 849.918 990.424 +imu_odom_: 1691062406.827453656 0.440533 -0.215478 9.89284 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.0 0 0 0 0.000341352 -0.0005377510.00179746 0.999998 uwb: 0.0 849.918 990.424 +imu_odom_: 1691062406.841578272 0.411803 -0.213084 9.91918 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 0.000341352 -0.0005377510.00179746 0.999998 uwb: 0.0 849.918 990.424 +imu_odom_: 1691062406.856536939 0.378284 -0.21069 9.85214 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.42987139 0 0 0 6.30002e-07 -0.00194115 0.00179076 0.999997 uwb: 0.49960501 849.951 990.295 +imu_odom_: 1691062406.871512521 0.399832 -0.213084 9.87369 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.0 0 0 0 6.30002e-07 -0.00194115 0.00179076 0.999997 uwb: 0.0 849.951 990.295 +imu_odom_: 1691062406.885396254 0.414197 -0.213084 9.89524 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.38114360 0 0 0 -0.000303558-0.00105341 0.00180333 0.999998 uwb: 0.0 849.951 990.295 +imu_odom_: 1691062406.900382917 0.409408 -0.208296 9.87369 -0.0553937 -0.00639159 0.04048 0 0 pose: 0.5994373 0 0 0 6.63217e-05 -0.0005848740.00180578 0.999998 uwb: 0.0 849.951 990.295 +imu_odom_: 1691062406.914379510 0.373495 -0.220267 9.92157 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 6.63217e-05 -0.0005848740.00180578 0.999998 uwb: 0.0 849.951 990.295 +imu_odom_: 1691062406.929440538 0.390255 -0.21069 9.88805 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.36872616 0 0 0 -0.0002704940.00015937 0.00181564 0.999998 uwb: 0.0 849.951 990.295 +imu_odom_: 1691062406.944369167 0.42138 -0.25618 9.91918 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 -0.0002704940.00015937 0.00181564 0.999998 uwb: 0.0 849.951 990.295 +imu_odom_: 1691062406.958454706 0.395043 -0.21069 9.91678 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.0 0 0 0 -0.0002704940.00015937 0.00181564 0.999998 uwb: 0.100083731 849.831 990.287 +imu_odom_: 1691062406.973370504 0.416591 -0.220267 9.85214 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.44075196 0 0 0 0.000963665 0.000485006 0.00180471 0.999998 uwb: 0.0 849.831 990.287 +imu_odom_: 1691062406.987376429 0.407014 -0.217872 9.90481 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.0 0 0 0 0.000963665 0.000485006 0.00180471 0.999998 uwb: 0.0 849.831 990.287 +imu_odom_: 1691062407.1429305 0.423774 -0.232238 9.9096 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 0.000963665 0.000485006 0.00180471 0.999998 uwb: 0.50059946 849.568 990.666 +imu_odom_: 1691062407.15432613 0.390255 -0.217872 9.89763 -0.056459 -0.00319579 0.0394148 0 0 pose: 0.0 0 0 0 0.000963665 0.000485006 0.00180471 0.999998 uwb: 0.0 849.568 990.666 +imu_odom_: 1691062407.30440866 0.37589 -0.220267 9.85453 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.42974599 0 0 0 -0.000713508-0.0004941290.00180113 0.999998 uwb: 0.0 849.568 990.666 +imu_odom_: 1691062407.44421428 0.402226 -0.222661 9.88326 -0.0553937 -0.00532632 0.0415453 0 0 pose: 0.0 0 0 0 -0.000713508-0.0004941290.00180113 0.999998 uwb: 0.0 849.568 990.666 +imu_odom_: 1691062407.58423863 0.395043 -0.227449 9.93115 -0.0532632 -0.00639159 0.0394148 0 0 pose: 0.0 0 0 0 -0.000713508-0.0004941290.00180113 0.999998 uwb: 0.49981234 848.948 991.024 +imu_odom_: 1691062407.73422784 0.411803 -0.201113 9.89763 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.42992123 0 0 0 -0.0004521030.000819597 0.00182034 0.999998 uwb: 0.0 848.948 991.024 +imu_odom_: 1691062407.87360769 0.399832 -0.208296 9.9096 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0 0 0 -0.0004521030.000819597 0.00182034 0.999998 uwb: 0.0 848.948 991.024 +imu_odom_: 1691062407.101494435 0.399832 -0.227449 9.89284 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0 0 0 -0.0004521030.000819597 0.00182034 0.999998 uwb: 0.50077476 848.995 990.63 +imu_odom_: 1691062407.115550820 0.397437 -0.227449 9.8689 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.42939341 0 0 0 0.000178155 0.000909794 0.00181455 0.999998 uwb: 0.0 848.995 990.63 +imu_odom_: 1691062407.130418218 0.385466 -0.198719 9.88326 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 0.000178155 0.000909794 0.00181455 0.999998 uwb: 0.0 848.995 990.63 +imu_odom_: 1691062407.144481018 0.380678 -0.227449 9.90242 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0 0 0 0.000178155 0.000909794 0.00181455 0.999998 uwb: 0.0 848.995 990.63 +imu_odom_: 1691062407.159402659 0.37589 -0.215478 9.87369 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.49119775 0 0 0 0.000739394 0.000878484 0.00182992 0.999998 uwb: 0.49777976 848.884 990.491 +imu_odom_: 1691062407.173460794 0.380678 -0.215478 9.91678 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 0.000739394 0.000878484 0.00182992 0.999998 uwb: 0.0 848.884 990.491 +imu_odom_: 1691062407.187552757 0.402226 -0.222661 9.87848 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0 0 0 0.000739394 0.000878484 0.00182992 0.999998 uwb: 0.0 848.884 990.491 +imu_odom_: 1691062407.202425404 0.392649 -0.225055 9.90721 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.42984834 0 0 0 -0.0002404190.000545218 0.00182954 0.999998 uwb: 0.50013609 848.685 990.611 +imu_odom_: 1691062407.216487038 0.409408 -0.241814 9.90242 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0 0 0 -0.0002404190.000545218 0.00182954 0.999998 uwb: 0.0 848.685 990.611 +imu_odom_: 1691062407.230513094 0.390255 -0.217872 9.90002 -0.056459 -0.00532632 0.04048 0 0 pose: 0.37021660 0 0 0 -0.00121172 8.37096e-06 0.00183332 0.999998 uwb: 0.0 848.685 990.611 +imu_odom_: 1691062407.245489560 0.387861 -0.203507 9.88566 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.6008959 0 0 0 -0.0007046690.000322611 0.00183642 0.999998 uwb: 0.50020317 849.112 989.58 +imu_odom_: 1691062407.259619727 0.407014 -0.222661 9.88805 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0 0 0 -0.0007046690.000322611 0.00183642 0.999998 uwb: 0.0 849.112 989.58 +imu_odom_: 1691062407.273382444 0.409408 -0.21069 9.91678 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.37123730 0 0 0 0.000229183 0.000148828 0.00184672 0.999998 uwb: 0.0 849.112 989.58 +imu_odom_: 1691062407.288316916 0.402226 -0.208296 9.88566 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 0.000229183 0.000148828 0.00184672 0.999998 uwb: 0.0 849.112 989.58 +imu_odom_: 1691062407.302315267 0.407014 -0.198719 9.87369 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0 0 0 0.000229183 0.000148828 0.00184672 0.999998 uwb: 0.50020901 849.288 989.46 +imu_odom_: 1691062407.316325867 0.378284 -0.220267 9.90721 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.42695540 0 0 0 0.00134726 -0.0007230960.00185888 0.999997 uwb: 0.0 849.288 989.46 +imu_odom_: 1691062407.331441731 0.411803 -0.215478 9.90721 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0 0 0 0.00134726 -0.0007230960.00185888 0.999997 uwb: 0.0 849.288 989.46 +imu_odom_: 1691062407.345438041 0.407014 -0.220267 9.88087 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0 0 0 0.00134726 -0.0007230960.00185888 0.999997 uwb: 0.50005444 849.274 989.327 +imu_odom_: 1691062407.360320311 0.416591 -0.205901 9.89284 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.43122774 0 0 0 -0.0002431980.000452744 0.00185516 0.999998 uwb: 0.0 849.274 989.327 +imu_odom_: 1691062407.375309025 0.409408 -0.225055 9.89045 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 -0.0002431980.000452744 0.00185516 0.999998 uwb: 0.0 849.274 989.327 +imu_odom_: 1691062407.389306794 0.395043 -0.196325 9.8689 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0 0 0 -0.0002431980.000452744 0.00185516 0.999998 uwb: 0.0 849.274 989.327 +imu_odom_: 1691062407.403402257 0.392649 -0.232238 9.87848 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.43868753 0 0 0 0.000496921 0.000274422 0.00185247 0.999998 uwb: 0.49890835 849.246 989.722 +imu_odom_: 1691062407.417313412 0.366313 -0.205901 9.88326 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.0 0 0 0 0.000496921 0.000274422 0.00185247 0.999998 uwb: 0.0 849.246 989.722 +imu_odom_: 1691062407.432424901 0.399832 -0.203507 9.85932 -0.0575243 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 0.000496921 0.000274422 0.00185247 0.999998 uwb: 0.0 849.246 989.722 +imu_odom_: 1691062407.446329640 0.414197 -0.237026 9.87369 -0.056459 -0.00319579 0.04048 0 0 pose: 0.0 0 0 0 0.000496921 0.000274422 0.00185247 0.999998 uwb: 0.49992904 849.274 989.328 +imu_odom_: 1691062407.461370847 0.40462 -0.19393 9.89284 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.49024996 0 0 0 2.81445e-05 -0.0001227620.00185344 0.999998 uwb: 0.0 849.274 989.328 +imu_odom_: 1691062407.476362186 0.399832 -0.215478 9.90002 -0.0532632 -0.00319579 0.0383495 0 0 pose: 0.0 0 0 0 2.81445e-05 -0.0001227620.00185344 0.999998 uwb: 0.0 849.274 989.328 +imu_odom_: 1691062407.490371619 0.395043 -0.213084 9.86411 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.38030396 0 0 0 -0.00063261 0.000392392 0.00184606 0.999998 uwb: 0.0 849.274 989.328 +imu_odom_: 1691062407.505449863 0.407014 -0.203507 9.92157 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 -0.00063261 0.000392392 0.00184606 0.999998 uwb: 0.49953535 848.927 989.833 +imu_odom_: 1691062407.520425454 0.40462 -0.225055 9.87369 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 -0.00063261 0.000392392 0.00184606 0.999998 uwb: 0.0 848.927 989.833 +imu_odom_: 1691062407.534504877 0.414197 -0.21069 9.89045 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.6003710 0 0 0 -3.18713e-050.000408123 0.00184581 0.999998 uwb: 0.0 848.927 989.833 +imu_odom_: 1691062407.549458013 0.402226 -0.215478 9.86172 -0.0532632 -0.00532632 0.0383495 0 0 pose: 0.0 0 0 0 -3.18713e-050.000408123 0.00184581 0.999998 uwb: 0.50132593 848.719 990.084 +imu_odom_: 1691062407.564475015 0.380678 -0.222661 9.91199 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0 0 0 -3.18713e-050.000408123 0.00184581 0.999998 uwb: 0.0 848.719 990.084 +imu_odom_: 1691062407.578365465 0.402226 -0.222661 9.90481 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.44148422 0 0 0 -0.000211341-0.0002558890.00185183 0.999998 uwb: 0.0 848.719 990.084 +imu_odom_: 1691062407.593355054 0.40462 -0.229843 9.90242 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 -0.000211341-0.0002558890.00185183 0.999998 uwb: 0.0 848.719 990.084 +imu_odom_: 1691062407.608349892 0.385466 -0.232238 9.85453 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.0 0 0 0 -0.000211341-0.0002558890.00185183 0.999998 uwb: 0.50094682 847.842 990.694 +imu_odom_: 1691062407.622390530 0.373495 -0.241814 9.89763 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.43854755 0 0 0 -0.0004917090.00143281 0.00184329 0.999997 uwb: 0.0 847.842 990.694 +imu_odom_: 1691062407.637341333 0.383072 -0.215478 9.92397 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 -0.0004917090.00143281 0.00184329 0.999997 uwb: 0.0 847.842 990.694 +imu_odom_: 1691062407.651341142 0.418985 -0.213084 9.91678 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0 0 0 -0.0004917090.00143281 0.00184329 0.999997 uwb: 0.49902500 847.818 990.692 +imu_odom_: 1691062407.665261921 0.390255 -0.208296 9.90721 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.80972069 0 0 0 -5.6394e-05 -0.0001700510.00186564 0.999998 uwb: 0.0 847.818 990.692 +imu_odom_: 1691062407.680261425 0.392649 -0.225055 9.91199 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0 0 0 -5.6394e-05 -0.0001700510.00186564 0.999998 uwb: 0.0 847.818 990.692 +imu_odom_: 1691062407.694314894 0.397437 -0.225055 9.88805 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 -5.6394e-05 -0.0001700510.00186564 0.999998 uwb: 0.0 847.818 990.692 +imu_odom_: 1691062407.708345325 0.402226 -0.220267 9.92875 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.42973752 0 0 0 0.000487665 -0.0001557160.00187594 0.999998 uwb: 0.49846217 847.849 990.961 +imu_odom_: 1691062407.723336664 0.399832 -0.208296 9.89763 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.5950051 0 0 0 -8.83478e-05-6.57095e-060.00187547 0.999998 uwb: 0.0 847.849 990.961 +imu_odom_: 1691062407.738328877 0.397437 -0.208296 9.86172 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 -8.83478e-05-6.57095e-060.00187547 0.999998 uwb: 0.0 847.849 990.961 +imu_odom_: 1691062407.752334228 0.428562 -0.222661 9.90481 -0.056459 -0.00426106 0.04048 0 0 pose: 0.38063932 0 0 0 -0.0007430650.000750997 0.00187999 0.999998 uwb: 0.49974531 847.778 990.956 +imu_odom_: 1691062407.767246828 0.40462 -0.215478 9.85932 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.0 0 0 0 -0.0007430650.000750997 0.00187999 0.999998 uwb: 0.0 847.778 990.956 +imu_odom_: 1691062407.781369703 0.42138 -0.19393 9.91199 -0.056459 -0.00319579 0.0394148 0 0 pose: 0.0 0 0 0 -0.0007430650.000750997 0.00187999 0.999998 uwb: 0.0 847.778 990.956 +imu_odom_: 1691062407.795250238 0.397437 -0.201113 9.92397 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.6001668 0 0 0 -0.0006497120.00015766 0.00188232 0.999998 uwb: 0.50001653 847.651 991.082 +imu_odom_: 1691062407.810257908 0.390255 -0.23942 9.91199 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 -0.0006497120.00015766 0.00188232 0.999998 uwb: 0.0 847.651 991.082 +imu_odom_: 1691062407.824384283 0.392649 -0.215478 9.89284 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 -0.0006497120.00015766 0.00188232 0.999998 uwb: 0.0 847.651 991.082 +imu_odom_: 1691062407.838398383 0.42138 -0.21069 9.88805 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.42994458 0 0 0 0.000832779 -0.0002189910.00187816 0.999998 uwb: 0.0 847.651 991.082 +imu_odom_: 1691062407.853310982 0.387861 -0.222661 9.87848 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 0.000832779 -0.0002189910.00187816 0.999998 uwb: 0.50142801 847.819 991.492 +imu_odom_: 1691062407.867266173 0.411803 -0.21069 9.87369 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 0.000832779 -0.0002189910.00187816 0.999998 uwb: 0.0 847.819 991.492 +imu_odom_: 1691062407.881337140 0.402226 -0.208296 9.89524 -0.056459 -0.00319579 0.04048 0 0 pose: 0.43000873 0 0 0 0.000393929 -0.0001092860.00187834 0.999998 uwb: 0.0 847.819 991.492 +imu_odom_: 1691062407.896259655 0.426168 -0.203507 9.92157 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0 0 0 0.000393929 -0.0001092860.00187834 0.999998 uwb: 0.50050646 847.754 990.955 +imu_odom_: 1691062407.910362117 0.387861 -0.215478 9.92636 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0 0 0 0.000393929 -0.0001092860.00187834 0.999998 uwb: 0.0 847.754 990.955 +imu_odom_: 1691062407.925347040 0.409408 -0.229843 9.89045 -0.0553937 -0.00639159 0.0383495 0 0 pose: 0.42962088 0 0 0 0.000325992 -0.0001172390.00187823 0.999998 uwb: 0.0 847.754 990.955 +imu_odom_: 1691062407.939314187 0.397437 -0.220267 9.86411 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 0.000325992 -0.0001172390.00187823 0.999998 uwb: 0.0 847.754 990.955 +imu_odom_: 1691062407.953262962 0.407014 -0.234632 9.88566 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.0 0 0 0 0.000325992 -0.0001172390.00187823 0.999998 uwb: 0.49909207 847.484 991.073 +imu_odom_: 1691062407.968366286 0.385466 -0.203507 9.87129 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.43028869 0 0 0 -0.00037905 9.11783e-05 0.00187558 0.999998 uwb: 0.0 847.484 991.073 +imu_odom_: 1691062407.983340418 0.416591 -0.222661 9.92875 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 -0.00037905 9.11783e-05 0.00187558 0.999998 uwb: 0.0 847.484 991.073 +imu_odom_: 1691062407.997255948 0.418985 -0.208296 9.88087 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0 0 0 -0.00037905 9.11783e-05 0.00187558 0.999998 uwb: 0.49886461 847.897 990.564 +imu_odom_: 1691062408.12244668 0.399832 -0.234632 9.89524 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.42967628 0 0 0 -0.000720653-1.03628e-050.00187451 0.999998 uwb: 0.0 847.897 990.564 +imu_odom_: 1691062408.27431114 0.395043 -0.203507 9.9096 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 -0.000720653-1.03628e-050.00187451 0.999998 uwb: 0.0 847.897 990.564 +imu_odom_: 1691062408.42303188 0.409408 -0.220267 9.92397 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 -0.000720653-1.03628e-050.00187451 0.999998 uwb: 0.0 847.897 990.564 +imu_odom_: 1691062408.56234474 0.399832 -0.189142 9.89284 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.43991819 0 0 0 0.000357955 -0.0004988840.0018812 0.999998 uwb: 0.50114248 848.35 990.592 +imu_odom_: 1691062408.71271900 0.426168 -0.229843 9.89045 -0.056459 -0.00532632 0.04048 0 0 pose: 0.0 0 0 0 0.000357955 -0.0004988840.0018812 0.999998 uwb: 0.0 848.35 990.592 +imu_odom_: 1691062408.86254499 0.402226 -0.227449 9.91678 -0.0575243 -0.00532632 0.04048 0 0 pose: 0.0 0 0 0 0.000357955 -0.0004988840.0018812 0.999998 uwb: 0.0 848.35 990.592 +imu_odom_: 1691062408.100252860 0.42138 -0.191536 9.87608 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.44978128 0 0 0 0.000284091 -0.0001479330.00190184 0.999998 uwb: 0.49924696 848.318 991.121 +imu_odom_: 1691062408.115283869 0.407014 -0.23942 9.89524 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 0.000284091 -0.0001479330.00190184 0.999998 uwb: 0.0 848.318 991.121 +imu_odom_: 1691062408.129218364 0.423774 -0.215478 9.89524 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 0.000284091 -0.0001479330.00190184 0.999998 uwb: 0.0 848.318 991.121 +imu_odom_: 1691062408.144344443 0.411803 -0.237026 9.94312 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.44066213 0 0 0 -0.0004370390.000174625 0.00191979 0.999998 uwb: 0.0 848.318 991.121 +imu_odom_: 1691062408.159348623 0.40462 -0.198719 9.88566 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 -0.0004370390.000174625 0.00191979 0.999998 uwb: 0.49949484 848.255 990.984 +imu_odom_: 1691062408.174455456 0.423774 -0.191536 9.91678 -0.056459 -0.00426106 0.0383495 0 0 pose: 0.0 0 0 0 -0.0004370390.000174625 0.00191979 0.999998 uwb: 0.0 848.255 990.984 +imu_odom_: 1691062408.188266592 0.399832 -0.213084 9.84975 -0.056459 -0.00532632 0.0383495 0 0 pose: 0.42966197 0 0 0 -0.000659841-0.0007072660.0019313 0.999998 uwb: 0.0 848.255 990.984 +imu_odom_: 1691062408.203339888 0.411803 -0.208296 9.90242 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 -0.000659841-0.0007072660.0019313 0.999998 uwb: 0.50012767 848.43 990.862 +imu_odom_: 1691062408.218335611 0.387861 -0.213084 9.88326 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 -0.000659841-0.0007072660.0019313 0.999998 uwb: 0.0 848.43 990.862 +imu_odom_: 1691062408.232210030 0.411803 -0.213084 9.88805 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.58924579 0 0 0 0.000346888 -0.00066466 0.00191459 0.999998 uwb: 0.0 848.43 990.862 +imu_odom_: 1691062408.247255912 0.414197 -0.201113 9.85693 -0.0543285 -0.00639159 0.04048 0 0 pose: 0.0 0 0 0 0.000346888 -0.00066466 0.00191459 0.999998 uwb: 0.50067592 848.183 990.98 +imu_odom_: 1691062408.261395129 0.414197 -0.21069 9.89045 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0 0 0 0.000346888 -0.00066466 0.00191459 0.999998 uwb: 0.0 848.183 990.98 +imu_odom_: 1691062408.276198086 0.402226 -0.191536 9.88805 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.30022942 0 0 0 9.4087e-06 -0.0006464870.00192502 0.999998 uwb: 0.0 848.183 990.98 +imu_odom_: 1691062408.291196142 0.409408 -0.23942 9.85693 -0.056459 -0.00532632 0.04048 0 0 pose: 0.42974946 0 0 0 2.88088e-05 -0.0004788010.00193201 0.999998 uwb: 0.0 848.183 990.98 +imu_odom_: 1691062408.306192740 0.397437 -0.205901 9.91918 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.0 0 0 0 2.88088e-05 -0.0004788010.00193201 0.999998 uwb: 0.50139042 847.96 990.7 +imu_odom_: 1691062408.320313875 0.383072 -0.205901 9.91678 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.0 0 0 0 2.88088e-05 -0.0004788010.00193201 0.999998 uwb: 0.0 847.96 990.7 +imu_odom_: 1691062408.335313389 0.395043 -0.205901 9.86172 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.45125982 0 0 0 0.000462345 0.000973844 0.00194381 0.999998 uwb: 0.0 847.96 990.7 +imu_odom_: 1691062408.350342941 0.418985 -0.220267 9.87129 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 0.000462345 0.000973844 0.00194381 0.999998 uwb: 0.50057969 848.175 990.714 +imu_odom_: 1691062408.364306014 0.399832 -0.237026 9.91199 -0.0543285 -0.00319579 0.04048 0 0 pose: 0.0 0 0 0 0.000462345 0.000973844 0.00194381 0.999998 uwb: 0.0 848.175 990.714 +imu_odom_: 1691062408.379376977 0.416591 -0.198719 9.93115 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.43983099 0 0 0 -0.000721934-0.00047258 0.00195666 0.999998 uwb: 0.0 848.175 990.714 +imu_odom_: 1691062408.393308555 0.387861 -0.213084 9.9096 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0 0 0 -0.000721934-0.00047258 0.00195666 0.999998 uwb: 0.0 848.175 990.714 +imu_odom_: 1691062408.408194626 0.426168 -0.241814 9.92397 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 -0.000721934-0.00047258 0.00195666 0.999998 uwb: 0.49794922 848.104 990.709 +imu_odom_: 1691062408.423323914 0.385466 -0.21069 9.89524 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.42995069 0 0 0 -0.0002737120.000458477 0.00196829 0.999998 uwb: 0.0 848.104 990.709 +imu_odom_: 1691062408.438302139 0.409408 -0.215478 9.8665 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 -0.0002737120.000458477 0.00196829 0.999998 uwb: 0.0 848.104 990.709 +imu_odom_: 1691062408.452176267 0.399832 -0.225055 9.88805 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 -0.0002737120.000458477 0.00196829 0.999998 uwb: 0.49977771 848.033 990.305 +imu_odom_: 1691062408.467296222 0.390255 -0.19393 9.88566 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.45009915 0 0 0 -0.000400283-6.45934e-050.00198092 0.999998 uwb: 0.0 848.033 990.305 +imu_odom_: 1691062408.482293403 0.390255 -0.213084 9.90481 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.0 0 0 0 -0.000400283-6.45934e-050.00198092 0.999998 uwb: 0.0 848.033 990.305 +imu_odom_: 1691062408.496224398 0.423774 -0.208296 9.88566 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0 0 0 -0.000400283-6.45934e-050.00198092 0.999998 uwb: 0.49995270 848.214 989.386 +imu_odom_: 1691062408.511290986 0.411803 -0.189142 9.90002 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.44035592 0 0 0 -0.0004511660.00015853 0.00198154 0.999998 uwb: 0.0 848.214 989.386 +imu_odom_: 1691062408.526294875 0.411803 -0.220267 9.92636 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0 0 0 -0.0004511660.00015853 0.00198154 0.999998 uwb: 0.0 848.214 989.386 +imu_odom_: 1691062408.540206039 0.407014 -0.237026 9.87608 -0.056459 -0.00532632 0.04048 0 0 pose: 0.0 0 0 0 -0.0004511660.00015853 0.00198154 0.999998 uwb: 0.0 848.214 989.386 +imu_odom_: 1691062408.555157434 0.414197 -0.225055 9.87129 -0.0543285 -0.00319579 0.04048 0 0 pose: 0.37935933 0 0 0 -1.71129e-05-0.0004492120.00197805 0.999998 uwb: 0.50000810 848.262 989.389 +imu_odom_: 1691062408.570146450 0.402226 -0.201113 9.9096 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 -1.71129e-05-0.0004492120.00197805 0.999998 uwb: 0.0 848.262 989.389 +imu_odom_: 1691062408.584201969 0.395043 -0.217872 9.91918 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.5918850 0 0 0 -0.000598935-0.0003256810.00198097 0.999998 uwb: 0.0 848.262 989.389 +imu_odom_: 1691062408.599169404 0.399832 -0.229843 9.88087 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0 0 0 -0.000598935-0.0003256810.00198097 0.999998 uwb: 0.49993519 848.733 989.157 +imu_odom_: 1691062408.613214133 0.378284 -0.201113 9.88805 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0 0 0 -0.000598935-0.0003256810.00198097 0.999998 uwb: 0.0 848.733 989.157 +imu_odom_: 1691062408.628153864 0.402226 -0.241814 9.89524 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.43935272 0 0 0 0.000332678 0.000381464 0.00199099 0.999998 uwb: 0.0 848.733 989.157 +imu_odom_: 1691062408.643259822 0.397437 -0.220267 9.90002 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0 0 0 0.000332678 0.000381464 0.00199099 0.999998 uwb: 0.0 848.733 989.157 +imu_odom_: 1691062408.657166611 0.373495 -0.205901 9.93115 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 0.000332678 0.000381464 0.00199099 0.999998 uwb: 0.50061177 848.9 989.169 +imu_odom_: 1691062408.672139879 0.395043 -0.203507 9.91439 -0.0543285 -0.00532632 0.0383495 0 0 pose: 0.43072641 0 0 0 -0.00107771 0.000137046 0.00199845 0.999997 uwb: 0.0 848.9 989.169 +imu_odom_: 1691062408.687139685 0.426168 -0.222661 9.8689 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 -0.00107771 0.000137046 0.00199845 0.999997 uwb: 0.0 848.9 989.169 +imu_odom_: 1691062408.702133074 0.407014 -0.225055 9.92875 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0 0 0 -0.00107771 0.000137046 0.00199845 0.999997 uwb: 0.50050387 849.067 989.181 +imu_odom_: 1691062408.717196746 0.414197 -0.205901 9.89045 -0.0532632 -0.00426106 0.0394148 0 0 pose: 0.43925648 0 0 0 0.00048425 0.000785263 0.00199286 0.999998 uwb: 0.0 849.067 989.181 +imu_odom_: 1691062408.731205605 0.418985 -0.19393 9.88087 -0.056459 -0.00532632 0.04048 0 0 pose: 0.0 0 0 0 0.00048425 0.000785263 0.00199286 0.999998 uwb: 0.0 849.067 989.181 +imu_odom_: 1691062408.746201037 0.409408 -0.217872 9.89045 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0 0 0 0.00048425 0.000785263 0.00199286 0.999998 uwb: 0.49811545 849.062 988.916 +imu_odom_: 1691062408.760151570 0.42138 -0.205901 9.89284 -0.0575243 -0.00426106 0.0394148 0 0 pose: 0.45044328 0 0 0 -0.00013769 -6.95455e-050.00199448 0.999998 uwb: 0.0 849.062 988.916 +imu_odom_: 1691062408.775239155 0.414197 -0.225055 9.90002 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0 0 0 -0.00013769 -6.95455e-050.00199448 0.999998 uwb: 0.0 849.062 988.916 +imu_odom_: 1691062408.790250043 0.414197 -0.21069 9.88326 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0 0 0 -0.00013769 -6.95455e-050.00199448 0.999998 uwb: 0.0 849.062 988.916 +imu_odom_: 1691062408.812188516 0.40462 -0.217872 9.91439 -0.0532632 -0.00426106 0.0383495 0 0 pose: 0.44013428 0 0 0 0.00041827 -0.00116151 0.00200636 0.999997 uwb: 0.50263274 848.816 989.691 +imu_odom_: 1691062408.829120930 0.0909797 -0.270545 9.8282 -0.0639159 0.0266316 0.0138484 0 0 pose: 0.0 0 0 0 0.00041827 -0.00116151 0.00200636 0.999997 uwb: 0.0 848.816 989.691 +imu_odom_: 1691062408.845170299 -0.0430956 0.0215478 10.0437 -0.052198 0.00639159 -0.0607201 0.02 0.05 pose: 0.43972308 0 0 0 0.00045809 -0.0002698340.00200829 0.999998 uwb: 0.49653483 848.807 989.823 +imu_odom_: 1691062408.862170954 -0.64404 0.184354 9.43076 -0.0511327 0.0245011 -0.0319579 0.04 0.11 pose: 0.0 0 0 0 0.00045809 -0.0002698340.00200829 0.999998 uwb: 0.0 848.807 989.823 +imu_odom_: 1691062408.878282731 -0.739808 -0.675165 10.094 -0.0649811 0.0127832 0.106526 0.03 0.11 pose: 0.0 0 0 0 0.00045809 -0.0002698340.00200829 0.999998 uwb: 0.0 848.807 989.823 +imu_odom_: 1691062408.895170235 -0.342371 -0.976834 9.83777 -0.0479369 -0.0671117 0.153398 0.03 0.11 pose: 0.74006915 0 0 0 -0.0001087880.00620026 0.000642013 0.999981 uwb: 0.49887076 848.631 989.944 +imu_odom_: 1691062408.911129491 0.213084 0.0287304 9.89284 -0.0276969 -0.0458064 0.152333 0.03 0.11 pose: 0.0 0 0 0 -0.0001087880.00620026 0.000642013 0.999981 uwb: 0.0 848.631 989.944 +imu_odom_: 1691062408.928170099 0.385466 0.222661 9.76116 -0.052198 -0.0170442 0.18003 0.05 0.11 pose: 0.0 0 0 0 -0.0001087880.00620026 0.000642013 0.999981 uwb: 0.0 848.631 989.944 +imu_odom_: 1691062408.944113316 0.184354 -0.237026 10.0556 -0.0607201 0.0149137 0.149137 0.05 0.11 pose: 0.32988199 0 0 0 -0.0008164670.00749711 0.00232018 0.999969 uwb: 0.0 848.631 989.944 +imu_odom_: 1691062408.961166463 -0.11971 -0.287304 9.98861 -0.0553937 -0.00745685 0.111853 0.09 0.11 pose: 0.40940852 0 0 0 0.000799371 0.00832667 0.00484823 0.999953 uwb: 0.50107837 848.885 990.093 +imu_odom_: 1691062408.977217874 -0.244209 -0.301669 9.59835 -0.0596548 -0.00745685 0.126766 0.09 0.11 pose: 0.0 0 0 0 0.000799371 0.00832667 0.00484823 0.999953 uwb: 0.0 848.885 990.093 +imu_odom_: 1691062408.994266647 -0.0263362 -0.181959 9.95988 -0.0639159 -0.0191748 0.118244 0.09 0.11 pose: 0.0 0 0 0 0.000799371 0.00832667 0.00484823 0.999953 uwb: 0.0 848.885 990.093 +imu_odom_: 1691062409.10154167 0.131681 -0.124498 9.78271 -0.0639159 -0.00852212 0.122505 0.08 0.05 pose: 0.7076607 0 0 0 0.00062707 0.00900129 0.00510189 0.999946 uwb: 0.50116294 848.787 990.485 +imu_odom_: 1691062409.27200035 0.35913 -0.28491 10.1418 -0.0639159 -0.00532632 0.118244 0.12 0.08 pose: 0.0 0 0 0 0.00062707 0.00900129 0.00510189 0.999946 uwb: 0.0 848.787 990.485 +imu_odom_: 1691062409.43199838 -0.0502782 -0.234632 9.51935 -0.0617853 -0.00958738 0.0830906 0.12 0.08 pose: 0.50992632 0.00999995 3.22119e-05 0 0.000945413 0.013217 0.00716805 0.999887 uwb: 0.0 848.787 990.485 +imu_odom_: 1691062409.60086186 -0.222661 -0.155623 9.8665 -0.0660464 -0.0138484 0.0894822 0.13 0.08 pose: 0.7142520 0.00999995 3.22119e-05 0 0.00136536 0.0127285 0.0077875 0.999888 uwb: 0.49916557 848.787 991.279 +imu_odom_: 1691062409.76209055 0.423774 -0.265756 10.1347 -0.0820254 -0.00852212 0.107592 0.13 0.08 pose: 0.0 0.00999995 3.22119e-05 0 0.00136536 0.0127285 0.0077875 0.999888 uwb: 0.0 848.787 991.279 +imu_odom_: 1691062409.93085487 0.380678 -0.122104 10.1275 -0.0798948 -0.02024 0.0788296 0.13 0.08 pose: 0.33829562 0.00999995 3.22119e-05 0 0.000636734 0.0141049 0.0087162 0.999862 uwb: 0.0 848.787 991.279 +imu_odom_: 1691062409.109086457 0.837971 0.0047884 9.63666 -0.092678 -0.0671117 0.0980043 0.11 0.05 pose: 0.41959238 0.0158599 7.59036e-05 0 0.000546147 0.0116114 0.00983104 0.999884 uwb: 0.49943975 848.844 991.547 +imu_odom_: 1691062409.126130283 0.933739 -0.141258 9.85932 -0.1012 -0.0330232 0.125701 0.11 0.05 pose: 0.7017120 0.0199998 7.4575e-05 0 0.000637725 0.0107217 0.0100404 0.999892 uwb: 0.0 848.844 991.547 +imu_odom_: 1691062409.142129794 0.857124 -0.632069 9.91439 -0.0894822 -0.00106526 0.12144 0.11 0.05 pose: 0.0 0.0199998 7.4575e-05 0 0.000637725 0.0107217 0.0100404 0.999892 uwb: 0.0 848.844 991.547 +imu_odom_: 1691062409.159078842 1.16358 -0.452504 10.1323 -0.0713727 -0.0319579 0.0894822 0.11 0 pose: 0.42027187 0.0199998 7.4575e-05 0 -0.0006555480.00634185 0.0116994 0.999911 uwb: 0.50039337 849.131 991.563 +imu_odom_: 1691062409.175124430 0.962469 0.100556 9.84975 -0.0639159 -0.0340885 0.0671117 0.08 -0.02 pose: 0.0 0.0199998 7.4575e-05 0 -0.0006555480.00634185 0.0116994 0.999911 uwb: 0.0 849.131 991.563 +imu_odom_: 1691062409.192118971 1.1564 -0.0454898 10.149 -0.0639159 0.0394148 0.0596548 0.08 -0.02 pose: 0.0 0.0199998 7.4575e-05 0 -0.0006555480.00634185 0.0116994 0.999911 uwb: 0.0 849.131 991.563 +imu_odom_: 1691062409.208068906 0.476446 -0.344765 9.83538 -0.056459 0.036219 0.0319579 0.06 0.02 pose: 0.23952169 0.0199998 7.4575e-05 0 -0.000882 0.00373478 0.0122172 0.999918 uwb: 0.50006383 849.114 991.43 +imu_odom_: 1691062409.225062281 0.481235 -0.445322 10.0365 -0.0500674 -0.00106526 0.00745685 0.06 0.02 pose: 0.0 0.0199998 7.4575e-05 0 -0.000882 0.00373478 0.0122172 0.999918 uwb: 0.0 849.114 991.43 +imu_odom_: 1691062409.241060917 0.890643 -0.349553 9.68455 -0.0628506 -0.00106526 0.0138484 0.06 0.02 pose: 0.34065489 0.0199998 7.4575e-05 0 -0.0008057940.00116573 0.0124822 0.999921 uwb: 0.0 849.114 991.43 +imu_odom_: 1691062409.268142240 0.737414 -0.378284 9.93354 -0.0511327 -0.0287621 0.0490022 0.07 0.02 pose: 0.40913465 0.0299997 0.00012129 0 -0.00320648 -0.0014515 0.0119651 0.999922 uwb: 0.49941642 849.392 990.787 +imu_odom_: 1691062409.293055902 0.196325 -0.246603 9.68694 -0.0479369 0.0511327 -0.0308927 0.05 0 pose: 0.7018578 0.0299997 0.00012129 0 -0.00340129 -0.0022077 0.0119966 0.99992 uwb: 0.0 849.392 990.787 +imu_odom_: 1691062409.310065608 -1.29287 0.296881 9.98143 -0.0383495 0.0798948 -0.0543285 0.08 0.05 pose: 0.0 0.0299997 0.00012129 0 -0.00340129 -0.0022077 0.0119966 0.99992 uwb: 0.50004633 849.432 990.526 +imu_odom_: 1691062409.335110210 -0.612916 -0.770933 10.0149 -0.0660464 -0.052198 0.0788296 0.08 0.05 pose: 0.0 0.0299997 0.00012129 0 -0.00340129 -0.0022077 0.0119966 0.99992 uwb: 0.0 849.432 990.526 +imu_odom_: 1691062409.352102127 0.229843 -0.802058 9.84256 -0.0351537 -0.076699 0.0575243 0.1 0 pose: 0.52051852 0.0299997 0.00012129 0 -0.00324234 -0.00024472 0.0108837 0.999935 uwb: 0.50108744 849.338 990.124 +imu_odom_: 1691062409.377201847 0.711078 0.0622492 9.36372 -0.0426106 0.00213053 0.0735032 0.1 0 pose: 0.0 0.0299997 0.00012129 0 -0.00324234 -0.00024472 0.0108837 0.999935 uwb: 0.0 849.338 990.124 +imu_odom_: 1691062409.401203009 -0.0861913 -0.208296 10.0293 -0.0607201 0.0298274 0.0500674 0.12 0 pose: 0.77070500 0.0399997 0.000140628 0 -0.00359622 0.000890675 0.0114886 0.999927 uwb: 0.49867568 849.249 990.382 +imu_odom_: 1691062409.425189590 0.0574608 -0.349553 9.39245 -0.0532632 -0.0415453 0.0490022 0.12 0 pose: 0.6903968 0.0399997 0.000140628 0 -0.00351178 0.00169089 0.0115269 0.999926 uwb: 0.0 849.249 990.382 +imu_odom_: 1691062409.450047260 0.258574 -0.507571 9.90481 -0.0543285 0.00213053 0.0788296 0.11 0 pose: 0.41083775 0.0399997 0.000140628 0 -0.0039215 0.00553469 0.0117413 0.999908 uwb: 0.50004050 849.436 989.735 +imu_odom_: 1691062409.475034995 0.0742203 -0.0981623 9.91918 -0.052198 -0.0276969 0.0639159 0.14 0 pose: 0.0 0.0399997 0.000140628 0 -0.0039215 0.00553469 0.0117413 0.999908 uwb: 0.0 849.436 989.735 +imu_odom_: 1691062409.489026074 0.282516 -0.414197 9.51456 -0.0500674 -0.00532632 0.072438 0.14 0 pose: 0.0 0.0399997 0.000140628 0 -0.0039215 0.00553469 0.0117413 0.999908 uwb: 0.0 849.436 989.735 +imu_odom_: 1691062409.505228849 0.476446 -0.407014 9.74919 -0.0511327 -0.0170442 0.0617853 0.14 0 pose: 0.31914451 0.0499996 0.000179442 0 -0.00582917 0.00637566 0.0123088 0.999887 uwb: 0.0 849.436 989.735 +imu_odom_: 1691062409.529199099 0.481235 -0.248997 10.0054 -0.0458064 0.0170442 0.0585895 0.19 0.05 pose: 0.0 0.0499996 0.000179442 0 -0.00582917 0.00637566 0.0123088 0.999887 uwb: 0.0 849.436 989.735 +imu_odom_: 1691062409.554056769 0.184354 -0.184354 9.71567 -0.0458064 -0.00106526 0.0553937 0.19 0.05 pose: 0.55059689 0.0499996 0.000179442 0 -0.00599331 0.00495178 0.0129925 0.999885 uwb: 0.100085090 849.165 989.848 +imu_odom_: 1691062409.579369667 0.107739 -0.318429 9.97903 -0.0372843 -0.00532632 0.0458064 0.14 0.02 pose: 0.41893039 0.0599994 0.000238711 0 -0.00344069 0.00554724 0.0133589 0.999889 uwb: 0.0 849.165 989.848 +imu_odom_: 1691062409.606126118 0.557849 -0.124498 9.60554 -0.0660464 -0.0117179 0.056459 0.19 0.02 pose: 0.7053281 0.0599994 0.000238711 0 -0.00352574 0.00623393 0.013382 0.999885 uwb: 0.50027963 849.173 989.717 +imu_odom_: 1691062409.631229046 0.469264 -0.476446 9.8665 -0.0735032 -0.036219 0.0617853 0.19 0.02 pose: 0.0 0.0599994 0.000238711 0 -0.00352574 0.00623393 0.013382 0.999885 uwb: 0.0 849.173 989.717 +imu_odom_: 1691062409.648058527 0.28491 -0.181959 9.83538 -0.056459 -0.0117179 0.0490022 0.18 0.02 pose: 0.25057726 0.0599994 0.000238711 0 -0.00346067 0.00738586 0.0134999 0.999876 uwb: 0.50041670 848.763 989.423 +imu_odom_: 1691062409.673209573 0.011971 -0.220267 9.7037 -0.056459 -0.00639159 0.0426106 0.18 0.02 pose: 0.0 0.0599994 0.000238711 0 -0.00346067 0.00738586 0.0134999 0.999876 uwb: 0.0 848.763 989.423 +imu_odom_: 1691062409.698152398 0.512359 -0.418985 9.97664 -0.0490022 -0.0149137 0.0372843 0.19 0 pose: 0.52016273 0.0699992 0.000308221 0 -0.00411926 0.0037554 0.0139731 0.999887 uwb: 0.49926769 848.748 989.289 +imu_odom_: 1691062409.711992705 0.320823 -0.0430956 9.8258 -0.0394148 -0.00319579 0.0383495 0.19 0 pose: 0.0 0.0699992 0.000308221 0 -0.00411926 0.0037554 0.0139731 0.999887 uwb: 0.0 848.748 989.289 +imu_odom_: 1691062409.736134432 0.351948 -0.328006 10.3477 -0.0436758 0.015979 0.0426106 0.16 0 pose: 0.42133631 0.0799991 0.000287955 0 -0.00316824 0.00590524 0.0140602 0.999879 uwb: 0.0 848.748 989.289 +imu_odom_: 1691062409.753110892 0.110133 -0.0550666 9.90242 -0.04048 -0.00106526 0.0458064 0.16 0 pose: 0.0 0.0799991 0.000287955 0 -0.00316824 0.00590524 0.0140602 0.999879 uwb: 0.49995301 848.667 988.752 +imu_odom_: 1691062409.778114958 0.37589 -0.0814029 10.2232 -0.0447411 -0.00745685 0.0479369 0.16 0 pose: 0.38782549 0.0799991 0.000287955 0 -0.00311066 0.0040003 0.0140331 0.999889 uwb: 0.0 848.667 988.752 +imu_odom_: 1691062409.795004222 0.521936 -0.155623 10.3741 -0.0553937 -0.0170442 0.0500674 0.16 0 pose: 0.0 0.0799991 0.000287955 0 -0.00311066 0.0040003 0.0140331 0.999889 uwb: 0.49881275 848.636 988.218 +imu_odom_: 1691062409.819998665 0.775721 -0.213084 9.81383 -0.0500674 0.00213053 0.056459 0.17 0.02 pose: 0.40916965 0.0899991 0.000268383 0 -0.00240933 0.00425923 0.0141421 0.999888 uwb: 0.0 848.636 988.218 +imu_odom_: 1691062409.844996899 0.392649 -0.241814 9.77313 -0.0745685 -0.0351537 0.0649811 0.17 0.02 pose: 0.0 0.0899991 0.000268383 0 -0.00240933 0.00425923 0.0141421 0.999888 uwb: 0.50114285 848.589 986.752 +imu_odom_: 1691062409.868009739 0.833182 -0.146046 10.2496 -0.0500674 -0.00319579 0.036219 0.17 0 pose: 0.43129827 0.0999988 0.000351029 0 4.45041e-05 0.00121224 0.0143822 0.999896 uwb: 0.0 848.589 986.752 +imu_odom_: 1691062409.884019165 0.275333 -0.138864 10.1825 -0.0660464 -0.02024 0.052198 0.17 0 pose: 0.0 0.0999988 0.000351029 0 4.45041e-05 0.00121224 0.0143822 0.999896 uwb: 0.0 848.589 986.752 +imu_odom_: 1691062409.911027873 0.428562 -0.177171 9.44991 -0.0490022 -0.0511327 0.0415453 0.21 -0.02 pose: 0.47865260 0.109999 0.000340999 0 -0.00207654 -7.61926e-050.014831 0.999888 uwb: 0.49736628 848.269 985.789 +imu_odom_: 1691062409.936120011 0.536301 -0.213084 10.1418 -0.0703074 0.00213053 0.0532632 0.21 -0.02 pose: 0.0 0.109999 0.000340999 0 -0.00207654 -7.61926e-050.014831 0.999888 uwb: 0.0 848.269 985.789 +imu_odom_: 1691062409.952992944 0.162806 -0.174777 10.0652 -0.0596548 0.00958738 0.0479369 0.21 0.02 pose: 0.40070373 0.109999 0.000340999 0 -9.21659e-05-0.0008595810.0149073 0.999889 uwb: 0.50115743 848.129 985.241 +imu_odom_: 1691062409.978108120 0.071826 -0.136469 9.69891 -0.0745685 0.0234358 0.0490022 0.21 0.02 pose: 0.0 0.109999 0.000340999 0 -9.21659e-05-0.0008595810.0149073 0.999889 uwb: 0.0 848.129 985.241 +imu_odom_: 1691062410.3023240 0.136469 -0.294487 10.4076 -0.0639159 0.0181095 0.0255663 0.21 -0.02 pose: 0.52022106 0.119998 0.000439156 0 0.000874678 -0.00343258 0.0151317 0.999879 uwb: 0.50003758 848.079 984.298 +imu_odom_: 1691062410.26077797 0.636858 -0.0335188 9.97424 -0.036219 0.00639159 0.0276969 0.21 -0.02 pose: 0.0 0.119998 0.000439156 0 0.000874678 -0.00343258 0.0151317 0.999879 uwb: 0.0 848.079 984.298 +imu_odom_: 1691062410.50984184 0.462081 -0.150835 10.2113 -0.0692422 -0.0138484 0.0308927 0.17 -0.02 pose: 0.41930075 0.129998 0.000541744 0 0.000736568 0.00117063 0.0152376 0.999883 uwb: 0.50097397 847.89 982.936 +imu_odom_: 1691062410.68022771 0.246603 -0.179565 9.89524 -0.052198 0 0.0245011 0.17 -0.02 pose: 0.0 0.129998 0.000541744 0 0.000736568 0.00117063 0.0152376 0.999883 uwb: 0.0 847.89 982.936 +imu_odom_: 1691062410.92954238 0.45011 -0.440533 9.46907 -0.0607201 -0.0127832 0.0468716 0.17 -0.02 pose: 0.49006415 0.139997 0.000644866 0 0.00169411 0.00044293 0.0149427 0.999887 uwb: 0.0 847.89 982.936 +imu_odom_: 1691062410.117986317 0.476446 -0.275333 9.55526 -0.0468716 -0.00958738 0.0234358 0.17 -0.02 pose: 0.0 0.139997 0.000644866 0 0.00169411 0.00044293 0.0149427 0.999887 uwb: 0.49874891 847.942 981.464 +imu_odom_: 1691062410.140991005 -0.174777 -0.0335188 10.0221 -0.0692422 0.00213053 0.0330232 0.19 -0.05 pose: 0.41930393 0.149997 0.000740542 0 0.0013751 0.000331139 0.014769 0.99989 uwb: 0.0 847.942 981.464 +imu_odom_: 1691062410.156952324 0.181959 -0.351948 10.343 -0.0468716 0.00532632 0.0245011 0.19 -0.05 pose: 0.0 0.149997 0.000740542 0 0.0013751 0.000331139 0.014769 0.99989 uwb: 0.50111692 847.782 979.692 +imu_odom_: 1691062410.184063993 0.687136 -0.102951 10.2807 -0.0639159 -0.0351537 0.0394148 0.25 0.02 pose: 0.48015770 0.149997 0.000740542 0 -0.00156645 -0.00160602 0.014609 0.999891 uwb: 0.0 847.782 979.692 +imu_odom_: 1691062410.209946455 0.414197 -0.102951 9.97185 -0.0479369 -0.0234358 0.036219 0.18 0 pose: 0.40024321 0.159996 0.000832782 0 -0.00155694 0.000801571 0.0144346 0.999894 uwb: 0.49877515 847.581 979.394 +imu_odom_: 1691062410.237045292 0.658405 -0.280122 10.3046 -0.0575243 -0.00426106 0.0319579 0.21 -0.02 pose: 0.28012796 0.169996 0.000921454 0 6.30117e-05 -0.00128815 0.0144174 0.999895 uwb: 0.0 847.581 979.394 +imu_odom_: 1691062410.252919997 0.335188 -0.1652 9.55765 -0.0511327 -0.015979 0.04048 0.21 -0.02 pose: 0.0 0.169996 0.000921454 0 6.30117e-05 -0.00128815 0.0144174 0.999895 uwb: 0.50149020 847.531 978.708 +imu_odom_: 1691062410.280039540 0.385466 -0.452504 9.61511 -0.0628506 -0.0213053 0.0426106 0.24 0 pose: 0.25035286 0.169996 0.000921454 0 0.00161788 -0.00188057 0.0143598 0.999894 uwb: 0.0 847.531 978.708 +imu_odom_: 1691062410.305113904 0.452504 -0.167594 9.92397 -0.0351537 0.0127832 0.0383495 0.18 -0.02 pose: 0.42995414 0.179996 0.0010086 0 0.000480605 -0.00216994 0.0143048 0.999895 uwb: 0.49774280 847.388 978.01 +imu_odom_: 1691062410.329982380 0.675165 -0.148441 10.2711 -0.0479369 -0.0106526 0.0287621 0.23 0 pose: 0.0 0.179996 0.0010086 0 0.000480605 -0.00216994 0.0143048 0.999895 uwb: 0.0 847.388 978.01 +imu_odom_: 1691062410.351932255 -0.0502782 -0.282516 9.94312 -0.0585895 -0.00426106 0.0543285 0.23 0 pose: 0.51971396 0.189995 0.0010949 0 0.00135025 -0.00275179 0.0142811 0.999893 uwb: 0.50178183 847.502 977.074 +imu_odom_: 1691062410.367966480 0.414197 -0.0526724 10.3453 -0.0394148 -0.0234358 0.0490022 0.18 -0.02 pose: 0.0 0.189995 0.0010949 0 0.00135025 -0.00275179 0.0142811 0.999893 uwb: 0.0 847.502 977.074 +imu_odom_: 1691062410.393127749 0.550666 0.0287304 9.70131 -0.0511327 -0.036219 0.052198 0.18 -0.02 pose: 0.24023925 0.189995 0.0010949 0 0.00164105 -0.003975 0.0142296 0.99989 uwb: 0.0 847.502 977.074 +imu_odom_: 1691062410.415186692 0.198719 -0.117316 9.67736 -0.076699 -0.0479369 0.052198 0.21 0 pose: 0.38884351 0.199995 0.00117938 0 0.00359645 -0.00255431 0.0144599 0.999886 uwb: 0.49887139 847.545 975.854 +imu_odom_: 1691062410.430954953 0.790087 -0.177171 10.228 -0.0543285 0.0287621 0.0372843 0.21 0 pose: 0.0 0.199995 0.00117938 0 0.00359645 -0.00255431 0.0144599 0.999886 uwb: 0.0 847.545 975.854 +imu_odom_: 1691062410.455904209 0.837971 -0.265756 10.307 -0.0745685 -0.0223706 0.036219 0.22 0 pose: 0.56020051 0.209994 0.0012684 0 0.00470743 -0.00329706 0.0146889 0.999876 uwb: 0.50122482 847.716 974.654 +imu_odom_: 1691062410.479940090 0.23942 -0.232238 9.94551 -0.0639159 0.0117179 0.0340885 0.22 0 pose: 0.0 0.209994 0.0012684 0 0.00470743 -0.00329706 0.0146889 0.999876 uwb: 0.0 847.716 974.654 +imu_odom_: 1691062410.497043128 0.409408 -0.215478 9.83777 -0.0862864 -0.0191748 0.056459 0.18 0.02 pose: 0.6964631 0.209994 0.0012684 0 0.00439303 -0.00401186 0.0146805 0.999875 uwb: 0.49976085 847.569 973.945 +imu_odom_: 1691062410.521097381 0.603339 -0.287304 9.33739 -0.0681769 0.0223706 0.0543285 0.18 0.02 pose: 0.0 0.209994 0.0012684 0 0.00439303 -0.00401186 0.0146805 0.999875 uwb: 0.0 847.569 973.945 +imu_odom_: 1691062410.546917435 0.225055 -0.186748 10.3956 -0.0426106 0.00213053 0.0255663 0.18 0 pose: 0.49082249 0.219994 0.00136167 0 0.00214947 -0.00290943 0.0146486 0.999886 uwb: 0.49915427 848.203 972.279 +imu_odom_: 1691062410.571883897 -0.0694318 -0.1652 9.99579 -0.04048 0.0319579 0.0255663 0.18 0 pose: 0.41046473 0.229994 0.00145453 0 5.4736e-05 -0.00328385 0.014867 0.999884 uwb: 0.0 848.203 972.279 +imu_odom_: 1691062410.596884188 0.0670376 -0.320823 9.90242 -0.0511327 -0.0223706 0.0308927 0.18 0 pose: 0.43835591 0.239993 0.00155188 0 0.000720276 0.0016003 0.014559 0.999892 uwb: 0.49947797 848.189 971.179 +imu_odom_: 1691062410.613071809 0.794875 -0.150835 9.56723 -0.0426106 -0.015979 0.04048 0.18 0 pose: 0.0 0.239993 0.00155188 0 0.000720276 0.0016003 0.014559 0.999892 uwb: 0.0 848.189 971.179 +imu_odom_: 1691062410.634896867 0.332794 -0.347159 9.84975 -0.0447411 -0.0138484 0.0436758 0.19 0 pose: 0.41187912 0.246348 0.0016095 0 0.000178374 0.00199674 0.0144545 0.999894 uwb: 0.0 848.189 971.179 +imu_odom_: 1691062410.660038597 0.418985 -0.181959 9.84256 -0.0319579 0.0138484 0.0276969 0.19 0 pose: 0.0 0.246348 0.0016095 0 0.000178374 0.00199674 0.0144545 0.999894 uwb: 0.50058325 848.655 970.033 +imu_odom_: 1691062410.677019443 0.418985 -0.306458 9.95988 -0.0553937 -0.00319579 0.0426106 0.21 0 pose: 0.28936670 0.249993 0.00164198 0 -0.0012274 0.00194653 0.0144524 0.999893 uwb: 0.0 848.655 970.033 +imu_odom_: 1691062410.702084767 0.56982 -0.196325 9.73482 -0.0287621 0.0308927 0.0287621 0.21 0 pose: 0.0 0.249993 0.00164198 0 -0.0012274 0.00194653 0.0144524 0.999893 uwb: 0.49871099 848.583 968.23 +imu_odom_: 1691062410.727990559 0.538695 -0.198719 10.0317 -0.0426106 0.0255663 0.0276969 0.23 0.02 pose: 0.24953047 0.259992 0.00173041 0 -0.0003239960.000682612 0.0143554 0.999897 uwb: 0.0 848.583 968.23 +imu_odom_: 1691062410.755164636 0.361524 0.023942 10.0652 -0.0500674 -0.0383495 0.0479369 0.23 0.02 pose: 0.43037992 0.259992 0.00173041 0 -8.27458e-05-0.00228652 0.0141833 0.999897 uwb: 0.50165351 848.607 967.545 +imu_odom_: 1691062410.770865531 0.711078 -0.392649 9.78271 -0.0809601 0.0170442 0.0436758 0.23 0 pose: 0.0 0.259992 0.00173041 0 -8.27458e-05-0.00228652 0.0141833 0.999897 uwb: 0.0 848.607 967.545 +imu_odom_: 1691062410.795850366 0.215478 -0.25618 9.95509 -0.0298274 0.00958738 0.02024 0.23 0 pose: 0.50912499 0.269992 0.00181409 0 0.00246155 -0.00333799 0.0141933 0.999891 uwb: 0.49888598 848.843 966.351 +imu_odom_: 1691062410.818909881 0.603339 -0.201113 9.60314 -0.04048 -0.02024 0.0255663 0.22 -0.02 pose: 0.0 0.269992 0.00181409 0 0.00246155 -0.00333799 0.0141933 0.999891 uwb: 0.0 848.843 966.351 +imu_odom_: 1691062410.836904421 0.356736 -0.31364 9.20331 -0.0223706 0.00745685 0.0266316 0.22 -0.02 pose: 0.0 0.269992 0.00181409 0 0.00246155 -0.00333799 0.0141933 0.999891 uwb: 0.0 848.843 966.351 +imu_odom_: 1691062410.860965382 0.258574 -0.337582 9.69891 -0.0511327 -0.0106526 0.0394148 0.18 -0.02 pose: 0.75992404 0.289991 0.00197646 0 0.000327618 -0.00254233 0.0137064 0.999903 uwb: 0.49855935 848.89 966.362 +imu_odom_: 1691062410.885892766 0.665588 -0.0143652 9.98382 -0.0308927 -0.0415453 0.036219 0.18 -0.02 pose: 0.5949770 0.289991 0.00197646 0 4.23546e-06 -0.00207026 0.0137066 0.999904 uwb: 0.0 848.89 966.362 +imu_odom_: 1691062410.910905889 0.553061 -0.368707 9.93354 -0.0585895 -0.00958738 0.0490022 0.19 0 pose: 0.43038575 0.297469 0.00203174 0 0.00100464 -0.00294734 0.0136631 0.999902 uwb: 0.49976960 849.149 964.897 +imu_odom_: 1691062410.934077972 0.593762 -0.220267 10.2089 -0.0511327 -0.04048 0.0553937 0.18 0 pose: 0.0 0.297469 0.00203174 0 0.00100464 -0.00294734 0.0136631 0.999902 uwb: 0.0 849.149 964.897 +imu_odom_: 1691062410.951877997 -0.059855 -0.251391 9.54568 -0.0777643 0.04048 0.052198 0.18 0 pose: 0.30978933 0.299991 0.0020502 0 -0.00109394 -0.00490976 0.0138345 0.999892 uwb: 0.50147562 849.329 963.827 +imu_odom_: 1691062410.975932542 0.292093 -0.035913 9.58399 -0.0532632 0.0127832 0.0255663 0.18 0 pose: 0.0 0.299991 0.0020502 0 -0.00109394 -0.00490976 0.0138345 0.999892 uwb: 0.0 849.329 963.827 +imu_odom_: 1691062411.862843 0.11971 -0.323217 10.137 -0.0788296 -0.00745685 0.0383495 0.18 0 pose: 0.41015851 0.309991 0.00212702 0 -0.000577791-0.00425005 0.0140363 0.999892 uwb: 0.49971711 849.265 962.975 +imu_odom_: 1691062411.25825819 0.383072 -0.222661 10.343 -0.0553937 0.00213053 0.0394148 0.19 0 pose: 0.42975293 0.31999 0.00220781 0 -0.000472306-0.0005026780.01389 0.999903 uwb: 0.0 849.265 962.975 +imu_odom_: 1691062411.41825059 0.332794 -0.177171 9.9527 -0.0639159 -0.0106526 0.0511327 0.19 0 pose: 0.6006056 0.31999 0.00220781 0 -0.00044633 0.000116802 0.0138897 0.999903 uwb: 0.0 849.265 962.975 +imu_odom_: 1691062411.66819825 0.521936 -0.0694318 10.2304 -0.0617853 -0.0223706 0.0351537 0.18 -0.02 pose: 0.0 0.31999 0.00220781 0 -0.00044633 0.000116802 0.0138897 0.999903 uwb: 0.49980486 849.396 962.449 +imu_odom_: 1691062411.82943589 0.110133 -0.19393 9.89524 -0.0628506 0.0383495 0.0298274 0.18 -0.02 pose: 0.40958135 0.32999 0.00228561 0 0.00122292 0.0023898 0.0139727 0.999899 uwb: 0.0 849.396 962.449 +imu_odom_: 1691062411.108809445 -0.122104 0.0167594 9.97424 -0.0479369 -0.0213053 0.0340885 0.19 0 pose: 0.0 0.32999 0.00228561 0 0.00122292 0.0023898 0.0139727 0.999899 uwb: 0.50140885 849.317 961.589 +imu_odom_: 1691062411.133927277 -0.035913 -0.198719 10.3382 -0.0703074 -0.0255663 0.0319579 0.19 0 pose: 0.42013242 0.33999 0.00236419 0 0.00233512 0.00321807 0.0138339 0.999896 uwb: 0.0 849.317 961.589 +imu_odom_: 1691062411.158808017 0.37589 -0.294487 9.78271 -0.0585895 -0.0447411 0.0468716 0.18 -0.02 pose: 0.44087001 0.347589 0.00242258 0 0.00251598 0.00704307 0.013674 0.999879 uwb: 0.49983699 849.029 961.656 +imu_odom_: 1691062411.181785015 0.332794 -0.577003 10.0341 -0.0820254 -0.0372843 0.0479369 0.18 -0.02 pose: 0.6011599 0.34999 0.00244031 0 0.00205025 0.00653032 0.0136934 0.999883 uwb: 0.0 849.029 961.656 +imu_odom_: 1691062411.205811288 0.665588 -0.167594 10.1011 -0.0468716 -0.0745685 0.0383495 0.23 -0.02 pose: 0.41846139 0.357019 0.00249245 0 -0.00200224 0.00434008 0.0138407 0.999893 uwb: 0.49762063 849.058 959.837 +imu_odom_: 1691062411.222855427 0.593762 -0.0454898 9.93594 -0.076699 -0.0479369 0.0330232 0.23 -0.02 pose: 0.0 0.357019 0.00249245 0 -0.00200224 0.00434008 0.0138407 0.999893 uwb: 0.0 849.058 959.837 +imu_odom_: 1691062411.246824832 0.248997 -0.251391 9.71328 -0.0575243 0.00426106 0.0266316 0.19 0 pose: 0.41070412 0.359989 0.00251521 0 -0.000295431-0.0004547770.0137698 0.999905 uwb: 0.50114348 848.866 958.088 +imu_odom_: 1691062411.271788685 0.407014 -0.299275 9.54089 -0.0756338 -0.00852212 0.0319579 0.19 0 pose: 0.0 0.359989 0.00251521 0 -0.000295431-0.0004547770.0137698 0.999905 uwb: 0.0 848.866 958.088 +imu_odom_: 1691062411.288783831 0.629675 -0.220267 10.24 -0.0383495 -0.00745685 0.036219 0.19 0 pose: 0.0 0.359989 0.00251521 0 -0.000295431-0.0004547770.0137698 0.999905 uwb: 0.0 848.866 958.088 +imu_odom_: 1691062411.312907507 0.864307 -0.282516 10.1035 -0.0745685 -0.0426106 0.0500674 0.19 0 pose: 0.48933258 0.369989 0.00258971 0 -0.00318602 0.000632022 0.0135155 0.999903 uwb: 0.0 848.866 958.088 +imu_odom_: 1691062411.336772802 0.708684 -0.349553 10.2975 -0.04048 -0.0234358 0.0394148 0.19 0 pose: 0.41118822 0.379989 0.00265975 0 -0.00289243 -0.00391939 0.013603 0.999896 uwb: 0.0 848.866 958.088 +imu_odom_: 1691062411.353793611 0.213084 -0.339977 9.55526 -0.0575243 -0.00958738 0.0426106 0.19 0 pose: 0.0 0.379989 0.00265975 0 -0.00289243 -0.00391939 0.013603 0.999896 uwb: 0.99841998 848.757 957.06 +imu_odom_: 1691062411.377825716 0.385466 -0.433351 9.75398 -0.0436758 0.0170442 0.0383495 0.19 0 pose: 0.40886104 0.389988 0.00273208 0 -0.00378944 -0.00479822 0.0136323 0.999888 uwb: 0.0 848.757 957.06 +imu_odom_: 1691062411.402823398 0.586579 -0.550666 9.47864 -0.0692422 0.0372843 0.0276969 0.19 0 pose: 0.0 0.389988 0.00273208 0 -0.00378944 -0.00479822 0.0136323 0.999888 uwb: 0.50031526 848.679 956.466 +imu_odom_: 1691062411.426772098 0.349553 -0.440533 9.57681 -0.0490022 -0.0340885 0.0596548 0.2 -0.02 pose: 0.49029787 0.397477 0.00280557 0 -0.0079478 -0.00383507 0.0134796 0.99987 uwb: 0.0 848.679 956.466 +imu_odom_: 1691062411.443849191 0.691924 -0.189142 10.1969 -0.0479369 -0.0394148 0.0468716 0.2 -0.02 pose: 0.0 0.397477 0.00280557 0 -0.0079478 -0.00383507 0.0134796 0.99987 uwb: 0.0 848.679 956.466 +imu_odom_: 1691062411.467911042 0.667982 -0.0383072 10.161 -0.0511327 -0.00213053 0.0447411 0.2 0 pose: 0.41025793 0.406058 0.0129288 0 -0.00793795 -0.00374099 0.013795 0.999866 uwb: 0.49955994 848.705 955.184 +imu_odom_: 1691062411.491920983 0.402226 -0.380678 9.75158 -0.0745685 0.0276969 0.0394148 0.2 0 pose: 0.0 0.406058 0.0129288 0 -0.00793795 -0.00374099 0.013795 0.999866 uwb: 0.0 848.705 955.184 +imu_odom_: 1691062411.517801711 0.402226 -0.229843 9.3733 -0.0681769 0.00958738 0.0479369 0.23 0 pose: 0.48071792 0.416939 0.0131009 0 -0.00723827 -0.00242659 0.0138527 0.999875 uwb: 0.50109973 848.514 953.829 +imu_odom_: 1691062411.541755369 0.435745 -0.181959 9.13388 -0.0596548 0.0170442 0.0436758 0.19 -0.02 pose: 0.0 0.416939 0.0131009 0 -0.00723827 -0.00242659 0.0138527 0.999875 uwb: 0.0 848.514 953.829 +imu_odom_: 1691062411.558752556 0.318429 -0.229843 9.83299 -0.0713727 0.0127832 0.052198 0.19 -0.02 pose: 0.31894369 0.419814 0.013152 0 -0.00440155 -0.00129708 0.0139712 0.999892 uwb: 0.49946079 848.619 952.124 +imu_odom_: 1691062411.582807408 0.148441 -0.363919 9.96227 -0.0607201 0.0372843 0.052198 0.18 0.02 pose: 0.0 0.419814 0.013152 0 -0.00440155 -0.00129708 0.0139712 0.999892 uwb: 0.0 848.619 952.124 +imu_odom_: 1691062411.606759899 0.746991 -0.4956 10.0748 -0.0617853 -0.0255663 0.0383495 0.18 0.02 pose: 0.42003909 0.429812 0.0133316 0 -0.00257465 0.00132522 0.0141599 0.999896 uwb: 0.50052815 848.638 950.966 +imu_odom_: 1691062411.630758759 0.349553 -0.395043 9.48343 -0.0383495 -0.00319579 0.0394148 0.25 0.02 pose: 0.40940638 0.436872 0.0133903 0 -0.00448025 0.000836703 0.0142451 0.999888 uwb: 0.0 848.638 950.966 +imu_odom_: 1691062411.647728825 0.445322 -0.371101 9.91918 -0.0383495 -0.00958738 0.0351537 0.25 0.02 pose: 0.0 0.436872 0.0133903 0 -0.00448025 0.000836703 0.0142451 0.999888 uwb: 0.49981366 848.298 950.855 +imu_odom_: 1691062411.672798538 0.414197 -0.280122 9.2895 -0.0447411 -0.0117179 0.0468716 0.18 0 pose: 0.40968926 0.445685 0.013465 0 -0.00696463 2.96602e-05 0.0141955 0.999875 uwb: 0.0 848.298 950.855 +imu_odom_: 1691062411.696798856 0.272939 -0.428562 9.40921 -0.0532632 -0.00532632 0.052198 0.18 0 pose: 0.0 0.445685 0.013465 0 -0.00696463 2.96602e-05 0.0141955 0.999875 uwb: 0.49995947 848.372 949.558 +imu_odom_: 1691062411.713745883 1.02232 -0.205901 10.307 -0.0383495 -0.0117179 0.0415453 0.18 0.02 pose: 0.0 0.445685 0.013465 0 -0.00696463 2.96602e-05 0.0141955 0.999875 uwb: 0.0 848.372 949.558 +imu_odom_: 1691062411.737907763 0.68953 -0.275333 10.2065 -0.0596548 -0.0383495 0.0532632 0.18 0.02 pose: 0.56113114 0.459811 0.0135853 0 -0.0058122 0.00043354 0.0144472 0.999879 uwb: 0.0 848.372 949.558 +imu_odom_: 1691062411.761857629 0.782904 -0.0191536 10.0485 -0.0266316 -0.0138484 0.0372843 0.19 0 pose: 0.34065824 0.459811 0.0135853 0 -0.00509058 -0.0033553 0.0146056 0.999875 uwb: 0.49725317 848.507 949.455 +imu_odom_: 1691062411.778782493 0.270545 -0.201113 9.47864 -0.0458064 0.0191748 0.04048 0.19 0 pose: 0.6955012 0.459811 0.0135853 0 -0.00450438 -0.00388609 0.014594 0.999876 uwb: 0.0 848.507 949.455 +imu_odom_: 1691062411.795840630 0.227449 -0.201113 10.2663 -0.0511327 -0.00745685 0.0458064 0.19 0 pose: 0.0 0.459811 0.0135853 0 -0.00450438 -0.00388609 0.014594 0.999876 uwb: 0.50265411 848.616 947.869 +imu_odom_: 1691062411.819855237 0.445322 -0.0837971 10.2807 -0.0511327 0.00213053 0.0607201 0.19 0 pose: 0.41866553 0.469811 0.0136775 0 -0.00229465 -0.00260508 0.0146016 0.999887 uwb: 0.0 848.616 947.869 +imu_odom_: 1691062411.844778554 0.94571 -0.0885855 10.2831 -0.0713727 -0.0383495 0.0330232 0.19 0 pose: 0.0 0.469811 0.0136775 0 -0.00229465 -0.00260508 0.0146016 0.999887 uwb: 0.49889795 848.644 946.988 +imu_odom_: 1691062411.861707209 0.363919 -0.222661 9.78031 -0.0351537 -0.00213053 0.0266316 0.19 0 pose: 0.41064287 0.47981 0.0137714 0 0.000532899 -0.00263415 0.0148548 0.999886 uwb: 0.0 848.644 946.988 +imu_odom_: 1691062411.885775184 0.0670376 -0.289698 9.9527 -0.0383495 -0.00213053 0.0308927 0.19 0 pose: 0.0 0.47981 0.0137714 0 0.000532899 -0.00263415 0.0148548 0.999886 uwb: 0.0 848.644 946.988 +imu_odom_: 1691062411.910869103 0.529119 -0.416591 9.94312 -0.0276969 -0.0213053 0.04048 0.19 0 pose: 0.40995756 0.48981 0.0138685 0 0.00056242 -0.00219203 0.0146595 0.99989 uwb: 0.50030651 848.751 944.499 +imu_odom_: 1691062411.935813126 0.337582 -0.402226 9.5816 -0.04048 -0.0213053 0.0447411 0.19 0.02 pose: 0.42079732 0.497003 0.0139355 0 -0.0015107 -0.00197992 0.0145991 0.99989 uwb: 0.0 848.751 944.499 +imu_odom_: 1691062411.952692204 0.586579 0.0933739 10.0963 -0.0490022 -0.0106526 0.0511327 0.19 0.02 pose: 0.0 0.497003 0.0139355 0 -0.0015107 -0.00197992 0.0145991 0.99989 uwb: 0.49991864 848.861 943.789 +imu_odom_: 1691062411.976676774 0.732626 -0.172383 9.94791 -0.0713727 0.0308927 0.0500674 0.18 -0.02 pose: 0.41823101 0.50536 0.0140127 0 -0.00182783 -0.00157981 0.0147644 0.999888 uwb: 0.0 848.861 943.789 +imu_odom_: 1691062411.994679491 0.47884 -0.325611 10.2855 -0.0447411 0.02024 0.056459 0.18 -0.02 pose: 0.0 0.50536 0.0140127 0 -0.00182783 -0.00157981 0.0147644 0.999888 uwb: 0.49975242 848.862 942.432 +imu_odom_: 1691062412.18712189 0.790087 -0.325611 10.0341 -0.0809601 -0.00639159 0.0426106 0.19 0 pose: 0.0 0.50536 0.0140127 0 -0.00182783 -0.00157981 0.0147644 0.999888 uwb: 0.0 848.862 942.432 +imu_odom_: 1691062412.42687442 0.385466 -0.435745 9.77313 -0.0596548 -0.0468716 0.0436758 0.19 0 pose: 0.41987287 0.509809 0.0140551 0 -0.00308567 -0.00339796 0.0150417 0.999876 uwb: 0.0 848.862 942.432 +imu_odom_: 1691062412.67736757 0.557849 -0.452504 9.7037 -0.0447411 0.00958738 0.036219 0.19 0 pose: 0.48007951 0.519809 0.0141564 0 -0.00559293 -0.00477456 0.0151378 0.999858 uwb: 0.0 848.862 942.432 +imu_odom_: 1691062412.91674098 0.88346 -0.023942 9.59117 -0.0692422 -0.0681769 0.0628506 0.19 0 pose: 0.0 0.519809 0.0141564 0 -0.00559293 -0.00477456 0.0151378 0.999858 uwb: 0.0 848.862 942.432 +imu_odom_: 1691062412.108685294 0.723049 -0.191536 10.1083 -0.0916127 -0.0447411 0.0532632 0.24 0 pose: 0.48986656 0.529808 0.0142596 0 -0.00620749 -0.00827243 0.0153597 0.999829 uwb: 0.99998367 848.654 941.443 +imu_odom_: 1691062412.124722164 0.418985 0.107739 9.7444 -0.0607201 -0.056459 0.0596548 0.24 0 pose: 0.7011884 0.529808 0.0142596 0 -0.00583996 -0.00891579 0.0154003 0.999825 uwb: 0.0 848.654 941.443 +imu_odom_: 1691062412.141665119 1.70946 -0.418985 10.4004 -0.072438 -0.0692422 0.0255663 0.24 0 pose: 0.0 0.529808 0.0142596 0 -0.00583996 -0.00891579 0.0154003 0.999825 uwb: 0.0 848.654 941.443 +imu_odom_: 1691062412.157673118 1.89142 -0.169988 9.28711 -0.072438 -0.0138484 -0.0937433 0.22 -0.26 pose: 0.33048940 0.539807 0.0143687 0 -0.00399612 -0.010558 0.0155588 0.999815 uwb: 0.49949027 848.974 939.588 +imu_odom_: 1691062412.175658931 1.64003 0.160412 10.1251 -0.0340885 0.04048 -0.205596 0.22 -0.26 pose: 0.0 0.539807 0.0143687 0 -0.00399612 -0.010558 0.0155588 0.999815 uwb: 0.0 848.974 939.588 +imu_odom_: 1691062412.191668388 1.0343 0.368707 9.67976 -0.0372843 0.00958738 -0.279099 0.12 -0.35 pose: 0.43924009 0.539807 0.0143687 0 -0.00309589 -0.0147632 0.0121882 0.999812 uwb: 0.0 848.974 939.588 +imu_odom_: 1691062412.206660941 0.890643 -0.237026 9.55047 -0.0543285 0.0490022 -0.371777 0.12 -0.35 pose: 0.0 0.539807 0.0143687 0 -0.00309589 -0.0147632 0.0121882 0.999812 uwb: 0.49929487 849.139 937.352 +imu_odom_: 1691062412.223687885 0.567426 -0.136469 9.62948 -0.0617853 -0.02024 -0.406931 0.12 -0.35 pose: 0.0 0.539807 0.0143687 0 -0.00309589 -0.0147632 0.0121882 0.999812 uwb: 0.0 849.139 937.352 +imu_odom_: 1691062412.237709027 0.514753 -0.114922 10.0245 -0.0607201 0.0319579 -0.409062 0.1 -0.41 pose: 0.7069335 0.539807 0.0143687 0 -0.00238987 -0.0150457 0.0110525 0.999823 uwb: 0.0 849.139 937.352 +imu_odom_: 1691062412.252707412 1.18274 -0.387861 9.58878 -0.0681769 0.0170442 -0.421845 0.1 -0.41 pose: 0.0 0.539807 0.0143687 0 -0.00238987 -0.0150457 0.0110525 0.999823 uwb: 0.0 849.139 937.352 +imu_odom_: 1691062412.269648034 0.816423 -0.454898 9.5816 -0.0692422 -0.0298274 -0.435693 0.1 -0.41 pose: 0.0 0.539807 0.0143687 0 -0.00238987 -0.0150457 0.0110525 0.999823 uwb: 0.0 849.139 937.352 +imu_odom_: 1691062412.285762185 0.785298 -0.0694318 9.98143 -0.0628506 -0.0117179 -0.444215 0.08 -0.47 pose: 0.46934476 0.549805 0.0145905 0 -8.23879e-05-0.0146233 0.00136852 0.999892 uwb: 0.0 849.139 937.352 +imu_odom_: 1691062412.303853860 0.708684 0.0694318 9.97664 -0.0639159 -0.0191748 -0.446346 0.08 -0.47 pose: 0.0 0.549805 0.0145905 0 -8.23879e-05-0.0146233 0.00136852 0.999892 uwb: 0.100171891 849.757 936.067 +imu_odom_: 1691062412.319974135 0.821211 -0.0550666 9.93833 -0.0543285 -0.0127832 -0.488956 0.07 -0.53 pose: 0.46989885 0.559804 0.0147485 0 -0.001117 -0.0163287 -0.00960608 0.99982 uwb: 0.0 849.757 936.067 +imu_odom_: 1691062412.336842433 0.768539 -0.110133 10.0724 -0.056459 0.00958738 -0.52198 0.07 -0.5 pose: 0.0 0.559804 0.0147485 0 -0.001117 -0.0163287 -0.00960608 0.99982 uwb: 0.0 849.757 936.067 +imu_odom_: 1691062412.353641908 0.792481 -0.208296 9.65342 -0.076699 0.0106526 -0.509196 0.06 -0.53 pose: 0.0 0.559804 0.0147485 0 -0.001117 -0.0163287 -0.00960608 0.99982 uwb: 0.50037681 849.788 936.544 +imu_odom_: 1691062412.369633284 0.574608 -0.373495 9.96227 -0.0639159 -0.0181095 -0.527306 0.06 -0.53 pose: 0.67187692 0.559804 0.0147484 0 0.00389373 -0.0184121 -0.0271953 0.999453 uwb: 0.0 849.788 936.544 +imu_odom_: 1691062412.386644480 0.52433 -0.0861913 9.77074 -0.0735032 -0.0276969 -0.520914 0.06 -0.53 pose: 0.0 0.559804 0.0147484 0 0.00389373 -0.0184121 -0.0271953 0.999453 uwb: 0.0 849.788 936.544 +imu_odom_: 1691062412.402766213 0.509965 -0.258574 9.8665 -0.0692422 -0.0127832 -0.461259 0.08 -0.67 pose: 0.0 0.559804 0.0147484 0 0.00389373 -0.0184121 -0.0271953 0.999453 uwb: 0.49818085 850.021 936.178 +imu_odom_: 1691062412.419721999 0.711078 -0.512359 9.86172 -0.056459 0.0149137 -0.434628 0.08 -0.67 pose: 0.32797849 0.559804 0.0147484 0 0.00202002 -0.0171876 -0.0363487 0.999189 uwb: 0.0 850.021 936.178 +imu_odom_: 1691062412.435757411 0.545878 -0.354342 9.97664 -0.0500674 0.0234358 -0.4048 0.04 -0.38 pose: 0.43083831 0.565645 0.014873 0 2.06073e-05 -0.0147981 -0.0471809 0.998777 uwb: 0.0 850.021 936.178 +imu_odom_: 1691062412.452806518 0.749385 -0.131681 10.1778 -0.056459 -0.00213053 -0.352603 0.04 -0.38 pose: 0.7008968 0.569803 0.0148963 0 -0.000413967-0.0141914 -0.0487292 0.998711 uwb: 0.50123128 849.977 936.159 +imu_odom_: 1691062412.468894423 0.423774 -0.213084 9.7875 -0.0543285 -0.00106526 -0.325971 0.04 -0.38 pose: 0.0 0.569803 0.0148963 0 -0.000413967-0.0141914 -0.0487292 0.998711 uwb: 0.0 849.977 936.159 +imu_odom_: 1691062412.486789832 0.572214 -0.244209 9.7851 -0.052198 -0.00852212 -0.315318 0.05 -0.47 pose: 0.42163456 0.569795 0.0148961 0 0.000322298 -0.012931 -0.0570152 0.99829 uwb: 0.0 849.977 936.159 +imu_odom_: 1691062412.501772178 0.684742 -0.246603 9.82341 -0.0575243 -0.00958738 -0.285491 0.04 -0.29 pose: 0.0 0.569795 0.0148961 0 0.000322298 -0.012931 -0.0570152 0.99829 uwb: 0.50045263 850.024 934.782 +imu_odom_: 1691062412.518642226 0.871489 -0.25618 10.0796 -0.0607201 -0.0149137 -0.247141 0.04 -0.29 pose: 0.0 0.569795 0.0148961 0 0.000322298 -0.012931 -0.0570152 0.99829 uwb: 0.0 850.024 934.782 +imu_odom_: 1691062412.534815577 0.579397 -0.332794 9.84256 -0.0585895 -0.00639159 -0.230097 0.04 -0.29 pose: 0.24895336 0.569803 0.0148963 0 -0.000862751-0.0119966 -0.0613062 0.998047 uwb: 0.0 850.024 934.782 +imu_odom_: 1691062412.552605126 0.588974 -0.282516 9.97185 -0.0479369 -0.00213053 -0.225836 0.03 -0.23 pose: 0.0 0.569803 0.0148963 0 -0.000862751-0.0119966 -0.0613062 0.998047 uwb: 0.49803213 850.267 934.108 +imu_odom_: 1691062412.567653671 0.471658 -0.198719 9.95509 -0.0553937 -0.0106526 -0.208792 0.03 -0.23 pose: 0.32860841 0.569803 0.0148963 0 -0.00219897 -0.0138214 -0.0660753 0.997716 uwb: 0.0 850.267 934.108 +imu_odom_: 1691062412.584883879 0.588974 -0.234632 9.94551 -0.0553937 -0.00852212 -0.192813 0.04 -0.29 pose: 0.33013653 0.569803 0.0148963 0 -0.00288313 -0.0109 -0.0703857 0.997456 uwb: 0.0 850.267 934.108 +imu_odom_: 1691062412.600674032 0.667982 -0.366313 9.80904 -0.0596548 -0.0149137 -0.175769 0.04 -0.29 pose: 0.0 0.569803 0.0148963 0 -0.00288313 -0.0109 -0.0703857 0.997456 uwb: 0.50276232 850.586 934.093 +imu_odom_: 1691062412.617604447 0.593762 -0.260968 9.95509 -0.0553937 -0.00639159 -0.160855 0.04 -0.29 pose: 0.0 0.569803 0.0148963 0 -0.00288313 -0.0109 -0.0703857 0.997456 uwb: 0.0 850.586 934.093 +imu_odom_: 1691062412.633715682 0.682347 -0.213084 9.96467 -0.056459 -0.0117179 -0.132093 0.01 -0.14 pose: 0.14989054 0.569803 0.0148963 0 -0.00203267 -0.00972495 -0.0721928 0.997341 uwb: 0.0 850.586 934.093 +imu_odom_: 1691062412.650593896 0.620098 -0.280122 9.85932 -0.0543285 0.00319579 -0.107592 0.02 -0.17 pose: 0.0 0.569803 0.0148963 0 -0.00203267 -0.00972495 -0.0721928 0.997341 uwb: 0.49652150 850.643 933.494 +imu_odom_: 1691062412.666654679 0.61531 -0.25618 9.93594 -0.0543285 -0.00852212 -0.0916127 0.02 -0.17 pose: 0.67018256 0.569803 0.0148964 0 -0.00379338 -0.0105458 -0.0787124 0.996834 uwb: 0.0 850.643 933.494 +imu_odom_: 1691062412.683745489 0.684742 -0.208296 9.88805 -0.0543285 -0.00745685 -0.0607201 0.01 -0.17 pose: 0.0 0.569803 0.0148964 0 -0.00379338 -0.0105458 -0.0787124 0.996834 uwb: 0.0 850.643 933.494 +imu_odom_: 1691062412.699673290 0.634463 -0.342371 9.87608 -0.0553937 0.00106526 -0.0340885 0.01 -0.17 pose: 0.0 0.569803 0.0148964 0 -0.00379338 -0.0105458 -0.0787124 0.996834 uwb: 0.49990729 850.273 933.329 +imu_odom_: 1691062412.715650959 0.52433 -0.339977 9.9503 -0.0553937 0 -0.00639159 0.01 -0.17 pose: 0.31984501 0.569803 0.0148964 0 -0.00260586 -0.011265 -0.080781 0.996665 uwb: 0.0 850.273 933.329 +imu_odom_: 1691062412.730762204 0.519542 -0.28491 9.90002 -0.0543285 -0.00213053 0.0234358 0 -0.02 pose: 0.41994895 0.569803 0.0148964 0 -0.00438321 -0.0104067 -0.0822107 0.996551 uwb: 0.0 850.273 933.329 +imu_odom_: 1691062412.745581530 0.533907 -0.25618 9.93354 -0.0553937 -0.00639159 0.0447411 0 -0.02 pose: 0.7002552 0.569803 0.0148964 0 -0.00433246 -0.00970106 -0.0822651 0.996554 uwb: 0.49990437 851.086 931.191 +imu_odom_: 1691062412.759577593 0.4956 -0.270545 9.8282 -0.0543285 0.00106526 0.0500674 0 -0.02 pose: 0.0 0.569803 0.0148964 0 -0.00433246 -0.00970106 -0.0822651 0.996554 uwb: 0.0 851.086 931.191 +imu_odom_: 1691062412.773748049 0.433351 -0.203507 9.9096 -0.0500674 0.00213053 0.04048 0 0 pose: 0.36924082 0.569803 0.0148964 0 -0.00335836 -0.00623273 -0.0822165 0.996589 uwb: 0.0 851.086 931.191 +imu_odom_: 1691062412.787730988 0.342371 -0.162806 9.86411 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.569803 0.0148964 0 -0.00335836 -0.00623273 -0.0822165 0.996589 uwb: 0.0 851.086 931.191 +imu_odom_: 1691062412.801862949 0.392649 -0.237026 9.92157 -0.056459 -0.00852212 0.0394148 0 0 pose: 0.0 0.569803 0.0148964 0 -0.00335836 -0.00623273 -0.0822165 0.996589 uwb: 0.50112921 850.76 931.671 +imu_odom_: 1691062412.816741767 0.466869 -0.272939 9.90002 -0.0553937 -0.00852212 0.0351537 0 0 pose: 0.42285356 0.569803 0.0148964 0 -0.00148016 -0.00255511 -0.0822154 0.99661 uwb: 0.0 850.76 931.671 +imu_odom_: 1691062412.830841649 0.4956 -0.248997 9.87848 -0.0543285 -0.00426106 0.0383495 0 0 pose: 0.0 0.569803 0.0148964 0 -0.00148016 -0.00255511 -0.0822154 0.99661 uwb: 0.0 850.76 931.671 +imu_odom_: 1691062412.844794259 0.466869 -0.270545 9.90002 -0.056459 -0.00106526 0.0426106 0 0 pose: 0.0 0.569803 0.0148964 0 -0.00148016 -0.00255511 -0.0822154 0.99661 uwb: 0.50045847 851.02 930.37 +imu_odom_: 1691062412.858580933 0.438139 -0.232238 9.87369 -0.0553937 -0.00213053 0.04048 0 0 pose: 0.0 0.569803 0.0148964 0 -0.00148016 -0.00255511 -0.0822154 0.99661 uwb: 0.0 851.02 930.37 +imu_odom_: 1691062412.873562987 0.409408 -0.225055 9.87608 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.42931310 0.569803 0.0148964 0 -0.00308728 -0.00304234 -0.0822319 0.996604 uwb: 0.0 851.02 930.37 +imu_odom_: 1691062412.887563133 0.452504 -0.272939 9.88326 -0.0543285 -0.00639159 0.0383495 0 0 pose: 0.0 0.569803 0.0148964 0 -0.00308728 -0.00304234 -0.0822319 0.996604 uwb: 0.0 851.02 930.37 +imu_odom_: 1691062412.901565611 0.457293 -0.265756 9.87129 -0.0543285 -0.00532632 0.0372843 0 0 pose: 0.0 0.569803 0.0148964 0 -0.00308728 -0.00304234 -0.0822319 0.996604 uwb: 0.49881660 850.964 930.66 +imu_odom_: 1691062412.916559331 0.447716 -0.260968 9.89524 -0.0543285 -0.00319579 0.0383495 0 0 pose: 0.42768874 0.569803 0.0148964 0 -0.00227781 -0.00176265 -0.0822282 0.996609 uwb: 0.0 850.964 930.66 +imu_odom_: 1691062412.930840896 0.440533 -0.23942 9.86172 -0.056459 -0.00319579 0.0415453 0 0 pose: 0.0 0.569803 0.0148964 0 -0.00227781 -0.00176265 -0.0822282 0.996609 uwb: 0.0 850.964 930.66 +imu_odom_: 1691062412.944616780 0.426168 -0.248997 9.8689 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0.569803 0.0148964 0 -0.00227781 -0.00176265 -0.0822282 0.996609 uwb: 0.50047597 851.067 929.597 +imu_odom_: 1691062412.959572296 0.45011 -0.225055 9.88805 -0.0543285 -0.00532632 0.0372843 0 0 pose: 0.43277763 0.569803 0.0148964 0 -0.000871205-0.00191191 -0.0822422 0.99661 uwb: 0.0 851.067 929.597 +imu_odom_: 1691062412.973722630 0.502782 -0.232238 9.89763 -0.056459 -0.00532632 0.04048 0 0 pose: 0.0 0.569803 0.0148964 0 -0.000871205-0.00191191 -0.0822422 0.99661 uwb: 0.0 851.067 929.597 +imu_odom_: 1691062412.987676406 0.486023 -0.251391 9.90242 -0.0532632 -0.00426106 0.0383495 0 0 pose: 0.0 0.569803 0.0148964 0 -0.000871205-0.00191191 -0.0822422 0.99661 uwb: 0.0 851.067 929.597 +imu_odom_: 1691062413.1710089 0.459687 -0.25618 9.88326 -0.0553937 -0.00213053 0.0394148 0 0 pose: 0.48868256 0.569803 0.0148964 0 -0.00165661 -0.00380177 -0.0822568 0.996603 uwb: 0.50072676 851.181 929.969 +imu_odom_: 1691062413.16548962 0.440533 -0.222661 9.88566 -0.056459 -0.00532632 0.0415453 0 0 pose: 0.0 0.569803 0.0148964 0 -0.00165661 -0.00380177 -0.0822568 0.996603 uwb: 0.0 851.181 929.969 +imu_odom_: 1691062413.30742465 0.438139 -0.241814 9.90721 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.569803 0.0148964 0 -0.00165661 -0.00380177 -0.0822568 0.996603 uwb: 0.0 851.181 929.969 +imu_odom_: 1691062413.44718414 0.476446 -0.248997 9.90481 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.43008895 0.569803 0.0148964 0 -0.00149798 -0.00169664 -0.0822447 0.99661 uwb: 0.50107697 851.052 929.908 +imu_odom_: 1691062413.58736941 0.47884 -0.237026 9.85932 -0.056459 -0.00532632 0.0383495 0 0 pose: 0.0 0.569803 0.0148964 0 -0.00149798 -0.00169664 -0.0822447 0.99661 uwb: 0.0 851.052 929.908 +imu_odom_: 1691062413.72568243 0.471658 -0.263362 9.91678 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0.569803 0.0148964 0 -0.00149798 -0.00169664 -0.0822447 0.99661 uwb: 0.0 851.052 929.908 +imu_odom_: 1691062413.86633429 0.459687 -0.244209 9.84496 -0.0553937 -0.00213053 0.04048 0 0 pose: 0.41888477 0.569803 0.0148964 0 -0.00199159 -0.00360883 -0.0822655 0.996602 uwb: 0.0 851.052 929.908 +imu_odom_: 1691062413.100553094 0.440533 -0.248997 9.92875 -0.0543285 -0.00319579 0.0415453 0 0 pose: 0.0 0.569803 0.0148964 0 -0.00199159 -0.00360883 -0.0822655 0.996602 uwb: 0.49744626 851.02 930.37 +imu_odom_: 1691062413.114537209 0.442927 -0.215478 9.88326 -0.0543285 -0.00639159 0.04048 0 0 pose: 0.0 0.569803 0.0148964 0 -0.00199159 -0.00360883 -0.0822655 0.996602 uwb: 0.0 851.02 930.37 +imu_odom_: 1691062413.128550195 0.466869 -0.217872 9.87129 -0.0553937 -0.00639159 0.0383495 0 0 pose: 0.41943012 0.569803 0.0148964 0 -0.00151909 -0.00156314 -0.0822408 0.99661 uwb: 0.0 851.02 930.37 +imu_odom_: 1691062413.143533133 0.433351 -0.260968 9.89524 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.569803 0.0148964 0 -0.00151909 -0.00156314 -0.0822408 0.99661 uwb: 0.0 851.02 930.37 +imu_odom_: 1691062413.157538536 0.459687 -0.234632 9.85214 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.569803 0.0148964 0 -0.00151909 -0.00156314 -0.0822408 0.99661 uwb: 0.50009133 851.717 930.063 +imu_odom_: 1691062413.171640760 0.445322 -0.244209 9.90002 -0.0543285 -0.00319579 0.04048 0 0 pose: 0.43003660 0.569803 0.0148964 0 -0.00128594 -0.00275889 -0.082248 0.996607 uwb: 0.0 851.717 930.063 +imu_odom_: 1691062413.185584921 0.454898 -0.229843 9.89045 -0.0543285 -0.00319579 0.04048 0 0 pose: 0.0 0.569803 0.0148964 0 -0.00128594 -0.00275889 -0.082248 0.996607 uwb: 0.0 851.717 930.063 +imu_odom_: 1691062413.199585659 0.438139 -0.253785 9.88566 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.0 0.569803 0.0148964 0 -0.00128594 -0.00275889 -0.082248 0.996607 uwb: 0.50045002 851.677 930.203 +imu_odom_: 1691062413.214517562 0.445322 -0.23942 9.90002 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.41991422 0.569803 0.0148964 0 -0.000851786-0.00258398 -0.0822373 0.996609 uwb: 0.0 851.677 930.203 +imu_odom_: 1691062413.228518299 0.435745 -0.241814 9.89763 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.569803 0.0148964 0 -0.000851786-0.00258398 -0.0822373 0.996609 uwb: 0.0 851.677 930.203 +imu_odom_: 1691062413.250551620 0.474052 -0.25618 9.94551 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.36973681 0.569803 0.0148964 0 -0.00172132 -0.00164854 -0.0822379 0.99661 uwb: 0.50077665 851.659 931.141 +imu_odom_: 1691062413.266630786 0.19393 -0.244209 9.9096 -0.0500674 0.0372843 0.00958738 0 0 pose: 0.0 0.569803 0.0148964 0 -0.00172132 -0.00164854 -0.0822379 0.99661 uwb: 0.0 851.659 931.141 +imu_odom_: 1691062413.282577844 -0.696713 -0.0550666 9.92636 -0.0330232 0.076699 -0.00639159 0 0 pose: 0.0 0.569803 0.0148964 0 -0.00172132 -0.00164854 -0.0822379 0.99661 uwb: 0.0 851.659 931.141 +imu_odom_: 1691062413.299511186 -1.03669 -0.220267 9.84256 -0.0500674 -0.0149137 0.0319579 0.04 0.08 pose: 0.6035812 0.569803 0.0148964 0 -0.00193836 -0.00221175 -0.0822389 0.996608 uwb: 0.49780497 852.07 930.544 +imu_odom_: 1691062413.315505779 -0.361524 -0.402226 9.90721 -0.0596548 -0.0553937 0.0681769 0.04 0.08 pose: 0.0 0.569803 0.0148964 0 -0.00193836 -0.00221175 -0.0822389 0.996608 uwb: 0.0 852.07 930.544 +imu_odom_: 1691062413.332500655 0.407014 -0.476446 9.94312 -0.0426106 -0.0319579 0.0798948 0.04 0.08 pose: 0.0 0.569803 0.0148964 0 -0.00193836 -0.00221175 -0.0822389 0.996608 uwb: 0.0 852.07 930.544 +imu_odom_: 1691062413.348690638 0.275333 -0.160412 9.89763 -0.0298274 0.0106526 0.0884169 0.06 0.02 pose: 0.55020456 0.569803 0.0148964 0 -0.00151127 0.00105179 -0.0828687 0.996559 uwb: 0.50047044 852.256 929.37 +imu_odom_: 1691062413.365558656 -0.0526724 -0.0167594 9.85693 -0.0468716 0.02024 0.0788296 0.09 0.05 pose: 0.0 0.569803 0.0148964 0 -0.00151127 0.00105179 -0.0828687 0.996559 uwb: 0.0 852.256 929.37 +imu_odom_: 1691062413.381555874 -0.0215478 -0.11971 10.1514 -0.052198 -0.00213053 0.0713727 0.09 0.05 pose: 0.65997894 0.579803 0.0149371 0 -0.00117505 0.0041407 -0.081802 0.996639 uwb: 0.0 852.256 929.37 +imu_odom_: 1691062413.398514587 0.177171 -0.301669 9.78989 -0.0532632 -0.0138484 0.0703074 0.1 0.05 pose: 0.0 0.579803 0.0149371 0 -0.00117505 0.0041407 -0.081802 0.996639 uwb: 0.49936225 852.305 929.71 +imu_odom_: 1691062413.414492558 0.332794 -0.246603 9.94791 -0.0532632 -0.00852212 0.0649811 0.1 0.05 pose: 0.0 0.579803 0.0149371 0 -0.00117505 0.0041407 -0.081802 0.996639 uwb: 0.0 852.305 929.71 +imu_odom_: 1691062413.431665035 0.035913 -0.186748 9.60075 -0.0426106 0.0234358 0.052198 0.1 0.05 pose: 0.32929685 0.579864 0.00493726 0 -0.00024034 0.00709102 -0.0812413 0.996669 uwb: 0.0 852.305 929.71 +imu_odom_: 1691062413.446665762 0.138864 -0.205901 10.0748 -0.0500674 -0.015979 0.0639159 0.09 0.02 pose: 0.43162889 0.579864 0.00493726 0 -0.00034317 0.00811941 -0.0807802 0.996699 uwb: 0.0 852.305 929.71 +imu_odom_: 1691062413.464605510 0.112527 -0.244209 9.68933 -0.0436758 -0.02024 0.0543285 0.09 0.02 pose: 0.7887353 0.579864 0.00493726 0 -5.45902e-050.0088131 -0.0806817 0.996701 uwb: 0.0 852.305 929.71 +imu_odom_: 1691062413.480660470 0.162806 -0.361524 9.5816 -0.0511327 0.00319579 0.052198 0.09 0.02 pose: 0.0 0.579864 0.00493726 0 -5.45902e-050.0088131 -0.0806817 0.996701 uwb: 0.0 852.305 929.71 +imu_odom_: 1691062413.497513615 0.37589 -0.296881 9.89284 -0.0479369 0.00106526 0.052198 0.14 0.05 pose: 0.41108082 0.589864 0.00502167 0 -0.00135214 0.0116231 -0.0803784 0.996696 uwb: 0.99973937 852.648 928.448 +imu_odom_: 1691062413.513479045 0.181959 -0.134075 9.56244 -0.0585895 -0.00319579 0.0447411 0.11 -0.02 pose: 0.0 0.589864 0.00502167 0 -0.00135214 0.0116231 -0.0803784 0.996696 uwb: 0.0 852.648 928.448 +imu_odom_: 1691062413.530596404 -0.222661 0.117316 9.80904 -0.0500674 -0.0117179 0.0436758 0.11 -0.02 pose: 0.0 0.589864 0.00502167 0 -0.00135214 0.0116231 -0.0803784 0.996696 uwb: 0.0 852.648 928.448 +imu_odom_: 1691062413.545521017 1.07021 -0.227449 10.4124 -0.0511327 -0.111853 0.0628506 0.11 -0.02 pose: 0.24856566 0.589864 0.00502167 0 -0.0009572290.01019 -0.0802531 0.996722 uwb: 0.50003300 853.365 927.688 +imu_odom_: 1691062413.562624378 1.1157 -0.253785 9.64384 -0.0575243 0.00213053 0.0830906 0.11 0.02 pose: 0.0 0.589864 0.00502167 0 -0.0009572290.01019 -0.0802531 0.996722 uwb: 0.0 853.365 927.688 +imu_odom_: 1691062413.578492696 0.950498 -0.531513 9.79707 -0.0575243 0.0351537 0.107592 0.11 0.02 pose: 0.33136157 0.599864 0.00511443 0 0.000953633 0.0102678 -0.0800841 0.996735 uwb: 0.0 853.365 927.688 +imu_odom_: 1691062413.595630469 0.80924 -0.435745 9.79228 -0.0649811 -0.00426106 0.126766 0.1 -0.02 pose: 0.39839503 0.599864 0.00511443 0 -0.0001153730.0064988 -0.0791036 0.996845 uwb: 0.49945558 852.984 928.138 +imu_odom_: 1691062413.610545750 0.914585 -0.105345 9.75637 -0.0543285 0.0255663 0.0937433 0.1 -0.02 pose: 0.0 0.599864 0.00511443 0 -0.0001153730.0064988 -0.0791036 0.996845 uwb: 0.0 852.984 928.138 +imu_odom_: 1691062413.628612064 0.794875 -0.035913 9.85932 -0.0543285 -0.0170442 0.072438 0.1 -0.02 pose: 0.0 0.599864 0.00511443 0 -0.0001153730.0064988 -0.0791036 0.996845 uwb: 0.0 852.984 928.138 +imu_odom_: 1691062413.644549790 0.533907 -0.0550666 9.29908 -0.0607201 0 0.0415453 0.06 0 pose: 0.7199405 0.599864 0.00511443 0 -0.0004639180.00585357 -0.078793 0.996874 uwb: 0.49965971 853.341 927.198 +imu_odom_: 1691062413.661558080 0.878672 -0.328006 10.1658 -0.0543285 -0.0298274 0.0234358 0.07 0.02 pose: 0.0 0.599864 0.00511443 0 -0.0004639180.00585357 -0.078793 0.996874 uwb: 0.0 853.341 927.198 +imu_odom_: 1691062413.677610416 0.826 -0.328006 9.83059 -0.0596548 -0.0213053 0.0223706 0.07 0.02 pose: 0.65946275 0.599864 0.00511443 0 0.000630246 -5.58816e-05-0.0777054 0.996976 uwb: 0.0 853.341 927.198 +imu_odom_: 1691062413.694576712 0.926556 -0.296881 9.97185 -0.0543285 0.00958738 0.0308927 0.06 0.02 pose: 0.0 0.599864 0.00511443 0 0.000630246 -5.58816e-05-0.0777054 0.996976 uwb: 0.50153197 853.491 927.432 +imu_odom_: 1691062413.709541569 0.766145 -0.299275 9.8665 -0.0607201 -0.00958738 0.0340885 0.06 0.02 pose: 0.0 0.599864 0.00511443 0 0.000630246 -5.58816e-05-0.0777054 0.996976 uwb: 0.0 853.491 927.432 +imu_odom_: 1691062413.735505152 0.742203 -0.172383 9.97903 -0.052198 -0.00426106 0.00958738 0.06 0.02 pose: 0.32922978 0.609863 0.0052102 0 -0.000489959-0.00337725 -0.0779509 0.996951 uwb: 0.0 853.491 927.432 +imu_odom_: 1691062413.749481976 0.390255 -0.253785 9.8689 -0.0649811 0.0383495 0.00213053 0.05 0.05 pose: 0.32985094 0.609863 0.0052102 0 -0.00112351 -0.00651483 -0.078154 0.996919 uwb: 0.49881108 853.066 927.701 +imu_odom_: 1691062413.772490207 -1.41497 -0.263362 10.2496 -0.0607201 0.0777643 0.0468716 0.05 0.05 pose: 0.0 0.609863 0.0052102 0 -0.00112351 -0.00651483 -0.078154 0.996919 uwb: 0.0 853.066 927.701 +imu_odom_: 1691062413.795541890 -0.806846 -0.430956 9.70609 -0.0585895 -0.103331 0.0628506 0.05 0.05 pose: 0.38938958 0.609863 0.0052102 0 -0.000952515-0.00560988 -0.0786601 0.996885 uwb: 0.50097787 852.674 928.941 +imu_odom_: 1691062413.813444310 0.766145 -0.105345 10.1059 -0.0468716 -0.0841559 0.0426106 0.05 0.05 pose: 0.0 0.609863 0.0052102 0 -0.000952515-0.00560988 -0.0786601 0.996885 uwb: 0.0 852.674 928.941 +imu_odom_: 1691062413.837432701 0.6608 -0.237026 9.94073 -0.0671117 0.0308927 0.052198 0.09 0.02 pose: 0.56958904 0.609863 0.0052102 0 -0.000601219-0.0046161 -0.0783068 0.996918 uwb: 0.0 852.674 928.941 +imu_odom_: 1691062413.862591100 -0.387861 -0.225055 9.95988 -0.0458064 0.0276969 0.0319579 0.09 0.02 pose: 0.0 0.609863 0.0052102 0 -0.000601219-0.0046161 -0.0783068 0.996918 uwb: 0.49866235 852.939 927.798 +imu_odom_: 1691062413.876549260 -0.217872 -0.356736 9.65821 -0.0585895 -0.0266316 0.0426106 0.1 0.02 pose: 0.8099950 0.609863 0.0052102 0 -0.000786651-0.00526798 -0.0782556 0.996919 uwb: 0.0 852.939 927.798 +imu_odom_: 1691062413.899448131 0.402226 -0.179565 10.149 -0.0553937 -0.0234358 0.0426106 0.1 0.02 pose: 0.0 0.609863 0.0052102 0 -0.000786651-0.00526798 -0.0782556 0.996919 uwb: 0.50052293 852.83 927.425 +imu_odom_: 1691062413.922429532 0.215478 -0.0670376 9.98622 -0.0553937 0.00745685 0.0319579 0.14 0 pose: 0.77903871 0.619863 0.00524351 0 0.000745296 -0.00114537 -0.0781956 0.996937 uwb: 0.0 852.83 927.425 +imu_odom_: 1691062413.945426973 0.294487 -0.35913 9.35893 -0.0511327 -0.0127832 0.0479369 0.14 0 pose: 0.0 0.619863 0.00524351 0 0.000745296 -0.00114537 -0.0781956 0.996937 uwb: 0.50124033 853.385 925.94 +imu_odom_: 1691062413.963424463 0.323217 -0.402226 9.58638 -0.0500674 -0.0255663 0.04048 0.17 0 pose: 0.45978842 0.629863 0.00527743 0 0.0001885 0.00191084 -0.0781942 0.996936 uwb: 0.0 853.385 925.94 +imu_odom_: 1691062413.987471471 0.677559 -0.21069 9.59357 -0.0681769 0.0308927 0.0468716 0.17 0 pose: 0.8053873 0.629863 0.00527743 0 -0.0005650630.00206584 -0.0781921 0.996936 uwb: 0.0 853.385 925.94 +imu_odom_: 1691062414.12539472 0.0143652 -0.25618 9.82341 -0.0447411 -0.0149137 0.0479369 0.14 0 pose: 0.33990625 0.629863 0.00527743 0 -0.00153353 0.000283397 -0.0781061 0.996944 uwb: 0.49786038 853.192 926.164 +imu_odom_: 1691062414.26444856 -0.280122 -0.1652 9.73482 -0.0532632 -0.00639159 0.0575243 0.14 0 pose: 0.0 0.629863 0.00527743 0 -0.00153353 0.000283397 -0.0781061 0.996944 uwb: 0.0 853.192 926.164 +imu_odom_: 1691062414.49437061 0.622492 -0.296881 10.0317 -0.0575243 -0.00426106 0.0415453 0.13 0 pose: 0.6964061 0.629863 0.00527743 0 -0.00146574 0.00093917 -0.0780759 0.996946 uwb: 0.50208047 853.888 924.588 +imu_odom_: 1691062414.73419634 0.129287 -0.0981623 9.6199 -0.0585895 0.0234358 0.0479369 0.13 0 pose: 0.0 0.629863 0.00527743 0 -0.00146574 0.00093917 -0.0780759 0.996946 uwb: 0.0 853.888 924.588 +imu_odom_: 1691062414.90460014 0.56982 -0.19393 9.88087 -0.0628506 -0.036219 0.0553937 0.19 0 pose: 0.39130576 0.639863 0.00531429 0 -0.00119275 0.00330623 -0.0778648 0.996958 uwb: 0.0 853.888 924.588 +imu_odom_: 1691062414.114546989 0.378284 -0.138864 10.2687 -0.0500674 0.0213053 0.0308927 0.19 0 pose: 0.0 0.639863 0.00531429 0 -0.00119275 0.00330623 -0.0778648 0.996958 uwb: 0.49819314 854.415 923.729 +imu_odom_: 1691062414.137531904 -0.0694318 -0.354342 9.47864 -0.0639159 0.00639159 0.0500674 0.19 0 pose: 0.47864243 0.649863 0.00535612 0 -0.0002225840.00312224 -0.0776841 0.996973 uwb: 0.0 854.415 923.729 +imu_odom_: 1691062414.155428794 0.416591 -0.387861 10.1083 -0.0447411 -0.052198 0.0351537 0.19 0 pose: 0.0 0.649863 0.00535612 0 -0.0002225840.00312224 -0.0776841 0.996973 uwb: 0.50189389 854.704 922.418 +imu_odom_: 1691062414.179392119 -0.00718261-0.217872 9.67976 -0.0532632 0.0149137 0.0553937 0.14 0 pose: 0.41162642 0.649863 0.00535612 0 0.00190938 0.00253252 -0.0776725 0.996974 uwb: 0.0 854.704 922.418 +imu_odom_: 1691062414.197424324 0.222661 -0.361524 9.96467 -0.0607201 -0.0319579 0.0490022 0.14 0 pose: 0.0 0.649863 0.00535612 0 0.00190938 0.00253252 -0.0776725 0.996974 uwb: 0.49924299 854.936 921.234 +imu_odom_: 1691062414.221391441 0.440533 -0.0742203 10.0509 -0.0511327 -0.00639159 0.0340885 0.15 0 pose: 0.40909800 0.659863 0.00540119 0 -0.0001149790.00382016 -0.07758 0.996979 uwb: 0.0 854.936 921.234 +imu_odom_: 1691062414.247382744 0.0454898 -0.184354 9.69173 -0.0500674 -0.00639159 0.0415453 0.15 0 pose: 0.0 0.659863 0.00540119 0 -0.0001149790.00382016 -0.07758 0.996979 uwb: 0.50036867 855.005 921.107 +imu_odom_: 1691062414.271385731 0.146046 -0.301669 9.75398 -0.0340885 0.00106526 0.0394148 0.16 0 pose: 0.41921749 0.669863 0.0054497 0 -0.0009710680.00566799 -0.0773963 0.996984 uwb: 0.0 855.005 921.107 +imu_odom_: 1691062414.294431012 0.411803 -0.301669 9.20571 -0.0415453 -0.0255663 0.0394148 0.16 0 pose: 0.0 0.669863 0.0054497 0 -0.0009710680.00566799 -0.0773963 0.996984 uwb: 0.50026661 855.121 920.348 +imu_odom_: 1691062414.320498430 0.112527 -0.251391 10.4483 -0.0468716 -0.0308927 0.04048 0.22 -0.02 pose: 0.48986717 0.669863 0.0054497 0 0.000458481 0.00762677 -0.0774112 0.99697 uwb: 0.0 855.121 920.348 +imu_odom_: 1691062414.345468454 -0.205901 -0.0502782 10.5919 -0.0340885 0.00106526 0.036219 0.17 0 pose: 0.48035719 0.679863 0.00549986 0 -0.00107583 0.00745613 -0.0774295 0.996969 uwb: 0.50023161 854.71 920.452 +imu_odom_: 1691062414.362413471 0.572214 -0.189142 10.0533 -0.0511327 -0.0426106 0.0468716 0.17 0 pose: 0.0 0.679863 0.00549986 0 -0.00107583 0.00745613 -0.0774295 0.996969 uwb: 0.0 854.71 920.452 +imu_odom_: 1691062414.387378537 0.308852 -0.110133 10.2951 -0.04048 0.00639159 0.0436758 0.17 0 pose: 0.26181445 0.689862 0.00554948 0 -0.0004148340.00973704 -0.0774274 0.99695 uwb: 0.0 854.71 920.452 +imu_odom_: 1691062414.410398739 0.248997 -0.476446 9.3709 -0.0713727 0.00852212 0.0543285 0.17 0 pose: 0.41975407 0.689862 0.00554948 0 0.00124838 0.0086647 -0.0773652 0.996964 uwb: 0.49842060 854.39 920.442 +imu_odom_: 1691062414.427507360 0.265756 -0.323217 9.89284 -0.0436758 0.0106526 0.0255663 0.17 0 pose: 0.0 0.689862 0.00554948 0 0.00124838 0.0086647 -0.0773652 0.996964 uwb: 0.0 854.39 920.442 +imu_odom_: 1691062414.451372698 0.742203 -0.323217 9.2081 -0.0490022 0.0170442 0.0330232 0.23 0 pose: 0.47806501 0.699913 -0.00439919 0 -0.00065345 0.00793863 -0.0772307 0.996981 uwb: 0.50002456 854.72 919.299 +imu_odom_: 1691062414.477398414 0.0430956 -0.363919 9.44513 -0.0394148 0.0170442 0.0383495 0.2 -0.02 pose: 0.32962367 0.706498 -0.0043653 0 -0.00193285 0.00582619 -0.0773897 0.996982 uwb: 0.0 854.72 919.299 +imu_odom_: 1691062414.501340450 0.351948 -0.208296 10.003 -0.0553937 -0.0426106 0.056459 0.2 -0.02 pose: 0.0 0.706498 -0.0043653 0 -0.00193285 0.00582619 -0.0773897 0.996982 uwb: 0.50006247 855.041 918.481 +imu_odom_: 1691062414.527407285 0.383072 -0.337582 9.70609 -0.0575243 -0.0287621 0.04048 0.18 -0.02 pose: 0.49967752 0.716567 -0.00431472 0 -0.00146489 0.00596855 -0.0772006 0.996997 uwb: 0.0 855.041 918.481 +imu_odom_: 1691062414.542401897 0.713472 -0.136469 10.0149 -0.0596548 -0.015979 0.0447411 0.18 -0.02 pose: 0.0 0.716567 -0.00431472 0 -0.00146489 0.00596855 -0.0772006 0.996997 uwb: 0.0 855.041 918.481 +imu_odom_: 1691062414.559490687 0.433351 -0.399832 9.47146 -0.0628506 -0.0181095 0.0383495 0.17 -0.02 pose: 0.0 0.716567 -0.00431472 0 -0.00146489 0.00596855 -0.0772006 0.996997 uwb: 0.49986707 854.607 918.572 +imu_odom_: 1691062414.583344944 0.567426 -0.440533 9.165 -0.0692422 -0.0298274 0.0639159 0.17 -0.02 pose: 0.49014422 0.719913 -0.00429659 0 -0.00379026 0.00198894 -0.0771745 0.997008 uwb: 0.0 854.607 918.572 +imu_odom_: 1691062414.606356980 0.217872 -0.114922 10.0676 -0.0500674 0.0255663 0.0340885 0.2 -0.02 pose: 0.32990072 0.729913 -0.00424176 0 -0.00642299 -0.000535192-0.0769017 0.997018 uwb: 0.50054074 854.932 917.416 +imu_odom_: 1691062414.629347728 0.306458 0.0957681 10.2496 -0.0671117 0.0149137 0.0490022 0.2 -0.02 pose: 0.8040754 0.729913 -0.00424176 0 -0.00575766 7.59938e-05 -0.076922 0.99702 uwb: 0.0 854.932 917.416 +imu_odom_: 1691062414.655450724 0.725443 -0.265756 10.307 -0.0511327 0.0181095 0.036219 0.24 -0.02 pose: 0.37962030 0.739913 -0.0041817 0 -0.00235256 0.00171226 -0.076849 0.997038 uwb: 0.49878805 855.027 916.292 +imu_odom_: 1691062414.671408291 0.217872 -0.354342 9.57202 -0.0596548 -0.0372843 0.0426106 0.24 -0.02 pose: 0.0 0.739913 -0.0041817 0 -0.00235256 0.00171226 -0.076849 0.997038 uwb: 0.0 855.027 916.292 +imu_odom_: 1691062414.694386499 0.251391 -0.177171 9.36612 -0.0809601 -0.0426106 0.0575243 0.17 0.02 pose: 0.42060563 0.745519 -0.00414743 0 -0.00309924 0.00062604 -0.0768712 0.997036 uwb: 0.0 855.027 916.292 +imu_odom_: 1691062414.718404358 0.428562 -0.0502782 9.9934 -0.072438 0.00426106 0.0458064 0.17 0.02 pose: 0.0 0.745519 -0.00414743 0 -0.00309924 0.00062604 -0.0768712 0.997036 uwb: 0.0 855.027 916.292 +imu_odom_: 1691062414.735408868 0.445322 -0.557849 9.663 -0.0649811 0.00426106 0.036219 0.24 0 pose: 0.0 0.745519 -0.00414743 0 -0.00309924 0.00062604 -0.0768712 0.997036 uwb: 0.0 855.027 916.292 +imu_odom_: 1691062414.759407188 0.222661 -0.23942 9.63427 -0.0340885 0.00532632 0.0351537 0.24 0 pose: 0.46996067 0.756857 -0.00407733 0 3.15403e-05 0.00127614 -0.0765805 0.997063 uwb: 0.100048656 854.75 915.962 +imu_odom_: 1691062414.776396825 0.557849 -0.277727 10.0963 -0.0511327 -0.00639159 0.0394148 0.22 -0.02 pose: 0.0 0.756857 -0.00407733 0 3.15403e-05 0.00127614 -0.0765805 0.997063 uwb: 0.0 854.75 915.962 +imu_odom_: 1691062414.801318438 0.428562 -0.122104 9.75158 -0.0426106 0.0255663 0.0479369 0.22 -0.02 pose: 0.49082079 0.759979 -0.0140567 0 -0.00131017 0.00283693 -0.0766619 0.997052 uwb: 0.50130188 855.638 914.445 +imu_odom_: 1691062414.825334548 0.701501 -0.275333 10.0341 -0.0575243 -0.015979 0.052198 0.22 0 pose: 0.33832001 0.769979 -0.0139915 0 0.000842636 0.0010486 -0.0765595 0.997064 uwb: 0.0 855.638 914.445 +imu_odom_: 1691062414.849310997 0.768539 -0.289698 10.0556 -0.0383495 0.00639159 0.0415453 0.22 0 pose: 0.8078083 0.769979 -0.0139915 0 0.000584448 0.000231233 -0.0765084 0.997069 uwb: 0.49916425 855.882 912.373 +imu_odom_: 1691062414.872301744 0.78051 -0.220267 10.1035 -0.0468716 -0.0351537 0.0447411 0.17 0.02 pose: 0.39914476 0.779979 -0.0139232 0 -0.00043297 -0.0035604 -0.076382 0.997072 uwb: 0.0 855.882 912.373 +imu_odom_: 1691062414.896309106 0.136469 -0.186748 10.0293 -0.0383495 -0.0191748 0.0436758 0.17 0.02 pose: 0.0 0.779979 -0.0139232 0 -0.00043297 -0.0035604 -0.076382 0.997072 uwb: 0.49945880 856.08 912.322 +imu_odom_: 1691062414.913293784 0.435745 -0.253785 9.96227 -0.0575243 -0.02024 0.0617853 0.21 0 pose: 0.46998109 0.789978 -0.0138519 0 -4.03012e-06-0.00403375 -0.0762733 0.997079 uwb: 0.0 856.08 912.322 +imu_odom_: 1691062414.928401548 1.09894 -0.124498 10.1323 -0.0809601 -0.092678 0.128897 0.21 0 pose: 0.0 0.789978 -0.0138519 0 -4.03012e-06-0.00403375 -0.0762733 0.997079 uwb: 0.0 856.08 912.322 +imu_odom_: 1691062414.946296397 0.723049 -0.1652 9.17937 -0.0894822 0.0117179 0.197074 0.21 0 pose: 0.0 0.789978 -0.0138519 0 -4.03012e-06-0.00403375 -0.0762733 0.997079 uwb: 0.49999831 856.157 912.196 +imu_odom_: 1691062414.961284302 0.940921 -0.579397 10.2663 -0.0671117 0.0426106 0.223706 0.2 0.14 pose: 0.40100826 0.789978 -0.0138519 0 -0.00119995 -0.00572751 -0.0747833 0.997183 uwb: 0.0 856.157 912.196 +imu_odom_: 1691062414.978278896 1.21625 -0.37589 9.92397 -0.0500674 0.00319579 0.236489 0.2 0.14 pose: 0.0 0.789978 -0.0138519 0 -0.00119995 -0.00572751 -0.0747833 0.997183 uwb: 0.0 856.157 912.196 +imu_odom_: 1691062414.994395982 0.991199 -0.131681 9.92636 -0.0447411 -0.00852212 0.287621 0.12 0.32 pose: 0.0 0.789978 -0.0138519 0 -0.00119995 -0.00572751 -0.0747833 0.997183 uwb: 0.49983791 855.501 913.003 +imu_odom_: 1691062415.11337213 1.27132 -0.488417 9.41161 -0.0596548 -0.0330232 0.338754 0.12 0.32 pose: 0.49998372 0.799978 -0.013749 0 -0.00249405 -0.0096914 -0.0699559 0.9975 uwb: 0.0 855.501 913.003 +imu_odom_: 1691062415.26331252 1.13485 -0.397437 9.97424 -0.0426106 0.00319579 0.38456 0.12 0.32 pose: 0.0 0.799978 -0.013749 0 -0.00249405 -0.0096914 -0.0699559 0.9975 uwb: 0.0 855.501 913.003 +imu_odom_: 1691062415.43266072 0.751779 -0.289698 9.75637 -0.052198 0.0308927 0.468716 0.13 0.5 pose: 0.39922948 0.809968 -0.0137487 0 -0.0034938 -0.0136245 -0.0638523 0.99786 uwb: 0.0 855.501 913.003 +imu_odom_: 1691062415.59388127 0.799663 -0.555455 9.77074 -0.0660464 -0.0308927 0.54435 0.13 0.5 pose: 0.0 0.809968 -0.0137487 0 -0.0034938 -0.0136245 -0.0638523 0.99786 uwb: 0.49995773 856.207 911.023 +imu_odom_: 1691062415.76265788 0.749385 -0.272939 9.414 -0.04048 -0.0138484 0.552872 0.13 0.5 pose: 0.0 0.809968 -0.0137487 0 -0.0034938 -0.0136245 -0.0638523 0.99786 uwb: 0.0 856.207 911.023 +imu_odom_: 1691062415.91388726 0.766145 -0.296881 9.79468 -0.0543285 0.0298274 0.585895 0.08 0.47 pose: 0.8004305 0.809978 -0.013749 0 -0.00377419 -0.01423 -0.0621369 0.997959 uwb: 0.0 856.207 911.023 +imu_odom_: 1691062415.108381289 0.828394 -0.301669 10.0389 -0.0511327 -0.00745685 0.64342 0.1 0.64 pose: 0.0 0.809978 -0.013749 0 -0.00377419 -0.01423 -0.0621369 0.997959 uwb: 0.50108055 856.091 910.082 +imu_odom_: 1691062415.124275290 0.857124 -0.426168 9.8282 -0.0500674 0.0394148 0.680704 0.1 0.64 pose: 0.65078472 0.809978 -0.013749 0 -0.00534236 -0.0191002 -0.0452924 0.998777 uwb: 0.0 856.091 910.082 +imu_odom_: 1691062415.141319471 0.292093 -0.490811 9.96467 -0.0532632 0.052198 0.681769 0.09 0.73 pose: 0.0 0.809978 -0.013749 0 -0.00534236 -0.0191002 -0.0452924 0.998777 uwb: 0.0 856.091 910.082 +imu_odom_: 1691062415.154262784 0.316035 -0.356736 9.97185 -0.0372843 0.0149137 0.649811 0.09 0.73 pose: 0.0 0.809978 -0.013749 0 -0.00534236 -0.0191002 -0.0452924 0.998777 uwb: 0.49920539 855.752 910.221 +imu_odom_: 1691062415.171255930 0.296881 0.0191536 9.76355 -0.0490022 -0.0255663 0.646616 0.09 0.73 pose: 0.32913102 0.819978 -0.0137497 0 -0.00714801 -0.0192472 -0.0348852 0.99918 uwb: 0.0 855.752 910.221 +imu_odom_: 1691062415.186257551 0.914585 -0.160412 9.85214 -0.0532632 -0.0138484 0.639159 0.06 0.58 pose: 0.38928799 0.819968 -0.0137495 0 -0.00624501 -0.0155389 -0.0228877 0.999598 uwb: 0.0 855.752 910.221 +imu_odom_: 1691062415.203255946 0.861913 -0.414197 9.97185 -0.0458064 -0.00106526 0.586961 0.06 0.58 pose: 0.7004606 0.819978 -0.0137496 0 -0.00583912 -0.0161116 -0.0207983 0.999637 uwb: 0.50063728 855.115 910.526 +imu_odom_: 1691062415.219304510 0.718261 -0.227449 9.93594 -0.0490022 -0.00106526 0.551807 0.06 0.58 pose: 0.0 0.819978 -0.0137496 0 -0.00583912 -0.0161116 -0.0207983 0.999637 uwb: 0.0 855.115 910.526 +imu_odom_: 1691062415.235245172 0.574608 -0.0694318 9.89763 -0.056459 0.00745685 0.536893 0.06 0.55 pose: 0.41043974 0.819968 -0.0137495 0 -0.00496186 -0.0174364 -0.00966332 0.999789 uwb: 0.0 855.115 910.526 +imu_odom_: 1691062415.251274489 0.565032 -0.114922 9.84256 -0.0553937 0 0.517718 0.06 0.55 pose: 0.0 0.819968 -0.0137495 0 -0.00496186 -0.0174364 -0.00966332 0.999789 uwb: 0.49995195 854.788 910.149 +imu_odom_: 1691062415.268250137 0.651223 -0.28491 9.84975 -0.0532632 0 0.478304 0.06 0.55 pose: 0.0 0.819968 -0.0137495 0 -0.00496186 -0.0174364 -0.00966332 0.999789 uwb: 0.0 854.788 910.149 +imu_odom_: 1691062415.292366582 0.708684 -0.131681 9.80186 -0.0532632 -0.00319579 0.426106 0.04 0.35 pose: 0.39102318 0.819978 -0.0137496 0 -0.00289462 -0.0145977 -0.0003329040.999889 uwb: 0.0 854.788 910.149 +imu_odom_: 1691062415.309294987 0.579397 -0.184354 10.003 -0.0596548 0.0181095 0.393083 0.04 0.38 pose: 0.0 0.819978 -0.0137496 0 -0.00289462 -0.0145977 -0.0003329040.999889 uwb: 0.49857255 854.598 909.326 +imu_odom_: 1691062415.324226617 0.122104 -0.251391 9.77074 -0.0649811 0.0426106 0.32384 0.04 0.38 pose: 0.42030259 0.819978 -0.0137497 0 -0.00068663 -0.0134544 0.00788274 0.999878 uwb: 0.0 854.598 909.326 +imu_odom_: 1691062415.341355078 -0.454898 0.122104 10.1873 -0.052198 0.056459 0.175769 0.04 0.38 pose: 0.0 0.819978 -0.0137497 0 -0.00068663 -0.0134544 0.00788274 0.999878 uwb: 0.0 854.598 909.326 +imu_odom_: 1691062415.357228374 -1.34075 0.402226 9.58878 -0.0649811 0.0308927 0.176834 0.08 0.29 pose: 0.0 0.819978 -0.0137497 0 -0.00068663 -0.0134544 0.00788274 0.999878 uwb: 0.50114471 854.495 908.908 +imu_odom_: 1691062415.373230861 -0.811634 -0.670376 9.92875 -0.0862864 -0.0628506 0.26099 0.08 0.29 pose: 0.31798501 0.829977 -0.0135918 0 -0.000295395-0.00970658 0.0121093 0.99988 uwb: 0.0 854.495 908.908 +imu_odom_: 1691062415.386282659 0.167594 -0.885855 9.96946 -0.0756338 -0.0873517 0.252468 0.08 0.17 pose: 0.0 0.829977 -0.0135918 0 -0.000295395-0.00970658 0.0121093 0.99988 uwb: 0.0 854.495 908.908 +imu_odom_: 1691062415.401277280 0.775721 -0.529119 9.70131 -0.0447411 -0.0127832 0.207727 0.08 0.17 pose: 0.40995273 0.829977 -0.0135918 0 -0.000427854-0.00572894 0.0155853 0.999862 uwb: 0.49960491 854.291 908.426 +imu_odom_: 1691062415.418281508 0.294487 0.179565 9.87369 -0.0809601 0.0191748 0.24288 0.08 0.17 pose: 0.0 0.829977 -0.0135918 0 -0.000427854-0.00572894 0.0155853 0.999862 uwb: 0.0 854.291 908.426 +imu_odom_: 1691062415.434510007 0.0981623 -0.0814029 9.9096 -0.0745685 0.036219 0.230097 0.1 0.17 pose: 0.6023570 0.829977 -0.0135918 0 -0.00102611 -0.00570733 0.0162294 0.999851 uwb: 0.0 854.291 908.426 +imu_odom_: 1691062415.451220857 0.213084 -0.476446 9.61272 -0.0639159 0.0276969 0.168312 0.1 0.17 pose: 0.0 0.829977 -0.0135918 0 -0.00102611 -0.00570733 0.0162294 0.999851 uwb: 0.49916165 855.289 905.501 +imu_odom_: 1691062415.466330380 0.126893 -0.31364 9.67257 -0.0639159 0.00532632 0.154463 0.1 0.17 pose: 0.0 0.829977 -0.0135918 0 -0.00102611 -0.00570733 0.0162294 0.999851 uwb: 0.0 855.289 905.501 +imu_odom_: 1691062415.483210083 0.181959 -0.299275 9.50019 -0.0692422 -0.0298274 0.181095 0.15 0.17 pose: 0.47198194 0.839974 -0.0133791 0 -0.00127203 -0.00483091 0.0207415 0.999772 uwb: 0.0 855.289 905.501 +imu_odom_: 1691062415.499206446 0.0574608 -0.447716 9.6199 -0.0585895 -0.0298274 0.18216 0.12 0.11 pose: 0.0 0.839974 -0.0133791 0 -0.00127203 -0.00483091 0.0207415 0.999772 uwb: 0.49906540 855.688 904.677 +imu_odom_: 1691062415.516209216 0.0837971 -0.196325 10.1083 -0.0553937 -0.00852212 0.173638 0.12 0.11 pose: 0.0 0.839974 -0.0133791 0 -0.00127203 -0.00483091 0.0207415 0.999772 uwb: 0.0 855.688 904.677 +imu_odom_: 1691062415.531267121 0.225055 -0.19393 9.89284 -0.0415453 -0.0287621 0.166181 0.12 0.11 pose: 0.64893871 0.839974 -0.0133791 0 -0.00346193 0.00118366 0.0252411 0.999675 uwb: 0.0 855.688 904.677 +imu_odom_: 1691062415.548200775 0.593762 -0.191536 9.80904 -0.04048 -0.04048 0.160855 0.13 0.08 pose: 0.0 0.839974 -0.0133791 0 -0.00346193 0.00118366 0.0252411 0.999675 uwb: 0.50246870 855.319 904.978 +imu_odom_: 1691062415.564318455 0.320823 -0.191536 9.71806 -0.0585895 -0.0372843 0.176834 0.13 0.08 pose: 0.31865284 0.849972 -0.0131744 0 -0.00289047 0.00385228 0.0273963 0.999613 uwb: 0.0 855.319 904.978 +imu_odom_: 1691062415.580199625 0.905008 -0.371101 10.0149 -0.0500674 -0.0479369 0.172573 0.17 0.14 pose: 0.33127158 0.849972 -0.0131744 0 -0.00110206 0.00278099 0.0294957 0.99956 uwb: 0.0 855.319 904.978 +imu_odom_: 1691062415.595322854 0.988805 -0.25618 9.5792 -0.0553937 -0.0500674 0.206661 0.17 0.14 pose: 0.0 0.849972 -0.0131744 0 -0.00110206 0.00278099 0.0294957 0.99956 uwb: 0.49882627 855.463 903.982 +imu_odom_: 1691062415.611311343 0.761356 -0.337582 9.39485 -0.0532632 -0.00745685 0.26099 0.17 0.14 pose: 0.0 0.849972 -0.0131744 0 -0.00110206 0.00278099 0.0294957 0.99956 uwb: 0.0 855.463 903.982 +imu_odom_: 1691062415.625317055 1.54665 -0.493206 10.6638 -0.052198 -0.0287621 0.232228 0.09 0.05 pose: 0.14866305 0.849972 -0.0131744 0 -0.0005719070.00226228 0.0305028 0.999532 uwb: 0.0 855.463 903.982 +imu_odom_: 1691062415.642368818 1.4054 0.112527 9.663 -0.0298274 -0.0127832 0.109722 0.09 0.05 pose: 0.0 0.849972 -0.0131744 0 -0.0005719070.00226228 0.0305028 0.999532 uwb: 0.0 855.463 903.982 +imu_odom_: 1691062415.658186122 1.01514 0.0430956 9.62708 -0.0585895 0.0298274 0.105461 0.09 0.05 pose: 0.0 0.849972 -0.0131744 0 -0.0005719070.00226228 0.0305028 0.999532 uwb: 0.50047105 855.647 903.192 +imu_odom_: 1691062415.675304376 0.670376 -0.275333 9.84017 -0.0681769 0.0191748 0.118244 0.11 0.11 pose: 0.47122079 0.85997 -0.0129643 0 -0.00128945 -0.00300712 0.0348045 0.999389 uwb: 0.0 855.647 903.192 +imu_odom_: 1691062415.691187879 0.536301 -0.624887 9.94073 -0.0511327 0.00106526 0.0830906 0.07 0.08 pose: 0.0 0.85997 -0.0129643 0 -0.00128945 -0.00300712 0.0348045 0.999389 uwb: 0.0 855.647 903.192 +imu_odom_: 1691062415.707247525 0.715866 -0.143652 9.92636 -0.0490022 -0.0223706 0.0777643 0.07 0.08 pose: 0.64983401 0.85997 -0.0129643 0 -0.00129669 -0.00787473 0.0374422 0.999267 uwb: 0.0 855.647 903.192 +imu_odom_: 1691062415.723180313 0.732626 -0.110133 9.71806 -0.0585895 0.00106526 0.11931 0.06 0.05 pose: 0.0 0.85997 -0.0129643 0 -0.00129669 -0.00787473 0.0374422 0.999267 uwb: 0.0 855.647 903.192 +imu_odom_: 1691062415.740235576 0.730232 -0.40462 9.97664 -0.0553937 0.00319579 0.135289 0.06 0.05 pose: 0.0 0.85997 -0.0129643 0 -0.00129669 -0.00787473 0.0374422 0.999267 uwb: 0.0 855.647 903.192 +imu_odom_: 1691062415.755194327 0.715866 -0.430956 9.88087 -0.0436758 -0.00319579 0.115049 0.06 0.05 pose: 0.30881041 0.869967 -0.012715 0 -0.000562915-0.00973396 0.0381875 0.999223 uwb: 0.99939063 855.691 902.487 +imu_odom_: 1691062415.781189729 0.687136 -0.162806 9.67497 -0.0543285 0.0170442 0.120375 0.06 0.11 pose: 0.41002563 0.869956 -0.012715 0 -0.00258466 -0.0120364 0.0399464 0.999126 uwb: 0.0 855.691 902.487 +imu_odom_: 1691062415.794175036 0.45011 -0.270545 9.97185 -0.0607201 0.0351537 0.1012 0.06 0.11 pose: 0.0 0.869956 -0.012715 0 -0.00258466 -0.0120364 0.0399464 0.999126 uwb: 0.49866296 855.675 901.368 +imu_odom_: 1691062415.818189410 -0.924162 -0.0502782 9.86411 -0.0319579 0.0958738 -0.0138484 0.05 0.08 pose: 0.8067589 0.869967 -0.012715 0 -0.00185433 -0.0122855 0.0402621 0.999112 uwb: 0.0 855.675 901.368 +imu_odom_: 1691062415.843216900 -0.794875 -0.600945 9.92157 -0.0841559 -0.0873517 0.116114 0.1 0.11 pose: 0.0 0.869967 -0.012715 0 -0.00185433 -0.0122855 0.0402621 0.999112 uwb: 0.0 855.675 901.368 +imu_odom_: 1691062415.866230117 0.466869 -0.4956 9.69173 -0.0319579 -0.0532632 0.0639159 0.08 0.05 pose: 0.79954984 0.869967 -0.012715 0 -0.00126011 -0.00638574 0.0416904 0.999109 uwb: 0.50182129 855.266 901.461 +imu_odom_: 1691062415.882188859 0.648829 0.232238 9.90002 -0.0468716 -0.0426106 0.0905475 0.08 0.05 pose: 0.0 0.869967 -0.012715 0 -0.00126011 -0.00638574 0.0416904 0.999109 uwb: 0.0 855.266 901.461 +imu_odom_: 1691062415.899158967 0.497994 -0.047884 10.1778 -0.0692422 0.0372843 0.118244 0.14 0.05 pose: 0.38971959 0.879964 -0.0124788 0 -0.00158677 -0.00712028 0.0423841 0.999075 uwb: 0.49739437 855.64 900.788 +imu_odom_: 1691062415.923364358 -0.0957681 -0.411803 9.94791 -0.0617853 -0.00745685 0.0553937 0.14 0.05 pose: 0.8076046 0.879964 -0.0124788 0 -0.000872959-0.00674092 0.0426957 0.999065 uwb: 0.0 855.64 900.788 +imu_odom_: 1691062415.949154454 0.40462 -0.294487 10.0628 -0.0532632 -0.0276969 0.0937433 0.13 0 pose: 0.33099453 0.879964 -0.0124788 0 -0.00097051 -0.00407945 0.0432353 0.999056 uwb: 0.50023483 855.577 899.624 +imu_odom_: 1691062415.973202366 0.215478 -0.40462 9.67736 -0.0511327 -0.0245011 0.0639159 0.13 0 pose: 0.0 0.879964 -0.0124788 0 -0.00097051 -0.00407945 0.0432353 0.999056 uwb: 0.0 855.577 899.624 +imu_odom_: 1691062415.999143816 0.227449 0.102951 10.0916 -0.0500674 -0.0234358 0.0809601 0.13 0.05 pose: 0.7897278 0.879964 -0.0124788 0 -0.00144986 -0.00355258 0.0434518 0.999048 uwb: 0.50039231 855.564 898.108 +imu_odom_: 1691062416.24161988 0.1652 -0.481235 9.73004 -0.0383495 -0.0127832 0.0596548 0.13 0.05 pose: 0.50029899 0.88996 -0.0122095 0 -0.00306884 -0.0002966530.044412 0.999009 uwb: 0.0 855.564 898.108 +imu_odom_: 1691062416.47168512 0.94571 -0.265756 10.2639 -0.0500674 -0.00426106 0.0639159 0.13 0.05 pose: 0.0 0.88996 -0.0122095 0 -0.00306884 -0.0002966530.044412 0.999009 uwb: 0.50055589 855.658 897.234 +imu_odom_: 1691062416.64139213 0.395043 -0.328006 9.87608 -0.0426106 0.0245011 0.0756338 0.13 0.05 pose: 0.0 0.88996 -0.0122095 0 -0.00306884 -0.0002966530.044412 0.999009 uwb: 0.0 855.658 897.234 +imu_odom_: 1691062416.88424816 0.19393 -0.0981623 9.85214 -0.0575243 -0.0181095 0.0745685 0.19 0.02 pose: 0.73884203 0.899959 -0.0120119 0 -0.00363491 -0.00011811 0.0454537 0.99896 uwb: 0.0 855.658 897.234 +imu_odom_: 1691062416.115280535 0.454898 -0.0742203 10.2759 -0.0553937 0.00532632 0.072438 0.17 0 pose: 0.33249078 0.906664 -0.0118715 0 -0.00283898 0.00179667 0.046049 0.998934 uwb: 0.49978311 854.803 897.577 +imu_odom_: 1691062416.132197577 0.387861 -0.28491 9.67497 -0.072438 0.0213053 0.0809601 0.17 0 pose: 0.0 0.906664 -0.0118715 0 -0.00283898 0.00179667 0.046049 0.998934 uwb: 0.0 854.803 897.577 +imu_odom_: 1691062416.156155099 0.555455 -0.100556 10.2448 -0.0543285 -0.0138484 0.0617853 0.22 0.02 pose: 0.43772761 0.909956 -0.0117987 0 -0.00219668 0.000977277 0.0468392 0.9989 uwb: 0.49927568 854.296 898.549 +imu_odom_: 1691062416.180199234 0.148441 -0.0191536 10.5201 -0.0511327 0.00213053 0.0745685 0.22 0.02 pose: 0.0 0.909956 -0.0117987 0 -0.00219668 0.000977277 0.0468392 0.9989 uwb: 0.0 854.296 898.549 +imu_odom_: 1691062416.204143924 0.035913 -0.184354 10.0556 -0.0596548 -0.0234358 0.0575243 0.22 0 pose: 0.48001657 0.919953 -0.0115598 0 0.000923597 0.00122523 0.0475231 0.998869 uwb: 0.50011264 854.215 897.544 +imu_odom_: 1691062416.220144671 0.505177 0.174777 10.161 -0.0458064 -0.0500674 0.0500674 0.22 0 pose: 0.0 0.919953 -0.0115598 0 0.000923597 0.00122523 0.0475231 0.998869 uwb: 0.0 854.215 897.544 +imu_odom_: 1691062416.244195222 0.141258 -0.28491 10.0892 -0.0639159 0.0149137 0.0649811 0.17 0 pose: 0.0 0.919953 -0.0115598 0 0.000923597 0.00122523 0.0475231 0.998869 uwb: 0.49905404 855.485 895.395 +imu_odom_: 1691062416.267191539 0.435745 -0.217872 10.1586 -0.0607201 0.0245011 0.0458064 0.17 0 pose: 0.47947414 0.92995 -0.0113077 0 0.00196215 0.00318506 0.0479228 0.998844 uwb: 0.0 855.485 895.395 +imu_odom_: 1691062416.284176238 -0.009576810 9.93115 -0.0596548 0.0447411 0.0617853 0.2 0.02 pose: 0.0 0.92995 -0.0113077 0 0.00196215 0.00318506 0.0479228 0.998844 uwb: 0.0 855.485 895.395 +imu_odom_: 1691062416.309120628 0.560243 -0.361524 9.86411 -0.0660464 0.00745685 0.0500674 0.2 0.02 pose: 0.46992042 0.939947 -0.011047 0 0.000886632 0.00366371 0.0482831 0.998827 uwb: 0.50079506 855.606 894.904 +imu_odom_: 1691062416.336152200 0.610521 -0.059855 9.83777 -0.0649811 -0.0138484 0.0575243 0.19 -0.02 pose: 0.33981938 0.939947 -0.011047 0 -0.0002248490.00273197 0.0485122 0.998819 uwb: 0.0 855.606 894.904 +imu_odom_: 1691062416.352150613 0.122104 -0.155623 10.2065 -0.0585895 0.0213053 0.0415453 0.19 -0.02 pose: 0.8066427 0.939947 -0.011047 0 0.000186926 0.00202086 0.0485857 0.998817 uwb: 0.49934567 855.648 894.161 +imu_odom_: 1691062416.378090330 0.428562 -0.143652 10.1107 -0.0394148 0.0276969 0.0319579 0.21 0.02 pose: 0.0 0.939947 -0.011047 0 0.000186926 0.00202086 0.0485857 0.998817 uwb: 0.0 855.648 894.161 +imu_odom_: 1691062416.402141464 0.270545 -0.440533 9.60793 -0.0500674 0.0458064 0.0543285 0.21 0.02 pose: 0.34963558 0.949943 -0.010775 0 0.00124594 0.00214827 0.0487726 0.998807 uwb: 0.49982102 855.898 892.982 +imu_odom_: 1691062416.425100744 0.866701 -0.356736 10.2113 -0.0372843 0.00745685 0.0308927 0.17 0 pose: 0.49990851 0.956744 -0.0105877 0 0.000750977 0.00195188 0.0488551 0.998804 uwb: 0.0 855.898 892.982 +imu_odom_: 1691062416.442154267 0.751779 -0.42138 9.62708 -0.0607201 -0.00532632 0.0649811 0.17 0 pose: 0.0 0.956744 -0.0105877 0 0.000750977 0.00195188 0.0488551 0.998804 uwb: 0.0 855.898 892.982 +imu_odom_: 1691062416.467095742 0.713472 -0.179565 10.0652 -0.0596548 -0.0181095 0.0394148 0.17 0 pose: 0.40012803 0.965208 -0.0103531 0 -0.000504063-0.00162935 0.0489728 0.998799 uwb: 0.50038094 856.439 891.822 +imu_odom_: 1691062416.491100799 0.519542 -0.0622492 10.3334 -0.0596548 -0.0490022 0.0490022 0.17 0 pose: 0.0 0.965208 -0.0103531 0 -0.000504063-0.00162935 0.0489728 0.998799 uwb: 0.0 856.439 891.822 +imu_odom_: 1691062416.514091282 0.921768 -0.189142 10.0126 -0.0596548 -0.0426106 0.0394148 0.25 0.02 pose: 0.48946532 0.969935 -0.0102207 0 0.00233614 -0.00511605 0.0490707 0.998779 uwb: 0.49938941 855.171 893.806 +imu_odom_: 1691062416.537138050 0.533907 -0.263362 9.78031 -0.0809601 -0.0351537 0.0617853 0.25 0.02 pose: 0.0 0.969935 -0.0102207 0 0.00233614 -0.00511605 0.0490707 0.998779 uwb: 0.0 855.171 893.806 +imu_odom_: 1691062416.554074339 0.749385 -0.414197 10.0963 -0.076699 -0.0191748 0.0575243 0.23 0 pose: 0.46037251 0.97965 5.684e-05 0 -0.000198956-0.00774229 0.0493412 0.998752 uwb: 0.50059967 854.985 892.695 +imu_odom_: 1691062416.569073053 0.395043 -0.395043 9.44034 -0.04048 0.00639159 0.0351537 0.23 0 pose: 0.0 0.97965 5.684e-05 0 -0.000198956-0.00774229 0.0493412 0.998752 uwb: 0.0 854.985 892.695 +imu_odom_: 1691062416.585098005 0.395043 -0.208296 10.1011 -0.0479369 0.02024 0.0447411 0.23 0 pose: 0.0 0.97965 5.684e-05 0 -0.000198956-0.00774229 0.0493412 0.998752 uwb: 0.0 854.985 892.695 +imu_odom_: 1691062416.610077974 0.409408 -0.0957681 9.8258 -0.052198 0.0245011 0.0426106 0.21 0.02 pose: 0.39110798 0.989646 0.00034575 0 -0.00215122 -0.00717198 0.0494971 0.998746 uwb: 0.49929026 855.112 891.609 +imu_odom_: 1691062416.635131433 0.337582 -0.452504 10.0963 -0.0639159 0.00532632 0.0543285 0.2 0 pose: 0.33829126 0.99669 0.000550592 0 0.000142064 -0.00432549 0.0495485 0.998762 uwb: 0.0 855.112 891.609 +imu_odom_: 1691062416.657280571 0.632069 -0.126893 10.2831 -0.0287621 -0.0255663 0.0436758 0.2 0 pose: 0.7080725 0.999642 0.000636633 0 -0.000504858-0.00393991 0.0496032 0.998761 uwb: 0.50003099 854.581 892.003 +imu_odom_: 1691062416.673072803 0.299275 -0.294487 10.1035 -0.052198 -0.00319579 0.0543285 0.2 0 pose: 0.0 0.999642 0.000636633 0 -0.000504858-0.00393991 0.0496032 0.998761 uwb: 0.0 854.581 892.003 +imu_odom_: 1691062416.699089510 0.301669 -0.196325 9.8258 -0.0426106 -0.0351537 0.0479369 0.19 0 pose: 0.48069606 0.999642 0.000636633 0 -0.000665179-0.0041101 0.0498409 0.998748 uwb: 0.49987643 854.37 891.45 +imu_odom_: 1691062416.714080641 0.363919 -0.215478 9.68933 -0.0553937 -0.0223706 0.0532632 0.19 0 pose: 0.0 0.999642 0.000636633 0 -0.000665179-0.0041101 0.0498409 0.998748 uwb: 0.0 854.37 891.45 +imu_odom_: 1691062416.740133509 0.483629 -0.169988 9.83777 -0.0436758 -0.0394148 0.0479369 0.19 0 pose: 0.40945138 1.00964 0.000933898 0 -0.000243716-0.0005630920.0500597 0.998746 uwb: 0.0 854.37 891.45 +imu_odom_: 1691062416.764134192 0.177171 -0.105345 10.0269 -0.0596548 -0.00639159 0.0479369 0.17 0.02 pose: 0.33960066 1.01694 0.0011543 0 0.00138374 -0.00248021 0.0502223 0.998734 uwb: 0.49943899 853.799 891.422 +imu_odom_: 1691062416.788126417 -0.0407014 -0.263362 9.75877 -0.076699 0.0127832 0.0436758 0.17 0.02 pose: 0.0 1.01694 0.0011543 0 0.00138374 -0.00248021 0.0502223 0.998734 uwb: 0.0 853.799 891.422 +imu_odom_: 1691062416.812055068 0.378284 -0.146046 10.0102 -0.0756338 0.00106526 0.0596548 0.21 0 pose: 0.6959408 1.01963 0.00123633 0 0.00153889 -0.00181233 0.05025 0.998734 uwb: 0.49913278 853.532 891.422 +imu_odom_: 1691062416.828160217 0.462081 -0.430956 9.84256 -0.0852212 0 0.0607201 0.21 0 pose: 0.0 1.01963 0.00123633 0 0.00153889 -0.00181233 0.05025 0.998734 uwb: 0.0 853.532 891.422 +imu_odom_: 1691062416.852113948 0.383072 -0.366313 9.59357 -0.0607201 0.0149137 0.0532632 0.17 0 pose: 0.47985909 1.02963 0.00154234 0 0.00166105 0.00210472 0.0504343 0.998724 uwb: 0.50043052 853.631 889.702 +imu_odom_: 1691062416.878038792 0.737414 -0.294487 9.85214 -0.0660464 -0.0298274 0.0298274 0.17 0 pose: 0.0 1.02963 0.00154234 0 0.00166105 0.00210472 0.0504343 0.998724 uwb: 0.0 853.631 889.702 +imu_odom_: 1691062416.902043557 0.363919 -0.474052 9.81144 -0.0607201 -0.0607201 0.0468716 0.18 0.02 pose: 0.41085993 1.03962 0.00185469 0 0.000483385 0.00103103 0.0508334 0.998706 uwb: 0.50059967 853.235 889.202 +imu_odom_: 1691062416.918100005 0.732626 -0.294487 10.0389 -0.0490022 -0.04048 0.0479369 0.18 0.02 pose: 0.0 1.03962 0.00185469 0 0.000483385 0.00103103 0.0508334 0.998706 uwb: 0.0 853.235 889.202 +imu_odom_: 1691062416.942082607 0.936133 -0.174777 9.94073 -0.0500674 0.0223706 0.052198 0.19 0.02 pose: 0.48885290 1.03962 0.00185469 0 -0.00225726 -0.00181254 0.0508392 0.998703 uwb: 0.0 853.235 889.202 +imu_odom_: 1691062416.967327082 0.531513 -0.124498 10.0652 -0.0479369 -0.0149137 0.0458064 0.19 0.02 pose: 0.0 1.03962 0.00185469 0 -0.00225726 -0.00181254 0.0508392 0.998703 uwb: 0.49990559 852.392 889.573 +imu_odom_: 1691062416.983045533 0.390255 -0.301669 9.4547 -0.0511327 0.00639159 0.0415453 0.18 0 pose: 0.39988598 1.04962 0.00217195 0 -0.00355697 -0.00432379 0.0510068 0.998683 uwb: 0.0 852.392 889.573 +imu_odom_: 1691062417.9020834 0.299275 -0.399832 9.66779 -0.0532632 0.0170442 0.052198 0.18 0 pose: 0.0 1.04962 0.00217195 0 -0.00355697 -0.00432379 0.0510068 0.998683 uwb: 0.49881490 852.241 889.259 +imu_odom_: 1691062417.34030855 0.395043 -0.337582 9.78271 -0.0255663 0.0245011 0.0319579 0.17 0 pose: 0.49198498 1.05961 0.0024928 0 -0.000769626-0.00539627 0.0511794 0.998675 uwb: 0.0 852.241 889.259 +imu_odom_: 1691062417.60150522 0.548272 -0.0909797 10.228 -0.052198 0.00106526 0.0490022 0.17 0 pose: 0.0 1.05961 0.0024928 0 -0.000769626-0.00539627 0.0511794 0.998675 uwb: 0.50187143 852.877 887.513 +imu_odom_: 1691062417.84012404 0.378284 -0.222661 10.3238 -0.0490022 -0.0170442 0.0543285 0.2 0 pose: 0.42831980 1.06961 0.00281807 0 -0.00351423 -0.00181823 0.0513377 0.998674 uwb: 0.0 852.877 887.513 +imu_odom_: 1691062417.108215491 0.881066 -0.150835 10.161 -0.0511327 -0.015979 0.0372843 0.2 0 pose: 0.50232057 1.0796 0.0031452 0 -0.00192263 -0.00120749 0.0514485 0.998673 uwb: 0.49820570 852.217 888.027 +imu_odom_: 1691062417.124003942 0.31364 -0.23942 9.71806 -0.0500674 0.0340885 0.0383495 0.19 0 pose: 0.0 1.0796 0.0031452 0 -0.00192263 -0.00120749 0.0514485 0.998673 uwb: 0.0 852.217 888.027 +imu_odom_: 1691062417.140035903 0.378284 -0.380678 10.0461 -0.0479369 -0.0223706 0.04048 0.19 0 pose: 0.0 1.0796 0.0031452 0 -0.00192263 -0.00120749 0.0514485 0.998673 uwb: 0.0 852.217 888.027 +imu_odom_: 1691062417.165039217 0.371101 -0.0766145 9.991 -0.0468716 -0.00106526 0.0308927 0.18 0.02 pose: 0.72734661 1.0896 0.0034769 0 -0.00212117 -0.0004010170.0515435 0.998668 uwb: 0.50282800 851.906 887.179 +imu_odom_: 1691062417.188972548 0.28491 -0.272939 10.2352 -0.056459 -0.0266316 0.0447411 0.18 0.02 pose: 0.0 1.0896 0.0034769 0 -0.00212117 -0.0004010170.0515435 0.998668 uwb: 0.0 851.906 887.179 +imu_odom_: 1691062417.214056935 0.68953 -0.244209 9.85453 -0.0340885 -0.00745685 0.0458064 0.26 0 pose: 0.7976902 1.0896 0.0034769 0 -0.00131609 -0.0001828620.0515091 0.998672 uwb: 0.49786158 852.21 885.769 +imu_odom_: 1691062417.236141636 0.54109 -0.253785 9.87608 -0.0426106 0 0.0511327 0.18 0 pose: 0.0 1.0896 0.0034769 0 -0.00131609 -0.0001828620.0515091 0.998672 uwb: 0.0 852.21 885.769 +imu_odom_: 1691062417.252260793 0.476446 -0.167594 9.8282 -0.056459 0.0213053 0.0426106 0.2 0 pose: 0.72084913 1.10925 0.014133 0 -0.000679935-0.00111192 0.0516056 0.998667 uwb: 0.49904851 851.447 885.592 +imu_odom_: 1691062417.275981527 0.56982 -0.287304 10.058 -0.0681769 -0.0372843 0.0532632 0.2 0 pose: 0.0 1.10925 0.014133 0 -0.000679935-0.00111192 0.0516056 0.998667 uwb: 0.0 851.447 885.592 +imu_odom_: 1691062417.301005547 0.76375 -0.208296 10.4291 -0.0543285 0.0138484 0.04048 0.18 0 pose: 0.55883809 1.1163 0.0143698 0 -0.00077464 -0.00524961 0.051883 0.998639 uwb: 0.50127945 851.629 884.696 +imu_odom_: 1691062417.315966941 0.830788 -0.174777 10.0389 -0.0500674 -0.00532632 0.0511327 0.18 0 pose: 0.0 1.1163 0.0143698 0 -0.00077464 -0.00524961 0.051883 0.998639 uwb: 0.0 851.629 884.696 +imu_odom_: 1691062417.339011098 0.88346 -0.023942 10.1682 -0.052198 -0.0383495 0.0383495 0.25 -0.02 pose: 0.39985414 1.12451 0.0146475 0 3.32989e-05 -0.00895176 0.051972 0.998608 uwb: 0.0 851.629 884.696 +imu_odom_: 1691062417.364959287 0.471658 -0.153229 9.8689 -0.0745685 -0.0394148 0.0532632 0.25 -0.02 pose: 0.7014529 1.12924 0.0148085 0 0.000468777 -0.00963485 0.0519638 0.998602 uwb: 0.49980674 851.438 884.13 +imu_odom_: 1691062417.379962676 0.608127 -0.31364 9.74679 -0.0703074 -0.0191748 0.0500674 0.19 0.02 pose: 0.41977817 1.12924 0.0148085 0 0.00183607 -0.00913798 0.0521096 0.998598 uwb: 0.0 851.438 884.13 +imu_odom_: 1691062417.398032241 0.454898 -0.131681 10.2687 -0.0490022 0.0127832 0.0383495 0.19 0.02 pose: 0.0 1.12924 0.0148085 0 0.00183607 -0.00913798 0.0521096 0.998598 uwb: 0.50034625 850.959 883.548 +imu_odom_: 1691062417.423077258 0.378284 -0.129287 10.1466 -0.0575243 0.015979 0.0383495 0.18 -0.02 pose: 0.6018328 1.12924 0.0148085 0 0.00121263 -0.00934429 0.0521462 0.998595 uwb: 0.0 850.959 883.548 +imu_odom_: 1691062417.446979385 0.502782 -0.0287304 10.1993 -0.0468716 -0.0479369 0.0372843 0.18 -0.02 pose: 0.0 1.12924 0.0148085 0 0.00121263 -0.00934429 0.0521462 0.998595 uwb: 0.49952094 850.604 883.27 +imu_odom_: 1691062417.461950986 0.452504 -0.488417 9.23204 -0.0607201 0.02024 0.04048 0.18 -0.02 pose: 0.0 1.12924 0.0148085 0 0.00121263 -0.00934429 0.0521462 0.998595 uwb: 0.0 850.604 883.27 +imu_odom_: 1691062417.488966242 0.584185 -0.423774 9.6606 -0.04048 0.0394148 0.0298274 0.18 0 pose: 0.35202714 1.13924 0.0151517 0 0.00142302 -0.00704357 0.0521747 0.998612 uwb: 0.0 850.604 883.27 +imu_odom_: 1691062417.514018550 0.225055 -0.361524 9.73004 -0.0500674 0.02024 0.0436758 0.18 -0.02 pose: 0.82785913 1.15653 0.0157456 0 0.000506754 -0.00551379 0.0520198 0.998631 uwb: 0.49992048 851.014 881.483 +imu_odom_: 1691062417.529957190 0.648829 -0.268151 9.23683 -0.04048 -0.0298274 0.0276969 0.18 -0.02 pose: 0.0 1.15653 0.0157456 0 0.000506754 -0.00551379 0.0520198 0.998631 uwb: 0.0 851.014 881.483 +imu_odom_: 1691062417.554955255 0.493206 -0.246603 10.5608 -0.0436758 0.015979 0.0330232 0.18 -0.02 pose: 0.7009864 1.15923 0.0158375 0 0.000159576 -0.00482509 0.0520362 0.998634 uwb: 0.50049789 850.172 881.666 +imu_odom_: 1691062417.580965853 0.418985 0.00718261 10.647 -0.0415453 0.00213053 0.0191748 0.18 -0.02 pose: 0.0 1.15923 0.0158375 0 0.000159576 -0.00482509 0.0520362 0.998634 uwb: 0.0 850.172 881.666 +imu_odom_: 1691062417.605967125 0.148441 0.0215478 9.73243 -0.0585895 -0.0426106 0.0458064 0.19 0 pose: 0.42057140 1.16922 0.0161782 0 -0.00137827 -0.0041964 0.0519603 0.998639 uwb: 0.49809488 849.84 880.977 +imu_odom_: 1691062417.631935437 0.545878 -0.11971 9.50977 -0.0713727 0.00532632 0.0447411 0.19 0 pose: 0.0 1.16922 0.0161782 0 -0.00137827 -0.0041964 0.0519603 0.998639 uwb: 0.0 849.84 880.977 +imu_odom_: 1691062417.647944942 0.306458 -0.292093 10.2352 -0.0596548 0.00426106 0.0351537 0.19 0 pose: 0.50203185 1.17921 0.0165162 0 0.000610555 -0.00180603 0.0516633 0.998663 uwb: 0.50063788 849.256 880.3 +imu_odom_: 1691062417.671049175 0.0622492 -0.294487 9.93354 -0.0287621 0.0181095 0.0170442 0.19 0 pose: 0.0 1.17921 0.0165162 0 0.000610555 -0.00180603 0.0516633 0.998663 uwb: 0.0 849.256 880.3 +imu_odom_: 1691062417.696981908 0.442927 -0.258574 9.80665 -0.0458064 -0.0372843 0.0458064 0.24 0 pose: 0.50788192 1.18921 0.0168515 0 0.00220887 -0.00228349 0.0517695 0.998654 uwb: 0.50024418 848.945 879.622 +imu_odom_: 1691062417.713929289 0.11971 0.035913 9.89284 -0.0511327 0.0181095 0.0479369 0.24 0 pose: 0.0 1.18921 0.0168515 0 0.00220887 -0.00228349 0.0517695 0.998654 uwb: 0.0 848.945 879.622 +imu_odom_: 1691062417.737924736 0.600945 -0.150835 9.65582 -0.0511327 -0.015979 0.04048 0.25 0 pose: 0.74904666 1.1992 0.0171821 0 0.000419318 0.000214681 0.0516392 0.998666 uwb: 0.0 848.945 879.622 +imu_odom_: 1691062417.762983460 0.205901 -0.280122 10.2065 -0.0394148 0.04048 0.0500674 0.25 0 pose: 0.7008405 1.1992 0.0171821 0 0.000657542 -0.0004914910.0516426 0.998665 uwb: 0.50073995 848.836 878.885 +imu_odom_: 1691062417.786046573 0.651223 -0.363919 10.0556 -0.0468716 0.0234358 0.052198 0.18 0 pose: 0.42045766 1.20672 0.0174333 0 0.000430587 0.000675048 0.0517826 0.998658 uwb: 0.0 848.836 878.885 +imu_odom_: 1691062417.802900925 0.28491 -0.114922 10.0054 -0.0447411 -0.0191748 0.0543285 0.18 0 pose: 0.0 1.20672 0.0174333 0 0.000430587 0.000675048 0.0517826 0.998658 uwb: 0.49802489 849.314 877.311 +imu_odom_: 1691062417.826926993 0.56982 -0.148441 9.63906 -0.0458064 -0.0245011 0.0532632 0.18 0.02 pose: 0.39917465 1.21479 0.0177051 0 0.00050992 0.000210207 0.0520522 0.998644 uwb: 0.0 849.314 877.311 +imu_odom_: 1691062417.842893629 0.814029 -0.328006 10.1514 -0.0607201 0.0319579 0.0490022 0.18 0.02 pose: 0.0 1.21479 0.0177051 0 0.00050992 0.000210207 0.0520522 0.998644 uwb: 0.0 849.326 876.884 +imu_odom_: 1691062417.866978607 0.646434 -0.304064 10.4244 -0.0873517 -0.0255663 0.0617853 0.18 0 pose: 0.0 1.21479 0.0177051 0 0.00050992 0.000210207 0.0520522 0.998644 uwb: 0.0 849.326 876.884 +imu_odom_: 1691062417.890895607 0.557849 0.0550666 9.85453 -0.0607201 -0.0106526 0.0553937 0.18 0 pose: 0.47009567 1.22919 0.0181996 0 0.000506778 -0.00419363 0.052375 0.998619 uwb: 0.0 849.326 876.884 +imu_odom_: 1691062417.914958420 0.452504 -0.258574 9.89045 -0.0820254 -0.0181095 0.0479369 0.18 0.02 pose: 0.40985115 1.22919 0.0181996 0 0.00174681 -0.00617859 0.0527411 0.998588 uwb: 0.49992339 849.572 875.985 +imu_odom_: 1691062417.939931989 0.368707 -0.328006 9.75158 -0.0575243 0.0117179 0.036219 0.18 -0.02 pose: 0.7025611 1.22919 0.0181996 0 0.00113761 -0.00575737 0.0527723 0.998589 uwb: 0.0 849.572 875.985 +imu_odom_: 1691062417.954954333 0.416591 -0.347159 9.83059 -0.0713727 0.00213053 0.036219 0.18 -0.02 pose: 0.17037202 1.236 0.0184422 0 -0.000339699-0.0047359 0.0528479 0.998591 uwb: 0.50013919 850.732 874.076 +imu_odom_: 1691062417.981948009 -0.272939 -0.220267 9.65342 -0.0415453 0.0426106 0.0479369 0.18 -0.02 pose: 0.0 1.236 0.0184422 0 -0.000339699-0.0047359 0.0528479 0.998591 uwb: 0.0 850.732 874.076 +imu_odom_: 1691062418.7010817 0.186748 -0.134075 9.71806 -0.0415453 -0.0266316 0.0351537 0.18 0 pose: 0.7949489 1.23918 0.018556 0 -0.000886422-0.00408322 0.0528373 0.998594 uwb: 0.50169358 851.182 872.667 +imu_odom_: 1691062418.30945620 0.526724 -0.241814 9.95509 -0.0383495 -0.0149137 0.0426106 0.2 0.02 pose: 0.40049572 1.24917 0.0189132 0 -0.00352352 -0.00116224 0.0528294 0.998597 uwb: 0.0 851.182 872.667 +imu_odom_: 1691062418.48032410 0.703895 -0.203507 10.1658 -0.0490022 0.00745685 0.0394148 0.2 0.02 pose: 0.0 1.24917 0.0189132 0 -0.00352352 -0.00116224 0.0528294 0.998597 uwb: 0.49939578 850.951 872.243 +imu_odom_: 1691062418.70874482 0.244209 -0.0526724 9.81862 -0.04048 0.0287621 0.0532632 0.19 0 pose: 0.50034339 1.25917 0.0192704 0 -0.00165684 0.00236914 0.0528759 0.998597 uwb: 0.0 850.951 872.243 +imu_odom_: 1691062418.96853891 0.557849 -0.143652 9.63906 -0.0511327 -0.0298274 0.0436758 0.19 0 pose: 0.0 1.25917 0.0192704 0 -0.00165684 0.00236914 0.0528759 0.998597 uwb: 0.49899922 851.599 870.083 +imu_odom_: 1691062418.111866620 0.526724 -0.433351 9.87848 -0.0340885 0.00639159 0.0340885 0.19 0 pose: 0.0 1.25917 0.0192704 0 -0.00165684 0.00236914 0.0528759 0.998597 uwb: 0.0 851.599 870.083 +imu_odom_: 1691062418.137879566 0.363919 -0.361524 10.1083 -0.0436758 -0.0447411 0.0479369 0.25 0 pose: 0.40906983 1.25917 0.0192704 0 -0.000583403-0.0005587910.0529365 0.998598 uwb: 0.0 851.599 870.083 +imu_odom_: 1691062418.162936847 0.366313 -0.110133 10.4866 -0.0500674 -0.00852212 0.0543285 0.21 -0.02 pose: 0.83980763 1.27915 0.0199918 0 -0.00170514 -0.00163719 0.0531838 0.998582 uwb: 0.0 851.599 870.083 +imu_odom_: 1691062418.186873983 0.943315 -0.112527 10.4004 -0.056459 -0.0149137 0.036219 0.21 -0.02 pose: 0.0 1.27915 0.0199918 0 -0.00170514 -0.00163719 0.0531838 0.998582 uwb: 0.0 851.599 870.083 +imu_odom_: 1691062418.211035673 0.555455 -0.0502782 10.4603 -0.0458064 -0.0234358 0.0383495 0.18 0.02 pose: 0.7132352 1.27915 0.0199918 0 -0.00106156 -0.00130581 0.053236 0.998581 uwb: 0.99937785 852.472 868.094 +imu_odom_: 1691062418.226994445 0.770933 -0.325611 9.55526 -0.0617853 -0.04048 0.0394148 0.18 0.02 pose: 0.0 1.27915 0.0199918 0 -0.00106156 -0.00130581 0.053236 0.998581 uwb: 0.0 852.472 868.094 +imu_odom_: 1691062418.251865374 0.667982 -0.531513 9.54329 -0.0543285 -0.0138484 0.0394148 0.19 0 pose: 0.48893513 1.28915 0.0203575 0 0.00173509 -0.00334101 0.0533218 0.99857 uwb: 0.50129142 852.271 867.216 +imu_odom_: 1691062418.277986223 0.509965 -0.260968 9.83059 -0.0458064 -0.0234358 0.0383495 0.19 0 pose: 0.0 1.28915 0.0203575 0 0.00173509 -0.00334101 0.0533218 0.99857 uwb: 0.0 852.271 867.216 +imu_odom_: 1691062418.302852778 0.703895 -0.311246 9.90481 -0.0255663 -0.0436758 0.0447411 0.19 0 pose: 0.41072336 1.29914 0.0207243 0 0.00183143 -0.00641623 0.053317 0.998555 uwb: 0.50033197 851.876 866.627 +imu_odom_: 1691062418.317859967 0.624887 -0.0526724 9.82102 -0.0543285 0.00852212 0.0436758 0.19 0 pose: 0.0 1.29914 0.0207243 0 0.00183143 -0.00641623 0.053317 0.998555 uwb: 0.0 851.876 866.627 +imu_odom_: 1691062418.344910818 0.849942 -0.201113 9.28711 -0.0575243 -0.0308927 0.0575243 0.18 0 pose: 0.49951832 1.30913 0.021091 0 -0.0017734 -0.00682387 0.0533451 0.998551 uwb: 0.49915087 851.605 865.441 +imu_odom_: 1691062418.369833658 0.215478 -0.215478 9.92157 -0.0511327 0.0191748 0.036219 0.18 0 pose: 0.0 1.30913 0.021091 0 -0.0017734 -0.00682387 0.0533451 0.998551 uwb: 0.0 851.605 865.441 +imu_odom_: 1691062418.384918419 0.531513 -0.102951 10.3262 -0.0394148 -0.0319579 0.0383495 0.19 -0.02 pose: 0.40998263 1.31913 0.0214592 0 -0.000317181-0.00998903 0.0534795 0.998519 uwb: 0.0 851.605 865.441 +imu_odom_: 1691062418.409845050 0.0766145 -0.3304 9.91678 -0.052198 -0.0372843 0.0468716 0.19 -0.02 pose: 0.0 1.31913 0.0214592 0 -0.000317181-0.00998903 0.0534795 0.998519 uwb: 0.49999659 851.959 864.104 +imu_odom_: 1691062418.434949283 0.407014 -0.0191536 10.1083 -0.0671117 -0.0106526 0.0383495 0.19 0 pose: 0.50017448 1.31913 0.0214592 0 0.000540013 -0.00910638 0.0535977 0.998521 uwb: 0.0 851.959 864.104 +imu_odom_: 1691062418.449838653 0.493206 -0.23942 9.85693 -0.076699 -0.0138484 0.0458064 0.19 0 pose: 0.0 1.31913 0.0214592 0 0.000540013 -0.00910638 0.0535977 0.998521 uwb: 0.50034946 852.208 863.378 +imu_odom_: 1691062418.475957460 0.624887 -0.148441 9.50498 -0.0607201 -0.0276969 0.0479369 0.26 -0.02 pose: 0.73893343 1.33911 0.0222043 0 0.000897194 -0.00515811 0.0537028 0.998543 uwb: 0.0 852.208 863.378 +imu_odom_: 1691062418.499938924 0.071826 -0.0430956 10.2639 -0.056459 -0.0106526 0.0351537 0.26 -0.02 pose: 0.0 1.33911 0.0222043 0 0.000897194 -0.00515811 0.0537028 0.998543 uwb: 0.50153639 852.456 861.684 +imu_odom_: 1691062418.523988337 0.100556 -0.311246 10.3118 -0.0660464 -0.0138484 0.0298274 0.19 -0.02 pose: 0.7082192 1.33911 0.0222043 0 0.00120246 -0.00587523 0.0537308 0.998537 uwb: 0.0 852.456 861.684 +imu_odom_: 1691062418.539819376 0.438139 -0.0215478 10.1586 -0.0458064 -0.0596548 0.0298274 0.19 -0.02 pose: 0.0 1.33911 0.0222043 0 0.00120246 -0.00587523 0.0537308 0.998537 uwb: 0.0 852.456 861.684 +imu_odom_: 1691062418.565839029 0.557849 -0.253785 9.38288 -0.0575243 -0.036219 0.0447411 0.19 0 pose: 0.49926169 1.34911 0.0225793 0 0.00224977 -0.00493443 0.0537109 0.998542 uwb: 0.49805435 852.094 860.858 +imu_odom_: 1691062418.591153234 0.445322 -0.162806 9.88566 -0.0617853 0.00106526 0.0308927 0.19 0 pose: 0.41137369 1.35873 0.0329452 0 0.00258545 -0.00416933 0.0535676 0.998552 uwb: 0.0 852.094 860.858 +imu_odom_: 1691062418.614924434 0.433351 -0.316035 9.52174 -0.0692422 -0.00532632 0.0500674 0.19 -0.02 pose: 0.43168851 1.36639 0.0332307 0 0.00215979 -0.00331304 0.0535027 0.99856 uwb: 0.50031738 852.292 859.579 +imu_odom_: 1691062418.631922568 0.282516 -0.220267 10.5489 -0.0468716 0.0106526 0.0319579 0.19 -0.02 pose: 0.0 1.36639 0.0332307 0 0.00215979 -0.00331304 0.0535027 0.99856 uwb: 0.0 852.292 859.579 +imu_odom_: 1691062418.655797588 -0.0407014 -0.246603 10.647 -0.0479369 0.0276969 0.0223706 0.21 0 pose: 0.5812151 1.36872 0.0333169 0 0.00154873 -0.00320968 0.0535347 0.99856 uwb: 0.49833431 852.449 858.249 +imu_odom_: 1691062418.679784593 0.636858 -0.0454898 10.4172 -0.0713727 -0.0287621 0.0330232 0.21 0 pose: 0.0 1.36872 0.0333169 0 0.00154873 -0.00320968 0.0535347 0.99856 uwb: 0.0 852.449 858.249 +imu_odom_: 1691062418.704946859 0.890643 -0.512359 9.31823 -0.0703074 -0.0394148 0.0479369 0.19 0 pose: 0.41836110 1.37871 0.0336883 0 -0.000373896-0.0002619560.053511 0.998567 uwb: 0.50020657 853.305 856.345 +imu_odom_: 1691062418.727774350 0.943315 -0.414197 9.44991 -0.0500674 -0.0149137 0.0276969 0.19 0 pose: 0.48078704 1.38871 0.0340552 0 0.000344274 -0.00126986 0.0533192 0.998577 uwb: 0.0 853.305 856.345 +imu_odom_: 1691062418.744830518 0.407014 -0.277727 10.1155 -0.0436758 0.015979 0.0383495 0.18 -0.02 pose: 0.0 1.38871 0.0340552 0 0.000344274 -0.00126986 0.0533192 0.998577 uwb: 0.50098229 853.402 854.929 +imu_odom_: 1691062418.769771439 0.622492 -0.289698 9.90481 -0.0543285 0.00426106 0.0500674 0.18 -0.02 pose: 0.0 1.38871 0.0340552 0 0.000344274 -0.00126986 0.0533192 0.998577 uwb: 0.0 853.402 854.929 +imu_odom_: 1691062418.792780906 0.577003 -0.414197 9.65103 -0.0607201 -0.0276969 0.0575243 0.19 -0.02 pose: 0.41036174 1.3987 0.0344229 0 -0.00192399 -0.00433105 0.053292 0.998568 uwb: 0.0 853.402 854.929 +imu_odom_: 1691062418.808785171 0.23942 -0.112527 10.2185 -0.0340885 -0.0117179 0.0372843 0.19 -0.02 pose: 0.0 1.3987 0.0344229 0 -0.00192399 -0.00433105 0.053292 0.998568 uwb: 0.49799602 853.761 853.761 +imu_odom_: 1691062418.834766622 0.665588 -0.208296 9.76595 -0.0511327 -0.00532632 0.052198 0.18 -0.02 pose: 0.56908331 1.40869 0.0347894 0 -0.00340559 -0.00593251 0.0535831 0.99854 uwb: 0.0 853.761 853.761 +imu_odom_: 1691062418.858803495 0.550666 -0.390255 9.52413 -0.0458064 0.0490022 0.04048 0.18 -0.02 pose: 0.0 1.40869 0.0347894 0 -0.00340559 -0.00593251 0.0535831 0.99854 uwb: 0.50088315 853.934 852.654 +imu_odom_: 1691062418.883831321 0.280122 -0.282516 9.27753 -0.0617853 -0.00319579 0.0607201 0.19 0 pose: 0.7007535 1.40869 0.0347894 0 -0.00303656 -0.00654112 0.0536231 0.998535 uwb: 0.0 853.934 852.654 +imu_odom_: 1691062418.898778142 0.191536 -0.260968 9.9503 -0.0660464 -0.0149137 0.0532632 0.19 0 pose: 0.0 1.40869 0.0347894 0 -0.00303656 -0.00654112 0.0536231 0.998535 uwb: 0.49983911 853.483 852.199 +imu_odom_: 1691062418.925848241 0.768539 -0.107739 10.422 -0.0809601 -0.0298274 0.0575243 0.25 0 pose: 0.50024448 1.41868 0.0351627 0 -0.00437047 -0.00688821 0.0538377 0.998516 uwb: 0.0 853.483 852.199 +imu_odom_: 1691062418.950862360 0.521936 -0.0550666 10.0197 -0.0639159 0 0.0511327 0.19 0 pose: 0.40021891 1.42868 0.0355406 0 -0.00398642 -0.00433024 0.0542031 0.998513 uwb: 0.49842763 853.322 851.259 +imu_odom_: 1691062418.967777964 0.373495 -0.222661 9.64624 -0.0905475 0.00745685 0.0500674 0.24 0 pose: 0.28154955 1.42868 0.0355406 0 -0.00223662 -0.00613225 0.0544129 0.998497 uwb: 0.0 853.322 851.259 +imu_odom_: 1691062418.992905526 0.521936 -0.289698 9.56962 -0.076699 -0.0106526 0.0340885 0.24 0 pose: 0.0 1.42868 0.0355406 0 -0.00223662 -0.00613225 0.0544129 0.998497 uwb: 0.50090356 853.111 849.739 +imu_odom_: 1691062419.17814960 0.320823 -0.447716 10.0054 -0.0639159 -0.00745685 0.0372843 0.23 0 pose: 0.23914681 1.43867 0.0359301 0 -0.000740168-0.00526581 0.0545363 0.998498 uwb: 0.0 853.111 849.739 +imu_odom_: 1691062419.31805249 0.725443 -0.181959 10.1897 -0.0649811 -0.0234358 0.0394148 0.23 0 pose: 0.0 1.43867 0.0359301 0 -0.000740168-0.00526581 0.0545363 0.998498 uwb: 0.0 853.111 849.739 +imu_odom_: 1691062419.55899295 0.414197 -0.282516 10.2927 -0.0490022 -0.0170442 0.0351537 0.17 -0.02 pose: 0.41868773 1.44866 0.0363214 0 -0.00359962 -0.00544573 0.0545202 0.998491 uwb: 0.49915694 852.746 848.839 +imu_odom_: 1691062419.80814276 0.438139 -0.131681 10.2472 -0.0415453 -0.0191748 0.0436758 0.17 -0.02 pose: 0.0 1.44866 0.0363214 0 -0.00359962 -0.00544573 0.0545202 0.998491 uwb: 0.0 852.746 848.839 +imu_odom_: 1691062419.102734232 1.9393 -0.260968 11.734 -0.0479369 0.0127832 0.04048 0.2 -0.02 pose: 0.39009962 1.44866 0.0363214 0 -0.00406608 -0.00484558 0.054488 0.998494 uwb: 0.50359849 852.914 847.421 +imu_odom_: 1691062419.118723342 0.25618 0.186748 8.53054 -0.0649811 -0.00106526 0.0383495 0.2 -0.02 pose: 0.0 1.44866 0.0363214 0 -0.00406608 -0.00484558 0.054488 0.998494 uwb: 0.0 852.914 847.421 +imu_odom_: 1691062419.143718521 -0.914585 -0.351948 10.9702 -0.0692422 0.00213053 0.0468716 0.23 0.02 pose: 0.48062984 1.45866 0.036712 0 -0.00102039 -0.00345097 0.0545053 0.998507 uwb: 0.49755887 852.536 847.029 +imu_odom_: 1691062419.165788666 -0.682347 -0.167594 10.8577 -0.0543285 -0.0138484 0.04048 0.23 0.02 pose: 0.0 1.45866 0.036712 0 -0.00102039 -0.00345097 0.0545053 0.998507 uwb: 0.0 852.536 847.029 +imu_odom_: 1691062419.189755271 0.390255 -0.208296 10.2256 -0.0500674 0.015979 0.0490022 0.19 0 pose: 0.38939390 1.46865 0.0371026 0 0.000225285 -0.00332019 0.0545201 0.998507 uwb: 0.0 852.536 847.029 +imu_odom_: 1691062419.214731493 0.555455 -0.294487 9.93354 -0.0543285 0.0990696 0.0415453 0.19 0 pose: 0.46942548 1.47864 0.0374939 0 0.00052884 0.000748817 0.054629 0.998506 uwb: 0.50113133 852.229 846.174 +imu_odom_: 1691062419.229724109 0.141258 -0.342371 9.50737 -0.0532632 -0.00213053 0.036219 0.24 0 pose: 0.0 1.47864 0.0374939 0 0.00052884 0.000748817 0.054629 0.998506 uwb: 0.0 852.229 846.174 +imu_odom_: 1691062419.246738585 0.806846 -0.167594 10.5058 -0.0628506 0.00106526 0.0351537 0.24 0 pose: 0.0 1.47864 0.0374939 0 0.00052884 0.000748817 0.054629 0.998506 uwb: 0.50047515 851.848 846.047 +imu_odom_: 1691062419.272792083 0.304064 -0.320823 10.082 -0.0585895 0.00106526 0.0415453 0.23 0 pose: 0.48069400 1.48824 0.0478811 0 0.000521424 0.000813439 0.0547301 0.998501 uwb: 0.0 851.848 846.047 +imu_odom_: 1691062419.297854044 0.337582 -0.0837971 9.80426 -0.0575243 -0.0170442 0.0330232 0.23 0 pose: 0.0 1.48824 0.0478811 0 0.000521424 0.000813439 0.0547301 0.998501 uwb: 0.49948071 851.842 845.232 +imu_odom_: 1691062419.322765233 0.402226 -0.253785 10.0126 -0.0639159 -0.0298274 0.0426106 0.19 -0.02 pose: 0.77052306 1.49823 0.0482752 0 0.000596233 0.00209427 0.0546259 0.998505 uwb: 0.0 851.842 845.232 +imu_odom_: 1691062419.346714923 0.696713 -0.294487 9.73961 -0.0479369 0.0394148 0.0351537 0.19 -0.02 pose: 0.5939304 1.49823 0.0482752 0 0.000119505 0.00163549 0.0546343 0.998505 uwb: 0.49739264 852.052 843.823 +imu_odom_: 1691062419.370752977 0.505177 -0.392649 9.59117 -0.0553937 0.0127832 0.0468716 0.19 0 pose: 0.42921575 1.50822 0.0486684 0 -0.00163297 -0.00168054 0.0546035 0.998505 uwb: 0.0 852.052 843.823 +imu_odom_: 1691062419.386702134 0.311246 -0.122104 10.1179 -0.0553937 0.0383495 0.0458064 0.19 0 pose: 0.0 1.50822 0.0486684 0 -0.00163297 -0.00168054 0.0546035 0.998505 uwb: 0.0 852.052 843.823 +imu_odom_: 1691062419.403707861 0.438139 -0.0885855 9.93115 -0.0639159 0.00532632 0.056459 0.18 -0.02 pose: 0.0 1.50822 0.0486684 0 -0.00163297 -0.00168054 0.0546035 0.998505 uwb: 0.50074054 851.805 843.014 +imu_odom_: 1691062419.429692534 0.282516 -0.351948 10.094 -0.0639159 0.00213053 0.0436758 0.18 -0.02 pose: 0.48036155 1.51821 0.0490615 0 -0.00181836 -0.00121655 0.0548081 0.998495 uwb: 0.0 851.805 843.014 +imu_odom_: 1691062419.454761495 0.234632 -0.280122 10.1466 -0.0660464 -0.0234358 0.0532632 0.17 -0.02 pose: 0.34941456 1.52546 0.0493492 0 -0.00282905 0.000804474 0.054939 0.998485 uwb: 0.50088927 851.519 842.437 +imu_odom_: 1691062419.480748793 0.31364 -0.0837971 9.81862 -0.04048 0.0117179 0.0351537 0.17 -0.02 pose: 0.7120983 1.52821 0.0494588 0 -0.00294861 0.00144203 0.0549897 0.998482 uwb: 0.0 851.519 842.437 +imu_odom_: 1691062419.505795881 0.442927 -0.203507 10.0963 -0.0681769 -0.0468716 0.0500674 0.19 0 pose: 0.43935276 1.53551 0.0497529 0 -0.0005187950.00377173 0.0550684 0.998475 uwb: 0.49950695 851.227 841.574 +imu_odom_: 1691062419.529689870 0.64404 0.0215478 10.0341 -0.0553937 -0.0287621 0.04048 0.21 0 pose: 0.0 1.53551 0.0497529 0 -0.0005187950.00377173 0.0550684 0.998475 uwb: 0.0 851.227 841.574 +imu_odom_: 1691062419.553784500 0.457293 -0.172383 9.88087 -0.0596548 -0.00639159 0.0479369 0.21 0 pose: 0.30967727 1.5382 0.0498611 0 0.000288844 0.000291375 0.0552042 0.998475 uwb: 0.49989481 851.86 840.304 +imu_odom_: 1691062419.578674400 0.586579 0.0861913 9.9527 -0.0585895 -0.052198 0.0394148 0.19 0 pose: 0.0 1.5382 0.0498611 0 0.000288844 0.000291375 0.0552042 0.998475 uwb: 0.0 851.86 840.304 +imu_odom_: 1691062419.593839369 0.296881 -0.399832 9.82102 -0.0575243 0.056459 0.0287621 0.19 0 pose: 0.48976365 1.54819 0.0502656 0 0.00324317 -0.00378959 0.0553126 0.998457 uwb: 0.50034101 851.677 839.827 +imu_odom_: 1691062419.610669243 0.684742 -0.497994 10.1394 -0.0479369 -0.00852212 0.0351537 0.19 0 pose: 0.0 1.54819 0.0502656 0 0.00324317 -0.00378959 0.0553126 0.998457 uwb: 0.0 851.677 839.827 +imu_odom_: 1691062419.635734704 0.921768 -0.232238 9.39724 -0.0575243 0.00106526 0.0468716 0.25 0 pose: 0.40055160 1.55818 0.0506721 0 0.003063 -0.00396542 0.0552163 0.998462 uwb: 0.0 851.677 839.827 +imu_odom_: 1691062419.662724329 -0.258574 -0.141258 9.97664 -0.0426106 0.0127832 0.0383495 0.24 0 pose: 0.34986659 1.56817 0.0510766 0 0.00206368 -0.00696945 0.0552964 0.998444 uwb: 0.50062389 851.809 839.126 +imu_odom_: 1691062419.687746629 0.198719 -0.363919 9.81862 -0.0617853 0.0138484 0.0415453 0.24 0 pose: 0.0 1.56817 0.0510766 0 0.00206368 -0.00696945 0.0552964 0.998444 uwb: 0.0 851.809 839.126 +imu_odom_: 1691062419.714687260 0.0550666 -0.131681 10.5417 -0.052198 -0.00426106 0.0319579 0.22 0 pose: 0.6959420 1.56817 0.0510766 0 0.00210132 -0.00621186 0.0552914 0.998449 uwb: 0.49934655 851.844 838.033 +imu_odom_: 1691062419.739871122 0.751779 -0.514753 10.2472 -0.0468716 -0.0127832 0.0308927 0.22 0 pose: 0.0 1.56817 0.0510766 0 0.00210132 -0.00621186 0.0552914 0.998449 uwb: 0.0 851.844 838.033 +imu_odom_: 1691062419.763773860 0.653617 -0.4956 9.13627 -0.0106526 -0.0607201 0.0234358 0.2 0 pose: 0.51993260 1.57816 0.0514827 0 0.000724686 -0.00110773 0.0552766 0.99847 uwb: 0.49995315 851.858 837.764 +imu_odom_: 1691062419.778774641 -0.0766145 -0.0335188 9.71567 -0.0436758 -0.0223706 0.0585895 0.2 0 pose: 0.0 1.57816 0.0514827 0 0.000724686 -0.00110773 0.0552766 0.99847 uwb: 0.0 851.858 837.764 +imu_odom_: 1691062419.794650308 0.557849 -0.141258 9.97664 -0.0308927 -0.0532632 0.0511327 0.18 0 pose: 0.52133826 1.58816 0.0518887 0 -0.00077087 -0.00186647 0.0550346 0.998482 uwb: 0.49925031 851.045 837.159 +imu_odom_: 1691062419.818657741 0.531513 -0.25618 9.8282 -0.0447411 -0.0117179 0.0479369 0.18 0 pose: 0.0 1.58816 0.0518887 0 -0.00077087 -0.00186647 0.0550346 0.998482 uwb: 0.0 851.045 837.159 +imu_odom_: 1691062419.842659633 0.622492 -0.0311246 9.93115 -0.076699 -0.0127832 0.056459 0.18 0.02 pose: 0.38857151 1.59815 0.0522899 0 -0.000461203-0.00285807 0.0550817 0.998478 uwb: 0.0 851.045 837.159 +imu_odom_: 1691062419.867674642 -0.198719 -0.328006 9.87608 -0.0639159 -0.036219 0.0287621 0.18 0.02 pose: 0.0 1.59815 0.0522899 0 -0.000461203-0.00285807 0.0550817 0.998478 uwb: 0.50011062 850.169 836.775 +imu_odom_: 1691062419.891683825 0.742203 -0.620098 10.2185 -0.0394148 -0.0553937 0.036219 0.23 0 pose: 0.40009957 1.59815 0.0522899 0 -0.000378273-0.0061082 0.0552922 0.998451 uwb: 0.0 850.169 836.775 +imu_odom_: 1691062419.916781073 0.869095 -0.292093 9.96946 -0.04048 0 0.0511327 0.23 0 pose: 0.0 1.59815 0.0522899 0 -0.000378273-0.0061082 0.0552922 0.998451 uwb: 0.0 850.169 836.775 +imu_odom_: 1691062419.933770468 0.205901 -0.0957681 9.99819 -0.0596548 0.0245011 0.0596548 0.19 0 pose: 0.49033524 1.60814 0.0526964 0 -0.000163871-0.00541528 0.0552816 0.998456 uwb: 0.0 850.169 836.775 +imu_odom_: 1691062419.956656007 0.0215478 0.0263362 10.0173 -0.0532632 0.0106526 0.0511327 0.19 0 pose: 0.0 1.60814 0.0526964 0 -0.000163871-0.00541528 0.0552816 0.998456 uwb: 0.99922096 850.23 835.405 +imu_odom_: 1691062419.972693235 0.287304 -0.270545 9.73004 -0.0553937 -0.0266316 0.0447411 0.2 0.02 pose: 0.50119256 1.61773 0.0630943 0 -0.00116678 -0.00835271 0.0554823 0.998424 uwb: 0.0 850.23 835.405 +imu_odom_: 1691062419.999644365 0.488417 -0.105345 10.003 -0.0628506 -0.0511327 0.0490022 0.2 0.02 pose: 0.0 1.61773 0.0630943 0 -0.00116678 -0.00835271 0.0554823 0.998424 uwb: 0.50063264 850.282 834.304 +imu_odom_: 1691062420.24692924 0.287304 -0.237026 9.90721 -0.0862864 0.0191748 0.052198 0.19 0 pose: 0.74803267 1.6351 0.0638111 0 0.00221386 -0.00449756 0.0558584 0.998426 uwb: 0.0 850.282 834.304 +imu_odom_: 1691062420.49835972 0.071826 -0.320823 9.4547 -0.076699 -0.00958738 0.04048 0.19 0 pose: 0.7020081 1.63771 0.0639202 0 0.00186467 -0.00375964 0.0559021 0.998427 uwb: 0.50004669 850.044 834.04 +imu_odom_: 1691062420.72752729 0.395043 -0.181959 10.3956 -0.0500674 0.00106526 0.0383495 0.18 0.02 pose: 0.43171526 1.64527 0.0642388 0 -0.0002233390.000391084 0.0560244 0.998429 uwb: 0.0 850.044 834.04 +imu_odom_: 1691062420.88692854 0.124498 -0.430956 9.48104 -0.0553937 0.00532632 0.0458064 0.18 0.02 pose: 0.0 1.64527 0.0642388 0 -0.0002233390.000391084 0.0560244 0.998429 uwb: 0.0 850.044 834.04 +imu_odom_: 1691062420.114611635 0.215478 -0.452504 10.2089 -0.0458064 0.00319579 0.0330232 0.25 0 pose: 0.0 1.64527 0.0642388 0 -0.0002233390.000391084 0.0560244 0.998429 uwb: 0.50090415 849.484 834.005 +imu_odom_: 1691062420.138619082 0.172383 -0.282516 9.90721 -0.052198 -0.00106526 0.0479369 0.25 0 pose: 0.38856882 1.65306 0.0645667 0 0.00096118 0.00173983 0.0560578 0.998426 uwb: 0.0 849.484 834.005 +imu_odom_: 1691062420.162620113 0.272939 -0.407014 10.0772 -0.0394148 0.00213053 0.0383495 0.18 0.02 pose: 0.49926228 1.66488 0.0650645 0 -0.00195995 0.00535522 0.0560673 0.998411 uwb: 0.49967638 849.349 832.978 +imu_odom_: 1691062420.188607718 0.608127 -0.402226 9.71806 -0.0458064 -0.00852212 0.0479369 0.23 -0.02 pose: 0.0 1.66488 0.0650645 0 -0.00195995 0.00535522 0.0560673 0.998411 uwb: 0.0 849.349 832.978 +imu_odom_: 1691062420.203710870 0.509965 -0.253785 9.97903 -0.0639159 -0.00958738 0.0553937 0.23 -0.02 pose: 0.31083231 1.66768 0.0651829 0 -0.00433467 0.00493608 0.0560641 0.998406 uwb: 0.0 849.349 832.978 +imu_odom_: 1691062420.219577797 0.411803 -0.294487 10.0509 -0.0553937 0.02024 0.036219 0.23 -0.02 pose: 0.0 1.66768 0.0651829 0 -0.00433467 0.00493608 0.0560641 0.998406 uwb: 0.0 849.349 832.978 +imu_odom_: 1691062420.246591059 0.476446 -0.328006 10.1466 -0.0426106 -0.015979 0.0383495 0.18 0 pose: 0.49875484 1.67767 0.0656042 0 -0.00410666 0.000243157 0.0562133 0.99841 uwb: 0.100006435 849.512 831.688 +imu_odom_: 1691062420.270743737 0.596156 -0.112527 9.88087 -0.0490022 -0.0255663 0.036219 0.18 0 pose: 0.8083652 1.67767 0.0656042 0 -0.00429672 -0.00057312 0.0562053 0.99841 uwb: 0.0 849.512 831.688 +imu_odom_: 1691062420.295577368 0.536301 -0.349553 10.2256 -0.0458064 -0.02024 0.0500674 0.19 0 pose: 0.43082288 1.68766 0.0660289 0 -0.00264784 -0.00408773 0.0561359 0.998411 uwb: 0.49781288 849.249 831.098 +imu_odom_: 1691062420.320608722 0.948104 -0.0766145 10.0892 -0.0511327 -0.0149137 0.0351537 0.19 0 pose: 0.0 1.68766 0.0660289 0 -0.00264784 -0.00408773 0.0561359 0.998411 uwb: 0.0 849.249 831.098 +imu_odom_: 1691062420.337692907 0.0837971 -0.397437 10.3142 -0.0543285 0 0.0394148 0.19 0 pose: 0.31974448 1.69766 0.0664537 0 -0.00408246 -0.00645985 0.0562494 0.998388 uwb: 0.0 849.249 831.098 +imu_odom_: 1691062420.362587780 0.493206 -0.31364 9.97903 -0.0511327 0.0234358 0.0351537 0.19 0 pose: 0.0 1.69766 0.0664537 0 -0.00408246 -0.00645985 0.0562494 0.998388 uwb: 0.50093914 848.953 829.872 +imu_odom_: 1691062420.386570730 0.579397 -0.617704 9.56244 -0.056459 -0.0543285 0.0479369 0.19 0 pose: 0.42876690 1.69766 0.0664537 0 -0.00403986 -0.00566122 0.0561936 0.998396 uwb: 0.0 848.953 829.872 +imu_odom_: 1691062420.411664201 0.610521 -0.270545 9.95988 -0.0223706 0.00213053 0.0447411 0.19 0 pose: 0.40975855 1.70765 0.0668786 0 -0.0072467 -0.00558099 0.0562733 0.998374 uwb: 0.50117536 849.135 828.575 +imu_odom_: 1691062420.435577452 0.526724 -0.23942 9.85453 -0.0681769 0.00852212 0.0468716 0.19 0 pose: 0.0 1.70765 0.0668786 0 -0.0072467 -0.00558099 0.0562733 0.998374 uwb: 0.0 849.135 828.575 +imu_odom_: 1691062420.452589896 0.169988 -0.0694318 9.54808 -0.0490022 0.0191748 0.0543285 0.22 0 pose: 0.7064119 1.70765 0.0668786 0 -0.00663602 -0.00605674 0.0562856 0.998374 uwb: 0.49994468 848.776 828.167 +imu_odom_: 1691062420.477625042 0.423774 -0.397437 9.77553 -0.0692422 -0.0458064 0.056459 0.22 0 pose: 0.0 1.70765 0.0668786 0 -0.00663602 -0.00605674 0.0562856 0.998374 uwb: 0.0 848.776 828.167 +imu_odom_: 1691062420.502639191 0.4956 -0.205901 10.1131 -0.0479369 -0.0383495 0.0426106 0.22 0.02 pose: 0.48934398 1.71764 0.0673056 0 -0.00255933 -0.00593342 0.0564395 0.998385 uwb: 0.49971430 848.53 827.281 +imu_odom_: 1691062420.516619865 0.517148 -0.198719 10.07 -0.072438 -0.0426106 0.0596548 0.22 0.02 pose: 0.0 1.71764 0.0673056 0 -0.00255933 -0.00593342 0.0564395 0.998385 uwb: 0.0 848.53 827.281 +imu_odom_: 1691062420.540578026 0.399832 -0.107739 10.0533 -0.0532632 -0.00958738 0.0351537 0.18 0 pose: 0.42063338 1.72763 0.0677352 0 -0.00377239 -0.00455532 0.0567456 0.998371 uwb: 0.0 848.53 827.281 +imu_odom_: 1691062420.564552811 0.847547 -0.143652 10.1801 -0.0628506 -0.0617853 0.0490022 0.18 0 pose: 0.0 1.72763 0.0677352 0 -0.00377239 -0.00455532 0.0567456 0.998371 uwb: 0.49903480 848.543 826.075 +imu_odom_: 1691062420.589579208 0.457293 0.0454898 9.99819 -0.052198 -0.0138484 0.0415453 0.19 0 pose: 0.38929498 1.73762 0.0681723 0 -0.000136502-0.00505994 0.0568818 0.998368 uwb: 0.0 848.543 826.075 +imu_odom_: 1691062420.614656057 0.184354 -0.0694318 9.84735 -0.0660464 0.0149137 0.0383495 0.19 0 pose: 0.0 1.73762 0.0681723 0 -0.000136502-0.00505994 0.0568818 0.998368 uwb: 0.49740169 849.237 824.413 +imu_odom_: 1691062420.631600843 0.265756 -0.509965 10.0556 -0.0639159 0.0372843 0.0298274 0.26 0 pose: 0.48012560 1.74761 0.0686108 0 0.00218096 -0.00670325 0.0569523 0.998352 uwb: 0.0 849.237 824.413 +imu_odom_: 1691062420.656582037 0.217872 -0.136469 10.082 -0.0415453 -0.04048 0.0340885 0.26 0 pose: 0.0 1.74761 0.0686108 0 0.00218096 -0.00670325 0.0569523 0.998352 uwb: 0.50102371 849.191 823.114 +imu_odom_: 1691062420.673743504 0.390255 -0.428562 9.42358 -0.0351537 0.00426106 0.0340885 0.21 -0.02 pose: 0.50001468 1.75716 0.0790403 0 0.00347628 -0.00293494 0.0568984 0.99837 uwb: 0.0 849.191 823.114 +imu_odom_: 1691062420.698581217 0.304064 -0.23942 9.47386 -0.0511327 0.0458064 0.0468716 0.21 -0.02 pose: 0.0 1.75716 0.0790403 0 0.00347628 -0.00293494 0.0568984 0.99837 uwb: 0.50021590 849.372 821.441 +imu_odom_: 1691062420.725650472 0.371101 -0.023942 9.75637 -0.0479369 -0.0532632 0.0415453 0.21 -0.02 pose: 0.42127788 1.76715 0.0794779 0 0.00225841 -0.0001910330.0567568 0.998385 uwb: 0.0 849.372 821.441 +imu_odom_: 1691062420.750608045 0.275333 -0.299275 10.1203 -0.0553937 0.0127832 0.0308927 0.21 -0.02 pose: 0.0 1.76715 0.0794779 0 0.00225841 -0.0001910330.0567568 0.998385 uwb: 0.50107037 848.263 821.078 +imu_odom_: 1691062420.774560083 0.246603 -0.179565 10.5441 -0.0490022 -0.0372843 0.0436758 0.23 0 pose: 0.41928314 1.76715 0.0794779 0 0.000899397 0.00246537 0.0568267 0.998381 uwb: 0.0 848.263 821.078 +imu_odom_: 1691062420.790597029 0.37589 -0.191536 9.59117 -0.0681769 -0.0372843 0.056459 0.23 0 pose: 0.0 1.76715 0.0794779 0 0.000899397 0.00246537 0.0568267 0.998381 uwb: 0.0 848.263 821.078 +imu_odom_: 1691062420.807592559 0.557849 -0.28491 10.0317 -0.0553937 0.0223706 0.0383495 0.19 0 pose: 0.51941672 1.77714 0.0799149 0 0.000909314 0.00390062 0.0567495 0.99838 uwb: 0.49854778 847.819 820.556 +imu_odom_: 1691062420.832655409 0.658405 -0.196325 10.319 -0.0745685 -0.0255663 0.04048 0.19 0 pose: 0.0 1.77714 0.0799149 0 0.000909314 0.00390062 0.0567495 0.99838 uwb: 0.0 847.819 820.556 +imu_odom_: 1691062420.849585906 0.699107 -0.411803 9.39724 -0.0372843 0.0255663 0.0213053 0.21 -0.02 pose: 0.75081524 1.79437 0.0806683 0 0.000437851 -0.0007130360.0569232 0.998378 uwb: 0.49985428 847.604 819.344 +imu_odom_: 1691062420.874525398 0.816423 -0.318429 9.78271 -0.0692422 -0.00319579 0.0532632 0.21 -0.02 pose: 0.6899057 1.79712 0.0807894 0 0.000121796 -0.00118793 0.0568608 0.998381 uwb: 0.0 847.604 819.344 +imu_odom_: 1691062420.901531078 0.581791 -0.220267 9.60075 -0.0458064 -0.0170442 0.0490022 0.23 -0.02 pose: 0.34970932 1.80413 0.0810964 0 -0.000983355-0.00432415 0.0569397 0.998368 uwb: 0.50067959 848.566 817.921 +imu_odom_: 1691062420.926536769 0.0670376 -0.349553 9.75158 -0.0490022 -0.00852212 0.0330232 0.23 -0.02 pose: 0.0 1.80413 0.0810964 0 -0.000983355-0.00432415 0.0569397 0.998368 uwb: 0.0 848.566 817.921 +imu_odom_: 1691062420.943532007 0.287304 -0.258574 10.0317 -0.0266316 0.0191748 0.0308927 0.21 0.02 pose: 0.52011371 1.81428 0.0815445 0 -0.000898401-0.00478524 0.0569868 0.998363 uwb: 0.49925352 848.697 817.107 +imu_odom_: 1691062420.968529825 0.31364 -0.339977 9.64624 -0.0383495 0.00639159 0.0511327 0.21 0.02 pose: 0.0 1.81428 0.0815445 0 -0.000898401-0.00478524 0.0569868 0.998363 uwb: 0.0 848.697 817.107 +imu_odom_: 1691062420.993483315 0.526724 -0.0287304 10.137 -0.0511327 0.0170442 0.0607201 0.24 0 pose: 0.41993056 1.82416 0.0819794 0 -0.00231044 -0.0008128990.0570683 0.998367 uwb: 0.50191318 848.07 816.674 +imu_odom_: 1691062421.16519646 0.335188 -0.184354 9.81144 -0.052198 0.036219 0.0532632 0.24 0 pose: 0.7029706 1.82709 0.082109 0 -0.00164804 -0.00100043 0.0571412 0.998364 uwb: 0.0 848.07 816.674 +imu_odom_: 1691062421.32497109 0.318429 -0.294487 9.54329 -0.0585895 -0.00106526 0.0447411 0.19 0 pose: 0.23956412 1.82709 0.082109 0 0.000195136 -0.0007720440.0573681 0.998353 uwb: 0.0 848.07 816.674 +imu_odom_: 1691062421.59492015 0.574608 -0.0957681 10.1706 -0.0777643 -0.0372843 0.0511327 0.19 0 pose: 0.0 1.82709 0.082109 0 0.000195136 -0.0007720440.0573681 0.998353 uwb: 0.49774312 847.633 816.147 +imu_odom_: 1691062421.84565962 0.237026 -0.328006 9.8665 -0.0841559 0.0319579 0.0500674 0.18 0.02 pose: 0.25164350 1.82709 0.082109 0 -8.68974e-050.00164666 0.0575034 0.998344 uwb: 0.0 847.633 816.147 +imu_odom_: 1691062421.109499927 -0.0814029 -0.349553 9.26077 -0.0745685 -0.0117179 0.04048 0.18 0.02 pose: 0.42849593 1.83708 0.0825596 0 -0.0001169790.000157646 0.0577227 0.998333 uwb: 0.50023952 848.145 814.469 +imu_odom_: 1691062421.123530477 0.311246 -0.222661 9.96946 -0.0543285 0.0372843 0.0266316 0.18 0 pose: 0.0 1.83708 0.0825596 0 -0.0001169790.000157646 0.0577227 0.998333 uwb: 0.0 848.145 814.469 +imu_odom_: 1691062421.139589889 0.227449 -0.428562 10.0173 -0.0617853 -0.0255663 0.0415453 0.18 0 pose: 0.0 1.83708 0.0825596 0 -0.0001169790.000157646 0.0577227 0.998333 uwb: 0.0 848.145 814.469 +imu_odom_: 1691062421.156478692 0.737414 -0.251391 9.87608 -0.0468716 0.0298274 0.0351537 0.18 0 pose: 0.48024254 1.84707 0.0830145 0 -0.00181915 0.00438871 0.0577884 0.998318 uwb: 0.50040575 848.405 813.129 +imu_odom_: 1691062421.181503645 0.701501 -0.158017 10.0006 -0.0585895 -0.0340885 0.0458064 0.18 0 pose: 0.0 1.84707 0.0830145 0 -0.00181915 0.00438871 0.0577884 0.998318 uwb: 0.0 848.405 813.129 +imu_odom_: 1691062421.205461821 0.845153 -0.134075 9.91678 -0.0500674 0.0138484 0.0468716 0.2 0 pose: 0.65949505 1.85706 0.0834703 0 -0.00167552 0.000992031 0.0577838 0.998327 uwb: 0.50059530 848.301 811.997 +imu_odom_: 1691062421.222500521 0.560243 -0.442927 9.87848 -0.0426106 -0.02024 0.0383495 0.2 0 pose: 0.5972265 1.85706 0.0834703 0 -0.00148889 0.000475479 0.0578047 0.998327 uwb: 0.0 848.301 811.997 +imu_odom_: 1691062421.246463946 0.579397 -0.260968 9.83059 -0.0383495 -0.0117179 0.0436758 0.18 -0.02 pose: 0.0 1.85706 0.0834703 0 -0.00148889 0.000475479 0.0578047 0.998327 uwb: 0.49865890 848.663 811.1 +imu_odom_: 1691062421.263448404 0.612916 -0.0550666 10.2951 -0.0543285 -0.00532632 0.0553937 0.18 -0.02 pose: 0.40988711 1.86705 0.0839268 0 -0.00209906 -0.00284104 0.0578685 0.998318 uwb: 0.0 848.663 811.1 +imu_odom_: 1691062421.278626513 0.493206 -0.0502782 9.87848 -0.0479369 -0.0319579 0.0426106 0.18 -0.02 pose: 0.0 1.86705 0.0839268 0 -0.00209906 -0.00284104 0.0578685 0.998318 uwb: 0.0 848.663 811.1 +imu_odom_: 1691062421.294506864 0.351948 -0.325611 9.98622 -0.0340885 0.0287621 0.0319579 0.17 0 pose: 0.50161892 1.87658 0.0943743 0 0.00124155 -0.00544894 0.058042 0.998299 uwb: 0.50103275 847.724 810.945 +imu_odom_: 1691062421.309509996 0.718261 -0.265756 10.3693 -0.036219 -0.0191748 0.0500674 0.17 0 pose: 0.5997928 1.87658 0.0943743 0 0.000896208 -0.00490236 0.0580214 0.998303 uwb: 0.0 847.724 810.945 +imu_odom_: 1691062421.327511072 0.141258 -0.292093 9.27753 -0.0383495 -0.00532632 0.0436758 0.17 0 pose: 0.0 1.87658 0.0943743 0 0.000896208 -0.00490236 0.0580214 0.998303 uwb: 0.0 847.724 810.945 +imu_odom_: 1691062421.351452624 0.208296 -0.351948 9.64145 -0.0532632 0.00213053 0.0532632 0.19 0 pose: 0.42886631 1.88657 0.0948352 0 -8.61223e-05-0.00384845 0.058108 0.998303 uwb: 0.49889802 847.596 810.108 +imu_odom_: 1691062421.376484577 -0.0957681 -0.0694318 9.98143 -0.0500674 0.00745685 0.0394148 0.21 0 pose: 0.0 1.88657 0.0948352 0 -8.61223e-05-0.00384845 0.058108 0.998303 uwb: 0.0 847.596 810.108 +imu_odom_: 1691062421.400462000 0.0167594 -0.246603 10.0078 -0.0607201 -0.0149137 0.0436758 0.18 0 pose: 0.30981762 1.89656 0.0952996 0 -0.00104971 -0.00096168 0.0582766 0.998299 uwb: 0.50013162 847.329 809.776 +imu_odom_: 1691062421.425496577 0.6608 -0.308852 9.9934 -0.0447411 -0.00106526 0.0287621 0.18 0 pose: 0.0 1.89656 0.0952996 0 -0.00104971 -0.00096168 0.0582766 0.998299 uwb: 0.0 847.329 809.776 +imu_odom_: 1691062421.451437536 0.565032 -0.54109 9.56723 -0.0426106 -0.0149137 0.0436758 0.25 -0.02 pose: 0.67003743 1.90655 0.0957658 0 -0.00122944 0.000725005 0.0581874 0.998305 uwb: 0.49996830 846.764 809.412 +imu_odom_: 1691062421.467509196 0.19393 -0.244209 10.058 -0.0383495 0.0181095 0.0351537 0.25 -0.02 pose: 0.8139650 1.90655 0.0957658 0 -0.00185402 0.000234766 0.0582029 0.998303 uwb: 0.0 846.764 809.412 +imu_odom_: 1691062421.493593053 0.433351 -0.0407014 9.991 -0.0447411 -0.00319579 0.0479369 0.22 0 pose: 0.0 1.90655 0.0957658 0 -0.00185402 0.000234766 0.0582029 0.998303 uwb: 0.49893303 845.82 809.263 +imu_odom_: 1691062421.518515062 0.112527 -0.150835 9.73243 -0.0511327 0.0276969 0.0479369 0.22 0 pose: 0.40986085 1.91654 0.0962304 0 -0.00219484 0.000840224 0.0582359 0.9983 uwb: 0.0 845.82 809.263 +imu_odom_: 1691062421.544430649 0.45011 -0.248997 9.90721 -0.0628506 -0.0298274 0.0447411 0.21 0 pose: 0.43892750 1.92653 0.0966955 0 0.000248968 0.00340023 0.0584202 0.998286 uwb: 0.49932672 845.753 808.497 +imu_odom_: 1691062421.569436355 0.553061 -0.146046 10.4339 -0.0426106 -0.0415453 0.0447411 0.21 0 pose: 0.6998506 1.92653 0.0966955 0 1.74592e-05 0.00264198 0.0584379 0.998288 uwb: 0.0 845.753 808.497 +imu_odom_: 1691062421.586429270 0.64404 -0.102951 9.69412 -0.0713727 0.00106526 0.0607201 0.2 -0.02 pose: 0.0 1.92653 0.0966955 0 1.74592e-05 0.00264198 0.0584379 0.998288 uwb: 0.0 845.753 808.497 +imu_odom_: 1691062421.611494468 0.438139 -0.25618 9.81862 -0.0660464 -0.0276969 0.0436758 0.2 -0.02 pose: 0.51976406 1.93652 0.0971648 0 0.00114642 -0.00272533 0.0586338 0.998275 uwb: 0.50006162 844.29 808.739 +imu_odom_: 1691062421.628415642 0.368707 -0.385466 9.70849 -0.0532632 -0.00106526 0.0426106 0.23 0 pose: 0.0 1.93652 0.0971648 0 0.00114642 -0.00272533 0.0586338 0.998275 uwb: 0.0 844.29 808.739 +imu_odom_: 1691062421.653407350 0.344765 -0.102951 10.3286 -0.0479369 0.00958738 0.0340885 0.23 0 pose: 0.42023118 1.94651 0.0976389 0 -0.00160855 -0.00240611 0.058799 0.998266 uwb: 0.50010537 843.097 808.983 +imu_odom_: 1691062421.679526203 0.366313 -0.253785 9.89524 -0.0585895 0.0106526 0.0500674 0.22 0 pose: 0.33894258 1.95364 0.0979792 0 -0.00023866 -0.0004198110.0587458 0.998273 uwb: 0.0 843.097 808.983 +imu_odom_: 1691062421.704398926 0.3304 0.0311246 10.1275 -0.0490022 -0.0287621 0.0415453 0.22 0 pose: 0.7174359 1.9565 0.0981151 0 -0.0007209730.000177825 0.0587836 0.99827 uwb: 0.50098609 842.692 808.49 +imu_odom_: 1691062421.730451871 0.260968 -0.308852 9.78271 -0.0511327 0.0181095 0.0245011 0.22 0 pose: 0.43817217 1.96334 0.0984429 0 0.000552515 0.00190902 0.0589135 0.998261 uwb: 0.0 842.692 808.49 +imu_odom_: 1691062421.754463706 0.435745 -0.4956 9.91199 -0.0511327 0.0255663 0.0383495 0.19 0 pose: 0.0 1.96334 0.0984429 0 0.000552515 0.00190902 0.0589135 0.998261 uwb: 0.49998580 842.839 807.301 +imu_odom_: 1691062421.780459200 0.402226 -0.416591 9.65821 -0.04048 0 0.0330232 0.19 0 pose: 0.33034537 1.96648 0.0985936 0 -0.00198331 0.00371514 0.0587051 0.998266 uwb: 0.0 842.839 807.301 +imu_odom_: 1691062421.796451245 0.59855 0.0047884 10.2759 -0.0681769 -0.00852212 0.0447411 0.19 0 pose: 0.0 1.96648 0.0985936 0 -0.00198331 0.00371514 0.0587051 0.998266 uwb: 0.50084611 842.455 806.486 +imu_odom_: 1691062421.820553777 0.912191 -0.179565 10.3286 -0.0649811 -0.015979 0.0287621 0.19 0 pose: 0.50039117 1.97647 0.0990681 0 -0.00504869 0.00164827 0.0586066 0.998267 uwb: 0.0 842.455 806.486 +imu_odom_: 1691062421.837408460 0.339977 -0.3304 10.0293 -0.0553937 0.00852212 0.0298274 0.19 0 pose: 0.0 1.97647 0.0990681 0 -0.00504869 0.00164827 0.0586066 0.998267 uwb: 0.0 842.455 806.486 +imu_odom_: 1691062421.863390247 0.586579 -0.0502782 10.6542 -0.0660464 -0.0234358 0.0298274 0.18 -0.02 pose: 0.39954886 1.98646 0.0995405 0 -0.00411416 -0.0006783210.0584595 0.998281 uwb: 0.49895635 841.854 806.093 +imu_odom_: 1691062421.889518723 0.725443 -0.548272 9.22007 -0.0788296 -0.0266316 0.0500674 0.21 0 pose: 0.35962781 1.99371 0.0998814 0 -0.00254437 -0.00142308 0.0582836 0.998296 uwb: 0.0 841.854 806.093 +imu_odom_: 1691062421.914511889 0.634463 -0.426168 9.22486 -0.0308927 0.0287621 0.0223706 0.21 0 pose: 0.0 1.99371 0.0998814 0 -0.00254437 -0.00142308 0.0582836 0.998296 uwb: 0.50129230 841.367 805.149 +imu_odom_: 1691062421.939428940 0.828394 -0.399832 9.62708 -0.0756338 -0.00639159 0.0532632 0.19 -0.02 pose: 0.51121642 1.99645 0.100009 0 -0.00561802 -0.00538779 0.0581967 0.998275 uwb: 0.0 841.367 805.149 +imu_odom_: 1691062421.956366446 0.244209 -0.25618 9.60314 -0.0372843 0.0213053 0.04048 0.19 -0.02 pose: 0.0 1.99645 0.100009 0 -0.00561802 -0.00538779 0.0581967 0.998275 uwb: 0.49914883 841.758 803.889 +imu_odom_: 1691062421.971413905 0.85473 -0.0909797 10.3238 -0.0426106 -0.00639159 0.0543285 0.17 -0.11 pose: 0.0 1.99645 0.100009 0 -0.00561802 -0.00538779 0.0581967 0.998275 uwb: 0.0 841.758 803.889 +imu_odom_: 1691062421.988356368 1.87466 -0.390255 10.1754 -0.0607201 -0.0745685 0.00852212 0.17 -0.11 pose: 0.47857151 2.00597 0.110464 0 -0.00533236 -0.00647653 0.058408 0.998258 uwb: 0.0 841.758 803.889 +imu_odom_: 1691062422.5415484 1.80523 0.0263362 9.38288 -0.0394148 0.0245011 -0.143811 0.17 -0.11 pose: 0.0 2.00597 0.110464 0 -0.00533236 -0.00647653 0.058408 0.998258 uwb: 0.49987498 842.346 802.51 +imu_odom_: 1691062422.22352999 1.74298 0.270545 9.99579 -0.0585895 -0.00319579 -0.213053 0.13 -0.29 pose: 0.43046444 2.01596 0.110934 0 -0.00401335 -0.0108453 0.0566234 0.998329 uwb: 0.0 842.346 802.51 +imu_odom_: 1691062422.38459080 1.35512 0.0574608 9.93594 -0.0649811 0.0255663 -0.309992 0.13 -0.29 pose: 0.6960890 2.01596 0.110934 0 -0.00366415 -0.0114471 0.0557389 0.998373 uwb: 0.0 842.346 802.51 +imu_odom_: 1691062422.55356058 0.888249 -0.196325 10.1299 -0.052198 0.0298274 -0.399474 0.13 -0.29 pose: 0.0 2.01596 0.110934 0 -0.00366415 -0.0114471 0.0557389 0.998373 uwb: 0.49939403 842.162 801.569 +imu_odom_: 1691062422.72342276 0.584185 0.0837971 9.4571 -0.0532632 -0.0181095 -0.401605 0.14 -0.53 pose: 0.42979684 2.02595 0.11145 0 -0.00170427 -0.0147623 0.0479253 0.99874 uwb: 0.0 842.162 801.569 +imu_odom_: 1691062422.88405779 0.553061 -0.447716 9.48343 -0.0639159 -0.00745685 -0.411192 0.1 -0.44 pose: 0.0 2.02595 0.11145 0 -0.00170427 -0.0147623 0.0479253 0.99874 uwb: 0.0 842.162 801.569 +imu_odom_: 1691062422.105359333 0.591368 -0.342371 9.57681 -0.052198 -0.0468716 -0.426106 0.1 -0.44 pose: 0.0 2.02595 0.11145 0 -0.00170427 -0.0147623 0.0479253 0.99874 uwb: 0.50049352 841.374 801.291 +imu_odom_: 1691062422.121380842 0.349553 -0.296881 9.43076 -0.0649811 0.00319579 -0.444215 0.1 -0.44 pose: 0.24998430 2.02595 0.11145 0 -0.000737914-0.0140295 0.0423666 0.999003 uwb: 0.0 841.374 801.291 +imu_odom_: 1691062422.138398847 0.600945 -0.0383072 9.87608 -0.0575243 -0.0383495 -0.456998 0.08 -0.5 pose: 0.0 2.02595 0.11145 0 -0.000737914-0.0140295 0.0423666 0.999003 uwb: 0.0 841.374 801.291 +imu_odom_: 1691062422.154473724 0.878672 -0.294487 9.67257 -0.0788296 -0.0330232 -0.477238 0.08 -0.5 pose: 0.33080341 2.02595 0.11145 0 -0.00285869 -0.0122476 0.0346922 0.999319 uwb: 0.49990443 841.28 800.46 +imu_odom_: 1691062422.171344164 0.658405 -0.0837971 9.96706 -0.0458064 -0.0245011 -0.529436 0.1 -0.67 pose: 0.41038895 2.031 0.111751 0 -0.00163098 -0.0133466 0.0243801 0.999612 uwb: 0.0 841.28 800.46 +imu_odom_: 1691062422.187345259 0.624887 -0.270545 9.5792 -0.0671117 -0.00639159 -0.517718 0.1 -0.67 pose: 0.0 2.031 0.111751 0 -0.00163098 -0.0133466 0.0243801 0.999612 uwb: 0.0 841.28 800.46 +imu_odom_: 1691062422.204454251 0.354342 -0.356736 9.76595 -0.0809601 0.0170442 -0.497478 0.1 -0.67 pose: 0.0 2.031 0.111751 0 -0.00163098 -0.0133466 0.0243801 0.999612 uwb: 0.49924827 841.087 799.859 +imu_odom_: 1691062422.220384772 0.500388 -0.368707 10.0604 -0.0458064 -0.00745685 -0.540089 0.06 -0.58 pose: 0.7932306 2.03593 0.111992 0 -0.000768104-0.0133782 0.0221142 0.999666 uwb: 0.0 841.087 799.859 +imu_odom_: 1691062422.237500764 0.758962 0.0454898 10.1083 -0.0713727 -0.0394148 -0.493217 0.07 -0.64 pose: 0.0 2.03593 0.111992 0 -0.000768104-0.0133782 0.0221142 0.999666 uwb: 0.0 841.087 799.859 +imu_odom_: 1691062422.253379083 0.526724 -0.366313 9.53132 -0.0745685 -0.00852212 -0.426106 0.07 -0.64 pose: 0.64997666 2.03593 0.111992 0 -0.00242064 -0.0102119 0.00405609 0.999937 uwb: 0.0 841.087 799.859 +imu_odom_: 1691062422.270444623 0.761356 -0.519542 9.94073 -0.0532632 0.0127832 -0.413323 0.07 -0.64 pose: 0.0 2.03593 0.111992 0 -0.00242064 -0.0102119 0.00405609 0.999937 uwb: 0.0 841.087 799.859 +imu_odom_: 1691062422.286379518 0.675165 -0.148441 9.95748 -0.0575243 -0.0266316 -0.394148 0.06 -0.55 pose: 0.0 2.03593 0.111992 0 -0.00242064 -0.0102119 0.00405609 0.999937 uwb: 0.0 841.087 799.859 +imu_odom_: 1691062422.303530505 0.794875 -0.205901 10.0173 -0.0660464 -0.0138484 -0.339819 0.06 -0.55 pose: 0.33039222 2.03593 0.111992 0 -0.0035736 -0.0103416 -0.00392166 0.999932 uwb: 0.100016466 840.281 799.565 +imu_odom_: 1691062422.319469483 0.581791 -0.363919 9.66539 -0.0607201 0.00106526 -0.32384 0.04 -0.32 pose: 0.43087587 2.03591 0.11199 0 -0.00231832 -0.0132855 -0.0129184 0.999826 uwb: 0.0 840.281 799.565 +imu_odom_: 1691062422.346352710 0.588974 -0.225055 9.96467 -0.0596548 -0.00319579 -0.300405 0.04 -0.32 pose: 0.0 2.03591 0.11199 0 -0.00231832 -0.0132855 -0.0129184 0.999826 uwb: 0.50372477 840.998 797.943 +imu_odom_: 1691062422.362472206 0.124498 -0.241814 9.85214 -0.0660464 0.0532632 -0.243946 0.04 -0.26 pose: 0.7909851 2.03593 0.111992 0 -0.00296321 -0.0128057 -0.0143462 0.999811 uwb: 0.0 840.998 797.943 +imu_odom_: 1691062422.379468630 -1.01993 -0.402226 10.0461 -0.0468716 0.0905475 -0.206661 0.07 -0.32 pose: 0.0 2.03593 0.111992 0 -0.00296321 -0.0128057 -0.0143462 0.999811 uwb: 0.0 840.998 797.943 +imu_odom_: 1691062422.395473808 -1.28808 -0.356736 10.0461 -0.0553937 -0.0276969 -0.193878 0.07 -0.23 pose: 0.0 2.03593 0.111992 0 -0.00296321 -0.0128057 -0.0143462 0.999811 uwb: 0.49615117 841.431 796.674 +imu_odom_: 1691062422.413514263 -0.337582 -0.047884 9.94073 -0.056459 -0.0937433 -0.166181 0.07 -0.23 pose: 0.76029405 2.04593 0.112405 0 -0.0017618 -0.00515921 -0.0256879 0.999655 uwb: 0.0 841.431 796.674 +imu_odom_: 1691062422.429327257 0.588974 -0.411803 9.72285 -0.0735032 -0.0692422 -0.124636 0.07 -0.23 pose: 0.0 2.04593 0.112405 0 -0.0017618 -0.00515921 -0.0256879 0.999655 uwb: 0.0 841.431 796.674 +imu_odom_: 1691062422.446307350 0.584185 -0.277727 9.75877 -0.0575243 0 -0.132093 0.1 -0.2 pose: 0.0 2.04593 0.112405 0 -0.0017618 -0.00515921 -0.0256879 0.999655 uwb: 0.50122259 841.844 795.367 +imu_odom_: 1691062422.462341399 0.270545 -0.342371 9.94791 -0.0500674 0.0394148 -0.137419 0.1 -0.2 pose: 0.32877951 2.04593 0.112405 0 -0.00198485 -0.00410862 -0.0290325 0.999568 uwb: 0.0 841.844 795.367 +imu_odom_: 1691062422.479342489 -0.19393 -0.253785 9.9503 -0.052198 0.0255663 -0.11931 0.15 -0.2 pose: 0.41993687 2.05123 0.112628 0 -0.00341955 -0.00462074 -0.0326393 0.999451 uwb: 0.0 841.844 795.367 +imu_odom_: 1691062422.495352041 -0.129287 -0.292093 9.77074 -0.0617853 -0.0149137 -0.127832 0.15 -0.2 pose: 0.0 2.05123 0.112628 0 -0.00341955 -0.00462074 -0.0326393 0.999451 uwb: 0.49849879 842.473 793.96 +imu_odom_: 1691062422.512287223 0.0622492 -0.110133 9.8258 -0.0585895 0.015979 -0.12144 0.15 -0.2 pose: 0.0 2.05123 0.112628 0 -0.00341955 -0.00462074 -0.0326393 0.999451 uwb: 0.0 842.473 793.96 +imu_odom_: 1691062422.528403511 0.275333 -0.31364 10.1347 -0.0639159 0.0117179 -0.0969391 0.11 -0.11 pose: 0.6952725 2.05592 0.112791 0 -0.00335458 -0.00382473 -0.0331896 0.999436 uwb: 0.0 842.473 793.96 +imu_odom_: 1691062422.546292903 -0.0047884 -0.196325 9.59357 -0.0735032 -0.0266316 -0.0798948 0.17 -0.17 pose: 0.0 2.05592 0.112791 0 -0.00335458 -0.00382473 -0.0331896 0.999436 uwb: 0.50187292 843.083 792.518 +imu_odom_: 1691062422.562333951 0.260968 -0.361524 9.53371 -0.0607201 -0.0234358 -0.0873517 0.17 -0.17 pose: 0.67005531 2.05625 0.102797 0 -0.00304494 0.00284475 -0.038242 0.99926 uwb: 0.0 843.083 792.518 +imu_odom_: 1691062422.579400074 0.452504 -0.234632 9.85214 -0.0671117 -0.0490022 -0.0735032 0.18 -0.17 pose: 0.0 2.05625 0.102797 0 -0.00304494 0.00284475 -0.038242 0.99926 uwb: 0.0 843.083 792.518 +imu_odom_: 1691062422.595283059 0.414197 -0.0383072 9.83059 -0.0479369 -0.0372843 -0.092678 0.18 -0.17 pose: 0.0 2.05625 0.102797 0 -0.00304494 0.00284475 -0.038242 0.99926 uwb: 0.49825965 843.202 791.541 +imu_odom_: 1691062422.612403134 0.500388 -0.196325 9.78271 -0.0532632 -0.036219 -0.0735032 0.18 -0.17 pose: 0.33107463 2.06625 0.103131 0 -0.00391247 0.00381028 -0.0402523 0.999175 uwb: 0.0 843.202 791.541 +imu_odom_: 1691062422.628333363 0.588974 -0.486023 9.78031 -0.0628506 -0.0426106 -0.0703074 0.18 -0.14 pose: 0.33012975 2.06625 0.103131 0 -0.00175751 0.00118241 -0.042268 0.999104 uwb: 0.0 843.202 791.541 +imu_odom_: 1691062422.645298291 1.04627 -0.114922 9.79468 -0.0436758 -0.0266316 -0.0735032 0.18 -0.14 pose: 0.0 2.06625 0.103131 0 -0.00175751 0.00118241 -0.042268 0.999104 uwb: 0.50001525 843.943 790.249 +imu_odom_: 1691062422.661395332 0.940921 -0.112527 10.0556 -0.0436758 0.0298274 -0.0223706 0.18 -0.14 pose: 0.0 2.06625 0.103131 0 -0.00175751 0.00118241 -0.042268 0.999104 uwb: 0.0 843.943 790.249 +imu_odom_: 1691062422.678385923 1.00078 -0.397437 9.83059 -0.0596548 -0.0234358 0.00106526 0.1 -0.11 pose: 0.32917321 2.07624 0.103486 0 -0.00259484 -0.00189267 -0.0441055 0.999022 uwb: 0.0 843.943 790.249 +imu_odom_: 1691062422.694361938 1.51792 -0.292093 9.98622 -0.0511327 -0.0276969 -0.0319579 0.1 -0.11 pose: 0.0 2.07624 0.103486 0 -0.00259484 -0.00189267 -0.0441055 0.999022 uwb: 0.49968571 844.211 789.463 +imu_odom_: 1691062422.711334157 1.34075 -0.0981623 9.52653 -0.0458064 0.0319579 -0.0735032 0.11 -0.14 pose: 0.17974256 2.07624 0.103486 0 -0.00209105 -0.00362834 -0.0449211 0.998982 uwb: 0.0 844.211 789.463 +imu_odom_: 1691062422.727319503 0.481235 -0.0646434 9.88566 -0.0628506 0.02024 -0.0692422 0.11 -0.14 pose: 0.0 2.07624 0.103486 0 -0.00209105 -0.00362834 -0.0449211 0.998982 uwb: 0.0 844.211 789.463 +imu_odom_: 1691062422.744274808 0.426168 -0.100556 9.9503 -0.0617853 -0.00319579 -0.0862864 0.11 -0.14 pose: 0.0 2.07624 0.103486 0 -0.00209105 -0.00362834 -0.0449211 0.998982 uwb: 0.49982861 844.17 789.023 +imu_odom_: 1691062422.760384972 0.871489 -0.361524 10.1131 -0.0628506 -0.0543285 -0.0798948 0.06 -0.05 pose: 0.47951082 2.07624 0.103486 0 -0.00238463 -0.00838845 -0.0464654 0.998882 uwb: 0.0 844.17 789.023 +imu_odom_: 1691062422.777376146 0.852336 -0.368707 9.60793 -0.0607201 0.00426106 -0.0628506 0.08 -0.11 pose: 0.0 2.07624 0.103486 0 -0.00238463 -0.00838845 -0.0464654 0.998882 uwb: 0.0 844.17 789.023 +imu_odom_: 1691062422.793249508 1.02472 -0.447716 9.92636 -0.0628506 -0.00106526 -0.0340885 0.08 -0.11 pose: 0.66128021 2.08624 0.103856 0 -0.000892336-0.00943187 -0.0503053 0.998689 uwb: 0.50023106 844.999 787.829 +imu_odom_: 1691062422.810286760 0.579397 -0.380678 9.79228 -0.0596548 0.0106526 -0.0351537 0.07 -0.08 pose: 0.0 2.08624 0.103856 0 -0.000892336-0.00943187 -0.0503053 0.998689 uwb: 0.0 844.999 787.829 +imu_odom_: 1691062422.835391634 0.806846 -0.198719 9.93354 -0.0543285 -0.015979 -0.0372843 0.07 -0.08 pose: 0.0 2.08624 0.103856 0 -0.000892336-0.00943187 -0.0503053 0.998689 uwb: 0.0 844.999 787.829 +imu_odom_: 1691062422.852338773 0.328006 -0.253785 9.73004 -0.0660464 0.0351537 -0.0319579 0.07 -0.08 pose: 0.32878534 2.08624 0.103856 0 -0.00293532 -0.0112555 -0.0516433 0.998598 uwb: 0.49897706 844.836 787.217 +imu_odom_: 1691062422.877529969 -1.18992 -0.217872 9.96467 -0.0500674 0.0841559 -0.0234358 0.05 -0.05 pose: 0.42089925 2.08624 0.103856 0 -0.0029645 -0.0124541 -0.0532347 0.9985 uwb: 0.0 844.836 787.217 +imu_odom_: 1691062422.902397749 -0.787692 -0.502782 9.93115 -0.0553937 -0.104396 0.0181095 0.1 -0.02 pose: 0.35170737 2.09336 0.104115 0 -0.00260636 -0.00763927 -0.054382 0.998488 uwb: 0.50125175 845.275 786.256 +imu_odom_: 1691062422.925257080 0.687136 -0.0790087 9.67018 -0.0447411 -0.056459 -0.0138484 0.1 -0.02 pose: 0.0 2.09336 0.104115 0 -0.00260636 -0.00763927 -0.054382 0.998488 uwb: 0.0 845.275 786.256 +imu_odom_: 1691062422.941374535 0.612916 -0.196325 9.65582 -0.0468716 -0.0149137 0.00319579 0.11 -0.02 pose: 0.6871069 2.09623 0.104205 0 -0.00271117 -0.00730031 -0.0544526 0.998486 uwb: 0.0 845.275 786.256 +imu_odom_: 1691062422.968298299 -0.25618 -0.344765 9.76595 -0.04048 0.0468716 -0.015979 0.11 -0.02 pose: 0.0 2.09623 0.104205 0 -0.00271117 -0.00730031 -0.0544526 0.998486 uwb: 0.49800302 845.144 785.681 +imu_odom_: 1691062422.993224696 0.184354 -0.177171 10.1849 -0.0468716 -0.0351537 0.0181095 0.12 -0.02 pose: 0.48994239 2.09623 0.104205 0 -0.000759749-0.00932082 -0.0554112 0.99842 uwb: 0.50055768 844.625 785.357 +imu_odom_: 1691062423.18235382 0.0909797 -0.397437 9.44513 -0.0490022 -0.0138484 -0.0117179 0.12 -0.02 pose: 0.0 2.09623 0.104205 0 -0.000759749-0.00932082 -0.0554112 0.99842 uwb: 0.0 844.625 785.357 +imu_odom_: 1691062423.40277582 0.452504 -0.186748 10.0916 -0.0628506 -0.0617853 0.0106526 0.13 -0.05 pose: 0.42853992 2.10622 0.104591 0 -0.000165888-0.00601549 -0.0563884 0.998391 uwb: 0.0 844.625 785.357 +imu_odom_: 1691062423.56372007 0.605733 -0.011971 9.65821 -0.0532632 -0.056459 0.00532632 0.13 -0.05 pose: 0.0 2.10622 0.104591 0 -0.000165888-0.00601549 -0.0563884 0.998391 uwb: 0.50065123 844.939 784.607 +imu_odom_: 1691062423.81293461 0.122104 -0.531513 9.79468 -0.0607201 0.0191748 0.0191748 0.13 -0.02 pose: 0.47995422 2.10622 0.104591 0 -0.000147899-0.00262666 -0.0572964 0.998354 uwb: 0.0 844.939 784.607 +imu_odom_: 1691062423.104275873 0.502782 -0.0191536 9.79947 -0.052198 -0.0426106 0.0223706 0.13 -0.02 pose: 0.0 2.10622 0.104591 0 -0.000147899-0.00262666 -0.0572964 0.998354 uwb: 0.49941478 844.903 783.761 +imu_odom_: 1691062423.120236440 0.289698 -0.311246 9.71806 -0.0553937 0.0117179 0.0181095 0.15 0 pose: 0.39089377 2.11622 0.10494 0 0.00206127 -0.00411058 -0.0578793 0.998313 uwb: 0.0 844.903 783.761 +imu_odom_: 1691062423.144290589 0.526724 -0.237026 10.0054 -0.0607201 -0.0426106 0.0181095 0.15 0 pose: 0.0 2.11622 0.10494 0 0.00206127 -0.00411058 -0.0578793 0.998313 uwb: 0.49979973 844.388 783.84 +imu_odom_: 1691062423.161272150 0.706289 -0.387861 9.85214 -0.0479369 -0.00106526 0.0117179 0.14 -0.02 pose: 0.47953734 2.11622 0.10494 0 0.00258195 -0.00315612 -0.0583374 0.998289 uwb: 0.0 844.388 783.84 +imu_odom_: 1691062423.178216382 0.191536 -0.215478 9.79468 -0.0490022 0.0170442 0.0170442 0.14 -0.02 pose: 0.0 2.11622 0.10494 0 0.00258195 -0.00315612 -0.0583374 0.998289 uwb: 0.0 844.388 783.84 +imu_odom_: 1691062423.203235532 0.509965 -0.433351 10.3741 -0.0490022 0.0415453 0.02024 0.15 -0.02 pose: 0.40002468 2.12656 0.0952784 0 -0.000151616-0.00508694 -0.0587791 0.998258 uwb: 0.49963350 844.787 782.799 +imu_odom_: 1691062423.228312132 0.466869 -0.136469 10.3789 -0.0553937 -0.0372843 0.036219 0.15 -0.02 pose: 0.0 2.12656 0.0952784 0 -0.000151616-0.00508694 -0.0587791 0.998258 uwb: 0.0 844.787 782.799 +imu_odom_: 1691062423.242312077 0.782904 -0.407014 9.76116 -0.0735032 -0.0351537 0.0436758 0.15 -0.02 pose: 0.0 2.12656 0.0952784 0 -0.000151616-0.00508694 -0.0587791 0.998258 uwb: 0.49975016 844.012 782.919 +imu_odom_: 1691062423.266235868 0.287304 -0.349553 9.87129 -0.0585895 0.00106526 0.0245011 0.17 0 pose: 0.34924039 2.12656 0.0952784 0 -0.0013624 -0.00379194 -0.0591786 0.998239 uwb: 0.0 844.012 782.919 +imu_odom_: 1691062423.283172809 0.519542 -0.320823 9.42118 -0.0639159 -0.0617853 0.0372843 0.17 0 pose: 0.0 2.12656 0.0952784 0 -0.0013624 -0.00379194 -0.0591786 0.998239 uwb: 0.0 844.012 782.919 +imu_odom_: 1691062423.299177704 0.828394 -0.385466 9.59835 -0.0681769 -0.0308927 0.0820254 0.2 -0.02 pose: 0.86971080 2.14654 0.0961058 0 -0.00302572 -0.00359549 -0.0595341 0.998215 uwb: 0.50156117 845.244 781.431 +imu_odom_: 1691062423.316396943 1.01514 -0.31364 9.23922 -0.0596548 -0.00213053 0.108657 0.2 -0.02 pose: 0.0 2.14654 0.0961058 0 -0.00302572 -0.00359549 -0.0595341 0.998215 uwb: 0.0 845.244 781.431 +imu_odom_: 1691062423.333236188 1.6113 -0.265756 10.2568 -0.0426106 -0.0660464 0.167247 0.11 0.23 pose: 0.43211554 2.15216 0.0963356 0 -0.0047586 -0.00790619 -0.0586196 0.998238 uwb: 0.0 845.244 781.431 +imu_odom_: 1691062423.350214833 1.44849 -0.452504 9.55526 -0.0436758 -0.0266316 0.268447 0.11 0.23 pose: 0.0 2.15216 0.0963356 0 -0.0047586 -0.00790619 -0.0586196 0.998238 uwb: 0.50000971 844.917 781.374 +imu_odom_: 1691062423.366268138 1.41976 -0.667982 10.5225 -0.056459 0.0415453 0.324906 0.11 0.23 pose: 0.0 2.15216 0.0963356 0 -0.0047586 -0.00790619 -0.0586196 0.998238 uwb: 0.0 844.917 781.374 +imu_odom_: 1691062423.383178833 1.05824 -0.42138 9.991 -0.0532632 0.00106526 0.373908 0.12 0.44 pose: 0.7953308 2.15654 0.096479 0 -0.0047456 -0.00894697 -0.0581145 0.998259 uwb: 0.0 844.917 781.374 +imu_odom_: 1691062423.399227472 0.701501 -0.203507 9.91199 -0.056459 0.0330232 0.425041 0.09 0.38 pose: 0.0 2.15654 0.096479 0 -0.0047456 -0.00894697 -0.0581145 0.998259 uwb: 0.49922813 845.245 780.621 +imu_odom_: 1691062423.416178704 0.586579 -0.126893 10.0796 -0.0426106 -0.00852212 0.494283 0.09 0.38 pose: 0.66837591 2.15654 0.0964789 0 -0.00561743 -0.0144549 -0.0489738 0.99868 uwb: 0.0 845.245 780.621 +imu_odom_: 1691062423.433171055 0.567426 -0.538695 9.79707 -0.0553937 -0.0276969 0.526241 0.09 0.38 pose: 0.0 2.15654 0.0964789 0 -0.00561743 -0.0144549 -0.0489738 0.99868 uwb: 0.0 845.245 780.621 +imu_odom_: 1691062423.450167780 0.902614 -0.220267 9.83059 -0.0340885 -0.00213053 0.502805 0.07 0.41 pose: 0.0 2.15654 0.0964789 0 -0.00561743 -0.0144549 -0.0489738 0.99868 uwb: 0.49991055 844.384 780.623 +imu_odom_: 1691062423.467228664 0.696713 -0.102951 9.59357 -0.0415453 -0.00745685 0.520914 0.07 0.41 pose: 0.32991705 2.16653 0.0968003 0 -0.00408044 -0.0133498 -0.0416501 0.999035 uwb: 0.0 844.384 780.623 +imu_odom_: 1691062423.483232976 0.778116 -0.215478 10.0173 -0.0617853 0.0138484 0.569916 0.06 0.5 pose: 0.43049117 2.16651 0.0967991 0 -0.00258679 -0.0148852 -0.0314501 0.999391 uwb: 0.0 844.384 780.623 +imu_odom_: 1691062423.500178374 0.907402 -0.481235 10.1849 -0.0479369 0.02024 0.58483 0.06 0.5 pose: 0.0 2.16651 0.0967991 0 -0.00258679 -0.0148852 -0.0314501 0.999391 uwb: 0.50047048 844.029 780.123 +imu_odom_: 1691062423.517163726 0.754174 -0.428562 9.92875 -0.0596548 0.0223706 0.607201 0.06 0.5 pose: 0.0 2.16651 0.0967991 0 -0.00258679 -0.0148852 -0.0314501 0.999391 uwb: 0.0 844.029 780.123 +imu_odom_: 1691062423.534163368 0.509965 -0.222661 9.67497 -0.056459 0 0.66366 0.07 0.82 pose: 0.7000556 2.16653 0.0968004 0 -0.00233026 -0.0154474 -0.0296013 0.99944 uwb: 0.0 844.029 780.123 +imu_odom_: 1691062423.550177303 0.608127 -0.306458 9.84496 -0.0426106 -0.00745685 0.670051 0.05 0.58 pose: 0.0 2.16653 0.0968004 0 -0.00233026 -0.0154474 -0.0296013 0.99944 uwb: 0.50001846 843.92 779.969 +imu_odom_: 1691062423.567152740 0.749385 0.011971 10.1203 -0.0436758 0 0.641289 0.05 0.58 pose: 0.66999445 2.16653 0.0968004 0 -0.00466015 -0.0145065 -0.0102076 0.999832 uwb: 0.0 843.92 779.969 +imu_odom_: 1691062423.583150927 0.500388 -0.158017 9.75877 -0.0490022 0.0181095 0.606135 0.05 0.58 pose: 0.0 2.16653 0.0968004 0 -0.00466015 -0.0145065 -0.0102076 0.999832 uwb: 0.0 843.92 779.969 +imu_odom_: 1691062423.600173025 0.272939 -0.158017 9.88805 -0.0596548 0.00639159 0.525175 0.04 0.41 pose: 0.0 2.16653 0.0968004 0 -0.00466015 -0.0145065 -0.0102076 0.999832 uwb: 0.50075336 843.923 779.157 +imu_odom_: 1691062423.616148757 0.526724 -0.0550666 9.91199 -0.0436758 -0.0245011 0.462325 0.04 0.41 pose: 0.33930751 2.16653 0.0968004 0 -0.00256419 -0.0131848 -3.43402e-050.99991 uwb: 0.0 843.923 779.157 +imu_odom_: 1691062423.634151894 0.818817 -0.184354 9.76834 -0.0553937 -0.0223706 0.426106 0.05 0.53 pose: 0.40989341 2.17652 0.0972003 0 -0.000262757-0.0101845 0.00971889 0.999901 uwb: 0.0 843.923 779.157 +imu_odom_: 1691062423.649197913 0.828394 -0.162806 9.92397 -0.0553937 0.00319579 0.415453 0.05 0.53 pose: 0.0 2.17652 0.0972003 0 -0.000262757-0.0101845 0.00971889 0.999901 uwb: 0.49847282 843.347 779.161 +imu_odom_: 1691062423.666204845 0.679953 -0.3304 9.90481 -0.0479369 -0.00106526 0.38243 0.05 0.53 pose: 0.0 2.17652 0.0972003 0 -0.000262757-0.0101845 0.00971889 0.999901 uwb: 0.0 843.347 779.161 +imu_odom_: 1691062423.691194832 0.59855 -0.0502782 9.90481 -0.0447411 -0.00106526 0.316384 0.03 0.29 pose: 0.8007259 2.17652 0.0972003 0 -0.000135917-0.0110452 0.0112644 0.999876 uwb: 0.0 843.347 779.161 +imu_odom_: 1691062423.708223345 0.488417 -0.141258 9.97664 -0.056459 0.015979 0.275903 0.03 0.29 pose: 0.0 2.17652 0.0972003 0 -0.000135917-0.0110452 0.0112644 0.999876 uwb: 0.49958975 844.527 777.55 +imu_odom_: 1691062423.724151541 -0.138864 -0.023942 9.89524 -0.0596548 0.0990696 0.192813 0.03 0.29 pose: 0.74004959 2.17652 0.0972002 0 0.00136474 -0.011981 0.0232024 0.999658 uwb: 0.0 844.527 777.55 +imu_odom_: 1691062423.742124932 -1.38624 -0.023942 10.058 -0.0809601 0.0713727 0.189617 0.07 0.26 pose: 0.0 2.17652 0.0972002 0 0.00136474 -0.011981 0.0232024 0.999658 uwb: 0.49929813 844.004 777.628 +imu_odom_: 1691062423.757191948 -1.23541 -0.52433 10.082 -0.0628506 -0.0607201 0.22051 0.07 0.26 pose: 0.0 2.17652 0.0972002 0 0.00136474 -0.011981 0.0232024 0.999658 uwb: 0.0 844.004 777.628 +imu_odom_: 1691062423.774175550 -0.107739 -0.770933 9.6606 -0.0479369 -0.102265 0.22264 0.07 0.26 pose: 0.34021739 2.17652 0.0972002 0 0.00180185 -0.00743334 0.026202 0.999627 uwb: 0.0 844.004 777.628 +imu_odom_: 1691062423.790117745 0.634463 -0.244209 9.97903 -0.0266316 -0.0458064 0.217314 0.08 0.17 pose: 0.41992836 2.17652 0.0972002 0 0.000205163 -0.00466092 0.0298638 0.999543 uwb: 0.0 844.004 777.628 +imu_odom_: 1691062423.808119424 0.342371 0.126893 9.62469 -0.0458064 0.0181095 0.238619 0.08 0.17 pose: 0.7980138 2.17652 0.0972002 0 0.000171761 -0.00560854 0.0305739 0.999517 uwb: 0.50005345 843.607 777.475 +imu_odom_: 1691062423.824111779 0.0861913 -0.141258 10.3334 -0.0596548 0.0223706 0.219444 0.08 0.17 pose: 0.0 2.17652 0.0972002 0 0.000171761 -0.00560854 0.0305739 0.999517 uwb: 0.0 843.607 777.475 +imu_odom_: 1691062423.839238579 -0.3304 -0.160412 9.72764 -0.0735032 0.00532632 0.181095 0.1 0.11 pose: 0.41956091 2.18651 0.0977116 0 0.0018131 -0.00363879 0.0344977 0.999397 uwb: 0.0 843.607 777.475 +imu_odom_: 1691062423.854177570 -0.0622492 -0.107739 9.81623 -0.0607201 -0.0319579 0.175769 0.11 0.14 pose: 0.0 2.18651 0.0977116 0 0.0018131 -0.00363879 0.0344977 0.999397 uwb: 0.50093417 843.968 777.164 +imu_odom_: 1691062423.872113632 0.304064 -0.553061 9.34217 -0.0585895 -0.0436758 0.199204 0.11 0.14 pose: 0.0 2.18651 0.0977116 0 0.0018131 -0.00363879 0.0344977 0.999397 uwb: 0.0 843.968 777.164 +imu_odom_: 1691062423.888120277 0.148441 -0.490811 9.50737 -0.0585895 0 0.185356 0.11 0.11 pose: 0.22141354 2.18651 0.0977116 0 0.00172183 -0.00146144 0.0360403 0.999348 uwb: 0.0 843.968 777.164 +imu_odom_: 1691062423.905194867 0.361524 -0.246603 9.9503 -0.0617853 0.00213053 0.167247 0.11 0.11 pose: 0.0 2.18651 0.0977116 0 0.00172183 -0.00146144 0.0360403 0.999348 uwb: 0.49866530 844.323 776.427 +imu_odom_: 1691062423.922109353 0.488417 0.0047884 9.83299 -0.0692422 -0.0191748 0.171508 0.11 0.11 pose: 0.32865721 2.1965 0.0982242 0 -0.000490048-0.0001931570.0385189 0.999258 uwb: 0.0 844.323 776.427 +imu_odom_: 1691062423.938106958 0.390255 -0.158017 10.0126 -0.0660464 0.015979 0.165116 0.14 0.14 pose: 0.42990499 2.1965 0.0982242 0 -0.0003333310.00127119 0.0413829 0.999142 uwb: 0.0 844.323 776.427 +imu_odom_: 1691062423.955165508 0.512359 -0.177171 10.0652 -0.0575243 -0.0447411 0.144876 0.14 0.14 pose: 0.8004927 2.1965 0.0982242 0 0.000411862 0.00122477 0.0418859 0.999122 uwb: 0.50038299 844.215 776.272 +imu_odom_: 1691062423.971100704 1.01514 -0.342371 10.0269 -0.036219 -0.0745685 0.152333 0.14 0.14 pose: 0.0 2.1965 0.0982242 0 0.000411862 0.00122477 0.0418859 0.999122 uwb: 0.0 844.215 776.272 +imu_odom_: 1691062423.988101221 1.41497 -0.371101 10.0221 -0.0617853 -0.0266316 0.209857 0.16 0.17 pose: 0.40986424 2.20648 0.0987619 0 0.00124012 -0.00296965 0.0441864 0.999018 uwb: 0.0 844.215 776.272 +imu_odom_: 1691062424.4255722 1.31442 -0.529119 9.62948 -0.0543285 0.00426106 0.272708 0.1 0.08 pose: 0.0 2.20648 0.0987619 0 0.00124012 -0.00296965 0.0441864 0.999018 uwb: 0.50002720 844.627 775.612 +imu_odom_: 1691062424.21097310 1.25696 -0.766145 9.76116 -0.0628506 -0.0106526 0.258859 0.1 0.08 pose: 0.0 2.20648 0.0987619 0 0.00124012 -0.00296965 0.0441864 0.999018 uwb: 0.0 844.627 775.612 +imu_odom_: 1691062424.38162578 1.26893 0.0335188 10.0748 -0.0234358 -0.0106526 0.157659 0.08 0.05 pose: 0.25015942 2.20648 0.0987619 0 0.000684431 -0.00557128 0.0465696 0.998899 uwb: 0.0 844.627 775.612 +imu_odom_: 1691062424.54162524 1.18034 0.438139 9.90002 -0.0511327 0.0266316 0.118244 0.08 0.05 pose: 0.0 2.20648 0.0987619 0 0.000684431 -0.00557128 0.0465696 0.998899 uwb: 0.49954040 844.399 775.283 +imu_odom_: 1691062424.70095396 0.802058 -0.0957681 9.83059 -0.0777643 0.0319579 0.111853 0.08 0.05 pose: 0.32993177 2.20648 0.0987619 0 -0.00016514 -0.00850879 0.0498393 0.998721 uwb: 0.0 844.399 775.283 +imu_odom_: 1691062424.88096502 0.380678 -0.605733 9.85453 -0.0660464 0.0127832 0.0809601 0.07 0.08 pose: 0.40985573 2.21644 0.0993568 0 0.00216497 -0.0112446 0.0515548 0.998605 uwb: 0.0 844.399 775.283 +imu_odom_: 1691062424.104159440 0.711078 -0.577003 10.0078 -0.0511327 -0.0223706 0.0479369 0.07 0.08 pose: 0.8065298 2.21647 0.0993589 0 0.00139821 -0.0108124 0.0517286 0.998602 uwb: 0.49986709 844.23 775.457 +imu_odom_: 1691062424.121088517 0.756568 -0.0430956 9.92636 -0.0468716 -0.02024 0.0713727 0.07 0.08 pose: 0.0 2.21647 0.0993589 0 0.00139821 -0.0108124 0.0517286 0.998602 uwb: 0.0 844.23 775.457 +imu_odom_: 1691062424.137145331 0.758962 -0.169988 9.88087 -0.0532632 0.0138484 0.109722 0.05 0.08 pose: 0.32942730 2.21647 0.0993589 0 -0.000401408-0.0113674 0.0521291 0.998576 uwb: 0.0 844.23 775.457 +imu_odom_: 1691062424.154088990 0.553061 -0.308852 9.90721 -0.0511327 0.0117179 0.0990696 0.06 0.08 pose: 0.0 2.21647 0.0993589 0 -0.000401408-0.0113674 0.0521291 0.998576 uwb: 0.49999249 845.679 773.773 +imu_odom_: 1691062424.170086311 0.59855 -0.138864 9.84735 -0.0394148 -0.0127832 0.0788296 0.06 0.08 pose: 0.0 2.21647 0.0993589 0 -0.000401408-0.0113674 0.0521291 0.998576 uwb: 0.0 845.679 773.773 +imu_odom_: 1691062424.187085671 0.715866 -0.155623 9.97185 -0.0585895 -0.00852212 0.104396 0.05 0.08 pose: 0.33051216 2.21647 0.0993589 0 0.000659956 -0.0127433 0.0530474 0.99851 uwb: 0.0 845.679 773.773 +imu_odom_: 1691062424.212099877 0.481235 -0.337582 10.003 -0.0543285 0.00106526 0.0990696 0.05 0.08 pose: 0.0 2.21647 0.0993589 0 0.000659956 -0.0127433 0.0530474 0.99851 uwb: 0.50008290 844.165 774.526 +imu_odom_: 1691062424.237083754 -0.134075 -0.244209 9.663 -0.0511327 0.0681769 0.107592 0.04 0.11 pose: 0.67945237 2.21647 0.0993589 0 0.000558017 -0.011011 0.0549547 0.998428 uwb: 0.0 844.165 774.526 +imu_odom_: 1691062424.260065887 -1.32878 -0.316035 9.95509 -0.0543285 0.0596548 0.115049 0.04 0.11 pose: 0.7157165 2.21647 0.0993589 0 0.000489582 -0.0100389 0.0551988 0.998425 uwb: 0.49980584 844.911 773.498 +imu_odom_: 1691062424.285080676 -0.289698 -0.325611 10.094 -0.0553937 -0.0756338 0.0937433 0.07 0.08 pose: 0.40808845 2.22325 0.0997015 0 3.45027e-05 -0.00459856 0.0566745 0.998382 uwb: 0.0 844.911 773.498 +imu_odom_: 1691062424.310061345 0.706289 -0.141258 9.81383 -0.052198 -0.0319579 0.076699 0.07 0.08 pose: 0.0 2.22325 0.0997015 0 3.45027e-05 -0.00459856 0.0566745 0.998382 uwb: 0.49980585 843.696 773.847 +imu_odom_: 1691062424.324119040 0.435745 -0.047884 9.73243 -0.056459 0.0245011 0.0894822 0.1 0.02 pose: 0.0 2.22325 0.0997015 0 3.45027e-05 -0.00459856 0.0566745 0.998382 uwb: 0.0 843.696 773.847 +imu_odom_: 1691062424.348066467 -0.347159 -0.464475 9.73482 -0.0671117 0.0351537 0.0607201 0.1 0.02 pose: 0.56074469 2.22645 0.0998727 0 0.00113514 -0.00530826 0.0579605 0.998304 uwb: 0.50133107 843.942 772.933 +imu_odom_: 1691062424.373048010 0.268151 -0.335188 9.93594 -0.0585895 -0.0383495 0.0777643 0.13 0.02 pose: 0.31926111 2.23351 0.100268 0 0.00076917 -0.00211779 0.0584086 0.99829 uwb: 0.0 843.942 772.933 +imu_odom_: 1691062424.386133122 0.339977 -0.289698 9.87848 -0.0671117 0.00213053 0.0884169 0.13 0.02 pose: 0.7018349 2.23644 0.100435 0 0.000310522 -0.00170178 0.0585429 0.998283 uwb: 0.0 843.942 772.933 +imu_odom_: 1691062424.411078212 0.268151 -0.287304 9.90002 -0.0490022 -0.0330232 0.0660464 0.11 0.05 pose: 0.0 2.23644 0.100435 0 0.000310522 -0.00170178 0.0585429 0.998283 uwb: 0.0 843.942 772.933 +imu_odom_: 1691062424.436112832 0.105345 -0.318429 9.8689 -0.0745685 0.0213053 0.0713727 0.11 0.05 pose: 0.39058486 2.23644 0.100435 0 -0.00204674 0.00102633 0.0593139 0.998237 uwb: 0.0 843.942 772.933 +imu_odom_: 1691062424.449050671 0.483629 -0.071826 10.2017 -0.0543285 0.0127832 0.04048 0.11 0.05 pose: 0.0 2.23644 0.100435 0 -0.00204674 0.00102633 0.0593139 0.998237 uwb: 0.99832561 843.82 772.33 +imu_odom_: 1691062424.473164909 -0.0766145 -0.201113 9.29669 -0.0852212 0.0170442 0.0841559 0.14 0.02 pose: 0.47972426 2.24642 0.101 0 -0.00305338 0.00476218 0.0599449 0.998186 uwb: 0.0 843.82 772.33 +imu_odom_: 1691062424.497117585 0.59855 -0.40462 10.0509 -0.0756338 -0.0170442 0.0681769 0.16 0.02 pose: 0.0 2.24642 0.101 0 -0.00305338 0.00476218 0.0599449 0.998186 uwb: 0.50027828 844.563 771.708 +imu_odom_: 1691062424.520178458 0.0023942 -0.172383 9.79707 -0.0585895 -0.00426106 0.0575243 0.16 0.02 pose: 0.37939797 2.24642 0.101 0 -0.00299617 0.00633386 0.0605885 0.998138 uwb: 0.0 844.563 771.708 +imu_odom_: 1691062424.536044255 -0.1652 -0.40462 9.414 -0.0660464 0.0191748 0.0809601 0.15 0 pose: 0.0 2.24642 0.101 0 -0.00299617 0.00633386 0.0605885 0.998138 uwb: 0.0 844.563 771.708 +imu_odom_: 1691062424.561027840 -0.366313 -0.0430956 10.5752 -0.0394148 0.00852212 0.0607201 0.15 0 pose: 0.47022298 2.25641 0.101511 0 -0.00342432 0.00754816 0.0611852 0.998092 uwb: 0.49977669 843.62 772.038 +imu_odom_: 1691062424.583023100 0.011971 -0.220267 10.3813 -0.0543285 0.0351537 0.0596548 0.14 0 pose: 0.0 2.25641 0.101511 0 -0.00342432 0.00754816 0.0611852 0.998092 uwb: 0.0 843.62 772.038 +imu_odom_: 1691062424.599046085 0.610521 -0.220267 10.3717 -0.0553937 -0.0511327 0.0671117 0.14 0 pose: 0.40039527 2.25641 0.101511 0 -0.00270922 0.0117463 0.0617091 0.998021 uwb: 0.49974460 844.285 770.87 +imu_odom_: 1691062424.624063207 0.897826 -0.222661 10.0628 -0.0436758 -0.0298274 0.052198 0.18 0.02 pose: 0.0 2.25641 0.101511 0 -0.00270922 0.0117463 0.0617091 0.998021 uwb: 0.0 844.285 770.87 +imu_odom_: 1691062424.648034547 0.543484 -0.260968 9.56484 -0.0500674 -0.0234358 0.0532632 0.18 0.02 pose: 0.38928128 2.26639 0.102046 0 -0.00212565 0.0108794 0.062138 0.998006 uwb: 0.50068949 843.858 771.103 +imu_odom_: 1691062424.664014954 0.452504 -0.392649 9.92397 -0.0617853 -0.00958738 0.0649811 0.18 0.02 pose: 0.0 2.26639 0.102046 0 -0.00212565 0.0108794 0.062138 0.998006 uwb: 0.0 843.858 771.103 +imu_odom_: 1691062424.689013121 0.325611 -0.205901 9.87129 -0.0415453 0.0149137 0.0500674 0.15 0.02 pose: 0.50202807 2.27638 0.102591 0 -0.00230434 0.00555923 0.06251 0.998026 uwb: 0.0 843.858 771.103 +imu_odom_: 1691062424.703014824 0.25618 -0.337582 9.50498 -0.052198 0.0117179 0.0511327 0.15 0.02 pose: 0.0 2.27638 0.102591 0 -0.00230434 0.00555923 0.06251 0.998026 uwb: 0.49933049 844.648 770.111 +imu_odom_: 1691062424.726021745 0.509965 -0.203507 10.0868 -0.0383495 -0.015979 0.052198 0.15 0 pose: 0.38811185 2.27638 0.102591 0 -0.00080078 0.0047232 0.0627764 0.998016 uwb: 0.0 844.648 770.111 +imu_odom_: 1691062424.749004171 0.217872 -0.258574 10.0317 -0.0319579 -0.00426106 0.0532632 0.15 0 pose: 0.0 2.27638 0.102591 0 -0.00080078 0.0047232 0.0627764 0.998016 uwb: 0.50061657 844.384 769.72 +imu_odom_: 1691062424.767013151 0.114922 -0.37589 9.37569 -0.0532632 0.0117179 0.0479369 0.2 0.02 pose: 0.39075984 2.28636 0.103147 0 -0.0009433970.00352312 0.0630177 0.998006 uwb: 0.0 844.384 769.72 +imu_odom_: 1691062424.791057981 0.426168 -0.186748 10.0892 -0.0458064 0.0276969 0.0628506 0.2 0.02 pose: 0.0 2.28636 0.103147 0 -0.0009433970.00352312 0.0630177 0.998006 uwb: 0.0 844.384 769.72 +imu_odom_: 1691062424.808011847 0.213084 -0.416591 10.2352 -0.0500674 0.0394148 0.0511327 0.16 0 pose: 0.39928708 2.29579 0.113692 0 -0.00201567 0.00596079 0.0632707 0.997977 uwb: 0.49970378 845.537 767.952 +imu_odom_: 1691062424.833014096 0.107739 -0.0909797 9.78031 -0.0479369 0.0298274 0.0426106 0.16 0 pose: 0.0 2.29579 0.113692 0 -0.00201567 0.00596079 0.0632707 0.997977 uwb: 0.0 845.537 767.952 +imu_odom_: 1691062424.849998874 0.294487 -0.155623 9.91918 -0.056459 -0.0447411 0.0532632 0.21 0 pose: 0.42085598 2.30577 0.114258 0 -0.00217815 0.00652911 0.0635752 0.997953 uwb: 0.50073323 845.669 767.27 +imu_odom_: 1691062424.873995586 0.356736 -0.169988 9.8665 -0.0479369 -0.00958738 0.04048 0.21 0 pose: 0.0 2.30577 0.114258 0 -0.00217815 0.00652911 0.0635752 0.997953 uwb: 0.0 845.669 767.27 +imu_odom_: 1691062424.899011833 0.227449 -0.237026 9.97664 -0.0543285 -0.0234358 0.0543285 0.2 0 pose: 0.41886124 2.30577 0.114258 0 0.000711208 0.00609067 0.0637422 0.997948 uwb: 0.49903886 845.369 766.818 +imu_odom_: 1691062424.924032455 0.493206 -0.189142 10.1682 -0.0372843 0.02024 0.0447411 0.15 0 pose: 0.0 2.30577 0.114258 0 0.000711208 0.00609067 0.0637422 0.997948 uwb: 0.0 845.369 766.818 +imu_odom_: 1691062424.948000295 0.608127 -0.0263362 9.93594 -0.0340885 -0.0340885 0.0532632 0.18 0 pose: 0.40975949 2.31575 0.114833 0 -6.63615e-050.0063595 0.0639276 0.997934 uwb: 0.50040077 844.913 766.13 +imu_odom_: 1691062424.961983625 -0.0167594 -0.148441 9.9527 -0.052198 -0.00213053 0.0575243 0.18 0 pose: 0.0 2.31575 0.114833 0 -6.63615e-050.0063595 0.0639276 0.997934 uwb: 0.0 844.913 766.13 +imu_odom_: 1691062424.978041022 0.167594 -0.23942 10.07 -0.0543285 -0.0149137 0.0607201 0.17 0 pose: 0.8045759 2.31575 0.114833 0 0.000119927 0.00566607 0.0639489 0.997937 uwb: 0.0 844.913 766.13 +imu_odom_: 1691062425.3030731 0.368707 -0.35913 9.89284 -0.0681769 -0.0458064 0.0596548 0.17 0 pose: 0.0 2.31575 0.114833 0 0.000119927 0.00566607 0.0639489 0.997937 uwb: 0.49904470 844.257 766.028 +imu_odom_: 1691062425.16985781 0.519542 -0.258574 10.0485 -0.0596548 -0.0426106 0.0479369 0.17 -0.02 pose: 0.47941221 2.32574 0.115413 0 0.00216478 0.00259805 0.064224 0.99793 uwb: 0.0 844.257 766.028 +imu_odom_: 1691062425.40027711 0.124498 -0.129287 10.0892 -0.0703074 -0.0468716 0.0660464 0.17 -0.02 pose: 0.0 2.32574 0.115413 0 0.00216478 0.00259805 0.064224 0.99793 uwb: 0.0 844.257 766.028 +imu_odom_: 1691062425.56989169 0.646434 -0.107739 10.2735 -0.0500674 -0.0490022 0.0436758 0.17 -0.02 pose: 0.54028985 2.33572 0.115998 0 -0.00105286 0.00253474 0.0647137 0.9979 uwb: 0.49948527 844.288 765.186 +imu_odom_: 1691062425.73118608 0.35913 -0.177171 10.1706 -0.0671117 -0.0351537 0.0479369 0.22 0 pose: 0.0 2.33572 0.115998 0 -0.00105286 0.00253474 0.0647137 0.9979 uwb: 0.0 844.288 765.186 +imu_odom_: 1691062425.90117102 0.42138 -0.42138 9.92397 -0.0607201 0.0138484 0.0532632 0.22 0 pose: 0.0 2.33572 0.115998 0 -0.00105286 0.00253474 0.0647137 0.9979 uwb: 0.0 844.288 765.186 +imu_odom_: 1691062425.113949640 0.107739 -0.328006 9.71328 -0.0479369 0.0447411 0.0394148 0.17 -0.02 pose: 0.70989595 2.3457 0.116597 0 0.000836181 0.00183425 0.0652061 0.99787 uwb: 0.49928703 844.605 764.326 +imu_odom_: 1691062425.137955988 0.047884 -0.332794 9.91199 -0.0745685 0.0426106 0.0490022 0.17 -0.02 pose: 0.0 2.3457 0.116597 0 0.000836181 0.00183425 0.0652061 0.99787 uwb: 0.0 844.605 764.326 +imu_odom_: 1691062425.163125064 0.409408 -0.538695 9.61033 -0.0681769 0.0138484 0.0436758 0.24 0 pose: 0.18118642 2.35568 0.117201 0 -0.0005088990.00254832 0.0652725 0.997864 uwb: 0.49999568 844.628 763.464 +imu_odom_: 1691062425.187945350 0.433351 -0.390255 9.53611 -0.0543285 0.0276969 0.0308927 0.18 0 pose: 0.39819953 2.36273 0.117629 0 -0.0024427 0.00708997 0.0653801 0.997832 uwb: 0.0 844.628 763.464 +imu_odom_: 1691062425.210949077 0.438139 -0.500388 9.61751 -0.0308927 0.00319579 0.0287621 0.18 -0.02 pose: 0.7015729 2.36567 0.117808 0 -0.00309782 0.00679512 0.0653895 0.997832 uwb: 0.0 844.628 763.464 +imu_odom_: 1691062425.236114653 -0.0430956 -0.517148 9.36372 -0.0127832 -0.0149137 0.0170442 0.18 -0.02 pose: 0.0 2.36567 0.117808 0 -0.00309782 0.00679512 0.0653895 0.997832 uwb: 0.0 844.628 763.464 +imu_odom_: 1691062425.248935556 0.469264 -0.304064 10.0963 -0.0298274 -0.0649811 0.0372843 0.25 0.02 pose: 0.0 2.36567 0.117808 0 -0.00309782 0.00679512 0.0653895 0.997832 uwb: 0.100165950 844.33 763.01 +imu_odom_: 1691062425.264048374 0.715866 0.0335188 9.7037 -0.0436758 -0.0532632 0.0660464 0.25 0.02 pose: 0.50059936 2.36567 0.117808 0 -0.00644832 0.0038288 0.0652431 0.997841 uwb: 0.0 844.33 763.01 +imu_odom_: 1691062425.281932256 1.72622 -0.251391 10.5512 -0.0681769 -0.125701 0.0553937 0.21 -0.23 pose: 0.0 2.36567 0.117808 0 -0.00644832 0.0038288 0.0652431 0.997841 uwb: 0.0 844.33 763.01 +imu_odom_: 1691062425.298069860 1.55623 -0.294487 9.35654 -0.056459 -0.0106526 -0.0873517 0.21 -0.23 pose: 0.86900603 2.3856 0.119008 0 -0.00597487 -0.0007333950.0651914 0.997855 uwb: 0.0 844.33 763.01 +imu_odom_: 1691062425.314918457 1.94649 0.126893 9.84017 -0.0543285 0.0213053 -0.20027 0.21 -0.23 pose: 0.0 2.3856 0.119008 0 -0.00597487 -0.0007333950.0651914 0.997855 uwb: 0.0 844.33 763.01 +imu_odom_: 1691062425.330982571 1.38385 0.138864 9.88087 -0.0681769 0.0213053 -0.298274 0.11 -0.35 pose: 0.0 2.3856 0.119008 0 -0.00597487 -0.0007333950.0651914 0.997855 uwb: 0.0 844.33 763.01 +imu_odom_: 1691062425.348049889 0.940921 0.244209 10.6159 -0.0745685 0.0127832 -0.415453 0.11 -0.35 pose: 0.7999977 2.38563 0.11901 0 -0.00590327 -0.00155884 0.0646801 0.997887 uwb: 0.100116664 845.03 761.82 +imu_odom_: 1691062425.362914823 0.591368 0.105345 10.331 -0.0873517 -0.0340885 -0.417584 0.11 -0.35 pose: 0.0 2.38563 0.11901 0 -0.00590327 -0.00155884 0.0646801 0.997887 uwb: 0.0 845.03 761.82 +imu_odom_: 1691062425.380982723 0.847547 -0.248997 9.72525 -0.0980043 -0.0468716 -0.426106 0.13 -0.58 pose: 0.66188792 2.39561 0.119704 0 -0.00259014 -0.00606694 0.0536742 0.998537 uwb: 0.0 845.03 761.82 +imu_odom_: 1691062425.396968388 1.04387 -0.248997 9.87608 -0.0830906 -0.100135 -0.420779 0.08 -0.44 pose: 0.0 2.39561 0.119704 0 -0.00259014 -0.00606694 0.0536742 0.998537 uwb: 0.49796303 844.789 760.993 +imu_odom_: 1691062425.413918763 1.10133 -0.146046 9.97185 -0.0553937 -0.0117179 -0.446346 0.08 -0.44 pose: 0.0 2.39561 0.119704 0 -0.00259014 -0.00606694 0.0536742 0.998537 uwb: 0.0 844.789 760.993 +imu_odom_: 1691062425.429913761 1.18274 -0.158017 9.93115 -0.0511327 -0.02024 -0.472977 0.07 -0.5 pose: 0.32808015 2.39561 0.119705 0 -0.00220666 -0.00966383 0.046081 0.998889 uwb: 0.0 844.789 760.993 +imu_odom_: 1691062425.446925962 0.842759 0.0047884 9.73961 -0.052198 0.0436758 -0.50387 0.07 -0.5 pose: 0.40984721 2.40053 0.120086 0 -0.00123975 -0.0142491 0.0360029 0.999249 uwb: 0.50052645 845.438 759.703 +imu_odom_: 1691062425.462971411 0.88346 -0.323217 10.2879 -0.0553937 0.0191748 -0.517718 0.07 -0.5 pose: 0.8068219 2.40558 0.1204 0 -0.000512923-0.0144765 0.0338016 0.999324 uwb: 0.0 845.438 759.703 +imu_odom_: 1691062425.479975738 0.588974 -0.186748 9.94312 -0.0596548 0 -0.526241 0.08 -0.7 pose: 0.0 2.40558 0.1204 0 -0.000512923-0.0144765 0.0338016 0.999324 uwb: 0.0 845.438 759.703 +imu_odom_: 1691062425.495912702 0.61531 -0.320823 9.80426 -0.0596548 -0.0234358 -0.52198 0.08 -0.7 pose: 0.41993758 2.40555 0.120398 0 0.000144963 -0.0142957 0.0220874 0.999654 uwb: 0.50119428 844.622 759.359 +imu_odom_: 1691062425.512914696 0.799663 -0.0646434 9.90242 -0.0532632 -0.0234358 -0.543285 0.08 -0.7 pose: 0.0 2.40555 0.120398 0 0.000144963 -0.0142957 0.0220874 0.999654 uwb: 0.0 844.622 759.359 +imu_odom_: 1691062425.527965397 0.737414 -0.0670376 9.76116 -0.0607201 -0.0245011 -0.512392 0.05 -0.5 pose: 0.0 2.40555 0.120398 0 0.000144963 -0.0142957 0.0220874 0.999654 uwb: 0.0 844.622 759.359 +imu_odom_: 1691062425.553021029 0.624887 -0.572214 9.97424 -0.0575243 -0.00745685 -0.444215 0.07 -0.64 pose: 0.24015390 2.40558 0.1204 0 -0.000485017-0.014175 0.0152699 0.999783 uwb: 0.49944451 843.633 759.213 +imu_odom_: 1691062425.566962372 0.483629 -0.411803 9.92397 -0.0575243 0.0181095 -0.416518 0.07 -0.64 pose: 0.0 2.40558 0.1204 0 -0.000485017-0.014175 0.0152699 0.999783 uwb: 0.0 843.633 759.213 +imu_odom_: 1691062425.582964369 0.105345 -0.126893 9.95748 -0.0415453 0.0340885 -0.427171 0.06 -0.32 pose: 0.32014783 2.40558 0.1204 0 0.000980741 -0.0152429 0.00655159 0.999862 uwb: 0.0 843.633 759.213 +imu_odom_: 1691062425.600966651 -1.00317 0.237026 9.38288 -0.0181095 0.0511327 -0.415453 0.06 -0.32 pose: 0.38976269 2.40558 0.1204 0 -0.00128165 -0.0127829 -0.00257603 0.999914 uwb: 0.49737102 843.605 758.248 +imu_odom_: 1691062425.616891366 -1.31681 -0.251391 9.99579 -0.0617853 -0.0245011 -0.262055 0.06 -0.32 pose: 0.0 2.40558 0.1204 0 -0.00128165 -0.0127829 -0.00257603 0.999914 uwb: 0.0 843.605 758.248 +imu_odom_: 1691062425.633037720 -0.52433 -1.075 9.8258 -0.0681769 -0.100135 -0.192813 0.09 -0.23 pose: 0.0 2.40558 0.1204 0 -0.00128165 -0.0127829 -0.00257603 0.999914 uwb: 0.0 843.605 758.248 +imu_odom_: 1691062425.649907605 0.727837 -0.713472 10.0844 -0.0276969 -0.092678 -0.206661 0.09 -0.23 pose: 0.41909186 2.41557 0.120949 0 -0.000189155-0.00819712 -0.0109375 0.999907 uwb: 0.50123803 844.641 756.601 +imu_odom_: 1691062425.665918351 0.6608 0.347159 9.25119 -0.0458064 -0.0276969 -0.164051 0.11 -0.26 pose: 0.0 2.41557 0.120949 0 -0.000189155-0.00819712 -0.0109375 0.999907 uwb: 0.0 844.641 756.601 +imu_odom_: 1691062425.682031167 0.335188 -0.215478 9.75637 -0.0649811 0.0298274 -0.153398 0.11 -0.26 pose: 0.7065014 2.41557 0.120949 0 -0.000663811-0.0079756 -0.0117551 0.999899 uwb: 0.0 844.641 756.601 +imu_odom_: 1691062425.698107529 -0.299275 -0.430956 9.87848 -0.0479369 0.00426106 -0.190682 0.11 -0.26 pose: 0.0 2.41557 0.120949 0 -0.000663811-0.0079756 -0.0117551 0.999899 uwb: 0.49994903 843.762 756.632 +imu_odom_: 1691062425.715027575 -0.423774 -0.35913 9.60554 -0.0447411 -0.02024 -0.174703 0.14 -0.23 pose: 0.0 2.41557 0.120949 0 -0.000663811-0.0079756 -0.0117551 0.999899 uwb: 0.0 843.762 756.632 +imu_odom_: 1691062425.731027239 0.136469 -0.265756 9.81383 -0.0447411 -0.0415453 -0.150202 0.14 -0.23 pose: 0.49084144 2.41557 0.120949 0 -0.000930785-0.00862 -0.0171994 0.999814 uwb: 0.0 843.762 756.632 +imu_odom_: 1691062425.747870878 0.354342 -0.282516 9.65103 -0.0777643 -0.0170442 -0.132093 0.14 -0.23 pose: 0.0 2.41557 0.120949 0 -0.000930785-0.00862 -0.0171994 0.999814 uwb: 0.50060810 843.529 755.801 +imu_odom_: 1691062425.764987774 0.407014 -0.213084 10.0413 -0.0628506 0.00213053 -0.129962 0.13 -0.17 pose: 0.66005357 2.42555 0.121505 0 -0.00164486 -0.00239627 -0.0239237 0.99971 uwb: 0.0 843.529 755.801 +imu_odom_: 1691062425.780921529 -0.0430956 -0.126893 9.5385 -0.0596548 0.0298274 -0.145941 0.13 -0.17 pose: 0.0 2.42555 0.121505 0 -0.00164486 -0.00239627 -0.0239237 0.99971 uwb: 0.0 843.529 755.801 +imu_odom_: 1691062425.797866364 0.0454898 -0.241814 10.331 -0.0447411 0.0127832 -0.144876 0.13 -0.17 pose: 0.0 2.42555 0.121505 0 -0.00164486 -0.00239627 -0.0239237 0.99971 uwb: 0.50029315 843.662 754.597 +imu_odom_: 1691062425.812856698 0.162806 -0.464475 9.99819 -0.0703074 -0.00213053 -0.105461 0.13 -0.11 pose: 0.32827554 2.43554 0.122007 0 -0.0005474980.000163054 -0.0267686 0.999641 uwb: 0.0 843.662 754.597 +imu_odom_: 1691062425.830982632 0.399832 -0.45011 10.0485 -0.052198 -0.0351537 -0.112918 0.13 -0.11 pose: 0.40983263 2.43554 0.122007 0 -0.00159462 0.00398214 -0.0302583 0.999533 uwb: 0.0 843.662 754.597 +imu_odom_: 1691062425.845861272 0.727837 -0.430956 9.67736 -0.0596548 -0.0990696 -0.0937433 0.13 -0.11 pose: 0.8007268 2.43554 0.122007 0 -0.00234748 0.00360096 -0.0308719 0.999514 uwb: 0.49896332 843.762 753.807 +imu_odom_: 1691062425.862973793 1.16119 -0.184354 9.59117 -0.0841559 -0.0234358 -0.0543285 0.15 -0.17 pose: 0.0 2.43554 0.122007 0 -0.00234748 0.00360096 -0.0308719 0.999514 uwb: 0.0 843.762 753.807 +imu_odom_: 1691062425.877855350 1.403 -0.280122 10.1993 -0.0532632 -0.0138484 -0.0191748 0.15 -0.17 pose: 0.42109827 2.44553 0.122489 0 -0.00402446 -0.00081625 -0.0334511 0.999432 uwb: 0.0 843.762 753.807 +imu_odom_: 1691062425.895867256 1.32639 -0.354342 9.72285 -0.0553937 -0.0415453 -0.0234358 0.15 -0.17 pose: 0.0 2.44553 0.122489 0 -0.00402446 -0.00081625 -0.0334511 0.999432 uwb: 0.50172213 843.446 753.309 +imu_odom_: 1691062425.911921163 1.652 -0.181959 9.79947 -0.0351537 -0.00745685 -0.0852212 0.09 -0.14 pose: 0.0 2.44553 0.122489 0 -0.00402446 -0.00081625 -0.0334511 0.999432 uwb: 0.0 843.446 753.309 +imu_odom_: 1691062425.928867747 1.15401 0.0502782 10.0078 -0.0660464 0.0149137 -0.0980043 0.11 -0.17 pose: 0.23007227 2.44553 0.122489 0 -0.00412881 -0.00333945 -0.0341518 0.999403 uwb: 0.0 843.446 753.309 +imu_odom_: 1691062425.944881118 0.876278 -0.289698 10.0054 -0.0628506 -0.00958738 -0.0948085 0.11 -0.17 pose: 0.0 2.44553 0.122489 0 -0.00412881 -0.00333945 -0.0341518 0.999403 uwb: 0.49821675 843.131 752.812 +imu_odom_: 1691062425.962145870 0.746991 -0.373495 9.87369 -0.0649811 -0.0287621 -0.116114 0.1 -0.11 pose: 0.0 2.44553 0.122489 0 -0.00412881 -0.00333945 -0.0341518 0.999403 uwb: 0.0 843.131 752.812 +imu_odom_: 1691062425.976895610 0.859518 -0.225055 9.89524 -0.0543285 -0.00213053 -0.0980043 0.1 -0.11 pose: 0.76164850 2.45551 0.123069 0 -0.00450726 -0.0108081 -0.0390677 0.999168 uwb: 0.0 843.131 752.812 +imu_odom_: 1691062425.995127113 0.85473 -0.270545 10.0293 -0.0596548 0.00532632 -0.0575243 0.1 -0.11 pose: 0.7785921 2.45551 0.123069 0 -0.00431156 -0.0115584 -0.039608 0.999139 uwb: 0.49998694 844.348 750.903 +imu_odom_: 1691062426.10124450 0.663194 -0.31364 9.88326 -0.0458064 0.00745685 -0.0575243 0.06 -0.08 pose: 0.0 2.45551 0.123069 0 -0.00431156 -0.0115584 -0.039608 0.999139 uwb: 0.0 844.348 750.903 +imu_odom_: 1691062426.27157950 0.677559 -0.217872 9.79468 -0.0511327 -0.0191748 -0.0543285 0.06 -0.08 pose: 0.40192659 2.45551 0.123069 0 -0.00530623 -0.0131353 -0.0416895 0.99903 uwb: 0.0 844.348 750.903 +imu_odom_: 1691062426.44861614 0.706289 -0.169988 9.94551 -0.0553937 0 -0.0351537 0.06 -0.08 pose: 0.0 2.45551 0.123069 0 -0.00530623 -0.0131353 -0.0416895 0.99903 uwb: 0.49970136 844.864 750.276 +imu_odom_: 1691062426.68991335 0.679953 -0.318429 9.85932 -0.0553937 -0.015979 -0.0447411 0.04 -0.08 pose: 0.25899330 2.45551 0.123069 0 -0.00276034 -0.0139216 -0.0428547 0.998981 uwb: 0.0 844.864 750.276 +imu_odom_: 1691062426.92835551 -0.316035 -0.0766145 9.59357 -0.0415453 0.108657 -0.0777643 0.04 -0.05 pose: 0.0 2.45551 0.123069 0 -0.00276034 -0.0139216 -0.0428547 0.998981 uwb: 0.49999596 845.559 748.959 +imu_odom_: 1691062426.116845121 -1.39103 -0.418985 10.1993 -0.0756338 -0.0266316 0.0106526 0.04 -0.05 pose: 0.40983285 2.45551 0.123069 0 -0.00404269 -0.0129753 -0.0446492 0.99891 uwb: 0.0 845.559 748.959 +imu_odom_: 1691062426.141824651 0.600945 -0.289698 10.0676 -0.04048 -0.109722 -0.00958738 0.09 -0.05 pose: 0.39838056 2.4655 0.123576 0 -0.00380121 -0.00841714 -0.0459195 0.998902 uwb: 0.49989390 844.58 748.843 +imu_odom_: 1691062426.163823436 0.486023 0.102951 9.36133 -0.0692422 0.0117179 0.00852212 0.09 -0.02 pose: 0.0 2.4655 0.123576 0 -0.00380121 -0.00841714 -0.0459195 0.998902 uwb: 0.0 844.58 748.843 +imu_odom_: 1691062426.178824568 -0.0023942 -0.349553 9.95509 -0.0649811 0.0511327 0.0191748 0.09 -0.02 pose: 0.7188961 2.4655 0.123576 0 -0.00398112 -0.00948495 -0.0460946 0.998884 uwb: 0.0 844.58 748.843 +imu_odom_: 1691062426.202875550 -0.172383 -0.304064 9.73243 -0.056459 -0.0234358 -0.0330232 0.09 -0.02 pose: 0.0 2.4655 0.123576 0 -0.00398112 -0.00948495 -0.0460946 0.998884 uwb: 0.50065213 844.282 748.362 +imu_odom_: 1691062426.227854497 0.632069 -0.395043 9.92636 -0.0820254 -0.02024 0.0330232 0.13 -0.05 pose: 0.23829926 2.4655 0.123576 0 -0.00388897 -0.0118932 -0.0466284 0.998834 uwb: 0.0 844.282 748.362 +imu_odom_: 1691062426.241856507 0.586579 -0.205901 9.43555 -0.0649811 0.0447411 -0.00426106 0.13 -0.05 pose: 0.0 2.4655 0.123576 0 -0.00388897 -0.0118932 -0.0466284 0.998834 uwb: 0.0 844.282 748.362 +imu_odom_: 1691062426.264837208 0.047884 -0.220267 9.51935 -0.0490022 -0.0138484 0 0.12 0 pose: 0.62063145 2.47548 0.124057 0 -0.00343661 -0.00759392 -0.0479303 0.998816 uwb: 0.49977724 845.135 747.283 +imu_odom_: 1691062426.288828697 0.3304 -0.294487 10.2448 -0.0340885 0.00745685 -0.00745685 0.12 0 pose: 0.0 2.47548 0.124057 0 -0.00343661 -0.00759392 -0.0479303 0.998816 uwb: 0.0 845.135 747.283 +imu_odom_: 1691062426.314818723 0.265756 -0.134075 10.0509 -0.056459 -0.0234358 0.0138484 0.18 -0.02 pose: 0.63120593 2.47602 0.114072 0 -0.00340823 -0.00557736 -0.0489416 0.99878 uwb: 0.49812954 843.736 747.48 +imu_odom_: 1691062426.328812568 0.177171 -0.438139 9.67736 -0.0490022 0.00639159 0.00106526 0.18 -0.02 pose: 0.0 2.47602 0.114072 0 -0.00340823 -0.00557736 -0.0489416 0.99878 uwb: 0.0 843.736 747.48 +imu_odom_: 1691062426.345851900 -0.047884 -0.114922 9.66539 -0.0596548 -0.00639159 0.00213053 0.14 -0.02 pose: 0.55764822 2.48601 0.11459 0 -0.00249225 -0.000808918-0.0499044 0.998751 uwb: 0.50012428 844.717 746.102 +imu_odom_: 1691062426.369812476 0.0167594 -0.169988 10.0892 -0.0543285 -0.0436758 0.0138484 0.14 -0.02 pose: 0.7019523 2.48601 0.11459 0 -0.00226502 -0.000157283-0.0500343 0.998745 uwb: 0.0 844.717 746.102 +imu_odom_: 1691062426.386805147 0.138864 -0.225055 10.2017 -0.0436758 -0.0106526 0.00213053 0.17 -0.05 pose: 0.0 2.48601 0.11459 0 -0.00226502 -0.000157283-0.0500343 0.998745 uwb: 0.0 844.717 746.102 +imu_odom_: 1691062426.401873938 0.407014 -0.205901 10.0724 -0.04048 -0.0181095 0.00639159 0.17 -0.05 pose: 0.42159719 2.496 0.115089 0 -0.00115002 0.0033906 -0.0506731 0.998709 uwb: 0.49976266 845.519 745.42 +imu_odom_: 1691062426.424822851 0.430956 -0.387861 9.65582 -0.0447411 -0.0106526 0.0127832 0.17 -0.05 pose: 0.0 2.496 0.115089 0 -0.00115002 0.0033906 -0.0506731 0.998709 uwb: 0.0 845.519 745.42 +imu_odom_: 1691062426.451010019 0.45011 -0.287304 9.54568 -0.0319579 0.0181095 0 0.19 -0.05 pose: 0.31834866 2.496 0.115089 0 -0.00111196 0.00234825 -0.0511949 0.998685 uwb: 0.49994930 845.472 744.842 +imu_odom_: 1691062426.474777829 0.581791 -0.21069 9.92875 -0.0490022 0.00213053 0.0223706 0.15 -0.02 pose: 0.41183343 2.50599 0.115564 0 -0.00304973 -0.000455469-0.0519259 0.998646 uwb: 0.0 845.472 744.842 +imu_odom_: 1691062426.500791769 0.0430956 -0.294487 9.56723 -0.0426106 0.00745685 0.0106526 0.15 -0.02 pose: 0.0 2.50599 0.115564 0 -0.00304973 -0.000455469-0.0519259 0.998646 uwb: 0.50006596 846.357 743.786 +imu_odom_: 1691062426.523847710 0.811634 -0.351948 10.0437 -0.056459 -0.00106526 0.0191748 0.15 -0.05 pose: 0.7873999 2.50599 0.115564 0 -0.00278235 -0.00118245 -0.0519961 0.998643 uwb: 0.0 846.357 743.786 +imu_odom_: 1691062426.539788474 0.440533 -0.426168 9.4978 -0.0490022 0.0447411 0.0213053 0.15 -0.05 pose: 0.0 2.50599 0.115564 0 -0.00278235 -0.00118245 -0.0519961 0.998643 uwb: 0.0 846.357 743.786 +imu_odom_: 1691062426.563768297 0.201113 -0.246603 9.73004 -0.0628506 -0.0117179 0.0340885 0.22 -0.02 pose: 0.48924066 2.51597 0.116024 0 -0.00238113 -0.000569246-0.0525802 0.998614 uwb: 0.0 846.357 743.786 +imu_odom_: 1691062426.579777302 0.811634 -0.129287 10.0916 -0.052198 -0.0372843 0.0138484 0.22 -0.02 pose: 0.0 2.51597 0.116024 0 -0.00238113 -0.000569246-0.0525802 0.998614 uwb: 0.0 846.357 743.786 +imu_odom_: 1691062426.595834717 0.608127 -0.282516 10.0078 -0.0649811 -0.0223706 0.02024 0.22 -0.02 pose: 0.0 2.51597 0.116024 0 -0.00238113 -0.000569246-0.0525802 0.998614 uwb: 0.100091931 847.164 742.591 +imu_odom_: 1691062426.621885403 1.01754 -0.277727 10.0987 -0.0479369 -0.0458064 0.0106526 0.16 -0.02 pose: 0.77965413 2.52596 0.116569 0 -0.00338924 -0.00177988 -0.0532158 0.998576 uwb: 0.0 847.164 742.591 +imu_odom_: 1691062426.645772780 1.24259 -0.258574 10.0987 -0.0500674 -0.0245011 0.036219 0.17 0 pose: 0.36111906 2.53595 0.117104 0 -0.00356763 -0.00602534 -0.053698 0.998533 uwb: 0.50132580 847.242 741.695 +imu_odom_: 1691062426.668809182 0.196325 -0.246603 9.69173 -0.0660464 -0.0234358 0.0308927 0.17 0 pose: 0.0 2.53595 0.117104 0 -0.00356763 -0.00602534 -0.053698 0.998533 uwb: 0.0 847.242 741.695 +imu_odom_: 1691062426.693752842 0.351948 -0.047884 9.91199 -0.0553937 -0.0170442 0.036219 0.23 0 pose: 0.7920367 2.53595 0.117104 0 -0.00357047 -0.00689937 -0.0537133 0.998526 uwb: 0.49964892 846.325 741.691 +imu_odom_: 1691062426.715797703 0.237026 -0.131681 10.149 -0.0490022 0.0181095 0.02024 0.23 0 pose: 0.0 2.53595 0.117104 0 -0.00357047 -0.00689937 -0.0537133 0.998526 uwb: 0.0 846.325 741.691 +imu_odom_: 1691062426.731740217 0.356736 -0.31364 9.29429 -0.0596548 0.0149137 0.0394148 0.16 -0.02 pose: 0.47006602 2.54646 0.107642 0 -0.00277288 -0.00617164 -0.0538558 0.998526 uwb: 0.0 846.325 741.691 +imu_odom_: 1691062426.754792367 0.323217 -0.509965 9.94551 -0.0628506 -0.0340885 0.0415453 0.16 -0.02 pose: 0.0 2.54646 0.107642 0 -0.00277288 -0.00617164 -0.0538558 0.998526 uwb: 0.49950603 847.596 740.229 +imu_odom_: 1691062426.777796690 0.380678 -0.244209 9.93354 -0.0532632 0.0234358 0.0298274 0.23 0 pose: 0.77979995 2.55644 0.108163 0 -0.00363701 -0.000969841-0.0540752 0.99853 uwb: 0.0 847.596 740.229 +imu_odom_: 1691062426.800748811 0.775721 -0.40462 9.60793 -0.056459 0.0181095 0.0415453 0.23 0 pose: 0.0 2.55644 0.108163 0 -0.00363701 -0.000969841-0.0540752 0.99853 uwb: 0.49992306 848.831 738.691 +imu_odom_: 1691062426.817743232 0.481235 -0.172383 10.1897 -0.0458064 0.0170442 0.0213053 0.23 0 pose: 0.0 2.55644 0.108163 0 -0.00363701 -0.000969841-0.0540752 0.99853 uwb: 0.0 848.831 738.691 +imu_odom_: 1691062426.842746384 0.287304 -0.0790087 10.1658 -0.0575243 -0.02024 0.0436758 0.23 -0.02 pose: 0.54059955 2.56643 0.10868 0 -0.00219336 -0.00122129 -0.0542432 0.998525 uwb: 0.50002512 847.718 738.874 +imu_odom_: 1691062426.867754785 0.577003 -0.059855 10.4603 -0.0735032 0.00106526 0.0266316 0.19 0 pose: 0.33894062 2.57642 0.109194 0 0.000490162 -0.000215428-0.0542763 0.998526 uwb: 0.0 847.718 738.874 +imu_odom_: 1691062426.891814807 0.605733 -0.0933739 10.0054 -0.0798948 -0.00745685 0.0372843 0.19 0 pose: 0.8033811 2.57642 0.109194 0 0.000905187 -0.000830331-0.054328 0.998522 uwb: 0.49940979 846.329 739.115 +imu_odom_: 1691062426.915860248 0.423774 -0.270545 9.43315 -0.056459 0.00639159 0.015979 0.18 0 pose: 0.41034612 2.58319 0.109542 0 0.00247072 -0.00434927 -0.0544631 0.998503 uwb: 0.0 846.329 739.115 +imu_odom_: 1691062426.931911539 0.725443 -0.387861 10.3022 -0.0617853 -0.00106526 0.0330232 0.18 0 pose: 0.0 2.58319 0.109542 0 0.00247072 -0.00434927 -0.0544631 0.998503 uwb: 0.0 846.329 739.115 +imu_odom_: 1691062426.947769480 0.459687 -0.363919 9.61511 -0.076699 -0.0181095 0.0351537 0.18 0 pose: 0.0 2.58319 0.109542 0 0.00247072 -0.00434927 -0.0544631 0.998503 uwb: 0.50091169 846.439 738.257 +imu_odom_: 1691062426.970888121 0.411803 -0.471658 9.82102 -0.0426106 0.00106526 0.0415453 0.17 0 pose: 0.48032556 2.59639 0.110212 0 -0.00148819 -0.00406735 -0.0548043 0.998488 uwb: 0.0 846.439 738.257 +imu_odom_: 1691062426.995737293 0.385466 -0.198719 9.66539 -0.0468716 -0.0149137 0.0351537 0.24 0 pose: 0.0 2.59639 0.110212 0 -0.00148819 -0.00406735 -0.0548043 0.998488 uwb: 0.49714382 846.963 737.05 +imu_odom_: 1691062427.18874024 0.198719 -0.246603 9.79228 -0.0479369 0.0181095 0.0383495 0.24 0 pose: 0.38943919 2.59639 0.110212 0 -0.00369179 -0.00262491 -0.0548022 0.998487 uwb: 0.0 846.963 737.05 +imu_odom_: 1691062427.43774536 0.241814 -0.42138 9.56244 -0.0596548 0.0383495 0.0319579 0.18 0 pose: 0.40082742 2.60688 0.100728 0 -0.00194577 0.00085495 -0.054849 0.998492 uwb: 0.49896090 846.979 736.55 +imu_odom_: 1691062427.60726389 0.0191536 -0.0814029 10.137 -0.04048 -0.02024 0.036219 0.18 0 pose: 0.7891792 2.60688 0.100728 0 -0.00251971 0.00157376 -0.0548786 0.998489 uwb: 0.0 846.979 736.55 +imu_odom_: 1691062427.84773301 0.19393 -0.37589 9.54089 -0.052198 -0.0127832 0.0447411 0.18 0 pose: 0.0 2.60688 0.100728 0 -0.00251971 0.00157376 -0.0548786 0.998489 uwb: 0.0 846.979 736.55 +imu_odom_: 1691062427.101775313 0.761356 -0.251391 9.99579 -0.0543285 0.00426106 0.036219 0.18 0 pose: 0.41997888 2.61687 0.101229 0 -0.00310258 0.00496237 -0.0549417 0.998472 uwb: 0.50069907 846.66 736 +imu_odom_: 1691062427.126773813 0.687136 -0.160412 10.3214 -0.0756338 0.0106526 0.052198 0.17 0.02 pose: 0.0 2.61687 0.101229 0 -0.00310258 0.00496237 -0.0549417 0.998472 uwb: 0.0 846.66 736 +imu_odom_: 1691062427.149824518 0.938527 -0.205901 9.87608 -0.056459 0.0106526 0.0266316 0.17 0.02 pose: 0.40988266 2.62686 0.101729 0 -0.00377391 0.00386 -0.0548881 0.998478 uwb: 0.50061158 846.536 735.255 +imu_odom_: 1691062427.174763234 0.873884 -0.414197 9.92397 -0.0703074 -0.0266316 0.0394148 0.24 -0.02 pose: 0.0 2.62686 0.101729 0 -0.00377391 0.00386 -0.0548881 0.998478 uwb: 0.0 846.536 735.255 +imu_odom_: 1691062427.197697870 0.943315 -0.232238 9.49062 -0.0511327 0.0181095 0.0308927 0.24 -0.02 pose: 0.47969589 2.62686 0.101729 0 -0.00357333 -0.000587612-0.054945 0.998483 uwb: 0.49982709 846.448 734.57 +imu_odom_: 1691062427.213764918 0.354342 -0.392649 10.4627 -0.0596548 0.0330232 0.0447411 0.18 0 pose: 0.0 2.62686 0.101729 0 -0.00357333 -0.000587612-0.054945 0.998483 uwb: 0.0 846.448 734.57 +imu_odom_: 1691062427.238885610 0.476446 -0.201113 10.1849 -0.0681769 0.0383495 0.0394148 0.18 0 pose: 0.48040456 2.63684 0.10223 0 -0.00448456 -0.00357536 -0.0550364 0.998468 uwb: 0.0 846.448 734.57 +imu_odom_: 1691062427.254744434 0.433351 -0.356736 9.89524 -0.0468716 -0.00213053 0.0500674 0.18 0.02 pose: 0.0 2.63684 0.10223 0 -0.00448456 -0.00357536 -0.0550364 0.998468 uwb: 0.49991750 845.677 734.309 +imu_odom_: 1691062427.280670900 0.531513 -0.174777 9.70609 -0.0500674 -0.00852212 0.0351537 0.18 0.02 pose: 0.40957644 2.64683 0.102729 0 -0.00327784 -0.00238813 -0.0549826 0.998479 uwb: 0.0 845.677 734.309 +imu_odom_: 1691062427.304705855 0.577003 -0.311246 9.86411 -0.052198 -0.0138484 0.0447411 0.18 0 pose: 0.0 2.64683 0.102729 0 -0.00327784 -0.00238813 -0.0549826 0.998479 uwb: 0.50001666 845.925 733.13 +imu_odom_: 1691062427.327748103 0.318429 -0.222661 9.86411 -0.0553937 -0.0255663 0.0383495 0.18 0 pose: 0.40988266 2.65682 0.103228 0 -0.00233739 -0.00444448 -0.0549867 0.998474 uwb: 0.0 845.925 733.13 +imu_odom_: 1691062427.350734066 0.325611 -0.392649 9.92157 -0.072438 -0.0234358 0.0596548 0.25 0 pose: 0.40040178 2.66396 0.0935732 0 -0.00265753 -0.00393975 -0.0549516 0.998478 uwb: 0.50118026 846.845 731.489 +imu_odom_: 1691062427.367832025 0.859518 -0.308852 10.1849 -0.0617853 -0.015979 0.0383495 0.25 0 pose: 0.0 2.66396 0.0935732 0 -0.00265753 -0.00393975 -0.0549516 0.998478 uwb: 0.0 846.845 731.489 +imu_odom_: 1691062427.392696666 0.895431 -0.222661 10.3142 -0.076699 -0.00426106 0.0575243 0.18 0.02 pose: 0.40083922 2.6726 0.0940071 0 -0.00443477 -0.00409988 -0.054728 0.998483 uwb: 0.49992625 846.589 731.038 +imu_odom_: 1691062427.417796653 0.550666 -0.117316 10.1251 -0.0671117 -0.0287621 0.0351537 0.18 0.02 pose: 0.0 2.6726 0.0940071 0 -0.00443477 -0.00409988 -0.054728 0.998483 uwb: 0.0 846.589 731.038 +imu_odom_: 1691062427.440661881 0.392649 -0.258574 9.84496 -0.0532632 0.00958738 0.036219 0.18 0 pose: 0.49964628 2.67729 0.0942441 0 -0.00203337 -0.00715257 -0.054591 0.998481 uwb: 0.0 846.589 731.038 +imu_odom_: 1691062427.455666522 0.620098 -0.282516 10.1993 -0.0681769 0.0106526 0.0383495 0.18 0 pose: 0.0 2.67729 0.0942441 0 -0.00203337 -0.00715257 -0.054591 0.998481 uwb: 0.49967836 846.462 730.27 +imu_odom_: 1691062427.481721596 0.557849 -0.201113 10.3908 -0.0628506 -0.0213053 0.0330232 0.23 0 pose: 0.37869869 2.68728 0.0947516 0 -0.00260875 -0.00602104 -0.0546354 0.998485 uwb: 0.0 846.462 730.27 +imu_odom_: 1691062427.505741678 0.265756 -0.023942 9.9503 -0.056459 0 0.0330232 0.23 0 pose: 0.0 2.68728 0.0947516 0 -0.00260875 -0.00602104 -0.0546354 0.998485 uwb: 0.50021205 845.9 729.831 +imu_odom_: 1691062427.521803185 0.380678 -0.366313 9.84256 -0.0500674 -0.02024 0.0351537 0.18 0.02 pose: 0.0 2.68728 0.0947516 0 -0.00260875 -0.00602104 -0.0546354 0.998485 uwb: 0.0 845.9 729.831 +imu_odom_: 1691062427.546645663 0.593762 -0.268151 9.8282 -0.04048 -0.0213053 0.0298274 0.18 0.02 pose: 0.50075156 2.69408 0.0950963 0 0.00101556 -0.00549899 -0.0548269 0.99848 uwb: 0.49866057 846.248 728.793 +imu_odom_: 1691062427.570643873 0.54109 -0.25618 9.75398 -0.0372843 -0.0234358 0.0319579 0.18 -0.02 pose: 0.40903985 2.7043 0.0956103 0 -0.00132613 -0.00695642 -0.0549705 0.998463 uwb: 0.0 846.248 728.793 +imu_odom_: 1691062427.585696341 0.792481 0.023942 9.85214 -0.0500674 -0.00532632 0.0394148 0.18 -0.02 pose: 0.0 2.7043 0.0956103 0 -0.00132613 -0.00695642 -0.0549705 0.998463 uwb: 0.0 846.248 728.793 +imu_odom_: 1691062427.611697755 0.536301 -0.356736 9.97664 -0.0532632 0.0106526 0.0383495 0.25 -0.02 pose: 0.39050678 2.71225 0.0960081 0 -0.00236331 -0.00836037 -0.0550556 0.998445 uwb: 0.50071657 845.894 728.722 +imu_odom_: 1691062427.625697440 0.502782 -0.572214 9.19134 -0.0777643 -0.00106526 0.0500674 0.25 -0.02 pose: 0.0 2.71225 0.0960081 0 -0.00236331 -0.00836037 -0.0550556 0.998445 uwb: 0.0 845.894 728.722 +imu_odom_: 1691062427.641751073 0.203507 -0.117316 9.89524 -0.0468716 0.015979 0.0415453 0.25 -0.02 pose: 0.0 2.71225 0.0960081 0 -0.00236331 -0.00836037 -0.0550556 0.998445 uwb: 0.49933716 845.067 728.922 +imu_odom_: 1691062427.663649549 0.438139 -0.260968 10.2089 -0.0511327 -0.0276969 0.0553937 0.18 0 pose: 0.47101700 2.71774 0.0862696 0 -0.00584351 -0.00628964 -0.0549585 0.998452 uwb: 0.0 845.067 728.922 +imu_odom_: 1691062427.676690647 0.385466 -0.507571 9.37569 -0.072438 -0.00319579 0.0479369 0.18 0 pose: 0.0 2.71774 0.0862696 0 -0.00584351 -0.00628964 -0.0549585 0.998452 uwb: 0.0 845.067 728.922 +imu_odom_: 1691062427.700699938 0.557849 -0.349553 9.8282 -0.0394148 -0.0170442 0.0330232 0.18 0.02 pose: 0.43892606 2.72773 0.0867703 0 -0.00522266 -0.00338616 -0.0547126 0.998483 uwb: 0.50005457 845.261 728.161 +imu_odom_: 1691062427.726804006 0.356736 -0.0861913 10.0628 -0.04048 0.00639159 0.036219 0.18 0.02 pose: 0.8086892 2.72773 0.0867703 0 -0.00553051 -0.00416123 -0.0547408 0.998477 uwb: 0.0 845.261 728.161 +imu_odom_: 1691062427.750780052 0.447716 -0.251391 10.477 -0.0468716 0.0394148 0.0479369 0.19 0 pose: 0.42026467 2.73772 0.0872752 0 -0.0036963 -0.00421033 -0.0548452 0.998479 uwb: 0.50077197 844.603 727.559 +imu_odom_: 1691062427.767689910 0.0766145 -0.505177 9.72764 -0.0553937 -0.0106526 0.0447411 0.19 0 pose: 0.0 2.73772 0.0872752 0 -0.0036963 -0.00421033 -0.0548452 0.998479 uwb: 0.0 844.603 727.559 +imu_odom_: 1691062427.792669745 0.181959 -0.114922 9.80904 -0.0436758 -0.0585895 0.056459 0.18 -0.02 pose: 0.40885904 2.7477 0.0877784 0 -0.00291906 -0.000465631-0.0546986 0.998499 uwb: 0.49937799 843.632 727.518 +imu_odom_: 1691062427.815615464 0.462081 -0.272939 9.22007 -0.056459 -0.0447411 0.0436758 0.18 -0.02 pose: 0.0 2.7477 0.0877784 0 -0.00291906 -0.000465631-0.0546986 0.998499 uwb: 0.0 843.632 727.518 +imu_odom_: 1691062427.832613102 0.4956 0.220267 10.2352 -0.0426106 0.0276969 0.0500674 0.25 -0.02 pose: 0.47925554 2.75435 0.0881177 0 -0.00242052 -0.0016435 -0.054437 0.998513 uwb: 0.0 843.632 727.518 +imu_odom_: 1691062427.857619476 0.430956 -0.296881 9.79707 -0.0553937 0.00213053 0.04048 0.25 -0.02 pose: 0.0 2.75435 0.0881177 0 -0.00242052 -0.0016435 -0.054437 0.998513 uwb: 0.49952963 844.462 726.203 +imu_odom_: 1691062427.883683590 0.00718261 -0.114922 10.1801 -0.0649811 0.0415453 0.0543285 0.23 0.02 pose: 0.42004012 2.76434 0.0886289 0 -0.00310172 -0.00127705 -0.0543363 0.998517 uwb: 0.0 844.462 726.203 +imu_odom_: 1691062427.907612975 0.162806 -0.213084 10.4244 -0.0553937 0.0298274 0.0319579 0.23 0.02 pose: 0.8008443 2.76768 0.0888002 0 -0.00280641 -0.000358127-0.0542761 0.998522 uwb: 0.49986209 845.792 724.641 +imu_odom_: 1691062427.923676232 0.35913 -0.153229 9.92636 -0.0511327 -0.0479369 0.0415453 0.19 -0.02 pose: 0.25044286 2.76768 0.0888002 0 -0.00194158 0.00250443 -0.0541654 0.998527 uwb: 0.0 845.792 724.641 +imu_odom_: 1691062427.939607381 0.627281 0.0167594 9.68215 -0.0681769 -0.00852212 0.056459 0.19 -0.02 pose: 0.0 2.76768 0.0888002 0 -0.00194158 0.00250443 -0.0541654 0.998527 uwb: 0.0 845.792 724.641 +imu_odom_: 1691062427.962591594 0.500388 -0.134075 10.2089 -0.0553937 0.00106526 0.0308927 0.23 -0.02 pose: 0.24020082 2.77766 0.0893157 0 -0.0008189620.0039494 -0.0542166 0.998521 uwb: 0.50045410 846.193 723.662 +imu_odom_: 1691062427.985791613 0.723049 0.0023942 10.963 -0.0500674 -0.00639159 0.04048 0.23 -0.02 pose: 0.0 2.77766 0.0893157 0 -0.0008189620.0039494 -0.0542166 0.998521 uwb: 0.0 846.193 723.662 +imu_odom_: 1691062428.11644301 0.924162 0.0311246 10.0509 -0.04048 -0.0351537 0.0266316 0.25 0 pose: 0.31917998 2.77766 0.0893157 0 0.00109538 0.00140502 -0.0540965 0.998534 uwb: 0.49997875 846.183 723.075 +imu_odom_: 1691062428.35625901 0.600945 -0.25618 9.91199 -0.0468716 -0.0149137 0.0415453 0.25 0 pose: 0.0 2.77766 0.0893157 0 0.00109538 0.00140502 -0.0540965 0.998534 uwb: 0.0 846.183 723.075 +imu_odom_: 1691062428.51606635 0.172383 -0.189142 9.50977 -0.0511327 0.0117179 0.0426106 0.17 0.02 pose: 0.47028501 2.78765 0.089833 0 0.00308613 -0.00301458 -0.0541984 0.998521 uwb: 0.50072844 846.532 721.993 +imu_odom_: 1691062428.76585609 0.42138 -0.347159 10.0221 -0.0532632 -0.0245011 0.0617853 0.17 0.02 pose: 0.0 2.78765 0.089833 0 0.00308613 -0.00301458 -0.0541984 0.998521 uwb: 0.0 846.532 721.993 +imu_odom_: 1691062428.100623494 0.225055 -0.354342 10.0389 -0.04048 0.0340885 0.0394148 0.21 0 pose: 0.48986232 2.79764 0.0903481 0 0.00198156 -0.0058527 -0.0542633 0.998508 uwb: 0.49879500 847.13 720.777 +imu_odom_: 1691062428.123645340 0.351948 -0.579397 9.663 -0.0671117 0.0468716 0.0500674 0.21 0 pose: 0.0 2.79764 0.0903481 0 0.00198156 -0.0058527 -0.0542633 0.998508 uwb: 0.0 847.13 720.777 +imu_odom_: 1691062428.138620826 0.361524 -0.354342 9.81623 -0.052198 0.0394148 0.0383495 0.18 0 pose: 0.40979247 2.80762 0.0908636 0 -0.000461481-0.0032629 -0.0539658 0.998537 uwb: 0.0 847.13 720.777 +imu_odom_: 1691062428.163703329 0.555455 -0.512359 9.46188 -0.0596548 -0.0383495 0.0490022 0.18 0 pose: 0.0 2.80762 0.0908636 0 -0.000461481-0.0032629 -0.0539658 0.998537 uwb: 0.0 847.13 720.777 +imu_odom_: 1691062428.187632144 0.189142 -0.0383072 9.47146 -0.0479369 -0.0127832 0.0468716 0.18 0 pose: 0.47013654 2.81761 0.0913843 0 -0.00390944 0.000386767 -0.0538431 0.998542 uwb: 0.0 847.13 720.777 +imu_odom_: 1691062428.210638242 0.167594 -0.234632 9.69652 -0.0692422 -0.0671117 0.0553937 0.18 0 pose: 0.0 2.81761 0.0913843 0 -0.00390944 0.000386767 -0.0538431 0.998542 uwb: 0.99983555 847.313 719.952 +imu_odom_: 1691062428.227566773 1.0319 -0.150835 10.24 -0.052198 -0.0234358 0.0330232 0.21 0 pose: 0.39973707 2.81761 0.0913843 0 -0.00607832 -0.000471424-0.0537075 0.998538 uwb: 0.0 847.313 719.952 +imu_odom_: 1691062428.251561205 0.720655 -0.464475 9.64384 -0.0639159 0.00639159 0.0394148 0.21 0 pose: 0.0 2.81761 0.0913843 0 -0.00607832 -0.000471424-0.0537075 0.998538 uwb: 0.49973113 847.442 719.024 +imu_odom_: 1691062428.277558551 0.112527 -0.471658 9.55287 -0.0585895 0.036219 0.0436758 0.21 0.02 pose: 0.47020653 2.8276 0.0919095 0 -0.00392812 0.00113186 -0.0534699 0.998561 uwb: 0.0 847.442 719.024 +imu_odom_: 1691062428.300625016 0.0861913 -0.160412 9.62948 -0.0681769 0.00106526 0.0394148 0.21 0.02 pose: 0.41987995 2.83758 0.0924393 0 -0.00546109 -0.000933847-0.0534956 0.998553 uwb: 0.50042521 848.751 717.329 +imu_odom_: 1691062428.316550632 0.35913 -0.306458 9.81383 -0.072438 0.00639159 0.0479369 0.18 0 pose: 0.41024742 2.8481 0.0829827 0 -0.0050683 0.00309415 -0.0534397 0.998553 uwb: 0.0 848.751 717.329 +imu_odom_: 1691062428.339606016 0.301669 -0.47884 10.252 -0.056459 -0.0117179 0.04048 0.18 0 pose: 0.0 2.8481 0.0829827 0 -0.0050683 0.00309415 -0.0534397 0.998553 uwb: 0.0 848.751 717.329 +imu_odom_: 1691062428.354694071 0.462081 -0.11971 9.90481 -0.0468716 -0.0138484 0.0394148 0.19 0 pose: 0.6965871 2.8481 0.0829827 0 -0.0046904 0.00259009 -0.0534123 0.998558 uwb: 0.49948033 848.731 716.699 +imu_odom_: 1691062428.381670710 0.797269 -0.184354 10.0197 -0.0500674 -0.0298274 0.0490022 0.19 0 pose: 0.0 2.8481 0.0829827 0 -0.0046904 0.00259009 -0.0534123 0.998558 uwb: 0.0 848.731 716.699 +imu_odom_: 1691062428.406535948 0.799663 -0.071826 9.89524 -0.0511327 0.0149137 0.0447411 0.19 0 pose: 0.39134689 2.85808 0.0835143 0 -0.00568125 0.00240544 -0.0533668 0.998556 uwb: 0.50049521 848.431 716.138 +imu_odom_: 1691062428.429523090 0.732626 -0.234632 9.78989 -0.0681769 0.0127832 0.0436758 0.19 0 pose: 0.0 2.85808 0.0835143 0 -0.00568125 0.00240544 -0.0533668 0.998556 uwb: 0.0 848.431 716.138 +imu_odom_: 1691062428.452527439 0.656011 -0.191536 9.80904 -0.0543285 0.00639159 0.0415453 0.25 0 pose: 0.82797514 2.86807 0.0840467 0 -0.00297509 -0.00504253 -0.0531599 0.998569 uwb: 0.50192418 849.071 714.944 +imu_odom_: 1691062428.468524504 0.474052 -0.306458 10.1179 -0.0713727 0.00213053 0.0649811 0.25 0 pose: 0.7020115 2.86807 0.0840467 0 -0.00269104 -0.00565101 -0.0531562 0.998567 uwb: 0.0 849.071 714.944 +imu_odom_: 1691062428.494530599 0.730232 -0.220267 10.0796 -0.0681769 0.00745685 0.036219 0.18 0.02 pose: 0.0 2.86807 0.0840467 0 -0.00269104 -0.00565101 -0.0531562 0.998567 uwb: 0.49862003 849.357 713.674 +imu_odom_: 1691062428.519529987 0.227449 -0.476446 10.2208 -0.0447411 -0.00532632 0.0308927 0.18 0.02 pose: 0.31981299 2.87806 0.0845831 0 -0.00311469 -0.00568533 -0.0529371 0.998577 uwb: 0.0 849.357 713.674 +imu_odom_: 1691062428.534661204 0.215478 -0.102951 9.74679 -0.0447411 0.00319579 0.0426106 0.2 -0.02 pose: 0.0 2.87806 0.0845831 0 -0.00311469 -0.00568533 -0.0529371 0.998577 uwb: 0.0 849.357 713.674 +imu_odom_: 1691062428.559529358 0.335188 -0.138864 10.3525 -0.0543285 -0.0319579 0.0436758 0.2 -0.02 pose: 0.57091799 2.88804 0.0851235 0 -0.00351148 -0.00539106 -0.0530749 0.99857 uwb: 0.49872500 850.501 712.199 +imu_odom_: 1691062428.582534873 0.514753 -0.138864 10.2855 -0.0617853 -0.0319579 0.0383495 0.18 -0.02 pose: 0.0 2.88804 0.0851235 0 -0.00351148 -0.00539106 -0.0530749 0.99857 uwb: 0.0 850.501 712.199 +imu_odom_: 1691062428.608513263 0.509965 -0.248997 10.3166 -0.0575243 -0.0255663 0.0394148 0.18 -0.02 pose: 0.7015741 2.89803 0.0856619 0 -0.00072962 -0.00351989 -0.0530187 0.998587 uwb: 0.49860836 850.197 711.614 +imu_odom_: 1691062428.632524901 1.00556 -0.258574 10.2041 -0.0340885 -0.00213053 0.0351537 0.23 0 pose: 0.41968164 2.90571 0.0760619 0 -0.00195361 -0.00540368 -0.053024 0.998577 uwb: 0.0 850.197 711.614 +imu_odom_: 1691062428.648515551 0.462081 -0.260968 9.73961 -0.036219 0.00639159 0.0383495 0.23 0 pose: 0.0 2.90571 0.0760619 0 -0.00195361 -0.00540368 -0.053024 0.998577 uwb: 0.50055645 850.564 710.469 +imu_odom_: 1691062428.674519312 0.411803 -0.3304 9.70609 -0.0500674 0.036219 0.036219 0.18 -0.02 pose: 0.40002288 2.90855 0.0762151 0 -0.00194312 -0.00612678 -0.0530832 0.998569 uwb: 0.0 850.564 710.469 +imu_odom_: 1691062428.699494204 0.4956 -0.533907 9.65821 -0.0692422 -0.0308927 0.0426106 0.18 -0.02 pose: 0.0 2.90855 0.0762151 0 -0.00194312 -0.00612678 -0.0530832 0.998569 uwb: 0.50113387 851.494 708.537 +imu_odom_: 1691062428.723504967 0.553061 -0.474052 9.69652 -0.0575243 0.0223706 0.0490022 0.21 -0.02 pose: 0.50978653 2.91854 0.0767527 0 -0.00600698 -0.00386992 -0.0530673 0.998565 uwb: 0.0 851.494 708.537 +imu_odom_: 1691062428.739561233 0.488417 -0.268151 10.4722 -0.0468716 -0.0223706 0.052198 0.21 -0.02 pose: 0.0 2.91854 0.0767527 0 -0.00600698 -0.00386992 -0.0530673 0.998565 uwb: 0.0 851.494 708.537 +imu_odom_: 1691062428.764514835 0.730232 -0.342371 10.3813 -0.0490022 0.0213053 0.0255663 0.18 -0.02 pose: 0.40067029 2.92852 0.0772918 0 -0.00658253 -0.00446207 -0.0528562 0.99857 uwb: 0.50000526 851.576 707.438 +imu_odom_: 1691062428.787534057 0.651223 -0.332794 9.70609 -0.056459 -0.0490022 0.0340885 0.18 -0.02 pose: 0.6968788 2.92852 0.0772918 0 -0.00658515 -0.00507183 -0.0529097 0.998565 uwb: 0.0 851.576 707.438 +imu_odom_: 1691062428.812636682 0.42138 -0.28491 9.54568 -0.0351537 0.0234358 0.0426106 0.19 0 pose: 0.24116041 2.93851 0.0778335 0 -0.00662779 -0.00739517 -0.0530672 0.998542 uwb: 0.50124761 852.12 706.609 +imu_odom_: 1691062428.828557049 0.0933739 -0.19393 10.0533 -0.052198 -0.0255663 0.0479369 0.19 0 pose: 0.0 2.93851 0.0778335 0 -0.00662779 -0.00739517 -0.0530672 0.998542 uwb: 0.0 852.12 706.609 +imu_odom_: 1691062428.853494320 0.325611 -0.0837971 9.95748 -0.0745685 -0.0170442 0.0458064 0.18 0 pose: 0.25032343 2.93851 0.0778335 0 -0.00637631 -0.00858013 -0.0531063 0.998532 uwb: 0.49827298 853.733 704.697 +imu_odom_: 1691062428.879541826 0.332794 -0.667982 9.59117 -0.0639159 -0.0340885 0.0383495 0.21 0 pose: 0.40882426 2.94849 0.0783716 0 -0.00456076 -0.00497497 -0.0529804 0.998573 uwb: 0.0 853.733 704.697 +imu_odom_: 1691062428.895481732 0.189142 -0.0143652 10.635 -0.0458064 0.0138484 0.0319579 0.19 -0.02 pose: 0.0 2.94849 0.0783716 0 -0.00456076 -0.00497497 -0.0529804 0.998573 uwb: 0.50020649 853.077 704.024 +imu_odom_: 1691062428.921479953 0.385466 -0.0933739 10.0341 -0.0671117 0.0127832 0.0511327 0.19 -0.02 pose: 0.0 2.94849 0.0783716 0 -0.00456076 -0.00497497 -0.0529804 0.998573 uwb: 0.0 853.077 704.024 +imu_odom_: 1691062428.946473509 0.581791 -0.308852 9.5385 -0.0479369 0.0223706 0.0298274 0.23 -0.02 pose: 0.49969905 2.95848 0.0789125 0 -0.00531118 -0.0028757 -0.0529586 0.998578 uwb: 0.50115429 852.991 703.199 +imu_odom_: 1691062428.962530650 0.172383 -0.265756 9.87129 -0.0703074 -0.04048 0.0553937 0.23 -0.02 pose: 0.0 2.95848 0.0789125 0 -0.00531118 -0.0028757 -0.0529586 0.998578 uwb: 0.0 852.991 703.199 +imu_odom_: 1691062428.987481919 0.588974 -0.490811 9.67257 -0.0511327 -0.00745685 0.0276969 0.22 0 pose: 0.75999914 2.969 0.0694675 0 -0.00307625 -0.00200685 -0.0528409 0.998596 uwb: 0.0 852.991 703.199 +imu_odom_: 1691062429.12473730 0.490811 -0.0837971 10.0078 -0.0543285 -0.0170442 0.056459 0.2 0 pose: 0.0 2.969 0.0694675 0 -0.00307625 -0.00200685 -0.0528409 0.998596 uwb: 0.49826423 852.833 702.227 +imu_odom_: 1691062429.36459134 0.454898 -0.196325 10.2592 -0.0543285 0.00852212 0.0319579 0.22 0 pose: 0.31979841 2.97899 0.0700091 0 -0.0044822 -0.00344408 -0.0529311 0.998582 uwb: 0.0 852.833 702.227 +imu_odom_: 1691062429.60514238 0.976834 0 10.5824 -0.0596548 -0.0383495 0.0330232 0.19 0 pose: 0.0 2.97899 0.0700091 0 -0.0044822 -0.00344408 -0.0529311 0.998582 uwb: 0.50151903 851.417 701.983 +imu_odom_: 1691062429.76460277 0.591368 -0.244209 9.82341 -0.0553937 0.00852212 0.0319579 0.19 0 pose: 0.48960596 2.98897 0.0705518 0 -0.000182444-0.00363002 -0.0529087 0.998593 uwb: 0.0 851.417 701.983 +imu_odom_: 1691062429.101452680 0.299275 -0.282516 9.28711 -0.0553937 -0.0213053 0.04048 0.18 0 pose: 0.0 2.98897 0.0705518 0 -0.000182444-0.00363002 -0.0529087 0.998593 uwb: 0.49826159 850.841 701.481 +imu_odom_: 1691062429.127510407 0.158017 -0.433351 9.69412 -0.0511327 -0.00106526 0.0415453 0.18 0 pose: 0.41053344 2.99896 0.0710928 0 -0.000634022-0.00607746 -0.0530167 0.998575 uwb: 0.0 850.841 701.481 +imu_odom_: 1691062429.143447406 0.490811 -0.339977 9.991 -0.0543285 -0.0340885 0.0458064 0.17 -0.02 pose: 0.0 2.99896 0.0710928 0 -0.000634022-0.00607746 -0.0530167 0.998575 uwb: 0.50115748 849.274 701.609 +imu_odom_: 1691062429.169723855 0.296881 -0.0742203 9.87848 -0.04048 0.0287621 0.0426106 0.17 -0.02 pose: 0.49986264 3.00894 0.0716318 0 -0.002854 -0.00261999 -0.0529497 0.99859 uwb: 0.0 849.274 701.609 +imu_odom_: 1691062429.193459333 0.926556 -0.059855 10.0413 -0.0607201 -0.00958738 0.0458064 0.19 -0.02 pose: 0.35213160 3.00894 0.0716318 0 -0.00133801 -0.00112684 -0.0528829 0.998599 uwb: 0.49940186 849.517 700.142 +imu_odom_: 1691062429.217487023 0.497994 -0.311246 9.97424 -0.0553937 -0.00958738 0.0372843 0.19 -0.02 pose: 0.0 3.00894 0.0716318 0 -0.00133801 -0.00112684 -0.0528829 0.998599 uwb: 0.0 849.517 700.142 +imu_odom_: 1691062429.233437437 0.514753 -0.402226 9.54808 -0.0511327 -0.0351537 0.052198 0.18 0.02 pose: 0.6893260 3.00894 0.0716318 0 -0.00115819 -0.00180446 -0.0528625 0.998599 uwb: 0.0 849.517 700.142 +imu_odom_: 1691062429.257580613 0.0957681 -0.169988 9.55287 -0.0458064 0.0245011 0.0426106 0.18 0.02 pose: 0.0 3.00894 0.0716318 0 -0.00115819 -0.00180446 -0.0528625 0.998599 uwb: 0.50119247 851.492 698.188 +imu_odom_: 1691062429.281440908 0.0646434 -0.253785 9.63427 -0.0745685 -0.0490022 0.0543285 0.25 0 pose: 0.47829951 3.01893 0.0721738 0 -0.00373554 -0.0043278 -0.0527853 0.99859 uwb: 0.0 851.492 698.188 +imu_odom_: 1691062429.306707151 0.368707 -0.304064 10.1394 -0.056459 -0.0298274 0.0394148 0.25 0 pose: 0.0 3.01893 0.0721738 0 -0.00373554 -0.0043278 -0.0527853 0.99859 uwb: 0.49797870 850.864 697.579 +imu_odom_: 1691062429.321666023 0.842759 -0.337582 9.85693 -0.0628506 -0.0298274 0.04048 0.19 0 pose: 0.40157748 3.02946 0.0627324 0 -0.00361173 -0.00147956 -0.052629 0.998607 uwb: 0.0 850.864 697.579 +imu_odom_: 1691062429.347631595 0.596156 -0.234632 9.84975 -0.0553937 0.0511327 0.0394148 0.19 0 pose: 0.0 3.02946 0.0627324 0 -0.00361173 -0.00147956 -0.052629 0.998607 uwb: 0.49874278 851.008 696.537 +imu_odom_: 1691062429.372430355 1.3623 -0.588974 9.1267 -0.0980043 0.0820254 0.0372843 0.18 0.02 pose: 0.48863488 3.03944 0.0632799 0 -0.00460218 0.00111871 -0.0524902 0.99861 uwb: 0.0 851.008 696.537 +imu_odom_: 1691062429.398440838 0.368707 -0.387861 9.44991 -0.0415453 -0.0106526 0.0447411 0.18 0.02 pose: 0.0 3.03944 0.0632799 0 -0.00460218 0.00111871 -0.0524902 0.99861 uwb: 0.50044882 851.78 695.426 +imu_odom_: 1691062429.414471450 0.011971 -0.102951 10.3286 -0.0468716 -0.0735032 0.0426106 0.18 -0.02 pose: 0.42181952 3.04943 0.0638292 0 -0.00435874 -0.0019495 -0.0525203 0.998608 uwb: 0.0 851.78 695.426 +imu_odom_: 1691062429.440628040 0.282516 -0.201113 9.85693 -0.0500674 0.0287621 0.0436758 0.18 -0.02 pose: 0.0 3.04943 0.0638292 0 -0.00435874 -0.0019495 -0.0525203 0.998608 uwb: 0.0 851.78 695.426 +imu_odom_: 1691062429.465533829 0.277727 -0.387861 9.73722 -0.056459 0.0372843 0.0458064 0.23 -0.02 pose: 0.49820035 3.05941 0.0643785 0 -0.00627783 -0.000456117-0.0524485 0.998604 uwb: 0.50071711 851.686 694.556 +imu_odom_: 1691062429.480411335 0.174777 -0.258574 9.81383 -0.0543285 -0.00106526 0.0543285 0.23 -0.02 pose: 0.0 3.05941 0.0643785 0 -0.00627783 -0.000456117-0.0524485 0.998604 uwb: 0.0 851.686 694.556 +imu_odom_: 1691062429.507471395 0.902614 -0.268151 10.0173 -0.0639159 -0.0447411 0.0415453 0.18 0 pose: 0.42101754 3.0694 0.0649292 0 -0.00422053 0.00279983 -0.0523456 0.998616 uwb: 0.49843948 852.128 693.427 +imu_odom_: 1691062429.531401973 0.509965 -0.177171 10.0485 -0.0649811 -0.015979 0.0500674 0.18 0 pose: 0.0 3.0694 0.0649292 0 -0.00422053 0.00279983 -0.0523456 0.998616 uwb: 0.0 852.128 693.427 +imu_odom_: 1691062429.556411873 0.454898 -0.0215478 9.86172 -0.056459 -0.0319579 0.0394148 0.19 -0.02 pose: 0.40916278 3.0694 0.0649292 0 -0.00482514 0.00480813 -0.0521639 0.998615 uwb: 0.50017760 851.573 692.962 +imu_odom_: 1691062429.579402236 0.414197 -0.138864 9.9527 -0.0447411 -0.0170442 0.0330232 0.2 0 pose: 0.49932895 3.07938 0.0654847 0 -0.00282523 0.000251152 -0.0520322 0.998641 uwb: 0.0 851.573 692.962 +imu_odom_: 1691062429.595404851 0.605733 -0.301669 9.92397 -0.0628506 -0.00213053 0.0458064 0.2 0 pose: 0.0 3.07938 0.0654847 0 -0.00282523 0.000251152 -0.0520322 0.998641 uwb: 0.49999095 851.483 692.091 +imu_odom_: 1691062429.620464620 0.356736 -0.442927 10.2663 -0.0649811 -0.0276969 0.0447411 0.2 0 pose: 0.0 3.07938 0.0654847 0 -0.00282523 0.000251152 -0.0520322 0.998641 uwb: 0.0 851.483 692.091 +imu_odom_: 1691062429.646389073 0.474052 -0.0861913 10.2328 -0.056459 -0.0287621 0.04048 0.19 -0.02 pose: 0.63999671 3.08993 0.0560589 0 -0.000338627-0.00187823 -0.0520387 0.998643 uwb: 0.50105832 852.494 690.744 +imu_odom_: 1691062429.670394308 0.37589 -0.23942 10.0461 -0.0543285 -0.0127832 0.0383495 0.21 0 pose: 0.43968186 3.09991 0.0566173 0 0.000365104 -0.00242918 -0.0519819 0.998645 uwb: 0.0 852.494 690.744 +imu_odom_: 1691062429.686384966 0.550666 -0.129287 9.7444 -0.0415453 0.0319579 0.0383495 0.21 0 pose: 0.0 3.09991 0.0566173 0 0.000365104 -0.00242918 -0.0519819 0.998645 uwb: 0.0 852.494 690.744 +imu_odom_: 1691062429.702393706 0.124498 -0.418985 9.66539 -0.0372843 0.0170442 0.0394148 0.21 0 pose: 0.0 3.09991 0.0566173 0 0.000365104 -0.00242918 -0.0519819 0.998645 uwb: 0.49875153 853.274 689.592 +imu_odom_: 1691062429.727438893 0.126893 -0.64404 9.56244 -0.052198 0.0394148 0.04048 0.23 -0.02 pose: 0.7013119 3.09991 0.0566173 0 0.000106926 -0.00180689 -0.0519859 0.998646 uwb: 0.0 853.274 689.592 +imu_odom_: 1691062429.750438005 0.141258 -0.275333 10.0509 -0.0394148 0.00106526 0.04048 0.23 -0.02 pose: 0.0 3.09991 0.0566173 0 0.000106926 -0.00180689 -0.0519859 0.998646 uwb: 0.50003762 853.294 688.932 +imu_odom_: 1691062429.775439157 0.526724 -0.229843 9.81862 -0.0436758 0.00852212 0.0426106 0.19 0 pose: 0.55058585 3.1099 0.0571768 0 -0.0007425080.000616871 -0.0520041 0.998646 uwb: 0.0 853.294 688.932 +imu_odom_: 1691062429.801424268 0.627281 -0.102951 10.659 -0.0490022 -0.0276969 0.0543285 0.23 0 pose: 0.48944561 3.11988 0.057736 0 -0.00196707 0.00384269 -0.0519711 0.998639 uwb: 0.50043423 853.447 687.845 +imu_odom_: 1691062429.817408802 0.169988 -0.169988 9.91918 -0.0575243 -0.00213053 0.0340885 0.23 0 pose: 0.0 3.11988 0.057736 0 -0.00196707 0.00384269 -0.0519711 0.998639 uwb: 0.0 853.447 687.845 +imu_odom_: 1691062429.833365048 0.440533 -0.234632 10.1418 -0.0543285 -0.0308927 0.0245011 0.23 0 pose: 0.0 3.11988 0.057736 0 -0.00196707 0.00384269 -0.0519711 0.998639 uwb: 0.0 853.447 687.845 +imu_odom_: 1691062429.849366205 0.488417 -0.447716 9.74919 -0.056459 -0.0181095 0.0308927 0.19 -0.02 pose: 0.75959710 3.13985 0.0588572 0 -0.000607548-0.000646162-0.0519219 0.998651 uwb: 0.49934645 850.997 688.302 +imu_odom_: 1691062429.873343152 0.545878 -0.265756 9.69891 -0.0340885 0.0223706 0.0372843 0.19 -0.02 pose: 0.7017785 3.13985 0.0588572 0 -0.00129166 -0.000876772-0.051952 0.998648 uwb: 0.0 850.997 688.302 +imu_odom_: 1691062429.898383674 0.61531 -0.292093 9.51216 -0.0809601 0.0511327 0.0426106 0.19 -0.02 pose: 0.32960319 3.14746 0.0492684 0 -0.00223862 -0.00323964 -0.0520227 0.998638 uwb: 0.50009594 852.068 687.037 +imu_odom_: 1691062429.914353043 0.203507 -0.344765 9.57681 -0.0628506 0.0181095 0.0383495 0.18 -0.02 pose: 0.0 3.14746 0.0492684 0 -0.00223862 -0.00323964 -0.0520227 0.998638 uwb: 0.0 852.068 687.037 +imu_odom_: 1691062429.929465603 0.636858 -0.232238 9.70849 -0.056459 -0.0447411 0.0426106 0.19 0.02 pose: 0.0 3.14746 0.0492684 0 -0.00223862 -0.00323964 -0.0520227 0.998638 uwb: 0.0 852.068 687.037 +imu_odom_: 1691062429.956482210 0.790087 -0.0047884 10.2735 -0.0617853 0.00426106 0.036219 0.19 0.02 pose: 0.47057423 3.15039 0.0494328 0 -0.00350162 -0.00388257 -0.051987 0.998634 uwb: 0.50073461 852.284 686.077 +imu_odom_: 1691062429.981467906 0.237026 -0.146046 10.1203 -0.1012 -0.00426106 0.0607201 0.17 -0.02 pose: 0.36081635 3.16038 0.0499925 0 -0.00162335 -0.00687428 -0.0520375 0.99862 uwb: 0.0 852.284 686.077 +imu_odom_: 1691062430.7471392 0.452504 -0.246603 9.40442 -0.0916127 0.00213053 0.0351537 0.2 0.02 pose: 0.6941087 3.16038 0.0499925 0 -0.00154425 -0.00621368 -0.0519662 0.998628 uwb: 0.50034091 851.87 685.908 +imu_odom_: 1691062430.23475182 0.409408 -0.565032 9.82341 -0.0894822 -0.0735032 0.0479369 0.17 0 pose: 0.0 3.16038 0.0499925 0 -0.00154425 -0.00621368 -0.0519662 0.998628 uwb: 0.0 851.87 685.908 +imu_odom_: 1691062430.47325866 0.548272 -0.512359 9.44273 -0.04048 0.0181095 0.0223706 0.17 0 pose: 0.50953315 3.17036 0.0505537 0 -0.00329179 -0.00199982 -0.0518034 0.99865 uwb: 0.49904337 853.207 684.475 +imu_odom_: 1691062430.63392940 0.392649 0.102951 10.4698 -0.0639159 0.0106526 0.052198 0.19 -0.02 pose: 0.0 3.17036 0.0505537 0 -0.00329179 -0.00199982 -0.0518034 0.99865 uwb: 0.0 853.207 684.475 +imu_odom_: 1691062430.79320907 0.124498 -0.304064 9.59357 -0.0756338 -0.0468716 0.0511327 0.19 -0.02 pose: 0.39973459 3.18035 0.051117 0 -0.00571363 -0.00265602 -0.0519247 0.998631 uwb: 0.0 853.207 684.475 +imu_odom_: 1691062430.104404020 0.770933 -0.294487 10.0413 -0.0500674 0.00958738 0.0245011 0.19 0 pose: 0.24970836 3.18594 0.0514312 0 -0.00494614 -0.00121998 -0.0517699 0.998646 uwb: 0.50076696 853.077 683.472 +imu_odom_: 1691062430.129331403 0.167594 -0.208296 9.71088 -0.052198 -0.0276969 0.0266316 0.19 0 pose: 0.7024496 3.19033 0.0516793 0 -0.00492624 -0.00187631 -0.0518264 0.998642 uwb: 0.0 853.077 683.472 +imu_odom_: 1691062430.152369897 0.397437 -0.275333 10.2927 -0.0458064 0.0266316 0.0372843 0.19 0 pose: 0.42986000 3.19033 0.0516793 0 -0.00398448 -0.00151637 -0.0521234 0.998632 uwb: 0.49898218 854.87 681.533 +imu_odom_: 1691062430.177320027 0.363919 -0.222661 10.1442 -0.0351537 0.0308927 0.0458064 0.19 0 pose: 0.0 3.19033 0.0516793 0 -0.00398448 -0.00151637 -0.0521234 0.998632 uwb: 0.0 854.87 681.533 +imu_odom_: 1691062430.201353854 0.507571 -0.28491 9.95509 -0.052198 -0.0213053 0.0479369 0.24 0 pose: 0.47988624 3.20805 0.0426516 0 -0.0002268920.00230922 -0.0520639 0.998641 uwb: 0.50020703 855.213 680.808 +imu_odom_: 1691062430.215299902 0.0383072 -0.117316 9.98143 -0.04048 0.0106526 0.04048 0.24 0 pose: 0.0 3.20805 0.0426516 0 -0.0002268920.00230922 -0.0520639 0.998641 uwb: 0.0 855.213 680.808 +imu_odom_: 1691062430.231430260 0.100556 -0.232238 9.95748 -0.0383495 0.00745685 0.0308927 0.18 0.02 pose: 0.0 3.20805 0.0426516 0 -0.0002268920.00230922 -0.0520639 0.998641 uwb: 0.0 855.213 680.808 +imu_odom_: 1691062430.255336645 0.0023942 -0.304064 9.73722 -0.0447411 -0.0181095 0.04048 0.18 0.02 pose: 0.44985416 3.21086 0.0428086 0 -0.0005480390.00207527 -0.0519889 0.998645 uwb: 0.49957128 853.795 680.653 +imu_odom_: 1691062430.280430841 0.270545 -0.201113 10.1179 -0.0490022 0.00852212 0.0447411 0.18 0 pose: 0.33031202 3.21789 0.0432027 0 -0.0007236460.00522325 -0.0520171 0.998632 uwb: 0.0 853.795 680.653 +imu_odom_: 1691062430.306392052 0.213084 -0.158017 10.3214 -0.0607201 -0.0127832 0.0458064 0.18 0 pose: 0.7059493 3.22084 0.0433679 0 -0.0001416730.00570242 -0.0519958 0.998631 uwb: 0.50093902 853.521 680.053 +imu_odom_: 1691062430.330320018 0.80924 -0.124498 10.41 -0.0777643 -0.00319579 0.0575243 0.21 0 pose: 0.43995914 3.22816 0.0437792 0 0.00295956 0.00879274 -0.05185 0.998612 uwb: 0.0 853.521 680.053 +imu_odom_: 1691062430.355320892 0.488417 -0.213084 9.94551 -0.056459 0.0415453 0.0330232 0.21 0 pose: 0.0 3.22816 0.0437792 0 0.00295956 0.00879274 -0.05185 0.998612 uwb: 0.50067364 853.187 679.326 +imu_odom_: 1691062430.379379217 0.617704 -0.244209 9.81383 -0.0607201 -0.0340885 0.0447411 0.19 0 pose: 0.48928840 3.23828 0.0443527 0 0.00209683 0.00457625 -0.0517053 0.99865 uwb: 0.0 853.187 679.326 +imu_odom_: 1691062430.395416253 0.100556 -0.246603 9.56484 -0.0458064 -0.0426106 0.0351537 0.19 0 pose: 0.0 3.23828 0.0443527 0 0.00209683 0.00457625 -0.0517053 0.99865 uwb: 0.49678912 853.367 678.235 +imu_odom_: 1691062430.419412752 0.371101 -0.323217 9.21528 -0.0735032 -0.0383495 0.0383495 0.19 0 pose: 0.40095361 3.24644 0.0448147 0 0.00119624 0.00317149 -0.0516807 0.998658 uwb: 0.0 853.367 678.235 +imu_odom_: 1691062430.435271019 0.656011 0.124498 10.319 -0.0628506 -0.0191748 0.04048 0.19 0 pose: 0.7006707 3.25079 0.0450612 0 0.000433277 0.00294692 -0.0516871 0.998659 uwb: 0.0 853.367 678.235 +imu_odom_: 1691062430.461376004 0.454898 -0.361524 9.93833 -0.0681769 0.00639159 0.0447411 0.25 0.02 pose: 0.32848059 3.25079 0.0450612 0 -0.0003024990.00122553 -0.0516938 0.998662 uwb: 0.50086612 852.433 677.678 +imu_odom_: 1691062430.477490031 0.387861 -0.174777 9.8689 -0.0447411 -0.0223706 0.0351537 0.25 0.02 pose: 0.0 3.25079 0.0450612 0 -0.0003024990.00122553 -0.0516938 0.998662 uwb: 0.0 852.433 677.678 +imu_odom_: 1691062430.502274223 0.610521 -0.253785 9.95509 -0.0511327 -0.0245011 0.0500674 0.24 0 pose: 0.7185768 3.25079 0.0450612 0 -0.0009960670.000957323 -0.0516761 0.998663 uwb: 0.50008454 852.44 676.95 +imu_odom_: 1691062430.525313884 0.68953 -0.160412 9.67736 -0.0596548 -0.00958738 0.0372843 0.24 0 pose: 0.0 3.25079 0.0450612 0 -0.0009960670.000957323 -0.0516761 0.998663 uwb: 0.0 852.44 676.95 +imu_odom_: 1691062430.550299009 0.605733 -0.474052 9.7875 -0.0713727 -0.0234358 0.0532632 0.19 0 pose: 0.41832310 3.26134 0.0356429 0 -0.00121584 -0.00050414 -0.0516291 0.998665 uwb: 0.50032077 852.371 676.05 +imu_odom_: 1691062430.576271886 0.706289 -0.009576819.79707 -0.056459 0.0436758 0.036219 0.22 0.02 pose: 0.48989207 3.27133 0.0362096 0 -0.0016732 -0.0051118 -0.0515098 0.998658 uwb: 0.0 852.371 676.05 +imu_odom_: 1691062430.601382121 0.277727 -0.143652 9.54089 -0.0852212 -0.0213053 0.0596548 0.17 0 pose: 0.0 3.27133 0.0362096 0 -0.0016732 -0.0051118 -0.0515098 0.998658 uwb: 0.50032368 852.225 674.979 +imu_odom_: 1691062430.618264593 0.675165 -0.433351 10.2592 -0.0500674 0.0394148 0.0298274 0.17 0 pose: 0.0 3.27133 0.0362096 0 -0.0016732 -0.0051118 -0.0515098 0.998658 uwb: 0.0 852.225 674.979 +imu_odom_: 1691062430.634374245 0.474052 -0.153229 9.97664 -0.0479369 -0.00426106 0.0351537 0.2 -0.02 pose: 0.50033827 3.28131 0.0367796 0 -0.00118299 -0.00625996 -0.0513809 0.998659 uwb: 0.0 852.225 674.979 +imu_odom_: 1691062430.660290254 0.428562 -0.311246 9.67736 -0.0553937 -0.0127832 0.0447411 0.2 -0.02 pose: 0.0 3.28131 0.0367796 0 -0.00118299 -0.00625996 -0.0513809 0.998659 uwb: 0.50161561 851.59 674.337 +imu_odom_: 1691062430.686264006 0.282516 -0.198719 9.88566 -0.056459 0.00852212 0.0372843 0.23 0.02 pose: 0.58140854 3.29129 0.0373513 0 -0.00101424 -0.00446424 -0.0513024 0.998673 uwb: 0.0 851.59 674.337 +imu_odom_: 1691062430.702278295 0.490811 -0.198719 10.1634 -0.0596548 -0.0223706 0.0372843 0.23 0.02 pose: 0.0 3.29129 0.0373513 0 -0.00101424 -0.00446424 -0.0513024 0.998673 uwb: 0.49748028 851.808 673.307 +imu_odom_: 1691062430.728265170 0.600945 -0.383072 10.4507 -0.0532632 -0.02024 0.0394148 0.23 0 pose: 0.51841350 3.30128 0.0379246 0 -0.001221 -0.00142684 -0.0512831 0.998682 uwb: 0.0 851.808 673.307 +imu_odom_: 1691062430.744290833 0.177171 -0.160412 9.7875 -0.0426106 0.0287621 0.0426106 0.23 0 pose: 0.0 3.30128 0.0379246 0 -0.001221 -0.00142684 -0.0512831 0.998682 uwb: 0.50062698 853.204 671.827 +imu_odom_: 1691062430.769299872 0.505177 -0.337582 10.2472 -0.0394148 0.00958738 0.04048 0.2 0 pose: 0.50996498 3.31126 0.0384982 0 -0.00203272 -0.00245021 -0.0512679 0.99868 uwb: 0.0 853.204 671.827 +imu_odom_: 1691062430.795244753 0.172383 -0.316035 9.96946 -0.0330232 0.0181095 0.0319579 0.2 0 pose: 0.0 3.31126 0.0384982 0 -0.00203272 -0.00245021 -0.0512679 0.99868 uwb: 0.49940505 851.376 671.591 +imu_odom_: 1691062430.811268082 0.225055 -0.155623 10.1418 -0.0479369 -0.0351537 0.04048 0.19 -0.02 pose: 0.7081948 3.31126 0.0384982 0 -0.00259981 -0.0027355 -0.0512637 0.998678 uwb: 0.0 851.376 671.591 +imu_odom_: 1691062430.837235710 0.562637 -0.198719 9.86172 -0.0553937 0.0245011 0.0415453 0.19 -0.02 pose: 0.0 3.31126 0.0384982 0 -0.00259981 -0.0027355 -0.0512637 0.998678 uwb: 0.0 851.376 671.591 +imu_odom_: 1691062430.861353819 0.227449 -0.294487 10.0365 -0.0745685 0.0106526 0.0585895 0.23 0.02 pose: 0.50888303 3.32182 0.0290887 0 -0.00336508 -0.000144811-0.051336 0.998676 uwb: 0.50168559 854.299 668.87 +imu_odom_: 1691062430.886225500 0.186748 -0.0933739 10.1107 -0.0468716 0.00426106 0.0276969 0.2 0 pose: 0.16032370 3.3318 0.0296612 0 -0.00253892 -0.000132013-0.0513243 0.998679 uwb: 0.0 854.299 668.87 +imu_odom_: 1691062430.910285575 0.47884 -0.1652 9.8282 -0.0532632 -0.0372843 0.0298274 0.2 0 pose: 0.43060365 3.3389 0.0300687 0 -0.00247084 0.000936662 -0.0510779 0.998691 uwb: 0.49958295 853.079 668.456 +imu_odom_: 1691062430.936248828 0.797269 -0.229843 10.2496 -0.0458064 -0.0532632 0.0426106 0.19 0.02 pose: 0.6933799 3.34178 0.0302354 0 -0.00196238 0.00146749 -0.0511174 0.99869 uwb: 0.0 853.079 668.456 +imu_odom_: 1691062430.961339815 0.672771 -0.007182619.7851 -0.0468716 -0.04048 0.0394148 0.19 0.02 pose: 0.0 3.34178 0.0302354 0 -0.00196238 0.00146749 -0.0511174 0.99869 uwb: 0.0 853.079 668.456 +imu_odom_: 1691062430.976253783 0.792481 -0.31364 9.85453 -0.0490022 0.0191748 0.0340885 0.2 0 pose: 0.49061823 3.35177 0.030811 0 0.000269696 -0.000642827-0.0513247 0.998682 uwb: 0.0 853.079 668.456 +imu_odom_: 1691062430.993221995 0.263362 -0.699107 9.37569 -0.0681769 -0.0149137 0.0426106 0.2 0 pose: 0.0 3.35177 0.030811 0 0.000269696 -0.000642827-0.0513247 0.998682 uwb: 0.99836390 852.784 667.79 +imu_odom_: 1691062431.19232209 0.442927 -0.363919 9.32302 -0.0447411 0.00745685 0.0415453 0.19 0 pose: 0.49897927 3.35177 0.030811 0 0.00159156 -0.00580265 -0.0513148 0.998664 uwb: 0.0 852.784 667.79 +imu_odom_: 1691062431.44337208 0.560243 -0.409408 9.72764 -0.0596548 0.0245011 0.036219 0.19 0 pose: 0.0 3.35177 0.030811 0 0.00159156 -0.00580265 -0.0513148 0.998664 uwb: 0.0 852.784 667.79 +imu_odom_: 1691062431.59413331 0.399832 -0.316035 9.74201 -0.0468716 0.0191748 0.0351537 0.19 0 pose: 0.0 3.35177 0.030811 0 0.00159156 -0.00580265 -0.0513148 0.998664 uwb: 0.0 852.784 667.79 +imu_odom_: 1691062431.86231075 0.251391 -0.222661 10.2065 -0.0575243 0.0468716 0.0394148 0.19 -0.05 pose: 0.32999707 3.36175 0.0313837 0 -0.000985709-0.00537203 -0.0512913 0.998669 uwb: 0.0 852.784 667.79 +imu_odom_: 1691062431.111269290 0.349553 -0.179565 9.96946 -0.0468716 -0.0266316 0.0372843 0.19 0 pose: 0.50006146 3.37173 0.0319572 0 -0.00494221 -0.00432694 -0.0513073 0.998661 uwb: 0.100112902 854.327 665.775 +imu_odom_: 1691062431.126191432 0.526724 -0.301669 9.56005 -0.0585895 -0.0266316 0.0596548 0.19 0 pose: 0.0 3.37173 0.0319572 0 -0.00494221 -0.00432694 -0.0513073 0.998661 uwb: 0.0 854.327 665.775 +imu_odom_: 1691062431.142189982 0.634463 -0.0861913 10.5369 -0.0596548 -0.0181095 0.036219 0.19 0 pose: 0.0 3.37173 0.0319572 0 -0.00494221 -0.00432694 -0.0513073 0.998661 uwb: 0.49920701 855.085 664.317 +imu_odom_: 1691062431.157247732 0.213084 -0.222661 9.34696 -0.072438 -0.0127832 0.0383495 0.19 -0.02 pose: 0.42967358 3.38172 0.0325305 0 -0.00317826 4.74422e-05 -0.0513278 0.998677 uwb: 0.0 855.085 664.317 +imu_odom_: 1691062431.182245994 0.229843 -0.328006 9.61272 -0.0703074 0.00745685 0.036219 0.19 -0.02 pose: 0.0 3.38172 0.0325305 0 -0.00317826 4.74422e-05 -0.0513278 0.998677 uwb: 0.0 855.085 664.317 +imu_odom_: 1691062431.207187388 0.605733 -0.514753 10.647 -0.0479369 0.00958738 0.0351537 0.19 0.02 pose: 0.89025415 3.39948 0.0235368 0 -0.0023834 0.00164197 -0.0512744 0.99868 uwb: 0.49900870 855.715 663.355 +imu_odom_: 1691062431.230222103 0.591368 -0.263362 10.1945 -0.056459 0.02024 0.0500674 0.19 0.02 pose: 0.0 3.39948 0.0235368 0 -0.0023834 0.00164197 -0.0512744 0.99868 uwb: 0.0 855.715 663.355 +imu_odom_: 1691062431.246194406 0.311246 -0.277727 10.4148 -0.036219 -0.00213053 0.0532632 0.25 0 pose: 0.6950426 3.40226 0.0236966 0 -0.0028847 0.00123733 -0.0512918 0.998679 uwb: 0.50040852 853.947 663.297 +imu_odom_: 1691062431.263186832 0.25618 -0.205901 9.72285 -0.0511327 -0.0106526 0.0415453 0.25 0 pose: 0.0 3.40226 0.0236966 0 -0.0028847 0.00123733 -0.0512918 0.998679 uwb: 0.0 853.947 663.297 +imu_odom_: 1691062431.287183927 0.299275 -0.306458 9.48583 -0.0426106 0.0298274 0.0458064 0.24 0 pose: 0.47987483 3.41224 0.0242703 0 -0.00368981 -0.00111904 -0.0511768 0.998682 uwb: 0.0 853.947 663.297 +imu_odom_: 1691062431.312269095 0.481235 -0.52433 9.7875 -0.0490022 0.0479369 0.0415453 0.24 0 pose: 0.0 3.41224 0.0242703 0 -0.00368981 -0.00111904 -0.0511768 0.998682 uwb: 0.49876081 853.582 662.455 +imu_odom_: 1691062431.337213114 0.0814029 -0.205901 10.0461 -0.0468716 0.0426106 0.0479369 0.19 0 pose: 0.75085192 3.42222 0.024848 0 -0.00548611 0.00325078 -0.051002 0.998678 uwb: 0.0 853.582 662.455 +imu_odom_: 1691062431.354258325 0.636858 -0.0790087 10.3046 -0.0490022 -0.0415453 0.0468716 0.19 0 pose: 0.8037041 3.42222 0.024848 0 -0.00506915 0.00415061 -0.0509645 0.998679 uwb: 0.0 853.582 662.455 +imu_odom_: 1691062431.379169390 0.744597 0.124498 9.96946 -0.056459 -0.00106526 0.0468716 0.18 -0.02 pose: 0.0 3.42222 0.024848 0 -0.00506915 0.00415061 -0.0509645 0.998679 uwb: 0.0 853.582 662.455 +imu_odom_: 1691062431.404166194 0.392649 -0.19393 9.75158 -0.0585895 -0.00958738 0.0394148 0.18 -0.02 pose: 0.33952189 3.43221 0.0254275 0 -0.00330393 0.00424564 -0.0508239 0.998693 uwb: 0.100092204 853.798 661.336 +imu_odom_: 1691062431.427415841 0.632069 -0.131681 9.57441 -0.0585895 -0.0127832 0.0351537 0.18 -0.02 pose: 0.49907869 3.43962 0.0258604 0 0.000339539 0.000919925 -0.0507325 0.998712 uwb: 0.0 853.798 661.336 +imu_odom_: 1691062431.452212878 -0.347159 -0.225055 9.414 -0.0628506 0.0191748 0.0319579 0.18 -0.02 pose: 0.0 3.43962 0.0258604 0 0.000339539 0.000919925 -0.0507325 0.998712 uwb: 0.50000315 854.037 660.26 +imu_odom_: 1691062431.478209391 0.318429 -0.198719 9.98861 -0.0628506 -0.0394148 0.0394148 0.19 0 pose: 0.31222529 3.44278 0.0160281 0 0.000867032 -0.000537812-0.0508136 0.998708 uwb: 0.0 854.037 660.26 +imu_odom_: 1691062431.493164195 0.68953 -0.0383072 9.87129 -0.0458064 -0.0372843 0.036219 0.19 0 pose: 0.0 3.44278 0.0160281 0 0.000867032 -0.000537812-0.0508136 0.998708 uwb: 0.49995650 854.475 658.818 +imu_odom_: 1691062431.520381181 0.754174 -0.296881 9.99579 -0.0596548 -0.00213053 0.0468716 0.19 0 pose: 0.48766136 3.45276 0.0166111 0 0.00112552 0.00283781 -0.0508921 0.998699 uwb: 0.0 854.475 658.818 +imu_odom_: 1691062431.536290784 0.442927 -0.150835 9.7037 -0.0468716 0.0298274 0.0330232 0.19 0 pose: 0.0 3.45276 0.0166111 0 0.00112552 0.00283781 -0.0508921 0.998699 uwb: 0.0 854.475 658.818 +imu_odom_: 1691062431.562370703 0.294487 -0.320823 10.0676 -0.052198 -0.0245011 0.0500674 0.17 -0.02 pose: 0.44110841 3.46274 0.0171925 0 0.00128664 -0.000961811-0.0508302 0.998706 uwb: 0.50135341 854.704 657.698 +imu_odom_: 1691062431.587289642 0.371101 -0.177171 9.75877 -0.056459 -0.00639159 0.0394148 0.17 0.02 pose: 0.34105003 3.4701 0.0176218 0 0.00018909 0.000331325 -0.050722 0.998713 uwb: 0.0 854.704 657.698 +imu_odom_: 1691062431.612313276 0.507571 -0.407014 9.60075 -0.0639159 -0.02024 0.0479369 0.17 0.02 pose: 0.0 3.4701 0.0176218 0 0.00018909 0.000331325 -0.050722 0.998713 uwb: 0.49847793 854.899 656.491 +imu_odom_: 1691062431.634126351 0.0407014 -0.294487 9.81144 -0.052198 -0.00745685 0.0351537 0.18 0 pose: 0.49942573 3.48027 0.0182175 0 -8.58538e-050.000330127 -0.0506206 0.998718 uwb: 0.0 854.899 656.491 +imu_odom_: 1691062431.658180315 0.3304 -0.476446 9.92397 -0.0809601 0.0372843 0.0628506 0.18 0 pose: 0.0 3.48027 0.0182175 0 -8.58538e-050.000330127 -0.0506206 0.998718 uwb: 0.50082555 853.613 655.963 +imu_odom_: 1691062431.675198987 0.730232 -0.191536 10.149 -0.0671117 0.00639159 0.0287621 0.19 0.02 pose: 0.5831440 3.48271 0.018361 0 -0.0001727230.000895907 -0.0506335 0.998717 uwb: 0.0 853.613 655.963 +imu_odom_: 1691062431.691126379 0.174777 -0.366313 9.67018 -0.0479369 0.0117179 0.0340885 0.19 0.02 pose: 0.40035599 3.4899 0.0187834 0 -0.00307012 0.00332202 -0.0503939 0.998719 uwb: 0.49799382 854.048 654.475 +imu_odom_: 1691062431.717192008 0.196325 -0.143652 9.85214 -0.0490022 -0.0170442 0.0436758 0.19 0.02 pose: 0.7004961 3.49269 0.0189488 0 -0.00299015 0.00267087 -0.0504336 0.998719 uwb: 0.0 854.048 654.475 +imu_odom_: 1691062431.742130778 0.414197 -0.232238 10.2256 -0.056459 -0.0213053 0.0351537 0.19 0.02 pose: 0.0 3.49269 0.0189488 0 -0.00299015 0.00267087 -0.0504336 0.998719 uwb: 0.49992442 854.324 653.44 +imu_odom_: 1691062431.769269607 0.445322 -0.251391 9.87608 -0.052198 0.0511327 0.0447411 0.2 -0.02 pose: 0.33075256 3.49269 0.0189488 0 -0.00288513 0.00377371 -0.0505129 0.998712 uwb: 0.0 854.324 653.44 +imu_odom_: 1691062431.785168127 0.304064 -0.349553 9.92157 -0.0490022 0.00319579 0.0383495 0.2 -0.02 pose: 0.0 3.49269 0.0189488 0 -0.00288513 0.00377371 -0.0505129 0.998712 uwb: 0.0 854.324 653.44 +imu_odom_: 1691062431.802114475 0.761356 -0.160412 10.2544 -0.0383495 -0.0181095 0.0330232 0.23 0.02 pose: 0.0 3.49269 0.0189488 0 -0.00288513 0.00377371 -0.0505129 0.998712 uwb: 0.50039103 853.968 652.594 +imu_odom_: 1691062431.818178933 0.447716 -0.148441 9.71806 -0.0351537 0.0276969 0.0447411 0.23 0.02 pose: 0.50868208 3.50326 0.0095549 0 -0.00132307 0.00174824 -0.0505058 0.998721 uwb: 0.0 853.968 652.594 +imu_odom_: 1691062431.835250391 0.3304 -0.25618 10.1323 -0.0415453 -0.00639159 0.0436758 0.23 0.02 pose: 0.0 3.50326 0.0095549 0 -0.00132307 0.00174824 -0.0505058 0.998721 uwb: 0.0 853.968 652.594 +imu_odom_: 1691062431.851496243 0.770933 -0.0837971 9.81383 -0.0500674 -0.0149137 0.0340885 0.2 -0.02 pose: 0.86121651 3.52323 0.0107333 0 -0.0009009690.000980092 -0.0504503 0.998726 uwb: 0.49923908 852.185 652.607 +imu_odom_: 1691062431.868277820 0.545878 -0.258574 9.60314 -0.0426106 0.0138484 0.0394148 0.2 -0.02 pose: 0.0 3.52323 0.0107333 0 -0.0009009690.000980092 -0.0504503 0.998726 uwb: 0.0 852.185 652.607 +imu_odom_: 1691062431.884148927 0.517148 -0.217872 9.84017 -0.0468716 -0.0372843 0.0447411 0.2 -0.02 pose: 0.0 3.52323 0.0107333 0 -0.0009009690.000980092 -0.0504503 0.998726 uwb: 0.0 852.185 652.607 +imu_odom_: 1691062431.911139900 0.967257 -0.0023942 10.3837 -0.0500674 -0.0149137 0.0543285 0.25 -0.02 pose: 0.6850980 3.52323 0.0107333 0 -0.0006699720.00029158 -0.0504695 0.998725 uwb: 0.50019855 850.757 651.785 +imu_odom_: 1691062431.936171408 0.440533 -0.0790087 9.61272 -0.056459 -0.0181095 0.0447411 0.18 0.02 pose: 0.69038529 3.53321 0.0113232 0 0.000461103 -0.00659733 -0.0502628 0.998714 uwb: 0.0 850.757 651.785 +imu_odom_: 1691062431.953149252 0.237026 -0.244209 10.0533 -0.0553937 -0.0245011 0.0276969 0.18 0.02 pose: 0.0 3.53321 0.0113232 0 0.000461103 -0.00659733 -0.0502628 0.998714 uwb: 0.49989817 851.512 650.184 +imu_odom_: 1691062431.978137307 0.703895 -0.37589 9.99819 -0.0532632 -0.0372843 0.0372843 0.23 -0.02 pose: 0.32042301 3.54319 0.0119173 0 0.00235654 -0.00479685 -0.0502559 0.998722 uwb: 0.0 851.512 650.184 +imu_odom_: 1691062432.3204686 1.0319 -0.1652 10.161 -0.0458064 -0.0213053 0.0532632 0.21 0 pose: 0.0 3.54319 0.0119173 0 0.00235654 -0.00479685 -0.0502559 0.998722 uwb: 0.49988942 849.21 650.709 +imu_odom_: 1691062432.26201209 0.217872 -0.100556 9.83299 -0.0447411 -0.0468716 0.0458064 0.21 0 pose: 0.42090134 3.55317 0.0125107 0 0.00037243 -0.00687473 -0.0502858 0.998711 uwb: 0.0 849.21 650.709 +imu_odom_: 1691062432.42071158 0.682347 -0.3304 10.1778 -0.0468716 0.0223706 0.0340885 0.21 0 pose: 0.0 3.55317 0.0125107 0 0.00037243 -0.00687473 -0.0502858 0.998711 uwb: 0.49997128 848.865 649.91 +imu_odom_: 1691062432.66079348 0.47884 -0.153229 10.0916 -0.0458064 -0.00426106 0.0351537 0.2 0 pose: 0.47817770 3.56316 0.0131041 0 0.000799887 -0.00748213 -0.0501116 0.998715 uwb: 0.0 848.865 649.91 +imu_odom_: 1691062432.82091321 0.462081 -0.395043 9.14346 -0.0511327 0.0372843 0.0511327 0.2 0 pose: 0.0 3.56316 0.0131041 0 0.000799887 -0.00748213 -0.0501116 0.998715 uwb: 0.0 848.865 649.91 +imu_odom_: 1691062432.108137134 0.531513 -0.500388 9.53132 -0.0649811 0.036219 0.0479369 0.18 0 pose: 0.40007915 3.56375 0.00312193 0 0.000968303 -0.00563317 -0.0501494 0.998725 uwb: 0.49972637 848.659 648.59 +imu_odom_: 1691062432.131101870 0.258574 -0.294487 10.2544 -0.0500674 0.056459 0.0266316 0.18 0 pose: 0.0 3.56375 0.00312193 0 0.000968303 -0.00563317 -0.0501494 0.998725 uwb: 0.0 848.659 648.59 +imu_odom_: 1691062432.156071857 0.344765 -0.19393 9.80904 -0.0628506 -0.02024 0.052198 0.18 -0.02 pose: 0.41048744 3.57373 0.00371801 0 -0.00259566 -0.00403799 -0.0500081 0.998737 uwb: 0.50247062 845.916 648.987 +imu_odom_: 1691062432.173114452 0.373495 -0.102951 9.4164 -0.0308927 -0.00532632 0.0245011 0.18 -0.02 pose: 0.0 3.57373 0.00371801 0 -0.00259566 -0.00403799 -0.0500081 0.998737 uwb: 0.0 845.916 648.987 +imu_odom_: 1691062432.198083273 0.438139 -0.237026 9.81144 -0.0777643 0.00958738 0.0585895 0.22 0 pose: 0.48999466 3.58372 0.00431726 0 -0.0004140343.3274e-05 -0.0500075 0.998749 uwb: 0.49935017 845.595 648.255 +imu_odom_: 1691062432.215201984 0.538695 -0.301669 9.48583 -0.0628506 0.00532632 0.0372843 0.22 0 pose: 0.0 3.58372 0.00431726 0 -0.0004140343.3274e-05 -0.0500075 0.998749 uwb: 0.0 845.595 648.255 +imu_odom_: 1691062432.240058819 0.629675 -0.493206 9.43076 -0.0596548 0.00213053 0.0394148 0.21 -0.02 pose: 0.42067118 3.5937 0.00491634 0 -0.00175538 -0.00194449 -0.0498527 0.998753 uwb: 0.0 845.595 648.255 +imu_odom_: 1691062432.257064960 0.663194 -0.225055 9.7444 -0.0500674 -0.00745685 0.0276969 0.21 -0.02 pose: 0.0 3.5937 0.00491634 0 -0.00175538 -0.00194449 -0.0498527 0.998753 uwb: 0.49923352 844.351 647.929 +imu_odom_: 1691062432.273122719 0.823605 -0.354342 9.95509 -0.0575243 0.0117179 0.0426106 0.21 -0.02 pose: 0.41878724 3.60368 0.00551857 0 -0.0042166 -0.00469173 -0.0499092 0.998734 uwb: 0.0 844.351 647.929 +imu_odom_: 1691062432.290051287 0.433351 -0.440533 9.66539 -0.0649811 -0.00532632 0.0447411 0.21 -0.02 pose: 0.0 3.60368 0.00551857 0 -0.0042166 -0.00469173 -0.0499092 0.998734 uwb: 0.0 844.351 647.929 +imu_odom_: 1691062432.306058011 0.270545 -0.0694318 9.73004 -0.0351537 0.0149137 0.0532632 0.2 -0.02 pose: 0.0 3.60368 0.00551857 0 -0.0042166 -0.00469173 -0.0499092 0.998734 uwb: 0.50048461 844.691 647.033 +imu_odom_: 1691062432.323118687 0.462081 -0.409408 10.1107 -0.0532632 -0.00852212 0.0511327 0.2 -0.02 pose: 0.51069459 3.61366 0.00611997 0 -0.00503074 -0.00539224 -0.0498411 0.99873 uwb: 0.0 844.691 647.033 +imu_odom_: 1691062432.339049295 0.402226 -0.253785 10.0796 -0.0415453 -0.00213053 0.0415453 0.2 -0.02 pose: 0.0 3.61366 0.00611997 0 -0.00503074 -0.00539224 -0.0498411 0.99873 uwb: 0.0 844.691 647.033 +imu_odom_: 1691062432.356111430 0.177171 -0.196325 9.61272 -0.0458064 0.0340885 0.0436758 0.25 0 pose: 0.40887764 3.61366 0.00611997 0 -0.0047325 -0.00297499 -0.0496605 0.998751 uwb: 0.50007050 845.885 645.561 +imu_odom_: 1691062432.372107946 0.227449 -0.201113 10.1897 -0.052198 0.00319579 0.0468716 0.25 0 pose: 0.0 3.61366 0.00611997 0 -0.0047325 -0.00297499 -0.0496605 0.998751 uwb: 0.0 845.885 645.561 +imu_odom_: 1691062432.389238906 0.782904 -0.114922 9.59357 -0.0500674 -0.0117179 0.0330232 0.25 0 pose: 0.0 3.61366 0.00611997 0 -0.0047325 -0.00297499 -0.0496605 0.998751 uwb: 0.0 845.885 645.561 +imu_odom_: 1691062432.405181762 0.560243 -0.215478 9.71567 -0.0415453 0.0117179 0.0468716 0.18 -0.02 pose: 0.40002082 3.62425 -0.0032551 0 -0.00294783 -0.000281409-0.0495838 0.998766 uwb: 0.49875233 846.788 644.247 +imu_odom_: 1691062432.432035974 0.462081 -0.153229 10.137 -0.0490022 -0.0127832 0.0447411 0.25 0.02 pose: 0.0 3.62425 -0.0032551 0 -0.00294783 -0.000281409-0.0495838 0.998766 uwb: 0.0 846.788 644.247 +imu_odom_: 1691062432.448034532 0.881066 0.0574608 9.36612 -0.0532632 -0.0777643 0.0681769 0.25 0.02 pose: 0.34010242 3.63423 -0.00264738 0 -0.00118063 -0.00278437 -0.0495484 0.998767 uwb: 0.50235105 847.918 642.587 +imu_odom_: 1691062432.465031050 0.852336 -0.268151 9.48583 -0.0692422 0.0213053 0.136354 0.17 0.02 pose: 0.0 3.63423 -0.00264738 0 -0.00118063 -0.00278437 -0.0495484 0.998767 uwb: 0.0 847.918 642.587 +imu_odom_: 1691062432.481028442 1.16119 -0.304064 10.082 -0.056459 0.0106526 0.158724 0.17 0.02 pose: 0.0 3.63423 -0.00264738 0 -0.00118063 -0.00278437 -0.0495484 0.998767 uwb: 0.0 847.918 642.587 +imu_odom_: 1691062432.498276928 0.486023 -0.56982 9.32781 -0.0276969 -0.0383495 0.196009 0.19 0.35 pose: 0.67966823 3.64417 -0.00203713 0 0.000549954 -0.0078723 -0.0474947 0.99884 uwb: 0.49903229 846.43 642.558 +imu_odom_: 1691062432.514030516 1.42934 -0.354342 9.79468 -0.0585895 -0.0287621 0.290817 0.19 0.35 pose: 0.0 3.64417 -0.00203713 0 0.000549954 -0.0078723 -0.0474947 0.99884 uwb: 0.0 846.43 642.558 +imu_odom_: 1691062432.531143395 1.48201 -0.653617 10.1873 -0.0628506 0.0330232 0.38243 0.19 0.35 pose: 0.0 3.64417 -0.00203713 0 0.000549954 -0.0078723 -0.0474947 0.99884 uwb: 0.0 846.43 642.558 +imu_odom_: 1691062432.547180156 0.933739 -0.486023 9.71806 -0.0372843 0.0351537 0.411192 0.11 0.38 pose: 0.7121908 3.64421 -0.00203616 0 -5.81585e-05-0.00784921 -0.0469322 0.998867 uwb: 0.49909353 846.436 641.711 +imu_odom_: 1691062432.574194473 0.790087 -0.28491 9.96706 -0.0681769 -0.0149137 0.565655 0.11 0.38 pose: 0.0 3.64421 -0.00203616 0 -5.81585e-05-0.00784921 -0.0469322 0.998867 uwb: 0.0 846.436 641.711 +imu_odom_: 1691062432.590002014 0.828394 -0.61531 9.57681 -0.0532632 -0.0181095 0.637028 0.1 0.44 pose: 0.50880483 3.6542 -0.00146899 0 -0.00258808 -0.0111986 -0.0397491 0.999144 uwb: 0.0 846.436 641.711 +imu_odom_: 1691062432.607020987 -0.344765 -0.679953 9.06684 -0.0543285 0.116114 0.532632 0.14 0.47 pose: 0.0 3.6542 -0.00146899 0 -0.00258808 -0.0111986 -0.0397491 0.999144 uwb: 0.49985469 845.283 641.617 +imu_odom_: 1691062432.623069997 -1.40061 0.641646 10.3741 -0.0213053 -0.00106526 0.328101 0.11 0.32 pose: 0.0 3.6542 -0.00146899 0 -0.00258808 -0.0111986 -0.0397491 0.999144 uwb: 0.0 845.283 641.617 +imu_odom_: 1691062432.640007022 -0.909797 0.459687 9.76595 -0.0660464 -0.106526 0.297209 0.11 0.32 pose: 0.75989579 3.6542 -0.00146901 0 -0.00535069 -0.0117501 -0.0210347 0.999695 uwb: 0.0 845.283 641.617 +imu_odom_: 1691062432.656126607 0.560243 -0.407014 10.4818 -0.072438 -0.0500674 0.291882 0.13 0.26 pose: 0.0 3.6542 -0.00146901 0 -0.00535069 -0.0117501 -0.0210347 0.999695 uwb: 0.49927435 844.737 641.213 +imu_odom_: 1691062432.673177659 0.758962 -0.739808 9.34457 -0.0553937 -0.0266316 0.262055 0.13 0.26 pose: 0.33112602 3.66417 -0.0007890840 -0.0050022 -0.0101451 -0.016656 0.999797 uwb: 0.0 844.737 641.213 +imu_odom_: 1691062432.689126057 0.122104 -0.31364 9.47146 -0.052198 0.0777643 0.245011 0.13 0.26 pose: 0.0 3.66417 -0.0007890840 -0.0050022 -0.0101451 -0.016656 0.999797 uwb: 0.0 844.737 641.213 +imu_odom_: 1691062432.706196065 -0.265756 0.0430956 9.60075 -0.0543285 0.015979 0.247141 0.19 0.23 pose: 0.40993043 3.66417 -0.0007890840 -0.00723249 -0.00846985 -0.0120856 0.999865 uwb: 0.50117578 843.941 641.097 +imu_odom_: 1691062432.722109759 -0.275333 -0.40462 10.0844 -0.0756338 -0.0330232 0.246076 0.19 0.23 pose: 0.0 3.66417 -0.0007890840 -0.00723249 -0.00846985 -0.0120856 0.999865 uwb: 0.0 843.941 641.097 +imu_odom_: 1691062432.739105985 0.682347 -0.47884 10.2831 -0.0596548 -0.0415453 0.207727 0.19 0.23 pose: 0.0 3.66417 -0.0007890840 -0.00723249 -0.00846985 -0.0120856 0.999865 uwb: 0.0 843.941 641.097 +imu_odom_: 1691062432.754993432 0.548272 -0.287304 9.91199 -0.0532632 -0.00958738 0.2024 0.14 0.17 pose: 0.8021880 3.66417 -0.0007890840 -0.00688279 -0.00766175 -0.0112516 0.999884 uwb: 0.49793576 844.326 640.263 +imu_odom_: 1691062432.772054691 0.275333 -0.0574608 9.74679 -0.0639159 0.0394148 0.225836 0.2 0.17 pose: 0.0 3.66417 -0.0007890840 -0.00688279 -0.00766175 -0.0112516 0.999884 uwb: 0.0 844.326 640.263 +imu_odom_: 1691062432.788046542 -0.126893 -0.301669 9.94312 -0.0884169 0.00532632 0.224771 0.2 0.17 pose: 0.64997441 3.67415 -0.0001135950 -0.00577582 -0.00654618 -0.00528359 0.999948 uwb: 0.0 844.326 640.263 +imu_odom_: 1691062432.805167294 0.526724 -0.272939 9.88326 -0.0607201 -0.0255663 0.169377 0.19 0.14 pose: 0.0 3.67415 -0.0001135950 -0.00577582 -0.00654618 -0.00528359 0.999948 uwb: 0.50009091 843.999 639.508 +imu_odom_: 1691062432.821064073 0.730232 -0.186748 10.173 -0.0553937 -0.0287621 0.169377 0.19 0.14 pose: 0.0 3.67415 -0.0001135950 -0.00577582 -0.00654618 -0.00528359 0.999948 uwb: 0.0 843.999 639.508 +imu_odom_: 1691062432.839246069 0.275333 -0.337582 9.50977 -0.0553937 0.0532632 0.170442 0.19 0.14 pose: 0.32855968 3.68413 0.000580923 0 -0.00487133 -0.00452094 -0.00242951 0.999975 uwb: 0.0 843.999 639.508 +imu_odom_: 1691062432.855008406 0.565032 -0.466869 10.3046 -0.0436758 -0.0276969 0.158724 0.16 0.14 pose: 0.44244723 3.69001 0.000942103 0 -0.00387705 -0.00465317 0.000443445 0.999982 uwb: 0.50263976 843.997 638.638 +imu_odom_: 1691062432.872186318 1.09654 -0.0670376 9.28232 -0.0468716 -0.0106526 0.191748 0.16 0.14 pose: 0.6842526 3.69411 0.00123151 0 -0.00447738 -0.00497957 0.000853558 0.999977 uwb: 0.0 843.997 638.638 +imu_odom_: 1691062432.889256910 1.01993 -0.0071826110.1682 -0.0511327 0.0170442 0.257794 0.16 0.14 pose: 0.0 3.69411 0.00123151 0 -0.00447738 -0.00497957 0.000853558 0.999977 uwb: 0.0 843.997 638.638 +imu_odom_: 1691062432.905086614 1.63763 -0.536301 9.7851 -0.0468716 -0.0447411 0.24075 0.17 0.11 pose: 0.43168315 3.69411 0.00123151 0 -0.00360135 -0.00829753 0.00453267 0.999949 uwb: 0.49783078 846.357 637.168 +imu_odom_: 1691062432.922130084 1.60412 -0.007182619.61272 -0.0276969 0.00958738 0.134223 0.11 0.08 pose: 0.0 3.69411 0.00123151 0 -0.00360135 -0.00829753 0.00453267 0.999949 uwb: 0.0 846.357 637.168 +imu_odom_: 1691062432.939175595 1.30484 0.304064 9.85693 -0.0479369 0.0287621 0.117179 0.11 0.08 pose: 0.0 3.69411 0.00123151 0 -0.00360135 -0.00829753 0.00453267 0.999949 uwb: 0.0 846.357 637.168 +imu_odom_: 1691062432.954996842 0.677559 -0.277727 9.91199 -0.0617853 0.0394148 0.11931 0.1 0.05 pose: 0.23883955 3.70408 0.00194444 0 -0.00357007 -0.0108737 0.00650046 0.999913 uwb: 0.49998592 847.752 636.045 +imu_odom_: 1691062432.972109429 0.392649 -0.593762 9.9934 -0.0543285 0.00426106 0.0852212 0.1 0.05 pose: 0.0 3.70408 0.00194444 0 -0.00357007 -0.0108737 0.00650046 0.999913 uwb: 0.0 847.752 636.045 +imu_odom_: 1691062432.988027205 0.653617 -0.009576819.67736 -0.0436758 -0.0234358 0.0649811 0.1 0.05 pose: 0.33016365 3.70408 0.00194444 0 -0.00248936 -0.0130648 0.00784673 0.999881 uwb: 0.0 847.752 636.045 +imu_odom_: 1691062433.5136293 0.770933 0 9.76355 -0.0553937 0.00106526 0.122505 0.1 0.11 pose: 0.41869975 3.70408 0.00194444 0 -0.00268839 -0.0125846 0.00879937 0.999878 uwb: 0.49933268 849.011 634.579 +imu_odom_: 1691062433.20960756 0.711078 -0.459687 9.8282 -0.0585895 -0.00106526 0.134223 0.1 0.11 pose: 0.7959180 3.70408 0.00194444 0 -0.00196869 -0.0128929 0.00911926 0.999873 uwb: 0.0 849.011 634.579 +imu_odom_: 1691062433.37954949 0.68953 -0.435745 9.92157 -0.0436758 -0.00852212 0.110787 0.1 0.11 pose: 0.0 3.70408 0.00194444 0 -0.00196869 -0.0128929 0.00911926 0.999873 uwb: 0.0 849.011 634.579 +imu_odom_: 1691062433.54135785 0.617704 -0.0646434 9.93354 -0.0436758 0.00745685 0.0937433 0.05 0.08 pose: 0.41968564 3.71474 -0.00734984 0 -0.00431178 -0.0138506 0.0108839 0.999836 uwb: 0.50151718 849.398 633.707 +imu_odom_: 1691062433.81071376 0.663194 -0.244209 9.79707 -0.0681769 -0.00852212 0.111853 0.07 0.08 pose: 0.0 3.71474 -0.00734984 0 -0.00431178 -0.0138506 0.0108839 0.999836 uwb: 0.0 849.398 633.707 +imu_odom_: 1691062433.105957387 0.100556 -0.325611 9.85693 -0.0532632 0.0372843 0.0117179 0.05 0.02 pose: 0.24148477 3.71474 -0.00734984 0 -0.00191389 -0.0134307 0.0115795 0.999841 uwb: 0.49967998 849.228 633.294 +imu_odom_: 1691062433.133078455 -1.41737 0.155623 10.1083 -0.0681769 0.0340885 0.0585895 0.05 0.02 pose: 0.0 3.71474 -0.00734984 0 -0.00191389 -0.0134307 0.0115795 0.999841 uwb: 0.0 849.228 633.294 +imu_odom_: 1691062433.158036499 -0.354342 -0.869095 9.663 -0.0575243 -0.103331 0.0681769 0.09 0.02 pose: 0.70975029 3.71474 -0.00734984 0 -0.000318458-0.00744581 0.012151 0.999898 uwb: 0.49949041 850.431 631.659 +imu_odom_: 1691062433.184944094 0.691924 0.0191536 9.663 -0.0607201 -0.0308927 0.0969391 0.09 0.02 pose: 0.7999721 3.71474 -0.00734984 0 -0.000798665-0.00719732 0.0122693 0.999899 uwb: 0.0 850.431 631.659 +imu_odom_: 1691062433.201010902 0.23942 -0.0646434 9.54568 -0.0713727 0.0372843 0.0980043 0.11 0 pose: 0.0 3.71474 -0.00734984 0 -0.000798665-0.00719732 0.0122693 0.999899 uwb: 0.49983454 848.352 632.078 +imu_odom_: 1691062433.227954075 -0.155623 -0.191536 9.97185 -0.0458064 -0.00319579 0.0543285 0.11 0 pose: 0.50886343 3.72472 -0.00670477 0 0.000657383 -0.00759467 0.0134757 0.99988 uwb: 0.0 848.352 632.078 +imu_odom_: 1691062433.252936033 0.172383 -0.277727 9.87608 -0.0415453 0.00745685 0.0756338 0.16 0.02 pose: 0.35989556 3.72472 -0.00670477 0 0.00105386 -0.00386247 0.0139333 0.999895 uwb: 0.0 848.352 632.078 +imu_odom_: 1691062433.269934601 0.0837971 -0.0790087 9.60554 -0.0447411 0.015979 0.0639159 0.16 0.02 pose: 0.7063003 3.72472 -0.00670477 0 0.000908043 -0.00314052 0.0140609 0.999896 uwb: 0.0 848.352 632.078 +imu_odom_: 1691062433.285929084 -0.102951 -0.0957681 10.1682 -0.0415453 0.0245011 0.0809601 0.15 0.05 pose: 0.0 3.72472 -0.00670477 0 0.000908043 -0.00314052 0.0140609 0.999896 uwb: 0.0 848.352 632.078 +imu_odom_: 1691062433.303046346 -0.208296 -0.268151 9.46428 -0.0490022 -0.0213053 0.0617853 0.15 0.05 pose: 0.42925117 3.7347 -0.00602412 0 0.00137846 0.00137385 0.014755 0.999889 uwb: 0.99929288 848.324 631.097 +imu_odom_: 1691062433.327939065 0.397437 -0.0742203 9.89045 -0.0383495 -0.02024 0.0628506 0.14 0.02 pose: 0.0 3.7347 -0.00602412 0 0.00137846 0.00137385 0.014755 0.999889 uwb: 0.0 848.324 631.097 +imu_odom_: 1691062433.352918980 1.1157 -0.459687 10.1969 -0.0596548 -0.0532632 0.0894822 0.14 0.02 pose: 0.33111163 3.7347 -0.00602412 0 0.00211421 0.00335105 0.0152017 0.999877 uwb: 0.50138018 849.835 629.261 +imu_odom_: 1691062433.375905893 -0.227449 -0.189142 9.57441 -0.0458064 0.0308927 0.056459 0.14 0.02 pose: 0.0 3.7347 -0.00602412 0 0.00211421 0.00335105 0.0152017 0.999877 uwb: 0.0 849.835 629.261 +imu_odom_: 1691062433.391924290 -0.0335188 -0.0837971 10.1227 -0.0575243 0.00213053 0.0916127 0.14 0 pose: 0.47900044 3.74467 -0.00532051 0 0.00273128 0.000140661 0.0160812 0.999867 uwb: 0.49886925 848.878 628.762 +imu_odom_: 1691062433.408980892 -0.107739 -0.347159 9.13627 -0.072438 -0.00745685 0.0884169 0.2 0.05 pose: 0.0 3.74467 -0.00532051 0 0.00273128 0.000140661 0.0160812 0.999867 uwb: 0.0 848.878 628.762 +imu_odom_: 1691062433.433955267 0.536301 -0.0430956 10.2065 -0.0617853 -0.0458064 0.0596548 0.2 0.05 pose: 0.39991313 3.75465 -0.00459949 0 0.00262815 0.00439192 0.0168022 0.999846 uwb: 0.0 848.878 628.762 +imu_odom_: 1691062433.458043085 -0.272939 -0.260968 10.4363 -0.0596548 0.00319579 0.0884169 0.16 0.02 pose: 0.35010552 3.75465 -0.00459949 0 0.00327438 0.00258293 0.0173042 0.999842 uwb: 0.0 848.878 628.762 +imu_odom_: 1691062433.481081616 0.383072 -0.296881 9.72764 -0.0553937 0.0138484 0.0479369 0.16 0.02 pose: 0.0 3.75465 -0.00459949 0 0.00327438 0.00258293 0.0173042 0.999842 uwb: 0.0 848.878 628.762 +imu_odom_: 1691062433.494904618 0.773327 -0.131681 9.98143 -0.0447411 -0.0351537 0.0596548 0.15 0.02 pose: 0.0 3.75465 -0.00459949 0 0.00327438 0.00258293 0.0173042 0.999842 uwb: 0.100052939 848.243 628.132 +imu_odom_: 1691062433.511928557 0.11971 -0.241814 9.94551 -0.0639159 -0.00532632 0.0894822 0.15 0.02 pose: 0.53017871 3.76462 -0.00385053 0 0.000874939 0.00341408 0.0180335 0.999831 uwb: 0.0 848.243 628.132 +imu_odom_: 1691062433.536912265 0.011971 -0.383072 9.81862 -0.0585895 0.0681769 0.0468716 0.16 0.02 pose: 0.0 3.76462 -0.00385053 0 0.000874939 0.00341408 0.0180335 0.999831 uwb: 0.0 848.243 628.132 +imu_odom_: 1691062433.561897430 0.23942 -0.500388 9.43315 -0.0543285 -0.00106526 0.0830906 0.16 0.02 pose: 0.32953390 3.7746 -0.00319025 0 0.000167325 0.00513128 0.0185633 0.999815 uwb: 0.49924836 845.739 628.501 +imu_odom_: 1691062433.575955194 0.708684 -0.517148 9.36372 -0.0735032 -0.0543285 0.0713727 0.18 0.02 pose: 0.0 3.7746 -0.00319025 0 0.000167325 0.00513128 0.0185633 0.999815 uwb: 0.0 845.739 628.501 +imu_odom_: 1691062433.599911487 0.143652 -0.153229 9.90242 -0.0511327 -0.0223706 0.0543285 0.15 0 pose: 0.56028666 3.77992 -0.002832 0 -0.00400705 0.00585881 0.019363 0.999787 uwb: 0.49952541 845.848 627.845 +imu_odom_: 1691062433.624893736 0.122104 -0.361524 10.1059 -0.0649811 0.0351537 0.0628506 0.2 0 pose: 0.0 3.77992 -0.002832 0 -0.00400705 0.00585881 0.019363 0.999787 uwb: 0.0 845.848 627.845 +imu_odom_: 1691062433.647898729 0.636858 0.0143652 9.34696 -0.052198 -0.02024 0.0468716 0.2 0 pose: 0.6969390 3.78457 -0.00251223 0 -0.00351786 0.00630821 0.0194194 0.999785 uwb: 0.50059278 845.008 627.659 +imu_odom_: 1691062433.672890893 0.414197 -0.438139 10.0221 -0.0681769 0.00852212 0.0692422 0.18 0 pose: 0.48063066 3.79455 -0.0018195 0 -0.00365505 0.00929799 0.0198634 0.999753 uwb: 0.0 845.008 627.659 +imu_odom_: 1691062433.696888014 0.806846 -0.342371 10.1706 -0.0319579 -0.0181095 0.0372843 0.2 0 pose: 0.0 3.79455 -0.0018195 0 -0.00365505 0.00929799 0.0198634 0.999753 uwb: 0.49917546 847.292 625.802 +imu_odom_: 1691062433.712876082 0.260968 -0.138864 9.43555 -0.0745685 0.0149137 0.072438 0.2 0 pose: 0.0 3.79455 -0.0018195 0 -0.00365505 0.00929799 0.0198634 0.999753 uwb: 0.0 847.292 625.802 +imu_odom_: 1691062433.738866206 0.361524 -0.0790087 10.1586 -0.0330232 -0.00319579 0.0383495 0.17 0 pose: 0.72914373 3.80452 -0.00111986 0 -0.00382438 0.00402356 0.0203621 0.999777 uwb: 0.0 847.292 625.802 +imu_odom_: 1691062433.752862728 0.244209 -0.141258 9.71806 -0.0692422 0.00745685 0.0532632 0.17 0 pose: 0.0 3.80452 -0.00111986 0 -0.00382438 0.00402356 0.0203621 0.999777 uwb: 0.50058111 848.628 624.397 +imu_odom_: 1691062433.768898332 0.395043 -0.320823 9.9503 -0.0777643 -0.00639159 0.0639159 0.17 0 pose: 0.48960705 3.8145 -0.0004134750 0.000548768 0.00505738 0.0206064 0.999775 uwb: 0.0 848.628 624.397 +imu_odom_: 1691062433.793916451 0.732626 -0.454898 10.2113 -0.0426106 -0.0223706 0.0330232 0.17 0.02 pose: 0.0 3.8145 -0.0004134750 0.000548768 0.00505738 0.0206064 0.999775 uwb: 0.49875259 847.584 623.703 +imu_odom_: 1691062433.818971316 0.567426 -0.332794 10.1634 -0.0660464 -0.00852212 0.0596548 0.17 0.02 pose: 0.7015176 3.8145 -0.0004134750 -7.72448e-050.00461045 0.0206897 0.999775 uwb: 0.0 847.584 623.703 +imu_odom_: 1691062433.835847691 0.452504 -0.189142 9.98143 -0.0245011 0.00958738 0.036219 0.24 0 pose: 0.0 3.8145 -0.0004134750 -7.72448e-050.00461045 0.0206897 0.999775 uwb: 0.0 847.584 623.703 +imu_odom_: 1691062433.860904014 0.579397 -0.0981623 10.058 -0.0628506 0.0127832 0.0649811 0.24 0 pose: 0.75969787 3.82447 0.00029983 0 -0.00108002 -0.0012992 0.0209221 0.99978 uwb: 0.50113230 848.263 622.542 +imu_odom_: 1691062433.885846310 1.67834 -0.0694318 9.11233 -0.0468716 0.0479369 0.0191748 0.17 0.02 pose: 0.0 3.82447 0.00029983 0 -0.00108002 -0.0012992 0.0209221 0.99978 uwb: 0.0 848.263 622.542 +imu_odom_: 1691062433.899892118 -0.203507 0.100556 11.0971 -0.0490022 0.116114 0.0671117 0.17 0.02 pose: 0.32035045 3.83445 0.00101972 0 0.000672383 -0.00340849 0.0211647 0.99977 uwb: 0.49933002 847.6 621.846 +imu_odom_: 1691062433.916056330 0.371101 -0.445322 8.7556 -0.052198 -0.0213053 0.0458064 0.17 0 pose: 0.0 3.83445 0.00101972 0 0.000672383 -0.00340849 0.0211647 0.99977 uwb: 0.0 847.6 621.846 +imu_odom_: 1691062433.940942341 1.21386 -0.392649 9.23204 -0.0639159 -0.0958738 0.0649811 0.17 0 pose: 0.48173594 3.84442 0.00174238 0 -1.28184e-05-0.00227125 0.0212263 0.999772 uwb: 0.49982579 847.98 620.881 +imu_odom_: 1691062433.965858973 1.17076 -0.390255 9.79468 -0.0639159 0.0138484 0.056459 0.19 0.02 pose: 0.6890650 3.84442 0.00174238 0 -0.000175975-0.00326272 0.021314 0.999767 uwb: 0.0 847.98 620.881 +imu_odom_: 1691062433.981985566 0.445322 -0.227449 10.4052 -0.0447411 -0.0223706 0.0426106 0.18 0 pose: 0.0 3.84442 0.00174238 0 -0.000175975-0.00326272 0.021314 0.999767 uwb: 0.0 847.98 620.881 +imu_odom_: 1691062433.996004543 0.366313 -0.0814029 9.67976 -0.0756338 -0.0447411 0.0319579 0.17 -0.02 pose: 0.48930667 3.85439 0.00247024 0 -0.00115905 -0.00751956 0.0217635 0.999734 uwb: 0.49949041 845.338 621.012 +imu_odom_: 1691062434.19915350 0.306458 -0.217872 10.07 -0.0639159 -0.0511327 0.0468716 0.17 -0.02 pose: 0.0 3.85439 0.00247024 0 -0.00115905 -0.00751956 0.0217635 0.999734 uwb: 0.0 845.338 621.012 +imu_odom_: 1691062434.47006686 0.914585 -0.162806 10.0173 -0.0713727 -0.0127832 0.0553937 0.22 0.02 pose: 0.31044084 3.85439 0.00247024 0 -0.000212066-0.0053262 0.0217461 0.999749 uwb: 0.50169243 845.977 619.737 +imu_odom_: 1691062434.71874629 0.991199 0.122104 10.4986 -0.0607201 -0.015979 0.0511327 0.22 0.02 pose: 0.0 3.85439 0.00247024 0 -0.000212066-0.0053262 0.0217461 0.999749 uwb: 0.0 845.977 619.737 +imu_odom_: 1691062434.88880496 0.138864 -0.435745 9.73004 -0.092678 -0.0383495 0.0671117 0.23 0 pose: 0.68952898 3.87142 0.00372583 0 0.00141275 -0.00891412 0.0221507 0.999714 uwb: 0.0 845.977 619.737 +imu_odom_: 1691062434.113966871 0.349553 -0.277727 9.61511 -0.0617853 -0.00745685 0.04048 0.23 0 pose: 0.6958602 3.87434 0.00394323 0 0.000931206 -0.00843648 0.0222476 0.999716 uwb: 0.49879659 845.309 619.044 +imu_odom_: 1691062434.139908598 0.428562 -0.248997 10.1155 -0.0820254 0.0181095 0.0649811 0.19 0.02 pose: 0.35133640 3.88156 0.00448182 0 -0.000663038-0.00541439 0.0224042 0.999734 uwb: 0.0 845.309 619.044 +imu_odom_: 1691062434.163844197 0.40462 -0.189142 9.93594 -0.0468716 0.0138484 0.0287621 0.2 0 pose: 0.0 3.88156 0.00448182 0 -0.000663038-0.00541439 0.0224042 0.999734 uwb: 0.50003020 847.634 617.121 +imu_odom_: 1691062434.181823820 0.155623 -0.423774 9.65821 -0.0830906 0.00426106 0.0607201 0.2 0 pose: 0.49877326 3.89119 0.00520525 0 0.00025435 -0.00082117 0.0226053 0.999744 uwb: 0.0 847.634 617.121 +imu_odom_: 1691062434.205834368 0.603339 -0.186748 10.0533 -0.0276969 -0.00319579 0.0394148 0.18 -0.02 pose: 0.0 3.89119 0.00520525 0 0.00025435 -0.00082117 0.0226053 0.999744 uwb: 0.50060179 848.327 615.935 +imu_odom_: 1691062434.229827710 0.773327 -0.124498 9.84256 -0.0575243 0.00213053 0.0468716 0.18 -0.02 pose: 0.41990171 3.89428 0.0054383 0 -0.00022111 -0.00168381 0.0227911 0.999739 uwb: 0.0 848.327 615.935 +imu_odom_: 1691062434.255945874 0.718261 -0.227449 9.89045 -0.0468716 -0.015979 0.0500674 0.19 0 pose: 0.0 3.89428 0.0054383 0 -0.00022111 -0.00168381 0.0227911 0.999739 uwb: 0.49935361 850.11 614.555 +imu_odom_: 1691062434.279817606 0.169988 -0.0454898 9.85932 -0.0585895 -0.02024 0.0436758 0.19 0 pose: 0.31026894 3.90426 0.00619395 0 0.00044365 -0.00464723 0.022914 0.999727 uwb: 0.0 850.11 614.555 +imu_odom_: 1691062434.296982704 0.409408 -0.167594 10.0006 -0.0223706 -0.0308927 0.0447411 0.25 -0.02 pose: 0.0 3.90426 0.00619395 0 0.00044365 -0.00464723 0.022914 0.999727 uwb: 0.50213869 851.066 613.025 +imu_odom_: 1691062434.312967281 0.47884 -0.107739 10.3094 -0.056459 -0.0117179 0.0575243 0.25 -0.02 pose: 0.49974440 3.91423 0.00695375 0 0.00159474 -0.00406481 0.023074 0.999724 uwb: 0.0 851.066 613.025 +imu_odom_: 1691062434.339889763 0.483629 -0.131681 9.991 -0.0543285 0.00639159 0.0394148 0.25 -0.02 pose: 0.0 3.91423 0.00695375 0 0.00159474 -0.00406481 0.023074 0.999724 uwb: 0.0 851.066 613.025 +imu_odom_: 1691062434.364999176 0.272939 -0.301669 9.98861 -0.056459 -0.0127832 0.0426106 0.25 -0.02 pose: 0.33009400 3.91423 0.00695375 0 0.00414276 -0.00382749 0.0232359 0.999714 uwb: 0.49814334 852.177 611.869 +imu_odom_: 1691062434.381937677 0.0933739 -0.1652 9.98143 -0.0468716 -0.0308927 0.036219 0.23 0 pose: 0.0 3.91423 0.00695375 0 0.00414276 -0.00382749 0.0232359 0.999714 uwb: 0.0 852.177 611.869 +imu_odom_: 1691062434.406804745 0.797269 -0.241814 9.83299 -0.0543285 -0.00426106 0.0468716 0.23 0 pose: 0.62092575 3.92975 0.00814282 0 0.0039709 -0.00170322 0.023233 0.999721 uwb: 0.49921946 850.221 611.839 +imu_odom_: 1691062434.432815880 0.474052 -0.107739 10.0317 -0.0223706 -0.00213053 0.0298274 0.23 0 pose: 0.7901154 3.93417 0.00848121 0 0.00377375 -0.00246759 0.0232652 0.999719 uwb: 0.0 850.221 611.839 +imu_odom_: 1691062434.458055361 0.335188 -0.225055 9.80904 -0.0553937 -0.02024 0.0340885 0.23 0 pose: 0.0 3.93417 0.00848121 0 0.00377375 -0.00246759 0.0232652 0.999719 uwb: 0.49950817 850.722 611.117 +imu_odom_: 1691062434.474941368 0.675165 -0.0766145 9.73004 -0.0245011 -0.0149137 0.0351537 0.21 0 pose: 0.0 3.93417 0.00848121 0 0.00377375 -0.00246759 0.0232652 0.999719 uwb: 0.0 850.722 611.117 +imu_odom_: 1691062434.490832915 0.363919 -0.169988 9.85453 -0.0511327 0.00745685 0.0575243 0.21 0 pose: 0.50016142 3.94414 0.00924556 0 0.00576691 -0.00286 0.0231752 0.999711 uwb: 0.49939153 852.162 609.787 +imu_odom_: 1691062434.516858340 0.179565 -0.0814029 10.0724 -0.0394148 0.00213053 0.0351537 0.25 0 pose: 0.0 3.94414 0.00924556 0 0.00576691 -0.00286 0.0231752 0.999711 uwb: 0.0 852.162 609.787 +imu_odom_: 1691062434.541937132 0.191536 -0.268151 9.29669 -0.072438 0.0191748 0.0532632 0.25 0 pose: 0.58089942 3.95411 0.0100068 0 0.00459545 -0.00122267 0.0232097 0.999719 uwb: 0.49960441 853.31 608.701 +imu_odom_: 1691062434.566809449 0.114922 -0.201113 9.59835 -0.0308927 0.00745685 0.0245011 0.18 0 pose: 0.0 3.95411 0.0100068 0 0.00459545 -0.00122267 0.0232097 0.999719 uwb: 0.0 853.31 608.701 +imu_odom_: 1691062434.588925855 0.107739 -0.335188 9.59596 -0.0639159 0.0340885 0.0479369 0.18 0 pose: 0.43992217 3.96128 0.0105556 0 0.0032807 0.00299469 0.0233217 0.999718 uwb: 0.0 853.31 608.701 +imu_odom_: 1691062434.614927659 0.337582 -0.158017 9.88326 -0.0553937 0.00852212 0.0458064 0.19 -0.02 pose: 0.7027428 3.96408 0.0107709 0 0.003202 0.00372135 0.0232658 0.999717 uwb: 0.50008560 854.319 607.221 +imu_odom_: 1691062434.631921569 0.557849 0.00957681 9.94551 -0.0639159 -0.0223706 0.052198 0.19 -0.02 pose: 0.0 3.96408 0.0107709 0 0.003202 0.00372135 0.0232658 0.999717 uwb: 0.0 854.319 607.221 +imu_odom_: 1691062434.647852486 0.402226 -0.339977 9.81623 -0.0639159 0.0639159 0.0181095 0.2 0 pose: 0.0 3.96408 0.0107709 0 0.003202 0.00372135 0.0232658 0.999717 uwb: 0.50019934 855.311 605.677 +imu_odom_: 1691062434.674825420 0.225055 -0.335188 10.1921 -0.0607201 -0.015979 0.0543285 0.2 0 pose: 0.47998349 3.97405 0.0115353 0 0.00161298 0.00685759 0.0232328 0.999705 uwb: 0.0 855.311 605.677 +imu_odom_: 1691062434.699777352 0.414197 -0.0766145 10.0341 -0.0511327 -0.0447411 0.0426106 0.19 0 pose: 0.77862511 3.98479 0.0023308 0 -0.0007524830.00499569 0.023427 0.999713 uwb: 0.0 855.311 605.677 +imu_odom_: 1691062434.716761639 0.699107 -0.280122 9.93594 -0.0660464 0.0330232 0.0490022 0.19 0 pose: 0.0 3.98479 0.0023308 0 -0.0007524830.00499569 0.023427 0.999713 uwb: 0.0 855.311 605.677 +imu_odom_: 1691062434.741768982 0.0574608 0.251391 9.88566 -0.0415453 -0.0255663 0.0351537 0.19 0 pose: 0.8010807 3.98479 0.0023308 0 -7.43923e-050.00437511 0.0234422 0.999716 uwb: 0.100066698 853.624 605.348 +imu_odom_: 1691062434.766738704 0.538695 -0.131681 9.53371 -0.0692422 0.00639159 0.052198 0.19 0 pose: 0.0 3.98479 0.0023308 0 -7.43923e-050.00437511 0.0234422 0.999716 uwb: 0.0 853.624 605.348 +imu_odom_: 1691062434.780805224 0.593762 -0.31364 9.39724 -0.0468716 0.0276969 0.0170442 0.19 0 pose: 0.0 3.98479 0.0023308 0 -7.43923e-050.00437511 0.0234422 0.999716 uwb: 0.0 853.624 605.348 +imu_odom_: 1691062434.796772303 0.536301 -0.265756 10.2161 -0.0607201 -0.0213053 0.0383495 0.19 0 pose: 0.41978797 3.99476 0.00309894 0 0.00157601 0.00211569 0.0235387 0.999719 uwb: 0.50078552 852.203 604.698 +imu_odom_: 1691062434.820804432 0.790087 -0.414197 9.84017 -0.0553937 -0.0287621 0.0383495 0.27 0 pose: 0.0 3.99476 0.00309894 0 0.00157601 0.00211569 0.0235387 0.999719 uwb: 0.0 852.203 604.698 +imu_odom_: 1691062434.837863376 0.373495 -0.0574608 9.93833 -0.0351537 0.0500674 0.0287621 0.27 0 pose: 0.78971583 4.00473 0.00386906 0 0.00109277 -0.00238859 0.023505 0.99972 uwb: 0.0 852.203 604.698 +imu_odom_: 1691062434.861880049 0.548272 -0.107739 9.65103 -0.0617853 -0.0298274 0.036219 0.18 0 pose: 0.0 4.00473 0.00386906 0 0.00109277 -0.00238859 0.023505 0.99972 uwb: 0.50031016 854.353 603.074 +imu_odom_: 1691062434.885772487 0.363919 -0.158017 9.79468 -0.0426106 0.0170442 0.0276969 0.18 0 pose: 0.58093442 4.02179 0.00518539 0 0.00319859 -0.00473131 0.0233586 0.999711 uwb: 0.0 854.353 603.074 +imu_odom_: 1691062434.901765812 0.344765 -0.308852 9.991 -0.0703074 -0.036219 0.052198 0.19 0 pose: 0.0 4.02179 0.00518539 0 0.00319859 -0.00473131 0.0233586 0.999711 uwb: 0.49975315 852.962 602.509 +imu_odom_: 1691062434.926718620 0.42138 -0.205901 10.0221 -0.0394148 0.0127832 0.0436758 0.19 0 pose: 0.6913400 4.02467 0.00540681 0 0.00320847 -0.00396542 0.023316 0.999715 uwb: 0.0 852.962 602.509 +imu_odom_: 1691062434.940768809 0.92895 -0.265756 9.71088 -0.0585895 -0.0117179 0.0596548 0.19 0 pose: 0.0 4.02467 0.00540681 0 0.00320847 -0.00396542 0.023316 0.999715 uwb: 0.49913780 855.121 600.866 +imu_odom_: 1691062434.956721889 0.605733 -0.311246 10.0102 -0.0553937 0.0607201 0.0340885 0.17 -0.02 pose: 0.71975360 4.03464 0.00617283 0 -0.000428578-0.00169939 0.0235052 0.999722 uwb: 0.0 855.121 600.866 +imu_odom_: 1691062434.973839452 0.258574 -0.143652 9.90721 -0.0308927 0.00639159 0.0383495 0.17 -0.02 pose: 0.0 4.03464 0.00617283 0 -0.000428578-0.00169939 0.0235052 0.999722 uwb: 0.0 855.121 600.866 +imu_odom_: 1691062434.990827530 0.110133 -0.244209 9.96227 -0.0639159 -0.0234358 0.0671117 0.18 0 pose: 0.0 4.03464 0.00617283 0 -0.000428578-0.00169939 0.0235052 0.999722 uwb: 0.49980272 855.15 599.856 +imu_odom_: 1691062435.6792569 0.167594 -0.213084 9.77074 -0.056459 -0.00426106 0.0372843 0.18 0 pose: 0.40082614 4.04461 0.00694185 0 -0.000322302-0.0003301760.0235483 0.999723 uwb: 0.0 855.15 599.856 +imu_odom_: 1691062435.31784176 0.347159 -0.215478 10.1227 -0.0671117 -0.0372843 0.0628506 0.25 0.02 pose: 0.0 4.04461 0.00694185 0 -0.000322302-0.0003301760.0235483 0.999723 uwb: 0.0 855.15 599.856 +imu_odom_: 1691062435.45915738 0.471658 -0.565032 9.97185 -0.0660464 0.00319579 0.0319579 0.18 0 pose: 0.33001240 4.04461 0.00694185 0 -0.0001510840.00267243 0.0237515 0.999714 uwb: 0.50104527 855.49 598.608 +imu_odom_: 1691062435.61994811 0.629675 -0.105345 10.5177 -0.0394148 -0.0276969 0.0383495 0.17 0.02 pose: 0.0 4.04461 0.00694185 0 -0.0001510840.00267243 0.0237515 0.999714 uwb: 0.0 855.49 598.608 +imu_odom_: 1691062435.86718993 0.397437 -0.220267 10.2568 -0.0617853 -0.0575243 0.0415453 0.17 0.02 pose: 0.48142148 4.06023 0.00815483 0 -1.0619e-05 0.00180305 0.0238955 0.999713 uwb: 0.0 855.49 598.608 +imu_odom_: 1691062435.100765690 0.725443 -0.201113 9.47864 -0.052198 -0.0266316 0.0383495 0.18 0 pose: 0.0 4.06023 0.00815483 0 -1.0619e-05 0.00180305 0.0238955 0.999713 uwb: 0.49896891 854.222 598.391 +imu_odom_: 1691062435.124859074 0.866701 -0.122104 10.1323 -0.0809601 0.0106526 0.0543285 0.18 0 pose: 0.6879574 4.06455 0.00849169 0 -0.0001501370.00094226 0.0239021 0.999714 uwb: 0.0 854.222 598.391 +imu_odom_: 1691062435.148732276 0.845153 0.0167594 10.7284 -0.0596548 -0.00958738 0.0372843 0.23 0 pose: 0.0 4.06455 0.00849169 0 -0.0001501370.00094226 0.0239021 0.999714 uwb: 0.49878811 855.292 596.955 +imu_odom_: 1691062435.173706094 0.562637 -0.0311246 10.1083 -0.0809601 -0.00852212 0.0543285 0.23 0 pose: 0.79857891 4.07452 0.00927091 0 0.00134423 -0.00698821 0.0240484 0.999685 uwb: 0.0 855.292 596.955 +imu_odom_: 1691062435.197775855 0.363919 -0.0454898 9.84975 -0.0617853 0.0468716 0.0426106 0.18 0.02 pose: 0.0 4.07452 0.00927091 0 0.00134423 -0.00698821 0.0240484 0.999685 uwb: 0.50045915 854.566 596.042 +imu_odom_: 1691062435.214783190 0.332794 -0.225055 9.99579 -0.0830906 0.00958738 0.0607201 0.18 0.02 pose: 0.32090488 4.08449 0.0100524 0 0.00382363 -0.00648008 0.0242196 0.999678 uwb: 0.0 854.566 596.042 +imu_odom_: 1691062435.239675351 0.517148 -0.217872 10.0748 -0.0500674 -0.00106526 0.0266316 0.2 0 pose: 0.0 4.08449 0.0100524 0 0.00382363 -0.00648008 0.0242196 0.999678 uwb: 0.49946761 853.886 595.263 +imu_odom_: 1691062435.263966169 0.241814 -0.244209 9.76595 -0.0553937 -0.0426106 0.0490022 0.2 0 pose: 0.41943532 4.08449 0.0100524 0 0.00280204 -0.00349299 0.0243645 0.999693 uwb: 0.0 853.886 595.263 +imu_odom_: 1691062435.287975272 0.299275 -0.316035 10.0245 -0.0436758 -0.0308927 0.0532632 0.18 0 pose: 0.41199873 4.09446 0.0108388 0 0.000932275 -0.00262673 0.0243758 0.999699 uwb: 0.0 853.886 595.263 +imu_odom_: 1691062435.303846120 0.893037 -0.105345 9.9503 -0.056459 -0.0276969 0.0479369 0.18 0 pose: 0.0 4.09446 0.0108388 0 0.000932275 -0.00262673 0.0243758 0.999699 uwb: 0.49982339 852.498 594.741 +imu_odom_: 1691062435.330720206 0.80924 -0.0263362 10.3669 -0.0458064 -0.00639159 0.0479369 0.25 -0.02 pose: 0.6774588 4.09446 0.0108388 0 0.00055141 -0.00218646 0.0244228 0.999699 uwb: 0.0 852.498 594.741 +imu_odom_: 1691062435.346688167 0.186748 -0.411803 9.63187 -0.0745685 -0.00958738 0.056459 0.25 -0.02 pose: 0.0 4.09446 0.0108388 0 0.00055141 -0.00218646 0.0244228 0.999699 uwb: 0.50040374 853.2 593.361 +imu_odom_: 1691062435.370797883 0.246603 -0.411803 9.93594 -0.0426106 -0.0394148 0.0383495 0.25 0 pose: 0.40201328 4.10443 0.0116264 0 0.000391285 -0.00340384 0.0246363 0.999691 uwb: 0.0 853.2 593.361 +imu_odom_: 1691062435.395674879 0.790087 -0.248997 10.1418 -0.0628506 0.0106526 0.0532632 0.25 0 pose: 0.0 4.10443 0.0116264 0 0.000391285 -0.00340384 0.0246363 0.999691 uwb: 0.50088785 851.096 593.1 +imu_odom_: 1691062435.419662109 0.474052 -0.158017 10.2113 -0.0468716 -0.0351537 0.0415453 0.18 0 pose: 0.42831548 4.11439 0.0124183 0 -6.34763e-05-0.00350368 0.0248508 0.999685 uwb: 0.0 851.096 593.1 +imu_odom_: 1691062435.443741203 0.533907 -0.186748 10.1466 -0.0628506 -0.056459 0.0447411 0.23 0 pose: 0.0 4.11439 0.0124183 0 -6.34763e-05-0.00350368 0.0248508 0.999685 uwb: 0.49826026 851.5 592.002 +imu_odom_: 1691062435.468732810 0.509965 -0.0766145 10.0461 -0.0426106 -0.00319579 0.04048 0.23 0 pose: 0.48927802 4.12436 0.0132155 0 -0.000515146-0.00473029 0.0250158 0.999676 uwb: 0.0 851.5 592.002 +imu_odom_: 1691062435.484829381 0.679953 -0.289698 9.83538 -0.0596548 0.0191748 0.0479369 0.23 0 pose: 0.0 4.12436 0.0132155 0 -0.000515146-0.00473029 0.0250158 0.999676 uwb: 0.0 851.5 592.002 +imu_odom_: 1691062435.501781889 0.167594 -0.299275 10.0461 -0.0213053 -0.00426106 0.0213053 0.18 0 pose: 0.48021413 4.13433 0.0140154 0 0.00223001 -0.00717411 0.0250857 0.999657 uwb: 0.50134862 850.076 591.421 +imu_odom_: 1691062435.525709627 0.454898 -0.387861 9.93833 -0.0575243 -0.0170442 0.0511327 0.18 0 pose: 0.0 4.13433 0.0140154 0 0.00223001 -0.00717411 0.0250857 0.999657 uwb: 0.0 850.076 591.421 +imu_odom_: 1691062435.542663885 0.392649 -0.146046 10.1011 -0.0234358 0.0255663 0.0287621 0.2 -0.05 pose: 0.0 4.13433 0.0140154 0 0.00223001 -0.00717411 0.0250857 0.999657 uwb: 0.50002171 848.616 590.756 +imu_odom_: 1691062435.566642658 0.531513 -0.366313 9.83059 -0.0511327 -0.00852212 0.0596548 0.2 -0.05 pose: 0.40947029 4.13433 0.0140154 0 0.00273145 -0.00682239 0.0250993 0.999658 uwb: 0.0 848.616 590.756 +imu_odom_: 1691062435.591688217 0.392649 -0.0191536 9.90481 -0.0308927 0.00958738 0.0372843 0.18 0 pose: 0.74972781 4.15427 0.0156178 0 -0.000942277-0.00450341 0.0253135 0.999669 uwb: 0.49994004 847.85 589.787 +imu_odom_: 1691062435.614640448 0.402226 -0.153229 9.8282 -0.0798948 -0.0117179 0.0596548 0.18 0 pose: 0.0 4.15427 0.0156178 0 -0.000942277-0.00450341 0.0253135 0.999669 uwb: 0.0 847.85 589.787 +imu_odom_: 1691062435.630755101 0.37589 -0.251391 9.64384 -0.0639159 0.0340885 0.0351537 0.2 0.02 pose: 0.7052511 4.15427 0.0156178 0 -0.000222471-0.00414467 0.0253032 0.999671 uwb: 0.0 847.85 589.787 +imu_odom_: 1691062435.655640846 0.423774 -0.275333 10.0102 -0.0585895 0.00532632 0.056459 0.2 0.02 pose: 0.0 4.15427 0.0156178 0 -0.000222471-0.00414467 0.0253032 0.999671 uwb: 0.49739995 847.173 589.06 +imu_odom_: 1691062435.669638841 0.153229 -0.474052 9.7444 -0.0777643 -0.0372843 0.0426106 0.25 -0.02 pose: 0.0 4.15427 0.0156178 0 -0.000222471-0.00414467 0.0253032 0.999671 uwb: 0.0 847.173 589.06 +imu_odom_: 1691062435.685702749 0.751779 0.00957681 10.0796 -0.0553937 -0.00852212 0.0394148 0.25 -0.02 pose: 0.48961340 4.16423 0.0164243 0 0.00157339 -0.0006625220.0254822 0.999674 uwb: 0.0 847.173 589.06 +imu_odom_: 1691062435.710643321 0.543484 -0.0837971 9.97424 -0.0585895 -0.0340885 0.0532632 0.19 0 pose: 0.0 4.16423 0.0164243 0 0.00157339 -0.0006625220.0254822 0.999674 uwb: 0.50104824 845.808 588.692 +imu_odom_: 1691062435.726644820 0.588974 -0.282516 9.76355 -0.0575243 0.0596548 0.0149137 0.19 0 pose: 0.70002514 4.1742 0.0172331 0 -0.00111447 -0.00158537 0.0257411 0.999667 uwb: 0.0 845.808 588.692 +imu_odom_: 1691062435.743748393 0.459687 -0.514753 9.63187 -0.0607201 -0.0351537 0.0575243 0.19 0 pose: 0.0 4.1742 0.0172331 0 -0.00111447 -0.00158537 0.0257411 0.999667 uwb: 0.50009170 847.295 587.185 +imu_odom_: 1691062435.760671738 0.347159 -0.0861913 10.3717 -0.0607201 0.0127832 0.0447411 0.18 0 pose: 0.0 4.1742 0.0172331 0 -0.00111447 -0.00158537 0.0257411 0.999667 uwb: 0.0 847.295 587.185 +imu_odom_: 1691062435.785749377 0.136469 -0.0981623 9.84496 -0.0649811 0.0394148 0.0436758 0.18 0 pose: 0.51089370 4.18417 0.0180471 0 -0.00218183 -0.00399997 0.0258262 0.999656 uwb: 0.0 847.295 587.185 +imu_odom_: 1691062435.810690823 0.251391 -0.574608 9.34457 -0.056459 0.00426106 0.0351537 0.23 0 pose: 0.6963856 4.18417 0.0180471 0 -0.0016638 -0.00349817 0.0258429 0.999659 uwb: 0.0 847.295 587.185 +imu_odom_: 1691062435.824817136 0.0287304 -0.0814029 10.1299 -0.0436758 0.00213053 0.04048 0.23 0 pose: 0.0 4.18417 0.0180471 0 -0.0016638 -0.00349817 0.0258429 0.999659 uwb: 0.0 847.295 587.185 +imu_odom_: 1691062435.839819216 0.699107 -0.368707 10.1011 -0.0639159 -0.0649811 0.056459 0.23 0 pose: 0.0 4.18417 0.0180471 0 -0.0016638 -0.00349817 0.0258429 0.999659 uwb: 0.0 847.295 587.185 +imu_odom_: 1691062435.856773473 0.577003 -0.198719 9.14824 -0.0479369 0.00532632 0.0223706 0.24 0 pose: 0.81068159 4.2041 0.0196802 0 -0.00201452 0.00155143 0.0259289 0.999661 uwb: 0.99971678 846.567 586.327 +imu_odom_: 1691062435.880655717 0.258574 -0.318429 9.40203 -0.0894822 0.0287621 0.0479369 0.24 0 pose: 0.0 4.2041 0.0196802 0 -0.00201452 0.00155143 0.0259289 0.999661 uwb: 0.0 846.567 586.327 +imu_odom_: 1691062435.904628948 0.328006 -0.19393 9.96467 -0.0500674 -0.0276969 0.0298274 0.21 -0.02 pose: 0.32981713 4.21407 0.0204972 0 -0.00216692 -0.0001357420.0258804 0.999663 uwb: 0.50008878 845.927 585.711 +imu_odom_: 1691062435.927739828 0.591368 -0.1652 10.3501 -0.0841559 0 0.0415453 0.18 0 pose: 0.39866827 4.21407 0.0204972 0 -0.0009645550.00244795 0.0258399 0.999663 uwb: 0.0 845.927 585.711 +imu_odom_: 1691062435.952628197 0.636858 -0.136469 9.93115 -0.04048 0.00319579 0.0213053 0.17 -0.02 pose: 0.7050179 4.21407 0.0204972 0 -0.0008561750.00178721 0.025847 0.999664 uwb: 0.50007420 845.706 585.117 +imu_odom_: 1691062435.975632340 0.37589 -0.23942 9.52413 -0.056459 -0.0191748 0.0511327 0.17 -0.02 pose: 0.40949070 4.22403 0.0213132 0 0.000508538 -0.00192764 0.0256344 0.999669 uwb: 0.0 845.706 585.117 +imu_odom_: 1691062435.992613719 0.486023 -0.260968 9.54329 -0.0479369 -0.0330232 0.0372843 0.21 0 pose: 0.0 4.22403 0.0213132 0 0.000508538 -0.00192764 0.0256344 0.999669 uwb: 0.0 845.706 585.117 +imu_odom_: 1691062436.8602973 0.773327 -0.0861913 10.2017 -0.0607201 0.00213053 0.0607201 0.21 0 pose: 0.0 4.22403 0.0213132 0 0.000508538 -0.00192764 0.0256344 0.999669 uwb: 0.0 845.706 585.117 +imu_odom_: 1691062436.32597214 1.16837 -0.169988 10.1873 -0.0468716 0.015979 0.0308927 0.25 0 pose: 0.48059034 4.234 0.0221259 0 -0.00084029 -0.00261378 0.0258317 0.999663 uwb: 0.0 845.706 585.117 +imu_odom_: 1691062436.57617706 0.225055 0.0550666 10.0173 -0.056459 0 0.0575243 0.25 0 pose: 0.0 4.234 0.0221259 0 -0.00084029 -0.00261378 0.0258317 0.999663 uwb: 0.99965281 843.59 584.98 +imu_odom_: 1691062436.81800050 0.117316 -0.174777 9.87848 -0.052198 -0.0106526 0.0340885 0.18 0.02 pose: 0.39008868 4.24397 0.0229416 0 0.000315128 -0.00490583 0.0258686 0.999653 uwb: 0.0 843.59 584.98 +imu_odom_: 1691062436.105617271 0.440533 -0.232238 10.1586 -0.0671117 -0.0149137 0.0575243 0.18 0.02 pose: 0.42103951 4.25104 0.0235213 0 0.00157413 -0.00120199 0.025953 0.999661 uwb: 0.50088519 843.927 583.673 +imu_odom_: 1691062436.130724669 0.351948 -0.112527 9.68694 -0.0372843 -0.0127832 0.0266316 0.23 0 pose: 0.0 4.25104 0.0235213 0 0.00157413 -0.00120199 0.025953 0.999661 uwb: 0.0 843.927 583.673 +imu_odom_: 1691062436.146606608 -0.0933739 -0.409408 10.003 -0.0617853 -0.00745685 0.0639159 0.23 0 pose: 0.48924619 4.26171 0.0171672 0 0.00135213 -0.0005356140.0260055 0.999661 uwb: 0.49898084 843.556 582.683 +imu_odom_: 1691062436.161579533 0.337582 -0.268151 9.97185 -0.0628506 -0.0266316 0.0415453 0.18 0 pose: 0.0 4.26171 0.0171672 0 0.00135213 -0.0005356140.0260055 0.999661 uwb: 0.0 843.556 582.683 +imu_odom_: 1691062436.185744378 0.244209 -0.114922 9.98382 -0.0436758 -0.0213053 0.0383495 0.18 0 pose: 0.0 4.26171 0.0171672 0 0.00135213 -0.0005356140.0260055 0.999661 uwb: 0.0 843.556 582.683 +imu_odom_: 1691062436.208688165 0.11971 -0.184354 9.58878 -0.0596548 -0.0245011 0.0468716 0.21 0.02 pose: 0.37894839 4.26472 0.0146133 0 -0.0001626120.00204632 0.0262067 0.999654 uwb: 0.50069855 844.993 580.969 +imu_odom_: 1691062436.233699907 0.47884 -0.205901 9.83777 -0.0692422 -0.0149137 0.0447411 0.21 0.02 pose: 0.40068657 4.27469 0.0154365 0 0.00102689 0.00528461 0.0262796 0.99964 uwb: 0.0 844.993 580.969 +imu_odom_: 1691062436.255564075 0.835576 -0.31364 9.90481 -0.0735032 -0.00319579 0.0426106 0.18 0 pose: 0.7071763 4.27469 0.0154365 0 0.000942199 0.00453874 0.0262987 0.999643 uwb: 0.49993447 844.732 580.263 +imu_odom_: 1691062436.271630617 0.600945 -0.0526724 9.8665 -0.052198 0.0330232 0.04048 0.18 0 pose: 0.0 4.27469 0.0154365 0 0.000942199 0.00453874 0.0262987 0.999643 uwb: 0.0 844.732 580.263 +imu_odom_: 1691062436.296563036 0.1652 -0.296881 9.78989 -0.0873517 0.0106526 0.0553937 0.23 0 pose: 0.45895447 4.28465 0.0162618 0 0.000472652 0.00015378 0.0263841 0.999652 uwb: 0.50051190 845.921 578.974 +imu_odom_: 1691062436.318614431 0.457293 -0.0981623 10.2137 -0.0426106 0.00639159 0.0319579 0.23 0 pose: 0.0 4.28465 0.0162618 0 0.000472652 0.00015378 0.0263841 0.999652 uwb: 0.0 845.921 578.974 +imu_odom_: 1691062436.343564348 0.481235 -0.220267 9.63427 -0.0585895 -0.0117179 0.0394148 0.18 -0.02 pose: 0.40930427 4.29462 0.0170895 0 0.000205957 0.00169127 0.0265618 0.999646 uwb: 0.50124098 846.271 577.646 +imu_odom_: 1691062436.360544570 0.0335188 -0.244209 10.2137 -0.0394148 -0.00958738 0.0479369 0.18 -0.02 pose: 0.0 4.29462 0.0170895 0 0.000205957 0.00169127 0.0265618 0.999646 uwb: 0.0 846.271 577.646 +imu_odom_: 1691062436.376578740 0.433351 -0.105345 10.319 -0.0436758 -0.0660464 0.0468716 0.18 0 pose: 0.47994316 4.30458 0.0179195 0 0.000672727 -0.0009366850.0265327 0.999647 uwb: 0.0 846.271 577.646 +imu_odom_: 1691062436.401710635 0.481235 -0.0215478 10.2615 -0.0287621 -0.0447411 0.0383495 0.18 0 pose: 0.0 4.30458 0.0179195 0 0.000672727 -0.0009366850.0265327 0.999647 uwb: 0.49768600 844.865 577.234 +imu_odom_: 1691062436.426743083 0.452504 -0.191536 9.67736 -0.0426106 0.00639159 0.0458064 0.19 0 pose: 0.34057556 4.30458 0.0179195 0 0.00313782 -0.0013445 0.026627 0.99964 uwb: 0.0 844.865 577.234 +imu_odom_: 1691062436.451546018 0.371101 0.0335188 9.34936 -0.0330232 0.0170442 0.0383495 0.19 0 pose: 0.0 4.30458 0.0179195 0 0.00313782 -0.0013445 0.026627 0.99964 uwb: 0.49964284 844.952 576.326 +imu_odom_: 1691062436.475546384 0.275333 0.0646434 9.87369 -0.056459 -0.0170442 0.0479369 0.2 0 pose: 0.49082683 4.31455 0.0187511 0 0.00335637 -0.00198005 0.0266952 0.999636 uwb: 0.0 844.952 576.326 +imu_odom_: 1691062436.499575038 0.399832 0.0622492 10.1514 -0.0585895 -0.0138484 0.0436758 0.18 0.02 pose: 0.41826027 4.32452 0.019584 0 0.00697625 0.000344138 0.0267682 0.999617 uwb: 0.50060231 846.403 574.548 +imu_odom_: 1691062436.524596988 0.445322 -0.253785 9.83059 -0.0703074 0.0106526 0.0276969 0.18 0.02 pose: 0.0 4.32452 0.019584 0 0.00697625 0.000344138 0.0267682 0.999617 uwb: 0.0 846.403 574.548 +imu_odom_: 1691062436.538527331 0.416591 -0.280122 9.65103 -0.0490022 0.0149137 0.0330232 0.18 0.02 pose: 0.0 4.32452 0.019584 0 0.00697625 0.000344138 0.0267682 0.999617 uwb: 0.0 846.403 574.548 +imu_odom_: 1691062436.554539629 0.483629 -0.397437 9.79947 -0.056459 -0.0628506 0.052198 0.2 0 pose: 0.54997545 4.33448 0.0204187 0 0.00613307 -5.29946e-050.0266558 0.999626 uwb: 0.50047399 847.249 573.394 +imu_odom_: 1691062436.571612881 0.828394 -0.246603 10.1658 -0.0426106 0.0681769 0.0223706 0.2 0 pose: 0.0 4.33448 0.0204187 0 0.00613307 -5.29946e-050.0266558 0.999626 uwb: 0.0 847.249 573.394 +imu_odom_: 1691062436.595546172 0.129287 -0.138864 9.9503 -0.0351537 0.0234358 0.0447411 0.18 0 pose: 0.30993680 4.34445 0.0212509 0 0.00370422 -0.0013858 0.0266754 0.999636 uwb: 0.49919081 845.831 572.955 +imu_odom_: 1691062436.619682146 -0.126893 0.0694318 10.0676 -0.0319579 -0.0127832 0.0287621 0.18 0 pose: 0.34008563 4.35137 0.0218296 0 0.00375022 0.000733345 0.0266492 0.999638 uwb: 0.0 845.831 572.955 +imu_odom_: 1691062436.644679016 0.366313 -0.160412 10.1778 -0.0649811 -0.0330232 0.0607201 0.19 0 pose: 0.0 4.35137 0.0218296 0 0.00375022 0.000733345 0.0266492 0.999638 uwb: 0.50012404 845.17 572.295 +imu_odom_: 1691062436.660513127 0.624887 -0.490811 9.8258 -0.0490022 -0.00852212 0.0340885 0.21 0 pose: 0.7005271 4.35441 0.0220833 0 0.00407834 0.00136294 0.0266088 0.999637 uwb: 0.0 845.17 572.295 +imu_odom_: 1691062436.677519596 0.483629 0.129287 10.4004 -0.0426106 0.0213053 0.052198 0.18 0 pose: 0.0 4.35441 0.0220833 0 0.00407834 0.00136294 0.0266088 0.999637 uwb: 0.0 845.17 572.295 +imu_odom_: 1691062436.700496045 0.593762 -0.143652 10.3837 -0.0649811 -0.0191748 0.0383495 0.18 0 pose: 0.0 4.35441 0.0220833 0 0.00407834 0.00136294 0.0266088 0.999637 uwb: 0.49947661 846.395 571.004 +imu_odom_: 1691062436.725512162 0.61531 -0.282516 9.59357 -0.0735032 0.00745685 0.0532632 0.25 0 pose: 0.48136632 4.36438 0.0229155 0 0.00204235 0.00112529 0.0267551 0.999639 uwb: 0.0 846.395 571.004 +imu_odom_: 1691062436.747579888 0.857124 -0.337582 10.149 -0.0735032 0.00426106 0.0266316 0.25 0 pose: 0.33828043 4.36438 0.0229155 0 0.00307799 -0.0004659790.0268349 0.999635 uwb: 0.49865713 845.703 570.254 +imu_odom_: 1691062436.772576758 0.272939 -0.0861913 10.0485 -0.0596548 0.0351537 0.056459 0.19 0 pose: 0.40996044 4.37434 0.0237513 0 0.00144177 -0.00409267 0.02701 0.999626 uwb: 0.0 845.703 570.254 +imu_odom_: 1691062436.797565753 0.818817 -0.160412 9.47625 -0.0468716 0.0394148 0.0170442 0.18 -0.02 pose: 0.6009642 4.37434 0.0237513 0 0.00117716 -0.00463176 0.0269725 0.999625 uwb: 0.50081520 844.922 569.261 +imu_odom_: 1691062436.813636086 0.179565 -0.289698 9.9096 -0.0745685 0.00319579 0.0426106 0.18 -0.02 pose: 0.0 4.37434 0.0237513 0 0.00117716 -0.00463176 0.0269725 0.999625 uwb: 0.0 844.922 569.261 +imu_odom_: 1691062436.838497347 0.6608 -0.562637 9.45231 -0.0468716 -0.00532632 0.0308927 0.18 -0.02 pose: 0.48091138 4.38431 0.0245897 0 0.00154051 -0.003848 0.0269978 0.999627 uwb: 0.0 844.922 569.261 +imu_odom_: 1691062436.851632704 0.960075 -0.112527 9.77074 -0.0479369 -0.015979 0.0245011 0.18 -0.02 pose: 0.0 4.38431 0.0245897 0 0.00154051 -0.003848 0.0269978 0.999627 uwb: 0.50005404 845.309 567.973 +imu_odom_: 1691062436.874487834 0.636858 -0.215478 10.4627 -0.0671117 -0.0447411 0.036219 0.18 -0.02 pose: 0.0 4.38431 0.0245897 0 0.00154051 -0.003848 0.0269978 0.999627 uwb: 0.0 845.309 567.973 +imu_odom_: 1691062436.892565172 0.347159 0.0837971 9.80426 -0.0468716 -0.0330232 0.0340885 0.21 -0.02 pose: 0.40890473 4.39427 0.0254272 0 0.000529064 -0.00400267 0.0267949 0.999633 uwb: 0.50017652 848.828 565.908 +imu_odom_: 1691062436.916492922 0.186748 -0.399832 9.56723 -0.0884169 -0.00213053 0.0372843 0.21 -0.02 pose: 0.0 4.39427 0.0254272 0 0.000529064 -0.00400267 0.0267949 0.999633 uwb: 0.0 848.828 565.908 +imu_odom_: 1691062436.942497086 0.222661 -0.11971 10.2185 -0.0458064 -0.0138484 0.0351537 0.22 0.02 pose: 0.80057116 4.40424 0.0262622 0 0.0006585 -0.00738421 0.0265102 0.999621 uwb: 0.49974492 847.705 565.13 +imu_odom_: 1691062436.966697219 0.588974 -0.548272 9.83059 -0.0788296 -0.00319579 0.0372843 0.19 0 pose: 0.41936555 4.4142 0.0270914 0 0.000517119 -0.00364511 0.0264347 0.999644 uwb: 0.0 847.705 565.13 +imu_odom_: 1691062436.990617678 0.320823 -0.447716 9.56005 -0.0639159 -0.0234358 0.036219 0.18 0 pose: 0.0 4.4142 0.0270914 0 0.000517119 -0.00364511 0.0264347 0.999644 uwb: 0.49998988 847.317 564.021 +imu_odom_: 1691062437.15625052 0.260968 -0.323217 9.29908 -0.0394148 0.0213053 0.02024 0.22 0 pose: 0.7011103 4.4142 0.0270914 0 -0.000224129-0.00388446 0.0264289 0.999643 uwb: 0.0 847.317 564.021 +imu_odom_: 1691062437.28505239 0.550666 -0.380678 10.0916 -0.0245011 0.00106526 0.0266316 0.22 0 pose: 0.0 4.4142 0.0270914 0 -0.000224129-0.00388446 0.0264289 0.999643 uwb: 0.0 847.317 564.021 +imu_odom_: 1691062437.51474409 0.56982 -0.296881 10.1849 -0.0649811 -0.0415453 0.052198 0.22 0 pose: 0.48126717 4.42417 0.0279192 0 -0.00407311 -0.00240955 0.0263209 0.999642 uwb: 0.50108077 848.572 562.713 +imu_odom_: 1691062437.69637495 0.373495 0.0670376 9.84256 -0.0340885 0.0181095 0.04048 0.21 -0.02 pose: 0.0 4.42417 0.0279192 0 -0.00407311 -0.00240955 0.0263209 0.999642 uwb: 0.0 848.572 562.713 +imu_odom_: 1691062437.93462312 0.0957681 -0.244209 9.65342 -0.0713727 0.0191748 0.052198 0.21 -0.02 pose: 0.38854322 4.43413 0.0287449 0 -0.00463236 -0.0024513 0.0261137 0.999645 uwb: 0.49808871 847.476 562.024 +imu_odom_: 1691062437.116667703 0.519542 -0.134075 9.84496 -0.0287621 -0.0181095 0.0298274 0.22 0 pose: 0.0 4.43413 0.0287449 0 -0.00463236 -0.0024513 0.0261137 0.999645 uwb: 0.0 847.476 562.024 +imu_odom_: 1691062437.141532768 0.68953 -0.241814 9.73004 -0.0756338 -0.0330232 0.0543285 0.25 0 pose: 0.41017645 4.4441 0.0295673 0 -0.00264235 -0.00257788 0.0262567 0.999648 uwb: 0.49946811 848.033 561.159 +imu_odom_: 1691062437.165459072 0.47884 -0.414197 9.56005 -0.0553937 -0.0117179 0.0468716 0.18 0 pose: 0.0 4.4441 0.0295673 0 -0.00264235 -0.00257788 0.0262567 0.999648 uwb: 0.0 848.033 561.159 +imu_odom_: 1691062437.180465542 0.380678 -0.23942 10.0221 -0.0575243 -0.00319579 0.0447411 0.18 0 pose: 0.46985005 4.45407 0.0303916 0 -0.000633998-0.00321003 0.0262999 0.999649 uwb: 0.0 848.033 561.159 +imu_odom_: 1691062437.204499749 0.474052 -0.191536 10.3669 -0.036219 -0.0511327 0.0351537 0.25 -0.02 pose: 0.0 4.45407 0.0303916 0 -0.000633998-0.00321003 0.0262999 0.999649 uwb: 0.49988515 848.086 560.071 +imu_odom_: 1691062437.221451400 0.620098 -0.438139 9.3709 -0.0798948 -0.076699 0.0596548 0.25 -0.02 pose: 0.0 4.45407 0.0303916 0 -0.000633998-0.00321003 0.0262999 0.999649 uwb: 0.0 848.086 560.071 +imu_odom_: 1691062437.236446204 0.828394 -0.237026 9.92157 -0.0585895 0.0191748 0.0351537 0.2 0 pose: 0.49039839 4.46403 0.0312183 0 -0.00301135 -0.00426096 0.0265461 0.999634 uwb: 0.0 848.086 560.071 +imu_odom_: 1691062437.259473992 0.536301 -0.227449 9.80904 -0.0660464 0.00319579 0.0490022 0.2 0 pose: 0.0 4.46403 0.0312183 0 -0.00301135 -0.00426096 0.0265461 0.999634 uwb: 0.50121499 846.27 559.806 +imu_odom_: 1691062437.285428300 0.632069 -0.380678 9.5816 -0.0532632 0.0394148 0.0287621 0.25 0.02 pose: 0.70962635 4.474 0.032049 0 -0.000907505-0.00687943 0.0266757 0.99962 uwb: 0.0 846.27 559.806 +imu_odom_: 1691062437.299450514 0.105345 -0.260968 10.0509 -0.0532632 0.0127832 0.0458064 0.25 0.02 pose: 0.0 4.474 0.032049 0 -0.000907505-0.00687943 0.0266757 0.99962 uwb: 0.50050924 845.184 559.165 +imu_odom_: 1691062437.323457308 0.4956 -0.275333 10.1083 -0.0841559 0.00958738 0.0479369 0.17 -0.02 pose: 0.54956162 4.48396 0.0328818 0 -0.00173703 -0.00601978 0.0266574 0.999625 uwb: 0.0 845.184 559.165 +imu_odom_: 1691062437.341434043 0.603339 -0.0430956 10.0413 -0.0490022 0.00639159 0.0372843 0.17 -0.02 pose: 0.0 4.48396 0.0328818 0 -0.00173703 -0.00601978 0.0266574 0.999625 uwb: 0.50029927 844.943 558.478 +imu_odom_: 1691062437.364438500 0.332794 -0.383072 9.63187 -0.0905475 0 0.0607201 0.18 0 pose: 0.41983529 4.49393 0.0337151 0 -0.00200207 -0.00472656 0.026738 0.999629 uwb: 0.0 844.943 558.478 +imu_odom_: 1691062437.387565443 0.54109 -0.28491 10.1347 -0.0458064 0.00532632 0.0319579 0.18 0 pose: 0.0 4.49393 0.0337151 0 -0.00200207 -0.00472656 0.026738 0.999629 uwb: 0.0 844.943 558.478 +imu_odom_: 1691062437.404482389 0.258574 -0.411803 9.54089 -0.0703074 0.0298274 0.0458064 0.18 0 pose: 0.46131400 4.50056 0.0342736 0 -0.00346391 -0.00511184 0.0268914 0.999619 uwb: 0.49889944 845.103 557.7 +imu_odom_: 1691062437.429484521 0.395043 -0.134075 9.91918 -0.0351537 0.0127832 0.0436758 0.25 0.02 pose: 0.0 4.50056 0.0342736 0 -0.00346391 -0.00511184 0.0268914 0.999619 uwb: 0.0 845.103 557.7 +imu_odom_: 1691062437.452475855 0.481235 -0.186748 10.0676 -0.0511327 0.0308927 0.0415453 0.23 0 pose: 0.25906480 4.50389 0.0345532 0 -0.00353643 -0.00290743 0.0269692 0.999626 uwb: 0.49878278 845.226 556.81 +imu_odom_: 1691062437.476474192 0.964863 0.0287304 10.331 -0.0383495 -0.0372843 0.0415453 0.23 0 pose: 0.0 4.50389 0.0345532 0 -0.00353643 -0.00290743 0.0269692 0.999626 uwb: 0.0 845.226 556.81 +imu_odom_: 1691062437.500621843 0.723049 -0.186748 9.67018 -0.0458064 -0.0138484 0.0458064 0.24 0 pose: 0.46954092 4.51386 0.0353919 0 0.000591533 -0.00359748 0.0270227 0.999628 uwb: 0.50310185 843.706 556.198 +imu_odom_: 1691062437.514471704 0.0957681 -0.134075 9.95748 -0.0426106 0.00106526 0.04048 0.24 0 pose: 0.0 4.51386 0.0353919 0 0.000591533 -0.00359748 0.0270227 0.999628 uwb: 0.0 843.706 556.198 +imu_odom_: 1691062437.537598355 0.299275 -0.158017 10.3813 -0.0692422 -0.00958738 0.0553937 0.17 0 pose: 0.54045689 4.52382 0.0362314 0 0.00188317 -0.00639693 0.027119 0.99961 uwb: 0.0 843.706 556.198 +imu_odom_: 1691062437.555405943 0.442927 -0.366313 9.76116 -0.056459 -0.02024 0.0351537 0.17 0 pose: 0.0 4.52382 0.0362314 0 0.00188317 -0.00639693 0.027119 0.99961 uwb: 0.49814411 842.554 555.408 +imu_odom_: 1691062437.570401914 0.304064 -0.0814029 10.4124 -0.0490022 -0.0191748 0.0394148 0.17 0 pose: 0.7137092 4.52382 0.0362314 0 0.00187937 -0.00570459 0.0271736 0.999613 uwb: 0.0 842.554 555.408 +imu_odom_: 1691062437.593416287 0.699107 -0.196325 10.228 -0.0649811 -0.0500674 0.04048 0.25 0.02 pose: 0.0 4.52382 0.0362314 0 0.00187937 -0.00570459 0.0271736 0.999613 uwb: 0.49980641 846.019 552.829 +imu_odom_: 1691062437.618618769 0.639252 -0.0526724 10.3525 -0.0490022 -0.00319579 0.0479369 0.25 0.02 pose: 0.71807491 4.54111 0.0276586 0 0.000983199 -0.0056673 0.0272696 0.999612 uwb: 0.0 846.019 552.829 +imu_odom_: 1691062437.634385522 0.605733 -0.246603 9.7851 -0.0596548 0.0245011 0.0500674 0.18 0 pose: 0.0 4.54111 0.0276586 0 0.000983199 -0.0056673 0.0272696 0.999612 uwb: 0.0 846.019 552.829 +imu_odom_: 1691062437.657448597 0.701501 -0.0885855 9.83299 -0.0181095 -0.00852212 0.0213053 0.18 0 pose: 0.40969235 4.54459 0.0279537 0 0.00174805 -0.00792545 0.0274602 0.99959 uwb: 0.49996389 845.812 552.229 +imu_odom_: 1691062437.680463554 0.114922 -0.308852 9.84975 -0.0468716 -0.0106526 0.0479369 0.24 0 pose: 0.7012274 4.54459 0.0279537 0 0.00228674 -0.00850872 0.0273947 0.999586 uwb: 0.0 845.812 552.229 +imu_odom_: 1691062437.697520191 0.035913 -0.047884 10.137 -0.0372843 -0.0298274 0.0223706 0.24 0 pose: 0.24082326 4.55456 0.0288004 0 0.00328397 -0.00911251 0.027279 0.999581 uwb: 0.50078337 847.443 550.604 +imu_odom_: 1691062437.721448245 0.521936 -0.251391 9.8665 -0.0649811 -0.036219 0.0607201 0.18 0 pose: 0.0 4.55456 0.0288004 0 0.00328397 -0.00911251 0.027279 0.999581 uwb: 0.0 847.443 550.604 +imu_odom_: 1691062437.739481264 0.907402 -0.428562 9.73482 -0.0426106 0.015979 0.0298274 0.18 0 pose: 0.21956335 4.55456 0.0288004 0 0.0030397 -0.00715012 0.0272798 0.999598 uwb: 0.49786707 848.693 549.116 +imu_odom_: 1691062437.762436436 -0.155623 -0.146046 9.79947 -0.0585895 -0.00213053 0.0617853 0.18 0 pose: 0.0 4.55456 0.0288004 0 0.0030397 -0.00715012 0.0272798 0.999598 uwb: 0.0 848.693 549.116 +imu_odom_: 1691062437.779381087 0.656011 -0.220267 10.3717 -0.0628506 -0.00106526 0.0351537 0.18 0 pose: 0.42109222 4.56452 0.0296446 0 0.000476233 -0.00722619 0.0274191 0.999598 uwb: 0.0 848.693 549.116 +imu_odom_: 1691062437.803368925 0.881066 -0.201113 9.72764 -0.0713727 0.00639159 0.0479369 0.18 0 pose: 0.0 4.56452 0.0296446 0 0.000476233 -0.00722619 0.0274191 0.999598 uwb: 0.49990848 850.01 547.809 +imu_odom_: 1691062437.826397880 0.787692 -0.337582 10.1035 -0.072438 0.00532632 0.0287621 0.18 0 pose: 0.39903614 4.57449 0.0304933 0 0.000138612 -0.00636688 0.0276128 0.999598 uwb: 0.0 850.01 547.809 +imu_odom_: 1691062437.849581690 0.811634 -0.37589 9.70849 -0.0617853 -0.00852212 0.0543285 0.25 0 pose: 0.0 4.57449 0.0304933 0 0.000138612 -0.00636688 0.0276128 0.999598 uwb: 0.50010096 849.677 546.806 +imu_odom_: 1691062437.866486680 0.222661 -0.186748 10.3382 -0.0820254 -0.0223706 0.0479369 0.25 0 pose: 0.42098140 4.57449 0.0304933 0 -0.000414399-0.0102894 0.0276467 0.999565 uwb: 0.0 849.677 546.806 +imu_odom_: 1691062437.890379446 0.232238 0.0407014 10.2208 -0.0468716 0.052198 0.0287621 0.18 0 pose: 0.0 4.57449 0.0304933 0 -0.000414399-0.0102894 0.0276467 0.999565 uwb: 0.50100501 845.47 547.378 +imu_odom_: 1691062437.907398464 0.505177 -0.320823 9.58399 -0.0713727 -0.0607201 0.0511327 0.18 0 pose: 0.46005123 4.58445 0.0313454 0 -0.002603 -0.0127887 0.0277861 0.999529 uwb: 0.0 845.47 547.378 +imu_odom_: 1691062437.932505874 0.725443 -0.138864 9.65582 -0.0511327 -0.0735032 0.0276969 0.18 0.02 pose: 0.0 4.58445 0.0313454 0 -0.002603 -0.0127887 0.0277861 0.999529 uwb: 0.0 845.47 547.378 +imu_odom_: 1691062437.949529266 0.134075 -0.23942 9.8258 -0.0735032 0.0234358 0.0585895 0.18 0.02 pose: 0.40863956 4.59441 0.032201 0 -0.00175525 -0.00907371 0.0277342 0.999573 uwb: 0.50009513 847.889 545.395 +imu_odom_: 1691062437.965503660 0.54109 -0.517148 9.52653 -0.0532632 0.0170442 0.0223706 0.18 0.02 pose: 0.0 4.59441 0.032201 0 -0.00175525 -0.00907371 0.0277342 0.999573 uwb: 0.0 847.889 545.395 +imu_odom_: 1691062437.990516290 0.282516 -0.272939 10.5848 -0.0575243 0.00426106 0.0426106 0.18 0 pose: 0.42103098 4.60438 0.0330544 0 -0.00088072 -0.0105964 0.0277031 0.99956 uwb: 0.49986182 850.349 543.491 +imu_odom_: 1691062438.14495093 -0.0957681 -0.186748 10.2065 -0.0436758 0.0255663 0.015979 0.18 0 pose: 0.0 4.60438 0.0330544 0 -0.00088072 -0.0105964 0.0277031 0.99956 uwb: 0.0 850.349 543.491 +imu_odom_: 1691062438.30410294 0.227449 -0.596156 9.7851 -0.0511327 -0.0276969 0.0479369 0.18 0 pose: 0.0 4.60438 0.0330544 0 -0.00088072 -0.0105964 0.0277031 0.99956 uwb: 0.0 850.349 543.491 +imu_odom_: 1691062438.46365741 0.955286 -0.248997 10.7404 -0.0532632 0.285491 0.0394148 0.18 0 pose: 0.32908546 4.60438 0.0330544 0 -0.00260125 -0.00838475 0.0276812 0.999578 uwb: 0.50033445 849.946 542.263 +imu_odom_: 1691062438.63492962 2.09253 -0.306458 7.91284 -0.0500674 0.286556 0.0223706 0.25 0 pose: 0.0 4.60438 0.0330544 0 -0.00260125 -0.00838475 0.0276812 0.999578 uwb: 0.0 849.946 542.263 +imu_odom_: 1691062438.87384574 -0.356736 -0.54109 8.67659 -0.0735032 -0.112918 0.0351537 0.25 0 pose: 0.90064806 4.6243 0.0347561 0 -0.00342119 -0.00162755 0.0273307 0.999619 uwb: 0.0 849.946 542.263 +imu_odom_: 1691062438.111417918 0.500388 -0.316035 10.6231 -0.0458064 -0.156594 0.0170442 0.19 0 pose: 0.0 4.6243 0.0347561 0 -0.00342119 -0.00162755 0.0273307 0.999619 uwb: 0.49939838 850.848 540.956 +imu_odom_: 1691062438.136328199 0.632069 -0.294487 10.5273 -0.0671117 -0.0351537 0.0628506 0.25 0 pose: 0.8007615 4.6243 0.0347561 0 -0.00376012 -0.00131351 0.0273173 0.999619 uwb: 0.0 850.848 540.956 +imu_odom_: 1691062438.161395668 0.0885855 -0.141258 10.5393 -0.0447411 0.00639159 0.0458064 0.19 0 pose: 0.0 4.6243 0.0347561 0 -0.00376012 -0.00131351 0.0273173 0.999619 uwb: 0.49998747 852.496 539.19 +imu_odom_: 1691062438.178348494 0.272939 0.0143652 9.67257 -0.0681769 0.0532632 0.0266316 0.19 0 pose: 0.64827622 4.64103 0.036173 0 -0.00420827 -0.00777257 0.0272952 0.999588 uwb: 0.0 852.496 539.19 +imu_odom_: 1691062438.202329637 0.505177 -0.203507 9.65103 -0.04048 0.0447411 0.0287621 0.18 0 pose: 0.0 4.64103 0.036173 0 -0.00420827 -0.00777257 0.0272952 0.999588 uwb: 0.49864306 850.635 538.925 +imu_odom_: 1691062438.219348954 0.177171 -0.533907 9.93594 -0.056459 0.00958738 0.0511327 0.18 0 pose: 0.50092944 4.6542 0.0372904 0 -0.00137349 -0.00389175 0.027216 0.999621 uwb: 0.0 850.635 538.925 +imu_odom_: 1691062438.234400635 -0.0311246 -0.234632 10.4507 -0.036219 0.00532632 0.0394148 0.19 0 pose: 0.0 4.6542 0.0372904 0 -0.00137349 -0.00389175 0.027216 0.999621 uwb: 0.0 850.635 538.925 +imu_odom_: 1691062438.257333654 0.584185 -0.203507 10.1035 -0.0500674 -0.0223706 0.0607201 0.19 0 pose: 0.47979492 4.65945 0.0377349 0 -0.00103509 -0.00144088 0.0272274 0.999628 uwb: 0.50082737 851.519 537.529 +imu_odom_: 1691062438.283387421 0.354342 -0.0981623 9.76595 -0.0372843 -0.0138484 0.0276969 0.25 -0.02 pose: 0.0 4.65945 0.0377349 0 -0.00103509 -0.00144088 0.0272274 0.999628 uwb: 0.0 851.519 537.529 +imu_odom_: 1691062438.307356607 0.73502 -0.397437 9.39485 -0.0777643 0 0.0490022 0.25 -0.02 pose: 0.8069149 4.66416 0.0381339 0 -0.000822318-0.00229766 0.0273116 0.999624 uwb: 0.49983583 850.451 536.984 +imu_odom_: 1691062438.322357544 0.751779 -0.23942 10.0006 -0.0617853 0.0298274 0.0340885 0.18 0 pose: 0.0 4.66416 0.0381339 0 -0.000822318-0.00229766 0.0273116 0.999624 uwb: 0.0 850.451 536.984 +imu_odom_: 1691062438.339393776 0.150835 -0.177171 9.76834 -0.0436758 -0.0351537 0.0372843 0.18 0 pose: 0.0 4.66416 0.0381339 0 -0.000822318-0.00229766 0.0273116 0.999624 uwb: 0.0 850.451 534.915 +imu_odom_: 1691062438.355365262 0.852336 -0.325611 10.3884 -0.0798948 -0.0607201 0.0543285 0.18 0 pose: 0.32029295 4.67413 0.0389803 0 -0.000137642-0.0053039 0.0273839 0.999611 uwb: 0.0 852.913 534.915 +imu_odom_: 1691062438.380328619 1.17076 -0.0407014 10.6494 -0.0543285 0.00106526 0.0394148 0.18 0 pose: 0.0 4.67413 0.0389803 0 -0.000137642-0.0053039 0.0273839 0.999611 uwb: 0.0 852.913 534.915 +imu_odom_: 1691062438.404308887 0.651223 -0.131681 10.0173 -0.0777643 -0.00213053 0.0479369 0.17 0 pose: 0.41029331 4.68409 0.0398269 0 -0.000226533-0.00660768 0.0274805 0.9996 uwb: 0.49989416 853.767 533.365 +imu_odom_: 1691062438.421445149 0.225055 -0.301669 9.73243 -0.0468716 -0.00319579 0.0298274 0.17 0 pose: 0.40922012 4.69073 0.0403922 0 0.00172486 -0.00985441 0.0275591 0.99957 uwb: 0.0 853.767 533.365 +imu_odom_: 1691062438.437507332 0.248997 -0.181959 10.082 -0.0777643 -0.00639159 0.0607201 0.17 0 pose: 0.0 4.69073 0.0403922 0 0.00172486 -0.00985441 0.0275591 0.99957 uwb: 0.0 853.767 533.365 +imu_odom_: 1691062438.454325715 0.0766145 -0.433351 9.71567 -0.0798948 -0.0106526 0.0500674 0.25 0 pose: 0.0 4.69073 0.0403922 0 0.00172486 -0.00985441 0.0275591 0.99957 uwb: 0.50042784 851.847 532.96 +imu_odom_: 1691062438.479418265 0.679953 -0.454898 9.63427 -0.0628506 0.0266316 0.0287621 0.25 0 pose: 0.7996825 4.69405 0.0406761 0 0.00149995 -0.0090928 0.027522 0.999579 uwb: 0.0 851.847 532.96 +imu_odom_: 1691062438.503360329 0.371101 -0.299275 10.003 -0.0468716 0.0383495 0.0351537 0.21 0 pose: 0.32213314 4.69405 0.0406761 0 0.000654801 -0.00604929 0.0276837 0.999598 uwb: 0.50086237 852.485 532.142 +imu_odom_: 1691062438.520381105 0.124498 -0.292093 9.93115 -0.04048 -0.0287621 0.0458064 0.25 0 pose: 0.0 4.69405 0.0406761 0 0.000654801 -0.00604929 0.0276837 0.999598 uwb: 0.0 852.485 532.142 +imu_odom_: 1691062438.545357877 0.42138 -0.237026 9.56244 -0.0479369 -0.0255663 0.0351537 0.18 0 pose: 0.0 4.69405 0.0406761 0 0.000654801 -0.00604929 0.0276837 0.999598 uwb: 0.49887344 852.647 531.229 +imu_odom_: 1691062438.568355347 0.694318 -0.272939 10.2352 -0.0500674 -0.0170442 0.0468716 0.18 0 pose: 0.42924644 4.70402 0.0415287 0 -0.00221229 -0.00545031 0.0275958 0.999602 uwb: 0.0 852.647 531.229 +imu_odom_: 1691062438.585486651 0.301669 -0.071826 9.88326 -0.0511327 0.00213053 0.0479369 0.23 0 pose: 0.0 4.70402 0.0415287 0 -0.00221229 -0.00545031 0.0275958 0.999602 uwb: 0.0 852.647 531.229 +imu_odom_: 1691062438.611394311 0.203507 -0.198719 9.42118 -0.0447411 0.0276969 0.0426106 0.23 0 pose: 0.88959538 4.72394 0.0432312 0 -0.000226617-0.00266984 0.0276863 0.999613 uwb: 0.50063781 850.358 531.116 +imu_odom_: 1691062438.628331680 0.378284 -0.260968 10.1466 -0.0596548 0.0127832 0.0458064 0.18 0.02 pose: 0.0 4.72394 0.0432312 0 -0.000226617-0.00266984 0.0276863 0.999613 uwb: 0.0 850.358 531.116 +imu_odom_: 1691062438.643285081 0.227449 -0.122104 10.0413 -0.0436758 0.0117179 0.0266316 0.18 0.02 pose: 0.43027007 4.73391 0.044084 0 -0.0002599820.00114343 0.0277856 0.999613 uwb: 0.49874804 848.852 530.637 +imu_odom_: 1691062438.669489913 0.620098 -0.445322 9.68933 -0.0777643 -0.0213053 0.0543285 0.21 0 pose: 0.0 4.73391 0.044084 0 -0.0002599820.00114343 0.0277856 0.999613 uwb: 0.0 848.852 530.637 +imu_odom_: 1691062438.694271001 0.636858 -0.0957681 9.5792 -0.0468716 0.00639159 0.0223706 0.21 0 pose: 0.31908268 4.73391 0.044084 0 -0.0008046750.00189582 0.027776 0.999612 uwb: 0.50062032 848.11 529.74 +imu_odom_: 1691062438.719354510 0.713472 -0.438139 10.0437 -0.0596548 0.0149137 0.0500674 0.21 0 pose: 0.0 4.73391 0.044084 0 -0.0008046750.00189582 0.027776 0.999612 uwb: 0.0 848.11 529.74 +imu_odom_: 1691062438.742276739 0.325611 -0.363919 9.80904 0.0468716 -0.0287621 0.00319579 0.21 0 pose: 0.50947132 4.74387 0.0449385 0 -0.00110406 -0.00214992 0.027732 0.999612 uwb: 0.49998456 845.766 529.515 +imu_odom_: 1691062438.758264265 0.320823 -0.198719 10.1418 -0.113983 -0.0958738 0.0916127 0.18 0 pose: 0.0 4.74387 0.0449385 0 -0.00110406 -0.00214992 0.027732 0.999612 uwb: 0.0 845.766 529.515 +imu_odom_: 1691062438.781380721 0.215478 -0.035913 9.75877 -0.176834 -0.107592 0.113983 0.18 0 pose: 0.48027028 4.75384 0.0457922 0 -0.00223757 -0.00149058 0.0276288 0.999615 uwb: 0.0 845.766 529.515 +imu_odom_: 1691062438.804398021 0.857124 -0.675165 10.0676 -0.0873517 -0.0756338 0.00532632 0.23 0 pose: 0.0 4.75384 0.0457922 0 -0.00223757 -0.00149058 0.0276288 0.999615 uwb: 0.49936046 846.377 528.598 +imu_odom_: 1691062438.821542157 0.924162 -0.811634 9.60075 -0.0575243 -0.00745685 -0.0117179 0.23 0 pose: 0.39025824 4.7638 0.0466439 0 -0.00249139 -0.00162288 0.0285627 0.999588 uwb: 0.0 846.377 528.598 +imu_odom_: 1691062438.837520059 0.61531 -0.0814029 10.489 -0.0447411 0.0266316 0.0575243 0.17 -0.02 pose: 0.0 4.7638 0.0466439 0 -0.00249139 -0.00162288 0.0285627 0.999588 uwb: 0.0 846.377 528.598 +imu_odom_: 1691062438.863269071 0.507571 -0.428562 10.0365 -0.0490022 0.0255663 0.0319579 0.17 -0.02 pose: 0.40218888 4.77376 0.0475142 0 -0.0042389 -0.00469935 0.0279307 0.99959 uwb: 0.50182767 844.517 528.491 +imu_odom_: 1691062438.888376495 0.610521 -0.232238 9.86172 -0.0703074 0.00426106 0.0660464 0.2 0 pose: 0.0 4.77376 0.0475142 0 -0.0042389 -0.00469935 0.0279307 0.99959 uwb: 0.0 844.517 528.491 +imu_odom_: 1691062438.911247688 0.799663 -0.395043 9.7851 -0.0713727 0.0106526 0.0298274 0.19 0 pose: 0.41798364 4.77376 0.0475142 0 -0.00549483 -0.00532864 0.0280095 0.999578 uwb: 0.49715865 847.903 526.277 +imu_odom_: 1691062438.935370564 0.624887 -0.351948 9.50498 -0.0639159 0.0117179 0.0415453 0.25 0 pose: 0.0 4.77376 0.0475142 0 -0.00549483 -0.00532864 0.0280095 0.999578 uwb: 0.0 847.903 526.277 +imu_odom_: 1691062438.958301250 0.505177 -0.521936 10.1514 -0.0394148 -0.00852212 0.0223706 0.25 0 pose: 0.48103726 4.78372 0.0483754 0 -0.00571354 -0.00922213 0.0281074 0.999546 uwb: 0.49994082 847.238 525.628 +imu_odom_: 1691062438.975372186 0.11971 0.0143652 10.0509 -0.0394148 0.0383495 0.0298274 0.26 0 pose: 0.0 4.78372 0.0483754 0 -0.00571354 -0.00922213 0.0281074 0.999546 uwb: 0.0 847.238 525.628 +imu_odom_: 1691062438.991528858 0.351948 -0.213084 10.1203 -0.0596548 -0.0468716 0.0660464 0.26 0 pose: 0.46791677 4.79369 0.0492376 0 -0.00771211 -0.00864136 0.0279138 0.999543 uwb: 0.50080404 846.157 525.113 +imu_odom_: 1691062439.7445228 0.251391 -0.304064 9.73004 -0.04048 0.00319579 0.0319579 0.22 -0.02 pose: 0.0 4.79369 0.0492376 0 -0.00771211 -0.00864136 0.0279138 0.999543 uwb: 0.0 846.157 525.113 +imu_odom_: 1691062439.23371519 0.311246 0.110133 10.1778 -0.052198 0.0585895 0.0383495 0.22 -0.02 pose: 0.0 4.79369 0.0492376 0 -0.00771211 -0.00864136 0.0279138 0.999543 uwb: 0.0 846.157 525.113 +imu_odom_: 1691062439.40412426 0.0215478 -0.586579 10.0556 -0.0628506 -0.0138484 0.0340885 0.22 -0.02 pose: 0.41194106 4.80413 0.0445061 0 -0.00592243 -0.00509886 0.0280368 0.999576 uwb: 0.50062925 844.672 524.781 +imu_odom_: 1691062439.56258810 0.301669 -0.244209 10.2376 -0.04048 -0.0117179 0.0138484 0.19 -0.02 pose: 0.0 4.80413 0.0445061 0 -0.00592243 -0.00509886 0.0280368 0.999576 uwb: 0.0 844.672 524.781 +imu_odom_: 1691062439.79299744 0.684742 -0.301669 10.2999 -0.0617853 -0.0692422 0.0575243 0.23 0 pose: 0.7073523 4.80451 0.0401333 0 -0.00527499 -0.00458009 0.0280298 0.999583 uwb: 0.0 844.672 524.781 +imu_odom_: 1691062439.96220499 0.203507 -0.184354 9.65342 -0.0436758 0.0138484 0.0213053 0.23 0 pose: 0.0 4.80451 0.0401333 0 -0.00527499 -0.00458009 0.0280298 0.999583 uwb: 0.50050100 841.544 525.047 +imu_odom_: 1691062439.122406971 0.0502782 -0.102951 9.55526 -0.076699 0.00852212 0.0511327 0.18 0 pose: 0.49797839 4.81447 0.0409934 0 -0.00459002 -0.00229735 0.0278568 0.999599 uwb: 0.0 841.544 525.047 +imu_odom_: 1691062439.138267062 0.471658 -0.392649 9.92397 -0.0713727 -0.0170442 0.0319579 0.18 0 pose: 0.0 4.81447 0.0409934 0 -0.00459002 -0.00229735 0.0278568 0.999599 uwb: 0.0 841.544 525.047 +imu_odom_: 1691062439.162281171 0.385466 -0.280122 9.75398 -0.0639159 -0.015979 0.0372843 0.18 0 pose: 0.73950472 4.83005 0.0423332 0 -0.00453339 -0.0009424020.0279298 0.999599 uwb: 0.49879787 840.498 524.678 +imu_odom_: 1691062439.178271621 0.428562 -0.344765 9.72285 -0.0713727 -0.0308927 0.0426106 0.18 0 pose: 0.0 4.83005 0.0423332 0 -0.00453339 -0.0009424020.0279298 0.999599 uwb: 0.0 840.498 524.678 +imu_odom_: 1691062439.202207281 0.562637 -0.316035 10.0868 -0.0266316 -0.0181095 0.0223706 0.2 0 pose: 0.40004559 4.8344 0.0427076 0 -0.00476751 -0.00020927 0.0279315 0.999598 uwb: 0.49982441 839.382 524.112 +imu_odom_: 1691062439.225214678 0.40462 -0.354342 9.76355 -0.0713727 -0.0276969 0.052198 0.2 0 pose: 0.7967958 4.8344 0.0427076 0 -0.00466091 -0.00105861 0.0278594 0.9996 uwb: 0.0 839.382 524.112 +imu_odom_: 1691062439.248204869 0.351948 -0.232238 9.71328 -0.0458064 0 0.0372843 0.25 0 pose: 0.24060187 4.84436 0.0435639 0 -0.00511459 -0.00231862 0.0277702 0.999599 uwb: 0.49992648 838.702 523.473 +imu_odom_: 1691062439.274263315 0.148441 -0.608127 9.65342 -0.0628506 -0.0138484 0.0511327 0.25 0 pose: 0.22949945 4.84436 0.0435639 0 -0.00567076 -0.0009935860.0278651 0.999595 uwb: 0.0 838.702 523.473 +imu_odom_: 1691062439.298196934 0.383072 -0.244209 10.0341 -0.0330232 0.0106526 0.0330232 0.19 0 pose: 0.0 4.84436 0.0435639 0 -0.00567076 -0.0009935860.0278651 0.999595 uwb: 0.50018896 838.743 522.219 +imu_odom_: 1691062439.314194675 0.00718261 -0.21069 9.94073 -0.0628506 -0.0287621 0.0596548 0.19 0 pose: 0.0 4.84436 0.0435639 0 -0.00567076 -0.0009935860.0278651 0.999595 uwb: 0.0 838.743 522.219 +imu_odom_: 1691062439.330209330 0.150835 -0.222661 9.86172 -0.0490022 -0.0319579 0.0298274 0.24 0 pose: 0.71955713 4.86429 0.0452773 0 -0.00381935 0.00199671 0.0280057 0.999598 uwb: 0.0 838.743 522.219 +imu_odom_: 1691062439.355235984 0.746991 -0.296881 10.252 -0.0649811 -0.0426106 0.0543285 0.24 0 pose: 0.0 4.86429 0.0452773 0 -0.00381935 0.00199671 0.0280057 0.999598 uwb: 0.50029102 835.601 522.546 +imu_odom_: 1691062439.371196980 0.682347 -0.593762 9.44513 -0.0585895 0.0234358 0.0213053 0.19 0.02 pose: 0.50030560 4.87142 0.0458919 0 -0.00333717 0.00110315 0.028208 0.999596 uwb: 0.0 835.601 522.546 +imu_odom_: 1691062439.395250167 -0.189142 -0.454898 9.85214 -0.0617853 -0.0127832 0.0617853 0.19 0.02 pose: 0.0 4.87142 0.0458919 0 -0.00333717 0.00110315 0.028208 0.999596 uwb: 0.49928198 833.671 522.369 +imu_odom_: 1691062439.411257824 0.378284 -0.287304 10.2185 -0.0543285 -0.0415453 0.0308927 0.19 0 pose: 0.7145848 4.87425 0.0461375 0 -0.00385582 0.000694619 0.0281401 0.999596 uwb: 0.0 833.671 522.369 +imu_odom_: 1691062439.434305757 0.588974 -0.177171 9.7037 -0.056459 -0.0351537 0.0447411 0.19 0 pose: 0.0 4.87425 0.0461375 0 -0.00385582 0.000694619 0.0281401 0.999596 uwb: 0.0 833.671 522.369 +imu_odom_: 1691062439.460335915 0.828394 -0.263362 9.81862 -0.0596548 -0.0138484 0.0287621 0.18 0.02 pose: 0.71923925 4.88421 0.0470021 0 -0.00281751 -0.00124725 0.0283182 0.999594 uwb: 0.50101135 834.624 521.069 +imu_odom_: 1691062439.475307696 0.538695 -0.277727 10.1682 -0.0607201 0.0287621 0.0351537 0.18 0.02 pose: 0.0 4.88421 0.0470021 0 -0.00281751 -0.00124725 0.0283182 0.999594 uwb: 0.0 834.624 521.069 +imu_odom_: 1691062439.498298762 0.493206 -0.23942 10.5632 -0.0916127 -0.0245011 0.0575243 0.17 -0.02 pose: 0.41001939 4.88917 0.0474319 0 -0.00290246 -0.00522455 0.0281322 0.999586 uwb: 0.50020062 834.348 520.27 +imu_odom_: 1691062439.515172272 0.490811 -0.392649 9.61272 -0.0511327 -0.0276969 0.0340885 0.17 -0.02 pose: 0.8013452 4.89418 0.0478653 0 -0.00232225 -0.00496265 0.0282009 0.999587 uwb: 0.0 834.348 520.27 +imu_odom_: 1691062439.540228673 0.514753 -0.227449 9.94551 -0.0873517 0.0191748 0.0607201 0.18 0 pose: 0.31851124 4.89911 0.0482928 0 -0.00288252 -0.00475569 0.0282906 0.999584 uwb: 0.50033185 831.647 520.588 +imu_odom_: 1691062439.563222654 0.409408 -0.306458 10.1251 -0.0479369 -0.00745685 0.0245011 0.18 0 pose: 0.0 4.89911 0.0482928 0 -0.00288252 -0.00475569 0.0282906 0.999584 uwb: 0.0 831.647 520.588 +imu_odom_: 1691062439.587292465 0.263362 -0.35913 9.78989 -0.0575243 -0.0245011 0.0479369 0.25 0.02 pose: 0.9140608 4.90414 0.0487295 0 -0.00218116 -0.00498689 0.0283812 0.999582 uwb: 0.0 831.647 520.588 +imu_odom_: 1691062439.610151130 0.107739 -0.332794 10.0533 -0.0426106 -0.00106526 0.0511327 0.25 0.02 pose: 0.0 4.90414 0.0487295 0 -0.00218116 -0.00498689 0.0283812 0.999582 uwb: 0.49815919 832.588 519.239 +imu_odom_: 1691062439.627229657 0.64404 -0.174777 10.1825 -0.0500674 -0.0607201 0.0447411 0.24 0 pose: 0.46969596 4.90414 0.0487295 0 -0.00260565 -0.00293316 0.0284121 0.999589 uwb: 0.0 832.588 519.239 +imu_odom_: 1691062439.643161489 0.591368 -0.227449 9.80904 -0.0468716 0.0532632 0.0276969 0.24 0 pose: 0.0 4.90414 0.0487295 0 -0.00260565 -0.00293316 0.0284121 0.999589 uwb: 0.50017146 833.035 517.815 +imu_odom_: 1691062439.659195101 0.31364 -0.134075 10.2017 -0.0426106 0.00745685 0.0436758 0.24 0 pose: 0.71879013 4.92406 0.0504666 0 -0.00232498 -0.00247585 0.0285653 0.999586 uwb: 0.0 833.035 517.815 +imu_odom_: 1691062439.683308948 0.557849 -0.385466 9.95509 -0.0532632 -0.0340885 0.0394148 0.18 0 pose: 0.0 4.92406 0.0504666 0 -0.00232498 -0.00247585 0.0285653 0.999586 uwb: 0.0 833.035 517.815 +imu_odom_: 1691062439.708308480 0.411803 -0.462081 9.85214 -0.0490022 -0.00852212 0.0447411 0.18 0 pose: 0.6996242 4.92406 0.0504666 0 -0.00181872 -0.00190833 0.0285798 0.999588 uwb: 0.49894368 831.947 517.397 +imu_odom_: 1691062439.733302180 0.493206 -0.311246 9.84975 -0.0553937 -0.0266316 0.0298274 0.18 0 pose: 0.0 4.92406 0.0504666 0 -0.00181872 -0.00190833 0.0285798 0.999588 uwb: 0.0 831.947 517.397 +imu_odom_: 1691062439.749178018 0.260968 -0.129287 10.2855 -0.0490022 -0.0149137 0.0426106 0.18 0 pose: 0.83144449 4.94121 0.0519665 0 -0.00475621 -0.0053972 0.0285362 0.999567 uwb: 0.50109010 833.382 516.08 +imu_odom_: 1691062439.765155345 0.572214 -0.620098 9.53611 -0.0777643 -0.0213053 0.0468716 0.18 0 pose: 0.0 4.94121 0.0519665 0 -0.00475621 -0.0053972 0.0285362 0.999567 uwb: 0.0 833.382 516.08 +imu_odom_: 1691062439.791152257 0.368707 -0.184354 9.62708 -0.0458064 0.0170442 0.0330232 0.18 0 pose: 0.31853165 4.94399 0.0522089 0 -0.00549598 -0.00479366 0.0286248 0.999564 uwb: 0.49847999 829.647 516.236 +imu_odom_: 1691062439.815199904 0.423774 -0.40462 10.0149 -0.0585895 0.00852212 0.0479369 0.19 0 pose: 0.8091609 4.94399 0.0522089 0 -0.00487143 -0.0041507 0.0285984 0.99957 uwb: 0.0 829.647 516.236 +imu_odom_: 1691062439.832128824 0.557849 -0.184354 9.87129 -0.0191748 -0.0234358 0.0149137 0.19 0 pose: 0.24966286 4.95395 0.0530802 0 -0.00418979 -0.00252332 0.0285715 0.99958 uwb: 0.0 829.647 516.236 +imu_odom_: 1691062439.847139392 0.560243 -0.203507 10.3406 -0.0266316 0.0213053 0.04048 0.18 -0.02 pose: 0.0 4.95395 0.0530802 0 -0.00418979 -0.00252332 0.0285715 0.99958 uwb: 0.50183375 829.013 515.787 +imu_odom_: 1691062439.864175050 0.397437 -0.380678 9.38527 -0.0532632 -0.00532632 0.0330232 0.18 -0.02 pose: 0.0 4.95395 0.0530802 0 -0.00418979 -0.00252332 0.0285715 0.99958 uwb: 0.0 829.013 515.787 +imu_odom_: 1691062439.880171624 0.311246 -0.110133 9.81383 -0.0191748 -0.00639159 0.0351537 0.18 -0.02 pose: 0.24950247 4.95395 0.0530802 0 -0.00509549 -0.00258781 0.0285462 0.999576 uwb: 0.0 829.013 515.787 +imu_odom_: 1691062439.905212859 0.620098 -0.203507 9.5792 -0.0532632 -0.0191748 0.0575243 0.18 0 pose: 0.0 4.95395 0.0530802 0 -0.00509549 -0.00258781 0.0285462 0.999576 uwb: 0.49856457 826.586 515.653 +imu_odom_: 1691062439.921143525 0.624887 -0.0383072 10.1275 -0.0319579 -0.00639159 0.0340885 0.18 0 pose: 0.82049372 4.97099 0.0545665 0 -0.00182361 -0.00457724 0.0285664 0.99958 uwb: 0.0 826.586 515.653 +imu_odom_: 1691062439.937176553 0.1652 -0.248997 9.72046 -0.0628506 -0.00426106 0.0585895 0.18 0 pose: 0.0 4.97099 0.0545665 0 -0.00182361 -0.00457724 0.0285664 0.99958 uwb: 0.0 826.586 515.653 +imu_odom_: 1691062439.962107844 0.158017 -0.114922 10.0652 -0.0596548 -0.0138484 0.0351537 0.18 0 pose: 0.6942581 4.97387 0.0548187 0 -0.00113906 -0.00492642 0.0285443 0.99958 uwb: 0.50064098 828.41 514.107 +imu_odom_: 1691062439.977164198 0.440533 -0.265756 9.64145 -0.0671117 -0.0287621 0.052198 0.19 0 pose: 0.0 4.97387 0.0548187 0 -0.00113906 -0.00492642 0.0285443 0.99958 uwb: 0.0 828.41 514.107 +imu_odom_: 1691062439.993109736 0.691924 -0.356736 10.0772 -0.0713727 -0.00532632 0.0553937 0.18 0.02 pose: 0.0 4.97387 0.0548187 0 -0.00113906 -0.00492642 0.0285443 0.99958 uwb: 0.50087720 827.617 513.216 +imu_odom_: 1691062440.9165515 0.153229 -0.25618 9.56005 -0.0490022 0.02024 0.0266316 0.18 0 pose: 0.71967378 4.98384 0.0556898 0 -0.0016726 -0.00262652 0.0287639 0.999581 uwb: 0.0 827.617 513.216 +imu_odom_: 1691062440.25219840 0.696713 -0.19393 10.1227 -0.0596548 -0.0426106 0.0479369 0.18 0 pose: 0.0 4.98384 0.0556898 0 -0.0016726 -0.00262652 0.0287639 0.999581 uwb: 0.0 827.617 513.216 +imu_odom_: 1691062440.41157221 0.481235 -0.0694318 10.2185 -0.0735032 -0.0266316 0.0479369 0.18 0 pose: 0.0 4.98384 0.0556898 0 -0.0016726 -0.00262652 0.0287639 0.999581 uwb: 0.0 827.617 513.216 +imu_odom_: 1691062440.58155267 0.124498 -0.213084 10.0365 -0.0308927 -0.00639159 0.0276969 0.18 0 pose: 0.32108641 4.9938 0.0565641 0 -0.00192032 -0.00247481 0.0287618 0.999581 uwb: 0.0 827.617 513.216 +imu_odom_: 1691062440.73255373 0.399832 -0.543484 9.46428 -0.0511327 -0.0351537 0.0532632 0.18 0 pose: 0.41923808 4.99973 0.0570846 0 -4.06345e-05-0.00203288 0.0287586 0.999584 uwb: 0.0 827.617 513.216 +imu_odom_: 1691062440.89103806 0.184354 -0.189142 10.3022 -0.0575243 -0.00319579 0.04048 0.18 -0.02 pose: 0.0 4.99973 0.0570846 0 -4.06345e-05-0.00203288 0.0287586 0.999584 uwb: 0.0 827.617 513.216 +imu_odom_: 1691062440.106227545 0.402226 -0.0957681 10.0341 -0.0458064 -0.0649811 0.0372843 0.18 -0.02 pose: 0.0 4.99973 0.0570846 0 -4.06345e-05-0.00203288 0.0287586 0.999584 uwb: 0.99926431 827.62 511.87 +imu_odom_: 1691062440.122272247 0.617704 -0.258574 9.98861 -0.0671117 0.0287621 0.0490022 0.18 -0.02 pose: 0.6113475 5.00376 0.0574384 0 -0.000634409-0.00206779 0.0288016 0.999583 uwb: 0.0 827.62 511.87 +imu_odom_: 1691062440.138092392 0.191536 -0.402226 10.0365 -0.056459 0.0575243 0.0330232 0.25 -0.02 pose: 0.0 5.00376 0.0574384 0 -0.000634409-0.00206779 0.0288016 0.999583 uwb: 0.0 827.62 511.87 +imu_odom_: 1691062440.163087270 0.861913 -0.35913 9.4547 -0.0436758 0.00639159 0.0500674 0.25 -0.02 pose: 0.48963797 5.01372 0.0583139 0 0.000360781 -0.00145461 0.0288877 0.999582 uwb: 0.49964968 831.2 509.775 +imu_odom_: 1691062440.188163222 0.208296 -0.253785 9.84496 -0.04048 0.0426106 0.0138484 0.21 -0.02 pose: 0.0 5.01372 0.0583139 0 0.000360781 -0.00145461 0.0288877 0.999582 uwb: 0.0 831.2 509.775 +imu_odom_: 1691062440.212093062 -0.0311246 -0.603339 9.39245 -0.0916127 0.00958738 0.0532632 0.18 -0.02 pose: 0.74930683 5.02368 0.0591918 0 -0.00139082 0.000355925 0.0286912 0.999587 uwb: 0.50033793 830.803 508.62 +imu_odom_: 1691062440.229088774 0.486023 -0.368707 9.68215 -0.0532632 -0.0351537 0.0340885 0.18 -0.02 pose: 0.0 5.02368 0.0591918 0 -0.00139082 0.000355925 0.0286912 0.999587 uwb: 0.0 830.803 508.62 +imu_odom_: 1691062440.253155972 0.823605 -0.282516 9.41879 -0.0479369 -0.0298274 0.0330232 0.18 -0.02 pose: 0.40925552 5.03364 0.0600655 0 -0.00433962 0.000602384 0.0288036 0.999575 uwb: 0.49846274 832.203 507.098 +imu_odom_: 1691062440.269171802 0.555455 -0.253785 9.40442 -0.0596548 -0.00745685 0.0351537 0.18 0 pose: 0.7074985 5.03364 0.0600655 0 -0.00426997 -0.0001942450.0287778 0.999577 uwb: 0.0 832.203 507.098 +imu_odom_: 1691062440.293134888 0.507571 -0.237026 10.058 -0.0415453 0.0308927 0.0234358 0.18 0 pose: 0.33008043 5.03925 0.0605573 0 -0.00358989 -0.00364018 0.0286729 0.999576 uwb: 0.50048667 831.87 506.12 +imu_odom_: 1691062440.309191546 0.344765 -0.265756 9.63666 -0.0745685 -0.0181095 0.056459 0.18 0.02 pose: 0.0 5.03925 0.0605573 0 -0.00358989 -0.00364018 0.0286729 0.999576 uwb: 0.0 831.87 506.12 +imu_odom_: 1691062440.326285247 0.54109 -0.248997 10.1083 -0.0276969 -0.00319579 0.0372843 0.18 0.02 pose: 0.6998286 5.04361 0.0609392 0 -0.00295237 -0.00388864 0.0286126 0.999579 uwb: 0.0 831.87 506.12 +imu_odom_: 1691062440.343227591 0.196325 -0.1652 9.72525 -0.0617853 0.00426106 0.0585895 0.18 0.02 pose: 0.0 5.04361 0.0609392 0 -0.00295237 -0.00388864 0.0286126 0.999579 uwb: 0.49975759 829.522 506.304 +imu_odom_: 1691062440.360103734 0.950498 -0.246603 10.0437 -0.0468716 -0.0436758 0.0415453 0.23 0.02 pose: 0.0 5.04361 0.0609392 0 -0.00295237 -0.00388864 0.0286126 0.999579 uwb: 0.0 829.522 506.304 +imu_odom_: 1691062440.385055743 0.325611 -0.253785 10.4148 -0.0330232 0.0117179 0.0372843 0.18 -0.02 pose: 0.41108697 5.04361 0.0609392 0 -0.00166846 -0.00382552 0.0285945 0.999582 uwb: 0.0 829.522 506.304 +imu_odom_: 1691062440.402335796 0.445322 -0.339977 9.67257 -0.0681769 -0.02024 0.0490022 0.18 -0.02 pose: 0.0 5.04361 0.0609392 0 -0.00166846 -0.00382552 0.0285945 0.999582 uwb: 0.49998797 827.466 505.949 +imu_odom_: 1691062440.427284597 0.47884 -0.426168 9.5792 -0.0681769 -0.0245011 0.0479369 0.18 0.02 pose: 0.74967721 5.06353 0.0626843 0 -0.00179889 -0.00239153 0.0287711 0.999582 uwb: 0.0 827.466 505.949 +imu_odom_: 1691062440.443209729 0.529119 -0.177171 9.91439 -0.0671117 -0.00319579 0.0500674 0.18 0.02 pose: 0.0 5.06353 0.0626843 0 -0.00179889 -0.00239153 0.0287711 0.999582 uwb: 0.49989757 828.848 504.349 +imu_odom_: 1691062440.469199072 0.694318 -0.0335188 10.647 -0.0394148 -0.015979 0.0383495 0.18 0 pose: 0.50963223 5.07437 0.0535971 0 -0.00407948 -0.00388611 0.0290046 0.999563 uwb: 0.0 828.848 504.349 +imu_odom_: 1691062440.493211443 0.407014 -0.414197 10.2065 -0.0585895 -0.0426106 0.0351537 0.18 0 pose: 0.0 5.07437 0.0535971 0 -0.00407948 -0.00388611 0.0290046 0.999563 uwb: 0.50086871 829.387 503.096 +imu_odom_: 1691062440.510068922 0.402226 -0.158017 9.44034 -0.0468716 0.00106526 0.0330232 0.27 0.02 pose: 0.9022794 5.07437 0.0535971 0 -0.00328007 -0.00447469 0.0289945 0.999564 uwb: 0.0 829.387 503.096 +imu_odom_: 1691062440.535203201 0.287304 -0.457293 9.44991 -0.0841559 0.0266316 0.0532632 0.27 0.02 pose: 0.0 5.07437 0.0535971 0 -0.00328007 -0.00447469 0.0289945 0.999564 uwb: 0.0 829.387 503.096 +imu_odom_: 1691062440.552030642 0.758962 -0.0933739 10.6231 -0.0479369 -0.02024 0.0287621 0.21 0 pose: 0.47959708 5.08433 0.0544762 0 -0.00323607 -0.00433795 0.0289128 0.999567 uwb: 0.49998505 828.166 502.373 +imu_odom_: 1691062440.577125550 0.502782 -0.241814 9.80665 -0.0777643 -0.0383495 0.0575243 0.21 0 pose: 0.0 5.08433 0.0544762 0 -0.00323607 -0.00433795 0.0289128 0.999567 uwb: 0.0 828.166 502.373 +imu_odom_: 1691062440.601034100 0.639252 -0.105345 10.2232 -0.0458064 0.00958738 0.0351537 0.2 0 pose: 0.76933319 5.10134 0.0559768 0 -0.00195264 -0.0052494 0.029175 0.999559 uwb: 0.49981300 828.536 500.631 +imu_odom_: 1691062440.626371354 0.395043 -0.299275 9.76355 -0.0798948 -0.0287621 0.0575243 0.2 0 pose: 0.6929752 5.10425 0.056235 0 -0.0013835 -0.00563827 0.0291561 0.999558 uwb: 0.0 828.536 500.631 +imu_odom_: 1691062440.650108717 0.778116 -0.181959 10.0102 -0.0607201 0.0255663 0.0330232 0.18 0.02 pose: 0.42316052 5.11151 0.0568785 0 -0.00166052 -0.00477456 0.029344 0.999557 uwb: 0.50010755 826.483 500.346 +imu_odom_: 1691062440.675176503 0.507571 -0.287304 9.85214 -0.0479369 0.0383495 0.0340885 0.18 0.02 pose: 0.0 5.11151 0.0568785 0 -0.00166052 -0.00477456 0.029344 0.999557 uwb: 0.0 826.483 500.346 +imu_odom_: 1691062440.690062552 0.0311246 -0.246603 10.058 -0.0383495 0.0234358 0.0490022 0.22 0.02 pose: 0.30732733 5.11421 0.0571185 0 -0.00170966 -0.00625082 0.0292436 0.999551 uwb: 0.49977216 828.295 498.504 +imu_odom_: 1691062440.707174334 0.469264 -0.248997 10.1538 -0.0458064 -0.0788296 0.0511327 0.22 0.02 pose: 0.0 5.11421 0.0571185 0 -0.00170966 -0.00625082 0.0292436 0.999551 uwb: 0.0 828.295 498.504 +imu_odom_: 1691062440.724121344 0.543484 -0.387861 9.72525 -0.0426106 0.052198 0.0308927 0.18 0 pose: 0.0 5.11421 0.0571185 0 -0.00170966 -0.00625082 0.0292436 0.999551 uwb: 0.0 828.295 498.504 +imu_odom_: 1691062440.749162300 -0.174777 -0.306458 9.42118 -0.0628506 -0.00106526 0.0607201 0.18 0 pose: 0.58158652 5.12417 0.0580025 0 -0.00195264 -0.00409617 0.0293431 0.999559 uwb: 0.49969926 829.306 497.166 +imu_odom_: 1691062440.772167667 0.107739 -0.19393 10.0676 -0.0394148 0.00213053 0.0436758 0.18 -0.02 pose: 0.33899561 5.13162 0.0586654 0 -0.00302328 -0.00169058 0.0295791 0.999556 uwb: 0.0 829.306 497.166 +imu_odom_: 1691062440.788035932 0.474052 -0.464475 9.71567 -0.0468716 -0.0138484 0.0468716 0.18 0 pose: 0.6024236 5.13413 0.0588896 0 -0.00284683 -0.00108042 0.0295931 0.999557 uwb: 0.0 829.306 497.166 +imu_odom_: 1691062440.814038689 0.890643 -0.301669 9.4978 -0.0511327 0 0.036219 0.25 -0.02 pose: 0.0 5.13413 0.0588896 0 -0.00284683 -0.00108042 0.0295931 0.999557 uwb: 0.49868730 830.689 495.46 +imu_odom_: 1691062440.839046108 0.318429 -0.246603 9.79228 -0.0607201 -0.0436758 0.0543285 0.18 0 pose: 0.32849396 5.13909 0.0593341 0 -0.00372944 -8.28618e-050.0296877 0.999552 uwb: 0.49992382 831.639 493.904 +imu_odom_: 1691062440.854209207 0.526724 -0.275333 9.87848 -0.0681769 -0.0106526 0.0351537 0.18 0 pose: 0.0 5.13909 0.0593341 0 -0.00372944 -8.28618e-050.0296877 0.999552 uwb: 0.0 831.639 493.904 +imu_odom_: 1691062440.871157967 0.560243 -0.167594 9.74919 -0.0415453 0.015979 0.036219 0.18 0 pose: 0.33149775 5.14409 0.059782 0 -0.00351517 -0.00207743 0.0296893 0.999551 uwb: 0.0 831.639 493.904 +imu_odom_: 1691062440.895164797 0.184354 -0.572214 9.47864 -0.0585895 0.0276969 0.0511327 0.22 0.02 pose: 0.0 5.14409 0.059782 0 -0.00351517 -0.00207743 0.0296893 0.999551 uwb: 0.50006963 830.405 493.152 +imu_odom_: 1691062440.920178631 0.227449 -0.155623 10.1011 -0.0117179 0 0.0276969 0.22 0.02 pose: 0.56983377 5.15405 0.0606748 0 -0.00237748 -0.0027422 0.0297967 0.999549 uwb: 0.0 830.405 493.152 +imu_odom_: 1691062440.944051019 0.577003 -0.411803 10.0054 -0.0479369 0 0.0276969 0.19 0 pose: 0.42009547 5.16156 0.0613507 0 -0.00186024 0.000796416 0.0297587 0.999555 uwb: 0.50023587 831.091 492.255 +imu_odom_: 1691062440.968117926 0.608127 -0.555455 9.67976 -0.0543285 -0.0458064 0.0490022 0.23 0.02 pose: 0.0 5.16156 0.0613507 0 -0.00186024 0.000796416 0.0297587 0.999555 uwb: 0.0 831.091 492.255 +imu_odom_: 1691062440.992984778 0.691924 -0.438139 9.84975 -0.0383495 -0.00639159 0.0308927 0.23 0.02 pose: 0.23872388 5.16401 0.0615704 0 -0.00325726 -0.00102004 0.029612 0.999556 uwb: 0.0 831.091 492.255 +imu_odom_: 1691062441.8002938 0.584185 0.047884 10.2783 -0.0383495 0.00106526 0.0468716 0.23 0.02 pose: 0.0 5.16401 0.0615704 0 -0.00325726 -0.00102004 0.029612 0.999556 uwb: 0.0 831.091 492.255 +imu_odom_: 1691062441.33000162 0.744597 -0.246603 10.3142 -0.0639159 0.0255663 0.0330232 0.18 0 pose: 0.54950704 5.17397 0.0624624 0 -0.0054039 -0.00527623 0.0296263 0.999533 uwb: 0.0 831.091 492.255 +imu_odom_: 1691062441.47065858 0.105345 -0.059855 9.44513 -0.0543285 0.0191748 0.036219 0.18 0 pose: 0.0 5.17397 0.0624624 0 -0.0054039 -0.00527623 0.0296263 0.999533 uwb: 0.100029984 827.169 492.311 +imu_odom_: 1691062441.62000325 0.414197 -0.160412 10.1969 -0.072438 -0.0181095 0.0553937 0.19 0 pose: 0.0 5.17397 0.0624624 0 -0.0054039 -0.00527623 0.0296263 0.999533 uwb: 0.0 827.169 492.311 +imu_odom_: 1691062441.78997504 0.857124 -0.457293 9.69652 -0.0660464 0.0170442 0.0276969 0.19 0 pose: 0.40011888 5.18393 0.0633544 0 -0.00358087 -0.00682283 0.0295448 0.999534 uwb: 0.0 827.169 492.311 +imu_odom_: 1691062441.104041680 0.445322 -0.172383 10.1969 -0.0607201 0.0298274 0.0532632 0.18 0 pose: 0.39983893 5.19389 0.0642447 0 -0.0031253 -0.00642874 0.0295443 0.999538 uwb: 0.0 827.169 492.311 +imu_odom_: 1691062441.128975037 0.634463 -0.304064 9.91199 -0.0415453 0.0713727 0.0170442 0.18 0 pose: 0.0 5.19389 0.0642447 0 -0.0031253 -0.00642874 0.0295443 0.999538 uwb: 0.0 827.169 492.311 +imu_odom_: 1691062441.150990325 0.756568 -0.316035 9.6223 -0.0500674 0.00745685 0.0479369 0.2 -0.02 pose: 0.8078494 5.19389 0.0642447 0 -0.00252994 -0.00577414 0.0295967 0.999542 uwb: 0.99904906 827.273 491.159 +imu_odom_: 1691062441.175978508 0.782904 -0.0861913 9.67257 -0.0340885 0.02024 0.0181095 0.2 0 pose: 0.0 5.19389 0.0642447 0 -0.00252994 -0.00577414 0.0295967 0.999542 uwb: 0.0 827.273 491.159 +imu_odom_: 1691062441.190978593 0.174777 -0.244209 9.663 -0.0639159 0.0138484 0.0447411 0.19 0 pose: 0.71949368 5.21381 0.0660246 0 -0.00184802 -0.00832171 0.0294245 0.999531 uwb: 0.49988615 827.046 490.492 +imu_odom_: 1691062441.205158608 -0.100556 -0.481235 10.082 -0.0703074 -0.00213053 0.0490022 0.19 0 pose: 0.0 5.21381 0.0660246 0 -0.00184802 -0.00832171 0.0294245 0.999531 uwb: 0.0 827.046 490.492 +imu_odom_: 1691062441.229033049 -0.0646434 -0.215478 10.1801 -0.0394148 0.052198 0.0372843 0.19 0.02 pose: 0.46133242 5.21922 0.0665045 0 -0.00140035 -0.00646104 0.0293431 0.999548 uwb: 0.0 827.046 490.492 +imu_odom_: 1691062441.246074556 0.64404 -0.308852 9.84735 -0.0617853 -0.0319579 0.0553937 0.19 0.02 pose: 0.6881637 5.22377 0.0669095 0 -0.00133542 -0.00557649 0.0293363 0.999553 uwb: 0.50010487 824.486 490.275 +imu_odom_: 1691062441.271131273 0.926556 -0.0694318 9.89524 -0.0415453 0.00106526 0.0245011 0.2 0.02 pose: 0.34034311 5.22377 0.0669095 0 -0.00180332 -0.00523237 0.0294539 0.999551 uwb: 0.0 824.486 490.275 +imu_odom_: 1691062441.295961392 0.744597 -0.134075 10.1227 -0.076699 -0.0138484 0.0426106 0.2 0.02 pose: 0.0 5.22377 0.0669095 0 -0.00180332 -0.00523237 0.0294539 0.999551 uwb: 0.49993573 825.962 488.777 +imu_odom_: 1691062441.310987140 0.124498 -0.337582 9.34696 -0.0468716 -0.0308927 0.0308927 0.18 0 pose: 0.8079369 5.22377 0.0669095 0 -0.00140389 -0.00594097 0.0293901 0.999549 uwb: 0.0 825.962 488.777 +imu_odom_: 1691062441.337014407 0.198719 -0.222661 9.92397 -0.0777643 -0.0191748 0.0468716 0.18 0 pose: 0.0 5.22377 0.0669095 0 -0.00140389 -0.00594097 0.0293901 0.999549 uwb: 0.0 825.962 488.777 +imu_odom_: 1691062441.360027368 0.416591 -0.42138 10.1658 -0.0351537 -0.00745685 0.0255663 0.18 0.02 pose: 0.47843080 5.23373 0.0677964 0 0.000199966 -0.0092498 0.0292567 0.999529 uwb: 0.50123641 826.871 487.055 +imu_odom_: 1691062441.376021625 0.447716 -0.584185 9.89284 -0.0660464 -0.00745685 0.0532632 0.18 0.02 pose: 0.0 5.23373 0.0677964 0 0.000199966 -0.0092498 0.0292567 0.999529 uwb: 0.0 826.871 487.055 +imu_odom_: 1691062441.392964853 0.107739 -0.248997 9.68694 -0.052198 0 0.0468716 0.18 0.02 pose: 0.0 5.23373 0.0677964 0 0.000199966 -0.0092498 0.0292567 0.999529 uwb: 0.49977533 823.878 487.056 +imu_odom_: 1691062441.408954152 0.521936 -0.169988 10.1538 -0.0447411 -0.00319579 0.0447411 0.25 0 pose: 0.41987404 5.24369 0.0686805 0 -0.000948102-0.00579549 0.0292699 0.999554 uwb: 0.0 823.878 487.056 +imu_odom_: 1691062441.432929498 0.414197 -0.399832 9.92875 -0.0479369 -0.04048 0.0458064 0.25 0 pose: 0.0 5.24369 0.0686805 0 -0.000948102-0.00579549 0.0292699 0.999554 uwb: 0.0 823.878 487.056 +imu_odom_: 1691062441.454933704 0.45011 -0.272939 10.0413 -0.0330232 0.0234358 0.036219 0.18 0 pose: 0.88945089 5.26101 0.0702185 0 -0.00428965 -0.00332139 0.0294735 0.999551 uwb: 0.50001447 827.087 484.702 +imu_odom_: 1691062441.471033824 0.220267 -0.148441 9.991 -0.0617853 -0.0213053 0.0596548 0.18 0 pose: 0.0 5.26101 0.0702185 0 -0.00428965 -0.00332139 0.0294735 0.999551 uwb: 0.0 827.087 484.702 +imu_odom_: 1691062441.495956390 0.378284 0.0143652 10.1658 -0.0415453 0.0308927 0.0500674 0.21 0 pose: 0.38104326 5.26925 0.0709534 0 -0.00153946 -0.00054238 0.0295987 0.999561 uwb: 0.49861172 830.808 482.332 +imu_odom_: 1691062441.517999675 0.356736 -0.356736 9.95748 -0.0703074 0.00532632 0.0490022 0.19 0 pose: 0.0 5.26925 0.0709534 0 -0.00153946 -0.00054238 0.0295987 0.999561 uwb: 0.0 830.808 482.332 +imu_odom_: 1691062441.533935314 0.023942 0 9.68933 -0.0458064 -0.00745685 0.0276969 0.18 0 pose: 0.46965851 5.28053 0.0719646 0 -0.0012446 0.000878155 0.0298308 0.999554 uwb: 0.0 830.808 482.332 +imu_odom_: 1691062441.548992849 0.1652 -0.512359 9.8689 -0.072438 0.00958738 0.0617853 0.18 0 pose: 0.0 5.28053 0.0719646 0 -0.0012446 0.000878155 0.0298308 0.999554 uwb: 0.50130057 829.142 481.84 +imu_odom_: 1691062441.574053941 0.222661 -0.220267 10.1801 -0.0394148 0 0.0330232 0.18 0.02 pose: 0.0 5.28053 0.0719646 0 -0.0012446 0.000878155 0.0298308 0.999554 uwb: 0.0 829.142 481.84 +imu_odom_: 1691062441.599912353 0.502782 -0.184354 10.2927 -0.0820254 -0.0628506 0.0553937 0.18 0.02 pose: 0.39029673 5.28354 0.0722353 0 -0.00151734 0.0039174 0.0298784 0.999545 uwb: 0.49949536 832.36 479.433 +imu_odom_: 1691062441.624906953 0.634463 -0.0742203 10.0676 -0.0468716 -0.0490022 0.0287621 0.18 0.02 pose: 0.42883005 5.2935 0.0731316 0 -0.00072274 0.00235102 0.0300342 0.999546 uwb: 0.0 832.36 479.433 +imu_odom_: 1691062441.649921091 0.708684 -0.191536 10.0293 -0.0777643 -0.0372843 0.0543285 0.18 0.02 pose: 0.0 5.2935 0.0731316 0 -0.00072274 0.00235102 0.0300342 0.999546 uwb: 0.49926790 833.383 477.921 +imu_odom_: 1691062441.663953249 0.323217 -0.035913 9.64384 -0.0447411 0.02024 0.0372843 0.2 -0.02 pose: 0.8025417 5.2935 0.0731316 0 -0.0002750350.00148099 0.0299913 0.999549 uwb: 0.0 833.383 477.921 +imu_odom_: 1691062441.688180857 0.299275 -0.122104 9.85693 -0.0905475 0 0.0639159 0.2 -0.02 pose: 0.0 5.2935 0.0731316 0 -0.0002750350.00148099 0.0299913 0.999549 uwb: 0.0 833.383 477.921 +imu_odom_: 1691062441.712113333 0.205901 -0.189142 9.82102 -0.0575243 0.00106526 0.0330232 0.24 0 pose: 0.48017767 5.30346 0.0740302 0 0.001043 -0.00280121 0.0300777 0.999543 uwb: 0.49981324 835.811 476.07 +imu_odom_: 1691062441.737065354 0.339977 -0.457293 9.54808 -0.0713727 0.0319579 0.0479369 0.24 0 pose: 0.0 5.30346 0.0740302 0 0.001043 -0.00280121 0.0300777 0.999543 uwb: 0.0 835.811 476.07 +imu_odom_: 1691062441.752917586 0.162806 -0.311246 10.0604 -0.0298274 -0.0213053 0.0372843 0.18 0.02 pose: 0.81109817 5.32061 0.0755864 0 -0.0008867340.00308753 0.0303702 0.999534 uwb: 0.49980450 838.758 474.221 +imu_odom_: 1691062441.767968998 0.320823 -0.423774 9.91918 -0.0447411 -0.0458064 0.0458064 0.18 0.02 pose: 0.0 5.32061 0.0755864 0 -0.0008867340.00308753 0.0303702 0.999534 uwb: 0.0 838.758 474.221 +imu_odom_: 1691062441.784037912 0.656011 -0.158017 10.1179 -0.0543285 0.015979 0.0436758 0.18 0.02 pose: 0.0 5.32061 0.0755864 0 -0.0008867340.00308753 0.0303702 0.999534 uwb: 0.0 838.758 474.221 +imu_odom_: 1691062441.799902685 0.248997 -0.21069 9.91439 -0.0223706 -0.00745685 0.0383495 0.18 -0.02 pose: 0.6891552 5.32337 0.0758374 0 -0.00110046 0.00365023 0.0303616 0.999532 uwb: 0.50020694 838.071 473.622 +imu_odom_: 1691062441.813926677 0.574608 -0.423774 9.88326 -0.0532632 0.0213053 0.0575243 0.18 -0.02 pose: 0.0 5.32337 0.0758374 0 -0.00110046 0.00365023 0.0303616 0.999532 uwb: 0.0 838.071 473.622 +imu_odom_: 1691062441.839110837 0.61531 -0.356736 10.3765 -0.0319579 0.04048 0.0351537 0.17 0 pose: 0.30982676 5.32337 0.0758374 0 -0.00255257 0.00340476 0.0304038 0.999529 uwb: 0.0 838.071 473.622 +imu_odom_: 1691062441.856048232 0.521936 -0.45011 9.71088 -0.0500674 -0.0394148 0.04048 0.17 0 pose: 0.0 5.32337 0.0758374 0 -0.00255257 0.00340476 0.0304038 0.999529 uwb: 0.50088354 833.639 473.971 +imu_odom_: 1691062441.872090025 0.94571 -0.0957681 9.69891 -0.0607201 -0.0372843 0.052198 0.17 0 pose: 0.0 5.32337 0.0758374 0 -0.00255257 0.00340476 0.0304038 0.999529 uwb: 0.0 833.639 473.971 +imu_odom_: 1691062441.889039376 1.67594 -0.323217 10.07 -0.0575243 -0.0447411 0.0117179 0.21 -0.26 pose: 0.46127993 5.33424 0.0667855 0 -0.00229012 0.00259275 0.0305177 0.999528 uwb: 0.0 833.639 473.971 +imu_odom_: 1691062441.906026348 1.60172 -0.174777 9.21289 -0.0671117 -0.02024 -0.122505 0.13 -0.29 pose: 0.0 5.33424 0.0667855 0 -0.00229012 0.00259275 0.0305177 0.999528 uwb: 0.49985115 827.948 475.162 +imu_odom_: 1691062441.922901042 1.75495 0.141258 9.86411 -0.0607201 0.0213053 -0.213053 0.13 -0.29 pose: 0.75991385 5.3442 0.0676949 0 -0.00330663 -0.0047593 0.0296774 0.999543 uwb: 0.0 827.948 475.162 +imu_odom_: 1691062441.939027117 0.881066 -0.0981623 9.71088 -0.0500674 0.0468716 -0.298274 0.13 -0.29 pose: 0.0 5.3442 0.0676949 0 -0.00330663 -0.0047593 0.0296774 0.999543 uwb: 0.0 827.948 475.162 +imu_odom_: 1691062441.956093704 0.73502 0.158017 9.81862 -0.0575243 0.00213053 -0.374973 0.13 -0.44 pose: 0.0 5.3442 0.0676949 0 -0.00330663 -0.0047593 0.0296774 0.999543 uwb: 0.49755018 829.05 473.863 +imu_odom_: 1691062441.971948853 0.54109 -0.0933739 9.69412 -0.0596548 -0.0234358 -0.394148 0.13 -0.44 pose: 0.33982110 5.35415 0.0686872 0 -0.00228472 -0.00761435 0.0254274 0.999645 uwb: 0.0 829.05 473.863 +imu_odom_: 1691062441.989142300 0.957681 -0.440533 9.98382 -0.0500674 -0.0383495 -0.421845 0.13 -0.55 pose: 0.40907783 5.35415 0.0686872 0 0.00125671 -0.00848133 0.0170717 0.999818 uwb: 0.0 829.05 473.863 +imu_odom_: 1691062442.5006490 0.938527 -0.148441 9.84256 -0.0479369 -0.0330232 -0.434628 0.13 -0.55 pose: 0.0 5.35415 0.0686872 0 0.00125671 -0.00848133 0.0170717 0.999818 uwb: 0.49997365 830.597 472.352 +imu_odom_: 1691062442.20967801 1.08936 0.0023942 10.1442 -0.0383495 -0.0170442 -0.425041 0.13 -0.55 pose: 0.0 5.35415 0.0686872 0 0.00125671 -0.00848133 0.0170717 0.999818 uwb: 0.0 830.597 472.352 +imu_odom_: 1691062442.37908703 1.17555 -0.217872 10.0293 -0.0617853 -0.00958738 -0.437824 0.08 -0.47 pose: 0.7068864 5.35415 0.0686872 0 0.000919914 -0.00920139 0.0154449 0.999838 uwb: 0.0 830.597 472.352 +imu_odom_: 1691062442.52849010 0.85473 -0.148441 9.98861 -0.0468716 0.00213053 -0.492152 0.1 -0.7 pose: 0.0 5.35415 0.0686872 0 0.000919914 -0.00920139 0.0154449 0.999838 uwb: 0.49995632 832.002 470.375 +imu_odom_: 1691062442.66914713 0.68953 -0.162806 10.0892 -0.056459 -0.0351537 -0.494283 0.1 -0.7 pose: 0.0 5.35415 0.0686872 0 0.000919914 -0.00920139 0.0154449 0.999838 uwb: 0.0 832.002 470.375 +imu_odom_: 1691062442.81849770 0.787692 -0.148441 9.57441 -0.0617853 -0.0319579 -0.476173 0.1 -0.7 pose: 0.64849319 5.3641 0.0696944 0 0.00177364 -0.0158478 1.45038e-05 0.999873 uwb: 0.0 832.002 470.375 +imu_odom_: 1691062442.98909367 0.833182 -0.538695 9.63666 -0.0649811 -0.0191748 -0.50174 0.06 -0.5 pose: 0.0 5.3641 0.0696944 0 0.00177364 -0.0158478 1.45038e-05 0.999873 uwb: 0.50112875 831.219 469.515 +imu_odom_: 1691062442.114845889 0.603339 -0.184354 10.0533 -0.0553937 0.0117179 -0.516653 0.06 -0.5 pose: 0.29987060 5.3641 0.0696944 0 0.00255038 -0.0162957 -0.007927 0.999833 uwb: 0.0 831.219 469.515 +imu_odom_: 1691062442.130845986 0.557849 -0.155623 10.161 -0.0617853 0.00213053 -0.476173 0.07 -0.67 pose: 0.0 5.3641 0.0696944 0 0.00255038 -0.0162957 -0.007927 0.999833 uwb: 0.0 831.219 469.515 +imu_odom_: 1691062442.146843167 0.574608 -0.181959 9.94312 -0.0617853 -0.0266316 -0.426106 0.07 -0.67 pose: 0.48037913 5.3641 0.0696944 0 0.00134458 -0.0152894 -0.0208322 0.999665 uwb: 0.50135039 829.647 469.401 +imu_odom_: 1691062442.163891974 0.821211 -0.4956 9.59835 -0.0532632 -0.015979 -0.381365 0.07 -0.67 pose: 0.0 5.3641 0.0696944 0 0.00134458 -0.0152894 -0.0208322 0.999665 uwb: 0.0 829.647 469.401 +imu_odom_: 1691062442.179897029 0.778116 -0.354342 10.0317 -0.0553937 0.00532632 -0.337689 0.05 -0.38 pose: 0.41999965 5.37398 0.0706717 0 4.73243e-05 -0.0138224 -0.0304373 0.999441 uwb: 0.0 829.647 469.401 +imu_odom_: 1691062442.196863303 0.366313 -0.356736 9.7875 -0.0596548 0.0138484 -0.311057 0.05 -0.38 pose: 0.0 5.37398 0.0706717 0 4.73243e-05 -0.0138224 -0.0304373 0.999441 uwb: 0.49901441 831.644 467.631 +imu_odom_: 1691062442.212972763 0.418985 -0.0694318 10.1035 -0.0543285 -0.0245011 -0.296144 0.05 -0.38 pose: 0.0 5.37398 0.0706717 0 4.73243e-05 -0.0138224 -0.0304373 0.999441 uwb: 0.0 831.644 467.631 +imu_odom_: 1691062442.229969950 0.610521 -0.272939 9.81144 -0.0628506 -0.0170442 -0.26312 0.05 -0.32 pose: 0.8004423 5.37405 0.070676 0 -0.000607343-0.014213 -0.0319368 0.999389 uwb: 0.0 831.644 467.631 +imu_odom_: 1691062442.245851354 0.758962 -0.40462 9.83538 -0.0617853 -0.0127832 -0.224771 0.03 -0.26 pose: 0.0 5.37405 0.070676 0 -0.000607343-0.014213 -0.0319368 0.999389 uwb: 0.49934105 832.315 466.508 +imu_odom_: 1691062442.261964021 0.629675 -0.442927 9.96706 -0.0596548 0.00852212 -0.206661 0.03 -0.26 pose: 0.66081768 5.37405 0.0706762 0 -0.00302652 -0.0117014 -0.0427156 0.999014 uwb: 0.0 832.315 466.508 +imu_odom_: 1691062442.277900252 0.476446 -0.155623 10.0628 -0.0553937 0.00426106 -0.194943 0.03 -0.26 pose: 0.0 5.37405 0.0706762 0 -0.00302652 -0.0117014 -0.0427156 0.999014 uwb: 0.0 832.315 466.508 +imu_odom_: 1691062442.294903563 0.488417 -0.220267 9.83538 -0.0553937 -0.00745685 -0.175769 0.03 -0.23 pose: 0.0 5.37405 0.0706762 0 -0.00302652 -0.0117014 -0.0427156 0.999014 uwb: 0.50199198 830.195 466.292 +imu_odom_: 1691062442.310841252 0.517148 -0.268151 9.80426 -0.0628506 -0.0149137 -0.157659 0.03 -0.23 pose: 0.31933411 5.37405 0.0706762 0 -0.00467662 -0.01131 -0.0466465 0.998836 uwb: 0.0 830.195 466.292 +imu_odom_: 1691062442.327999712 0.627281 -0.380678 9.78031 -0.0543285 -0.00745685 -0.143811 0.04 -0.23 pose: 0.0 5.37405 0.0706762 0 -0.00467662 -0.01131 -0.0466465 0.998836 uwb: 0.0 830.195 466.292 +imu_odom_: 1691062442.352980033 0.629675 -0.275333 9.92397 -0.052198 -0.00639159 -0.117179 0.04 -0.23 pose: 0.47934968 5.37405 0.0706762 0 -0.00380638 -0.00812064 -0.0516227 0.998626 uwb: 0.49947811 831.075 465.84 +imu_odom_: 1691062442.368815359 0.512359 -0.299275 9.80186 -0.0596548 0.00106526 -0.0990696 0.03 -0.17 pose: 0.0 5.37405 0.0706762 0 -0.00380638 -0.00812064 -0.0516227 0.998626 uwb: 0.0 831.075 465.84 +imu_odom_: 1691062442.384975854 0.169988 -0.270545 9.83299 -0.0490022 0.0234358 -0.135289 0.02 -0.23 pose: 0.42020379 5.37405 0.0706762 0 -0.0038945 -0.0103334 -0.054992 0.998426 uwb: 0.0 831.075 465.84 +imu_odom_: 1691062442.409824941 0.0215478 0.0143652 9.7037 -0.0575243 -0.0213053 -0.211988 0.03 -0.35 pose: 0.0 5.37405 0.0706762 0 -0.0038945 -0.0103334 -0.054992 0.998426 uwb: 0.49746002 834.74 464.474 +imu_odom_: 1691062442.431805827 0.782904 -0.0670376 9.73482 -0.0553937 -0.0287621 -0.302535 0.03 -0.35 pose: 0.31967532 5.37405 0.0706765 0 -0.00346929 -0.00708135 -0.0578759 0.998293 uwb: 0.0 834.74 464.474 +imu_odom_: 1691062442.447803009 0.732626 -0.222661 9.94551 -0.0617853 0.00958738 -0.334493 0.02 -0.32 pose: 0.0 5.37405 0.0706765 0 -0.00346929 -0.00708135 -0.0578759 0.998293 uwb: 0.50113167 833.162 464.348 +imu_odom_: 1691062442.464859397 0.366313 -0.35913 9.96706 -0.0617853 0.00852212 -0.336624 0.02 -0.32 pose: 0.24119715 5.384 0.0717168 0 -0.00219465 -0.00631889 -0.0611859 0.998104 uwb: 0.0 833.162 464.348 +imu_odom_: 1691062442.489828054 0.52433 -0.167594 9.96467 -0.0458064 -0.00213053 -0.38456 0.02 -0.41 pose: 0.48905227 5.38393 0.071713 0 -0.00216953 -0.00772312 -0.0700793 0.997509 uwb: 0.49925064 833.05 463.989 +imu_odom_: 1691062442.516827052 0.653617 -0.117316 9.85214 -0.0596548 0.00532632 -0.413323 0.02 -0.41 pose: 0.0 5.38393 0.071713 0 -0.00216953 -0.00772312 -0.0700793 0.997509 uwb: 0.0 833.05 463.989 +imu_odom_: 1691062442.541866866 0.52433 -0.344765 10.0245 -0.0649811 0.00106526 -0.435693 0.02 -0.5 pose: 0.7954846 5.384 0.0717174 0 -0.00136454 -0.00746182 -0.0717672 0.997393 uwb: 0.49967642 834.821 463.072 +imu_odom_: 1691062442.558820892 0.653617 -0.383072 9.60314 -0.0649811 -0.00745685 -0.433563 0.02 -0.5 pose: 0.0 5.384 0.0717174 0 -0.00136454 -0.00746182 -0.0717672 0.997393 uwb: 0.0 834.821 463.072 +imu_odom_: 1691062442.583809963 0.395043 -0.201113 10.0389 -0.0639159 -0.00426106 -0.442085 0.02 -0.47 pose: 0.51103257 5.384 0.0717173 0 0.00103396 -0.00881553 -0.0831527 0.996497 uwb: 0.0 834.821 463.072 +imu_odom_: 1691062442.600854686 0.488417 -0.349553 9.73243 -0.0553937 -0.0127832 -0.448476 0.02 -0.47 pose: 0.0 5.384 0.0717173 0 0.00103396 -0.00881553 -0.0831527 0.996497 uwb: 0.50079629 831.516 463.977 +imu_odom_: 1691062442.616794707 0.407014 -0.304064 9.991 -0.0660464 0.00319579 -0.462325 0.02 -0.5 pose: 0.43028843 5.384 0.0717172 0 -0.00203053 -0.00803989 -0.0933221 0.995601 uwb: 0.0 831.516 463.977 +imu_odom_: 1691062442.642846485 0.471658 -0.270545 9.84975 -0.056459 -0.00532632 -0.46339 0.02 -0.5 pose: 0.41873396 5.384 0.0717171 0 -0.0032858 -0.00500126 -0.103481 0.994613 uwb: 0.50033259 831.802 463.247 +imu_odom_: 1691062442.664809582 0.536301 -0.318429 9.84975 -0.0575243 -0.015979 -0.467651 0.03 -0.53 pose: 0.34026746 5.38395 0.0717141 0 -0.00280662 -0.00171476 -0.111976 0.993705 uwb: 0.0 831.802 463.247 +imu_odom_: 1691062442.689854354 0.383072 -0.136469 9.88805 -0.0575243 -0.0106526 -0.493217 0.03 -0.53 pose: 0.0 5.38395 0.0717141 0 -0.00280662 -0.00171476 -0.111976 0.993705 uwb: 0.0 831.802 463.247 +imu_odom_: 1691062442.713849251 0.4956 -0.059855 9.94073 -0.0436758 -0.00958738 -0.540089 0.02 -0.64 pose: 0.6128938 5.384 0.0717172 0 -0.00317523 -0.00225062 -0.113521 0.993528 uwb: 0.0 831.802 463.247 +imu_odom_: 1691062442.728902420 0.639252 -0.287304 9.89524 -0.056459 -0.0117179 -0.543285 0.02 -0.64 pose: 0.0 5.384 0.0717172 0 -0.00317523 -0.00225062 -0.113521 0.993528 uwb: 0.0 831.802 463.247 +imu_odom_: 1691062442.743950922 0.557849 -0.320823 9.75877 -0.0511327 -0.00426106 -0.569916 0.02 -0.64 pose: 0.0 5.384 0.0717172 0 -0.00317523 -0.00225062 -0.113521 0.993528 uwb: 0.99939368 830.382 463.645 +imu_odom_: 1691062442.761057763 0.438139 -0.0957681 9.87369 -0.0490022 -0.00426106 -0.600809 0.02 -0.61 pose: 0.47837854 5.384 0.0717178 0 -0.00120175 -0.00284925 -0.126141 0.992007 uwb: 0.0 830.382 463.645 +imu_odom_: 1691062442.785917349 0.701501 -0.201113 9.77313 -0.072438 -0.0308927 -0.60507 0.02 -0.61 pose: 0.0 5.384 0.0717178 0 -0.00120175 -0.00284925 -0.126141 0.992007 uwb: 0.0 830.382 463.645 +imu_odom_: 1691062442.802800800 0.505177 -0.351948 9.86172 -0.056459 0.00319579 -0.616788 0.01 -0.61 pose: 0.72126424 5.384 0.0717178 0 -0.000191798-0.00561142 -0.147863 0.988992 uwb: 0.50135330 827.94 464.078 +imu_odom_: 1691062442.818833560 0.47884 -0.129287 10.0197 -0.0511327 -0.0117179 -0.640224 0.01 -0.61 pose: 0.0 5.384 0.0717178 0 -0.000191798-0.00561142 -0.147863 0.988992 uwb: 0.0 827.94 464.078 +imu_odom_: 1691062442.835776213 0.311246 -0.148441 9.65103 -0.0575243 0 -0.647681 0.02 -0.97 pose: 0.49893859 5.38927 0.0722911 0 -0.000517887-0.00619964 -0.164119 0.986421 uwb: 0.0 827.94 464.078 +imu_odom_: 1691062442.851766103 0.366313 -0.208296 9.94791 -0.0500674 -0.0181095 -0.666856 0.02 -0.97 pose: 0.0 5.38927 0.0722911 0 -0.000517887-0.00619964 -0.164119 0.986421 uwb: 0.49861197 827.4 464.005 +imu_odom_: 1691062442.868766207 0.701501 -0.186748 9.73961 -0.0596548 -0.0170442 -0.692422 0.02 -0.97 pose: 0.0 5.38927 0.0722911 0 -0.000517887-0.00619964 -0.164119 0.986421 uwb: 0.0 827.4 464.005 +imu_odom_: 1691062442.884825214 0.68953 -0.213084 10.0269 -0.056459 -0.00532632 -0.702009 0.01 -0.73 pose: 0.6944050 5.39394 0.0727592 0 -0.000219775-0.00555257 -0.166474 0.98603 uwb: 0.0 827.4 464.005 +imu_odom_: 1691062442.901761742 0.620098 -0.318429 9.71328 -0.0607201 -0.00106526 -0.714792 0.01 -0.73 pose: 0.0 5.39394 0.0727592 0 -0.000219775-0.00555257 -0.166474 0.98603 uwb: 0.50046091 828.689 463.198 +imu_odom_: 1691062442.917762423 0.452504 -0.263362 9.95748 -0.0490022 -0.00958738 -0.729706 0.01 -0.73 pose: 0.0 5.39394 0.0727592 0 -0.000219775-0.00555257 -0.166474 0.98603 uwb: 0.0 828.689 463.198 +imu_odom_: 1691062442.934766318 0.409408 -0.148441 10.0197 -0.0607201 -0.0117179 -0.72651 0.01 -1 pose: 0.50998561 5.39394 0.0727593 0 -0.000106867-0.00569735 -0.184466 0.982822 uwb: 0.0 828.689 463.198 +imu_odom_: 1691062442.950760583 0.59855 -0.272939 9.94073 -0.056459 -0.0298274 -0.735032 0.01 -0.76 pose: 0.0 5.39394 0.0727593 0 -0.000106867-0.00569735 -0.184466 0.982822 uwb: 0.49995056 832.921 461.939 +imu_odom_: 1691062442.967829220 0.617704 -0.198719 9.90002 -0.0532632 -0.00745685 -0.782969 0.01 -0.76 pose: 0.65999528 5.39394 0.0727602 0 -0.00137252 -0.0053259 -0.209104 0.977878 uwb: 0.0 832.921 461.939 +imu_odom_: 1691062442.992745382 0.536301 -0.0933739 10.1107 -0.0596548 -0.0213053 -0.782969 0 -0.79 pose: 0.0 5.39394 0.0727602 0 -0.00137252 -0.0053259 -0.209104 0.977878 uwb: 0.50003221 835.209 461.013 +imu_odom_: 1691062443.9811108 0.565032 -0.23942 9.61511 -0.0596548 -0.0170442 -0.778708 0 -0.79 pose: 0.33331787 5.39394 0.0727599 0 -0.000912336-0.00783999 -0.222307 0.974945 uwb: 0.0 835.209 461.013 +imu_odom_: 1691062443.25922908 0.430956 -0.392649 10.0413 -0.0671117 -0.0234358 -0.791491 0 -0.79 pose: 0.0 5.39394 0.0727599 0 -0.000912336-0.00783999 -0.222307 0.974945 uwb: 0.0 835.209 461.013 +imu_odom_: 1691062443.41749201 0.426168 -0.148441 9.93833 -0.0553937 -0.00958738 -0.80534 0 -0.88 pose: 0.41822369 5.39394 0.0727599 0 -0.00155794 -0.00755929 -0.239037 0.97098 uwb: 0.50033571 833.715 461.177 +imu_odom_: 1691062443.57744640 0.500388 -0.203507 9.94312 -0.0575243 -0.0287621 -0.80534 0 -0.88 pose: 0.0 5.39394 0.0727599 0 -0.00155794 -0.00755929 -0.239037 0.97098 uwb: 0.0 833.715 461.177 +imu_odom_: 1691062443.74743294 0.502782 -0.31364 9.93833 -0.0681769 -0.0276969 -0.819188 0 -1.06 pose: 0.39814785 5.39387 0.0727553 0 -0.000569587-0.00462183 -0.255287 0.966854 uwb: 0.0 833.715 461.177 +imu_odom_: 1691062443.90747774 0.596156 -0.268151 9.80426 -0.0745685 -0.0127832 -0.814927 0 -1.06 pose: 0.0 5.39387 0.0727553 0 -0.000569587-0.00462183 -0.255287 0.966854 uwb: 0.50085194 833.674 461.042 +imu_odom_: 1691062443.107852874 0.428562 -0.296881 9.96227 -0.0596548 -0.0319579 -0.836233 0 -1.06 pose: 0.0 5.39387 0.0727553 0 -0.000569587-0.00462183 -0.255287 0.966854 uwb: 0.0 833.674 461.042 +imu_odom_: 1691062443.123756449 0.521936 -0.110133 9.89045 -0.0671117 -0.0223706 -0.837298 0 -0.85 pose: 0.7069163 5.39394 0.07276 0 -0.00131702 -0.00456729 -0.258218 0.966075 uwb: 0.0 833.674 461.042 +imu_odom_: 1691062443.140737313 0.701501 -0.35913 9.78989 -0.0490022 -0.02024 -0.828776 0 -0.85 pose: 0.0 5.39394 0.07276 0 -0.00131702 -0.00456729 -0.258218 0.966075 uwb: 0.49787146 832.832 461.647 +imu_odom_: 1691062443.156852030 0.383072 -0.234632 9.91678 -0.056459 -0.00213053 -0.833037 0 -0.85 pose: 0.0 5.39394 0.07276 0 -0.00131702 -0.00456729 -0.258218 0.966075 uwb: 0.0 832.832 461.647 +imu_odom_: 1691062443.173849517 0.351948 -0.280122 10.0413 -0.0511327 -0.00532632 -0.851146 0 -1.09 pose: 0.50924220 5.39394 0.0727599 0 -0.00304798 -0.00478695 -0.279446 0.960145 uwb: 0.0 832.832 461.647 +imu_odom_: 1691062443.189976774 0.56982 -0.186748 9.83777 -0.0532632 -0.0149137 -0.850081 0 -1.09 pose: 0.0 5.39394 0.0727599 0 -0.00304798 -0.00478695 -0.279446 0.960145 uwb: 0.50086361 833.316 461.546 +imu_odom_: 1691062443.206725208 0.622492 -0.337582 10.07 -0.0575243 -0.0191748 -0.841559 0 -1.09 pose: 0.47999150 5.39394 0.0727599 0 -0.0029193 -0.00422493 -0.299529 0.954073 uwb: 0.0 833.316 461.546 +imu_odom_: 1691062443.222834384 0.203507 -0.349553 9.53611 -0.0617853 -0.00426106 -0.836233 0 -0.85 pose: 0.0 5.39394 0.0727599 0 -0.0029193 -0.00422493 -0.299529 0.954073 uwb: 0.0 833.316 461.546 +imu_odom_: 1691062443.239780544 0.392649 -0.258574 10.0987 -0.0511327 -0.0117179 -0.844755 0 -1.17 pose: 0.0 5.39394 0.0727599 0 -0.0029193 -0.00422493 -0.299529 0.954073 uwb: 0.49930629 830.504 462.449 +imu_odom_: 1691062443.255724656 0.454898 -0.059855 9.88566 -0.0575243 -0.0138484 -0.84795 0 -1.17 pose: 0.66061094 5.39394 0.0727603 0 -0.0035626 -0.00358886 -0.327237 0.944929 uwb: 0.0 830.504 462.449 +imu_odom_: 1691062443.272838796 0.612916 -0.153229 9.79707 -0.052198 -0.0181095 -0.844755 0 -1.17 pose: 0.0 5.39394 0.0727603 0 -0.0035626 -0.00358886 -0.327237 0.944929 uwb: 0.0 830.504 462.449 +imu_odom_: 1691062443.288841818 0.368707 -0.325611 9.74201 -0.0468716 -0.00958738 -0.826645 0 -1.17 pose: 0.0 5.39394 0.0727603 0 -0.0035626 -0.00358886 -0.327237 0.944929 uwb: 0.0 830.504 462.449 +imu_odom_: 1691062443.305829389 0.605733 -0.387861 10.0365 -0.072438 -0.0330232 -0.76486 0 -1.17 pose: 0.32994677 5.39394 0.0727605 0 -0.00158902 -0.00393378 -0.341017 0.940048 uwb: 0.49988665 831.338 461.818 +imu_odom_: 1691062443.321767669 0.514753 -0.423774 9.74679 -0.0553937 -0.015979 -0.713727 0 -0.7 pose: 0.43036445 5.39388 0.0727563 0 -0.00377677 -0.0042614 -0.358063 0.93368 uwb: 0.0 831.338 461.818 +imu_odom_: 1691062443.338881226 0.497994 -0.507571 10.0078 -0.0543285 -0.00319579 -0.659399 0 -0.7 pose: 0.6886310 5.39394 0.0727605 0 -0.00443608 -0.00409597 -0.36048 0.932748 uwb: 0.0 831.338 461.818 +imu_odom_: 1691062443.354708393 0.64404 -0.275333 9.90721 -0.0585895 -0.0266316 -0.600809 0 -0.7 pose: 0.0 5.39394 0.0727605 0 -0.00443608 -0.00409597 -0.36048 0.932748 uwb: 0.49986039 830.44 462.248 +imu_odom_: 1691062443.370709082 0.486023 -0.366313 9.89045 -0.0511327 0.00745685 -0.551807 0 -0.85 pose: 0.41992694 5.39387 0.0727565 0 -0.00702631 -0.00494721 -0.373915 0.927423 uwb: 0.0 830.44 462.248 +imu_odom_: 1691062443.387762854 0.553061 -0.328006 10.003 -0.0585895 -0.0266316 -0.523045 0 -0.58 pose: 0.0 5.39387 0.0727565 0 -0.00702631 -0.00494721 -0.373915 0.927423 uwb: 0.0 830.44 462.248 +imu_odom_: 1691062443.404715722 0.574608 -0.158017 9.73961 -0.0468716 -0.00532632 -0.509196 0 -0.58 pose: 0.0 5.39387 0.0727565 0 -0.00702631 -0.00494721 -0.373915 0.927423 uwb: 0.49994788 828.455 462.483 +imu_odom_: 1691062443.420707370 0.509965 -0.28491 9.92636 -0.0500674 0 -0.48363 0 -0.47 pose: 0.24012115 5.39394 0.0727605 0 -0.00793816 -0.00427886 -0.380374 0.924789 uwb: 0.0 828.455 462.483 +imu_odom_: 1691062443.436698726 0.397437 -0.383072 9.81623 -0.052198 0 -0.449542 0 -0.47 pose: 0.0 5.39394 0.0727605 0 -0.00793816 -0.00427886 -0.380374 0.924789 uwb: 0.0 828.455 462.483 +imu_odom_: 1691062443.453720711 0.454898 -0.435745 9.99819 -0.0511327 -0.0127832 -0.407996 0 -0.47 pose: 0.33980976 5.39394 0.0727606 0 -0.00632873 -0.00540794 -0.388961 0.921217 uwb: 0.49990997 831.095 461.033 +imu_odom_: 1691062443.470699533 0.390255 -0.349553 9.89763 -0.0585895 -0.0149137 -0.357929 0 -0.58 pose: 0.41019227 5.39394 0.0727606 0 -0.00740141 -0.00204381 -0.397962 0.91737 uwb: 0.0 831.095 461.033 +imu_odom_: 1691062443.486698181 0.402226 -0.35913 9.89284 -0.052198 -0.0149137 -0.318514 0 -0.58 pose: 0.6984589 5.39394 0.0727606 0 -0.00725564 -0.00140487 -0.399232 0.91682 uwb: 0.0 831.095 461.033 +imu_odom_: 1691062443.513699817 0.488417 -0.100556 9.84496 -0.0500674 -0.0106526 -0.305731 0 -0.53 pose: 0.0 5.39394 0.0727606 0 -0.00725564 -0.00140487 -0.399232 0.91682 uwb: 0.49991873 832.901 460.199 +imu_odom_: 1691062443.538763557 0.395043 -0.335188 9.91439 -0.0585895 0.00106526 -0.302535 0 -0.35 pose: 0.34000224 5.39394 0.0727609 0 -0.00625876 0.0004959 -0.404927 0.914327 uwb: 0.50006162 830.974 460.652 +imu_odom_: 1691062443.563755265 0.301669 0.0454898 9.89045 -0.0490022 -0.00852212 -0.409062 0 -0.47 pose: 0.44058033 5.39394 0.072761 0 -0.00521623 0.00181863 -0.41183 0.911244 uwb: 0.0 830.974 460.652 +imu_odom_: 1691062443.577806101 0.292093 0.0574608 9.8282 -0.0532632 -0.0191748 -0.437824 0 -0.47 pose: 0.0 5.39394 0.072761 0 -0.00521623 0.00181863 -0.41183 0.911244 uwb: 0.0 830.974 460.652 +imu_odom_: 1691062443.593805331 0.481235 -0.248997 9.88326 -0.0553937 -0.0181095 -0.486826 0 -0.44 pose: 0.0 5.39394 0.072761 0 -0.00521623 0.00181863 -0.41183 0.911244 uwb: 0.49881051 830.404 460.486 +imu_odom_: 1691062443.609756734 0.447716 -0.184354 9.85453 -0.0468716 -0.00958738 -0.52411 0 -0.44 pose: 0.45997095 5.39394 0.072761 0 -0.00166114 0.000438912 -0.421641 0.906761 uwb: 0.0 830.404 460.486 +imu_odom_: 1691062443.636679630 0.459687 -0.445322 9.82341 -0.0575243 -0.0149137 -0.536893 0 -0.53 pose: 0.0 5.39394 0.072761 0 -0.00166114 0.000438912 -0.421641 0.906761 uwb: 0.0 830.404 460.486 +imu_odom_: 1691062443.661696417 0.608127 -0.107739 9.89045 -0.0479369 -0.0117179 -0.58483 0 -0.53 pose: 0.32988261 5.39394 0.0727611 0 -0.00163366 -0.00135138 -0.429949 0.90285 uwb: 0.49979332 829.82 460.276 +imu_odom_: 1691062443.688677639 0.466869 -0.251391 9.91678 -0.0607201 -0.00958738 -0.609331 0 -0.7 pose: 0.43947504 5.39388 0.0727575 0 -0.00259615 -0.00330906 -0.441891 0.897059 uwb: 0.50024243 828.457 460.881 +imu_odom_: 1691062443.713719507 0.308852 -0.167594 9.9527 -0.0532632 0.00106526 -0.631702 0 -0.7 pose: 0.8054880 5.39394 0.0727611 0 -0.00293449 -0.00258515 -0.444231 0.895904 uwb: 0.0 828.457 460.881 +imu_odom_: 1691062443.739808918 0.483629 -0.217872 9.98143 -0.056459 -0.0287621 -0.656203 0 -0.85 pose: 0.43968210 5.39371 0.072747 0 -0.00143474 0.000271139 -0.457211 0.889357 uwb: 0.0 828.457 460.881 +imu_odom_: 1691062443.755806690 0.708684 -0.0694318 9.90242 -0.0511327 -0.0223706 -0.691357 0 -0.85 pose: 0.0 5.39371 0.072747 0 -0.00143474 0.000271139 -0.457211 0.889357 uwb: 0.0 828.457 460.881 +imu_odom_: 1691062443.772667985 0.517148 -0.0861913 9.90481 -0.0585895 -0.0117179 -0.698813 0 -0.91 pose: 0.0 5.39371 0.072747 0 -0.00143474 0.000271139 -0.457211 0.889357 uwb: 0.0 828.457 460.881 +imu_odom_: 1691062443.797727060 0.0694318 -0.299275 9.65103 -0.052198 0.00852212 -0.730771 0 -0.91 pose: 0.49022487 5.39394 0.0727616 0 -0.00133406 -0.00480273 -0.472692 0.881214 uwb: 0.99963914 831.221 459.787 +imu_odom_: 1691062443.823833968 0.464475 -0.248997 9.83299 -0.0596548 -0.0394148 -0.738228 0 -0.91 pose: 0.34985066 5.39371 0.0727469 0 0.000126831 -0.00288269 -0.484393 0.874846 uwb: 0.0 831.221 459.787 +imu_odom_: 1691062443.848657987 0.459687 -0.143652 9.94791 -0.0596548 -0.0181095 -0.755272 0 -0.91 pose: 0.8068294 5.39394 0.0727609 0 -0.000719955-0.00276239 -0.487134 0.873322 uwb: 0.50038533 832.075 459.202 +imu_odom_: 1691062443.874766062 0.253785 -0.162806 9.74201 -0.0628506 0.00532632 -0.778708 0 -0.91 pose: 0.42862633 5.39371 0.0727468 0 -0.000423456-0.00359035 -0.501808 0.864971 uwb: 0.0 832.075 459.202 +imu_odom_: 1691062443.898657442 0.229843 -0.246603 9.75398 -0.0596548 -0.0106526 -0.80534 0 -0.82 pose: 0.0 5.39371 0.0727468 0 -0.000423456-0.00359035 -0.501808 0.864971 uwb: 0.49948127 831.97 458.865 +imu_odom_: 1691062443.915641222 0.694318 -0.189142 10.1059 -0.0649811 -0.0255663 -0.801079 0 -0.82 pose: 0.33119495 5.39394 0.0727608 0 0.00127085 -0.000659586-0.513571 0.858046 uwb: 0.0 831.97 458.865 +imu_odom_: 1691062443.941645476 0.378284 -0.387861 9.78989 -0.0681769 0.00426106 -0.800014 0 -0.79 pose: 0.0 5.39394 0.0727608 0 0.00127085 -0.000659586-0.513571 0.858046 uwb: 0.50113774 833.389 458.427 +imu_odom_: 1691062443.957799272 0.4956 -0.311246 10.1083 -0.0596548 -0.00532632 -0.811731 0 -0.79 pose: 0.40865245 5.39394 0.0727606 0 -8.36158e-06-9.72928e-05-0.528261 0.849082 uwb: 0.0 833.389 458.427 +imu_odom_: 1691062443.981793889 0.416591 0.0023942 9.83059 -0.0607201 -0.0181095 -0.829841 0 -0.79 pose: 0.0 5.39394 0.0727606 0 -8.36158e-06-9.72928e-05-0.528261 0.849082 uwb: 0.0 833.389 458.427 +imu_odom_: 1691062443.998784377 0.78051 -0.153229 10.149 -0.0639159 -0.0436758 -0.820254 0 -0.88 pose: 0.42076101 5.39394 0.0727606 0 -0.0024375 0.000142277 -0.543342 0.839508 uwb: 0.49996247 832.332 458.36 +imu_odom_: 1691062444.14659379 0.241814 -0.385466 9.51216 -0.0585895 -0.015979 -0.830906 0 -0.88 pose: 0.0 5.39394 0.0727606 0 -0.0024375 0.000142277 -0.543342 0.839508 uwb: 0.0 832.332 458.36 +imu_odom_: 1691062444.39630101 0.433351 -0.126893 9.8258 -0.0628506 -0.0266316 -0.855407 0 -1.11 pose: 0.49940551 5.39368 0.0727443 0 -0.00209612 -0.00114504 -0.561377 0.827557 uwb: 0.49941147 829.497 459.246 +imu_odom_: 1691062444.64625904 0.665588 -0.316035 10.3046 -0.0596548 -0.0223706 -0.840494 0 -1.11 pose: 0.0 5.39368 0.0727443 0 -0.00209612 -0.00114504 -0.561377 0.827557 uwb: 0.0 829.497 459.246 +imu_odom_: 1691062444.88737768 0.737414 -0.172383 10.0844 -0.0628506 -0.0213053 -0.870321 0 -0.85 pose: 0.6991301 5.39394 0.07276 0 -0.00154215 -0.00153431 -0.563965 0.825796 uwb: 0.49988688 831.31 458.407 +imu_odom_: 1691062444.105742846 0.514753 -0.0526724 9.65103 -0.0628506 -0.0298274 -0.879908 0 -0.85 pose: 0.0 5.39394 0.07276 0 -0.00154215 -0.00153431 -0.563965 0.825796 uwb: 0.0 831.31 458.407 +imu_odom_: 1691062444.121621932 0.433351 -0.059855 9.93354 -0.0575243 0.0117179 -0.880974 0 -0.88 pose: 0.49063047 5.39394 0.0727627 0 -0.00283934 -0.00431858 -0.581835 0.81329 uwb: 0.0 831.31 458.407 +imu_odom_: 1691062444.148617457 0.395043 -0.258574 9.59596 -0.0607201 -0.0458064 -0.878843 0 -0.88 pose: 0.0 5.39394 0.0727627 0 -0.00283934 -0.00431858 -0.581835 0.81329 uwb: 0.50054306 830.978 459.002 +imu_odom_: 1691062444.164787883 0.612916 -0.311246 9.79707 -0.0660464 -0.0255663 -0.889496 0 -1 pose: 0.77903730 5.39347 0.0727364 0 -0.00128281 -0.0044055 -0.610531 0.791979 uwb: 0.0 830.978 459.002 +imu_odom_: 1691062444.181724136 0.723049 -0.0670376 10.0748 -0.0607201 -0.00106526 -0.894822 0 -1 pose: 0.7124285 5.39394 0.0727622 0 -0.00205234 -0.00453267 -0.613145 0.789955 uwb: 0.0 830.978 459.002 +imu_odom_: 1691062444.197898937 0.605733 -0.1652 10.1394 -0.0660464 -0.02024 -0.882039 0 -1 pose: 0.0 5.39394 0.0727622 0 -0.00205234 -0.00453267 -0.613145 0.789955 uwb: 0.50105924 834.21 457.733 +imu_odom_: 1691062444.214757032 0.531513 -0.280122 9.91199 -0.0585895 -0.0234358 -0.874582 0 -0.97 pose: 0.34028820 5.39394 0.0727622 0 -0.00349572 -0.00714059 -0.625556 0.780139 uwb: 0.0 834.21 457.733 +imu_odom_: 1691062444.230764728 0.56982 -0.361524 9.76834 -0.0596548 -0.0213053 -0.8863 0 -0.97 pose: 0.0 5.39394 0.0727622 0 -0.00349572 -0.00714059 -0.625556 0.780139 uwb: 0.0 834.21 457.733 +imu_odom_: 1691062444.247629239 0.706289 -0.162806 9.96706 -0.0596548 0.0127832 -0.895887 0 -1.23 pose: 0.0 5.39394 0.0727622 0 -0.00349572 -0.00714059 -0.625556 0.780139 uwb: 0.49947568 833.202 457.821 +imu_odom_: 1691062444.264664647 0.469264 -0.323217 10.0365 -0.0681769 0.00319579 -0.889496 0 -1.23 pose: 0.48003548 5.39394 0.0727621 0 -0.00622421 -0.00644279 -0.642653 0.766105 uwb: 0.0 833.202 457.821 +imu_odom_: 1691062444.289614079 0.521936 -0.332794 10.1778 -0.0490022 -0.0223706 -0.909736 0 -0.88 pose: 0.0 5.39394 0.0727621 0 -0.00622421 -0.00644279 -0.642653 0.766105 uwb: 0.49911114 834.244 457.845 +imu_odom_: 1691062444.306616533 0.215478 -0.0861913 9.66539 -0.0617853 0.0298274 -0.899083 0 -0.91 pose: 0.33838967 5.39394 0.0727621 0 -0.00661068 -0.00501717 -0.654688 0.755854 uwb: 0.0 834.244 457.845 +imu_odom_: 1691062444.321659217 -0.0742203 -0.162806 10.1754 -0.0607201 0.00958738 -0.874582 0.01 -0.97 pose: 0.0 5.39394 0.0727621 0 -0.00661068 -0.00501717 -0.654688 0.755854 uwb: 0.0 834.244 457.845 +imu_odom_: 1691062444.336651449 -0.557849 -0.483629 9.55765 -0.0585895 0.00213053 -0.921454 0.01 -0.97 pose: 0.0 5.39394 0.0727621 0 -0.00661068 -0.00501717 -0.654688 0.755854 uwb: 0.0 834.244 457.845 +imu_odom_: 1691062444.352654187 -0.280122 0.0407014 10.3621 -0.0532632 -0.0181095 -0.932106 0.01 -0.97 pose: 0.41002332 5.39394 0.0727641 0 -0.00501114 -0.00240526 -0.669131 0.743124 uwb: 0.49997438 834.326 458.115 +imu_odom_: 1691062444.368586350 -0.514753 -0.205901 9.81383 -0.0777643 -0.00852212 -0.797883 0.03 -0.82 pose: 0.0 5.39394 0.0727641 0 -0.00501114 -0.00240526 -0.669131 0.743124 uwb: 0.0 834.326 458.115 +imu_odom_: 1691062444.385648879 -0.493206 -0.787692 9.87848 -0.0596548 -0.0639159 -0.666856 0.03 -0.82 pose: 0.31058837 5.39394 0.0727641 0 -0.00289109 -0.000225485-0.680022 0.733186 uwb: 0.0 834.326 458.115 +imu_odom_: 1691062444.402586299 -0.213084 -0.687136 9.50737 -0.0436758 -0.104396 -0.609331 0.07 -0.85 pose: 0.41974633 5.39472 0.0627968 0 -0.00114834 0.00260462 -0.692427 0.721483 uwb: 0.49988396 833.915 458.462 +imu_odom_: 1691062444.419580586 0.574608 -0.0933739 9.9096 -0.0596548 -0.036219 -0.583765 0.07 -0.85 pose: 0.0 5.39472 0.0627968 0 -0.00114834 0.00260462 -0.692427 0.721483 uwb: 0.0 833.915 458.462 +imu_odom_: 1691062444.435582157 0.646434 0.114922 10.0293 -0.0479369 -0.0127832 -0.590156 0.07 -0.85 pose: 0.0 5.39472 0.0627968 0 -0.00114834 0.00260462 -0.692427 0.721483 uwb: 0.0 833.915 458.462 +imu_odom_: 1691062444.451627765 0.136469 -0.0383072 9.91918 -0.0607201 0.0308927 -0.586961 0.08 -0.61 pose: 0.7955437 5.39478 0.0627998 0 -0.00128042 0.00306906 -0.694284 0.719694 uwb: 0.50184082 833.094 459.157 +imu_odom_: 1691062444.468725874 0.217872 -0.428562 10.1897 -0.0426106 0.00745685 -0.569916 0.09 -0.55 pose: 0.0 5.39478 0.0627998 0 -0.00128042 0.00306906 -0.694284 0.719694 uwb: 0.0 833.094 459.157 +imu_odom_: 1691062444.485616632 0.0694318 -0.37589 10.0341 -0.0788296 0.00106526 -0.519849 0.09 -0.55 pose: 0.66074541 5.39478 0.0627998 0 0.000377829 0.0013742 -0.709056 0.70515 uwb: 0.0 833.094 459.157 +imu_odom_: 1691062444.502601004 0.241814 -0.282516 9.98143 -0.072438 0 -0.491087 0.1 -0.5 pose: 0.0 5.39478 0.0627998 0 0.000377829 0.0013742 -0.709056 0.70515 uwb: 0.49861245 830.836 460.203 +imu_odom_: 1691062444.519714278 0.0622492 -0.270545 9.88566 -0.0703074 -0.0511327 -0.442085 0.1 -0.5 pose: 0.0 5.39478 0.0627998 0 0.000377829 0.0013742 -0.709056 0.70515 uwb: 0.0 830.836 460.203 +imu_odom_: 1691062444.537717321 0.354342 -0.318429 9.72285 -0.0703074 -0.0149137 -0.436758 0.1 -0.5 pose: 0.33958537 5.39562 0.0528349 0 0.00122773 0.00476926 -0.715791 0.698298 uwb: 0.0 830.836 460.203 +imu_odom_: 1691062444.554681279 0.155623 -0.213084 9.8665 -0.0585895 0.00852212 -0.410127 0.1 -0.47 pose: 0.34088897 5.39562 0.0528349 0 0.00161114 0.00645851 -0.721626 0.692251 uwb: 0.49971482 828.184 461.633 +imu_odom_: 1691062444.569733296 0.560243 -0.335188 10.0149 -0.0735032 -0.0671117 -0.380299 0.1 -0.47 pose: 0.0 5.39562 0.0528349 0 0.00161114 0.00645851 -0.721626 0.692251 uwb: 0.0 828.184 461.633 +imu_odom_: 1691062444.585563970 1.21625 -0.397437 9.72764 -0.0735032 -0.056459 -0.353668 0.1 -0.47 pose: 0.0 5.39562 0.0528349 0 0.00161114 0.00645851 -0.721626 0.692251 uwb: 0.0 828.184 461.633 +imu_odom_: 1691062444.601624743 1.26893 -0.248997 10.1083 -0.0649811 0.0298274 -0.320645 0.09 -0.38 pose: 0.48017254 5.3965 0.0428733 0 -0.0001683210.0053605 -0.728886 0.684614 uwb: 0.49840248 827.829 462.141 +imu_odom_: 1691062444.617559822 1.41976 -0.533907 10.1873 -0.0585895 0.0106526 -0.285491 0.09 -0.38 pose: 0.0 5.3965 0.0428733 0 -0.0001683210.0053605 -0.728886 0.684614 uwb: 0.0 827.829 462.141 +imu_odom_: 1691062444.633565768 1.14922 -0.122104 9.70849 -0.0585895 0.00639159 -0.26099 0.07 -0.38 pose: 0.41816277 5.38647 0.0420061 0 -0.00351387 0.0030377 -0.733957 0.67918 uwb: 0.0 827.829 462.141 +imu_odom_: 1691062444.649558007 1.03908 -0.0694318 9.96706 -0.0372843 0.00958738 -0.24288 0.07 -0.38 pose: 0.0 5.38647 0.0420061 0 -0.00351387 0.0030377 -0.733957 0.67918 uwb: 0.50012893 827.453 462.582 +imu_odom_: 1691062444.665556662 0.938527 -0.181959 9.76116 -0.0617853 0.00213053 -0.24075 0.07 -0.38 pose: 0.0 5.38647 0.0420061 0 -0.00351387 0.0030377 -0.733957 0.67918 uwb: 0.0 827.453 462.582 +imu_odom_: 1691062444.682549783 0.699107 -0.196325 10.1203 -0.056459 0.00745685 -0.252468 0.07 -0.38 pose: 0.7005882 5.38653 0.0420089 0 -0.00388308 0.00248262 -0.734674 0.678405 uwb: 0.0 827.453 462.582 +imu_odom_: 1691062444.698559228 0.847547 -0.203507 9.94312 -0.0585895 -0.00852212 -0.264186 0.07 -0.38 pose: 0.0 5.38653 0.0420089 0 -0.00388308 0.00248262 -0.734674 0.678405 uwb: 0.49969441 827.575 462.962 +imu_odom_: 1691062444.715614759 0.864307 -0.222661 9.76116 -0.0617853 -0.02024 -0.243946 0.07 -0.38 pose: 0.0 5.38653 0.0420089 0 -0.00388308 0.00248262 -0.734674 0.678405 uwb: 0.0 827.575 462.962 +imu_odom_: 1691062444.732613421 0.742203 -0.294487 9.81383 -0.0575243 0 -0.229032 0.04 -0.23 pose: 0.47992466 5.38653 0.0420089 0 -0.00608282 -0.00156033 -0.73933 0.673314 uwb: 0.0 827.575 462.962 +imu_odom_: 1691062444.749552590 0.924162 -0.275333 9.90002 -0.0585895 -0.0181095 -0.216249 0.06 -0.32 pose: 0.0 5.38653 0.0420089 0 -0.00608282 -0.00156033 -0.73933 0.673314 uwb: 0.49993646 830.922 462.121 +imu_odom_: 1691062444.765606655 0.675165 -0.198719 9.77553 -0.0596548 0.00213053 -0.210922 0.06 -0.32 pose: 0.66994641 5.3874 0.0320469 0 -0.0107834 -0.00630366 -0.745647 0.666225 uwb: 0.0 830.922 462.121 +imu_odom_: 1691062444.792741872 0.675165 -0.23942 9.90242 -0.0596548 -0.0181095 -0.199204 0.05 -0.29 pose: 0.0 5.3874 0.0320469 0 -0.0107834 -0.00630366 -0.745647 0.666225 uwb: 0.50007644 829.507 462.543 +imu_odom_: 1691062444.808551257 0.502782 -0.289698 9.92157 -0.0692422 0.0191748 -0.20027 0.05 -0.29 pose: 0.34241128 5.3874 0.0320469 0 -0.0116578 -0.00823981 -0.748476 0.663009 uwb: 0.0 829.507 462.543 +imu_odom_: 1691062444.825561876 -1.03908 -0.0957681 9.61033 -0.0223706 0.131028 -0.227967 0.06 -0.26 pose: 0.34757318 5.38734 0.0320441 0 -0.012443 -0.00665674 -0.751212 0.65991 uwb: 0.0 829.507 462.543 +imu_odom_: 1691062444.842582411 -1.55623 -0.253785 10.1586 -0.0500674 0.0511327 -0.155529 0.06 -0.26 pose: 0.7050502 5.3874 0.0320467 0 -0.0114255 -0.00603365 -0.751846 0.659212 uwb: 0.50003853 831.034 462.479 +imu_odom_: 1691062444.869575019 0.392649 -0.332794 10.0604 -0.0543285 -0.116114 -0.120375 0.11 -0.2 pose: 0.0 5.3874 0.0320467 0 -0.0114255 -0.00603365 -0.751846 0.659212 uwb: 0.0 831.034 462.479 +imu_odom_: 1691062444.894576654 0.797269 -0.047884 9.58878 -0.0628506 0.0191748 -0.107592 0.11 -0.2 pose: 0.26980652 5.3874 0.0320467 0 -0.00830586 -0.00378201 -0.753843 0.656991 uwb: 0.50113799 830.642 462.874 +imu_odom_: 1691062444.911568025 -0.21069 -0.325611 10.0221 -0.0532632 0.0532632 -0.116114 0.12 -0.2 pose: 0.0 5.3874 0.0320467 0 -0.00830586 -0.00378201 -0.753843 0.656991 uwb: 0.0 830.642 462.874 +imu_odom_: 1691062444.937552169 -0.136469 -0.440533 9.47864 -0.036219 -0.00852212 -0.108657 0.12 -0.2 pose: 0.51994243 5.38802 0.024999 0 -0.00820355 -0.00468751 -0.756464 0.653967 uwb: 0.0 830.642 462.874 +imu_odom_: 1691062444.964591439 0.6608 0.102951 9.9096 -0.0575243 -0.0319579 -0.0937433 0.15 -0.17 pose: 0.42975515 5.38821 0.0220818 0 -0.00507926 -0.00123484 -0.758598 0.651538 uwb: 0.49860662 830.223 463.178 +imu_odom_: 1691062444.980538767 0.727837 -0.229843 9.88805 -0.0479369 0.00213053 -0.072438 0.15 -0.17 pose: 0.6994217 5.38826 0.0220837 0 -0.00496325 -0.0019668 -0.758903 0.651182 uwb: 0.0 830.223 463.178 +imu_odom_: 1691062445.7579496 0.129287 -0.179565 10.2256 -0.056459 -0.0436758 -0.0745685 0.15 -0.17 pose: 0.35992381 5.38872 0.0167691 0 -0.0058426 -0.00501534 -0.760347 0.649472 uwb: 0.50006769 830.287 463.38 +imu_odom_: 1691062445.32632471 0.136469 -0.232238 9.9934 -0.0607201 0.00426106 -0.0575243 0.15 -0.17 pose: 0.0 5.38872 0.0167691 0 -0.0058426 -0.00501534 -0.760347 0.649472 uwb: 0.0 830.287 463.38 +imu_odom_: 1691062445.59628300 0.469264 0.0191536 10.0509 -0.0745685 -0.0287621 -0.056459 0.16 -0.14 pose: 0.6980218 5.38911 0.0121195 0 -0.00538185 -0.00469477 -0.760609 0.649171 uwb: 0.50258465 831.756 463.139 +imu_odom_: 1691062445.85624122 0.344765 -0.380678 10.3286 -0.0511327 0.00106526 -0.0575243 0.14 -0.08 pose: 0.0 5.38911 0.0121195 0 -0.00538185 -0.00469477 -0.760609 0.649171 uwb: 0.0 831.756 463.139 +imu_odom_: 1691062445.102616376 0.430956 0.0047884 10.5584 -0.0500674 -0.0255663 -0.072438 0.18 -0.11 pose: 0.52149118 5.38911 0.0121195 0 -0.00187887 -0.00247991 -0.762377 0.647126 uwb: 0.49823649 831.456 463.824 +imu_odom_: 1691062445.119622920 0.220267 0.0885855 9.94312 -0.0681769 0.00532632 -0.0330232 0.18 -0.11 pose: 0.0 5.38911 0.0121195 0 -0.00187887 -0.00247991 -0.762377 0.647126 uwb: 0.0 831.456 463.824 +imu_odom_: 1691062445.136627132 0.349553 -0.409408 9.56005 -0.0671117 0.0170442 -0.0223706 0.21 -0.11 pose: 0.52976778 5.38997 0.00215651 0 -0.000862945-0.00206891 -0.764069 0.64513 uwb: 0.0 831.456 463.824 +imu_odom_: 1691062445.152502434 0.102951 -0.110133 9.76355 -0.0617853 0.00532632 -0.0372843 0.21 -0.11 pose: 0.0 5.38997 0.00215651 0 -0.000862945-0.00206891 -0.764069 0.64513 uwb: 0.49987545 829.571 464.37 +imu_odom_: 1691062445.169607550 0.0383072 -0.0191536 9.97185 -0.0735032 -0.00106526 -0.0255663 0.21 -0.11 pose: 0.0 5.38997 0.00215651 0 -0.000862945-0.00206891 -0.764069 0.64513 uwb: 0.0 829.571 464.37 +imu_odom_: 1691062445.186539145 0.217872 -0.47884 9.13867 -0.0756338 0.0276969 -0.00639159 0.2 -0.08 pose: 0.66976883 5.38088 -0.00861165 0 0.00290503 -0.000261538-0.765713 0.643175 uwb: 0.0 829.571 464.37 +imu_odom_: 1691062445.203513901 -0.0215478 -0.517148 9.71567 -0.0490022 -0.00426106 -0.0340885 0.2 -0.08 pose: 0.0 5.38088 -0.00861165 0 0.00290503 -0.000261538-0.765713 0.643175 uwb: 0.49886058 829.735 464.885 +imu_odom_: 1691062445.229499224 0.198719 -0.035913 10.0485 -0.0383495 0.0276969 -0.0181095 0.16 -0.05 pose: 0.43892137 5.38135 -0.0140532 0 0.00369885 0.00364308 -0.766575 0.642134 uwb: 0.0 829.735 464.885 +imu_odom_: 1691062445.256762480 0.620098 -0.373495 10.1538 -0.052198 -0.0127832 -0.0319579 0.16 -0.05 pose: 0.0 5.38135 -0.0140532 0 0.00369885 0.00364308 -0.766575 0.642134 uwb: 0.50005627 832.185 464.506 +imu_odom_: 1691062445.273648872 0.342371 -0.11971 10.1993 -0.0543285 0.00426106 -0.0245011 0.15 -0.08 pose: 0.53248579 5.3823 -0.0257216 0 0.00382945 0.00219599 -0.76768 0.640818 uwb: 0.0 832.185 464.506 +imu_odom_: 1691062445.300701278 0.316035 -0.124498 10.5034 -0.056459 -0.0372843 0 0.15 -0.08 pose: 0.0 5.3823 -0.0257216 0 0.00382945 0.00219599 -0.76768 0.640818 uwb: 0.50178857 833.699 464.427 +imu_odom_: 1691062445.317471017 0.466869 -0.3304 10.2161 -0.0532632 0.00852212 -0.0138484 0.23 -0.05 pose: 0.23894611 5.38253 -0.0285435 0 0.00493639 0.000128706 -0.768107 0.640302 uwb: 0.0 833.699 464.427 +imu_odom_: 1691062445.344483761 0.732626 -0.131681 9.87129 -0.0394148 0.00213053 0.0138484 0.23 -0.05 pose: 0.0 5.38253 -0.0285435 0 0.00493639 0.000128706 -0.768107 0.640302 uwb: 0.49949050 834.194 464.372 +imu_odom_: 1691062445.370534118 -0.100556 -0.517148 10.0102 -0.0479369 0.0426106 0.00745685 0.21 -0.05 pose: 0.43878138 5.38253 -0.0285435 0 0.00420308 -0.00133687 -0.768702 0.639591 uwb: 0.0 834.194 464.372 +imu_odom_: 1691062445.387469504 0.203507 -0.0047884 10.3334 -0.036219 0.0127832 0.00319579 0.21 -0.05 pose: 0.0 5.38253 -0.0285435 0 0.00420308 -0.00133687 -0.768702 0.639591 uwb: 0.0 834.194 464.372 +imu_odom_: 1691062445.413518695 0.35913 -0.335188 9.61511 -0.0500674 -0.0127832 0.0106526 0.19 -0.02 pose: 0.52981444 5.37343 -0.0393689 0 0.00474201 -1.53259e-05-0.769213 0.638974 uwb: 0.49907930 835.694 464.254 +imu_odom_: 1691062445.430498992 0.61531 -0.107739 9.73961 -0.04048 -0.0245011 -0.00532632 0.19 -0.02 pose: 0.0 5.37343 -0.0393689 0 0.00474201 -1.53259e-05-0.769213 0.638974 uwb: 0.0 835.694 464.254 +imu_odom_: 1691062445.456532143 0.160412 -0.31364 10.1131 -0.0681769 0.0266316 0.0490022 0.22 -0.02 pose: 0.42974369 5.37427 -0.049333 0 0.00336362 0.000652648 -0.769679 0.638422 uwb: 0.49865060 837.977 463.363 +imu_odom_: 1691062445.473528480 0.445322 -0.268151 10.0197 -0.0511327 -0.0490022 0.0106526 0.22 -0.02 pose: 0.0 5.37427 -0.049333 0 0.00336362 0.000652648 -0.769679 0.638422 uwb: 0.0 837.977 463.363 +imu_odom_: 1691062445.490524817 0.732626 -0.213084 9.69891 -0.0426106 -0.00745685 0.0191748 0.21 -0.05 pose: 0.43041154 5.37511 -0.0592983 0 0.00289993 0.00230271 -0.769811 0.638261 uwb: 0.50077660 839.436 463.12 +imu_odom_: 1691062445.507462244 0.181959 -0.335188 9.92397 -0.0511327 0.0266316 0.0308927 0.21 -0.05 pose: 0.0 5.37511 -0.0592983 0 0.00289993 0.00230271 -0.769811 0.638261 uwb: 0.0 839.436 463.12 +imu_odom_: 1691062445.523460324 0.169988 -0.311246 9.21528 -0.0458064 -0.0426106 0.00319579 0.17 0 pose: 0.0 5.37511 -0.0592983 0 0.00289993 0.00230271 -0.769811 0.638261 uwb: 0.0 839.436 463.12 +imu_odom_: 1691062445.540523445 0.442927 -0.141258 10.0006 -0.0543285 -0.0223706 0.0330232 0.17 0 pose: 0.43930048 5.37556 -0.0648131 0 0.00135457 0.00240074 -0.770065 0.637959 uwb: 0.49998045 842.264 462.332 +imu_odom_: 1691062445.558514248 0.349553 -0.272939 10.307 -0.0756338 -0.0223706 0.0436758 0.17 0 pose: 0.0 5.37556 -0.0648131 0 0.00135457 0.00240074 -0.770065 0.637959 uwb: 0.0 842.264 462.332 +imu_odom_: 1691062445.572511729 0.390255 -0.189142 9.69412 -0.0585895 -0.052198 0.0245011 0.18 0.02 pose: 0.8005310 5.37593 -0.0692642 0 0.00162998 0.00298485 -0.770157 0.637846 uwb: 0.0 842.264 462.332 +imu_odom_: 1691062445.588507476 0.605733 -0.100556 9.87848 -0.0575243 -0.00106526 0.0255663 0.18 0.02 pose: 0.0 5.37593 -0.0692642 0 0.00162998 0.00298485 -0.770157 0.637846 uwb: 0.49869434 845.59 461.514 +imu_odom_: 1691062445.612567150 0.847547 -0.308852 9.39964 -0.0681769 -0.0553937 0.0287621 0.17 -0.02 pose: 0.49048781 5.36596 -0.0700801 0 0.000374327 0.002658 -0.770292 0.637686 uwb: 0.0 845.59 461.514 +imu_odom_: 1691062445.628442744 0.897826 -0.071826 10.568 -0.0607201 -0.0170442 0.0170442 0.17 0 pose: 0.0 5.36596 -0.0700801 0 0.000374327 0.002658 -0.770292 0.637686 uwb: 0.0 845.59 461.514 +imu_odom_: 1691062445.654453147 0.466869 -0.0981623 10.0389 -0.076699 0.00106526 0.0607201 0.23 0 pose: 0.63926409 5.3672 -0.0852484 0 -0.00370565 -0.00253135 -0.770596 0.637309 uwb: 0.49972381 849.384 460.562 +imu_odom_: 1691062445.671506644 0.658405 -0.387861 9.6606 -0.056459 -0.0490022 0.0213053 0.23 0 pose: 0.0 5.3672 -0.0852484 0 -0.00370565 -0.00253135 -0.770596 0.637309 uwb: 0.0 849.384 460.562 +imu_odom_: 1691062445.688502690 0.517148 0.0023942 10.3573 -0.0575243 -0.0117179 0.0383495 0.18 0 pose: 0.0 5.3672 -0.0852484 0 -0.00370565 -0.00253135 -0.770596 0.637309 uwb: 0.0 849.384 460.562 +imu_odom_: 1691062445.705438951 0.107739 -0.440533 9.64863 -0.0639159 -0.00319579 0.0436758 0.18 0 pose: 0.33006373 5.36758 -0.0900146 0 -0.00262506 -0.00389456 -0.770467 0.637463 uwb: 0.50105365 850.377 460.481 +imu_odom_: 1691062445.722451036 0.481235 -0.260968 9.97185 -0.0447411 -0.0213053 0.00958738 0.25 -0.02 pose: 0.43989834 5.36839 -0.099982 0 -0.00235388 -0.0035385 -0.770514 0.637409 uwb: 0.0 850.377 460.481 +imu_odom_: 1691062445.748437526 0.172383 -0.100556 9.71806 -0.0628506 -0.00532632 0.0575243 0.25 -0.02 pose: 0.7069753 5.36839 -0.099982 0 -0.00281097 -0.00304738 -0.77058 0.63733 uwb: 0.50015834 848.627 461.482 +imu_odom_: 1691062445.775580338 0.59855 -0.244209 10.1011 -0.0500674 -0.0255663 0.0308927 0.24 0 pose: 0.35928822 5.36897 -0.107146 0 -0.00105486 -0.00147551 -0.770531 0.6374 uwb: 0.0 848.627 461.482 +imu_odom_: 1691062445.792454189 0.814029 0.0215478 10.0437 -0.0713727 0.0330232 0.0426106 0.18 0 pose: 0.0 5.36897 -0.107146 0 -0.00105486 -0.00147551 -0.770531 0.6374 uwb: 0.49987254 851.123 461.346 +imu_odom_: 1691062445.817564615 0.557849 -0.248997 10.398 -0.0458064 -0.00745685 0.0117179 0.25 -0.02 pose: 0.44016663 5.35923 -0.110754 0 -0.0039148 -0.00424207 -0.770581 0.637317 uwb: 0.0 851.123 461.346 +imu_odom_: 1691062445.840482840 0.658405 -0.134075 9.49062 -0.0532632 -0.0149137 0.0511327 0.17 0 pose: 0.0 5.35923 -0.110754 0 -0.0039148 -0.00424207 -0.770581 0.637317 uwb: 0.50057538 849.369 462.322 +imu_odom_: 1691062445.856457589 0.222661 -0.42138 9.40921 -0.0628506 -0.00745685 0.0351537 0.17 0 pose: 0.31164715 5.36003 -0.120722 0 -0.00643087 -0.0043771 -0.770764 0.637073 uwb: 0.0 849.369 462.322 +imu_odom_: 1691062445.883437378 0.550666 -0.225055 10.0916 -0.0617853 -0.0394148 0.0447411 0.17 0 pose: 0.0 5.36003 -0.120722 0 -0.00643087 -0.0043771 -0.770764 0.637073 uwb: 0.0 849.369 462.322 +imu_odom_: 1691062445.908405196 0.610521 -0.253785 10.5034 -0.0511327 -0.0308927 0.0298274 0.24 -0.02 pose: 0.40959773 5.36003 -0.120722 0 -0.00584667 -0.00409298 -0.770716 0.637138 uwb: 0.49969756 850.953 462.563 +imu_odom_: 1691062445.935413274 0.474052 -0.129287 9.9096 -0.072438 -0.04048 0.0415453 0.22 -0.02 pose: 0.43826519 5.36083 -0.13069 0 -0.00723701 -0.00429064 -0.770753 0.637079 uwb: 0.0 850.953 462.563 +imu_odom_: 1691062445.960558112 0.555455 -0.186748 9.82341 -0.0330232 0.00745685 0.0170442 0.22 -0.02 pose: 0.0 5.36083 -0.13069 0 -0.00723701 -0.00429064 -0.770753 0.637079 uwb: 0.49977339 852.067 462.938 +imu_odom_: 1691062445.977538993 0.629675 -0.229843 9.95748 -0.0436758 0.0213053 0.0330232 0.23 0 pose: 0.7017551 5.36083 -0.13069 0 -0.00668277 -0.00445684 -0.770754 0.637083 uwb: 0.0 852.067 462.938 +imu_odom_: 1691062445.994421593 0.114922 -0.414197 9.96227 -0.0468716 -0.00532632 0.0330232 0.23 0 pose: 0.0 5.36083 -0.13069 0 -0.00668277 -0.00445684 -0.770754 0.637083 uwb: 0.50029540 853.559 462.87 +imu_odom_: 1691062446.21471967 0.620098 -0.270545 9.77074 -0.0607201 -0.0191748 0.0543285 0.26 -0.02 pose: 0.52148250 5.35166 -0.141454 0 -0.00546766 -0.00741587 -0.770939 0.636843 uwb: 0.0 853.559 462.87 +imu_odom_: 1691062446.46381470 0.577003 -0.23942 10.003 -0.0426106 -0.0266316 0.036219 0.26 -0.02 pose: 0.0 5.35166 -0.141454 0 -0.00546766 -0.00741587 -0.770939 0.636843 uwb: 0.50021976 853.701 463.391 +imu_odom_: 1691062446.63416602 0.581791 -0.0957681 9.63906 -0.0426106 -0.0138484 0.0351537 0.22 0.02 pose: 0.33845983 5.35245 -0.151423 0 -0.00631372 -0.00562983 -0.770955 0.636833 uwb: 0.0 853.701 463.391 +imu_odom_: 1691062446.88388514 0.395043 -0.308852 9.94551 -0.0468716 -0.02024 0.0372843 0.22 0.02 pose: 0.0 5.35245 -0.151423 0 -0.00631372 -0.00562983 -0.770955 0.636833 uwb: 0.49861292 856.599 462.95 +imu_odom_: 1691062446.105428604 0.059855 -0.0885855 9.85214 -0.0458064 -0.0127832 0.0415453 0.23 0 pose: 0.86971534 5.3538 -0.168421 0 -0.00519042 -0.00354924 -0.770932 0.636886 uwb: 0.0 856.599 462.95 +imu_odom_: 1691062446.130539334 0.296881 -0.263362 9.94551 -0.072438 -0.0511327 0.0340885 0.23 0 pose: 0.7083755 5.35403 -0.17136 0 -0.00454083 -0.00331629 -0.770931 0.636894 uwb: 0.0 856.599 462.95 +imu_odom_: 1691062446.147374115 0.636858 -0.0622492 10.0604 -0.0479369 -0.00532632 0.0276969 0.23 0 pose: 0.0 5.35403 -0.17136 0 -0.00454083 -0.00331629 -0.770931 0.636894 uwb: 0.49932451 857.212 463.37 +imu_odom_: 1691062446.172363233 0.830788 -0.339977 9.4547 -0.0660464 0.00319579 0.0436758 0.23 0 pose: 0.42078203 5.35403 -0.17136 0 -0.00278717 -0.00190338 -0.771004 0.636822 uwb: 0.0 857.212 463.37 +imu_odom_: 1691062446.189522601 0.263362 -0.148441 10.1969 -0.04048 -0.015979 0.0276969 0.21 0 pose: 0.0 5.35403 -0.17136 0 -0.00278717 -0.00190338 -0.771004 0.636822 uwb: 0.50177714 858.281 463.621 +imu_odom_: 1691062446.205437573 0.52433 -0.220267 9.72525 -0.0468716 -0.0276969 0.0532632 0.21 0 pose: 0.41877560 5.34496 -0.18221 0 -0.00461167 -0.00334372 -0.771026 0.636778 uwb: 0.0 858.281 463.621 +imu_odom_: 1691062446.232378005 0.588974 -0.201113 9.82102 -0.0458064 -0.00319579 0.0266316 0.25 0 pose: 0.0 5.34496 -0.18221 0 -0.00461167 -0.00334372 -0.771026 0.636778 uwb: 0.0 858.281 463.621 +imu_odom_: 1691062446.257437699 0.47884 -0.177171 10.0892 -0.0500674 0.0383495 0.0458064 0.25 0 pose: 0.33977234 5.34585 -0.192171 0 -0.00559082 -0.00466513 -0.77102 0.636769 uwb: 0.49929535 859.776 463.592 +imu_odom_: 1691062446.282432941 0.378284 0.0430956 10.252 -0.0426106 0.0553937 0.0234358 0.19 -0.02 pose: 0.44032433 5.34648 -0.199217 0 -0.00388019 -0.00489055 -0.77106 0.636732 uwb: 0.0 859.776 463.592 +imu_odom_: 1691062446.296600451 0.215478 -0.325611 9.84496 -0.0628506 0.0276969 0.0585895 0.19 -0.02 pose: 0.0 5.34648 -0.199217 0 -0.00388019 -0.00489055 -0.77106 0.636732 uwb: 0.0 859.776 463.592 +imu_odom_: 1691062446.312431141 0.440533 -0.529119 9.82341 -0.076699 0.0383495 0.0468716 0.19 -0.02 pose: 0.0 5.34648 -0.199217 0 -0.00388019 -0.00489055 -0.77106 0.636732 uwb: 0.0 859.776 463.592 +imu_odom_: 1691062446.336422001 0.411803 -0.112527 10.6231 -0.0511327 0.0127832 0.0383495 0.18 -0.02 pose: 0.7012888 5.34674 -0.202131 0 -0.00302171 -0.00500595 -0.7711 0.636687 uwb: 0.0 859.776 463.592 +imu_odom_: 1691062446.361384290 0.452504 -0.213084 9.98143 -0.0426106 -0.0394148 0.0223706 0.18 -0.02 pose: 0.0 5.34674 -0.202131 0 -0.00302171 -0.00500595 -0.7711 0.636687 uwb: 0.99944517 862.136 463.053 +imu_odom_: 1691062446.378396675 0.136469 -0.0430956 9.72525 -0.0479369 0.02024 0.0426106 0.22 0 pose: 0.54976235 5.34763 -0.212092 0 -0.000406762-0.00243005 -0.771088 0.636724 uwb: 0.0 862.136 463.053 +imu_odom_: 1691062446.394508207 0.452504 -0.442927 10.2352 -0.072438 -0.0191748 0.0426106 0.22 0 pose: 0.0 5.34763 -0.212092 0 -0.000406762-0.00243005 -0.771088 0.636724 uwb: 0.50101598 862.773 463.593 +imu_odom_: 1691062446.412451191 0.794875 -0.1652 9.51456 -0.0479369 -0.02024 0.0223706 0.25 0 pose: 0.49089342 5.33855 -0.222938 0 -0.000466223-0.00224973 -0.771225 0.636558 uwb: 0.0 862.773 463.593 +imu_odom_: 1691062446.436509419 0.280122 -0.220267 9.63666 -0.0649811 -0.02024 0.0553937 0.25 0 pose: 0.0 5.33855 -0.222938 0 -0.000466223-0.00224973 -0.771225 0.636558 uwb: 0.0 862.773 463.593 +imu_odom_: 1691062446.463501761 0.371101 -0.0933739 10.2017 -0.036219 0.0340885 0.0340885 0.23 0 pose: 0.67993255 5.33944 -0.232899 0 -0.000536016-0.000634055-0.77118 0.636617 uwb: 0.49948199 865.573 462.836 +imu_odom_: 1691062446.479370655 0.337582 -0.191536 9.74679 -0.0575243 -0.0287621 0.0649811 0.23 0 pose: 0.0 5.33944 -0.232899 0 -0.000536016-0.000634055-0.77118 0.636617 uwb: 0.0 865.573 462.836 +imu_odom_: 1691062446.497559778 0.830788 -0.213084 9.96706 -0.0340885 -0.0234358 0.0436758 0.25 0.02 pose: 0.7003555 5.33944 -0.232899 0 0.000227677 -0.000930843-0.771192 0.636601 uwb: 0.0 865.573 462.836 +imu_odom_: 1691062446.514488464 0.0861913 -0.265756 9.62948 -0.0394148 0.00426106 0.0447411 0.25 0.02 pose: 0.0 5.33944 -0.232899 0 0.000227677 -0.000930843-0.771192 0.636601 uwb: 0.0 865.573 462.836 +imu_odom_: 1691062446.537413699 0.289698 -0.387861 9.82102 -0.0490022 0.00639159 0.0490022 0.25 0.02 pose: 0.0 5.33944 -0.232899 0 0.000227677 -0.000930843-0.771192 0.636601 uwb: 0.0 865.573 462.836 +imu_odom_: 1691062446.563341874 0.390255 -0.483629 10.058 -0.0692422 0.0117179 0.0681769 0.18 -0.02 pose: 0.43869411 5.34032 -0.242859 0 0.00207245 -0.000951964-0.77109 0.636722 uwb: 0.99840988 865.322 463.819 +imu_odom_: 1691062446.588351407 0.538695 -0.40462 9.7875 -0.0426106 -0.0276969 0.0415453 0.25 0.05 pose: 0.33072881 5.34032 -0.242859 0 0.00218827 0.00023263 -0.771033 0.636791 uwb: 0.50146218 866.389 464.109 +imu_odom_: 1691062446.611388046 0.617704 -0.225055 10.252 -0.0490022 -0.00745685 0.0468716 0.25 0.05 pose: 0.0 5.34032 -0.242859 0 0.00218827 0.00023263 -0.771033 0.636791 uwb: 0.0 866.389 464.109 +imu_odom_: 1691062446.627633437 0.342371 -0.270545 9.63187 -0.0468716 0.00958738 0.0415453 0.2 0 pose: 0.49953157 5.33125 -0.253709 0 -0.0008418210.00374301 -0.770746 0.637131 uwb: 0.0 866.389 464.109 +imu_odom_: 1691062446.644444888 0.493206 -0.102951 10.0293 -0.0500674 -0.00426106 0.0372843 0.2 0 pose: 0.0 5.33125 -0.253709 0 -0.0008418210.00374301 -0.770746 0.637131 uwb: 0.50112388 866.976 464.471 +imu_odom_: 1691062446.669315895 0.766145 -0.198719 9.91918 -0.0671117 0.0149137 0.0500674 0.2 0 pose: 0.0 5.33125 -0.253709 0 -0.0008418210.00374301 -0.770746 0.637131 uwb: 0.0 866.976 464.471 +imu_odom_: 1691062446.694434207 0.47884 -0.184354 9.81383 -0.0575243 -0.00319579 0.0447411 0.18 0 pose: 0.49005059 5.33205 -0.263677 0 -0.0031444 0.00178907 -0.770685 0.637206 uwb: 0.49987570 867.545 464.766 +imu_odom_: 1691062446.717402020 0.816423 -0.486023 9.54329 -0.0671117 0.0490022 0.0394148 0.18 0 pose: 0.75020725 5.33285 -0.273645 0 -0.00230544 -0.00315172 -0.770576 0.637336 uwb: 0.0 867.545 464.766 +imu_odom_: 1691062446.742316481 0.294487 0.0742203 9.60554 -0.0681769 0.0223706 0.0532632 0.18 0 pose: 0.0 5.33285 -0.273645 0 -0.00230544 -0.00315172 -0.770576 0.637336 uwb: 0.49985528 864.922 466.173 +imu_odom_: 1691062446.759316326 0.718261 -0.320823 10.2639 -0.072438 0.0213053 0.0575243 0.21 -0.02 pose: 0.5898560 5.33285 -0.273645 0 -0.00279653 -0.00301817 -0.770575 0.637336 uwb: 0.0 864.922 466.173 +imu_odom_: 1691062446.784345107 0.584185 -0.0670376 10.0916 -0.0511327 -0.0106526 0.0458064 0.21 -0.02 pose: 0.0 5.33285 -0.273645 0 -0.00279653 -0.00301817 -0.770575 0.637336 uwb: 0.0 864.922 466.173 +imu_odom_: 1691062446.809310603 0.481235 -0.368707 9.83538 -0.0660464 0.0149137 0.0436758 0.23 0 pose: 0.49047638 5.32369 -0.284418 0 -0.0023363 -0.00304809 -0.77043 0.637514 uwb: 0.49881415 864.089 466.796 +imu_odom_: 1691062446.823362043 0.73502 0.0502782 9.95748 -0.0298274 -0.0138484 0.0234358 0.23 0 pose: 0.0 5.32369 -0.284418 0 -0.0023363 -0.00304809 -0.77043 0.637514 uwb: 0.0 864.089 466.796 +imu_odom_: 1691062446.839305594 0.529119 -0.452504 9.5792 -0.0649811 0.0223706 0.0607201 0.23 0 pose: 0.0 5.32369 -0.284418 0 -0.0023363 -0.00304809 -0.77043 0.637514 uwb: 0.50000110 867.894 466.18 +imu_odom_: 1691062446.862364105 0.490811 -0.201113 9.77792 -0.0553937 0 0.0479369 0.17 -0.02 pose: 0.41957759 5.3245 -0.294385 0 -0.00331319 -0.00500503 -0.770307 0.637644 uwb: 0.0 867.894 466.18 +imu_odom_: 1691062446.884286708 0.632069 -0.0861913 9.97903 -0.0735032 0.0287621 0.0500674 0.17 -0.02 pose: 0.0 5.3245 -0.294385 0 -0.00331319 -0.00500503 -0.770307 0.637644 uwb: 0.0 867.894 466.18 +imu_odom_: 1691062446.909347860 0.603339 -0.241814 10.2208 -0.0532632 0.00532632 0.0308927 0.19 0 pose: 0.55036020 5.32531 -0.304352 0 -0.00430111 -0.00343226 -0.770224 0.637749 uwb: 0.49987861 867.541 466.751 +imu_odom_: 1691062446.936463854 0.916979 -0.457293 10.4172 -0.0628506 -0.0266316 0.0436758 0.21 -0.02 pose: 0.22072210 5.32612 -0.314319 0 -0.00277287 -0.00388317 -0.770169 0.637822 uwb: 0.0 867.541 466.751 +imu_odom_: 1691062446.961461139 0.593762 -0.342371 10.0317 -0.0340885 0.00958738 0.0330232 0.21 -0.02 pose: 0.0 5.32612 -0.314319 0 -0.00277287 -0.00388317 -0.770169 0.637822 uwb: 0.50120554 871.338 466.136 +imu_odom_: 1691062446.978285421 -0.292093 -0.0909797 9.9096 -0.0745685 0.0117179 0.056459 0.21 0 pose: 0.47897731 5.32612 -0.314319 0 -0.00619761 -0.00523974 -0.770151 0.63781 uwb: 0.0 871.338 466.136 +imu_odom_: 1691062446.994286716 0.361524 -0.344765 10.1347 -0.0585895 -0.04048 0.0383495 0.21 0 pose: 0.0 5.32612 -0.314319 0 -0.00619761 -0.00523974 -0.770151 0.63781 uwb: 0.49856626 872.835 466.212 +imu_odom_: 1691062447.12338775 0.794875 0.0502782 9.64624 -0.072438 -0.036219 0.0490022 0.21 0 pose: 0.0 5.32612 -0.314319 0 -0.00619761 -0.00523974 -0.770151 0.63781 uwb: 0.0 872.835 466.212 +imu_odom_: 1691062447.28276793 0.342371 -0.399832 9.84256 -0.0713727 0.0330232 0.0372843 0.25 0.02 pose: 0.52132818 5.31697 -0.325102 0 -0.00895533 -0.00313256 -0.770107 0.637844 uwb: 0.0 872.835 466.212 +imu_odom_: 1691062447.43276629 0.493206 -0.222661 9.9503 -0.0351537 -0.00213053 0.0223706 0.25 0.02 pose: 0.0 5.31697 -0.325102 0 -0.00895533 -0.00313256 -0.770107 0.637844 uwb: 0.49840895 872.468 466.734 +imu_odom_: 1691062447.59297179 0.586579 -0.294487 9.63666 -0.0468716 0.0138484 0.0330232 0.18 0 pose: 0.33810129 5.31779 -0.335068 0 -0.00760115 -0.00219261 -0.770045 0.637941 uwb: 0.0 872.468 466.734 +imu_odom_: 1691062447.74408419 0.529119 -0.3304 9.84496 -0.0628506 0.036219 0.0383495 0.18 0 pose: 0.48020238 5.31861 -0.345035 0 -0.00621287 -0.00215616 -0.770132 0.63785 uwb: 0.0 872.468 466.734 +imu_odom_: 1691062447.99331349 0.229843 -0.0383072 9.57681 -0.0415453 0.0149137 0.0447411 0.18 0 pose: 0.0 5.31861 -0.345035 0 -0.00621287 -0.00215616 -0.770132 0.63785 uwb: 0.50280684 877.154 465.78 +imu_odom_: 1691062447.116289206 0.818817 -0.272939 10.2951 -0.0628506 0.0266316 0.0532632 0.25 -0.02 pose: 0.31100585 5.31943 -0.355001 0 -0.0068445 -0.000808507-0.770138 0.63784 uwb: 0.0 877.154 465.78 +imu_odom_: 1691062447.141287961 0.718261 -0.435745 9.35654 -0.0447411 -0.00852212 0.0394148 0.18 0 pose: 0.0 5.31943 -0.355001 0 -0.0068445 -0.000808507-0.770138 0.63784 uwb: 0.49883189 878.632 465.804 +imu_odom_: 1691062447.158268857 0.268151 -0.339977 9.85453 -0.0671117 0.00958738 0.0490022 0.18 0 pose: 0.42969161 5.30946 -0.355821 0 -0.00681097 -0.00171629 -0.770037 0.63796 uwb: 0.0 878.632 465.804 +imu_odom_: 1691062447.183265570 0.282516 -0.220267 9.62948 -0.0585895 0.00106526 0.0415453 0.18 0 pose: 0.0 5.30946 -0.355821 0 -0.00681097 -0.00171629 -0.770037 0.63796 uwb: 0.0 878.632 465.804 +imu_odom_: 1691062447.200326374 1.01514 -0.0502782 10.8888 -0.0649811 -0.0213053 0.0490022 0.18 0 pose: 0.41929490 5.31028 -0.365787 0 -0.00657589 -5.78548e-05-0.769976 0.638039 uwb: 0.49833319 876.434 466.911 +imu_odom_: 1691062447.225260386 0.490811 0.0814029 9.95748 -0.0426106 -0.0191748 0.0213053 0.19 0 pose: 0.34019828 5.31111 -0.375754 0 -0.00589105 -0.000960428-0.76992 0.638113 uwb: 0.0 876.434 466.911 +imu_odom_: 1691062447.250300261 1.12767 -0.328006 9.89045 -0.0703074 -0.0127832 0.0479369 0.19 0 pose: 0.8066269 5.31111 -0.375754 0 -0.00536567 -0.00164051 -0.769971 0.638054 uwb: 0.50004508 880.17 466.106 +imu_odom_: 1691062447.264415866 0.897826 -0.107739 9.73004 -0.0490022 -0.0181095 0.0372843 0.2 0 pose: 0.0 5.31111 -0.375754 0 -0.00536567 -0.00164051 -0.769971 0.638054 uwb: 0.0 880.17 466.106 +imu_odom_: 1691062447.289262972 0.047884 -0.160412 10.1227 -0.0809601 -0.0245011 0.0607201 0.2 0 pose: 0.47904169 5.31193 -0.38572 0 -0.00696284 -0.0047964 -0.769997 0.637991 uwb: 0.49997217 881.149 466.104 +imu_odom_: 1691062447.306349439 0.442927 -0.220267 9.93833 -0.0436758 -0.0308927 0.0351537 0.25 -0.02 pose: 0.0 5.31193 -0.38572 0 -0.00696284 -0.0047964 -0.769997 0.637991 uwb: 0.0 881.149 466.104 +imu_odom_: 1691062447.331298908 0.565032 -0.272939 9.64384 -0.0553937 -0.0490022 0.0596548 0.25 -0.02 pose: 0.40011714 5.31193 -0.38572 0 -0.00519873 -0.00377696 -0.769861 0.638179 uwb: 0.0 881.149 466.104 +imu_odom_: 1691062447.356308161 0.94571 -0.162806 9.96706 -0.0447411 -0.0575243 0.0372843 0.23 0 pose: 0.34990382 5.30279 -0.396512 0 -0.00739106 -0.00350839 -0.7697 0.638354 uwb: 0.50061085 880.816 466.804 +imu_odom_: 1691062447.373388796 0.23942 -0.356736 9.54808 -0.0639159 0.0191748 0.0617853 0.23 0 pose: 0.6992185 5.30279 -0.396512 0 -0.00793136 -0.00421439 -0.769701 0.638342 uwb: 0.0 880.816 466.804 +imu_odom_: 1691062447.397526651 0.651223 -0.191536 9.40682 -0.076699 -0.0458064 0.0490022 0.18 0 pose: 0.0 5.30279 -0.396512 0 -0.00793136 -0.00421439 -0.769701 0.638342 uwb: 0.50088789 882.767 466.805 +imu_odom_: 1691062447.412513946 0.407014 -0.158017 9.9934 -0.0426106 0.0372843 0.0340885 0.18 0 pose: 0.42003273 5.30362 -0.406477 0 -0.00860743 -0.00511925 -0.769567 0.638488 uwb: 0.0 882.767 466.805 +imu_odom_: 1691062447.428358642 0.830788 -0.299275 10.2759 -0.0660464 -0.00426106 0.0372843 0.17 0 pose: 0.0 5.30362 -0.406477 0 -0.00860743 -0.00511925 -0.769567 0.638488 uwb: 0.0 882.767 466.805 +imu_odom_: 1691062447.445236301 0.462081 -0.3304 9.61511 -0.0458064 -0.00852212 0.0276969 0.17 0 pose: 0.0 5.30362 -0.406477 0 -0.00860743 -0.00511925 -0.769567 0.638488 uwb: 0.49945307 882.429 467.48 +imu_odom_: 1691062447.462225946 0.557849 -0.488417 9.84975 -0.0490022 -0.0585895 0.056459 0.17 0 pose: 0.39228389 5.30445 -0.416442 0 -0.00839008 -0.00639937 -0.769552 0.638497 uwb: 0.0 882.429 467.48 +imu_odom_: 1691062447.479345077 0.402226 -0.071826 9.81862 -0.056459 0.015979 0.0426106 0.18 0 pose: 0.0 5.30445 -0.416442 0 -0.00839008 -0.00639937 -0.769552 0.638497 uwb: 0.0 882.429 467.48 +imu_odom_: 1691062447.496217486 0.483629 -0.292093 10.1897 -0.0553937 -0.0234358 0.0372843 0.18 0 pose: 0.50884947 5.30529 -0.426407 0 -0.00902142 -0.00404511 -0.76951 0.638559 uwb: 0.50010048 884.915 467.73 +imu_odom_: 1691062447.513215298 0.0143652 -0.248997 9.41879 -0.0681769 -0.00213053 0.0575243 0.18 0.02 pose: 0.0 5.30529 -0.426407 0 -0.00902142 -0.00404511 -0.76951 0.638559 uwb: 0.0 884.915 467.73 +imu_odom_: 1691062447.530257437 0.612916 -0.320823 10.4076 -0.04048 -0.0308927 0.0330232 0.18 0.02 pose: 0.0 5.30529 -0.426407 0 -0.00902142 -0.00404511 -0.76951 0.638559 uwb: 0.0 884.915 467.73 +imu_odom_: 1691062447.555239569 0.399832 -0.263362 9.52892 -0.052198 -0.0106526 0.0607201 0.18 0.02 pose: 0.50953772 5.29616 -0.437211 0 -0.00692295 -0.0018381 -0.769446 0.638672 uwb: 0.50009758 884.55 468.29 +imu_odom_: 1691062447.579286142 0.21069 -0.316035 10.0269 -0.0394148 0.00745685 0.0319579 0.18 -0.02 pose: 0.16177448 5.29616 -0.437211 0 -0.00725132 -0.00175066 -0.769411 0.63871 uwb: 0.0 884.55 468.29 +imu_odom_: 1691062447.604232403 0.112527 -0.509965 10.0748 -0.052198 -0.00106526 0.0553937 0.25 0.02 pose: 0.25854113 5.29616 -0.437211 0 -0.00517822 -0.000239027-0.769318 0.638846 uwb: 0.49980010 883.302 469.26 +imu_odom_: 1691062447.629364725 0.486023 -0.0311246 9.95988 -0.0245011 -0.0170442 0.0330232 0.26 0.02 pose: 0.40839368 5.29701 -0.447175 0 -0.00320693 0.00329116 -0.769222 0.638965 uwb: 0.0 883.302 469.26 +imu_odom_: 1691062447.655206881 0.914585 -0.407014 10.0748 -0.0639159 -0.0383495 0.0649811 0.26 0.02 pose: 0.0 5.29701 -0.447175 0 -0.00320693 0.00329116 -0.769222 0.638965 uwb: 0.50010632 882.023 470.072 +imu_odom_: 1691062447.671269134 0.308852 -0.169988 9.98622 -0.0447411 0.0266316 0.0340885 0.21 0 pose: 0.7091632 5.29701 -0.447175 0 -0.00288024 0.00253016 -0.76924 0.638949 uwb: 0.0 882.023 470.072 +imu_odom_: 1691062447.688373975 0.778116 -0.203507 10.1945 -0.0490022 -0.0351537 0.0468716 0.21 0 pose: 0.0 5.29701 -0.447175 0 -0.00288024 0.00253016 -0.76924 0.638949 uwb: 0.49912644 881.708 470.841 +imu_odom_: 1691062447.713200083 0.842759 -0.122104 10.3238 -0.0255663 -0.04048 0.0308927 0.24 0 pose: 0.50896320 5.29785 -0.457139 0 -0.00406059 -0.000392958-0.769083 0.639136 uwb: 0.0 881.708 470.841 +imu_odom_: 1691062447.737200870 0.629675 -0.296881 9.79468 -0.056459 -0.0383495 0.0596548 0.24 0 pose: 0.0 5.29785 -0.457139 0 -0.00406059 -0.000392958-0.769083 0.639136 uwb: 0.0 881.708 470.841 +imu_odom_: 1691062447.762309278 0.562637 -0.222661 9.87848 -0.0500674 -0.0266316 0.0340885 0.18 0 pose: 0.33016029 5.2987 -0.467103 0 -0.00472955 -0.00240518 -0.769076 0.639135 uwb: 0.49939474 883.135 470.716 +imu_odom_: 1691062447.786246781 0.184354 -0.378284 9.94791 -0.072438 -0.00106526 0.0575243 0.18 0 pose: 0.0 5.2987 -0.467103 0 -0.00472955 -0.00240518 -0.769076 0.639135 uwb: 0.0 883.135 470.716 +imu_odom_: 1691062447.811247285 0.457293 -0.114922 10.1347 -0.0490022 0.0149137 0.0372843 0.18 0.02 pose: 0.49084990 5.28959 -0.477918 0 -0.00780389 -0.00474713 -0.768961 0.63923 uwb: 0.49994300 885.109 470.885 +imu_odom_: 1691062447.835227950 0.742203 -0.289698 10.4579 -0.076699 -0.0170442 0.0617853 0.18 0.02 pose: 0.0 5.28959 -0.477918 0 -0.00780389 -0.00474713 -0.768961 0.63923 uwb: 0.0 885.109 470.885 +imu_odom_: 1691062447.852174142 0.567426 -0.198719 9.76834 -0.052198 0.0276969 0.0287621 0.24 0 pose: 0.48870640 5.28959 -0.477918 0 -0.00448286 -0.00316004 -0.768886 0.639363 uwb: 0.50115328 883.853 471.784 +imu_odom_: 1691062447.869175745 0.208296 -0.311246 10.0173 -0.0596548 -0.0511327 0.0543285 0.24 0 pose: 0.0 5.28959 -0.477918 0 -0.00448286 -0.00316004 -0.768886 0.639363 uwb: 0.0 883.853 471.784 +imu_odom_: 1691062447.886204469 0.94571 -0.268151 10.0149 -0.0628506 0.0351537 0.0436758 0.24 0 pose: 0.49056118 5.29045 -0.487881 0 -0.00542713 -0.00498864 -0.768747 0.639511 uwb: 0.0 883.853 471.784 +imu_odom_: 1691062447.910179010 0.656011 0.023942 9.76834 -0.0511327 -0.0138484 0.0479369 0.23 0 pose: 0.0 5.29045 -0.487881 0 -0.00542713 -0.00498864 -0.768747 0.639511 uwb: 0.49893396 886.231 471.603 +imu_odom_: 1691062447.928232240 0.761356 -0.373495 10.1801 -0.0596548 0.00213053 0.0607201 0.23 0 pose: 0.33937005 5.29131 -0.497844 0 -0.00564697 -0.0048481 -0.768691 0.639577 uwb: 0.0 886.231 471.603 +imu_odom_: 1691062447.944180465 0.584185 -0.0981623 10.2807 -0.0426106 0.00958738 0.04048 0.2 0 pose: 0.41997732 5.28221 -0.508669 0 -0.00645322 -0.00743774 -0.76855 0.639714 uwb: 0.49897479 886.821 472.101 +imu_odom_: 1691062447.961230479 0.512359 -0.0550666 9.87369 -0.0713727 0.00639159 0.0511327 0.2 0 pose: 0.0 5.28221 -0.508669 0 -0.00645322 -0.00743774 -0.76855 0.639714 uwb: 0.0 886.821 472.101 +imu_odom_: 1691062447.979161223 0.562637 -0.440533 9.91199 -0.0447411 0.0234358 0.0319579 0.19 0 pose: 0.43047610 5.28269 -0.514218 0 -0.00432424 -0.00838125 -0.768433 0.639861 uwb: 0.0 886.821 472.101 +imu_odom_: 1691062447.996181199 0.184354 -0.287304 9.4978 -0.0511327 0.0543285 0.0426106 0.19 0 pose: 0.0 5.28269 -0.514218 0 -0.00432424 -0.00838125 -0.768433 0.639861 uwb: 0.50039503 885.093 473.028 +imu_odom_: 1691062448.13172016 0.550666 -0.328006 10.2807 -0.0607201 -0.0511327 0.0468716 0.19 0 pose: 0.0 5.28269 -0.514218 0 -0.00432424 -0.00838125 -0.768433 0.639861 uwb: 0.0 885.093 473.028 +imu_odom_: 1691062448.30164002 0.349553 -0.0311246 9.76834 -0.0308927 0.0191748 0.0287621 0.18 -0.02 pose: 0.42011147 5.28308 -0.518631 0 -0.00447711 -0.00479188 -0.768446 0.63988 uwb: 0.0 885.093 473.028 +imu_odom_: 1691062448.46248136 0.148441 -0.251391 10.1442 -0.056459 -0.0276969 0.0511327 0.19 0 pose: 0.0 5.28308 -0.518631 0 -0.00447711 -0.00479188 -0.768446 0.63988 uwb: 0.50032522 888.846 472.56 +imu_odom_: 1691062448.70253309 0.0957681 -0.234632 9.94551 -0.0543285 -0.0351537 0.0394148 0.19 0 pose: 0.33967059 5.28395 -0.528593 0 -0.00303816 -0.00396029 -0.768464 0.639874 uwb: 0.0 888.846 472.56 +imu_odom_: 1691062448.88347376 0.622492 0.153229 9.76595 -0.0575243 -0.0266316 0.0426106 0.25 0.02 pose: 0.0 5.28395 -0.528593 0 -0.00303816 -0.00396029 -0.768464 0.639874 uwb: 0.50024362 887.595 473.449 +imu_odom_: 1691062448.104148334 0.536301 -0.208296 10.0868 -0.0798948 -0.00958738 0.04048 0.25 0.02 pose: 0.41047904 5.28482 -0.538555 0 -0.00102232 -0.00270483 -0.768432 0.639924 uwb: 0.0 887.595 473.449 +imu_odom_: 1691062448.127201035 0.536301 -0.371101 9.85932 -0.0532632 0.00319579 0.0255663 0.19 0 pose: 0.25891745 5.27486 -0.539426 0 -0.00260185 -0.00392512 -0.768411 0.63994 uwb: 0.0 887.595 473.449 +imu_odom_: 1691062448.141195327 0.428562 -0.363919 9.77074 -0.052198 0.0255663 0.0372843 0.19 0 pose: 0.7015228 5.27486 -0.539426 0 -0.00314233 -0.0034988 -0.76844 0.639905 uwb: 0.50005114 885.932 474.648 +imu_odom_: 1691062448.158379209 0.435745 -0.0766145 9.78989 -0.0308927 -0.00745685 0.0319579 0.19 0 pose: 0.0 5.27486 -0.539426 0 -0.00314233 -0.0034988 -0.76844 0.639905 uwb: 0.0 885.932 474.648 +imu_odom_: 1691062448.174298861 0.117316 -0.0981623 9.75637 -0.0383495 0.0319579 0.0415453 0.19 0 pose: 0.47215647 5.27573 -0.549388 0 -0.00297379 -0.00221454 -0.768561 0.639765 uwb: 0.0 885.932 474.648 +imu_odom_: 1691062448.199194681 0.237026 -0.177171 9.93115 -0.0628506 0.00319579 0.052198 0.19 0 pose: 0.0 5.27573 -0.549388 0 -0.00297379 -0.00221454 -0.768561 0.639765 uwb: 0.49952329 891.491 473.736 +imu_odom_: 1691062448.213294545 0.110133 -0.275333 9.93354 -0.0490022 -0.0138484 0.0372843 0.18 0 pose: 0.0 5.27573 -0.549388 0 -0.00297379 -0.00221454 -0.768561 0.639765 uwb: 0.0 891.491 473.736 +imu_odom_: 1691062448.230369647 0.962469 -0.126893 9.97664 -0.0458064 0.00532632 0.0532632 0.18 0.05 pose: 0.40815472 5.27659 -0.559351 0 0.000948882 -0.000118556-0.768458 0.6399 uwb: 0.0 891.491 473.736 +imu_odom_: 1691062448.255287339 0.687136 0.00957681 9.73004 -0.0415453 -0.0170442 0.036219 0.19 0 pose: 0.0 5.27659 -0.559351 0 0.000948882 -0.000118556-0.768458 0.6399 uwb: 0.49981201 889.729 474.486 +imu_odom_: 1691062448.272120386 0.397437 -0.438139 9.63187 -0.0660464 -0.0511327 0.0585895 0.19 0 pose: 0.31174966 5.27708 -0.564958 0 0.000702389 -0.00031266 -0.768394 0.639977 uwb: 0.0 889.729 474.486 +imu_odom_: 1691062448.296115352 0.464475 -0.229843 9.61511 -0.0383495 -0.0170442 0.015979 0.19 0 pose: 0.0 5.27708 -0.564958 0 0.000702389 -0.00031266 -0.768394 0.639977 uwb: 0.50121476 889.839 475.015 +imu_odom_: 1691062448.314139427 0.840365 -0.225055 10.0341 -0.0660464 0.0149137 0.0458064 0.19 0 pose: 0.48780840 5.2675 -0.570186 0 -0.00184951 -0.00168333 -0.768366 0.640006 uwb: 0.0 889.839 475.015 +imu_odom_: 1691062448.339288384 0.770933 -0.11971 9.72764 -0.0468716 -0.02024 0.0394148 0.18 0.02 pose: 0.34988940 5.26838 -0.580148 0 -0.00480763 -0.00263658 -0.768449 0.639888 uwb: 0.50006281 888.081 475.747 +imu_odom_: 1691062448.364145708 0.531513 -0.0047884 9.83299 -0.076699 -0.00532632 0.0596548 0.18 0.02 pose: 0.8128682 5.26838 -0.580148 0 -0.00520081 -0.00343157 -0.768447 0.639883 uwb: 0.0 888.081 475.747 +imu_odom_: 1691062448.389127559 0.265756 -0.0430956 10.3597 -0.0415453 0.0458064 0.0245011 0.2 0 pose: 0.41877599 5.26925 -0.59011 0 -0.0043973 -0.00660898 -0.768296 0.640046 uwb: 0.50005989 890.032 475.982 +imu_odom_: 1691062448.406120421 0.471658 -0.136469 9.50019 -0.0575243 -0.0308927 0.0553937 0.2 0 pose: 0.0 5.26925 -0.59011 0 -0.0043973 -0.00660898 -0.768296 0.640046 uwb: 0.0 890.032 475.982 +imu_odom_: 1691062448.422304002 0.225055 -0.435745 9.63427 -0.0500674 0.0500674 0.0383495 0.2 -0.02 pose: 0.0 5.26925 -0.59011 0 -0.0043973 -0.00660898 -0.768296 0.640046 uwb: 0.0 890.032 475.982 +imu_odom_: 1691062448.440298622 0.174777 -0.253785 9.50259 -0.0479369 -0.0319579 0.0490022 0.2 -0.02 pose: 0.33110533 5.27012 -0.600072 0 -0.000690362-0.00563031 -0.768397 0.639949 uwb: 0.49847050 890.547 476.162 +imu_odom_: 1691062448.464125024 0.560243 -0.407014 9.74201 -0.0713727 0.0138484 0.0543285 0.18 -0.02 pose: 0.0 5.27012 -0.600072 0 -0.000690362-0.00563031 -0.768397 0.639949 uwb: 0.0 890.547 476.162 +imu_odom_: 1691062448.482099522 0.19393 -0.311246 9.58878 -0.076699 0.0117179 0.0458064 0.18 -0.02 pose: 0.50988501 5.27099 -0.610033 0 0.000447459 -0.00206187 -0.768281 0.640109 uwb: 0.0 890.547 476.162 +imu_odom_: 1691062448.499094425 0.471658 -0.435745 10.0987 -0.0713727 -0.015979 0.0436758 0.18 -0.02 pose: 0.0 5.27099 -0.610033 0 0.000447459 -0.00206187 -0.768281 0.640109 uwb: 0.49991116 887.888 477.133 +imu_odom_: 1691062448.520187936 0.253785 -0.21069 10.5345 -0.0298274 0.00639159 0.0266316 0.2 0 pose: 0.50849683 5.26158 -0.617102 0 -0.0018395 0.00142852 -0.768146 0.640271 uwb: 0.0 887.888 477.133 +imu_odom_: 1691062448.537242332 0.445322 -0.361524 9.63666 -0.052198 -0.0500674 0.0511327 0.19 0 pose: 0.0 5.26158 -0.617102 0 -0.0018395 0.00142852 -0.768146 0.640271 uwb: 0.49996949 888.846 477.145 +imu_odom_: 1691062448.554090252 0.339977 -0.347159 9.94551 -0.0575243 -0.00426106 0.0330232 0.19 0 pose: 0.0 5.26158 -0.617102 0 -0.0018395 0.00142852 -0.768146 0.640271 uwb: 0.0 888.846 477.145 +imu_odom_: 1691062448.578101841 0.562637 -0.263362 10.2496 -0.0713727 -0.00213053 0.0479369 0.18 0 pose: 0.28082783 5.26191 -0.62087 0 -0.0004006940.00220154 -0.768206 0.640199 uwb: 0.0 888.846 477.145 +imu_odom_: 1691062448.604153110 0.85473 -0.337582 10.3286 -0.0394148 -0.0553937 0.036219 0.18 0 pose: 0.35117550 5.26279 -0.630832 0 -0.00220091 0.00348638 -0.768179 0.640222 uwb: 0.50406109 890.208 476.809 +imu_odom_: 1691062448.630102599 0.895431 -0.0790087 10.1969 -0.0639159 -0.0319579 0.0628506 0.19 0 pose: 0.41858352 5.2634 -0.637737 0 -0.00580744 0.000322089 -0.768167 0.640224 uwb: 0.0 890.208 476.809 +imu_odom_: 1691062448.654113604 0.830788 -0.100556 10.3166 -0.036219 -0.00319579 0.0330232 0.19 0 pose: 0.7973824 5.26367 -0.640793 0 -0.0062164 -0.00046073 -0.768108 0.64029 uwb: 0.49566791 894.863 476.285 +imu_odom_: 1691062448.668088066 0.251391 -0.112527 9.62708 -0.0479369 0.0266316 0.0436758 0.18 0.02 pose: 0.0 5.26367 -0.640793 0 -0.0062164 -0.00046073 -0.768108 0.64029 uwb: 0.0 894.863 476.285 +imu_odom_: 1691062448.684141287 0.6608 -0.481235 9.76834 -0.0596548 0.00106526 0.0436758 0.18 0.02 pose: 0.48976818 5.26367 -0.640793 0 -0.0070051 -0.00439954 -0.768019 0.640374 uwb: 0.0 894.863 476.285 +imu_odom_: 1691062448.702121909 1.1564 -0.0670376 10.24 -0.0340885 -0.0490022 0.04048 0.18 0.02 pose: 0.0 5.26367 -0.640793 0 -0.0070051 -0.00439954 -0.768019 0.640374 uwb: 0.49990241 896.274 476.195 +imu_odom_: 1691062448.726297104 1.76932 -0.258574 9.60793 -0.0628506 0.0511327 0.0596548 0.25 0.02 pose: 0.31109057 5.25459 -0.651637 0 -0.00818924 -0.00424845 -0.767976 0.640412 uwb: 0.0 896.274 476.195 +imu_odom_: 1691062448.751104267 0.715866 -0.167594 9.086 -0.0308927 0.015979 0.0415453 0.23 0 pose: 0.34084295 5.25519 -0.658443 0 -0.0102355 -0.0063374 -0.7678 0.640576 uwb: 0.50003948 897.811 476.755 +imu_odom_: 1691062448.776077078 -0.0430956 -0.277727 9.49301 -0.0351537 0.0458064 0.0330232 0.23 0 pose: 0.0 5.25519 -0.658443 0 -0.0102355 -0.0063374 -0.7678 0.640576 uwb: 0.0 897.811 476.755 +imu_odom_: 1691062448.793092687 0.301669 -0.222661 9.94551 -0.0447411 0.00745685 0.0458064 0.2 0 pose: 0.7945536 5.25548 -0.661598 0 -0.0102783 -0.00713831 -0.767795 0.640574 uwb: 0.49939497 898.34 477.035 +imu_odom_: 1691062448.809206275 0.42138 -0.0981623 10.2161 -0.0692422 0.00852212 0.0575243 0.2 0 pose: 0.0 5.25548 -0.661598 0 -0.0102783 -0.00713831 -0.767795 0.640574 uwb: 0.0 898.34 477.035 +imu_odom_: 1691062448.826200012 0.509965 -0.25618 9.54329 -0.0490022 -0.0468716 0.0308927 0.2 0 pose: 0.0 5.25548 -0.661598 0 -0.0102783 -0.00713831 -0.767795 0.640574 uwb: 0.0 898.34 477.035 +imu_odom_: 1691062448.843091677 0.684742 0.105345 10.1682 -0.0511327 -0.036219 0.0511327 0.23 0.02 pose: 0.48903034 5.25637 -0.671558 0 -0.00738496 -0.00638998 -0.767849 0.640556 uwb: 0.50063441 900.609 476.503 +imu_odom_: 1691062448.868135938 0.675165 -0.0167594 10.0245 -0.0426106 0.00213053 0.0308927 0.23 0.02 pose: 0.0 5.25637 -0.671558 0 -0.00738496 -0.00638998 -0.767849 0.640556 uwb: 0.0 900.609 476.503 +imu_odom_: 1691062448.892221018 0.684742 -0.354342 9.70131 -0.0830906 0.0149137 0.0649811 0.18 0 pose: 0.84990264 5.25035 -0.682136 0 -0.00485267 -0.00845637 -0.767806 0.640608 uwb: 0.50089980 899.276 476.973 +imu_odom_: 1691062448.916062877 0.593762 -0.220267 9.73243 -0.0575243 0.00958738 0.0330232 0.18 0 pose: 0.0 5.25035 -0.682136 0 -0.00485267 -0.00845637 -0.767806 0.640608 uwb: 0.0 899.276 476.973 +imu_odom_: 1691062448.939102453 0.871489 -0.0454898 9.91678 -0.0681769 -0.0149137 0.0543285 0.27 0.02 pose: 0.7949327 5.2473 -0.682409 0 -0.00559906 -0.00801559 -0.767737 0.640691 uwb: 0.49927540 900.217 476.937 +imu_odom_: 1691062448.965081980 0.572214 -0.112527 10.0485 -0.0436758 0.0181095 0.0351537 0.24 0 pose: 0.47023461 5.24819 -0.692369 0 -0.00859016 -0.00570092 -0.767597 0.64085 uwb: 0.0 900.217 476.937 +imu_odom_: 1691062448.990058582 0.0191536 -0.0766145 9.6199 -0.0745685 0.0308927 0.0479369 0.24 0 pose: 0.0 5.24819 -0.692369 0 -0.00859016 -0.00570092 -0.767597 0.64085 uwb: 0.50083272 905.76 476.244 +imu_odom_: 1691062449.8082077 0.792481 -0.222661 10.3022 -0.0660464 -0.00532632 0.0447411 0.18 -0.02 pose: 0.24023546 5.24908 -0.702329 0 -0.008278 -0.00748157 -0.767538 0.640906 uwb: 0.0 905.76 476.244 +imu_odom_: 1691062449.32122840 0.306458 -0.316035 10.1969 -0.0735032 0.0149137 0.0468716 0.18 -0.02 pose: 0.51037203 5.24998 -0.712288 0 -0.00478376 -0.00667565 -0.767521 0.640971 uwb: 0.0 905.76 476.244 +imu_odom_: 1691062449.58036762 0.639252 -0.0502782 10.3142 -0.0553937 -0.0319579 0.036219 0.2 0 pose: 0.33953365 5.24998 -0.712288 0 -0.00470032 -0.00457615 -0.767453 0.641071 uwb: 0.49929306 904.45 476.839 +imu_odom_: 1691062449.80042802 0.849942 -0.363919 10.3286 -0.0671117 -0.0415453 0.0447411 0.2 0 pose: 0.0 5.24998 -0.712288 0 -0.00470032 -0.00457615 -0.767453 0.641071 uwb: 0.0 904.45 476.839 +imu_odom_: 1691062449.105169023 0.610521 -0.237026 10.1442 -0.036219 -0.00213053 0.0266316 0.19 0 pose: 0.47919962 5.24092 -0.723148 0 -0.00729375 -0.00768372 -0.767418 0.641059 uwb: 0.49945062 903.607 477.4 +imu_odom_: 1691062449.123067996 -0.110133 -0.201113 9.51216 -0.0777643 0.0458064 0.0500674 0.19 0 pose: 0.0 5.24092 -0.723148 0 -0.00729375 -0.00768372 -0.767418 0.641059 uwb: 0.0 903.607 477.4 +imu_odom_: 1691062449.146050424 0.177171 -0.0335188 9.97664 -0.0500674 0 0.036219 0.18 0.02 pose: 0.43025194 5.24182 -0.733108 0 -0.0069328 -0.00427949 -0.767463 0.641042 uwb: 0.50115083 906.315 476.741 +imu_odom_: 1691062449.172192111 0.572214 -0.232238 10.0844 -0.0756338 0.00426106 0.0394148 0.18 0.02 pose: 0.0 5.24182 -0.733108 0 -0.0069328 -0.00427949 -0.767463 0.641042 uwb: 0.0 906.315 476.741 +imu_odom_: 1691062449.195042720 0.529119 -0.378284 9.91199 -0.0436758 0.0255663 0.0223706 0.19 0 pose: 0.49124115 5.24247 -0.740254 0 -0.00713389 -0.00447333 -0.767489 0.641007 uwb: 0.49937479 902.257 477.77 +imu_odom_: 1691062449.212099166 0.0502782 -0.363919 9.77074 -0.056459 0.0138484 0.0426106 0.19 0 pose: 0.0 5.24247 -0.740254 0 -0.00713389 -0.00447333 -0.767489 0.641007 uwb: 0.0 902.257 477.77 +imu_odom_: 1691062449.235146044 0.37589 -0.0502782 10.4459 -0.00958738 0.00958738 0.0298274 0.19 0 pose: 0.39907055 5.24323 -0.748659 0 -0.00654081 -0.000876821-0.767591 0.640906 uwb: 0.0 902.257 477.77 +imu_odom_: 1691062449.259171059 0.667982 -0.146046 10.3717 -0.0649811 -0.00852212 0.0575243 0.19 0 pose: 0.0 5.24323 -0.748659 0 -0.00654081 -0.000876821-0.767591 0.640906 uwb: 0.50051216 903.75 478.186 +imu_odom_: 1691062449.285016155 0.474052 -0.28491 9.89763 -0.0436758 -0.0287621 0.0351537 0.25 0 pose: 0.47071893 5.23426 -0.760578 0 -0.00497296 -0.00408297 -0.767533 0.640977 uwb: 0.0 903.75 478.186 +imu_odom_: 1691062449.298083937 0.23942 -0.0694318 9.84975 -0.0585895 0.0426106 0.0511327 0.25 0 pose: 0.0 5.23426 -0.760578 0 -0.00497296 -0.00408297 -0.767533 0.640977 uwb: 0.49991139 903.784 478.37 +imu_odom_: 1691062449.323083298 0.37589 0.110133 9.99579 -0.0532632 0.0149137 0.0436758 0.18 0 pose: 0.38912878 5.23456 -0.763883 0 -0.00365927 -0.00148549 -0.767524 0.641008 uwb: 0.0 903.784 478.37 +imu_odom_: 1691062449.340151117 0.706289 -0.0861913 10.149 -0.0735032 -0.0415453 0.0553937 0.18 0 pose: 0.7944082 5.23456 -0.763883 0 -0.00293543 -0.00188651 -0.767517 0.641019 uwb: 0.50039550 906.12 478.303 +imu_odom_: 1691062449.365015160 0.349553 -0.11971 9.79228 -0.0532632 -0.0181095 0.0234358 0.18 0 pose: 0.34123098 5.23546 -0.773842 0 -0.00250787 -0.0043501 -0.767407 0.641141 uwb: 0.0 906.12 478.303 +imu_odom_: 1691062449.390041935 0.316035 -0.323217 10.3262 -0.076699 -0.0553937 0.0543285 0.18 0 pose: 0.0 5.23546 -0.773842 0 -0.00250787 -0.0043501 -0.767407 0.641141 uwb: 0.49804203 905.227 478.536 +imu_odom_: 1691062449.413074523 0.181959 -0.141258 9.93594 -0.052198 -0.00639159 0.0340885 0.19 0 pose: 0.7967121 5.23546 -0.773842 0 -0.00178136 -0.00416036 -0.767452 0.641091 uwb: 0.0 905.227 478.536 +imu_odom_: 1691062449.437070083 0.715866 -0.138864 9.98622 -0.092678 -0.0458064 0.0553937 0.19 0 pose: 0.0 5.23546 -0.773842 0 -0.00178136 -0.00416036 -0.767452 0.641091 uwb: 0.0 905.227 478.536 +imu_odom_: 1691062449.455120705 0.555455 -0.172383 9.27514 -0.0681769 -0.0138484 0.0319579 0.19 0 pose: 0.48903348 5.23636 -0.783801 0 -0.00024976 -0.00116677 -0.767446 0.641112 uwb: 0.49982682 907.54 478.336 +imu_odom_: 1691062449.479046857 0.117316 -0.344765 10.0916 -0.0798948 -0.015979 0.0426106 0.19 0 pose: 0.0 5.23636 -0.783801 0 -0.00024976 -0.00116677 -0.767446 0.641112 uwb: 0.0 907.54 478.336 +imu_odom_: 1691062449.505187086 -0.0622492 -0.184354 10.2687 -0.04048 0.0213053 0.0319579 0.18 0 pose: 0.65986333 5.2273 -0.794663 0 -0.00205252 -0.00291659 -0.767384 0.641178 uwb: 0.0 907.54 478.336 +imu_odom_: 1691062449.518108759 0.0766145 -0.201113 9.991 -0.0585895 0.00426106 0.0585895 0.18 0 pose: 0.0 5.2273 -0.794663 0 -0.00205252 -0.00291659 -0.767384 0.641178 uwb: 0.0 907.54 478.336 +imu_odom_: 1691062449.542002540 0.557849 -0.268151 10.1442 -0.0447411 0.0351537 0.0340885 0.18 -0.02 pose: 0.55100840 5.22821 -0.804622 0 0.00198983 0.0010924 -0.767357 0.641216 uwb: 0.100042938 908.028 478.44 +imu_odom_: 1691062449.568009492 0.696713 -0.440533 10.3932 -0.0628506 -0.00532632 0.04048 0.18 -0.02 pose: 0.0 5.22821 -0.804622 0 0.00198983 0.0010924 -0.767357 0.641216 uwb: 0.0 908.028 478.44 +imu_odom_: 1691062449.593040350 0.610521 -0.023942 10.1801 -0.04048 -0.00639159 0.0308927 0.19 0 pose: 0.8015241 5.22821 -0.804622 0 0.00139771 0.000853809 -0.767372 0.6412 uwb: 0.49967809 909.895 478.377 +imu_odom_: 1691062449.610103211 0.339977 -0.505177 10.5201 -0.0575243 -0.0106526 0.0394148 0.19 0 pose: 0.0 5.22821 -0.804622 0 0.00139771 0.000853809 -0.767372 0.6412 uwb: 0.0 909.895 478.377 +imu_odom_: 1691062449.634094689 0.0885855 -0.258574 10.137 -0.036219 0.0117179 0.0245011 0.21 0 pose: 0.49907732 5.22911 -0.814581 0 -0.0023805 -0.000564884-0.767416 0.641145 uwb: 0.0 909.895 478.377 +imu_odom_: 1691062449.659990821 0.828394 -0.466869 9.49062 -0.0511327 -0.0308927 0.0351537 0.2 -0.02 pose: 0.25094142 5.23001 -0.82454 0 -0.00249133 -0.00160967 -0.767463 0.641086 uwb: 0.49936604 911.38 478.837 +imu_odom_: 1691062449.686097804 0.378284 -0.162806 9.68215 -0.0234358 -0.0468716 0.0458064 0.2 -0.02 pose: 0.32968815 5.22393 -0.831827 0 -0.0007199950.000824773 -0.767579 0.640954 uwb: 0.0 911.38 478.837 +imu_odom_: 1691062449.709977586 0.129287 -0.11971 9.99819 -0.0458064 -0.0127832 0.0500674 0.22 0 pose: 0.7899753 5.22095 -0.8354 0 -0.00156483 0.000590291 -0.76759 0.640939 uwb: 0.49919106 910.009 479.025 +imu_odom_: 1691062449.724051793 0.641646 -0.225055 9.84975 -0.0447411 0.0213053 0.0340885 0.22 0 pose: 0.0 5.22095 -0.8354 0 -0.00156483 0.000590291 -0.76759 0.640939 uwb: 0.0 910.009 479.025 +imu_odom_: 1691062449.748043562 0.739808 -0.124498 9.91918 -0.0415453 -0.0255663 0.0447411 0.18 0.02 pose: 0.50997565 5.22095 -0.8354 0 -0.000461377-0.000927301-0.767541 0.640998 uwb: 0.50127040 909.151 479.483 +imu_odom_: 1691062449.774044098 0.301669 -0.009576819.80426 -0.0596548 0.00639159 0.0607201 0.18 0.02 pose: 0.0 5.22095 -0.8354 0 -0.000461377-0.000927301-0.767541 0.640998 uwb: 0.0 909.151 479.483 +imu_odom_: 1691062449.786961397 0.011971 -0.306458 9.62708 -0.0798948 -0.0127832 0.0745685 0.18 0.02 pose: 0.0 5.22095 -0.8354 0 -0.000461377-0.000927301-0.767541 0.640998 uwb: 0.0 909.151 479.483 +imu_odom_: 1691062449.811033074 -0.011971 -0.294487 10.0509 -0.0543285 0.0191748 0.036219 0.18 0.02 pose: 0.39160766 5.22185 -0.845359 0 -0.000419957-0.00181917 -0.767494 0.641053 uwb: 0.49872737 910.484 479.062 +imu_odom_: 1691062449.837007947 0.486023 -0.380678 9.91199 -0.052198 -0.0490022 0.0490022 0.22 0 pose: 0.78880301 5.21675 -0.862525 0 0.00319797 -3.22951e-05-0.767181 0.641423 uwb: 0.0 910.484 479.062 +imu_odom_: 1691062449.850943920 0.632069 -0.179565 10.2831 -0.0330232 -0.0490022 0.0266316 0.22 0 pose: 0.0 5.21675 -0.862525 0 0.00319797 -3.22951e-05-0.767181 0.641423 uwb: 0.50038675 911.86 478.899 +imu_odom_: 1691062449.878106031 0.117316 -0.229843 10.0987 -0.0788296 -0.015979 0.0607201 0.18 0 pose: 0.8022531 5.2137 -0.866186 0 0.00230477 8.82657e-05 -0.76716 0.641452 uwb: 0.0 911.86 478.899 +imu_odom_: 1691062449.902971532 0.533907 -0.246603 9.61751 -0.0639159 -0.00319579 0.0394148 0.18 0 pose: 0.0 5.2137 -0.866186 0 0.00230477 8.82657e-05 -0.76716 0.641452 uwb: 0.49987640 913.785 479.243 +imu_odom_: 1691062449.929009981 0.725443 -0.31364 9.5816 -0.0639159 -0.0255663 0.04048 0.2 0 pose: 0.40253806 5.21461 -0.876145 0 -0.000251183-0.000385443-0.76711 0.641515 uwb: 0.0 913.785 479.243 +imu_odom_: 1691062449.941947403 0.665588 -0.260968 10.1299 -0.0543285 -0.0191748 0.036219 0.2 0 pose: 0.0 5.21461 -0.876145 0 -0.000251183-0.000385443-0.76711 0.641515 uwb: 0.49939812 915.21 479.39 +imu_odom_: 1691062449.965951712 0.620098 -0.308852 10.4531 -0.0809601 -0.0490022 0.0660464 0.18 0 pose: 0.51747937 5.21461 -0.876145 0 -0.00216703 -0.000493754-0.766981 0.641666 uwb: 0.0 915.21 479.39 +imu_odom_: 1691062449.991061602 0.667982 -0.213084 10.3453 -0.0500674 -0.00958738 0.036219 0.18 0 pose: 0.0 5.21461 -0.876145 0 -0.00216703 -0.000493754-0.766981 0.641666 uwb: 0.50012137 914.32 479.655 +imu_odom_: 1691062450.4987368 0.828394 -0.201113 9.84017 -0.0575243 0.0170442 0.056459 0.18 0 pose: 0.0 5.21461 -0.876145 0 -0.00216703 -0.000493754-0.766981 0.641666 uwb: 0.0 914.32 479.655 +imu_odom_: 1691062450.28920530 0.718261 -0.112527 9.92875 -0.0170442 0.0181095 0.0223706 0.18 0 pose: 0.38895088 5.21553 -0.886103 0 -0.00611833 -0.00229848 -0.766909 0.641723 uwb: 0.0 914.32 479.655 +imu_odom_: 1691062450.55077394 0.244209 0.0047884 9.85214 -0.0575243 -0.015979 0.0671117 0.23 0.02 pose: 0.78968094 5.2071 -0.9036 0 -0.00892744 -0.00871795 -0.766839 0.641718 uwb: 0.49992322 911.202 480.536 +imu_odom_: 1691062450.76911964 0.641646 -0.011971 10.1323 -0.0468716 0.0106526 0.0436758 0.23 0.02 pose: 0.0 5.2071 -0.9036 0 -0.00892744 -0.00871795 -0.766839 0.641718 uwb: 0.0 911.202 480.536 +imu_odom_: 1691062450.93918840 0.500388 -0.268151 9.84496 -0.0660464 -0.00745685 0.0479369 0.19 0 pose: 0.8065696 5.20741 -0.90694 0 -0.00818486 -0.00855458 -0.766777 0.641804 uwb: 0.50246633 911.262 480.883 +imu_odom_: 1691062450.118033397 0.706289 -0.311246 10.2161 -0.04048 -0.0649811 0.0308927 0.19 0 pose: 0.0 5.20741 -0.90694 0 -0.00818486 -0.00855458 -0.766777 0.641804 uwb: 0.0 911.262 480.883 +imu_odom_: 1691062450.141908524 0.632069 -0.198719 10.2161 -0.052198 -0.0298274 0.0458064 0.18 -0.02 pose: 0.47940982 5.20833 -0.916898 0 -0.00536284 -0.00925256 -0.766595 0.642042 uwb: 0.49772729 914.889 480.3 +imu_odom_: 1691062450.158918900 0.701501 -0.332794 9.56005 -0.0415453 -0.00426106 0.0255663 0.18 -0.02 pose: 0.0 5.20833 -0.916898 0 -0.00536284 -0.00925256 -0.766595 0.642042 uwb: 0.0 914.889 480.3 +imu_odom_: 1691062450.183993222 0.0383072 -0.153229 9.48822 -0.0735032 0.0308927 0.0553937 0.19 0 pose: 0.40996615 5.20833 -0.916898 0 -0.00822996 -0.00761765 -0.766597 0.642031 uwb: 0.0 914.889 480.3 +imu_odom_: 1691062450.201028094 0.23942 -0.229843 10.0916 -0.0458064 -0.0415453 0.0394148 0.19 0 pose: 0.0 5.20833 -0.916898 0 -0.00822996 -0.00761765 -0.766597 0.642031 uwb: 0.50125022 917.719 480.534 +imu_odom_: 1691062450.217046042 0.687136 -0.105345 9.46188 -0.052198 -0.015979 0.0372843 0.19 0 pose: 0.0 5.20833 -0.916898 0 -0.00822996 -0.00761765 -0.766597 0.642031 uwb: 0.0 917.719 480.534 +imu_odom_: 1691062450.233980010 0.392649 -0.332794 10.1801 -0.0809601 0.00106526 0.0458064 0.18 0.02 pose: 0.42006831 5.20926 -0.926855 0 -0.00903089 -0.00545773 -0.766586 0.642055 uwb: 0.0 917.719 480.534 +imu_odom_: 1691062450.259035667 0.339977 -0.4956 9.98861 -0.0458064 -0.00639159 0.0298274 0.18 0.02 pose: 0.0 5.20926 -0.926855 0 -0.00903089 -0.00545773 -0.766586 0.642055 uwb: 0.49932836 920.951 480.412 +imu_odom_: 1691062450.282012856 0.679953 -0.442927 10.3597 -0.0532632 0.00426106 0.0351537 0.18 0.02 pose: 0.74990826 5.20116 -0.947696 0 -0.00623441 -0.00257506 -0.766534 0.642169 uwb: 0.0 920.951 480.412 +imu_odom_: 1691062450.307900543 0.237026 -0.0766145 10.0149 -0.0468716 -0.02024 0.052198 0.18 0.02 pose: 0.0 5.20116 -0.947696 0 -0.00623441 -0.00257506 -0.766534 0.642169 uwb: 0.50002244 924.197 480.427 +imu_odom_: 1691062450.331938984 0.593762 -0.229843 9.94073 -0.0532632 -0.036219 0.0394148 0.25 -0.02 pose: 0.24099685 5.20116 -0.947696 0 -0.00700838 -0.000954096-0.766586 0.642102 uwb: 0.0 924.197 480.427 +imu_odom_: 1691062450.356974227 0.68953 -0.35913 10.3046 -0.0532632 -0.0287621 0.0553937 0.2 0 pose: 0.22902822 5.20116 -0.947696 0 -0.00768177 -0.000837432-0.76657 0.642114 uwb: 0.50037532 927.869 480.213 +imu_odom_: 1691062450.372953971 0.849942 -0.500388 9.52892 -0.0532632 0.0468716 0.0372843 0.2 0 pose: 0.0 5.20116 -0.947696 0 -0.00768177 -0.000837432-0.76657 0.642114 uwb: 0.0 927.869 480.213 +imu_odom_: 1691062450.397952469 0.251391 0.160412 9.4547 -0.0575243 0.00958738 0.0639159 0.18 0 pose: 0.50065820 5.20209 -0.957653 0 -0.008033 -0.0034801 -0.766456 0.642237 uwb: 0.49961708 929.754 480.476 +imu_odom_: 1691062450.422889432 0.184354 -0.196325 9.87129 -0.0735032 -0.00852212 0.0234358 0.18 0 pose: 0.0 5.20209 -0.957653 0 -0.008033 -0.0034801 -0.766456 0.642237 uwb: 0.0 929.754 480.476 +imu_odom_: 1691062450.446901043 0.332794 -0.411803 10.1299 -0.0681769 -0.00426106 0.0553937 0.18 0 pose: 0.40973284 5.20302 -0.967609 0 -0.0103386 -0.00354482 -0.766299 0.642391 uwb: 0.50043073 927.541 481.184 +imu_odom_: 1691062450.469875315 0.636858 -0.153229 9.48343 -0.0532632 -0.0181095 0.0266316 0.18 0 pose: 0.0 5.20302 -0.967609 0 -0.0103386 -0.00354482 -0.766299 0.642391 uwb: 0.0 927.541 481.184 +imu_odom_: 1691062450.487897366 0.881066 -0.0814029 9.64863 -0.0649811 -0.0468716 0.052198 0.25 -0.02 pose: 0.49997870 5.194 -0.978502 0 -0.00647205 -0.00161195 -0.766287 0.642464 uwb: 0.49935169 929.389 481.19 +imu_odom_: 1691062450.502873017 0.804452 -0.11971 9.95509 -0.0788296 -0.0383495 0.056459 0.25 -0.02 pose: 0.0 5.194 -0.978502 0 -0.00647205 -0.00161195 -0.766287 0.642464 uwb: 0.0 929.389 481.19 +imu_odom_: 1691062450.527935965 0.849942 -0.373495 9.87369 -0.0681769 -0.00852212 0.0372843 0.25 0 pose: 0.46970427 5.19494 -0.988458 0 -0.00701949 -0.00320939 -0.766269 0.642474 uwb: 0.0 929.389 481.19 +imu_odom_: 1691062450.542877495 0.0047884 -0.237026 10.0149 -0.0692422 0.0213053 0.0511327 0.25 0 pose: 0.0 5.19494 -0.988458 0 -0.00701949 -0.00320939 -0.766269 0.642474 uwb: 0.50060279 929.456 481.678 +imu_odom_: 1691062450.565968421 0.881066 -0.0766145 9.59357 -0.052198 0.0308927 0.0276969 0.25 0 pose: 0.0 5.19494 -0.988458 0 -0.00701949 -0.00320939 -0.766269 0.642474 uwb: 0.0 929.456 481.678 +imu_odom_: 1691062450.582982004 0.351948 -0.131681 9.90721 -0.0671117 0.00426106 0.0607201 0.17 0.02 pose: 0.32956581 5.19588 -0.998414 0 -0.00929435 -0.00577596 -0.766137 0.642584 uwb: 0.0 929.456 481.678 +imu_odom_: 1691062450.606865005 0.742203 -0.275333 9.65103 -0.0617853 0.00852212 0.0330232 0.17 0.02 pose: 0.0 5.19588 -0.998414 0 -0.00929435 -0.00577596 -0.766137 0.642584 uwb: 0.49955000 928.579 482.012 +imu_odom_: 1691062450.631911914 0.347159 -0.452504 10.3549 -0.072438 -0.0181095 0.0468716 0.18 0 pose: 0.40025768 5.19588 -0.998414 0 -0.0099085 -0.00562401 -0.766121 0.642595 uwb: 0.0 928.579 482.012 +imu_odom_: 1691062450.654903392 0.277727 -0.0407014 10.647 -0.0266316 0.00426106 0.0245011 0.18 0 pose: 0.0 5.19588 -0.998414 0 -0.0099085 -0.00562401 -0.766121 0.642595 uwb: 0.50170517 929.909 481.617 +imu_odom_: 1691062450.670868846 0.390255 -0.292093 9.66779 -0.0543285 -0.0394148 0.0490022 0.2 -0.02 pose: 0.40003021 5.18687 -1.00931 0 -0.0092327 -0.00645414 -0.766092 0.642632 uwb: 0.0 929.909 481.617 +imu_odom_: 1691062450.693939066 0.411803 -0.0814029 9.48343 -0.0458064 -0.0127832 0.0287621 0.2 -0.02 pose: 0.0 5.18687 -1.00931 0 -0.0092327 -0.00645414 -0.766092 0.642632 uwb: 0.49815308 929.538 482.284 +imu_odom_: 1691062450.718940480 0.308852 -0.201113 9.49301 -0.0735032 0.0181095 0.0575243 0.25 0.02 pose: 0.88185182 5.18875 -1.02922 0 -0.00613968 -0.00354412 -0.766175 0.642593 uwb: 0.0 929.538 482.284 +imu_odom_: 1691062450.742123853 0.811634 -0.124498 10.2472 -0.0287621 0.00426106 0.0351537 0.25 0.02 pose: 0.0 5.18875 -1.02922 0 -0.00613968 -0.00354412 -0.766175 0.642593 uwb: 0.50164392 932.729 482.049 +imu_odom_: 1691062450.760904441 0.0814029 -0.493206 9.65582 -0.0532632 0.00319579 0.056459 0.18 0.02 pose: 0.46924641 5.18875 -1.02922 0 -0.00293132 -0.00275092 -0.766111 0.642695 uwb: 0.0 932.729 482.049 +imu_odom_: 1691062450.784891555 0.61531 -0.148441 10.1682 -0.0330232 -0.0234358 0.0319579 0.18 0.02 pose: 0.0 5.18875 -1.02922 0 -0.00293132 -0.00275092 -0.766111 0.642695 uwb: 0.0 932.729 482.049 +imu_odom_: 1691062450.801908346 0.624887 0 9.77553 -0.0458064 -0.0106526 0.0415453 0.2 0 pose: 0.42894854 5.18969 -1.03918 0 -0.00340951 -0.00320901 -0.766048 0.642766 uwb: 0.49808017 934.151 482.387 +imu_odom_: 1691062450.818021658 0.837971 -0.275333 10.3382 -0.0596548 0.00639159 0.0415453 0.2 0 pose: 0.0 5.18969 -1.03918 0 -0.00340951 -0.00320901 -0.766048 0.642766 uwb: 0.0 934.151 482.387 +imu_odom_: 1691062450.835027076 0.383072 -0.059855 10.1778 -0.0245011 -0.00319579 0.0415453 0.23 0 pose: 0.49100223 5.18068 -1.05008 0 -0.0051402 -0.00709929 -0.766047 0.642725 uwb: 0.0 934.151 482.387 +imu_odom_: 1691062450.850837673 0.191536 -0.320823 9.61033 -0.0649811 0.0191748 0.0735032 0.23 0 pose: 0.0 5.18068 -1.05008 0 -0.0051402 -0.00709929 -0.766047 0.642725 uwb: 0.50243716 939.147 482.06 +imu_odom_: 1691062450.867848631 0.354342 -0.203507 9.85932 -0.0479369 -0.0479369 0.0383495 0.23 0 pose: 0.0 5.18068 -1.05008 0 -0.0051402 -0.00709929 -0.766047 0.642725 uwb: 0.0 939.147 482.06 +imu_odom_: 1691062450.884025811 0.766145 -0.263362 9.73482 -0.0394148 -0.02024 0.0372843 0.18 0 pose: 0.49826973 5.18163 -1.06003 0 -0.00178484 -0.00430324 -0.765898 0.642945 uwb: 0.0 939.147 482.06 +imu_odom_: 1691062450.900956570 -0.0814029 -0.452504 10.1706 -0.0607201 -0.00745685 0.056459 0.25 0.02 pose: 0.0 5.18163 -1.06003 0 -0.00178484 -0.00430324 -0.765898 0.642945 uwb: 0.49845930 936.924 482.657 +imu_odom_: 1691062450.917013014 0.59855 -0.148441 10.3286 -0.0223706 -0.052198 0.0287621 0.25 0.02 pose: 0.0 5.18163 -1.06003 0 -0.00178484 -0.00430324 -0.765898 0.642945 uwb: 0.0 936.924 482.657 +imu_odom_: 1691062450.932960095 0.00718261 -0.124498 9.49062 -0.0596548 0.00213053 0.0681769 0.23 0.02 pose: 0.24144596 5.18258 -1.06999 0 -0.00297693 -0.00437303 -0.76586 0.642985 uwb: 0.0 936.924 482.657 +imu_odom_: 1691062450.949838944 0.380678 -0.31364 10.1849 -0.0596548 -0.0266316 0.0500674 0.23 0.02 pose: 0.0 5.18258 -1.06999 0 -0.00297693 -0.00437303 -0.76586 0.642985 uwb: 0.49829597 940.553 482.346 +imu_odom_: 1691062450.966853985 0.521936 -0.107739 9.9096 -0.0500674 0.0106526 0.0340885 0.23 0.02 pose: 0.32059518 5.18258 -1.06999 0 -0.00288844 -0.00501191 -0.765802 0.643051 uwb: 0.0 940.553 482.346 +imu_odom_: 1691062450.982879807 0.189142 -0.112527 10.1945 -0.0703074 -0.0255663 0.0617853 0.18 0 pose: 0.42801240 5.17829 -1.08044 0 -0.0018294 -0.00449614 -0.765699 0.64318 uwb: 0.0 940.553 482.346 +imu_odom_: 1691062450.999880850 0.806846 -0.296881 9.64145 -0.0596548 -0.0351537 0.0340885 0.18 0 pose: 0.0 5.17829 -1.08044 0 -0.0018294 -0.00449614 -0.765699 0.64318 uwb: 0.49817933 939.726 483.104 +imu_odom_: 1691062451.15999709 0.536301 -0.131681 10.1945 -0.0553937 0.00958738 0.0436758 0.18 0 pose: 0.0 5.17829 -1.08044 0 -0.0018294 -0.00449614 -0.765699 0.64318 uwb: 0.0 939.726 483.104 +imu_odom_: 1691062451.32862817 0.543484 -0.344765 9.50737 -0.0777643 -0.0127832 0.0692422 0.24 0 pose: 0.8082028 5.17357 -1.0809 0 -0.0012304 -0.00410848 -0.765646 0.643248 uwb: 0.0 939.726 483.104 +imu_odom_: 1691062451.48868232 0.246603 -0.373495 9.56962 -0.0532632 -0.00213053 0.0372843 0.18 0 pose: 0.0 5.17357 -1.0809 0 -0.0012304 -0.00410848 -0.765646 0.643248 uwb: 0.49969014 942.432 482.772 +imu_odom_: 1691062451.65798708 0.703895 -0.155623 9.85453 -0.056459 -0.0138484 0.0447411 0.18 0 pose: 0.65885767 5.17453 -1.09085 0 -0.00359656 -0.00404462 -0.765433 0.643493 uwb: 0.0 942.432 482.772 +imu_odom_: 1691062451.81009422 1.19471 -0.112527 10.0604 -0.0617853 -0.02024 0.0852212 0.18 0 pose: 0.0 5.17453 -1.09085 0 -0.00359656 -0.00404462 -0.765433 0.643493 uwb: 0.0 942.432 482.772 +imu_odom_: 1691062451.98819464 1.0343 -0.481235 9.59357 -0.0511327 0.0234358 0.11931 0.16 0 pose: 0.0 5.17453 -1.09085 0 -0.00359656 -0.00404462 -0.765433 0.643493 uwb: 0.50025306 944.725 482.852 +imu_odom_: 1691062451.115872717 1.51314 -0.402226 10.0963 -0.0575243 -0.0703074 0.108657 0.16 0 pose: 0.32044951 5.1755 -1.1008 0 -0.00496139 -0.00522969 -0.765298 0.643636 uwb: 0.0 944.725 482.852 +imu_odom_: 1691062451.138879079 1.2378 0.0143652 9.61272 -0.0490022 0.0575243 0.0436758 0.14 -0.02 pose: 0.43005986 5.1755 -1.1008 0 -0.00907325 -0.00717381 -0.764302 0.644754 uwb: 0.49986519 939.827 483.943 +imu_odom_: 1691062451.163914042 -0.0407014 -0.153229 9.28471 -0.0692422 0.0426106 -0.00106526 0.14 -0.02 pose: 0.0 5.1755 -1.1008 0 -0.00907325 -0.00717381 -0.764302 0.644754 uwb: 0.0 939.827 483.943 +imu_odom_: 1691062451.188820395 -0.366313 0.0909797 10.0987 -0.0351537 0.0149137 -0.11931 0.17 0.02 pose: 0.7011446 5.1755 -1.1008 0 -0.00923226 -0.00766606 -0.764291 0.64476 uwb: 0.49993519 937.119 484.242 +imu_odom_: 1691062451.211963534 -0.493206 -0.47884 10.1921 -0.0820254 -0.00958738 0.0532632 0.17 0.02 pose: 0.0 5.1755 -1.1008 0 -0.00923226 -0.00766606 -0.764291 0.64476 uwb: 0.0 937.119 484.242 +imu_odom_: 1691062451.227798052 0.318429 -0.881066 9.66779 -0.0479369 -0.0756338 0.0426106 0.14 0.05 pose: 0.48075738 5.17649 -1.11075 0 -0.0064745 -0.00655494 -0.76499 0.643976 uwb: 0.0 937.119 484.242 +imu_odom_: 1691062451.252907381 1.01993 0.0143652 9.85932 -0.0543285 -0.0181095 0.0639159 0.14 0.05 pose: 0.0 5.17649 -1.11075 0 -0.0064745 -0.00655494 -0.76499 0.643976 uwb: 0.50046595 936.679 484.391 +imu_odom_: 1691062451.275907619 0.282516 -0.299275 9.56484 -0.0585895 0 0.0394148 0.2 0 pose: 0.64847274 5.16749 -1.12166 0 -0.00495847 -0.00351712 -0.765742 0.643119 uwb: 0.0 936.679 484.391 +imu_odom_: 1691062451.300913127 -0.0957681 -0.217872 9.55287 -0.04048 -0.00319579 0.0308927 0.15 0 pose: 0.0 5.16749 -1.12166 0 -0.00495847 -0.00351712 -0.765742 0.643119 uwb: 0.0 936.679 484.391 +imu_odom_: 1691062451.317913887 0.579397 -0.371101 9.79947 -0.0692422 -0.0756338 0.0596548 0.15 0 pose: 0.40100444 5.1681 -1.12801 0 -0.00453869 -0.00313404 -0.765612 0.643279 uwb: 0.0 936.679 484.391 +imu_odom_: 1691062451.333838228 0.770933 -0.354342 10.3501 -0.0468716 -0.0639159 0.0308927 0.15 0 pose: 0.0 5.1681 -1.12801 0 -0.00453869 -0.00313404 -0.765612 0.643279 uwb: 0.0 936.679 484.391 +imu_odom_: 1691062451.360801761 0.720655 -0.248997 10.0341 -0.0660464 -0.036219 0.0532632 0.22 0 pose: 0.9014967 5.16844 -1.13161 0 -0.00379489 -0.00260992 -0.76564 0.643253 uwb: 0.100055571 933.107 485.079 +imu_odom_: 1691062451.384817175 0.670376 -0.263362 10.0748 -0.0458064 -0.00958738 0.0149137 0.22 0 pose: 0.0 5.16844 -1.13161 0 -0.00379489 -0.00260992 -0.76564 0.643253 uwb: 0.0 933.107 485.079 +imu_odom_: 1691062451.409785062 0.440533 -0.37589 9.87608 -0.0617853 0.00319579 0.0490022 0.19 0 pose: 0.56971718 5.1694 -1.14157 0 -0.0072203 -0.00311902 -0.765566 0.643309 uwb: 0.49867533 931.352 485.642 +imu_odom_: 1691062451.434833440 0.794875 -0.299275 9.7875 -0.0266316 -0.0298274 0.0191748 0.17 0 pose: 0.50942493 5.1694 -1.14157 0 -0.0105114 -0.00531697 -0.765621 0.643184 uwb: 0.0 931.352 485.642 +imu_odom_: 1691062451.459815909 0.306458 -0.205901 9.65342 -0.0692422 0.00426106 0.0628506 0.17 0 pose: 0.0 5.1694 -1.14157 0 -0.0105114 -0.00531697 -0.765621 0.643184 uwb: 0.50183663 932.233 485.383 +imu_odom_: 1691062451.486812689 0.294487 -0.179565 9.90721 -0.0436758 -0.00639159 0.036219 0.23 -0.02 pose: 0.66979112 5.16108 -1.15949 0 -0.00979261 -0.00421669 -0.76555 0.643288 uwb: 0.0 932.233 485.383 +imu_odom_: 1691062451.502907053 0.706289 -0.141258 10.1514 -0.0575243 -0.0330232 0.0617853 0.23 -0.02 pose: 0.7129558 5.16136 -1.16243 0 -0.00911398 -0.00397596 -0.765563 0.643284 uwb: 0.49930817 932.273 485.686 +imu_odom_: 1691062451.519958264 0.723049 -0.423774 10.0987 -0.0553937 -0.00213053 0.0436758 0.23 0 pose: 0.0 5.16136 -1.16243 0 -0.00911398 -0.00397596 -0.765563 0.643284 uwb: 0.0 932.273 485.686 +imu_odom_: 1691062451.537956992 0.112527 0.0622492 9.7875 -0.0394148 0.015979 0.0383495 0.23 0 pose: 0.42952034 5.16136 -1.16243 0 -0.00842639 -0.00484401 -0.765465 0.643404 uwb: 0.50027056 931.86 486.025 +imu_odom_: 1691062451.553953367 0.679953 -0.21069 10.2663 -0.0660464 -0.0351537 0.0585895 0.23 0 pose: 0.0 5.16136 -1.16243 0 -0.00842639 -0.00484401 -0.765465 0.643404 uwb: 0.0 931.86 486.025 +imu_odom_: 1691062451.571901934 0.354342 -0.287304 9.76355 -0.0596548 -0.0426106 0.0276969 0.17 -0.02 pose: 0.0 5.16136 -1.16243 0 -0.00842639 -0.00484401 -0.765465 0.643404 uwb: 0.0 931.86 486.025 +imu_odom_: 1691062451.588032751 0.658405 -0.289698 9.7444 -0.056459 0.0127832 0.036219 0.17 -0.02 pose: 0.44055866 5.16233 -1.17238 0 -0.0084925 -0.00583165 -0.76536 0.64352 uwb: 0.0 931.86 486.025 +imu_odom_: 1691062451.603764614 0.253785 -0.347159 9.89045 -0.0660464 -0.0117179 0.0585895 0.17 -0.02 pose: 0.0 5.16233 -1.17238 0 -0.0084925 -0.00583165 -0.76536 0.64352 uwb: 0.50163249 933.69 486.046 +imu_odom_: 1691062451.618809973 0.28491 -0.246603 9.64863 -0.0351537 0.0117179 0.0287621 0.17 0.02 pose: 0.49811247 5.16329 -1.18234 0 -0.00835177 -0.00350069 -0.765348 0.643553 uwb: 0.0 933.69 486.046 +imu_odom_: 1691062451.635836396 0.270545 -0.0646434 10.0269 -0.0479369 0.0138484 0.0458064 0.2 0 pose: 0.0 5.16329 -1.18234 0 -0.00835177 -0.00350069 -0.765348 0.643553 uwb: 0.0 933.69 486.046 +imu_odom_: 1691062451.660892065 0.275333 -0.531513 9.53371 -0.0798948 0.0617853 0.0415453 0.2 0 pose: 0.23015987 5.16329 -1.18234 0 -0.00607472 -0.00257369 -0.765398 0.643524 uwb: 0.49869574 937.796 486.077 +imu_odom_: 1691062451.686768973 0.536301 -0.335188 9.20571 -0.0447411 0.00426106 0.0436758 0.21 0.02 pose: 0.0 5.16329 -1.18234 0 -0.00607472 -0.00257369 -0.765398 0.643524 uwb: 0.0 937.796 486.077 +imu_odom_: 1691062451.712854399 0.586579 -0.258574 9.71328 -0.0479369 0.015979 0.0298274 0.18 0 pose: 0.42009183 5.1543 -1.19326 0 -0.0054542 0.00071251 -0.765354 0.643586 uwb: 0.49917694 937.426 486.785 +imu_odom_: 1691062451.738731016 -0.0023942 -0.351948 10.1442 -0.0735032 0.0234358 0.0703074 0.22 0.02 pose: 0.26048389 5.15527 -1.20321 0 -0.00730193 -0.000195182-0.765352 0.643571 uwb: 0.50058261 938.817 486.995 +imu_odom_: 1691062451.753737295 0.237026 -0.533907 10.1514 -0.0777643 0.04048 0.056459 0.22 0.02 pose: 0.0 5.15527 -1.20321 0 -0.00730193 -0.000195182-0.765352 0.643571 uwb: 0.0 938.817 486.995 +imu_odom_: 1691062451.770851792 0.162806 0.0335188 10.0916 -0.0628506 0.0308927 0.0383495 0.18 0 pose: 0.25986271 5.15527 -1.20321 0 -0.00711211 -0.00112763 -0.765337 0.64359 uwb: 0.0 938.817 486.995 +imu_odom_: 1691062451.787914669 0.438139 -0.373495 9.67976 -0.0756338 0.00958738 0.0607201 0.18 0 pose: 0.0 5.15527 -1.20321 0 -0.00711211 -0.00112763 -0.765337 0.64359 uwb: 0.0 938.817 486.995 +imu_odom_: 1691062451.803850092 0.282516 -0.306458 9.72525 -0.0351537 -0.00426106 0.0213053 0.18 0 pose: 0.40974469 5.15624 -1.21316 0 -0.00460603 0.00227931 -0.765083 0.643911 uwb: 0.0 938.817 486.995 +imu_odom_: 1691062451.819913250 0.416591 0.0502782 10.1801 -0.0415453 -0.015979 0.036219 0.24 0 pose: 0.0 5.15624 -1.21316 0 -0.00460603 0.00227931 -0.765083 0.643911 uwb: 0.0 938.817 486.995 +imu_odom_: 1691062451.836919842 0.454898 -0.366313 10.149 -0.072438 -0.0213053 0.0468716 0.24 0 pose: 0.0 5.15624 -1.21316 0 -0.00460603 0.00227931 -0.765083 0.643911 uwb: 0.0 938.817 486.995 +imu_odom_: 1691062451.852735404 0.464475 -0.162806 9.98143 -0.0500674 -0.0308927 0.0319579 0.18 0 pose: 0.75120929 5.15188 -1.22364 0 -0.00429176 0.00338393 -0.765035 0.643965 uwb: 0.100227051 939.743 487.146 +imu_odom_: 1691062451.876780564 0.703895 -0.289698 10.58 -0.0692422 -0.0255663 0.0543285 0.18 0 pose: 0.0 5.15188 -1.22364 0 -0.00429176 0.00338393 -0.765035 0.643965 uwb: 0.0 939.743 487.146 +imu_odom_: 1691062451.899728016 0.488417 -0.332794 9.98622 -0.0308927 -0.0191748 0.0255663 0.26 0 pose: 0.7893053 5.14727 -1.22409 0 -0.00401259 0.00258951 -0.765058 0.643943 uwb: 0.49815913 940.197 487.14 +imu_odom_: 1691062451.925772613 0.629675 -0.378284 9.69412 -0.052198 -0.0266316 0.056459 0.24 0 pose: 0.0 5.14727 -1.22409 0 -0.00401259 0.00258951 -0.765058 0.643943 uwb: 0.0 940.197 487.14 +imu_odom_: 1691062451.951932406 0.481235 -0.167594 10.1682 -0.0330232 -0.00213053 0.0308927 0.18 -0.02 pose: 0.80959718 5.14891 -1.24089 0 -0.00988475 0.000513454 -0.764901 0.644072 uwb: 0.49751172 939.821 487.775 +imu_odom_: 1691062451.977711325 0.162806 -0.418985 10.0389 -0.0500674 -0.0255663 0.052198 0.22 0 pose: 0.0 5.14891 -1.24089 0 -0.00988475 0.000513454 -0.764901 0.644072 uwb: 0.0 939.821 487.775 +imu_odom_: 1691062452.693774 0.665588 -0.124498 9.8282 -0.0266316 -0.00958738 0.0340885 0.22 0 pose: 0.33107371 5.14922 -1.244 0 -0.00708956 -0.000456666-0.764967 0.64403 uwb: 0.50124753 940.291 487.91 +imu_odom_: 1691062452.16721067 0.706289 -0.356736 9.90481 -0.0692422 0.00852212 0.0745685 0.22 0 pose: 0.0 5.14922 -1.244 0 -0.00708956 -0.000456666-0.764967 0.64403 uwb: 0.0 940.291 487.91 +imu_odom_: 1691062452.39725690 0.670376 -0.141258 9.78989 -0.0458064 -0.052198 0.0298274 0.18 0 pose: 0.48866650 5.1502 -1.25395 0 -0.00694298 -0.00171375 -0.764853 0.644166 uwb: 0.49853550 938.574 488.704 +imu_odom_: 1691062452.65731512 0.627281 -0.306458 9.94791 -0.0458064 0.015979 0.052198 0.18 0 pose: 0.31979056 5.14435 -1.26107 0 -0.0082287 -0.00460677 -0.764819 0.644176 uwb: 0.0 938.574 488.704 +imu_odom_: 1691062452.90842020 0.97444 0.023942 10.2041 -0.0276969 -0.0127832 0.0308927 0.18 0 pose: 0.0 5.14435 -1.26107 0 -0.0082287 -0.00460677 -0.764819 0.644176 uwb: 0.50051576 940.805 488.418 +imu_odom_: 1691062452.104960283 0.110133 -0.282516 9.26077 -0.0745685 -0.0213053 0.0671117 0.18 0 pose: 0.0 5.14435 -1.26107 0 -0.0082287 -0.00460677 -0.764819 0.644176 uwb: 0.0 940.805 488.418 +imu_odom_: 1691062452.129783531 -0.059855 -0.342371 9.65342 -0.0639159 -0.0447411 0.036219 0.18 0 pose: 0.9010305 5.14123 -1.26488 0 -0.00900913 -0.0043708 -0.764774 0.64422 uwb: 0.0 940.805 488.418 +imu_odom_: 1691062452.154782927 0.385466 -0.201113 10.319 -0.0692422 -0.0660464 0.0617853 0.24 0 pose: 0.48122130 5.14221 -1.27483 0 -0.0103604 -0.00631437 -0.76471 0.644261 uwb: 0.49994416 943.101 488.724 +imu_odom_: 1691062452.177896037 0.301669 -0.0023942 9.84017 -0.0585895 -0.0308927 0.0308927 0.24 0 pose: 0.0 5.14221 -1.27483 0 -0.0103604 -0.00631437 -0.76471 0.644261 uwb: 0.0 943.101 488.724 +imu_odom_: 1691062452.193721813 0.529119 -0.25618 9.79947 -0.072438 -0.0149137 0.0596548 0.2 0 pose: 0.39931898 5.1432 -1.28478 0 -0.00821368 -0.00396473 -0.764633 0.644401 uwb: 0.50006081 943.558 488.768 +imu_odom_: 1691062452.219752132 0.339977 -0.270545 10.0389 -0.0511327 -0.0191748 0.036219 0.2 0 pose: 0.0 5.1432 -1.28478 0 -0.00821368 -0.00396473 -0.764633 0.644401 uwb: 0.0 943.558 488.768 +imu_odom_: 1691062452.244821811 0.713472 -0.153229 9.73961 -0.0681769 -0.0330232 0.056459 0.18 0.02 pose: 0.49128265 5.1432 -1.28478 0 -0.00566755 -0.00328358 -0.764536 0.644548 uwb: 0.50058284 949.388 488.465 +imu_odom_: 1691062452.268821487 0.718261 -0.143652 9.63187 -0.0308927 -0.0287621 0.0181095 0.18 0.02 pose: 0.0 5.1432 -1.28478 0 -0.00566755 -0.00328358 -0.764536 0.644548 uwb: 0.0 949.388 488.465 +imu_odom_: 1691062452.284744086 0.351948 -0.143652 9.76834 -0.056459 -0.0106526 0.0553937 0.18 0.02 pose: 0.41792227 5.13424 -1.29573 0 -0.00503748 -0.00178837 -0.76447 0.644637 uwb: 0.0 949.388 488.465 +imu_odom_: 1691062452.311674677 0.1652 -0.277727 9.39006 -0.0479369 -0.0191748 0.0415453 0.18 0.02 pose: 0.0 5.13424 -1.29573 0 -0.00503748 -0.00178837 -0.76447 0.644637 uwb: 0.49880096 953.423 488.247 +imu_odom_: 1691062452.336733274 0.754174 -0.28491 10.0676 -0.0681769 -0.0372843 0.0490022 0.18 0 pose: 0.47999644 5.13523 -1.30568 0 -0.00638611 -0.00577482 -0.764501 0.644566 uwb: 0.0 953.423 488.247 +imu_odom_: 1691062452.361805869 0.47884 -0.244209 10.1825 -0.04048 -0.0351537 0.0223706 0.18 0 pose: 0.0 5.13523 -1.30568 0 -0.00638611 -0.00577482 -0.764501 0.644566 uwb: 0.50094737 956.149 488.501 +imu_odom_: 1691062452.377945151 0.387861 -0.169988 9.92397 -0.0607201 -0.0383495 0.0532632 0.18 0.02 pose: 0.44045095 5.13623 -1.31563 0 -0.00485356 -0.00391123 -0.764425 0.644682 uwb: 0.0 956.149 488.501 +imu_odom_: 1691062452.394813517 0.562637 -0.368707 9.70131 -0.0628506 0.0191748 0.0330232 0.18 0.02 pose: 0.0 5.13623 -1.31563 0 -0.00485356 -0.00391123 -0.764425 0.644682 uwb: 0.50009873 962.376 487.747 +imu_odom_: 1691062452.419716089 0.648829 -0.349553 9.67976 -0.0447411 -0.00106526 0.036219 0.18 0 pose: 0.48971367 5.13722 -1.32558 0 -0.00467846 -0.00305069 -0.76448 0.644623 uwb: 0.0 962.376 487.747 +imu_odom_: 1691062452.435770215 0.265756 -0.232238 9.88566 -0.0745685 -0.0223706 0.0479369 0.18 0 pose: 0.0 5.13722 -1.32558 0 -0.00467846 -0.00305069 -0.76448 0.644623 uwb: 0.0 962.376 487.747 +imu_odom_: 1691062452.460774276 0.418985 -0.232238 9.98622 -0.0532632 -0.0383495 0.0330232 0.18 0 pose: 0.67043594 5.12826 -1.33652 0 -0.00653259 -0.00145585 -0.764446 0.644653 uwb: 0.50009289 962.371 487.676 +imu_odom_: 1691062452.486700190 0.73502 -0.356736 9.74679 -0.0628506 0.0255663 0.0266316 0.18 0 pose: 0.7977047 5.12826 -1.33652 0 -0.00586674 -0.00131828 -0.764465 0.644637 uwb: 0.0 962.371 487.676 +imu_odom_: 1691062452.511652633 0.68953 -0.292093 9.75877 -0.0415453 -0.0181095 0.0340885 0.19 0 pose: 0.42952928 5.12926 -1.34647 0 -0.00667835 -0.0015145 -0.764606 0.644462 uwb: 0.50040203 965.082 487.861 +imu_odom_: 1691062452.527719298 0.538695 -0.45011 9.9527 -0.0575243 -0.0127832 0.0383495 0.19 0 pose: 0.0 5.12926 -1.34647 0 -0.00667835 -0.0015145 -0.764606 0.644462 uwb: 0.0 965.082 487.861 +imu_odom_: 1691062452.544705775 0.806846 -0.131681 9.94312 -0.0191748 -0.0149137 0.0298274 0.18 -0.02 pose: 0.0 5.12926 -1.34647 0 -0.00667835 -0.0015145 -0.764606 0.644462 uwb: 0.49991791 966.448 488.194 +imu_odom_: 1691062452.570644813 0.52433 -0.0957681 10.0485 -0.0713727 0.0191748 0.0543285 0.18 -0.02 pose: 0.49092394 5.13025 -1.35642 0 -0.00970387 -0.00271162 -0.764658 0.644358 uwb: 0.0 966.448 488.194 +imu_odom_: 1691062452.595638375 0.782904 -0.1652 9.83059 -0.0458064 -0.0245011 0.0319579 0.19 0.02 pose: 0.34852229 5.13097 -1.36368 0 -0.00744644 -0.00459104 -0.764592 0.644456 uwb: 0.49924424 968.254 488.361 +imu_odom_: 1691062452.621694066 0.782904 -0.395043 9.80186 -0.052198 0.0213053 0.0372843 0.19 0.02 pose: 0.7014365 5.13123 -1.36638 0 -0.00783515 -0.00526754 -0.764606 0.644429 uwb: 0.0 968.254 488.361 +imu_odom_: 1691062452.644670693 0.0957681 0.0335188 9.52892 -0.0745685 0.00426106 0.0596548 0.19 0.02 pose: 0.44034888 5.12477 -1.37426 0 -0.0111357 -0.00650151 -0.76463 0.644341 uwb: 0.50042827 969.602 488.397 +imu_odom_: 1691062452.671775681 0.550666 -0.497994 9.60554 -0.0681769 -0.0276969 0.0255663 0.19 -0.02 pose: 0.0 5.12477 -1.37426 0 -0.0111357 -0.00650151 -0.76463 0.644341 uwb: 0.0 969.602 488.397 +imu_odom_: 1691062452.687776729 0.914585 -0.378284 9.91918 -0.04048 -0.0106526 0.0330232 0.19 -0.02 pose: 0.30993919 5.12227 -1.37731 0 -0.00944357 -0.00509784 -0.76454 0.644487 uwb: 0.49894677 966.911 488.399 +imu_odom_: 1691062452.714784603 0.488417 -0.0885855 9.88566 -0.0308927 -0.0138484 0.036219 0.23 0 pose: 0.0 5.12227 -1.37731 0 -0.00944357 -0.00509784 -0.76454 0.644487 uwb: 0.0 966.911 488.399 +imu_odom_: 1691062452.740646358 0.1652 -0.260968 9.59117 -0.0639159 0.00958738 0.0607201 0.23 0 pose: 0.42048282 5.12326 -1.38726 0 -0.0113122 -0.00454753 -0.764645 0.644336 uwb: 0.49862889 968.247 488.244 +imu_odom_: 1691062452.756642448 0.459687 -0.31364 9.47386 -0.0617853 -0.0149137 0.0340885 0.23 -0.02 pose: 0.0 5.12326 -1.38726 0 -0.0113122 -0.00454753 -0.764645 0.644336 uwb: 0.0 968.247 488.244 +imu_odom_: 1691062452.782657894 0.577003 -0.363919 10.3932 -0.0436758 0.0500674 0.0394148 0.23 -0.02 pose: 0.52922998 5.12425 -1.39722 0 -0.007138 -0.00273798 -0.764539 0.644532 uwb: 0.0 968.247 488.244 +imu_odom_: 1691062452.807601587 0.481235 -0.0071826110.738 -0.0372843 -0.0106526 0.0266316 0.23 0 pose: 0.34998629 5.12425 -1.39722 0 -0.00866286 -0.000432352-0.76454 0.644518 uwb: 0.50130317 969.587 488.139 +imu_odom_: 1691062452.829611157 0.258574 -0.253785 9.92397 -0.0713727 -0.00213053 0.0692422 0.23 0 pose: 0.0 5.12425 -1.39722 0 -0.00866286 -0.000432352-0.76454 0.644518 uwb: 0.0 969.587 488.139 +imu_odom_: 1691062452.854734205 0.548272 -0.208296 9.73243 -0.0671117 -0.0692422 0.0426106 0.19 0 pose: 0.6967412 5.12425 -1.39722 0 -0.00808845 -0.000921912-0.764574 0.644484 uwb: 0.49919175 971.832 488.269 +imu_odom_: 1691062452.879627445 0.438139 -0.402226 10.4076 -0.072438 -0.02024 0.0490022 0.19 0 pose: 0.0 5.12425 -1.39722 0 -0.00808845 -0.000921912-0.764574 0.644484 uwb: 0.0 971.832 488.269 +imu_odom_: 1691062452.893653260 0.299275 -0.203507 9.83538 -0.0447411 0.00106526 0.0191748 0.18 0.02 pose: 0.46997300 5.11529 -1.40816 0 -0.00525379 -0.00149752 -0.764451 0.644659 uwb: 0.50046910 969.622 488.772 +imu_odom_: 1691062452.917663435 0.742203 -0.416591 9.64384 -0.0660464 -0.00958738 0.0426106 0.18 0.02 pose: 0.0 5.11529 -1.40816 0 -0.00525379 -0.00149752 -0.764451 0.644659 uwb: 0.0 969.622 488.772 +imu_odom_: 1691062452.944593152 0.447716 -0.1652 9.43794 -0.0468716 0.0149137 0.0234358 0.23 0 pose: 0.48987406 5.11628 -1.41811 0 -0.0060143 -0.00089317 -0.764389 0.644726 uwb: 0.49932590 970.073 488.84 +imu_odom_: 1691062452.960645235 0.608127 -0.320823 10.2256 -0.0681769 -0.0213053 0.0447411 0.23 0 pose: 0.0 5.11628 -1.41811 0 -0.0060143 -0.00089317 -0.764389 0.644726 uwb: 0.0 970.073 488.84 +imu_odom_: 1691062452.976584457 0.639252 -0.332794 9.48822 -0.0458064 0.0170442 0.0298274 0.25 -0.02 pose: 0.39994600 5.11728 -1.42806 0 -0.00687733 -0.00123295 -0.764457 0.644637 uwb: 0.0 970.073 488.84 +imu_odom_: 1691062453.2585029 0.299275 -0.138864 9.26317 -0.0639159 -0.0458064 0.0543285 0.25 -0.02 pose: 0.0 5.11728 -1.42806 0 -0.00687733 -0.00123295 -0.764457 0.644637 uwb: 0.50011330 970.972 488.905 +imu_odom_: 1691062453.18736275 -0.0814029 -0.260968 10.1035 -0.0458064 0.0181095 0.0500674 0.23 -0.02 pose: 0.41984414 5.11827 -1.43801 0 -0.00725657 -0.00208882 -0.764551 0.644519 uwb: 0.0 970.972 488.905 +imu_odom_: 1691062453.44737734 0.328006 -0.112527 10.319 -0.036219 -0.0191748 0.0426106 0.23 -0.02 pose: 0.0 5.11827 -1.43801 0 -0.00725657 -0.00208882 -0.764551 0.644519 uwb: 0.50007847 970.093 489.191 +imu_odom_: 1691062453.71724623 -0.0407014 -0.225055 10.003 -0.036219 0.00852212 0.0340885 0.21 0.02 pose: 0.77148708 5.10932 -1.44895 0 -0.00193491 -0.00136943 -0.764394 0.644745 uwb: 0.0 970.093 489.191 +imu_odom_: 1691062453.97625760 0.474052 -0.40462 9.77553 -0.072438 0.0213053 0.0735032 0.21 0.02 pose: 0.0 5.10932 -1.44895 0 -0.00193491 -0.00136943 -0.764394 0.644745 uwb: 0.49965275 973.679 489.3 +imu_odom_: 1691062453.124710055 0.275333 -0.114922 10.2544 -0.0394148 0.0127832 0.0330232 0.23 -0.02 pose: 0.7004162 5.10932 -1.44895 0 -0.00132806 -0.000933321-0.764407 0.644731 uwb: 0.0 973.679 489.3 +imu_odom_: 1691062453.150603318 -0.0909797 -0.414197 10.2113 -0.0628506 -0.00532632 0.052198 0.18 0.02 pose: 0.53878413 5.11031 -1.4589 0 -0.0009152090.00173433 -0.764175 0.645006 uwb: 0.50146963 972.351 489.582 +imu_odom_: 1691062453.177717359 0.445322 -0.1652 10.0796 -0.056459 -0.0138484 0.0500674 0.18 0.02 pose: 0.0 5.11031 -1.4589 0 -0.0009152090.00173433 -0.764175 0.645006 uwb: 0.0 972.351 489.582 +imu_odom_: 1691062453.193588345 0.483629 -0.129287 10.0556 -0.0681769 0 0.0575243 0.2 0 pose: 0.52143194 5.11131 -1.46885 0 0.00204098 0.00309541 -0.764081 0.64511 uwb: 0.49971691 974.586 489.56 +imu_odom_: 1691062453.220640560 0.390255 -0.0766145 9.71806 -0.0596548 -0.0351537 0.0394148 0.2 0 pose: 0.0 5.11131 -1.46885 0 0.00204098 0.00309541 -0.764081 0.64511 uwb: 0.0 974.586 489.56 +imu_odom_: 1691062453.236559957 0.78051 -0.222661 9.96227 -0.0820254 -0.0298274 0.056459 0.18 0.02 pose: 0.27851582 5.11232 -1.4788 0 0.00113758 0.00042243 -0.76397 0.64525 uwb: 0.0 974.586 489.56 +imu_odom_: 1691062453.263553845 0.725443 -0.179565 10.1682 -0.0639159 -0.00745685 0.0394148 0.18 0.02 pose: 0.50944872 5.10291 -1.48508 0 0.000684456 -0.00329114 -0.763831 0.645408 uwb: 0.49918614 974.594 489.724 +imu_odom_: 1691062453.289584468 0.521936 -0.134075 10.0126 -0.0820254 -0.00532632 0.0553937 0.18 -0.02 pose: 0.7023118 5.10338 -1.48976 0 8.30414e-05 -0.00368299 -0.763829 0.645408 uwb: 0.49960900 971.492 490.17 +imu_odom_: 1691062453.316733213 0.500388 -0.347159 9.4164 -0.0671117 -0.0138484 0.0500674 0.18 -0.02 pose: 0.0 5.10338 -1.48976 0 8.30414e-05 -0.00368299 -0.763829 0.645408 uwb: 0.0 971.492 490.17 +imu_odom_: 1691062453.341700248 0.579397 -0.553061 9.7875 -0.0607201 0.052198 0.0319579 0.18 0 pose: 0.54071183 5.1044 -1.49971 0 -0.00277374 -0.00644191 -0.763652 0.64559 uwb: 0.50034684 970.618 490.526 +imu_odom_: 1691062453.358721146 0.486023 -0.220267 9.82341 -0.0458064 0.00532632 0.0330232 0.18 0 pose: 0.0 5.1044 -1.49971 0 -0.00277374 -0.00644191 -0.763652 0.64559 uwb: 0.0 970.618 490.526 +imu_odom_: 1691062453.374754572 0.225055 -0.162806 9.72046 -0.0649811 0.00213053 0.0703074 0.18 -0.02 pose: 0.26945769 5.1044 -1.49971 0 -0.00444118 -0.00416908 -0.763602 0.645659 uwb: 0.0 970.618 490.526 +imu_odom_: 1691062453.401689258 0.246603 -0.220267 9.46907 -0.0575243 0.00213053 0.0383495 0.18 -0.02 pose: 0.50154545 5.10542 -1.50965 0 -0.00217447 -0.00172898 -0.763528 0.645769 uwb: 0.49994439 970.206 491.091 +imu_odom_: 1691062453.418747776 0.794875 -0.186748 10.4363 -0.0649811 0.0223706 0.052198 0.18 -0.02 pose: 0.7952846 5.10542 -1.50965 0 -0.00156273 -0.00118 -0.763533 0.645766 uwb: 0.0 970.206 491.091 +imu_odom_: 1691062453.434684964 -0.00957681-0.124498 9.85932 -0.0372843 0.0351537 0.0234358 0.18 -0.02 pose: 0.0 5.10542 -1.50965 0 -0.00156273 -0.00118 -0.763533 0.645766 uwb: 0.0 970.206 491.091 +imu_odom_: 1691062453.452560930 0.126893 -0.189142 9.62469 -0.056459 -0.02024 0.0500674 0.18 -0.02 pose: 0.51977546 5.09649 -1.52062 0 0.000542513 -1.12154e-05-0.763555 0.645742 uwb: 0.49982189 970.242 491.701 +imu_odom_: 1691062453.468691179 0.826 -0.162806 10.1993 -0.056459 -0.00958738 0.0383495 0.18 0 pose: 0.0 5.09649 -1.52062 0 0.000542513 -1.12154e-05-0.763555 0.645742 uwb: 0.0 970.242 491.701 +imu_odom_: 1691062453.485686704 0.306458 -0.220267 9.55047 -0.0276969 0.0149137 0.0234358 0.18 0 pose: 0.0 5.09649 -1.52062 0 0.000542513 -1.12154e-05-0.763555 0.645742 uwb: 0.0 970.242 491.701 +imu_odom_: 1691062453.510617285 0.0191536 -0.361524 9.76355 -0.076699 0.0181095 0.052198 0.2 0 pose: 0.25017779 5.09752 -1.53057 0 0.00135224 0.00044383 -0.763497 0.64581 uwb: 0.50036143 968.917 491.898 +imu_odom_: 1691062453.537610590 0.203507 -0.196325 9.75158 -0.0511327 -0.0426106 0.0319579 0.23 0.02 pose: 0.33874689 5.09752 -1.53057 0 0.00238951 0.00187671 -0.763555 0.645735 uwb: 0.0 968.917 491.898 +imu_odom_: 1691062453.563546140 0.907402 -0.418985 10.2089 -0.0735032 -0.0117179 0.0330232 0.18 -0.02 pose: 0.44033158 5.09854 -1.54052 0 0.00526723 0.00435918 -0.763535 0.64573 uwb: 0.0 968.917 491.898 +imu_odom_: 1691062453.590543528 0.320823 -0.0694318 9.93115 -0.0372843 0.00213053 0.036219 0.23 0.02 pose: 0.25935550 5.09927 -1.54766 0 0.00264051 0.00348458 -0.763603 0.645671 uwb: 0.99887096 972.907 491.575 +imu_odom_: 1691062453.606590369 0.653617 -0.445322 9.96706 -0.0468716 -0.00639159 0.0383495 0.23 0.02 pose: 0.0 5.09927 -1.54766 0 0.00264051 0.00348458 -0.763603 0.645671 uwb: 0.0 972.907 491.575 +imu_odom_: 1691062453.633832437 0.488417 -0.0191536 9.80904 -0.0383495 -0.0181095 0.0500674 0.23 0 pose: 0.43044229 5.08961 -1.55149 0 0.00301662 0.00117079 -0.763637 0.645638 uwb: 0.0 972.907 491.575 +imu_odom_: 1691062453.659669123 0.311246 -0.0861913 10.4794 -0.0511327 -0.0394148 0.0394148 0.23 0 pose: 0.0 5.08961 -1.55149 0 0.00301662 0.00117079 -0.763637 0.645638 uwb: 0.50066764 972.032 491.881 +imu_odom_: 1691062453.686654554 0.488417 -0.0957681 9.76595 -0.0553937 0.00852212 0.052198 0.25 0 pose: 0.53078754 5.09063 -1.56144 0 0.00532978 -0.00219809 -0.763537 0.645739 uwb: 0.0 972.032 491.881 +imu_odom_: 1691062453.712527403 0.658405 -0.0766145 9.73004 -0.0479369 0.0223706 0.036219 0.25 0 pose: 0.0 5.09063 -1.56144 0 0.00532978 -0.00219809 -0.763537 0.645739 uwb: 0.50001438 972.04 492.022 +imu_odom_: 1691062453.729529052 0.610521 -0.387861 9.62948 -0.0681769 -0.00745685 0.0553937 0.23 0 pose: 0.34918737 5.09166 -1.57138 0 0.00323368 -0.00465192 -0.763422 0.645875 uwb: 0.0 972.04 492.022 +imu_odom_: 1691062453.755621793 0.40462 -0.047884 9.72046 -0.0415453 0.00319579 0.0245011 0.23 0 pose: 0.0 5.09166 -1.57138 0 0.00323368 -0.00465192 -0.763422 0.645875 uwb: 0.50006395 974.721 492.234 +imu_odom_: 1691062453.780649779 0.452504 -0.241814 9.92157 -0.0692422 -0.0617853 0.0415453 0.2 -0.02 pose: 0.42998442 5.09268 -1.58133 0 0.00137726 -0.00548379 -0.763384 0.64592 uwb: 0.0 974.721 492.234 +imu_odom_: 1691062453.803493431 0.122104 -0.0933739 10.058 -0.0319579 -0.00213053 0.0298274 0.18 0 pose: 0.0 5.09268 -1.58133 0 0.00137726 -0.00548379 -0.763384 0.64592 uwb: 0.50054223 977.839 492.371 +imu_odom_: 1691062453.828584119 0.418985 -0.141258 10.4148 -0.0809601 -0.0617853 0.0585895 0.18 0 pose: 0.49067044 5.09268 -1.58133 0 0.00127465 -0.00440875 -0.763486 0.645808 uwb: 0.0 977.839 492.371 +imu_odom_: 1691062453.845612598 0.521936 -0.0383072 9.28711 -0.0511327 -0.056459 0.0319579 0.18 0 pose: 0.0 5.09268 -1.58133 0 0.00127465 -0.00440875 -0.763486 0.645808 uwb: 0.49864662 979.623 492.531 +imu_odom_: 1691062453.870634169 0.342371 -0.280122 9.31344 -0.0735032 0.0106526 0.0468716 0.21 0 pose: 0.48902563 5.08376 -1.5923 0 -0.000293518-0.00380067 -0.763408 0.645906 uwb: 0.0 979.623 492.531 +imu_odom_: 1691062453.897650804 0.328006 -0.0694318 10.1418 -0.0500674 -0.00319579 0.0426106 0.23 -0.02 pose: 0.35078260 5.08479 -1.60225 0 -0.000171894-0.00218524 -0.763378 0.645948 uwb: 0.50117216 977.855 492.676 +imu_odom_: 1691062453.922485438 0.416591 -0.560243 10.1634 -0.0788296 0.0394148 0.0596548 0.23 -0.02 pose: 0.0 5.08479 -1.60225 0 -0.000171894-0.00218524 -0.763378 0.645948 uwb: 0.0 977.855 492.676 +imu_odom_: 1691062453.939548914 0.23942 -0.0047884 10.0126 -0.0617853 0.0298274 0.0372843 0.23 0.02 pose: 0.6884592 5.08479 -1.60225 0 0.000526262 -0.00227863 -0.763372 0.645955 uwb: 0.50056265 980.074 492.772 +imu_odom_: 1691062453.964592649 0.248997 -0.289698 10.1035 -0.0660464 0.0287621 0.0415453 0.23 0.02 pose: 0.0 5.08479 -1.60225 0 0.000526262 -0.00227863 -0.763372 0.645955 uwb: 0.0 980.074 492.772 +imu_odom_: 1691062453.991536959 -0.0143652 -0.191536 9.63427 -0.0490022 -0.0213053 0.0543285 0.21 0 pose: 0.51983670 5.08581 -1.6122 0 0.00186351 -0.000213938-0.763199 0.646161 uwb: 0.49858537 976.084 492.874 +imu_odom_: 1691062454.16624736 0.232238 -0.215478 9.48104 -0.0532632 -0.0223706 0.0351537 0.21 0 pose: 0.0 5.08581 -1.6122 0 0.00186351 -0.000213938-0.763199 0.646161 uwb: 0.0 976.084 492.874 +imu_odom_: 1691062454.33638933 0.766145 -0.311246 9.72046 -0.0575243 -0.0127832 0.0436758 0.23 0.02 pose: 0.42002223 5.08685 -1.62214 0 0.00386251 0.00294316 -0.763154 0.646199 uwb: 0.0 976.084 492.874 +imu_odom_: 1691062454.49646120 -0.0742203 -0.507571 9.58399 -0.0703074 -0.02024 0.0532632 0.23 0.02 pose: 0.0 5.08685 -1.62214 0 0.00386251 0.00294316 -0.763154 0.646199 uwb: 0.50063571 978.302 492.821 +imu_odom_: 1691062454.76749966 0.639252 -0.253785 9.79468 -0.036219 -0.00852212 0.0383495 0.25 0.02 pose: 0.52207946 5.07794 -1.63312 0 0.00614532 0.00541186 -0.763072 0.646262 uwb: 0.0 978.302 492.821 +imu_odom_: 1691062454.101476414 0.265756 -0.351948 10.2137 -0.0447411 0.0255663 0.0500674 0.25 0.02 pose: 0.0 5.07794 -1.63312 0 0.00614532 0.00541186 -0.763072 0.646262 uwb: 0.49926802 981.403 492.698 +imu_odom_: 1691062454.128630421 0.328006 0.00957681 9.84256 -0.0458064 -0.02024 0.0447411 0.23 0 pose: 0.77763814 5.07898 -1.64307 0 0.0025995 0.00689235 -0.762938 0.64643 uwb: 0.0 981.403 492.698 +imu_odom_: 1691062454.153519018 0.215478 -0.229843 9.67018 -0.0436758 0.00426106 0.0308927 0.18 0 pose: 0.7066283 5.07898 -1.64307 0 0.002938 0.00622173 -0.762926 0.646449 uwb: 0.49951882 979.195 492.948 +imu_odom_: 1691062454.179523988 0.325611 -0.447716 9.40442 -0.0713727 0.0255663 0.0735032 0.23 0 pose: 0.44976321 5.08002 -1.65301 0 0.00596462 0.00589623 -0.762946 0.646408 uwb: 0.0 979.195 492.948 +imu_odom_: 1691062454.201481667 0.68953 -0.122104 9.94791 -0.0383495 -0.0255663 0.0340885 0.23 0 pose: 0.0 5.08002 -1.65301 0 0.00596462 0.00589623 -0.762946 0.646408 uwb: 0.49988337 980.081 492.913 +imu_odom_: 1691062454.218491199 0.208296 -0.131681 9.96227 -0.0426106 -0.0394148 0.0490022 0.2 0 pose: 0.32115570 5.07111 -1.664 0 0.00356175 0.00700542 -0.762688 0.646719 uwb: 0.0 980.081 492.913 +imu_odom_: 1691062454.235619716 0.526724 -0.31364 9.72046 -0.0500674 -0.0383495 0.0372843 0.2 0 pose: 0.0 5.07111 -1.664 0 0.00356175 0.00700542 -0.762688 0.646719 uwb: 0.0 980.081 492.913 +imu_odom_: 1691062454.260590846 0.0287304 -0.208296 9.43315 -0.0575243 -0.00213053 0.0607201 0.2 0.02 pose: 0.49985128 5.07216 -1.67395 0 0.00241045 0.00381167 -0.76269 0.646749 uwb: 0.0 980.081 492.913 +imu_odom_: 1691062454.286441833 0.0766145 -0.304064 9.66779 -0.056459 -0.0127832 0.0415453 0.2 0.02 pose: 0.6890720 5.07216 -1.67395 0 0.00298164 0.00420926 -0.762639 0.646803 uwb: 0.0 980.081 492.913 +imu_odom_: 1691062454.311509493 0.174777 -0.25618 10.1107 -0.0649811 -0.036219 0.0575243 0.19 0.02 pose: 0.43931397 5.07293 -1.6812 0 0.00570051 0.00742096 -0.762476 0.646949 uwb: 0.99976964 979.202 493.136 +imu_odom_: 1691062454.327450771 1.09894 -0.447716 9.8689 -0.0596548 -0.0287621 0.0308927 0.19 0.02 pose: 0.0 5.07293 -1.6812 0 0.00570051 0.00742096 -0.762476 0.646949 uwb: 0.0 979.202 493.136 +imu_odom_: 1691062454.343438418 0.299275 0.0143652 9.8282 -0.0479369 0.0223706 0.0436758 0.18 0 pose: 0.0 5.07293 -1.6812 0 0.00570051 0.00742096 -0.762476 0.646949 uwb: 0.49990962 976.981 493.068 +imu_odom_: 1691062454.369495007 0.476446 -0.502782 9.44513 -0.0894822 0.0340885 0.0500674 0.18 0 pose: 0.48010186 5.07427 -1.69384 0 0.00595533 0.00750344 -0.762361 0.647081 uwb: 0.0 976.981 493.068 +imu_odom_: 1691062454.395422986 0.272939 -0.246603 9.84496 -0.0553937 -0.0308927 0.0511327 0.19 0 pose: 0.35042988 5.06711 -1.6946 0 0.00394658 0.00772799 -0.762273 0.647198 uwb: 0.50016625 984.914 492.44 +imu_odom_: 1691062454.421493283 0.179565 -0.184354 9.9527 -0.0351537 -0.0308927 0.0266316 0.19 0 pose: 0.6989583 5.06433 -1.69489 0 0.00390504 0.00696814 -0.762249 0.647235 uwb: 0.0 984.914 492.44 +imu_odom_: 1691062454.447517792 0.641646 -0.356736 9.73243 -0.0735032 -0.0106526 0.0639159 0.19 0.02 pose: 0.45008693 5.06539 -1.70484 0 0.00624569 0.00503808 -0.762276 0.647203 uwb: 0.50003501 984.02 492.233 +imu_odom_: 1691062454.472490671 0.459687 -0.114922 10.0963 -0.052198 0.015979 0.0458064 0.23 0 pose: 0.0 5.06539 -1.70484 0 0.00624569 0.00503808 -0.762276 0.647203 uwb: 0.0 984.02 492.233 +imu_odom_: 1691062454.486423468 0.387861 -0.0263362 9.79707 -0.0639159 0 0.0575243 0.23 0 pose: 0.33015842 5.06645 -1.71478 0 0.00347204 0.00363285 -0.762074 0.647471 uwb: 0.0 984.02 492.233 +imu_odom_: 1691062454.511560245 0.246603 -0.354342 9.6606 -0.0458064 -0.00106526 0.0276969 0.23 0 pose: 0.0 5.06645 -1.71478 0 0.00347204 0.00363285 -0.762074 0.647471 uwb: 0.49961215 983.123 491.956 +imu_odom_: 1691062454.528417835 0.452504 -0.131681 10.0006 -0.0553937 -0.015979 0.052198 0.18 0 pose: 0.38978584 5.06752 -1.72472 0 0.00358983 0.00143513 -0.761983 0.647585 uwb: 0.0 983.123 491.956 +imu_odom_: 1691062454.553443500 0.466869 -0.174777 9.7444 -0.0479369 0.00426106 0.0287621 0.18 0 pose: 0.0 5.06752 -1.72472 0 0.00358983 0.00143513 -0.761983 0.647585 uwb: 0.50059203 985.339 491.817 +imu_odom_: 1691062454.580473271 0.308852 -0.19393 9.53611 -0.072438 0.0127832 0.0532632 0.2 0 pose: 0.42960258 5.06752 -1.72472 0 0.00227238 0.000834218 -0.762017 0.647553 uwb: 0.0 985.339 491.817 +imu_odom_: 1691062454.606541234 0.184354 -0.272939 10.1059 -0.0500674 -0.0298274 0.0330232 0.19 0.02 pose: 0.44025304 5.06149 -1.73543 0 0.00336471 0.00163374 -0.761954 0.64762 uwb: 0.49934676 984.013 492.045 +imu_odom_: 1691062454.633408565 0.957681 -0.31364 10.1682 -0.0756338 -0.0149137 0.0308927 0.19 0.02 pose: 0.0 5.06149 -1.73543 0 0.00336471 0.00163374 -0.761954 0.64762 uwb: 0.0 984.013 492.045 +imu_odom_: 1691062454.649401170 0.600945 0.0407014 9.8282 -0.0394148 0.0245011 0.0181095 0.19 0.02 pose: 0.7947599 5.05865 -1.73574 0 0.00359774 0.00229039 -0.761971 0.647597 uwb: 0.50057162 982.683 492.112 +imu_odom_: 1691062454.676408193 0.383072 -0.42138 10.0987 -0.056459 -0.0245011 0.04048 0.19 0.02 pose: 0.0 5.05865 -1.73574 0 0.00359774 0.00229039 -0.761971 0.647597 uwb: 0.0 982.683 492.112 +imu_odom_: 1691062454.702450201 0.368707 -0.0502782 10.0796 -0.0415453 0.00213053 0.0479369 0.19 -0.02 pose: 0.52992746 5.05972 -1.74568 0 0.00166248 0.00169154 -0.762149 0.647398 uwb: 0.49927677 984.909 492.253 +imu_odom_: 1691062454.729391315 0.610521 -0.117316 10.0485 -0.052198 -0.00852212 0.0340885 0.19 -0.02 pose: 0.0 5.05972 -1.74568 0 0.00166248 0.00169154 -0.762149 0.647398 uwb: 0.0 984.909 492.253 +imu_odom_: 1691062454.755452280 0.47884 -0.0885855 9.79228 -0.0639159 0.0394148 0.0543285 0.19 0.02 pose: 0.43016543 5.06078 -1.75562 0 0.000210943 0.00203339 -0.762177 0.647365 uwb: 0.50082242 985.801 492.391 +imu_odom_: 1691062454.782431306 0.4956 -0.124498 9.99579 -0.0436758 0.0213053 0.04048 0.22 -0.02 pose: 0.52990122 5.06185 -1.76556 0 0.000448537 -0.0024276 -0.762134 0.647414 uwb: 0.0 985.801 492.391 +imu_odom_: 1691062454.798390956 0.514753 -0.316035 9.9934 -0.0671117 -0.0106526 0.0543285 0.22 -0.02 pose: 0.0 5.06185 -1.76556 0 0.000448537 -0.0024276 -0.762134 0.647414 uwb: 0.49914845 986.692 492.508 +imu_odom_: 1691062454.825418978 0.0957681 0.184354 9.94551 -0.052198 0.0149137 0.0234358 0.25 0.02 pose: 0.60970675 5.05297 -1.77657 0 -0.00136953 -0.00501413 -0.761945 0.647621 uwb: 0.0 986.692 492.508 +imu_odom_: 1691062454.842397887 0.371101 -0.536301 10.1586 -0.0607201 -0.0106526 0.0532632 0.25 0.02 pose: 0.7022538 5.05297 -1.77657 0 -0.000608359-0.00498778 -0.761985 0.647575 uwb: 0.49993003 987.568 492.157 +imu_odom_: 1691062454.869410452 0.579397 -0.0287304 10.489 -0.0372843 0.0213053 0.0319579 0.25 -0.02 pose: 0.0 5.05297 -1.77657 0 -0.000608359-0.00498778 -0.761985 0.647575 uwb: 0.0 987.568 492.157 +imu_odom_: 1691062454.885402182 0.342371 -0.35913 9.49062 -0.076699 0.0319579 0.0585895 0.25 -0.02 pose: 0.36984393 5.05404 -1.78652 0 0.000625168 -0.00345081 -0.762024 0.647539 uwb: 0.0 987.568 492.157 +imu_odom_: 1691062454.912442743 0.335188 -0.0837971 9.57441 -0.0490022 -0.0575243 0.0351537 0.23 -0.02 pose: 0.0 5.05404 -1.78652 0 0.000625168 -0.00345081 -0.762024 0.647539 uwb: 0.49884223 987.575 492.439 +imu_odom_: 1691062454.928402685 0.715866 -0.294487 10.082 -0.0479369 0.0415453 0.0351537 0.23 -0.02 pose: 0.43004295 5.05511 -1.79646 0 0.000411935 -0.00421012 -0.761986 0.64758 uwb: 0.0 987.575 492.439 +imu_odom_: 1691062454.955389586 0.696713 0.0622492 9.97903 -0.0468716 -0.0458064 0.0351537 0.23 0 pose: 0.0 5.05511 -1.79646 0 0.000411935 -0.00421012 -0.761986 0.64758 uwb: 0.50050454 988.022 492.593 +imu_odom_: 1691062454.981477672 0.332794 -0.134075 9.90002 -0.0894822 0.0266316 0.052198 0.23 0 pose: 0.43000503 5.05564 -1.80141 0 0.0013209 -0.00431843 -0.76205 0.647503 uwb: 0.0 988.022 492.593 +imu_odom_: 1691062455.8429870 0.318429 -0.129287 9.93354 -0.0692422 -0.00852212 0.0394148 0.25 -0.02 pose: 0.53074987 5.04701 -1.81465 0 0.00198026 -0.00472809 -0.761985 0.647575 uwb: 0.49985129 988.021 492.522 +imu_odom_: 1691062455.24507639 0.603339 -0.253785 10.161 -0.0671117 -0.0117179 0.0511327 0.25 -0.02 pose: 0.0 5.04701 -1.81465 0 0.00198026 -0.00472809 -0.761985 0.647575 uwb: 0.0 988.021 492.522 +imu_odom_: 1691062455.51362733 0.466869 0.0191536 10.228 -0.0415453 0.0138484 0.0340885 0.23 0.02 pose: 0.43029967 5.0473 -1.81741 0 0.00201265 -0.00294951 -0.761937 0.647642 uwb: 0.49925359 992.898 492.618 +imu_odom_: 1691062455.67351846 0.40462 -0.318429 9.84017 -0.0639159 -0.0308927 0.0468716 0.23 0.02 pose: 0.0 5.0473 -1.81741 0 0.00201265 -0.00294951 -0.761937 0.647642 uwb: 0.0 992.898 492.618 +imu_odom_: 1691062455.84489412 0.457293 -0.234632 9.65821 -0.0532632 -0.0351537 0.0298274 0.23 0 pose: 0.0 5.0473 -1.81741 0 0.00201265 -0.00294951 -0.761937 0.647642 uwb: 0.0 992.898 492.618 +imu_odom_: 1691062455.100629007 0.708684 -0.244209 9.9527 -0.0628506 -0.0138484 0.0415453 0.23 0 pose: 0.49852457 5.04838 -1.82736 0 0.00148327 -0.00392657 -0.761964 0.647605 uwb: 0.50001774 995.115 492.733 +imu_odom_: 1691062455.117510227 -0.0814029 -0.486023 9.52413 -0.0649811 -0.0181095 0.0468716 0.23 0 pose: 0.0 5.04838 -1.82736 0 0.00148327 -0.00392657 -0.761964 0.647605 uwb: 0.0 995.115 492.733 +imu_odom_: 1691062455.142498282 0.1652 -0.320823 9.98143 -0.0340885 0.0234358 0.0308927 0.18 0 pose: 0.43150131 5.04945 -1.8373 0 -0.000651124-0.00252576 -0.761947 0.647634 uwb: 0.49986608 995.115 492.663 +imu_odom_: 1691062455.159487698 0.802058 -0.023942 9.81144 -0.0585895 -0.0415453 0.0671117 0.18 0 pose: 0.8054049 5.04945 -1.8373 0 -0.000186133-0.00178166 -0.761971 0.647609 uwb: 0.0 995.115 492.663 +imu_odom_: 1691062455.176484696 0.866701 -0.304064 9.81144 -0.0553937 -0.0703074 0.105461 0.16 0.08 pose: 0.0 5.04945 -1.8373 0 -0.000186133-0.00178166 -0.761971 0.647609 uwb: 0.0 995.115 492.663 +imu_odom_: 1691062455.192339365 1.04148 -0.610521 9.82341 -0.0383495 0.0170442 0.138484 0.15 0.11 pose: 0.50920420 5.04057 -1.84831 0 -0.00217967 -0.00302636 -0.761498 0.648157 uwb: 0.50038228 996.447 492.934 +imu_odom_: 1691062455.208322645 1.37667 -0.469264 10.2113 -0.0532632 -0.0234358 0.170442 0.14 0.26 pose: 0.0 5.04057 -1.84831 0 -0.00217967 -0.00302636 -0.761498 0.648157 uwb: 0.0 996.447 492.934 +imu_odom_: 1691062455.224385249 1.86987 -0.253785 10.2113 -0.04048 -0.0266316 0.251402 0.14 0.26 pose: 0.0 5.04057 -1.84831 0 -0.00217967 -0.00302636 -0.761498 0.648157 uwb: 0.0 996.447 492.934 +imu_odom_: 1691062455.240507929 1.84832 -0.383072 9.85693 -0.0415453 0.0138484 0.363255 0.13 0.38 pose: 0.22875460 5.04057 -1.84831 0 -0.00423791 -0.00347448 -0.760681 0.649102 uwb: 0.50081390 997.778 493.114 +imu_odom_: 1691062455.257441643 1.55384 -0.785298 9.67976 -0.056459 0.0170442 0.4048 0.13 0.38 pose: 0.0 5.04057 -1.84831 0 -0.00423791 -0.00347448 -0.760681 0.649102 uwb: 0.0 997.778 493.114 +imu_odom_: 1691062455.274447974 0.897826 -0.0143652 10.094 -0.0287621 0.0575243 0.441019 0.13 0.38 pose: 0.31971517 5.04159 -1.85826 0 -0.006938 -0.00548807 -0.758442 0.65168 uwb: 0.0 997.778 493.114 +imu_odom_: 1691062455.290332682 0.620098 -0.351948 10.3789 -0.0617853 0.0234358 0.546481 0.1 0.44 pose: 0.43116301 5.04152 -1.85824 0 -0.00892284 -0.00761478 -0.753191 0.657698 uwb: 0.50114636 1000.44 492.921 +imu_odom_: 1691062455.307396756 0.797269 -0.538695 9.84496 -0.0479369 -0.0426106 0.611462 0.1 0.44 pose: 0.7000085 5.04159 -1.85826 0 -0.00923993 -0.00691884 -0.752019 0.65904 uwb: 0.0 1000.44 492.921 +imu_odom_: 1691062455.324498743 0.723049 -0.703895 9.75158 -0.0287621 0.0266316 0.612527 0.1 0.44 pose: 0.0 5.04159 -1.85826 0 -0.00923993 -0.00691884 -0.752019 0.65904 uwb: 0.0 1000.44 492.921 +imu_odom_: 1691062455.340431861 0.543484 0.0143652 10.1275 -0.0458064 0.0149137 0.595483 0.08 0.5 pose: 0.43050684 5.0425 -1.86819 0 -0.0125426 -0.00463763 -0.743987 0.66806 uwb: 0.49868789 1002.65 493.233 +imu_odom_: 1691062455.367388152 0.567426 -0.169988 9.67976 -0.0468716 -0.0117179 0.572047 0.07 0.5 pose: 0.0 5.0425 -1.86819 0 -0.0125426 -0.00463763 -0.743987 0.66806 uwb: 0.0 1002.65 493.233 +imu_odom_: 1691062455.384376693 0.787692 -0.493206 9.80186 -0.0649811 -0.0138484 0.576308 0.07 0.5 pose: 0.23894136 5.04256 -1.86821 0 -0.010272 -0.00561256 -0.739628 0.672915 uwb: 0.0 1002.65 493.233 +imu_odom_: 1691062455.401314199 -0.1652 -0.454898 9.4978 -0.04048 0.0820254 0.526241 0.06 0.55 pose: 0.0 5.04256 -1.86821 0 -0.010272 -0.00561256 -0.739628 0.672915 uwb: 0.50052518 1000.45 493.861 +imu_odom_: 1691062455.418382356 -1.17795 0.234632 9.8689 -0.0649811 0.0266316 0.462325 0.06 0.55 pose: 0.0 5.04256 -1.86821 0 -0.010272 -0.00561256 -0.739628 0.672915 uwb: 0.0 1000.45 493.861 +imu_odom_: 1691062455.434370302 -0.715866 0.126893 9.50498 -0.052198 -0.0617853 0.405866 0.1 0.38 pose: 0.27058363 5.04256 -1.86821 0 -0.00936013 -0.0060973 -0.73476 0.678235 uwb: 0.0 1000.45 493.861 +imu_odom_: 1691062455.450312461 0.0023942 -0.155623 9.71567 -0.0479369 -0.0340885 0.336624 0.1 0.38 pose: 0.42931114 5.04256 -1.86821 0 -0.0071298 -0.00297974 -0.72787 0.685672 uwb: 0.49997108 1006.62 493.904 +imu_odom_: 1691062455.466367774 0.629675 -0.320823 9.68933 -0.0511327 -0.0276969 0.311057 0.1 0.38 pose: 0.0 5.04256 -1.86821 0 -0.0071298 -0.00297974 -0.72787 0.685672 uwb: 0.0 1006.62 493.904 +imu_odom_: 1691062455.483482301 0.138864 -0.371101 9.55287 -0.0575243 0.0266316 0.335558 0.14 0.32 pose: 0.47985418 5.04368 -1.87815 0 -0.00646373 -0.00252522 -0.722724 0.691102 uwb: 0.0 1006.62 493.904 +imu_odom_: 1691062455.499302265 -0.201113 -0.277727 9.8258 -0.0671117 0.0479369 0.32171 0.14 0.32 pose: 0.0 5.04368 -1.87815 0 -0.00646373 -0.00252522 -0.722724 0.691102 uwb: 0.49995649 1007.94 494.346 +imu_odom_: 1691062455.516582732 0.349553 -0.0502782 10.3046 -0.0575243 -0.0266316 0.285491 0.14 0.32 pose: 0.0 5.04368 -1.87815 0 -0.00646373 -0.00252522 -0.722724 0.691102 uwb: 0.0 1007.94 494.346 +imu_odom_: 1691062455.533604228 0.591368 -0.0287304 9.96946 -0.0735032 0 0.296144 0.13 0.23 pose: 0.40115973 5.04479 -1.88809 0 -0.0034399 0.000311094 -0.718816 0.695192 uwb: 0.0 1007.94 494.346 +imu_odom_: 1691062455.550318633 0.433351 -0.409408 9.81623 -0.052198 -0.00958738 0.286556 0.14 0.2 pose: 0.0 5.04479 -1.88809 0 -0.0034399 0.000311094 -0.718816 0.695192 uwb: 0.50206793 1007.5 494.551 +imu_odom_: 1691062455.566333409 0.105345 -0.222661 9.85693 -0.0585895 -0.0106526 0.253533 0.14 0.2 pose: 0.34213305 5.04479 -1.88809 0 -0.00281014 -0.00111394 -0.715822 0.698276 uwb: 0.0 1007.5 494.551 +imu_odom_: 1691062455.584442990 0.0742203 -0.126893 9.91918 -0.0745685 -0.0490022 0.262055 0.14 0.17 pose: 0.0 5.04479 -1.88809 0 -0.00281014 -0.00111394 -0.715822 0.698276 uwb: 0.0 1007.5 494.551 +imu_odom_: 1691062455.601578515 0.349553 -0.174777 10.2687 -0.052198 0 0.232228 0.14 0.17 pose: 0.0 5.04479 -1.88809 0 -0.00281014 -0.00111394 -0.715822 0.698276 uwb: 0.49850416 1009.26 494.697 +imu_odom_: 1691062455.618459735 0.407014 -0.222661 9.80665 -0.0756338 -0.0181095 0.254598 0.14 0.17 pose: 0.33868303 5.03592 -1.89907 0 -0.00163754 0.000902989 -0.713149 0.70101 uwb: 0.0 1009.26 494.697 +imu_odom_: 1691062455.635332206 0.588974 -0.280122 9.89284 -0.0468716 -0.0149137 0.217314 0.21 0.26 pose: 0.43894380 5.03592 -1.89907 0 -0.00085243 5.45926e-05 -0.70994 0.704261 uwb: 0.0 1009.26 494.697 +imu_odom_: 1691062455.651568623 1.05345 0.0622492 9.92157 -0.0639159 -0.102265 0.231162 0.21 0.26 pose: 0.7012333 5.03592 -1.89907 0 -0.00147812 -0.000320678-0.709501 0.704703 uwb: 0.49992441 1010.14 494.597 +imu_odom_: 1691062455.668409015 1.49877 -0.208296 9.54329 -0.0649811 -0.0607201 0.290817 0.21 0.26 pose: 0.0 5.03592 -1.89907 0 -0.00147812 -0.000320678-0.709501 0.704703 uwb: 0.0 1010.14 494.597 +imu_odom_: 1691062455.684395210 1.41018 -0.639252 9.91439 -0.0713727 -0.052198 0.327036 0.12 0.14 pose: 0.42936947 5.03704 -1.90901 0 -0.00507609 -0.0043729 -0.706277 0.707904 uwb: 0.0 1010.14 494.597 +imu_odom_: 1691062455.701399500 1.88184 -0.500388 10.3262 -0.0340885 -0.0181095 0.24075 0.15 0.14 pose: 0.0 5.03704 -1.90901 0 -0.00507609 -0.0043729 -0.706277 0.707904 uwb: 0.49935573 1011.47 494.625 +imu_odom_: 1691062455.718406414 1.41018 0.325611 9.89763 -0.0458064 0.0298274 0.184291 0.15 0.14 pose: 0.0 5.03704 -1.90901 0 -0.00507609 -0.0043729 -0.706277 0.707904 uwb: 0.0 1011.47 494.625 +imu_odom_: 1691062455.733277986 1.10373 0.110133 9.7037 -0.0628506 0.0383495 0.168312 0.1 0.11 pose: 0.23016902 5.03704 -1.90901 0 -0.00751995 -0.00555787 -0.704129 0.710011 uwb: 0.0 1011.47 494.625 +imu_odom_: 1691062455.748268544 0.64404 -0.225055 9.96227 -0.0639159 0.0308927 0.120375 0.1 0.11 pose: 0.0 5.03704 -1.90901 0 -0.00751995 -0.00555787 -0.704129 0.710011 uwb: 0.49948405 1013.23 494.739 +imu_odom_: 1691062455.765325327 0.663194 -0.423774 10.2208 -0.0660464 -0.0223706 0.1012 0.1 0.11 pose: 0.0 5.03704 -1.90901 0 -0.00751995 -0.00555787 -0.704129 0.710011 uwb: 0.0 1013.23 494.739 +imu_odom_: 1691062455.782394359 0.833182 -0.272939 9.7875 -0.0415453 -0.0234358 0.0980043 0.07 0.11 pose: 0.73899410 5.03816 -1.91895 0 -0.0108017 -0.00656064 -0.701018 0.713032 uwb: 0.0 1013.23 494.739 +imu_odom_: 1691062455.797280804 0.790087 -0.150835 9.85214 -0.0585895 0.00852212 0.131028 0.07 0.11 pose: 0.7946728 5.03816 -1.91895 0 -0.0113693 -0.00722244 -0.700846 0.713186 uwb: 0.0 1013.23 494.739 +imu_odom_: 1691062455.812388891 0.651223 -0.232238 9.86172 -0.056459 0.0138484 0.145941 0.07 0.11 pose: 0.0 5.03816 -1.91895 0 -0.0113693 -0.00722244 -0.700846 0.713186 uwb: 0.0 1013.23 494.739 +imu_odom_: 1691062455.829273319 0.737414 -0.304064 9.9934 -0.0479369 -0.00106526 0.122505 0.09 0.14 pose: 0.39116836 5.03816 -1.91895 0 -0.0104134 -0.00871008 -0.699615 0.714391 uwb: 0.0 1013.23 494.739 +imu_odom_: 1691062455.845290136 0.61531 -0.150835 9.67018 -0.0468716 -0.00532632 0.115049 0.09 0.14 pose: 0.0 5.03816 -1.91895 0 -0.0104134 -0.00871008 -0.699615 0.714391 uwb: 0.100109411 1014.12 494.551 +imu_odom_: 1691062455.872398952 0.68953 -0.184354 9.94073 -0.0575243 -0.00852212 0.120375 0.07 0.11 pose: 0.32901245 5.03816 -1.91895 0 -0.0104406 -0.00919436 -0.698681 0.715298 uwb: 0.0 1014.12 494.551 +imu_odom_: 1691062455.898291655 -0.622492 -0.1652 9.83059 -0.0468716 0.116114 0.0894822 0.05 0.11 pose: 0.0 5.03816 -1.91895 0 -0.0104406 -0.00919436 -0.698681 0.715298 uwb: 0.49866164 1015.88 494.603 +imu_odom_: 1691062455.925259903 -1.1564 -0.373495 9.85693 -0.0671117 -0.0649811 0.132093 0.1 0.08 pose: 0.53001519 5.03928 -1.92888 0 -0.00613805 -0.00866777 -0.69749 0.716516 uwb: 0.0 1015.88 494.603 +imu_odom_: 1691062455.950314159 0.725443 -0.349553 10.1418 -0.0415453 -0.0713727 0.0916127 0.09 0.08 pose: 0.0 5.03928 -1.92888 0 -0.00613805 -0.00866777 -0.69749 0.716516 uwb: 0.49869955 1017.65 494.592 +imu_odom_: 1691062455.977291448 0.521936 -0.282516 10.2232 -0.0585895 0.036219 0.135289 0.09 0.08 pose: 0.35008882 5.03928 -1.92888 0 -0.00612364 -0.00722954 -0.696452 0.717541 uwb: 0.0 1017.65 494.592 +imu_odom_: 1691062456.3264059 -0.402226 -0.131681 9.9527 -0.0458064 -0.0127832 0.0852212 0.11 0.05 pose: 0.43990911 5.04005 -1.93596 0 -0.00707165 -0.00466356 -0.695194 0.718772 uwb: 0.49993317 1019.41 494.727 +imu_odom_: 1691062456.30282188 0.493206 -0.418985 9.96706 -0.0575243 -0.00426106 0.100135 0.11 0.05 pose: 0.8100419 5.04038 -1.93882 0 -0.00643869 -0.00420502 -0.695065 0.718906 uwb: 0.0 1019.41 494.727 +imu_odom_: 1691062456.56405293 0.172383 0.0143652 9.52653 -0.0511327 0.00106526 0.11931 0.13 0.05 pose: 0.44890321 5.04032 -1.93881 0 -0.00673815 -0.00104341 -0.694174 0.719775 uwb: 0.50189309 1025.15 494.745 +imu_odom_: 1691062456.73402882 0.0766145 -0.294487 9.65821 -0.0735032 -0.0213053 0.117179 0.13 0.05 pose: 0.0 5.04032 -1.93881 0 -0.00673815 -0.00104341 -0.694174 0.719775 uwb: 0.0 1025.15 494.745 +imu_odom_: 1691062456.89239477 0.0861913 -0.189142 9.83538 -0.0607201 -0.0394148 0.0894822 0.17 0.05 pose: 0.0 5.04032 -1.93881 0 -0.00673815 -0.00104341 -0.694174 0.719775 uwb: 0.49974674 1022.93 494.851 +imu_odom_: 1691062456.116230776 0.730232 -0.153229 9.99819 -0.04048 -0.0127832 0.0990696 0.17 0.05 pose: 0.33126984 5.04143 -1.94877 0 -0.00369237 -0.000321534-0.69324 0.720698 uwb: 0.0 1022.93 494.851 +imu_odom_: 1691062456.142242769 0.124498 -0.25618 9.64384 -0.0575243 0.056459 0.0873517 0.19 0.05 pose: 0.33861027 5.04143 -1.94877 0 -0.00242117 0.000381625 -0.692502 0.721412 uwb: 0.50073246 1023.38 494.683 +imu_odom_: 1691062456.159238608 -0.0143652 -0.272939 9.7875 -0.0447411 0.0127832 0.0681769 0.19 0.05 pose: 0.0 5.04143 -1.94877 0 -0.00242117 0.000381625 -0.692502 0.721412 uwb: 0.0 1023.38 494.683 +imu_odom_: 1691062456.184302499 1.10373 -0.311246 10.0676 -0.072438 -0.0191748 0.106526 0.18 0.05 pose: 0.52088145 5.04253 -1.95871 0 -0.0004264110.00163399 -0.691575 0.722303 uwb: 0.0 1023.38 494.683 +imu_odom_: 1691062456.211349792 0.287304 -0.418985 9.91199 -0.0532632 0.0223706 0.0543285 0.18 0.05 pose: 0.0 5.04253 -1.95871 0 -0.0004264110.00163399 -0.691575 0.722303 uwb: 0.49864436 1024.27 494.678 +imu_odom_: 1691062456.236279823 0.282516 -0.270545 10.3884 -0.0575243 -0.0106526 0.092678 0.18 0.05 pose: 0.34944155 5.04253 -1.95871 0 -0.00187478 0.000787206 -0.690867 0.722979 uwb: 0.0 1024.27 494.678 +imu_odom_: 1691062456.253559422 0.272939 -0.469264 10.1203 -0.0490022 0.0351537 0.0649811 0.18 0.02 pose: 0.0 5.04253 -1.95871 0 -0.00187478 0.000787206 -0.690867 0.722979 uwb: 0.49864437 1025.17 494.369 +imu_odom_: 1691062456.269512962 0.560243 -0.318429 9.67736 -0.0383495 0.0255663 0.0511327 0.18 0.02 pose: 0.58932209 5.04368 -1.96864 0 -0.0001564840.00562969 -0.690162 0.723633 uwb: 0.0 1025.17 494.369 +imu_odom_: 1691062456.287493066 0.186748 0.0215478 9.99579 -0.0468716 -0.0138484 0.0948085 0.18 0.02 pose: 0.0 5.04368 -1.96864 0 -0.0001564840.00562969 -0.690162 0.723633 uwb: 0.50096285 1024.75 493.784 +imu_odom_: 1691062456.303373989 0.500388 -0.469264 9.40442 -0.0777643 0.02024 0.0862864 0.15 0 pose: 0.44258358 5.04484 -1.97857 0 0.000326767 0.00493056 -0.689647 0.724129 uwb: 0.0 1024.75 493.784 +imu_odom_: 1691062456.318348805 0.0694318 -0.19393 10.1299 -0.052198 0.0575243 0.0500674 0.15 0 pose: 0.6898308 5.04484 -1.97857 0 -0.0003597820.0050813 -0.689532 0.724237 uwb: 0.0 1024.75 493.784 +imu_odom_: 1691062456.334325676 0.23942 -0.0909797 9.80904 -0.056459 -0.0245011 0.0788296 0.15 0 pose: 0.0 5.04484 -1.97857 0 -0.0003597820.0050813 -0.689532 0.724237 uwb: 0.0 1024.75 493.784 +imu_odom_: 1691062456.350421242 0.272939 -0.287304 9.88087 -0.0745685 -0.0511327 0.092678 0.16 -0.02 pose: 0.39934302 5.04602 -1.9885 0 0.00179294 0.0054454 -0.689085 0.724658 uwb: 0.49995963 1023.86 493.953 +imu_odom_: 1691062456.377251559 -0.0790087 -0.112527 9.7037 -0.0372843 0.0127832 0.0543285 0.16 0.02 pose: 0.0 5.04602 -1.9885 0 0.00179294 0.0054454 -0.689085 0.724658 uwb: 0.0 1023.86 493.953 +imu_odom_: 1691062456.403216890 0.105345 -0.435745 9.6199 -0.103331 0.0245011 0.0937433 0.17 0.02 pose: 0.23946350 5.04602 -1.9885 0 0.00233791 0.0071697 -0.688723 0.724985 uwb: 0.49959509 1024.74 493.972 +imu_odom_: 1691062456.429205844 0.500388 -0.150835 9.72285 -0.0713727 -0.0181095 0.0479369 0.17 0.02 pose: 0.0 5.04602 -1.9885 0 0.00233791 0.0071697 -0.688723 0.724985 uwb: 0.0 1024.74 493.972 +imu_odom_: 1691062456.455194506 0.73502 -0.550666 9.94073 -0.0777643 -0.0447411 0.0617853 0.15 0 pose: 0.70933818 5.04793 -2.0057 0 0.00273565 0.00862103 -0.688021 0.725634 uwb: 0.0 1024.74 493.972 +imu_odom_: 1691062456.472254213 0.337582 -0.356736 9.79947 -0.0330232 0.0532632 0.0415453 0.15 0 pose: 0.6999213 5.04824 -2.00838 0 0.00191842 0.00834609 -0.68797 0.725688 uwb: 0.0 1024.74 493.972 +imu_odom_: 1691062456.488316532 0.198719 -0.0885855 9.87369 -0.0447411 -0.015979 0.0575243 0.17 -0.02 pose: 0.0 5.04824 -2.00838 0 0.00191842 0.00834609 -0.68797 0.725688 uwb: 0.100107121 1022.99 493.537 +imu_odom_: 1691062456.506254641 0.244209 -0.047884 9.65821 -0.0490022 -0.0330232 0.0585895 0.17 -0.02 pose: 0.43045161 5.0383 -2.0095 0 -0.0008671840.00748195 -0.687782 0.725879 uwb: 0.0 1022.99 493.537 +imu_odom_: 1691062456.523277019 0.758962 -0.318429 9.51935 -0.0490022 -0.0245011 0.0511327 0.17 -0.02 pose: 0.0 5.0383 -2.0095 0 -0.0008671840.00748195 -0.687782 0.725879 uwb: 0.0 1022.99 493.537 +imu_odom_: 1691062456.537393849 0.244209 -0.071826 10.422 -0.0511327 0.00958738 0.052198 0.17 0.02 pose: 0.0 5.0383 -2.0095 0 -0.0008671840.00748195 -0.687782 0.725879 uwb: 0.49960968 1020.61 493.293 +imu_odom_: 1691062456.554522673 0.167594 -0.19393 10.2041 -0.0575243 0.00106526 0.0553937 0.17 0.02 pose: 0.50026001 5.03943 -2.01944 0 0.000639419 0.00451506 -0.687501 0.726169 uwb: 0.0 1020.61 493.293 +imu_odom_: 1691062456.571205006 0.112527 -0.452504 9.40921 -0.0372843 -0.015979 0.0468716 0.17 0.02 pose: 0.0 5.03943 -2.01944 0 0.000639419 0.00451506 -0.687501 0.726169 uwb: 0.0 1020.61 493.293 +imu_odom_: 1691062456.597181711 0.744597 -0.304064 10.0293 -0.0649811 -0.00639159 0.0617853 0.22 0 pose: 0.41928787 5.04056 -2.02937 0 0.00288646 0.0065301 -0.68731 0.726329 uwb: 0.50184650 1020.62 493.105 +imu_odom_: 1691062456.613238781 0.699107 -0.366313 9.81383 -0.0532632 0.0351537 0.0383495 0.15 0 pose: 0.0 5.04056 -2.02937 0 0.00288646 0.0065301 -0.68731 0.726329 uwb: 0.0 1020.62 493.105 +imu_odom_: 1691062456.640321945 0.378284 -0.545878 9.4571 -0.0447411 -0.0191748 0.0671117 0.15 0 pose: 0.33073032 5.04056 -2.02937 0 0.000332314 0.00459374 -0.687121 0.726529 uwb: 0.49756532 1025.53 492.341 +imu_odom_: 1691062456.657287454 -0.0023942 -0.557849 9.71806 -0.056459 -0.00745685 0.0436758 0.22 0 pose: 0.0 5.04056 -2.02937 0 0.000332314 0.00459374 -0.687121 0.726529 uwb: 0.0 1025.53 492.341 +imu_odom_: 1691062456.674343079 0.433351 -0.0670376 10.3477 -0.0532632 -0.0681769 0.0500674 0.22 0 pose: 0.17044251 5.04171 -2.03931 0 -0.0009534960.00465975 -0.687048 0.726596 uwb: 0.0 1025.53 492.341 +imu_odom_: 1691062456.690245874 0.533907 -0.31364 9.90242 -0.0681769 -0.0170442 0.0692422 0.17 -0.02 pose: 0.0 5.04171 -2.03931 0 -0.0009534960.00465975 -0.687048 0.726596 uwb: 0.50157819 1028.66 491.967 +imu_odom_: 1691062456.707167347 0.627281 -0.201113 10.2185 -0.052198 -0.00639159 0.0319579 0.17 -0.02 pose: 0.53020790 5.04235 -2.04483 0 -0.00182748 0.00535355 -0.68676 0.726862 uwb: 0.0 1028.66 491.967 +imu_odom_: 1691062456.724171644 0.213084 -0.270545 9.46188 -0.0500674 -0.00319579 0.0383495 0.17 -0.02 pose: 0.0 5.04235 -2.04483 0 -0.00182748 0.00535355 -0.68676 0.726862 uwb: 0.0 1028.66 491.967 +imu_odom_: 1691062456.748158531 0.208296 -0.277727 9.44752 -0.0543285 -0.00319579 0.0383495 0.17 0.02 pose: 0.8002725 5.04286 -2.04924 0 -0.00245266 0.00477287 -0.686678 0.726942 uwb: 0.49799694 1030.43 492.117 +imu_odom_: 1691062456.773150388 0.811634 -0.433351 9.94791 -0.052198 -0.0681769 0.0553937 0.17 0.02 pose: 0.0 5.04286 -2.04924 0 -0.00245266 0.00477287 -0.686678 0.726942 uwb: 0.0 1030.43 492.117 +imu_odom_: 1691062456.790226135 0.730232 -0.56982 9.79947 -0.0511327 -0.00213053 0.052198 0.22 0.02 pose: 0.48836719 5.04402 -2.05917 0 -0.00169959 0.00408322 -0.686654 0.726971 uwb: 0.0 1030.43 492.117 +imu_odom_: 1691062456.806212047 0.258574 -0.0837971 10.0317 -0.0394148 0.0671117 0.0500674 0.22 0.02 pose: 0.0 5.04402 -2.05917 0 -0.00169959 0.00408322 -0.686654 0.726971 uwb: 0.0 1030.43 492.117 +imu_odom_: 1691062456.823336205 0.227449 -0.260968 10.0389 -0.0532632 0.00852212 0.0585895 0.24 0 pose: 0.48981077 5.04518 -2.06911 0 -0.00379047 0.00326388 -0.686487 0.727125 uwb: 0.0 1030.43 492.117 +imu_odom_: 1691062456.840299090 0.392649 -0.222661 9.88326 -0.0490022 0.00958738 0.0458064 0.24 0 pose: 0.0 5.04518 -2.06911 0 -0.00379047 0.00326388 -0.686487 0.727125 uwb: 0.100012049 1029.57 491.713 +imu_odom_: 1691062456.856199844 0.023942 -0.177171 9.76834 -0.0490022 0.0468716 0.052198 0.24 0 pose: 0.0 5.04518 -2.06911 0 -0.00379047 0.00326388 -0.686487 0.727125 uwb: 0.0 1029.57 491.713 +imu_odom_: 1691062456.872270912 0.536301 -0.308852 10.0102 -0.0681769 -0.0138484 0.0649811 0.17 0.02 pose: 0.76036244 5.04635 -2.07904 0 0.00113201 0.0038218 -0.686149 0.72745 uwb: 0.0 1029.57 491.713 +imu_odom_: 1691062456.890161193 0.244209 -0.112527 9.77313 -0.0585895 0.00745685 0.0426106 0.17 0.02 pose: 0.0 5.04635 -2.07904 0 0.00113201 0.0038218 -0.686149 0.72745 uwb: 0.50091036 1027.37 491.261 +imu_odom_: 1691062456.917263896 0.035913 -0.186748 9.85693 -0.0628506 0.0117179 0.0681769 0.23 0 pose: 0.7011170 5.04635 -2.07904 0 0.000472694 0.00347085 -0.686086 0.727512 uwb: 0.0 1027.37 491.261 +imu_odom_: 1691062456.934260902 0.622492 -0.134075 10.1682 -0.052198 0.0138484 0.0479369 0.18 0.02 pose: 0.0 5.04635 -2.07904 0 0.000472694 0.00347085 -0.686086 0.727512 uwb: 0.0 1027.37 491.261 +imu_odom_: 1691062456.951264907 -0.105345 -0.0670376 9.51216 -0.0287621 0.0213053 0.0319579 0.18 0 pose: 0.0 5.04635 -2.07904 0 0.000472694 0.00347085 -0.686086 0.727512 uwb: 0.49961259 1029.15 491.383 +imu_odom_: 1691062456.968204462 0.52433 -0.347159 10.0604 -0.0873517 -0.00958738 0.0756338 0.18 0 pose: 0.71049888 5.04753 -2.08897 0 0.00300202 0.00347436 -0.68564 0.727926 uwb: 0.0 1029.15 491.383 +imu_odom_: 1691062456.985196218 0.21069 -0.241814 10.173 -0.0703074 -0.0138484 0.0458064 0.18 -0.02 pose: 0.0 5.04753 -2.08897 0 0.00300202 0.00347436 -0.68564 0.727926 uwb: 0.0 1029.15 491.383 +imu_odom_: 1691062457.140122 0.433351 -0.107739 10.0389 -0.0596548 -0.04048 0.0394148 0.18 -0.02 pose: 0.41945118 5.04871 -2.0989 0 0.0033456 0.00460131 -0.685444 0.728103 uwb: 0.49895641 1027.8 491.566 +imu_odom_: 1691062457.17139175 0.560243 -0.0766145 9.79468 -0.0798948 0.0266316 0.0585895 0.18 -0.02 pose: 0.0 5.04871 -2.0989 0 0.0033456 0.00460131 -0.685444 0.728103 uwb: 0.0 1027.8 491.566 +imu_odom_: 1691062457.33139092 -0.1652 -0.464475 9.6199 -0.0532632 -0.00426106 0.036219 0.18 0.02 pose: 0.40933155 5.04991 -2.10883 0 0.00301933 0.00239211 -0.685305 0.728246 uwb: 0.0 1027.8 491.566 +imu_odom_: 1691062457.51134368 1.00317 -0.0502782 10.3022 -0.0671117 -0.036219 0.0426106 0.18 0.02 pose: 0.7001841 5.04991 -2.10883 0 0.00321259 0.00306259 -0.685313 0.728235 uwb: 0.50052263 1028.27 491.122 +imu_odom_: 1691062457.68130215 0.385466 -0.289698 9.38288 -0.0841559 0.00532632 0.0532632 0.18 0.02 pose: 0.0 5.04991 -2.10883 0 0.00321259 0.00306259 -0.685313 0.728235 uwb: 0.0 1028.27 491.122 +imu_odom_: 1691062457.85126937 0.25618 -0.23942 9.78031 -0.0426106 0.0117179 0.0426106 0.18 0 pose: 0.43989199 5.0511 -2.11876 0 0.000525762 0.00289704 -0.685226 0.728325 uwb: 0.0 1028.27 491.122 +imu_odom_: 1691062457.102127742 0.0957681 -0.251391 10.0365 -0.0596548 0.0170442 0.0458064 0.23 0 pose: 0.0 5.0511 -2.11876 0 0.000525762 0.00289704 -0.685226 0.728325 uwb: 0.49986361 1027.39 490.909 +imu_odom_: 1691062457.119120964 0.629675 -0.21069 9.92157 -0.0511327 -0.00852212 0.0394148 0.23 0 pose: 0.0 5.0511 -2.11876 0 0.000525762 0.00289704 -0.685226 0.728325 uwb: 0.0 1027.39 490.909 +imu_odom_: 1691062457.136191469 0.146046 0.047884 9.60554 -0.0319579 -0.00745685 0.0351537 0.26 0 pose: 0.24014019 5.0511 -2.11876 0 0.00243722 0.00468111 -0.685182 0.728353 uwb: 0.49798840 1025.61 490.84 +imu_odom_: 1691062457.152121977 0.414197 -0.351948 9.68455 -0.0639159 0.0149137 0.0394148 0.26 0 pose: 0.0 5.0511 -2.11876 0 0.00243722 0.00468111 -0.685182 0.728353 uwb: 0.0 1025.61 490.84 +imu_odom_: 1691062457.169118699 0.438139 -0.150835 9.8689 -0.0458064 -0.0330232 0.0372843 0.26 0 pose: 0.34045938 5.0523 -2.12868 0 0.00285175 0.00391805 -0.685172 0.728365 uwb: 0.0 1025.61 490.84 +imu_odom_: 1691062457.185115407 0.770933 -0.337582 9.96706 -0.0553937 -0.0191748 0.0511327 0.25 0 pose: 0.33936867 5.0535 -2.13861 0 0.00219275 0.00301812 -0.685199 0.728346 uwb: 0.0 1025.61 490.84 +imu_odom_: 1691062457.202113004 0.955286 -0.251391 9.72285 -0.052198 -0.0436758 0.0681769 0.25 0 pose: 0.0 5.0535 -2.13861 0 0.00219275 0.00301812 -0.685199 0.728346 uwb: 0.49937367 1028.31 490.395 +imu_odom_: 1691062457.220130153 1.30005 -0.150835 9.31823 -0.0490022 -0.052198 0.127832 0.15 -0.02 pose: 0.0 5.0535 -2.13861 0 0.00219275 0.00301812 -0.685199 0.728346 uwb: 0.0 1028.31 490.395 +imu_odom_: 1691062457.234170289 1.71185 -0.536301 10.0054 -0.072438 -0.0617853 0.160855 0.15 -0.02 pose: 0.41985965 5.05417 -2.14412 0 -0.00091088 -0.000330705-0.684967 0.728573 uwb: 0.0 1028.31 490.395 +imu_odom_: 1691062457.251173135 2.16915 -0.557849 10.1203 -0.0479369 -0.076699 0.0916127 0.15 -0.02 pose: 0.0 5.05417 -2.14412 0 -0.00091088 -0.000330705-0.684967 0.728573 uwb: 0.50176798 1026.98 490.228 +imu_odom_: 1691062457.265180609 1.72622 0.0670376 9.10275 -0.0351537 0.0298274 0.00319579 0.13 -0.02 pose: 0.8008561 5.0547 -2.14854 0 -0.00152341 -0.00111412 -0.684709 0.728814 uwb: 0.0 1026.98 490.228 +imu_odom_: 1691062457.282169748 1.12767 0.258574 9.98622 -0.0671117 0.0511327 0.0383495 0.13 -0.02 pose: 0.0 5.0547 -2.14854 0 -0.00152341 -0.00111412 -0.684709 0.728814 uwb: 0.0 1026.98 490.228 +imu_odom_: 1691062457.296100813 0.603339 -0.201113 9.97903 -0.0628506 0.0298274 0.0266316 0.13 -0.02 pose: 0.0 5.0547 -2.14854 0 -0.00152341 -0.00111412 -0.684709 0.728814 uwb: 0.50002109 1027.87 490.323 +imu_odom_: 1691062457.312165181 0.962469 -0.363919 10.5896 -0.0383495 -0.0191748 -0.0276969 0.1 -0.02 pose: 0.47030651 5.0547 -2.14854 0 -0.00577275 -0.00503475 -0.683504 0.729907 uwb: 0.0 1027.87 490.323 +imu_odom_: 1691062457.327154877 1.09654 -0.304064 9.40442 -0.0532632 -0.0394148 -0.00319579 0.1 -0.02 pose: 0.0 5.0547 -2.14854 0 -0.00577275 -0.00503475 -0.683504 0.729907 uwb: 0.0 1027.87 490.323 +imu_odom_: 1691062457.344207301 0.80924 -0.172383 9.81383 -0.0585895 0.0447411 0.0426106 0.1 -0.02 pose: 0.0 5.0547 -2.14854 0 -0.00577275 -0.00503475 -0.683504 0.729907 uwb: 0.49991611 1026.53 490.393 +imu_odom_: 1691062457.358102495 0.80924 -0.23942 10.398 -0.0660464 -0.00958738 0.0575243 0.08 0 pose: 0.46011098 5.05595 -2.15846 0 -0.00713948 -0.00826721 -0.683844 0.729547 uwb: 0.0 1026.53 490.393 +imu_odom_: 1691062457.375114673 0.629675 -0.162806 9.53371 -0.0490022 -0.0255663 0.0383495 0.07 -0.02 pose: 0.0 5.05595 -2.15846 0 -0.00713948 -0.00826721 -0.683844 0.729547 uwb: 0.0 1026.53 490.393 +imu_odom_: 1691062457.389086276 0.916979 -0.0670376 9.97903 -0.0500674 -0.00532632 0.0436758 0.07 -0.02 pose: 0.0 5.05595 -2.15846 0 -0.00713948 -0.00826721 -0.683844 0.729547 uwb: 0.50083767 1027.85 490.745 +imu_odom_: 1691062457.405078610 0.861913 -0.287304 9.89045 -0.0692422 -0.00852212 0.0543285 0.07 -0.02 pose: 0.61940439 5.04602 -2.15969 0 -0.0104657 -0.011581 -0.684149 0.729176 uwb: 0.0 1027.85 490.745 +imu_odom_: 1691062457.422352967 0.756568 -0.258574 9.93594 -0.0543285 0.00319579 0.0266316 0.06 -0.02 pose: 0.0 5.04602 -2.15969 0 -0.0104657 -0.011581 -0.684149 0.729176 uwb: 0.0 1027.85 490.745 +imu_odom_: 1691062457.439269781 0.636858 -0.11971 9.84496 -0.0649811 -0.0127832 0.0415453 0.06 -0.02 pose: 0.30985822 5.04725 -2.16962 0 -0.0105534 -0.0129808 -0.68409 0.729206 uwb: 0.49845501 1029.18 490.844 +imu_odom_: 1691062457.467236608 0.758962 -0.251391 9.90721 -0.0532632 -0.00426106 0.0330232 0.05 0.02 pose: 0.43180206 5.04725 -2.16962 0 -0.0113254 -0.0121453 -0.6841 0.729199 uwb: 0.0 1029.18 490.844 +imu_odom_: 1691062457.482096819 0.6608 -0.289698 9.87608 -0.0575243 0.00852212 0.0308927 0.05 0.02 pose: 0.0 5.04725 -2.16962 0 -0.0113254 -0.0121453 -0.6841 0.729199 uwb: 0.0 1029.18 490.844 +imu_odom_: 1691062457.509082006 -1.13246 0.100556 9.69891 -0.04048 0.102265 -0.0170442 0.06 0.02 pose: 0.42827038 5.04725 -2.16962 0 -0.0134222 -0.0105279 -0.684174 0.729119 uwb: 0.50067144 1030.1 490.356 +imu_odom_: 1691062457.535090218 -1.04627 -0.4956 9.97424 -0.072438 -0.0852212 0.0713727 0.09 0.05 pose: 0.0 5.04725 -2.16962 0 -0.0134222 -0.0105279 -0.684174 0.729119 uwb: 0.0 1030.1 490.356 +imu_odom_: 1691062457.561110680 0.871489 -0.23942 10.2783 -0.0308927 -0.0426106 0.015979 0.12 0 pose: 0.35009788 5.04725 -2.16962 0 -0.0099068 -0.00758425 -0.684684 0.728733 uwb: 0.50011442 1033.67 490.508 +imu_odom_: 1691062457.578075613 0.828394 0.0574608 9.7444 -0.0447411 0.015979 0.0468716 0.12 0 pose: 0.0 5.04725 -2.16962 0 -0.0099068 -0.00758425 -0.684684 0.728733 uwb: 0.0 1033.67 490.508 +imu_odom_: 1691062457.604137778 -0.258574 -0.150835 9.98143 -0.0458064 0.0532632 0.036219 0.11 -0.02 pose: 0.50996581 5.04846 -2.17954 0 -0.0108442 -0.00981666 -0.684667 0.72871 uwb: 0.49967404 1033.84 490.637 +imu_odom_: 1691062457.630066958 0.469264 -0.399832 9.97185 -0.0692422 -0.0138484 0.0372843 0.12 0 pose: 0.36034590 5.04846 -2.17954 0 -0.00786018 -0.00848443 -0.684709 0.728724 uwb: 0.0 1033.84 490.637 +imu_odom_: 1691062457.647124923 0.639252 -0.318429 10.2041 -0.052198 0.00426106 0.0426106 0.12 0 pose: 0.6944681 5.04846 -2.17954 0 -0.00798924 -0.00778518 -0.684714 0.728726 uwb: 0.50119638 1036.97 490.502 +imu_odom_: 1691062457.663060097 0.483629 -0.296881 9.71806 -0.0671117 0.0127832 0.0500674 0.12 0 pose: 0.0 5.04846 -2.17954 0 -0.00798924 -0.00778518 -0.684714 0.728726 uwb: 0.0 1036.97 490.502 +imu_odom_: 1691062457.680174931 0.138864 -0.1652 9.8258 -0.0628506 0.0223706 0.0479369 0.13 -0.02 pose: 0.43042264 5.04968 -2.18947 0 -0.00950011 -0.00478514 -0.684666 0.728779 uwb: 0.0 1036.97 490.502 +imu_odom_: 1691062457.697263225 0.117316 -0.232238 9.72046 -0.052198 0.00106526 0.0330232 0.13 -0.02 pose: 0.0 5.04968 -2.18947 0 -0.00950011 -0.00478514 -0.684666 0.728779 uwb: 0.49815464 1036.05 490.93 +imu_odom_: 1691062457.714091383 0.0191536 -0.174777 9.51456 -0.0617853 0.0223706 0.0394148 0.14 0 pose: 0.0 5.04968 -2.18947 0 -0.00950011 -0.00478514 -0.684666 0.728779 uwb: 0.0 1036.05 490.93 +imu_odom_: 1691062457.731257836 0.25618 -0.0430956 9.89045 -0.0756338 -0.0458064 0.0841559 0.14 0 pose: 0.50084933 5.05089 -2.19939 0 -0.00540889 -0.00127574 -0.684642 0.728858 uwb: 0.0 1036.05 490.93 +imu_odom_: 1691062457.747264168 0.179565 -0.548272 9.77313 -0.0820254 -0.0170442 0.0447411 0.14 0 pose: 0.0 5.05089 -2.19939 0 -0.00540889 -0.00127574 -0.684642 0.728858 uwb: 0.50049354 1037.39 490.98 +imu_odom_: 1691062457.764260598 0.373495 -0.158017 10.3142 -0.0671117 0.015979 0.0276969 0.19 0.02 pose: 0.43054512 5.05089 -2.19939 0 -0.00352608 0.000947221 -0.684336 0.729158 uwb: 0.0 1037.39 490.98 +imu_odom_: 1691062457.781198993 -0.059855 -0.162806 9.21289 -0.0713727 0.0330232 0.052198 0.19 0.02 pose: 0.6946722 5.05089 -2.19939 0 -0.00283712 0.000843075 -0.684368 0.729131 uwb: 0.0 1037.39 490.98 +imu_odom_: 1691062457.804067474 0.708684 -0.548272 10.161 -0.0649811 -0.0479369 0.0319579 0.14 0 pose: 0.0 5.05089 -2.19939 0 -0.00283712 0.000843075 -0.684368 0.729131 uwb: 0.49853959 1037.85 490.778 +imu_odom_: 1691062457.830045649 0.3304 0.0790087 9.92636 -0.0319579 -0.0447411 0.052198 0.15 0.02 pose: 0.33939200 5.05211 -2.20932 0 -0.00118699 0.00188574 -0.684353 0.729147 uwb: 0.0 1037.85 490.778 +imu_odom_: 1691062457.847105655 0.289698 -0.474052 9.85932 -0.0617853 -0.0287621 0.0575243 0.18 0 pose: 0.0 5.05211 -2.20932 0 -0.00118699 0.00188574 -0.684353 0.729147 uwb: 0.50081142 1041.87 490.834 +imu_odom_: 1691062457.863103822 0.363919 -0.0263362 9.68694 -0.0500674 -0.0266316 0.0319579 0.18 0 pose: 0.48904690 5.05333 -2.21924 0 -0.00123888 0.00032855 -0.684234 0.729262 uwb: 0.0 1041.87 490.834 +imu_odom_: 1691062457.881101432 0.287304 -0.229843 9.92157 -0.052198 -0.0191748 0.0436758 0.21 0 pose: 0.0 5.05333 -2.21924 0 -0.00123888 0.00032855 -0.684234 0.729262 uwb: 0.0 1041.87 490.834 +imu_odom_: 1691062457.898034869 0.21069 -0.40462 10.0724 -0.0649811 -0.00532632 0.0490022 0.21 0 pose: 0.0 5.05333 -2.21924 0 -0.00123888 0.00032855 -0.684234 0.729262 uwb: 0.49997151 1047.64 491.247 +imu_odom_: 1691062457.912209157 0.4956 -0.213084 10.8314 -0.0479369 0.0788296 0.036219 0.21 0 pose: 0.34047980 5.05333 -2.21924 0 6.52333e-05 0.000760029 -0.684199 0.729295 uwb: 0.0 1047.64 491.247 +imu_odom_: 1691062457.937092537 0.0885855 0.146046 10.5441 -0.0298274 0.0937433 0.0394148 0.15 0 pose: 0.41106397 5.05456 -2.22917 0 0.0002419 0.00233416 -0.684144 0.729343 uwb: 0.50020483 1046.34 490.75 +imu_odom_: 1691062457.964175421 -0.0430956 -0.407014 9.83299 -0.0468716 -0.0394148 0.04048 0.15 0 pose: 0.7017297 5.05456 -2.22917 0 0.00123823 0.00242654 -0.684143 0.729342 uwb: 0.0 1046.34 490.75 +imu_odom_: 1691062457.980106220 0.411803 -0.208296 10.1203 -0.0436758 -0.02024 0.0298274 0.18 0 pose: 0.0 5.05456 -2.22917 0 0.00123823 0.00242654 -0.684143 0.729342 uwb: 0.0 1046.34 490.75 +imu_odom_: 1691062457.997164477 0.0814029 -0.0837971 10.1203 -0.0607201 -0.00319579 0.0479369 0.18 0 pose: 0.53019355 5.05579 -2.23909 0 0.00362546 0.00416144 -0.684161 0.72931 uwb: 0.49956322 1049.92 490.828 +imu_odom_: 1691062458.13192978 0.80924 -0.4956 10.1921 -0.0649811 -0.0223706 0.0394148 0.18 0 pose: 0.0 5.05579 -2.23909 0 0.00362546 0.00416144 -0.684161 0.72931 uwb: 0.0 1049.92 490.828 +imu_odom_: 1691062458.31173681 0.0287304 -0.244209 9.39485 -0.0426106 0.0436758 0.0191748 0.17 0 pose: 0.33049133 5.05579 -2.23909 0 0.00388708 0.00371628 -0.684137 0.729334 uwb: 0.0 1049.92 490.828 +imu_odom_: 1691062458.48037425 -0.0574608 0.244209 10.2879 -0.0500674 0.0394148 0.0607201 0.17 0 pose: 0.0 5.05579 -2.23909 0 0.00388708 0.00371628 -0.684137 0.729334 uwb: 0.0 1049.92 490.828 +imu_odom_: 1691062458.62023031 -0.0383072 -0.641646 9.52174 -0.0756338 0.00958738 0.0479369 0.17 0 pose: 0.0 5.05579 -2.23909 0 0.00388708 0.00371628 -0.684137 0.729334 uwb: 0.0 1049.92 490.828 +imu_odom_: 1691062458.79032592 0.356736 -0.347159 9.99579 -0.052198 -0.00532632 0.0223706 0.18 0 pose: 0.48749854 5.05702 -2.24902 0 0.00632894 0.00575319 -0.684106 0.729333 uwb: 0.0 1049.92 490.828 +imu_odom_: 1691062458.102137890 0.720655 -0.445322 9.91439 -0.0553937 -0.015979 0.036219 0.18 0 pose: 0.0 5.05702 -2.24902 0 0.00632894 0.00575319 -0.684106 0.729333 uwb: 0.100068123 1051.27 490.797 +imu_odom_: 1691062458.119220360 0.146046 -0.392649 9.55765 -0.0458064 -0.0106526 0.0213053 0.17 -0.02 pose: 0.31002167 5.05825 -2.25894 0 0.00384563 0.00627849 -0.684216 0.729242 uwb: 0.0 1051.27 490.797 +imu_odom_: 1691062458.146034952 0.919373 -0.184354 10.24 -0.04048 -0.0287621 0.0479369 0.25 0 pose: 0.0 5.05825 -2.25894 0 0.00384563 0.00627849 -0.684216 0.729242 uwb: 0.49858939 1052.17 490.77 +imu_odom_: 1691062458.171221934 0.835576 -0.222661 10.3022 -0.0436758 -0.015979 0.0500674 0.17 0 pose: 0.41195072 5.05947 -2.26887 0 0.00184132 0.00647196 -0.684341 0.729131 uwb: 0.0 1052.17 490.77 +imu_odom_: 1691062458.188074013 0.40462 0.124498 10.0676 -0.0415453 0.0181095 0.0468716 0.17 0 pose: 0.0 5.05947 -2.26887 0 0.00184132 0.00647196 -0.684341 0.729131 uwb: 0.50057833 1052.19 490.583 +imu_odom_: 1691062458.204132847 -0.146046 -0.153229 9.59596 -0.052198 0.00426106 0.0511327 0.17 0 pose: 0.27826271 5.05947 -2.26887 0 0.000158871 0.00386826 -0.684266 0.729223 uwb: 0.0 1052.19 490.583 +imu_odom_: 1691062458.222119382 0.797269 0.0191536 10.0317 -0.0372843 -0.04048 0.0319579 0.17 0 pose: 0.41960903 5.06069 -2.27879 0 0.00112641 0.00172511 -0.684127 0.72936 uwb: 0.0 1052.19 490.583 +imu_odom_: 1691062458.238070894 0.603339 -0.342371 9.99819 -0.0500674 -0.0117179 0.0596548 0.17 0 pose: 0.0 5.06069 -2.27879 0 0.00112641 0.00172511 -0.684127 0.72936 uwb: 0.50077664 1051.74 490.538 +imu_odom_: 1691062458.253000812 0.445322 -0.258574 10.1251 -0.0798948 0.015979 0.0649811 0.17 0 pose: 0.0 5.06069 -2.27879 0 0.00112641 0.00172511 -0.684127 0.72936 uwb: 0.0 1051.74 490.538 +imu_odom_: 1691062458.268061382 0.684742 -0.138864 10.0078 -0.0585895 -0.00213053 0.036219 0.18 0 pose: 0.49100690 5.06192 -2.28872 0 -0.00106853 -0.000104997-0.68396 0.729519 uwb: 0.0 1051.74 490.538 +imu_odom_: 1691062458.284999201 0.536301 -0.143652 10.1011 -0.052198 -0.00852212 0.0575243 0.18 0 pose: 0.0 5.06192 -2.28872 0 -0.00106853 -0.000104997-0.68396 0.729519 uwb: 0.0 1051.74 490.538 +imu_odom_: 1691062458.301998555 0.711078 -0.213084 10.2137 -0.0703074 -0.0436758 0.052198 0.17 0.02 pose: 0.39869302 5.06257 -2.29396 0 -0.00229888 -0.00302165 -0.683795 0.729664 uwb: 0.49925723 1053.54 490.511 +imu_odom_: 1691062458.317148949 0.744597 -0.11971 9.61751 -0.0543285 0.0234358 0.0255663 0.17 0.02 pose: 0.0 5.06257 -2.29396 0 -0.00229888 -0.00302165 -0.683795 0.729664 uwb: 0.0 1053.54 490.511 +imu_odom_: 1691062458.333141582 0.627281 0.0263362 10.2639 -0.052198 -0.00213053 0.0585895 0.17 0.02 pose: 0.0 5.06257 -2.29396 0 -0.00229888 -0.00302165 -0.683795 0.729664 uwb: 0.0 1053.54 490.511 +imu_odom_: 1691062458.348139159 0.153229 -0.433351 9.72046 -0.0798948 -0.0319579 0.0639159 0.18 0 pose: 0.8013815 5.06316 -2.29864 0 -0.00301498 -0.00366602 -0.683755 0.729696 uwb: 0.49960427 1055.34 490.585 +imu_odom_: 1691062458.364133250 1.14203 -0.105345 10.161 -0.0713727 -0.0106526 0.0372843 0.17 0.02 pose: 0.0 5.06316 -2.29864 0 -0.00301498 -0.00366602 -0.683755 0.729696 uwb: 0.0 1055.34 490.585 +imu_odom_: 1691062458.387989214 0.811634 -0.277727 10.1275 -0.0777643 -0.015979 0.0468716 0.17 0.02 pose: 0.47142367 5.06316 -2.29864 0 -0.0034894 -0.00640098 -0.683617 0.729805 uwb: 0.50011755 1059.81 490.784 +imu_odom_: 1691062458.403980972 -0.023942 -0.423774 9.39964 -0.0745685 0.0532632 0.0394148 0.18 0 pose: 0.0 5.06316 -2.29864 0 -0.0034894 -0.00640098 -0.683617 0.729805 uwb: 0.0 1059.81 490.784 +imu_odom_: 1691062458.422037499 0.509965 -0.0670376 10.4794 -0.0607201 -0.0500674 0.0436758 0.18 0 pose: 0.0 5.06316 -2.29864 0 -0.0034894 -0.00640098 -0.683617 0.729805 uwb: 0.0 1059.81 490.784 +imu_odom_: 1691062458.437979096 0.627281 -0.220267 9.81623 -0.0703074 -0.0298274 0.052198 0.18 0 pose: 0.71846985 5.05572 -2.31973 0 -0.00550749 -0.00634633 -0.683475 0.729926 uwb: 0.50048792 1060.74 490.539 +imu_odom_: 1691062458.454993032 0.588974 -0.11971 10.307 -0.0543285 0.0234358 0.0372843 0.17 0.02 pose: 0.0 5.05572 -2.31973 0 -0.00550749 -0.00634633 -0.683475 0.729926 uwb: 0.0 1060.74 490.539 +imu_odom_: 1691062458.472972276 0.371101 -0.280122 9.97664 -0.0500674 0.036219 0.0447411 0.17 0.02 pose: 0.32986154 5.05572 -2.31973 0 -0.00577471 -0.00781782 -0.68339 0.729988 uwb: 0.0 1060.74 490.539 +imu_odom_: 1691062458.497977862 0.349553 -0.397437 10.2975 -0.0447411 0.00426106 0.0340885 0.17 0.02 pose: 0.27983754 5.05697 -2.32965 0 -0.00403533 -0.00631086 -0.683381 0.730023 uwb: 0.49946138 1062.15 490.14 +imu_odom_: 1691062458.525158455 0.54109 -0.237026 9.97185 -0.0649811 0.0181095 0.0436758 0.17 0.02 pose: 0.8070975 5.05697 -2.32965 0 -0.004021 -0.00550787 -0.683398 0.730014 uwb: 0.0 1062.15 490.14 +imu_odom_: 1691062458.541185501 0.0454898 -0.244209 9.56723 -0.0426106 0.0127832 0.0351537 0.2 0 pose: 0.0 5.05697 -2.32965 0 -0.004021 -0.00550787 -0.683398 0.730014 uwb: 0.50133657 1063.9 490.57 +imu_odom_: 1691062458.568083792 -0.023942 -0.316035 9.70609 -0.0585895 0.00639159 0.0500674 0.2 0 pose: 0.44115204 5.05786 -2.33669 0 -0.00647399 -0.00432587 -0.683376 0.730025 uwb: 0.0 1063.9 490.57 +imu_odom_: 1691062458.593086461 0.332794 -0.0861913 9.7444 -0.0330232 -0.0330232 0.0308927 0.23 0 pose: 0.42925337 5.0591 -2.34656 0 -0.00356183 -0.000813554-0.683308 0.730121 uwb: 0.49879062 1064.84 490.263 +imu_odom_: 1691062458.610016990 0.826 -0.0023942 10.4698 -0.056459 -0.0276969 0.0596548 0.23 0 pose: 0.0 5.0591 -2.34656 0 -0.00356183 -0.000813554-0.683308 0.730121 uwb: 0.0 1064.84 490.263 +imu_odom_: 1691062458.627028884 0.229843 -0.718261 9.15303 -0.0266316 -0.0532632 0.0308927 0.23 0 pose: 0.0 5.0591 -2.34656 0 -0.00356183 -0.000813554-0.683308 0.730121 uwb: 0.0 1064.84 490.263 +imu_odom_: 1691062458.641957927 0.529119 -0.301669 10.1706 -0.00852212 0.00532632 0.0191748 0.23 0 pose: 0.49940013 5.06072 -2.35942 0 -0.002041 -0.00277145 -0.68329 0.730139 uwb: 0.50162238 1064.9 489.774 +imu_odom_: 1691062458.659005984 0.502782 0.0622492 10.1897 -0.0500674 -0.0149137 0.0660464 0.23 0 pose: 0.0 5.06072 -2.35942 0 -0.002041 -0.00277145 -0.68329 0.730139 uwb: 0.0 1064.9 489.774 +imu_odom_: 1691062458.672958344 0.605733 -0.186748 9.77313 -0.0671117 -0.0447411 0.0745685 0.17 -0.02 pose: 0.0 5.06072 -2.35942 0 -0.002041 -0.00277145 -0.68329 0.730139 uwb: 0.0 1064.9 489.774 +imu_odom_: 1691062458.688950685 0.916979 -0.177171 9.56484 -0.076699 0.00958738 0.0468716 0.17 -0.02 pose: 0.47016089 5.06072 -2.35942 0 -0.00293295 -0.00409513 -0.683183 0.73023 uwb: 0.49933597 1061.77 489.503 +imu_odom_: 1691062458.704005131 0.172383 -0.0766145 10.2783 -0.103331 -0.0287621 0.0532632 0.19 0 pose: 0.0 5.06072 -2.35942 0 -0.00293295 -0.00409513 -0.683183 0.73023 uwb: 0.0 1061.77 489.503 +imu_odom_: 1691062458.720010304 0.047884 -0.301669 9.49062 -0.0841559 0.00852212 0.0255663 0.19 0 pose: 0.38965237 5.06197 -2.36934 0 -0.00367792 -0.00502202 -0.682965 0.730425 uwb: 0.0 1061.77 489.503 +imu_odom_: 1691062458.737058069 0.186748 -0.332794 9.69891 -0.0490022 -0.0490022 0.0298274 0.19 0 pose: 0.0 5.06197 -2.36934 0 -0.00367792 -0.00502202 -0.682965 0.730425 uwb: 0.50016421 1061.79 489.316 +imu_odom_: 1691062458.763017590 0.696713 -0.500388 9.9527 -0.0468716 -0.0213053 0.0479369 0.18 0 pose: 0.33052938 5.06268 -2.37489 0 -0.00255499 -0.00214245 -0.683115 0.730303 uwb: 0.0 1061.79 489.316 +imu_odom_: 1691062458.780003820 0.416591 -0.306458 9.69173 -0.0319579 0.0628506 0.0372843 0.18 0 pose: 0.0 5.06268 -2.37489 0 -0.00255499 -0.00214245 -0.683115 0.730303 uwb: 0.0 1061.79 489.316 +imu_odom_: 1691062458.805247380 0.19393 -0.1652 9.93833 -0.0798948 0.00532632 0.0660464 0.25 0.02 pose: 0.42945751 5.06394 -2.38485 0 -0.00427496 -0.000284442-0.683038 0.730371 uwb: 0.49932722 1061.34 489.333 +imu_odom_: 1691062458.821048700 0.605733 -0.198719 10.0676 -0.0553937 0.0234358 0.0372843 0.18 -0.02 pose: 0.0 5.06394 -2.38485 0 -0.00427496 -0.000284442-0.683038 0.730371 uwb: 0.0 1061.34 489.333 +imu_odom_: 1691062458.838938997 0.134075 -0.189142 9.9096 -0.0639159 0.0127832 0.0543285 0.18 0 pose: 0.0 5.06394 -2.38485 0 -0.00427496 -0.000284442-0.683038 0.730371 uwb: 0.49885185 1060.01 489.127 +imu_odom_: 1691062458.855925519 0.423774 -0.308852 9.98382 -0.0628506 0.00745685 0.052198 0.18 0 pose: 0.49052862 5.06449 -2.38918 0 -0.00198033 0.0003674 -0.682769 0.730631 uwb: 0.0 1060.01 489.127 +imu_odom_: 1691062458.881040176 0.670376 0.011971 10.0078 -0.0649811 0.00319579 0.0660464 0.18 0.02 pose: 0.26868837 5.06576 -2.3991 0 -0.00266204 0.00188452 -0.682635 0.730752 uwb: 0.0 1060.01 489.127 +imu_odom_: 1691062458.898095815 0.3304 -0.416591 9.4164 -0.0884169 0.00958738 0.072438 0.18 0.02 pose: 0.7014675 5.06576 -2.3991 0 -0.00260408 0.00122823 -0.682569 0.730815 uwb: 0.50088747 1058.24 488.804 +imu_odom_: 1691062458.924039879 0.225055 -0.0861913 9.65342 -0.0585895 0.0223706 0.0340885 0.19 0 pose: 0.35155621 5.06703 -2.40902 0 -0.00301331 0.00146605 -0.682189 0.731168 uwb: 0.0 1058.24 488.804 +imu_odom_: 1691062458.939926649 0.507571 -0.325611 10.1634 -0.072438 -0.04048 0.0479369 0.19 0 pose: 0.0 5.06703 -2.40902 0 -0.00301331 0.00146605 -0.682189 0.731168 uwb: 0.49970343 1057.82 488.45 +imu_odom_: 1691062458.956929502 0.881066 -0.40462 9.75877 -0.0458064 0.015979 0.036219 0.19 0 pose: 0.0 5.06703 -2.40902 0 -0.00301331 0.00146605 -0.682189 0.731168 uwb: 0.0 1057.82 488.45 +imu_odom_: 1691062458.973963852 0.160412 -0.363919 10.1011 -0.0468716 0.0223706 0.0394148 0.19 0 pose: 0.49846981 5.06831 -2.41893 0 -0.00265649 0.000999713 -0.682205 0.731156 uwb: 0.0 1057.82 488.45 +imu_odom_: 1691062458.998975271 0.490811 -0.184354 10.0772 -0.0607201 0.00745685 0.0490022 0.2 0 pose: 0.0 5.06831 -2.41893 0 -0.00265649 0.000999713 -0.682205 0.731156 uwb: 0.49871187 1060.52 488.62 +imu_odom_: 1691062459.23918747 0.0215478 -0.545878 9.42597 -0.0532632 -0.0330232 0.0447411 0.2 0 pose: 0.33010652 5.06831 -2.41893 0 -0.00234935 0.00159872 -0.682192 0.731168 uwb: 0.0 1060.52 488.62 +imu_odom_: 1691062459.45927802 0.308852 -0.464475 9.78031 -0.0532632 0.00532632 0.0394148 0.18 0 pose: 0.0 5.06831 -2.41893 0 -0.00234935 0.00159872 -0.682192 0.731168 uwb: 0.49955775 1059.64 488.469 +imu_odom_: 1691062459.62984323 0.543484 -0.306458 10.3717 -0.04048 0.0383495 0.0372843 0.18 0 pose: 0.48971798 5.06959 -2.42885 0 -0.00230127 0.00268888 -0.68208 0.731269 uwb: 0.0 1059.64 488.469 +imu_odom_: 1691062459.79911651 0.23942 -0.153229 9.63906 -0.0415453 0.00532632 0.0394148 0.18 0 pose: 0.0 5.06959 -2.42885 0 -0.00230127 0.00268888 -0.68208 0.731269 uwb: 0.0 1059.64 488.469 +imu_odom_: 1691062459.95897874 0.153229 -0.225055 10.4076 -0.0298274 0.0351537 0.0213053 0.25 -0.02 pose: 0.49986405 5.07087 -2.43877 0 -0.00174143 0.00321262 -0.682098 0.731251 uwb: 0.49991946 1060.15 487.914 +imu_odom_: 1691062459.122941703 0.531513 -0.174777 9.80186 -0.0500674 -0.0319579 0.0500674 0.25 -0.02 pose: 0.0 5.07087 -2.43877 0 -0.00174143 0.00321262 -0.682098 0.731251 uwb: 0.0 1060.15 487.914 +imu_odom_: 1691062459.138900221 0.0574608 -0.1652 9.44034 -0.0426106 0.0340885 0.0298274 0.2 0 pose: 0.7077088 5.07087 -2.43877 0 -0.0009790550.00362742 -0.682144 0.731208 uwb: 0.49973280 1060.22 487.378 +imu_odom_: 1691062459.155966075 0.179565 -0.299275 10.1418 -0.0735032 -0.0628506 0.0607201 0.2 0 pose: 0.0 5.07087 -2.43877 0 -0.0009790550.00362742 -0.682144 0.731208 uwb: 0.0 1060.22 487.378 +imu_odom_: 1691062459.173048552 0.758962 -0.244209 10.0509 -0.0660464 -0.00532632 0.0319579 0.18 0 pose: 0.0 5.07087 -2.43877 0 -0.0009790550.00362742 -0.682144 0.731208 uwb: 0.0 1060.22 487.378 +imu_odom_: 1691062459.198939550 0.390255 -0.368707 9.94073 -0.056459 -0.0372843 0.04048 0.18 0 pose: 0.77084477 5.07344 -2.4586 0 0.000292936 0.00299985 -0.682047 0.731302 uwb: 0.50043565 1060.69 487.244 +imu_odom_: 1691062459.215928412 0.368707 -0.184354 9.58878 -0.0553937 -0.0308927 0.036219 0.18 0 pose: 0.0 5.07344 -2.4586 0 0.000292936 0.00299985 -0.682047 0.731302 uwb: 0.0 1060.69 487.244 +imu_odom_: 1691062459.231869141 0.505177 -0.0646434 10.0868 -0.0245011 0 0.036219 0.18 0 pose: 0.41868764 5.07473 -2.46852 0 -0.00224376 0.00310191 -0.682073 0.731274 uwb: 0.0 1060.69 487.244 +imu_odom_: 1691062459.248934120 0.131681 -0.177171 9.60075 -0.0543285 -0.0351537 0.0639159 0.23 0 pose: 0.0 5.07473 -2.46852 0 -0.00224376 0.00310191 -0.682073 0.731274 uwb: 0.50026649 1063.43 487.079 +imu_odom_: 1691062459.264927926 0.885855 -0.282516 10.2879 -0.0447411 -0.0213053 0.0511327 0.23 0 pose: 0.33012415 5.06481 -2.46981 0 -0.0003077080.00112115 -0.682045 0.731309 uwb: 0.0 1063.43 487.079 +imu_odom_: 1691062459.282162344 0.507571 0.0191536 10.0724 -0.0447411 0.0117179 0.0532632 0.23 0 pose: 0.0 5.06481 -2.46981 0 -0.0003077080.00112115 -0.682045 0.731309 uwb: 0.0 1063.43 487.079 +imu_odom_: 1691062459.299147124 0.519542 -0.282516 9.56484 -0.056459 -0.0319579 0.0458064 0.18 0 pose: 0.43207949 5.06609 -2.47972 0 8.31651e-05 -0.00115514 -0.681804 0.731534 uwb: 0.50168676 1068.37 487.454 +imu_odom_: 1691062459.314923079 0.940921 -0.129287 10.4938 -0.0617853 0.00319579 0.0468716 0.18 0 pose: 0.0 5.06609 -2.47972 0 8.31651e-05 -0.00115514 -0.681804 0.731534 uwb: 0.0 1068.37 487.454 +imu_odom_: 1691062459.339891638 0.790087 -0.102951 10.0413 -0.0703074 0.00639159 0.0628506 0.19 0.02 pose: 0.6899775 5.06609 -2.47972 0 -0.00066982 -0.00131185 -0.681787 0.731549 uwb: 0.49885499 1067.96 487.115 +imu_odom_: 1691062459.356924829 0.462081 -0.19393 9.83299 -0.0607201 0.00213053 0.0383495 0.22 0 pose: 0.0 5.06609 -2.47972 0 -0.00066982 -0.00131185 -0.681787 0.731549 uwb: 0.0 1067.96 487.115 +imu_odom_: 1691062459.381143305 0.0574608 -0.47884 9.36372 -0.0639159 -0.0149137 0.0596548 0.18 0 pose: 0.67862710 5.06815 -2.49549 0 -0.00232323 -0.00372061 -0.681517 0.73179 uwb: 0.0 1067.96 487.115 +imu_odom_: 1691062459.406021165 0.411803 -0.131681 9.46667 -0.0468716 0.00319579 0.0287621 0.2 -0.02 pose: 0.0 5.06815 -2.49549 0 -0.00232323 -0.00372061 -0.681517 0.73179 uwb: 0.49850794 1069.32 487.178 +imu_odom_: 1691062459.430874529 0.342371 -0.418985 9.59357 -0.0809601 -0.00958738 0.0692422 0.2 -0.02 pose: 0.31113585 5.06869 -2.49955 0 -0.00140239 -0.0016119 -0.681369 0.731937 uwb: 0.0 1069.32 487.178 +imu_odom_: 1691062459.455869918 0.395043 -0.246603 10.1394 -0.0511327 0.0117179 0.0426106 0.18 0.02 pose: 0.42836115 5.06962 -2.50667 0 -0.00103352 0.000101163 -0.681174 0.732121 uwb: 0.49994861 1072.48 487.449 +imu_odom_: 1691062459.471859350 0.636858 -0.0885855 9.991 -0.0713727 -0.0308927 0.0458064 0.18 0.02 pose: 0.7009138 5.06999 -2.50947 0 -0.0009087040.00082894 -0.681165 0.732129 uwb: 0.0 1072.48 487.449 +imu_odom_: 1691062459.488984114 0.351948 -0.253785 10.0604 -0.0756338 0.0553937 0.0372843 0.18 0.02 pose: 0.0 5.06999 -2.50947 0 -0.0009087040.00082894 -0.681165 0.732129 uwb: 0.49998362 1073.83 487.618 +imu_odom_: 1691062459.506113252 0.0933739 -0.0694318 9.83299 -0.0436758 -0.0170442 0.0330232 0.18 0.02 pose: 0.42046369 5.0713 -2.51938 0 -0.0005626690.00196061 -0.681113 0.732175 uwb: 0.0 1073.83 487.618 +imu_odom_: 1691062459.521973782 0.505177 -0.191536 9.71088 -0.0745685 -0.0234358 0.0426106 0.18 0.02 pose: 0.0 5.0713 -2.51938 0 -0.0005626690.00196061 -0.681113 0.732175 uwb: 0.0 1073.83 487.618 +imu_odom_: 1691062459.538975476 0.371101 -0.141258 10.3765 -0.0543285 0.00852212 0.0383495 0.25 0 pose: 0.0 5.0713 -2.51938 0 -0.0005626690.00196061 -0.681113 0.732175 uwb: 0.49993403 1074.3 487.496 +imu_odom_: 1691062459.555032858 0.694318 -0.407014 9.90481 -0.0447411 -0.0276969 0.0426106 0.25 0 pose: 0.48923106 5.07261 -2.5293 0 0.00123507 0.0013413 -0.681142 0.732149 uwb: 0.0 1074.3 487.496 +imu_odom_: 1691062459.573022026 0.318429 -0.172383 9.79947 -0.0639159 -0.0298274 0.0458064 0.25 0 pose: 0.0 5.07261 -2.5293 0 0.00123507 0.0013413 -0.681142 0.732149 uwb: 0.0 1074.3 487.496 +imu_odom_: 1691062459.589854572 0.691924 -0.325611 9.61272 -0.0426106 0.015979 0.0330232 0.18 0.02 pose: 0.44168884 5.07334 -2.53482 0 0.00182254 0.000604892 -0.681087 0.7322 uwb: 0.50111515 1073.85 487.455 +imu_odom_: 1691062459.602846296 0.629675 -0.107739 10.4172 -0.0436758 -0.00852212 0.0436758 0.18 0 pose: 0.0 5.07334 -2.53482 0 0.00182254 0.000604892 -0.681087 0.7322 uwb: 0.0 1073.85 487.455 +imu_odom_: 1691062459.619845365 0.603339 -0.277727 9.56484 -0.0692422 0.0149137 0.0415453 0.18 0 pose: 0.0 5.07334 -2.53482 0 0.00182254 0.000604892 -0.681087 0.7322 uwb: 0.0 1073.85 487.455 +imu_odom_: 1691062459.636842976 0.1652 -0.430956 10.1538 -0.036219 0.036219 0.0330232 0.26 0 pose: 0.22844003 5.07392 -2.53921 0 0.000304686 -0.000660506-0.681119 0.732172 uwb: 0.50041815 1076.09 487.759 +imu_odom_: 1691062459.652845532 0.225055 -0.241814 9.93115 -0.0649811 -0.0287621 0.0543285 0.26 0 pose: 0.0 5.07392 -2.53921 0 0.000304686 -0.000660506-0.681119 0.732172 uwb: 0.0 1076.09 487.759 +imu_odom_: 1691062459.670837907 0.61531 -0.426168 9.75877 -0.0575243 0.00745685 0.0415453 0.26 0 pose: 0.0 5.07392 -2.53921 0 0.000304686 -0.000660506-0.681119 0.732172 uwb: 0.0 1076.09 487.759 +imu_odom_: 1691062459.686888582 0.572214 0.0670376 9.88087 -0.0426106 -0.0276969 0.0458064 0.18 0 pose: 0.74971878 5.07523 -2.54912 0 -0.00186088 0.0010572 -0.681034 0.732249 uwb: 0.50045023 1080.6 488.187 +imu_odom_: 1691062459.701905414 0.593762 -0.155623 9.70609 -0.072438 0.0351537 0.0617853 0.18 0 pose: 0.7005930 5.07523 -2.54912 0 -0.00163557 0.000310871 -0.681019 0.732264 uwb: 0.0 1080.6 488.187 +imu_odom_: 1691062459.717883763 0.296881 -0.21069 10.343 -0.0458064 0.00958738 0.0330232 0.18 0 pose: 0.0 5.07523 -2.54912 0 -0.00163557 0.000310871 -0.681019 0.732264 uwb: 0.0 1080.6 488.187 +imu_odom_: 1691062459.743840671 1.0726 -0.174777 10.2496 -0.0500674 -0.056459 0.052198 0.18 0 pose: 0.40039926 5.07655 -2.55904 0 -0.000490408-0.000601574-0.680917 0.73236 uwb: 0.49720142 1083.36 488.153 +imu_odom_: 1691062459.759839726 1.24738 -0.172383 9.24401 -0.076699 0.0181095 0.104396 0.16 0 pose: 0.0 5.07655 -2.55904 0 -0.000490408-0.000601574-0.680917 0.73236 uwb: 0.0 1083.36 488.153 +imu_odom_: 1691062459.781940937 0.514753 -0.222661 10.2927 -0.0703074 -0.00106526 0.0937433 0.16 0 pose: 0.32968962 5.07786 -2.56895 0 -0.00300891 -0.00357638 -0.680624 0.732618 uwb: 0.0 1083.36 488.153 +imu_odom_: 1691062459.806981530 0.385466 -0.174777 9.30626 -0.0617853 0.00319579 -0.00745685 0.17 0 pose: 0.0 5.07786 -2.56895 0 -0.00300891 -0.00357638 -0.680624 0.732618 uwb: 0.49983488 1084.31 487.929 +imu_odom_: 1691062459.823817284 -0.0550666 -0.110133 9.62469 -0.0479369 0.0213053 -0.02024 0.17 0 pose: 0.38990918 5.07786 -2.56895 0 -0.004591 -0.00231884 -0.680099 0.733102 uwb: 0.0 1084.31 487.929 +imu_odom_: 1691062459.840902678 -0.0047884 -0.323217 9.89045 -0.0703074 -0.00319579 -0.00745685 0.17 0 pose: 0.33973641 5.0792 -2.57886 0 -0.00132734 -0.000791737-0.680773 0.732492 uwb: 0.50086726 1085.69 487.896 +imu_odom_: 1691062459.865867445 0.227449 -0.493206 10.0341 -0.0330232 -0.0351537 0.04048 0.17 0 pose: 0.8038899 5.0792 -2.57886 0 -0.000965967-5.1126e-05 -0.680912 0.732365 uwb: 0.0 1085.69 487.896 +imu_odom_: 1691062459.890853211 0.852336 -0.122104 10.0892 -0.0436758 -0.036219 0.0511327 0.17 -0.02 pose: 0.34011262 5.08015 -2.58599 0 -0.00120457 0.00273621 -0.681056 0.732226 uwb: 0.49993403 1087.5 488.059 +imu_odom_: 1691062459.915934632 0.766145 0.00957681 10.0173 -0.0468716 0.04048 0.0436758 0.17 -0.02 pose: 0.0 5.08015 -2.58599 0 -0.00120457 0.00273621 -0.681056 0.732226 uwb: 0.0 1087.5 488.059 +imu_odom_: 1691062459.930047397 0.0861913 -0.150835 10.4411 -0.0532632 0.0458064 0.04048 0.17 -0.02 pose: 0.50067187 5.08149 -2.59612 0 -0.00219506 -0.00207158 -0.680921 0.732351 uwb: 0.0 1087.5 488.059 +imu_odom_: 1691062459.946811118 0.428562 -0.390255 10.0317 -0.0745685 -0.0127832 0.0415453 0.17 -0.02 pose: 0.0 5.08149 -2.59612 0 -0.00219506 -0.00207158 -0.680921 0.732351 uwb: 0.0 1087.5 488.059 +imu_odom_: 1691062459.971812340 0.593762 -0.117316 9.96946 -0.0809601 -0.0191748 0.0639159 0.18 0 pose: 0.30876486 5.08183 -2.59869 0 -0.00221252 0.000223779 -0.680905 0.732369 uwb: 0.0 1087.5 488.059 +imu_odom_: 1691062459.988935646 0.409408 -0.35913 9.43555 -0.106526 0.00532632 0.0713727 0.18 0 pose: 0.0 5.08183 -2.59869 0 -0.00221252 0.000223779 -0.680905 0.732369 uwb: 0.99971059 1088.85 488.29 +imu_odom_: 1691062460.13868921 0.497994 -0.203507 10.0149 -0.0671117 -0.0394148 0.0308927 0.18 0 pose: 0.42124528 5.08315 -2.6086 0 -0.00370297 -0.0002623 -0.68048 0.732757 uwb: 0.0 1088.85 488.29 +imu_odom_: 1691062460.38805995 0.861913 -0.366313 10.3813 -0.0543285 -0.0255663 0.0394148 0.18 0 pose: 0.0 5.08315 -2.6086 0 -0.00370297 -0.0002623 -0.68048 0.732757 uwb: 0.50127861 1088.84 488.337 +imu_odom_: 1691062460.63795270 0.656011 -0.201113 10.3166 -0.0585895 -0.0681769 0.0479369 0.18 0 pose: 0.49870349 5.08447 -2.61851 0 -0.00594618 -0.00422188 -0.680552 0.732664 uwb: 0.0 1088.84 488.337 +imu_odom_: 1691062460.86778393 0.282516 0.0766145 9.74201 -0.0553937 -0.0575243 0.0447411 0.18 0 pose: 0.0 5.08447 -2.61851 0 -0.00594618 -0.00422188 -0.680552 0.732664 uwb: 0.49841775 1089.82 487.984 +imu_odom_: 1691062460.103779511 0.849942 -0.31364 9.83299 -0.0511327 0.0276969 0.0340885 0.24 0 pose: 0.47972398 5.07589 -2.62975 0 -0.00552446 -0.00742465 -0.680439 0.732747 uwb: 0.0 1089.82 487.984 +imu_odom_: 1691062460.127941712 0.0694318 -0.186748 9.90002 -0.052198 -0.0106526 0.0394148 0.24 0 pose: 0.0 5.07589 -2.62975 0 -0.00552446 -0.00742465 -0.680439 0.732747 uwb: 0.0 1089.82 487.984 +imu_odom_: 1691062460.151997466 0.244209 0.102951 10.2185 -0.0351537 0.0245011 0.0383495 0.21 0.02 pose: 0.41163319 5.07679 -2.63649 0 -0.0051866 -0.00629824 -0.680476 0.732725 uwb: 0.50036295 1088.92 487.827 +imu_odom_: 1691062460.169906442 0.778116 -0.138864 9.96946 -0.0575243 -0.0117179 0.0490022 0.21 0.02 pose: 0.0 5.07679 -2.63649 0 -0.0051866 -0.00629824 -0.680476 0.732725 uwb: 0.0 1088.92 487.827 +imu_odom_: 1691062460.185844844 0.902614 -0.335188 9.91678 -0.052198 0.0223706 0.0298274 0.18 0 pose: 0.0 5.07679 -2.63649 0 -0.0051866 -0.00629824 -0.680476 0.732725 uwb: 0.0 1088.92 487.827 +imu_odom_: 1691062460.200803647 0.679953 -0.0981623 9.23683 -0.0511327 -0.00426106 0.0436758 0.18 0 pose: 0.41964730 5.078 -2.64548 0 -0.003494 -0.00753737 -0.680431 0.732765 uwb: 0.50016464 1092.09 488.149 +imu_odom_: 1691062460.224967597 0.25618 -0.486023 9.69652 -0.0585895 -0.0223706 0.0340885 0.18 0 pose: 0.0 5.078 -2.64548 0 -0.003494 -0.00753737 -0.680431 0.732765 uwb: 0.0 1092.09 488.149 +imu_odom_: 1691062460.250838192 0.184354 -0.277727 10.0485 -0.072438 -0.0287621 0.0671117 0.18 -0.02 pose: 0.39089215 5.07854 -2.64957 0 -0.00502868 -0.00869911 -0.680465 0.732712 uwb: 0.49948804 1092.98 488.356 +imu_odom_: 1691062460.273951675 0.536301 -0.177171 10.0556 -0.0543285 0.00426106 0.0255663 0.19 0 pose: 0.41842535 5.07987 -2.65948 0 -0.00421964 -0.00504595 -0.68025 0.73295 uwb: 0.0 1092.98 488.356 +imu_odom_: 1691062460.292053130 0.270545 -0.146046 10.1921 -0.0479369 -0.00639159 0.0266316 0.19 0 pose: 0.7099839 5.07987 -2.65948 0 -0.00371834 -0.00555173 -0.68029 0.732913 uwb: 0.0 1092.98 488.356 +imu_odom_: 1691062460.316771769 0.555455 -0.265756 9.70609 -0.0298274 -0.0383495 0.0287621 0.18 0 pose: 0.34115099 5.0812 -2.66939 0 -0.00124612 -0.00549736 -0.680474 0.732751 uwb: 0.0 1092.98 488.356 +imu_odom_: 1691062460.334824812 0.667982 -0.347159 10.0533 -0.0372843 -0.0511327 0.0458064 0.18 0 pose: 0.0 5.0812 -2.66939 0 -0.00124612 -0.00549736 -0.680474 0.732751 uwb: 0.0 1092.98 488.356 +imu_odom_: 1691062460.358880858 0.445322 -0.23942 10.0796 -0.0585895 -0.0266316 0.0543285 0.2 0 pose: 0.0 5.0812 -2.66939 0 -0.00124612 -0.00549736 -0.680474 0.732751 uwb: 0.99862613 1089.85 487.822 +imu_odom_: 1691062460.376879074 0.610521 0.0622492 10.0724 -0.0394148 0.0234358 0.0468716 0.2 0 pose: 0.42771682 5.08194 -2.6749 0 -0.00567558 -0.005819 -0.680501 0.732703 uwb: 0.0 1089.85 487.822 +imu_odom_: 1691062460.393933562 0.275333 -0.282516 9.58399 -0.0553937 -0.02024 0.0447411 0.2 0 pose: 0.0 5.08194 -2.6749 0 -0.00567558 -0.005819 -0.680501 0.732703 uwb: 0.50119120 1086.34 486.814 +imu_odom_: 1691062460.407762281 0.720655 0.0670376 10.2903 -0.04048 -0.02024 0.0394148 0.19 0 pose: 0.59108750 5.08386 -2.68922 0 -0.00282922 -0.00396387 -0.680308 0.73291 uwb: 0.0 1086.34 486.814 +imu_odom_: 1691062460.424828434 0.830788 -0.138864 9.92397 -0.0511327 -0.0117179 0.0649811 0.19 0 pose: 0.0 5.08386 -2.68922 0 -0.00282922 -0.00396387 -0.680308 0.73291 uwb: 0.0 1086.34 486.814 +imu_odom_: 1691062460.437740546 0.562637 -0.581791 9.50498 -0.0894822 -0.00852212 0.0596548 0.19 0 pose: 0.0 5.08386 -2.68922 0 -0.00282922 -0.00396387 -0.680308 0.73291 uwb: 0.50043002 1088.63 486.941 +imu_odom_: 1691062460.452845749 0.658405 -0.272939 10.1466 -0.0585895 0.0149137 0.0351537 0.19 0 pose: 0.36952409 5.08386 -2.68922 0 -0.00419427 -0.00649374 -0.680092 0.733086 uwb: 0.0 1088.63 486.941 +imu_odom_: 1691062460.478729467 0.890643 -0.316035 9.56484 -0.0660464 -0.0511327 0.0617853 0.24 0 pose: 0.0 5.08386 -2.68922 0 -0.00419427 -0.00649374 -0.680092 0.733086 uwb: 0.0 1088.63 486.941 +imu_odom_: 1691062460.491735486 0.387861 -0.3304 10.4603 -0.0628506 -0.015979 0.0426106 0.24 0 pose: 0.29966017 5.08519 -2.69913 0 -0.00705273 -0.00671282 -0.67998 0.733166 uwb: 0.49966886 1088.7 486.525 +imu_odom_: 1691062460.507797833 0.383072 -0.035913 10.0293 -0.0490022 -0.00852212 0.04048 0.17 0 pose: 0.0 5.08519 -2.69913 0 -0.00705273 -0.00671282 -0.67998 0.733166 uwb: 0.0 1088.7 486.525 +imu_odom_: 1691062460.525787009 0.270545 -0.225055 9.65342 -0.0735032 -0.0223706 0.0649811 0.17 0 pose: 0.0 5.08519 -2.69913 0 -0.00705273 -0.00671282 -0.67998 0.733166 uwb: 0.0 1088.7 486.525 +imu_odom_: 1691062460.542814957 0.797269 0.134075 10.5201 -0.0639159 -0.0266316 0.0436758 0.17 0 pose: 0.38943398 5.08654 -2.70904 0 -0.00770376 -0.00666199 -0.679811 0.733317 uwb: 0.50019672 1083.78 485.675 +imu_odom_: 1691062460.556804076 0.253785 -0.148441 9.37809 -0.0692422 0.0127832 0.04048 0.18 0 pose: 0.33134624 5.08654 -2.70904 0 -0.00579857 -0.00604064 -0.679649 0.73349 uwb: 0.0 1083.78 485.675 +imu_odom_: 1691062460.573872561 0.328006 -0.280122 10.422 -0.0745685 -0.0479369 0.0543285 0.18 0 pose: 0.0 5.08654 -2.70904 0 -0.00579857 -0.00604064 -0.679649 0.73349 uwb: 0.0 1083.78 485.675 +imu_odom_: 1691062460.595753889 -0.0335188 -0.117316 10.2807 -0.0394148 0.0308927 0.036219 0.2 0 pose: 0.40942551 5.08789 -2.71894 0 -0.00422852 -0.00463582 -0.679554 0.733598 uwb: 0.0 1083.78 485.675 +imu_odom_: 1691062460.619733527 0.282516 -0.4956 9.33978 -0.0820254 -0.00106526 0.0383495 0.2 0 pose: 0.0 5.08789 -2.71894 0 -0.00422852 -0.00463582 -0.679554 0.733598 uwb: 0.0 1083.78 485.675 +imu_odom_: 1691062460.636734353 0.328006 -0.0909797 9.68694 -0.0340885 0.00213053 0.0447411 0.2 0 pose: 0.6878197 5.08789 -2.71894 0 -0.00355964 -0.00416522 -0.679566 0.733594 uwb: 0.99925606 1086.1 485.582 +imu_odom_: 1691062460.661877029 0.438139 -0.0933739 9.94791 -0.0607201 -0.0223706 0.0479369 0.19 0 pose: 0.0 5.08789 -2.71894 0 -0.00355964 -0.00416522 -0.679566 0.733594 uwb: 0.0 1086.1 485.582 +imu_odom_: 1691062460.686873595 0.160412 0.0263362 9.71567 -0.0490022 -0.00213053 0.0372843 0.21 0 pose: 0.81126271 5.09059 -2.73876 0 0.000470234 -0.00277118 -0.679494 0.733676 uwb: 0.50048835 1087.06 485.34 +imu_odom_: 1691062460.709787892 0.3304 -0.320823 9.42358 -0.0671117 0.0351537 0.0351537 0.19 0.02 pose: 0.0 5.09059 -2.73876 0 0.000470234 -0.00277118 -0.679494 0.733676 uwb: 0.0 1087.06 485.34 +imu_odom_: 1691062460.733871935 0.52433 -0.416591 9.63666 -0.0511327 0.0181095 0.0511327 0.19 0.02 pose: 0.32056451 5.09195 -2.74867 0 0.00274815 -0.00154618 -0.679531 0.73364 uwb: 0.0 1087.06 485.34 +imu_odom_: 1691062460.750818226 0.191536 -0.225055 10.3118 -0.0553937 -0.0383495 0.0490022 0.19 0.02 pose: 0.0 5.09195 -2.74867 0 0.00274815 -0.00154618 -0.679531 0.73364 uwb: 0.49845566 1086.65 485.055 +imu_odom_: 1691062460.776718276 0.617704 -0.035913 10.3046 -0.0479369 -0.0319579 0.0436758 0.25 0 pose: 0.47955776 5.09195 -2.74867 0 0.000472739 0.00121218 -0.679431 0.733738 uwb: 0.0 1086.65 485.055 +imu_odom_: 1691062460.801844911 0.778116 -0.129287 9.9096 -0.04048 -0.00532632 0.04048 0.23 0.02 pose: 0.34829020 5.0933 -2.75858 0 0.000518243 -0.0011454 -0.67936 0.733804 uwb: 0.50023172 1089.38 485.308 +imu_odom_: 1691062460.814717653 0.191536 -0.0694318 9.99579 -0.0308927 0.0372843 0.0319579 0.23 0.02 pose: 0.0 5.0933 -2.75858 0 0.000518243 -0.0011454 -0.67936 0.733804 uwb: 0.0 1089.38 485.308 +imu_odom_: 1691062460.831748809 0.411803 -0.220267 10.0149 -0.0532632 -0.00532632 0.0436758 0.23 0.02 pose: 0.0 5.0933 -2.75858 0 0.000518243 -0.0011454 -0.67936 0.733804 uwb: 0.0 1089.38 485.308 +imu_odom_: 1691062460.848707057 0.205901 -0.136469 9.84496 -0.056459 0.0138484 0.0436758 0.18 0 pose: 0.8080605 5.0933 -2.75858 0 0.000118329 -0.00186703 -0.679356 0.733807 uwb: 0.50069250 1090.39 484.84 +imu_odom_: 1691062460.865696510 0.715866 -0.263362 9.7875 -0.0713727 -0.0447411 0.0500674 0.18 0 pose: 0.0 5.0933 -2.75858 0 0.000118329 -0.00186703 -0.679356 0.733807 uwb: 0.0 1090.39 484.84 +imu_odom_: 1691062460.883701434 0.608127 -0.232238 10.1203 -0.0777643 -0.0149137 0.0426106 0.18 -0.02 pose: 0.53906867 5.09466 -2.76848 0 0.000651531 -0.000824718-0.679351 0.733813 uwb: 0.0 1090.39 484.84 +imu_odom_: 1691062460.899692331 0.21069 -0.263362 9.69652 -0.0628506 0.0596548 0.0298274 0.18 0 pose: 0.0 5.09466 -2.76848 0 0.000651531 -0.000824718-0.679351 0.733813 uwb: 0.50038919 1090.45 484.516 +imu_odom_: 1691062460.916694324 0.0694318 -0.227449 10.1275 -0.0553937 -0.0213053 0.0511327 0.18 0 pose: 0.0 5.09466 -2.76848 0 0.000651531 -0.000824718-0.679351 0.733813 uwb: 0.0 1090.45 484.516 +imu_odom_: 1691062460.932692803 0.840365 -0.25618 9.77313 -0.0415453 -0.0415453 0.0394148 0.18 0 pose: 0.68999821 5.08611 -2.77975 0 -0.000227338-2.67991e-05-0.679272 0.733886 uwb: 0.0 1090.45 484.516 +imu_odom_: 1691062460.949728917 0.220267 -0.268151 9.61511 -0.0287621 0.0479369 0.0351537 0.26 0 pose: 0.0 5.08611 -2.77975 0 -0.000227338-2.67991e-05-0.679272 0.733886 uwb: 0.49950263 1091.41 484.351 +imu_odom_: 1691062460.965754518 0.746991 -0.342371 9.9527 -0.0468716 0.00639159 0.0532632 0.26 0 pose: 0.0 5.08611 -2.77975 0 -0.000227338-2.67991e-05-0.679272 0.733886 uwb: 0.0 1091.41 484.351 +imu_odom_: 1691062460.982688852 0.270545 -0.0933739 9.8665 -0.0639159 0.0287621 0.0447411 0.26 0 pose: 0.32027288 5.08747 -2.78966 0 -0.000454082-9.12985e-05-0.679247 0.73391 uwb: 0.0 1091.41 484.351 +imu_odom_: 1691062461.7693586 0.0933739 -0.134075 10.137 -0.0660464 0.0266316 0.056459 0.2 -0.02 pose: 0.42955995 5.08883 -2.79956 0 0.000839506 0.000488845 -0.67915 0.733999 uwb: 0.50113870 1094.6 484.666 +imu_odom_: 1691062461.23760898 0.399832 -0.198719 9.81862 -0.0681769 0.015979 0.056459 0.2 -0.02 pose: 0.8087022 5.08883 -2.79956 0 0.00157296 0.00104824 -0.679099 0.734044 uwb: 0.0 1094.6 484.666 +imu_odom_: 1691062461.40750066 0.500388 -0.177171 9.81623 -0.0447411 0.0575243 0.0340885 0.18 0 pose: 0.0 5.08883 -2.79956 0 0.00157296 0.00104824 -0.679099 0.734044 uwb: 0.49741466 1095.14 484.287 +imu_odom_: 1691062461.57805436 0.124498 -0.184354 9.6199 -0.0905475 0.0255663 0.0681769 0.23 0 pose: 0.49974192 5.0902 -2.80947 0 0.0015567 0.00011199 -0.678927 0.734204 uwb: 0.0 1095.14 484.287 +imu_odom_: 1691062461.75734834 0.76375 -0.263362 10.501 -0.0788296 -0.0330232 0.036219 0.18 0 pose: 0.0 5.0902 -2.80947 0 0.0015567 0.00011199 -0.678927 0.734204 uwb: 0.0 1095.14 484.287 +imu_odom_: 1691062461.91817894 0.438139 -0.0694318 9.35415 -0.056459 -0.015979 0.0340885 0.18 0 pose: 0.0 5.0902 -2.80947 0 0.0015567 0.00011199 -0.678927 0.734204 uwb: 0.50045066 1097.06 483.999 +imu_odom_: 1691062461.116722023 -0.0933739 -0.31364 9.76355 -0.0617853 0.0234358 0.0340885 0.18 0.02 pose: 0.25001244 5.09157 -2.81937 0 0.00194685 0.0011945 -0.678757 0.734359 uwb: 0.0 1097.06 483.999 +imu_odom_: 1691062461.132840662 0.0215478 -0.0143652 10.2208 -0.0468716 -0.04048 0.0426106 0.18 0.02 pose: 0.0 5.09157 -2.81937 0 0.00194685 0.0011945 -0.678757 0.734359 uwb: 0.0 1097.06 483.999 +imu_odom_: 1691062461.156829350 0.225055 -0.114922 9.71088 -0.0500674 -0.0383495 0.0458064 0.23 0 pose: 0.67089352 5.09294 -2.82928 0 0.00431674 0.00179167 -0.678829 0.734281 uwb: 0.50167551 1098.05 483.685 +imu_odom_: 1691062461.173681159 0.64404 -0.222661 9.75877 -0.0479369 -0.0181095 0.0415453 0.23 0 pose: 0.6892782 5.09294 -2.82928 0 0.00491803 0.00186512 -0.678811 0.734294 uwb: 0.0 1098.05 483.685 +imu_odom_: 1691062461.189837419 0.3304 -0.179565 10.3717 -0.0703074 0.0255663 0.0426106 0.23 0 pose: 0.0 5.09294 -2.82928 0 0.00491803 0.00186512 -0.678811 0.734294 uwb: 0.50074521 1097.65 483.345 +imu_odom_: 1691062461.206838836 0.323217 -0.339977 9.68455 -0.0575243 -0.0415453 0.0447411 0.18 -0.02 pose: 0.40973190 5.09432 -2.83919 0 0.00438291 0.00129576 -0.678753 0.734352 uwb: 0.0 1097.65 483.345 +imu_odom_: 1691062461.222671674 0.560243 -0.0837971 10.0245 -0.0287621 0.0340885 0.0340885 0.18 -0.02 pose: 0.0 5.09432 -2.83919 0 0.00438291 0.00129576 -0.678753 0.734352 uwb: 0.0 1097.65 483.345 +imu_odom_: 1691062461.239706337 0.325611 -0.299275 9.5816 -0.0532632 -0.0181095 0.0543285 0.24 0 pose: 0.0 5.09432 -2.83919 0 0.00438291 0.00129576 -0.678753 0.734352 uwb: 0.49869792 1099.03 483.442 +imu_odom_: 1691062461.255669535 0.339977 -0.292093 9.91918 -0.0447411 -0.0340885 0.0255663 0.24 0 pose: 0.49964574 5.09569 -2.84909 0 0.00177354 0.00194713 -0.678711 0.734401 uwb: 0.0 1099.03 483.442 +imu_odom_: 1691062461.280713649 0.0814029 -0.0454898 10.1442 -0.0553937 0 0.0490022 0.24 -0.02 pose: 0.0 5.09569 -2.84909 0 0.00177354 0.00194713 -0.678711 0.734401 uwb: 0.0 1099.03 483.442 +imu_odom_: 1691062461.297664030 0.59855 -0.177171 9.85453 -0.0596548 -0.0149137 0.0447411 0.17 0.02 pose: 0.33016235 5.09569 -2.84909 0 0.000965264 0.00379043 -0.678717 0.73439 uwb: 0.49969824 1099.54 483.252 +imu_odom_: 1691062461.314667488 0.23942 0.107739 10.0317 -0.0436758 -0.0255663 0.0340885 0.17 0.05 pose: 0.0 5.09569 -2.84909 0 0.000965264 0.00379043 -0.678717 0.73439 uwb: 0.0 1099.54 483.252 +imu_odom_: 1691062461.330685514 0.73502 -0.380678 9.63427 -0.072438 -0.036219 0.0585895 0.17 0.05 pose: 0.42016367 5.09707 -2.859 0 0.00238584 0.00214089 -0.678637 0.734467 uwb: 0.0 1099.54 483.252 +imu_odom_: 1691062461.347665933 0.818817 -0.189142 10.0963 -0.0575243 -0.00213053 0.0234358 0.26 0 pose: 0.0 5.09707 -2.859 0 0.00238584 0.00214089 -0.678637 0.734467 uwb: 0.50044190 1102.79 483.386 +imu_odom_: 1691062461.363698540 0.294487 -0.146046 9.45949 -0.0436758 -0.00532632 0.0234358 0.26 0 pose: 0.0 5.09707 -2.859 0 0.00238584 0.00214089 -0.678637 0.734467 uwb: 0.0 1102.79 483.386 +imu_odom_: 1691062461.380786573 0.438139 0.0047884 10.4698 -0.0458064 -0.0415453 0.04048 0.26 0 pose: 0.31958768 5.09844 -2.8689 0 0.000953096 0.000438766 -0.678586 0.73452 uwb: 0.0 1102.79 483.386 +imu_odom_: 1691062461.404648983 0.40462 -0.0861913 9.71567 -0.0191748 0.0138484 0.0245011 0.18 0 pose: 0.43123995 5.09844 -2.8689 0 0.00256151 -0.00166051 -0.67873 0.734381 uwb: 0.49833339 1105.08 483.631 +imu_odom_: 1691062461.430640034 0.775721 -0.550666 9.72525 -0.0639159 -0.0266316 0.0511327 0.18 0 pose: 0.7878798 5.09844 -2.8689 0 0.00320077 -0.00232597 -0.678771 0.734339 uwb: 0.0 1105.08 483.631 +imu_odom_: 1691062461.443636143 0.742203 -0.146046 9.89763 -0.0383495 0.0415453 0.0426106 0.19 0 pose: 0.0 5.09844 -2.8689 0 0.00320077 -0.00232597 -0.678771 0.734339 uwb: 0.49946784 1104.16 483.563 +imu_odom_: 1691062461.460631727 0.378284 -0.100556 9.9527 -0.0468716 0.0223706 0.0543285 0.19 0 pose: 0.47988458 5.09982 -2.87881 0 0.00133895 -0.00407346 -0.678733 0.734373 uwb: 0.0 1104.16 483.563 +imu_odom_: 1691062461.476630505 0.459687 -0.282516 9.68455 -0.0490022 -0.02024 0.0447411 0.19 0 pose: 0.0 5.09982 -2.87881 0 0.00133895 -0.00407346 -0.678733 0.734373 uwb: 0.0 1104.16 483.563 +imu_odom_: 1691062461.493631922 0.557849 -0.155623 9.76116 -0.0500674 0.0415453 0.0479369 0.18 0 pose: 0.30985000 5.10119 -2.88871 0 0.0021779 -0.00352439 -0.678622 0.734476 uwb: 0.50075104 1105.6 483.401 +imu_odom_: 1691062461.509637698 0.464475 -0.102951 9.96946 -0.0649811 -0.00213053 0.0649811 0.18 0 pose: 0.0 5.10119 -2.88871 0 0.0021779 -0.00352439 -0.678622 0.734476 uwb: 0.0 1105.6 483.401 +imu_odom_: 1691062461.526717857 0.416591 -0.248997 9.79468 -0.0585895 0.00639159 0.0458064 0.24 0 pose: 0.41998869 5.10257 -2.89862 0 0.00142961 -0.00533787 -0.678395 0.734676 uwb: 0.0 1105.6 483.401 +imu_odom_: 1691062461.542763588 0.263362 -0.011971 9.8258 -0.0436758 -0.00639159 0.0468716 0.24 0 pose: 0.8017908 5.10257 -2.89862 0 0.00107228 -0.00458931 -0.678379 0.734697 uwb: 0.50023775 1105.69 482.964 +imu_odom_: 1691062461.568650525 0.481235 -0.339977 10.0844 -0.0713727 -0.0138484 0.0490022 0.23 0.02 pose: 0.0 5.10257 -2.89862 0 0.00107228 -0.00458931 -0.678379 0.734697 uwb: 0.0 1105.69 482.964 +imu_odom_: 1691062461.593729343 0.356736 -0.0383072 9.95748 -0.0479369 -0.0181095 0.0458064 0.18 0.02 pose: 0.25107982 5.10257 -2.89862 0 0.00230926 -0.00355936 -0.67832 0.734754 uwb: 0.50029317 1112.11 483.669 +imu_odom_: 1691062461.619633487 0.426168 -0.162806 9.50737 -0.0681769 -0.0266316 0.0500674 0.23 0 pose: 0.50965755 5.10396 -2.90852 0 0.00216295 -0.00310051 -0.678175 0.734891 uwb: 0.0 1112.11 483.669 +imu_odom_: 1691062461.642642574 0.433351 -0.162806 9.48822 -0.0745685 0.015979 0.0447411 0.23 0 pose: 0.0 5.10396 -2.90852 0 0.00216295 -0.00310051 -0.678175 0.734891 uwb: 0.50219463 1108.97 482.902 +imu_odom_: 1691062461.660812863 0.636858 -0.203507 10.3837 -0.0649811 -0.0660464 0.0511327 0.18 0.02 pose: 0.33035191 5.10535 -2.91842 0 3.847e-05 -0.00255865 -0.678062 0.735 uwb: 0.0 1108.97 482.902 +imu_odom_: 1691062461.676757105 0.632069 -0.347159 9.7444 -0.052198 0.0596548 0.0234358 0.18 0.02 pose: 0.0 5.10535 -2.91842 0 3.847e-05 -0.00255865 -0.678062 0.735 uwb: 0.0 1108.97 482.902 +imu_odom_: 1691062461.693635452 0.160412 -0.248997 9.8689 -0.0639159 -0.0383495 0.0468716 0.25 0.02 pose: 0.49992571 5.09684 -2.92972 0 -0.00171031 -0.00394233 -0.678039 0.735013 uwb: 0.49972448 1108.13 482.436 +imu_odom_: 1691062461.709758174 0.543484 -0.280122 10.0317 -0.0713727 -0.036219 0.0511327 0.25 0.02 pose: 0.8064569 5.09684 -2.92972 0 -0.00140347 -0.00333342 -0.67802 0.735034 uwb: 0.0 1108.13 482.436 +imu_odom_: 1691062461.726753467 0.596156 -0.265756 9.81623 -0.0511327 -0.0298274 0.0415453 0.25 0.02 pose: 0.0 5.09684 -2.92972 0 -0.00140347 -0.00333342 -0.67802 0.735034 uwb: 0.0 1108.13 482.436 +imu_odom_: 1691062461.742756327 0.395043 -0.416591 10.1227 -0.0660464 -0.0287621 0.0543285 0.18 0 pose: 0.41931793 5.09823 -2.93962 0 -0.0046087 -0.00375059 -0.677905 0.735126 uwb: 0.49646109 1111.32 482.969 +imu_odom_: 1691062461.759641090 0.452504 -0.184354 9.60075 -0.0426106 -0.00213053 0.0340885 0.23 0 pose: 0.0 5.09823 -2.93962 0 -0.0046087 -0.00375059 -0.677905 0.735126 uwb: 0.0 1111.32 482.969 +imu_odom_: 1691062461.784762779 0.497994 -0.265756 9.93115 -0.0692422 0.015979 0.04048 0.23 0 pose: 0.24023101 5.09823 -2.93962 0 -0.00433218 -0.00242893 -0.677833 0.735199 uwb: 0.0 1111.32 482.969 +imu_odom_: 1691062461.801757197 -0.0143652 -0.251391 9.62708 -0.0394148 0.0138484 0.0351537 0.23 0 pose: 0.0 5.09823 -2.93962 0 -0.00433218 -0.00242893 -0.677833 0.735199 uwb: 0.50021735 1107.32 481.812 +imu_odom_: 1691062461.826805393 0.141258 -0.356736 9.70609 -0.0628506 0.036219 0.0511327 0.23 0 pose: 0.41124257 5.09963 -2.94952 0 -0.00505422 -0.000745122-0.677848 0.735185 uwb: 0.0 1107.32 481.812 +imu_odom_: 1691062461.851671901 0.172383 -0.107739 9.8665 -0.0319579 -0.00532632 0.0287621 0.21 0 pose: 0.34904568 5.10057 -2.95614 0 -0.0027777 0.00260819 -0.677754 0.735279 uwb: 0.50147429 1109.61 482.077 +imu_odom_: 1691062461.866597464 0.536301 0.0861913 10.3022 -0.0575243 -0.00532632 0.0490022 0.21 0 pose: 0.7947332 5.10103 -2.95942 0 -0.001927 0.00266779 -0.677785 0.735253 uwb: 0.0 1109.61 482.077 +imu_odom_: 1691062461.890872829 0.548272 -0.328006 9.84975 -0.0436758 -0.00958738 0.04048 0.18 0 pose: 0.0 5.10103 -2.95942 0 -0.001927 0.00266779 -0.677785 0.735253 uwb: 0.49836254 1112.38 482.429 +imu_odom_: 1691062461.915586520 0.634463 0.0766145 9.89284 -0.0340885 -0.0117179 0.0383495 0.18 0 pose: 0.40035877 5.10243 -2.96932 0 -0.0003767970.00111439 -0.677797 0.735248 uwb: 0.0 1112.38 482.429 +imu_odom_: 1691062461.938714012 0.23942 -0.189142 9.62708 -0.0575243 0.0319579 0.0415453 0.18 0.02 pose: 0.0 5.10243 -2.96932 0 -0.0003767970.00111439 -0.677797 0.735248 uwb: 0.50006861 1114.27 482.435 +imu_odom_: 1691062461.962702992 0.311246 -0.174777 10.2999 -0.0745685 0.00532632 0.0532632 0.18 0.02 pose: 0.47937131 5.10243 -2.96932 0 -0.000547706-0.00149997 -0.677802 0.735243 uwb: 0.0 1114.27 482.435 +imu_odom_: 1691062461.987740981 0.3304 -0.023942 10.252 -0.0479369 0.0127832 0.0308927 0.2 0 pose: 0.39977259 5.10383 -2.97923 0 0.00278147 0.00127917 -0.677669 0.735361 uwb: 0.49982947 1115.26 482.269 +imu_odom_: 1691062462.1587204 0.42138 -0.397437 9.74201 -0.0436758 0.0234358 0.0468716 0.2 0 pose: 0.0 5.10383 -2.97923 0 0.00278147 0.00127917 -0.677669 0.735361 uwb: 0.0 1115.26 482.269 +imu_odom_: 1691062462.25614106 0.758962 -0.318429 9.37569 -0.0479369 0.0298274 0.0383495 0.17 -0.02 pose: 0.0 5.10383 -2.97923 0 0.00278147 0.00127917 -0.677669 0.735361 uwb: 0.0 1115.26 482.269 +imu_odom_: 1691062462.50617401 0.725443 -0.136469 9.62469 -0.0490022 0.00532632 0.0585895 0.17 -0.02 pose: 0.38884212 5.10523 -2.98913 0 0.00392052 0.000523435 -0.677706 0.735322 uwb: 0.50375502 1115.31 482.039 +imu_odom_: 1691062462.64629862 0.457293 -0.500388 9.67497 -0.0713727 0.0276969 0.056459 0.19 -0.02 pose: 0.0 5.10523 -2.98913 0 0.00392052 0.000523435 -0.677706 0.735322 uwb: 0.0 1115.31 482.039 +imu_odom_: 1691062462.88634308 0.462081 -0.37589 10.0126 -0.056459 -0.0276969 0.0500674 0.19 -0.02 pose: 0.55999390 5.10664 -2.99903 0 0.000294648 -0.00180333 -0.677496 0.735524 uwb: 0.49690166 1113.05 481.494 +imu_odom_: 1691062462.106585878 0.395043 -0.320823 9.76595 -0.0585895 -0.0117179 0.0628506 0.23 -0.02 pose: 0.0 5.10664 -2.99903 0 0.000294648 -0.00180333 -0.677496 0.735524 uwb: 0.0 1113.05 481.494 +imu_odom_: 1691062462.130564661 0.469264 0.0215478 9.8665 -0.0490022 0.0191748 0.0415453 0.23 -0.02 pose: 0.39012256 5.10805 -3.00893 0 -0.00275936 0.000517392 -0.677286 0.735715 uwb: 0.0 1113.05 481.494 +imu_odom_: 1691062462.155631532 0.349553 -0.363919 9.32781 -0.0862864 0.00852212 0.0660464 0.23 0 pose: 0.33965811 5.10899 -3.01552 0 -0.00133826 -0.000259788-0.677186 0.73581 uwb: 0.50074833 1111.79 480.763 +imu_odom_: 1691062462.178564513 0.25618 -0.253785 9.70849 -0.0585895 0.00213053 0.0351537 0.23 0 pose: 0.8013536 5.10946 -3.01883 0 -0.00165086 0.000622491 -0.677107 0.735882 uwb: 0.0 1111.79 480.763 +imu_odom_: 1691062462.203563434 -0.19393 -0.150835 10.0437 -0.0543285 0.052198 0.0415453 0.19 0 pose: 0.39986316 5.11037 -3.02515 0 -0.0004610510.00395982 -0.676967 0.736003 uwb: 0.0 1111.79 480.763 +imu_odom_: 1691062462.229576077 0.488417 -0.201113 10.1634 -0.0543285 0.0372843 0.0415453 0.22 0 pose: 0.0 5.11037 -3.02515 0 -0.0004610510.00395982 -0.676967 0.736003 uwb: 0.0 1111.79 480.763 +imu_odom_: 1691062462.243623242 0.136469 -0.385466 9.46667 -0.0639159 0.0479369 0.04048 0.22 0 pose: 0.33086533 5.11088 -3.02873 0 0.00185857 0.005281 -0.676934 0.736023 uwb: 0.99817786 1112.71 480.868 +imu_odom_: 1691062462.267613399 0.0646434 -0.191536 10.0461 -0.0436758 -0.00532632 0.0436758 0.22 0 pose: 0.0 5.11088 -3.02873 0 0.00185857 0.005281 -0.676934 0.736023 uwb: 0.0 1112.71 480.868 +imu_odom_: 1691062462.284540456 0.821211 -0.155623 9.72764 -0.0479369 0.0394148 0.036219 0.18 0 pose: 0.0 5.11088 -3.02873 0 0.00185857 0.005281 -0.676934 0.736023 uwb: 0.0 1112.71 480.868 +imu_odom_: 1691062462.308551027 0.694318 -0.0646434 9.34217 -0.0213053 0.0127832 0.0266316 0.18 0 pose: 0.39109662 5.11231 -3.03862 0 0.00237599 0.00595552 -0.676903 0.736045 uwb: 0.50003674 1116 481.04 +imu_odom_: 1691062462.334544713 0.565032 -0.222661 9.89045 -0.0500674 -0.00106526 0.0500674 0.23 0 pose: 0.57790319 5.11373 -3.04852 0 0.0029088 0.00314501 -0.677017 0.735955 uwb: 0.0 1116 481.04 +imu_odom_: 1691062462.347602946 0.0790087 -0.311246 9.73722 -0.0394148 0.0351537 0.0319579 0.23 0 pose: 0.0 5.11373 -3.04852 0 0.0029088 0.00314501 -0.677017 0.735955 uwb: 0.50014173 1117.42 481.094 +imu_odom_: 1691062462.362540471 0.184354 -0.126893 10.0963 -0.04048 0.0617853 0.036219 0.17 0 pose: 0.0 5.11373 -3.04852 0 0.0029088 0.00314501 -0.677017 0.735955 uwb: 0.0 1117.42 481.094 +imu_odom_: 1691062462.379521481 0.672771 -0.129287 9.81623 -0.056459 -0.02024 0.0490022 0.25 0 pose: 0.39051919 5.1144 -3.05316 0 0.00195225 0.00258582 -0.676957 0.736015 uwb: 0.0 1117.42 481.094 +imu_odom_: 1691062462.404688092 0.859518 -0.141258 10.1035 -0.0543285 -0.0383495 0.0532632 0.18 0.02 pose: 0.0 5.1144 -3.05316 0 0.00195225 0.00258582 -0.676957 0.736015 uwb: 0.50122369 1119.38 480.889 +imu_odom_: 1691062462.431540351 0.37589 -0.306458 10.1921 -0.052198 0.00745685 0.0245011 0.23 0 pose: 0.31918535 5.11515 -3.05842 0 0.0028275 0.00174003 -0.676913 0.736056 uwb: 0.0 1119.38 480.889 +imu_odom_: 1691062462.455581543 0.373495 -0.390255 9.88087 -0.0543285 -0.0319579 0.0351537 0.23 0 pose: 0.33144276 5.11658 -3.06832 0 0.00061301 5.84613e-05 -0.676832 0.736137 uwb: 0.50093498 1120.35 480.823 +imu_odom_: 1691062462.481528568 0.624887 -0.25618 9.62948 -0.0245011 -0.00639159 0.0276969 0.21 0 pose: 0.42915786 5.11753 -3.0749 0 -0.00227022 0.00314206 -0.676973 0.735998 uwb: 0.0 1120.35 480.823 +imu_odom_: 1691062462.497646339 0.639252 -0.162806 10.4818 -0.0426106 -0.015979 0.0436758 0.21 0 pose: 0.8012662 5.118 -3.07822 0 -0.00264715 0.00239728 -0.677011 0.735964 uwb: 0.49694250 1123.13 481.164 +imu_odom_: 1691062462.514692967 0.31364 0.00718261 9.78989 -0.0426106 -0.00532632 0.052198 0.21 0 pose: 0.0 5.118 -3.07822 0 -0.00264715 0.00239728 -0.677011 0.735964 uwb: 0.0 1123.13 481.164 +imu_odom_: 1691062462.530658796 0.0550666 -0.265756 9.66779 -0.04048 -0.0127832 0.052198 0.18 0 pose: 0.42053130 5.10953 -3.08954 0 -0.00301049 -0.0011938 -0.677038 0.73594 uwb: 0.0 1123.13 481.164 +imu_odom_: 1691062462.555532314 0.289698 -0.320823 9.61511 -0.0500674 -0.0479369 0.0458064 0.18 0 pose: 0.0 5.10953 -3.08954 0 -0.00301049 -0.0011938 -0.677038 0.73594 uwb: 0.0 1123.13 481.164 +imu_odom_: 1691062462.580526860 0.816423 -0.131681 10.0413 -0.0415453 -0.0351537 0.0596548 0.25 -0.02 pose: 0.32893179 5.10953 -3.08954 0 -0.00109697 0.000361588 -0.676907 0.736068 uwb: 0.0 1123.13 481.164 +imu_odom_: 1691062462.597514578 0.4956 -0.332794 10.0509 -0.0894822 0.0117179 0.0628506 0.25 -0.02 pose: 0.0 5.10953 -3.08954 0 -0.00109697 0.000361588 -0.676907 0.736068 uwb: 0.100037969 1121.43 480.279 +imu_odom_: 1691062462.610675757 0.136469 -0.153229 9.72046 -0.0628506 0.00958738 0.0372843 0.18 0.02 pose: 0.0 5.10953 -3.08954 0 -0.00109697 0.000361588 -0.676907 0.736068 uwb: 0.0 1121.43 480.279 +imu_odom_: 1691062462.627613313 0.988805 -0.21069 10.0173 -0.0585895 -0.0543285 0.0639159 0.18 0.02 pose: 0.49983259 5.11095 -3.09943 0 -0.00318724 -0.00053258 -0.676612 0.736333 uwb: 0.0 1121.43 480.279 +imu_odom_: 1691062462.643513817 0.608127 -0.287304 10.0102 -0.0681769 -0.015979 0.0660464 0.18 0.02 pose: 0.0 5.11095 -3.09943 0 -0.00318724 -0.00053258 -0.676612 0.736333 uwb: 0.50051794 1123.8 480.357 +imu_odom_: 1691062462.660649976 0.679953 -0.124498 9.65821 -0.0490022 0.0117179 0.0298274 0.18 0 pose: 0.46062233 5.11238 -3.10933 0 -0.00486709 -0.00148616 -0.676322 0.736588 uwb: 0.0 1123.8 480.357 +imu_odom_: 1691062462.685667270 0.462081 -0.402226 9.50737 -0.0905475 -0.0138484 0.0703074 0.18 0 pose: 0.0 5.11238 -3.10933 0 -0.00486709 -0.00148616 -0.676322 0.736588 uwb: 0.0 1123.8 480.357 +imu_odom_: 1691062462.711710242 0.37589 -0.45011 9.70609 -0.0628506 0.00958738 0.0415453 0.22 0.02 pose: 0.51081264 5.11382 -3.11923 0 -0.00710655 -0.00119449 -0.676003 0.736864 uwb: 0.49950013 1123.91 479.923 +imu_odom_: 1691062462.734619309 0.584185 -0.301669 9.8665 -0.0830906 0 0.052198 0.17 0 pose: 0.0 5.11382 -3.11923 0 -0.00710655 -0.00119449 -0.676003 0.736864 uwb: 0.0 1123.91 479.923 +imu_odom_: 1691062462.758577094 0.423774 -0.445322 9.43555 -0.0500674 0.0639159 0.0223706 0.17 0 pose: 0.32982710 5.11527 -3.12912 0 -0.00762668 0.0010342 -0.675941 0.736916 uwb: 0.49987051 1126.79 479.918 +imu_odom_: 1691062462.784549491 0.627281 -0.37589 9.78031 -0.0809601 -0.0245011 0.0447411 0.18 -0.02 pose: 0.0 5.11527 -3.12912 0 -0.00762668 0.0010342 -0.675941 0.736916 uwb: 0.0 1126.79 479.918 +imu_odom_: 1691062462.808669425 0.476446 -0.392649 9.90242 -0.0511327 -0.0181095 0.0458064 0.18 0.02 pose: 0.65899511 5.11627 -3.13595 0 -0.010525 0.000874092 -0.675963 0.73686 uwb: 0.50114495 1132.89 480.594 +imu_odom_: 1691062462.834493089 0.711078 -0.220267 9.91678 -0.0671117 -0.00106526 0.0458064 0.18 0.02 pose: 0.0 5.11627 -3.13595 0 -0.010525 0.000874092 -0.675963 0.73686 uwb: 0.0 1132.89 480.594 +imu_odom_: 1691062462.847490661 0.816423 -0.409408 9.77553 -0.0447411 0.02024 0.0319579 0.18 0 pose: 0.8033076 5.11672 -3.13902 0 -0.010183 0.00153737 -0.675941 0.736884 uwb: 0.50084457 1132.17 479.611 +imu_odom_: 1691062462.871549351 0.555455 -0.3304 9.99579 -0.0703074 -0.0351537 0.0415453 0.18 0 pose: 0.0 5.11672 -3.13902 0 -0.010183 0.00153737 -0.675941 0.736884 uwb: 0.0 1132.17 479.611 +imu_odom_: 1691062462.897491127 0.663194 -0.105345 10.422 -0.0394148 -0.036219 0.0458064 0.23 0.02 pose: 0.47930735 5.11817 -3.14891 0 -0.0102246 8.6888e-05 -0.675872 0.736948 uwb: 0.49800405 1136.35 480.253 +imu_odom_: 1691062462.912479689 0.548272 -0.234632 9.38766 -0.0745685 -0.00426106 0.0553937 0.23 0.02 pose: 0.0 5.11817 -3.14891 0 -0.0102246 8.6888e-05 -0.675872 0.736948 uwb: 0.0 1136.35 480.253 +imu_odom_: 1691062462.929477030 0.31364 -0.270545 9.96227 -0.0479369 0.00532632 0.0415453 0.23 0.02 pose: 0.0 5.11817 -3.14891 0 -0.0102246 8.6888e-05 -0.675872 0.736948 uwb: 0.0 1136.35 480.253 +imu_odom_: 1691062462.944543459 0.416591 0.011971 10.1514 -0.0553937 -0.0298274 0.0490022 0.18 0 pose: 0.39046670 5.11962 -3.1588 0 -0.00924756 -0.00318349 -0.675881 0.736946 uwb: 0.49989967 1134.58 479.598 +imu_odom_: 1691062462.960543701 0.0215478 -0.292093 9.81383 -0.076699 0.0319579 0.0607201 0.18 0 pose: 0.0 5.11962 -3.1588 0 -0.00924756 -0.00318349 -0.675881 0.736946 uwb: 0.0 1134.58 479.598 +imu_odom_: 1691062462.975534013 0.47884 -0.198719 10.4698 -0.0383495 -0.00958738 0.0276969 0.18 0 pose: 0.0 5.11962 -3.1588 0 -0.00924756 -0.00318349 -0.675881 0.736946 uwb: 0.0 1134.58 479.598 +imu_odom_: 1691062462.992489067 0.548272 -0.0837971 9.83777 -0.0276969 -0.0149137 0.0383495 0.18 0 pose: 0.86974779 5.12108 -3.1687 0 -0.00313672 -0.00283251 -0.675636 0.737224 uwb: 0.49963429 1133.74 479.091 +imu_odom_: 1691062463.8469772 0.40462 -0.265756 10.2855 -0.0681769 -0.0255663 0.0596548 0.18 0 pose: 0.0 5.12108 -3.1687 0 -0.00313672 -0.00283251 -0.675636 0.737224 uwb: 0.0 1133.74 479.091 +imu_odom_: 1691062463.25542070 0.823605 -0.0622492 9.83538 -0.0458064 0.00852212 0.0394148 0.23 0 pose: 0.41935021 5.12254 -3.17859 0 -0.00188084 -0.00349639 -0.675569 0.737286 uwb: 0.0 1133.74 479.091 +imu_odom_: 1691062463.41467661 0.490811 -0.0383072 10.4315 -0.0777643 0.00426106 0.056459 0.23 0 pose: 0.0 5.12254 -3.17859 0 -0.00188084 -0.00349639 -0.675569 0.737286 uwb: 0.50010978 1132.87 478.722 +imu_odom_: 1691062463.57462952 0.114922 -0.502782 9.56244 -0.0713727 -0.00426106 0.0372843 0.23 0 pose: 0.0 5.12254 -3.17859 0 -0.00188084 -0.00349639 -0.675569 0.737286 uwb: 0.0 1132.87 478.722 +imu_odom_: 1691062463.82461592 0.380678 -0.447716 9.55526 -0.0490022 0.0340885 0.0415453 0.18 0.02 pose: 0.8069242 5.12254 -3.17859 0 -0.00211204 -0.0042361 -0.675567 0.737283 uwb: 0.0 1132.87 478.722 +imu_odom_: 1691062463.99460398 0.715866 -0.500388 10.2568 -0.0500674 -0.0532632 0.0436758 0.21 0.02 pose: 0.0 5.12254 -3.17859 0 -0.00211204 -0.0042361 -0.675567 0.737283 uwb: 0.49990863 1132.51 478.219 +imu_odom_: 1691062463.115454815 1.13246 -0.311246 9.97664 -0.0394148 0 0.0266316 0.21 0.02 pose: 0.74010776 5.12546 -3.19838 0 -0.00293228 -0.00175102 -0.675455 0.737394 uwb: 0.0 1132.51 478.219 +imu_odom_: 1691062463.132460329 1.19231 -0.294487 10.0892 -0.0607201 -0.04048 0.0415453 0.21 0.02 pose: 0.0 5.12546 -3.19838 0 -0.00293228 -0.00175102 -0.675455 0.737394 uwb: 0.0 1132.51 478.219 +imu_odom_: 1691062463.148515114 1.92494 -0.565032 9.75877 -0.0479369 -0.0511327 -0.0809601 0.21 -0.23 pose: 0.0 5.12546 -3.19838 0 -0.00293228 -0.00175102 -0.675455 0.737394 uwb: 0.50040150 1133.97 478.204 +imu_odom_: 1691062463.165456468 1.66876 0.311246 9.95988 -0.056459 0.0553937 -0.218379 0.21 -0.23 pose: 0.31971627 5.12546 -3.19838 0 -0.00564445 -0.00363882 -0.675502 0.737328 uwb: 0.0 1133.97 478.204 +imu_odom_: 1691062463.181448843 1.18513 0.287304 10.1107 -0.0777643 0.00745685 -0.256729 0.12 -0.35 pose: 0.42935051 5.12685 -3.20823 0 -0.00812139 -0.00695196 -0.677801 0.735168 uwb: 0.0 1133.97 478.204 +imu_odom_: 1691062463.198449691 0.921768 0.00718261 9.78989 -0.0660464 -0.00319579 -0.367516 0.12 -0.35 pose: 0.0 5.12685 -3.20823 0 -0.00812139 -0.00695196 -0.677801 0.735168 uwb: 0.49962574 1136.37 478.339 +imu_odom_: 1691062463.214508267 0.948104 -0.155623 10.2161 -0.0436758 -0.036219 -0.438889 0.12 -0.35 pose: 0.0 5.12685 -3.20823 0 -0.00812139 -0.00695196 -0.677801 0.735168 uwb: 0.0 1136.37 478.339 +imu_odom_: 1691062463.231505324 1.09654 0.0646434 9.96467 -0.0745685 -0.0394148 -0.447411 0.13 -0.58 pose: 0.8061077 5.12692 -3.20827 0 -0.00814601 -0.00767201 -0.67868 0.734349 uwb: 0.0 1136.37 478.339 +imu_odom_: 1691062463.247448121 1.13964 -0.344765 10.0509 -0.0713727 -0.0181095 -0.416518 0.09 -0.5 pose: 0.0 5.12692 -3.20827 0 -0.00814601 -0.00767201 -0.67868 0.734349 uwb: 0.49986488 1142.43 479.352 +imu_odom_: 1691062463.264453635 1.04627 -0.399832 9.92397 -0.0628506 0.00213053 -0.451672 0.09 -0.5 pose: 0.65966323 5.12692 -3.20827 0 -0.0106968 -0.0137984 -0.689171 0.724389 uwb: 0.0 1142.43 479.352 +imu_odom_: 1691062463.280432887 0.864307 -0.0646434 10.0844 -0.0500674 -0.0245011 -0.468716 0.07 -0.53 pose: 0.0 5.12692 -3.20827 0 -0.0106968 -0.0137984 -0.689171 0.724389 uwb: 0.0 1142.43 479.352 +imu_odom_: 1691062463.297437526 0.739808 -0.143652 9.82102 -0.076699 0.0298274 -0.468716 0.07 -0.53 pose: 0.0 5.12692 -3.20827 0 -0.0106968 -0.0137984 -0.689171 0.724389 uwb: 0.49989114 1141.72 478.356 +imu_odom_: 1691062463.313465189 0.739808 -0.0909797 10.0868 -0.0660464 0.0223706 -0.504935 0.07 -0.53 pose: 0.32962601 5.1285 -3.21814 0 -0.0128722 -0.0152395 -0.69492 0.71881 uwb: 0.0 1141.72 478.356 +imu_odom_: 1691062463.330528155 0.778116 -0.138864 9.90721 -0.0649811 -0.00532632 -0.535828 0.09 -0.73 pose: 0.41018720 5.12844 -3.21811 0 -0.00920415 -0.0155871 -0.702653 0.711302 uwb: 0.0 1141.72 478.356 +imu_odom_: 1691062463.346490200 0.871489 -0.071826 9.98861 -0.056459 -0.0149137 -0.54435 0.09 -0.73 pose: 0.8007998 5.1285 -3.21814 0 -0.00991499 -0.0159418 -0.704276 0.709678 uwb: 0.50061438 1139.4 477.901 +imu_odom_: 1691062463.363512920 0.517148 -0.143652 9.77074 -0.0532632 -0.0234358 -0.547546 0.09 -0.73 pose: 0.0 5.1285 -3.21814 0 -0.00991499 -0.0159418 -0.704276 0.709678 uwb: 0.0 1139.4 477.901 +imu_odom_: 1691062463.379610284 0.782904 -0.153229 9.92397 -0.0660464 -0.0223706 -0.50387 0.05 -0.53 pose: 0.42039733 5.12327 -3.21895 0 -0.00988984 -0.0168959 -0.712922 0.70097 uwb: 0.0 1139.4 477.901 +imu_odom_: 1691062463.396590717 0.775721 -0.483629 9.85932 -0.0681769 -0.00426106 -0.453803 0.07 -0.64 pose: 0.0 5.12327 -3.21895 0 -0.00988984 -0.0168959 -0.712922 0.70097 uwb: 0.49951492 1138.58 477.317 +imu_odom_: 1691062463.412591550 0.490811 -0.270545 10.1418 -0.0681769 -0.0287621 -0.40267 0.07 -0.64 pose: 0.0 5.12327 -3.21895 0 -0.00988984 -0.0168959 -0.712922 0.70097 uwb: 0.0 1138.58 477.317 +imu_odom_: 1691062463.429449205 0.73502 -0.265756 10.0149 -0.0607201 -0.0340885 -0.356864 0.06 -0.53 pose: 0.23059852 5.11863 -3.21971 0 -0.0118201 -0.0155929 -0.71715 0.696644 uwb: 0.0 1138.58 477.317 +imu_odom_: 1691062463.445481826 0.653617 -0.126893 9.67018 -0.0681769 -0.00639159 -0.313188 0.06 -0.53 pose: 0.0 5.11863 -3.21971 0 -0.0118201 -0.0155929 -0.71715 0.696644 uwb: 0.50100226 1135.88 476.439 +imu_odom_: 1691062463.462533127 0.519542 -0.349553 9.88805 -0.0553937 -0.0213053 -0.28123 0.06 -0.53 pose: 0.34133515 5.12022 -3.22958 0 -0.01237 -0.0129108 -0.722435 0.691208 uwb: 0.0 1135.88 476.439 +imu_odom_: 1691062463.478420221 0.536301 -0.311246 9.8689 -0.0596548 -0.00745685 -0.26312 0.06 -0.47 pose: 0.32721711 5.12022 -3.22958 0 -0.011205 -0.0115121 -0.726479 0.687001 uwb: 0.0 1135.88 476.439 +imu_odom_: 1691062463.495416112 0.502782 -0.251391 9.84256 -0.0543285 -0.0138484 -0.231162 0.06 -0.47 pose: 0.0 5.12022 -3.22958 0 -0.011205 -0.0115121 -0.726479 0.687001 uwb: 0.49857295 1138.71 476.795 +imu_odom_: 1691062463.511473521 0.610521 -0.373495 9.73243 -0.0649811 -0.00745685 -0.197074 0.06 -0.47 pose: 0.0 5.12022 -3.22958 0 -0.011205 -0.0115121 -0.726479 0.687001 uwb: 0.0 1138.71 476.795 +imu_odom_: 1691062463.528559235 0.679953 -0.229843 10.058 -0.0490022 -0.00426106 -0.199204 0.03 -0.29 pose: 0.50050648 5.12022 -3.22958 0 -0.0100789 -0.00722931 -0.731367 0.681872 uwb: 0.0 1138.71 476.795 +imu_odom_: 1691062463.554550599 0.47884 -0.222661 9.83777 -0.0553937 0.00852212 -0.173638 0.03 -0.29 pose: 0.0 5.12022 -3.22958 0 -0.0100789 -0.00722931 -0.731367 0.681872 uwb: 0.49882083 1138.33 476.401 +imu_odom_: 1691062463.571552905 0.586579 -0.416591 9.96227 -0.0596548 -0.0106526 -0.164051 0.04 -0.23 pose: 0.34099394 5.12022 -3.22958 0 -0.00984871 -0.0077025 -0.734056 0.678973 uwb: 0.0 1138.33 476.401 +imu_odom_: 1691062463.589423116 0.500388 -0.232238 9.80186 -0.0639159 -0.0127832 -0.211988 0.03 -0.29 pose: 0.0 5.12022 -3.22958 0 -0.00984871 -0.0077025 -0.734056 0.678973 uwb: 0.50118016 1141.55 477.166 +imu_odom_: 1691062463.612566375 0.351948 0.105345 10.0197 -0.0479369 0.00426106 -0.313188 0.03 -0.29 pose: 0.42876433 5.12022 -3.22958 0 -0.00868976 -0.00483272 -0.737222 0.675577 uwb: 0.0 1141.55 477.166 +imu_odom_: 1691062463.637413365 0.287304 -0.155623 9.75877 -0.0628506 -0.0117179 -0.337689 0.03 -0.35 pose: 0.0 5.12022 -3.22958 0 -0.00868976 -0.00483272 -0.737222 0.675577 uwb: 0.50015943 1140.68 476.738 +imu_odom_: 1691062463.653401365 0.572214 -0.517148 9.92397 -0.0575243 -0.0223706 -0.356864 0.03 -0.35 pose: 0.40227806 5.12022 -3.22958 0 -0.00487786 -0.00470014 -0.741791 0.670597 uwb: 0.0 1140.68 476.738 +imu_odom_: 1691062463.669463733 0.409408 -0.227449 9.79947 -0.056459 0 -0.367516 0.03 -0.41 pose: 0.32719086 5.12106 -3.23506 0 -0.00489701 -0.00303933 -0.746019 0.6659 uwb: 0.0 1140.68 476.738 +imu_odom_: 1691062463.685450567 0.526724 -0.1652 9.9503 -0.052198 0.00426106 -0.378169 0.03 -0.41 pose: 0.7084100 5.12181 -3.23945 0 -0.00432699 -0.00259491 -0.746981 0.664826 uwb: 0.0 1140.68 476.738 +imu_odom_: 1691062463.701387823 0.608127 -0.155623 10.0485 -0.0585895 -0.0223706 -0.409062 0.03 -0.41 pose: 0.0 5.12181 -3.23945 0 -0.00432699 -0.00259491 -0.746981 0.664826 uwb: 0.49995238 1141.2 476.634 +imu_odom_: 1691062463.718510574 0.519542 -0.059855 9.98622 -0.0639159 -0.0255663 -0.433563 0.03 -0.61 pose: 0.40902358 5.12175 -3.23942 0 -0.00407762 -0.00514151 -0.752763 0.658259 uwb: 0.0 1141.2 476.634 +imu_odom_: 1691062463.744564056 0.610521 -0.328006 9.87129 -0.0575243 -0.00852212 -0.472977 0.03 -0.61 pose: 0.0 5.12175 -3.23942 0 -0.00407762 -0.00514151 -0.752763 0.658259 uwb: 0.49855836 1142.14 476.814 +imu_odom_: 1691062463.771400870 0.447716 -0.215478 9.93354 -0.0628506 -0.0117179 -0.488956 0.03 -0.64 pose: 0.43176233 5.12175 -3.23942 0 -0.00541818 -0.00540998 -0.759771 0.650146 uwb: 0.0 1142.14 476.814 +imu_odom_: 1691062463.796455795 0.529119 -0.241814 9.87129 -0.0553937 -0.015979 -0.509196 0.03 -0.58 pose: 0.0 5.12175 -3.23942 0 -0.00541818 -0.00540998 -0.759771 0.650146 uwb: 0.50130847 1140.2 476.73 +imu_odom_: 1691062463.812381677 0.497994 -0.138864 9.88805 -0.0553937 -0.00958738 -0.516653 0.02 -0.64 pose: 0.34913930 5.12181 -3.23945 0 -0.00452472 -0.00336611 -0.765798 0.643057 uwb: 0.0 1140.2 476.73 +imu_odom_: 1691062463.828551657 0.550666 -0.351948 9.80186 -0.0628506 -0.00106526 -0.52411 0.02 -0.64 pose: 0.0 5.12181 -3.23945 0 -0.00452472 -0.00336611 -0.765798 0.643057 uwb: 0.0 1140.2 476.73 +imu_odom_: 1691062463.845383066 0.323217 -0.136469 10.0556 -0.052198 0.00745685 -0.56246 0.02 -0.64 pose: 0.23930089 5.12181 -3.23945 0 -0.00566796 -0.00353471 -0.770014 0.637993 uwb: 0.49952076 1142 477.314 +imu_odom_: 1691062463.861378065 0.641646 -0.19393 9.92157 -0.0575243 -0.00745685 -0.574178 0.02 -0.73 pose: 0.32146316 5.12181 -3.23945 0 -0.00540815 -0.00278472 -0.775827 0.630917 uwb: 0.0 1142 477.314 +imu_odom_: 1691062463.888400067 0.679953 -0.275333 9.94791 -0.0585895 -0.00426106 -0.608266 0.02 -0.73 pose: 0.0 5.12181 -3.23945 0 -0.00540815 -0.00278472 -0.775827 0.630917 uwb: 0.50031692 1142.02 477.246 +imu_odom_: 1691062463.914520042 0.373495 -0.174777 9.95509 -0.0532632 -0.00532632 -0.64342 0.02 -0.82 pose: 0.33004014 5.12181 -3.23945 0 -0.00604141 -0.00411414 -0.782213 0.622968 uwb: 0.0 1142.02 477.246 +imu_odom_: 1691062463.931392862 0.617704 -0.181959 9.92397 -0.0585895 -0.0245011 -0.639159 0.02 -0.82 pose: 0.0 5.12181 -3.23945 0 -0.00604141 -0.00411414 -0.782213 0.622968 uwb: 0.0 1142.02 477.246 +imu_odom_: 1691062463.957486590 0.514753 -0.272939 9.92397 -0.0575243 0.00106526 -0.637028 0.02 -0.91 pose: 0.52972536 5.12181 -3.23945 0 -0.00582454 -0.00455351 -0.793133 0.609004 uwb: 0.49978614 1143.81 477.857 +imu_odom_: 1691062463.983357801 0.323217 -0.0981623 9.89524 -0.0468716 -0.0149137 -0.696683 0.02 -0.94 pose: 0.35955649 5.12159 -3.23934 0 -0.00625711 -0.00286867 -0.800483 0.599316 uwb: 0.0 1143.81 477.857 +imu_odom_: 1691062464.9360833 0.42138 -0.172383 9.85693 -0.0671117 -0.0149137 -0.70414 0.02 -0.94 pose: 0.0 5.12159 -3.23934 0 -0.00625711 -0.00286867 -0.800483 0.599316 uwb: 0.50008069 1142.91 477.562 +imu_odom_: 1691062464.34351900 0.617704 -0.3304 9.65342 -0.0575243 -0.0298274 -0.736098 0.01 -0.94 pose: 0.8004791 5.12181 -3.23945 0 -0.00546255 -0.0029063 -0.80225 0.596956 uwb: 0.0 1142.91 477.562 +imu_odom_: 1691062464.48495025 0.452504 -0.0957681 10.0317 -0.0500674 -0.0127832 -0.74462 0.01 -0.94 pose: 0.0 5.12181 -3.23945 0 -0.00546255 -0.0029063 -0.80225 0.596956 uwb: 0.50117738 1144.74 478.064 +imu_odom_: 1691062464.63365195 0.648829 -0.268151 9.74919 -0.0607201 -0.0266316 -0.741424 0.01 -0.94 pose: 0.0 5.12181 -3.23945 0 -0.00206121 -0.00255795 -0.813444 0.581634 uwb: 0.0 1144.74 478.064 +imu_odom_: 1691062464.80427585 0.502782 -0.184354 9.80665 -0.0436758 0.00426106 -0.772317 0.01 -0.76 pose: 0.0 5.12181 -3.23945 0 -0.00206121 -0.00255795 -0.813444 0.581634 uwb: 0.0 1144.74 478.064 +imu_odom_: 1691062464.96348225 0.335188 -0.107739 9.88087 -0.0479369 -0.00106526 -0.761664 0.01 -0.76 pose: 0.0 5.12181 -3.23945 0 -0.00206121 -0.00255795 -0.813444 0.581634 uwb: 0.49877438 1144.7 478.2 +imu_odom_: 1691062464.123362363 0.622492 -0.0814029 10.0509 -0.0607201 -0.0308927 -0.784035 0.01 -1.09 pose: 0.39131567 5.12181 -3.23945 0 -0.00364428 -0.00359145 -0.822215 0.569154 uwb: 0.0 1144.7 478.2 +imu_odom_: 1691062464.149479141 0.696713 -0.378284 10.1107 -0.0649811 -0.0127832 -0.770186 0 -0.79 pose: 0.48933999 5.12181 -3.23945 0 -0.00160576 -0.00491076 -0.833276 0.552833 uwb: 0.49972802 1143.35 477.755 +imu_odom_: 1691062464.165626964 0.608127 -0.0981623 9.76595 -0.056459 -0.0266316 -0.789361 0 -1.09 pose: 0.0 5.12181 -3.23945 0 -0.00160576 -0.00491076 -0.833276 0.552833 uwb: 0.0 1143.35 477.755 +imu_odom_: 1691062464.191394363 0.435745 -0.201113 10.1179 -0.0681769 -0.0170442 -0.792557 0 -1.09 pose: 0.0 5.12181 -3.23945 0 -0.00160576 -0.00491076 -0.833276 0.552833 uwb: 0.50036962 1143.76 478.062 +imu_odom_: 1691062464.216361808 0.411803 -0.318429 9.72046 -0.052198 -0.00213053 -0.820254 0 -0.79 pose: 0.51971668 5.12181 -3.23945 0 -0.00538985 -0.00643565 -0.844802 0.535012 uwb: 0.0 1143.76 478.062 +imu_odom_: 1691062464.231388878 0.672771 -0.282516 10.094 -0.0511327 -0.0245011 -0.837298 0 -0.79 pose: 0.0 5.12181 -3.23945 0 -0.00538985 -0.00643565 -0.844802 0.535012 uwb: 0.0 1143.76 478.062 +imu_odom_: 1691062464.257353714 0.47884 -0.196325 10.1131 -0.0585895 0.00958738 -0.833037 0 -0.79 pose: 0.74979034 5.12155 -3.23932 0 -0.00538343 -0.00324936 -0.861428 0.507841 uwb: 0.49835734 1140.89 477.839 +imu_odom_: 1691062464.271460093 0.64404 -0.550666 9.83299 -0.052198 -0.00426106 -0.853277 0 -0.79 pose: 0.0 5.12155 -3.23932 0 -0.00538343 -0.00324936 -0.861428 0.507841 uwb: 0.0 1140.89 477.839 +imu_odom_: 1691062464.295340032 0.543484 -0.0981623 10.0173 -0.0458064 -0.00532632 -0.858603 0 -0.85 pose: 0.6961033 5.12181 -3.23946 0 -0.00465596 -0.00308966 -0.862971 0.505223 uwb: 0.50192986 1141.25 478.325 +imu_odom_: 1691062464.322601768 0.591368 -0.071826 9.81383 -0.052198 0.0191748 -0.874582 0 -1.06 pose: 0.0 5.12181 -3.23946 0 -0.00465596 -0.00308966 -0.862971 0.505223 uwb: 0.0 1141.25 478.325 +imu_odom_: 1691062464.338332553 0.639252 -0.277727 10.2017 -0.0543285 -0.0170442 -0.859668 0 -0.94 pose: 0.64167838 5.12181 -3.23946 0 0.00360202 0.00510351 0.877063 -0.480335 uwb: 0.49927016 1142.17 478.527 +imu_odom_: 1691062464.354425257 0.0790087 -0.289698 9.51216 -0.0585895 -0.00745685 -0.844755 0 -0.94 pose: 0.0 5.12181 -3.23946 0 0.00360202 0.00510351 0.877063 -0.480335 uwb: 0.0 1142.17 478.527 +imu_odom_: 1691062464.371372743 0.620098 -0.373495 10.1658 -0.0553937 -0.0319579 -0.850081 0 -0.94 pose: 0.28038652 5.12181 -3.23946 0 0.00446913 0.00668786 0.883106 -0.469104 uwb: 0.0 1142.17 478.527 +imu_odom_: 1691062464.395341047 0.605733 -0.0742203 9.89045 -0.0575243 -0.00213053 -0.856473 0 -0.85 pose: 0.31783535 5.12181 -3.23946 0 0.00470549 0.00484419 0.889652 -0.456589 uwb: 0.50067292 1143.98 479.072 +imu_odom_: 1691062464.411378924 0.440533 -0.275333 9.97903 -0.0649811 0.0234358 -0.843689 0 -0.85 pose: 0.0 5.12181 -3.23946 0 0.00470549 0.00484419 0.889652 -0.456589 uwb: 0.0 1143.98 479.072 +imu_odom_: 1691062464.426315004 -0.217872 -0.263362 9.73961 -0.0553937 0.0490022 -0.830906 0 -1.26 pose: 0.39985475 5.12181 -3.23946 0 0.00532647 0.00604502 0.897649 -0.440637 uwb: 0.0 1143.98 479.072 +imu_odom_: 1691062464.442312635 -0.414197 -0.411803 9.88087 -0.0532632 -0.00958738 -0.855407 0 -1.26 pose: 0.0 5.12181 -3.23946 0 0.00532647 0.00604502 0.897649 -0.440637 uwb: 0.49920016 1142.54 478.969 +imu_odom_: 1691062464.458425753 -0.351948 0.148441 9.82341 -0.0479369 -0.00532632 -0.841559 0 -1.26 pose: 0.0 5.12181 -3.23946 0 0.00532647 0.00604502 0.897649 -0.440637 uwb: 0.0 1142.54 478.969 +imu_odom_: 1691062464.475422817 -1.09654 -0.215478 9.64863 -0.0532632 -0.00106526 -0.691357 0.05 -0.76 pose: 0.47985018 5.12331 -3.24934 0 0.00127447 0.00315101 0.906805 -0.421536 uwb: 0.0 1142.54 478.969 +imu_odom_: 1691062464.491295628 -0.603339 -0.955286 9.76116 -0.0798948 -0.092678 -0.573112 0.05 -0.76 pose: 0.0 5.12331 -3.24934 0 0.00127447 0.00315101 0.906805 -0.421536 uwb: 0.49839525 1141.13 478.779 +imu_odom_: 1691062464.508313981 0.19393 -0.696713 9.66539 -0.0660464 -0.0468716 -0.565655 0.09 -0.85 pose: 0.40985199 5.12331 -3.24934 0 -0.00115156 0.00107947 0.912892 -0.408198 uwb: 0.0 1141.13 478.779 +imu_odom_: 1691062464.525293547 0.385466 0.0861913 10.0533 -0.0500674 -0.0255663 -0.543285 0.09 -0.85 pose: 0.0 5.12331 -3.24934 0 -0.00115156 0.00107947 0.912892 -0.408198 uwb: 0.0 1141.13 478.779 +imu_odom_: 1691062464.541423289 0.124498 -0.0383072 9.77313 -0.0788296 -0.00745685 -0.506001 0.09 -0.85 pose: 0.0 5.12331 -3.24934 0 -0.00115156 0.00107947 0.912892 -0.408198 uwb: 0.50173447 1141.06 479.028 +imu_odom_: 1691062464.558420352 -0.0885855 -0.371101 9.97424 -0.0500674 -0.00532632 -0.526241 0.08 -0.5 pose: 0.7019652 5.12331 -3.24934 0 -0.0009662440.000401723 0.913758 -0.406257 uwb: 0.0 1141.06 479.028 +imu_odom_: 1691062464.575297262 0.0885855 -0.234632 9.93115 -0.0660464 -0.0713727 -0.485761 0.09 -0.5 pose: 0.0 5.12331 -3.24934 0 -0.0009662440.000401723 0.913758 -0.406257 uwb: 0.0 1141.06 479.028 +imu_odom_: 1691062464.591298101 0.169988 -0.189142 9.47864 -0.0596548 -0.052198 -0.430367 0.09 -0.5 pose: 0.67988546 5.11342 -3.25079 0 -0.00431704 -0.0005090850.921405 -0.388579 uwb: 0.49896977 1139.58 479.069 +imu_odom_: 1691062464.607421719 0.035913 -0.23942 9.79947 -0.0287621 -0.0170442 -0.416518 0.1 -0.47 pose: 0.0 5.11342 -3.25079 0 -0.00431704 -0.0005090850.921405 -0.388579 uwb: 0.0 1139.58 479.069 +imu_odom_: 1691062464.624348790 0.246603 0.0047884 9.43794 -0.0490022 -0.0511327 -0.393083 0.1 -0.47 pose: 0.0 5.11342 -3.25079 0 -0.00431704 -0.0005090850.921405 -0.388579 uwb: 0.0 1139.58 479.069 +imu_odom_: 1691062464.640297426 0.610521 -0.320823 10.0556 -0.0553937 -0.0308927 -0.40267 0.1 -0.47 pose: 0.32062630 5.11342 -3.25079 0 -0.00648818 -0.00167617 0.924373 -0.381431 uwb: 0.49933140 1140.86 479.754 +imu_odom_: 1691062464.656313139 0.141258 -0.349553 9.69652 -0.0671117 0.0149137 -0.376038 0.14 -0.53 pose: 0.41930970 5.1087 -3.25714 0 -0.00586887 -0.0003596780.927865 -0.37287 uwb: 0.0 1140.86 479.754 +imu_odom_: 1691062464.672414592 0.0670376 -0.299275 10.0078 -0.0511327 0.00852212 -0.346211 0.14 -0.53 pose: 0.7056106 5.10502 -3.26217 0 -0.00616133 -0.0010935 0.92841 -0.371505 uwb: 0.0 1140.86 479.754 +imu_odom_: 1691062464.689297043 0.703895 -0.263362 9.51695 -0.0585895 -0.0756338 -0.329167 0.14 -0.53 pose: 0.0 5.10502 -3.26217 0 -0.00616133 -0.0010935 0.92841 -0.371505 uwb: 0.50143409 1139.8 480.076 +imu_odom_: 1691062464.706413677 1.09894 0.112527 9.6223 -0.0628506 -0.0170442 -0.28123 0.09 -0.35 pose: 0.41943511 5.10496 -3.26213 0 -0.00552861 -0.00259865 0.931386 -0.363981 uwb: 0.0 1139.8 480.076 +imu_odom_: 1691062464.722279781 1.05105 -0.646434 9.91678 -0.0532632 0.00106526 -0.230097 0.08 -0.38 pose: 0.0 5.10496 -3.26213 0 -0.00552861 -0.00259865 0.931386 -0.363981 uwb: 0.0 1139.8 480.076 +imu_odom_: 1691062464.739278886 0.962469 -0.349553 9.90721 -0.0585895 0.0127832 -0.227967 0.08 -0.38 pose: 0.0 5.10496 -3.26213 0 -0.00552861 -0.00259865 0.931386 -0.363981 uwb: 0.49838650 1138.35 480.052 +imu_odom_: 1691062464.756272742 1.03908 -0.196325 9.80904 -0.0426106 -0.00213053 -0.230097 0.08 -0.38 pose: 0.24127828 5.10502 -3.26217 0 -0.00348541 -0.00156738 0.932733 -0.360547 uwb: 0.0 1138.35 480.052 +imu_odom_: 1691062464.773341839 1.09654 0.143652 10.0126 -0.0585895 -0.00319579 -0.245011 0.06 -0.32 pose: 0.0 5.10502 -3.26217 0 -0.00348541 -0.00156738 0.932733 -0.360547 uwb: 0.0 1138.35 480.052 +imu_odom_: 1691062464.789368926 0.68953 -0.0742203 9.63666 -0.056459 0.00745685 -0.256729 0.06 -0.32 pose: 0.33857351 5.10502 -3.26217 0 -0.000373434-0.00113573 0.934371 -0.3563 uwb: 0.50014798 1138.78 480.241 +imu_odom_: 1691062464.816417769 0.715866 -0.263362 9.84256 -0.0639159 -0.0255663 -0.269512 0.07 -0.38 pose: 0.42086704 5.09515 -3.26373 0 0.00249077 0.0017307 0.936495 -0.350668 uwb: 0.0 1138.78 480.241 +imu_odom_: 1691062464.832277456 0.586579 -0.179565 9.87369 -0.0511327 0.02024 -0.264186 0.07 -0.38 pose: 0.0 5.09515 -3.26373 0 0.00249077 0.0017307 0.936495 -0.350668 uwb: 0.0 1138.78 480.241 +imu_odom_: 1691062464.848257881 0.497994 -0.23942 10.1682 -0.0681769 0 -0.264186 0.05 -0.38 pose: 0.7917886 5.09515 -3.26373 0 0.00336655 0.00182301 0.936921 -0.349521 uwb: 0.50050960 1137.82 480.203 +imu_odom_: 1691062464.865314146 0.263362 -0.158017 9.76834 -0.0511327 0.00745685 -0.312122 0.04 -0.41 pose: 0.0 5.09515 -3.26373 0 0.00336655 0.00182301 0.936921 -0.349521 uwb: 0.0 1137.82 480.203 +imu_odom_: 1691062464.882266590 0.739808 -0.110133 10.1442 -0.0575243 -0.0383495 -0.372843 0.04 -0.53 pose: 0.0 5.09515 -3.26373 0 0.00336655 0.00182301 0.936921 -0.349521 uwb: 0.0 1137.82 480.203 +imu_odom_: 1691062464.898262180 0.773327 0.0047884 9.67018 -0.0735032 0.00426106 -0.401605 0.04 -0.53 pose: 0.75022489 5.09515 -3.26373 0 0.00441451 0.00203358 0.941122 -0.338033 uwb: 0.50090040 1136.4 480.072 +imu_odom_: 1691062464.914323679 0.543484 -0.19393 10.1011 -0.0543285 0.0191748 -0.414388 0.05 -0.58 pose: 0.0 5.09515 -3.26373 0 0.00441451 0.00203358 0.941122 -0.338033 uwb: 0.0 1136.4 480.072 +imu_odom_: 1691062464.930306436 0.258574 -0.280122 9.77553 -0.052198 0.0191748 -0.441019 0.05 -0.58 pose: 0.32997027 5.09515 -3.26373 0 0.00620604 0.00326617 0.943513 -0.33126 uwb: 0.0 1136.4 480.072 +imu_odom_: 1691062464.946257989 0.28491 -0.100556 9.93354 -0.0575243 -0.0191748 -0.419714 0.05 -0.58 pose: 0.0 5.09515 -3.26373 0 0.00620604 0.00326617 0.943513 -0.33126 uwb: 0.50040170 1135.57 479.539 +imu_odom_: 1691062464.963334961 0.691924 -0.294487 9.89045 -0.0607201 -0.0213053 -0.42291 0.03 -0.44 pose: 0.40951661 5.09661 -3.27358 0 0.00329503 0.00177656 0.946649 -0.322245 uwb: 0.0 1135.57 479.539 +imu_odom_: 1691062464.979300512 0.758962 -0.160412 10.0006 -0.052198 -0.00213053 -0.454868 0.03 -0.44 pose: 0.8118823 5.09668 -3.27361 0 0.00417408 0.00172491 0.947249 -0.320467 uwb: 0.0 1135.57 479.539 +imu_odom_: 1691062465.5272640 0.56982 -0.0670376 9.9934 -0.0575243 -0.00852212 -0.510262 0.03 -0.53 pose: 0.0 5.09668 -3.27361 0 0.00417408 0.00172491 0.947249 -0.320467 uwb: 0.49917100 1136.86 480.169 +imu_odom_: 1691062465.20352794 0.4956 -0.107739 9.99579 -0.0532632 0.00852212 -0.526241 0.03 -0.67 pose: 0.24923700 5.09661 -3.27358 0 0.00648017 0.00253161 0.949147 -0.314756 uwb: 0.0 1136.86 480.169 +imu_odom_: 1691062465.36358014 -0.198719 -0.272939 9.54808 -0.0596548 0.0426106 -0.513457 0.04 -0.53 pose: 0.0 5.09661 -3.27358 0 0.00648017 0.00253161 0.949147 -0.314756 uwb: 0.49943944 1135.48 479.88 +imu_odom_: 1691062465.53300840 -0.529119 -0.366313 9.90481 -0.0500674 0.015979 -0.546481 0.04 -0.53 pose: 0.47999902 5.09668 -3.27361 0 0.00394324 0.00536228 0.953269 -0.302051 uwb: 0.0 1135.48 479.88 +imu_odom_: 1691062465.69236943 -0.301669 0.0047884 10.2161 -0.036219 0.0181095 -0.567786 0.06 -0.38 pose: 0.0 5.09668 -3.27361 0 0.00394324 0.00536228 0.953269 -0.302051 uwb: 0.0 1135.48 479.88 +imu_odom_: 1691062465.86236930 -0.577003 0.0526724 9.96946 -0.056459 -0.02024 -0.428236 0.06 -0.38 pose: 0.0 5.09668 -3.27361 0 0.00394324 0.00536228 0.953269 -0.302051 uwb: 0.49914787 1136.41 480.049 +imu_odom_: 1691062465.102233109 -0.222661 -0.905008 9.98143 -0.0660464 -0.0830906 -0.337689 0.06 -0.38 pose: 0.33999099 5.08679 -3.27513 0 0.000351424 0.00398928 0.956228 -0.292597 uwb: 0.0 1136.41 480.049 +imu_odom_: 1691062465.119228139 0.105345 -0.220267 9.53132 -0.0415453 -0.0607201 -0.353668 0.12 -0.5 pose: 0.40933596 5.08679 -3.27513 0 -0.00209648 0.00240927 0.958945 -0.283575 uwb: 0.0 1136.41 480.049 +imu_odom_: 1691062465.135283520 0.270545 0.289698 9.84496 -0.0585895 -0.0223706 -0.305731 0.12 -0.5 pose: 0.0 5.08679 -3.27513 0 -0.00209648 0.00240927 0.958945 -0.283575 uwb: 0.0 1136.41 480.049 +imu_odom_: 1691062465.152296047 0.138864 0.023942 10.0437 -0.0649811 -0.0149137 -0.295078 0.12 -0.5 pose: 0.0 5.08679 -3.27513 0 -0.00209648 0.00240927 0.958945 -0.283575 uwb: 0.50002861 1137.17 480.833 +imu_odom_: 1691062465.169291951 0.1652 -0.387861 10.0772 -0.0479369 -0.0106526 -0.312122 0.1 -0.35 pose: 0.8011797 5.08679 -3.27513 0 -0.002601 0.00213495 0.959391 -0.28206 uwb: 0.0 1137.17 480.833 +imu_odom_: 1691062465.184240870 0.162806 -0.294487 9.73243 -0.0628506 -0.0255663 -0.290817 0.15 -0.44 pose: 0.0 5.08679 -3.27513 0 -0.002601 0.00213495 0.959391 -0.28206 uwb: 0.0 1137.17 480.833 +imu_odom_: 1691062465.201297434 0.593762 -0.208296 10.1538 -0.0596548 -0.0447411 -0.258859 0.15 -0.44 pose: 0.65035478 5.0769 -3.27656 0 -0.00585297 0.00167058 0.962526 -0.27112 uwb: 0.49989738 1137.12 481.015 +imu_odom_: 1691062465.217285447 0.636858 -0.280122 9.66539 -0.0628506 -0.02024 -0.262055 0.14 -0.38 pose: 0.0 5.0769 -3.27656 0 -0.00585297 0.00167058 0.962526 -0.27112 uwb: 0.0 1137.12 481.015 +imu_odom_: 1691062465.234288351 0.426168 0.0311246 9.80665 -0.0447411 0.00852212 -0.252468 0.14 -0.38 pose: 0.0 5.0769 -3.27656 0 -0.00585297 0.00167058 0.962526 -0.27112 uwb: 0.0 1137.12 481.015 +imu_odom_: 1691062465.251309627 0.387861 -0.0957681 9.91199 -0.0394148 0.00745685 -0.233293 0.14 -0.38 pose: 0.33015123 5.0769 -3.27656 0 -0.0033961 0.00106993 0.963904 -0.266226 uwb: 0.50105808 1136.22 480.754 +imu_odom_: 1691062465.267222691 0.409408 -0.246603 10.3238 -0.0511327 0.0106526 -0.207727 0.13 -0.29 pose: 0.43014120 5.07221 -3.28288 0 -0.00255601 0.00454226 0.965516 -0.26029 uwb: 0.0 1136.22 480.754 +imu_odom_: 1691062465.294250839 1.01993 -0.150835 10.4196 -0.056459 -0.0223706 -0.206661 0.13 -0.29 pose: 0.7999840 5.06846 -3.28791 0 -0.00223895 0.00383789 0.965777 -0.259336 uwb: 0.50021234 1137.12 481.038 +imu_odom_: 1691062465.310395752 1.14443 0 9.36372 -0.0607201 -0.0308927 -0.164051 0.11 -0.2 pose: 0.34941372 5.06846 -3.28791 0 0.000925189 0.00384551 0.966884 -0.255184 uwb: 0.0 1137.12 481.038 +imu_odom_: 1691062465.326212284 0.890643 -0.258574 9.45949 -0.0649811 0.0308927 -0.118244 0.12 -0.17 pose: 0.0 5.06846 -3.28791 0 0.000925189 0.00384551 0.966884 -0.255184 uwb: 0.0 1137.12 481.038 +imu_odom_: 1691062465.343345840 0.938527 -0.42138 10.0317 -0.0596548 0.00532632 -0.0830906 0.08 0 pose: 0.0 5.06846 -3.28791 0 0.000925189 0.00384551 0.966884 -0.255184 uwb: 0.50006069 1136.61 481.123 +imu_odom_: 1691062465.360333579 1.51792 -0.251391 9.94791 -0.0671117 -0.0458064 0.00426106 0.08 0 pose: 0.40038276 5.06846 -3.28791 0 0.00464303 0.00416658 0.967728 -0.25192 uwb: 0.0 1136.61 481.123 +imu_odom_: 1691062465.376281930 1.47004 -0.42138 9.83538 -0.0575243 0.0149137 0.0884169 0.08 0 pose: 0.0 5.06846 -3.28791 0 0.00464303 0.00416658 0.967728 -0.25192 uwb: 0.0 1136.61 481.123 +imu_odom_: 1691062465.392302315 0.696713 -0.37589 9.63666 -0.0479369 0.0841559 0.176834 0.07 0.11 pose: 0.0 5.06846 -3.28791 0 0.00464303 0.00416658 0.967728 -0.25192 uwb: 0.49892332 1136.08 481.299 +imu_odom_: 1691062465.409251266 0.320823 -0.488417 10.252 -0.0596548 0.0330232 0.296144 0.07 0.11 pose: 0.34023305 5.05856 -3.28929 0 0.0082349 0.00411243 0.967869 -0.251287 uwb: 0.0 1136.08 481.299 +imu_odom_: 1691062465.426384238 0.61531 -0.512359 9.96706 -0.0617853 -0.0479369 0.383495 0.07 0.32 pose: 0.40938846 5.05849 -3.28925 0 0.00823026 0.00119045 0.966991 -0.254674 uwb: 0.0 1136.08 481.299 +imu_odom_: 1691062465.442264639 0.857124 -0.306458 9.58399 -0.0468716 -0.00532632 0.401605 0.07 0.32 pose: 0.0 5.05849 -3.28925 0 0.00823026 0.00119045 0.966991 -0.254674 uwb: 0.49970489 1139.18 482.389 +imu_odom_: 1691062465.458204533 0.907402 0.0526724 9.97903 -0.0490022 0.00532632 0.415453 0.07 0.32 pose: 0.0 5.05849 -3.28925 0 0.00823026 0.00119045 0.966991 -0.254674 uwb: 0.0 1139.18 482.389 +imu_odom_: 1691062465.475327006 0.217872 -0.225055 9.55287 -0.0553937 0.0415453 0.428236 0.04 0.29 pose: 0.7078273 5.05856 -3.28929 0 0.00868425 0.000554262 0.966676 -0.255855 uwb: 0.0 1139.18 482.389 +imu_odom_: 1691062465.492207423 0.21069 -0.222661 10.1538 -0.04048 0.00958738 0.40267 0.05 0.47 pose: 0.0 5.05856 -3.28929 0 0.00868425 0.000554262 0.966676 -0.255855 uwb: 0.49958241 1140.08 482.656 +imu_odom_: 1691062465.508268346 0.229843 -0.0861913 9.67976 -0.0500674 -0.0308927 0.434628 0.05 0.47 pose: 0.65939547 5.05856 -3.28929 0 0.00875056 0.000689747 0.963487 -0.26761 uwb: 0.0 1140.08 482.656 +imu_odom_: 1691062465.525252876 0.711078 -0.25618 9.79947 -0.052198 -0.0127832 0.46339 0.04 0.55 pose: 0.0 5.05856 -3.28929 0 0.00875056 0.000689747 0.963487 -0.26761 uwb: 0.0 1140.08 482.656 +imu_odom_: 1691062465.541256638 0.706289 -0.378284 10.0533 -0.0447411 0.00852212 0.462325 0.04 0.55 pose: 0.0 5.05856 -3.28929 0 0.00875056 0.000689747 0.963487 -0.26761 uwb: 0.50049523 1142.78 483.396 +imu_odom_: 1691062465.557256025 0.399832 -0.3304 9.72285 -0.0426106 0.0181095 0.472977 0.04 0.55 pose: 0.33069658 5.05856 -3.28929 0 0.0070366 0.00101593 0.961747 -0.273846 uwb: 0.0 1142.78 483.396 +imu_odom_: 1691062465.573253080 0.383072 -0.361524 9.8258 -0.0543285 0.00426106 0.494283 0.03 0.41 pose: 0.41917281 5.05849 -3.28925 0 0.00789331 -0.0005591260.959247 -0.282459 uwb: 0.0 1142.78 483.396 +imu_odom_: 1691062465.590256858 0.670376 -0.294487 9.8665 -0.0458064 -0.0181095 0.434628 0.03 0.41 pose: 0.7997798 5.05856 -3.28929 0 0.00730297 -0.0011546 0.958734 -0.284208 uwb: 0.49946576 1144.2 483.546 +imu_odom_: 1691062465.605312514 0.696713 0.162806 9.83059 -0.0426106 0.00639159 0.390952 0.03 0.41 pose: 0.0 5.05856 -3.28929 0 0.00730297 -0.0011546 0.958734 -0.284208 uwb: 0.0 1144.2 483.546 +imu_odom_: 1691062465.622304627 0.620098 -0.131681 9.89045 -0.0617853 0.00106526 0.372843 0.03 0.38 pose: 0.40058691 5.05321 -3.29001 0 0.00836985 0.000271864 0.956478 -0.291685 uwb: 0.0 1144.2 483.546 +imu_odom_: 1691062465.637243922 0.47884 -0.248997 9.88566 -0.056459 0.00532632 0.348341 0.02 0.29 pose: 0.0 5.05321 -3.29001 0 0.00836985 0.000271864 0.956478 -0.291685 uwb: 0.49997611 1142.8 483.328 +imu_odom_: 1691062465.653187023 0.507571 -0.304064 9.95988 -0.0479369 -0.00426106 0.320645 0.02 0.29 pose: 0.0 5.05321 -3.29001 0 0.00836985 0.000271864 0.956478 -0.291685 uwb: 0.0 1142.8 483.328 +imu_odom_: 1691062465.669325229 0.529119 -0.136469 9.8282 -0.056459 -0.0117179 0.311057 0.02 0.26 pose: 0.23943233 5.04866 -3.29075 0 0.00794806 0.00150898 0.955338 -0.295406 uwb: 0.0 1142.8 483.328 +imu_odom_: 1691062465.686264556 0.624887 -0.177171 9.85932 -0.0479369 -0.00213053 0.291882 0.02 0.26 pose: 0.0 5.04866 -3.29075 0 0.00794806 0.00150898 0.955338 -0.295406 uwb: 0.50013944 1144.16 483.682 +imu_odom_: 1691062465.702232738 0.555455 -0.227449 9.8665 -0.0511327 0.00532632 0.272708 0.02 0.26 pose: 0.0 5.04866 -3.29075 0 0.00794806 0.00150898 0.955338 -0.295406 uwb: 0.0 1144.16 483.682 +imu_odom_: 1691062465.719352879 0.47884 -0.1652 9.90721 -0.056459 -0.00106526 0.256729 0.02 0.29 pose: 0.72976991 5.0486 -3.29071 0 0.00765351 0.000808262 0.952439 -0.304633 uwb: 0.0 1144.16 483.682 +imu_odom_: 1691062465.735347600 0.486023 -0.174777 9.90242 -0.052198 0 0.237554 0.02 0.29 pose: 0.0 5.0486 -3.29071 0 0.00765351 0.000808262 0.952439 -0.304633 uwb: 0.50240543 1144.52 484.147 +imu_odom_: 1691062465.752223643 0.47884 -0.0885855 9.82341 -0.0532632 0 0.219444 0.02 0.29 pose: 0.0 5.0486 -3.29071 0 0.00765351 0.000808262 0.952439 -0.304633 uwb: 0.0 1144.52 484.147 +imu_odom_: 1691062465.768204657 0.4956 -0.198719 9.88805 -0.0532632 0.00532632 0.211988 0.01 0.17 pose: 0.6962203 5.04866 -3.29075 0 0.0070431 0.00114753 0.952213 -0.305351 uwb: 0.0 1144.52 484.147 +imu_odom_: 1691062465.795190810 0.509965 -0.246603 9.91678 -0.052198 -0.00426106 0.193878 0.01 0.2 pose: 0.0 5.04866 -3.29075 0 0.0070431 0.00114753 0.952213 -0.305351 uwb: 0.49809216 1144.49 484.237 +imu_odom_: 1691062465.820170513 0.260968 -0.112527 9.88805 -0.052198 0.0181095 0.214118 0.01 0.14 pose: 0.66196769 5.05005 -3.30065 0 0.00455991 0.00174928 0.950337 -0.311183 uwb: 0.0 1144.49 484.237 +imu_odom_: 1691062465.837158543 0.0335188 -0.37589 9.92636 -0.0596548 0.00745685 0.265251 0.01 0.14 pose: 0.0 5.05005 -3.30065 0 0.00455991 0.00174928 0.950337 -0.311183 uwb: 0.49905163 1144 484.247 +imu_odom_: 1691062465.853155889 0.153229 -0.435745 9.94073 -0.0532632 -0.0149137 0.30147 0.01 0.14 pose: 0.27820520 5.05005 -3.30065 0 0.00481454 0.000273961 0.94964 -0.313307 uwb: 0.0 1144 484.247 +imu_odom_: 1691062465.870217411 0.399832 -0.292093 9.89524 -0.0500674 -0.0181095 0.327036 0.02 0.23 pose: 0.40963051 5.05005 -3.30065 0 0.00115769 -0.00114406 0.948288 -0.317407 uwb: 0.0 1144 484.247 +imu_odom_: 1691062465.886199592 0.567426 -0.146046 9.86411 -0.052198 -0.0106526 0.345146 0.02 0.23 pose: 0.0 5.05005 -3.30065 0 0.00115769 -0.00114406 0.948288 -0.317407 uwb: 0.50141388 1148.03 485.438 +imu_odom_: 1691062465.913304732 0.452504 -0.21069 9.83059 -0.0500674 0.0138484 0.339819 0.03 0.38 pose: 0.42024311 5.05005 -3.30065 0 0.00199216 -0.00203627 0.946342 -0.323154 uwb: 0.0 1148.03 485.438 +imu_odom_: 1691062465.929231502 0.196325 -0.217872 9.90002 -0.0575243 0.00639159 0.360059 0.03 0.38 pose: 0.0 5.05005 -3.30065 0 0.00199216 -0.00203627 0.946342 -0.323154 uwb: 0.0 1148.03 485.438 +imu_odom_: 1691062465.956256150 0.339977 -0.275333 9.78989 -0.0490022 -0.00852212 0.376038 0.03 0.44 pose: 0.6970660 5.05005 -3.30065 0 0.00200342 -0.00134859 0.946005 -0.324143 uwb: 0.49945409 1149.25 486.278 +imu_odom_: 1691062465.972201877 0.500388 -0.213084 9.85932 -0.0490022 -0.0181095 0.389887 0.02 0.41 pose: 0.0 5.05005 -3.30065 0 0.00200342 -0.00134859 0.946005 -0.324143 uwb: 0.0 1149.25 486.278 +imu_odom_: 1691062465.989164243 0.6608 -0.196325 9.93115 -0.0532632 -0.00958738 0.448476 0.02 0.55 pose: 0.0 5.05005 -3.30065 0 0.00200342 -0.00134859 0.946005 -0.324143 uwb: 0.50087727 1148.69 486.532 +imu_odom_: 1691062466.15209003 0.636858 -0.430956 10.0126 -0.0479369 0.0276969 0.495348 0.02 0.55 pose: 0.86068194 5.05005 -3.30065 0 0.00109665 -0.0007982050.941259 -0.337682 uwb: 0.0 1148.69 486.532 +imu_odom_: 1691062466.32201997 0.301669 -0.213084 9.85453 -0.0447411 0.0106526 0.531567 0.02 0.61 pose: 0.0 5.05005 -3.30065 0 0.00109665 -0.0007982050.941259 -0.337682 uwb: 0.0 1148.69 486.532 +imu_odom_: 1691062466.58141191 0.500388 -0.21069 9.90481 -0.0468716 -0.00639159 0.567786 0.02 0.61 pose: 0.42917888 5.05005 -3.30065 0 0.00316288 -0.00147057 0.937944 -0.34677 uwb: 0.49845975 1150.45 487.167 +imu_odom_: 1691062466.85136103 0.567426 -0.189142 10.0149 -0.0479369 0.00106526 0.565655 0.02 0.67 pose: 0.35984857 5.05 -3.30062 0 0.00358754 0.000701754 0.934672 -0.355493 uwb: 0.49834025 1151.64 488.081 +imu_odom_: 1691062466.101192658 0.378284 -0.332794 9.72525 -0.0447411 0.00639159 0.573112 0.02 0.67 pose: 0.7012658 5.05005 -3.30065 0 0.00407581 0.00119037 0.934013 -0.357215 uwb: 0.0 1151.64 488.081 +imu_odom_: 1691062466.117247171 0.344765 -0.241814 9.94791 -0.0543285 0 0.595483 0.02 0.73 pose: 0.0 5.05005 -3.30065 0 0.00407581 0.00119037 0.934013 -0.357215 uwb: 0.0 1151.64 488.081 +imu_odom_: 1691062466.134187671 0.577003 -0.316035 9.82341 -0.052198 -0.015979 0.628506 0.02 0.73 pose: 0.43099878 5.05005 -3.30065 0 0.0040016 0.000840936 0.929842 -0.367938 uwb: 0.0 1151.64 488.081 +imu_odom_: 1691062466.161194541 0.593762 -0.0861913 9.9934 -0.0543285 0.0191748 0.656203 0.02 0.79 pose: 0.0 5.05005 -3.30065 0 0.0040016 0.000840936 0.929842 -0.367938 uwb: 0.50061208 1154.35 488.769 +imu_odom_: 1691062466.187135776 0.411803 -0.153229 9.79947 -0.052198 0.02024 0.660464 0.02 0.79 pose: 0.32909273 5.05005 -3.30065 0 0.0049426 0.000659904 0.926248 -0.376881 uwb: 0.50244647 1155.28 488.927 +imu_odom_: 1691062466.214251425 0.529119 -0.407014 9.96227 -0.0553937 -0.00319579 0.709466 0.02 0.82 pose: 0.0 5.05005 -3.30065 0 0.0049426 0.000659904 0.926248 -0.376881 uwb: 0.0 1155.28 488.927 +imu_odom_: 1691062466.230291356 0.744597 -0.442927 9.89284 -0.0532632 0.0106526 0.711597 0.02 0.82 pose: 0.53155165 5.04015 -3.30206 0 0.00263703 0.00209421 0.919863 -0.392224 uwb: 0.0 1155.28 488.927 +imu_odom_: 1691062466.257137243 0.426168 -0.225055 9.79228 -0.0543285 0.00958738 0.740359 0.01 0.88 pose: 0.0 5.04015 -3.30206 0 0.00263703 0.00209421 0.919863 -0.392224 uwb: 0.49929973 1155.65 489.31 +imu_odom_: 1691062466.274117406 0.416591 -0.208296 10.0054 -0.0575243 0.00745685 0.740359 0.01 0.88 pose: 0.43894001 5.04015 -3.30206 0 0.00450965 3.10833e-05 0.913933 -0.405839 uwb: 0.0 1155.65 489.31 +imu_odom_: 1691062466.301289050 0.507571 -0.268151 9.81383 -0.0543285 -0.00532632 0.760599 0.01 1.03 pose: 0.0 5.04015 -3.30206 0 0.00450965 3.10833e-05 0.913933 -0.405839 uwb: 0.49899351 1155.91 490.053 +imu_odom_: 1691062466.327131128 0.457293 -0.251391 9.85932 -0.0479369 -0.00745685 0.788296 0.01 1.03 pose: 0.35905240 5.04009 -3.30203 0 0.00079443 0.000369665 0.908765 -0.417307 uwb: 0.0 1155.91 490.053 +imu_odom_: 1691062466.344118582 0.497994 -0.277727 9.85453 -0.0532632 0.00106526 0.834102 0.01 0.91 pose: 0.0 5.04009 -3.30203 0 0.00079443 0.000369665 0.908765 -0.417307 uwb: 0.49962344 1158.12 490.783 +imu_odom_: 1691062466.370143225 0.52433 -0.217872 9.92157 -0.0394148 -0.00319579 0.826645 0.01 0.91 pose: 0.53013722 5.03994 -3.30195 0 0.00271544 -0.00233489 0.900459 -0.434926 uwb: 0.0 1158.12 490.783 +imu_odom_: 1691062466.387116388 0.435745 -0.0909797 9.84017 -0.0543285 -0.00852212 0.844755 0.01 0.82 pose: 0.0 5.03994 -3.30195 0 0.00271544 -0.00233489 0.900459 -0.434926 uwb: 0.50021838 1156.23 490.594 +imu_odom_: 1691062466.403097992 0.682347 -0.215478 9.97664 -0.0575243 0 0.858603 0.01 0.82 pose: 0.25073621 5.04015 -3.30206 0 0.00440108 -0.00079033 0.896096 -0.443837 uwb: 0.0 1156.23 490.594 +imu_odom_: 1691062466.430285967 0.502782 -0.237026 10.0892 -0.052198 0.00319579 0.862864 0.01 0.97 pose: 0.50893243 5.04009 -3.30203 0 0.00508798 0.00274395 0.88684 -0.462041 uwb: 0.0 1156.23 490.594 +imu_odom_: 1691062466.456300986 0.565032 -0.265756 10.1179 -0.052198 -0.0106526 0.864995 0.01 0.97 pose: 0.8021424 5.04015 -3.30206 0 0.00498816 0.00192549 0.88531 -0.464971 uwb: 0.50103204 1153.54 489.873 +imu_odom_: 1691062466.483151831 0.691924 -0.253785 9.84735 -0.0575243 0.00426106 0.876713 0 1.06 pose: 0.45181570 5.03995 -3.30195 0 0.00718001 0.00105023 0.876483 -0.481377 uwb: 0.0 1153.54 489.873 +imu_odom_: 1691062466.509167141 0.574608 -0.229843 9.71088 -0.0468716 0.0213053 0.898018 0 0.79 pose: 0.0 5.03995 -3.30195 0 0.00718001 0.00105023 0.876483 -0.481377 uwb: 0.49922098 1152.09 489.856 +imu_odom_: 1691062466.536228838 0.52433 -0.134075 9.79947 -0.0490022 0.00852212 0.882039 0 1.03 pose: 0.34981048 5.04015 -3.30206 0 0.00873457 0.00289121 0.869293 -0.494212 uwb: 0.49862022 1150.3 489.328 +imu_odom_: 1691062466.552130534 0.490811 -0.141258 10.1323 -0.0468716 0.0106526 0.892692 0 1.03 pose: 0.0 5.04015 -3.30206 0 0.00873457 0.00289121 0.869293 -0.494212 uwb: 0.0 1150.3 489.328 +imu_odom_: 1691062466.579155777 0.509965 -0.356736 9.96227 -0.0543285 -0.00319579 0.911866 0 0.88 pose: 0.52968519 5.04015 -3.30206 0 -0.0040698 -0.00545455 -0.857992 0.513618 uwb: 0.0 1150.3 489.328 +imu_odom_: 1691062466.604289766 0.476446 -0.0885855 10.0772 -0.0479369 -0.00106526 0.936367 0 0.88 pose: 0.34905224 5.03966 -3.3018 0 -0.00464234 -0.00303935 -0.850114 0.526569 uwb: 0.50121869 1150.26 489.486 +imu_odom_: 1691062466.621279261 0.533907 -0.201113 9.81144 -0.0543285 0.0117179 0.968325 0 0.88 pose: 0.8088791 5.04015 -3.30206 0 -0.00402017 -0.00357665 -0.848202 0.529646 uwb: 0.0 1150.26 489.486 +imu_odom_: 1691062466.647101508 0.672771 -0.25618 9.93354 -0.0511327 0.0106526 0.966195 0 0.85 pose: 0.0 5.04015 -3.30206 0 -0.00402017 -0.00357665 -0.848202 0.529646 uwb: 0.49869895 1151.17 489.681 +imu_odom_: 1691062466.664236238 0.246603 -0.181959 9.83059 -0.0553937 0.0276969 0.961934 0 0.85 pose: 0.41872095 5.04015 -3.30206 0 -0.00502774 -0.00439271 -0.837889 0.5458 uwb: 0.0 1151.17 489.681 +imu_odom_: 1691062466.680220758 -0.19393 -0.213084 9.76834 -0.0543285 0.0575243 0.942759 0 0.85 pose: 0.0 5.04015 -3.30206 0 -0.00502774 -0.00439271 -0.837889 0.5458 uwb: 0.0 1151.17 489.681 +imu_odom_: 1691062466.696109331 -0.383072 -0.138864 9.80665 -0.0681769 0.00852212 0.960868 0.01 0.91 pose: 0.43124667 5.04015 -3.30206 0 -0.00414539 -0.00299257 -0.826896 0.562332 uwb: 0.49911600 1152.98 490.1 +imu_odom_: 1691062466.713053623 -0.220267 -0.189142 9.93354 -0.0543285 0.00319579 0.966195 0.01 0.91 pose: 0.0 5.04015 -3.30206 0 -0.00414539 -0.00299257 -0.826896 0.562332 uwb: 0.0 1152.98 490.1 +imu_odom_: 1691062466.730110485 -0.289698 -0.3304 9.9503 -0.0500674 0.0234358 0.916127 0.06 1 pose: 0.0 5.04015 -3.30206 0 -0.00414539 -0.00299257 -0.826896 0.562332 uwb: 0.0 1152.98 490.1 +imu_odom_: 1691062466.746216035 -0.423774 0.0407014 10.0652 -0.0426106 0.00958738 0.796818 0.06 1 pose: 0.40812293 5.04009 -3.30203 0 -0.000426549-0.00047751 -0.816206 0.577761 uwb: 0.50188945 1153.98 490.008 +imu_odom_: 1691062466.763209029 -0.201113 0.1652 9.90242 -0.0415453 -0.0575243 0.727576 0.06 1 pose: 0.0 5.04009 -3.30203 0 -0.000426549-0.00047751 -0.816206 0.577761 uwb: 0.0 1153.98 490.008 +imu_odom_: 1691062466.780099368 0.418985 -0.328006 9.69173 -0.0681769 -0.0426106 0.720119 0.06 0.67 pose: 0.7003034 5.04015 -3.30206 0 0.000158965 5.89834e-05 -0.814429 0.580264 uwb: 0.0 1153.98 490.008 +imu_odom_: 1691062466.796079806 0.447716 -0.517148 9.68455 -0.052198 0.0170442 0.700944 0.06 0.67 pose: 0.0 5.04015 -3.30206 0 0.000158965 5.89834e-05 -0.814429 0.580264 uwb: 0.50029128 1151.32 489.163 +imu_odom_: 1691062466.813050053 0.162806 -0.361524 9.8689 -0.0596548 0.0181095 0.710531 0.06 0.67 pose: 0.0 5.04015 -3.30206 0 0.000158965 5.89834e-05 -0.814429 0.580264 uwb: 0.0 1151.32 489.163 +imu_odom_: 1691062466.830051505 0.0407014 -0.272939 9.94073 -0.0628506 0.00319579 0.707336 0.1 0.79 pose: 0.51161839 5.04171 -3.31194 0 0.00320327 0.00121856 -0.803208 0.595689 uwb: 0.0 1151.32 489.163 +imu_odom_: 1691062466.846084437 0.179565 -0.181959 9.87369 -0.0617853 -0.0266316 0.66579 0.08 0.55 pose: 0.0 5.04171 -3.31194 0 0.00320327 0.00121856 -0.803208 0.595689 uwb: 0.49910725 1149.14 488.352 +imu_odom_: 1691062466.863089098 0.335188 -0.071826 9.85214 -0.0596548 -0.0191748 0.621049 0.08 0.55 pose: 0.66837810 5.04171 -3.31194 0 0.00388971 0.005379 -0.789784 0.613349 uwb: 0.0 1149.14 488.352 +imu_odom_: 1691062466.880112714 0.349553 -0.215478 9.98622 -0.0660464 -0.0138484 0.600809 0.09 0.53 pose: 0.0 5.04171 -3.31194 0 0.00388971 0.005379 -0.789784 0.613349 uwb: 0.0 1149.14 488.352 +imu_odom_: 1691062466.897167244 0.316035 -0.361524 10.0652 -0.0671117 -0.00319579 0.568851 0.09 0.53 pose: 0.0 5.04171 -3.31194 0 0.00388971 0.005379 -0.789784 0.613349 uwb: 0.50004923 1148.31 487.889 +imu_odom_: 1691062466.913043568 0.213084 -0.184354 10.0437 -0.056459 -0.00958738 0.539024 0.09 0.53 pose: 0.33115167 5.04171 -3.31194 0 0.00428245 0.00321219 -0.783778 0.621017 uwb: 0.0 1148.31 487.889 +imu_odom_: 1691062466.929048794 0.955286 -0.229843 10.1682 -0.0692422 -0.0532632 0.54222 0.13 0.61 pose: 0.41872095 5.0381 -3.32264 0 0.00392701 0.00426252 -0.776907 0.629589 uwb: 0.0 1148.31 487.889 +imu_odom_: 1691062466.945099516 1.04866 -0.325611 9.78031 -0.0681769 -0.0234358 0.548611 0.13 0.61 pose: 0.7063985 5.03341 -3.3234 0 0.00322073 0.00373784 -0.775792 0.63097 uwb: 0.0 1148.31 487.889 +imu_odom_: 1691062466.962095719 1.22104 -0.533907 9.95988 -0.056459 -0.0298274 0.56459 0.13 0.61 pose: 0.0 5.03341 -3.3234 0 0.00322073 0.00373784 -0.775792 0.63097 uwb: 0.0 1148.31 487.889 +imu_odom_: 1691062466.978154314 1.45567 -0.397437 9.80186 -0.036219 -0.0383495 0.523045 0.06 0.35 pose: 0.41988166 5.03335 -3.32337 0 -0.0009672890.00146986 -0.768947 0.63931 uwb: 0.0 1148.31 487.889 +imu_odom_: 1691062466.995037363 1.1564 0.129287 9.78989 -0.04048 0.0149137 0.444215 0.09 0.47 pose: 0.0 5.03335 -3.32337 0 -0.0009672890.00146986 -0.768947 0.63931 uwb: 0.100013637 1146.51 487.419 +imu_odom_: 1691062467.12096854 0.823605 0.203507 10.0987 -0.0639159 0.015979 0.415453 0.09 0.47 pose: 0.0 5.03335 -3.32337 0 -0.0009672890.00146986 -0.768947 0.63931 uwb: 0.0 1146.51 487.419 +imu_odom_: 1691062467.28033261 0.775721 -0.265756 9.76595 -0.0660464 0.00106526 0.38456 0.05 0.32 pose: 0.23073878 5.03341 -3.3234 0 -0.00262185 -0.000307467-0.765548 0.643373 uwb: 0.0 1146.51 487.419 +imu_odom_: 1691062467.44031495 0.665588 -0.342371 9.93594 -0.0543285 0.00319579 0.334493 0.05 0.32 pose: 0.0 5.03341 -3.3234 0 -0.00262185 -0.000307467-0.765548 0.643373 uwb: 0.49925320 1144.75 486.798 +imu_odom_: 1691062467.61032954 0.770933 -0.205901 9.91918 -0.0468716 -0.00213053 0.316384 0.05 0.32 pose: 0.33872841 5.03509 -3.33326 0 -0.00339539 -0.00304274 -0.761414 0.64825 uwb: 0.0 1144.75 486.798 +imu_odom_: 1691062467.77072891 0.739808 -0.148441 9.84256 -0.0479369 -0.00639159 0.313188 0.04 0.38 pose: 0.41990516 5.03509 -3.33326 0 -0.00683494 -0.0047289 -0.757319 0.652992 uwb: 0.0 1144.75 486.798 +imu_odom_: 1691062467.94048103 0.663194 -0.189142 9.88805 -0.0511327 -0.00106526 0.304666 0.04 0.38 pose: 0.7000995 5.03509 -3.33326 0 -0.00711156 -0.00538711 -0.756691 0.653712 uwb: 0.49956240 1144.83 486.481 +imu_odom_: 1691062467.111029731 0.703895 -0.229843 9.95509 -0.0500674 -0.00319579 0.282295 0.04 0.38 pose: 0.0 5.03509 -3.33326 0 -0.00711156 -0.00538711 -0.756691 0.653712 uwb: 0.0 1144.83 486.481 +imu_odom_: 1691062467.136096071 0.52433 -0.117316 9.8258 -0.052198 0.0149137 0.252468 0.03 0.26 pose: 0.42995782 5.03502 -3.33323 0 -0.00973434 -0.00844636 -0.753023 0.657868 uwb: 0.49961489 1145.35 486.359 +imu_odom_: 1691062467.153094322 -0.385466 -0.117316 9.74679 -0.0649811 0.0958738 0.273773 0.03 0.29 pose: 0.0 5.03502 -3.33323 0 -0.00973434 -0.00844636 -0.753023 0.657868 uwb: 0.0 1145.35 486.359 +imu_odom_: 1691062467.179300955 -1.41497 -0.428562 9.94791 -0.072438 0.0117179 0.314253 0.03 0.29 pose: 0.32036422 5.03509 -3.33326 0 -0.00625771 -0.00743843 -0.750766 0.660497 uwb: 0.0 1145.35 486.359 +imu_odom_: 1691062467.196128308 -0.833182 -0.383072 9.68933 -0.0372843 -0.0585895 0.284426 0.05 0.23 pose: 0.0 5.03509 -3.33326 0 -0.00625771 -0.00743843 -0.750766 0.660497 uwb: 0.50126555 1145.45 486.02 +imu_odom_: 1691062467.222084427 0.430956 -0.0454898 9.81383 -0.04048 -0.0585895 0.259925 0.05 0.23 pose: 0.18014599 5.03509 -3.33326 0 -0.00459842 -0.00575915 -0.749281 0.662211 uwb: 0.0 1145.45 486.02 +imu_odom_: 1691062467.249130678 0.237026 -0.277727 10.003 -0.0596548 0.0191748 0.241815 0.08 0.17 pose: 0.43028737 5.03509 -3.33326 0 -0.00198407 -0.00388359 -0.745683 0.666287 uwb: 0.49925327 1144.53 485.857 +imu_odom_: 1691062467.265128037 0.059855 -0.201113 10.2568 -0.0394148 0.0170442 0.213053 0.08 0.17 pose: 0.0 5.03509 -3.33326 0 -0.00198407 -0.00388359 -0.745683 0.666287 uwb: 0.0 1144.53 485.857 +imu_odom_: 1691062467.292125002 0.172383 0.0335188 9.94073 -0.0596548 -0.00426106 0.219444 0.1 0.17 pose: 0.53035325 5.03675 -3.34312 0 0.00106886 -0.00180633 -0.74208 0.670308 uwb: 0.50312327 1143.19 485.435 +imu_odom_: 1691062467.318005004 0.574608 -0.526724 9.99819 -0.0671117 0 0.213053 0.11 0.14 pose: 0.34980188 5.03669 -3.34309 0 0.00438147 -0.00122677 -0.739982 0.672612 uwb: 0.0 1143.19 485.435 +imu_odom_: 1691062467.345011009 0.0933739 0.174777 9.92397 -0.0490022 -0.0351537 0.18216 0.11 0.14 pose: 0.0 5.03669 -3.34309 0 0.00438147 -0.00122677 -0.739982 0.672612 uwb: 0.49904620 1142.92 484.654 +imu_odom_: 1691062467.370005898 0.423774 -0.282516 9.96227 -0.0735032 0.00532632 0.196009 0.12 0.11 pose: 0.7899523 5.03675 -3.34312 0 0.00361088 -0.000936131-0.739523 0.673121 uwb: 0.0 1142.92 484.654 +imu_odom_: 1691062467.397132349 0.361524 -0.354342 9.7875 -0.0234358 0 0.15979 0.12 0.11 pose: 0.0 5.03675 -3.34312 0 0.00361088 -0.000936131-0.739523 0.673121 uwb: 0.49849210 1143.09 484.042 +imu_odom_: 1691062467.422111198 0.641646 -0.0215478 9.98622 -0.0649811 -0.0436758 0.173638 0.13 0.08 pose: 0.53035617 5.02853 -3.35465 0 0.00350279 -0.000682615-0.736748 0.676158 uwb: 0.0 1143.09 484.042 +imu_odom_: 1691062467.439149403 0.457293 -0.342371 9.51695 -0.0703074 -0.0213053 0.16192 0.13 0.08 pose: 0.0 5.02853 -3.35465 0 0.00350279 -0.000682615-0.736748 0.676158 uwb: 0.49967031 1144.1 483.909 +imu_odom_: 1691062467.456106242 0.64404 -0.160412 10.2113 -0.0436758 0.0117179 0.132093 0.17 0.08 pose: 0.52026850 5.0302 -3.36451 0 0.000280774 0.0010947 -0.734392 0.678725 uwb: 0.0 1144.1 483.909 +imu_odom_: 1691062467.483159493 0.167594 -0.0670376 9.85693 -0.0948085 -0.0330232 0.154463 0.17 0.08 pose: 0.0 5.0302 -3.36451 0 0.000280774 0.0010947 -0.734392 0.678725 uwb: 0.0 1144.1 483.909 +imu_odom_: 1691062467.509040078 0.574608 -0.378284 9.8282 -0.0458064 0.0127832 0.108657 0.2 0.14 pose: 0.58027828 5.0302 -3.36451 0 -0.00201818 -0.00120146 -0.7321 0.681193 uwb: 0.50115181 1149.66 484.882 +imu_odom_: 1691062467.536014004 0.457293 -0.292093 9.84496 -0.0585895 -0.0298274 0.131028 0.19 0.08 pose: 0.27884119 5.03187 -3.37437 0 -0.00125939 -0.000554257-0.731133 0.682233 uwb: 0.49890914 1151.14 484.825 +imu_odom_: 1691062467.561105716 -0.110133 -0.11971 10.0078 -0.056459 0.00745685 0.122505 0.19 0.08 pose: 0.0 5.03187 -3.37437 0 -0.00125939 -0.000554257-0.731133 0.682233 uwb: 0.0 1151.14 484.825 +imu_odom_: 1691062467.587979902 -0.131681 -0.40462 10.0844 -0.0830906 0.0447411 0.110787 0.16 0.08 pose: 0.25061965 5.03187 -3.37437 0 -0.00352456 -2.34334e-05-0.730483 0.682922 uwb: 0.50101766 1155.3 485.646 +imu_odom_: 1691062467.603995342 0.220267 -0.42138 9.91439 -0.072438 0.0138484 0.092678 0.16 0.08 pose: 0.0 5.03187 -3.37437 0 -0.00352456 -2.34334e-05-0.730483 0.682922 uwb: 0.0 1155.3 485.646 +imu_odom_: 1691062467.620973179 0.0383072 -0.0167594 10.2041 -0.056459 0.00213053 0.0884169 0.22 0.05 pose: 0.52057764 5.03358 -3.38422 0 -0.00250703 0.00299648 -0.728967 0.684538 uwb: 0.0 1155.3 485.646 +imu_odom_: 1691062467.646978001 0.663194 -0.45011 9.81623 -0.0649811 0.0351537 0.1012 0.22 0.05 pose: 0.0 5.03358 -3.38422 0 -0.00250703 0.00299648 -0.728967 0.684538 uwb: 0.49914244 1154.86 485.465 +imu_odom_: 1691062467.663965461 0.596156 -0.19393 10.4579 -0.0617853 -0.00213053 0.0884169 0.22 0.05 pose: 0.42914416 5.03532 -3.39407 0 -0.0003359330.00692421 -0.728053 0.685486 uwb: 0.0 1154.86 485.465 +imu_odom_: 1691062467.690033860 0.711078 -0.476446 9.67257 -0.0692422 0.00106526 0.0852212 0.22 0.05 pose: 0.0 5.03532 -3.39407 0 -0.0003359330.00692421 -0.728053 0.685486 uwb: 0.49920661 1155.3 485.646 +imu_odom_: 1691062467.717247509 0.373495 -0.289698 9.39245 -0.0330232 0.00639159 0.0703074 0.22 0.05 pose: 0.43013863 5.02546 -3.39575 0 -0.001697 0.00572837 -0.727232 0.686366 uwb: 0.0 1155.3 485.646 +imu_odom_: 1691062467.733290364 0.52433 -0.361524 9.84735 -0.0532632 -0.0191748 0.0809601 0.22 0.05 pose: 0.0 5.02546 -3.39575 0 -0.001697 0.00572837 -0.727232 0.686366 uwb: 0.0 1155.3 485.646 +imu_odom_: 1691062467.750270242 0.0837971 -0.251391 9.74679 -0.0415453 0.0351537 0.0436758 0.21 0.05 pose: 0.43239298 5.02716 -3.40561 0 -0.00378523 0.00414931 -0.726592 0.687046 uwb: 0.50006984 1151.73 484.46 +imu_odom_: 1691062467.765999879 0.373495 -0.100556 10.343 -0.056459 -0.0117179 0.0788296 0.21 0.05 pose: 0.0 5.02716 -3.40561 0 -0.00378523 0.00414931 -0.726592 0.687046 uwb: 0.0 1151.73 484.46 +imu_odom_: 1691062467.782941261 0.454898 -0.258574 10.3238 -0.0585895 -0.00213053 0.0756338 0.21 0.05 pose: 0.0 5.02716 -3.40561 0 -0.00378523 0.00414931 -0.726592 0.687046 uwb: 0.0 1151.73 484.46 +imu_odom_: 1691062467.800059375 0.574608 -0.201113 9.94791 -0.0479369 -0.0106526 0.0617853 0.17 0 pose: 0.43846481 5.02889 -3.41546 0 -0.00235953 0.00383902 -0.726144 0.687528 uwb: 0.0 1151.73 484.46 +imu_odom_: 1691062467.816155306 0.268151 -0.105345 9.8689 -0.052198 -0.0106526 0.0639159 0.17 0 pose: 0.0 5.02889 -3.41546 0 -0.00235953 0.00383902 -0.726144 0.687528 uwb: 0.0 1151.73 484.46 +imu_odom_: 1691062467.833960804 0.490811 -0.430956 9.30866 -0.0713727 -0.04048 0.076699 0.17 0 pose: 0.0 5.02889 -3.41546 0 -0.00235953 0.00383902 -0.726144 0.687528 uwb: 0.0 1151.73 484.46 +imu_odom_: 1691062467.858996813 0.648829 -0.174777 9.92875 -0.0234358 0.00532632 0.0447411 0.17 0.02 pose: 0.92828078 5.0316 -3.43075 0 -0.00269737 0.000944358 -0.72522 0.688511 uwb: 0.99906064 1149.54 483.599 +imu_odom_: 1691062467.885227652 0.411803 -0.229843 10.1778 -0.052198 -0.0117179 0.0745685 0.21 0.02 pose: 0.0 5.0316 -3.43075 0 -0.00269737 0.000944358 -0.72522 0.688511 uwb: 0.49979280 1150.48 483.726 +imu_odom_: 1691062467.902095251 0.531513 -0.114922 9.95509 -0.0383495 -0.00532632 0.0500674 0.21 0.02 pose: 0.25036009 5.03239 -3.43515 0 -0.00336588 -0.00154505 -0.725178 0.688551 uwb: 0.0 1150.48 483.726 +imu_odom_: 1691062467.928076742 0.452504 -0.105345 9.75637 -0.0617853 0.0191748 0.0809601 0.17 -0.02 pose: 0.0 5.03239 -3.43515 0 -0.00336588 -0.00154505 -0.725178 0.688551 uwb: 0.0 1150.48 483.726 +imu_odom_: 1691062467.944924217 0.105345 -0.59855 9.59357 -0.0447411 0.0308927 0.0500674 0.17 -0.02 pose: 0.34024499 5.02255 -3.43692 0 -0.00122451 -0.00095376 -0.724838 0.688918 uwb: 0.49978112 1154.62 484.631 +imu_odom_: 1691062467.962043789 0.837971 -0.0071826110.1778 -0.0330232 -0.00532632 0.0500674 0.23 0 pose: 0.0 5.02255 -3.43692 0 -0.00122451 -0.00095376 -0.724838 0.688918 uwb: 0.0 1154.62 484.631 +imu_odom_: 1691062467.978038523 0.215478 -0.213084 9.56484 -0.0532632 0 0.0713727 0.23 0 pose: 0.58912650 5.02433 -3.44676 0 0.000485609 -0.00254785 -0.72435 0.689428 uwb: 0.0 1154.62 484.631 +imu_odom_: 1691062467.994934702 0.282516 -0.25618 10.0676 -0.0330232 -0.0596548 0.0436758 0.23 0 pose: 0.0 5.02433 -3.44676 0 0.000485609 -0.00254785 -0.72435 0.689428 uwb: 0.50075519 1154.65 484.518 +imu_odom_: 1691062468.12088981 0.486023 -0.232238 9.27993 -0.036219 -0.0308927 0.0596548 0.17 0.02 pose: 0.0 5.02433 -3.44676 0 0.000485609 -0.00254785 -0.72435 0.689428 uwb: 0.0 1154.65 484.518 +imu_odom_: 1691062468.28130675 0.42138 -0.356736 10.3046 -0.072438 0.00426106 0.0830906 0.17 0.02 pose: 0.51017792 5.02611 -3.4566 0 0.000462563 -0.00137524 -0.724063 0.689732 uwb: 0.0 1154.65 484.518 +imu_odom_: 1691062468.44976407 0.23942 -0.143652 9.23683 -0.0468716 -0.0575243 0.0479369 0.17 0.02 pose: 0.0 5.02611 -3.4566 0 0.000462563 -0.00137524 -0.724063 0.689732 uwb: 0.50009622 1152.95 483.621 +imu_odom_: 1691062468.61193957 0.687136 -0.263362 9.85932 -0.0681769 -0.0255663 0.0703074 0.19 0.02 pose: 0.0 5.02611 -3.4566 0 0.000462563 -0.00137524 -0.724063 0.689732 uwb: 0.0 1152.95 483.621 +imu_odom_: 1691062468.78950175 0.56982 -0.234632 9.85693 -0.0692422 -0.0170442 0.0639159 0.19 0.02 pose: 0.49134431 5.02789 -3.46644 0 -0.000866462-0.000583118-0.723633 0.690184 uwb: 0.0 1152.95 483.621 +imu_odom_: 1691062468.104983296 0.519542 0.0191536 9.9503 -0.0607201 -0.02024 0.0585895 0.17 0.02 pose: 0.0 5.02789 -3.46644 0 -0.000866462-0.000583118-0.723633 0.690184 uwb: 0.50037918 1154.92 483.618 +imu_odom_: 1691062468.131096908 0.351948 -0.361524 9.63187 -0.0660464 -0.0330232 0.0596548 0.17 0.02 pose: 0.33880154 5.0296 -3.47629 0 -0.00295621 -0.00280205 -0.723338 0.690482 uwb: 0.0 1154.92 483.618 +imu_odom_: 1691062468.156973421 0.414197 -0.198719 9.44034 -0.0788296 -0.0149137 0.0596548 0.19 0.02 pose: 0.45130569 5.02386 -3.48447 0 -0.00268979 -0.00199873 -0.723036 0.690803 uwb: 0.49988632 1156.73 484.139 +imu_odom_: 1691062468.183109198 0.0550666 -0.430956 9.40682 -0.0532632 0.0458064 0.0468716 0.19 0.02 pose: 0.0 5.02386 -3.48447 0 -0.00268979 -0.00199873 -0.723036 0.690803 uwb: 0.0 1156.73 484.139 +imu_odom_: 1691062468.209034414 0.0766145 -0.229843 9.81623 -0.0607201 -0.0245011 0.0671117 0.18 0.02 pose: 0.52012290 5.0227 -3.49484 0 0.000623215 0.00191971 -0.722795 0.69106 uwb: 0.50120451 1156.82 483.825 +imu_odom_: 1691062468.226023339 1.17316 -0.292093 9.92397 -0.0628506 0.00426106 0.0543285 0.18 0.02 pose: 0.0 5.0227 -3.49484 0 0.000623215 0.00191971 -0.722795 0.69106 uwb: 0.0 1156.82 483.825 +imu_odom_: 1691062468.252038962 0.476446 0.0670376 9.94551 -0.0639159 0.0191748 0.0596548 0.19 0 pose: 0.42914141 5.02321 -3.49771 0 0.000984592 0.00256542 -0.72246 0.691408 uwb: 0.49764364 1156.44 483.463 +imu_odom_: 1691062468.277895643 0.100556 -0.275333 9.65582 -0.0479369 0.00319579 0.04048 0.23 0 pose: 0.6941505 5.02321 -3.49771 0 0.00128228 0.00199783 -0.722411 0.69146 uwb: 0.0 1156.44 483.463 +imu_odom_: 1691062468.293899716 0.0885855 -0.325611 9.65821 -0.0500674 -0.0117179 0.0500674 0.18 0 pose: 0.19074118 5.02449 -3.50495 0 0.00210026 0.000438199 -0.722277 0.691601 uwb: 0.49967342 1156.12 482.899 +imu_odom_: 1691062468.311903241 0.368707 -0.258574 9.55047 -0.0585895 0.0170442 0.0543285 0.18 0 pose: 0.0 5.02449 -3.50495 0 0.00210026 0.000438199 -0.722277 0.691601 uwb: 0.0 1156.12 482.899 +imu_odom_: 1691062468.328936787 0.490811 -0.177171 10.0556 -0.0426106 -0.0266316 0.0383495 0.18 0 pose: 0.32869053 5.02495 -3.50756 0 0.00371724 0.00332976 -0.72224 0.691624 uwb: 0.0 1156.12 482.899 +imu_odom_: 1691062468.353949767 0.270545 -0.222661 9.79947 -0.0532632 0 0.0500674 0.18 0 pose: 0.0 5.02495 -3.50756 0 0.00371724 0.00332976 -0.72224 0.691624 uwb: 0.0 1156.12 482.899 +imu_odom_: 1691062468.371048056 0.490811 -0.263362 10.1107 -0.0330232 -0.0213053 0.04048 0.18 0 pose: 0.34027138 5.0267 -3.5174 0 0.00203176 0.00309848 -0.722128 0.69175 uwb: 0.0 1156.12 482.899 +imu_odom_: 1691062468.397073303 0.656011 -0.0383072 10.1155 -0.0639159 -0.0234358 0.0543285 0.18 0 pose: 0.6952587 5.01861 -3.529 0 0.00283129 0.00336235 -0.722037 0.69184 uwb: 0.100033549 1160.32 483.671 +imu_odom_: 1691062468.423913670 0.399832 -0.112527 10.0149 -0.056459 0.0106526 0.0394148 0.2 0 pose: 0.36170949 5.01861 -3.529 0 0.00102072 8.78265e-05 -0.721907 0.691989 uwb: 0.0 1160.32 483.671 +imu_odom_: 1691062468.439931158 0.308852 -0.481235 9.75637 -0.0862864 -0.00106526 0.0500674 0.2 0 pose: 0.0 5.01861 -3.529 0 0.00102072 8.78265e-05 -0.721907 0.691989 uwb: 0.50021586 1163.53 484.482 +imu_odom_: 1691062468.457047529 0.634463 -0.37589 10.1394 -0.056459 0.0340885 0.0298274 0.24 0 pose: 0.0 5.01861 -3.529 0 0.00102072 8.78265e-05 -0.721907 0.691989 uwb: 0.0 1163.53 484.482 +imu_odom_: 1691062468.482996367 0.447716 -0.0383072 9.7851 -0.0479369 0.00745685 0.0511327 0.24 0 pose: 0.49893267 5.02037 -3.53885 0 0.00117343 -0.000339061-0.721873 0.692024 uwb: 0.0 1163.53 484.482 +imu_odom_: 1691062468.509863273 0.277727 -0.287304 9.7037 -0.0308927 0.00958738 0.0213053 0.25 0 pose: 0.36029797 5.02213 -3.54869 0 0.00173936 -0.00255754 -0.7218 0.692095 uwb: 0.50004380 1164.4 484.858 +imu_odom_: 1691062468.525864138 0.174777 -0.155623 9.92397 -0.04048 0.0213053 0.0426106 0.25 0 pose: 0.6888718 5.02213 -3.54869 0 0.00185734 -0.00189683 -0.721845 0.69205 uwb: 0.0 1164.4 484.858 +imu_odom_: 1691062468.552859656 0.553061 -0.162806 10.058 -0.0436758 -0.0436758 0.0330232 0.21 0 pose: 0.0 5.02213 -3.54869 0 0.00185734 -0.00189683 -0.721845 0.69205 uwb: 0.50070581 1165.33 485.056 +imu_odom_: 1691062468.577909965 0.905008 -0.272939 10.5967 -0.0607201 -0.00319579 0.0575243 0.21 0 pose: 0.35979053 5.0239 -3.55854 0 0.00373573 0.000999096 -0.721955 0.691929 uwb: 0.0 1165.33 485.056 +imu_odom_: 1691062468.594891017 0.521936 -0.292093 9.31823 -0.0575243 0.0553937 0.0298274 0.21 -0.02 pose: 0.0 5.0239 -3.55854 0 0.00373573 0.000999096 -0.721955 0.691929 uwb: 0.49907557 1162.65 484.152 +imu_odom_: 1691062468.619880958 0.196325 -0.167594 9.77313 -0.0830906 0.0351537 0.0607201 0.21 -0.02 pose: 0.52045827 5.02514 -3.56552 0 -0.000518812-0.00275472 -0.721857 0.692037 uwb: 0.0 1162.65 484.152 +imu_odom_: 1691062468.646872976 0.320823 -0.440533 9.65821 -0.056459 -0.00532632 0.0245011 0.21 -0.02 pose: 0.41970993 5.01705 -3.5771 0 0.000339628 -6.95498e-05-0.721732 0.692173 uwb: 0.49954218 1163.19 484.003 +imu_odom_: 1691062468.662880840 0.4956 -0.167594 9.75158 -0.0319579 0.0245011 0.0383495 0.21 -0.02 pose: 0.0 5.01705 -3.5771 0 0.000339628 -6.95498e-05-0.721732 0.692173 uwb: 0.0 1163.19 484.003 +imu_odom_: 1691062468.689894147 0.61531 0.0622492 10.3286 -0.0458064 -0.00958738 0.0330232 0.23 0.02 pose: 0.42999882 5.01757 -3.57998 0 -0.00073082 0.00081105 -0.721882 0.692016 uwb: 0.50311181 1160.94 483.296 +imu_odom_: 1691062468.714993160 0.258574 -0.42138 9.8665 -0.072438 0.056459 0.0532632 0.23 0.02 pose: 0.0 5.01757 -3.57998 0 -0.00073082 0.00081105 -0.721882 0.692016 uwb: 0.0 1160.94 483.296 +imu_odom_: 1691062468.732017374 0.368707 -0.428562 9.40203 -0.0649811 -0.00958738 0.036219 0.23 0 pose: 0.52112320 5.01933 -3.58983 0 -0.0001833270.00116996 -0.721824 0.692076 uwb: 0.0 1160.94 483.296 +imu_odom_: 1691062468.756951904 0.581791 -0.258574 9.56244 -0.0628506 0.0532632 0.0436758 0.23 0 pose: 0.0 5.01933 -3.58983 0 -0.0001833270.00116996 -0.721824 0.692076 uwb: 0.49653250 1162.48 483.115 +imu_odom_: 1691062468.783990584 0.428562 -0.071826 10.0916 -0.0511327 -0.0500674 0.036219 0.18 -0.02 pose: 0.25032812 5.02109 -3.59967 0 -0.00171772 0.00215361 -0.721832 0.692062 uwb: 0.0 1162.48 483.115 +imu_odom_: 1691062468.799877711 0.888249 0.0335188 9.83538 -0.0585895 0.0308927 0.0426106 0.18 -0.02 pose: 0.0 5.02109 -3.59967 0 -0.00171772 0.00215361 -0.721832 0.692062 uwb: 0.50044626 1160.82 482.079 +imu_odom_: 1691062468.817929647 0.344765 -0.526724 10.161 -0.0511327 0.0255663 0.0308927 0.18 0 pose: 0.51885428 5.02285 -3.60951 0 -0.00133054 -0.00181623 -0.721838 0.692059 uwb: 0.0 1160.82 482.079 +imu_odom_: 1691062468.841867660 0.205901 -0.440533 9.18655 -0.0287621 -0.0181095 0.0532632 0.18 0 pose: 0.0 5.02285 -3.60951 0 -0.00133054 -0.00181623 -0.721838 0.692059 uwb: 0.49939928 1164.5 482.992 +imu_odom_: 1691062468.868914505 0.265756 -0.0311246 9.35654 -0.0308927 -0.0308927 0.015979 0.23 0 pose: 0.49956260 5.01715 -3.6177 0 -0.00173623 0.00137985 -0.721764 0.692136 uwb: 0.0 1164.5 482.992 +imu_odom_: 1691062468.893866534 0.179565 -0.399832 9.663 -0.0660464 0.00745685 0.0532632 0.18 -0.02 pose: 0.0 5.01715 -3.6177 0 -0.00173623 0.00137985 -0.721764 0.692136 uwb: 0.50069707 1167.21 483.837 +imu_odom_: 1691062468.918976920 0.435745 -0.208296 9.81383 -0.0351537 -0.04048 0.0213053 0.21 0 pose: 0.7083822 5.01477 -3.62112 0 -0.00105497 0.00108397 -0.721822 0.692077 uwb: 0.0 1167.21 483.837 +imu_odom_: 1691062468.932968126 0.505177 -0.0335188 9.89524 -0.0436758 0.0106526 0.0458064 0.21 0 pose: 0.0 5.01477 -3.62112 0 -0.00105497 0.00108397 -0.721822 0.692077 uwb: 0.0 1167.21 483.837 +imu_odom_: 1691062468.948845046 0.354342 -0.447716 9.61511 -0.0532632 -0.0330232 0.0415453 0.18 0 pose: 0.52057785 5.01653 -3.63096 0 0.000680963 0.00215106 -0.721911 0.691982 uwb: 0.50042000 1169.6 484.147 +imu_odom_: 1691062468.972824471 0.3304 -0.323217 9.71806 -0.0372843 0.0191748 0.0255663 0.18 0 pose: 0.0 5.01653 -3.63096 0 0.000680963 0.00215106 -0.721911 0.691982 uwb: 0.0 1169.6 484.147 +imu_odom_: 1691062468.988851291 0.447716 -0.179565 10.003 -0.0447411 -0.0308927 0.0553937 0.19 0 pose: 0.71815204 5.01773 -3.63765 0 -0.0004850180.002454 -0.722099 0.691786 uwb: 0.50130950 1169.6 484.17 +imu_odom_: 1691062469.6836153 0.536301 -0.339977 9.72285 -0.0447411 -0.00106526 0.0298274 0.19 0 pose: 0.8002474 5.01829 -3.64081 0 -0.0005199190.00154893 -0.722056 0.691832 uwb: 0.0 1169.6 484.17 +imu_odom_: 1691062469.30855250 0.289698 -0.186748 9.54808 -0.0649811 0.0383495 0.0553937 0.18 0 pose: 0.0 5.01829 -3.64081 0 -0.0005199190.00154893 -0.722056 0.691832 uwb: 0.0 1169.6 484.17 +imu_odom_: 1691062469.55833244 0.6608 -0.265756 9.9503 -0.0319579 -0.0298274 0.0276969 0.18 0 pose: 0.33070286 5.02004 -3.65065 0 -0.00151005 0.000807108 -0.722035 0.691854 uwb: 0.49859450 1167.43 483.167 +imu_odom_: 1691062469.69865284 0.21069 -0.169988 9.94551 -0.0458064 -0.0255663 0.0500674 0.18 0 pose: 0.0 5.02004 -3.65065 0 -0.00151005 0.000807108 -0.722035 0.691854 uwb: 0.0 1167.43 483.167 +imu_odom_: 1691062469.84885677 0.560243 -0.167594 10.398 -0.0500674 -0.0340885 0.0436758 0.2 0 pose: 0.47925039 5.02004 -3.65065 0 -0.00121102 -6.90164e-05-0.722025 0.691866 uwb: 0.49757676 1172.11 484.135 +imu_odom_: 1691062469.111944782 0.610521 -0.0742203 9.50498 -0.0490022 -0.0276969 0.0553937 0.2 0 pose: 0.0 5.02004 -3.65065 0 -0.00121102 -6.90164e-05-0.722025 0.691866 uwb: 0.0 1172.11 484.135 +imu_odom_: 1691062469.136869698 -0.0167594 -0.263362 9.35175 -0.04048 0.0639159 0.0287621 0.25 0 pose: 0.31055968 5.01196 -3.66225 0 -0.00146339 -0.00220029 -0.721929 0.691962 uwb: 0.50002358 1174.07 484.25 +imu_odom_: 1691062469.153804095 0.0694318 -0.213084 10.2256 -0.0585895 -0.02024 0.0490022 0.25 0 pose: 0.0 5.01196 -3.66225 0 -0.00146339 -0.00220029 -0.721929 0.691962 uwb: 0.0 1174.07 484.25 +imu_odom_: 1691062469.170807317 0.577003 -0.0454898 10.2472 -0.0649811 -0.0106526 0.0490022 0.23 -0.02 pose: 0.50999752 5.01372 -3.6721 0 0.000827286 -0.00134237 -0.721899 0.691996 uwb: 0.0 1174.07 484.25 +imu_odom_: 1691062469.194831663 0.325611 -0.0622492 9.8282 -0.056459 0.02024 0.0372843 0.23 -0.02 pose: 0.0 5.01372 -3.6721 0 0.000827286 -0.00134237 -0.721899 0.691996 uwb: 0.49976403 1173.74 483.764 +imu_odom_: 1691062469.219919021 0.0957681 -0.397437 9.36851 -0.0692422 0 0.0511327 0.18 0.02 pose: 0.50953673 5.01548 -3.68194 0 0.00364746 -0.00228288 -0.721828 0.69206 uwb: 0.0 1173.74 483.764 +imu_odom_: 1691062469.246798478 0.265756 -0.143652 9.32781 -0.0777643 0.00106526 0.0426106 0.22 0 pose: 0.0 5.01548 -3.68194 0 0.00364746 -0.00228288 -0.721828 0.69206 uwb: 0.50070893 1172.95 483.105 +imu_odom_: 1691062469.271956994 0.0287304 -0.493206 9.59357 -0.0436758 0.015979 0.0351537 0.19 0 pose: 0.32016616 5.01724 -3.69179 0 0.00433356 0.00074304 -0.721726 0.692164 uwb: 0.0 1172.95 483.105 +imu_odom_: 1691062469.288914138 0.316035 -0.0814029 10.1083 -0.0436758 -0.00852212 0.0319579 0.19 0 pose: 0.0 5.01724 -3.69179 0 0.00433356 0.00074304 -0.721726 0.692164 uwb: 0.50247332 1172.97 483.038 +imu_odom_: 1691062469.304845309 0.61531 -0.19393 9.89524 -0.072438 0.00745685 0.056459 0.23 0 pose: 0.52282365 5.019 -3.70163 0 0.00630054 0.00362841 -0.72176 0.692106 uwb: 0.0 1172.97 483.038 +imu_odom_: 1691062469.331793592 0.739808 -0.138864 10.1394 -0.0532632 0 0.0308927 0.23 0 pose: 0.0 5.019 -3.70163 0 0.00630054 0.00362841 -0.72176 0.692106 uwb: 0.0 1172.97 483.038 +imu_odom_: 1691062469.357799310 0.620098 -0.371101 10.4363 -0.0660464 0.00426106 0.0426106 0.18 0.02 pose: 0.52662948 5.01042 -3.71041 0 0.00354334 -0.000172833-0.721775 0.692118 uwb: 0.49927116 1171.62 482.588 +imu_odom_: 1691062469.384911784 0.600945 -0.361524 9.99579 -0.0479369 -0.0255663 0.0500674 0.25 -0.02 pose: 0.8032807 5.01092 -3.71324 0 0.00273792 -0.000197995-0.721768 0.692129 uwb: 0.49967654 1169.4 481.709 +imu_odom_: 1691062469.400776170 0.134075 -0.129287 9.663 -0.052198 0.0276969 0.0415453 0.18 0 pose: 0.0 5.01092 -3.71324 0 0.00273792 -0.000197995-0.721768 0.692129 uwb: 0.0 1169.4 481.709 +imu_odom_: 1691062469.417805348 0.828394 -0.0909797 10.1418 -0.0372843 -0.0500674 0.0383495 0.18 0 pose: 0.0 5.01092 -3.71324 0 0.00273792 -0.000197995-0.721768 0.692129 uwb: 0.0 1169.4 481.709 +imu_odom_: 1691062469.442773426 0.35913 -0.277727 10.3262 -0.0553937 0.00319579 0.0436758 0.18 0 pose: 0.52978498 5.01269 -3.72308 0 -0.00109076 -0.000370762-0.721647 0.692261 uwb: 0.49892703 1167.26 480.595 +imu_odom_: 1691062469.459909926 0.562637 -0.0814029 9.48104 -0.0213053 0.00745685 0.0330232 0.18 0 pose: 0.0 5.01269 -3.72308 0 -0.00109076 -0.000370762-0.721647 0.692261 uwb: 0.0 1167.26 480.595 +imu_odom_: 1691062469.476016661 0.0622492 -0.23942 9.96706 -0.0532632 0.0330232 0.056459 0.2 0 pose: 0.33277065 5.01269 -3.72308 0 -0.00115488 -0.000969082-0.721636 0.692271 uwb: 0.0 1167.26 480.595 +imu_odom_: 1691062469.492886897 0.629675 -0.227449 10.3669 -0.0628506 -0.0458064 0.0394148 0.2 0 pose: 0.41933972 5.01446 -3.73292 0 -2.43355e-05-0.000414636-0.721605 0.692305 uwb: 0.50137094 1167.31 480.439 +imu_odom_: 1691062469.509884287 0.476446 -0.114922 9.69412 -0.0607201 0.02024 0.0383495 0.2 0 pose: 0.0 5.01446 -3.73292 0 -2.43355e-05-0.000414636-0.721605 0.692305 uwb: 0.0 1167.31 480.439 +imu_odom_: 1691062469.526880802 0.387861 -0.543484 9.67976 -0.0884169 -0.00106526 0.0468716 0.18 0 pose: 0.41868353 5.01623 -3.74276 0 -0.000318067-0.00242646 -0.721565 0.692342 uwb: 0.0 1167.31 480.439 +imu_odom_: 1691062469.544948202 0.23942 0.047884 9.84017 -0.0330232 -0.00532632 0.0298274 0.18 0 pose: 0.0 5.01623 -3.74276 0 -0.000318067-0.00242646 -0.721565 0.692342 uwb: 0.49908160 1168.84 480.365 +imu_odom_: 1691062469.560815504 0.258574 -0.21069 9.30866 -0.056459 0.00426106 0.0351537 0.18 0 pose: 0.0 5.01623 -3.74276 0 -0.000318067-0.00242646 -0.721565 0.692342 uwb: 0.0 1168.84 480.365 +imu_odom_: 1691062469.577750776 0.37589 -0.275333 10.4698 -0.0500674 0.036219 0.0490022 0.18 0.02 pose: 0.41999881 5.00815 -3.75438 0 0.000889122 -0.000739256-0.721596 0.692314 uwb: 0.0 1168.84 480.365 +imu_odom_: 1691062469.595867462 0.260968 -0.232238 9.65103 -0.0308927 -0.0223706 0.0276969 0.18 0 pose: 0.0 5.00815 -3.75438 0 0.000889122 -0.000739256-0.721596 0.692314 uwb: 0.49971153 1171.69 480.877 +imu_odom_: 1691062469.620796462 0.21069 -0.0646434 9.60314 -0.0649811 -0.0117179 0.0511327 0.18 0 pose: 0.33999737 5.00815 -3.75438 0 0.00123947 0.00195506 -0.721588 0.692319 uwb: 0.0 1171.69 480.877 +imu_odom_: 1691062469.647871898 0.402226 -0.184354 9.63187 -0.0436758 -0.02024 0.0383495 0.18 0 pose: 0.0 5.00815 -3.75438 0 0.00123947 0.00195506 -0.721588 0.692319 uwb: 0.50030356 1173.65 481.035 +imu_odom_: 1691062469.663808610 1.10852 -0.1652 10.331 -0.0628506 -0.00426106 0.0479369 0.18 0 pose: 0.16946062 5.00992 -3.76422 0 0.00259259 0.00246141 -0.721597 0.692304 uwb: 0.0 1173.65 481.035 +imu_odom_: 1691062469.681902549 0.526724 -0.191536 10.3118 -0.0447411 -0.0127832 0.0319579 0.2 -0.02 pose: 0.53043533 5.00992 -3.76422 0 0.00179866 -0.000522033-0.72151 0.692402 uwb: 0.0 1173.65 481.035 +imu_odom_: 1691062469.698841611 1.59933 -0.316035 9.68215 -0.076699 -0.0607201 0.00745685 0.2 -0.02 pose: 0.0 5.00992 -3.76422 0 0.00179866 -0.000522033-0.72151 0.692402 uwb: 0.49827085 1175.6 481.244 +imu_odom_: 1691062469.712796368 1.81959 -0.0383072 9.92397 -0.0692422 -0.0511327 -0.12144 0.2 -0.02 pose: 0.0 5.00992 -3.76422 0 0.00179866 -0.000522033-0.72151 0.692402 uwb: 0.0 1175.6 481.244 +imu_odom_: 1691062469.729786758 1.78129 0.3304 10.07 -0.0585895 -0.0149137 -0.226901 0.14 -0.26 pose: 0.48916600 5.01169 -3.77406 0 -0.00249345 -0.00409008 -0.722043 0.691832 uwb: 0.0 1175.6 481.244 +imu_odom_: 1691062469.743891416 1.72143 0.0837971 9.56484 -0.0639159 -0.0127832 -0.295078 0.14 -0.26 pose: 0.0 5.01169 -3.77406 0 -0.00249345 -0.00409008 -0.722043 0.691832 uwb: 0.50163049 1173.37 480.371 +imu_odom_: 1691062469.760845644 1.18513 -0.007182619.89284 -0.0671117 0.0298274 -0.385626 0.11 -0.38 pose: 0.39101316 5.01348 -3.78385 0 -0.00479757 -0.00758219 -0.725658 0.687997 uwb: 0.0 1173.37 480.371 +imu_odom_: 1691062469.774834522 1.1971 0.117316 10.1251 -0.052198 0.0298274 -0.456998 0.11 -0.38 pose: 0.0 5.01348 -3.78385 0 -0.00479757 -0.00758219 -0.725658 0.687997 uwb: 0.0 1173.37 480.371 +imu_odom_: 1691062469.790756360 1.08457 -0.167594 9.79468 -0.0671117 0.00106526 -0.455933 0.11 -0.38 pose: 0.0 5.01348 -3.78385 0 -0.00479757 -0.00758219 -0.725658 0.687997 uwb: 0.49979320 1177.57 481.371 +imu_odom_: 1691062469.805779378 0.97444 -0.258574 9.90721 -0.0660464 0.0319579 -0.469782 0.09 -0.5 pose: 0.46864944 5.01355 -3.78389 0 -0.00700404 -0.0109203 -0.733163 0.679929 uwb: 0.0 1177.57 481.371 +imu_odom_: 1691062469.821745544 0.890643 -0.19393 9.48343 -0.0596548 -0.0191748 -0.488956 0.09 -0.5 pose: 0.0 5.01355 -3.78389 0 -0.00700404 -0.0109203 -0.733163 0.679929 uwb: 0.0 1177.57 481.371 +imu_odom_: 1691062469.836737065 0.758962 -0.177171 9.71567 -0.0713727 0.00639159 -0.496413 0.09 -0.5 pose: 0.0 5.01355 -3.78389 0 -0.00700404 -0.0109203 -0.733163 0.679929 uwb: 0.50039979 1179.63 481.261 +imu_odom_: 1691062469.853751953 0.859518 -0.179565 9.8258 -0.0745685 -0.0415453 -0.497478 0.07 -0.5 pose: 0.45980705 5.00555 -3.79556 0 -0.0108335 -0.0129656 -0.741252 0.671014 uwb: 0.0 1179.63 481.261 +imu_odom_: 1691062469.867929519 0.866701 -0.0191536 9.92875 -0.0639159 -0.00852212 -0.519849 0.07 -0.55 pose: 0.0 5.00555 -3.79556 0 -0.0108335 -0.0129656 -0.741252 0.671014 uwb: 0.0 1179.63 481.261 +imu_odom_: 1691062469.884895412 0.399832 -0.0957681 10.1969 -0.0553937 -0.0213053 -0.532632 0.07 -0.55 pose: 0.0 5.00555 -3.79556 0 -0.0108335 -0.0129656 -0.741252 0.671014 uwb: 0.49914867 1179.33 480.66 +imu_odom_: 1691062469.900782838 0.536301 -0.0143652 9.96706 -0.0596548 -0.0276969 -0.549676 0.07 -0.61 pose: 0.23033952 5.00562 -3.7956 0 -0.0123686 -0.014749 -0.745406 0.666333 uwb: 0.0 1179.33 480.66 +imu_odom_: 1691062469.919013554 0.588974 -0.143652 9.68455 -0.0543285 0.0426106 -0.56246 0.07 -0.61 pose: 0.0 5.00562 -3.7956 0 -0.0123686 -0.014749 -0.745406 0.666333 uwb: 0.0 1179.33 480.66 +imu_odom_: 1691062469.935933077 0.596156 -0.131681 9.84735 -0.0383495 0.0117179 -0.536893 0.07 -0.61 pose: 0.31022431 5.00562 -3.7956 0 -0.0103318 -0.0146903 -0.751327 0.659685 uwb: 0.50098890 1178 480.103 +imu_odom_: 1691062469.952756652 0.584185 -0.54109 9.83538 -0.0628506 0.015979 -0.484695 0.05 -0.5 pose: 0.45139629 5.00537 -3.79545 0 -0.0064021 -0.0117916 -0.760105 0.649661 uwb: 0.0 1178 480.103 +imu_odom_: 1691062469.970917375 0.435745 -0.457293 9.89524 -0.0436758 0.0138484 -0.456998 0.05 -0.5 pose: 0.6955797 5.00562 -3.7956 0 -0.00671356 -0.0111478 -0.761287 0.648284 uwb: 0.0 1178 480.103 +imu_odom_: 1691062469.987869270 0.665588 -0.251391 9.9934 -0.056459 -0.00852212 -0.414388 0.05 -0.41 pose: 0.0 5.00562 -3.7956 0 -0.00671356 -0.0111478 -0.761287 0.648284 uwb: 0.49832335 1179.02 480.104 +imu_odom_: 1691062470.1792822 0.447716 -0.0407014 10.1418 -0.0607201 0.0170442 -0.376038 0.05 -0.47 pose: 0.44980396 5.00562 -3.7956 0 -0.00874429 -0.00797619 -0.768318 0.639958 uwb: 0.0 1179.02 480.104 +imu_odom_: 1691062470.18734807 0.725443 -0.328006 10.0796 -0.0468716 0.00426106 -0.330232 0.04 -0.35 pose: 0.0 5.00562 -3.7956 0 -0.00874429 -0.00797619 -0.768318 0.639958 uwb: 0.0 1179.02 480.104 +imu_odom_: 1691062470.35762533 0.519542 -0.407014 9.71088 -0.0585895 -0.0170442 -0.307861 0.04 -0.35 pose: 0.0 5.00562 -3.7956 0 -0.00874429 -0.00797619 -0.768318 0.639958 uwb: 0.50095694 1185.47 481.997 +imu_odom_: 1691062470.53750907 0.672771 -0.234632 9.89763 -0.0511327 -0.015979 -0.285491 0.04 -0.38 pose: 0.21066581 5.00747 -3.80542 0 -0.00788402 -0.00774951 -0.771018 0.636717 uwb: 0.0 1185.47 481.997 +imu_odom_: 1691062470.70749762 0.579397 -0.40462 9.91199 -0.0681769 0 -0.246076 0.04 -0.38 pose: 0.0 5.00747 -3.80542 0 -0.00788402 -0.00774951 -0.771018 0.636717 uwb: 0.0 1185.47 481.997 +imu_odom_: 1691062470.84749436 0.557849 -0.19393 9.89524 -0.0607201 0.00958738 -0.219444 0.04 -0.38 pose: 0.34829162 5.00747 -3.80542 0 -0.00978721 -0.00655767 -0.774847 0.632039 uwb: 0.0 1185.47 481.997 +imu_odom_: 1691062470.101820033 0.605733 -0.383072 9.95748 -0.0543285 0.00745685 -0.175769 0.03 -0.2 pose: 0.40984423 5.0074 -3.80538 0 -0.00956057 -0.00556854 -0.778541 0.627496 uwb: 0.49929469 1185.52 481.864 +imu_odom_: 1691062470.127811470 0.454898 -0.114922 10.0054 -0.0500674 0.00532632 -0.149137 0.03 -0.2 pose: 0.7017918 5.00747 -3.80542 0 -0.00991003 -0.00496717 -0.77901 0.626914 uwb: 0.0 1185.52 481.864 +imu_odom_: 1691062470.144816449 0.344765 -0.248997 9.83538 -0.0596548 0.00745685 -0.143811 0.03 -0.23 pose: 0.0 5.00747 -3.80542 0 -0.00991003 -0.00496717 -0.77901 0.626914 uwb: 0.49996254 1184.13 481.446 +imu_odom_: 1691062470.161694275 0.641646 -0.105345 9.95509 -0.0500674 -0.0138484 -0.238619 0.02 -0.26 pose: 0.36044116 5.00741 -3.80539 0 -0.00768025 -0.00443491 -0.78124 0.624168 uwb: 0.0 1184.13 481.446 +imu_odom_: 1691062470.178692546 0.464475 0.23942 9.83299 -0.0468716 0.00852212 -0.300405 0.02 -0.35 pose: 0.0 5.00741 -3.80539 0 -0.00768025 -0.00443491 -0.78124 0.624168 uwb: 0.0 1184.13 481.446 +imu_odom_: 1691062470.205760703 0.138864 -0.260968 9.79228 -0.0660464 -0.00319579 -0.347276 0.02 -0.35 pose: 0.41087954 5.00747 -3.80542 0 -0.00568193 -0.00549923 -0.784448 0.620145 uwb: 0.49958924 1185.13 481.525 +imu_odom_: 1691062470.230716834 0.483629 -0.289698 9.83299 -0.0585895 -0.0308927 -0.390952 0.02 -0.38 pose: 0.0 5.00747 -3.80542 0 -0.00568193 -0.00549923 -0.784448 0.620145 uwb: 0.0 1185.13 481.525 +imu_odom_: 1691062470.257774491 0.667982 -0.253785 9.91918 -0.0617853 0.0138484 -0.389887 0.03 -0.53 pose: 0.61817410 5.00741 -3.80539 0 -0.00461708 -0.00198778 -0.792013 0.610484 uwb: 0.0 1185.13 481.525 +imu_odom_: 1691062470.282727706 0.177171 -0.0837971 9.87608 -0.0585895 0 -0.430367 0.03 -0.53 pose: 0.0 5.00741 -3.80539 0 -0.00461708 -0.00198778 -0.792013 0.610484 uwb: 0.0 1185.13 481.525 +imu_odom_: 1691062470.299815509 0.383072 -0.131681 9.94073 -0.0511327 -0.0213053 -0.470847 0.03 -0.61 pose: 0.6998962 5.00747 -3.80542 0 -0.00516791 -0.00231635 -0.792927 0.60929 uwb: 0.100172155 1185.58 481.687 +imu_odom_: 1691062470.325751245 0.684742 -0.167594 9.85214 -0.0649811 -0.0181095 -0.507066 0.03 -0.61 pose: 0.0 5.00747 -3.80542 0 -0.00516791 -0.00231635 -0.792927 0.60929 uwb: 0.0 1185.58 481.687 +imu_odom_: 1691062470.350714667 0.600945 -0.299275 10.0317 -0.0607201 0.0117179 -0.528371 0.03 -0.7 pose: 0.52020788 5.00747 -3.80542 0 -0.00361978 -0.00270245 -0.800167 0.599761 uwb: 0.49916929 1190.18 483.083 +imu_odom_: 1691062470.364880865 0.481235 -0.160412 9.89524 -0.0596548 -0.00532632 -0.533697 0.03 -0.7 pose: 0.0 5.00747 -3.80542 0 -0.00361978 -0.00270245 -0.800167 0.599761 uwb: 0.0 1190.18 483.083 +imu_odom_: 1691062470.389837288 0.550666 -0.339977 9.87608 -0.056459 -0.00106526 -0.553937 0.02 -0.58 pose: 0.42970461 5.00747 -3.80542 0 -0.00526748 -0.0044107 -0.80708 0.590402 uwb: 0.50008794 1189.87 482.543 +imu_odom_: 1691062470.416678552 0.691924 -0.138864 10.0748 -0.0543285 0 -0.580569 0.02 -0.58 pose: 0.0 5.00747 -3.80542 0 -0.00526748 -0.0044107 -0.80708 0.590402 uwb: 0.0 1189.87 482.543 +imu_odom_: 1691062470.441688927 0.545878 -0.177171 10.0987 -0.0447411 0.0138484 -0.62531 0.02 -0.7 pose: 0.39194947 5.00937 -3.81524 0 -0.00591764 -0.00341478 -0.813671 0.581286 uwb: 0.50346216 1192.7 483.238 +imu_odom_: 1691062470.465805148 0.509965 -0.0335188 9.94312 -0.0617853 -0.0138484 -0.631702 0.02 -0.7 pose: 0.0 5.00937 -3.81524 0 -0.00591764 -0.00341478 -0.813671 0.581286 uwb: 0.0 1192.7 483.238 +imu_odom_: 1691062470.491814375 0.620098 -0.392649 10.0006 -0.052198 -0.00106526 -0.637028 0.01 -0.64 pose: 0.52923983 5.00937 -3.81524 0 -0.00685736 -0.00498647 -0.823063 0.567887 uwb: 0.49551218 1194.54 483.828 +imu_odom_: 1691062470.508651664 0.445322 -0.102951 9.87848 -0.0500674 -0.00532632 -0.657268 0.01 -0.64 pose: 0.0 5.00937 -3.81524 0 -0.00685736 -0.00498647 -0.823063 0.567887 uwb: 0.0 1194.54 483.828 +imu_odom_: 1691062470.533681871 0.356736 -0.0957681 9.9096 -0.0617853 -0.0127832 -0.668986 0.01 -0.73 pose: 0.47902018 5.00937 -3.81524 0 -0.00385404 -0.00673915 -0.832085 0.554594 uwb: 0.0 1194.54 483.828 +imu_odom_: 1691062470.559677683 0.40462 -0.241814 9.81144 -0.0511327 -0.00319579 -0.721184 0.01 -0.73 pose: 0.60953878 5.00931 -3.81521 0 -0.00116845 -0.00523469 -0.843667 0.53684 uwb: 0.49927428 1193.63 483.51 +imu_odom_: 1691062470.584714597 0.545878 -0.220267 9.94791 -0.0596548 -0.02024 -0.725445 0.01 -0.73 pose: 0.0 5.00931 -3.81521 0 -0.00116845 -0.00523469 -0.843667 0.53684 uwb: 0.49944342 1191.27 482.935 +imu_odom_: 1691062470.602654268 0.562637 -0.208296 9.81862 -0.0543285 0 -0.739294 0.01 -0.82 pose: 0.0 5.00931 -3.81521 0 -0.00116845 -0.00523469 -0.843667 0.53684 uwb: 0.0 1191.27 482.935 +imu_odom_: 1691062470.626764948 0.292093 -0.167594 9.68933 -0.0511327 -0.0127832 -0.76486 0.01 -0.82 pose: 0.7996939 5.00937 -3.81524 0 -0.00109602 -0.00445191 -0.845299 0.534274 uwb: 0.0 1191.27 482.935 +imu_odom_: 1691062470.652671228 0.366313 -0.138864 9.83538 -0.0511327 -0.0191748 -0.774447 0 -0.97 pose: 0.50998022 4.99954 -3.81709 0 -0.00428541 -0.00348944 -0.855559 0.517675 uwb: 0.0 1191.27 482.935 +imu_odom_: 1691062470.668767762 0.600945 -0.308852 9.94073 -0.0532632 -0.02024 -0.780839 0 -0.97 pose: 0.0 4.99954 -3.81709 0 -0.00428541 -0.00348944 -0.855559 0.517675 uwb: 0.0 1191.27 482.935 +imu_odom_: 1691062470.694789821 0.339977 -0.126893 9.59596 -0.0468716 0.0245011 -0.802144 0.01 -1 pose: 0.41013878 4.99954 -3.81709 0 -0.00231153 -0.00307723 -0.863944 0.503574 uwb: 0.100056376 1190.85 482.701 +imu_odom_: 1691062470.719756743 0.521936 -0.205901 9.9096 -0.0575243 -0.0223706 -0.797883 0.01 -1 pose: 0.0 4.99954 -3.81709 0 -0.00231153 -0.00307723 -0.863944 0.503574 uwb: 0.0 1190.85 482.701 +imu_odom_: 1691062470.745638234 0.797269 -0.265756 9.9527 -0.056459 -0.0394148 -0.80747 0 -0.97 pose: 0.43006040 4.99954 -3.81709 0 0.00124528 0.00270593 0.872708 -0.488234 uwb: 0.49930635 1189.88 482.523 +imu_odom_: 1691062470.770694396 0.61531 -0.174777 9.93594 -0.0617853 0.00106526 -0.842624 0 -0.97 pose: 0.0 4.99954 -3.81709 0 0.00124528 0.00270593 0.872708 -0.488234 uwb: 0.0 1189.88 482.523 +imu_odom_: 1691062470.796647921 0.344765 -0.28491 9.78989 -0.0681769 0.00319579 -0.824515 0 -1 pose: 0.51016978 4.99954 -3.81709 0 0.00270161 0.00321437 0.882968 -0.469415 uwb: 0.49987213 1187.57 481.83 +imu_odom_: 1691062470.813659025 0.272939 -0.263362 10.0221 -0.0671117 -0.00532632 -0.814927 0 -1 pose: 0.0 4.99954 -3.81709 0 0.00270161 0.00321437 0.882968 -0.469415 uwb: 0.0 1187.57 481.83 +imu_odom_: 1691062470.839795988 0.529119 0.0837971 10.0509 -0.052198 -0.0330232 -0.870321 0 -0.97 pose: 0.51244454 4.99954 -3.81709 0 0.00610342 0.00457727 0.893156 -0.449683 uwb: 0.50260476 1193.01 483.78 +imu_odom_: 1691062470.864632257 0.612916 -0.114922 9.85693 -0.0585895 -0.0287621 -0.86606 0 -0.94 pose: 0.24791649 4.99954 -3.81709 0 0.00443878 0.00262318 0.897919 -0.440131 uwb: 0.0 1193.01 483.78 +imu_odom_: 1691062470.889658381 0.428562 -0.244209 9.89524 -0.0543285 -0.0639159 -0.895887 0 -0.94 pose: 0.36046157 4.99905 -3.81679 0 0.00320343 0.00469496 0.9049 -0.425586 uwb: 0.49921595 1190.25 482.906 +imu_odom_: 1691062470.906767182 0.363919 -0.0383072 9.92636 -0.0639159 -0.0745685 -0.913997 0 -0.88 pose: 0.8078306 4.99954 -3.81709 0 0.00384242 0.00531803 0.906446 -0.422271 uwb: 0.0 1190.25 482.906 +imu_odom_: 1691062470.932629717 0.830788 -0.363919 10.0437 -0.072438 -0.0276969 -0.872452 0 -0.88 pose: 0.0 4.99954 -3.81709 0 0.00384242 0.00531803 0.906446 -0.422271 uwb: 0.0 1190.25 482.906 +imu_odom_: 1691062470.957759080 0.785298 -0.227449 10.1107 -0.0490022 -0.0181095 -0.890561 0 -0.82 pose: 0.48901745 4.99954 -3.81709 0 0.00427119 0.00498017 0.915793 -0.401598 uwb: 0.49960382 1189.17 483.038 +imu_odom_: 1691062470.974717397 0.505177 -0.148441 9.73243 -0.0649811 -0.0149137 -0.896953 0 -0.82 pose: 0.0 4.99954 -3.81709 0 0.00427119 0.00498017 0.915793 -0.401598 uwb: 0.0 1189.17 483.038 +imu_odom_: 1691062470.999743521 0.500388 -0.316035 9.9527 -0.0671117 -0.0213053 -0.891626 0 -0.91 pose: 0.43914777 4.99954 -3.81709 0 0.00728081 0.00503626 0.923738 -0.382923 uwb: 0.49986921 1191.85 484.126 +imu_odom_: 1691062471.23764093 0.275333 -0.260968 9.92875 -0.0660464 -0.0234358 -0.884169 0 -0.91 pose: 0.0 4.99954 -3.81709 0 0.00728081 0.00503626 0.923738 -0.382923 uwb: 0.0 1191.85 484.126 +imu_odom_: 1691062471.46752568 0.471658 0.011971 9.83299 -0.056459 -0.0372843 -0.898018 0 -0.91 pose: 0.40991422 4.99954 -3.81709 0 0.0073681 0.00472514 0.930891 -0.365192 uwb: 0.49913442 1194.67 484.832 +imu_odom_: 1691062471.71788034 0.474052 -0.11971 9.78989 -0.0607201 -0.00852212 -0.908671 0 -0.91 pose: 0.0 4.99954 -3.81709 0 0.0073681 0.00472514 0.930891 -0.365192 uwb: 0.0 1194.67 484.832 +imu_odom_: 1691062471.88671699 0.509965 -0.342371 10.0796 -0.0585895 -0.00213053 -0.912932 0 -1.06 pose: 0.49026284 4.99954 -3.81709 0 0.00522105 0.002409 0.938978 -0.343929 uwb: 0.50056933 1194.61 484.985 +imu_odom_: 1691062471.111671840 0.557849 -0.131681 9.96706 -0.0596548 -0.0234358 -0.916127 0 -1.06 pose: 0.0 4.99954 -3.81709 0 0.00522105 0.002409 0.938978 -0.343929 uwb: 0.0 1194.61 484.985 +imu_odom_: 1691062471.136618065 0.390255 -0.186748 9.6606 -0.0617853 0 -0.913997 0 -0.97 pose: 0.48062146 4.99954 -3.81709 0 0.00287191 0.00470057 0.946556 -0.322493 uwb: 0.49841707 1189.5 483.559 +imu_odom_: 1691062471.161597246 0.347159 -0.289698 9.7444 -0.0596548 -0.015979 -0.909736 0 -0.97 pose: 0.0 4.99954 -3.81709 0 0.00287191 0.00470057 0.946556 -0.322493 uwb: 0.0 1189.5 483.559 +imu_odom_: 1691062471.178656767 0.550666 -0.215478 10.058 -0.0617853 -0.0127832 -0.905475 0 -0.88 pose: 0.39873015 4.99954 -3.81709 0 0.00451793 0.00503542 0.952512 -0.304425 uwb: 0.0 1189.5 483.559 +imu_odom_: 1691062471.202586059 0.287304 -0.189142 9.77553 -0.0575243 0.00106526 -0.916127 0 -0.88 pose: 0.0 4.99954 -3.81709 0 0.00451793 0.00503542 0.952512 -0.304425 uwb: 0.50089305 1189 483.548 +imu_odom_: 1691062471.227580113 0.42138 -0.0909797 9.72046 -0.0671117 -0.0138484 -0.92465 0 -1 pose: 0.49974109 4.99954 -3.81709 0 0.00262988 0.00184725 0.959488 -0.281729 uwb: 0.0 1189 483.548 +imu_odom_: 1691062471.249591025 0.47884 -0.167594 9.89045 -0.0617853 -0.0308927 -0.92678 0 -1 pose: 0.0 4.99954 -3.81709 0 0.00262988 0.00184725 0.959488 -0.281729 uwb: 0.49926280 1194.39 485.554 +imu_odom_: 1691062471.263598579 0.325611 -0.265756 9.83777 -0.0607201 -0.0127832 -0.931041 0 -0.97 pose: 0.80973233 4.99908 -3.8168 0 0.00292521 0.00336852 0.969705 -0.244239 uwb: 0.0 1194.39 485.554 +imu_odom_: 1691062471.285591701 0.423774 -0.308852 9.92636 -0.0543285 -0.00426106 -0.949151 0 -0.97 pose: 0.0 4.99908 -3.8168 0 0.00292521 0.00336852 0.969705 -0.244239 uwb: 0.50187878 1195.62 486.373 +imu_odom_: 1691062471.302773418 0.617704 -0.225055 9.9503 -0.0596548 -0.0127832 -0.953412 0 -1.23 pose: 0.36000676 4.99932 -3.81695 0 0.00204997 0.000153726 0.973876 -0.227072 uwb: 0.0 1195.62 486.373 +imu_odom_: 1691062471.327649067 0.380678 -0.263362 9.84496 -0.056459 -0.00426106 -0.945955 0 -1.23 pose: 0.0 4.99932 -3.81695 0 0.00204997 0.000153726 0.973876 -0.227072 uwb: 0.0 1195.62 486.373 +imu_odom_: 1691062471.344572978 0.497994 -0.265756 9.88087 -0.0596548 -0.0181095 -0.937433 0 -1 pose: 0.42057366 4.99933 -3.81696 0 0.00179734 -0.0009307820.978385 -0.206784 uwb: 0.49917532 1196.02 486.676 +imu_odom_: 1691062471.360564238 0.572214 -0.177171 10.0269 -0.056459 0 -0.936367 0 -1 pose: 0.0 4.99933 -3.81696 0 0.00179734 -0.0009307820.978385 -0.206784 uwb: 0.0 1196.02 486.676 +imu_odom_: 1691062471.377633967 0.368707 -0.220267 9.98143 -0.0532632 0.00426106 -0.935302 0 -1 pose: 0.0 4.99933 -3.81696 0 0.00179734 -0.0009307820.978385 -0.206784 uwb: 0.0 1196.02 486.676 +imu_odom_: 1691062471.392579713 0.373495 -0.169988 9.81623 -0.0681769 -0.0426106 -0.928911 0 -1.26 pose: 0.39985004 4.99954 -3.81709 0 0.00392132 -8.33649e-050.982229 -0.187644 uwb: 0.50043226 1193.85 485.65 +imu_odom_: 1691062471.417631219 0.675165 -0.186748 9.84256 -0.056459 -0.04048 -0.922519 0 -1.26 pose: 0.0 4.99954 -3.81709 0 0.00392132 -8.33649e-050.982229 -0.187644 uwb: 0.0 1193.85 485.65 +imu_odom_: 1691062471.434687241 -0.0622492 -0.205901 9.60554 -0.0447411 0.0490022 -0.922519 0 -0.94 pose: 0.49997148 4.99933 -3.81695 0 0.00466319 0.0012294 0.986472 -0.163857 uwb: 0.49891868 1196.88 487.082 +imu_odom_: 1691062471.452690787 -0.299275 -0.0790087 10.307 -0.0543285 -0.00852212 -0.908671 0 -0.94 pose: 0.7008005 4.99954 -3.81709 0 0.00377643 0.00113656 0.987023 -0.160531 uwb: 0.0 1196.88 487.082 +imu_odom_: 1691062471.469615864 -0.316035 -0.0861913 9.72764 -0.0426106 -0.0138484 -0.909736 0 -0.94 pose: 0.0 4.99954 -3.81709 0 0.00377643 0.00113656 0.987023 -0.160531 uwb: 0.0 1196.88 487.082 +imu_odom_: 1691062471.483548759 -1.30963 -0.129287 9.90242 -0.0468716 0.0479369 -0.831972 0.04 -0.73 pose: 0.44976640 4.99954 -3.81709 0 -0.0009055360.00117652 0.99024 -0.139368 uwb: 0.0 1196.88 487.082 +imu_odom_: 1691062471.499643550 -0.878672 -0.608127 10.1754 -0.0660464 -0.0447411 -0.658333 0.05 -0.64 pose: 0.0 4.99954 -3.81709 0 -0.0009055360.00117652 0.99024 -0.139368 uwb: 0.49935030 1196.02 486.651 +imu_odom_: 1691062471.513544365 -0.105345 -0.995988 9.98382 -0.092678 -0.0681769 -0.574178 0.05 -0.64 pose: 0.0 4.99954 -3.81709 0 -0.0009055360.00117652 0.99024 -0.139368 uwb: 0.0 1196.02 486.651 +imu_odom_: 1691062471.529669486 0.466869 -0.217872 9.85453 -0.0447411 -0.0223706 -0.580569 0.05 -0.64 pose: 0.21058722 4.99954 -3.81709 0 -0.00315997 0.00068986 0.991392 -0.130885 uwb: 0.0 1196.02 486.651 +imu_odom_: 1691062471.547546170 0.390255 0.253785 9.35175 -0.0639159 -0.00426106 -0.550742 0.06 -0.61 pose: 0.0 4.99954 -3.81709 0 -0.00315997 0.00068986 0.991392 -0.130885 uwb: 0.50178837 1198.2 487.664 +imu_odom_: 1691062471.565610085 -0.0023942 -0.299275 9.61033 -0.0681769 0.0191748 -0.547546 0.06 -0.61 pose: 0.0 4.99954 -3.81709 0 -0.00315997 0.00068986 0.991392 -0.130885 uwb: 0.0 1198.2 487.664 +imu_odom_: 1691062471.581648882 -0.342371 -0.366313 9.90002 -0.0468716 -0.00426106 -0.552872 0.09 -0.53 pose: 0.30974627 4.99954 -3.81709 0 -0.00294788 -0.00104571 0.992642 -0.121049 uwb: 0.0 1198.2 487.664 +imu_odom_: 1691062471.599698215 -0.0766145 -0.177171 9.89763 -0.0681769 -0.0500674 -0.492152 0.09 -0.53 pose: 0.43960872 4.99373 -3.81807 0 -0.00405812 1.49466e-05 0.994135 -0.108069 uwb: 0.49910240 1199.09 488.034 +imu_odom_: 1691062471.617697678 0.347159 -0.454898 9.663 -0.0649811 -0.0287621 -0.452737 0.09 -0.53 pose: 0.0 4.99373 -3.81807 0 -0.00405812 1.49466e-05 0.994135 -0.108069 uwb: 0.0 1199.09 488.034 +imu_odom_: 1691062471.633760680 0.21069 -0.227449 10.0102 -0.0511327 0.00532632 -0.429302 0.11 -0.53 pose: 0.7145366 4.98969 -3.81879 0 -0.00473491 -0.0002052130.994359 -0.105963 uwb: 0.0 1199.09 488.034 +imu_odom_: 1691062471.651584870 0.174777 -0.150835 9.6223 -0.0500674 -0.00639159 -0.417584 0.11 -0.44 pose: 0.0 4.98969 -3.81879 0 -0.00473491 -0.0002052130.994359 -0.105963 uwb: 0.49895076 1203.1 489.612 +imu_odom_: 1691062471.669583459 0.272939 -0.162806 10.0724 -0.0500674 -0.02024 -0.397344 0.11 -0.44 pose: 0.68916139 4.98969 -3.81879 0 -0.00822645 -0.00145282 0.996032 -0.0886058 uwb: 0.0 1203.1 489.612 +imu_odom_: 1691062471.683670629 -0.129287 -0.287304 9.81623 -0.0500674 -0.0127832 -0.386691 0.11 -0.41 pose: 0.0 4.98969 -3.81879 0 -0.00822645 -0.00145282 0.996032 -0.0886058 uwb: 0.0 1203.1 489.612 +imu_odom_: 1691062471.699581981 0.505177 -0.141258 10.2496 -0.0340885 -0.0788296 -0.379234 0.11 -0.41 pose: 0.0 4.98969 -3.81879 0 -0.00822645 -0.00145282 0.996032 -0.0886058 uwb: 0.49973817 1202.08 489.586 +imu_odom_: 1691062471.716524265 1.53947 -0.0502782 9.78271 -0.0596548 -0.0543285 -0.335558 0.11 -0.41 pose: 0.33863570 4.97983 -3.82044 0 -0.00822401 0.000484531 0.996665 -0.0811823 uwb: 0.0 1202.08 489.586 +imu_odom_: 1691062471.734654964 1.35272 -0.117316 9.97424 -0.0468716 0.00319579 -0.28336 0.09 -0.38 pose: 0.40989105 4.97976 -3.8204 0 -0.00475762 0.00112664 0.997322 -0.0729675 uwb: 0.50046435 1205.13 491.005 +imu_odom_: 1691062471.752579185 1.07739 -0.519542 9.414 -0.0617853 -0.0138484 -0.246076 0.09 -0.38 pose: 0.8012399 4.97983 -3.82044 0 -0.00399758 0.00126298 0.997419 -0.0716786 uwb: 0.0 1205.13 491.005 +imu_odom_: 1691062471.768637522 0.873884 -0.155623 9.89045 -0.0436758 0.0458064 -0.24288 0.09 -0.38 pose: 0.0 4.97983 -3.82044 0 -0.00399758 0.00126298 0.997419 -0.0716786 uwb: 0.0 1205.13 491.005 +imu_odom_: 1691062471.785528478 0.909797 -0.153229 10.07 -0.0585895 0 -0.249272 0.09 -0.44 pose: 0.44100858 4.96997 -3.82215 0 -9.57744e-050.00105193 0.997869 -0.0652364 uwb: 0.49935321 1205.94 491.538 +imu_odom_: 1691062471.802668782 0.6608 0.1652 10.003 -0.056459 -0.00532632 -0.276969 0.06 -0.32 pose: 0.0 4.96997 -3.82215 0 -9.57744e-050.00105193 0.997869 -0.0652364 uwb: 0.0 1205.94 491.538 +imu_odom_: 1691062471.819735011 0.639252 -0.332794 9.64863 -0.0543285 -0.00532632 -0.287621 0.06 -0.32 pose: 0.0 4.96997 -3.82215 0 -9.57744e-050.00105193 0.997869 -0.0652364 uwb: 0.0 1205.94 491.538 +imu_odom_: 1691062471.836548392 0.651223 -0.320823 9.96706 -0.0639159 -0.0340885 -0.282295 0.05 -0.26 pose: 0.25059380 4.96997 -3.82215 0 0.00193487 0.00198055 0.998102 -0.0615126 uwb: 0.50032436 1202.65 490.747 +imu_odom_: 1691062471.853611413 0.871489 -0.275333 9.80186 -0.0543285 -0.00639159 -0.280165 0.05 -0.26 pose: 0.0 4.96997 -3.82215 0 0.00193487 0.00198055 0.998102 -0.0615126 uwb: 0.0 1202.65 490.747 +imu_odom_: 1691062471.868565616 0.814029 -0.184354 9.93354 -0.0628506 -0.00532632 -0.246076 0.05 -0.26 pose: 0.32859760 4.96997 -3.82215 0 0.0043709 0.00131252 0.998408 -0.0562192 uwb: 0.0 1202.65 490.747 +imu_odom_: 1691062471.884569708 0.744597 -0.222661 9.90242 -0.0649811 0.00958738 -0.22264 0.04 -0.23 pose: 0.42008954 4.96997 -3.82215 0 0.00853797 0.000699247 0.998724 -0.0497596 uwb: 0.0 1202.65 490.747 +imu_odom_: 1691062471.899556283 0.708684 -0.344765 9.92157 -0.0468716 0.00106526 -0.22051 0.04 -0.23 pose: 0.0 4.96997 -3.82215 0 0.00853797 0.000699247 0.998724 -0.0497596 uwb: 0.50033603 1206.17 492.262 +imu_odom_: 1691062471.924792395 0.387861 -0.148441 9.93594 -0.0585895 0.0138484 -0.194943 0.03 -0.17 pose: 0.6993424 4.96997 -3.82215 0 0.00919058 0.000652108 0.998764 -0.048844 uwb: 0.0 1206.17 492.262 +imu_odom_: 1691062471.941539574 0.237026 -0.253785 9.92875 -0.0585895 0.0255663 -0.160855 0.04 -0.23 pose: 0.0 4.96997 -3.82215 0 0.00919058 0.000652108 0.998764 -0.048844 uwb: 0.50130134 1204.77 491.876 +imu_odom_: 1691062471.959633819 -0.802058 -0.361524 9.75637 -0.0532632 0.0820254 -0.110787 0.05 -0.11 pose: 0.0 4.96997 -3.82215 0 0.00919058 0.000652108 0.998764 -0.048844 uwb: 0.0 1204.77 491.876 +imu_odom_: 1691062471.981677686 -0.679953 -0.40462 10.0149 -0.0575243 -0.0479369 -0.103331 0.05 -0.11 pose: 0.73963478 4.96011 -3.82378 0 0.00532194 -0.0001048220.999166 -0.0404928 uwb: 0.0 1204.77 491.876 +imu_odom_: 1691062472.5654225 0.162806 -0.0957681 10.0269 -0.056459 -0.0575243 -0.104396 0.07 -0.14 pose: 0.0 4.96011 -3.82378 0 0.00532194 -0.0001048220.999166 -0.0404928 uwb: 0.49810501 1204.25 491.893 +imu_odom_: 1691062472.30503345 0.409408 -0.0957681 9.78031 -0.0585895 -0.0287621 -0.109722 0.07 -0.14 pose: 0.39038645 4.96011 -3.82378 0 0.00175136 -0.0004080380.999289 -0.0376677 uwb: 0.0 1204.25 491.893 +imu_odom_: 1691062472.53600318 0.0167594 -0.260968 10.228 -0.0500674 0.0458064 -0.108657 0.1 -0.11 pose: 0.41942182 4.96006 -3.82375 0 0.000715562 0.00272279 0.999398 -0.0345823 uwb: 0.49867092 1202.73 491.818 +imu_odom_: 1691062472.77607194 -0.122104 -0.229843 9.79707 -0.056459 -0.00106526 -0.0735032 0.1 -0.11 pose: 0.0 4.96006 -3.82375 0 0.000715562 0.00272279 0.999398 -0.0345823 uwb: 0.0 1202.73 491.818 +imu_odom_: 1691062472.104910721 -0.0909797 -0.213084 9.94551 -0.0490022 -0.0181095 -0.0788296 0.11 -0.14 pose: 0.7066628 4.96011 -3.82378 0 -0.0001425110.00254048 0.999417 -0.0340577 uwb: 0.50105656 1203.23 491.864 +imu_odom_: 1691062472.121543295 0.411803 -0.339977 9.87848 -0.0639159 0.0127832 -0.0873517 0.11 -0.14 pose: 0.0 4.96011 -3.82378 0 -0.0001425110.00254048 0.999417 -0.0340577 uwb: 0.0 1203.23 491.864 +imu_odom_: 1691062472.147613786 0.222661 0.023942 9.98143 -0.0532632 -0.0117179 -0.056459 0.11 -0.11 pose: 0.24003668 4.95025 -3.82544 0 -0.00289069 0.00200127 0.999468 -0.0324149 uwb: 0.49993960 1206.31 493.158 +imu_odom_: 1691062472.173543125 0.31364 -0.232238 9.39006 -0.0628506 0.00958738 -0.0575243 0.14 -0.08 pose: 0.52047367 4.95025 -3.82544 0 -0.00649795 0.000840792 0.999548 -0.0293262 uwb: 0.0 1206.31 493.158 +imu_odom_: 1691062472.197478842 0.31364 0.035913 10.4267 -0.0532632 -0.02024 -0.0639159 0.14 -0.08 pose: 0.0 4.95025 -3.82544 0 -0.00649795 0.000840792 0.999548 -0.0293262 uwb: 0.50126945 1205.79 493.174 +imu_odom_: 1691062472.212545623 0.351948 -0.241814 9.59835 -0.0458064 -0.00319579 -0.036219 0.13 -0.08 pose: 0.42892044 4.94038 -3.82709 0 -0.00633755 0.0019131 0.999609 -0.0271483 uwb: 0.0 1205.79 493.174 +imu_odom_: 1691062472.237511398 0.54109 -0.19393 9.84975 -0.0596548 -0.00532632 -0.052198 0.13 -0.08 pose: 0.0 4.94038 -3.82709 0 -0.00633755 0.0019131 0.999609 -0.0271483 uwb: 0.49864473 1202.64 492.059 +imu_odom_: 1691062472.262539874 0.440533 -0.237026 9.86172 -0.0543285 -0.0468716 -0.0298274 0.19 -0.11 pose: 0.48023377 4.94038 -3.82709 0 -0.00493489 0.00215051 0.999677 -0.0248201 uwb: 0.0 1202.64 492.059 +imu_odom_: 1691062472.285532441 0.471658 -0.45011 10.0628 -0.0639159 -0.04048 -0.0234358 0.19 -0.11 pose: 0.0 4.94038 -3.82709 0 -0.00493489 0.00215051 0.999677 -0.0248201 uwb: 0.50007375 1202.03 492.319 +imu_odom_: 1691062472.309583937 -0.023942 -0.0047884 9.82341 -0.0340885 0.0351537 -0.0351537 0.15 -0.08 pose: 0.39973353 4.93052 -3.82876 0 -0.00126403 0.00102391 0.999731 -0.0231297 uwb: 0.0 1202.03 492.319 +imu_odom_: 1691062472.327589532 -0.220267 -0.146046 9.70609 -0.0660464 0.0149137 -0.00426106 0.15 -0.08 pose: 0.0 4.93052 -3.82876 0 -0.00126403 0.00102391 0.999731 -0.0231297 uwb: 0.0 1202.03 492.319 +imu_odom_: 1691062472.352471899 0.632069 -0.23942 10.0078 -0.0543285 -0.0351537 -0.0149137 0.15 -0.02 pose: 0.49004731 4.92066 -3.83039 0 0.000774344 -0.00178291 0.999767 -0.0214834 uwb: 0.50172149 1203.63 493.442 +imu_odom_: 1691062472.369471933 0.885855 -0.191536 10.0676 -0.0500674 -0.00532632 -0.02024 0.15 -0.02 pose: 0.0 4.92066 -3.83039 0 0.000774344 -0.00178291 0.999767 -0.0214834 uwb: 0.0 1203.63 493.442 +imu_odom_: 1691062472.385464366 0.126893 -0.177171 9.35654 -0.0660464 0.0213053 -0.00426106 0.15 -0.05 pose: 0.42036093 4.91904 -3.82053 0 -0.00200577 -0.0007640250.999792 -0.0202742 uwb: 0.49818395 1204.21 494.561 +imu_odom_: 1691062472.409664888 0.756568 -0.191536 10.9319 -0.0543285 -0.0575243 -0.00852212 0.15 -0.05 pose: 0.0 4.91904 -3.82053 0 -0.00200577 -0.0007640250.999792 -0.0202742 uwb: 0.0 1204.21 494.561 +imu_odom_: 1691062472.434477846 0.754174 -0.0047884 9.80186 -0.0436758 -0.0223706 0.0149137 0.22 -0.05 pose: 0.42048051 4.90918 -3.82221 0 0.000741844 -0.0005008680.999817 -0.0191244 uwb: 0.50019623 1206.75 495.898 +imu_odom_: 1691062472.459450911 0.150835 -0.244209 10.0533 -0.0639159 0.0287621 0.00958738 0.22 -0.05 pose: 0.0 4.90918 -3.82221 0 0.000741844 -0.0005008680.999817 -0.0191244 uwb: 0.0 1206.75 495.898 +imu_odom_: 1691062472.476512773 0.150835 -0.23942 9.44991 -0.0490022 -0.0213053 0.00852212 0.17 -0.02 pose: 0.39898694 4.89932 -3.82386 0 0.00361154 0.000373009 0.999826 -0.0182715 uwb: 0.0 1206.75 495.898 +imu_odom_: 1691062472.492567907 0.0646434 -0.205901 9.81383 -0.0468716 -0.00958738 0.0213053 0.17 -0.02 pose: 0.0 4.89932 -3.82386 0 0.00361154 0.000373009 0.999826 -0.0182715 uwb: 0.50003001 1206.47 496.572 +imu_odom_: 1691062472.510729818 0.45011 -0.258574 10.0437 -0.0681769 -0.0181095 0.0298274 0.17 -0.02 pose: 0.0 4.89932 -3.82386 0 0.00361154 0.000373009 0.999826 -0.0182715 uwb: 0.0 1206.47 496.572 +imu_odom_: 1691062472.534579503 0.588974 -0.160412 9.69652 -0.0649811 0.04048 0.0191748 0.21 -0.02 pose: 0.49973545 4.88945 -3.8255 0 0.00152482 0.000842166 0.999844 -0.0175585 uwb: 0.49961004 1204.98 496.447 +imu_odom_: 1691062472.560448765 0.548272 -0.287304 10.1394 -0.0575243 0.0191748 0.0276969 0.19 -0.02 pose: 0.67108607 4.88288 -3.82658 0 0.00231243 0.000175072 0.999854 -0.0169356 uwb: 0.0 1204.98 496.447 +imu_odom_: 1691062472.573441724 0.47884 -0.31364 9.74201 -0.0511327 0.02024 0.0149137 0.19 -0.02 pose: 0.0 4.88288 -3.82658 0 0.00231243 0.000175072 0.999854 -0.0169356 uwb: 0.0 1204.98 496.447 +imu_odom_: 1691062472.597552714 0.581791 -0.454898 9.34457 -0.0596548 0.0276969 0.0149137 0.19 -0.02 pose: 0.0 4.88288 -3.82658 0 0.00231243 0.000175072 0.999854 -0.0169356 uwb: 0.50064536 1206.22 497.181 +imu_odom_: 1691062472.623418477 0.184354 -0.246603 9.41161 -0.0671117 0.00532632 0.0245011 0.16 0 pose: 0.7926369 4.87958 -3.82712 0 0.00285769 -0.0003052650.999853 -0.0168897 uwb: 0.0 1206.22 497.181 +imu_odom_: 1691062472.644444543 1.58736 -0.318429 10.4938 -0.0788296 0.0298274 0.0234358 0.17 0 pose: 0.39021746 4.87958 -3.82712 0 0.00418809 -0.00338435 0.999849 -0.0165322 uwb: 0.49939715 1205.64 497.349 +imu_odom_: 1691062472.657439835 -0.0191536 -0.265756 8.7939 -0.0628506 0.0479369 0.0149137 0.17 0 pose: 0.0 4.87958 -3.82712 0 0.00418809 -0.00338435 0.999849 -0.0165322 uwb: 0.0 1205.64 497.349 +imu_odom_: 1691062472.682437106 -0.76375 -0.136469 10.6781 -0.0596548 0.0692422 0.0287621 0.17 0 pose: 0.0 4.87958 -3.82712 0 0.00418809 -0.00338435 0.999849 -0.0165322 uwb: 0.0 1205.64 497.349 +imu_odom_: 1691062472.707481623 0.181959 -0.251391 10.6255 -0.0681769 -0.0394148 0.0234358 0.16 0 pose: 0.47915763 4.86971 -3.82873 0 0.00257526 -0.00457691 0.999857 -0.0160988 uwb: 0.50244475 1205.89 497.985 +imu_odom_: 1691062472.720539032 0.814029 -0.248997 9.165 -0.0671117 -0.0500674 0.0276969 0.16 0 pose: 0.0 4.86971 -3.82873 0 0.00257526 -0.00457691 0.999857 -0.0160988 uwb: 0.0 1205.89 497.985 +imu_odom_: 1691062472.744546200 0.232238 -0.304064 9.61033 -0.0351537 0.00106526 0.0234358 0.16 0 pose: 0.91095651 4.84999 -3.83202 0 -0.00158278 -0.00391321 0.999872 -0.0154154 uwb: 0.49793897 1203.62 497.287 +imu_odom_: 1691062472.769558928 -0.0215478 -0.0814029 9.94073 -0.0543285 -0.0213053 0.0287621 0.16 0 pose: 0.0 4.84999 -3.83202 0 -0.00158278 -0.00391321 0.999872 -0.0154154 uwb: 0.0 1203.62 497.287 +imu_odom_: 1691062472.782473437 0.270545 -0.136469 9.52892 -0.0511327 -0.00958738 0.036219 0.17 -0.02 pose: 0.7955534 4.84999 -3.83202 0 -0.0023951 -0.0039339 0.999872 -0.0153539 uwb: 0.0 1203.62 497.287 +imu_odom_: 1691062472.807485873 0.215478 -0.323217 9.69891 -0.0575243 0.0138484 0.0266316 0.17 -0.02 pose: 0.0 4.84999 -3.83202 0 -0.0023951 -0.0039339 0.999872 -0.0153539 uwb: 0.49849308 1202.57 497.369 +imu_odom_: 1691062472.824591188 0.1652 -0.122104 9.85214 -0.0340885 -0.0127832 0.0245011 0.22 -0.02 pose: 0.47058353 4.83845 -3.82384 0 -0.00605868 -0.0020845 0.999865 -0.0151026 uwb: 0.0 1202.57 497.369 +imu_odom_: 1691062472.848405293 -0.0311246 -0.248997 9.70849 -0.0436758 -0.00106526 0.0298274 0.22 -0.02 pose: 0.0 4.83845 -3.82384 0 -0.00605868 -0.0020845 0.999865 -0.0151026 uwb: 0.49950798 1203.32 498.028 +imu_odom_: 1691062472.872410128 -0.059855 -0.251391 9.74919 -0.0351537 0.0223706 0.0298274 0.22 -0.02 pose: 0.72852374 4.82859 -3.82552 0 -0.0111197 -0.0016244 0.999829 -0.0146933 uwb: 0.0 1203.32 498.028 +imu_odom_: 1691062472.897522304 0.280122 -0.299275 9.9503 -0.0553937 -0.0181095 0.0436758 0.22 -0.02 pose: 0.7008883 4.82859 -3.82552 0 -0.0119137 -0.0015899 0.99982 -0.0146588 uwb: 0.50053161 1202.25 498.153 +imu_odom_: 1691062472.918528831 0.258574 -0.138864 10.1634 -0.04048 0.00426106 0.0330232 0.17 -0.02 pose: 0.42108128 4.81873 -3.82719 0 -0.0113137 -0.00239144 0.999826 -0.0146114 uwb: 0.0 1202.25 498.153 +imu_odom_: 1691062472.931405135 -0.0837971 -0.292093 9.78989 -0.0479369 0.0191748 0.0383495 0.17 -0.02 pose: 0.0 4.81873 -3.82719 0 -0.0113137 -0.00239144 0.999826 -0.0146114 uwb: 0.0 1202.25 498.153 +imu_odom_: 1691062472.955402095 0.148441 -0.150835 9.9503 -0.0585895 -0.0138484 0.0447411 0.17 0 pose: 0.0 4.81873 -3.82719 0 -0.0113137 -0.00239144 0.999826 -0.0146114 uwb: 0.49991918 1204.22 499.584 +imu_odom_: 1691062472.972517909 0.687136 -0.203507 10.058 -0.0692422 0.0127832 0.0490022 0.17 0 pose: 0.41892900 4.80887 -3.82885 0 -0.0118604 -2.65303e-050.999823 -0.0145761 uwb: 0.0 1204.22 499.584 +imu_odom_: 1691062472.996387717 0.54109 -0.335188 9.73243 -0.0745685 -0.00958738 0.04048 0.18 0.02 pose: 0.0 4.80887 -3.82885 0 -0.0118604 -2.65303e-050.999823 -0.0145761 uwb: 0.50216770 1206.14 501.11 +imu_odom_: 1691062473.19512402 0.0454898 -0.356736 9.74201 -0.0490022 0.0383495 0.0330232 0.18 0.02 pose: 0.41123273 4.79901 -3.83052 0 -0.00999009 0.00090943 0.999841 -0.0147222 uwb: 0.0 1206.14 501.11 +imu_odom_: 1691062473.37393766 0.560243 -0.25618 10.2017 -0.0660464 -0.0308927 0.0458064 0.24 0 pose: 0.38973925 4.79901 -3.83052 0 -0.0107957 -0.00120635 0.999834 -0.0146375 uwb: 0.49907357 1208.48 502.846 +imu_odom_: 1691062473.61377613 0.720655 -0.196325 10.0269 -0.0447411 0.00958738 0.0319579 0.24 0 pose: 0.7882627 4.79901 -3.83052 0 -0.0099021 -0.00127794 0.999843 -0.0146615 uwb: 0.0 1208.48 502.846 +imu_odom_: 1691062473.87571476 0.59855 -0.234632 9.9934 -0.0596548 -0.00745685 0.0607201 0.21 0.02 pose: 0.33982584 4.78915 -3.83219 0 -0.00655061 -0.00100111 0.999871 -0.0145982 uwb: 0.0 1208.48 502.846 +imu_odom_: 1691062473.111368967 0.464475 0.107739 10.0389 -0.0436758 0.00532632 0.0319579 0.21 0.02 pose: 0.0 4.78915 -3.83219 0 -0.00655061 -0.00100111 0.999871 -0.0145982 uwb: 0.0 1208.48 502.846 +imu_odom_: 1691062473.129395858 0.471658 -0.68953 9.39245 -0.0745685 0.00213053 0.0553937 0.21 -0.02 pose: 0.49991354 4.77929 -3.83386 0 -0.0031381 0.00132334 0.999885 -0.0147896 uwb: 0.0 1208.48 502.846 +imu_odom_: 1691062473.153377662 0.349553 -0.42138 9.55287 -0.0479369 0.0575243 0.0330232 0.21 -0.02 pose: 0.0 4.77929 -3.83386 0 -0.0031381 0.00132334 0.999885 -0.0147896 uwb: 0.99989999 1207.24 503.372 +imu_odom_: 1691062473.176436440 0.126893 -0.174777 9.30147 -0.0788296 0.0117179 0.0426106 0.23 0 pose: 0.42008695 4.76832 -3.82898 0 -0.00345522 -0.00291399 0.99988 -0.014842 uwb: 0.0 1207.24 503.372 +imu_odom_: 1691062473.194396254 0.725443 -0.0335188 10.4411 -0.0543285 -0.00745685 0.0319579 0.23 0 pose: 0.0 4.76832 -3.82898 0 -0.00345522 -0.00291399 0.99988 -0.014842 uwb: 0.50051431 1206.07 503.727 +imu_odom_: 1691062473.218380392 0.979228 -0.392649 9.51216 -0.0543285 0.0138484 0.0351537 0.18 0.02 pose: 0.41018592 4.76233 -3.8266 0 -0.0041475 -0.00144362 0.999881 -0.0148194 uwb: 0.0 1206.07 503.727 +imu_odom_: 1691062473.241369468 0.995988 -0.349553 9.74919 -0.0490022 -0.0117179 0.036219 0.18 0.02 pose: 0.0 4.76233 -3.8266 0 -0.0041475 -0.00144362 0.999881 -0.0148194 uwb: 0.49730923 1203.48 503.877 +imu_odom_: 1691062473.259373028 0.311246 -0.146046 9.97424 -0.056459 -0.0276969 0.0468716 0.25 0 pose: 0.46973214 4.75148 -3.82844 0 0.000347499 -0.00218808 0.999889 -0.0147169 uwb: 0.0 1203.48 503.877 +imu_odom_: 1691062473.276362279 0.790087 -0.110133 10.0963 -0.0479369 -0.0873517 0.0916127 0.25 0 pose: 0.0 4.75148 -3.82844 0 0.000347499 -0.00218808 0.999889 -0.0147169 uwb: 0.0 1203.48 503.877 +imu_odom_: 1691062473.293481890 1.45567 -0.557849 9.086 -0.0490022 -0.0266316 0.113983 0.15 0.14 pose: 0.0 4.75148 -3.82844 0 0.000347499 -0.00218808 0.999889 -0.0147169 uwb: 0.49990771 1204.82 505.545 +imu_odom_: 1691062473.310473182 1.29287 -0.220267 10.8481 -0.0458064 -0.0490022 0.157659 0.15 0.14 pose: 0.42001697 4.74804 -3.82902 0 0.00242175 -0.0004539760.999877 -0.0154875 uwb: 0.0 1204.82 505.545 +imu_odom_: 1691062473.328531570 1.66636 -0.418985 9.10275 -0.0500674 -0.0415453 0.270577 0.15 0.14 pose: 0.0 4.74804 -3.82902 0 0.00242175 -0.0004539760.999877 -0.0154875 uwb: 0.0 1204.82 505.545 +imu_odom_: 1691062473.341362092 1.96803 -0.701501 10.1011 -0.0447411 0.0223706 0.343015 0.13 0.35 pose: 0.45160405 4.73813 -3.83067 0 0.00770029 -0.0008120570.99979 -0.0189519 uwb: 0.50021976 1204.57 506.153 +imu_odom_: 1691062473.359364194 1.02472 -0.605733 9.83299 -0.0170442 -0.02024 0.372843 0.13 0.35 pose: 0.5854882 4.73818 -3.83071 0 0.00818066 -0.0009629840.999769 -0.0198409 uwb: 0.0 1204.57 506.153 +imu_odom_: 1691062473.373351052 0.600945 -0.124498 8.83939 -0.015979 0.00106526 0.445281 0.13 0.35 pose: 0.0 4.73818 -3.83071 0 0.00818066 -0.0009629840.999769 -0.0198409 uwb: 0.0 1204.57 506.153 +imu_odom_: 1691062473.390418170 0.361524 -0.289698 9.89045 -0.0308927 -0.036219 0.553937 0.09 0.38 pose: 0.38964600 4.73812 -3.83067 0 0.0104308 -0.0002888440.999588 -0.026734 uwb: 0.49971814 1204.8 506.809 +imu_odom_: 1691062473.407412669 0.641646 -0.220267 9.57202 -0.0447411 -0.0255663 0.572047 0.09 0.41 pose: 0.0 4.73812 -3.83067 0 0.0104308 -0.0002888440.999588 -0.026734 uwb: 0.0 1204.8 506.809 +imu_odom_: 1691062473.424402795 0.995988 -0.198719 10.0652 -0.0394148 0.0138484 0.570982 0.09 0.41 pose: 0.0 4.73812 -3.83067 0 0.0104308 -0.0002888440.999588 -0.026734 uwb: 0.0 1204.8 506.809 +imu_odom_: 1691062473.441357632 0.852336 0.0526724 9.68455 -0.0436758 -0.0106526 0.58483 0.08 0.5 pose: 0.24072212 4.7283 -3.83225 0 0.00981867 -0.0004375710.999407 -0.0329919 uwb: 0.50126673 1205 507.53 +imu_odom_: 1691062473.458403460 0.591368 -0.203507 9.77553 -0.0532632 0.0319579 0.618919 0.08 0.5 pose: 0.0 4.7283 -3.83225 0 0.00981867 -0.0004375710.999407 -0.0329919 uwb: 0.0 1205 507.53 +imu_odom_: 1691062473.475551068 0.579397 -0.497994 9.84975 -0.0575243 0.00745685 0.64555 0.08 0.5 pose: 0.34008540 4.72831 -3.83225 0 0.0128595 0.00064488 0.999032 -0.0420641 uwb: 0.0 1205 507.53 +imu_odom_: 1691062473.493375564 0.557849 -0.260968 9.6199 -0.0468716 0.0170442 0.630637 0.07 0.53 pose: 0.35067469 4.72831 -3.83225 0 0.0113348 0.000363873 0.998575 -0.0521502 uwb: 0.50054639 1202.43 507.661 +imu_odom_: 1691062473.508618498 0.454898 -0.136469 10.2568 -0.0415453 0.02024 0.646616 0.07 0.53 pose: 0.0 4.72831 -3.83225 0 0.0113348 0.000363873 0.998575 -0.0521502 uwb: 0.0 1202.43 507.661 +imu_odom_: 1691062473.525461348 0.696713 -0.301669 10.0149 -0.0436758 0.00106526 0.658333 0.07 0.53 pose: 0.0 4.72831 -3.83225 0 0.0113348 0.000363873 0.998575 -0.0521502 uwb: 0.0 1202.43 507.661 +imu_odom_: 1691062473.550332350 0.658405 -0.141258 10.1418 -0.0490022 0.0181095 0.596548 0.06 0.58 pose: 0.49988437 4.72831 -3.83225 0 0.00866524 -0.0006599290.997701 -0.0672117 uwb: 0.50134547 1202.93 508.883 +imu_odom_: 1691062473.567387510 0.380678 -0.181959 9.91439 -0.0553937 0.0245011 0.530502 0.06 0.58 pose: 0.0 4.72831 -3.83225 0 0.00866524 -0.0006599290.997701 -0.0672117 uwb: 0.0 1202.93 508.883 +imu_odom_: 1691062473.584340015 -0.672771 -0.0790087 9.68933 -0.0617853 0.100135 0.435693 0.07 0.35 pose: 0.40851485 4.71844 -3.83387 0 0.00955368 0.00119454 0.996861 -0.0785825 uwb: 0.0 1202.93 508.883 +imu_odom_: 1691062473.598444986 -1.1971 0.169988 9.85214 -0.0617853 0.015979 0.403735 0.08 0.38 pose: 0.0 4.71844 -3.83387 0 0.00955368 0.00119454 0.996861 -0.0785825 uwb: 0.0 1202.93 508.883 +imu_odom_: 1691062473.616329558 -0.785298 -0.0837971 9.9503 -0.0575243 -0.0713727 0.371777 0.08 0.38 pose: 0.34117903 4.71844 -3.83387 0 0.0050628 0.00112662 0.99631 -0.0856757 uwb: 0.0 1202.93 508.883 +imu_odom_: 1691062473.631443590 -0.0790087 -0.110133 10.0963 -0.0575243 -0.0969391 0.350472 0.08 0.38 pose: 0.0 4.71844 -3.83387 0 0.0050628 0.00112662 0.99631 -0.0856757 uwb: 0.0 1202.93 508.883 +imu_odom_: 1691062473.649331954 0.483629 -0.229843 10.0389 -0.0468716 -0.0255663 0.32171 0.09 0.29 pose: 0.0 4.71844 -3.83387 0 0.0050628 0.00112662 0.99631 -0.0856757 uwb: 0.99980084 1201.45 508.831 +imu_odom_: 1691062473.666381281 0.423774 -0.122104 9.67257 -0.0585895 -0.0127832 0.324906 0.09 0.29 pose: 0.31992460 4.71844 -3.83387 0 0.00273421 0.00127302 0.995846 -0.0909999 uwb: 0.0 1201.45 508.831 +imu_odom_: 1691062473.682321225 0.107739 -0.143652 9.87848 -0.0649811 0.0127832 0.314253 0.17 0.32 pose: 0.42931723 4.70852 -3.83553 0 0.00290744 0.00158213 0.995262 -0.097168 uwb: 0.0 1201.45 508.831 +imu_odom_: 1691062473.699432963 0.0143652 -0.232238 9.7851 -0.0671117 -0.0149137 0.292948 0.17 0.32 pose: 0.0 4.70852 -3.83553 0 0.00290744 0.00158213 0.995262 -0.097168 uwb: 0.49806165 1202.76 510.513 +imu_odom_: 1691062473.716363303 0.00957681 -0.222661 9.74201 -0.0468716 -0.02024 0.279099 0.17 0.32 pose: 0.0 4.70852 -3.83553 0 0.00290744 0.00158213 0.995262 -0.097168 uwb: 0.0 1202.76 510.513 +imu_odom_: 1691062473.732313746 0.0981623 -0.114922 9.43794 -0.0628506 -0.0319579 0.289752 0.12 0.23 pose: 0.6949976 4.70858 -3.83557 0 0.00215795 0.00156185 0.995171 -0.098117 uwb: 0.0 1202.76 510.513 +imu_odom_: 1691062473.750319639 0.363919 -0.328006 9.84496 -0.092678 -0.00319579 0.30147 0.18 0.26 pose: 0.0 4.70858 -3.83557 0 0.00215795 0.00156185 0.995171 -0.098117 uwb: 0.50192291 1203.3 511.606 +imu_odom_: 1691062473.766377404 -0.0167594 -0.366313 10.0006 -0.0703074 -0.0117179 0.251402 0.18 0.26 pose: 0.67006560 4.69872 -3.83721 0 -0.00304471 0.000209866 0.994304 -0.106539 uwb: 0.0 1203.3 511.606 +imu_odom_: 1691062473.783373362 0.481235 -0.100556 9.67976 -0.0703074 0.0117179 0.238619 0.2 0.26 pose: 0.0 4.69872 -3.83721 0 -0.00304471 0.000209866 0.994304 -0.106539 uwb: 0.0 1203.3 511.606 +imu_odom_: 1691062473.799370759 -0.220267 -0.105345 9.81862 -0.0745685 0.0585895 0.236489 0.2 0.26 pose: 0.0 4.69872 -3.83721 0 -0.00304471 0.000209866 0.994304 -0.106539 uwb: 0.49885490 1203.89 512.612 +imu_odom_: 1691062473.816300807 0.114922 -0.402226 9.60075 -0.0585895 -0.0245011 0.215183 0.2 0.26 pose: 0.34041785 4.69872 -3.83721 0 -0.00364766 -0.0012539 0.993889 -0.11032 uwb: 0.0 1203.89 512.612 +imu_odom_: 1691062473.832297329 0.634463 -0.296881 9.88805 -0.0468716 -0.0575243 0.209857 0.14 0.2 pose: 0.41921205 4.68886 -3.8389 0 -0.00607778 -0.00203647 0.993432 -0.114248 uwb: 0.0 1203.89 512.612 +imu_odom_: 1691062473.850301181 1.11091 -0.316035 10.0149 -0.0575243 -0.0276969 0.250337 0.14 0.2 pose: 0.8004531 4.68886 -3.8389 0 -0.0050708 -0.00200881 0.993359 -0.114923 uwb: 0.50173627 1205.14 514.388 +imu_odom_: 1691062473.867356924 1.3216 -0.371101 9.85693 -0.056459 -0.0191748 0.30147 0.14 0.2 pose: 0.0 4.68886 -3.8389 0 -0.0050708 -0.00200881 0.993359 -0.114923 uwb: 0.0 1205.14 514.388 +imu_odom_: 1691062473.883291036 1.95127 -0.301669 10.1011 -0.0308927 -0.0447411 0.270577 0.1 0.11 pose: 0.43051586 4.68886 -3.8389 0 -0.000228669-0.00192954 0.992809 -0.119695 uwb: 0.0 1205.14 514.388 +imu_odom_: 1691062473.901415333 1.35033 0.342371 9.52653 -0.0436758 0.0330232 0.207727 0.09 0.14 pose: 0.0 4.68886 -3.8389 0 -0.000228669-0.00192954 0.992809 -0.119695 uwb: 0.49760670 1207.07 515.719 +imu_odom_: 1691062473.918289387 0.682347 0.186748 9.75158 -0.0543285 0.036219 0.174703 0.09 0.14 pose: 0.0 4.68886 -3.8389 0 -0.000228669-0.00192954 0.992809 -0.119695 uwb: 0.0 1207.07 515.719 +imu_odom_: 1691062473.935292344 0.397437 -0.368707 9.93594 -0.0596548 0.0213053 0.134223 0.09 0.14 pose: 0.24138122 4.67902 -3.84067 0 0.00212649 -0.00100392 0.992502 -0.122202 uwb: 0.49944401 1208.4 517.286 +imu_odom_: 1691062473.952408165 0.797269 -0.289698 10.0317 -0.0543285 -0.0383495 0.0937433 0.09 0.14 pose: 0.0 4.67902 -3.84067 0 0.00212649 -0.00100392 0.992502 -0.122202 uwb: 0.0 1208.4 517.286 +imu_odom_: 1691062473.969412289 0.837971 -0.117316 9.64863 -0.0490022 -0.00426106 0.108657 0.09 0.14 pose: 0.33929506 4.67902 -3.84067 0 0.00272173 0.000475116 0.992217 -0.124491 uwb: 0.0 1208.4 517.286 +imu_odom_: 1691062473.985298572 0.787692 -0.19393 10.0054 -0.0596548 0.00958738 0.147006 0.06 0.11 pose: 0.43987737 4.67902 -3.84067 0 0.00588218 0.000240026 0.992014 -0.125993 uwb: 0.50076803 1209.33 518.609 +imu_odom_: 1691062474.2401852 0.663194 -0.426168 9.72764 -0.0479369 0.00213053 0.137419 0.06 0.11 pose: 0.7005386 4.67902 -3.84067 0 0.00651709 0.000383432 0.991962 -0.126365 uwb: 0.0 1209.33 518.609 +imu_odom_: 1691062474.18292224 0.723049 -0.138864 10.0485 -0.0490022 -0.00639159 0.125701 0.06 0.11 pose: 0.0 4.67902 -3.84067 0 0.00651709 0.000383432 0.991962 -0.126365 uwb: 0.0 1209.33 518.609 +imu_odom_: 1691062474.35300437 0.658405 -0.0407014 9.81383 -0.0500674 -0.00106526 0.120375 0.06 0.11 pose: 0.41874549 4.66917 -3.84238 0 0.00948317 0.000378502 0.991684 -0.128344 uwb: 0.49821926 1210.38 519.632 +imu_odom_: 1691062474.60293061 0.653617 -0.222661 9.90002 -0.0575243 -0.00532632 0.116114 0.04 0.08 pose: 0.0 4.66917 -3.84238 0 0.00948317 0.000378502 0.991684 -0.128344 uwb: 0.0 1210.38 519.632 +imu_odom_: 1691062474.86299121 -0.0694318 -0.320823 9.62948 -0.0585895 0.0735032 0.123571 0.05 0.11 pose: 0.26175500 4.66917 -3.84238 0 0.0107317 0.00180551 0.991538 -0.12936 uwb: 0.49999247 1208.37 519.654 +imu_odom_: 1691062474.109279748 -1.50116 -0.129287 10.0006 -0.0447411 0.015979 0.12144 0.05 0.11 pose: 0.0 4.66917 -3.84238 0 0.0107317 0.00180551 0.991538 -0.12936 uwb: 0.0 1208.37 519.654 +imu_odom_: 1691062474.133279644 -0.201113 -0.105345 9.62948 -0.0415453 -0.0798948 0.1012 0.08 0.05 pose: 0.64812024 4.66917 -3.84238 0 0.00622911 0.000354055 0.991231 -0.131994 uwb: 0.0 1208.37 519.654 +imu_odom_: 1691062474.151274753 0.720655 -0.237026 10.1059 -0.0394148 -0.0980043 0.0969391 0.08 0.05 pose: 0.8026990 4.66917 -3.84238 0 0.00572027 0.000471569 0.991201 -0.13224 uwb: 0.50034535 1208.99 520.514 +imu_odom_: 1691062474.168334878 0.890643 -0.158017 9.91918 -0.0575243 -0.0308927 0.135289 0.08 0.05 pose: 0.0 4.66917 -3.84238 0 0.00572027 0.000471569 0.991201 -0.13224 uwb: 0.0 1208.99 520.514 +imu_odom_: 1691062474.185265807 1.44849 -0.490811 9.85932 -0.072438 -0.0745685 0.0916127 0.08 -0.05 pose: 0.41971383 4.65932 -3.84411 0 0.00819997 0.00124121 0.990998 -0.133617 uwb: 0.49979416 1209.96 521.708 +imu_odom_: 1691062474.202267313 1.39343 0.172383 9.75158 -0.0468716 0.00426106 -0.0937433 0.08 -0.05 pose: 0.0 4.65932 -3.84411 0 0.00819997 0.00124121 0.990998 -0.133617 uwb: 0.0 1209.96 521.708 +imu_odom_: 1691062474.217271403 1.47722 0.586579 9.89284 -0.0692422 0.0127832 -0.169377 0.05 -0.26 pose: 0.0 4.65932 -3.84411 0 0.00819997 0.00124121 0.990998 -0.133617 uwb: 0.0 1209.96 521.708 +imu_odom_: 1691062474.235268554 1.06303 -0.0694318 9.90481 -0.0596548 0.015979 -0.270577 0.05 -0.26 pose: 0.49998956 4.65932 -3.84411 0 0.0131588 0.00269159 0.991077 -0.132614 uwb: 0.49935963 1211.05 522.647 +imu_odom_: 1691062474.252321971 0.397437 -0.11971 9.77074 -0.0660464 0.0213053 -0.352603 0.05 -0.26 pose: 0.0 4.65932 -3.84411 0 0.0131588 0.00269159 0.991077 -0.132614 uwb: 0.0 1211.05 522.647 +imu_odom_: 1691062474.268333081 0.411803 -0.201113 10.0341 -0.0649811 -0.0426106 -0.361125 0.04 -0.35 pose: 0.0 4.65932 -3.84411 0 0.0131588 0.00269159 0.991077 -0.132614 uwb: 0.0 1211.05 522.647 +imu_odom_: 1691062474.286262281 0.363919 -0.316035 9.76116 -0.0628506 -0.0149137 -0.352603 0.04 -0.35 pose: 0.50047658 4.65932 -3.84411 0 0.0125808 0.00383488 0.992159 -0.124289 uwb: 0.50125234 1213.35 524.162 +imu_odom_: 1691062474.303263203 0.85473 -0.19393 10.2352 -0.0671117 -0.0276969 -0.354733 0.03 -0.41 pose: 0.0 4.65932 -3.84411 0 0.0125808 0.00383488 0.992159 -0.124289 uwb: 0.0 1213.35 524.162 +imu_odom_: 1691062474.319261772 0.612916 -0.059855 9.82341 -0.0543285 0.00532632 -0.399474 0.04 -0.41 pose: 0.43938468 4.65932 -3.84411 0 0.0123831 0.00270533 0.993205 -0.115686 uwb: 0.0 1213.35 524.162 +imu_odom_: 1691062474.336258028 0.577003 0.0694318 10.0197 -0.0607201 -0.0170442 -0.412257 0.03 -0.44 pose: 0.0 4.65932 -3.84411 0 0.0123831 0.00270533 0.993205 -0.115686 uwb: 0.50070989 1214.87 525.208 +imu_odom_: 1691062474.352242307 0.423774 -0.189142 9.73482 -0.0639159 0.00106526 -0.415453 0.03 -0.44 pose: 0.0 4.65932 -3.84411 0 0.0123831 0.00270533 0.993205 -0.115686 uwb: 0.0 1214.87 525.208 +imu_odom_: 1691062474.368366280 0.390255 -0.304064 10.2448 -0.0628506 -0.00426106 -0.414388 0.03 -0.44 pose: 0.24029642 4.65932 -3.84411 0 0.01144 0.0049834 0.993813 -0.110364 uwb: 0.0 1214.87 525.208 +imu_odom_: 1691062474.384423760 0.337582 -0.205901 9.59357 -0.0617853 -0.0191748 -0.429302 0.04 -0.61 pose: 0.0 4.65932 -3.84411 0 0.01144 0.0049834 0.993813 -0.110364 uwb: 0.0 1214.87 525.208 +imu_odom_: 1691062474.401360814 0.557849 -0.105345 9.85453 -0.0639159 -0.0330232 -0.418649 0.04 -0.61 pose: 0.32078797 4.64948 -3.8459 0 0.00910451 0.00464377 0.994617 -0.103117 uwb: 0.50073323 1215.99 526.05 +imu_odom_: 1691062474.417295515 0.701501 -0.260968 9.991 -0.0671117 -0.0234358 -0.405866 0.03 -0.47 pose: 0.41989172 4.64942 -3.84586 0 0.00746352 0.00515824 0.995581 -0.0934658 uwb: 0.0 1215.99 526.05 +imu_odom_: 1691062474.435391239 0.88346 -0.244209 9.93833 -0.0681769 0.00426106 -0.370712 0.03 -0.47 pose: 0.0 4.64942 -3.84586 0 0.00746352 0.00515824 0.995581 -0.0934658 uwb: 0.49742608 1217.56 526.978 +imu_odom_: 1691062474.450378123 0.445322 -0.363919 9.78031 -0.0607201 0.0117179 -0.327036 0.03 -0.47 pose: 0.0 4.64942 -3.84586 0 0.00746352 0.00515824 0.995581 -0.0934658 uwb: 0.0 1217.56 526.978 +imu_odom_: 1691062474.467248100 0.426168 -0.21069 9.90242 -0.0628506 -0.015979 -0.280165 0.04 -0.47 pose: 0.7928709 4.64948 -3.8459 0 0.0081596 0.00464448 0.995741 -0.0917134 uwb: 0.0 1217.56 526.978 +imu_odom_: 1691062474.482358055 0.531513 -0.23942 9.7851 -0.0553937 -0.0170442 -0.251402 0.02 -0.29 pose: 0.0 4.64948 -3.8459 0 0.0081596 0.00464448 0.995741 -0.0917134 uwb: 0.0 1217.56 526.978 +imu_odom_: 1691062474.499236490 0.670376 -0.208296 9.9527 -0.0660464 -0.0138484 -0.223706 0.02 -0.29 pose: 0.0 4.64948 -3.8459 0 0.0081596 0.00464448 0.995741 -0.0917134 uwb: 0.50052908 1216.11 526.879 +imu_odom_: 1691062474.515242933 0.627281 -0.237026 9.76834 -0.0553937 -0.00745685 -0.201335 0.02 -0.29 pose: 0.65078579 4.64948 -3.8459 0 0.00776183 0.00132754 0.996779 -0.0798131 uwb: 0.0 1216.11 526.879 +imu_odom_: 1691062474.531303038 0.596156 -0.299275 9.95748 -0.0575243 -0.00106526 -0.18003 0.02 -0.26 pose: 0.0 4.64948 -3.8459 0 0.00776183 0.00132754 0.996779 -0.0798131 uwb: 0.0 1216.11 526.879 +imu_odom_: 1691062474.544292798 0.474052 -0.201113 9.84496 -0.0553937 0.00532632 -0.175769 0.02 -0.26 pose: 0.32945831 4.64948 -3.8459 0 0.00997865 0.000460969 0.997098 -0.0754749 uwb: 0.49934504 1218.24 527.678 +imu_odom_: 1691062474.559229229 0.418985 -0.112527 9.92397 -0.0553937 -0.00426106 -0.170442 0.02 -0.26 pose: 0.0 4.64948 -3.8459 0 0.00997865 0.000460969 0.997098 -0.0754749 uwb: 0.0 1218.24 527.678 +imu_odom_: 1691062474.576505456 0.445322 -0.184354 9.88087 -0.0628506 -0.015979 -0.149137 0.01 -0.17 pose: 0.44983107 4.64948 -3.8459 0 0.00849269 -0.0005130070.997472 -0.0705452 uwb: 0.0 1218.24 527.678 +imu_odom_: 1691062474.592448614 0.593762 -0.335188 9.92397 -0.056459 -0.0127832 -0.142745 0.01 -0.17 pose: 0.0 4.64948 -3.8459 0 0.00849269 -0.0005130070.997472 -0.0705452 uwb: 0.50221766 1218.13 527.912 +imu_odom_: 1691062474.609302552 0.586579 -0.222661 9.85932 -0.0543285 -0.00958738 -0.131028 0.02 -0.23 pose: 0.40151574 4.64948 -3.8459 0 0.00731179 -0.0009805030.997743 -0.0667448 uwb: 0.0 1218.13 527.912 +imu_odom_: 1691062474.625302871 0.533907 -0.241814 9.88087 -0.0585895 -0.00745685 -0.105461 0.02 -0.23 pose: 0.0 4.64948 -3.8459 0 0.00731179 -0.0009805030.997743 -0.0667448 uwb: 0.0 1218.13 527.912 +imu_odom_: 1691062474.641302898 0.447716 -0.225055 9.86172 -0.0553937 -0.00213053 -0.0969391 0.02 -0.23 pose: 0.0 4.64948 -3.8459 0 0.00731179 -0.0009805030.997743 -0.0667448 uwb: 0.49872386 1218.69 528.869 +imu_odom_: 1691062474.656298240 0.519542 -0.201113 9.90002 -0.0511327 -0.00745685 -0.092678 0.01 -0.11 pose: 0.7839176 4.64948 -3.8459 0 0.00801498 -0.0005832540.997782 -0.0660738 uwb: 0.0 1218.69 528.869 +imu_odom_: 1691062474.674462498 0.600945 -0.215478 9.87129 -0.0585895 -0.015979 -0.0607201 0 -0.08 pose: 0.0 4.64948 -3.8459 0 0.00801498 -0.0005832540.997782 -0.0660738 uwb: 0.0 1218.69 528.869 +imu_odom_: 1691062474.690307667 0.687136 -0.339977 9.90481 -0.0553937 -0.00745685 -0.0330232 0 -0.08 pose: 0.64087893 4.64948 -3.8459 0 0.00675525 0.000842598 0.998074 -0.0616595 uwb: 0.49935087 1214.95 527.23 +imu_odom_: 1691062474.706362522 0.648829 -0.308852 9.89524 -0.0532632 -0.00106526 -0.00106526 0 -0.08 pose: 0.0 4.64948 -3.8459 0 0.00675525 0.000842598 0.998074 -0.0616595 uwb: 0.0 1214.95 527.23 +imu_odom_: 1691062474.722291973 0.567426 -0.251391 9.89524 -0.0553937 -0.00213053 0.0372843 0 -0.08 pose: 0.0 4.64948 -3.8459 0 0.00675525 0.000842598 0.998074 -0.0616595 uwb: 0.0 1214.95 527.23 +imu_odom_: 1691062474.736240925 0.560243 -0.263362 9.87129 -0.0543285 0.00426106 0.0553937 0 -0.08 pose: 0.32893627 4.64948 -3.8459 0 0.00951608 -0.0007737580.998125 -0.0604526 uwb: 0.49931296 1212.85 526.383 +imu_odom_: 1691062474.750224581 0.423774 -0.177171 9.84975 -0.0500674 0.0117179 0.0458064 0 0 pose: 0.0 4.64948 -3.8459 0 0.00951608 -0.0007737580.998125 -0.0604526 uwb: 0.0 1212.85 526.383 +imu_odom_: 1691062474.765429608 0.275333 -0.0837971 9.93354 -0.0532632 0.00213053 0.04048 0 0 pose: 0.38971615 4.64948 -3.8459 0 0.00780609 -0.00259356 0.998142 -0.0603795 uwb: 0.0 1212.85 526.383 +imu_odom_: 1691062474.780266008 0.349553 -0.169988 9.91678 -0.056459 -0.0117179 0.0383495 0 0 pose: 0.0 4.64948 -3.8459 0 0.00780609 -0.00259356 0.998142 -0.0603795 uwb: 0.0 1212.85 526.383 +imu_odom_: 1691062474.794263662 0.45011 -0.248997 9.9096 -0.056459 -0.0149137 0.0308927 0 0 pose: 0.6184725 4.64948 -3.8459 0 0.00724055 -0.00223668 0.998146 -0.0603977 uwb: 0.50142441 1211.45 526.191 +imu_odom_: 1691062474.808258984 0.526724 -0.196325 9.87369 -0.056459 -0.00852212 0.036219 0 0 pose: 0.0 4.64948 -3.8459 0 0.00724055 -0.00223668 0.998146 -0.0603977 uwb: 0.0 1211.45 526.191 +imu_odom_: 1691062474.823366313 0.505177 -0.246603 9.92636 -0.056459 -0.00319579 0.0426106 0 0 pose: 0.0 4.64948 -3.8459 0 0.00724055 -0.00223668 0.998146 -0.0603977 uwb: 0.0 1211.45 526.191 +imu_odom_: 1691062474.838279413 0.445322 -0.21069 9.90002 -0.0532632 0.00213053 0.0415453 0 0 pose: 0.43797899 4.64948 -3.8459 0 0.0034211 -0.0008507350.998169 -0.060391 uwb: 0.50054950 1208.87 525.306 +imu_odom_: 1691062474.852320813 0.390255 -0.155623 9.89524 -0.0553937 -0.00426106 0.0415453 0 0 pose: 0.0 4.64948 -3.8459 0 0.0034211 -0.0008507350.998169 -0.060391 uwb: 0.0 1208.87 525.306 +imu_odom_: 1691062474.866191023 0.416591 -0.19393 9.87608 -0.0553937 -0.00745685 0.04048 0 0 pose: 0.0 4.64948 -3.8459 0 0.0034211 -0.0008507350.998169 -0.060391 uwb: 0.0 1208.87 525.306 +imu_odom_: 1691062474.880184886 0.45011 -0.205901 9.89524 -0.0543285 -0.00745685 0.0372843 0 0 pose: 0.44068537 4.64948 -3.8459 0 0.00462683 -0.0009823360.998165 -0.0603619 uwb: 0.0 1208.87 525.306 +imu_odom_: 1691062474.894281405 0.464475 -0.21069 9.86172 -0.0553937 -0.00639159 0.0383495 0 0 pose: 0.0 4.64948 -3.8459 0 0.00462683 -0.0009823360.998165 -0.0603619 uwb: 0.49822515 1209.51 526.102 +imu_odom_: 1691062474.909255457 0.428562 -0.23942 9.90002 -0.0532632 -0.00532632 0.04048 0 0 pose: 0.0 4.64948 -3.8459 0 0.00462683 -0.0009823360.998165 -0.0603619 uwb: 0.0 1209.51 526.102 +imu_odom_: 1691062474.931256479 0.438139 -0.198719 9.95988 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.41942510 4.64948 -3.8459 0 0.00210815 0.000646145 0.998173 -0.0603786 uwb: 0.0 1209.51 526.102 +imu_odom_: 1691062474.947257090 0.0909797 -0.248997 9.81623 -0.0617853 0.0276969 0.0191748 0 0 pose: 0.0 4.64948 -3.8459 0 0.00210815 0.000646145 0.998173 -0.0603786 uwb: 0.50018496 1208.29 525.489 +imu_odom_: 1691062474.964251013 -0.270545 -0.0814029 10.003 -0.0479369 0.0276969 -0.0639159 0 0 pose: 0.0 4.64948 -3.8459 0 0.00210815 0.000646145 0.998173 -0.0603786 uwb: 0.0 1208.29 525.489 +imu_odom_: 1691062474.981193608 -1.34315 0.31364 9.56484 -0.0351537 0.0649811 -0.0745685 0.04 0.05 pose: 0.44006127 4.64948 -3.8459 0 0.00240452 -5.66753e-050.998173 -0.0603712 uwb: 0.0 1208.29 525.489 +imu_odom_: 1691062474.997245838 -1.17316 -0.596156 10.2256 -0.0649811 -0.0245011 0.0426106 0.06 0.08 pose: 0.0 4.64948 -3.8459 0 0.00240452 -5.66753e-050.998173 -0.0603712 uwb: 0.50172187 1206.25 524.497 +imu_odom_: 1691062475.13184042 -0.306458 -0.902614 9.76116 -0.0660464 -0.103331 0.0649811 0.06 0.08 pose: 0.72013393 4.63963 -3.84764 0 -0.00507125 0.00125377 0.998282 -0.0583664 uwb: 0.0 1206.25 524.497 +imu_odom_: 1691062475.30196928 0.4956 -0.0454898 9.85453 -0.036219 -0.0351537 0.0703074 0.08 0.05 pose: 0.0 4.63963 -3.84764 0 -0.00507125 0.00125377 0.998282 -0.0583664 uwb: 0.0 1206.25 524.497 +imu_odom_: 1691062475.46182671 0.708684 0.131681 9.9096 -0.0500674 -0.00213053 0.0948085 0.08 0.05 pose: 0.0 4.63963 -3.84764 0 -0.00507125 0.00125377 0.998282 -0.0583664 uwb: 0.49900395 1203.14 523.721 +imu_odom_: 1691062475.62270196 -0.131681 -0.25618 9.66539 -0.0617853 0.0287621 0.0671117 0.08 0.05 pose: 0.33004456 4.63963 -3.84764 0 -0.00527065 0.000237522 0.998262 -0.0586971 uwb: 0.0 1203.14 523.721 +imu_odom_: 1691062475.79238461 -0.502782 -0.129287 10.1227 -0.0447411 0.00213053 0.0181095 0.08 0.05 pose: 0.41011624 4.63963 -3.84764 0 -0.00514964 0.00162317 0.998214 -0.0595007 uwb: 0.0 1203.14 523.721 +imu_odom_: 1691062475.95440890 -0.0047884 -0.114922 9.85214 -0.0617853 -0.0383495 0.0500674 0.08 0.05 pose: 0.8050032 4.63963 -3.84764 0 -0.00598295 0.00166273 0.998214 -0.0594127 uwb: 0.49840324 1204.48 524.039 +imu_odom_: 1691062475.111373556 0.342371 -0.349553 9.91439 -0.0553937 -0.0245011 0.0703074 0.08 0.05 pose: 0.0 4.63963 -3.84764 0 -0.00598295 0.00166273 0.998214 -0.0594127 uwb: 0.0 1204.48 524.039 +imu_odom_: 1691062475.128380026 0.323217 -0.234632 10.0078 -0.0383495 -0.0223706 0.0447411 0.12 0 pose: 0.41053328 4.63476 -3.84852 0 -0.00723218 0.000569719 0.998194 -0.059633 uwb: 0.0 1204.48 524.039 +imu_odom_: 1691062475.145251176 0.0742203 -0.112527 9.72525 -0.0426106 -0.0330232 0.0543285 0.1 0 pose: 0.0 4.63476 -3.84852 0 -0.00723218 0.000569719 0.998194 -0.059633 uwb: 0.49998683 1203.13 523.743 +imu_odom_: 1691062475.161379821 0.387861 -0.215478 10.1849 -0.0543285 -0.00958738 0.0511327 0.1 0 pose: 0.0 4.63476 -3.84852 0 -0.00723218 0.000569719 0.998194 -0.059633 uwb: 0.0 1203.13 523.743 +imu_odom_: 1691062475.178367043 0.191536 -0.186748 9.95988 -0.0383495 0.00958738 0.0394148 0.11 0.02 pose: 0.25082749 4.62979 -3.84941 0 -0.0062449 0.000233805 0.998195 -0.0597317 uwb: 0.0 1203.13 523.743 +imu_odom_: 1691062475.194166139 0.414197 -0.287304 9.64863 -0.0671117 -0.0223706 0.0628506 0.11 0.02 pose: 0.0 4.62979 -3.84941 0 -0.0062449 0.000233805 0.998195 -0.0597317 uwb: 0.50002766 1203.5 524.029 +imu_odom_: 1691062475.211163860 0.289698 -0.299275 9.51456 -0.0543285 -0.00532632 0.0447411 0.11 0.02 pose: 0.31925117 4.62979 -3.84941 0 -0.00605264 0.00053539 0.998187 -0.0598896 uwb: 0.0 1203.5 524.029 +imu_odom_: 1691062475.227223096 1.1971 -0.169988 10.4148 -0.0394148 -0.0617853 0.0511327 0.1 0 pose: 0.42782438 4.62458 -3.85035 0 -0.00564461 -0.00186996 0.998175 -0.0601019 uwb: 0.0 1203.5 524.029 +imu_odom_: 1691062475.244163073 1.22823 0.114922 9.73961 -0.0607201 -0.0255663 0.112918 0.1 0 pose: 0.8001913 4.61995 -3.85119 0 -0.00462571 -0.00167764 0.998177 -0.0601476 uwb: 0.49928107 1203 524.045 +imu_odom_: 1691062475.260163106 1.21865 -0.608127 9.64863 -0.04048 -0.0372843 0.136354 0.1 0 pose: 0.0 4.61995 -3.85119 0 -0.00462571 -0.00167764 0.998177 -0.0601476 uwb: 0.0 1203 524.045 +imu_odom_: 1691062475.276155265 1.35512 -0.349553 9.50977 -0.0575243 -0.0330232 0.0990696 0.1 0 pose: 0.40997333 4.61995 -3.85119 0 -0.00012844 -0.00122576 0.998101 -0.061585 uwb: 0.0 1203 524.045 +imu_odom_: 1691062475.290155842 1.15161 -0.0023942 9.73961 -0.0394148 0.0383495 0.0681769 0.07 0 pose: 0.0 4.61995 -3.85119 0 -0.00012844 -0.00122576 0.998101 -0.061585 uwb: 0.50053803 1202.98 524.089 +imu_odom_: 1691062475.307219764 0.823605 -0.0550666 9.96227 -0.0553937 0.015979 0.0639159 0.07 0 pose: 0.0 4.61995 -3.85119 0 -0.00012844 -0.00122576 0.998101 -0.061585 uwb: 0.0 1202.98 524.089 +imu_odom_: 1691062475.323155637 0.411803 -0.124498 9.61272 -0.0575243 0.00213053 0.0106526 0.05 0 pose: 0.23001342 4.61995 -3.85119 0 0.00219568 -0.00100745 0.998063 -0.0621566 uwb: 0.0 1202.98 524.089 +imu_odom_: 1691062475.339151005 0.61531 -0.203507 9.94073 -0.0511327 -0.0255663 -0.0170442 0.05 0 pose: 0.0 4.61995 -3.85119 0 0.00219568 -0.00100745 0.998063 -0.0621566 uwb: 0.50121753 1198.71 522.618 +imu_odom_: 1691062475.356147559 0.744597 -0.198719 9.97424 -0.0607201 -0.0138484 -0.0127832 0.05 0 pose: 0.0 4.61995 -3.85119 0 0.00219568 -0.00100745 0.998063 -0.0621566 uwb: 0.0 1198.71 522.618 +imu_odom_: 1691062475.372144093 0.909797 -0.275333 9.78989 -0.0607201 -0.00639159 0.015979 0.06 0.02 pose: 0.72983111 4.61012 -3.85301 0 0.00649077 0.00138804 0.998095 -0.06133 uwb: 0.0 1198.71 522.618 +imu_odom_: 1691062475.387145564 0.768539 -0.260968 9.89045 -0.0511327 0.0149137 0.0287621 0.06 0.02 pose: 0.0 4.61012 -3.85301 0 0.00649077 0.00138804 0.998095 -0.06133 uwb: 0.49983518 1194.84 521.356 +imu_odom_: 1691062475.403143556 0.593762 -0.150835 10.0509 -0.0447411 0.02024 0.0276969 0.06 0.02 pose: 0.0 4.61012 -3.85301 0 0.00649077 0.00138804 0.998095 -0.06133 uwb: 0.0 1194.84 521.356 +imu_odom_: 1691062475.428204724 0.339977 -0.270545 9.9527 -0.0607201 -0.00639159 0.0809601 0.03 0.02 pose: 0.7008016 4.61012 -3.85301 0 0.00719263 0.0012685 0.998096 -0.0612487 uwb: 0.0 1194.84 521.356 +imu_odom_: 1691062475.445215860 0.426168 -0.318429 9.93354 -0.0532632 0.00639159 0.0735032 0.03 0.02 pose: 0.0 4.61012 -3.85301 0 0.00719263 0.0012685 0.998096 -0.0612487 uwb: 0.49827784 1194.37 521.317 +imu_odom_: 1691062475.469139065 -0.976834 -0.0981623 10.1897 -0.052198 0.0820254 0.0703074 0.03 0.02 pose: 0.72997984 4.61012 -3.85301 0 0.00639364 0.000780939 0.998079 -0.0616184 uwb: 0.0 1194.37 521.317 +imu_odom_: 1691062475.486202695 -1.13485 -0.136469 9.98382 -0.0628506 -0.0458064 0.0575243 0.05 0.02 pose: 0.0 4.61012 -3.85301 0 0.00639364 0.000780939 0.998079 -0.0616184 uwb: 0.50002183 1197.28 522.511 +imu_odom_: 1691062475.502252015 0.0454898 -0.124498 10.1323 -0.0532632 -0.0862864 0.0447411 0.05 0.02 pose: 0.17014052 4.61012 -3.85301 0 0.0046284 9.282e-05 0.998072 -0.0618984 uwb: 0.0 1197.28 522.511 +imu_odom_: 1691062475.528223380 0.567426 -0.162806 10.0533 -0.0596548 -0.0181095 0.0468716 0.12 0.02 pose: 0.49084404 4.61012 -3.85301 0 6.71558e-05 0.000376513 0.998055 -0.0623371 uwb: 0.0 1197.28 522.511 +imu_odom_: 1691062475.543123654 0.21069 -0.241814 9.69652 -0.0436758 0.00852212 0.0436758 0.12 0.02 pose: 0.0 4.61012 -3.85301 0 6.71558e-05 0.000376513 0.998055 -0.0623371 uwb: 0.50018806 1196.69 522.773 +imu_odom_: 1691062475.559213803 -0.251391 -0.215478 9.60314 -0.0617853 0.00426106 0.0553937 0.12 0.02 pose: 0.0 4.61012 -3.85301 0 6.71558e-05 0.000376513 0.998055 -0.0623371 uwb: 0.0 1196.69 522.773 +imu_odom_: 1691062475.584118071 0.208296 -0.440533 9.54568 -0.0500674 -0.0351537 0.0436758 0.11 0 pose: 0.8033701 4.61012 -3.85301 0 0.000885327 0.000622998 0.998053 -0.0623666 uwb: 0.50090840 1197.98 523.182 +imu_odom_: 1691062475.607127579 0.402226 0.047884 9.64384 -0.0479369 -0.0479369 0.0553937 0.13 0 pose: 0.73832355 4.60027 -3.85473 0 -0.00152605 -0.00127781 0.998034 -0.0626367 uwb: 0.0 1197.98 523.182 +imu_odom_: 1691062475.633105360 0.225055 -0.354342 10.307 -0.0703074 -0.0234358 0.0447411 0.16 0.02 pose: 0.0 4.60027 -3.85473 0 -0.00152605 -0.00127781 0.998034 -0.0626367 uwb: 0.0 1197.98 523.182 +imu_odom_: 1691062475.646160743 0.102951 -0.0430956 9.55047 -0.052198 -0.00213053 0.0298274 0.16 0.02 pose: 0.0 4.60027 -3.85473 0 -0.00152605 -0.00127781 0.998034 -0.0626367 uwb: 0.0 1197.98 523.182 +imu_odom_: 1691062475.661102429 0.54109 -0.19393 9.92875 -0.0607201 0.00532632 0.0394148 0.16 0.02 pose: 0.31038251 4.59042 -3.85646 0 -0.00137984 0.000476168 0.998022 -0.0628416 uwb: 0.0 1197.98 523.182 +imu_odom_: 1691062475.678387411 0.577003 -0.153229 9.89524 -0.0735032 0.00852212 0.0426106 0.17 0 pose: 0.45946107 4.59042 -3.85646 0 -0.00208176 -7.33571e-050.998022 -0.0628236 uwb: 0.0 1197.98 523.182 +imu_odom_: 1691062475.694264666 0.445322 -0.423774 9.75398 -0.0660464 0.0319579 0.0394148 0.17 0 pose: 0.7058761 4.59042 -3.85646 0 -0.00145572 9.33864e-05 0.998023 -0.0628349 uwb: 0.100059484 1200.05 524.072 +imu_odom_: 1691062475.710155336 0.471658 -0.342371 9.91439 -0.0490022 0.0127832 0.02024 0.17 0 pose: 0.0 4.59042 -3.85646 0 -0.00145572 9.33864e-05 0.998023 -0.0628349 uwb: 0.0 1200.05 524.072 +imu_odom_: 1691062475.727381991 0.45011 -0.222661 9.84975 -0.052198 0.0245011 0.0298274 0.13 0 pose: 0.41994146 4.58057 -3.85819 0 0.000532401 -0.00245351 0.99803 -0.0626939 uwb: 0.0 1200.05 524.072 +imu_odom_: 1691062475.744222228 0.213084 -0.0885855 10.1179 -0.0490022 -0.00106526 0.0639159 0.13 0 pose: 0.0 4.58057 -3.85819 0 0.000532401 -0.00245351 0.99803 -0.0626939 uwb: 0.50109213 1201.17 524.9 +imu_odom_: 1691062475.760112607 0.222661 -0.227449 10.0748 -0.0607201 -0.0415453 0.0479369 0.13 0 pose: 0.0 4.58057 -3.85819 0 0.000532401 -0.00245351 0.99803 -0.0626939 uwb: 0.0 1201.17 524.9 +imu_odom_: 1691062475.776262833 0.706289 -0.201113 10.3525 -0.0500674 -0.0117179 0.0149137 0.18 0 pose: 0.42081053 4.57072 -3.85992 0 -0.000704547-0.00031669 0.998023 -0.0628448 uwb: 0.0 1201.17 524.9 +imu_odom_: 1691062475.793220599 0.545878 -0.0263362 9.96227 -0.0500674 -0.0383495 0.0383495 0.14 0 pose: 0.0 4.57072 -3.85992 0 -0.000704547-0.00031669 0.998023 -0.0628448 uwb: 0.49905943 1200.67 524.92 +imu_odom_: 1691062475.809215967 0.373495 -0.299275 9.55047 -0.0553937 0.0426106 0.0532632 0.14 0 pose: 0.0 4.57072 -3.85992 0 -0.000704547-0.00031669 0.998023 -0.0628448 uwb: 0.0 1200.67 524.92 +imu_odom_: 1691062475.825098179 0.392649 -0.325611 9.86411 -0.0426106 0.00639159 0.0383495 0.14 0 pose: 0.32947010 4.57072 -3.85992 0 0.00094269 0.000621848 0.998033 -0.0626728 uwb: 0.0 1200.67 524.92 +imu_odom_: 1691062475.842097650 -0.0191536 -0.100556 9.56244 -0.0426106 0.0511327 0.0223706 0.14 0 pose: 0.0 4.57072 -3.85992 0 0.00094269 0.000621848 0.998033 -0.0626728 uwb: 0.0 1200.67 524.92 +imu_odom_: 1691062475.858088059 0.0143652 0.143652 9.79707 -0.0575243 -0.00106526 0.0692422 0.14 0 pose: 0.32042646 4.56087 -3.86165 0 0.000311029 -0.0008845560.998027 -0.062774 uwb: 0.0 1200.67 524.92 +imu_odom_: 1691062475.885109606 0.332794 -0.0167594 10.6111 -0.052198 -0.00106526 0.0127832 0.21 0 pose: 0.40862014 4.56087 -3.86165 0 -0.00312279 -9.87487e-060.998017 -0.0628652 uwb: 0.99876629 1202.28 525.754 +imu_odom_: 1691062475.901099140 0.418985 -0.009576819.4954 -0.0607201 -0.0308927 0.036219 0.21 0 pose: 0.0 4.56087 -3.86165 0 -0.00312279 -9.87487e-060.998017 -0.0628652 uwb: 0.0 1202.28 525.754 +imu_odom_: 1691062475.928275254 0.842759 -0.395043 10.0509 -0.0745685 -0.0639159 0.0511327 0.21 0.02 pose: 0.7025807 4.56087 -3.86165 0 -0.00319664 0.000700736 0.998022 -0.0627733 uwb: 0.0 1202.28 525.754 +imu_odom_: 1691062475.953144234 0.301669 0.150835 9.95988 -0.036219 -0.00745685 0.0340885 0.16 0 pose: 0.0 4.56087 -3.86165 0 -0.00319664 0.000700736 0.998022 -0.0627733 uwb: 0.0 1202.28 525.754 +imu_odom_: 1691062475.979130472 0.577003 -0.466869 9.87608 -0.0873517 0.0181095 0.052198 0.2 -0.02 pose: 0.71076101 4.55102 -3.86338 0 0.000411816 0.00359433 0.99803 -0.0626294 uwb: 0.0 1202.28 525.754 +imu_odom_: 1691062476.5332230 0.304064 -0.0047884 10.3022 -0.0287621 0.0234358 0.0234358 0.18 0 pose: 0.42940505 4.54117 -3.86511 0 0.000738985 0.00260794 0.998026 -0.0627513 uwb: 0.99846298 1205.07 527.236 +imu_odom_: 1691062476.22228176 0.282516 -0.347159 9.34696 -0.0660464 -0.00745685 0.0575243 0.18 0 pose: 0.8024369 4.54117 -3.86511 0 0.000102546 0.00332014 0.998028 -0.0626851 uwb: 0.0 1205.07 527.236 +imu_odom_: 1691062476.48243005 0.114922 -0.150835 9.67976 -0.0415453 0.0234358 0.0213053 0.16 0.02 pose: 0.0 4.54117 -3.86511 0 0.000102546 0.00332014 0.998028 -0.0626851 uwb: 0.50031066 1204.03 527.374 +imu_odom_: 1691062476.65225567 0.672771 -0.134075 9.53132 -0.0532632 0.0106526 0.0500674 0.16 0.02 pose: 0.42962679 4.53132 -3.86684 0 -0.00280403 0.0032599 0.998029 -0.0626071 uwb: 0.0 1204.03 527.374 +imu_odom_: 1691062476.81187985 0.289698 -0.533907 9.48822 -0.0628506 -0.0213053 0.0490022 0.16 0.02 pose: 0.0 4.53132 -3.86684 0 -0.00280403 0.0032599 0.998029 -0.0626071 uwb: 0.0 1204.03 527.374 +imu_odom_: 1691062476.98060892 0.248997 -0.198719 10.5584 -0.04048 0.0287621 0.0181095 0.23 0 pose: 0.51070465 4.52147 -3.86857 0 -0.00329648 0.0017887 0.998032 -0.062601 uwb: 0.50055280 1205.44 528.628 +imu_odom_: 1691062476.114054807 -0.0215478 0.011971 10.4052 -0.0660464 0.0213053 0.0585895 0.23 0 pose: 0.7007436 4.52147 -3.86857 0 -0.00407519 0.00159436 0.998034 -0.0625239 uwb: 0.0 1205.44 528.628 +imu_odom_: 1691062476.130245577 0.500388 -0.411803 9.80904 -0.0692422 0.00426106 0.0532632 0.23 0 pose: 0.0 4.52147 -3.86857 0 -0.00407519 0.00159436 0.998034 -0.0625239 uwb: 0.0 1205.44 528.628 +imu_odom_: 1691062476.147147064 0.438139 -0.311246 9.61511 -0.0415453 0.0245011 0.0138484 0.16 -0.02 pose: 0.42050156 4.5099 -3.86045 0 -0.00567561 0.00073053 0.998018 -0.0626757 uwb: 0.50020283 1206.76 530.102 +imu_odom_: 1691062476.163133980 0.0430956 0.136469 10.0987 -0.0607201 0.0234358 0.0553937 0.23 0.02 pose: 0.0 4.5099 -3.86045 0 -0.00567561 0.00073053 0.998018 -0.0626757 uwb: 0.0 1206.76 530.102 +imu_odom_: 1691062476.179068401 0.258574 -0.287304 9.72525 -0.072438 0.02024 0.056459 0.23 0.02 pose: 0.0 4.5099 -3.86045 0 -0.00567561 0.00073053 0.998018 -0.0626757 uwb: 0.0 1206.76 530.102 +imu_odom_: 1691062476.195104604 0.414197 -0.280122 9.61511 -0.0585895 0.015979 0.0394148 0.2 0 pose: 0.22954981 4.5099 -3.86045 0 -0.00504011 0.000271759 0.998032 -0.0625039 uwb: 0.50155893 1209.5 531.653 +imu_odom_: 1691062476.211131182 0.383072 -0.150835 9.97185 -0.0617853 0.00745685 0.0458064 0.2 0 pose: 0.0 4.5099 -3.86045 0 -0.00504011 0.000271759 0.998032 -0.0625039 uwb: 0.0 1209.5 531.653 +imu_odom_: 1691062476.228119285 0.531513 -0.241814 9.93354 -0.076699 0.0181095 0.0468716 0.2 0 pose: 0.0 4.5099 -3.86045 0 -0.00504011 0.000271759 0.998032 -0.0625039 uwb: 0.0 1209.5 531.653 +imu_odom_: 1691062476.244273309 0.328006 -0.237026 9.39724 -0.0511327 0.0703074 0.0181095 0.17 0 pose: 0.74918727 4.49484 -3.86309 0 -0.00261978 -0.0004670410.998021 -0.0628231 uwb: 0.49872715 1209.65 532.415 +imu_odom_: 1691062476.271212041 0.610521 -0.320823 10.1418 -0.0884169 -0.00639159 0.0798948 0.17 0 pose: 0.7998999 4.4902 -3.86391 0 -0.00356192 -0.0009447160.998023 -0.0627361 uwb: 0.0 1209.65 532.415 +imu_odom_: 1691062476.296208475 0.52433 -0.191536 9.69652 -0.0500674 -0.0149137 0.0436758 0.19 -0.02 pose: 0.35093757 4.4902 -3.86391 0 -0.00183088 -0.00242856 0.997997 -0.0631855 uwb: 0.50006868 1209.9 532.963 +imu_odom_: 1691062476.323206993 0.430956 -0.308852 9.59117 -0.0681769 -0.00106526 0.0458064 0.21 -0.02 pose: 0.0 4.4902 -3.86391 0 -0.00183088 -0.00242856 0.997997 -0.0631855 uwb: 0.0 1209.9 532.963 +imu_odom_: 1691062476.339048090 0.849942 -0.304064 10.4052 -0.0415453 -0.00532632 0.0308927 0.19 0 pose: 0.51994952 4.48035 -3.86565 0 0.00137842 -0.00396504 0.997985 -0.0633171 uwb: 0.49932500 1208.45 532.908 +imu_odom_: 1691062476.366030276 0.641646 -0.244209 10.422 -0.0575243 -0.0255663 0.0639159 0.19 0 pose: 0.0 4.48035 -3.86565 0 0.00137842 -0.00396504 0.997985 -0.0633171 uwb: 0.0 1208.45 532.908 +imu_odom_: 1691062476.382040815 0.713472 0 10.0269 -0.0532632 0.00106526 0.0458064 0.18 0 pose: 0.42823283 4.4705 -3.86739 0 0.00579587 -0.00288737 0.997957 -0.0635579 uwb: 0.0 1208.45 532.908 +imu_odom_: 1691062476.407184817 0.272939 -0.265756 9.4547 -0.0607201 -0.00106526 0.052198 0.18 0 pose: 0.7027267 4.4705 -3.86739 0 0.00614865 -0.00228367 0.997956 -0.0635751 uwb: 0.50159394 1208.56 533.755 +imu_odom_: 1691062476.429032455 0.253785 -0.294487 9.96946 -0.04048 -0.036219 0.0436758 0.19 0 pose: 0.34127274 4.46308 -3.86871 0 0.00406715 -0.00189303 0.997955 -0.0637615 uwb: 0.0 1208.56 533.755 +imu_odom_: 1691062476.454069719 0.296881 -0.155623 10.3022 -0.0628506 -0.0330232 0.0585895 0.19 0 pose: 0.0 4.46308 -3.86871 0 0.00406715 -0.00189303 0.997955 -0.0637615 uwb: 0.49956414 1209.17 534.592 +imu_odom_: 1691062476.478027345 0.54109 -0.0454898 10.6279 -0.0500674 -0.0319579 0.0394148 0.18 0 pose: 0.5881137 4.46066 -3.86914 0 0.00358484 -0.00197624 0.997956 -0.0637757 uwb: 0.0 1209.17 534.592 +imu_odom_: 1691062476.502019676 0.629675 -0.294487 9.88087 -0.0607201 -0.0447411 0.0447411 0.18 0 pose: 0.0 4.46066 -3.86914 0 0.00358484 -0.00197624 0.997956 -0.0637757 uwb: 0.49925793 1210.47 536.031 +imu_odom_: 1691062476.518021174 0.481235 -0.418985 9.4164 -0.0692422 0.0308927 0.0447411 0.22 0 pose: 0.48107149 4.45081 -3.87089 0 0.000967963 -0.0003125990.997946 -0.0640529 uwb: 0.0 1210.47 536.031 +imu_odom_: 1691062476.535016859 0.225055 -0.129287 10.2855 -0.0500674 0 0.0436758 0.22 0 pose: 0.0 4.45081 -3.87089 0 0.000967963 -0.0003125990.997946 -0.0640529 uwb: 0.49922876 1211.47 537.053 +imu_odom_: 1691062476.551128887 0.612916 -0.399832 9.91918 -0.0756338 -0.0511327 0.0543285 0.17 0 pose: 0.73843756 4.44097 -3.87265 0 0.00284507 -0.0009172610.997933 -0.0641985 uwb: 0.0 1211.47 537.053 +imu_odom_: 1691062476.567009647 0.476446 -0.11971 10.0317 -0.0575243 -0.00426106 0.036219 0.17 0 pose: 0.0 4.44097 -3.87265 0 0.00284507 -0.0009172610.997933 -0.0641985 uwb: 0.0 1211.47 537.053 +imu_odom_: 1691062476.583042350 0.519542 -0.172383 10.0197 -0.0394148 -0.0330232 0.0340885 0.17 0 pose: 0.0 4.44097 -3.87265 0 0.00284507 -0.0009172610.997933 -0.0641985 uwb: 0.0 1211.47 537.053 +imu_odom_: 1691062476.609179374 0.663194 -0.342371 10.1227 -0.0490022 0.00213053 0.0319579 0.23 0 pose: 0.8006290 4.44097 -3.87265 0 0.0036252 -0.00153107 0.997926 -0.0642582 uwb: 0.49954082 1211.49 538.071 +imu_odom_: 1691062476.633162664 0.782904 -0.275333 10.2232 -0.0372843 -0.0330232 0.0479369 0.19 0 pose: 0.66156225 4.43112 -3.87441 0 0.00708809 -0.0005572430.997915 -0.0641463 uwb: 0.0 1211.49 538.071 +imu_odom_: 1691062476.649083379 0.258574 -0.19393 10.0293 -0.056459 -0.0117179 0.052198 0.19 0 pose: 0.0 4.43112 -3.87441 0 0.00708809 -0.0005572430.997915 -0.0641463 uwb: 0.49979745 1207.98 537.227 +imu_odom_: 1691062476.675087708 0.632069 -0.0287304 10.0293 -0.0490022 -0.04048 0.056459 0.24 0 pose: 0.0 4.43112 -3.87441 0 0.00708809 -0.0005572430.997915 -0.0641463 uwb: 0.0 1207.98 537.227 +imu_odom_: 1691062476.701013587 0.646434 -0.229843 9.93833 -0.0596548 0.00958738 0.0426106 0.18 0.02 pose: 0.46909399 4.42128 -3.87617 0 0.00856891 0.000242348 0.997868 -0.0645464 uwb: 0.49953790 1209.26 538.705 +imu_odom_: 1691062476.727026958 0.603339 -0.227449 10.1658 -0.0756338 0.0117179 0.0703074 0.22 0.02 pose: 0.0 4.41438 -3.87741 0 0.00937048 0.0021685 0.997868 -0.0645464 uwb: 0.0 1209.26 538.705 +imu_odom_: 1691062476.744093219 0.536301 -0.502782 9.4954 -0.0585895 -0.0245011 0.0426106 0.22 0.02 pose: 0.33101006 4.41144 -3.87794 0 0.0106088 0.000233657 0.997847 -0.0647154 uwb: 0.49991994 1209.61 540.055 +imu_odom_: 1691062476.770308110 0.6608 -0.0766145 10.0604 -0.0394148 -0.0138484 0.0436758 0.25 -0.02 pose: 0.0 4.41144 -3.87794 0 0.0106088 0.000233657 0.997847 -0.0647154 uwb: 0.0 1209.61 540.055 +imu_odom_: 1691062476.796023428 0.45011 -0.179565 10.0413 -0.0479369 -0.00852212 0.0330232 0.25 -0.02 pose: 0.42930314 4.40159 -3.87971 0 0.00911053 -0.00174498 0.997838 -0.0650598 uwb: 0.50090567 1206.76 539.948 +imu_odom_: 1691062476.811998970 0.335188 0.0191536 9.78031 -0.072438 -0.0106526 0.0479369 0.22 0.02 pose: 0.44904400 4.39175 -3.88148 0 0.00737395 0.000883241 0.997858 -0.0649948 uwb: 0.0 1206.76 539.948 +imu_odom_: 1691062476.828055587 0.4956 -0.287304 10.1035 -0.0745685 -0.00106526 0.056459 0.22 0.02 pose: 0.0 4.39175 -3.88148 0 0.00737395 0.000883241 0.997858 -0.0649948 uwb: 0.0 1206.76 539.948 +imu_odom_: 1691062476.844055627 0.73502 -0.0574608 9.98143 -0.0617853 -0.00639159 0.0298274 0.21 0 pose: 0.0 4.39175 -3.88148 0 0.00737395 0.000883241 0.997858 -0.0649948 uwb: 0.50044489 1206.42 540.698 +imu_odom_: 1691062476.861052770 0.263362 -0.251391 10.137 -0.0596548 0.052198 0.0340885 0.21 0 pose: 0.38996724 4.38191 -3.88326 0 0.00636974 0.000569031 0.997854 -0.0651584 uwb: 0.0 1206.42 540.698 +imu_odom_: 1691062476.877046394 0.78051 -0.402226 10.2232 -0.056459 -0.0319579 0.0415453 0.21 0 pose: 0.0 4.38191 -3.88326 0 0.00636974 0.000569031 0.997854 -0.0651584 uwb: 0.0 1206.42 540.698 +imu_odom_: 1691062476.892995689 0.19393 -0.208296 9.56723 -0.0245011 0.0980043 0.0276969 0.18 -0.02 pose: 0.42026242 4.37636 -3.88427 0 0.00652942 -0.0001720170.997858 -0.0650859 uwb: 0.49931042 1207.97 542.586 +imu_odom_: 1691062476.919030348 0.387861 -0.344765 9.19852 -0.0841559 0.0117179 0.0543285 0.18 -0.02 pose: 0.6978564 4.37207 -3.88504 0 0.00546758 -9.59881e-050.997867 -0.0650456 uwb: 0.0 1207.97 542.586 +imu_odom_: 1691062476.944272341 0.59855 -0.306458 9.74919 -0.0543285 -0.04048 0.0426106 0.2 -0.02 pose: 0.35005390 4.37207 -3.88504 0 0.00254363 -0.00260158 0.997866 -0.0651929 uwb: 0.50049447 1207.63 543.334 +imu_odom_: 1691062476.970134351 0.521936 -0.232238 9.83299 -0.0617853 0.0191748 0.0500674 0.19 -0.02 pose: 0.0 4.37207 -3.88504 0 0.00254363 -0.00260158 0.997866 -0.0651929 uwb: 0.0 1207.63 543.334 +imu_odom_: 1691062476.986985969 0.442927 0.0311246 10.2831 -0.0330232 -0.0106526 0.0330232 0.18 -0.02 pose: 0.33119088 4.36223 -3.88682 0 0.00559523 -0.00229927 0.99785 -0.0652623 uwb: 0.49958747 1206.5 543.7 +imu_odom_: 1691062477.3035878 0.0622492 -0.0263362 9.4547 -0.0830906 0.0245011 0.0500674 0.18 -0.02 pose: 0.0 4.36223 -3.88682 0 0.00559523 -0.00229927 0.99785 -0.0652623 uwb: 0.0 1206.5 543.7 +imu_odom_: 1691062477.19014634 0.493206 -0.11971 10.3166 -0.056459 -0.02024 0.0308927 0.18 -0.02 pose: 0.0 4.36223 -3.88682 0 0.00559523 -0.00229927 0.99785 -0.0652623 uwb: 0.0 1206.5 543.7 +imu_odom_: 1691062477.45030930 0.811634 -0.471658 9.58878 -0.0639159 -0.00319579 0.036219 0.18 0.02 pose: 0.58846073 4.35239 -3.8886 0 0.00375541 0.00218146 0.997855 -0.0653236 uwb: 0.49884976 1207.86 544.937 +imu_odom_: 1691062477.70188941 1.12288 -0.378284 9.5816 -0.0511327 0 0.0298274 0.2 0.02 pose: 0.34035421 4.34546 -3.88986 0 0.00594608 0.00121626 0.99785 -0.0652539 uwb: 0.0 1207.86 544.937 +imu_odom_: 1691062477.96125912 0.823605 -0.105345 10.0844 -0.0735032 -0.0149137 0.0660464 0.2 0.02 pose: 0.7990253 4.34255 -3.89038 0 0.00670847 0.0010558 0.997848 -0.0652168 uwb: 0.50053839 1207.15 545.44 +imu_odom_: 1691062477.121117106 0.804452 -0.270545 10.0748 -0.0383495 0.0298274 0.0213053 0.2 0 pose: 0.43104729 4.33559 -3.89164 0 0.0108248 0.00163772 0.997795 -0.0654679 uwb: 0.0 1207.15 545.44 +imu_odom_: 1691062477.147094031 0.292093 -0.227449 9.87369 -0.056459 -0.0415453 0.0436758 0.2 0 pose: 0.0 4.33559 -3.89164 0 0.0108248 0.00163772 0.997795 -0.0654679 uwb: 0.49928436 1206.83 546.145 +imu_odom_: 1691062477.172024566 0.308852 0 10.0054 -0.0490022 -0.04048 0.0532632 0.17 -0.02 pose: 0.50968119 4.32382 -3.88361 0 0.0106602 0.000768302 0.997808 -0.0653091 uwb: 0.0 1206.83 546.145 +imu_odom_: 1691062477.187968034 0.574608 -0.586579 9.56962 -0.0681769 0 0.0532632 0.17 -0.02 pose: 0.0 4.32382 -3.88361 0 0.0106602 0.000768302 0.997808 -0.0653091 uwb: 0.50192076 1205.29 546.376 +imu_odom_: 1691062477.214022534 0.438139 -0.0933739 10.3789 -0.036219 -0.0617853 0.0511327 0.18 0 pose: 0.40874003 4.32109 -3.8841 0 0.00904721 0.000468904 0.997806 -0.0655882 uwb: 0.0 1205.29 546.376 +imu_odom_: 1691062477.239960089 0.407014 -0.126893 10.1514 -0.0575243 -0.00852212 0.0447411 0.23 0 pose: 0.8019125 4.32109 -3.8841 0 0.00862023 0.0010274 0.997806 -0.0656309 uwb: 0.50069880 1204.56 546.946 +imu_odom_: 1691062477.265071437 0.138864 -0.0383072 10.2855 -0.0671117 0.0138484 0.056459 0.19 0 pose: 0.18035375 4.31427 -3.88534 0 0.00765993 0.00228348 0.997806 -0.0657267 uwb: 0.0 1204.56 546.946 +imu_odom_: 1691062477.281059817 0.349553 -0.179565 9.8689 -0.0681769 -0.0553937 0.0543285 0.19 0 pose: 0.0 4.31427 -3.88534 0 0.00765993 0.00228348 0.997806 -0.0657267 uwb: 0.0 1204.56 546.946 +imu_odom_: 1691062477.306956543 0.639252 -0.232238 10.3262 -0.0543285 -0.00319579 0.0340885 0.18 0.02 pose: 0.34025214 4.31125 -3.88589 0 0.00435835 0.00308522 0.997815 -0.0658481 uwb: 0.49831029 1203.34 547.554 +imu_odom_: 1691062477.333009585 0.94571 -0.208296 9.62948 -0.0415453 -0.0383495 0.0351537 0.18 0.02 pose: 0.41013113 4.30141 -3.88769 0 0.00222343 0.00260715 0.997809 -0.0660776 uwb: 0.0 1203.34 547.554 +imu_odom_: 1691062477.359103456 0.373495 -0.138864 9.88566 -0.076699 0.0127832 0.0681769 0.19 0 pose: 0.43948724 4.29157 -3.88948 0 0.00697022 0.0023395 0.997794 -0.0659806 uwb: 0.50011844 1206.14 549.754 +imu_odom_: 1691062477.384283048 0.0526724 -0.035913 9.62708 -0.0479369 0.04048 0.0468716 0.23 0.02 pose: 0.26093871 4.28435 -3.8908 0 0.00418899 0.00246633 0.997785 -0.0663434 uwb: 0.50011261 1205.4 550.322 +imu_odom_: 1691062477.399104299 0.23942 -0.466869 9.94551 -0.056459 -0.00745685 0.04048 0.23 0.02 pose: 0.0 4.28435 -3.8908 0 0.00418899 0.00246633 0.997785 -0.0663434 uwb: 0.0 1205.4 550.322 +imu_odom_: 1691062477.425939510 0.878672 -0.445322 10.07 -0.04048 0.0191748 0.0351537 0.23 0.02 pose: 0.0 4.28435 -3.8908 0 0.00418899 0.00246633 0.997785 -0.0663434 uwb: 0.0 1205.4 550.322 +imu_odom_: 1691062477.451932767 0.737414 -0.0814029 9.86172 -0.0532632 -0.0191748 0.0490022 0.19 0.02 pose: 0.40000843 4.28174 -3.89128 0 0.000510763 0.00180147 0.997789 -0.0664347 uwb: 0.49848236 1208.22 552.425 +imu_odom_: 1691062477.468990578 0.253785 -0.397437 9.99579 -0.0543285 0.0585895 0.0436758 0.19 0.02 pose: 0.0 4.28174 -3.89128 0 0.000510763 0.00180147 0.997789 -0.0664347 uwb: 0.0 1208.22 552.425 +imu_odom_: 1691062477.494945047 0.466869 -0.213084 10.2783 -0.0500674 -0.0447411 0.056459 0.21 0.02 pose: 0.52828468 4.2719 -3.89308 0 0.00510456 0.00202008 0.997771 -0.0665011 uwb: 0.50131124 1209.15 553.504 +imu_odom_: 1691062477.519931575 0.543484 -0.0143652 10.0149 -0.0234358 -0.04048 0.0372843 0.25 0 pose: 0.43012280 4.26207 -3.89489 0 0.0028385 -0.00148416 0.997763 -0.0667668 uwb: 0.0 1209.15 553.504 +imu_odom_: 1691062477.542049277 0.667982 -0.294487 9.83538 -0.0777643 -0.0500674 0.052198 0.25 0 pose: 0.0 4.26207 -3.89489 0 0.0028385 -0.00148416 0.997763 -0.0667668 uwb: 0.49844736 1208.02 553.885 +imu_odom_: 1691062477.567039013 0.337582 -0.263362 9.90481 -0.0468716 -0.0511327 0.0330232 0.18 -0.02 pose: 0.47104230 4.25223 -3.8967 0 0.00650686 0.000205118 0.99774 -0.0668751 uwb: 0.0 1208.02 553.885 +imu_odom_: 1691062477.582919779 0.651223 -0.143652 9.66779 -0.0639159 -0.0298274 0.0500674 0.18 -0.02 pose: 0.0 4.25223 -3.8967 0 0.00650686 0.000205118 0.99774 -0.0668751 uwb: 0.0 1208.02 553.885 +imu_odom_: 1691062477.609092976 0.131681 -0.107739 9.98861 -0.0479369 0.0628506 0.0394148 0.19 0 pose: 0.40870502 4.2424 -3.89851 0 0.00625099 0.000409953 0.997742 -0.066877 uwb: 0.50113334 1205.63 553.942 +imu_odom_: 1691062477.634921167 0.222661 -0.474052 9.94791 -0.072438 0.0106526 0.0500674 0.19 0 pose: 0.0 4.2424 -3.89851 0 0.00625099 0.000409953 0.997742 -0.066877 uwb: 0.49906271 1206.79 555.515 +imu_odom_: 1691062477.659917610 0.828394 -0.162806 10.24 -0.0340885 -0.0415453 0.0372843 0.19 0 pose: 0.33101893 4.2424 -3.89851 0 0.00233735 0.000345614 0.997756 -0.0669095 uwb: 0.0 1206.79 555.515 +imu_odom_: 1691062477.675914448 0.622492 -0.071826 9.70849 -0.0553937 -0.0426106 0.0458064 0.19 0 pose: 0.0 4.2424 -3.89851 0 0.00233735 0.000345614 0.997756 -0.0669095 uwb: 0.0 1206.79 555.515 +imu_odom_: 1691062477.701914412 0.409408 -0.363919 9.66539 -0.0490022 -0.0340885 0.0436758 0.19 0 pose: 0.50917084 4.23256 -3.90032 0 0.00451092 0.000162826 0.997743 -0.0669987 uwb: 0.49973932 1204.19 555.014 +imu_odom_: 1691062477.727970954 0.191536 -0.155623 9.7851 -0.0500674 -0.0223706 0.052198 0.19 0 pose: 0.0 4.23256 -3.90032 0 0.00451092 0.000162826 0.997743 -0.0669987 uwb: 0.0 1204.19 555.014 +imu_odom_: 1691062477.753906467 0.0909797 -0.287304 9.82341 -0.056459 -0.0117179 0.0511327 0.21 0 pose: 0.42038506 4.22273 -3.90214 0 0.0038271 -0.00115409 0.997736 -0.0671332 uwb: 0.50006303 1202.28 555.095 +imu_odom_: 1691062477.779931804 0.543484 -0.141258 9.96946 -0.0436758 0.00745685 0.04048 0.21 0.02 pose: 0.44929205 4.21289 -3.90396 0 -0.000286597-0.00125339 0.997725 -0.0674067 uwb: 0.0 1202.28 555.095 +imu_odom_: 1691062477.796039464 0.328006 -0.143652 10.1131 -0.0735032 0.0138484 0.072438 0.21 0.02 pose: 0.0 4.21289 -3.90396 0 -0.000286597-0.00125339 0.997725 -0.0674067 uwb: 0.50181576 1205.56 557.144 +imu_odom_: 1691062477.812881463 0.430956 -0.500388 9.58399 -0.0607201 -0.0276969 0.0500674 0.21 0.02 pose: 0.0 4.21289 -3.90396 0 -0.000286597-0.00125339 0.997725 -0.0674067 uwb: 0.0 1205.56 557.144 +imu_odom_: 1691062477.838888719 0.919373 -0.0885855 10.0556 -0.036219 -0.0276969 0.0436758 0.18 0 pose: 0.50002221 4.20306 -3.90578 0 0.00026078 0.000242381 0.997704 -0.0677192 uwb: 0.49916771 1206.24 558.706 +imu_odom_: 1691062477.863897120 0.347159 -0.143652 10.0269 -0.0468716 0.0276969 0.036219 0.18 0 pose: 0.34980031 4.19601 -3.90709 0 0.00324538 0.000466772 0.997692 -0.0678173 uwb: 0.0 1206.24 558.706 +imu_odom_: 1691062477.887886252 0.371101 -0.232238 9.9527 -0.0788296 -0.0276969 0.0681769 0.2 0 pose: 0.7063724 4.19323 -3.90761 0 0.00248877 0.000785792 0.997695 -0.0678044 uwb: 0.50075129 1208.99 560.836 +imu_odom_: 1691062477.911889382 0.78051 -0.0981623 9.87129 -0.0649811 0.00106526 0.0340885 0.2 0 pose: 0.41933809 4.18617 -3.90893 0 -0.000653963-0.0005224260.997677 -0.0681119 uwb: 0.0 1208.99 560.836 +imu_odom_: 1691062477.937886722 0.328006 -0.110133 9.42837 -0.0628506 0.0276969 0.052198 0.18 -0.02 pose: 0.0 4.18617 -3.90893 0 -0.000653963-0.0005224260.997677 -0.0681119 uwb: 0.50040716 1209.05 561.697 +imu_odom_: 1691062477.953876560 0.114922 -0.361524 9.93594 -0.0490022 -0.00745685 0.036219 0.18 -0.02 pose: 0.50000470 4.17622 -3.91078 0 -0.0008616190.00181319 0.997669 -0.068206 uwb: 0.0 1209.05 561.697 +imu_odom_: 1691062477.979877983 0.325611 -0.320823 10.0413 -0.0596548 -0.0181095 0.056459 0.2 -0.02 pose: 0.0 4.17622 -3.91078 0 -0.0008616190.00181319 0.997669 -0.068206 uwb: 0.0 1209.05 561.697 +imu_odom_: 1691062478.5896613 0.553061 0.181959 10.0724 -0.0308927 -0.0223706 0.04048 0.2 0.02 pose: 0.23092933 4.17357 -3.91128 0 -0.00220799 0.000179431 0.997667 -0.0682341 uwb: 0.0 1209.05 561.697 +imu_odom_: 1691062478.29870005 0.620098 -0.0263362 10.1562 -0.0713727 -0.0266316 0.056459 0.2 0.02 pose: 0.0 4.17357 -3.91128 0 -0.00220799 0.000179431 0.997667 -0.0682341 uwb: 0.0 1209.05 561.697 +imu_odom_: 1691062478.45931592 0.483629 -0.356736 9.45949 -0.0468716 0.0170442 0.0330232 0.19 0 pose: 0.51958812 4.16374 -3.91312 0 -0.0006826210.00144654 0.997652 -0.068465 uwb: 0.99622116 1210.64 563.292 +imu_odom_: 1691062478.72868011 0.248997 -0.201113 9.68215 -0.0905475 -0.00213053 0.0607201 0.19 0 pose: 0.0 4.16374 -3.91312 0 -0.0006826210.00144654 0.997652 -0.068465 uwb: 0.0 1210.64 563.292 +imu_odom_: 1691062478.98872651 0.521936 -0.378284 10.0197 -0.0458064 -0.052198 0.0319579 0.19 0.02 pose: 0.32993125 4.15852 -3.9141 0 0.00128292 0.000944937 0.997646 -0.0685609 uwb: 0.50045693 1209.89 563.87 +imu_odom_: 1691062478.124870293 0.517148 -0.0143652 9.78989 -0.0607201 0 0.0415453 0.19 0.02 pose: 0.7950594 4.15391 -3.91496 0 0.000491496 0.000737633 0.997641 -0.068644 uwb: 0.0 1209.89 563.87 +imu_odom_: 1691062478.149865871 0 -0.172383 10.0533 -0.0703074 0.0266316 0.0617853 0.19 0.02 pose: 0.0 4.15391 -3.91496 0 0.000491496 0.000737633 0.997641 -0.068644 uwb: 0.50062024 1208.75 564.288 +imu_odom_: 1691062478.165874380 0.201113 -0.0502782 9.7875 -0.0649811 -0.0607201 0.0617853 0.19 0.02 pose: 0.52052734 4.14224 -3.90698 0 0.00125485 -0.0007963620.997633 -0.0687466 uwb: 0.0 1208.75 564.288 +imu_odom_: 1691062478.191944347 0.610521 -0.294487 10.1035 -0.0543285 -0.0191748 0.0340885 0.21 -0.02 pose: 0.0 4.14224 -3.90698 0 0.00125485 -0.0007963620.997633 -0.0687466 uwb: 0.50130267 1210.72 566.021 +imu_odom_: 1691062478.217994774 0.694318 -0.105345 10.0389 -0.0415453 -0.0266316 0.0298274 0.24 0 pose: 0.50932851 4.13241 -3.90883 0 -0.00142087 0.00109083 0.997607 -0.0691142 uwb: 0.0 1210.72 566.021 +imu_odom_: 1691062478.242863199 0.663194 -0.198719 10.4315 -0.0596548 0.0223706 0.0511327 0.24 0 pose: 0.0 4.13241 -3.90883 0 -0.00142087 0.00109083 0.997607 -0.0691142 uwb: 0.49865169 1211.93 567.393 +imu_odom_: 1691062478.268845675 0.225055 -0.0957681 9.20092 -0.0319579 0.0490022 0.0298274 0.22 0 pose: 0.42013732 4.12258 -3.91069 0 0.00143804 0.000998888 0.997607 -0.0691106 uwb: 0.0 1211.93 567.393 +imu_odom_: 1691062478.284850976 0.134075 -0.270545 9.99579 -0.0713727 -0.036219 0.0628506 0.22 0 pose: 0.0 4.12258 -3.91069 0 0.00143804 0.000998888 0.997607 -0.0691106 uwb: 0.0 1211.93 567.393 +imu_odom_: 1691062478.311128296 0.567426 -0.344765 9.7875 -0.0458064 0.0106526 0.0276969 0.24 0 pose: 0.51991783 4.11276 -3.91255 0 0.00456623 0.00203535 0.997595 -0.0691255 uwb: 0.0 1211.93 567.393 +imu_odom_: 1691062478.335980972 0.821211 -0.11971 9.4571 -0.0798948 -0.0213053 0.0607201 0.24 0 pose: 0.42107639 4.11276 -3.91255 0 0.00161635 0.00139715 0.997603 -0.069171 uwb: 0.100134839 1213.02 568.979 +imu_odom_: 1691062478.352835519 0.636858 -0.117316 9.91918 -0.0660464 0.00745685 0.04048 0.21 0.02 pose: 0.43000047 4.10293 -3.91441 0 0.00532944 0.000669599 0.99758 -0.0693264 uwb: 0.0 1213.02 568.979 +imu_odom_: 1691062478.378826744 0.287304 -0.100556 10.0724 -0.0692422 -0.0234358 0.0511327 0.21 0.02 pose: 0.0 4.10293 -3.91441 0 0.00532944 0.000669599 0.99758 -0.0693264 uwb: 0.0 1213.02 568.979 +imu_odom_: 1691062478.403854110 0.385466 -0.0622492 10.228 -0.0458064 0.00106526 0.0383495 0.25 0 pose: 0.8008921 4.10293 -3.91441 0 0.00590509 0.00113242 0.997576 -0.0693272 uwb: 0.49869252 1214.48 570.755 +imu_odom_: 1691062478.425830085 0.40462 -0.416591 9.81144 -0.0969391 -0.0117179 0.0692422 0.25 0 pose: 0.0 4.10293 -3.91441 0 0.00590509 0.00113242 0.997576 -0.0693272 uwb: 0.0 1214.48 570.755 +imu_odom_: 1691062478.442841531 0.56982 -0.275333 9.34217 -0.0532632 0.0575243 0.0415453 0.19 0 pose: 0.41843708 4.09311 -3.91627 0 0.00376807 0.0027067 0.997574 -0.0694611 uwb: 0.49968409 1213.1 570.72 +imu_odom_: 1691062478.467831568 0.0263362 -0.0861913 9.60075 -0.0575243 0.0234358 0.052198 0.19 0 pose: 0.0 4.09311 -3.91627 0 0.00376807 0.0027067 0.997574 -0.0694611 uwb: 0.0 1213.1 570.72 +imu_odom_: 1691062478.491833833 -0.339977 -0.0933739 9.74679 -0.0127832 0.0308927 0.0308927 0.19 0 pose: 0.47024048 4.08328 -3.91813 0 0.00265533 0.00101355 0.997558 -0.0697795 uwb: 0.50001947 1215.06 572.41 +imu_odom_: 1691062478.515828515 -0.225055 -0.0622492 9.74679 -0.0458064 -0.0106526 0.0543285 0.19 0 pose: 0.0 4.08328 -3.91813 0 0.00265533 0.00101355 0.997558 -0.0697795 uwb: 0.0 1215.06 572.41 +imu_odom_: 1691062478.532879041 0.54109 -0.289698 9.19134 -0.0458064 0.118244 0.0553937 0.21 0.02 pose: 0.41028876 4.07346 -3.92 0 -0.0002978180.00111999 0.997552 -0.0699199 uwb: 0.0 1215.06 572.41 +imu_odom_: 1691062478.558851309 0.328006 -0.251391 10.0652 -0.0511327 0.0234358 0.0468716 0.21 0.02 pose: 0.0 4.07346 -3.92 0 -0.0002978180.00111999 0.997552 -0.0699199 uwb: 0.49883251 1210.48 571.314 +imu_odom_: 1691062478.583888883 0.627281 0.0143652 9.88087 -0.0276969 -0.0276969 0.0426106 0.18 0 pose: 0.24942500 4.07346 -3.92 0 -0.00310367 0.00172457 0.997548 -0.069891 uwb: 0.50114227 1209.43 571.559 +imu_odom_: 1691062478.608833425 0.986411 -0.191536 9.58399 -0.0607201 -0.0149137 0.0426106 0.18 0 pose: 0.41073788 4.06363 -3.92187 0 -0.00420785 0.000659222 0.997526 -0.0701727 uwb: 0.0 1209.43 571.559 +imu_odom_: 1691062478.623820331 0.488417 -0.533907 9.50737 -0.0553937 0.0553937 0.0383495 0.18 0 pose: 0.0 4.06363 -3.92187 0 -0.00420785 0.000659222 0.997526 -0.0701727 uwb: 0.0 1209.43 571.559 +imu_odom_: 1691062478.647934001 0.560243 -0.215478 9.70131 -0.0649811 -0.0181095 0.0500674 0.18 0 pose: 0.49931955 4.05381 -3.92375 0 -0.00142001 0.000911235 0.997525 -0.070286 uwb: 0.50002822 1212.07 573.726 +imu_odom_: 1691062478.673986178 0.148441 -0.184354 10.4004 -0.0458064 0.0287621 0.0415453 0.19 0 pose: 0.0 4.05381 -3.92375 0 -0.00142001 0.000911235 0.997525 -0.070286 uwb: 0.0 1212.07 573.726 +imu_odom_: 1691062478.699827502 0.497994 -0.347159 9.81862 -0.0671117 -0.0106526 0.0543285 0.25 0.02 pose: 0.40983964 4.04399 -3.92563 0 0.00130005 -0.0003987430.997522 -0.0703455 uwb: 0.0 1212.07 573.726 +imu_odom_: 1691062478.725913801 0.440533 -0.102951 10.1394 -0.0383495 -0.0298274 0.0383495 0.25 0.02 pose: 0.0 4.04399 -3.92563 0 0.00130005 -0.0003987430.997522 -0.0703455 uwb: 0.0 1212.07 573.726 +imu_odom_: 1691062478.742890251 0.435745 -0.141258 9.79228 -0.052198 -0.0553937 0.0458064 0.23 0 pose: 0.50205509 4.03417 -3.92751 0 0.000553871 -0.0006018690.997511 -0.0705119 uwb: 0.99974147 1212.31 575.106 +imu_odom_: 1691062478.758808061 0.766145 -0.411803 9.50498 -0.0330232 0.02024 0.0319579 0.23 0 pose: 0.0 4.03417 -3.92751 0 0.000553871 -0.0006018690.997511 -0.0705119 uwb: 0.0 1212.31 575.106 +imu_odom_: 1691062478.784869279 0.469264 -0.172383 9.79947 -0.0543285 -0.0170442 0.0575243 0.25 0.02 pose: 0.51801344 4.02435 -3.9294 0 0.00206436 0.00138855 0.997498 -0.0706507 uwb: 0.49947119 1211.55 575.699 +imu_odom_: 1691062478.810803051 0.804452 -0.059855 10.4076 -0.0500674 -0.0479369 0.0511327 0.25 0.02 pose: 0.0 4.02435 -3.9294 0 0.00206436 0.00138855 0.997498 -0.0706507 uwb: 0.0 1211.55 575.699 +imu_odom_: 1691062478.827948651 0.225055 -0.308852 9.82102 -0.0575243 0.0351537 0.052198 0.23 0 pose: 0.34052932 4.02435 -3.9294 0 0.00330181 0.00252916 0.997489 -0.0706942 uwb: 0.0 1211.55 575.699 +imu_odom_: 1691062478.853800765 0.45011 -0.0957681 10.1442 -0.0436758 -0.0287621 0.052198 0.23 0 pose: 0.0 4.02435 -3.9294 0 0.00330181 0.00252916 0.997489 -0.0706942 uwb: 0.50072815 1212.26 577.052 +imu_odom_: 1691062478.870790631 0.624887 -0.299275 9.47625 -0.0777643 0.0106526 0.0585895 0.25 0.02 pose: 0.50928767 4.01453 -3.93128 0 0.00572231 0.00476312 0.997445 -0.0710478 uwb: 0.0 1212.26 577.052 +imu_odom_: 1691062478.896783606 0.0383072 -0.117316 9.49062 -0.0319579 0.0436758 0.0394148 0.25 0.02 pose: 0.0 4.01453 -3.93128 0 0.00572231 0.00476312 0.997445 -0.0710478 uwb: 0.49842130 1214.85 579.235 +imu_odom_: 1691062478.921850635 0.222661 -0.19393 9.87848 -0.0671117 -0.0181095 0.0490022 0.24 0 pose: 0.43002381 4.00471 -3.93318 0 0.00331609 0.00521693 0.997434 -0.0713298 uwb: 0.0 1214.85 579.235 +imu_odom_: 1691062478.936773090 0.31364 -0.134075 9.88326 -0.0468716 -0.015979 0.0298274 0.24 0 pose: 0.0 4.00471 -3.93318 0 0.00331609 0.00521693 0.997434 -0.0713298 uwb: 0.50185387 1212.24 578.913 +imu_odom_: 1691062478.963894115 0.490811 -0.241814 10.1969 -0.0703074 -0.0191748 0.0585895 0.18 0 pose: 0.42986923 3.99489 -3.93508 0 0.000110148 0.00427138 0.997435 -0.0714517 uwb: 0.0 1212.24 578.913 +imu_odom_: 1691062478.989799890 0.696713 -0.0861913 10.0126 -0.0490022 -0.0276969 0.0330232 0.18 0 pose: 0.0 3.99489 -3.93508 0 0.000110148 0.00427138 0.997435 -0.0714517 uwb: 0.49936328 1212.71 579.808 +imu_odom_: 1691062479.14927584 0.773327 -0.277727 9.88805 -0.0575243 0.0266316 0.0383495 0.23 0 pose: 0.41062123 3.98507 -3.93698 0 -0.00208557 0.00318305 0.997431 -0.0715288 uwb: 0.0 1212.71 579.808 +imu_odom_: 1691062479.29919162 -0.351948 -0.141258 9.60314 -0.0149137 0.0798948 0.0308927 0.23 0 pose: 0.0 3.98507 -3.93698 0 -0.00208557 0.00318305 0.997431 -0.0715288 uwb: 0.0 1212.71 579.808 +imu_odom_: 1691062479.56923834 0.102951 -0.438139 9.2895 -0.0713727 0.0149137 0.0447411 0.18 0.02 pose: 0.51966993 3.97526 -3.93889 0 0.00295528 0.00281827 0.997423 -0.0716302 uwb: 0.49981544 1209.07 578.824 +imu_odom_: 1691062479.81908922 0.186748 -0.179565 10.0963 -0.0458064 -0.0117179 0.0458064 0.18 0.02 pose: 0.40995059 3.96544 -3.94079 0 0.00160578 0.0018901 0.997432 -0.0715812 uwb: 0.0 1209.07 578.824 +imu_odom_: 1691062479.107964317 0.222661 -0.19393 9.90721 -0.0468716 -0.00319579 0.0383495 0.21 0 pose: 0.44088159 3.95729 -3.93529 0 -0.00240567 0.000697327 0.997423 -0.0717062 uwb: 0.50069333 1210.9 580.681 +imu_odom_: 1691062479.133755489 0.208296 -0.105345 9.95509 -0.0841559 0.015979 0.056459 0.19 -0.02 pose: 0.7928724 3.95372 -3.93288 0 -0.0032051 0.000695421 0.997421 -0.0717004 uwb: 0.49946846 1210.15 581.253 +imu_odom_: 1691062479.159768596 -0.141258 -0.25618 9.59117 -0.0372843 -0.00213053 0.00958738 0.19 -0.02 pose: 0.0 3.95372 -3.93288 0 -0.0032051 0.000695421 0.997421 -0.0717004 uwb: 0.0 1210.15 581.253 +imu_odom_: 1691062479.176752052 0.452504 -0.332794 9.89045 -0.072438 -0.0447411 0.0426106 0.19 0 pose: 0.25158320 3.95372 -3.93288 0 -0.0056485 0.00102122 0.997406 -0.0717485 uwb: 0.0 1210.15 581.253 +imu_odom_: 1691062479.202918852 0.890643 -0.328006 9.51695 -0.04048 0.0266316 0.0308927 0.19 0 pose: 0.0 3.95372 -3.93288 0 -0.0056485 0.00102122 0.997406 -0.0717485 uwb: 0.49897560 1211.25 582.703 +imu_odom_: 1691062479.228850009 1.08697 -0.100556 9.55047 -0.0777643 -0.0191748 0.0575243 0.19 0 pose: 0.52784762 3.9439 -3.93479 0 -0.0089728 0.000953381 0.997398 -0.0715198 uwb: 0.0 1211.25 582.703 +imu_odom_: 1691062479.254792832 0.25618 -0.134075 10.1945 -0.0426106 0.0245011 0.0255663 0.19 0 pose: 0.0 3.9439 -3.93479 0 -0.0089728 0.000953381 0.997398 -0.0715198 uwb: 0.49961428 1212.72 584.32 +imu_odom_: 1691062479.271743625 0.562637 -0.174777 9.55047 -0.0660464 -0.0266316 0.052198 0.19 0 pose: 0.43047016 3.93408 -3.9367 0 -0.00498343 0.000334987 0.997429 -0.0714887 uwb: 0.0 1212.72 584.32 +imu_odom_: 1691062479.297787937 0.0287304 0.011971 9.95748 -0.0468716 0.0245011 0.0298274 0.19 0 pose: 0.0 3.93408 -3.9367 0 -0.00498343 0.000334987 0.997429 -0.0714887 uwb: 0.50018005 1210.83 584.439 +imu_odom_: 1691062479.322718198 0.395043 -0.373495 9.43076 -0.0553937 -0.0170442 0.0276969 0.17 0 pose: 0.51920059 3.92427 -3.9386 0 -0.00473072 0.00206867 0.997425 -0.0715271 uwb: 0.0 1210.83 584.439 +imu_odom_: 1691062479.348726056 0.191536 -0.0814029 9.93115 -0.052198 0.0639159 0.0468716 0.17 0 pose: 0.0 3.92427 -3.9386 0 -0.00473072 0.00206867 0.997425 -0.0715271 uwb: 0.49965219 1211.14 585.624 +imu_odom_: 1691062479.365849498 0.557849 -0.395043 9.96946 -0.0532632 -0.0330232 0.0511327 0.2 -0.02 pose: 0.42087532 3.91445 -3.9405 0 -0.00605156 0.00270818 0.997425 -0.0714138 uwb: 0.0 1211.14 585.624 +imu_odom_: 1691062479.391730494 0.565032 0.117316 10.24 -0.0543285 -0.0106526 0.0426106 0.2 -0.02 pose: 0.0 3.91445 -3.9405 0 -0.00605156 0.00270818 0.997425 -0.0714138 uwb: 0.50116287 1211.15 586.499 +imu_odom_: 1691062479.417746809 0.632069 -0.143652 10.3621 -0.0532632 0.00745685 0.036219 0.21 0 pose: 0.51921226 3.90463 -3.9424 0 -0.00722085 0.00230077 0.997416 -0.0714452 uwb: 0.0 1211.15 586.499 +imu_odom_: 1691062479.443810370 0.361524 -0.328006 9.42118 -0.0777643 0.0276969 0.0458064 0.21 0.02 pose: 0.41988667 3.89482 -3.94431 0 -0.0039016 0.00380474 0.997423 -0.0715414 uwb: 0.50008673 1210.92 586.938 +imu_odom_: 1691062479.469893470 0.244209 -0.304064 9.50498 -0.036219 0.056459 0.02024 0.19 -0.02 pose: 0.26002609 3.89482 -3.94431 0 -0.00219849 0.00308925 0.997431 -0.0715388 uwb: 0.0 1210.92 586.938 +imu_odom_: 1691062479.486753855 0.440533 -0.198719 10.1682 -0.0703074 0.0181095 0.0532632 0.19 -0.02 pose: 0.26048978 3.885 -3.94621 0 -0.0031106 0.000480543 0.997434 -0.071527 uwb: 0.50023547 1212.29 588.699 +imu_odom_: 1691062479.511789980 0.45011 -0.316035 9.47146 -0.0500674 0.0543285 0.0415453 0.23 0 pose: 0.0 3.885 -3.94621 0 -0.0031106 0.000480543 0.997434 -0.071527 uwb: 0.0 1212.29 588.699 +imu_odom_: 1691062479.537969028 -0.191536 -0.0335188 9.81623 -0.0585895 0.0191748 0.052198 0.23 0.02 pose: 0.60993165 3.87824 -3.94752 0 -0.00224011 -0.00199075 0.997438 -0.0714726 uwb: 0.49808318 1211.25 588.955 +imu_odom_: 1691062479.563713538 0.00957681 -0.189142 9.60793 -0.0298274 -0.00426106 0.0298274 0.23 0.02 pose: 0.0 3.87824 -3.94752 0 -0.00224011 -0.00199075 0.997438 -0.0714726 uwb: 0.0 1211.25 588.955 +imu_odom_: 1691062479.589712647 0.0933739 -0.227449 9.29908 -0.0490022 0.00426106 0.0426106 0.23 0 pose: 0.8089123 3.87518 -3.94811 0 -0.0031055 -0.00176791 0.997432 -0.0715253 uwb: 0.50009548 1213.51 590.732 +imu_odom_: 1691062479.606701061 0.366313 0.102951 10.2568 -0.0255663 -0.0245011 0.0447411 0.23 0 pose: 0.0 3.87518 -3.94811 0 -0.0031055 -0.00176791 0.997432 -0.0715253 uwb: 0.0 1213.51 590.732 +imu_odom_: 1691062479.623778715 0.531513 -0.445322 9.62948 -0.0660464 -0.0223706 0.0607201 0.23 0 pose: 0.50844795 3.86536 -3.95002 0 -0.0083594 -0.00082578 0.997403 -0.0715289 uwb: 0.0 1213.51 590.732 +imu_odom_: 1691062479.639775856 0.21069 -0.337582 10.4052 -0.0458064 -0.00106526 0.0426106 0.23 0 pose: 0.0 3.86536 -3.95002 0 -0.0083594 -0.00082578 0.997403 -0.0715289 uwb: 0.50061168 1213.68 592.146 +imu_odom_: 1691062479.656768645 0.270545 0.0454898 10.2232 -0.0468716 -0.0106526 0.0383495 0.23 0 pose: 0.0 3.86536 -3.95002 0 -0.0083594 -0.00082578 0.997403 -0.0715289 uwb: 0.0 1213.68 592.146 +imu_odom_: 1691062479.673756183 0.378284 -0.146046 9.53132 -0.0692422 -0.0394148 0.052198 0.18 0.02 pose: 0.42986940 3.85555 -3.95192 0 -0.00884726 0.000365606 0.997388 -0.0716836 uwb: 0.0 1213.68 592.146 +imu_odom_: 1691062479.689698205 0.864307 -0.160412 10.2687 -0.0671117 -0.0426106 0.0340885 0.18 0.02 pose: 0.0 3.85555 -3.95192 0 -0.00884726 0.000365606 0.997388 -0.0716836 uwb: 0.50095289 1213.61 593.144 +imu_odom_: 1691062479.705697387 0.512359 -0.201113 9.64624 -0.0660464 0.0106526 0.0351537 0.18 0.02 pose: 0.0 3.85555 -3.95192 0 -0.00884726 0.000365606 0.997388 -0.0716836 uwb: 0.0 1213.61 593.144 +imu_odom_: 1691062479.721697153 0.490811 -0.146046 10.0269 -0.0628506 -0.076699 0.0447411 0.18 0.02 pose: 0.51006361 3.84573 -3.95383 0 -0.00722766 0.000332323 0.997389 -0.0718535 uwb: 0.0 1213.61 593.144 +imu_odom_: 1691062479.737709459 1.09176 -0.160412 9.41161 -0.0511327 0.0191748 0.0276969 0.21 0 pose: 0.0 3.84573 -3.95383 0 -0.00722766 0.000332323 0.997389 -0.0718535 uwb: 0.50003132 1214.06 593.996 +imu_odom_: 1691062479.753759678 0.471658 -0.31364 9.34936 -0.0777643 0.00639159 0.0553937 0.21 0 pose: 0.63984773 3.83592 -3.95574 0 -0.0002171750.00148208 0.997415 -0.071845 uwb: 0.0 1214.06 593.996 +imu_odom_: 1691062479.770748966 0.440533 -0.248997 10.1562 -0.0596548 -0.0649811 0.0468716 0.22 0 pose: 0.0 3.83592 -3.95574 0 -0.0002171750.00148208 0.997415 -0.071845 uwb: 0.0 1214.06 593.996 +imu_odom_: 1691062479.786690988 0.294487 0.00718261 10.1155 -0.0276969 -0.00213053 0.0308927 0.22 0 pose: 0.0 3.83592 -3.95574 0 -0.0002171750.00148208 0.997415 -0.071845 uwb: 0.49989716 1214.7 595.368 +imu_odom_: 1691062479.803686401 0.42138 -0.399832 9.79468 -0.0532632 -0.0319579 0.0468716 0.22 0 pose: 0.32052609 3.83592 -3.95574 0 0.00175852 -0.0006464490.997407 -0.0719479 uwb: 0.0 1214.7 595.368 +imu_odom_: 1691062479.819721163 0.349553 -0.289698 10.003 -0.0255663 0.00213053 0.0287621 0.18 0 pose: 0.42931820 3.8261 -3.95765 0 0.0017814 -0.00169839 0.997403 -0.0719793 uwb: 0.0 1214.7 595.368 +imu_odom_: 1691062479.836697328 0.519542 -0.342371 9.75637 -0.0490022 -0.0479369 0.0447411 0.18 0 pose: 0.7068396 3.8261 -3.95765 0 0.00112993 -0.00193209 0.997406 -0.071943 uwb: 0.49817651 1216.1 596.992 +imu_odom_: 1691062479.853682242 0.486023 -0.19393 9.69652 -0.0543285 -0.0255663 0.0511327 0.18 0 pose: 0.0 3.8261 -3.95765 0 0.00112993 -0.00193209 0.997406 -0.071943 uwb: 0.0 1216.1 596.992 +imu_odom_: 1691062479.870904548 1.35033 -0.114922 10.1227 -0.0447411 -0.0340885 0.0468716 0.18 0 pose: 0.42927445 3.81628 -3.95957 0 0.00301771 -0.00150808 0.997397 -0.0720313 uwb: 0.0 1216.1 596.992 +imu_odom_: 1691062479.887740727 0.962469 -0.28491 9.79228 -0.0500674 0.0266316 0.0948085 0.16 -0.02 pose: 0.0 3.81628 -3.95957 0 0.00301771 -0.00150808 0.997397 -0.0720313 uwb: 0.50037254 1216.33 598.239 +imu_odom_: 1691062479.904712809 1.12049 -0.339977 10.07 -0.0628506 -0.0553937 0.143811 0.16 -0.02 pose: 0.0 3.81628 -3.95957 0 0.00301771 -0.00150808 0.997397 -0.0720313 uwb: 0.0 1216.33 598.239 +imu_odom_: 1691062479.929659402 1.59933 -0.28491 9.85214 -0.0447411 0.0330232 0.0703074 0.14 -0.05 pose: 0.24075474 3.80647 -3.96148 0 0.00552783 -0.00102409 0.997369 -0.0722783 uwb: 0.0 1216.33 598.239 +imu_odom_: 1691062479.946679896 1.075 0.234632 10.0652 -0.0511327 0.0340885 0.0458064 0.14 -0.05 pose: 0.0 3.80647 -3.96148 0 0.00552783 -0.00102409 0.997369 -0.0722783 uwb: 0.49977467 1218.35 600.352 +imu_odom_: 1691062479.963712638 0.725443 -0.289698 9.67736 -0.0713727 0.0479369 0.0798948 0.11 0.08 pose: 0.33960496 3.80647 -3.96148 0 0.00906524 -0.00116262 0.997251 -0.0735382 uwb: 0.0 1218.35 600.352 +imu_odom_: 1691062479.980659639 0.94571 -0.507571 9.88805 -0.0532632 -0.0106526 0.115049 0.11 0.08 pose: 0.42018414 3.79666 -3.96343 0 0.0117231 -8.87869e-050.99719 -0.0739911 uwb: 0.0 1218.35 600.352 +imu_odom_: 1691062479.996658822 1.13485 -0.37589 9.80904 -0.0394148 -0.00426106 0.14168 0.11 0.08 pose: 0.0 3.79666 -3.96343 0 0.0117231 -8.87869e-050.99719 -0.0739911 uwb: 0.49962595 1219.36 601.817 +imu_odom_: 1691062480.13662404 0.383072 -0.0622492 9.68933 -0.0479369 0.0777643 0.237554 0.11 0.32 pose: 0.42922196 3.79666 -3.96343 0 0.0153378 -0.00177295 0.997014 -0.0756586 uwb: 0.0 1219.36 601.817 +imu_odom_: 1691062480.30656948 0.1652 -0.632069 9.8689 -0.0671117 -0.0298274 0.396278 0.11 0.32 pose: 0.0 3.79666 -3.96343 0 0.0153378 -0.00177295 0.997014 -0.0756586 uwb: 0.0 1219.36 601.817 +imu_odom_: 1691062480.47708070 0.509965 -0.696713 9.87129 -0.0447411 -0.0266316 0.412257 0.11 0.32 pose: 0.0 3.79666 -3.96343 0 0.0153378 -0.00177295 0.997014 -0.0756586 uwb: 0.50130588 1222.19 604.062 +imu_odom_: 1691062480.63692968 1.1564 -0.153229 10.3166 -0.0170442 -0.0223706 0.415453 0.07 0.35 pose: 0.7018234 3.79666 -3.96343 0 0.0144373 -0.00143327 0.996976 -0.0763476 uwb: 0.0 1222.19 604.062 +imu_odom_: 1691062480.80731549 0.85473 0.0981623 9.77553 -0.0585895 0.0276969 0.487891 0.09 0.55 pose: 0.0 3.79666 -3.96343 0 0.0144373 -0.00143327 0.996976 -0.0763476 uwb: 0.0 1222.19 604.062 +imu_odom_: 1691062480.97657851 0.718261 -0.531513 9.91439 -0.072438 0.0117179 0.502805 0.09 0.55 pose: 0.67122806 3.78684 -3.96533 0 0.0136713 -0.00231639 0.996014 -0.0881134 uwb: 0.50054478 1220.82 604.076 +imu_odom_: 1691062480.112660516 0.483629 -0.356736 9.81144 -0.04048 0.00213053 0.488956 0.09 0.55 pose: 0.0 3.78684 -3.96533 0 0.0136713 -0.00231639 0.996014 -0.0881134 uwb: 0.0 1220.82 604.076 +imu_odom_: 1691062480.128717157 0.526724 -0.241814 10.1347 -0.0458064 0.00213053 0.534763 0.06 0.44 pose: 0.0 3.78684 -3.96533 0 0.0136713 -0.00231639 0.996014 -0.0881134 uwb: 0.0 1220.82 604.076 +imu_odom_: 1691062480.143708740 0.720655 -0.294487 9.79947 -0.0628506 -0.015979 0.586961 0.06 0.44 pose: 0.34053249 3.78684 -3.96533 0 0.0134879 -0.00352665 0.995298 -0.0958546 uwb: 0.49812128 1221.14 605.119 +imu_odom_: 1691062480.159654559 0.76375 -0.301669 9.68455 -0.0436758 0 0.588026 0.04 0.5 pose: 0.38855629 3.78679 -3.96529 0 0.0127659 -0.00299411 0.994318 -0.105635 uwb: 0.0 1221.14 605.119 +imu_odom_: 1691062480.175764861 0.584185 -0.112527 9.7875 -0.0532632 0.0266316 0.604005 0.04 0.5 pose: 0.0 3.78679 -3.96529 0 0.0127659 -0.00299411 0.994318 -0.105635 uwb: 0.0 1221.14 605.119 +imu_odom_: 1691062480.193648897 0.600945 -0.263362 10.0126 -0.052198 0.0181095 0.632767 0.04 0.5 pose: 0.0 3.78679 -3.96529 0 0.0127659 -0.00299411 0.994318 -0.105635 uwb: 0.50097349 1219.75 605.178 +imu_odom_: 1691062480.209698830 0.325611 -0.40462 9.93354 -0.0660464 0.00532632 0.627441 0.04 0.55 pose: 0.7065191 3.78684 -3.96533 0 0.0134452 -0.00292884 0.994104 -0.107558 uwb: 0.0 1219.75 605.178 +imu_odom_: 1691062480.226640880 0.447716 -0.0742203 9.5792 -0.0458064 -0.00426106 0.576308 0.06 0.67 pose: 0.0 3.78684 -3.96533 0 0.0134452 -0.00292884 0.994104 -0.107558 uwb: 0.0 1219.75 605.178 +imu_odom_: 1691062480.242754973 0.584185 0.071826 9.93115 -0.0511327 0.015979 0.525175 0.06 0.67 pose: 0.0 3.78684 -3.96533 0 0.0134452 -0.00292884 0.994104 -0.116835 uwb: 0.0 1219.75 605.178 +imu_odom_: 1691062480.259697606 0.816423 -0.0766145 9.93354 -0.056459 -0.0127832 0.491087 0.05 0.61 pose: 0.32883203 3.77703 -3.96724 0 0.00931174 -0.00190585 0.991948 -0.126288 uwb: 0.0 1219.75 605.178 +imu_odom_: 1691062480.275692419 0.684742 -0.337582 9.85693 -0.052198 -0.00426106 0.439954 0.05 0.61 pose: 0.0 3.77703 -3.96724 0 0.00931174 -0.00190585 0.991948 -0.126288 uwb: 0.0 1219.75 605.178 +imu_odom_: 1691062480.293754062 0.634463 -0.0790087 9.90481 -0.0479369 0.0170442 0.398409 0.05 0.61 pose: 0.34054998 3.77703 -3.96724 0 0.0090142 0.000956916 0.990861 -0.134582 uwb: 0.99998426 1220.41 606.431 +imu_odom_: 1691062480.308621700 0.466869 -0.0454898 9.83059 -0.0607201 0.015979 0.398409 0.05 0.53 pose: 0.33052060 3.77703 -3.96724 0 0.0107512 0.00114046 0.989923 -0.141195 uwb: 0.0 1220.41 606.431 +imu_odom_: 1691062480.325731732 0.447716 -0.21069 9.94312 -0.0628506 0.00852212 0.381365 0.05 0.53 pose: 0.0 3.77703 -3.96724 0 0.0107512 0.00114046 0.989923 -0.141195 uwb: 0.0 1220.41 606.431 +imu_odom_: 1691062480.341670552 0.493206 -0.181959 9.81862 -0.0468716 -0.00319579 0.343015 0.05 0.53 pose: 0.0 3.77703 -3.96724 0 0.0107512 0.00114046 0.989923 -0.141195 uwb: 0.49984777 1221.97 607.663 +imu_odom_: 1691062480.358612601 0.588974 -0.158017 9.83777 -0.0447411 -0.0106526 0.320645 0.02 0.29 pose: 0.49974278 3.77703 -3.96724 0 0.00681526 0.00235341 0.988708 -0.149682 uwb: 0.0 1221.97 607.663 +imu_odom_: 1691062480.374725528 0.565032 -0.146046 9.90002 -0.052198 -0.00319579 0.313188 0.02 0.29 pose: 0.0 3.77703 -3.96724 0 0.00681526 0.00235341 0.988708 -0.149682 uwb: 0.0 1221.97 607.663 +imu_odom_: 1691062480.391613916 0.562637 -0.220267 9.92397 -0.052198 0 0.300405 0.03 0.32 pose: 0.40994493 3.77698 -3.9672 0 0.00766425 0.00499787 0.987811 -0.155387 uwb: 0.49957072 1222.06 608.306 +imu_odom_: 1691062480.407665307 0.562637 -0.186748 9.84256 -0.052198 -0.00532632 0.280165 0.03 0.32 pose: 0.0 3.77698 -3.9672 0 0.00766425 0.00499787 0.987811 -0.155387 uwb: 0.0 1222.06 608.306 +imu_odom_: 1691062480.424623980 0.529119 -0.124498 9.83538 -0.052198 0.00319579 0.264186 0.03 0.32 pose: 0.0 3.77698 -3.9672 0 0.00766425 0.00499787 0.987811 -0.155387 uwb: 0.0 1222.06 608.306 +imu_odom_: 1691062480.449619577 0.521936 -0.234632 9.92875 -0.056459 -0.00213053 0.254598 0.01 0.2 pose: 0.7947391 3.77703 -3.96724 0 0.00773223 0.00420851 0.987652 -0.156418 uwb: 0.50056519 1221.78 608.797 +imu_odom_: 1691062480.466611496 0.296881 -0.196325 9.97664 -0.0543285 0.0340885 0.235423 0.02 0.23 pose: 0.0 3.77703 -3.96724 0 0.00773223 0.00420851 0.987652 -0.156418 uwb: 0.0 1221.78 608.797 +imu_odom_: 1691062480.482686218 -0.723049 -0.148441 9.79468 -0.0660464 0.1012 0.218379 0.02 0.23 pose: 0.73952354 3.77703 -3.96724 0 0.00552146 0.000683634 0.986327 -0.164709 uwb: 0.0 1221.78 608.797 +imu_odom_: 1691062480.499610187 -1.49638 -0.0622492 10.0724 -0.0703074 0.0181095 0.223706 0.02 0.23 pose: 0.0 3.77703 -3.96724 0 0.00552146 0.000683634 0.986327 -0.164709 uwb: 0.50062644 1221.56 609.186 +imu_odom_: 1691062480.516612022 -0.739808 -0.45011 9.84256 -0.0532632 -0.0830906 0.207727 0.06 0.2 pose: 0.34000171 3.77703 -3.96724 0 0.00104819 3.90936e-05 0.985818 -0.167812 uwb: 0.0 1221.56 609.186 +imu_odom_: 1691062480.533726137 0.220267 -0.189142 9.88087 -0.0500674 -0.0681769 0.183225 0.06 0.2 pose: 0.0 3.77703 -3.96724 0 0.00104819 3.90936e-05 0.985818 -0.167812 uwb: 0.49796380 1221.75 609.645 +imu_odom_: 1691062480.549761780 0.555455 0.0694318 10.0413 -0.0479369 -0.0415453 0.20027 0.09 0.14 pose: 0.43100693 3.76717 -3.96915 0 -0.00204665 -0.0004104160.985226 -0.171249 uwb: 0.0 1221.75 609.645 +imu_odom_: 1691062480.567682854 0.272939 -0.371101 9.8258 -0.0745685 -0.00106526 0.186421 0.09 0.14 pose: 0.0 3.76717 -3.96915 0 -0.00204665 -0.0004104160.985226 -0.171249 uwb: 0.0 1221.75 609.645 +imu_odom_: 1691062480.583677084 -0.0766145 -0.237026 10.0461 -0.0628506 0.0181095 0.154463 0.09 0.14 pose: 0.0 3.76717 -3.96915 0 -0.00204665 -0.0004104160.985226 -0.171249 uwb: 0.50105515 1224.31 611.487 +imu_odom_: 1691062480.598751201 -0.174777 -0.100556 9.77074 -0.0660464 0.00639159 0.150202 0.1 0.11 pose: 0.8046256 3.76722 -3.96919 0 -0.00157207 0.000380443 0.985115 -0.171887 uwb: 0.0 1224.31 611.487 +imu_odom_: 1691062480.615877565 0.138864 -0.263362 10.1299 -0.0671117 -0.0213053 0.173638 0.1 0.08 pose: 0.0 3.76722 -3.96919 0 -0.00157207 0.000380443 0.985115 -0.171887 uwb: 0.0 1224.31 611.487 +imu_odom_: 1691062480.629662356 0.471658 -0.471658 9.81862 -0.0532632 -0.0138484 0.158724 0.1 0.08 pose: 0.56978808 3.76722 -3.96919 0 -0.00506956 -0.00109042 0.984459 -0.17554 uwb: 0.0 1224.31 611.487 +imu_odom_: 1691062480.645586593 0.488417 -0.301669 9.96227 -0.0553937 0.0213053 0.144876 0.1 0.08 pose: 0.0 3.76722 -3.96919 0 -0.00563749 -0.00142442 0.984372 -0.176003 uwb: 0.50050395 1224.26 612.354 +imu_odom_: 1691062480.660644378 0.42138 -0.428562 10.1634 -0.0639159 -0.0181095 0.160855 0.1 0.11 pose: 0.0 3.76722 -3.96919 0 -0.00563749 -0.00142442 0.984372 -0.176003 uwb: 0.0 1224.26 612.354 +imu_odom_: 1691062480.676716184 0.3304 -0.179565 9.91439 -0.0490022 -0.0319579 0.142745 0.1 0.11 pose: 0.30853702 3.75742 -3.9712 0 -0.00473822 -0.00283883 0.984046 -0.177828 uwb: 0.0 1224.26 612.354 +imu_odom_: 1691062480.691598987 0.179565 -0.117316 9.63187 -0.0532632 -0.0106526 0.144876 0.12 0.05 pose: 0.0 3.75742 -3.9712 0 -0.00473822 -0.00283883 0.984046 -0.177828 uwb: 0.49828751 1225.41 613.485 +imu_odom_: 1691062480.706589112 0.167594 -0.385466 9.52653 -0.0788296 0.0127832 0.152333 0.12 0.05 pose: 0.40083420 3.75742 -3.9712 0 -0.00297149 -0.00241608 0.983659 -0.180004 uwb: 0.0 1225.41 613.485 +imu_odom_: 1691062480.723670273 0.548272 -0.280122 9.84975 -0.0458064 -0.0298274 0.143811 0.12 0.05 pose: 0.0 3.75742 -3.9712 0 -0.00297149 -0.00241608 0.983659 -0.180004 uwb: 0.0 1225.41 613.485 +imu_odom_: 1691062480.741710918 0.859518 -0.232238 9.59596 -0.0649811 -0.0500674 0.18216 0.11 0.08 pose: 0.7070148 3.75742 -3.9712 0 -0.00356877 -0.0020573 0.98359 -0.180372 uwb: 0.50109598 1225.96 614.082 +imu_odom_: 1691062480.757585285 0.701501 -0.289698 9.64624 -0.0607201 0.00745685 0.227967 0.11 0.08 pose: 0.0 3.75742 -3.9712 0 -0.00356877 -0.0020573 0.98359 -0.180372 uwb: 0.0 1225.96 614.082 +imu_odom_: 1691062480.774639907 1.42934 -0.526724 10.1418 -0.0511327 -0.0575243 0.234358 0.11 0.08 pose: 0.0 3.75742 -3.9712 0 -0.00356877 -0.0020573 0.98359 -0.180372 uwb: 0.0 1225.96 614.082 +imu_odom_: 1691062480.791610537 1.53229 -0.158017 9.75877 -0.0415453 -0.0245011 0.15979 0.08 0.02 pose: 0.47871869 3.74762 -3.97319 0 -0.00230029 -0.00264493 0.9831 -0.183037 uwb: 0.50047479 1226.53 614.659 +imu_odom_: 1691062480.808696947 1.44849 0.28491 9.91678 -0.0500674 0.0255663 0.112918 0.11 0.08 pose: 0.0 3.74762 -3.97319 0 -0.00230029 -0.00264493 0.9831 -0.183037 uwb: 0.0 1226.53 614.659 +imu_odom_: 1691062480.826637269 0.80924 -0.0407014 9.9503 -0.0692422 0.0340885 0.0905475 0.11 0.08 pose: 0.66998570 3.73783 -3.97524 0 0.00475313 -0.00125577 0.982141 -0.188083 uwb: 0.0 1226.53 614.659 +imu_odom_: 1691062480.840586543 0.368707 -0.361524 9.84256 -0.0713727 0.00745685 0.0585895 0.07 0.05 pose: 0.0 3.73783 -3.97524 0 0.00475313 -0.00125577 0.982141 -0.188083 uwb: 0.49756425 1227.07 615.278 +imu_odom_: 1691062480.857633581 0.826 -0.418985 9.88326 -0.0468716 -0.0308927 0.0255663 0.07 0.05 pose: 0.0 3.73783 -3.97524 0 0.00475313 -0.00125577 0.982141 -0.188083 uwb: 0.0 1227.07 615.278 +imu_odom_: 1691062480.871847370 0.78051 -0.158017 9.80186 -0.0543285 -0.0127832 0.036219 0.07 0.05 pose: 0.34046540 3.73783 -3.97524 0 0.00591776 -5.81459e-050.981971 -0.188938 uwb: 0.0 1227.07 615.278 +imu_odom_: 1691062480.887645329 0.936133 -0.1652 10.0556 -0.0553937 0 0.0809601 0.05 0.05 pose: 0.39144059 3.73778 -3.9752 0 0.0084666 -0.0003095050.981966 -0.188866 uwb: 0.50256874 1227.25 615.74 +imu_odom_: 1691062480.904629957 0.529119 -0.373495 9.84017 -0.0532632 0.0149137 0.0713727 0.05 0.05 pose: 0.6867460 3.73783 -3.97524 0 0.00907882 -3.19659e-050.981935 -0.189002 uwb: 0.0 1227.25 615.74 +imu_odom_: 1691062480.921648707 0.679953 -0.0742203 10.058 -0.0468716 -0.00639159 0.0607201 0.05 0.05 pose: 0.0 3.73783 -3.97524 0 0.00907882 -3.19659e-050.981935 -0.189002 uwb: 0.0 1227.25 615.74 +imu_odom_: 1691062480.948825455 0.612916 -0.198719 9.9096 -0.0596548 0.00958738 0.0958738 0.06 0.11 pose: 0.42933877 3.73783 -3.97524 0 0.00972549 0.000386641 0.981809 -0.189622 uwb: 0.49822044 1224.91 614.338 +imu_odom_: 1691062480.974600596 -0.85473 -0.304064 9.61272 -0.0553937 0.110787 0.0830906 0.04 0.05 pose: 0.0 3.73783 -3.97524 0 0.00972549 0.000386641 0.981809 -0.189622 uwb: 0.0 1224.91 614.338 +imu_odom_: 1691062480.991586391 -1.39821 -0.0430956 10.173 -0.0532632 0.0213053 0.1012 0.04 0.05 pose: 0.35014192 3.73783 -3.97524 0 0.00903929 0.00262378 0.981639 -0.190515 uwb: 0.50078101 1223.34 613.942 +imu_odom_: 1691062481.17572682 0.0742203 -0.1652 9.75398 -0.0596548 -0.0948085 0.0617853 0.09 0.02 pose: 0.24968474 3.72804 -3.97724 0 0.00550771 0.00186504 0.98155 -0.191116 uwb: 0.0 1223.34 613.942 +imu_odom_: 1691062481.44564250 0.837971 -0.246603 9.80426 -0.0660464 -0.00532632 0.0745685 0.13 0.02 pose: 0.35941309 3.72804 -3.97724 0 0.00297352 0.00161101 0.981448 -0.191697 uwb: 0.49927044 1224.05 614.271 +imu_odom_: 1691062481.60556153 0.699107 -0.280122 9.65582 -0.0628506 0.0351537 0.0660464 0.13 0.02 pose: 0.0 3.72804 -3.97724 0 0.00297352 0.00161101 0.981448 -0.191697 uwb: 0.0 1224.05 614.271 +imu_odom_: 1691062481.77615447 0.677559 -0.0502782 9.97664 -0.0553937 -0.0415453 0.0479369 0.13 0.02 pose: 0.0 3.72804 -3.97724 0 0.00297352 0.00161101 0.981448 -0.191697 uwb: 0.0 1224.05 614.271 +imu_odom_: 1691062481.95598646 0.823605 -0.248997 9.70609 -0.0756338 -0.0351537 0.0649811 0.12 -0.05 pose: 0.7028155 3.72804 -3.97724 0 0.0036865 0.00161338 0.981422 -0.191818 uwb: 0.50096783 1223.52 614.401 +imu_odom_: 1691062481.109594587 1.86508 -0.64404 10.1945 -0.0500674 -0.0234358 -0.0351537 0.12 -0.05 pose: 0.0 3.72804 -3.97724 0 0.0036865 0.00161338 0.981422 -0.191818 uwb: 0.0 1223.52 614.401 +imu_odom_: 1691062481.126714833 1.37188 0.215478 9.67497 -0.036219 0.0127832 -0.198139 0.05 -0.26 pose: 0.44019657 3.72804 -3.97724 0 0.00750612 0.00193335 0.981286 -0.192399 uwb: 0.0 1223.52 614.401 +imu_odom_: 1691062481.140714857 1.37906 0.557849 9.94312 -0.0713727 0.0266316 -0.259925 0.05 -0.26 pose: 0.0 3.72804 -3.97724 0 0.00750612 0.00193335 0.981286 -0.192399 uwb: 0.49842185 1223.37 614.666 +imu_odom_: 1691062481.157557464 0.847547 0.196325 10.0221 -0.0671117 0.0351537 -0.337689 0.05 -0.26 pose: 0.0 3.72804 -3.97724 0 0.00750612 0.00193335 0.981286 -0.192399 uwb: 0.0 1223.37 614.666 +imu_odom_: 1691062481.171713514 0.414197 -0.311246 9.77553 -0.072438 0.0223706 -0.426106 0.04 -0.38 pose: 0.47965793 3.72029 -3.98907 0 0.0121604 0.00298439 0.981447 -0.191324 uwb: 0.0 1223.37 614.666 +imu_odom_: 1691062481.187555224 0.3304 -0.23942 9.92875 -0.0703074 -0.00745685 -0.44315 0.04 -0.38 pose: 0.0 3.72029 -3.98907 0 0.0121604 0.00298439 0.981447 -0.191324 uwb: 0.49998793 1224.97 615.786 +imu_odom_: 1691062481.204543067 0.292093 -0.251391 10.1131 -0.0649811 -0.0149137 -0.417584 0.04 -0.38 pose: 0.0 3.72029 -3.98907 0 0.0121604 0.00298439 0.981447 -0.191324 uwb: 0.0 1224.97 615.786 +imu_odom_: 1691062481.222680541 0.701501 -0.25618 10.3118 -0.0585895 -0.0426106 -0.415453 0.03 -0.44 pose: 0.47248951 3.72029 -3.98907 0 0.0129051 0.00584109 0.98292 -0.183486 uwb: 0.0 1224.97 615.786 +imu_odom_: 1691062481.238823512 0.531513 -0.275333 9.43794 -0.0553937 0.00426106 -0.421845 0.03 -0.44 pose: 0.0 3.72029 -3.98907 0 0.0129051 0.00584109 0.98292 -0.183486 uwb: 0.50116907 1225.62 616.199 +imu_odom_: 1691062481.255815730 0.289698 0.0263362 9.91199 -0.0649811 -0.0266316 -0.427171 0.03 -0.44 pose: 0.0 3.72029 -3.98907 0 0.0129051 0.00584109 0.98292 -0.183486 uwb: 0.0 1225.62 616.199 +imu_odom_: 1691062481.273755183 0.325611 -0.0790087 9.79707 -0.0681769 -0.00213053 -0.450607 0.03 -0.47 pose: 0.48873658 3.72029 -3.98907 0 0.0101995 0.00339844 0.984989 -0.172284 uwb: 0.0 1225.62 616.199 +imu_odom_: 1691062481.290697531 0.560243 -0.311246 10.0078 -0.0692422 -0.0245011 -0.462325 0.03 -0.5 pose: 0.0 3.72029 -3.98907 0 0.0101995 0.00339844 0.984989 -0.172284 uwb: 0.50000252 1225.86 616.558 +imu_odom_: 1691062481.305524053 0.746991 -0.205901 9.91439 -0.056459 0.00852212 -0.484695 0.03 -0.5 pose: 0.67951663 3.72029 -3.98907 0 0.0073381 0.00216893 0.987661 -0.156423 uwb: 0.0 1225.86 616.558 +imu_odom_: 1691062481.321527330 0.665588 -0.265756 9.82102 -0.0596548 -0.00532632 -0.479369 0.03 -0.5 pose: 0.0 3.72029 -3.98907 0 0.0073381 0.00216893 0.987661 -0.156423 uwb: 0.0 1225.86 616.558 +imu_odom_: 1691062481.338528005 0.205901 -0.325611 9.97185 -0.0660464 -0.0276969 -0.416518 0.03 -0.47 pose: 0.0 3.72029 -3.98907 0 0.0073381 0.00216893 0.987661 -0.156423 uwb: 0.49904595 1224.33 616.096 +imu_odom_: 1691062481.356595778 0.454898 -0.464475 9.94312 -0.072438 -0.00639159 -0.348341 0.03 -0.47 pose: 0.30893376 3.71051 -3.99118 0 0.00958275 0.00122746 0.988857 -0.148553 uwb: 0.0 1224.33 616.096 +imu_odom_: 1691062481.373530252 0.737414 -0.361524 9.75877 -0.0394148 -0.00852212 -0.318514 0.02 -0.38 pose: 0.45041843 3.71047 -3.99114 0 0.0085301 -0.0016247 0.990295 -0.138712 uwb: 0.0 1224.33 616.096 +imu_odom_: 1691062481.389652808 0.521936 -0.100556 9.89763 -0.0628506 -0.00852212 -0.268447 0.02 -0.38 pose: 0.0 3.71047 -3.99114 0 0.0085301 -0.0016247 0.990295 -0.138712 uwb: 0.50104658 1223.84 616.165 +imu_odom_: 1691062481.406642109 0.703895 -0.296881 9.79228 -0.0543285 0.00106526 -0.235423 0.02 -0.38 pose: 0.0 3.71047 -3.99114 0 0.0085301 -0.0016247 0.990295 -0.138712 uwb: 0.0 1223.84 616.165 +imu_odom_: 1691062481.422520857 0.459687 -0.347159 9.91678 -0.0532632 -0.00319579 -0.24075 0.02 -0.26 pose: 0.7029613 3.71052 -3.99118 0 0.00920006 -0.00179599 0.990462 -0.137466 uwb: 0.0 1223.84 616.165 +imu_odom_: 1691062481.448591144 0.59855 -0.296881 9.97424 -0.0543285 -0.0213053 -0.20027 0.03 -0.35 pose: 0.0 3.71052 -3.99118 0 0.00920006 -0.00179599 0.990462 -0.137466 uwb: 0.49795814 1223.34 616.254 +imu_odom_: 1691062481.464576339 0.517148 -0.316035 9.78989 -0.0639159 -0.00213053 -0.194943 0.03 -0.35 pose: 0.65998280 3.71052 -3.99118 0 0.0101788 -0.00247919 0.991733 -0.127889 uwb: 0.0 1223.34 616.254 +imu_odom_: 1691062481.482515501 0.471658 -0.203507 9.87608 -0.0479369 -0.00532632 -0.246076 0.02 -0.23 pose: 0.0 3.71052 -3.99118 0 0.0101788 -0.00247919 0.991733 -0.127889 uwb: 0.0 1223.34 616.254 +imu_odom_: 1691062481.499520551 0.387861 0.158017 9.88326 -0.0532632 -0.00958738 -0.308927 0.02 -0.23 pose: 0.25965589 3.71052 -3.99118 0 0.0107168 -0.00408057 0.992111 -0.124834 uwb: 0.49926468 1222.86 616.323 +imu_odom_: 1691062481.513510076 0.466869 0.0837971 9.94551 -0.0649811 -0.0223706 -0.339819 0.02 -0.35 pose: 0.0 3.71052 -3.99118 0 0.0107168 -0.00408057 0.992111 -0.124834 uwb: 0.0 1222.86 616.323 +imu_odom_: 1691062481.530507834 0.426168 -0.275333 9.82102 -0.056459 -0.00745685 -0.401605 0.02 -0.35 pose: 0.43931291 3.71047 -3.99114 0 0.00769552 -0.00141778 0.992947 -0.118297 uwb: 0.0 1222.86 616.323 +imu_odom_: 1691062481.547509092 0.521936 -0.0837971 9.90242 -0.0511327 -0.0138484 -0.441019 0.02 -0.35 pose: 0.0 3.71047 -3.99114 0 0.00769552 -0.00141778 0.992947 -0.118297 uwb: 0.50052455 1221.63 616.127 +imu_odom_: 1691062481.564556720 0.263362 -0.227449 9.81623 -0.0628506 0.00426106 -0.435693 0.02 -0.58 pose: 0.47988541 3.71047 -3.99114 0 0.00581034 0.000906951 0.994148 -0.107864 uwb: 0.0 1221.63 616.127 +imu_odom_: 1691062481.582609620 0.457293 -0.28491 9.96946 -0.0596548 -0.0266316 -0.477238 0.02 -0.58 pose: 0.0 3.71047 -3.99114 0 0.00581034 0.000906951 0.994148 -0.107864 uwb: 0.0 1221.63 616.127 +imu_odom_: 1691062481.596625101 0.54109 -0.0430956 9.8689 -0.0543285 0.00319579 -0.509196 0.02 -0.58 pose: 0.0 3.71047 -3.99114 0 0.00581034 0.000906951 0.994148 -0.107864 uwb: 0.50119239 1220.68 616.231 +imu_odom_: 1691062481.613516120 0.663194 -0.1652 10.0389 -0.0585895 -0.00958738 -0.527306 0.01 -0.53 pose: 0.41079666 3.71052 -3.99118 0 0.00393424 -0.0006026830.995221 -0.0975676 uwb: 0.0 1220.68 616.231 +imu_odom_: 1691062481.639507374 0.553061 -0.373495 9.83059 -0.0617853 -0.0106526 -0.552872 0.01 -0.55 pose: 0.0 3.71052 -3.99118 0 0.00393424 -0.0006026830.995221 -0.0975676 uwb: 0.50141113 1219.61 615.757 +imu_odom_: 1691062481.656608663 0.347159 -0.203507 9.92636 -0.0500674 0.0287621 -0.5827 0.01 -0.55 pose: 0.32043883 3.71052 -3.99118 0 0.00593901 0.000138701 0.996058 -0.0885039 uwb: 0.0 1219.61 615.757 +imu_odom_: 1691062481.672557404 -0.299275 -0.129287 9.81144 -0.0490022 0.0468716 -0.56246 0.03 -0.58 pose: 0.0 3.71052 -3.99118 0 0.00593901 0.000138701 0.996058 -0.0885039 uwb: 0.0 1219.61 615.757 +imu_odom_: 1691062481.690674464 -0.47884 -0.237026 9.89524 -0.0617853 -0.0223706 -0.578439 0.03 -0.58 pose: 0.43982619 3.71052 -3.99118 0 0.00364194 -0.00119202 0.997158 -0.0752385 uwb: 0.49849475 1219.6 615.777 +imu_odom_: 1691062481.707530779 -0.85473 -0.0335188 9.68215 -0.0436758 0.0213053 -0.577373 0.03 -0.58 pose: 0.0 3.71052 -3.99118 0 0.00364194 -0.00119202 0.997158 -0.0752385 uwb: 0.0 1219.6 615.777 +imu_odom_: 1691062481.721516804 -0.682347 -0.172383 10.1514 -0.0575243 -0.0138484 -0.450607 0.05 -0.41 pose: 0.33031365 3.70073 -3.99326 0 0.000230035 -0.00117162 0.997876 -0.065128 uwb: 0.0 1219.6 615.777 +imu_odom_: 1691062481.738608178 -0.134075 -0.830788 9.80186 -0.0862864 -0.0852212 -0.356864 0.05 -0.41 pose: 0.0 3.70073 -3.99326 0 0.000230035 -0.00117162 0.997876 -0.065128 uwb: 0.50013084 1220.11 616.446 +imu_odom_: 1691062481.752608493 0.275333 -0.392649 9.88805 -0.0607201 -0.0415453 -0.383495 0.05 -0.41 pose: 0.0 3.70073 -3.99326 0 0.000230035 -0.00117162 0.997876 -0.065128 uwb: 0.0 1220.11 616.446 +imu_odom_: 1691062481.769533634 0.474052 0.205901 10.228 -0.0383495 0.00213053 -0.380299 0.08 -0.47 pose: 0.46970146 3.70073 -3.99326 0 -0.00266719 -0.00320444 0.998532 -0.0540131 uwb: 0.0 1220.11 616.446 +imu_odom_: 1691062481.783605692 0.162806 0.0383072 9.92636 -0.0820254 -0.0191748 -0.330232 0.08 -0.47 pose: 0.0 3.70073 -3.99326 0 -0.00266719 -0.00320444 0.998532 -0.0540131 uwb: 0.49851225 1222.15 617.542 +imu_odom_: 1691062481.799489690 0.172383 -0.31364 9.9096 -0.0511327 -0.015979 -0.347276 0.09 -0.35 pose: 0.38988921 3.70068 -3.99322 0 -0.00327388 -0.00118674 0.998927 -0.0461852 uwb: 0.0 1222.15 617.542 +imu_odom_: 1691062481.814595309 0.100556 -0.428562 9.78989 -0.0255663 0.00532632 -0.354733 0.09 -0.35 pose: 0.0 3.70068 -3.99322 0 -0.00327388 -0.00118674 0.998927 -0.0461852 uwb: 0.0 1222.15 617.542 +imu_odom_: 1691062481.830591878 0.0981623 -0.169988 9.70609 -0.0490022 -0.0234358 -0.298274 0.09 -0.35 pose: 0.0 3.70068 -3.99322 0 -0.00327388 -0.00118674 0.998927 -0.0461852 uwb: 0.0 1222.15 617.542 +imu_odom_: 1691062481.847594886 0.0933739 -0.392649 10.0389 -0.0532632 -0.0479369 -0.268447 0.1 -0.32 pose: 0.6942706 3.70073 -3.99326 0 -0.00384517 -0.00150158 0.998986 -0.0448432 uwb: 0.50159486 1222.42 617.838 +imu_odom_: 1691062481.865590334 0.402226 -0.21069 9.85693 -0.052198 0.0138484 -0.26099 0.1 -0.32 pose: 0.0 3.70073 -3.99326 0 -0.00384517 -0.00150158 0.998986 -0.0448432 uwb: 0.0 1222.42 617.838 +imu_odom_: 1691062481.882590717 0.337582 -0.21069 9.93833 -0.0553937 0.0266316 -0.257794 0.11 -0.32 pose: 0.47053845 3.69095 -3.99532 0 -0.00743985 -0.00252008 0.999308 -0.0363614 uwb: 0.0 1222.42 617.838 +imu_odom_: 1691062481.897477900 -0.155623 -0.153229 9.52174 -0.052198 0.0415453 -0.237554 0.11 -0.29 pose: 0.0 3.69095 -3.99532 0 -0.00743985 -0.00252008 0.999308 -0.0363614 uwb: 0.50041956 1221.64 617.653 +imu_odom_: 1691062481.913605122 0.699107 -0.363919 10.0437 -0.0575243 -0.036219 -0.229032 0.11 -0.23 pose: 0.0 3.69095 -3.99532 0 -0.00743985 -0.00252008 0.999308 -0.0363614 uwb: 0.0 1221.64 617.653 +imu_odom_: 1691062481.930587716 1.08457 0.0694318 9.94073 -0.0607201 -0.0394148 -0.209857 0.11 -0.23 pose: 0.65875500 3.67916 -3.98756 0 -0.00653053 -0.00135047 0.999621 -0.0267278 uwb: 0.0 1221.64 617.653 +imu_odom_: 1691062481.947579058 1.37188 -0.0861913 10.1203 -0.0596548 0.0607201 -0.152333 0.12 -0.32 pose: 0.0 3.67916 -3.98756 0 -0.00653053 -0.00135047 0.999621 -0.0267278 uwb: 0.50060621 1223.21 618.787 +imu_odom_: 1691062481.964523738 1.33357 -0.47884 10.1251 -0.0756338 0.0127832 -0.1012 0.12 -0.32 pose: 0.0 3.67916 -3.98756 0 -0.00653053 -0.00135047 0.999621 -0.0267278 uwb: 0.0 1223.21 618.787 +imu_odom_: 1691062481.981634652 1.11091 -0.40462 9.73004 -0.0532632 0.0234358 -0.164051 0.12 -0.32 pose: 0.33998433 3.67916 -3.98756 0 -0.00306403 -0.0009179350.99974 -0.0225888 uwb: 0.0 1223.21 618.787 +imu_odom_: 1691062481.999481656 0.916979 0.148441 10.0293 -0.0468716 0.036219 -0.204531 0.07 -0.23 pose: 0.44158476 3.67916 -3.98756 0 0.000558923 -0.00167906 0.999824 -0.0186799 uwb: 0.49983336 1224.18 619.413 +imu_odom_: 1691062482.17589389 0.426168 0.035913 9.71328 -0.0830906 0.00852212 -0.156594 0.07 -0.23 pose: 0.8135791 3.67916 -3.98756 0 0.00102555 -0.00113118 0.999842 -0.0176855 uwb: 0.0 1224.18 619.413 +imu_odom_: 1691062482.33754531 0.68953 -0.543484 9.98861 -0.0532632 -0.00958738 -0.166181 0.06 -0.17 pose: 0.0 3.67916 -3.98756 0 0.00102555 -0.00113118 0.999842 -0.0176855 uwb: 0.49988598 1224 619.717 +imu_odom_: 1691062482.51460973 0.723049 -0.248997 9.90002 -0.0585895 -0.0181095 -0.170442 0.06 -0.26 pose: 0.43984088 3.66937 -3.9896 0 0.00241433 -0.00018396 0.999912 -0.0130591 uwb: 0.0 1224 619.717 +imu_odom_: 1691062482.68455821 0.773327 -0.124498 9.93833 -0.0543285 -0.00958738 -0.133158 0.05 -0.17 pose: 0.0 3.66937 -3.9896 0 0.00241433 -0.00018396 0.999912 -0.0130591 uwb: 0.0 1224 619.717 +imu_odom_: 1691062482.82459058 0.658405 -0.23942 9.85214 -0.0671117 -0.0127832 -0.0969391 0.05 -0.17 pose: 0.0 3.66937 -3.9896 0 0.00241433 -0.00018396 0.999912 -0.0130591 uwb: 0.0 1224 619.717 +imu_odom_: 1691062482.99568811 0.588974 -0.428562 9.82341 -0.052198 0.00852212 -0.100135 0.04 -0.14 pose: 0.24712143 3.66937 -3.9896 0 0.00498103 -0.0001360420.999931 -0.0105936 uwb: 0.49734005 1225.23 620.663 +imu_odom_: 1691062482.116519330 0.744597 -0.162806 10.0389 -0.0575243 -0.02024 -0.0937433 0.04 -0.14 pose: 0.0 3.66937 -3.9896 0 0.00498103 -0.0001360420.999931 -0.0105936 uwb: 0.0 1225.23 620.663 +imu_odom_: 1691062482.142582627 0.59855 -0.160412 10.1921 -0.056459 0.00426106 -0.0884169 0.04 -0.14 pose: 0.31164318 3.66937 -3.9896 0 0.0074895 -0.0008150420.999937 -0.00827876 uwb: 0.49999978 1227 621.469 +imu_odom_: 1691062482.158445049 0.124498 -0.466869 9.56723 -0.0735032 0.0213053 -0.120375 0.04 -0.14 pose: 0.33834545 3.66937 -3.9896 0 0.00934223 -0.0003615920.999938 -0.00600265 uwb: 0.0 1227 621.469 +imu_odom_: 1691062482.184508638 -1.25696 0.222661 9.58878 -0.0394148 0.0820254 -0.2024 0.04 -0.14 pose: 0.0 3.66937 -3.9896 0 0.00934223 -0.0003615920.999938 -0.00600265 uwb: 0.50149005 1224.88 620.507 +imu_odom_: 1691062482.210505442 -0.948104 -1.01993 9.60075 -0.0798948 -0.0617853 -0.0458064 0.06 -0.14 pose: 0.43059895 3.66937 -3.9896 0 0.00676061 0.000825422 0.999974 -0.00251859 uwb: 0.0 1224.88 620.507 +imu_odom_: 1691062482.234451455 0.488417 0.011971 9.93115 -0.0394148 -0.0830906 -0.0585895 0.11 -0.11 pose: 0.43980010 3.6623 -3.99104 0 0.00272842 -0.0002310620.999996 0.000769697 uwb: 0.49992687 1225.75 621.3 +imu_odom_: 1691062482.251445720 0.632069 -0.0694318 9.75158 -0.056459 0.0308927 -0.00639159 0.11 -0.11 pose: 0.0 3.6623 -3.99104 0 0.00272842 -0.0002310620.999996 0.000769697 uwb: 0.0 1225.75 621.3 +imu_odom_: 1691062482.278624820 -0.270545 -0.258574 9.8258 -0.052198 0.015979 -0.100135 0.11 -0.08 pose: 0.40940278 3.65958 -3.99162 0 0.00512307 0.0032608 0.999979 0.00234123 uwb: 0.0 1225.75 621.3 +imu_odom_: 1691062482.302421224 0.258574 -0.672771 9.70849 -0.0639159 -0.0330232 -0.0415453 0.11 -0.08 pose: 0.0 3.65958 -3.99162 0 0.00512307 0.0032608 0.999979 0.00234123 uwb: 0.49914820 1223.94 620.581 +imu_odom_: 1691062482.328418319 0.641646 0.0622492 9.96946 -0.0490022 -0.0223706 -0.0340885 0.13 -0.11 pose: 0.50975504 3.65261 -3.99303 0 0.0016707 0.000606652 0.999985 0.0052098 uwb: 0.0 1223.94 620.581 +imu_odom_: 1691062482.344472930 0.756568 -0.220267 10.0509 -0.0532632 0.00639159 -0.0298274 0.13 -0.11 pose: 0.0 3.65261 -3.99303 0 0.0016707 0.000606652 0.999985 0.0052098 uwb: 0.50006394 1225.49 621.744 +imu_odom_: 1691062482.370423655 -0.349553 -0.162806 9.90242 -0.0585895 -0.00958738 -0.0415453 0.16 -0.08 pose: 0.42051706 3.64978 -3.99364 0 0.00499821 0.0024128 0.999962 0.00672107 uwb: 0.0 1225.49 621.744 +imu_odom_: 1691062482.395429477 0.323217 -0.162806 9.8665 -0.0490022 -0.0415453 -0.0266316 0.16 -0.08 pose: 0.0 3.64978 -3.99364 0 0.00499821 0.0024128 0.999962 0.00672107 uwb: 0.49889740 1223.28 620.954 +imu_odom_: 1691062482.421502398 0.258574 -0.251391 10.1131 -0.0490022 0.0777643 -0.0223706 0.16 -0.08 pose: 0.50956547 3.63999 -3.99567 0 0.000433692 0.00259164 0.999959 0.0086156 uwb: 0.0 1223.28 620.954 +imu_odom_: 1691062482.446421312 0.634463 -0.174777 10.2017 -0.0436758 -0.0276969 -0.0340885 0.16 -0.08 pose: 0.0 3.63999 -3.99567 0 0.000433692 0.00259164 0.999959 0.0086156 uwb: 0.50009018 1223.28 620.954 +imu_odom_: 1691062482.472474985 0.328006 -0.320823 9.41161 -0.076699 0.0106526 -0.00852212 0.14 -0.02 pose: 0.34077479 3.638 -3.98587 0 -0.00201107 0.00146468 0.99995 0.00971961 uwb: 0.0 1223.28 620.954 +imu_odom_: 1691062482.497624584 0.47884 0.0167594 10.1778 -0.0479369 -0.0447411 -0.0106526 0.15 -0.08 pose: 0.42968029 3.62816 -3.98781 0 -0.0015681 -0.0009500530.999938 0.0109692 uwb: 0.49974898 1224.77 622.195 +imu_odom_: 1691062482.514418786 0.68953 -0.19393 9.71806 -0.0532632 0.00106526 -0.0117179 0.15 -0.08 pose: 0.6963998 3.6282 -3.98784 0 -0.00114608 -0.0002880210.999937 0.0111433 uwb: 0.0 1224.77 622.195 +imu_odom_: 1691062482.538614441 0.318429 -0.268151 9.98622 -0.052198 -0.0223706 -0.00319579 0.15 -0.02 pose: 0.0 3.6282 -3.98784 0 -0.00114608 -0.0002880210.999937 0.0111433 uwb: 0.50004644 1225.3 622.81 +imu_odom_: 1691062482.564399225 0.799663 -0.203507 9.56484 -0.0628506 -0.0287621 0.00213053 0.15 -0.02 pose: 0.42044415 3.61841 -3.98988 0 0.0010713 0.00100905 0.999925 0.0121774 uwb: 0.0 1225.3 622.81 +imu_odom_: 1691062482.589534825 0.488417 -0.122104 9.84975 -0.0543285 0.00958738 0 0.16 -0.02 pose: 0.42915827 3.61841 -3.98988 0 0.00270615 -4.72017e-060.999911 0.013027 uwb: 0.50142589 1223.56 621.992 +imu_odom_: 1691062482.606466971 0.275333 -0.21069 9.80665 -0.0319579 0.0308927 -0.00213053 0.16 -0.02 pose: 0.7025532 3.61841 -3.98988 0 0.0029012 0.000659029 0.999909 0.0131678 uwb: 0.0 1223.56 621.992 +imu_odom_: 1691062482.631508081 0.196325 -0.232238 9.50498 -0.0628506 0.0191748 0.00745685 0.16 -0.02 pose: 0.0 3.61841 -3.98988 0 0.0029012 0.000659029 0.999909 0.0131678 uwb: 0.0 1223.56 621.992 +imu_odom_: 1691062482.657393479 0.497994 -0.395043 9.48343 -0.0607201 -0.00852212 0.015979 0.16 -0.02 pose: 0.43097808 3.60861 -3.99189 0 0.000572376 0.00201093 0.9999 0.0140159 uwb: 0.50002311 1225.37 623.43 +imu_odom_: 1691062482.674393577 0.778116 -0.31364 9.72285 -0.0703074 -0.0436758 0.00532632 0.18 -0.05 pose: 0.0 3.60861 -3.99189 0 0.000572376 0.00201093 0.9999 0.0140159 uwb: 0.0 1225.37 623.43 +imu_odom_: 1691062482.700488954 0.548272 -0.105345 9.97185 -0.0511327 -0.04048 0.0181095 0.18 -0.05 pose: 0.49892073 3.59881 -3.99388 0 0.000845154 -0.00100345 0.999891 0.0147185 uwb: 0.49946609 1226.14 624.384 +imu_odom_: 1691062482.725398828 0.627281 -0.169988 10.1562 -0.0511327 -0.0255663 0.00639159 0.21 -0.05 pose: 0.17268695 3.59881 -3.99388 0 0.00260183 -0.0007310580.999884 0.0149698 uwb: 0.0 1226.14 624.384 +imu_odom_: 1691062482.751396506 0.869095 -0.464475 9.97664 -0.0553937 -0.02024 0.036219 0.2 -0.05 pose: 0.43715495 3.58704 -3.98605 0 0.00684598 0.00126659 0.999854 0.0155886 uwb: 0.49854743 1225.95 624.706 +imu_odom_: 1691062482.775554831 0.311246 -0.275333 9.91439 -0.0628506 -0.00852212 0.0170442 0.2 -0.05 pose: 0.0 3.58704 -3.98605 0 0.00684598 0.00126659 0.999854 0.0155886 uwb: 0.0 1225.95 624.706 +imu_odom_: 1691062482.792498060 0.636858 -0.186748 10.0916 -0.0532632 -0.0468716 0.0276969 0.2 -0.05 pose: 0.0 3.58704 -3.98605 0 0.00684598 0.00126659 0.999854 0.0155886 uwb: 0.50072012 1224.78 624.419 +imu_odom_: 1691062482.817606246 0.976834 -0.363919 10.1993 -0.0585895 -0.0383495 0.0245011 0.18 -0.02 pose: 0.8000766 3.58704 -3.98605 0 0.00751637 0.00074248 0.99985 0.0155977 uwb: 0.0 1224.78 624.419 +imu_odom_: 1691062482.843386947 0.593762 -0.141258 10.386 -0.0639159 -0.0394148 0.0500674 0.2 -0.02 pose: 0.49054491 3.57723 -3.98801 0 0.00747859 -0.0006925130.999845 0.0159295 uwb: 0.50053056 1224.47 624.943 +imu_odom_: 1691062482.859430184 0.423774 -0.258574 9.44034 -0.0830906 0.02024 0.0458064 0.2 -0.02 pose: 0.0 3.57723 -3.98801 0 0.00747859 -0.0006925130.999845 0.0159295 uwb: 0.0 1224.47 624.943 +imu_odom_: 1691062482.885379743 0.746991 -0.0215478 9.68933 -0.0660464 -0.0149137 0.0213053 0.17 -0.02 pose: 0.41958383 3.56744 -3.99006 0 0.0112322 -0.0006399450.999806 0.0161457 uwb: 0.49857951 1224.85 625.8 +imu_odom_: 1691062482.910388189 0.442927 -0.217872 10.0604 -0.0639159 0.0117179 0.0234358 0.17 -0.02 pose: 0.0 3.56744 -3.99006 0 0.0112322 -0.0006399450.999806 0.0161457 uwb: 0.0 1224.85 625.8 +imu_odom_: 1691062482.936377119 0.610521 -0.251391 9.88805 -0.0703074 0.00532632 0.0426106 0.2 0 pose: 0.43026065 3.56744 -3.99006 0 0.00967731 0.000801177 0.999823 0.0160926 uwb: 0.50068804 1224.31 625.946 +imu_odom_: 1691062482.953437002 0.675165 -0.277727 9.63187 -0.0820254 0.0117179 0.0266316 0.2 0 pose: 0.0 3.56744 -3.99006 0 0.00967731 0.000801177 0.999823 0.0160926 uwb: 0.0 1224.31 625.946 +imu_odom_: 1691062482.977387973 0.287304 -0.454898 10.1658 -0.0458064 0.0191748 0.0170442 0.24 0 pose: 0.50954214 3.55766 -3.99211 0 0.0087728 0.000582305 0.999826 0.0164522 uwb: 0.0 1224.31 625.946 +imu_odom_: 1691062483.2365215 0.418985 -0.186748 9.84017 -0.0426106 -0.0745685 0.0266316 0.24 0 pose: 0.0 3.55766 -3.99211 0 0.0087728 0.000582305 0.999826 0.0164522 uwb: 0.50252536 1223.32 626.12 +imu_odom_: 1691062483.26357898 0.411803 0.0670376 10.1754 -0.0607201 -0.0649811 0.04048 0.18 -0.02 pose: 0.41993087 3.54583 -3.98436 0 0.0103448 -0.00240922 0.999806 0.0165911 uwb: 0.0 1223.32 626.12 +imu_odom_: 1691062483.52419163 0.387861 -0.126893 10.2424 -0.0383495 -0.0298274 0.0117179 0.18 -0.02 pose: 0.0 3.54583 -3.98436 0 0.0103448 -0.00240922 0.999806 0.0165911 uwb: 0.49864961 1222.96 626.725 +imu_odom_: 1691062483.78413060 0.35913 -0.225055 9.67497 -0.0788296 -0.0500674 0.0500674 0.21 -0.02 pose: 0.49986274 3.53603 -3.98639 0 0.007325 -0.00104786 0.999829 0.016933 uwb: 0.0 1222.96 626.725 +imu_odom_: 1691062483.95344921 0.129287 -0.260968 10.0628 -0.0607201 0.00426106 0.0266316 0.21 -0.02 pose: 0.0 3.53603 -3.98639 0 0.007325 -0.00104786 0.999829 0.016933 uwb: 0.49799933 1222.42 626.895 +imu_odom_: 1691062483.120354251 -0.035913 -0.416591 10.1945 -0.0788296 0.0117179 0.0511327 0.22 -0.05 pose: 0.74999994 3.52624 -3.98842 0 0.00257324 0.000568295 0.999848 0.0172186 uwb: 0.0 1222.42 626.895 +imu_odom_: 1691062483.137377394 0.402226 -0.160412 10.1969 -0.0628506 -0.0671117 0.04048 0.22 -0.05 pose: 0.0 3.52624 -3.98842 0 0.00257324 0.000568295 0.999848 0.0172186 uwb: 0.49989497 1222.2 627.997 +imu_odom_: 1691062483.161446486 0.526724 -0.112527 9.97185 -0.0617853 0.00532632 0.0287621 0.21 -0.05 pose: 0.41985520 3.51645 -3.99044 0 -0.000558689-0.0002423750.999853 0.0171348 uwb: 0.0 1222.2 627.997 +imu_odom_: 1691062483.187366891 0.311246 -0.260968 9.55287 -0.0447411 -0.0319579 0.0298274 0.23 0.02 pose: 0.34088864 3.50463 -3.98268 0 0.00187891 0.00197789 0.999847 0.017258 uwb: 0.50032951 1223.61 629.333 +imu_odom_: 1691062483.209344946 0.529119 -0.179565 10.3094 -0.0543285 0.0181095 0.0436758 0.23 0.02 pose: 0.0 3.50463 -3.98268 0 0.00187891 0.00197789 0.999847 0.017258 uwb: 0.0 1223.61 629.333 +imu_odom_: 1691062483.234347569 0.658405 -0.0407014 10.0197 -0.0447411 0.0234358 0.036219 0.17 0 pose: 0.8026725 3.50463 -3.98268 0 0.00131431 0.00158529 0.999848 0.0172978 uwb: 0.49967624 1223.83 630.427 +imu_odom_: 1691062483.258394789 0.756568 -0.19393 10.0078 -0.0511327 -0.0234358 0.0532632 0.17 0 pose: 0.0 3.50463 -3.98268 0 0.00131431 0.00158529 0.999848 0.0172978 uwb: 0.0 1223.83 630.427 +imu_odom_: 1691062483.273331561 0.225055 -0.136469 9.68694 -0.0468716 0.0351537 0.0319579 0.19 0 pose: 0.47993242 3.49484 -3.9847 0 0.00254518 0.00154618 0.999845 0.0173535 uwb: 0.0 1223.83 630.427 +imu_odom_: 1691062483.290392616 0.383072 -0.158017 10.0173 -0.0436758 -0.0319579 0.0458064 0.19 0 pose: 0.0 3.49484 -3.9847 0 0.00254518 0.00154618 0.999845 0.0173535 uwb: 0.50001163 1224.1 631.421 +imu_odom_: 1691062483.303323217 0.543484 -0.213084 10.3094 -0.0660464 -0.02024 0.0543285 0.19 0 pose: 0.0 3.49484 -3.9847 0 0.00254518 0.00154618 0.999845 0.0173535 uwb: 0.0 1224.1 631.421 +imu_odom_: 1691062483.319338755 0.186748 -0.0837971 9.78031 -0.0553937 0.0106526 0.0447411 0.17 -0.02 pose: 0.47871921 3.48504 -3.98673 0 0.00550471 0.00244016 0.999833 0.0172383 uwb: 0.0 1224.1 631.421 +imu_odom_: 1691062483.345389812 0.138864 -0.407014 9.42597 -0.072438 0.00319579 0.0607201 0.17 -0.02 pose: 0.0 3.48504 -3.98673 0 0.00550471 0.00244016 0.999833 0.0172383 uwb: 0.50006995 1221.91 630.696 +imu_odom_: 1691062483.370328275 0.213084 -0.143652 9.49062 -0.0596548 0.00426106 0.036219 0.19 0 pose: 0.46027900 3.47525 -3.98875 0 0.00340533 0.00217584 0.999846 0.0171043 uwb: 0.0 1221.91 630.696 +imu_odom_: 1691062483.395346063 0.177171 -0.588974 9.14346 -0.100135 0.00958738 0.072438 0.21 0 pose: 0.0 3.47525 -3.98875 0 0.00340533 0.00217584 0.999846 0.0171043 uwb: 0.50167687 1224.22 632.674 +imu_odom_: 1691062483.418405216 0.344765 -0.56982 9.91918 -0.0607201 0.0436758 0.0351537 0.2 0 pose: 0.66020491 3.46343 -3.98099 0 -0.00246037 0.000565835 0.999857 0.0167414 uwb: 0.0 1224.22 632.674 +imu_odom_: 1691062483.434342012 0.339977 -0.260968 10.5249 -0.0628506 0.0191748 0.036219 0.2 0 pose: 0.0 3.46343 -3.98099 0 -0.00246037 0.000565835 0.999857 0.0167414 uwb: 0.49667530 1224.75 633.964 +imu_odom_: 1691062483.460487560 0.651223 -0.270545 10.0149 -0.0319579 -0.04048 0.0351537 0.25 0 pose: 0.56955247 3.45364 -3.98303 0 -0.00337042 -0.00244875 0.999855 0.0165338 uwb: 0.0 1224.75 633.964 +imu_odom_: 1691062483.486365385 0.316035 -0.153229 9.77313 -0.0639159 0.00106526 0.0415453 0.2 0 pose: 0.8083594 3.45364 -3.98303 0 -0.00241429 -0.00238633 0.999857 0.0165537 uwb: 0.50143481 1223.99 634.49 +imu_odom_: 1691062483.511454624 0.148441 -0.227449 9.38288 -0.0383495 0.0149137 0.0447411 0.23 0.02 pose: 0.43939779 3.44385 -3.98507 0 -0.00191581 -0.0002933180.999861 0.0165689 uwb: 0.0 1223.99 634.49 +imu_odom_: 1691062483.524358686 0.071826 -0.416591 9.97185 -0.0596548 0.00745685 0.0415453 0.23 0.02 pose: 0.0 3.44385 -3.98507 0 -0.00191581 -0.0002933180.999861 0.0165689 uwb: 0.0 1223.99 634.49 +imu_odom_: 1691062483.540313271 0.462081 -0.263362 9.98622 -0.0596548 -0.0660464 0.0458064 0.18 0 pose: 0.0 3.44385 -3.98507 0 -0.00191581 -0.0002933180.999861 0.0165689 uwb: 0.50141440 1223.9 635.346 +imu_odom_: 1691062483.565480085 0.933739 -0.208296 10.3573 -0.0436758 -0.0479369 0.0415453 0.18 0 pose: 0.46073104 3.43406 -3.98711 0 -0.00470029 -0.00111021 0.999853 0.0164708 uwb: 0.0 1223.9 635.346 +imu_odom_: 1691062483.590306559 0.459687 -0.0981623 10.0509 -0.0415453 -0.0181095 0.0447411 0.18 0.02 pose: 0.0 3.43406 -3.98711 0 -0.00470029 -0.00111021 0.999853 0.0164708 uwb: 0.49838429 1224.36 636.734 +imu_odom_: 1691062483.616349451 0.162806 -0.196325 9.64145 -0.0532632 -0.0117179 0.0479369 0.18 0.02 pose: 0.40915212 3.43406 -3.98711 0 -0.000192899-0.0002825110.999865 0.0164052 uwb: 0.0 1224.36 636.734 +imu_odom_: 1691062483.641298412 0.229843 -0.0957681 9.68215 -0.0468716 -0.00639159 0.0394148 0.19 0.02 pose: 0.42995750 3.42223 -3.97936 0 -0.00179987 0.00132994 0.999865 0.016256 uwb: 0.50017786 1223.99 637.334 +imu_odom_: 1691062483.666405150 -0.0766145 -0.565032 9.23204 -0.0575243 0.00106526 0.0511327 0.22 0 pose: 0.8079511 3.42223 -3.97936 0 -0.00245274 0.00182942 0.999863 0.0162568 uwb: 0.0 1223.99 637.334 +imu_odom_: 1691062483.687288108 -0.0263362 -0.186748 9.74679 -0.0255663 0.0617853 0.0308927 0.22 0 pose: 0.0 3.42223 -3.97936 0 -0.00245274 0.00182942 0.999863 0.0162568 uwb: 0.50108485 1224.13 638.524 +imu_odom_: 1691062483.701436877 0.371101 -0.289698 10.0102 -0.0415453 0.00319579 0.036219 0.22 0 pose: 0.0 3.42223 -3.97936 0 -0.00245274 0.00182942 0.999863 0.0162568 uwb: 0.0 1224.13 638.524 +imu_odom_: 1691062483.724333589 -0.0430956 -0.263362 9.47386 -0.0426106 0.0127832 0.0415453 0.18 -0.02 pose: 0.24002600 3.41244 -3.98141 0 -0.004352 0.00237387 0.999856 0.0162204 uwb: 0.0 1224.13 638.524 +imu_odom_: 1691062483.751616521 0.337582 -0.335188 9.68694 -0.0681769 -0.0543285 0.052198 0.18 -0.02 pose: 0.0 3.41244 -3.98141 0 -0.004352 0.00237387 0.999856 0.0162204 uwb: 0.49820056 1224.11 639.259 +imu_odom_: 1691062483.767488573 0.565032 -0.0167594 10.4196 -0.056459 -0.0415453 0.0372843 0.19 0 pose: 0.59877449 3.40265 -3.98345 0 -0.00814497 0.000676847 0.999835 0.0162433 uwb: 0.0 1224.11 639.259 +imu_odom_: 1691062483.792297840 0.380678 -0.244209 10.4483 -0.0532632 -0.02024 0.0415453 0.19 0 pose: 0.0 3.40265 -3.98345 0 -0.00814497 0.000676847 0.999835 0.0162433 uwb: 0.50174686 1223.81 640.433 +imu_odom_: 1691062483.815283793 0.0263362 -0.110133 10.2161 -0.0415453 0.015979 0.0436758 0.18 0 pose: 0.51140297 3.39286 -3.9855 0 -0.00652945 -0.00122249 0.999849 0.0160832 uwb: 0.0 1223.81 640.433 +imu_odom_: 1691062483.839302433 0.361524 -0.136469 9.73004 -0.0735032 0.0287621 0.0596548 0.18 0 pose: 0.39846654 3.38103 -3.97776 0 -0.00378852 -0.0007608270.999864 0.0160538 uwb: 0.49999121 1223.86 641.047 +imu_odom_: 1691062483.857280103 0.251391 -0.208296 10.0772 -0.0607201 0.00106526 0.0340885 0.19 -0.05 pose: 0.40006471 3.3745 -3.97913 0 -0.0043142 0.00163684 0.999865 0.0157658 uwb: 0.0 1223.86 641.047 +imu_odom_: 1691062483.881279203 -0.00718261-0.42138 9.61511 -0.0681769 -0.0340885 0.0628506 0.19 -0.05 pose: 0.0 3.3745 -3.97913 0 -0.0043142 0.00163684 0.999865 0.0157658 uwb: 0.0 1223.86 641.047 +imu_odom_: 1691062483.907270767 0.672771 -0.217872 10.0245 -0.0319579 0.0106526 0.0340885 0.22 0 pose: 0.8013601 3.37124 -3.97981 0 -0.00508988 0.00134122 0.999861 0.01579 uwb: 0.0 1223.86 641.047 +imu_odom_: 1691062483.931306905 0.205901 -0.349553 9.81623 -0.0798948 0.00852212 0.0639159 0.22 0 pose: 0.0 3.37124 -3.97981 0 -0.00508988 0.00134122 0.999861 0.01579 uwb: 0.0 1223.86 641.047 +imu_odom_: 1691062483.949287492 0.328006 -0.301669 9.87369 -0.0820254 0.0308927 0.0319579 0.21 0 pose: 0.41973563 3.37124 -3.97981 0 -0.00689121 -0.0004995520.999855 0.0155739 uwb: 0.99840467 1224.69 642.508 +imu_odom_: 1691062483.973259761 0.260968 -0.318429 10.2999 -0.0639159 0.0117179 0.0468716 0.21 0 pose: 0.0 3.37124 -3.97981 0 -0.00689121 -0.0004995520.999855 0.0155739 uwb: 0.0 1224.69 642.508 +imu_odom_: 1691062483.999339982 0.0574608 -0.213084 9.75398 -0.0415453 0.04048 0.0383495 0.18 -0.02 pose: 0.50032076 3.36145 -3.98187 0 -0.0063265 -0.00300962 0.999857 0.0153764 uwb: 0.50003787 1225.9 644.721 +imu_odom_: 1691062484.24343487 0.227449 -0.0335188 10.0724 -0.056459 -0.00852212 0.0436758 0.17 0 pose: 0.17961047 3.35167 -3.98393 0 -0.00631856 -0.00426945 0.999852 0.0153916 uwb: 0.0 1225.9 644.721 +imu_odom_: 1691062484.41271271 0.562637 -0.167594 9.36372 -0.0468716 -0.00319579 0.036219 0.17 0 pose: 0.42057262 3.34346 -3.97858 0 -0.0104691 -0.00396236 0.99982 0.0153334 uwb: 0.49913973 1227.32 646.601 +imu_odom_: 1691062484.66250863 0.371101 -0.23942 10.1634 -0.056459 0.0426106 0.0298274 0.19 -0.02 pose: 0.8001354 3.33982 -3.97621 0 -0.0103448 -0.00317361 0.999824 0.0153091 uwb: 0.0 1227.32 646.601 +imu_odom_: 1691062484.83326798 0.814029 -0.409408 9.32302 -0.0330232 -0.0245011 0.0287621 0.19 -0.02 pose: 0.0 3.33982 -3.97621 0 -0.0103448 -0.00317361 0.999824 0.0153091 uwb: 0.49950727 1226.88 647.274 +imu_odom_: 1691062484.107244832 0.749385 -0.217872 10.07 -0.0713727 -0.0298274 0.0490022 0.19 -0.02 pose: 0.0 3.33982 -3.97621 0 -0.0103448 -0.00317361 0.999824 0.0153091 uwb: 0.0 1226.88 647.274 +imu_odom_: 1691062484.133355976 0.624887 -0.280122 10.3932 -0.0479369 -0.0181095 0.0330232 0.19 0 pose: 0.41932165 3.33982 -3.97621 0 -0.00781767 -0.00109726 0.999851 0.0153261 uwb: 0.50230116 1226.64 648.322 +imu_odom_: 1691062484.158259451 0.818817 -0.172383 9.74201 -0.0532632 -0.00213053 0.0511327 0.19 0 pose: 0.84082475 3.32025 -3.98033 0 0.000739137 -0.00184354 0.999878 0.01549 uwb: 0.0 1226.64 648.322 +imu_odom_: 1691062484.184310809 0.464475 -0.0885855 10.0533 -0.0809601 0.0191748 0.0585895 0.19 0 pose: 0.0 3.32025 -3.98033 0 0.000739137 -0.00184354 0.999878 0.01549 uwb: 0.49895315 1226.19 649.033 +imu_odom_: 1691062484.209248989 0.399832 -0.25618 10.3406 -0.0532632 0.00319579 0.0351537 0.21 0 pose: 0.7960818 3.32025 -3.98033 0 0.00151507 -0.00169597 0.999878 0.0154455 uwb: 0.0 1226.19 649.033 +imu_odom_: 1691062484.227229874 0.579397 -0.0933739 10.0676 -0.0543285 -0.0138484 0.0266316 0.21 0 pose: 0.0 3.32025 -3.98033 0 0.00151507 -0.00169597 0.999878 0.0154455 uwb: 0.0 1226.19 649.033 +imu_odom_: 1691062484.251236273 0.0861913 -0.25618 9.3326 -0.0436758 -0.0181095 0.0415453 0.2 0 pose: 0.51960106 3.31046 -3.98239 0 0.00218015 0.000282832 0.999883 0.0151317 uwb: 0.50030636 1224.33 649.236 +imu_odom_: 1691062484.274377385 0.646434 -0.208296 10.331 -0.052198 -0.00426106 0.0458064 0.2 0 pose: 0.0 3.31046 -3.98239 0 0.00218015 0.000282832 0.999883 0.0151317 uwb: 0.0 1224.33 649.236 +imu_odom_: 1691062484.300212641 0.435745 -0.179565 9.63666 -0.0532632 0.0649811 0.0479369 0.25 0.02 pose: 0.41987576 3.29862 -3.97467 0 0.00168321 0.000315526 0.999882 0.0152755 uwb: 0.49834072 1224.12 650.224 +imu_odom_: 1691062484.313294314 0.514753 -0.347159 9.90721 -0.0436758 0.0351537 0.0532632 0.25 0.02 pose: 0.0 3.29862 -3.97467 0 0.00168321 0.000315526 0.999882 0.0152755 uwb: 0.0 1224.12 650.224 +imu_odom_: 1691062484.338370147 0.47884 -0.237026 9.71806 -0.0426106 0.0287621 0.0383495 0.17 0.02 pose: 0.47068769 3.28883 -3.97674 0 0.00189559 0.000961962 0.999883 0.0151557 uwb: 0.50107044 1224.72 651.306 +imu_odom_: 1691062484.364303976 -0.409408 -0.213084 10.1418 -0.0511327 -0.123571 0.0617853 0.17 0.02 pose: 0.0 3.28883 -3.97674 0 0.00189559 0.000961962 0.999883 0.0151557 uwb: 0.0 1224.72 651.306 +imu_odom_: 1691062484.390590102 2.58574 -0.0933739 9.90002 -0.072438 -0.0649811 0.0330232 0.19 0 pose: 0.39067414 3.28883 -3.97674 0 0.00131932 0.00103554 0.999886 0.0149961 uwb: 0.0 1224.72 651.306 +imu_odom_: 1691062484.407495138 0.45011 -0.155623 11.0061 -0.0745685 0.0298274 0.0671117 0.19 0 pose: 0.0 3.28883 -3.97674 0 0.00131932 0.00103554 0.999886 0.0149961 uwb: 0.0 1224.72 651.306 +imu_odom_: 1691062484.431272602 -0.711078 -0.0622492 9.81383 -0.0596548 0.0255663 0.0276969 0.23 0 pose: 0.52007643 3.27905 -3.9788 0 0.00244692 4.29259e-05 0.999888 0.0147452 uwb: 0.0 1224.72 651.306 +imu_odom_: 1691062484.457330376 -0.011971 -0.251391 9.98143 -0.112918 0.0149137 0.0660464 0.22 0 pose: 0.57864300 3.26278 -3.98225 0 0.000536862 0.00130117 0.999891 0.0147201 uwb: 0.99973489 1225.85 653.55 +imu_odom_: 1691062484.482355756 0.19393 -0.462081 9.86172 -0.0415453 0.0351537 0.0330232 0.22 0 pose: 0.0 3.26278 -3.98225 0 0.000536862 0.00130117 0.999891 0.0147201 uwb: 0.50005263 1225.66 654.495 +imu_odom_: 1691062484.499220546 0.794875 -0.126893 9.96467 -0.0639159 -0.0106526 0.0394148 0.22 0 pose: 0.0 3.26278 -3.98225 0 0.000536862 0.00130117 0.999891 0.0147201 uwb: 0.0 1225.66 654.495 +imu_odom_: 1691062484.523282064 0.579397 -0.318429 9.58878 -0.0340885 -0.0543285 0.04048 0.19 0 pose: 0.8106345 3.25948 -3.98295 0 -0.0003485740.000962737 0.999893 0.0146139 uwb: 0.0 1225.66 654.495 +imu_odom_: 1691062484.548366063 0.325611 -0.260968 9.24162 -0.0639159 -0.0138484 0.0372843 0.19 0 pose: 0.50888631 3.24762 -3.97525 0 -0.00340564 -0.00152917 0.999888 0.0144669 uwb: 0.49875484 1224.17 654.813 +imu_odom_: 1691062484.573343613 0.390255 -0.260968 9.38527 -0.0351537 0.00745685 0.0458064 0.19 0 pose: 0.0 3.24762 -3.97525 0 -0.00340564 -0.00152917 0.999888 0.0144669 uwb: 0.0 1224.17 654.813 +imu_odom_: 1691062484.590213944 0.301669 -0.289698 9.74679 -0.056459 -0.0106526 0.0426106 0.18 0 pose: 0.41168951 3.24762 -3.97525 0 -0.000411218-0.00206138 0.999893 0.0144699 uwb: 0.49989515 1224.24 656.013 +imu_odom_: 1691062484.615186829 0.85473 -0.40462 9.82102 -0.0372843 0.0298274 0.0351537 0.18 0 pose: 0.0 3.24762 -3.97525 0 -0.000411218-0.00206138 0.999893 0.0144699 uwb: 0.0 1224.24 656.013 +imu_odom_: 1691062484.636214155 0.656011 -0.3304 9.9527 -0.0681769 -0.0287621 0.0436758 0.19 0 pose: 0.83750300 3.22806 -3.97941 0 0.000711595 -0.00329478 0.99989 0.01445 uwb: 0.50120168 1224.34 657.172 +imu_odom_: 1691062484.661192873 0.543484 0.0550666 10.3597 -0.0266316 -0.00745685 0.0415453 0.19 0 pose: 0.6019973 3.22806 -3.97941 0 0.00137141 -0.00346946 0.999889 0.0144393 uwb: 0.0 1224.34 657.172 +imu_odom_: 1691062484.678180733 0.251391 -0.201113 9.61751 -0.0639159 -0.015979 0.0511327 0.21 0 pose: 0.0 3.22806 -3.97941 0 0.00137141 -0.00346946 0.999889 0.0144393 uwb: 0.0 1224.34 657.172 +imu_odom_: 1691062484.702381363 0.514753 -0.21069 9.51456 -0.056459 -0.00106526 0.0372843 0.21 0 pose: 0.39986071 3.21681 -3.97459 0 0.00363888 -0.00111218 0.999889 0.0143964 uwb: 0.0 1224.34 657.172 +imu_odom_: 1691062484.727243425 0.0766145 -0.639252 9.06684 -0.0596548 0.00639159 0.0479369 0.22 0 pose: 0.41188490 3.20939 -3.97316 0 0.00436307 -0.0002976820.999888 0.0143288 uwb: 0.0 1224.34 657.172 +imu_odom_: 1691062484.751170208 0.134075 -0.201113 9.54808 -0.0266316 -0.00213053 0.0287621 0.22 0 pose: 0.0 3.20939 -3.97316 0 0.00436307 -0.0002976820.999888 0.0143288 uwb: 0.100077311 1224.49 658.252 +imu_odom_: 1691062484.768177025 0.711078 -0.430956 9.92636 -0.0660464 -0.0127832 0.0447411 0.19 0 pose: 0.48788845 3.1998 -3.9752 0 9.99835e-05 -0.00134522 0.999896 0.0143418 uwb: 0.0 1224.49 658.252 +imu_odom_: 1691062484.792162135 0.794875 -0.248997 9.3709 -0.0458064 0.0276969 0.0490022 0.19 0 pose: 0.0 3.1998 -3.9752 0 9.99835e-05 -0.00134522 0.999896 0.0143418 uwb: 0.50065632 1224.88 659.606 +imu_odom_: 1691062484.809227571 0.373495 -0.323217 9.79228 -0.0671117 -0.0245011 0.0532632 0.19 0 pose: 0.40991927 3.19664 -3.97587 0 0.00362101 -0.00221209 0.99989 0.0141929 uwb: 0.0 1224.88 659.606 +imu_odom_: 1691062484.833158728 0.387861 -0.490811 9.28471 -0.0617853 0.0490022 0.0319579 0.19 0 pose: 0.0 3.19664 -3.97587 0 0.00362101 -0.00221209 0.99989 0.0141929 uwb: 0.49746581 1224.13 660.098 +imu_odom_: 1691062484.851299138 0.442927 -0.241814 10.4531 -0.0479369 -0.00106526 0.0372843 0.18 -0.02 pose: 0.0 3.19664 -3.97587 0 0.00362101 -0.00221209 0.99989 0.0141929 uwb: 0.0 1224.13 660.098 +imu_odom_: 1691062484.875181300 0.804452 -0.0909797 10.0173 -0.0490022 -0.0138484 0.04048 0.18 -0.02 pose: 0.40996593 3.18686 -3.97796 0 0.00105792 -0.00560762 0.999884 0.0141554 uwb: 0.0 1224.13 660.098 +imu_odom_: 1691062484.893256676 0.64404 -0.263362 10.1921 -0.0500674 -0.02024 0.0596548 0.2 -0.02 pose: 0.0 3.18686 -3.97796 0 0.00105792 -0.00560762 0.999884 0.0141554 uwb: 0.49954227 1223.87 661.137 +imu_odom_: 1691062484.908281236 0.517148 -0.531513 9.42118 -0.0756338 -0.02024 0.0458064 0.2 -0.02 pose: 0.50078172 3.17499 -3.97026 0 0.00449895 -0.00257332 0.999887 0.0140995 uwb: 0.0 1223.87 661.137 +imu_odom_: 1691062484.934157612 0.754174 -0.0694318 9.98622 -0.0575243 0.00213053 0.0511327 0.25 0 pose: 0.0 3.17499 -3.97026 0 0.00449895 -0.00257332 0.999887 0.0140995 uwb: 0.49976974 1223.75 661.96 +imu_odom_: 1691062484.956158131 0.505177 -0.304064 10.1323 -0.0468716 0.0340885 0.0340885 0.25 0 pose: 0.32959075 3.16521 -3.97235 0 0.00628656 -0.00367449 0.999877 0.0139065 uwb: 0.0 1223.75 661.96 +imu_odom_: 1691062484.980157240 0.560243 -0.0933739 10.1993 -0.072438 -0.0223706 0.0703074 0.17 -0.02 pose: 0.39962156 3.16521 -3.97235 0 0.00542639 -0.00376622 0.999882 0.0138617 uwb: 0.0 1223.75 661.96 +imu_odom_: 1691062485.6164853 0.952892 -0.107739 10.3238 -0.0639159 -0.00319579 0.0330232 0.17 -0.02 pose: 0.7043619 3.16521 -3.97235 0 0.00566187 -0.00314489 0.999884 0.013758 uwb: 0.50153706 1223.74 663.252 +imu_odom_: 1691062485.31217655 0.596156 -0.344765 9.71088 -0.036219 0.0830906 0.015979 0.2 -0.02 pose: 0.42963103 3.15543 -3.97444 0 0.00869733 -0.0009797170.999869 0.0136029 uwb: 0.0 1223.74 663.252 +imu_odom_: 1691062485.47288031 0.0957681 -0.0981623 9.83299 -0.0894822 0.0170442 0.0468716 0.2 -0.02 pose: 0.0 3.15543 -3.97444 0 0.00869733 -0.0009797170.999869 0.0136029 uwb: 0.49981359 1223.33 663.859 +imu_odom_: 1691062485.72201431 0.550666 -0.318429 10.331 -0.127832 0.056459 0.0873517 0.25 -0.02 pose: 0.41123178 3.14566 -3.97654 0 0.00645959 -0.00285658 0.99988 0.013821 uwb: 0.0 1223.33 663.859 +imu_odom_: 1691062485.97211945 -0.114922 -0.565032 9.69173 -0.0340885 0.0351537 -0.0308927 0.25 -0.02 pose: 0.0 3.14566 -3.97654 0 0.00645959 -0.00285658 0.99988 0.013821 uwb: 0.49995365 1223.22 664.661 +imu_odom_: 1691062485.122200879 0.653617 -0.476446 10.0245 -0.0500674 -0.0298274 0.0639159 0.21 -0.02 pose: 0.49923914 3.13442 -3.97183 0 0.00355282 -0.00668975 0.999872 0.0140831 uwb: 0.0 1223.22 664.661 +imu_odom_: 1691062485.138197471 0.296881 -0.464475 9.97903 -0.0458064 0.0127832 0.0276969 0.21 -0.02 pose: 0.0 3.13442 -3.97183 0 0.00355282 -0.00668975 0.999872 0.0140831 uwb: 0.49869961 1222.7 665.444 +imu_odom_: 1691062485.164350911 0.047884 -0.21069 9.74679 -0.0628506 -0.00319579 0.0490022 0.18 -0.02 pose: 0.40985526 3.12859 -3.96997 0 0.00424558 -0.00863589 0.999858 0.0138647 uwb: 0.0 1222.7 665.444 +imu_odom_: 1691062485.189150864 0.471658 -0.100556 10.4986 -0.04048 0.0181095 0.0191748 0.18 -0.02 pose: 0.7970153 3.124 -3.97095 0 0.00350087 -0.0083692 0.999863 0.0138222 uwb: 0.50014905 1221.19 665.823 +imu_odom_: 1691062485.212291692 0.548272 -0.368707 10.1059 -0.0639159 -0.036219 0.0415453 0.21 0 pose: 0.26094238 3.124 -3.97095 0 0.00180856 -0.00691467 0.999879 0.0138089 uwb: 0.0 1221.19 665.823 +imu_odom_: 1691062485.238180910 0.471658 -0.0957681 10.2208 -0.0468716 -0.0511327 0.0426106 0.21 0 pose: 0.0 3.124 -3.97095 0 0.00180856 -0.00691467 0.999879 0.0138089 uwb: 0.50170930 1221.57 667.147 +imu_odom_: 1691062485.252204867 0.397437 -0.215478 9.35893 -0.0735032 0.015979 0.0575243 0.19 0.02 pose: 0.40029830 3.11423 -3.97304 0 0.00425548 -0.0062596 0.999874 0.0139711 uwb: 0.0 1221.57 667.147 +imu_odom_: 1691062485.275170130 0.533907 -0.158017 9.663 -0.0543285 -0.00213053 0.0234358 0.19 0.02 pose: 0.0 3.11423 -3.97304 0 0.00425548 -0.0062596 0.999874 0.0139711 uwb: 0.0 1221.57 667.147 +imu_odom_: 1691062485.299173622 0.90022 -0.35913 10.1442 -0.076699 -0.04048 0.0447411 0.24 0 pose: 0.46963505 3.10445 -3.97513 0 0.00376445 -0.00228372 0.999894 0.0138729 uwb: 0.49783637 1221.64 668.297 +imu_odom_: 1691062485.316108994 0.627281 -0.354342 9.31823 -0.0266316 0.02024 0.0223706 0.24 0 pose: 0.0 3.10445 -3.97513 0 0.00376445 -0.00228372 0.999894 0.0138729 uwb: 0.0 1221.64 668.297 +imu_odom_: 1691062485.340169937 0.651223 -0.316035 9.73243 -0.0596548 -0.0415453 0.0490022 0.19 0 pose: 0.48011065 3.09258 -3.96744 0 0.00769967 -0.0024347 0.999869 0.014011 uwb: 0.50128060 1223.21 670.319 +imu_odom_: 1691062485.363115077 0.519542 -0.268151 10.2448 -0.0479369 -0.0543285 0.0500674 0.19 0 pose: 0.0 3.09258 -3.96744 0 0.00769967 -0.0024347 0.999869 0.014011 uwb: 0.0 1223.21 670.319 +imu_odom_: 1691062485.380117234 0.562637 -0.172383 9.37569 -0.0596548 -0.0106526 0.0617853 0.25 0.02 pose: 0.40871787 3.0828 -3.96953 0 0.0101642 -0.00392449 0.999844 0.0139214 uwb: 0.0 1223.21 670.319 +imu_odom_: 1691062485.405140872 0.222661 -0.229843 9.54568 -0.0287621 0.0735032 0.04048 0.25 0.02 pose: 0.0 3.0828 -3.96953 0 0.0101642 -0.00392449 0.999844 0.0139214 uwb: 0.50038235 1223.56 671.04 +imu_odom_: 1691062485.430122223 0.464475 -0.371101 9.74919 -0.0788296 0.00213053 0.056459 0.23 0.05 pose: 0.41003315 3.0828 -3.96953 0 0.00776505 -0.00162247 0.999875 0.0136603 uwb: 0.0 1223.56 671.04 +imu_odom_: 1691062485.453120441 0.105345 -0.0047884 9.84735 -0.052198 -0.0181095 0.0511327 0.23 0.05 pose: 0.0 3.0828 -3.96953 0 0.00776505 -0.00162247 0.999875 0.0136603 uwb: 0.49941121 1223.67 672.111 +imu_odom_: 1691062485.468319697 0.426168 -0.31364 9.68455 -0.0756338 -0.0553937 0.0628506 0.2 0.02 pose: 0.40980859 3.07302 -3.97163 0 0.00461507 -0.00395107 0.999891 0.0134271 uwb: 0.0 1223.67 672.111 +imu_odom_: 1691062485.495259975 0.347159 -0.253785 9.73482 -0.0490022 0.0245011 0.0415453 0.2 0.02 pose: 0.0 3.07302 -3.97163 0 0.00461507 -0.00395107 0.999891 0.0134271 uwb: 0.50024820 1224.35 673.573 +imu_odom_: 1691062485.521276638 0.454898 -0.272939 9.78271 -0.0852212 -0.0308927 0.0607201 0.22 0 pose: 0.7067536 3.07302 -3.97163 0 0.00410018 -0.00351465 0.999896 0.0133858 uwb: 0.0 1224.35 673.573 +imu_odom_: 1691062485.544231402 0.260968 -0.184354 9.91678 -0.0649811 -0.0245011 0.0308927 0.22 0 pose: 0.38973229 3.06324 -3.97373 0 0.00162147 -0.0036555 0.999906 0.0131 uwb: 0.50056025 1224.89 674.626 +imu_odom_: 1691062485.561211686 0.723049 -0.476446 9.53371 -0.076699 -0.0191748 0.0553937 0.25 0 pose: 0.0 3.06324 -3.97373 0 0.00162147 -0.0036555 0.999906 0.0131 uwb: 0.0 1224.89 674.626 +imu_odom_: 1691062485.586088630 0.418985 -0.347159 9.83059 -0.0340885 0.0735032 0.0340885 0.25 0 pose: 0.52068905 3.05136 -3.96606 0 0.00194274 -0.00314 0.999911 0.012837 uwb: 0.49808134 1227.25 677.253 +imu_odom_: 1691062485.609091514 0.409408 -0.268151 9.55047 -0.0596548 -0.015979 0.0415453 0.18 0 pose: 0.0 3.05136 -3.96606 0 0.00194274 -0.00314 0.999911 0.012837 uwb: 0.0 1227.25 677.253 +imu_odom_: 1691062485.632137269 0.445322 -0.160412 9.63906 -0.0351537 -0.00852212 0.0458064 0.18 0 pose: 0.42010630 3.04158 -3.96817 0 0.00145786 -0.00437702 0.999908 0.012794 uwb: 0.0 1227.25 677.253 +imu_odom_: 1691062485.649141759 0.76375 -0.318429 9.67736 -0.0607201 -0.0319579 0.0436758 0.24 0 pose: 0.0 3.04158 -3.96817 0 0.00145786 -0.00437702 0.999908 0.012794 uwb: 0.50011405 1228.03 678.547 +imu_odom_: 1691062485.673100630 0.608127 -0.399832 9.7444 -0.0468716 -0.0383495 0.0447411 0.24 0 pose: 0.45866366 3.03181 -3.97028 0 0.000625822 -0.00264879 0.999914 0.0127906 uwb: 0.0 1228.03 678.547 +imu_odom_: 1691062485.690092871 0.684742 -0.162806 10.1275 -0.0468716 0.00745685 0.0426106 0.19 0.02 pose: 0.0 3.03181 -3.97028 0 0.000625822 -0.00264879 0.999914 0.0127906 uwb: 0.50016071 1228.12 679.597 +imu_odom_: 1691062485.715093762 0.713472 -0.167594 9.96227 -0.0468716 -0.0127832 0.0394148 0.19 0.02 pose: 0.41010897 3.03181 -3.97028 0 0.00366964 -0.00199808 0.999911 0.0126868 uwb: 0.0 1228.12 679.597 +imu_odom_: 1691062485.741085636 0.493206 -0.227449 9.62708 -0.0628506 -0.0191748 0.0511327 0.18 0 pose: 0.0 3.03181 -3.97028 0 0.00366964 -0.00199808 0.999911 0.0126868 uwb: 0.50075274 1227.75 680.114 +imu_odom_: 1691062485.766093817 0.701501 -0.445322 9.37569 -0.0532632 0.0394148 0.0383495 0.2 -0.02 pose: 0.41977092 3.02204 -3.9724 0 0.00722665 -0.0017469 0.999893 0.0126305 uwb: 0.0 1227.75 680.114 +imu_odom_: 1691062485.789079786 -0.131681 -0.545878 9.48104 -0.0649811 0.0223706 0.052198 0.2 -0.02 pose: 0.0 3.02204 -3.9724 0 0.00722665 -0.0017469 0.999893 0.0126305 uwb: 0.50002656 1226.66 680.465 +imu_odom_: 1691062485.806080485 0.890643 -0.0574608 10.6997 -0.04048 -0.0436758 0.0298274 0.18 0 pose: 0.49992449 3.01015 -3.96474 0 0.00667824 -0.00154133 0.999899 0.0124897 uwb: 0.0 1226.66 680.465 +imu_odom_: 1691062485.830082810 0.938527 -0.205901 10.0509 -0.0543285 -0.0245011 0.0458064 0.2 0 pose: 0.0 3.01015 -3.96474 0 0.00667824 -0.00154133 0.999899 0.0124897 uwb: 0.0 1226.66 680.465 +imu_odom_: 1691062485.853073153 0.237026 -0.059855 9.82341 -0.0426106 -0.0287621 0.0383495 0.21 0 pose: 0.48017773 3.00037 -3.96686 0 0.00579088 -0.00332486 0.999901 0.0123803 uwb: 0.50038818 1226.38 680.868 +imu_odom_: 1691062485.878076085 0.782904 -0.452504 9.7037 -0.0639159 -0.052198 0.0500674 0.21 0 pose: 0.0 3.00037 -3.96686 0 0.00579088 -0.00332486 0.999901 0.0123803 uwb: 0.0 1226.38 680.868 +imu_odom_: 1691062485.893204473 0.658405 -0.0263362 10.228 -0.052198 -0.02024 0.0308927 0.19 0.02 pose: 0.39982002 2.9906 -3.96898 0 0.00884012 -0.00204686 0.999882 0.0123671 uwb: 0.50065942 1226.61 681.724 +imu_odom_: 1691062485.917060104 0.577003 -0.258574 10.1203 -0.056459 -0.0266316 0.0458064 0.19 0.02 pose: 0.0 2.9906 -3.96898 0 0.00884012 -0.00204686 0.999882 0.0123671 uwb: 0.0 1226.61 681.724 +imu_odom_: 1691062485.943084350 0.775721 -0.160412 9.89524 -0.0458064 0.0149137 0.0426106 0.23 0 pose: 0.48130928 2.9906 -3.96898 0 0.0102753 -0.00227506 0.999869 0.0122757 uwb: 0.49651524 1226.45 682.535 +imu_odom_: 1691062485.956057830 0.519542 -0.196325 9.90242 -0.0532632 -0.0319579 0.0671117 0.23 0 pose: 0.0 2.9906 -3.96898 0 0.0102753 -0.00227506 0.999869 0.0122757 uwb: 0.0 1226.45 682.535 +imu_odom_: 1691062485.980061322 0.268151 -0.134075 9.81623 -0.0660464 0.0213053 0.0340885 0.17 0 pose: 0.39857181 2.98083 -3.9711 0 0.00924349 -0.00208472 0.99988 0.0122231 uwb: 0.0 1226.45 682.535 +imu_odom_: 1691062486.6113857 0.318429 -0.462081 9.5816 -0.072438 -0.0287621 0.0607201 0.17 0 pose: 0.0 2.98083 -3.9711 0 0.00924349 -0.00208472 0.99988 0.0122231 uwb: 0.50108229 1227.41 684.118 +imu_odom_: 1691062486.31122922 0.490811 -0.253785 9.73243 -0.0383495 -0.00958738 0.0298274 0.2 0.02 pose: 0.39031848 2.96893 -3.96345 0 0.00881337 -0.0005008780.999888 0.0120557 uwb: 0.0 1227.41 684.118 +imu_odom_: 1691062486.48055383 0.418985 -0.131681 10.2185 -0.072438 -0.0223706 0.072438 0.2 0.02 pose: 0.0 2.96893 -3.96345 0 0.00881337 -0.0005008780.999888 0.0120557 uwb: 0.49963878 1228 685.618 +imu_odom_: 1691062486.73171188 0.581791 -0.107739 10.8002 -0.0553937 -0.0234358 0.0340885 0.19 0 pose: 0.49962996 2.95916 -3.96558 0 0.00487677 -0.00208033 0.999916 0.0118538 uwb: 0.0 1228 685.618 +imu_odom_: 1691062486.98128341 0.502782 -0.268151 10.0676 -0.0777643 -0.0340885 0.0394148 0.19 0 pose: 0.0 2.95916 -3.96558 0 0.00487677 -0.00208033 0.999916 0.0118538 uwb: 0.49996841 1228.06 686.682 +imu_odom_: 1691062486.122053390 0.933739 -0.395043 9.54089 -0.056459 0.0213053 0.0351537 0.18 0 pose: 0.42988505 2.94939 -3.96771 0 0.00349356 0.000380509 0.999926 0.0116865 uwb: 0.0 1228.06 686.682 +imu_odom_: 1691062486.139051470 0.481235 -0.4956 9.88326 -0.0735032 0.0511327 0.0458064 0.18 0 pose: 0.0 2.94939 -3.96771 0 0.00349356 0.000380509 0.999926 0.0116865 uwb: 0.49991882 1228.72 688.069 +imu_odom_: 1691062486.164107489 0.562637 -0.265756 10.0652 -0.0617853 -0.00213053 0.0287621 0.18 0 pose: 0.48149610 2.94939 -3.96771 0 0.0058636 -0.00157697 0.999913 0.0117409 uwb: 0.0 1228.72 688.069 +imu_odom_: 1691062486.188040704 0.186748 -0.433351 10.0006 -0.0713727 -0.015979 0.04048 0.18 0 pose: 0.0 2.94939 -3.96771 0 0.0058636 -0.00157697 0.999913 0.0117409 uwb: 0.50002965 1230.78 689.822 +imu_odom_: 1691062486.211034847 0.497994 -0.35913 9.87608 -0.0511327 0.00639159 0.0276969 0.24 0 pose: 0.82830534 2.92834 -3.96507 0 0.00620264 -0.00366166 0.999904 0.0118445 uwb: 0.0 1230.78 689.822 +imu_odom_: 1691062486.228092129 0.603339 -0.232238 10.5345 -0.0458064 0.0543285 0.04048 0.24 0 pose: 0.0 2.92834 -3.96507 0 0.00620264 -0.00366166 0.999904 0.0118445 uwb: 0.0 1230.78 689.822 +imu_odom_: 1691062486.244092810 0.141258 -0.383072 9.62948 -0.0532632 0.0213053 0.0340885 0.18 0.02 pose: 0.7027001 2.92772 -3.96221 0 0.00591769 -0.00430436 0.999903 0.0118813 uwb: 0.49990425 1230.5 690.759 +imu_odom_: 1691062486.270085567 0.23942 -0.198719 9.64145 -0.052198 0.0255663 0.0436758 0.18 0.02 pose: 0.0 2.92772 -3.96221 0 0.00591769 -0.00430436 0.999903 0.0118813 uwb: 0.0 1230.5 690.759 +imu_odom_: 1691062486.293063670 0.181959 -0.311246 9.87848 -0.0617853 -0.00213053 0.0415453 0.19 -0.02 pose: 0.41075364 2.91795 -3.96434 0 0.00502409 -0.00457044 0.999905 0.011991 uwb: 0.50143534 1230.62 691.727 +imu_odom_: 1691062486.317029840 0.248997 -0.122104 10.1131 -0.0777643 0.04048 0.0553937 0.19 -0.02 pose: 0.0 2.91795 -3.96434 0 0.00502409 -0.00457044 0.999905 0.011991 uwb: 0.0 1230.62 691.727 +imu_odom_: 1691062486.343026389 0.347159 -0.253785 10.2376 -0.0532632 0.00852212 0.0308927 0.25 -0.02 pose: 0.40997205 2.90818 -3.96647 0 0.000670764 -0.00371258 0.999922 0.011941 uwb: 0.0 1230.62 691.727 +imu_odom_: 1691062486.368039829 0.45011 -0.418985 9.81623 -0.0607201 -0.0117179 0.0415453 0.25 -0.02 pose: 0.47953921 2.89841 -3.9686 0 -0.00268449 -0.00152758 0.999926 0.0117581 uwb: 0.0 1230.62 691.727 +imu_odom_: 1691062486.385035867 0.232238 -0.323217 9.49062 -0.04048 -0.0458064 0.036219 0.21 -0.02 pose: 0.0 2.89841 -3.9686 0 -0.00268449 -0.00152758 0.999926 0.0117581 uwb: 0.99956351 1231.17 693.229 +imu_odom_: 1691062486.410016352 0.610521 -0.215478 10.1778 -0.0532632 0.00745685 0.0500674 0.21 -0.02 pose: 0.25993632 2.89841 -3.9686 0 -0.00176547 -0.0006229920.999928 0.0118267 uwb: 0.0 1231.17 693.229 +imu_odom_: 1691062486.436139180 0.191536 -0.289698 9.22007 -0.0426106 0.0788296 0.0426106 0.18 0.02 pose: 0.42981506 2.88651 -3.96096 0 -0.00143869 -0.00258638 0.999926 0.0117931 uwb: 0.49751574 1229.23 693.036 +imu_odom_: 1691062486.451181248 0.047884 -0.380678 10.1873 -0.0553937 0.00639159 0.0585895 0.18 0.02 pose: 0.0 2.88651 -3.96096 0 -0.00143869 -0.00258638 0.999926 0.0117931 uwb: 0.0 1229.23 693.036 +imu_odom_: 1691062486.468060924 0.775721 -0.203507 10.149 -0.04048 0 0.0426106 0.18 0 pose: 0.48116363 2.87674 -3.96309 0 -0.00423328 -0.00267176 0.99992 0.0116124 uwb: 0.0 1229.23 693.036 +imu_odom_: 1691062486.482118425 0.706289 -0.438139 9.60554 -0.0436758 0.0607201 0.0383495 0.18 0 pose: 0.0 2.87674 -3.96309 0 -0.00423328 -0.00267176 0.99992 0.0116124 uwb: 0.49996257 1229.98 694.809 +imu_odom_: 1691062486.499127587 0.217872 -0.251391 10.2304 -0.0532632 -0.00106526 0.0553937 0.18 0 pose: 0.39932729 2.87217 -3.96409 0 -0.00266871 -0.00316434 0.999925 0.0115208 uwb: 0.0 1229.98 694.809 +imu_odom_: 1691062486.515048942 0.25618 -0.246603 9.68933 -0.0575243 0.00213053 0.0490022 0.18 0 pose: 0.0 2.87217 -3.96409 0 -0.00266871 -0.00316434 0.999925 0.0115208 uwb: 0.0 1229.98 694.809 +imu_odom_: 1691062486.532140929 0.37589 -0.294487 10.0006 -0.0628506 -0.04048 0.0553937 0.25 0.02 pose: 0.0 2.87217 -3.96409 0 -0.00266871 -0.00316434 0.999925 0.0115208 uwb: 0.0 1229.98 694.809 +imu_odom_: 1691062486.557005926 0.737414 -0.198719 9.91199 -0.0692422 0.00426106 0.0511327 0.25 0.02 pose: 0.8021192 2.86697 -3.96523 0 -0.00346479 -0.00298096 0.999924 0.0114545 uwb: 0.0 1229.98 694.809 +imu_odom_: 1691062486.584006290 0.694318 -0.0023942 10.422 -0.0798948 -0.0106526 0.0692422 0.18 0 pose: 0.66866309 2.8572 -3.96737 0 -0.00166554 -0.00270445 0.999934 0.0110315 uwb: 0.100132500 1230.76 696.546 +imu_odom_: 1691062486.609003398 0.459687 -0.232238 10.5129 -0.0735032 0.0106526 0.0372843 0.18 -0.02 pose: 0.0 2.8572 -3.96737 0 -0.00166554 -0.00270445 0.999934 0.0110315 uwb: 0.0 1230.76 696.546 +imu_odom_: 1691062486.625994770 0.237026 -0.244209 9.27514 -0.0660464 -0.0149137 0.0351537 0.18 -0.02 pose: 0.0 2.8572 -3.96737 0 -0.00166554 -0.00270445 0.999934 0.0110315 uwb: 0.0 1230.76 696.546 +imu_odom_: 1691062486.641998075 0.407014 -0.306458 10.3789 -0.056459 -0.0458064 0.0500674 0.18 -0.02 pose: 0.35018932 2.84743 -3.96952 0 0.0012424 -0.00124575 0.999942 0.0106437 uwb: 0.0 1230.76 696.546 +imu_odom_: 1691062486.668024955 0.35913 -0.270545 10.3406 -0.0351537 0.00319579 0.0372843 0.25 0.02 pose: 0.49973217 2.8404 -3.96083 0 0.00102133 -0.00274738 0.999939 0.0106149 uwb: 0.0 1230.76 696.546 +imu_odom_: 1691062486.681984466 0.442927 -0.208296 9.8258 -0.056459 -0.0266316 0.0415453 0.25 0.02 pose: 0.8014777 2.83551 -3.96191 0 0.00019099 -0.00265746 0.99994 0.0106219 uwb: 0.99977349 1230.52 697.959 +imu_odom_: 1691062486.705999631 0.349553 -0.323217 9.74201 -0.0553937 0.0308927 0.0479369 0.18 0 pose: 0.0 2.83551 -3.96191 0 0.00019099 -0.00265746 0.99994 0.0106219 uwb: 0.0 1230.52 697.959 +imu_odom_: 1691062486.731982181 0.258574 -0.213084 9.87608 -0.0543285 -0.00106526 0.0532632 0.25 -0.02 pose: 0.40013804 2.83551 -3.96191 0 -0.000958829-0.00231759 0.999941 0.0105912 uwb: 0.49998591 1230.38 698.684 +imu_odom_: 1691062486.747049622 0.150835 -0.332794 9.84496 -0.0479369 -0.0298274 0.0479369 0.18 0 pose: 0.0 2.83551 -3.96191 0 -0.000958829-0.00231759 0.999941 0.0105912 uwb: 0.0 1230.38 698.684 +imu_odom_: 1691062486.772108557 0.318429 -0.196325 10.1538 -0.0553937 -0.0149137 0.0500674 0.18 0 pose: 0.48034996 2.82575 -3.96406 0 -0.00470887 -0.00236314 0.999933 0.0103098 uwb: 0.0 1230.38 698.684 +imu_odom_: 1691062486.797138620 0.497994 -0.459687 9.8689 -0.0298274 0.0234358 0.036219 0.18 -0.02 pose: 0.0 2.82575 -3.96406 0 -0.00470887 -0.00236314 0.999933 0.0103098 uwb: 0.50110579 1229.73 698.988 +imu_odom_: 1691062486.821093416 0.562637 -0.392649 9.83777 -0.0511327 0.00213053 0.0479369 0.18 -0.02 pose: 0.40921671 2.81598 -3.96622 0 -0.00417777 -0.0007706150.99994 0.010144 uwb: 0.0 1229.73 698.988 +imu_odom_: 1691062486.837029062 0.0263362 -0.150835 9.81862 -0.036219 0.00213053 0.0394148 0.22 0 pose: 0.0 2.81598 -3.96622 0 -0.00417777 -0.0007706150.99994 0.010144 uwb: 0.49828566 1229.57 699.749 +imu_odom_: 1691062486.861958801 0.399832 -0.248997 10.4459 -0.0532632 -0.0117179 0.0596548 0.22 0 pose: 0.49174132 2.80406 -3.95863 0 -0.00207221 -0.00290474 0.999943 0.0100894 uwb: 0.0 1229.57 699.749 +imu_odom_: 1691062486.885032561 0.842759 -0.186748 10.1778 -0.0436758 -0.00106526 0.0330232 0.2 -0.02 pose: 0.0 2.80406 -3.95863 0 -0.00207221 -0.00290474 0.999943 0.0100894 uwb: 0.50054293 1230.3 701.499 +imu_odom_: 1691062486.902967380 0.232238 -0.31364 10.0556 -0.036219 0.0287621 0.036219 0.2 -0.02 pose: 0.40828347 2.79429 -3.96079 0 0.000233648 -0.00161833 0.99995 0.00986499 uwb: 0.0 1230.3 701.499 +imu_odom_: 1691062486.926964464 -0.148441 -0.337582 9.35893 -0.0340885 0.0255663 0.0372843 0.18 0 pose: 0.0 2.79429 -3.96079 0 0.000233648 -0.00161833 0.99995 0.00986499 uwb: 0.0 1230.3 701.499 +imu_odom_: 1691062486.954076817 0.335188 -0.258574 9.56005 -0.0660464 -0.0543285 0.052198 0.18 0 pose: 0.41995188 2.79429 -3.96079 0 -0.0011017 -0.00176015 0.999948 0.00995538 uwb: 0.49930638 1230.44 702.384 +imu_odom_: 1691062486.969996422 0.632069 -0.167594 10.3693 -0.052198 -0.0426106 0.0372843 0.19 0 pose: 0.0 2.79429 -3.96079 0 -0.0011017 -0.00176015 0.999948 0.00995538 uwb: 0.0 1230.44 702.384 +imu_odom_: 1691062486.997105276 0.509965 -0.134075 9.94791 -0.0639159 -0.0319579 0.0468716 0.19 0 pose: 0.51154057 2.78453 -3.96296 0 -0.00359847 -0.00318337 0.99994 0.00980902 uwb: 0.50184364 1231.03 704.302 +imu_odom_: 1691062487.21971736 0.873884 -0.225055 9.61511 -0.052198 0.0276969 0.0426106 0.25 0 pose: 0.14873211 2.77477 -3.96513 0 -0.00207507 -0.00248226 0.999947 0.0097934 uwb: 0.0 1231.03 704.302 +imu_odom_: 1691062487.45011091 0.237026 -0.481235 9.75158 -0.0735032 0.0383495 0.0585895 0.25 0 pose: 0.0 2.77477 -3.96513 0 -0.00207507 -0.00248226 0.999947 0.0097934 uwb: 0.49932982 1232.1 706.64 +imu_odom_: 1691062487.69945214 0.268151 0.0766145 10.0221 -0.0372843 -0.0245011 0.0415453 0.21 0 pose: 0.51949069 2.76501 -3.9673 0 0.00122481 -0.00177488 0.999951 0.00961843 uwb: 0.0 1232.1 706.64 +imu_odom_: 1691062487.84954333 0.0885855 -0.514753 9.24401 -0.072438 -0.0308927 0.0596548 0.21 0 pose: 0.0 2.76501 -3.9673 0 0.00122481 -0.00177488 0.999951 0.00961843 uwb: 0.50064226 1232.21 708.078 +imu_odom_: 1691062487.109022584 0.287304 -0.277727 10.082 -0.0287621 -0.00639159 0.0266316 0.18 -0.02 pose: 0.48083425 2.76284 -3.95754 0 -0.0011749 -0.00112912 0.999955 0.00936351 uwb: 0.0 1232.21 708.078 +imu_odom_: 1691062487.133947083 0.105345 -0.134075 9.87848 -0.0798948 0.00639159 0.0649811 0.25 0 pose: 0.0 2.76284 -3.95754 0 -0.0011749 -0.00112912 0.999955 0.00936351 uwb: 0.49837040 1232.19 709.146 +imu_odom_: 1691062487.148950661 0.888249 -0.071826 10.3621 -0.0639159 -0.0426106 0.0340885 0.25 0 pose: 0.31981832 2.75308 -3.95972 0 -0.00390809 -0.00217076 0.999945 0.00943751 uwb: 0.0 1232.19 709.146 +imu_odom_: 1691062487.172939003 0.632069 -0.25618 10.3477 -0.072438 -0.00426106 0.036219 0.25 0 pose: 0.0 2.75308 -3.95972 0 -0.00390809 -0.00217076 0.999945 0.00943751 uwb: 0.0 1232.19 709.146 +imu_odom_: 1691062487.198996222 0.840365 -0.414197 9.663 -0.052198 0.04048 0.0340885 0.18 0 pose: 0.7979783 2.75308 -3.95972 0 -0.00464509 -0.00187276 0.999944 0.00933281 uwb: 0.50084058 1231.75 709.697 +imu_odom_: 1691062487.224001796 0.543484 -0.189142 10.0245 -0.0692422 0.0127832 0.0479369 0.2 -0.02 pose: 0.38945841 2.74332 -3.9619 0 -0.00377612 -0.0010339 0.99995 0.00916279 uwb: 0.0 1231.75 709.697 +imu_odom_: 1691062487.239923740 0.371101 -0.117316 10.3214 -0.0511327 0.015979 0.0330232 0.2 -0.02 pose: 0.0 2.74332 -3.9619 0 -0.00377612 -0.0010339 0.99995 0.00916279 uwb: 0.49913449 1231.7 710.8 +imu_odom_: 1691062487.265029345 0.122104 -0.464475 9.91439 -0.0745685 -0.0255663 0.0426106 0.2 -0.02 pose: 0.49996275 2.73356 -3.96408 0 0.000345544 -0.00193536 0.999955 0.00924282 uwb: 0.0 1231.7 710.8 +imu_odom_: 1691062487.292217825 0.344765 -0.294487 9.67018 -0.0223706 0.00745685 0.0266316 0.2 -0.02 pose: 0.0 2.73356 -3.96408 0 0.000345544 -0.00193536 0.999955 0.00924282 uwb: 0.50136261 1231.2 711.425 +imu_odom_: 1691062487.316974341 0.744597 -0.335188 10.1059 -0.0617853 -0.00426106 0.0394148 0.19 -0.02 pose: 0.42015617 2.7238 -3.96626 0 0.000365486 -0.0004579360.999957 0.00921253 uwb: 0.0 1231.2 711.425 +imu_odom_: 1691062487.343082013 0.100556 -0.203507 10.1969 -0.0468716 -0.015979 0.0426106 0.19 -0.02 pose: 0.0 2.7238 -3.96626 0 0.000365486 -0.0004579360.999957 0.00921253 uwb: 0.49870287 1230.12 712.252 +imu_odom_: 1691062487.358125253 0.438139 -0.339977 9.60793 -0.0543285 -0.00426106 0.0543285 0.17 0.02 pose: 0.52057567 2.71186 -3.95868 0 -0.00202812 -0.00337288 0.999948 0.00936429 uwb: 0.0 1230.12 712.252 +imu_odom_: 1691062487.384059984 0.416591 -0.0502782 10.1849 -0.0415453 -0.0298274 0.0287621 0.17 0.02 pose: 0.0 2.71186 -3.95868 0 -0.00202812 -0.00337288 0.999948 0.00936429 uwb: 0.50031562 1231.33 713.827 +imu_odom_: 1691062487.406975101 0.023942 -0.565032 9.38766 -0.0756338 -0.00745685 0.056459 0.19 0 pose: 0.50086683 2.7021 -3.96086 0 -0.00216318 -0.00327256 0.999949 0.0092731 uwb: 0.0 1231.33 713.827 +imu_odom_: 1691062487.432948036 0.191536 -0.191536 9.93115 -0.04048 -0.00532632 0.0308927 0.19 0 pose: 0.0 2.7021 -3.96086 0 -0.00216318 -0.00327256 0.999949 0.0092731 uwb: 0.49827708 1230.68 714.632 +imu_odom_: 1691062487.447049288 0.392649 -0.169988 10.4363 -0.0639159 -0.0170442 0.056459 0.19 0 pose: 0.40880564 2.7021 -3.96086 0 -0.00123557 -0.00159347 0.999955 0.00929563 uwb: 0.0 1230.68 714.632 +imu_odom_: 1691062487.470979011 0.23942 -0.0335188 9.97185 -0.0255663 0.0447411 0.0415453 0.19 0 pose: 0.0 2.7021 -3.96086 0 -0.00123557 -0.00159347 0.999955 0.00929563 uwb: 0.0 1230.68 714.632 +imu_odom_: 1691062487.493890045 0.847547 -0.349553 9.63427 -0.0596548 -0.0117179 0.0543285 0.22 0.02 pose: 0.48070301 2.69234 -3.96304 0 -0.00422469 -0.00110846 0.999948 0.00921097 uwb: 0.50004732 1229.33 714.268 +imu_odom_: 1691062487.511135440 0.248997 -0.378284 9.01896 -0.0468716 0.0585895 0.0490022 0.22 0.02 pose: 0.0 2.69234 -3.96304 0 -0.00422469 -0.00110846 0.999948 0.00921097 uwb: 0.0 1229.33 714.268 +imu_odom_: 1691062487.536038941 -0.141258 -0.416591 9.62469 -0.0490022 0 0.0628506 0.18 0 pose: 0.72080225 2.67512 -3.95665 0 -0.0042967 -0.0002679310.999951 0.00886565 uwb: 0.49977027 1230.58 716.273 +imu_odom_: 1691062487.561894929 0.162806 -0.0263362 9.72764 -0.0308927 -0.02024 0.0468716 0.18 0 pose: 0.7775053 2.67064 -3.95766 0 -0.00503164 -0.0005397650.999949 0.00877636 uwb: 0.0 1230.58 716.273 +imu_odom_: 1691062487.577006121 0.560243 -0.198719 9.98861 -0.0628506 -0.00319579 0.0585895 0.2 0 pose: 0.0 2.67064 -3.95766 0 -0.00503164 -0.0005397650.999949 0.00877636 uwb: 0.0 1230.58 716.273 +imu_odom_: 1691062487.602981973 0.586579 -0.306458 9.79228 -0.0553937 0.0415453 0.0447411 0.2 0 pose: 0.49023664 2.67064 -3.95766 0 -0.00703835 0.00141815 0.999939 0.00841236 uwb: 0.50175631 1230.2 717.241 +imu_odom_: 1691062487.626015203 0.792481 -0.361524 9.71088 -0.0798948 -0.0298274 0.0617853 0.18 0 pose: 0.35047816 2.66088 -3.95985 0 -0.00431289 0.000389969 0.999957 0.00825985 uwb: 0.0 1230.2 717.241 +imu_odom_: 1691062487.651035067 0.107739 -0.129287 9.63666 -0.0490022 0.036219 0.0458064 0.18 0 pose: 0.6920555 2.66088 -3.95985 0 -0.00356878 8.5089e-05 0.99996 0.0081834 uwb: 0.50034187 1229.46 717.643 +imu_odom_: 1691062487.667957911 0.287304 -0.287304 10.0245 -0.0990696 -0.00213053 0.0703074 0.23 0 pose: 0.0 2.66088 -3.95985 0 -0.00356878 8.5089e-05 0.99996 0.0081834 uwb: 0.0 1229.46 717.643 +imu_odom_: 1691062487.692912157 0.641646 -0.553061 9.71567 -0.0660464 0.0255663 0.0383495 0.23 0 pose: 0.41132539 2.65113 -3.96206 0 -0.00468184 0.000356388 0.999958 0.00792479 uwb: 0.49930365 1229.94 719.065 +imu_odom_: 1691062487.716940454 0.632069 -0.275333 10.1586 -0.0543285 -0.036219 0.0479369 0.2 0 pose: 0.24907001 2.64137 -3.96427 0 -0.00472071 -0.00221808 0.999957 0.00767949 uwb: 0.0 1229.94 719.065 +imu_odom_: 1691062487.742043143 0.629675 -0.42138 10.3717 -0.0415453 0.00106526 0.0394148 0.2 0 pose: 0.0 2.64137 -3.96427 0 -0.00472071 -0.00221808 0.999957 0.00767949 uwb: 0.49838790 1229.53 720.067 +imu_odom_: 1691062487.757913175 0.481235 0 9.66539 -0.0575243 -0.015979 0.0415453 0.18 0 pose: 0.48162750 2.63916 -3.95451 0 -0.000333722-0.00369647 0.999964 0.00760752 uwb: 0.0 1229.53 720.067 +imu_odom_: 1691062487.783034238 0.155623 -0.387861 9.47146 -0.056459 0.0319579 0.0458064 0.18 0 pose: 0.0 2.63916 -3.95451 0 -0.000333722-0.00369647 0.999964 0.00760752 uwb: 0.50009690 1231.31 722.856 +imu_odom_: 1691062487.807905075 0.0742203 -0.383072 9.56005 -0.0585895 -0.00213053 0.0479369 0.18 0.02 pose: 0.40875898 2.62941 -3.95673 0 0.000790945 -0.00319456 0.999966 0.00757865 uwb: 0.0 1231.31 722.856 +imu_odom_: 1691062487.824889162 0.634463 -0.177171 10.0389 -0.04048 -0.072438 0.0426106 0.18 0.02 pose: 0.0 2.62941 -3.95673 0 0.000790945 -0.00319456 0.999966 0.00757865 uwb: 0.0 1231.31 722.856 +imu_odom_: 1691062487.849074069 0.639252 -0.332794 10.1538 -0.0660464 -0.0245011 0.0426106 0.25 0 pose: 0.49925115 2.61966 -3.95894 0 -0.00273044 -0.00433375 0.99996 0.00739559 uwb: 0.50103597 1232.67 725.161 +imu_odom_: 1691062487.876095732 0.493206 0.00957681 10.0844 -0.0266316 0.0127832 0.0426106 0.2 0 pose: 0.34168238 2.61316 -3.96042 0 0.00116464 -0.00438433 0.999963 0.00735408 uwb: 0.0 1232.67 725.161 +imu_odom_: 1691062487.901933056 0.344765 -0.0981623 10.1035 -0.0543285 -0.0298274 0.0447411 0.2 0 pose: 0.0 2.61316 -3.96042 0 0.00116464 -0.00438433 0.999963 0.00735408 uwb: 0.50035354 1232.87 726.381 +imu_odom_: 1691062487.929012464 0.581791 -0.407014 10.2999 -0.0660464 -0.092678 0.0671117 0.25 0 pose: 0.8039276 2.60991 -3.96116 0 0.0012701 -0.00348271 0.999966 0.00734376 uwb: 0.0 1232.87 726.381 +imu_odom_: 1691062487.945014024 0.964863 -0.301669 9.65103 -0.0596548 -0.0276969 0.0383495 0.25 0 pose: 0.0 2.60991 -3.96116 0 0.0012701 -0.00348271 0.999966 0.00734376 uwb: 0.49998024 1234.35 728.984 +imu_odom_: 1691062487.971990484 0.40462 -0.28491 9.72764 -0.0351537 -0.0213053 0.0383495 0.25 -0.02 pose: 0.51774680 2.60016 -3.96338 0 0.00123981 0.000281189 0.999974 0.00715768 uwb: 0.0 1234.35 728.984 +imu_odom_: 1691062487.996859280 0.378284 -0.25618 9.5385 -0.0490022 0.0319579 0.0394148 0.25 -0.02 pose: 0.0 2.60016 -3.96338 0 0.00123981 0.000281189 0.999974 0.00715768 uwb: 0.49959528 1234.45 729.82 +imu_odom_: 1691062488.23869868 0.246603 -0.311246 9.88326 -0.0628506 -0.0213053 0.0500674 0.23 -0.02 pose: 0.44201439 2.58818 -3.95585 0 0.0044691 -0.00186656 0.999965 0.00689247 uwb: 0.0 1234.45 729.82 +imu_odom_: 1691062488.39850437 0.490811 -0.143652 10.2831 -0.0511327 -0.0543285 0.0436758 0.23 -0.02 pose: 0.0 2.58818 -3.95585 0 0.0044691 -0.00186656 0.999965 0.00689247 uwb: 0.50004742 1234 730.336 +imu_odom_: 1691062488.64961300 0.699107 -0.225055 10.2496 -0.052198 0.00532632 0.0383495 0.19 0 pose: 0.50788362 2.57844 -3.95808 0 -0.000673938-0.0024373 0.999973 0.00685535 uwb: 0.0 1234 730.336 +imu_odom_: 1691062488.86896523 0.363919 -0.186748 9.92875 -0.0394148 0.052198 0.0330232 0.19 0 pose: 0.0 2.57844 -3.95808 0 -0.000673938-0.0024373 0.999973 0.00685535 uwb: 0.50046745 1234.54 731.616 +imu_odom_: 1691062488.112858968 0.586579 -0.158017 10.2065 -0.0543285 0.0149137 0.0532632 0.18 -0.02 pose: 0.67031713 2.56869 -3.96031 0 0.000912546 -0.00129133 0.999976 0.00675318 uwb: 0.0 1234.54 731.616 +imu_odom_: 1691062488.139915054 -0.0311246 -0.0957681 9.75637 -0.0308927 0.0181095 0.036219 0.23 0 pose: 0.41949429 2.56169 -3.96191 0 0.0015223 0.000645569 0.999977 0.00662787 uwb: 0.49943214 1234.44 732.681 +imu_odom_: 1691062488.165836670 0.373495 -0.263362 10.094 -0.0628506 -0.0447411 0.0479369 0.23 0 pose: 0.0 2.56169 -3.96191 0 0.0015223 0.000645569 0.999977 0.00662787 uwb: 0.0 1234.44 732.681 +imu_odom_: 1691062488.181901230 0.943315 -0.198719 9.89045 -0.0372843 0.00745685 0.0276969 0.23 0 pose: 0.7070168 2.55894 -3.96254 0 0.000755718 0.000895153 0.999977 0.00664027 uwb: 0.49856305 1233.81 733.388 +imu_odom_: 1691062488.206881149 0.237026 -0.280122 9.7444 -0.0756338 0 0.0596548 0.23 0 pose: 0.0 2.55894 -3.96254 0 0.000755718 0.000895153 0.999977 0.00664027 uwb: 0.0 1233.81 733.388 +imu_odom_: 1691062488.229814647 0.466869 -0.129287 10.2711 -0.0532632 -0.0245011 0.0245011 0.21 0 pose: 0.52923749 2.54696 -3.95503 0 -0.000283929-0.0009873990.999978 0.00661397 uwb: 0.0 1233.81 733.388 +imu_odom_: 1691062488.246829653 0.737414 -0.253785 9.56723 -0.0905475 0.0149137 0.04048 0.21 0 pose: 0.0 2.54696 -3.95503 0 -0.000283929-0.0009873990.999978 0.00661397 uwb: 0.50015832 1233.53 734.176 +imu_odom_: 1691062488.273001786 0.191536 -0.497994 9.31105 -0.0394148 0.0735032 0.0340885 0.18 0 pose: 0.40983235 2.54696 -3.95503 0 -0.0013768 -0.00122015 0.999977 0.00646796 uwb: 0.0 1233.53 734.176 +imu_odom_: 1691062488.299990504 0.45011 -0.270545 9.87129 -0.0756338 0.0181095 0.0372843 0.18 0 pose: 0.0 2.54696 -3.95503 0 -0.0013768 -0.00122015 0.999977 0.00646796 uwb: 0.49980834 1234.04 735.469 +imu_odom_: 1691062488.325883831 0.131681 -0.177171 10.2592 -0.0372843 -0.0447411 0.0415453 0.2 0 pose: 0.41008315 2.53721 -3.95726 0 0.00050987 -0.00103307 0.999978 0.006601 uwb: 0.0 1234.04 735.469 +imu_odom_: 1691062488.342890671 0.505177 -0.280122 9.63187 -0.052198 0.0340885 0.0266316 0.2 0 pose: 0.0 2.53721 -3.95726 0 0.00050987 -0.00103307 0.999978 0.006601 uwb: 0.50095449 1235.42 737.167 +imu_odom_: 1691062488.368930692 0.100556 -0.213084 9.80665 -0.0415453 -0.00852212 0.036219 0.23 0 pose: 0.52994325 2.52746 -3.95949 0 0.000385712 -0.00264402 0.999974 0.00667625 uwb: 0.0 1235.42 737.167 +imu_odom_: 1691062488.392934500 0.155623 -0.433351 9.44752 -0.0490022 0.00426106 0.0287621 0.23 0 pose: 0.25075867 2.51772 -3.96173 0 -0.000408205-0.00205831 0.999975 0.00670004 uwb: 0.49948171 1234.99 738.109 +imu_odom_: 1691062488.419827852 0.153229 -0.0670376 10.1897 -0.0532632 -0.00319579 0.04048 0.23 0 pose: 0.36016065 2.5161 -3.95467 0 -0.00215058 -0.00170626 0.999973 0.0068049 uwb: 0.0 1234.99 738.109 +imu_odom_: 1691062488.435811045 0.926556 -0.172383 9.97424 -0.052198 -0.0149137 0.0490022 0.19 0 pose: 0.6900727 2.51549 -3.95198 0 -0.00269649 -0.0021424 0.999971 0.00684241 uwb: 0.50058702 1235.85 739.901 +imu_odom_: 1691062488.462811720 0.691924 0.0407014 10.2759 -0.0681769 -0.0127832 0.0532632 0.19 0 pose: 0.0 2.51549 -3.95198 0 -0.00269649 -0.0021424 0.999971 0.00684241 uwb: 0.0 1235.85 739.901 +imu_odom_: 1691062488.487978870 0.270545 -0.354342 10.1251 -0.0532632 -0.0106526 0.0330232 0.2 0 pose: 0.52064584 2.50574 -3.95421 0 -0.00487253 -0.0009854850.999964 0.00687197 uwb: 0.49999208 1236.83 742.004 +imu_odom_: 1691062488.514821185 0.390255 -0.328006 9.62708 -0.0639159 -0.036219 0.0383495 0.2 0 pose: 0.0 2.50574 -3.95421 0 -0.00487253 -0.0009854850.999964 0.00687197 uwb: 0.0 1236.83 742.004 +imu_odom_: 1691062488.540804045 0.454898 -0.225055 10.1059 -0.0351537 0.0106526 0.0170442 0.18 -0.02 pose: 0.42925541 2.49599 -3.95643 0 -0.00215941 -0.0001403470.999975 0.0066729 uwb: 0.49929798 1237.44 744.04 +imu_odom_: 1691062488.557798637 0.282516 -0.253785 10.2304 -0.0479369 0.00958738 0.0468716 0.18 -0.02 pose: 0.0 2.49599 -3.95643 0 -0.00215941 -0.0001403470.999975 0.0066729 uwb: 0.0 1237.44 744.04 +imu_odom_: 1691062488.583803953 0.306458 -0.172383 9.7875 -0.0511327 0.0660464 0.0447411 0.18 0.02 pose: 0.51992258 2.48624 -3.95867 0 -0.000825244-0.0034333 0.99997 0.00684897 uwb: 0.49935340 1237.34 744.593 +imu_odom_: 1691062488.610802003 0.442927 -0.433351 9.44752 -0.0575243 0.0117179 0.0532632 0.25 0.02 pose: 0.42992326 2.47649 -3.96089 0 -0.00222809 -0.00132068 0.999972 0.00696913 uwb: 0.0 1237.34 744.593 +imu_odom_: 1691062488.636853689 -0.241814 -0.114922 9.94073 -0.0234358 0.0543285 0.0415453 0.18 0.02 pose: 0.0 2.47649 -3.96089 0 -0.00222809 -0.00132068 0.999972 0.00696913 uwb: 0.50060451 1237.56 745.697 +imu_odom_: 1691062488.663795745 0.440533 -0.268151 9.77074 -0.0575243 0.0213053 0.0479369 0.25 0 pose: 0.53077733 2.46452 -3.95337 0 -0.00402949 -0.00200449 0.999967 0.00673502 uwb: 0.0 1237.56 745.697 +imu_odom_: 1691062488.679790020 0.0670376 -0.126893 9.85932 -0.0426106 0.0511327 0.0468716 0.25 0 pose: 0.0 2.46452 -3.95337 0 -0.00402949 -0.00200449 0.999967 0.00673502 uwb: 0.0 1237.56 745.697 +imu_odom_: 1691062488.706783987 0.414197 -0.325611 9.96227 -0.0596548 -0.0245011 0.052198 0.23 0.02 pose: 0.60906159 2.45477 -3.9556 0 -0.00586995 -0.00098143 0.999961 0.00654571 uwb: 0.49925132 1237.88 746.68 +imu_odom_: 1691062488.731861021 0.28491 0.0215478 10.489 -0.0681769 -0.00852212 0.052198 0.23 0.02 pose: 0.7035755 2.45477 -3.9556 0 -0.00523008 -0.00141109 0.999964 0.00650418 uwb: 0.0 1237.88 746.68 +imu_odom_: 1691062488.757925539 0.385466 -0.251391 9.89284 -0.0777643 -0.0181095 0.0394148 0.22 0.02 pose: 0.45035246 2.44502 -3.95784 0 -0.00375337 -0.0003089750.999974 0.00621796 uwb: 0.50022539 1237.94 747.507 +imu_odom_: 1691062488.783774246 0.438139 -0.323217 10.1538 -0.0660464 0.0127832 0.0351537 0.22 0.02 pose: 0.0 2.44502 -3.95784 0 -0.00375337 -0.0003089750.999974 0.00621796 uwb: 0.50095449 1236.37 746.97 +imu_odom_: 1691062488.800888701 0.263362 -0.1652 9.94791 -0.0660464 -0.02024 0.0394148 0.21 -0.02 pose: 0.51913225 2.43528 -3.96008 0 0.000154392 -0.00397528 0.999972 0.00628751 uwb: 0.0 1236.37 746.97 +imu_odom_: 1691062488.825824582 0.433351 -0.124498 10.0724 -0.0671117 -0.036219 0.0372843 0.21 -0.02 pose: 0.0 2.43528 -3.96008 0 0.000154392 -0.00397528 0.999972 0.00628751 uwb: 0.0 1236.37 746.97 +imu_odom_: 1691062488.852780053 0.497994 -0.100556 10.082 -0.0585895 -0.0138484 0.0468716 0.21 0.02 pose: 0.42050336 2.42612 -3.95192 0 0.000219298 -0.0007090370.99998 0.00631092 uwb: 0.49800311 1235.26 746.834 +imu_odom_: 1691062488.878775161 0.294487 -0.229843 9.90481 -0.0596548 -0.00319579 0.04048 0.18 0.02 pose: 0.26955471 2.42329 -3.95257 0 0.00191616 0.00143971 0.999978 0.00621415 uwb: 0.0 1235.26 746.834 +imu_odom_: 1691062488.895770920 0.280122 -0.215478 9.76834 -0.0415453 0.04048 0.0394148 0.23 0 pose: 0.0 2.42329 -3.95257 0 0.00191616 0.00143971 0.999978 0.00621415 uwb: 0.50064826 1234.74 747.386 +imu_odom_: 1691062488.920747339 0.833182 -0.268151 10.2017 -0.0607201 0.0458064 0.0415453 0.23 0 pose: 0.33032030 2.41355 -3.95481 0 -0.00144968 0.000624608 0.999979 0.00620577 uwb: 0.0 1234.74 747.386 +imu_odom_: 1691062488.947883042 0.486023 -0.363919 10.0293 -0.052198 0.015979 0.0372843 0.21 0.02 pose: 0.0 2.41355 -3.95481 0 -0.00144968 0.000624608 0.999979 0.00620577 uwb: 0.50005041 1233.63 747.256 +imu_odom_: 1691062488.973827405 0.581791 -0.433351 9.79947 -0.0585895 -0.0127832 0.0426106 0.19 0 pose: 0.42009215 2.4038 -3.95705 0 -0.000503441-0.0004133120.999981 0.00619017 uwb: 0.0 1233.63 747.256 +imu_odom_: 1691062489.804457 0.54109 -0.169988 10.477 -0.0287621 0.00426106 0.0479369 0.23 0.02 pose: 0.28079150 2.4038 -3.95705 0 0.000961686 -0.00266676 0.999977 0.00620308 uwb: 0.0 1233.63 747.256 +imu_odom_: 1691062489.26773326 0.751779 -0.361524 9.77074 -0.052198 0.00745685 0.036219 0.18 0.02 pose: 0.24894760 2.39405 -3.9593 0 0.00264813 -0.00333979 0.999972 0.00615151 uwb: 0.0 1233.63 747.256 +imu_odom_: 1691062489.42739902 -0.131681 -0.282516 9.37809 -0.02024 0.0490022 0.0319579 0.18 0.02 pose: 0.0 2.39405 -3.9593 0 0.00264813 -0.00333979 0.999972 0.00615151 uwb: 0.100175450 1233.33 748.03 +imu_odom_: 1691062489.68903002 0.181959 -0.201113 9.7444 -0.04048 -0.0149137 0.0458064 0.18 0 pose: 0.28165769 2.39405 -3.9593 0 0.00443382 -0.00176346 0.99997 0.00608957 uwb: 0.0 1233.33 748.03 +imu_odom_: 1691062489.95974554 0.756568 -0.0981623 10.5153 -0.0681769 -0.0511327 0.0500674 0.18 0 pose: 0.0 2.39405 -3.9593 0 0.00443382 -0.00176346 0.99997 0.00608957 uwb: 0.49934773 1232.33 748.229 +imu_odom_: 1691062489.120887696 0.588974 -0.146046 9.95748 -0.0532632 -0.0585895 0.0458064 0.18 0.02 pose: 0.41976858 2.38207 -3.95179 0 0.00317818 -0.00199814 0.999974 0.00614825 uwb: 0.0 1232.33 748.229 +imu_odom_: 1691062489.147916377 0.339977 -0.124498 10.1011 -0.0500674 -0.00426106 0.04048 0.18 0.02 pose: 0.0 2.38207 -3.95179 0 0.00317818 -0.00199814 0.999974 0.00614825 uwb: 0.50143877 1232.24 749.205 +imu_odom_: 1691062489.163860788 0.603339 -0.3304 9.5816 -0.0500674 0.0138484 0.0383495 0.2 0 pose: 0.52901310 2.37232 -3.95404 0 0.00543471 -7.50704e-050.999968 0.00592982 uwb: 0.0 1232.24 749.205 +imu_odom_: 1691062489.188728143 0.737414 -0.208296 9.65821 -0.0585895 -0.0245011 0.0617853 0.2 0 pose: 0.0 2.37232 -3.95404 0 0.00543471 -7.50704e-050.999968 0.00592982 uwb: 0.0 1232.24 749.205 +imu_odom_: 1691062489.211740099 0.347159 0.0790087 9.51935 -0.13955 0.0543285 0.0788296 0.2 0 pose: 0.51030456 2.36258 -3.95628 0 0.00499407 0.00142172 0.999969 0.00587906 uwb: 0.0 1232.24 749.205 +imu_odom_: 1691062489.236716527 0.373495 -0.861913 9.88566 -0.0745685 -0.0170442 0.0383495 0.2 0 pose: 0.39903314 2.36258 -3.95628 0 0.00763987 0.00080686 0.999955 0.00548935 uwb: 0.99728394 1231.45 749.18 +imu_odom_: 1691062489.253733872 0.545878 -0.253785 10.0916 -0.0308927 0.0181095 -0.036219 0.22 0 pose: 0.41943612 2.35124 -3.95166 0 0.0057405 -0.00121896 0.999969 0.00517667 uwb: 0.0 1231.45 749.18 +imu_odom_: 1691062489.278739755 0.378284 -0.409408 9.97903 -0.0884169 -0.0308927 0.106526 0.22 0 pose: 0.0 2.35124 -3.95166 0 0.0057405 -0.00121896 0.999969 0.00517667 uwb: 0.0 1231.45 749.18 +imu_odom_: 1691062489.305749479 0.687136 -0.150835 10.3765 -0.0607201 0.0213053 0.0106526 0.23 0 pose: 0.7042756 2.35057 -3.9488 0 0.00627783 -0.00147332 0.999964 0.00544194 uwb: 0.49986976 1232.41 751.201 +imu_odom_: 1691062489.321839709 0.292093 0.100556 9.73961 -0.0745685 -0.0127832 0.0458064 0.23 0 pose: 0.0 2.35057 -3.9488 0 0.00627783 -0.00147332 0.999964 0.00544194 uwb: 0.0 1232.41 751.201 +imu_odom_: 1691062489.345716663 -0.011971 -0.45011 10.0149 -0.0671117 -0.00639159 0.0308927 0.25 0.02 pose: 0.41993773 2.34083 -3.95105 0 0.00601052 -0.00355288 0.999963 0.005074 uwb: 0.50183248 1232.01 751.631 +imu_odom_: 1691062489.369724561 -0.0454898 -0.447716 10.0413 -0.0575243 0.0149137 0.0394148 0.25 0.02 pose: 0.0 2.34083 -3.95105 0 0.00601052 -0.00355288 0.999963 0.005074 uwb: 0.0 1232.01 751.631 +imu_odom_: 1691062489.394901635 0.474052 -0.277727 10.1059 -0.056459 -0.0266316 0.036219 0.19 0 pose: 0.42965801 2.33109 -3.95332 0 0.00579838 -0.00142935 0.999968 0.00536406 uwb: 0.0 1232.01 751.631 +imu_odom_: 1691062489.411835864 0.430956 -0.452504 9.88087 -0.0649811 0.015979 0.0372843 0.19 0 pose: 0.0 2.33109 -3.95332 0 0.00579838 -0.00142935 0.999968 0.00536406 uwb: 0.0 1232.01 751.631 +imu_odom_: 1691062489.437748448 0.481235 -0.304064 9.71806 -0.0490022 -0.0138484 0.0276969 0.2 0.02 pose: 0.49035654 2.32135 -3.95557 0 0.00261965 -0.00306607 0.999977 0.0054426 uwb: 0.99672107 1232.64 753.125 +imu_odom_: 1691062489.464804251 0.184354 -0.253785 9.84017 -0.0628506 -0.0117179 0.0479369 0.23 -0.02 pose: 0.41960818 2.31161 -3.95783 0 0.00436332 -0.00435963 0.999966 0.00553821 uwb: 0.0 1232.64 753.125 +imu_odom_: 1691062489.490802869 0.538695 -0.186748 9.93594 -0.0330232 0.00106526 0.0181095 0.18 -0.02 pose: 0.25024547 2.31161 -3.95783 0 0.00502578 -0.00298331 0.999967 0.00562484 uwb: 0.49998059 1231.8 754.016 +imu_odom_: 1691062489.517698854 0.811634 -0.208296 10.0293 -0.0511327 -0.00958738 0.0468716 0.25 -0.02 pose: 0.28159360 2.29961 -3.95034 0 0.00361023 -0.00223729 0.999975 0.00562608 uwb: 0.0 1231.8 754.016 +imu_odom_: 1691062489.533804833 0.155623 -0.160412 9.23444 -0.0383495 0.0298274 0.0266316 0.25 -0.02 pose: 0.0 2.29961 -3.95034 0 0.00361023 -0.00223729 0.999975 0.00562608 uwb: 0.49995433 1231.22 754.633 +imu_odom_: 1691062489.560847221 0.222661 -0.622492 9.55765 -0.0830906 -0.0340885 0.052198 0.23 -0.02 pose: 0.24819527 2.29961 -3.95034 0 0.00546083 -0.00064064 0.999968 0.00580077 uwb: 0.0 1231.22 754.633 +imu_odom_: 1691062489.585721283 0.462081 -0.21069 9.64863 -0.0426106 -0.02024 0.0245011 0.23 -0.02 pose: 0.0 2.29961 -3.95034 0 0.00546083 -0.00064064 0.999968 0.00580077 uwb: 0.49990476 1231.75 755.782 +imu_odom_: 1691062489.612789918 0.105345 -0.387861 9.77313 -0.0479369 -0.00106526 0.0383495 0.21 0.02 pose: 0.44142267 2.28987 -3.95259 0 0.00529815 -0.00084853 0.999969 0.00578028 uwb: 0.0 1231.75 755.782 +imu_odom_: 1691062489.628722664 0.289698 -0.316035 10.058 -0.0543285 0 0.04048 0.21 0.02 pose: 0.0 2.28987 -3.95259 0 0.00529815 -0.00084853 0.999969 0.00578028 uwb: 0.0 1231.75 755.782 +imu_odom_: 1691062489.655687185 0.409408 -0.306458 10.1107 -0.0468716 -0.0287621 0.0458064 0.25 0.02 pose: 0.51003624 2.28012 -3.95483 0 0.00292747 -0.0005311320.999978 0.00584973 uwb: 0.50104506 1232.18 757.036 +imu_odom_: 1691062489.680747312 0.0670376 -0.308852 10.1682 -0.0543285 0.036219 0.056459 0.25 0.02 pose: 0.0 2.28012 -3.95483 0 0.00292747 -0.0005311320.999978 0.00584973 uwb: 0.0 1232.18 757.036 +imu_odom_: 1691062489.705018559 0.0430956 -0.435745 9.75158 -0.0308927 0.0245011 0.0287621 0.2 0 pose: 0.43858504 2.27038 -3.95708 0 -5.5286e-05 -0.00278705 0.999979 0.00582413 uwb: 0.49996017 1232.02 757.63 +imu_odom_: 1691062489.728743278 0.651223 -0.306458 9.96706 -0.0628506 -0.0319579 0.0585895 0.2 0 pose: 0.50991376 2.25838 -3.94959 0 -0.0031269 -0.0047223 0.999968 0.00558161 uwb: 0.0 1232.02 757.63 +imu_odom_: 1691062489.744682148 0.342371 -0.280122 9.72046 -0.052198 0.0138484 0.0458064 0.19 0 pose: 0.0 2.25838 -3.94959 0 -0.0031269 -0.0047223 0.999968 0.00558161 uwb: 0.50012932 1232.29 759.035 +imu_odom_: 1691062489.771793654 -0.0981623 -0.217872 9.75158 -0.0660464 0.036219 0.0575243 0.19 0 pose: 0.24003524 2.25838 -3.94959 0 -0.00420992 -0.00518518 0.999962 0.00561025 uwb: 0.0 1232.29 759.035 +imu_odom_: 1691062489.796670633 0.0550666 -0.150835 9.47146 -0.0553937 0.00213053 0.0330232 0.25 0 pose: 0.39974183 2.24864 -3.95184 0 -0.00396611 -0.00367786 0.999971 0.00533435 uwb: 0.50001267 1231.36 759.156 +imu_odom_: 1691062489.823823552 0.474052 -0.397437 9.51216 -0.108657 0.0106526 0.0649811 0.23 0 pose: 0.44978392 2.2418 -3.95343 0 -0.00860313 -0.00222604 0.999947 0.00521312 uwb: 0.0 1231.36 759.156 +imu_odom_: 1691062489.839742007 0.584185 -0.251391 10.4339 -0.076699 0.00106526 0.0330232 0.23 0 pose: 0.0 2.2418 -3.95343 0 -0.00860313 -0.00222604 0.999947 0.00521312 uwb: 0.50031596 1230.44 759.279 +imu_odom_: 1691062489.866724901 0.646434 -0.179565 9.84017 -0.0745685 0.00213053 0.0447411 0.23 0.02 pose: 0.7133164 2.2389 -3.9541 0 -0.0080476 -0.00278718 0.999951 0.00512559 uwb: 0.0 1230.44 759.279 +imu_odom_: 1691062489.891677122 0.773327 -0.253785 9.99819 -0.036219 -0.015979 0.0287621 0.23 0.02 pose: 0.0 2.2389 -3.9541 0 -0.0080476 -0.00278718 0.999951 0.00512559 uwb: 0.49998642 1231.03 760.762 +imu_odom_: 1691062489.918660308 0.45011 -0.158017 9.63427 -0.0553937 -0.00852212 0.04048 0.22 0.02 pose: 0.43964660 2.2389 -3.9541 0 -0.0042276 -0.00408642 0.999971 0.0049174 uwb: 0.0 1231.03 760.762 +imu_odom_: 1691062489.944773830 0.533907 -0.368707 10.0245 -0.0500674 -0.02024 0.0415453 0.22 0.02 pose: 0.0 2.2389 -3.9541 0 -0.0042276 -0.00408642 0.999971 0.0049174 uwb: 0.50059302 1231.53 762.329 +imu_odom_: 1691062489.961771927 0.320823 -0.3304 9.56244 -0.056459 -0.0106526 0.0458064 0.25 0 pose: 0.50930715 2.22689 -3.94663 0 0.000406314 -0.00257089 0.999984 0.00501386 uwb: 0.0 1231.53 762.329 +imu_odom_: 1691062489.986643365 0.124498 -0.0861913 9.73961 -0.0266316 0.0340885 0.0372843 0.25 0 pose: 0.0 2.22689 -3.94663 0 0.000406314 -0.00257089 0.999984 0.00501386 uwb: 0.49944106 1231.62 763.475 +imu_odom_: 1691062490.12769722 0.452504 -0.234632 9.50259 -0.0692422 0.00639159 0.0383495 0.2 0 pose: 0.53099624 2.21715 -3.94889 0 0.00233163 -0.00301543 0.99998 0.00495559 uwb: 0.0 1231.62 763.475 +imu_odom_: 1691062490.38664525 0.292093 -0.457293 9.57441 -0.0532632 -0.00426106 0.0500674 0.19 0 pose: 0.17890509 2.20741 -3.95115 0 0.000639048 -0.00289819 0.999983 0.00492856 uwb: 0.49970654 1231.25 764.265 +imu_odom_: 1691062490.64779223 0.366313 -0.349553 9.55526 -0.0351537 0.0117179 0.0319579 0.19 0 pose: 0.43080417 2.20053 -3.95276 0 0.0013199 -0.00146534 0.999986 0.00496531 uwb: 0.0 1231.25 764.265 +imu_odom_: 1691062490.89632587 0.612916 -0.423774 10.0293 -0.0596548 -0.0245011 0.0596548 0.2 0 pose: 0.7914173 2.19767 -3.95342 0 0.00089312 -0.00212399 0.999985 0.00492229 uwb: 0.49887836 1232.15 765.814 +imu_odom_: 1691062490.105662745 0.732626 -0.337582 9.78031 -0.0426106 -0.02024 0.0330232 0.2 0 pose: 0.0 2.19767 -3.95342 0 0.00089312 -0.00212399 0.999985 0.00492229 uwb: 0.0 1232.15 765.814 +imu_odom_: 1691062490.130991479 0.337582 -0.23942 9.98622 -0.036219 0.00958738 0.0351537 0.19 0 pose: 0.51017932 2.19767 -3.95342 0 -0.000819027-0.00593035 0.99997 0.00485458 uwb: 0.0 1232.15 765.814 +imu_odom_: 1691062490.156790042 0.23942 -0.19393 9.6223 -0.0340885 -0.00852212 0.036219 0.19 0 pose: 0.0 2.19767 -3.95342 0 -0.000819027-0.00593035 0.99997 0.00485458 uwb: 0.49930415 1232.67 767.329 +imu_odom_: 1691062490.173844139 0.684742 -0.234632 9.89763 -0.0703074 -0.0596548 0.0532632 0.19 0 pose: 0.41023508 2.18793 -3.95569 0 0.00217129 -0.00599576 0.999968 0.00475978 uwb: 0.0 1232.67 767.329 +imu_odom_: 1691062490.197747348 0.751779 -0.174777 10.1179 -0.052198 -0.0809601 0.0372843 0.19 0 pose: 0.0 2.18793 -3.95569 0 0.00217129 -0.00599576 0.999968 0.00475978 uwb: 0.50271923 1233.1 768.525 +imu_odom_: 1691062490.221656098 0.304064 -0.335188 10.5058 -0.0458064 -0.00958738 0.04048 0.18 0 pose: 0.51087051 2.17593 -3.94822 0 -0.00058002 -0.00295509 0.999984 0.00478186 uwb: 0.0 1233.1 768.525 +imu_odom_: 1691062490.246651199 0.0454898 -0.184354 10.3094 -0.04048 -0.00532632 0.036219 0.18 0 pose: 0.0 2.17593 -3.94822 0 -0.00058002 -0.00295509 0.999984 0.00478186 uwb: 0.49769140 1232.56 769.056 +imu_odom_: 1691062490.263659218 0.725443 -0.138864 9.9503 -0.0500674 -0.00532632 0.0607201 0.21 0 pose: 0.41205490 2.16619 -3.95049 0 0.00325822 -0.00245714 0.99998 0.00474097 uwb: 0.0 1232.56 769.056 +imu_odom_: 1691062490.288815594 0.469264 -0.141258 10.0652 -0.0596548 0.0213053 0.0287621 0.21 0 pose: 0.0 2.16619 -3.95049 0 0.00325822 -0.00245714 0.99998 0.00474097 uwb: 0.49940331 1233.5 770.942 +imu_odom_: 1691062490.315686216 0.651223 -0.509965 9.77553 -0.0617853 -0.00319579 0.0596548 0.22 0 pose: 0.48664999 2.15645 -3.95276 0 1.21756e-05 -0.00199279 0.999987 0.00468958 uwb: 0.0 1233.5 770.942 +imu_odom_: 1691062490.332646698 0.227449 -0.237026 9.89763 -0.0340885 0.0234358 0.0276969 0.22 0 pose: 0.0 2.15645 -3.95276 0 1.21756e-05 -0.00199279 0.999987 0.00468958 uwb: 0.50111814 1233.41 771.426 +imu_odom_: 1691062490.349627012 0.505177 -0.0742203 10.0676 -0.0596548 -0.0458064 0.0607201 0.27 -0.02 pose: 0.41957041 2.14671 -3.95503 0 0.00205517 2.83891e-05 0.999987 0.00465694 uwb: 0.0 1233.41 771.426 +imu_odom_: 1691062490.374734976 0.751779 -0.270545 10.1706 -0.0660464 -0.0692422 0.0372843 0.27 -0.02 pose: 0.0 2.14671 -3.95503 0 0.00205517 2.83891e-05 0.999987 0.00465694 uwb: 0.0 1233.41 771.426 +imu_odom_: 1691062490.401609098 1.09415 -0.277727 9.83538 -0.0756338 -0.02024 0.0394148 0.23 0 pose: 0.44225399 2.1347 -3.94756 0 0.00171367 -0.0007802410.999988 0.00447516 uwb: 0.50018782 1233.5 772.531 +imu_odom_: 1691062490.426595449 0.897826 -0.392649 9.97664 -0.0575243 0.00426106 0.0298274 0.19 0 pose: 0.41748519 2.1347 -3.94756 0 0.00634446 -0.0006712660.99997 0.00440215 uwb: 0.0 1233.5 772.531 +imu_odom_: 1691062490.443596469 0.146046 -0.483629 10.1754 -0.0692422 0.00532632 0.0458064 0.22 0 pose: 0.0 2.1347 -3.94756 0 0.00634446 -0.0006712660.99997 0.00440215 uwb: 0.49997491 1232.99 773.424 +imu_odom_: 1691062490.468595361 0.572214 -0.275333 9.98382 -0.0628506 0.00639159 0.0340885 0.22 0 pose: 0.0 2.1347 -3.94756 0 0.00634446 -0.0006712660.99997 0.00440215 uwb: 0.0 1232.99 773.424 +imu_odom_: 1691062490.495588471 0.675165 -0.418985 9.63906 -0.0426106 -0.0255663 0.0372843 0.23 -0.02 pose: 0.52016792 2.12496 -3.94983 0 0.0099666 -0.00253705 0.999937 0.00449407 uwb: 0.50100441 1233.25 773.962 +imu_odom_: 1691062490.520596112 0.390255 -0.110133 9.56723 -0.0234358 -0.00639159 0.0255663 0.19 0 pose: 0.42041032 2.11522 -3.95211 0 0.00701777 -0.00399749 0.999957 0.00452228 uwb: 0.0 1233.25 773.962 +imu_odom_: 1691062490.537647293 0.268151 -0.232238 9.5792 -0.0639159 -0.00106526 0.0500674 0.23 -0.02 pose: 0.27974471 2.10548 -3.95438 0 0.00817284 -0.00448683 0.999946 0.00459786 uwb: 0.49950829 1233.62 775.187 +imu_odom_: 1691062490.562602440 0.428562 -0.244209 9.03093 -0.036219 0.00213053 0.0213053 0.23 -0.02 pose: 0.16949983 2.10548 -3.95438 0 0.00636618 -0.00286391 0.999965 0.00468138 uwb: 0.0 1233.62 775.187 +imu_odom_: 1691062490.589612173 0.691924 -0.411803 10.3477 -0.0607201 -0.0383495 0.0511327 0.23 0 pose: 0.0 2.10548 -3.95438 0 0.00636618 -0.00286391 0.999965 0.00468138 uwb: 0.49798887 1233.13 775.66 +imu_odom_: 1691062490.614592400 0.73502 0.0574608 10.2352 -0.052198 -0.0553937 0.0394148 0.18 0.02 pose: 0.42050073 2.09347 -3.94691 0 0.00358075 -0.00228275 0.999979 0.00481011 uwb: 0.0 1233.13 775.66 +imu_odom_: 1691062490.631591087 0.476446 -0.347159 9.38288 -0.0905475 0.015979 0.0596548 0.23 0 pose: 0.0 2.09347 -3.94691 0 0.00358075 -0.00228275 0.999979 0.00481011 uwb: 0.49979994 1232.39 775.98 +imu_odom_: 1691062490.656804332 0.339977 -0.45011 9.50259 -0.0596548 -0.00106526 0.0213053 0.23 0 pose: 0.51905386 2.08374 -3.94918 0 0.00710217 -0.00206937 0.999962 0.00463581 uwb: 0.0 1232.39 775.98 +imu_odom_: 1691062490.683700327 0.351948 -0.296881 9.7444 -0.0596548 -0.0149137 0.0394148 0.2 0 pose: 0.0 2.08374 -3.94918 0 0.00710217 -0.00206937 0.999962 0.00463581 uwb: 0.50070401 1232.42 776.729 +imu_odom_: 1691062490.708602979 0.792481 -0.225055 10.2232 -0.0500674 -0.0223706 0.0415453 0.19 0 pose: 0.62072167 2.074 -3.95146 0 0.00206699 -0.00471313 0.999976 0.00473392 uwb: 0.0 1232.42 776.729 +imu_odom_: 1691062490.725645702 0.37589 -0.203507 9.83538 -0.0575243 0.0276969 0.0479369 0.19 0 pose: 0.0 2.074 -3.95146 0 0.00206699 -0.00471313 0.999976 0.00473392 uwb: 0.0 1232.42 776.729 +imu_odom_: 1691062490.750737627 0.35913 -0.169988 10.319 -0.04048 0.0532632 0.0553937 0.18 0.02 pose: 0.8055617 2.074 -3.95146 0 0.00292473 -0.00450474 0.999974 0.0047297 uwb: 0.50109481 1232.28 777.258 +imu_odom_: 1691062490.777591917 0.208296 -0.131681 10.1275 -0.0223706 -0.0383495 0.0372843 0.18 0.02 pose: 0.0 2.074 -3.95146 0 0.00292473 -0.00450474 0.999974 0.0047297 uwb: 0.0 1232.28 777.258 +imu_odom_: 1691062490.802706298 0.723049 -0.3304 9.91199 -0.0649811 -0.00639159 0.0575243 0.18 0.02 pose: 0.41843885 2.06426 -3.95373 0 0.00229805 -0.00243121 0.999984 0.00458789 uwb: 0.49884045 1232.9 778.598 +imu_odom_: 1691062490.829561172 0.222661 -0.0335188 9.98143 -0.0351537 0.0255663 0.0426106 0.18 0.02 pose: 0.0 2.06426 -3.95373 0 0.00229805 -0.00243121 0.999984 0.00458789 uwb: 0.0 1232.9 778.598 +imu_odom_: 1691062490.845555167 0.0526724 -0.349553 9.27753 -0.0692422 0.00426106 0.0639159 0.19 0 pose: 0.52005417 2.05225 -3.94626 0 -0.0005790230.00026087 0.99999 0.00440977 uwb: 0.50017323 1233.27 780.181 +imu_odom_: 1691062490.872558484 0.737414 -0.251391 9.43076 -0.0639159 0.0106526 0.0308927 0.19 0 pose: 0.0 2.05225 -3.94626 0 -0.0005790230.00026087 0.99999 0.00440977 uwb: 0.0 1233.27 780.181 +imu_odom_: 1691062490.897686571 0.136469 -0.430956 9.43794 -0.0777643 0.00319579 0.0671117 0.25 0 pose: 0.51975963 2.04251 -3.94854 0 -0.00205728 0.00129085 0.999989 0.0041204 uwb: 0.50040363 1232.23 780.009 +imu_odom_: 1691062490.924588399 0.172383 -0.162806 10.0844 -0.0596548 -0.0106526 0.0308927 0.23 0 pose: 0.14994552 2.04251 -3.94854 0 -0.00216046 0.000749249 0.999989 0.00405497 uwb: 0.0 1232.23 780.009 +imu_odom_: 1691062490.940694966 0.526724 -0.344765 9.80665 -0.0830906 -0.00426106 0.0543285 0.23 0 pose: 0.45110810 2.03277 -3.95082 0 -0.00234026 -0.00152533 0.999989 0.00379569 uwb: 0.50011491 1231.23 779.808 +imu_odom_: 1691062490.967584837 0.304064 -0.31364 10.4052 -0.0330232 0.00426106 0.036219 0.25 0 pose: 0.7208701 2.03277 -3.95082 0 -0.00297417 -0.00124407 0.999987 0.00382523 uwb: 0.0 1231.23 779.808 +imu_odom_: 1691062490.992537941 0.73502 -0.100556 9.88087 -0.0671117 -0.00532632 0.0479369 0.25 0 pose: 0.0 2.03277 -3.95082 0 -0.00297417 -0.00124407 0.999987 0.00382523 uwb: 0.49980868 1231.65 781.32 +imu_odom_: 1691062491.9589416 0.184354 -0.217872 9.57202 -0.0330232 0.00106526 0.0447411 0.23 0.02 pose: 0.43711241 2.02304 -3.95311 0 -0.00367148 -0.00212295 0.999984 0.00380604 uwb: 0.0 1231.65 781.32 +imu_odom_: 1691062491.34557403 0.0646434 -0.107739 9.991 -0.0511327 -0.0223706 0.0553937 0.23 0.02 pose: 0.0 2.02304 -3.95311 0 -0.00367148 -0.00212295 0.999984 0.00380604 uwb: 0.50039498 1232.52 783.173 +imu_odom_: 1691062491.51549387 1.11091 -0.416591 9.84735 -0.036219 -0.0308927 0.04048 0.23 0.02 pose: 0.0 2.02304 -3.95311 0 -0.00367148 -0.00212295 0.999984 0.00380604 uwb: 0.0 1232.52 783.173 +imu_odom_: 1691062491.76543913 0.399832 -0.440533 9.75877 -0.0553937 -0.00852212 0.0479369 0.23 0 pose: 0.51021432 2.01102 -3.94566 0 -0.00294904 -0.00250972 0.999986 0.00372169 uwb: 0.0 1232.52 783.173 +imu_odom_: 1691062491.103539949 0.617704 -0.102951 10.3932 -0.0553937 -0.0213053 0.0511327 0.21 0 pose: 0.76915968 2.00128 -3.94795 0 -0.00309812 -0.00340283 0.999984 0.00338835 uwb: 0.49822817 1232.45 784.375 +imu_odom_: 1691062491.119582652 0.821211 -0.397437 9.38766 -0.0649811 -0.0127832 0.0511327 0.21 0 pose: 0.0 2.00128 -3.94795 0 -0.00309812 -0.00340283 0.999984 0.00338835 uwb: 0.0 1232.45 784.375 +imu_odom_: 1691062491.145536083 0.241814 -0.354342 10.003 -0.036219 0.0255663 0.0479369 0.23 0.02 pose: 0.7010389 2.00128 -3.94795 0 -0.00244987 -0.00302089 0.999987 0.00334848 uwb: 0.50059336 1231.96 784.823 +imu_odom_: 1691062491.167529364 0.213084 -0.553061 9.29429 -0.0532632 0.00319579 0.052198 0.23 0.02 pose: 0.0 2.00128 -3.94795 0 -0.00244987 -0.00302089 0.999987 0.00334848 uwb: 0.0 1231.96 784.823 +imu_odom_: 1691062491.192527681 -0.0766145 -0.215478 9.57681 -0.0266316 -0.00532632 0.0308927 0.2 0 pose: 0.43039031 1.99155 -3.95025 0 0.000248927 -0.00277593 0.999991 0.00311422 uwb: 0.0 1231.96 784.823 +imu_odom_: 1691062491.209597824 0.699107 -0.543484 9.8689 -0.0628506 -0.036219 0.0500674 0.2 0 pose: 0.0 1.99155 -3.95025 0 0.000248927 -0.00277593 0.999991 0.00311422 uwb: 0.0 1231.96 784.823 +imu_odom_: 1691062491.234575726 0.739808 -0.112527 9.57441 -0.036219 0.0149137 0.052198 0.19 0 pose: 0.48008539 1.98182 -3.95255 0 -0.00360381 -0.00504668 0.999977 0.00291839 uwb: 0.99974020 1232.35 786.348 +imu_odom_: 1691062491.251647036 0.512359 -0.347159 9.67018 -0.0660464 -0.0287621 0.056459 0.19 0 pose: 0.0 1.98182 -3.95255 0 -0.00360381 -0.00504668 0.999977 0.00291839 uwb: 0.0 1232.35 786.348 +imu_odom_: 1691062491.276529281 0.0814029 -0.526724 9.4978 -0.052198 0.0479369 0.0319579 0.18 0 pose: 0.42929375 1.96978 -3.94513 0 -0.00297574 -0.00489937 0.999979 0.00285971 uwb: 0.0 1232.35 786.348 +imu_odom_: 1691062491.303532025 0.457293 -0.277727 9.88566 -0.0415453 -0.0458064 0.0500674 0.18 0 pose: 0.0 1.96978 -3.94513 0 -0.00297574 -0.00489937 0.999979 0.00285971 uwb: 0.50000425 1233.01 787.98 +imu_odom_: 1691062491.328540549 0.31364 -0.160412 10.2879 -0.0340885 0 0.0511327 0.2 0 pose: 0.42016549 1.96005 -3.94743 0 -0.000681759-0.00514344 0.999983 0.00264924 uwb: 0.0 1233.01 787.98 +imu_odom_: 1691062491.355544459 0.397437 -0.0407014 9.92875 -0.0532632 0.00745685 0.0383495 0.2 0 pose: 0.0 1.96005 -3.94743 0 -0.000681759-0.00514344 0.999983 0.00264924 uwb: 0.49940347 1232.54 789.146 +imu_odom_: 1691062491.380534902 0.0502782 -0.320823 9.67257 -0.0671117 0.00852212 0.0585895 0.19 0 pose: 0.0 1.95032 -3.94974 0 -5.28371e-05-0.00384319 0.999989 0.0025271 uwb: 0.0 1232.54 789.146 +imu_odom_: 1691062491.397522512 0.699107 -0.380678 10.1011 -0.056459 -0.0266316 0.0426106 0.19 0 pose: 0.0 1.95032 -3.94974 0 -5.28371e-05-0.00384319 0.999989 0.0025271 uwb: 0.50121747 1232.81 790.746 +imu_odom_: 1691062491.422516746 0.588974 -0.0885855 10.2544 -0.0681769 -0.0266316 0.0649811 0.18 -0.02 pose: 0.51901904 1.95032 -3.94974 0 -0.00180763 0.000163868 0.999996 0.0023649 uwb: 0.0 1232.81 790.746 +imu_odom_: 1691062491.449745508 1.00078 -0.0933739 10.2232 -0.0681769 0.00745685 0.0319579 0.23 -0.02 pose: 0.41933432 1.9406 -3.95206 0 -0.00101462 -0.00076817 0.999997 0.00208041 uwb: 0.50005091 1233.61 792.594 +imu_odom_: 1691062491.475526581 0.517148 -0.385466 9.6223 -0.0798948 0.0394148 0.0490022 0.2 0 pose: 0.24065367 1.92855 -3.94466 0 0.00123843 0.00016654 0.999997 0.00189125 uwb: 0.0 1233.61 792.594 +imu_odom_: 1691062491.502514743 0.0933739 -0.215478 9.92157 -0.04048 0.00532632 0.0394148 0.26 -0.02 pose: 0.28022893 1.92855 -3.94466 0 0.00315595 -0.0004107580.999993 0.00192891 uwb: 0.49878812 1233.3 793.236 +imu_odom_: 1691062491.518563279 0.840365 -0.385466 9.68215 -0.076699 -0.0223706 0.0447411 0.26 -0.02 pose: 0.0 1.92855 -3.94466 0 0.00315595 -0.0004107580.999993 0.00192891 uwb: 0.0 1233.3 793.236 +imu_odom_: 1691062491.545664596 0.675165 -0.268151 9.22965 -0.0436758 0.00106526 0.0340885 0.23 0.02 pose: 0.24955446 1.91882 -3.94698 0 0.0025543 -0.00220488 0.999993 0.00183864 uwb: 0.50045921 1233.11 794.487 +imu_odom_: 1691062491.570719782 0.253785 -0.215478 10.3837 -0.052198 0.0330232 0.036219 0.23 0.02 pose: 0.0 1.91882 -3.94698 0 0.0025543 -0.00220488 0.999993 0.00183864 uwb: 0.0 1233.11 794.487 +imu_odom_: 1691062491.597650491 0.402226 -0.0167594 9.72285 -0.0511327 -0.0330232 0.0415453 0.2 0 pose: 0.43949524 1.91882 -3.94698 0 0.00292769 -0.00245932 0.999991 0.00182084 uwb: 0.49915266 1232.94 795.36 +imu_odom_: 1691062491.622513196 0.45011 -0.296881 9.9503 -0.0468716 -0.0181095 0.0234358 0.2 0 pose: 0.0 1.91882 -3.94698 0 0.00292769 -0.00245932 0.999991 0.00182084 uwb: 0.0 1232.94 795.36 +imu_odom_: 1691062491.649571643 0.320823 -0.244209 10.1849 -0.0639159 -0.04048 0.0511327 0.22 0 pose: 0.51151228 1.9091 -3.94931 0 0.0018588 -0.00119036 0.999996 0.00191134 uwb: 0.50007425 1233.24 796.531 +imu_odom_: 1691062491.666493926 0.215478 -0.368707 9.81383 -0.0660464 -0.00213053 0.0436758 0.22 0 pose: 0.0 1.9091 -3.94931 0 0.0018588 -0.00119036 0.999996 0.00191134 uwb: 0.0 1233.24 796.531 +imu_odom_: 1691062491.691502450 0.320823 -0.304064 10.0748 -0.0745685 0.0181095 0.0511327 0.27 0 pose: 0.51862824 1.89705 -3.9419 0 0.00170393 -0.00156229 0.999995 0.00204833 uwb: 0.49996050 1233.29 797.918 +imu_odom_: 1691062491.705601387 0.304064 -0.397437 9.67736 -0.072438 -0.0276969 0.0458064 0.27 0 pose: 0.0 1.89705 -3.9419 0 0.00170393 -0.00156229 0.999995 0.00204833 uwb: 0.0 1233.29 797.918 +imu_odom_: 1691062491.730544585 0.265756 -0.323217 9.67497 -0.0426106 -0.00213053 0.0308927 0.17 0 pose: 0.43961773 1.88732 -3.94423 0 -0.00203799 -0.0030902 0.999991 0.00185088 uwb: 0.0 1233.29 797.918 +imu_odom_: 1691062491.757544412 0.222661 -0.35913 9.81144 -0.036219 -0.04048 0.0394148 0.17 0 pose: 0.39054383 1.87759 -3.94655 0 -0.00464924 -0.00568465 0.999972 0.00172938 uwb: 0.50121747 1233.5 798.807 +imu_odom_: 1691062491.782730252 0.629675 -0.138864 10.3765 -0.0500674 0.0149137 0.0447411 0.19 0 pose: 0.0 1.87759 -3.94655 0 -0.00464924 -0.00568465 0.999972 0.00172938 uwb: 0.49995759 1232.9 799.33 +imu_odom_: 1691062491.809609632 0.0407014 -0.306458 9.18895 -0.0415453 0.0649811 0.0426106 0.23 0 pose: 0.52962007 1.86787 -3.94888 0 -0.00759762 -0.00637041 0.999949 0.00177781 uwb: 0.0 1232.9 799.33 +imu_odom_: 1691062491.834481670 0.459687 -0.339977 9.50259 -0.0596548 0.00532632 0.0575243 0.23 0 pose: 0.0 1.86787 -3.94888 0 -0.00759762 -0.00637041 0.999949 0.00177781 uwb: 0.49861605 1232.18 799.945 +imu_odom_: 1691062491.851714256 0.68953 -0.0957681 10.2711 -0.0340885 -0.056459 0.0383495 0.21 -0.02 pose: 0.68967089 1.85814 -3.9512 0 -0.00751578 -0.00555289 0.999955 0.00148122 uwb: 0.0 1232.18 799.945 +imu_odom_: 1691062491.877704724 0.766145 -0.347159 10.2807 -0.0692422 -0.0117179 0.0585895 0.21 -0.02 pose: 0.6999891 1.85814 -3.9512 0 -0.00671352 -0.00515266 0.999963 0.00148608 uwb: 0.0 1232.18 799.945 +imu_odom_: 1691062491.904632809 0.332794 0.0287304 9.85693 -0.04048 0.02024 0.0500674 0.23 -0.02 pose: 0.36223163 1.84609 -3.94381 0 -0.00285375 -0.00496596 0.999983 0.00125777 uwb: 0.50236652 1231.88 800.206 +imu_odom_: 1691062491.920455326 0.0981623 -0.354342 9.27274 -0.0745685 0.00852212 0.0617853 0.23 -0.02 pose: 0.0 1.84609 -3.94381 0 -0.00285375 -0.00496596 0.999983 0.00125777 uwb: 0.0 1231.88 800.206 +imu_odom_: 1691062491.947484316 0.629675 -0.299275 9.43076 -0.0575243 0.0308927 0.036219 0.25 0.02 pose: 0.42750602 1.83636 -3.94615 0 -0.00486376 -0.0028281 0.999984 0.000933548 uwb: 0.49764198 1231.79 801.335 +imu_odom_: 1691062491.973526113 0.246603 -0.287304 9.71567 -0.0788296 -0.02024 0.0607201 0.25 0.02 pose: 0.0 1.83636 -3.94615 0 -0.00486376 -0.0028281 0.999984 0.000933548 uwb: 0.0 1231.79 801.335 +imu_odom_: 1691062492.576102 0.306458 -0.169988 9.66539 -0.0703074 -0.0255663 0.0372843 0.25 0 pose: 0.53070787 1.82937 -3.94783 0 -0.00502782 -0.00373966 0.99998 0.000705121 uwb: 0.50064294 1232.1 802.819 +imu_odom_: 1691062492.25462437 0.253785 -0.40462 9.3733 -0.0671117 0 0.0394148 0.19 0 pose: 0.0 1.82937 -3.94783 0 -0.00502782 -0.00373966 0.99998 0.000705121 uwb: 0.0 1232.1 802.819 +imu_odom_: 1691062492.52454691 0.500388 -0.454898 9.79468 -0.0681769 -0.0255663 0.0415453 0.19 0 pose: 0.35072072 1.82664 -3.94849 0 -0.00504791 -0.00203666 0.999985 0.000724134 uwb: 0.50184166 1231.97 803.62 +imu_odom_: 1691062492.69524548 0.56982 -0.328006 9.93833 -0.0692422 -0.0245011 0.0511327 0.19 0 pose: 0.43856506 1.81692 -3.95084 0 -0.00328363 -0.00559756 0.999979 0.000720804 uwb: 0.0 1231.97 803.62 +imu_odom_: 1691062492.96514760 0.502782 -0.263362 10.0772 -0.0585895 0.00745685 0.0479369 0.19 0 pose: 0.0 1.81692 -3.95084 0 -0.00328363 -0.00559756 0.999979 0.000720804 uwb: 0.49604689 1231.6 803.586 +imu_odom_: 1691062492.113488377 0.656011 -0.205901 9.92636 -0.0543285 -0.0447411 0.0436758 0.18 0 pose: 0.8006626 1.81692 -3.95084 0 -0.00240183 -0.00566532 0.999981 0.000678448 uwb: 0.0 1231.6 803.586 +imu_odom_: 1691062492.140646573 0.995988 -0.356736 10.1921 -0.0479369 -0.0490022 0.0468716 0.18 0 pose: 0.0 1.81692 -3.95084 0 -0.00240183 -0.00566532 0.999981 0.000678448 uwb: 0.50046812 1231.24 803.551 +imu_odom_: 1691062492.156535005 0.533907 -0.0287304 9.77313 -0.056459 0.00852212 0.0447411 0.18 0 pose: 0.44088650 1.80485 -3.94347 0 0.00174752 -0.00423802 0.999989 0.000517099 uwb: 0.0 1231.24 803.551 +imu_odom_: 1691062492.173467209 0.474052 -0.442927 9.86172 -0.0351537 0.0255663 0.0351537 0.18 0 pose: 0.0 1.80485 -3.94347 0 0.00174752 -0.00423802 0.999989 0.000517099 uwb: 0.0 1231.24 803.551 +imu_odom_: 1691062492.189444300 0.100556 -0.304064 9.83299 -0.0458064 0 0.0479369 0.18 0 pose: 0.0 1.80485 -3.94347 0 0.00174752 -0.00423802 0.999989 0.000517099 uwb: 0.50065769 1231.42 804.785 +imu_odom_: 1691062492.206497242 0.332794 -0.304064 9.91918 -0.0585895 -0.0255663 0.04048 0.25 0 pose: 0.43983077 1.79513 -3.94582 0 0.00605039 -0.00332838 0.999976 0.000394808 uwb: 0.0 1231.42 804.785 +imu_odom_: 1691062492.222487164 0.517148 -0.363919 10.0652 -0.0447411 0.0170442 0.0415453 0.25 0 pose: 0.0 1.79513 -3.94582 0 0.00605039 -0.00332838 0.999976 0.000394808 uwb: 0.0 1231.42 804.785 +imu_odom_: 1691062492.239431326 0.653617 -0.299275 9.51695 -0.0681769 0.0138484 0.0532632 0.18 0 pose: 0.0 1.79513 -3.94582 0 0.00605039 -0.00332838 0.999976 0.000394808 uwb: 0.50094932 1231.94 806.404 +imu_odom_: 1691062492.256488060 0.656011 -0.25618 10.07 -0.04048 0.0127832 0.0255663 0.18 -0.02 pose: 0.90898282 1.78033 -3.94941 0 0.00472887 -0.00515593 0.999976 0.000197717 uwb: 0.0 1231.94 806.404 +imu_odom_: 1691062492.273483258 0.505177 -0.241814 9.94073 -0.0308927 -0.015979 0.036219 0.26 0.02 pose: 0.0 1.78033 -3.94941 0 0.00472887 -0.00515593 0.999976 0.000197717 uwb: 0.0 1231.94 806.404 +imu_odom_: 1691062492.289426226 0.363919 -0.407014 10.1323 -0.04048 0.0117179 0.0490022 0.26 0.02 pose: 0.24063042 1.7757 -3.95053 0 0.0060034 -0.00366324 0.999975 0.000342725 uwb: 0.49873579 1231.85 807.171 +imu_odom_: 1691062492.306485002 0.237026 -0.146046 9.62469 -0.0330232 -0.0127832 0.036219 0.24 0 pose: 0.0 1.7757 -3.95053 0 0.0060034 -0.00366324 0.999975 0.000342725 uwb: 0.0 1231.85 807.171 +imu_odom_: 1691062492.323452202 0.749385 -0.356736 10.1466 -0.0703074 -0.02024 0.0553937 0.24 0 pose: 0.0 1.7757 -3.95053 0 0.0060034 -0.00366324 0.999975 0.000342725 uwb: 0.0 1231.85 807.171 +imu_odom_: 1691062492.338448223 0.471658 -0.047884 9.83777 -0.0575243 0.0255663 0.0330232 0.24 0 pose: 0.32995036 1.76362 -3.94317 0 0.00385469 -0.00312941 0.999988 0.000289031 uwb: 0.50212463 1231.86 807.847 +imu_odom_: 1691062492.363491752 0.538695 -0.0263362 10.0293 -0.0479369 -0.00639159 0.0426106 0.17 0 pose: 0.41958819 1.76362 -3.94317 0 0.00439001 -0.00170814 0.999989 0.000229198 uwb: 0.0 1231.86 807.847 +imu_odom_: 1691062492.390556040 0.804452 -0.351948 9.63666 -0.052198 0.0213053 0.0340885 0.17 0 pose: 0.6999309 1.76362 -3.94317 0 0.00454722 -0.0009976820.999989 0.000221727 uwb: 0.49797170 1230.49 807.276 +imu_odom_: 1691062492.415545324 0.938527 -0.232238 9.69173 -0.0553937 -0.0117179 0.0649811 0.2 0 pose: 0.45108508 1.7539 -3.94553 0 0.00703079 -0.0003331630.999975 0.000268265 uwb: 0.0 1230.49 807.276 +imu_odom_: 1691062492.432523316 0.328006 -0.514753 9.65582 -0.0628506 0.00852212 0.0468716 0.2 0 pose: 0.0 1.7539 -3.94553 0 0.00703079 -0.0003331630.999975 0.000268265 uwb: 0.50189131 1229.67 807.282 +imu_odom_: 1691062492.458457507 0.390255 0.00718261 9.94312 -0.0479369 0.00639159 0.0511327 0.23 0 pose: 0.32015133 1.74419 -3.94789 0 0.00911202 -0.0009593 0.999958 -7.93831e-05 uwb: 0.0 1229.67 807.282 +imu_odom_: 1691062492.485410973 0.311246 -0.23942 9.99819 -0.0351537 0.0138484 0.0351537 0.25 -0.02 pose: 0.0 1.74419 -3.94789 0 0.00911202 -0.0009593 0.999958 -7.93831e-05 uwb: 0.49780255 1229.91 807.759 +imu_odom_: 1691062492.510610528 0.0933739 -0.102951 9.71806 -0.0692422 0.0127832 0.0649811 0.25 -0.02 pose: 0.42970218 1.73447 -3.95025 0 0.00600636 0.000448889 0.999982 -0.00024301 uwb: 0.0 1229.91 807.759 +imu_odom_: 1691062492.537403009 0.148441 -0.296881 9.67497 -0.0607201 0.0319579 0.0330232 0.23 -0.02 pose: 0.45069137 1.72589 -3.94503 0 0.00121472 0.000838715 0.999999 -0.000517586 uwb: 0.50012982 1230.31 809.126 +imu_odom_: 1691062492.563420026 0.0407014 -0.423774 10.2568 -0.0671117 0.00426106 0.0500674 0.23 -0.02 pose: 0.6955855 1.72239 -3.9429 0 0.000433138 0.000587835 1 -0.000494595 uwb: 0.0 1230.31 809.126 +imu_odom_: 1691062492.580400934 1.075 -0.332794 9.60793 -0.0553937 0.0149137 0.0287621 0.23 0 pose: 0.0 1.72239 -3.9429 0 0.000433138 0.000587835 1 -0.000494595 uwb: 0.0 1230.31 809.126 +imu_odom_: 1691062492.606384703 0.174777 -0.1652 9.89045 -0.0735032 0.02024 0.0532632 0.23 0 pose: 0.45853643 1.7154 -3.94461 0 -0.00410431 -0.00167416 0.99999 -0.000563477 uwb: 0.50122055 1230.19 809.567 +imu_odom_: 1691062492.623378443 0.339977 -0.102951 10.4842 -0.0511327 -0.00426106 0.0308927 0.25 -0.02 pose: 0.0 1.7154 -3.94461 0 -0.00410431 -0.00167416 0.99999 -0.000563477 uwb: 0.0 1230.19 809.567 +imu_odom_: 1691062492.649382627 0.325611 -0.442927 9.46907 -0.0745685 -0.0436758 0.0436758 0.25 -0.02 pose: 0.25000366 1.71267 -3.94527 0 -0.00340033 -0.00159246 0.999993 -0.000524849 uwb: 0.49926074 1230.14 810.284 +imu_odom_: 1691062492.676381589 1.91057 -0.0981623 8.73884 -0.0308927 0.0916127 0.02024 0.25 0.02 pose: 0.60962235 1.70296 -3.94765 0 -0.00406146 -0.00217804 0.999989 -0.000628636 uwb: 0.0 1230.14 810.284 +imu_odom_: 1691062492.701534190 0.605733 -0.328006 9.42597 -0.0553937 -0.0308927 0.0468716 0.18 0.02 pose: 0.7067553 1.70296 -3.94765 0 -0.00369592 -0.00202281 0.999991 -0.000557949 uwb: 0.50001317 1230.76 811.119 +imu_odom_: 1691062492.728386749 0.909797 -0.122104 9.23922 -0.0372843 -0.0458064 0.0426106 0.23 -0.02 pose: 0.45084010 1.69324 -3.95002 0 6.07627e-05 -0.00237913 0.999997 -0.000444922 uwb: 0.0 1230.76 811.119 +imu_odom_: 1691062492.753448068 0.557849 -0.251391 9.69652 -0.0671117 0.0191748 0.0426106 0.19 0 pose: 0.0 1.69324 -3.95002 0 6.07627e-05 -0.00237913 0.999997 -0.000444922 uwb: 0.50116805 1230.66 811.88 +imu_odom_: 1691062492.770497511 0.366313 0.0790087 10.4962 -0.0458064 -0.0436758 0.0298274 0.19 0 pose: 0.34879017 1.68116 -3.94267 0 0.00392061 -0.0015624 0.999991 -0.0004917 uwb: 0.0 1230.66 811.88 +imu_odom_: 1691062492.795553580 0.225055 -0.246603 10.0317 -0.0639159 -0.0276969 0.0426106 0.18 0 pose: 0.0 1.68116 -3.94267 0 0.00392061 -0.0015624 0.999991 -0.0004917 uwb: 0.49814085 1231.49 813.544 +imu_odom_: 1691062492.822527752 0.416591 -0.179565 10.094 -0.056459 -0.00639159 0.0340885 0.18 0 pose: 0.42065850 1.68116 -3.94267 0 0.00434983 -0.0003055820.99999 -0.000438264 uwb: 0.0 1231.49 813.544 +imu_odom_: 1691062492.847379675 0.059855 -0.301669 9.30626 -0.036219 -0.0447411 0.0372843 0.19 0 pose: 0.44048695 1.67144 -3.94504 0 0.00102801 0.00139719 0.999998 -0.000386333 uwb: 0.49916450 1231.79 814.633 +imu_odom_: 1691062492.864371082 0.713472 -0.268151 10.2831 -0.0468716 -0.052198 0.04048 0.19 0 pose: 0.7913886 1.67144 -3.94504 0 0.000432495 0.00123754 0.999999 -0.000376287 uwb: 0.0 1231.79 814.633 +imu_odom_: 1691062492.889381073 0.418985 -0.378284 10.0604 -0.0436758 -0.0223706 0.0426106 0.2 0.02 pose: 0.0 1.67144 -3.94504 0 0.000432495 0.00123754 0.999999 -0.000376287 uwb: 0.50009774 1231.92 815.52 +imu_odom_: 1691062492.906368105 0.821211 -0.237026 10.0149 -0.0447411 0.0127832 0.0511327 0.2 0.02 pose: 0.41946861 1.66173 -3.94741 0 0.00126142 -0.0001503930.999999 -0.000376303 uwb: 0.0 1231.92 815.52 +imu_odom_: 1691062492.931382470 0.672771 -0.186748 9.92875 -0.0415453 0.0255663 0.0351537 0.18 0 pose: 0.0 1.66173 -3.94741 0 0.00126142 -0.0001503930.999999 -0.000376303 uwb: 0.49940072 1232.5 817.044 +imu_odom_: 1691062492.958531333 0.332794 -0.172383 10.137 -0.0585895 0.0191748 0.0617853 0.18 0 pose: 0.42076349 1.65201 -3.94978 0 0.00354646 -0.00133246 0.999993 -0.000479211 uwb: 0.0 1232.5 817.044 +imu_odom_: 1691062492.983366633 0.397437 -0.234632 10.0628 -0.0575243 0.00532632 0.0394148 0.2 0 pose: 0.44066485 1.64335 -3.94452 0 0.00203332 6.95369e-05 0.999998 -0.000736374 uwb: 0.50106306 1232.37 817.799 +imu_odom_: 1691062493.10486334 0.691924 -0.356736 9.75637 -0.0841559 -0.0308927 0.0692422 0.21 0 pose: 0.7965798 1.63992 -3.94244 0 0.00127261 -0.0002745630.999999 -0.000736332 uwb: 0.0 1232.37 817.799 +imu_odom_: 1691062493.35482043 0.500388 -0.270545 9.64863 -0.0596548 0.0340885 0.0319579 0.2 0 pose: 0.43989203 1.63298 -3.94414 0 0.00253152 -0.0024339 0.999993 -0.00113607 uwb: 0.49949123 1232.59 818.611 +imu_odom_: 1691062493.60470169 0.718261 -0.213084 9.64145 -0.0894822 -0.0213053 0.0649811 0.21 0 pose: 0.0 1.63298 -3.94414 0 0.00253152 -0.0024339 0.999993 -0.00113607 uwb: 0.0 1232.59 818.611 +imu_odom_: 1691062493.83354419 0.311246 -0.153229 9.93594 -0.0671117 0.0127832 0.0308927 0.21 0 pose: 0.32001437 1.63021 -3.94482 0 0.00524685 -0.00290674 0.999981 -0.00112053 uwb: 0.50103115 1232.86 820.35 +imu_odom_: 1691062493.99360970 0.411803 -0.258574 10.003 -0.0862864 0.00958738 0.0479369 0.21 0 pose: 0.0 1.63021 -3.94482 0 0.00524685 -0.00290674 0.999981 -0.00112053 uwb: 0.0 1232.86 820.35 +imu_odom_: 1691062493.126422350 0.656011 -0.28491 9.97664 -0.036219 0.052198 0.0266316 0.19 0 pose: 0.47863918 1.6205 -3.9472 0 0.00415254 -0.00204608 0.999988 -0.0012685 uwb: 0.0 1232.86 820.35 +imu_odom_: 1691062493.151356232 0.651223 0.00718261 9.76355 -0.0681769 0.0149137 0.04048 0.18 -0.02 pose: 0.36070661 1.61356 -3.94891 0 0.00510964 -0.00235533 0.999984 -0.00112637 uwb: 0.49873304 1233.06 821.812 +imu_odom_: 1691062493.178381449 0.634463 -0.342371 10.2185 -0.0500674 -0.0117179 0.0458064 0.18 -0.02 pose: 0.8023544 1.61079 -3.94959 0 0.0054239 -0.00170582 0.999983 -0.00112503 uwb: 0.0 1233.06 821.812 +imu_odom_: 1691062493.194326464 0.0383072 -0.181959 9.84735 -0.056459 0.0255663 0.0553937 0.19 0 pose: 0.0 1.61079 -3.94959 0 0.0054239 -0.00170582 0.999983 -0.00112503 uwb: 0.49999875 1232.35 822.038 +imu_odom_: 1691062493.221341766 0.217872 -0.289698 9.80665 -0.052198 -0.0490022 0.036219 0.19 0 pose: 0.51908938 1.59869 -3.94226 0 0.00708696 -0.00216556 0.999972 -0.00128203 uwb: 0.0 1232.35 822.038 +imu_odom_: 1691062493.246351182 0.253785 -0.342371 9.4571 -0.0628506 0.0106526 0.0447411 0.18 0 pose: 0.34986934 1.59187 -3.94394 0 0.00409944 -0.00232317 0.999988 -0.00130919 uwb: 0.50159984 1231.33 821.531 +imu_odom_: 1691062493.263449334 0.605733 -0.0909797 10.2639 -0.0490022 -0.0127832 0.0372843 0.18 0 pose: 0.8006629 1.58898 -3.94465 0 0.00328999 -0.00263406 0.99999 -0.00133249 uwb: 0.0 1231.33 821.531 +imu_odom_: 1691062493.288328095 0.45011 0.0383072 10.1418 -0.0447411 -0.0383495 0.0479369 0.18 -0.02 pose: 0.0 1.58898 -3.94465 0 0.00328999 -0.00263406 0.99999 -0.00133249 uwb: 0.50071034 1231.58 822.626 +imu_odom_: 1691062493.315447220 0.517148 -0.174777 9.86411 -0.0713727 -0.0351537 0.0649811 0.18 -0.02 pose: 0.34100939 1.58898 -3.94465 0 0.00278361 -0.00196504 0.999993 -0.00135689 uwb: 0.0 1231.58 822.626 +imu_odom_: 1691062493.341489326 0.308852 -0.189142 10.5082 -0.0319579 0.0287621 0.0298274 0.19 0 pose: 0.51997886 1.57927 -3.94704 0 0.00596222 0.0016787 0.999979 -0.00179641 uwb: 0.0 1231.58 822.626 +imu_odom_: 1691062493.366480660 0.328006 -0.0861913 10.1227 -0.0692422 -0.0255663 0.0532632 0.23 0 pose: 0.0 1.57927 -3.94704 0 0.00596222 0.0016787 0.999979 -0.00179641 uwb: 0.0 1231.58 822.626 +imu_odom_: 1691062493.389379200 0.311246 -0.292093 9.62708 -0.0639159 -0.0138484 0.052198 0.23 0 pose: 0.32939636 1.56956 -3.94943 0 0.00243126 0.00220924 0.999993 -0.00171299 uwb: 0.99918383 1231.49 823.014 +imu_odom_: 1691062493.414467358 0.462081 -0.385466 9.75637 -0.0745685 -0.0575243 0.04048 0.2 0 pose: 0.40992344 1.56138 -3.94449 0 -0.0002251680.00123827 0.999997 -0.00197174 uwb: 0.0 1231.49 823.014 +imu_odom_: 1691062493.431534013 0.497994 -0.225055 10.1107 -0.0511327 -0.00958738 0.0436758 0.2 0 pose: 0.8107828 1.55746 -3.94212 0 0.000243091 0.000389817 0.999998 -0.00197528 uwb: 0.50061410 1231.96 824.253 +imu_odom_: 1691062493.456463228 0.588974 -0.0861913 10.003 -0.0532632 -0.0138484 0.0436758 0.2 0 pose: 0.0 1.55746 -3.94212 0 0.000243091 0.000389817 0.999998 -0.00197528 uwb: 0.0 1231.96 824.253 +imu_odom_: 1691062493.481467394 0.770933 -0.160412 9.87608 -0.0479369 0.00213053 0.0458064 0.2 0 pose: 0.41868424 1.54775 -3.94452 0 0.00347827 -0.0003399350.999992 -0.00202878 uwb: 0.49754608 1232.67 826.256 +imu_odom_: 1691062493.495344113 0.902614 -0.186748 9.7444 -0.052198 -0.0245011 0.0671117 0.2 0 pose: 0.0 1.54775 -3.94452 0 0.00347827 -0.0003399350.999992 -0.00202878 uwb: 0.0 1232.67 826.256 +imu_odom_: 1691062493.520387942 0.418985 -0.179565 10.1275 -0.056459 0.02024 0.0340885 0.18 0 pose: 0.48118810 1.54775 -3.94452 0 0.00774606 0.00140011 0.999967 -0.00222177 uwb: 0.0 1232.67 826.256 +imu_odom_: 1691062493.544318005 0.275333 -0.380678 9.58878 -0.0660464 -0.00106526 0.0617853 0.25 0.02 pose: 0.32913680 1.53804 -3.94692 0 0.00580472 0.00151042 0.999979 -0.00225823 uwb: 0.49981210 1232.16 826.953 +imu_odom_: 1691062493.568345184 0.397437 -0.248997 9.74201 -0.0351537 0.00852212 0.0245011 0.25 0.02 pose: 0.0 1.53804 -3.94692 0 0.00580472 0.00151042 0.999979 -0.00225823 uwb: 0.0 1232.16 826.953 +imu_odom_: 1691062493.584422603 0.47884 -0.107739 10.3238 -0.0703074 -0.0234358 0.0713727 0.18 -0.02 pose: 0.6988230 1.53804 -3.94692 0 0.00525323 0.00102868 0.999983 -0.00233739 uwb: 0.49954379 1231.74 827.263 +imu_odom_: 1691062493.611295002 0.993594 -0.110133 10.3142 -0.0681769 -0.00426106 0.0351537 0.18 -0.02 pose: 0.0 1.53804 -3.94692 0 0.00525323 0.00102868 0.999983 -0.00233739 uwb: 0.0 1231.74 827.263 +imu_odom_: 1691062493.636315209 0.608127 -0.332794 9.54089 -0.0852212 0.0234358 0.0468716 0.19 0 pose: 0.48946478 1.52834 -3.94933 0 0.00187014 -8.25656e-050.999995 -0.00247824 uwb: 0.49987626 1230.99 827.827 +imu_odom_: 1691062493.663298430 0.105345 -0.241814 9.54808 -0.0340885 0.036219 0.036219 0.19 0 pose: 0.0 1.52834 -3.94933 0 0.00187014 -8.25656e-050.999995 -0.00247824 uwb: 0.0 1230.99 827.827 +imu_odom_: 1691062493.679300023 0.323217 -0.203507 10.2951 -0.0617853 -0.0415453 0.0479369 0.2 0.02 pose: 0.43036726 1.51622 -3.94204 0 0.00528269 0.000163332 0.999983 -0.00257872 uwb: 0.0 1230.99 827.827 +imu_odom_: 1691062493.706347405 0.916979 -0.244209 9.18655 -0.0426106 0.00213053 0.0383495 0.2 0.02 pose: 0.0 1.51622 -3.94204 0 0.00528269 0.000163332 0.999983 -0.00257872 uwb: 0.50062285 1230.93 828.811 +imu_odom_: 1691062493.731341073 0.622492 -0.21069 9.55047 -0.0511327 0.0426106 0.0319579 0.23 -0.02 pose: 0.52150413 1.50652 -3.94445 0 0.00224759 -0.0009467160.999994 -0.00264104 uwb: 0.0 1230.93 828.811 +imu_odom_: 1691062493.758273841 0.371101 -0.0670376 9.72525 -0.0543285 -0.036219 0.0458064 0.21 -0.02 pose: 0.15824278 1.50652 -3.94445 0 0.00241229 -0.0007599280.999993 -0.00266852 uwb: 0.49929299 1230.13 829.401 +imu_odom_: 1691062493.774403463 0.708684 -0.241814 10.24 -0.0649811 -0.0106526 0.052198 0.21 -0.02 pose: 0.44007006 1.49681 -3.94686 0 0.00614954 -0.0003276040.999978 -0.00255702 uwb: 0.0 1230.13 829.401 +imu_odom_: 1691062493.801404183 0.88346 -0.186748 10.0844 -0.0500674 -0.0340885 0.036219 0.25 -0.02 pose: 0.6949441 1.49681 -3.94686 0 0.00577377 0.00017341 0.99998 -0.00257582 uwb: 0.50098740 1230.13 830.951 +imu_odom_: 1691062493.817401401 0.363919 -0.296881 9.26317 -0.056459 0.00745685 0.0553937 0.25 -0.02 pose: 0.0 1.49681 -3.94686 0 0.00577377 0.00017341 0.99998 -0.00257582 uwb: 0.0 1230.13 830.951 +imu_odom_: 1691062493.844560481 0.423774 0.0191536 10.24 -0.0426106 -0.0575243 0.0298274 0.25 -0.02 pose: 0.44173240 1.48711 -3.94927 0 0.00722664 0.00113858 0.99997 -0.00272294 uwb: 0.50034580 1230.3 832.061 +imu_odom_: 1691062493.869439534 0.679953 -0.531513 9.73722 -0.0798948 -0.02024 0.0458064 0.25 -0.02 pose: 0.0 1.48711 -3.94927 0 0.00722664 0.00113858 0.99997 -0.00272294 uwb: 0.0 1230.3 832.061 +imu_odom_: 1691062493.893473129 0.373495 -0.323217 9.5816 -0.0351537 -0.00852212 0.0266316 0.23 0.02 pose: 0.42837829 1.47499 -3.94198 0 0.00767124 0.00122845 0.999966 -0.00278067 uwb: 0.50038079 1231 833.705 +imu_odom_: 1691062493.917345448 0.244209 -0.227449 9.73961 -0.0575243 -0.00319579 0.0383495 0.23 0.02 pose: 0.0 1.47499 -3.94198 0 0.00767124 0.00122845 0.999966 -0.00278067 uwb: 0.0 1231 833.705 +imu_odom_: 1691062493.942414066 0.687136 -0.21069 10.3334 -0.052198 -0.0138484 0.0415453 0.18 0 pose: 0.51198215 1.46528 -3.9444 0 0.00765126 5.02753e-05 0.999967 -0.0027258 uwb: 0.49984126 1230.87 835.02 +imu_odom_: 1691062493.959481013 0.354342 -0.268151 9.74201 -0.0575243 0.0106526 0.0458064 0.18 0 pose: 0.0 1.46528 -3.9444 0 0.00765126 5.02753e-05 0.999967 -0.0027258 uwb: 0.0 1230.87 835.02 +imu_odom_: 1691062493.984408478 0.457293 -0.31364 9.98622 -0.04048 0.0426106 0.0468716 0.18 0.02 pose: 0.48807659 1.45558 -3.94681 0 0.00467253 -0.0006166920.999985 -0.00261807 uwb: 0.49940673 1231.3 836.234 +imu_odom_: 1691062494.9271202 0.222661 -0.454898 9.62469 -0.036219 0.02024 0.0394148 0.18 0.02 pose: 0.0 1.45558 -3.94681 0 0.00467253 -0.0006166920.999985 -0.00261807 uwb: 0.0 1231.3 836.234 +imu_odom_: 1691062494.32327817 0.536301 -0.191536 9.92875 -0.056459 0.00958738 0.0553937 0.18 0 pose: 0.42163562 1.45558 -3.94681 0 0.00415389 -0.00155011 0.999986 -0.00272263 uwb: 0.49971887 1232.12 838.068 +imu_odom_: 1691062494.48369953 0.603339 -0.299275 9.4164 -0.0692422 -0.0138484 0.0532632 0.18 0 pose: 0.0 1.45558 -3.94681 0 0.00415389 -0.00155011 0.999986 -0.00272263 uwb: 0.0 1232.12 838.068 +imu_odom_: 1691062494.74393111 0.557849 -0.232238 10.2855 -0.052198 -0.00319579 0.0585895 0.23 0.02 pose: 0.47822509 1.44588 -3.94923 0 0.00117649 -0.00384855 0.999988 -0.00284587 uwb: 0.0 1232.12 838.068 +imu_odom_: 1691062494.99368413 0.514753 -0.328006 10.1059 -0.0692422 0.00958738 0.0479369 0.23 0.02 pose: 0.0 1.44588 -3.94923 0 0.00117649 -0.00384855 0.999988 -0.00284587 uwb: 0.50398268 1231.67 838.985 +imu_odom_: 1691062494.116268548 0.222661 -0.0407014 10.0461 -0.0660464 0.00319579 0.0479369 0.19 0 pose: 0.40988566 1.43375 -3.94194 0 0.0046347 -0.00272256 0.999981 -0.00315142 uwb: 0.0 1231.67 838.985 +imu_odom_: 1691062494.141387045 0.483629 -0.320823 9.63666 -0.0873517 -0.00532632 0.0500674 0.19 0 pose: 0.0 1.43375 -3.94194 0 0.0046347 -0.00272256 0.999981 -0.00315142 uwb: 0.49553102 1231.33 839.524 +imu_odom_: 1691062494.166317726 0.452504 -0.344765 9.75158 -0.072438 -0.0213053 0.036219 0.18 0.02 pose: 0.50001933 1.42405 -3.94437 0 0.00509479 -0.00394753 0.999973 -0.00346196 uwb: 0.0 1231.33 839.524 +imu_odom_: 1691062494.180272025 0.47884 -0.325611 10.0365 -0.0596548 -0.0330232 0.0479369 0.18 0.02 pose: 0.0 1.42405 -3.94437 0 0.00509479 -0.00394753 0.999973 -0.00346196 uwb: 0.0 1231.33 839.524 +imu_odom_: 1691062494.205324028 0.237026 -0.332794 10.4579 -0.0415453 -0.0319579 0.0340885 0.17 0 pose: 0.73987998 1.41435 -3.9468 0 0.00331011 -0.00626537 0.999968 -0.00367064 uwb: 0.50065801 1231.48 840.909 +imu_odom_: 1691062494.229245642 0.68953 -0.440533 9.92875 -0.072438 -0.0213053 0.0500674 0.17 0 pose: 0.0 1.41435 -3.9468 0 0.00331011 -0.00626537 0.999968 -0.00367064 uwb: 0.0 1231.48 840.909 +imu_odom_: 1691062494.244248672 0.282516 -0.3304 9.48822 -0.0479369 0.0298274 0.0479369 0.18 0 pose: 0.7054142 1.41435 -3.9468 0 0.00270231 -0.00618373 0.999971 -0.00365636 uwb: 0.49868071 1232.51 842.877 +imu_odom_: 1691062494.269275594 0.246603 -0.198719 9.71088 -0.0500674 0.0106526 0.0458064 0.18 0 pose: 0.0 1.41435 -3.9468 0 0.00270231 -0.00618373 0.999971 -0.00365636 uwb: 0.0 1232.51 842.877 +imu_odom_: 1691062494.294272769 -0.047884 -0.112527 9.7444 -0.04048 -0.0149137 0.0436758 0.25 -0.02 pose: 0.48943870 1.40465 -3.94923 0 0.00275533 -0.00699411 0.999965 -0.00376742 uwb: 0.50005141 1232.68 843.94 +imu_odom_: 1691062494.315218507 0.672771 -0.0191536 9.92397 -0.0468716 -0.00852212 0.0468716 0.25 -0.02 pose: 0.0 1.40465 -3.94923 0 0.00275533 -0.00699411 0.999965 -0.00376742 uwb: 0.0 1232.68 843.94 +imu_odom_: 1691062494.336210617 0.347159 -0.0407014 10.1251 -0.0181095 0.0181095 0.0426106 0.17 0 pose: 0.78948470 1.38563 -3.9437 0 -0.000862898-0.00261409 0.999988 -0.00403052 uwb: 0.49974810 1231.84 844.21 +imu_odom_: 1691062494.350206620 0.0526724 -0.356736 9.93115 -0.0468716 0.0266316 0.0468716 0.17 0 pose: 0.0 1.38563 -3.9437 0 -0.000862898-0.00261409 0.999988 -0.00403052 uwb: 0.0 1231.84 844.21 +imu_odom_: 1691062494.366248173 0.280122 -0.215478 10.1538 -0.0660464 -0.00106526 0.0458064 0.17 0.02 pose: 0.6098736 1.38282 -3.94441 0 -0.0010364 -0.00189928 0.999989 -0.00404028 uwb: 0.0 1231.84 844.21 +imu_odom_: 1691062494.388315260 0.481235 0.143652 10.4914 -0.056459 -0.0106526 0.0585895 0.17 0.02 pose: 0.0 1.38282 -3.94441 0 -0.0010364 -0.00189928 0.999989 -0.00404028 uwb: 0.50067551 1232.36 845.916 +imu_odom_: 1691062494.411211183 0.581791 -0.253785 9.72525 -0.0468716 -0.0138484 0.0372843 0.19 0 pose: 0.36086713 1.38282 -3.94441 0 -0.00367933 -0.0005636790.999985 -0.00413773 uwb: 0.0 1232.36 845.916 +imu_odom_: 1691062494.427199949 0.023942 -0.258574 9.4954 -0.0245011 0.00958738 0.0298274 0.19 0 pose: 0.0 1.38282 -3.94441 0 -0.00367933 -0.0005636790.999985 -0.00413773 uwb: 0.0 1232.36 845.916 +imu_odom_: 1691062494.453335679 0.251391 -0.158017 10.1035 -0.052198 -0.056459 0.04048 0.24 0 pose: 0.37035120 1.37312 -3.94685 0 -0.00294071 0.00140457 0.999985 -0.00437813 uwb: 0.49931356 1233.3 848.206 +imu_odom_: 1691062494.474382908 0.213084 -0.222661 9.84975 -0.0490022 -0.0234358 0.0500674 0.24 0 pose: 0.0 1.37312 -3.94685 0 -0.00294071 0.00140457 0.999985 -0.00437813 uwb: 0.0 1233.3 848.206 +imu_odom_: 1691062494.499207725 0.160412 -0.497994 9.35893 -0.0820254 0.00639159 0.04048 0.18 -0.02 pose: 0.39911839 1.36343 -3.9493 0 -0.00340811 0.00126033 0.999984 -0.00428235 uwb: 0.50115672 1232.61 848.364 +imu_odom_: 1691062494.524256520 0.45011 -0.126893 9.93115 -0.0468716 -0.0308927 0.0468716 0.18 -0.02 pose: 0.0 1.36343 -3.9493 0 -0.00340811 0.00126033 0.999984 -0.00428235 uwb: 0.0 1232.61 848.364 +imu_odom_: 1691062494.538210819 0.428562 -0.411803 9.54329 -0.0415453 -0.015979 0.0490022 0.18 -0.02 pose: 0.47911762 1.35129 -3.94205 0 -0.00671897 0.000298616 0.999968 -0.00439135 uwb: 0.49934272 1233.23 850.272 +imu_odom_: 1691062494.562221382 0.107739 -0.172383 9.73722 -0.0255663 0.0330232 0.0436758 0.18 -0.02 pose: 0.0 1.35129 -3.94205 0 -0.00671897 0.000298616 0.999968 -0.00439135 uwb: 0.0 1233.23 850.272 +imu_odom_: 1691062494.579316915 0.299275 -0.399832 9.85453 -0.0756338 0.0340885 0.0628506 0.18 -0.02 pose: 0.0 1.35129 -3.94205 0 -0.00671897 0.000298616 0.999968 -0.00439135 uwb: 0.0 1233.23 850.272 +imu_odom_: 1691062494.604319339 -0.0694318 0.0790087 9.90002 -0.0319579 0.0394148 0.0394148 0.24 0 pose: 0.47934510 1.34159 -3.94449 0 -0.00462409 -0.0005525390.999979 -0.00451255 uwb: 0.49950313 1233.94 852.397 +imu_odom_: 1691062494.630206594 0.533907 -0.265756 9.93354 -0.0703074 -0.0308927 0.0532632 0.23 -0.02 pose: 0.74122152 1.3319 -3.94695 0 -0.0092821 3.63295e-05 0.999945 -0.00479805 uwb: 0.0 1233.94 852.397 +imu_odom_: 1691062494.652195230 0.220267 -0.148441 9.96946 -0.0511327 -0.00426106 0.0436758 0.23 -0.02 pose: 0.0 1.3319 -3.94695 0 -0.0092821 3.63295e-05 0.999945 -0.00479805 uwb: 0.49979185 1234.74 854.17 +imu_odom_: 1691062494.676182463 0.136469 -0.373495 9.47386 -0.0671117 -0.015979 0.056459 0.19 0 pose: 0.7069891 1.3319 -3.94695 0 -0.00848935 -0.0001297490.999952 -0.0048459 uwb: 0.0 1234.74 854.17 +imu_odom_: 1691062494.701172347 0.538695 0.0311246 9.51935 -0.0575243 0.00745685 0.0308927 0.19 0 pose: 0.0 1.3319 -3.94695 0 -0.00848935 -0.0001297490.999952 -0.0048459 uwb: 0.50056177 1234.61 855.387 +imu_odom_: 1691062494.715199847 0.423774 -0.349553 10.3262 -0.0703074 -0.0127832 0.0479369 0.18 0 pose: 0.47808814 1.3222 -3.9494 0 -0.00804634 0.000609574 0.999955 -0.00508426 uwb: 0.0 1234.61 855.387 +imu_odom_: 1691062494.732344958 1.17555 -0.272939 9.96946 -0.0617853 -0.0436758 0.0351537 0.18 0 pose: 0.0 1.3222 -3.9494 0 -0.00804634 0.000609574 0.999955 -0.00508426 uwb: 0.49962853 1235.37 857.175 +imu_odom_: 1691062494.746371000 1.75016 -0.493206 9.97903 -0.0798948 -0.120375 0.0276969 0.18 0 pose: 0.0 1.3222 -3.9494 0 -0.00804634 0.000609574 0.999955 -0.00508426 uwb: 0.0 1235.37 857.175 +imu_odom_: 1691062494.763514361 1.9824 -0.248997 9.19852 -0.0639159 -0.0639159 -0.102265 0.14 -0.26 pose: 0.48039791 1.31005 -3.94217 0 -0.00667031 0.000263503 0.999964 -0.00514377 uwb: 0.0 1235.37 857.175 +imu_odom_: 1691062494.778385279 1.61369 0.440533 9.81862 -0.0532632 0.00213053 -0.20027 0.14 -0.26 pose: 0.0 1.31005 -3.94217 0 -0.00667031 0.000263503 0.999964 -0.00514377 uwb: 0.0 1235.37 857.175 +imu_odom_: 1691062494.794216852 1.075 0.469264 10.477 -0.0596548 0.0298274 -0.253533 0.14 -0.26 pose: 0.0 1.31005 -3.94217 0 -0.00667031 0.000263503 0.999964 -0.00514377 uwb: 0.50069885 1234.78 857.53 +imu_odom_: 1691062494.809357535 1.06063 -0.280122 9.37809 -0.0713727 0.015979 -0.348341 0.12 -0.41 pose: 0.46072110 1.30036 -3.94465 0 -0.000890568-0.0009276290.999989 -0.00455907 uwb: 0.0 1234.78 857.53 +imu_odom_: 1691062494.825302264 0.950498 -0.131681 9.74679 -0.0649811 0.00745685 -0.432497 0.1 -0.35 pose: 0.0 1.30036 -3.94465 0 -0.000890568-0.0009276290.999989 -0.00455907 uwb: 0.0 1234.78 857.53 +imu_odom_: 1691062494.840206720 0.991199 -0.248997 9.50977 -0.0735032 0.0234358 -0.437824 0.1 -0.35 pose: 0.62944831 1.30036 -3.94465 0 0.00447944 0.000665191 0.999978 0.00483577 uwb: 0.49932814 1234.92 858.847 +imu_odom_: 1691062494.856245939 0.790087 -0.311246 9.6199 -0.0703074 0.00852212 -0.420779 0.1 -0.35 pose: 0.0 1.30036 -3.94465 0 0.00447944 0.000665191 0.999978 0.00483577 uwb: 0.0 1234.92 858.847 +imu_odom_: 1691062494.871238762 0.986411 -0.502782 9.663 -0.0500674 -0.0255663 -0.439954 0.1 -0.47 pose: 0.0 1.30036 -3.94465 0 0.00447944 0.000665191 0.999978 0.00483577 uwb: 0.0 1234.92 858.847 +imu_odom_: 1691062494.887228694 0.550666 -0.251391 9.8665 -0.036219 -0.00426106 -0.495348 0.1 -0.47 pose: 0.30955924 1.2907 -3.94721 0 0.00719186 0.000173146 0.9999 0.0121375 uwb: 0.50108381 1234.74 859.79 +imu_odom_: 1691062494.902219767 0.675165 0.0335188 9.89763 -0.0660464 0.00213053 -0.493217 0.08 -0.53 pose: 0.40017994 1.29067 -3.94717 0 0.00796896 -0.00159058 0.999723 0.0220676 uwb: 0.0 1234.74 859.79 +imu_odom_: 1691062494.918328688 0.648829 -0.227449 9.84975 -0.0660464 0.00852212 -0.486826 0.08 -0.53 pose: 0.0 1.29067 -3.94717 0 0.00796896 -0.00159058 0.999723 0.0220676 uwb: 0.0 1234.74 859.79 +imu_odom_: 1691062494.933208355 0.531513 -0.215478 9.84017 -0.0617853 0.00852212 -0.531567 0.08 -0.53 pose: 0.0 1.29067 -3.94717 0 0.00796896 -0.00159058 0.999723 0.0220676 uwb: 0.49866904 1234.92 860.791 +imu_odom_: 1691062494.948348746 0.605733 -0.122104 9.663 -0.0532632 -0.00319579 -0.576308 0.06 -0.53 pose: 0.6992607 1.2907 -3.94721 0 0.00823302 -0.0009736760.999679 0.0239357 uwb: 0.0 1234.92 860.791 +imu_odom_: 1691062494.966252408 0.354342 -0.11971 9.92157 -0.0575243 0.00426106 -0.586961 0.06 -0.53 pose: 0.0 1.2907 -3.94721 0 0.00823302 -0.0009736760.999679 0.0239357 uwb: 0.0 1234.92 860.791 +imu_odom_: 1691062494.982235924 0.555455 0.0143652 10.1131 -0.0553937 -0.02024 -0.576308 0.06 -0.53 pose: 0.0 1.2907 -3.94721 0 0.00823302 -0.0009736760.999679 0.0239357 uwb: 0.50038679 1234.62 861.525 +imu_odom_: 1691062494.999233758 0.811634 -0.397437 9.96227 -0.0639159 -0.0287621 -0.516653 0.07 -0.67 pose: 0.45999491 1.2907 -3.94721 0 0.00874141 0.000213775 0.999287 0.0367205 uwb: 0.0 1234.62 861.525 +imu_odom_: 1691062495.15277940 0.624887 -0.584185 9.63906 -0.0585895 -0.00106526 -0.4815 0.05 -0.47 pose: 0.0 1.2907 -3.94721 0 0.00874141 0.000213775 0.999287 0.0367205 uwb: 0.0 1234.62 861.525 +imu_odom_: 1691062495.32178372 0.579397 -0.287304 9.90002 -0.0436758 -0.0170442 -0.453803 0.05 -0.47 pose: 0.66969729 1.28104 -3.94983 0 0.00896332 0.00114901 0.99836 0.0565377 uwb: 0.49906284 1233.93 861.657 +imu_odom_: 1691062495.48270967 0.663194 -0.146046 9.91439 -0.0713727 -0.015979 -0.410127 0.05 -0.47 pose: 0.0 1.28104 -3.94983 0 0.00896332 0.00114901 0.99836 0.0565377 uwb: 0.0 1233.93 861.657 +imu_odom_: 1691062495.66315204 0.505177 -0.380678 9.87369 -0.0639159 -0.00319579 -0.365386 0.05 -0.41 pose: 0.0 1.28104 -3.94983 0 0.00896332 0.00114901 0.99836 0.0565377 uwb: 0.0 1233.93 861.657 +imu_odom_: 1691062495.82216192 0.507571 -0.342371 9.83299 -0.0500674 -0.00532632 -0.360059 0.05 -0.41 pose: 0.33114057 1.28104 -3.94983 0 0.0096911 -0.0007278180.997863 0.0646085 uwb: 0.50266173 1234.89 863.293 +imu_odom_: 1691062495.99213157 0.577003 -0.184354 9.93594 -0.0585895 -0.015979 -0.333428 0.05 -0.41 pose: 0.41911614 1.27848 -3.94016 0 0.00830498 -0.00293132 0.997279 0.073188 uwb: 0.0 1234.89 863.293 +imu_odom_: 1691062495.116211580 0.464475 -0.306458 9.76355 -0.0639159 -0.00532632 -0.28123 0.05 -0.41 pose: 0.0 1.27848 -3.94016 0 0.00830498 -0.00293132 0.997279 0.073188 uwb: 0.0 1234.89 863.293 +imu_odom_: 1691062495.133152550 0.56982 -0.426168 10.0269 -0.0575243 -0.0181095 -0.245011 0.05 -0.41 pose: 0.0 1.27848 -3.94016 0 0.00830498 -0.00293132 0.997279 0.073188 uwb: 0.49837465 1235.11 864.531 +imu_odom_: 1691062495.149152404 0.481235 -0.411803 9.78271 -0.056459 0.00106526 -0.227967 0.03 -0.26 pose: 0.7939267 1.27848 -3.94016 0 0.00848548 -0.00215203 0.99717 0.0746715 uwb: 0.0 1235.11 864.531 +imu_odom_: 1691062495.167206848 0.555455 -0.177171 10.0604 -0.0500674 -0.0149137 -0.199204 0.04 -0.29 pose: 0.0 1.27848 -3.94016 0 0.00848548 -0.00215203 0.99717 0.0746715 uwb: 0.0 1235.11 864.531 +imu_odom_: 1691062495.184156568 0.562637 -0.287304 9.9096 -0.0639159 -0.015979 -0.172573 0.04 -0.29 pose: 0.67058699 1.27848 -3.94016 0 0.00673448 -0.00444546 0.996387 0.0845485 uwb: 0.49929914 1235.04 865.118 +imu_odom_: 1691062495.198202445 0.658405 -0.339977 9.88326 -0.052198 0 -0.168312 0.04 -0.29 pose: 0.0 1.27848 -3.94016 0 0.00673448 -0.00444546 0.996387 0.0845485 uwb: 0.0 1235.04 865.118 +imu_odom_: 1691062495.214154762 0.636858 -0.246603 9.97903 -0.0543285 -0.0106526 -0.154463 0.02 -0.2 pose: 0.0 1.27848 -3.94016 0 0.00673448 -0.00444546 0.996387 0.0845485 uwb: 0.0 1235.04 865.118 +imu_odom_: 1691062495.228207348 0.634463 -0.213084 9.84496 -0.0532632 -0.0106526 -0.129962 0.02 -0.2 pose: 0.32933824 1.27848 -3.94016 0 0.00867199 -0.00510649 0.996056 0.0881487 uwb: 0.0 1235.04 865.118 +imu_odom_: 1691062495.244249781 0.667982 -0.31364 9.87608 -0.056459 -0.00532632 -0.105461 0.02 -0.11 pose: 0.38059366 1.2688 -3.94266 0 0.0110261 -0.00295086 0.995718 0.0917408 uwb: 0.50014781 1235.04 866.208 +imu_odom_: 1691062495.261190751 0.581791 -0.3304 9.80665 -0.056459 0 -0.0905475 0.02 -0.11 pose: 0.0 1.2688 -3.94266 0 0.0110261 -0.00295086 0.995718 0.0917408 uwb: 0.0 1235.04 866.208 +imu_odom_: 1691062495.277132277 0.572214 -0.277727 9.991 -0.0500674 0.00106526 -0.0916127 0.02 -0.11 pose: 0.0 1.2688 -3.94266 0 0.0110261 -0.00295086 0.995718 0.0917408 uwb: 0.0 1235.04 866.208 +imu_odom_: 1691062495.294157530 0.581791 -0.215478 9.88805 -0.0575243 -0.0149137 -0.0735032 0.01 -0.17 pose: 0.7996427 1.2688 -3.94266 0 0.0114445 -0.00363375 0.995658 0.0923113 uwb: 0.50058235 1234.85 866.588 +imu_odom_: 1691062495.310138136 0.634463 -0.28491 9.86172 -0.0553937 -0.00426106 -0.0543285 0.01 -0.17 pose: 0.0 1.2688 -3.94266 0 0.0114445 -0.00363375 0.995658 0.0923113 uwb: 0.0 1234.85 866.588 +imu_odom_: 1691062495.327199261 0.627281 -0.387861 9.93115 -0.0543285 -0.00106526 -0.0330232 0.01 -0.17 pose: 0.0 1.2688 -3.94266 0 0.0114445 -0.00363375 0.995658 0.0923113 uwb: 0.0 1234.85 866.588 +imu_odom_: 1691062495.343134663 0.519542 -0.287304 9.97424 -0.0532632 0.00106526 -0.00532632 0 -0.02 pose: 0.47937150 1.2688 -3.94266 0 0.00912717 -0.00377278 0.995389 0.0954105 uwb: 0.49887044 1235.03 867.296 +imu_odom_: 1691062495.360132210 0.490811 -0.337582 9.88087 -0.056459 -0.00426106 0.0276969 0 -0.05 pose: 0.0 1.2688 -3.94266 0 0.00912717 -0.00377278 0.995389 0.0954105 uwb: 0.0 1235.03 867.296 +imu_odom_: 1691062495.375185990 0.512359 -0.282516 9.91918 -0.0543285 -0.00639159 0.0447411 0 -0.05 pose: 0.66001511 1.2688 -3.94266 0 0.00816029 -0.00529992 0.995167 0.0977108 uwb: 0.0 1235.03 867.296 +imu_odom_: 1691062495.389125128 0.490811 -0.304064 9.83777 -0.052198 0.00213053 0.0479369 0 -0.05 pose: 0.0 1.2688 -3.94266 0 0.00816029 -0.00529992 0.995167 0.0977108 uwb: 0.49842422 1234.17 866.972 +imu_odom_: 1691062495.403118220 0.411803 -0.232238 9.90721 -0.0532632 0.00319579 0.0426106 0 0 pose: 0.0 1.2688 -3.94266 0 0.00816029 -0.00529992 0.995167 0.0977108 uwb: 0.0 1234.17 866.972 +imu_odom_: 1691062495.417169639 0.361524 -0.181959 9.88326 -0.0532632 -0.00213053 0.04048 0 0 pose: 0.30988015 1.2688 -3.94266 0 0.00545306 -0.00475465 0.99519 0.0976979 uwb: 0.0 1234.17 866.972 +imu_odom_: 1691062495.431119276 0.378284 -0.227449 9.88326 -0.056459 -0.00852212 0.0394148 0 0 pose: 0.0 1.2688 -3.94266 0 0.00545306 -0.00475465 0.99519 0.0976979 uwb: 0.50004866 1233.4 866.331 +imu_odom_: 1691062495.446124644 0.464475 -0.280122 9.92397 -0.0575243 -0.0106526 0.0340885 0 0 pose: 0.41997064 1.2688 -3.94266 0 0.00207659 -0.00257564 0.995217 0.0976339 uwb: 0.0 1233.4 866.331 +imu_odom_: 1691062495.460111902 0.4956 -0.277727 9.90721 -0.0543285 -0.00745685 0.036219 0 0 pose: 0.0 1.2688 -3.94266 0 0.00207659 -0.00257564 0.995217 0.0976339 uwb: 0.0 1233.4 866.331 +imu_odom_: 1691062495.474178195 0.497994 -0.292093 9.89284 -0.0543285 -0.00213053 0.0426106 0 0 pose: 0.0 1.2688 -3.94266 0 0.00207659 -0.00257564 0.995217 0.0976339 uwb: 0.0 1233.4 866.331 +imu_odom_: 1691062495.488176827 0.371101 -0.265756 9.92875 -0.0532632 0.00106526 0.0436758 0 0 pose: 0.51050680 1.2688 -3.94266 0 0.00463454 -0.00472683 0.995196 0.0976778 uwb: 0.0 1233.4 866.331 +imu_odom_: 1691062495.503115118 0.402226 -0.232238 9.90721 -0.0532632 -0.00213053 0.04048 0 0 pose: 0.0 1.2688 -3.94266 0 0.00463454 -0.00472683 0.995196 0.0976778 uwb: 0.0 1233.4 866.331 +imu_odom_: 1691062495.517112001 0.423774 -0.232238 9.88805 -0.0543285 -0.00639159 0.04048 0 0 pose: 0.0 1.2688 -3.94266 0 0.00463454 -0.00472683 0.995196 0.0976778 uwb: 0.0 1233.4 866.331 +imu_odom_: 1691062495.531108592 0.464475 -0.23942 9.91678 -0.0553937 -0.00745685 0.0372843 0 0 pose: 0.42933806 1.2688 -3.94266 0 0.00152263 -0.00195498 0.995219 0.0976335 uwb: 0.100125510 1233.39 866.605 +imu_odom_: 1691062495.545116557 0.47884 -0.277727 9.91199 -0.0575243 -0.00532632 0.0383495 0 0 pose: 0.0 1.2688 -3.94266 0 0.00152263 -0.00195498 0.995219 0.0976335 uwb: 0.0 1233.39 866.605 +imu_odom_: 1691062495.567168777 0.476446 -0.28491 9.91918 -0.0575243 -0.00319579 0.04048 0 0 pose: 0.0 1.2688 -3.94266 0 0.00152263 -0.00195498 0.995219 0.0976335 uwb: 0.0 1233.39 866.605 +imu_odom_: 1691062495.584165742 -0.244209 -0.227449 9.84256 -0.0479369 0.0884169 0.0308927 0 0 pose: 0.35080573 1.2688 -3.94266 0 0.00335575 -0.00366504 0.995208 0.0976517 uwb: 0.49984451 1232.64 865.682 +imu_odom_: 1691062495.600103768 -1.09176 -0.146046 10.1107 -0.0394148 0.0852212 0.0266316 0.02 0.02 pose: 0.0 1.2688 -3.94266 0 0.00335575 -0.00366504 0.995208 0.0976517 uwb: 0.0 1232.64 865.682 +imu_odom_: 1691062495.618212749 -1.1564 -0.225055 9.84017 -0.0596548 -0.0468716 0.0319579 0.02 0.02 pose: 0.38916490 1.2688 -3.94266 0 -1.61259e-05-0.00445805 0.995201 0.0977533 uwb: 0.0 1232.64 865.682 +imu_odom_: 1691062495.635099183 -0.0670376 -0.198719 9.84256 -0.0543285 -0.0745685 0.0426106 0.02 0.02 pose: 0.0 1.2688 -3.94266 0 -1.61259e-05-0.00445805 0.995201 0.0977533 uwb: 0.50130269 1232.03 864.954 +imu_odom_: 1691062495.652097023 0.519542 -0.311246 9.79468 -0.0575243 -0.0426106 0.0511327 0.04 0.02 pose: 0.35110903 1.2688 -3.94266 0 -0.00318169 -0.00374842 0.995189 0.0978511 uwb: 0.0 1232.03 864.954 +imu_odom_: 1691062495.669214142 0.205901 -0.172383 9.67497 -0.0553937 0.015979 0.0671117 0.04 0.02 pose: 0.0 1.2688 -3.94266 0 -0.00318169 -0.00374842 0.995189 0.0978511 uwb: 0.0 1232.03 864.954 +imu_odom_: 1691062495.686102909 -0.476446 -0.241814 9.70609 -0.0415453 0.0149137 0.0415453 0.07 0.02 pose: 0.42994175 1.2688 -3.94266 0 -0.00320675 -0.00278125 0.995226 0.0974999 uwb: 0.49919707 1232.24 865.644 +imu_odom_: 1691062495.703094333 -0.117316 -0.186748 10.1011 -0.0479369 -0.0276969 0.0543285 0.07 0.02 pose: 0.0 1.2688 -3.94266 0 -0.00320675 -0.00278125 0.995226 0.0974999 uwb: 0.0 1232.24 865.644 +imu_odom_: 1691062495.720095380 0.474052 -0.409408 9.81383 -0.0596548 -0.0447411 0.0553937 0.07 0.02 pose: 0.0 1.2688 -3.94266 0 -0.00320675 -0.00278125 0.995226 0.0974999 uwb: 0.0 1232.24 865.644 +imu_odom_: 1691062495.736206640 0.323217 -0.282516 9.69891 -0.0468716 0.00532632 0.0394148 0.09 0 pose: 0.8004593 1.2688 -3.94266 0 -0.00407127 -0.00260973 0.995225 0.0974897 uwb: 0.49948288 1232.55 866.276 +imu_odom_: 1691062495.753200396 0.00957681 -0.306458 9.89284 -0.052198 -0.00532632 0.0490022 0.14 0.02 pose: 0.0 1.2688 -3.94266 0 -0.00407127 -0.00260973 0.995225 0.0974897 uwb: 0.0 1232.55 866.276 +imu_odom_: 1691062495.769208416 -0.0287304 -0.0885855 9.88805 -0.0394148 -0.0223706 0.0447411 0.14 0.02 pose: 0.67000955 1.25912 -3.94517 0 -0.00412648 -0.00307068 0.995253 0.0971892 uwb: 0.0 1232.55 866.276 +imu_odom_: 1691062495.787075921 0.208296 -0.0814029 9.96467 -0.0383495 -0.0149137 0.0298274 0.13 0.02 pose: 0.0 1.25912 -3.94517 0 -0.00412648 -0.00307068 0.995253 0.0971892 uwb: 0.49995532 1232.5 866.038 +imu_odom_: 1691062495.804140254 0.37589 -0.138864 9.92636 -0.052198 -0.0245011 0.0649811 0.13 0.02 pose: 0.0 1.25912 -3.94517 0 -0.00412648 -0.00307068 0.995253 0.0971892 uwb: 0.0 1232.5 866.038 +imu_odom_: 1691062495.818194297 0.25618 -0.557849 9.88326 -0.0703074 -0.00852212 0.0692422 0.13 0.02 pose: 0.32980779 1.25912 -3.94517 0 -0.00635729 -0.00117039 0.995251 0.0971278 uwb: 0.0 1232.5 866.038 +imu_odom_: 1691062495.834115409 -0.107739 -0.148441 9.74919 -0.0415453 0.00745685 0.0340885 0.11 0 pose: 0.40993828 1.25139 -3.93684 0 -0.00534422 -0.0005980170.995294 0.0967475 uwb: 0.50052694 1232.9 866.886 +imu_odom_: 1691062495.848221656 0.311246 -0.280122 10.2232 -0.0447411 -0.015979 0.0436758 0.11 0 pose: 0.6922907 1.24693 -3.938 0 -0.00604029 -0.00033669 0.995289 0.0967648 uwb: 0.0 1232.9 866.886 +imu_odom_: 1691062495.864207802 1.17795 -0.186748 10.252 -0.0735032 -0.0660464 0.0745685 0.11 0 pose: 0.0 1.24693 -3.938 0 -0.00604029 -0.00033669 0.995289 0.0967648 uwb: 0.0 1232.9 866.886 +imu_odom_: 1691062495.882231042 1.04627 -0.42138 9.96467 -0.0617853 0.02024 0.092678 0.13 0 pose: 0.39090598 1.24693 -3.938 0 -0.00392695 -0.00129367 0.995325 0.0964902 uwb: 0.49985617 1232.09 866 +imu_odom_: 1691062495.899349620 1.35033 -0.265756 10.1011 -0.0543285 -0.04048 0.113983 0.13 0 pose: 0.0 1.24693 -3.938 0 -0.00392695 -0.00129367 0.995325 0.0964902 uwb: 0.0 1232.09 866 +imu_odom_: 1691062495.916220305 1.31442 -0.136469 9.47625 -0.0394148 -0.015979 0.137419 0.13 0 pose: 0.0 1.24693 -3.938 0 -0.00392695 -0.00129367 0.995325 0.0964902 uwb: 0.0 1232.09 866 +imu_odom_: 1691062495.933109655 1.27372 -0.217872 10.0245 -0.0490022 0.0330232 0.109722 0.09 0.02 pose: 0.42167965 1.24693 -3.938 0 0.000309582 -0.00204249 0.995471 0.0950476 uwb: 0.49999616 1231.85 865.868 +imu_odom_: 1691062495.950127909 0.653617 -0.0215478 9.9934 -0.052198 0.0340885 0.0340885 0.06 0.02 pose: 0.0 1.24693 -3.938 0 0.000309582 -0.00204249 0.995471 0.0950476 uwb: 0.0 1231.85 865.868 +imu_odom_: 1691062495.965324008 0.521936 -0.0550666 10.0365 -0.0532632 -0.0138484 0.00639159 0.06 0.02 pose: 0.34810224 1.23726 -3.94057 0 0.00316237 -0.00135908 0.995565 0.0940087 uwb: 0.0 1231.85 865.868 +imu_odom_: 1691062495.983085648 0.821211 -0.220267 9.73482 -0.072438 -0.015979 -0.0117179 0.05 0.02 pose: 0.0 1.23726 -3.94057 0 0.00316237 -0.00135908 0.995565 0.0940087 uwb: 0.49957328 1231.88 866.664 +imu_odom_: 1691062495.999132747 1.04148 -0.435745 10.0389 -0.0575243 -0.0138484 0 0.05 0.02 pose: 0.0 1.23726 -3.94057 0 0.00316237 -0.00135908 0.995565 0.0940087 uwb: 0.0 1231.88 866.664 +imu_odom_: 1691062496.16337654 0.814029 -0.335188 9.79228 -0.0596548 0.0149137 0 0.05 0.02 pose: 0.31970252 1.23726 -3.94057 0 0.00505985 0.000521415 0.995513 0.0944913 uwb: 0.0 1231.88 866.664 +imu_odom_: 1691062496.33165765 0.646434 -0.143652 9.85693 -0.0500674 0.0170442 0.00319579 0.04 0.02 pose: 0.43181411 1.23726 -3.94057 0 0.0088703 -0.00146024 0.9954 0.0953857 uwb: 0.49969878 1232.15 867.046 +imu_odom_: 1691062496.50055704 0.201113 -0.246603 9.991 -0.0607201 0.0127832 0.0575243 0.04 0.02 pose: 0.8850930 1.23726 -3.94057 0 0.00940671 -0.0008009190.99538 0.0955519 uwb: 0.0 1232.15 867.046 +imu_odom_: 1691062496.75058437 0.608127 -0.390255 9.77553 -0.0458064 -0.0266316 0.0585895 0.03 0.02 pose: 0.0 1.23726 -3.94057 0 0.00940671 -0.0008009190.99538 0.0955519 uwb: 0.0 1232.15 867.046 +imu_odom_: 1691062496.92050449 0.754174 -0.0574608 9.9934 -0.0553937 0.0276969 0.0735032 0.04 0.02 pose: 0.24867120 1.23726 -3.94057 0 0.00805422 -0.0002749350.995392 0.095552 uwb: 0.49950637 1232.78 867.764 +imu_odom_: 1691062496.117054348 -0.995988 -0.3304 10.3286 -0.0585895 0.0745685 0.0745685 0.04 0.02 pose: 0.0 1.23726 -3.94057 0 0.00805422 -0.0002749350.995392 0.095552 uwb: 0.0 1232.78 867.764 +imu_odom_: 1691062496.142191233 -1.01754 -0.203507 9.81144 -0.0532632 -0.0426106 0.0351537 0.04 0.02 pose: 0.41994745 1.23726 -3.94057 0 0.00973921 -0.00147933 0.995427 0.0950203 uwb: 0.50010130 1232 867.401 +imu_odom_: 1691062496.168048466 0.54109 -0.215478 9.75398 -0.0692422 -0.0660464 0.0490022 0.09 0.02 pose: 0.32177908 1.23481 -3.93088 0 0.00567925 -0.00128077 0.995498 0.094601 uwb: 0.0 1232 867.401 +imu_odom_: 1691062496.193145106 0.126893 -0.354342 9.80665 -0.052198 0.04048 0.0234358 0.11 0 pose: 0.43820109 1.22511 -3.93334 0 0.00758342 -0.00101777 0.995493 0.0945211 uwb: 0.49900767 1231.86 867.483 +imu_odom_: 1691062496.206064389 -0.335188 -0.0933739 9.92397 -0.0468716 0.00745685 0.015979 0.11 0 pose: 0.7021191 1.22511 -3.93334 0 0.00674109 -0.00113866 0.995494 0.0945762 uwb: 0.0 1231.86 867.483 +imu_odom_: 1691062496.231060122 0.107739 -0.169988 10.3741 -0.0735032 -0.0340885 0.0585895 0.1 0 pose: 0.0 1.22511 -3.93334 0 0.00674109 -0.00113866 0.995494 0.0945762 uwb: 0.50014505 1231.71 867.565 +imu_odom_: 1691062496.256032816 0.512359 -0.452504 9.75398 -0.0511327 -0.0298274 0.0234358 0.1 0 pose: 0.38973956 1.22511 -3.93334 0 0.00259345 -0.0009308720.995493 0.0947944 uwb: 0.0 1231.71 867.565 +imu_odom_: 1691062496.277036604 -0.0311246 -0.0574608 9.69173 -0.0553937 0.0447411 0.0468716 0.12 0 pose: 0.0 1.22511 -3.93334 0 0.00259345 -0.0009308720.995493 0.0947944 uwb: 0.0 1231.71 867.565 +imu_odom_: 1691062496.290054753 0.00957681 -0.174777 10.5417 -0.0639159 -0.00319579 0.0468716 0.12 0 pose: 0.47993743 1.21542 -3.9358 0 0.00148851 -0.00275511 0.995491 0.094809 uwb: 0.50265606 1231.11 866.84 +imu_odom_: 1691062496.305115245 0.339977 -0.196325 10.1203 -0.0649811 -0.0372843 0.0394148 0.12 0 pose: 0.0 1.21542 -3.9358 0 0.00148851 -0.00275511 0.995491 0.094809 uwb: 0.0 1231.11 866.84 +imu_odom_: 1691062496.331025848 0.356736 -0.476446 9.88087 -0.0639159 0.00319579 0.0394148 0.17 0 pose: 0.43077889 1.21542 -3.9358 0 -0.00194173 -0.0004415730.995504 0.0947013 uwb: 0.49850605 1231.31 867.528 +imu_odom_: 1691062496.353033746 0.304064 -0.124498 9.72046 -0.0426106 -0.0127832 0.0415453 0.17 0 pose: 0.0 1.21542 -3.9358 0 -0.00194173 -0.0004415730.995504 0.0947013 uwb: 0.0 1231.31 867.528 +imu_odom_: 1691062496.366057728 -0.244209 -0.129287 9.91199 -0.072438 0.02024 0.0596548 0.14 -0.02 pose: 0.47918501 1.20327 -3.92857 0 -0.00287474 -0.0008556150.995503 0.0946794 uwb: 0.0 1231.31 867.528 +imu_odom_: 1691062496.390028644 0.23942 -0.366313 9.83538 -0.0671117 -0.0106526 0.0351537 0.15 0.02 pose: 0.0 1.20327 -3.92857 0 -0.00287474 -0.0008556150.995503 0.0946794 uwb: 0.50097039 1231.34 867.776 +imu_odom_: 1691062496.415092037 0.960075 -0.131681 9.98861 -0.072438 -0.0884169 0.0585895 0.2 0.02 pose: 0.36994898 1.20327 -3.92857 0 -0.00568204 -0.00265845 0.995495 0.0946051 uwb: 0.0 1231.34 867.776 +imu_odom_: 1691062496.430027125 1.1133 -0.486023 9.85932 -0.056459 -0.0245011 0.0543285 0.2 0.02 pose: 0.0 1.20327 -3.92857 0 -0.00568204 -0.00265845 0.995495 0.0946051 uwb: 0.0 1231.34 867.776 +imu_odom_: 1691062496.454171566 -0.385466 -0.229843 9.28471 -0.0330232 0.0372843 0.0191748 0.14 0 pose: 0.39998481 1.19358 -3.93103 0 -0.000621866-0.00323538 0.995542 0.0942645 uwb: 0.49901933 1231.83 868.301 +imu_odom_: 1691062496.480001676 -0.0191536 -0.426168 10.2592 -0.0585895 -0.0468716 0.072438 0.14 0 pose: 0.7110141 1.19358 -3.93103 0 -0.00146444 -0.00303484 0.995535 0.0943348 uwb: 0.0 1231.83 868.301 +imu_odom_: 1691062496.504061250 0.447716 -0.177171 10.3022 -0.0351537 0.0213053 0.0319579 0.15 0 pose: 0.25044145 1.19358 -3.93103 0 -0.00407741 -0.00282811 0.995525 0.0943703 uwb: 0.49949761 1232.23 869.146 +imu_odom_: 1691062496.527051387 0.502782 -0.186748 9.69412 -0.0553937 0.0287621 0.0479369 0.15 0 pose: 0.24852830 1.18142 -3.92381 0 -0.00489311 -0.00297325 0.995546 0.0941022 uwb: 0.0 1232.23 869.146 +imu_odom_: 1691062496.544995014 0.0287304 -0.399832 10.2424 -0.0490022 -0.0170442 0.052198 0.16 0 pose: 0.0 1.18142 -3.92381 0 -0.00489311 -0.00297325 0.995546 0.0941022 uwb: 0.50028504 1232.06 869.511 +imu_odom_: 1691062496.568061269 0.213084 -0.299275 9.75398 -0.0553937 0.0149137 0.0447411 0.16 0 pose: 0.0 1.18142 -3.92381 0 -0.00489311 -0.00297325 0.995546 0.0941022 uwb: 0.0 1232.06 869.511 +imu_odom_: 1691062496.585076029 0.351948 -0.246603 9.52174 -0.0596548 -0.0213053 0.0617853 0.15 0 pose: 0.66033612 1.17173 -3.92628 0 -0.0042796 -0.00188204 0.995567 0.0939409 uwb: 0.50044253 1232.95 871.405 +imu_odom_: 1691062496.610001768 -0.011971 -0.299275 9.91678 -0.052198 0.00958738 0.0255663 0.15 0 pose: 0.0 1.17173 -3.92628 0 -0.0042796 -0.00188204 0.995567 0.0939409 uwb: 0.0 1232.95 871.405 +imu_odom_: 1691062496.636043316 0.0047884 -0.287304 9.92397 -0.0500674 -0.0106526 0.0479369 0.15 0 pose: 0.40980719 1.17173 -3.92628 0 -0.00505101 -0.00185661 0.995579 0.0937748 uwb: 0.50067875 1233.13 872.366 +imu_odom_: 1691062496.659013913 0.0670376 -0.339977 9.56962 -0.0308927 0.0213053 0.0266316 0.17 0 pose: 0.0 1.17173 -3.92628 0 -0.00505101 -0.00185661 0.995579 0.0937748 uwb: 0.0 1233.13 872.366 +imu_odom_: 1691062496.683005827 0.143652 -0.0023942 9.991 -0.04048 0.056459 0.0649811 0.17 0 pose: 0.49012436 1.15956 -3.91908 0 -0.0100166 -0.00192401 0.995537 0.0938143 uwb: 0.49970176 1232.79 872.288 +imu_odom_: 1691062496.701004866 0.148441 -0.577003 9.22725 -0.0681769 -0.00106526 0.0490022 0.17 0 pose: 0.0 1.15956 -3.91908 0 -0.0100166 -0.00192401 0.995537 0.0938143 uwb: 0.0 1232.79 872.288 +imu_odom_: 1691062496.725063565 0.560243 -0.126893 9.71806 -0.0479369 -0.0138484 0.0426106 0.23 0 pose: 0.48002201 1.14987 -3.92155 0 -0.0126339 -0.0004275050.995533 0.0935635 uwb: 0.0 1232.79 872.288 +imu_odom_: 1691062496.750996915 0.572214 -0.445322 10.0269 -0.0553937 -0.0106526 0.0415453 0.2 0 pose: 0.34000356 1.14987 -3.92155 0 -0.0103641 -0.0008156450.995566 0.0934913 uwb: 0.49897850 1232.15 872.109 +imu_odom_: 1691062496.776105512 0.383072 -0.217872 9.92636 -0.056459 -0.00745685 0.0639159 0.2 0 pose: 0.0 1.14987 -3.92155 0 -0.0103641 -0.0008156450.995566 0.0934913 uwb: 0.0 1232.15 872.109 +imu_odom_: 1691062496.800976133 0.227449 -0.215478 9.88326 -0.0628506 -0.0479369 0.0319579 0.18 0 pose: 0.7939852 1.14987 -3.92155 0 -0.00967317 -0.00125149 0.995573 0.0934891 uwb: 0.50095289 1231.37 872.542 +imu_odom_: 1691062496.813977075 -0.0957681 -0.138864 9.52892 -0.0511327 -0.0106526 0.0351537 0.18 0 pose: 0.0 1.14987 -3.92155 0 -0.00967317 -0.00125149 0.995573 0.0934891 uwb: 0.0 1231.37 872.542 +imu_odom_: 1691062496.838109559 0.0814029 -0.169988 10.2448 -0.0575243 -0.00852212 0.052198 0.17 0 pose: 0.51037864 1.1377 -3.91435 0 -0.00614593 -0.00110664 0.995627 0.0932065 uwb: 0.49863437 1230.88 872.545 +imu_odom_: 1691062496.863974665 0.0909797 0.11971 10.0556 -0.0458064 0.00639159 0.0447411 0.17 0 pose: 0.0 1.1377 -3.91435 0 -0.00614593 -0.00110664 0.995627 0.0932065 uwb: 0.0 1230.88 872.545 +imu_odom_: 1691062496.876993106 0.392649 -0.172383 9.65821 -0.0756338 -0.0127832 0.0713727 0.17 -0.02 pose: 0.37939515 1.12801 -3.91684 0 -0.00905859 0.000562526 0.995603 0.0932324 uwb: 0.0 1230.88 872.545 +imu_odom_: 1691062496.892961468 0.0909797 -0.335188 9.67736 -0.0649811 -0.02024 0.0543285 0.17 -0.02 pose: 0.0 1.12801 -3.91684 0 -0.00905859 0.000562526 0.995603 0.0932324 uwb: 0.50017422 1231.04 873.769 +imu_odom_: 1691062496.917987240 0.794875 -0.205901 9.76834 -0.0617853 -0.052198 0.0479369 0.17 -0.02 pose: 0.0 1.12801 -3.91684 0 -0.00905859 0.000562526 0.995603 0.0932324 uwb: 0.0 1231.04 873.769 +imu_odom_: 1691062496.943038092 0.354342 -0.500388 9.54089 -0.0628506 0.00106526 0.0330232 0.24 0 pose: 0.48058196 1.11833 -3.91933 0 -0.0105237 0.00375254 0.99561 0.0929346 uwb: 0.50014797 1231.21 874.465 +imu_odom_: 1691062496.968023910 0.251391 -0.320823 10.1754 -0.0468716 0.0245011 0.0585895 0.19 0 pose: 0.72999100 1.10615 -3.91215 0 -0.00718364 -0.0007032550.995666 0.0927157 uwb: 0.0 1231.21 874.465 +imu_odom_: 1691062496.981084055 0.428562 -0.612916 9.91918 -0.0692422 -0.00426106 0.0649811 0.19 0 pose: 0.0 1.10615 -3.91215 0 -0.00718364 -0.0007032550.995666 0.0927157 uwb: 0.0 1231.21 874.465 +imu_odom_: 1691062497.5193791 0.768539 -0.148441 9.91918 -0.0532632 -0.0308927 0.0415453 0.19 0 pose: 0.0 1.10615 -3.91215 0 -0.00718364 -0.0007032550.995666 0.0927157 uwb: 0.49992049 1231.31 875.45 +imu_odom_: 1691062497.29030270 0.787692 -0.454898 10.0916 -0.0649811 -0.0255663 0.0553937 0.17 0 pose: 0.8119793 1.10615 -3.91215 0 -0.00746489 -0.00145186 0.99567 0.0926445 uwb: 0.0 1231.31 875.45 +imu_odom_: 1691062497.54191953 0.773327 -0.167594 10.3621 -0.0585895 -0.0585895 0.0500674 0.24 0 pose: 0.37849398 1.09647 -3.91465 0 -0.00666207 -0.00412343 0.995697 0.0923363 uwb: 0.50043678 1230.94 876.166 +imu_odom_: 1691062497.79163779 0.562637 -0.244209 10.2017 -0.0735032 -0.02024 0.036219 0.24 0 pose: 0.0 1.09647 -3.91465 0 -0.00666207 -0.00412343 0.995697 0.0923363 uwb: 0.0 1230.94 876.166 +imu_odom_: 1691062497.95972356 0.447716 -0.318429 9.3302 -0.0468716 0.0106526 0.0319579 0.19 0.02 pose: 0.48037209 1.09396 -3.90497 0 -0.00144844 -0.00468696 0.995737 0.0921092 uwb: 0.49918281 1230.93 876.692 +imu_odom_: 1691062497.122074865 0.148441 -0.205901 9.8282 -0.0617853 0.0490022 0.0436758 0.19 0.02 pose: 0.0 1.09396 -3.90497 0 -0.00144844 -0.00468696 0.995737 0.0921092 uwb: 0.0 1230.93 876.692 +imu_odom_: 1691062497.146976407 0.220267 -0.277727 9.6223 -0.052198 -0.00852212 0.0479369 0.23 0.02 pose: 0.49995273 1.08428 -3.90748 0 0.0027459 -0.00445259 0.995736 0.0921022 uwb: 0.50029395 1231.22 878.09 +imu_odom_: 1691062497.171019948 0.272939 -0.320823 10.0317 -0.0500674 -0.00958738 0.0458064 0.23 0.02 pose: 0.0 1.08428 -3.90748 0 0.0027459 -0.00445259 0.995736 0.0921022 uwb: 0.0 1231.22 878.09 +imu_odom_: 1691062497.188004092 0.823605 -0.335188 9.94551 -0.0340885 -0.0607201 0.0383495 0.18 0.02 pose: 0.42959206 1.0746 -3.91 0 -0.00166686 -0.003942 0.995746 0.0920364 uwb: 0.49988857 1230.72 878.354 +imu_odom_: 1691062497.209993624 0.603339 -0.296881 9.95748 -0.0543285 -0.0458064 0.0436758 0.18 0.02 pose: 0.0 1.0746 -3.91 0 -0.00166686 -0.003942 0.995746 0.0920364 uwb: 0.0 1230.72 878.354 +imu_odom_: 1691062497.230937925 0.0335188 -0.0215478 9.39006 -0.0426106 -0.00745685 0.0383495 0.17 0.02 pose: 0.49005744 1.06241 -3.90283 0 -0.00450882 -0.004293 0.99575 0.0918853 uwb: 0.50003439 1230.64 878.911 +imu_odom_: 1691062497.243942080 0.426168 -0.263362 10.1131 -0.0735032 -0.00745685 0.0649811 0.17 0.02 pose: 0.0 1.06241 -3.90283 0 -0.00450882 -0.004293 0.99575 0.0918853 uwb: 0.0 1230.64 878.911 +imu_odom_: 1691062497.267967832 0.363919 -0.335188 10.1203 -0.0575243 0.0181095 0.036219 0.17 0 pose: 0.36938040 1.06241 -3.90283 0 -0.00112969 -0.00406699 0.995763 0.0918599 uwb: 0.0 1230.64 878.911 +imu_odom_: 1691062497.285103627 0.21069 -0.215478 9.74679 -0.0490022 0.00319579 0.0500674 0.17 0 pose: 0.0 1.06241 -3.90283 0 -0.00112969 -0.00406699 0.995763 0.0918599 uwb: 0.49785293 1230.26 879.62 +imu_odom_: 1691062497.310085953 0.0885855 -0.167594 9.52653 -0.036219 -0.00958738 0.0383495 0.18 -0.02 pose: 0.36091706 1.05273 -3.90535 0 -0.00138339 -0.00361326 0.995778 0.0917155 uwb: 0.0 1230.26 879.62 +imu_odom_: 1691062497.337084957 0.457293 -0.497994 9.20092 -0.0905475 -0.0191748 0.0628506 0.18 -0.02 pose: 0.0 1.05273 -3.90535 0 -0.00138339 -0.00361326 0.995778 0.0917155 uwb: 0.0 1230.26 879.62 +imu_odom_: 1691062497.362100530 0.272939 -0.459687 9.35654 -0.056459 0.0447411 0.0458064 0.18 -0.02 pose: 0.41959762 1.04054 -3.89819 0 -0.00446771 -0.00334929 0.995776 0.0916437 uwb: 0.0 1230.26 879.62 +imu_odom_: 1691062497.388082592 0.047884 -0.40462 10.2065 -0.0639159 -0.0234358 0.0585895 0.18 -0.02 pose: 0.0 1.04054 -3.89819 0 -0.00446771 -0.00334929 0.995776 0.0916437 uwb: 0.100068414 1230.3 880.365 +imu_odom_: 1691062497.410058417 0.37589 -0.318429 10.0173 -0.0511327 0.0468716 0.0394148 0.19 0 pose: 0.52151938 1.03086 -3.90071 0 -0.00497668 -0.00599317 0.995791 0.0913191 uwb: 0.0 1230.3 880.365 +imu_odom_: 1691062497.427058018 0.512359 -0.42138 9.85453 -0.0735032 -0.0234358 0.056459 0.19 0 pose: 0.0 1.03086 -3.90071 0 -0.00497668 -0.00599317 0.995791 0.0913191 uwb: 0.0 1230.3 880.365 +imu_odom_: 1691062497.450908495 0.761356 -0.423774 9.68933 -0.0575243 0.00639159 0.0447411 0.18 0 pose: 0.48800723 1.01866 -3.89357 0 -0.00800503 -0.00731936 0.995791 0.0910093 uwb: 0.49995273 1230.15 881.717 +imu_odom_: 1691062497.474962827 0.715866 -0.397437 9.31584 -0.0692422 -0.0319579 0.056459 0.18 0 pose: 0.0 1.01866 -3.89357 0 -0.00800503 -0.00731936 0.995791 0.0910093 uwb: 0.0 1230.15 881.717 +imu_odom_: 1691062497.493033032 0.268151 -0.0502782 9.89524 -0.052198 0.00639159 0.0394148 0.23 0.02 pose: 0.38995840 1.01866 -3.89357 0 -0.00459727 -0.00763899 0.995822 0.0908801 uwb: 0.50109887 1229.7 883.215 +imu_odom_: 1691062497.517050034 0.385466 -0.225055 9.87608 -0.0884169 0.00639159 0.0660464 0.23 0.02 pose: 0.0 1.01866 -3.89357 0 -0.00459727 -0.00763899 0.995822 0.0908801 uwb: 0.0 1229.7 883.215 +imu_odom_: 1691062497.540031429 0.514753 -0.205901 10.1562 -0.0671117 0.0340885 0.036219 0.23 0 pose: 0.48976581 1.00898 -3.8961 0 -0.00063723 -0.00786524 0.99585 0.0906657 uwb: 0.49882118 1229.48 884.832 +imu_odom_: 1691062497.566029823 0.37589 -0.651223 9.55047 -0.0607201 0.0191748 0.0575243 0.23 0 pose: 0.0 1.00898 -3.8961 0 -0.00063723 -0.00786524 0.99585 0.0906657 uwb: 0.0 1229.48 884.832 +imu_odom_: 1691062497.578898949 -0.035913 -0.591368 9.44273 -0.0394148 0.0298274 0.0340885 0.18 0 pose: 0.42002049 0.99677 -3.88897 0 -0.000661379-0.00443891 0.995899 0.0903643 uwb: 0.0 1229.48 884.832 +imu_odom_: 1691062497.593896160 0.368707 -0.155623 10.0628 -0.0298274 -0.0287621 0.0415453 0.18 0 pose: 0.0 0.99677 -3.88897 0 -0.000661379-0.00443891 0.995899 0.0903643 uwb: 0.49969025 1229.72 886.213 +imu_odom_: 1691062497.618949645 0.768539 -0.282516 10.1275 -0.0415453 -0.0383495 0.0447411 0.25 0 pose: 0.46991689 0.99677 -3.88897 0 -0.00116586 -0.0064127 0.995905 0.0901748 uwb: 0.0 1229.72 886.213 +imu_odom_: 1691062497.642071901 0.445322 -0.349553 9.73722 -0.0351537 -0.0149137 0.0436758 0.25 0 pose: 0.0 0.99677 -3.88897 0 -0.00116586 -0.0064127 0.995905 0.0901748 uwb: 0.50004314 1229.34 887.148 +imu_odom_: 1691062497.659972373 0.0454898 -0.0550666 10.2759 -0.0490022 0.0245011 0.0585895 0.18 0.02 pose: 0.70158858 0.979278 -3.88697 0 0.00169182 -0.00692568 0.99591 0.0900686 uwb: 0.0 1229.34 887.148 +imu_odom_: 1691062497.675904576 0.665588 -0.244209 9.98143 -0.0447411 -0.0585895 0.0458064 0.18 0.02 pose: 0.9057121 0.97488 -3.8844 0 0.000884934 -0.00628625 0.995923 0.0899805 uwb: 0.0 1229.34 887.148 +imu_odom_: 1691062497.701958965 0.754174 -0.438139 9.90481 -0.0692422 -0.00426106 0.0458064 0.18 0 pose: 0.0 0.97488 -3.8844 0 0.000884934 -0.00628625 0.995923 0.0899805 uwb: 0.49997607 1228.92 887.85 +imu_odom_: 1691062497.725952636 0.500388 -0.0574608 10.4052 -0.0266316 -0.0415453 0.0319579 0.18 0 pose: 0.24775554 0.97488 -3.8844 0 0.0020895 -0.00526168 0.995939 0.0898512 uwb: 0.0 1228.92 887.85 +imu_odom_: 1691062497.751081656 0.438139 -0.208296 10.1299 -0.0511327 -0.0575243 0.0490022 0.18 0 pose: 0.50048060 0.965212 -3.88696 0 0.00503666 -0.00395272 0.995932 0.0898783 uwb: 0.50019770 1228.74 888.437 +imu_odom_: 1691062497.774020471 0.483629 -0.0957681 10.0437 -0.0319579 -0.036219 0.0436758 0.18 0 pose: 0.0 0.965212 -3.88696 0 0.00503666 -0.00395272 0.995932 0.0898783 uwb: 0.0 1228.74 888.437 +imu_odom_: 1691062497.798893432 0.505177 -0.258574 9.663 -0.0436758 -0.0415453 0.0490022 0.19 0 pose: 0.48067835 0.953839 -3.88307 0 0.00466307 0.000531987 0.995956 0.0897236 uwb: 0.50158883 1228.36 889.115 +imu_odom_: 1691062497.815929779 0.318429 0.179565 10.2304 -0.0287621 -0.00532632 0.0372843 0.19 0 pose: 0.0 0.953839 -3.88307 0 0.00466307 0.000531987 0.995956 0.0897236 uwb: 0.0 1228.36 889.115 +imu_odom_: 1691062497.840957309 0.600945 -0.25618 9.84496 -0.0500674 -0.0426106 0.0511327 0.18 -0.02 pose: 0.41909308 0.947931 -3.88119 0 0.00492042 -3.66996e-060.995964 0.0896208 uwb: 0.50015688 1228.28 890.138 +imu_odom_: 1691062497.865946634 0.658405 -0.265756 10.0197 -0.0607201 -0.0543285 0.0617853 0.18 -0.02 pose: 0.0 0.947931 -3.88119 0 0.00492042 -3.66996e-060.995964 0.0896208 uwb: 0.0 1228.28 890.138 +imu_odom_: 1691062497.889049058 0.208296 -0.153229 9.51695 -0.052198 -0.00852212 0.0500674 0.18 0.02 pose: 0.50016855 0.936379 -3.88425 0 0.0104155 -0.00249208 0.995958 0.0891848 uwb: 0.50032311 1228.57 891.467 +imu_odom_: 1691062497.913876815 0.0933739 -0.143652 10.2208 -0.0607201 0.00106526 0.04048 0.18 0.02 pose: 0.0 0.936379 -3.88425 0 0.0104155 -0.00249208 0.995958 0.0891848 uwb: 0.0 1228.57 891.467 +imu_odom_: 1691062497.929990710 0.727837 -0.301669 9.85453 -0.0639159 -0.0181095 0.0447411 0.21 -0.02 pose: 0.30967036 0.931085 -3.87531 0 0.00749077 -0.00154819 0.995996 0.0890653 uwb: 0.0 1228.57 891.467 +imu_odom_: 1691062497.955019406 0.574608 -0.246603 10.4315 -0.0660464 -0.0266316 0.0639159 0.21 -0.02 pose: 0.0 0.931085 -3.87531 0 0.00749077 -0.00154819 0.995996 0.0890653 uwb: 0.49658139 1228.25 892.108 +imu_odom_: 1691062497.979894700 0.126893 -0.0454898 10.4986 -0.0681769 -0.052198 0.0553937 0.2 0 pose: 0.24060457 0.931085 -3.87531 0 0.00650105 -0.00145814 0.996006 0.0890407 uwb: 0.0 1228.25 892.108 +imu_odom_: 1691062498.2869679 0.711078 -0.277727 9.94073 -0.0660464 0.00958738 0.04048 0.2 0 pose: 0.0 0.931085 -3.87531 0 0.00650105 -0.00145814 0.996006 0.0890407 uwb: 0.49938695 1228.07 893.166 +imu_odom_: 1691062498.27870969 0.59855 -0.122104 9.96227 -0.0383495 -0.036219 0.0276969 0.19 0 pose: 0.40985106 0.921422 -3.87788 0 0.00941548 -0.0029343 0.996014 0.0886537 uwb: 0.0 1228.07 893.166 +imu_odom_: 1691062498.43905834 0.059855 -0.110133 9.05727 -0.0532632 -0.1012 0.0553937 0.19 0 pose: 0.0 0.921422 -3.87788 0 0.00941548 -0.0029343 0.996014 0.0886537 uwb: 0.50144018 1227.36 892.771 +imu_odom_: 1691062498.68852588 1.82917 -0.186748 9.59357 -0.0788296 -0.0980043 0.0319579 0.18 0 pose: 0.48946252 0.909178 -3.8708 0 0.010415 -0.00219299 0.996014 0.0885601 uwb: 0.0 1227.36 892.771 +imu_odom_: 1691062498.84865872 0.328006 0.160412 11.3916 -0.052198 -0.0245011 0.0671117 0.18 0 pose: 0.0 0.909178 -3.8708 0 0.010415 -0.00219299 0.996014 0.0885601 uwb: 0.49917421 1227.15 893.835 +imu_odom_: 1691062498.109868037 0.23942 -0.23942 9.97903 -0.0703074 0.02024 0.0383495 0.19 0 pose: 0.73960387 0.89445 -3.87473 0 0.0126631 0.000607443 0.996 0.088444 uwb: 0.0 1227.15 893.835 +imu_odom_: 1691062498.134862911 0.567426 0.114922 10.568 -0.0703074 0.0213053 0.0308927 0.19 0 pose: 0.8140796 0.889856 -3.87596 0 0.0117454 0.00051229 0.996011 0.0884505 uwb: 0.50068199 1226.78 895.214 +imu_odom_: 1691062498.157876977 0.993594 -0.220267 10.2615 -0.072438 -0.015979 0.0383495 0.19 0 pose: 0.41856243 0.88803 -3.86913 0 0.00940452 0.00265974 0.99602 0.088598 uwb: 0.0 1226.78 895.214 +imu_odom_: 1691062498.173914175 0.519542 -0.670376 9.19613 -0.0468716 -0.0308927 0.0234358 0.19 0 pose: 0.0 0.88803 -3.86913 0 0.00940452 0.00265974 0.99602 0.088598 uwb: 0.0 1226.78 895.214 +imu_odom_: 1691062498.198968544 0.150835 -0.174777 9.65342 -0.0585895 -0.00745685 0.0500674 0.25 0.02 pose: 0.39051264 0.877613 -3.86888 0 0.0115267 0.000330223 0.995991 0.0887124 uwb: 0.50056533 1226.36 895.649 +imu_odom_: 1691062498.222922852 0.217872 -0.308852 10.1442 -0.052198 -0.0127832 0.0394148 0.25 0.02 pose: 0.0 0.877613 -3.86888 0 0.0115267 0.000330223 0.995991 0.0887124 uwb: 0.0 1226.36 895.649 +imu_odom_: 1691062498.245848842 0.292093 -0.265756 10.331 -0.0458064 0.00426106 0.0468716 0.18 0.02 pose: 0.49008677 0.870661 -3.87074 0 0.00685044 5.65006e-05 0.996045 0.0885882 uwb: 0.49930837 1227.17 897.192 +imu_odom_: 1691062498.271853369 0.213084 -0.459687 10.0149 -0.0628506 -0.0127832 0.0490022 0.22 0 pose: 0.0 0.870661 -3.87074 0 0.00685044 5.65006e-05 0.996045 0.0885882 uwb: 0.0 1227.17 897.192 +imu_odom_: 1691062498.285864555 0.790087 -0.258574 10.1347 -0.0479369 -0.0255663 0.0415453 0.22 0 pose: 0.30951881 0.86537 -3.8618 0 0.00388887 -0.0007133220.996072 0.0884633 uwb: 0.50027661 1226.92 898.493 +imu_odom_: 1691062498.301835260 0.241814 -0.19393 9.7851 -0.0255663 0.0894822 0.036219 0.22 0 pose: 0.0 0.86537 -3.8618 0 0.00388887 -0.0007133220.996072 0.0884633 uwb: 0.0 1226.92 898.493 +imu_odom_: 1691062498.326923750 0.220267 -0.237026 9.79468 -0.076699 0.0319579 0.0660464 0.18 -0.02 pose: 0.47960527 0.85571 -3.86438 0 0.00181224 -0.00121859 0.996084 0.0883885 uwb: 0.0 1226.92 898.493 +imu_odom_: 1691062498.350834312 0.517148 -0.107739 9.84256 -0.0532632 -0.00319579 0.04048 0.18 -0.02 pose: 0.7098188 0.85571 -3.86438 0 0.000969053 -0.00122647 0.996093 0.0882946 uwb: 0.49977791 1226.91 899.921 +imu_odom_: 1691062498.375906470 0.581791 -0.191536 9.90242 -0.0639159 -0.00958738 0.056459 0.23 0.02 pose: 0.41900864 0.84605 -3.86697 0 0.000663716 0.000305226 0.996116 0.0880462 uwb: 0.0 1226.91 899.921 +imu_odom_: 1691062498.398831878 0.126893 0.011971 10.2208 -0.0543285 -0.00852212 0.0415453 0.23 0.02 pose: 0.0 0.84605 -3.86697 0 0.000663716 0.000305226 0.996116 0.0880462 uwb: 0.50153648 1226.09 900.283 +imu_odom_: 1691062498.414829414 0.287304 -0.632069 8.99262 -0.0777643 -0.0213053 0.0543285 0.18 0 pose: 0.32080230 0.843458 -3.85731 0 0.00269138 0.000640481 0.996132 0.0878291 uwb: 0.0 1226.09 900.283 +imu_odom_: 1691062498.430837448 0.646434 -0.186748 10.635 -0.0458064 -0.00106526 0.0340885 0.18 0 pose: 0.0 0.843458 -3.85731 0 0.00269138 0.000640481 0.996132 0.0878291 uwb: 0.0 1226.09 900.283 +imu_odom_: 1691062498.454830544 0.612916 -0.25618 10.1897 -0.0607201 -0.04048 0.0490022 0.18 0 pose: 0.0 0.843458 -3.85731 0 0.00269138 0.000640481 0.996132 0.0878291 uwb: 0.49836638 1225.94 900.82 +imu_odom_: 1691062498.471886436 0.344765 -0.380678 9.33499 -0.0575243 0.0223706 0.0394148 0.18 0 pose: 0.55925757 0.8338 -3.85991 0 0.00344531 -0.0002550750.996141 0.0877041 uwb: 0.0 1225.94 900.82 +imu_odom_: 1691062498.495822662 0.567426 -0.260968 9.38527 -0.0809601 -0.0234358 0.056459 0.18 0 pose: 0.0 0.8338 -3.85991 0 0.00344531 -0.0002550750.996141 0.0877041 uwb: 0.50049242 1226.2 901.647 +imu_odom_: 1691062498.521829230 0.64404 -0.246603 10.0509 -0.0553937 -0.00213053 0.04048 0.21 0 pose: 0.41018074 0.824143 -3.8625 0 0.00452908 -0.00232366 0.996147 0.0875557 uwb: 0.0 1226.2 901.647 +imu_odom_: 1691062498.546845685 0.519542 -0.320823 9.91678 -0.0756338 -0.0340885 0.0532632 0.2 0 pose: 0.41970857 0.811886 -3.85545 0 0.00878351 -0.00280916 0.996129 0.0874179 uwb: 0.49942794 1226.07 901.939 +imu_odom_: 1691062498.563813502 0.263362 -0.107739 9.64863 -0.0447411 0.0298274 0.0383495 0.2 0 pose: 0.0 0.811886 -3.85545 0 0.00878351 -0.00280916 0.996129 0.0874179 uwb: 0.0 1226.07 901.939 +imu_odom_: 1691062498.589822403 0.612916 -0.229843 9.87369 -0.0862864 -0.0127832 0.0639159 0.2 0.02 pose: 0.33035930 0.811886 -3.85545 0 0.00653435 -0.00425261 0.996157 0.0872357 uwb: 0.50046909 1225.89 902.718 +imu_odom_: 1691062498.612810221 0.725443 -0.174777 10.2855 -0.0543285 0.02024 0.0383495 0.25 0.02 pose: 0.0 0.811886 -3.85545 0 0.00653435 -0.00425261 0.996157 0.0872357 uwb: 0.0 1225.89 902.718 +imu_odom_: 1691062498.629807202 0.466869 -0.37589 9.92636 -0.0426106 0.00106526 0.0436758 0.25 0.02 pose: 0.41967357 0.802232 -3.85806 0 0.00873048 -0.002799 0.99617 0.0869508 uwb: 0.0 1225.89 902.718 +imu_odom_: 1691062498.653998321 0.148441 -0.191536 10.3573 -0.02024 -0.0106526 0.0340885 0.25 0.02 pose: 0.0 0.802232 -3.85806 0 0.00873048 -0.002799 0.99617 0.0869508 uwb: 0.49802516 1225.75 903.71 +imu_odom_: 1691062498.681149861 0.385466 -0.208296 9.79468 -0.052198 -0.036219 0.0447411 0.2 0 pose: 0.41022157 0.789967 -3.85102 0 0.00791258 -0.00274596 0.996178 0.0869423 uwb: 0.50134692 1225.76 904.403 +imu_odom_: 1691062498.704801448 0.426168 -0.323217 9.71088 -0.0458064 0.0213053 0.0468716 0.19 0 pose: 0.43295187 0.783084 -3.85288 0 0.00428724 -0.00119554 0.996206 0.0869142 uwb: 0.0 1225.76 904.403 +imu_odom_: 1691062498.731832250 0.220267 -0.0311246 9.72764 -0.0575243 -0.0149137 0.056459 0.19 0 pose: 0.0 0.783084 -3.85288 0 0.00428724 -0.00119554 0.996206 0.0869142 uwb: 0.49981290 1225.48 905.681 +imu_odom_: 1691062498.747910570 0.80924 -0.203507 9.76355 -0.0436758 -0.0340885 0.0458064 0.19 0 pose: 0.50682389 0.771687 -3.84868 0 0.00092558 -0.0008886260.996243 0.0865917 uwb: 0.0 1225.48 905.681 +imu_odom_: 1691062498.764877220 0.687136 -0.138864 10.07 -0.0713727 -0.0213053 0.0532632 0.19 0 pose: 0.0 0.771687 -3.84868 0 0.00092558 -0.0008886260.996243 0.0865917 uwb: 0.0 1225.48 905.681 +imu_odom_: 1691062498.790954656 0.641646 -0.155623 9.46428 -0.0788296 0.04048 0.0383495 0.19 0 pose: 0.33044970 0.768046 -3.84659 0 0.00454274 -0.0005213120.996247 0.0864295 uwb: 0.50017454 1225.49 906.828 +imu_odom_: 1691062498.816792365 0.459687 -0.567426 9.31584 -0.0884169 0.04048 0.0681769 0.19 0 pose: 0.8223621 0.768046 -3.84659 0 0.00513922 -0.0003622290.996244 0.0864362 uwb: 0.0 1225.49 906.828 +imu_odom_: 1691062498.841797738 0.215478 -0.380678 9.91678 -0.0117179 0.0106526 0.0127832 0.19 0 pose: 0.43691524 0.758396 -3.84922 0 0.00517161 -0.00289524 0.996272 0.0860694 uwb: 0.49838096 1225.96 908.475 +imu_odom_: 1691062498.867843385 0.433351 -0.354342 9.64624 -0.052198 -0.0447411 0.0553937 0.19 0 pose: 0.0 0.758396 -3.84922 0 0.00517161 -0.00289524 0.996272 0.0860694 uwb: 0.0 1225.96 908.475 +imu_odom_: 1691062498.891799152 0.593762 -0.246603 10.1323 -0.0276969 -0.0479369 0.0394148 0.2 0 pose: 0.8030848 0.758396 -3.84922 0 0.00435874 -0.00294998 0.996266 0.0861727 uwb: 0.50147524 1225.63 909.297 +imu_odom_: 1691062498.916848562 0.289698 -0.294487 10.1682 -0.0340885 0.0383495 0.0383495 0.19 0 pose: 0.50099988 0.746121 -3.84219 0 0.00303976 -0.00513447 0.996262 0.0861776 uwb: 0.0 1225.63 909.297 +imu_odom_: 1691062498.932818100 0.148441 -0.237026 10.0844 -0.0596548 -0.02024 0.0543285 0.19 0 pose: 0.0 0.746121 -3.84219 0 0.00303976 -0.00513447 0.996262 0.0861776 uwb: 0.50105237 1226.05 911.183 +imu_odom_: 1691062498.958987694 0.287304 -0.248997 9.68215 -0.0511327 -0.0266316 0.0383495 0.19 0 pose: 0.0 0.746121 -3.84219 0 0.00303976 -0.00513447 0.996262 0.0861776 uwb: 0.0 1226.05 911.183 +imu_odom_: 1691062498.984864774 0.227449 -0.122104 10.1801 -0.0585895 -0.00745685 0.04048 0.19 0 pose: 0.67201374 0.736472 -3.84482 0 -0.000240861-0.00312753 0.996284 0.0860735 uwb: 0.49929670 1225.75 911.982 +imu_odom_: 1691062499.785318 0.562637 -0.28491 9.47386 -0.0575243 0.00213053 0.0394148 0.19 0 pose: 0.0 0.736472 -3.84482 0 -0.000240861-0.00312753 0.996284 0.0860735 uwb: 0.0 1225.75 911.982 +imu_odom_: 1691062499.26942670 0.596156 -0.203507 9.93594 -0.0777643 0.00426106 0.0681769 0.21 0 pose: 0.23765035 0.726824 -3.84745 0 -0.00209169 -0.00207637 0.996284 0.0860729 uwb: 0.0 1225.75 911.982 +imu_odom_: 1691062499.51870475 0.380678 -0.227449 10.1921 -0.0639159 0.00532632 0.0287621 0.19 0 pose: 0.26931936 0.724195 -3.8378 0 -0.00255443 -0.0009130230.996286 0.0860607 uwb: 0.49968175 1225.93 913.497 +imu_odom_: 1691062499.75934446 0.253785 -0.332794 9.94312 -0.076699 0.00532632 0.0511327 0.19 0 pose: 0.0 0.724195 -3.8378 0 -0.00255443 -0.0009130230.996286 0.0860607 uwb: 0.0 1225.93 913.497 +imu_odom_: 1691062499.99762774 0.538695 -0.543484 9.69173 -0.0394148 0.0298274 0.0255663 0.18 0 pose: 0.42014321 0.714548 -3.84043 0 -0.000126285-0.0009950510.996318 0.0857346 uwb: 0.50151040 1225.81 913.77 +imu_odom_: 1691062499.116764426 0.670376 -0.229843 10.2783 -0.0490022 0.0117179 0.056459 0.18 0 pose: 0.0 0.714548 -3.84043 0 -0.000126285-0.0009950510.996318 0.0857346 uwb: 0.0 1225.81 913.77 +imu_odom_: 1691062499.141825802 0.924162 -0.186748 10.7141 -0.0436758 0.00213053 0.0319579 0.27 0.02 pose: 0.48024412 0.714548 -3.84043 0 -0.00358779 -0.00269007 0.996308 0.085739 uwb: 0.49757911 1225.51 914.563 +imu_odom_: 1691062499.164806628 0.828394 -0.409408 9.31584 -0.0809601 -0.0117179 0.0585895 0.27 0.02 pose: 0.0 0.714548 -3.84043 0 -0.00358779 -0.00269007 0.996308 0.085739 uwb: 0.0 1225.51 914.563 +imu_odom_: 1691062499.190905070 0.277727 -0.296881 9.83538 -0.0340885 0.0607201 0.0266316 0.19 0 pose: 0.40915721 0.702266 -3.83342 0 -0.000752074-0.00357125 0.996309 0.0857589 uwb: 0.49977223 1225.15 915.149 +imu_odom_: 1691062499.216894731 0.457293 -0.414197 9.24401 -0.0830906 0.0234358 0.0447411 0.19 0 pose: 0.0 0.702266 -3.83342 0 -0.000752074-0.00357125 0.996309 0.0857589 uwb: 0.0 1225.15 915.149 +imu_odom_: 1691062499.232810321 0.373495 -0.301669 10.0509 -0.0426106 0.0149137 0.0383495 0.19 0 pose: 0.93118731 0.681072 -3.83173 0 0.000131186 -0.00672806 0.996297 0.0857194 uwb: 0.49991805 1224.41 915.874 +imu_odom_: 1691062499.258751278 0.430956 0.023942 10.4387 -0.0628506 -0.0255663 0.0490022 0.19 0 pose: 0.0 0.681072 -3.83173 0 0.000131186 -0.00672806 0.996297 0.0857194 uwb: 0.0 1224.41 915.874 +imu_odom_: 1691062499.283813529 0.672771 -0.0622492 10.058 -0.0372843 -0.00958738 0.0308927 0.19 0.02 pose: 0.6933123 0.680338 -3.82905 0 -0.000364374-0.00613704 0.9963 0.0857216 uwb: 0.49945435 1224.63 917.352 +imu_odom_: 1691062499.309821271 0.596156 -0.325611 9.93594 -0.0479369 0.0255663 0.0447411 0.21 0 pose: 0.41940539 0.670691 -3.83168 0 0.000380216 -0.00249671 0.996323 0.0856341 uwb: 0.0 1224.63 917.352 +imu_odom_: 1691062499.325747069 -0.0742203 -0.158017 9.89524 -0.0276969 -0.00106526 0.0372843 0.19 0 pose: 0.0 0.670691 -3.83168 0 0.000380216 -0.00249671 0.996323 0.0856341 uwb: 0.0 1224.63 917.352 +imu_odom_: 1691062499.342742597 0.531513 -0.162806 9.64145 -0.0607201 -0.00532632 0.0532632 0.19 0 pose: 0.0 0.670691 -3.83168 0 0.000380216 -0.00249671 0.996323 0.0856341 uwb: 0.49993263 1224.4 918.103 +imu_odom_: 1691062499.367903129 1.15879 -0.265756 9.68933 -0.0468716 0.0181095 0.0340885 0.18 0.02 pose: 0.51006124 0.661045 -3.83432 0 0.00303949 -0.00242592 0.996317 0.0856557 uwb: 0.0 1224.4 918.103 +imu_odom_: 1691062499.394853448 0.342371 -0.440533 9.63427 -0.0692422 0.0234358 0.0617853 0.18 0.02 pose: 0.0 0.661045 -3.83432 0 0.00303949 -0.00242592 0.996317 0.0856557 uwb: 0.50171454 1224.54 919.381 +imu_odom_: 1691062499.410749207 0.536301 -0.363919 10.0868 -0.0436758 0.0106526 0.0298274 0.19 0 pose: 0.78078931 0.648761 -3.82731 0 0.00342345 -0.00331765 0.996343 0.0853129 uwb: 0.0 1224.54 919.381 +imu_odom_: 1691062499.435788709 0.684742 -0.414197 9.67257 -0.0692422 -0.0340885 0.0703074 0.19 0 pose: 0.6939830 0.648761 -3.82731 0 0.00371021 -0.00388119 0.996337 0.0853454 uwb: 0.49947476 1224.46 920.292 +imu_odom_: 1691062499.458800157 0.699107 -0.260968 9.69412 -0.0351537 0.0266316 0.0287621 0.19 0 pose: 0.33995431 0.641836 -3.82921 0 0.00646195 -0.00628686 0.99634 0.0850047 uwb: 0.0 1224.46 920.292 +imu_odom_: 1691062499.474790115 0.304064 -0.280122 10.2927 -0.0617853 0.0234358 0.0575243 0.19 0 pose: 0.0 0.641836 -3.82921 0 0.00646195 -0.00628686 0.99634 0.0850047 uwb: 0.0 1224.46 920.292 +imu_odom_: 1691062499.490782699 0.514753 -0.344765 10.0126 -0.052198 -0.0181095 0.036219 0.25 0 pose: 0.0 0.641836 -3.82921 0 0.00646195 -0.00628686 0.99634 0.0850047 uwb: 0.49914229 1223.7 920.561 +imu_odom_: 1691062499.515776997 0.562637 -0.282516 9.94551 -0.0649811 0.00426106 0.0532632 0.25 0 pose: 0.45941237 0.636468 -3.82032 0 0.00616708 -0.00565003 0.996345 0.0850058 uwb: 0.0 1223.7 920.561 +imu_odom_: 1691062499.539719355 0.337582 -0.397437 9.34696 -0.0383495 0.0234358 0.0266316 0.2 0 pose: 0.0 0.636468 -3.82032 0 0.00616708 -0.00565003 0.996345 0.0850058 uwb: 0.49940477 1223.69 921.445 +imu_odom_: 1691062499.564767024 0.533907 -0.308852 9.95509 -0.0617853 -0.0138484 0.0490022 0.2 0 pose: 0.41012838 0.626825 -3.82297 0 0.00654898 -0.00485914 0.996356 0.0849053 uwb: 0.0 1223.69 921.445 +imu_odom_: 1691062499.587717519 0.395043 0.0047884 10.1323 -0.0490022 -0.0234358 0.036219 0.18 0.02 pose: 0.42024240 0.617183 -3.82562 0 0.00738191 -0.00541653 0.996348 0.0848977 uwb: 0.50000554 1223.92 922.679 +imu_odom_: 1691062499.612845680 0.672771 -0.234632 9.92636 -0.0777643 -0.0468716 0.0479369 0.18 0.02 pose: 0.7020614 0.617183 -3.82562 0 0.00717945 -0.00475142 0.996351 0.0849126 uwb: 0.0 1223.92 922.679 +imu_odom_: 1691062499.628713442 0.447716 -0.0095768110.0054 -0.0500674 0.0426106 0.0319579 0.22 0 pose: 0.0 0.617183 -3.82562 0 0.00717945 -0.00475142 0.996351 0.0849126 uwb: 0.0 1223.92 922.679 +imu_odom_: 1691062499.643901394 0.380678 -0.047884 9.55047 -0.0607201 0.00745685 0.0479369 0.22 0 pose: 0.47930504 0.604889 -3.81863 0 0.0092521 -0.00253775 0.996345 0.0848827 uwb: 0.49986847 1223.27 922.684 +imu_odom_: 1691062499.667847252 0.438139 -0.383072 9.40442 -0.0756338 -0.00852212 0.0372843 0.21 0 pose: 0.0 0.604889 -3.81863 0 0.0092521 -0.00253775 0.996345 0.0848827 uwb: 0.0 1223.27 922.684 +imu_odom_: 1691062499.692696314 0.399832 -0.318429 9.63187 -0.0500674 -0.0223706 0.0532632 0.21 0 pose: 0.30999136 0.604889 -3.81863 0 0.00716341 -0.00118345 0.996365 0.0848748 uwb: 0.50247864 1223.05 923.85 +imu_odom_: 1691062499.714820598 0.486023 -0.368707 9.72046 -0.0490022 -0.00426106 0.0394148 0.18 0 pose: 0.0 0.604889 -3.81863 0 0.00716341 -0.00118345 0.996365 0.0848748 uwb: 0.0 1223.05 923.85 +imu_odom_: 1691062499.737702558 0.42138 -0.229843 9.76355 -0.0628506 -0.0117179 0.0436758 0.18 0 pose: 0.47995831 0.595248 -3.82128 0 0.00401808 -0.0041823 0.99639 0.0847012 uwb: 0.49931144 1222.98 924.526 +imu_odom_: 1691062499.753768343 0.505177 -0.100556 9.65582 -0.0500674 -0.0127832 0.0287621 0.19 0 pose: 0.0 0.595248 -3.82128 0 0.00401808 -0.0041823 0.99639 0.0847012 uwb: 0.0 1222.98 924.526 +imu_odom_: 1691062499.775696645 0.251391 -0.124498 9.44991 -0.0394148 -0.00852212 0.0340885 0.19 0 pose: 0.45994316 0.582951 -3.8143 0 0.00299806 -0.00319514 0.996398 0.08469 uwb: 0.0 1222.98 924.526 +imu_odom_: 1691062499.801720428 0.158017 -0.28491 10.0365 -0.0575243 -0.0340885 0.0447411 0.18 0.02 pose: 0.0 0.582951 -3.8143 0 0.00299806 -0.00319514 0.996398 0.08469 uwb: 0.49999096 1223.08 925.791 +imu_odom_: 1691062499.818733162 0.440533 -0.0502782 9.93354 -0.0426106 0.0330232 0.0436758 0.18 0.02 pose: 0.39010447 0.57331 -3.81695 0 0.000914408 -0.0009825240.996399 0.0847806 uwb: 0.0 1223.08 925.791 +imu_odom_: 1691062499.843732127 0.761356 0.00957681 9.87369 -0.0692422 0.00958738 0.0351537 0.18 0.02 pose: 0.0 0.57331 -3.81695 0 0.000914408 -0.0009825240.996399 0.0847806 uwb: 0.49815072 1222.54 925.537 +imu_odom_: 1691062499.870814558 0.557849 -0.304064 9.73961 -0.0479369 -0.00745685 0.0372843 0.18 0.02 pose: 0.43042641 0.57331 -3.81695 0 0.000297907 0.000812824 0.996405 0.084715 uwb: 0.0 1222.54 925.537 +imu_odom_: 1691062499.895697742 0.28491 -0.332794 9.84017 -0.036219 0.0255663 0.0276969 0.18 0.02 pose: 0.44054045 0.561013 -3.80997 0 0.00354245 -0.0005054130.996394 0.0847756 uwb: 0.50025635 1222.4 926.664 +imu_odom_: 1691062499.922858040 0.861913 -0.105345 10.2304 -0.0575243 -0.00213053 0.056459 0.18 0.02 pose: 0.7923527 0.561013 -3.80997 0 0.00272103 -0.0007731050.996392 0.0848208 uwb: 0.0 1222.4 926.664 +imu_odom_: 1691062499.938698388 0.311246 -0.1652 9.8689 -0.0511327 0.0255663 0.0276969 0.19 -0.02 pose: 0.0 0.561013 -3.80997 0 0.00272103 -0.0007731050.996392 0.0848208 uwb: 0.49959725 1221.77 926.656 +imu_odom_: 1691062499.964662968 0.490811 -0.407014 9.55047 -0.0585895 -0.02024 0.0479369 0.19 -0.02 pose: 0.44119955 0.551372 -3.81262 0 0.00358878 -0.0007952940.9964 0.0846929 uwb: 0.0 1221.77 926.656 +imu_odom_: 1691062499.987677332 0.316035 -0.227449 9.74679 -0.0234358 0.00745685 0.0351537 0.19 -0.02 pose: 0.41804928 0.542405 -3.80753 0 0.00257087 -0.00269529 0.996402 0.084675 uwb: 0.0 1221.77 926.656 +imu_odom_: 1691062500.11724974 -0.0167594 -0.134075 9.33739 -0.0671117 -0.00532632 0.056459 0.19 -0.02 pose: 0.7039571 0.539075 -3.80563 0 0.00187222 -0.00235396 0.996403 0.0846893 uwb: 0.0 1221.77 926.656 +imu_odom_: 1691062500.27664484 1.01275 0.0526724 10.6015 -0.0426106 -0.092678 0.0383495 0.25 0 pose: 0.23042945 0.539075 -3.80563 0 -0.000380866-0.0013888 0.996409 0.0846612 uwb: 0.0 1221.77 926.656 +imu_odom_: 1691062500.43701110 1.36948 -0.28491 9.31823 -0.0479369 -0.0745685 0.0756338 0.25 0 pose: 0.0 0.539075 -3.80563 0 -0.000380866-0.0013888 0.996409 0.0846612 uwb: 0.99986535 1221.64 927.556 +imu_odom_: 1691062500.59710321 0.988805 -0.445322 9.07881 -0.0511327 0.0575243 0.113983 0.18 0.2 pose: 0.23930406 0.529435 -3.80829 0 -0.00101731 -0.00068337 0.996421 0.0845203 uwb: 0.0 1221.64 927.556 +imu_odom_: 1691062500.75709617 1.36469 -0.258574 10.3573 -0.0458064 -0.015979 0.171508 0.18 0.2 pose: 0.0 0.529435 -3.80829 0 -0.00101731 -0.00068337 0.996421 0.0845203 uwb: 0.0 1221.64 927.556 +imu_odom_: 1691062500.91728452 1.23541 -0.588974 9.50019 -0.0735032 -0.00745685 0.298274 0.18 0.2 pose: 0.0 0.529435 -3.80829 0 -0.00101731 -0.00068337 0.996421 0.0845203 uwb: 0.50042274 1221.53 928.661 +imu_odom_: 1691062500.107712291 1.86508 -0.577003 9.97424 -0.0628506 0.056459 0.379234 0.13 0.32 pose: 0.73052562 0.518419 -3.8057 0 0.00640219 -0.00233749 0.996729 0.0805247 uwb: 0.0 1221.53 928.661 +imu_odom_: 1691062500.123701963 1.2378 -0.675165 9.94791 -0.0468716 0.0149137 0.428236 0.13 0.32 pose: 0.0 0.518419 -3.8057 0 0.00640219 -0.00233749 0.996729 0.0805247 uwb: 0.0 1221.53 928.661 +imu_odom_: 1691062500.140648209 1.08457 -0.102951 9.57441 -0.0436758 -0.00532632 0.432497 0.13 0.32 pose: 0.0 0.518419 -3.8057 0 0.00640219 -0.00233749 0.996729 0.0805247 uwb: 0.50002320 1221.34 929.786 +imu_odom_: 1691062500.156646630 1.04387 -0.047884 9.85693 -0.0458064 0.00426106 0.448476 0.14 0.55 pose: 0.7987399 0.517191 -3.8012 0 0.00691407 -0.00260877 0.996833 0.079173 uwb: 0.0 1221.34 929.786 +imu_odom_: 1691062500.173692617 0.452504 -0.11971 9.61272 -0.0671117 0.0255663 0.52198 0.09 0.47 pose: 0.0 0.517191 -3.8012 0 0.00691407 -0.00260877 0.996833 0.079173 uwb: 0.0 1221.34 929.786 +imu_odom_: 1691062500.190717022 0.773327 -0.641646 10.3645 -0.0585895 0 0.591222 0.09 0.47 pose: 0.64996046 0.507521 -3.80375 0 0.0108845 -0.00216025 0.997744 0.066217 uwb: 0.49960907 1220.88 930.357 +imu_odom_: 1691062500.206650116 0.663194 -0.368707 9.72285 -0.0319579 -0.00319579 0.609331 0.09 0.53 pose: 0.0 0.507521 -3.80375 0 0.0108845 -0.00216025 0.997744 0.066217 uwb: 0.0 1220.88 930.357 +imu_odom_: 1691062500.223712726 0.960075 -0.31364 10.2615 -0.0490022 0.00745685 0.621049 0.09 0.53 pose: 0.0 0.507521 -3.80375 0 0.0108845 -0.00216025 0.997744 0.066217 uwb: 0.0 1220.88 930.357 +imu_odom_: 1691062500.239772683 0.682347 0.124498 9.97185 -0.052198 0.00426106 0.629571 0.09 0.53 pose: 0.33949070 0.507521 -3.80375 0 0.0108644 -0.00398994 0.998302 0.0570932 uwb: 0.50289875 1220.87 931.206 +imu_odom_: 1691062500.265704024 0.684742 -0.306458 10.137 -0.0500674 0.00958738 0.607201 0.1 0.73 pose: 0.41111716 0.507509 -3.80372 0 0.0128442 -0.00326026 0.998892 0.0451539 uwb: 0.0 1220.87 931.206 +imu_odom_: 1691062500.282712681 0.00718261 -0.114922 9.88805 -0.0575243 0.0756338 0.600809 0.1 0.73 pose: 0.7948611 0.507521 -3.80375 0 0.0131411 -0.00397632 0.998985 0.0428922 uwb: 0.50050440 1220.66 932.117 +imu_odom_: 1691062500.298636443 -0.59855 -0.354342 10.3166 -0.0681769 0.0884169 0.558199 0.11 0.64 pose: 0.0 0.507521 -3.80375 0 0.0131411 -0.00397632 0.998985 0.0428922 uwb: 0.0 1220.66 932.117 +imu_odom_: 1691062500.314636030 -0.88346 0.0143652 10.2185 -0.0394148 -0.0106526 0.462325 0.1 0.38 pose: 0.50915149 0.502167 -3.80514 0 0.00913942 -0.00523707 0.999527 0.0288786 uwb: 0.0 1220.66 932.117 +imu_odom_: 1691062500.330646408 -0.332794 -0.0981623 9.92875 -0.0585895 -0.0468716 0.393083 0.11 0.41 pose: 0.0 0.502167 -3.80514 0 0.00913942 -0.00523707 0.999527 0.0288786 uwb: 0.0 1220.66 932.117 +imu_odom_: 1691062500.347709602 0.581791 -0.222661 10.4004 -0.0511327 -0.0884169 0.354733 0.11 0.41 pose: 0.0 0.502167 -3.80514 0 0.00913942 -0.00523707 0.999527 0.0288786 uwb: 0.49862625 1220.23 932.668 +imu_odom_: 1691062500.364650890 0.442927 -0.134075 9.79228 -0.056459 0.00958738 0.328101 0.15 0.44 pose: 0.23069491 0.497871 -3.80637 0 0.00708441 -0.00459522 0.99967 0.024241 uwb: 0.0 1220.23 932.668 +imu_odom_: 1691062500.380707347 0.610521 -0.268151 10.2065 -0.052198 0.0447411 0.329167 0.15 0.44 pose: 0.0 0.497871 -3.80637 0 0.00708441 -0.00459522 0.99967 0.024241 uwb: 0.49791756 1220.07 932.929 +imu_odom_: 1691062500.396688561 0.0502782 -0.308852 9.77074 -0.0426106 0.0127832 0.316384 0.15 0.44 pose: 0.33064239 0.497871 -3.80637 0 0.00748046 -0.00239904 0.999789 0.0189649 uwb: 0.0 1220.07 932.929 +imu_odom_: 1691062500.413701009 0.227449 -0.280122 10.1634 -0.056459 -0.0276969 0.317449 0.12 0.23 pose: 0.41918388 0.486854 -3.80378 0 0.00617104 -0.00221814 0.999894 0.0130026 uwb: 0.0 1220.07 932.929 +imu_odom_: 1691062500.430626258 0.296881 -0.158017 9.86411 -0.0649811 -0.0245011 0.295078 0.12 0.23 pose: 0.7945403 0.485603 -3.7993 0 0.00546805 -0.00227974 0.999912 0.0118967 uwb: 0.49942826 1219.88 934.45 +imu_odom_: 1691062500.446645968 0.562637 -0.241814 10.1155 -0.0330232 -0.015979 0.264186 0.12 0.23 pose: 0.0 0.485603 -3.7993 0 0.00546805 -0.00227974 0.999912 0.0118967 uwb: 0.0 1219.88 934.45 +imu_odom_: 1691062500.462635057 0.481235 -0.0383072 9.79468 -0.0490022 -0.0319579 0.273773 0.18 0.29 pose: 0.42012004 0.485603 -3.7993 0 0.00502589 -0.0014035 0.999964 0.00667579 uwb: 0.0 1219.88 934.45 +imu_odom_: 1691062500.478627353 0.19393 -0.19393 10.2089 -0.0543285 -0.0181095 0.264186 0.13 0.17 pose: 0.0 0.485603 -3.7993 0 0.00502589 -0.0014035 0.999964 0.00667579 uwb: 0.0 1219.88 934.45 +imu_odom_: 1691062500.494631315 0.474052 -0.136469 10.1418 -0.0394148 0.00319579 0.245011 0.13 0.17 pose: 0.0 0.485603 -3.7993 0 0.00502589 -0.0014035 0.999964 0.00667579 uwb: 0.50067646 1219.59 935.372 +imu_odom_: 1691062500.510627111 0.423774 -0.349553 9.8258 -0.0639159 -0.00426106 0.247141 0.13 0.17 pose: 0.24004485 0.475959 -3.80194 0 0.00435927 0.000273083 0.999983 0.0039111 uwb: 0.0 1219.59 935.372 +imu_odom_: 1691062500.526625532 0.0957681 -0.509965 9.39245 -0.0639159 0.00106526 0.238619 0.14 0.17 pose: 0.0 0.475959 -3.80194 0 0.00435927 0.000273083 0.999983 0.0039111 uwb: 0.0 1219.59 935.372 +imu_odom_: 1691062500.542621328 0.723049 -0.203507 9.77074 -0.0319579 -0.0511327 0.239684 0.14 0.17 pose: 0.0 0.475959 -3.80194 0 0.00435927 0.000273083 0.999983 0.0039111 uwb: 0.49995612 1219.87 936.952 +imu_odom_: 1691062500.558627915 0.653617 -0.220267 9.40921 -0.0756338 -0.0255663 0.28123 0.16 0.2 pose: 0.71970875 0.466314 -3.80458 0 0.00380458 -0.0003488760.999987 -0.00348145 uwb: 0.0 1219.87 936.952 +imu_odom_: 1691062500.574619920 0.749385 -0.0742203 10.0006 -0.0777643 -0.0223706 0.340885 0.16 0.2 pose: 0.0 0.466314 -3.80458 0 0.00380458 -0.0003488760.999987 -0.00348145 uwb: 0.0 1219.87 936.952 +imu_odom_: 1691062500.590616299 1.39821 -0.658405 9.77313 -0.0383495 -0.0649811 0.315318 0.16 0.2 pose: 0.0 0.466314 -3.80458 0 0.00380458 -0.0003488760.999987 -0.00348145 uwb: 0.49927660 1219.8 939.038 +imu_odom_: 1691062500.606611803 1.34075 0.0407014 9.60075 -0.036219 0 0.232228 0.1 0.14 pose: 0.7011576 0.466314 -3.80458 0 0.00458054 -0.0004162170.99998 -0.00432807 uwb: 0.0 1219.8 939.038 +imu_odom_: 1691062500.622668844 1.49877 0.215478 10.3382 -0.0607201 0 0.218379 0.1 0.14 pose: 0.0 0.466314 -3.80458 0 0.00458054 -0.0004162170.99998 -0.00432807 uwb: 0.0 1219.8 939.038 +imu_odom_: 1691062500.639613632 0.842759 -0.373495 9.56484 -0.0713727 0.0106526 0.18003 0.1 0.14 pose: 0.0 0.466314 -3.80458 0 0.00458054 -0.0004162170.99998 -0.00432807 uwb: 0.49999987 1219.22 938.992 +imu_odom_: 1691062500.656737778 0.737414 -0.342371 9.991 -0.0511327 -0.00319579 0.131028 0.11 0.17 pose: 0.48988876 0.466314 -3.80458 0 0.00971153 -8.74587e-050.999895 -0.010797 uwb: 0.0 1219.22 938.992 +imu_odom_: 1691062500.672728324 0.565032 -0.289698 9.72764 -0.0500674 -0.00958738 0.132093 0.07 0.11 pose: 0.0 0.466314 -3.80458 0 0.00971153 -8.74587e-050.999895 -0.010797 uwb: 0.0 1219.22 938.992 +imu_odom_: 1691062500.688736078 0.818817 -0.0430956 10.1849 -0.056459 -0.00213053 0.143811 0.07 0.11 pose: 0.66110688 0.456677 -3.80725 0 0.013275 -0.00195606 0.999792 -0.0153704 uwb: 0.50254878 1219.59 940.333 +imu_odom_: 1691062500.706779760 0.675165 -0.229843 9.76834 -0.0585895 -0.0149137 0.174703 0.06 0.14 pose: 0.0 0.456677 -3.80725 0 0.013275 -0.00195606 0.999792 -0.0153704 uwb: 0.0 1219.59 940.333 +imu_odom_: 1691062500.723666512 0.665588 -0.28491 9.88326 -0.0500674 0.00426106 0.165116 0.06 0.14 pose: 0.0 0.456677 -3.80725 0 0.013275 -0.00195606 0.999792 -0.0153704 uwb: 0.0 1219.59 940.333 +imu_odom_: 1691062500.748649153 0.792481 -0.117316 9.85693 -0.0490022 -0.00958738 0.164051 0.06 0.14 pose: 0.32995995 0.456677 -3.80725 0 0.0142804 -0.00049688 0.999751 -0.0171613 uwb: 0.49883331 1219.63 940.94 +imu_odom_: 1691062500.775616103 0.136469 -0.222661 9.76834 -0.0596548 0.0490022 0.105461 0.05 0.08 pose: 0.33930406 0.453983 -3.79762 0 0.0148142 -0.0009019020.999703 -0.0193367 uwb: 0.0 1219.63 940.94 +imu_odom_: 1691062500.791685392 -0.181959 0.00718261 10.1179 -0.0500674 0.0245011 -0.0191748 0.05 0.08 pose: 0.0 0.453983 -3.79762 0 0.0148142 -0.0009019020.999703 -0.0193367 uwb: 0.49778050 1219.12 941.691 +imu_odom_: 1691062500.818626386 -1.04387 -0.189142 10.2065 -0.072438 0.00426106 0.0841559 0.07 0.11 pose: 0.52097160 0.444364 -3.80036 0 0.011605 0.000483375 0.999712 -0.0210212 uwb: 0.0 1219.12 941.691 +imu_odom_: 1691062500.843730349 0.234632 -0.907402 9.85214 -0.036219 -0.0745685 0.107592 0.09 0.05 pose: 0.34870357 0.444364 -3.80036 0 0.00791645 0.000423607 0.99974 -0.0213831 uwb: 0.50010194 1218.97 942.141 +imu_odom_: 1691062500.870710714 0.632069 0.174777 9.65103 -0.0500674 -0.0330232 0.152333 0.09 0.05 pose: 0.0 0.444364 -3.80036 0 0.00791645 0.000423607 0.99974 -0.0213831 uwb: 0.0 1218.97 942.141 +imu_odom_: 1691062500.886776212 0.0957681 0.0287304 9.44991 -0.0745685 0.0191748 0.134223 0.12 0.02 pose: 0.8041061 0.444364 -3.80036 0 0.00787565 -0.0002324020.999734 -0.0216627 uwb: 0.50112267 1218.7 943.234 +imu_odom_: 1691062500.913613966 0.047884 -0.21069 9.63187 -0.036219 -0.0298274 0.0639159 0.12 0.02 pose: 0.0 0.444364 -3.80036 0 0.00787565 -0.0002324020.999734 -0.0216627 uwb: 0.0 1218.7 943.234 +imu_odom_: 1691062500.939696376 0.61531 -0.40462 10.2376 -0.0607201 0.0106526 0.110787 0.12 0.02 pose: 0.52062163 0.434734 -3.80305 0 0.00779931 0.0013574 0.999677 -0.0241315 uwb: 0.49832586 1218.64 944.062 +imu_odom_: 1691062500.966926676 0.229843 -0.237026 9.78031 -0.0553937 0.0127832 0.103331 0.18 0.05 pose: 0.42985494 0.434734 -3.80305 0 0.00497274 0.000946588 0.999671 -0.0251254 uwb: 0.0 1218.64 944.062 +imu_odom_: 1691062500.982585046 0.124498 -0.107739 10.1562 -0.0596548 0.0149137 0.0948085 0.13 0.02 pose: 0.0 0.434734 -3.80305 0 0.00497274 0.000946588 0.999671 -0.0251254 uwb: 0.50116059 1218.62 944.473 +imu_odom_: 1691062501.9574746 0.608127 -0.21069 9.96946 -0.0575243 -0.0351537 0.0905475 0.13 0.02 pose: 0.52918706 0.425099 -3.80573 0 0.00196316 -0.0005869140.999637 -0.026857 uwb: 0.0 1218.62 944.473 +imu_odom_: 1691062501.35580171 0.19393 -0.25618 9.75398 -0.0820254 0.0308927 0.113983 0.19 0.08 pose: 0.0 0.425099 -3.80573 0 0.00196316 -0.0005869140.999637 -0.026857 uwb: 0.50037616 1218.12 944.803 +imu_odom_: 1691062501.62584751 0.560243 -0.059855 9.86172 -0.0735032 -0.00639159 0.0873517 0.19 0.02 pose: 0.60946361 0.418193 -3.80766 0 0.00122518 -0.0008871910.999586 -0.0287303 uwb: 0.0 1218.12 944.803 +imu_odom_: 1691062501.87580815 0.553061 -0.280122 10.3908 -0.0841559 0.00852212 0.092678 0.19 0.02 pose: 0.0 0.418193 -3.80766 0 0.00122518 -0.0008871910.999586 -0.0287303 uwb: 0.49938174 1218.04 945.432 +imu_odom_: 1691062501.114691551 0.189142 -0.117316 10.0221 -0.0553937 0 0.0692422 0.18 0.05 pose: 0.7003996 0.415471 -3.80843 0 0.00164765 -0.0003839730.999581 -0.0288964 uwb: 0.0 1218.04 945.432 +imu_odom_: 1691062501.130679186 0.687136 -0.0622492 10.1945 -0.0532632 -0.0223706 0.0905475 0.18 0.05 pose: 0.0 0.415471 -3.80843 0 0.00164765 -0.0003839730.999581 -0.0288964 uwb: 0.50008168 1218.11 946.021 +imu_odom_: 1691062501.157566236 0.656011 -0.158017 10.2065 -0.04048 -0.015979 0.0468716 0.21 0.02 pose: 0.52022808 0.412737 -3.79881 0 0.00389773 -0.0007366980.999538 -0.0301433 uwb: 0.0 1218.11 946.021 +imu_odom_: 1691062501.183585076 0.373495 0.0047884 9.73482 -0.0671117 -0.0287621 0.0884169 0.21 0.02 pose: 0.0 0.412737 -3.79881 0 0.00389773 -0.0007366980.999538 -0.0301433 uwb: 0.49981046 1218.34 947.578 +imu_odom_: 1691062501.210649734 0.124498 -0.387861 9.44513 -0.0575243 0.0308927 0.0575243 0.2 0.05 pose: 0.42971217 0.403123 -3.80156 0 0.00413917 0.00108214 0.999514 -0.0308704 uwb: 0.0 1218.34 947.578 +imu_odom_: 1691062501.235569388 0.691924 -0.186748 10.0126 -0.0500674 -0.0127832 0.076699 0.16 0 pose: 0.53078540 0.393486 -3.80423 0 0.00413145 0.00316957 0.999486 -0.0316254 uwb: 0.50095951 1218.66 949.114 +imu_odom_: 1691062501.262893312 0.926556 -0.23942 10.3046 -0.0447411 -0.0490022 0.0479369 0.16 0 pose: 0.0 0.393486 -3.80423 0 0.00413145 0.00316957 0.999486 -0.0316254 uwb: 0.0 1218.66 949.114 +imu_odom_: 1691062501.278723754 0.711078 -0.071826 9.89524 -0.0415453 0.0394148 0.056459 0.17 0 pose: 0.72236580 0.383855 -3.80692 0 0.00805002 0.00189688 0.999441 -0.0323926 uwb: 0.0 1218.66 949.114 +imu_odom_: 1691062501.295722501 0.169988 -0.347159 9.56244 -0.0553937 0.0170442 0.0703074 0.17 0 pose: 0.8037564 0.383855 -3.80692 0 0.00850286 0.00244588 0.999434 -0.0324582 uwb: 0.49915718 1219.15 950.41 +imu_odom_: 1691062501.321604563 0.433351 -0.117316 9.65582 -0.0415453 -0.0458064 0.0543285 0.16 0.02 pose: 0.0 0.383855 -3.80692 0 0.00850286 0.00244588 0.999434 -0.0324582 uwb: 0.0 1219.15 950.41 +imu_odom_: 1691062501.348539733 0.502782 -0.363919 10.489 -0.0681769 -0.0692422 0.0756338 0.16 0.02 pose: 0.24791625 0.374226 -3.80962 0 0.00723695 0.00221694 0.999434 -0.0327859 uwb: 0.50024500 1219.28 950.984 +imu_odom_: 1691062501.374695644 0.605733 0.0861913 10.6781 -0.0415453 -0.0426106 0.0500674 0.17 0.02 pose: 0.52817232 0.367371 -3.81155 0 0.00623358 0.000737371 0.99942 -0.0334593 uwb: 0.0 1219.28 950.984 +imu_odom_: 1691062501.401600775 0.555455 -0.31364 10.1227 -0.0426106 -0.0308927 0.0458064 0.17 0.02 pose: 0.0 0.367371 -3.81155 0 0.00623358 0.000737371 0.99942 -0.0334593 uwb: 0.49955964 1219.73 952.491 +imu_odom_: 1691062501.426693371 0.42138 -0.0383072 10.0892 -0.0287621 0.0223706 0.0500674 0.19 0 pose: 0.33038877 0.361881 -3.80271 0 0.00739626 0.00285754 0.999404 -0.0336078 uwb: 0.0 1219.73 952.491 +imu_odom_: 1691062501.453621250 0.344765 -0.42138 9.72285 -0.0458064 0.00852212 0.0500674 0.19 0 pose: 0.45114761 0.352258 -3.80543 0 0.0057486 0.00317113 0.999407 -0.0338037 uwb: 0.49978421 1219.91 952.856 +imu_odom_: 1691062501.479626092 0.442927 -0.0790087 9.77074 -0.056459 -0.0223706 0.0596548 0.19 0 pose: 0.0 0.352258 -3.80543 0 0.0057486 0.00317113 0.999407 -0.0338037 uwb: 0.0 1219.91 952.856 +imu_odom_: 1691062501.506519266 0.665588 -0.390255 9.54329 -0.0639159 0.0191748 0.0319579 0.21 0 pose: 0.52932721 0.342637 -3.80815 0 0.00348279 0.0034001 0.999403 -0.0342049 uwb: 0.50067954 1219.97 953.244 +imu_odom_: 1691062501.522512151 0.275333 -0.0981623 9.84496 -0.056459 0.0340885 0.0543285 0.21 0 pose: 0.6920004 0.342637 -3.80815 0 0.00385997 0.00284741 0.999404 -0.034182 uwb: 0.0 1219.97 953.244 +imu_odom_: 1691062501.548600693 0.222661 -0.493206 9.95988 -0.056459 0.0106526 0.0490022 0.22 0 pose: 0.35966055 0.333017 -3.81089 0 0.00315005 0.00180647 0.999407 -0.0342297 uwb: 0.49931466 1219.99 953.84 +imu_odom_: 1691062501.571589408 -0.0023942 0.0454898 9.90721 -0.0340885 0.0543285 0.052198 0.22 0 pose: 0.0 0.333017 -3.81089 0 0.00315005 0.00180647 0.999407 -0.0342297 uwb: 0.0 1219.99 953.84 +imu_odom_: 1691062501.588610319 0.100556 -0.493206 9.43076 -0.0681769 0.00745685 0.0660464 0.18 0.02 pose: 0.7066114 0.333017 -3.81089 0 0.00268202 0.00122925 0.999408 -0.0342642 uwb: 0.50061830 1219.75 952.891 +imu_odom_: 1691062501.614528253 0.102951 -0.023942 9.90481 -0.036219 0.00639159 0.036219 0.18 0.02 pose: 0.0 0.333017 -3.81089 0 0.00268202 0.00122925 0.999408 -0.0342642 uwb: 0.0 1219.75 952.891 +imu_odom_: 1691062501.641576578 0.253785 -0.395043 10.0628 -0.0436758 -0.0394148 0.0596548 0.22 0.02 pose: 0.48970518 0.333017 -3.81089 0 -0.00175351 0.000466038 0.9994 -0.034592 uwb: 0.49930300 1220.23 954.992 +imu_odom_: 1691062501.666585183 0.270545 0.0790087 10.0868 -0.0553937 -0.00106526 0.0532632 0.18 -0.02 pose: 0.42992798 0.333017 -3.81089 0 -0.00475579 0.000768789 0.999384 -0.03475 uwb: 0.0 1220.23 954.992 +imu_odom_: 1691062501.693623884 0.035913 -0.134075 9.85932 -0.0639159 0.02024 0.0372843 0.23 0 pose: 0.0 0.333017 -3.81089 0 -0.00475579 0.000768789 0.999384 -0.03475 uwb: 0.50006710 1220.12 955.016 +imu_odom_: 1691062501.718669235 0.536301 -0.0407014 10.0293 -0.0468716 -0.00852212 0.0490022 0.18 0.02 pose: 0.52014934 0.320657 -3.80401 0 -0.00603804 0.00148779 0.999364 -0.035115 uwb: 0.0 1220.12 955.016 +imu_odom_: 1691062501.735579323 0.833182 -0.347159 9.73961 -0.0692422 -0.0276969 0.0351537 0.18 0.02 pose: 0.0 0.320657 -3.80401 0 -0.00603804 0.00148779 0.999364 -0.035115 uwb: 0.50039956 1220.06 955.826 +imu_odom_: 1691062501.760570138 0.454898 -0.409408 9.40921 -0.0756338 -0.00745685 0.0500674 0.18 0 pose: 0.27991777 0.311043 -3.80677 0 -0.00754141 0.00207908 0.999352 -0.0351322 uwb: 0.0 1220.06 955.826 +imu_odom_: 1691062501.787525722 0.897826 -0.45011 9.74679 -0.036219 -0.0319579 0.0308927 0.18 0 pose: 0.42140921 0.301429 -3.80952 0 -0.00373513 0.00151345 0.999371 -0.035227 uwb: 0.49965005 1220.18 956.403 +imu_odom_: 1691062501.812576031 0.770933 -0.289698 10.094 -0.0458064 0.02024 0.0426106 0.18 0 pose: 0.43836509 0.294667 -3.81145 0 2.12714e-05 -0.00082148 0.99938 -0.0351914 uwb: 0.0 1220.18 956.403 +imu_odom_: 1691062501.829506534 0.471658 -0.490811 9.49301 -0.0458064 0.0479369 0.0266316 0.18 0 pose: 0.0 0.294667 -3.81145 0 2.12714e-05 -0.00082148 0.99938 -0.0351914 uwb: 0.49848059 1220.36 957.962 +imu_odom_: 1691062501.845508751 0.232238 -0.263362 10.2496 -0.0308927 0.04048 0.0319579 0.18 0 pose: 0.0 0.294667 -3.81145 0 2.12714e-05 -0.00082148 0.99938 -0.0351914 uwb: 0.0 1220.36 957.962 +imu_odom_: 1691062501.862512455 0.536301 -0.138864 9.50498 -0.0660464 -0.0117179 0.0436758 0.18 0 pose: 0.49990670 0.291815 -3.81227 0 0.00101435 -0.00254485 0.99938 -0.0350918 uwb: 0.0 1220.36 957.962 +imu_odom_: 1691062501.887537392 0.306458 -0.0407014 9.42837 -0.0372843 0.0575243 0.0330232 0.18 0 pose: 0.0 0.291815 -3.81227 0 0.00101435 -0.00254485 0.99938 -0.0350918 uwb: 0.50114907 1221.02 959.035 +imu_odom_: 1691062501.914569969 0.0407014 -0.323217 9.76834 -0.0671117 -0.00213053 0.0436758 0.19 0 pose: 0.33014379 0.2822 -3.81502 0 0.000630474 -0.0006237770.999385 -0.0350684 uwb: 0.0 1221.02 959.035 +imu_odom_: 1691062501.939502455 0.105345 -0.213084 9.61511 -0.0692422 0.0255663 0.0351537 0.18 0 pose: 0.44039198 0.272582 -3.80737 0 -0.00335453 -0.0002411020.999379 -0.0350636 uwb: 0.49885680 1221.2 960.001 +imu_odom_: 1691062501.966492453 0.213084 -0.464475 9.98382 -0.0468716 -0.015979 0.0394148 0.18 0 pose: 0.0 0.272582 -3.80737 0 -0.00335453 -0.0002411020.999379 -0.0350636 uwb: 0.0 1221.2 960.001 +imu_odom_: 1691062501.982523251 0.442927 -0.0622492 9.92397 -0.0415453 0.00958738 0.0394148 0.18 0 pose: 0.8007816 0.269836 -3.80815 0 -0.0042725 -0.0003156570.999377 -0.0350461 uwb: 0.50064162 1221.46 961.349 +imu_odom_: 1691062502.9633114 0.730232 -0.332794 9.67018 -0.0500674 0.0383495 0.0234358 0.18 0 pose: 0.0 0.269836 -3.80815 0 -0.0042725 -0.0003156570.999377 -0.0350461 uwb: 0.0 1221.46 961.349 +imu_odom_: 1691062502.35560097 0.25618 -0.299275 9.85214 -0.0649811 0.0340885 0.0585895 0.18 0.02 pose: 0.52024558 0.260221 -3.8109 0 -0.00623975 -0.00228489 0.999366 -0.0349915 uwb: 0.49937891 1221.97 962.655 +imu_odom_: 1691062502.62563518 0.35913 -0.339977 10.0102 -0.04048 -0.0532632 0.0415453 0.23 0.02 pose: 0.42940599 0.250606 -3.81365 0 -0.00451212 -0.0025152 0.99938 -0.0348411 uwb: 0.0 1221.97 962.655 +imu_odom_: 1691062502.87623458 0.818817 -0.253785 10.1083 -0.0575243 -0.00319579 0.0532632 0.18 -0.02 pose: 0.0 0.250606 -3.81365 0 -0.00451212 -0.0025152 0.99938 -0.0348411 uwb: 0.50006725 1222.01 962.848 +imu_odom_: 1691062502.103613140 0.296881 -0.150835 9.81623 -0.0266316 0.0553937 0.036219 0.18 -0.02 pose: 0.0 0.250606 -3.81365 0 -0.00451212 -0.0025152 0.99938 -0.0348411 uwb: 0.0 1222.01 962.848 +imu_odom_: 1691062502.129482670 0.071826 -0.265756 9.39006 -0.0809601 0.0319579 0.0628506 0.18 0.02 pose: 0.52993106 0.240991 -3.8164 0 -0.00261253 -0.00476914 0.99937 -0.035072 uwb: 0.0 1222.01 962.848 +imu_odom_: 1691062502.156472968 0.545878 -0.174777 9.67736 -0.0607201 -0.0106526 0.0500674 0.21 -0.02 pose: 0.40942883 0.240991 -3.8164 0 -0.00317594 -0.00308102 0.999369 -0.035251 uwb: 0.50142629 1222.27 964.596 +imu_odom_: 1691062502.182552186 0.227449 -0.483629 10.1849 -0.0905475 0.0351537 0.0681769 0.18 -0.02 pose: 0.25180387 0.231378 -3.81915 0 -0.00461527 -0.00309471 0.999354 -0.0355021 uwb: 0.49978144 1222.67 964.731 +imu_odom_: 1691062502.209502237 0.234632 -0.0885855 10.1825 -0.0617853 -0.0181095 0.0458064 0.23 0.02 pose: 0.27844216 0.22862 -3.80954 0 -0.00324594 -0.00319805 0.999352 -0.0357184 uwb: 0.0 1222.67 964.731 +imu_odom_: 1691062502.234477894 0.620098 -0.0646434 10.5991 -0.0660464 -0.0255663 0.0436758 0.23 0.02 pose: 0.0 0.22862 -3.80954 0 -0.00324594 -0.00319805 0.999352 -0.0357184 uwb: 0.50007017 1222.68 964.929 +imu_odom_: 1691062502.251518642 0.0311246 -0.287304 9.92636 -0.0436758 0.0266316 0.0351537 0.21 0 pose: 0.25003946 0.219009 -3.8123 0 -0.0045765 -0.0045204 0.999331 -0.0359995 uwb: 0.0 1222.68 964.929 +imu_odom_: 1691062502.276613579 0.225055 -0.325611 9.21289 -0.0479369 0.00213053 0.0415453 0.21 0 pose: 0.0 0.219009 -3.8123 0 -0.0045765 -0.0045204 0.999331 -0.0359995 uwb: 0.0 1222.68 964.929 +imu_odom_: 1691062502.293502675 0.864307 -0.011971 10.4124 -0.0585895 -0.0585895 0.0479369 0.21 0.02 pose: 0.51966538 0.2094 -3.81507 0 -0.0035977 -0.00152787 0.99934 -0.036114 uwb: 0.50124547 1222.53 964.753 +imu_odom_: 1691062502.309454151 1.13485 -0.189142 9.63187 -0.0649811 -0.015979 0.056459 0.21 0.02 pose: 0.0 0.2094 -3.81507 0 -0.0035977 -0.00152787 0.99934 -0.036114 uwb: 0.0 1222.53 964.753 +imu_odom_: 1691062502.325439167 1.39343 -0.361524 9.61033 -0.0745685 -0.0532632 0.0330232 0.21 0.02 pose: 0.0 0.2094 -3.81507 0 -0.0035977 -0.00152787 0.99934 -0.036114 uwb: 0.0 1222.53 964.753 +imu_odom_: 1691062502.341452471 1.84593 -0.205901 9.84496 -0.0330232 -0.0298274 -0.0777643 0.14 -0.26 pose: 0.42025737 0.199791 -3.81784 0 -0.00580068 -0.00303969 0.999325 -0.0361397 uwb: 0.49816577 1222.68 965.527 +imu_odom_: 1691062502.358651287 1.47243 0.270545 10.2328 -0.052198 -0.0372843 -0.160855 0.14 -0.26 pose: 0.0 0.199791 -3.81784 0 -0.00580068 -0.00303969 0.999325 -0.0361397 uwb: 0.0 1222.68 965.527 +imu_odom_: 1691062502.374474734 0.981623 0.0837971 9.62469 -0.0500674 -0.04048 -0.251402 0.14 -0.26 pose: 0.49946355 0.199791 -3.81784 0 -5.53681e-05-0.00256348 0.999356 -0.0357883 uwb: 0.0 1222.68 965.527 +imu_odom_: 1691062502.391677050 1.24259 0.0814029 9.71567 -0.0628506 -0.0468716 -0.361125 0.15 -0.55 pose: 0.0 0.199791 -3.81784 0 -5.53681e-05-0.00256348 0.999356 -0.0357883 uwb: 0.49966478 1222.5 965.754 +imu_odom_: 1691062502.408565854 1.40061 0.071826 9.83059 -0.0617853 -0.00319579 -0.401605 0.1 -0.41 pose: 0.0 0.199791 -3.81784 0 -5.53681e-05-0.00256348 0.999356 -0.0357883 uwb: 0.0 1222.5 965.754 +imu_odom_: 1691062502.423454016 0.952892 -0.332794 9.8665 -0.0777643 0.00745685 -0.419714 0.1 -0.41 pose: 0.66173723 0.19018 -3.82061 0 0.00693053 0.000319989 0.999636 -0.0260833 uwb: 0.0 1222.5 965.754 +imu_odom_: 1691062502.439447780 0.837971 -0.292093 9.8689 -0.0585895 0.0319579 -0.435693 0.1 -0.41 pose: 0.0 0.19018 -3.82061 0 0.00693053 0.000319989 0.999636 -0.0260833 uwb: 0.49998851 1222.3 966.379 +imu_odom_: 1691062502.455504830 0.948104 -0.241814 9.79947 -0.0820254 0.0106526 -0.42291 0.08 -0.44 pose: 0.0 0.19018 -3.82061 0 0.00693053 0.000319989 0.999636 -0.0260833 uwb: 0.0 1222.3 966.379 +imu_odom_: 1691062502.471441142 0.967257 -0.268151 9.94791 -0.0532632 0.0255663 -0.44315 0.08 -0.44 pose: 0.30886593 0.19018 -3.82061 0 0.00966769 -0.0001335840.999772 -0.019019 uwb: 0.0 1222.3 966.379 +imu_odom_: 1691062502.487442197 0.955286 -0.0407014 9.63666 -0.052198 -0.00639159 -0.454868 0.07 -0.53 pose: 0.0 0.19018 -3.82061 0 0.00966769 -0.0001335840.999772 -0.019019 uwb: 0.49890944 1222.85 968.48 +imu_odom_: 1691062502.503434212 0.696713 0.047884 9.96227 -0.0511327 0.00213053 -0.48363 0.07 -0.53 pose: 0.40934716 0.177754 -3.8138 0 0.0132137 -0.00069791 0.999869 -0.00933663 uwb: 0.0 1222.85 968.48 +imu_odom_: 1691062502.520525997 0.672771 -0.0023942 10.1011 -0.0543285 -0.0308927 -0.499609 0.07 -0.53 pose: 0.0 0.177754 -3.8138 0 0.0132137 -0.00069791 0.999869 -0.00933663 uwb: 0.0 1222.85 968.48 +imu_odom_: 1691062502.536462891 0.725443 -0.282516 9.94791 -0.0703074 -0.0330232 -0.50174 0.08 -0.73 pose: 0.7006914 0.177763 -3.81384 0 0.0138117 -0.0002843240.999876 -0.00759929 uwb: 0.49991560 1223.03 969.447 +imu_odom_: 1691062502.553432479 0.761356 -0.186748 9.96227 -0.0490022 -0.02024 -0.541154 0.08 -0.73 pose: 0.0 0.177763 -3.81384 0 0.0138117 -0.0002843240.999876 -0.00759929 uwb: 0.0 1223.03 969.447 +imu_odom_: 1691062502.570427732 0.840365 -0.011971 9.88805 -0.0553937 -0.0383495 -0.509196 0.08 -0.73 pose: 0.0 0.177763 -3.81384 0 0.0138117 -0.0002843240.999876 -0.00759929 uwb: 0.0 1223.03 969.447 +imu_odom_: 1691062502.586438994 0.816423 -0.351948 9.99819 -0.0692422 -0.00745685 -0.437824 0.05 -0.5 pose: 0.49010195 0.177762 -3.81384 0 0.0148284 0.00301762 0.999871 0.00533621 uwb: 0.49993018 1223.15 971.018 +imu_odom_: 1691062502.603439204 0.696713 -0.416591 10.07 -0.0436758 0.00639159 -0.418649 0.07 -0.58 pose: 0.0 0.177762 -3.81384 0 0.0148284 0.00301762 0.999871 0.00533621 uwb: 0.0 1223.15 971.018 +imu_odom_: 1691062502.619433844 0.691924 -0.158017 9.92157 -0.0596548 -0.0298274 -0.377104 0.07 -0.58 pose: 0.65979492 0.168182 -3.81671 0 0.0182923 0.00108258 0.999573 0.0227438 uwb: 0.0 1223.15 971.018 +imu_odom_: 1691062502.636489173 0.775721 -0.143652 9.88566 -0.0585895 -0.0106526 -0.316384 0.06 -0.53 pose: 0.0 0.168182 -3.81671 0 0.0182923 0.00108258 0.999573 0.0227438 uwb: 0.0 1223.15 971.018 +imu_odom_: 1691062502.653487050 0.519542 -0.464475 9.8258 -0.0553937 0.0106526 -0.295078 0.06 -0.53 pose: 0.0 0.168182 -3.81671 0 0.0182923 0.00108258 0.999573 0.0227438 uwb: 0.0 1223.15 971.018 +imu_odom_: 1691062502.668549029 0.627281 -0.196325 10.0221 -0.0575243 -0.0234358 -0.286556 0.06 -0.53 pose: 0.33058718 0.168182 -3.81671 0 0.0174003 0.00165176 0.999408 0.0296283 uwb: 0.0 1223.15 971.018 +imu_odom_: 1691062502.693479482 0.617704 -0.270545 9.81144 -0.0596548 -0.00319579 -0.229032 0.03 -0.26 pose: 0.42052568 0.168174 -3.81667 0 0.0156328 0.000925261 0.999204 0.0366915 uwb: 0.100171518 1222.91 970.85 +imu_odom_: 1691062502.710426030 0.629675 -0.392649 9.96946 -0.0639159 -0.0117179 -0.203466 0.03 -0.26 pose: 0.0 0.168174 -3.81667 0 0.0156328 0.000925261 0.999204 0.0366915 uwb: 0.0 1222.91 970.85 +imu_odom_: 1691062502.726424169 -0.100556 -0.440533 9.5816 -0.0500674 0.0607201 -0.26099 0.05 -0.23 pose: 0.6937796 0.168182 -3.81671 0 0.0151123 0.000461228 0.999178 0.0376163 uwb: 0.0 1222.91 970.85 +imu_odom_: 1691062502.743467250 -1.29766 0.25618 10.094 -0.0287621 0.0958738 -0.286556 0.09 -0.26 pose: 0.0 0.168182 -3.81671 0 0.0151123 0.000461228 0.999178 0.0376163 uwb: 0.49938482 1223.01 971.826 +imu_odom_: 1691062502.760408549 -1.45089 -0.196325 10.1299 -0.0671117 -0.0394148 -0.171508 0.08 -0.17 pose: 0.0 0.168182 -3.81671 0 0.0151123 0.000461228 0.999178 0.0376163 uwb: 0.0 1223.01 971.826 +imu_odom_: 1691062502.776465307 -0.351948 -0.591368 9.85214 -0.0692422 -0.120375 -0.133158 0.08 -0.17 pose: 0.76053571 0.168182 -3.81671 0 0.00813207 -0.00182411 0.998809 0.0480744 uwb: 0.0 1223.01 971.826 +imu_odom_: 1691062502.792467238 0.811634 -0.512359 9.53132 -0.04048 -0.0490022 -0.143811 0.08 -0.17 pose: 0.0 0.168182 -3.81671 0 0.00813207 -0.00182411 0.998809 0.0480744 uwb: 0.50099174 1223.02 972.419 +imu_odom_: 1691062502.808463627 0.483629 -0.124498 9.8282 -0.0490022 0.0319579 -0.12144 0.09 -0.17 pose: 0.0 0.168182 -3.81671 0 0.00813207 -0.00182411 0.998809 0.0480744 uwb: 0.0 1223.02 972.419 +imu_odom_: 1691062502.825411342 -0.0766145 -0.158017 9.87608 -0.0628506 0.0585895 -0.107592 0.09 -0.17 pose: 0.31937658 0.158578 -3.81949 0 0.00745745 -0.00291837 0.998665 0.0510259 uwb: 0.0 1223.02 972.419 +imu_odom_: 1691062502.841462268 0.122104 -0.459687 10.0916 -0.0458064 0.0436758 -0.134223 0.11 -0.2 pose: 0.41933288 0.15857 -3.81946 0 0.00510238 -0.00168747 0.998505 0.0543879 uwb: 0.0 1223.02 972.419 +imu_odom_: 1691062502.857404704 0.122104 -0.184354 10.1059 -0.0468716 0.00213053 -0.125701 0.11 -0.2 pose: 0.0 0.15857 -3.81946 0 0.00510238 -0.00168747 0.998505 0.0543879 uwb: 0.0 1223.02 972.419 +imu_odom_: 1691062502.873453880 0.538695 -0.114922 9.76116 -0.0415453 0.0149137 -0.104396 0.11 -0.2 pose: 0.0 0.15857 -3.81946 0 0.00510238 -0.00168747 0.998505 0.0543879 uwb: 0.0 1223.02 972.419 +imu_odom_: 1691062502.890491711 0.263362 -0.277727 9.84256 -0.0426106 0.0436758 -0.0948085 0.14 -0.17 pose: 0.7062617 0.158578 -3.81949 0 0.00430242 -0.00195496 0.998475 0.0549983 uwb: 0.100019283 1223.34 974.157 +imu_odom_: 1691062502.907437968 -0.071826 -0.169988 10.0461 -0.0436758 -0.0138484 -0.106526 0.13 -0.14 pose: 0.0 0.158578 -3.81949 0 0.00430242 -0.00195496 0.998475 0.0549983 uwb: 0.0 1223.34 974.157 +imu_odom_: 1691062502.924600621 -0.0933739 -0.138864 10.0126 -0.036219 -0.0735032 -0.0884169 0.13 -0.14 pose: 0.65088535 0.146131 -3.81269 0 -0.000120903-0.0005575890.998204 0.0599021 uwb: 0.0 1223.34 974.157 +imu_odom_: 1691062502.940448566 0.402226 -0.23942 9.76116 -0.0511327 -0.0511327 -0.0735032 0.13 -0.14 pose: 0.0 0.146131 -3.81269 0 -0.000120903-0.0005575890.998204 0.0599021 uwb: 0.0 1223.34 974.157 +imu_odom_: 1691062502.957544142 0.565032 -0.258574 10.2735 -0.0394148 0.00213053 -0.0649811 0.13 -0.14 pose: 0.0 0.146131 -3.81269 0 -0.000120903-0.0005575890.998204 0.0599021 uwb: 0.0 1223.34 974.157 +imu_odom_: 1691062502.973625398 0.751779 -0.399832 10.2041 -0.04048 -0.0191748 -0.0852212 0.13 -0.14 pose: 0.33882015 0.146131 -3.81269 0 -0.00139816 -0.0002073350.998069 0.0621038 uwb: 0.0 1223.34 974.157 +imu_odom_: 1691062502.990446833 1.45328 -0.0263362 9.89284 -0.0628506 -0.0660464 -0.072438 0.17 -0.14 pose: 0.42180889 0.136532 -3.8155 0 0.00266845 -0.00170138 0.997912 0.0645078 uwb: 0.99883087 1223.25 973.773 +imu_odom_: 1691062503.7536286 1.07739 -0.162806 9.79947 -0.0788296 0.0596548 -0.00532632 0.17 -0.14 pose: 0.7936075 0.136532 -3.8155 0 0.0036966 -0.00162616 0.99788 0.0649525 uwb: 0.0 1223.25 973.773 +imu_odom_: 1691062503.22560356 1.39103 -0.435745 9.87129 -0.0479369 -0.00745685 0.00852212 0.17 -0.14 pose: 0.0 0.136532 -3.8155 0 0.0036966 -0.00162616 0.99788 0.0649525 uwb: 0.0 1223.25 973.773 +imu_odom_: 1691062503.38381475 1.15401 -0.289698 9.85453 -0.0436758 -0.0426106 -0.02024 0.09 -0.11 pose: 0.40998883 0.136532 -3.8155 0 0.00746622 -0.00196849 0.997785 0.066069 uwb: 0.49840791 1222.87 973.817 +imu_odom_: 1691062503.55381690 1.2378 0.217872 10.0389 -0.052198 -0.00106526 -0.0500674 0.12 -0.14 pose: 0.0 0.136532 -3.8155 0 0.00746622 -0.00196849 0.997785 0.066069 uwb: 0.0 1222.87 973.817 +imu_odom_: 1691062503.72377239 1.14682 -0.0502782 10.0963 -0.0575243 -0.0181095 -0.0500674 0.12 -0.14 pose: 0.0 0.136532 -3.8155 0 0.00746622 -0.00196849 0.997785 0.066069 uwb: 0.0 1222.87 973.817 +imu_odom_: 1691062503.89408368 0.699107 -0.277727 9.54568 -0.0681769 0.0149137 -0.056459 0.11 -0.14 pose: 0.22832993 0.136532 -3.8155 0 0.00992841 -0.0017344 0.997712 0.0668582 uwb: 0.50045820 1222.54 974.25 +imu_odom_: 1691062503.106378253 0.804452 -0.390255 9.98861 -0.0511327 -0.00852212 -0.056459 0.11 -0.14 pose: 0.0 0.136532 -3.8155 0 0.00992841 -0.0017344 0.997712 0.0668582 uwb: 0.0 1222.54 974.25 +imu_odom_: 1691062503.121434986 0.596156 -0.275333 9.56244 -0.0575243 0.00639159 -0.0649811 0.11 -0.14 pose: 0.33996639 0.124094 -3.80872 0 0.0128976 -0.00136844 0.997573 0.0684058 uwb: 0.0 1222.54 974.25 +imu_odom_: 1691062503.138578688 0.656011 0.00718261 10.2185 -0.0575243 0.00319579 -0.0500674 0.05 -0.05 pose: 0.42044998 0.124094 -3.80872 0 0.0129229 -0.00363787 0.997425 0.0704518 uwb: 0.49944621 1222.38 974.859 +imu_odom_: 1691062503.152584063 0.612916 -0.351948 9.663 -0.0681769 -0.00213053 -0.0372843 0.05 -0.05 pose: 0.7006917 0.124094 -3.80872 0 0.0129147 -0.00293838 0.997404 0.0707745 uwb: 0.0 1222.38 974.859 +imu_odom_: 1691062503.169584861 0.629675 -0.258574 9.8282 -0.052198 0.00426106 -0.036219 0.05 -0.05 pose: 0.0 0.124094 -3.80872 0 0.0129147 -0.00293838 0.997404 0.0707745 uwb: 0.0 1222.38 974.859 +imu_odom_: 1691062503.192493389 0.847547 -0.241814 9.98143 -0.0596548 -0.00319579 -0.0138484 0.05 -0.05 pose: 0.41142958 0.124094 -3.80872 0 0.0106297 -0.00287111 0.997315 0.0724052 uwb: 0.50186390 1222.23 975.465 +imu_odom_: 1691062503.208448954 0.167594 -0.23942 9.68694 -0.0607201 0.0543285 -0.0170442 0.05 -0.02 pose: 0.0 0.124094 -3.80872 0 0.0106297 -0.00287111 0.997315 0.0724052 uwb: 0.0 1222.23 975.465 +imu_odom_: 1691062503.235396097 -1.1971 -0.0957681 10.386 -0.0713727 0.0266316 0.00213053 0.05 -0.02 pose: 0.30882811 0.124094 -3.80872 0 0.0118804 -0.00286019 0.997239 0.0732459 uwb: 0.49880460 1222.38 976.234 +imu_odom_: 1691062503.260432131 -0.0909797 -0.392649 10.1179 -0.0607201 -0.0862864 -0.00532632 0.08 -0.05 pose: 0.0 0.124094 -3.80872 0 0.0118804 -0.00286019 0.997239 0.0732459 uwb: 0.0 1222.38 976.234 +imu_odom_: 1691062503.287395023 0.423774 0.174777 10.2328 -0.0607201 0.00852212 -0.00106526 0.11 -0.02 pose: 0.15963439 0.124094 -3.80872 0 0.00993666 -0.00270675 0.997233 0.0736215 uwb: 0.50020739 1222.04 975.682 +imu_odom_: 1691062503.313503996 -0.244209 -0.260968 9.67976 -0.0660464 0.0298274 -0.00106526 0.11 -0.02 pose: 0.44001020 0.114515 -3.81158 0 0.0062969 -0.00300708 0.997194 0.0745283 uwb: 0.0 1222.04 975.682 +imu_odom_: 1691062503.330384348 -0.129287 -0.308852 9.69412 -0.0553937 -0.00958738 -0.0106526 0.15 -0.05 pose: 0.8089480 0.114515 -3.81158 0 0.00610564 -0.00222568 0.997185 0.0746974 uwb: 0.50020156 1221.82 976.49 +imu_odom_: 1691062503.356503237 0.47884 -0.0814029 9.0022 -0.0415453 -0.015979 0.00213053 0.15 -0.05 pose: 0.0 0.114515 -3.81158 0 0.00610564 -0.00222568 0.997185 0.0746974 uwb: 0.0 1221.82 976.49 +imu_odom_: 1691062503.383357930 0.19393 -0.306458 9.70609 -0.0585895 0.015979 0.0213053 0.17 -0.05 pose: 0.51874687 0.114515 -3.81158 0 0.00192595 -0.0005234870.997122 0.0757939 uwb: 0.50066817 1221.59 977.101 +imu_odom_: 1691062503.409372996 0.490811 -0.177171 10.1921 -0.0607201 0 0.00106526 0.17 -0.05 pose: 0.0 0.114515 -3.81158 0 0.00192595 -0.0005234870.997122 0.0757939 uwb: 0.0 1221.59 977.101 +imu_odom_: 1691062503.436348720 0.402226 -0.0742203 10.1155 -0.056459 0.00852212 0.0170442 0.17 0 pose: 0.43011198 0.1021 -3.80482 0 0.00158487 0.00163013 0.99706 0.076597 uwb: 0.49925665 1221.62 978.27 +imu_odom_: 1691062503.452517473 0.311246 -0.253785 10.422 -0.0585895 0.00852212 0.00319579 0.17 0 pose: 0.0 0.1021 -3.80482 0 0.00158487 0.00163013 0.99706 0.076597 uwb: 0.0 1221.62 978.27 +imu_odom_: 1691062503.479558524 0.373495 0.0981623 10.3932 -0.0479369 -0.0245011 0.00319579 0.18 -0.02 pose: 0.53014121 0.1021 -3.80482 0 0.00183592 0.00180104 0.997 0.0773579 uwb: 0.0 1221.62 978.27 +imu_odom_: 1691062503.505373817 -0.0742203 -0.469264 9.61272 -0.072438 -0.04048 0.0191748 0.15 -0.05 pose: 0.44030184 0.0924988 -3.80762 0 -3.24021e-050.00343649 0.996945 0.078026 uwb: 0.49885710 1221.29 978.303 +imu_odom_: 1691062503.532502359 0.143652 -0.167594 9.92875 -0.0490022 -0.00319579 0.00532632 0.15 -0.05 pose: 0.0 0.0924988 -3.80762 0 -3.24021e-050.00343649 0.996945 0.078026 uwb: 0.50140894 1221.35 978.686 +imu_odom_: 1691062503.557337745 0.237026 -0.306458 9.85932 -0.0649811 0.00106526 0.0308927 0.16 0 pose: 0.72050558 0.0808665 -3.80364 0 -0.00430754 0.0037639 0.996849 0.0791223 uwb: 0.0 1221.35 978.686 +imu_odom_: 1691062503.584333009 0.521936 -0.35913 10.1011 -0.036219 0.0276969 -0.00958738 0.16 0 pose: 0.8003447 0.0800516 -3.80091 0 -0.00473695 0.00303577 0.996846 0.0791612 uwb: 0.50090441 1221.56 979.446 +imu_odom_: 1691062503.600416020 0.117316 0.0335188 9.79707 -0.04048 0.0138484 0.0266316 0.15 0 pose: 0.0 0.0800516 -3.80091 0 -0.00473695 0.00303577 0.996846 0.0791612 uwb: 0.0 1221.56 979.446 +imu_odom_: 1691062503.627519190 0.366313 -0.289698 10.0485 -0.0500674 -0.0255663 0.015979 0.15 0 pose: 0.52045879 0.0704678 -3.80376 0 -0.00451655 0.000800245 0.996787 0.0799633 uwb: 0.0 1221.56 979.446 +imu_odom_: 1691062503.652443818 0.150835 -0.148441 10.1179 -0.0532632 -0.02024 0.0287621 0.21 0 pose: 0.34967505 0.0704678 -3.80376 0 -0.00341194 -0.0008070410.996761 0.0803415 uwb: 0.49755347 1221.15 979.095 +imu_odom_: 1691062503.669318920 0.464475 -0.265756 10.1323 -0.0660464 -0.00532632 0.036219 0.21 0 pose: 0.7911581 0.0704678 -3.80376 0 -0.00403403 -0.0004093080.996756 0.080382 uwb: 0.0 1221.15 979.095 +imu_odom_: 1691062503.695317654 0.248997 -0.071826 9.81623 -0.0319579 -0.0117179 0.0191748 0.18 -0.02 pose: 0.0 0.0704678 -3.80376 0 -0.00403403 -0.0004093080.996756 0.080382 uwb: 0.49859463 1221.23 979.477 +imu_odom_: 1691062503.722444447 0.790087 -0.339977 9.663 -0.076699 -0.0245011 0.0628506 0.2 -0.02 pose: 0.33888149 0.0593172 -3.80132 0 -0.00379763 -0.0002640260.996747 0.0805001 uwb: 0.0 1221.23 979.477 +imu_odom_: 1691062503.748461262 0.940921 -0.251391 9.93354 -0.0543285 -0.0234358 0.0330232 0.2 -0.02 pose: 0.53125527 0.0512288 -3.79902 0 -0.00196173 0.00103207 0.996757 0.0804403 uwb: 0.49993033 1221.17 979.872 +imu_odom_: 1691062503.765524180 0.227449 -0.174777 9.80665 -0.0585895 -0.00639159 0.0607201 0.21 -0.02 pose: 0.0 0.0512288 -3.79902 0 -0.00196173 0.00103207 0.996757 0.0804403 uwb: 0.0 1221.17 979.872 +imu_odom_: 1691062503.791459044 0.35913 -0.0550666 9.93115 -0.0255663 -0.00213053 0.0170442 0.21 -0.02 pose: 0.32972403 0.048453 -3.79984 0 0.000182554 0.000717597 0.996758 0.0804512 uwb: 0.50000907 1221.24 980.644 +imu_odom_: 1691062503.818517302 0.442927 -0.205901 10.161 -0.0713727 -0.0106526 0.0649811 0.21 0 pose: 0.36042194 0.0368139 -3.79574 0 -0.00106665 0.00389342 0.996736 0.0806347 uwb: 0.0 1221.24 980.644 +imu_odom_: 1691062503.843518047 -0.035913 -0.0430956 10.0126 -0.0394148 0.015979 0.0223706 0.21 0 pose: 0.6880929 0.03603 -3.79308 0 -0.0006030670.00331229 0.996745 0.0805466 uwb: 0.50045820 1221.14 981.625 +imu_odom_: 1691062503.870379157 0.505177 -0.0574608 9.71567 -0.0788296 -0.0575243 0.0575243 0.21 0 pose: 0.45178074 0.0292136 -3.7951 0 -0.00180429 0.00275123 0.996749 0.0805061 uwb: 0.0 1221.14 981.625 +imu_odom_: 1691062503.895305826 0.292093 -0.105345 10.343 -0.0436758 -0.0298274 0.0308927 0.19 0 pose: 0.0 0.0292136 -3.7951 0 -0.00180429 0.00275123 0.996749 0.0805061 uwb: 0.49933247 1221.19 982.592 +imu_odom_: 1691062503.912297001 0.61531 -0.500388 9.35415 -0.0884169 -0.0149137 0.0617853 0.19 0 pose: 0.51787779 0.0196535 -3.79792 0 -0.0009014650.00470022 0.996753 0.0803768 uwb: 0.0 1221.19 982.592 +imu_odom_: 1691062503.938463135 0.0861913 -0.378284 9.31584 -0.0287621 0.00213053 0.0319579 0.17 0 pose: 0.0 0.0196535 -3.79792 0 -0.0009014650.00470022 0.996753 0.0803768 uwb: 0.50063610 1221.1 982.6 +imu_odom_: 1691062503.965632216 0.287304 -0.174777 10.094 -0.0468716 -0.0383495 0.0415453 0.17 0 pose: 0.43157309 0.0148007 -3.79183 0 -0.0023563 0.00194645 0.996767 0.0802929 uwb: 0.0 1221.1 982.6 +imu_odom_: 1691062503.990414815 0.0694318 0.138864 9.67497 -0.0543285 0.0181095 0.0394148 0.18 0 pose: 0.0 0.0148007 -3.79183 0 -0.0023563 0.00194645 0.996767 0.0802929 uwb: 0.50066526 1220.94 983 +imu_odom_: 1691062504.16291356 -0.047884 -0.227449 9.4978 -0.0884169 0 0.0628506 0.18 0 pose: 0.35013876 0.00442257 -3.792 0 -0.00508623 0.00311109 0.996755 0.0802691 uwb: 0.0 1220.94 983 +imu_odom_: 1691062504.41348104 0.555455 -0.320823 9.74679 -0.0671117 0.00958738 0.0426106 0.19 0 pose: 0.23858979 0.00442257 -3.792 0 -0.00690449 0.00431529 0.996747 0.0801875 uwb: 0.49882802 1221.08 984.346 +imu_odom_: 1691062504.66284988 0.325611 -0.538695 9.84496 -0.0617853 0.0191748 0.0415453 0.18 0.02 pose: 0.25966076 0.00442257 -3.792 0 -0.00828498 0.0032628 0.996758 0.0799654 uwb: 0.0 1221.08 984.346 +imu_odom_: 1691062504.83295124 0.371101 -0.0047884 10.386 -0.0181095 -0.0213053 0.0319579 0.24 0.02 pose: 0.0 0.00442257 -3.792 0 -0.00828498 0.0032628 0.996758 0.0799654 uwb: 0.50088706 1221.3 984.331 +imu_odom_: 1691062504.109355401 0.474052 -0.148441 9.99579 -0.0149137 -0.0106526 0.02024 0.24 0.02 pose: 0.50995995 -0.00800827-3.78526 0 -0.00647268 0.000528929 0.996777 0.0799587 uwb: 0.0 1221.3 984.331 +imu_odom_: 1691062504.135270151 0.167594 -0.110133 10.0628 -0.0415453 0.0276969 0.052198 0.24 0.02 pose: 0.35057340 -0.0175955 -3.7881 0 -0.00323033 0.00240065 0.996768 0.080238 uwb: 0.49999172 1221.15 984.924 +imu_odom_: 1691062504.151489362 0.114922 -0.0167594 9.96467 -0.0660464 -0.0532632 0.0649811 0.24 0.02 pose: 0.7057372 -0.0175955 -3.7881 0 -0.00397953 0.00275607 0.996768 0.0801938 uwb: 0.0 1221.15 984.924 +imu_odom_: 1691062504.177311078 0.632069 -0.0574608 10.0149 -0.0692422 -0.0553937 0.036219 0.23 0 pose: 0.0 -0.0175955 -3.7881 0 -0.00397953 0.00275607 0.996768 0.0801938 uwb: 0.0 1221.15 984.924 +imu_odom_: 1691062504.202284417 0.339977 -0.301669 10.0796 -0.0628506 -0.0511327 0.0532632 0.23 0 pose: 0.43079746 -0.027184 -3.79094 0 -0.00576857 0.00473631 0.996777 0.0798778 uwb: 0.50039419 1221.21 985.114 +imu_odom_: 1691062504.228418188 0.318429 -0.0981623 10.4986 -0.0383495 0.00426106 0.0308927 0.21 -0.02 pose: 0.42791898 -0.0366323 -3.78331 0 -0.00296475 0.0021498 0.996809 0.0797414 uwb: 0.0 1221.21 985.114 +imu_odom_: 1691062504.253294119 0.380678 -0.143652 10.2137 -0.0415453 -0.0287621 0.0372843 0.19 0 pose: 0.8090066 -0.0396159 -3.7842 0 -0.0031322 0.00301813 0.996803 0.0797743 uwb: 0.49838188 1221.2 985.696 +imu_odom_: 1691062504.270275674 0.426168 -0.0790087 9.65342 -0.036219 0.00319579 0.0458064 0.19 0 pose: 0.0 -0.0396159 -3.7842 0 -0.0031322 0.00301813 0.996803 0.0797743 uwb: 0.0 1221.2 985.696 +imu_odom_: 1691062504.295336505 0.0215478 -0.28491 10.07 -0.0575243 -0.00958738 0.0479369 0.19 0 pose: 0.51038574 -0.0396159 -3.7842 0 -0.0004476920.00465447 0.996796 0.0798436 uwb: 0.50118745 1221.32 986.464 +imu_odom_: 1691062504.321393283 0.699107 -0.253785 9.43555 -0.0511327 -0.0245011 0.0447411 0.18 -0.02 pose: 0.33923448 -0.051139 -3.78052 0 -0.00215603 0.00447848 0.996805 0.0797215 uwb: 0.0 1221.32 986.464 +imu_odom_: 1691062504.346252299 0.981623 -0.323217 10.0126 -0.036219 -0.0330232 0.0255663 0.19 0 pose: 0.7953870 -0.052049 -3.77746 0 -0.00134613 0.00416857 0.996809 0.0796991 uwb: 0.50047585 1221.2 987.246 +imu_odom_: 1691062504.363312597 -0.167594 -0.0526724 9.90481 -0.0511327 0.00745685 0.0607201 0.19 0 pose: 0.0 -0.052049 -3.77746 0 -0.00134613 0.00416857 0.996809 0.0796991 uwb: 0.0 1221.2 987.246 +imu_odom_: 1691062504.389318629 0.296881 -0.368707 9.43315 -0.0681769 0.0308927 0.0308927 0.19 0 pose: 0.51067447 -0.0616347 -3.78031 0 0.00234762 0.0029661 0.996809 0.0797314 uwb: 0.50009380 1221.28 987.823 +imu_odom_: 1691062504.414255513 0.392649 -0.316035 9.68694 -0.0500674 0.0372843 0.0490022 0.19 0 pose: 0.34960807 -0.0685491 -3.78236 0 -0.0005438060.000950164 0.996814 0.0797535 uwb: 0.0 1221.28 987.823 +imu_odom_: 1691062504.437367904 0.442927 -0.251391 9.34936 -0.0415453 0.0426106 0.0372843 0.18 -0.02 pose: 0.6966964 -0.0712204 -3.78315 0 -0.00073418 0.000285134 0.996817 0.0797211 uwb: 0.50066833 1221 988.805 +imu_odom_: 1691062504.462396071 0.890643 -0.356736 9.37809 -0.0862864 0.0138484 0.0671117 0.18 -0.02 pose: 0.24076549 -0.0712204 -3.78315 0 -0.00076868 -0.00151142 0.996822 0.0796456 uwb: 0.0 1221 988.805 +imu_odom_: 1691062504.480407112 0.371101 -0.248997 9.54329 -0.056459 -0.0234358 0.0330232 0.23 -0.02 pose: 0.0 -0.0712204 -3.78315 0 -0.00076868 -0.00151142 0.996822 0.0796456 uwb: 0.49932095 1220.8 989.588 +imu_odom_: 1691062504.504238392 0.816423 -0.241814 9.60075 -0.0458064 -0.0245011 0.0479369 0.23 -0.02 pose: 0.23994599 -0.0836552 -3.77642 0 0.0010969 -0.00205259 0.996826 0.0795739 uwb: 0.0 1220.8 989.588 +imu_odom_: 1691062504.530255215 0.861913 -0.107739 9.5816 -0.0234358 0.0127832 0.0170442 0.23 0 pose: 0.42928385 -0.0836552 -3.77642 0 0.00181914 -0.00242501 0.996842 0.0793568 uwb: 0.49925680 1220.71 990.749 +imu_odom_: 1691062504.555282799 0.263362 -0.438139 9.84735 -0.0735032 0.0245011 0.0596548 0.23 0 pose: 0.0 -0.0836552 -3.77642 0 0.00181914 -0.00242501 0.996842 0.0793568 uwb: 0.0 1220.71 990.749 +imu_odom_: 1691062504.572263771 0.715866 -0.126893 9.97664 -0.0458064 -0.015979 0.0298274 0.21 0.02 pose: 0.49991882 -0.0960927 -3.76969 0 0.00531696 -0.00170609 0.996818 0.0795158 uwb: 0.0 1220.71 990.749 +imu_odom_: 1691062504.598244140 0.723049 -0.146046 10.0844 -0.0745685 -0.0255663 0.0543285 0.21 0.02 pose: 0.0 -0.0960927 -3.76969 0 0.00531696 -0.00170609 0.996818 0.0795158 uwb: 0.49916055 1220.3 991.152 +imu_odom_: 1691062504.624249880 0.766145 0.0191536 10.1514 -0.0447411 -0.04048 0.0330232 0.18 0 pose: 0.25134323 -0.105677 -3.77254 0 0.0042451 -0.00252778 0.996833 0.0793665 uwb: 0.0 1220.3 991.152 +imu_odom_: 1691062504.650259121 0.529119 -0.143652 10.1275 -0.0777643 0 0.0415453 0.19 0 pose: 0.35832809 -0.105677 -3.77254 0 0.00788132 -0.001406 0.996824 0.0792362 uwb: 0.50098039 1220.05 991.931 +imu_odom_: 1691062504.676308899 0.54109 -0.277727 9.67018 -0.0543285 0.00106526 0.0319579 0.19 0 pose: 0.7032874 -0.105677 -3.77254 0 0.00849756 -0.0008698870.996817 0.0792631 uwb: 0.0 1220.05 991.931 +imu_odom_: 1691062504.693241168 0.452504 -0.138864 9.69891 -0.0607201 -0.0319579 0.0490022 0.19 0 pose: 0.0 -0.105677 -3.77254 0 0.00849756 -0.0008698870.996817 0.0792631 uwb: 0.49865893 1219.87 992.898 +imu_odom_: 1691062504.710321589 0.811634 -0.208296 10.2017 -0.0394148 -0.0415453 0.0830906 0.19 0 pose: 0.51984068 -0.115261 -3.7754 0 0.00778897 0.0010723 0.996816 0.0793519 uwb: 0.0 1219.87 992.898 +imu_odom_: 1691062504.726282991 1.29766 -0.35913 9.77553 -0.0500674 0.0149137 0.125701 0.19 0 pose: 0.0 -0.115261 -3.7754 0 0.00778897 0.0010723 0.996816 0.0793519 uwb: 0.0 1219.87 992.898 +imu_odom_: 1691062504.744337778 1.51074 -0.100556 10.477 -0.0500674 -0.0617853 0.191748 0.17 0.2 pose: 0.0 -0.115261 -3.7754 0 0.00778897 0.0010723 0.996816 0.0793519 uwb: 0.50080249 1219.67 993.48 +imu_odom_: 1691062504.760218688 1.38145 -0.320823 9.07163 -0.0170442 -0.0330232 0.28336 0.17 0.2 pose: 0.43007711 -0.127699 -3.76867 0 0.00727394 0.000303801 0.996833 0.0791854 uwb: 0.0 1219.67 993.48 +imu_odom_: 1691062504.776330576 1.50835 -0.45011 10.2232 -0.052198 0.0596548 0.360059 0.13 0.38 pose: 0.0 -0.127699 -3.76867 0 0.00727394 0.000303801 0.996833 0.0791854 uwb: 0.0 1219.67 993.48 +imu_odom_: 1691062504.794280373 1.26414 -0.428562 9.76355 -0.0511327 -0.00319579 0.421845 0.13 0.38 pose: 0.0 -0.127699 -3.76867 0 0.00727394 0.000303801 0.996833 0.0791854 uwb: 0.49893016 1219.51 993.677 +imu_odom_: 1691062504.812245043 0.823605 -0.325611 9.57202 -0.0319579 0.0617853 0.452737 0.13 0.38 pose: 0.51078820 -0.137303 -3.77145 0 0.0129639 -0.0001631620.99702 0.0760476 uwb: 0.0 1219.51 993.677 +imu_odom_: 1691062504.828218403 0.52433 -0.0885855 10.1801 -0.076699 0.0234358 0.579504 0.11 0.5 pose: 0.0 -0.137303 -3.77145 0 0.0129639 -0.0001631620.99702 0.0760476 uwb: 0.0 1219.51 993.677 +imu_odom_: 1691062504.845216290 0.893037 -0.732626 9.88326 -0.0692422 -0.0340885 0.648746 0.11 0.5 pose: 0.67016600 -0.137303 -3.77145 0 0.0166097 -0.00241529 0.997836 0.0635781 uwb: 0.50123994 1219.66 994.056 +imu_odom_: 1691062504.863221498 1.19471 -0.560243 9.58878 -0.036219 -0.00426106 0.647681 0.11 0.5 pose: 0.0 -0.137303 -3.77145 0 0.0166097 -0.00241529 0.997836 0.0635781 uwb: 0.0 1219.66 994.056 +imu_odom_: 1691062504.877284330 0.792481 0.169988 10.0078 -0.036219 0.0266316 0.678573 0.08 0.5 pose: 0.0 -0.137303 -3.77145 0 0.0166097 -0.00241529 0.997836 0.0635781 uwb: 0.0 1219.66 994.056 +imu_odom_: 1691062504.894225348 0.35913 -0.146046 9.76834 -0.0479369 0.0500674 0.659399 0.07 0.53 pose: 0.34979181 -0.149686 -3.76462 0 0.017071 -0.00421259 0.998425 0.0532693 uwb: 0.50009088 1219.74 994.246 +imu_odom_: 1691062504.910309239 0.438139 -0.146046 10.1801 -0.0415453 -0.00639159 0.62531 0.07 0.53 pose: 0.40881954 -0.149686 -3.76462 0 0.0157389 -0.00272025 0.999049 0.040561 uwb: 0.0 1219.74 994.246 +imu_odom_: 1691062504.928284116 0.617704 -0.248997 9.81623 -0.0436758 -0.0127832 0.632767 0.06 0.58 pose: 0.7016543 -0.149686 -3.76462 0 0.0150999 -0.00242366 0.999141 0.0385102 uwb: 0.0 1219.74 994.246 +imu_odom_: 1691062504.945204428 0.94571 -0.287304 9.93594 -0.0468716 0.00958738 0.648746 0.06 0.58 pose: 0.0 -0.149686 -3.76462 0 0.0150999 -0.00242366 0.999141 0.0385102 uwb: 0.49849271 1219.62 995.017 +imu_odom_: 1691062504.962320137 0.682347 -0.227449 10.0724 -0.0426106 0.0276969 0.632767 0.06 0.58 pose: 0.34976556 -0.149686 -3.76462 0 0.0132716 -0.00220745 0.999514 0.0281104 uwb: 0.0 1219.62 995.017 +imu_odom_: 1691062504.979272820 0.526724 -0.117316 10.1227 -0.0543285 0.0138484 0.573112 0.05 0.5 pose: 0.0 -0.149686 -3.76462 0 0.0132716 -0.00220745 0.999514 0.0281104 uwb: 0.0 1219.62 995.017 +imu_odom_: 1691062504.996205380 0.577003 -0.0311246 9.64145 -0.0447411 -0.0106526 0.512392 0.05 0.5 pose: 0.33105109 -0.149686 -3.76462 0 0.0130584 -0.0002055290.999744 0.0184601 uwb: 0.49976716 1219.58 995.592 +imu_odom_: 1691062505.11206418 0.646434 0.00957681 10.082 -0.0458064 -0.00106526 0.468716 0.05 0.5 pose: 0.0 -0.149686 -3.76462 0 0.0130584 -0.0002055290.999744 0.0184601 uwb: 0.0 1219.58 995.592 +imu_odom_: 1691062505.27211279 0.76375 -0.186748 9.93354 -0.0543285 -0.00106526 0.441019 0.04 0.35 pose: 0.0 -0.149686 -3.76462 0 0.0130584 -0.0002055290.999744 0.0184601 uwb: 0.0 1219.58 995.592 +imu_odom_: 1691062505.42262772 0.751779 -0.189142 9.83299 -0.0511327 -0.00745685 0.412257 0.04 0.38 pose: 0.33891659 -0.159264 -3.7675 0 0.0117467 0.00271801 0.999874 0.0103345 uwb: 0.50011721 1219.47 997.313 +imu_odom_: 1691062505.59254831 0.706289 -0.0861913 10.0197 -0.0543285 0.00213053 0.374973 0.04 0.38 pose: 0.39047557 -0.159268 -3.76746 0 0.0147321 0.00244109 0.999885 0.00258884 uwb: 0.0 1219.47 997.313 +imu_odom_: 1691062505.73186430 0.679953 -0.155623 9.8689 -0.0511327 -0.00532632 0.34408 0.04 0.38 pose: 0.6999338 -0.159264 -3.7675 0 0.0148143 0.00312067 0.999884 0.00142508 uwb: 0.0 1219.47 997.313 +imu_odom_: 1691062505.90213778 0.54109 -0.0981623 9.96467 -0.052198 0.00639159 0.305731 0.04 0.35 pose: 0.0 -0.159264 -3.7675 0 0.0148143 0.00312067 0.999884 0.00142508 uwb: 0.49989855 1219.13 998.656 +imu_odom_: 1691062505.104189123 0.581791 -0.146046 9.93833 -0.0511327 0.00852212 0.291882 0.04 0.35 pose: 0.40951668 -0.159264 -3.7675 0 0.0124946 0.00359593 0.999905 -0.00462404 uwb: 0.0 1219.13 998.656 +imu_odom_: 1691062505.121253801 0.428562 -0.253785 9.88326 -0.0585895 0.00852212 0.294013 0.03 0.23 pose: 0.0 -0.159264 -3.7675 0 0.0124946 0.00359593 0.999905 -0.00462404 uwb: 0.0 1219.13 998.656 +imu_odom_: 1691062505.135195316 0.442927 -0.25618 9.99819 -0.0553937 -0.00745685 0.294013 0.03 0.23 pose: 0.0 -0.159264 -3.7675 0 0.0124946 0.00359593 0.999905 -0.00462404 uwb: 0.50034476 1218.91 999.231 +imu_odom_: 1691062505.150192564 0.557849 -0.191536 9.79228 -0.0458064 -0.0181095 0.270577 0.03 0.23 pose: 0.44981538 -0.159264 -3.7675 0 0.00828447 0.00190174 0.99991 -0.0103355 uwb: 0.0 1218.91 999.231 +imu_odom_: 1691062505.167254033 0.6608 -0.0670376 9.97664 -0.0543285 -0.00745685 0.257794 0.04 0.29 pose: 0.0 -0.159264 -3.7675 0 0.00828447 0.00190174 0.99991 -0.0103355 uwb: 0.0 1218.91 999.231 +imu_odom_: 1691062505.185430148 0.646434 -0.100556 9.83299 -0.0532632 0 0.245011 0.04 0.29 pose: 0.0 -0.159264 -3.7675 0 0.00828447 0.00190174 0.99991 -0.0103355 uwb: 0.50272746 1218.99 999.804 +imu_odom_: 1691062505.199364663 0.667982 -0.260968 9.91918 -0.052198 -0.00532632 0.233293 0.04 0.29 pose: 0.23062818 -0.159264 -3.7675 0 0.00823428 0.00125319 0.999881 -0.0129531 uwb: 0.0 1218.99 999.804 +imu_odom_: 1691062505.215457599 0.667982 -0.208296 9.93354 -0.0490022 0.00106526 0.237554 0.01 0.2 pose: 0.0 -0.159264 -3.7675 0 0.00823428 0.00125319 0.999881 -0.0129531 uwb: 0.0 1218.99 999.804 +imu_odom_: 1691062505.232338253 0.567426 -0.294487 9.93354 -0.0553937 0.00106526 0.26312 0.01 0.2 pose: 0.0 -0.159264 -3.7675 0 0.00823428 0.00125319 0.999881 -0.0129531 uwb: 0.49922194 1218.73 1000.38 +imu_odom_: 1691062505.248162298 0.543484 -0.251391 9.90002 -0.0543285 -0.00106526 0.262055 0.01 0.2 pose: 0.74080119 -0.159264 -3.7675 0 0.0110862 -2.77327e-050.999725 -0.0206569 uwb: 0.0 1218.73 1000.38 +imu_odom_: 1691062505.265247098 0.486023 -0.071826 9.87848 -0.0511327 -0.00213053 0.236489 0.02 0.26 pose: 0.0 -0.159264 -3.7675 0 0.0110862 -2.77327e-050.999725 -0.0206569 uwb: 0.0 1218.73 1000.38 +imu_odom_: 1691062505.281312912 0.538695 -0.0263362 9.87608 -0.0543285 -0.00426106 0.214118 0.01 0.17 pose: 0.0 -0.159264 -3.7675 0 0.0110862 -2.77327e-050.999725 -0.0206569 uwb: 0.0 1218.73 1000.38 +imu_odom_: 1691062505.306227056 0.560243 -0.21069 9.8258 -0.0543285 -0.00213053 0.18216 0.01 0.17 pose: 0.7963205 -0.159264 -3.7675 0 0.0103434 -0.0003545 0.999714 -0.0215462 uwb: 0.0 1218.73 1000.38 +imu_odom_: 1691062505.320165071 0.136469 -0.1652 9.85932 -0.0575243 0.052198 0.166181 0.01 0.14 pose: 0.0 -0.159264 -3.7675 0 0.0103434 -0.0003545 0.999714 -0.0215462 uwb: 0.0 1218.73 1000.38 +imu_odom_: 1691062505.337182211 -0.943315 -0.122104 9.95988 -0.0703074 0.107592 0.166181 0.01 0.14 pose: 0.71875910 -0.168851 -3.77034 0 0.00723813 -0.0001070060.999591 -0.0276529 uwb: 0.99730068 1218.58 1000.76 +imu_odom_: 1691062505.351286752 -1.4054 -0.0981623 9.98861 -0.0703074 0.0213053 0.164051 0.01 0.14 pose: 0.0 -0.168851 -3.77034 0 0.00723813 -0.0001070060.999591 -0.0276529 uwb: 0.0 1218.58 1000.76 +imu_odom_: 1691062505.368226025 -1.01993 -0.383072 9.71088 -0.0596548 -0.052198 0.148072 0.04 0.08 pose: 0.0 -0.168851 -3.77034 0 0.00723813 -0.0001070060.999591 -0.0276529 uwb: 0.0 1218.58 1000.76 +imu_odom_: 1691062505.382278946 -0.0885855 -0.241814 10.0437 -0.0532632 -0.0916127 0.122505 0.04 0.08 pose: 0.30991902 -0.168851 -3.77034 0 0.00289447 -0.0001645160.999557 -0.029606 uwb: 0.49986647 1218.63 1000.76 +imu_odom_: 1691062505.399220843 0.418985 -0.21069 9.76595 -0.0479369 -0.0458064 0.134223 0.04 0.08 pose: 0.39109676 -0.168851 -3.77034 0 -7.95442e-05-0.0005248380.9995 -0.0316135 uwb: 0.0 1218.63 1000.76 +imu_odom_: 1691062505.413214562 0.471658 -0.150835 9.8282 -0.0703074 0.0266316 0.127832 0.08 0.05 pose: 0.0 -0.168851 -3.77034 0 -7.95442e-05-0.0005248380.9995 -0.0316135 uwb: 0.0 1218.63 1000.76 +imu_odom_: 1691062505.430277489 0.105345 -0.248997 10.0269 -0.0639159 0.00532632 0.120375 0.08 0.05 pose: 0.0 -0.168851 -3.77034 0 -7.95442e-05-0.0005248380.9995 -0.0316135 uwb: 0.50006770 1218.51 1001.14 +imu_odom_: 1691062505.444152219 -0.143652 -0.107739 9.56005 -0.0553937 0.00852212 0.0916127 0.11 0.08 pose: 0.7010420 -0.168851 -3.77034 0 0.000601577 -4.21579e-050.999489 -0.0319449 uwb: 0.0 1218.51 1001.14 +imu_odom_: 1691062505.461142820 0.0287304 -0.100556 10.0604 -0.0660464 -0.0255663 0.109722 0.11 0.08 pose: 0.0 -0.168851 -3.77034 0 0.000601577 -4.21579e-050.999489 -0.0319449 uwb: 0.0 1218.51 1001.14 +imu_odom_: 1691062505.475147037 0.172383 -0.292093 10.1083 -0.0735032 -0.00213053 0.135289 0.11 0.08 pose: 0.0 -0.168851 -3.77034 0 0.000601577 -4.21579e-050.999489 -0.0319449 uwb: 0.0 1218.51 1001.14 +imu_odom_: 1691062505.491150149 0.514753 -0.486023 10.0604 -0.0671117 0.00213053 0.0990696 0.1 0.05 pose: 0.46905772 -0.168851 -3.77034 0 -0.0002338870.00129904 0.999425 -0.0338702 uwb: 0.49968274 1218.7 1000.95 +imu_odom_: 1691062505.508155040 0.438139 -0.0167594 9.76834 -0.0649811 -0.00852212 0.102265 0.1 0.05 pose: 0.0 -0.168851 -3.77034 0 -0.0002338870.00129904 0.999425 -0.0338702 uwb: 0.0 1218.7 1000.95 +imu_odom_: 1691062505.526207791 0.316035 -0.23942 10.2185 -0.0841559 0.0436758 0.12144 0.1 0.05 pose: 0.0 -0.168851 -3.77034 0 -0.0002338870.00129904 0.999425 -0.0338702 uwb: 0.0 1218.7 1000.95 +imu_odom_: 1691062505.544147386 0.220267 -0.244209 10.4962 -0.0649811 0.04048 0.0798948 0.12 0.02 pose: 0.45964361 -0.181334 -3.76369 0 -0.00335109 0.000125733 0.999363 -0.0355424 uwb: 0.49899739 1219.05 1001.72 +imu_odom_: 1691062505.561258726 0.19393 -0.471658 10.0413 -0.0788296 0.015979 0.0830906 0.13 0.02 pose: 0.0 -0.181334 -3.76369 0 -0.00335109 0.000125733 0.999363 -0.0355424 uwb: 0.0 1219.05 1001.72 +imu_odom_: 1691062505.578191291 0.289698 -0.191536 9.97903 -0.0628506 0.0170442 0.0873517 0.13 0.02 pose: 0.68991600 -0.19091 -3.76657 0 -0.00629927 -0.00196404 0.999271 -0.0375896 uwb: 0.0 1219.05 1001.72 +imu_odom_: 1691062505.594136366 1.02472 -0.383072 10.1275 -0.0479369 -0.0426106 0.1012 0.12 0.05 pose: 0.0 -0.19091 -3.76657 0 -0.00629927 -0.00196404 0.999271 -0.0375896 uwb: 0.50053724 1219.29 1001.91 +imu_odom_: 1691062505.612188242 1.10852 -0.282516 9.74679 -0.0607201 0.00319579 0.164051 0.12 0.05 pose: 0.0 -0.19091 -3.76657 0 -0.00629927 -0.00196404 0.999271 -0.0375896 uwb: 0.0 1219.29 1001.91 +imu_odom_: 1691062505.629190801 1.34075 -0.548272 10.1873 -0.056459 -0.0532632 0.198139 0.12 0.05 pose: 0.33991993 -0.19091 -3.76657 0 -0.00569336 -0.0015317 0.999244 -0.0384311 uwb: 0.49934152 1219.65 1003.06 +imu_odom_: 1691062505.646148447 1.34794 -0.205901 9.26077 -0.036219 -0.00852212 0.11931 0.09 -0.02 pose: 0.44047709 -0.200477 -3.76948 0 -0.0008349 -0.00210789 0.99915 -0.0411696 uwb: 0.0 1219.65 1003.06 +imu_odom_: 1691062505.663202626 1.03669 0.320823 9.8689 -0.0543285 0.0383495 0.092678 0.09 -0.02 pose: 0.6949468 -0.200477 -3.76948 0 -0.00013111 -0.00197832 0.999139 -0.0414449 uwb: 0.0 1219.65 1003.06 +imu_odom_: 1691062505.679191447 0.61531 -0.047884 9.92157 -0.0671117 0.0234358 0.0607201 0.09 -0.02 pose: 0.0 -0.200477 -3.76948 0 -0.00013111 -0.00197832 0.999139 -0.0414449 uwb: 0.0 1219.65 1003.06 +imu_odom_: 1691062505.696132178 0.634463 -0.270545 9.91678 -0.0639159 -0.02024 0.0266316 0.1 0.08 pose: 0.43051178 -0.200477 -3.76948 0 0.00258428 0.000487989 0.999095 -0.0424558 uwb: 0.50072972 1219.91 1003.26 +imu_odom_: 1691062505.714182595 0.653617 -0.40462 9.84256 -0.0532632 -0.00958738 0.0223706 0.06 0.02 pose: 0.0 -0.200477 -3.76948 0 0.00258428 0.000487989 0.999095 -0.0424558 uwb: 0.0 1219.91 1003.26 +imu_odom_: 1691062505.728126735 0.924162 -0.100556 9.94791 -0.056459 0.00639159 0.0500674 0.06 0.02 pose: 0.0 -0.200477 -3.76948 0 0.00258428 0.000487989 0.999095 -0.0424558 uwb: 0.0 1219.91 1003.26 +imu_odom_: 1691062505.745189371 0.517148 -0.268151 9.86172 -0.0543285 0.0255663 0.0660464 0.06 0.02 pose: 0.24948848 -0.200477 -3.76948 0 0.00492431 -0.0006343620.999093 -0.0422813 uwb: 0.50184379 1220.34 1002.88 +imu_odom_: 1691062505.762184055 0.502782 -0.136469 9.8282 -0.0553937 -0.0106526 0.0532632 0.05 -0.02 pose: 0.0 -0.200477 -3.76948 0 0.00492431 -0.0006343620.999093 -0.0422813 uwb: 0.0 1220.34 1002.88 +imu_odom_: 1691062505.779190114 0.656011 -0.158017 9.76834 -0.0458064 -0.00852212 0.0479369 0.05 -0.02 pose: 0.32061343 -0.200477 -3.76948 0 0.00636569 -0.00154109 0.99908 -0.0423778 uwb: 0.49871158 1220.5 1003.27 +imu_odom_: 1691062505.804215955 0.706289 -0.215478 9.81383 -0.0596548 -0.00745685 0.0660464 0.04 0.02 pose: 0.42988476 -0.210051 -3.77238 0 0.00715332 0.000275824 0.999063 -0.0426749 uwb: 0.0 1220.5 1003.27 +imu_odom_: 1691062505.821125189 0.538695 -0.227449 9.99819 -0.0532632 0.0266316 0.0511327 0.04 0.02 pose: 0.0 -0.210051 -3.77238 0 0.00715332 0.000275824 0.999063 -0.0426749 uwb: 0.0 1220.5 1003.27 +imu_odom_: 1691062505.846136740 -1.37667 -0.124498 9.91678 -0.0553937 0.0948085 0.0436758 0.05 0 pose: 0.7965829 -0.210051 -3.77238 0 0.00796397 0.000291222 0.999053 -0.0427798 uwb: 0.49984897 1220.56 1003.85 +imu_odom_: 1691062505.871177163 -0.624887 -0.584185 9.95988 -0.0553937 -0.0873517 0.0543285 0.09 0.05 pose: 0.0 -0.210051 -3.77238 0 0.00796397 0.000291222 0.999053 -0.0427798 uwb: 0.0 1220.56 1003.85 +imu_odom_: 1691062505.892190342 0.672771 -0.0454898 9.95509 -0.0426106 -0.0649811 0.0596548 0.09 0.02 pose: 0.66113414 -0.210051 -3.77238 0 0.00368245 -0.0003407210.999059 -0.0432116 uwb: 0.50047308 1220.18 1004.03 +imu_odom_: 1691062505.905171490 0.227449 -0.146046 9.33739 -0.0543285 0.00213053 0.0756338 0.09 0.02 pose: 0.0 -0.210051 -3.77238 0 0.00368245 -0.0003407210.999059 -0.0432116 uwb: 0.0 1220.18 1004.03 +imu_odom_: 1691062505.930253326 0.126893 -0.203507 9.90002 -0.0468716 -0.0127832 0.0490022 0.11 0 pose: 0.51902133 -0.214533 -3.77374 0 0.00357873 0.00090871 0.999034 -0.0437846 uwb: 0.49966524 1220.13 1004.42 +imu_odom_: 1691062505.955116724 -0.0909797 -0.390255 10.0054 -0.0500674 -0.00532632 0.0479369 0.11 0 pose: 0.7956789 -0.219617 -3.77529 0 0.00281557 0.000900756 0.999035 -0.0438217 uwb: 0.0 1220.13 1004.42 +imu_odom_: 1691062505.969127649 0.328006 -0.445322 10.1778 -0.0490022 -0.0223706 0.0490022 0.11 0.02 pose: 0.0 -0.219617 -3.77529 0 0.00281557 0.000900756 0.999035 -0.0438217 uwb: 0.0 1220.13 1004.42 +imu_odom_: 1691062505.994221151 -0.0335188 -0.19393 9.9527 -0.0426106 0.0351537 0.0617853 0.11 0.02 pose: 0.48071161 -0.222535 -3.76572 0 -0.00116529 -0.0005939180.999029 -0.0440323 uwb: 0.49998022 1220.42 1005.96 +imu_odom_: 1691062506.19223375 0.572214 -0.354342 9.82102 -0.0628506 -0.0479369 0.0649811 0.17 -0.02 pose: 0.33021711 -0.22946 -3.76784 0 -0.00424288 -0.00103795 0.999007 -0.0443494 uwb: 0.0 1220.42 1005.96 +imu_odom_: 1691062506.33102483 -0.0526724 -0.270545 9.83538 -0.0372843 -0.0308927 0.0468716 0.17 -0.02 pose: 0.6887348 -0.232099 -3.76865 0 -0.00345887 -0.00133171 0.999005 -0.0444353 uwb: 0.50136558 1220.6 1007.12 +imu_odom_: 1691062506.49210589 0.531513 -0.191536 10.0724 -0.0415453 -0.0340885 0.0532632 0.17 -0.02 pose: 0.0 -0.232099 -3.76865 0 -0.00345887 -0.00133171 0.999005 -0.0444353 uwb: 0.0 1220.6 1007.12 +imu_odom_: 1691062506.74092660 0.107739 -0.457293 10.058 -0.0394148 0.0138484 0.0436758 0.12 0 pose: 0.39112896 -0.232099 -3.76865 0 -0.00183596 -0.00177111 0.998994 -0.0447627 uwb: 0.0 1220.6 1007.12 +imu_odom_: 1691062506.98370162 0.31364 -0.172383 9.66539 -0.0490022 0.0117179 0.052198 0.14 0.02 pose: 0.0 -0.232099 -3.76865 0 -0.00183596 -0.00177111 0.998994 -0.0447627 uwb: 0.49851342 1220.85 1005.78 +imu_odom_: 1691062506.124279095 0.203507 -0.0814029 10.0533 -0.0426106 -0.0149137 0.0628506 0.14 0.02 pose: 0.41920506 -0.241658 -3.77158 0 -0.0033412 -0.00202795 0.998983 -0.0449282 uwb: 0.0 1220.85 1005.78 +imu_odom_: 1691062506.150089744 0.466869 -0.208296 10.0628 -0.0511327 -0.0319579 0.0372843 0.13 0 pose: 0.42137194 -0.24859 -3.77372 0 -0.0056836 0.00160249 0.998954 -0.0453447 uwb: 0.50182352 1221.81 1006.97 +imu_odom_: 1691062506.175217667 -0.110133 -0.184354 9.54808 -0.0585895 -0.0394148 0.0660464 0.13 0 pose: 0.6819398 -0.251215 -3.77453 0 -0.00491265 0.00153415 0.998958 -0.0453374 uwb: 0.0 1221.81 1006.97 +imu_odom_: 1691062506.200084572 0.323217 -0.289698 9.84975 -0.0585895 0 0.0415453 0.15 0 pose: 0.44119174 -0.251215 -3.77453 0 -0.00483285 0.00122456 0.998945 -0.0456445 uwb: 0.49785139 1222.05 1008.33 +imu_odom_: 1691062506.217118341 0.318429 0.0287304 10.1323 -0.0479369 -0.00639159 0.0436758 0.15 0 pose: 0.0 -0.251215 -3.77453 0 -0.00483285 0.00122456 0.998945 -0.0456445 uwb: 0.0 1222.05 1008.33 +imu_odom_: 1691062506.242086445 0.380678 -0.31364 9.6199 -0.0639159 -0.056459 0.0681769 0.15 -0.02 pose: 0.32884941 -0.26077 -3.77748 0 -0.00447291 -0.0004376890.998946 -0.0456778 uwb: 0.50119649 1221.96 1008.71 +imu_odom_: 1691062506.266142302 -0.0502782 -0.148441 9.53132 -0.0287621 0.0809601 0.0266316 0.15 0 pose: 0.0 -0.26077 -3.77748 0 -0.00447291 -0.0004376890.998946 -0.0456778 uwb: 0.0 1221.96 1008.71 +imu_odom_: 1691062506.283094412 -0.0383072 0.059855 10.0628 -0.0511327 -0.0170442 0.0639159 0.15 0 pose: 0.41055796 -0.26077 -3.77748 0 -0.00352127 -0.00149283 0.998934 -0.0460031 uwb: 0.49876131 1222.2 1009.31 +imu_odom_: 1691062506.308139218 0.35913 -0.189142 10.3956 -0.0575243 -0.0191748 0.0394148 0.15 0 pose: 0.0 -0.26077 -3.77748 0 -0.00352127 -0.00149283 0.998934 -0.0460031 uwb: 0.0 1222.2 1009.31 +imu_odom_: 1691062506.333083699 0.4956 -0.0861913 9.67976 -0.0575243 -0.0426106 0.0617853 0.16 0 pose: 0.41952586 -0.273281 -3.77089 0 -0.00628855 0.000284316 0.998917 -0.0461088 uwb: 0.50054323 1222.4 1009.7 +imu_odom_: 1691062506.356090238 0.213084 -0.390255 9.8258 -0.0426106 -0.0170442 0.0532632 0.16 0 pose: 0.41972709 -0.280411 -3.7731 0 -0.00196775 0.00204298 0.998919 -0.0463949 uwb: 0.0 1222.4 1009.7 +imu_odom_: 1691062506.372116977 0.656011 0.0215478 10.7763 -0.0553937 -0.0511327 0.0394148 0.16 0 pose: 0.0 -0.280411 -3.7731 0 -0.00196775 0.00204298 0.998919 -0.0463949 uwb: 0.0 1222.4 1009.7 +imu_odom_: 1691062506.397092081 0.608127 -0.220267 10.1993 -0.0617853 -0.0245011 0.0617853 0.21 0 pose: 0.6066970 -0.282832 -3.77385 0 -0.00225828 0.00157226 0.998918 -0.0464345 uwb: 0.49948457 1222.37 1010.87 +imu_odom_: 1691062506.422077975 0.634463 -0.0957681 9.4954 -0.0468716 -0.00319579 0.0287621 0.21 0 pose: 0.0 -0.282832 -3.77385 0 -0.00225828 0.00157226 0.998918 -0.0464345 uwb: 0.0 1222.37 1010.87 +imu_odom_: 1691062506.446095627 0.538695 -0.440533 9.91678 -0.0788296 -0.00319579 0.052198 0.17 0 pose: 0.39976439 -0.292381 -3.77682 0 -0.0006639540.00118505 0.998912 -0.0466257 uwb: 0.50033324 1222.86 1011.87 +imu_odom_: 1691062506.470125237 0.665588 -0.117316 10.5872 -0.0585895 -0.02024 0.0436758 0.17 0 pose: 0.0 -0.292381 -3.77682 0 -0.0006639540.00118505 0.998912 -0.0466257 uwb: 0.0 1222.86 1011.87 +imu_odom_: 1691062506.485165360 0.533907 -0.462081 9.69412 -0.0703074 0.0106526 0.0575243 0.17 0 pose: 0.50015534 -0.292381 -3.77682 0 0.00367839 0.00152552 0.998899 -0.0467392 uwb: 0.50006785 1222.77 1012.26 +imu_odom_: 1691062506.509081522 -0.124498 -0.505177 9.94791 -0.0500674 0.00213053 0.0394148 0.17 0 pose: 0.0 -0.292381 -3.77682 0 0.00367839 0.00152552 0.998899 -0.0467392 uwb: 0.0 1222.77 1012.26 +imu_odom_: 1691062506.534074999 0.550666 -0.342371 9.42837 -0.0490022 -0.0170442 0.0458064 0.2 0 pose: 0.47932064 -0.301929 -3.77979 0 0.0063465 0.000270105 0.998877 -0.0469608 uwb: 0.0 1222.77 1012.26 +imu_odom_: 1691062506.556260282 0.349553 -0.299275 9.64624 -0.0479369 0.0287621 0.0255663 0.2 0 pose: 0.0 -0.301929 -3.77979 0 0.0063465 0.000270105 0.998877 -0.0469608 uwb: 0.0 1222.77 1012.26 +imu_odom_: 1691062506.572327850 0.526724 -0.42138 9.67976 -0.0383495 0.0458064 0.0245011 0.18 0 pose: 0.39001490 -0.311475 -3.78277 0 0.0046049 -0.00207971 0.998879 -0.0470681 uwb: 0.0 1222.77 1012.26 +imu_odom_: 1691062506.590199790 0.373495 -0.258574 9.51695 -0.0575243 0 0.0479369 0.18 0 pose: 0.0 -0.311475 -3.78277 0 0.0046049 -0.00207971 0.998879 -0.0470681 uwb: 0.99990531 1222.6 1012.64 +imu_odom_: 1691062506.614041293 0.497994 -0.0550666 9.67736 -0.036219 -0.0340885 0.0394148 0.18 0 pose: 0.47264502 -0.324 -3.7762 0 0.00345766 -0.00420704 0.998883 -0.0469284 uwb: 0.0 1222.6 1012.64 +imu_odom_: 1691062506.639048185 0.452504 -0.23942 10.3597 -0.072438 -0.00319579 0.056459 0.18 0 pose: 0.0 -0.324 -3.7762 0 0.00345766 -0.00420704 0.998883 -0.0469284 uwb: 0.50157854 1222.41 1013.21 +imu_odom_: 1691062506.660087909 0.80924 -0.0957681 9.85693 -0.0426106 -0.0138484 0.0276969 0.17 -0.02 pose: 0.33801563 -0.324 -3.7762 0 0.00224756 -0.00341159 0.998889 -0.0469389 uwb: 0.0 1222.41 1013.21 +imu_odom_: 1691062506.686157243 0.407014 -0.316035 10.2352 -0.0735032 -0.015979 0.052198 0.17 -0.02 pose: 0.0 -0.324 -3.7762 0 0.00224756 -0.00341159 0.998889 -0.0469389 uwb: 0.49782223 1222.51 1013.02 +imu_odom_: 1691062506.703036443 0.603339 -0.155623 9.33978 -0.0426106 -0.00958738 0.0245011 0.19 -0.02 pose: 0.47967644 -0.333547 -3.77918 0 0.00192758 0.000457128 0.998888 -0.0471052 uwb: 0.0 1222.51 1013.02 +imu_odom_: 1691062506.728040128 0.40462 -0.0981623 10.0389 -0.0639159 0.0468716 0.0543285 0.19 -0.02 pose: 0.0 -0.333547 -3.77918 0 0.00192758 0.000457128 0.998888 -0.0471052 uwb: 0.0 1222.51 1013.02 +imu_odom_: 1691062506.754038593 0.469264 -0.0430956 9.97664 -0.0436758 0.0213053 0.0383495 0.22 0 pose: 0.47927398 -0.343092 -3.78216 0 0.00301725 -0.00109816 0.998883 -0.0471325 uwb: 0.50035366 1222.53 1014.58 +imu_odom_: 1691062506.779255465 0.433351 -0.198719 10.1466 -0.0703074 0.015979 0.0660464 0.22 0 pose: 0.0 -0.343092 -3.78216 0 0.00301725 -0.00109816 0.998883 -0.0471325 uwb: 0.49942624 1221.97 1016.49 +imu_odom_: 1691062506.804049169 0.258574 -0.268151 9.52413 -0.0458064 -0.00745685 0.0479369 0.21 0.02 pose: 0.42071575 -0.352638 -3.78514 0 0.00190828 0.00220539 0.99888 -0.0472254 uwb: 0.0 1221.97 1016.49 +imu_odom_: 1691062506.817030320 0.526724 -0.138864 9.67018 -0.0692422 -0.0223706 0.0607201 0.21 0.02 pose: 0.0 -0.352638 -3.78514 0 0.00190828 0.00220539 0.99888 -0.0472254 uwb: 0.0 1221.97 1016.49 +imu_odom_: 1691062506.842030797 0.318429 -0.241814 9.72525 -0.0383495 -0.0191748 0.04048 0.17 0 pose: 0.81921442 -0.363573 -3.78369 0 0.000443808 0.000975771 0.998857 -0.0477886 uwb: 0.49998036 1222.33 1016.52 +imu_odom_: 1691062506.859159348 0.481235 -0.196325 10.1394 -0.0639159 0.00958738 0.0639159 0.17 0 pose: 0.8006079 -0.365174 -3.77858 0 -0.0002036990.000663608 0.998857 -0.0477917 uwb: 0.0 1222.33 1016.52 +imu_odom_: 1691062506.884102955 0.605733 0.023942 10.058 -0.0458064 -0.0458064 0.0553937 0.18 0.02 pose: 0.0 -0.365174 -3.77858 0 -0.0002036990.000663608 0.998857 -0.0477917 uwb: 0.50060447 1222.28 1017.49 +imu_odom_: 1691062506.909026147 0.782904 0.023942 10.094 -0.0958738 -0.0106526 0.072438 0.18 0.02 pose: 0.34122949 -0.374715 -3.78158 0 -1.17602e-050.000262258 0.998847 -0.048007 uwb: 0.0 1222.28 1017.49 +imu_odom_: 1691062506.935154683 0.608127 0.0287304 10.3741 -0.0607201 -0.0213053 0.0500674 0.18 0.02 pose: 0.49866799 -0.384255 -3.78458 0 0.00424783 0.00320923 0.998803 -0.0486135 uwb: 0.50128399 1222.46 1019.07 +imu_odom_: 1691062506.960028588 0.347159 -0.100556 10.0437 -0.072438 0.00852212 0.0511327 0.21 0 pose: 0.0 -0.384255 -3.78458 0 0.00424783 0.00320923 0.998803 -0.0486135 uwb: 0.0 1222.46 1019.07 +imu_odom_: 1691062506.974014436 -0.0814029 -0.335188 9.70609 -0.0468716 -0.00532632 0.036219 0.19 0.02 pose: 0.51002441 -0.393791 -3.78759 0 0.00312239 0.00525412 0.998786 -0.0488729 uwb: 0.0 1222.46 1019.07 +imu_odom_: 1691062506.991084951 0.723049 -0.351948 10.1778 -0.0575243 -0.0511327 0.0511327 0.19 0.02 pose: 0.0 -0.393791 -3.78759 0 0.00312239 0.00525412 0.998786 -0.0488729 uwb: 0.49827427 1222.53 1020.64 +imu_odom_: 1691062507.14179570 0.811634 -0.100556 9.85214 -0.0415453 -0.0596548 0.0287621 0.17 0 pose: 0.0 -0.393791 -3.78759 0 0.00312239 0.00525412 0.998786 -0.0488729 uwb: 0.0 1222.53 1020.64 +imu_odom_: 1691062507.31146558 0.442927 -0.0526724 9.68215 -0.0596548 0.0266316 0.0500674 0.17 0 pose: 0.37995626 -0.403326 -3.7906 0 0.00449511 0.00389434 0.998785 -0.0489138 uwb: 0.49993378 1222.92 1019.5 +imu_odom_: 1691062507.45189863 0.73502 -0.392649 9.68455 -0.0788296 0.00426106 0.0628506 0.17 0 pose: 0.0 -0.403326 -3.7906 0 0.00449511 0.00389434 0.998785 -0.0489138 uwb: 0.0 1222.92 1019.5 +imu_odom_: 1691062507.69178359 0.577003 -0.196325 9.81144 -0.0500674 -0.0106526 0.0458064 0.18 0.02 pose: 0.39273891 -0.403326 -3.7906 0 0.00538333 0.00486232 0.998773 -0.0489824 uwb: 0.0 1222.92 1019.5 +imu_odom_: 1691062507.87218580 0.351948 -0.0335188 9.98143 -0.0468716 -0.0500674 0.0607201 0.18 0.02 pose: 0.0 -0.403326 -3.7906 0 0.00538333 0.00486232 0.998773 -0.0489824 uwb: 0.49981719 1223.1 1019.32 +imu_odom_: 1691062507.110996220 0.311246 0.0311246 9.93594 -0.04048 0 0.0330232 0.21 0.02 pose: 0.39822757 -0.415876 -3.78408 0 0.00722235 0.00306829 0.998756 -0.0492498 uwb: 0.0 1223.1 1019.32 +imu_odom_: 1691062507.129129474 0.153229 -0.47884 9.56244 -0.0628506 0.00958738 0.056459 0.21 0.02 pose: 0.0 -0.415876 -3.78408 0 0.00722235 0.00306829 0.998756 -0.0492498 uwb: 0.0 1223.1 1019.32 +imu_odom_: 1691062507.153041268 0.488417 -0.169988 9.99819 -0.0340885 -0.0308927 0.0500674 0.25 0.02 pose: 0.41917019 -0.425409 -3.7871 0 0.00401918 0.00457188 0.998764 -0.0493258 uwb: 0.49992510 1223.33 1019.93 +imu_odom_: 1691062507.171107737 0.730232 -0.0837971 10.0102 -0.0617853 -0.0255663 0.0692422 0.25 0.02 pose: 0.0 -0.425409 -3.7871 0 0.00401918 0.00457188 0.998764 -0.0493258 uwb: 0.0 1223.33 1019.93 +imu_odom_: 1691062507.195055986 0.893037 -0.296881 9.55526 -0.0415453 0.0436758 0.0255663 0.18 0 pose: 0.52069856 -0.434941 -3.79013 0 0.00679371 0.0028034 0.998731 -0.0498137 uwb: 0.49872354 1223 1019.31 +imu_odom_: 1691062507.219062854 0.565032 -0.414197 9.29669 -0.04048 -0.0255663 0.0532632 0.18 0 pose: 0.0 -0.434941 -3.79013 0 0.00679371 0.0028034 0.998731 -0.0498137 uwb: 0.0 1223 1019.31 +imu_odom_: 1691062507.245144736 0.172383 0.0670376 9.81144 -0.02024 0.0117179 0.0351537 0.25 0.05 pose: 0.47955117 -0.441249 -3.79213 0 0.00890977 4.13447e-05 0.998717 -0.049845 uwb: 0.49979969 1223.59 1019.17 +imu_odom_: 1691062507.271144084 0.155623 -0.0670376 9.83538 -0.0660464 -0.0308927 0.0639159 0.18 0.02 pose: 0.0 -0.441249 -3.79213 0 0.00890977 4.13447e-05 0.998717 -0.049845 uwb: 0.0 1223.59 1019.17 +imu_odom_: 1691062507.295988249 0.265756 -0.222661 9.84496 -0.0681769 -0.04048 0.0532632 0.18 0.02 pose: 0.35096160 -0.44447 -3.79316 0 0.00573681 0.00208458 0.998736 -0.0498856 uwb: 0.50143870 1223.56 1020.54 +imu_odom_: 1691062507.320981442 0.387861 -0.289698 9.97664 -0.0692422 -0.0127832 0.0490022 0.2 0 pose: 0.41829235 -0.453999 -3.79619 0 0.00238804 0.00161771 0.998732 -0.0502511 uwb: 0.0 1223.56 1020.54 +imu_odom_: 1691062507.338037964 0.859518 -0.0215478 9.86411 -0.0426106 -0.0255663 0.0458064 0.2 0 pose: 0.0 -0.453999 -3.79619 0 0.00238804 0.00161771 0.998732 -0.0502511 uwb: 0.49956930 1224.02 1020.98 +imu_odom_: 1691062507.360999306 0.715866 -0.318429 9.95748 -0.0596548 -0.0287621 0.0585895 0.2 -0.02 pose: 0.7007217 -0.453999 -3.79619 0 0.0020856 0.000955109 0.998732 -0.0502849 uwb: 0.0 1224.02 1020.98 +imu_odom_: 1691062507.377126081 -0.059855 -0.0957681 9.53371 -0.0298274 0.04048 0.0298274 0.2 -0.02 pose: 0.0 -0.453999 -3.79619 0 0.0020856 0.000955109 0.998732 -0.0502849 uwb: 0.0 1224.02 1020.98 +imu_odom_: 1691062507.394991027 0.553061 -0.270545 10.137 -0.0511327 0.00958738 0.0585895 0.2 -0.02 pose: 0.0 -0.453999 -3.79619 0 0.0020856 0.000955109 0.998732 -0.0502849 uwb: 0.50136871 1224.25 1021.79 +imu_odom_: 1691062507.418964649 0.553061 -0.363919 9.93115 -0.0351537 0.0245011 0.0372843 0.21 -0.02 pose: 0.41991970 -0.466567 -3.78971 0 0.00372314 -5.14135e-050.998718 -0.0504891 uwb: 0.0 1224.25 1021.79 +imu_odom_: 1691062507.436950625 0.28491 -0.213084 9.36372 -0.0543285 0.0138484 0.0553937 0.21 -0.02 pose: 0.0 -0.466567 -3.78971 0 0.00372314 -5.14135e-050.998718 -0.0504891 uwb: 0.49950222 1224.6 1021.63 +imu_odom_: 1691062507.453951444 0.189142 -0.387861 9.92875 -0.0596548 0.00958738 0.0628506 0.23 0 pose: 0.81997584 -0.485616 -3.7958 0 0.00476953 -0.00271256 0.998695 -0.0507838 uwb: 0.0 1224.6 1021.63 +imu_odom_: 1691062507.467020966 0.275333 -0.0861913 10.2975 -0.0276969 -0.00106526 0.0426106 0.23 0 pose: 0.0 -0.485616 -3.7958 0 0.00476953 -0.00271256 0.998695 -0.0507838 uwb: 0.0 1224.6 1021.63 +imu_odom_: 1691062507.483029919 0.232238 0.146046 9.58878 -0.0820254 0.0308927 0.0607201 0.23 0 pose: 0.0 -0.485616 -3.7958 0 0.00476953 -0.00271256 0.998695 -0.0507838 uwb: 0.49924557 1224.86 1021.85 +imu_odom_: 1691062507.507153444 0.706289 -0.21069 10.0126 -0.0681769 0.0415453 0.0372843 0.17 0.02 pose: 0.48014904 -0.485616 -3.7958 0 0.00062589 -0.00155959 0.998688 -0.051173 uwb: 0.0 1224.86 1021.85 +imu_odom_: 1691062507.533001139 0.459687 -0.0861913 10.0341 -0.0703074 -0.00852212 0.0490022 0.25 0.02 pose: 0.32153520 -0.495137 -3.79886 0 0.00195903 -0.0008411180.998685 -0.0512268 uwb: 0.49990177 1225.29 1023.08 +imu_odom_: 1691062507.557949128 0.31364 0.0191536 10.2328 -0.0500674 0.0117179 0.0415453 0.18 -0.02 pose: 0.0 -0.495137 -3.79886 0 0.00195903 -0.0008411180.998685 -0.0512268 uwb: 0.0 1225.29 1023.08 +imu_odom_: 1691062507.582968568 0.0933739 -0.294487 9.79947 -0.0777643 0.0319579 0.0511327 0.23 0.02 pose: 0.50795684 -0.504657 -3.80192 0 0.000530071 0.00361041 0.998673 -0.0513608 uwb: 0.49996009 1226.16 1023.57 +imu_odom_: 1691062507.598028236 -0.0167594 -0.509965 9.91439 -0.0607201 0.00213053 0.04048 0.23 0.02 pose: 0.0 -0.504657 -3.80192 0 0.000530071 0.00361041 0.998673 -0.0513608 uwb: 0.0 1226.16 1023.57 +imu_odom_: 1691062507.621955778 0.299275 -0.517148 9.27753 -0.0490022 -0.0436758 0.0479369 0.18 0 pose: 0.40079108 -0.512755 -3.79402 0 -0.00324125 0.00104185 0.998667 -0.0515016 uwb: 0.0 1226.16 1023.57 +imu_odom_: 1691062507.647937336 0.490811 -0.105345 9.58399 -0.02024 -0.00319579 0.0191748 0.18 0 pose: 0.7151869 -0.517239 -3.79546 0 -0.00316435 0.000358633 0.998666 -0.0515289 uwb: 0.50133080 1226.78 1023.83 +imu_odom_: 1691062507.671928748 0.100556 -0.356736 9.73722 -0.0607201 -0.02024 0.0468716 0.2 -0.02 pose: 0.24850581 -0.517239 -3.79546 0 -0.00242177 -0.0005341920.998669 -0.0515111 uwb: 0.0 1226.78 1023.83 +imu_odom_: 1691062507.697937428 0.454898 -0.0430956 9.85693 -0.0308927 -0.0479369 0.0426106 0.19 0.02 pose: 0.25053854 -0.526758 -3.79853 0 -0.00171668 0.00063272 0.998679 -0.0513548 uwb: 0.49847856 1226.96 1025.46 +imu_odom_: 1691062507.720041934 0.395043 -0.263362 10.4435 -0.0681769 -0.00745685 0.0628506 0.19 0.02 pose: 0.0 -0.526758 -3.79853 0 -0.00171668 0.00063272 0.998679 -0.0513548 uwb: 0.0 1226.96 1025.46 +imu_odom_: 1691062507.732933848 0.634463 -0.220267 9.53132 -0.036219 -0.0308927 0.0330232 0.19 0.02 pose: 0.0 -0.526758 -3.79853 0 -0.00171668 0.00063272 0.998679 -0.0513548 uwb: 0.50083793 1227.36 1025.7 +imu_odom_: 1691062507.756925843 0.727837 -0.0622492 9.71088 -0.056459 -0.02024 0.0458064 0.19 -0.02 pose: 0.24926698 -0.526758 -3.79853 0 -0.00242617 0.000486666 0.998674 -0.0514274 uwb: 0.0 1227.36 1025.7 +imu_odom_: 1691062507.781979404 0.560243 -0.107739 9.85693 -0.0436758 -0.0458064 0.0308927 0.19 -0.02 pose: 0.0 -0.526758 -3.79853 0 -0.00242617 0.000486666 0.998674 -0.0514274 uwb: 0.49928349 1227.87 1025.36 +imu_odom_: 1691062507.805014823 0.897826 -0.28491 10.4483 -0.0692422 -0.0213053 0.0532632 0.18 -0.02 pose: 0.59991362 -0.536277 -3.80159 0 0.00142377 0.000487318 0.998662 -0.0516932 uwb: 0.0 1227.87 1025.36 +imu_odom_: 1691062507.820926952 0.577003 -0.308852 9.64145 -0.0447411 0.0330232 0.0181095 0.18 -0.02 pose: 0.0 -0.536277 -3.80159 0 0.00142377 0.000487318 0.998662 -0.0516932 uwb: 0.0 1227.87 1025.36 +imu_odom_: 1691062507.837923105 0.593762 -0.169988 9.98622 -0.0436758 -0.0276969 0.0447411 0.25 0 pose: 0.48304210 -0.545795 -3.80466 0 0.00601773 0.00300594 0.998641 -0.0516782 uwb: 0.50148245 1228.18 1027.01 +imu_odom_: 1691062507.861969345 0.663194 -0.272939 10.0963 -0.0458064 0.00639159 0.0468716 0.25 0 pose: 0.0 -0.545795 -3.80466 0 0.00601773 0.00300594 0.998641 -0.0516782 uwb: 0.0 1228.18 1027.01 +imu_odom_: 1691062507.884972682 0.696713 -0.136469 9.78271 -0.0479369 0 0.0553937 0.23 0 pose: 0.73662535 -0.564974 -3.80033 0 0.0106388 0.000597012 0.998601 -0.0517858 uwb: 0.49839107 1228.7 1027.07 +imu_odom_: 1691062507.902954576 0.402226 -0.328006 9.56962 -0.0596548 0.0372843 0.0553937 0.23 0 pose: 0.7080417 -0.567898 -3.80127 0 0.0111283 0.00111735 0.998593 -0.0518367 uwb: 0.0 1228.7 1027.07 +imu_odom_: 1691062507.927057685 0.229843 0.00718261 10.0365 -0.052198 0.0106526 0.0468716 0.18 0.02 pose: 0.0 -0.567898 -3.80127 0 0.0111283 0.00111735 0.998593 -0.0518367 uwb: 0.0 1228.7 1027.07 +imu_odom_: 1691062507.944920298 0.232238 -0.296881 9.57441 -0.0788296 -0.036219 0.0553937 0.18 0.02 pose: 0.33904814 -0.573171 -3.80298 0 0.0103779 0.00120338 0.998587 -0.0521035 uwb: 0.49993968 1229.48 1026.75 +imu_odom_: 1691062507.960061042 0.775721 0.0383072 9.57202 -0.0372843 -0.0617853 0.0532632 0.18 0.02 pose: 0.0 -0.573171 -3.80298 0 0.0103779 0.00120338 0.998587 -0.0521035 uwb: 0.0 1229.48 1026.75 +imu_odom_: 1691062507.977937361 1.52989 -0.37589 9.86172 -0.0820254 -0.108657 0.056459 0.16 -0.08 pose: 0.49968595 -0.577414 -3.80435 0 0.0074504 0.00205642 0.998598 -0.052372 uwb: 0.0 1229.48 1026.75 +imu_odom_: 1691062507.993937566 1.85072 -0.416591 9.92636 -0.0788296 -0.0276969 -0.0628506 0.16 -0.08 pose: 0.0 -0.577414 -3.80435 0 0.0074504 0.00205642 0.998598 -0.052372 uwb: 0.49986677 1229.78 1026.99 +imu_odom_: 1691062508.11969623 1.68073 0.347159 10.1682 -0.0490022 -0.0181095 -0.178964 0.18 -0.44 pose: 0.0 -0.577414 -3.80435 0 0.0074504 0.00205642 0.998598 -0.052372 uwb: 0.0 1229.78 1026.99 +imu_odom_: 1691062508.28968989 1.05584 0.280122 9.70131 -0.0841559 -0.0330232 -0.232228 0.18 -0.44 pose: 0.48984604 -0.586928 -3.80743 0 0.0133722 0.00224603 0.998613 -0.0508804 uwb: 0.0 1229.78 1026.99 +imu_odom_: 1691062508.41906693 1.05584 0.0909797 9.9934 -0.0745685 -0.0106526 -0.334493 0.18 -0.44 pose: 0.0 -0.586928 -3.80743 0 0.0133722 0.00224603 0.998613 -0.0508804 uwb: 0.50000391 1229.77 1028.62 +imu_odom_: 1691062508.58025891 1.1157 0.0766145 10.0461 -0.0660464 -0.0372843 -0.390952 0.1 -0.38 pose: 0.0 -0.586928 -3.80743 0 0.0133722 0.00224603 0.998613 -0.0508804 uwb: 0.0 1229.77 1028.62 +imu_odom_: 1691062508.76020039 0.967257 -0.203507 9.84256 -0.0745685 -0.0149137 -0.414388 0.13 -0.58 pose: 0.48060705 -0.596415 -3.81059 0 0.0174378 0.00510506 0.998898 -0.0432806 uwb: 0.0 1229.77 1028.62 +imu_odom_: 1691062508.92936579 1.01514 -0.351948 10.0269 -0.076699 -0.00958738 -0.431432 0.13 -0.58 pose: 0.0 -0.596415 -3.81059 0 0.0174378 0.00510506 0.998898 -0.0432806 uwb: 0.50026063 1230.2 1030.31 +imu_odom_: 1691062508.106955390 0.658405 -0.110133 9.66539 -0.0735032 -0.00319579 -0.44315 0.08 -0.5 pose: 0.16070786 -0.596415 -3.81059 0 0.0190404 0.00521631 0.999015 -0.0397321 uwb: 0.0 1230.2 1030.31 +imu_odom_: 1691062508.124050413 0.88346 0.071826 10.2376 -0.0543285 -0.0234358 -0.461259 0.08 -0.5 pose: 0.0 -0.596415 -3.81059 0 0.0190404 0.00521631 0.999015 -0.0397321 uwb: 0.0 1230.2 1030.31 +imu_odom_: 1691062508.137911740 0.756568 -0.0981623 9.63427 -0.0681769 -0.00745685 -0.462325 0.08 -0.5 pose: 0.0 -0.596415 -3.81059 0 0.0190404 0.00521631 0.999015 -0.0397321 uwb: 0.49822790 1230.61 1032.2 +imu_odom_: 1691062508.156062789 0.687136 -0.0790087 9.68933 -0.0607201 0 -0.486826 0.06 -0.5 pose: 0.33081525 -0.596415 -3.81059 0 0.0206793 0.00371286 0.999266 -0.0320235 uwb: 0.0 1230.61 1032.2 +imu_odom_: 1691062508.172103536 0.948104 -0.289698 9.61033 -0.072438 -0.0245011 -0.52198 0.06 -0.5 pose: 0.0 -0.596415 -3.81059 0 0.0206793 0.00371286 0.999266 -0.0320235 uwb: 0.0 1230.61 1032.2 +imu_odom_: 1691062508.188916252 0.608127 0.059855 10.2065 -0.0703074 -0.0149137 -0.52198 0.06 -0.5 pose: 0.0 -0.596415 -3.81059 0 0.0206793 0.00371286 0.999266 -0.0320235 uwb: 0.50182965 1230.5 1033.01 +imu_odom_: 1691062508.205314258 0.646434 -0.347159 9.83777 -0.056459 0.00958738 -0.525175 0.06 -0.53 pose: 0.46878108 -0.599609 -3.80111 0 0.018491 0.00640231 0.999605 -0.0201821 uwb: 0.0 1230.5 1033.01 +imu_odom_: 1691062508.222097810 0.605733 -0.23942 9.51456 -0.0628506 -0.0276969 -0.486826 0.07 -0.7 pose: 0.0 -0.599609 -3.80111 0 0.018491 0.00640231 0.999605 -0.0201821 uwb: 0.0 1230.5 1033.01 +imu_odom_: 1691062508.237964740 0.543484 -0.3304 9.84975 -0.0681769 0.00426106 -0.445281 0.07 -0.7 pose: 0.66116388 -0.609073 -3.80434 0 0.0165156 0.00471051 0.999851 -0.00190263 uwb: 0.49809374 1230.72 1033.45 +imu_odom_: 1691062508.256047837 0.744597 -0.275333 10.058 -0.0532632 -0.0149137 -0.40267 0.07 -0.58 pose: 0.0 -0.609073 -3.80434 0 0.0165156 0.00471051 0.999851 -0.00190263 uwb: 0.0 1230.72 1033.45 +imu_odom_: 1691062508.274013112 0.663194 -0.275333 9.74919 -0.052198 -0.00745685 -0.360059 0.07 -0.58 pose: 0.0 -0.609073 -3.80434 0 0.0165156 0.00471051 0.999851 -0.00190263 uwb: 0.0 1230.72 1033.45 +imu_odom_: 1691062508.286944401 0.636858 -0.191536 9.91199 -0.056459 -0.00213053 -0.320645 0.07 -0.58 pose: 0.33995523 -0.609073 -3.80434 0 0.0151434 0.0020385 0.999863 0.00633875 uwb: 0.50076517 1230.68 1034.89 +imu_odom_: 1691062508.311955391 0.581791 -0.232238 9.88087 -0.0511327 -0.0106526 -0.295078 0.04 -0.29 pose: 0.40833591 -0.609073 -3.80431 0 0.0136433 0.000216991 0.999803 0.0144226 uwb: 0.0 1230.68 1034.89 +imu_odom_: 1691062508.328948632 0.665588 -0.268151 9.76355 -0.0607201 -0.00106526 -0.268447 0.04 -0.29 pose: 0.8062078 -0.609073 -3.80434 0 0.0128921 3.64719e-05 0.999793 0.0157686 uwb: 0.0 1230.68 1034.89 +imu_odom_: 1691062508.345891711 -0.488417 -0.234632 9.92157 -0.0308927 0.106526 -0.282295 0.05 -0.23 pose: 0.0 -0.609073 -3.80434 0 0.0128921 3.64719e-05 0.999793 0.0157686 uwb: 0.49925155 1230.36 1035.87 +imu_odom_: 1691062508.359886608 -1.34315 -0.131681 10.1969 -0.04048 0.0735032 -0.245011 0.07 -0.23 pose: 0.50885232 -0.609073 -3.80434 0 0.0097484 -0.00135775 0.999665 0.0239235 uwb: 0.0 1230.36 1035.87 +imu_odom_: 1691062508.376947801 -1.16598 -0.268151 9.67497 -0.0500674 -0.0596548 -0.192813 0.07 -0.2 pose: 0.0 -0.609073 -3.80434 0 0.0097484 -0.00135775 0.999665 0.0239235 uwb: 0.0 1230.36 1035.87 +imu_odom_: 1691062508.390935699 -0.251391 -0.380678 10.058 -0.056459 -0.100135 -0.154463 0.07 -0.2 pose: 0.0 -0.609073 -3.80434 0 0.0097484 -0.00135775 0.999665 0.0239235 uwb: 0.50049686 1230.21 1036.05 +imu_odom_: 1691062508.407933606 0.737414 -0.23942 10.3334 -0.056459 -0.0713727 -0.142745 0.07 -0.2 pose: 0.22005646 -0.618565 -3.80749 0 0.00723552 -0.001085 0.999613 0.0268428 uwb: 0.0 1230.21 1036.05 +imu_odom_: 1691062508.421992955 0.814029 -0.0287304 9.75398 -0.0415453 -0.0106526 -0.153398 0.09 -0.23 pose: 0.0 -0.618565 -3.80749 0 0.00723552 -0.001085 0.999613 0.0268428 uwb: 0.0 1230.21 1036.05 +imu_odom_: 1691062508.436973010 0.244209 -0.0383072 9.94791 -0.0458064 -0.0138484 -0.132093 0.09 -0.23 pose: 0.0 -0.618565 -3.80749 0 0.00723552 -0.001085 0.999613 0.0268428 uwb: 0.50143301 1230.56 1037.14 +imu_odom_: 1691062508.454929244 0.0861913 -0.105345 9.86172 -0.04048 -0.00958738 -0.149137 0.16 -0.26 pose: 0.69075653 -0.618565 -3.80749 0 0.00807853 0.000406908 0.999408 0.0334499 uwb: 0.0 1230.56 1037.14 +imu_odom_: 1691062508.470987198 0.371101 0.0215478 10.2328 -0.0340885 -0.0351537 -0.137419 0.16 -0.26 pose: 0.0 -0.618565 -3.80749 0 0.00807853 0.000406908 0.999408 0.0334499 uwb: 0.0 1230.56 1037.14 +imu_odom_: 1691062508.487928236 0.428562 -0.289698 9.91199 -0.0628506 0.02024 -0.111853 0.16 -0.26 pose: 0.0 -0.618565 -3.80749 0 0.00807853 0.000406908 0.999408 0.0334499 uwb: 0.49912324 1230.39 1037.93 +imu_odom_: 1691062508.503923487 0.557849 -0.301669 10.3166 -0.0458064 -0.00426106 -0.11931 0.12 -0.17 pose: 0.7984794 -0.618565 -3.80749 0 0.0073248 0.000656431 0.999388 0.0342044 uwb: 0.0 1230.39 1037.93 +imu_odom_: 1691062508.520923436 0.337582 -0.251391 9.62469 -0.0500674 0.0138484 -0.111853 0.12 -0.17 pose: 0.0 -0.618565 -3.80749 0 0.0073248 0.000656431 0.999388 0.0342044 uwb: 0.0 1230.39 1037.93 +imu_odom_: 1691062508.535861786 0.316035 0.0287304 9.86172 -0.052198 0.0234358 -0.0969391 0.12 -0.17 pose: 0.0 -0.618565 -3.80749 0 0.0073248 0.000656431 0.999388 0.0342044 uwb: 0.49933321 1230.18 1038.31 +imu_odom_: 1691062508.553858558 0.306458 -0.387861 9.26556 -0.0575243 -0.00426106 -0.0820254 0.15 -0.14 pose: 0.49972692 -0.628058 -3.81063 0 0.00483497 0.000445067 0.99925 0.0384044 uwb: 0.0 1230.18 1038.31 +imu_odom_: 1691062508.571017159 0.280122 0.0550666 10.0628 -0.0479369 -0.0127832 -0.0969391 0.13 -0.14 pose: 0.0 -0.628058 -3.81063 0 0.00483497 0.000445067 0.99925 0.0384044 uwb: 0.0 1230.18 1038.31 +imu_odom_: 1691062508.584957519 0.37589 0.0622492 10.1131 -0.0511327 -0.076699 -0.0798948 0.13 -0.14 pose: 0.66941437 -0.640722 -3.80426 0 0.00103814 0.000143483 0.999072 0.0430594 uwb: 0.49918739 1229.68 1039.26 +imu_odom_: 1691062508.603004745 1.13246 0.0861913 10.0221 -0.0671117 -0.0894822 -0.056459 0.13 -0.14 pose: 0.0 -0.640722 -3.80426 0 0.00103814 0.000143483 0.999072 0.0430594 uwb: 0.0 1229.68 1039.26 +imu_odom_: 1691062508.617015974 1.31442 -0.248997 9.91678 -0.0585895 -0.0532632 -0.0245011 0.12 -0.14 pose: 0.0 -0.640722 -3.80426 0 0.00103814 0.000143483 0.999072 0.0430594 uwb: 0.0 1229.68 1039.26 +imu_odom_: 1691062508.635136110 1.4461 -0.579397 10.07 -0.0500674 -0.0117179 -0.0106526 0.12 -0.14 pose: 0.31168662 -0.640722 -3.80426 0 0.00214637 0.00256876 0.998986 0.0449042 uwb: 0.50402278 1229.24 1040.42 +imu_odom_: 1691062508.652005696 1.31681 0.0502782 10.1873 -0.0468716 -0.0394148 -0.036219 0.1 -0.11 pose: 0.42095515 -0.645732 -3.80591 0 0.00693433 0.00176589 0.998903 0.0462715 uwb: 0.0 1229.24 1040.42 +imu_odom_: 1691062508.669036558 1.48441 0.177171 9.91678 -0.0436758 -0.0181095 -0.0543285 0.1 -0.11 pose: 0.0 -0.645732 -3.80591 0 0.00693433 0.00176589 0.998903 0.0462715 uwb: 0.0 1229.24 1040.42 +imu_odom_: 1691062508.684968232 1.01514 -0.059855 9.62708 -0.0585895 0.0298274 -0.0639159 0.1 -0.11 pose: 0.0 -0.645732 -3.80591 0 0.00693433 0.00176589 0.998903 0.0462715 uwb: 0.49710217 1229.36 1040.44 +imu_odom_: 1691062508.702026509 0.725443 -0.342371 9.83538 -0.0511327 0.0117179 -0.092678 0.09 -0.14 pose: 0.8890917 -0.650208 -3.80742 0 0.00795656 0.00200448 0.99888 0.0466077 uwb: 0.0 1229.36 1040.44 +imu_odom_: 1691062508.717965765 0.713472 -0.225055 9.88566 -0.052198 -0.0170442 -0.100135 0.06 -0.08 pose: 0.0 -0.650208 -3.80742 0 0.00795656 0.00200448 0.99888 0.0466077 uwb: 0.0 1229.36 1040.44 +imu_odom_: 1691062508.734975630 0.861913 -0.143652 10.1131 -0.0490022 -0.0170442 -0.0798948 0.06 -0.08 pose: 0.65948987 -0.650208 -3.80742 0 0.0130832 0.00108439 0.998654 0.0501796 uwb: 0.50154968 1229.55 1040.06 +imu_odom_: 1691062508.750972631 0.703895 -0.160412 9.71088 -0.0585895 -0.0138484 -0.0543285 0.05 -0.08 pose: 0.0 -0.650208 -3.80742 0 0.0130832 0.00108439 0.998654 0.0501796 uwb: 0.0 1229.55 1040.06 +imu_odom_: 1691062508.768966195 0.78051 -0.363919 9.78031 -0.0490022 0.00532632 -0.0468716 0.05 -0.08 pose: 0.0 -0.650208 -3.80742 0 0.0130832 0.00108439 0.998654 0.0501796 uwb: 0.0 1229.55 1040.06 +imu_odom_: 1691062508.784852957 0.691924 -0.141258 9.97185 -0.0458064 0.00213053 -0.0447411 0.05 -0.08 pose: 0.32998116 -0.653364 -3.79793 0 0.0157615 0.00173267 0.998514 0.0521321 uwb: 0.49971817 1229.8 1041.76 +imu_odom_: 1691062508.811059376 0.553061 -0.136469 10.0078 -0.0532632 -0.00106526 -0.0255663 0.06 -0.08 pose: 0.41878827 -0.658089 -3.79951 0 0.0153934 0.00220003 0.998422 0.053955 uwb: 0.0 1229.8 1041.76 +imu_odom_: 1691062508.827959001 -0.572214 -0.263362 9.51695 -0.0553937 0.0575243 -0.0266316 0.06 -0.08 pose: 0.0 -0.658089 -3.79951 0 0.0153934 0.00220003 0.998422 0.053955 uwb: 0.0 1229.8 1041.76 +imu_odom_: 1691062508.854110301 -1.403 -0.153229 10.0437 -0.0468716 -0.0436758 -0.02024 0.08 -0.05 pose: 0.8040788 -0.662852 -3.80109 0 0.0145889 0.00235206 0.99842 0.0542209 uwb: 0.49933905 1229.7 1041.74 +imu_odom_: 1691062508.870159505 -1.13725 -0.153229 9.5792 -0.0500674 -0.150202 -0.0181095 0.09 -0.08 pose: 0.0 -0.662852 -3.80109 0 0.0145889 0.00235206 0.99842 0.0542209 uwb: 0.0 1229.7 1041.74 +imu_odom_: 1691062508.886872481 -0.213084 -0.37589 9.81623 -0.0468716 -0.1012 -0.0149137 0.11 -0.05 pose: 0.77265760 -0.662852 -3.80109 0 0.00803309 0.00296813 0.998358 0.0566457 uwb: 0.49928072 1229.85 1042.39 +imu_odom_: 1691062508.911834767 0.914585 -0.172383 10.5967 -0.0468716 0.0170442 -0.00745685 0.11 -0.05 pose: 0.0 -0.662852 -3.80109 0 0.00803309 0.00296813 0.998358 0.0566457 uwb: 0.0 1229.85 1042.39 +imu_odom_: 1691062508.934852402 -0.232238 -0.246603 9.67497 -0.036219 0.0426106 -0.015979 0.14 -0.02 pose: 0.41675262 -0.662852 -3.80109 0 0.0094403 0.00245208 0.998287 0.0576796 uwb: 0.50012647 1229.46 1042.94 +imu_odom_: 1691062508.960834551 -0.205901 -0.198719 9.61511 -0.0639159 -0.0245011 0.0234358 0.14 -0.02 pose: 0.7017718 -0.662852 -3.80109 0 0.00857836 0.00249435 0.998284 0.057875 uwb: 0.0 1229.46 1042.94 +imu_odom_: 1691062508.976820761 0.023942 -0.371101 9.56962 -0.052198 -0.00213053 -0.00852212 0.12 -0.05 pose: 0.24009792 -0.672336 -3.80426 0 0.00589084 0.00255469 0.998273 0.0583875 uwb: 0.0 1229.46 1042.94 +imu_odom_: 1691062509.1832043 0.672771 -0.0023942 9.83777 -0.0639159 -0.015979 0.00852212 0.12 -0.05 pose: 0.0 -0.672336 -3.80426 0 0.00589084 0.00255469 0.998273 0.0583875 uwb: 0.49733840 1229.62 1042.97 +imu_odom_: 1691062509.25031959 0.0311246 -0.129287 10.2735 -0.0426106 -0.0181095 0.00958738 0.14 -0.02 pose: 0.25000782 -0.672336 -3.80426 0 0.00360697 0.00223303 0.998266 0.0587079 uwb: 0.0 1229.62 1042.97 +imu_odom_: 1691062509.41029839 0.363919 -0.225055 10.0317 -0.0468716 -0.0628506 0.00426106 0.14 -0.02 pose: 0.0 -0.672336 -3.80426 0 0.00360697 0.00223303 0.998266 0.0587079 uwb: 0.50132811 1229.57 1043.38 +imu_odom_: 1691062509.66820972 0.514753 -0.308852 9.78031 -0.0607201 0.052198 0.0149137 0.18 -0.05 pose: 0.41049697 -0.675487 -3.79477 0 0.00430354 0.00334737 0.998218 0.0594201 uwb: 0.0 1229.57 1043.38 +imu_odom_: 1691062509.91848009 0.507571 -0.213084 10.0461 -0.0532632 0 0.0372843 0.18 -0.05 pose: 0.0 -0.675487 -3.79477 0 0.00430354 0.00334737 0.998218 0.0594201 uwb: 0.0 1229.57 1043.38 +imu_odom_: 1691062509.116812927 0.411803 0.0023942 9.68215 -0.0671117 -0.0415453 0.0106526 0.16 -0.05 pose: 0.40927802 -0.684981 -3.79791 0 0.00215662 0.00178999 0.998191 0.0600583 uwb: 0.0 1229.57 1043.38 +imu_odom_: 1691062509.139817154 0.553061 -0.203507 9.31344 -0.056459 -0.0106526 0.0255663 0.16 -0.05 pose: 0.48992216 -0.694481 -3.80104 0 0.00469434 0.000473457 0.998164 0.0603921 uwb: 0.99981577 1229.28 1043.11 +imu_odom_: 1691062509.155803077 0.442927 -0.3304 9.76595 -0.0553937 0.00639159 0.0149137 0.14 -0.02 pose: 0.0 -0.694481 -3.80104 0 0.00469434 0.000473457 0.998164 0.0603921 uwb: 0.0 1229.28 1043.11 +imu_odom_: 1691062509.172874774 0.167594 -0.0383072 10.1754 -0.0394148 -0.0170442 0.00532632 0.14 -0.02 pose: 0.0 -0.694481 -3.80104 0 0.00469434 0.000473457 0.998164 0.0603921 uwb: 0.0 1229.28 1043.11 +imu_odom_: 1691062509.197861565 0.059855 0.00718261 10.1562 -0.0436758 0.0639159 0.0351537 0.15 0 pose: 0.74042000 -0.707099 -3.79465 0 0.00423481 0.000651763 0.99811 0.0612968 uwb: 0.50000122 1228.65 1042.79 +imu_odom_: 1691062509.222809860 0.588974 -0.143652 10.0341 -0.0447411 -0.0106526 0.0170442 0.15 0 pose: 0.7956799 -0.707099 -3.79465 0 0.00327055 0.00110069 0.998112 0.0613162 uwb: 0.0 1228.65 1042.79 +imu_odom_: 1691062509.246804494 0.225055 0.102951 9.92636 -0.0585895 0.0458064 0.0234358 0.16 -0.02 pose: 0.41978287 -0.713612 -3.79685 0 0.00377753 0.00246678 0.998089 0.061633 uwb: 0.49876466 1228.87 1043.24 +imu_odom_: 1691062509.272979132 0.0407014 -0.579397 10.1155 -0.0575243 -0.015979 0.0266316 0.16 -0.02 pose: 0.0 -0.713612 -3.79685 0 0.00377753 0.00246678 0.998089 0.061633 uwb: 0.0 1228.87 1043.24 +imu_odom_: 1691062509.296796157 0.366313 0.0933739 9.59835 -0.0458064 0.0276969 0.0330232 0.17 0 pose: 0.32075962 -0.716574 -3.79785 0 0.00112248 0.00372236 0.998075 0.0618896 uwb: 0.50278054 1228.9 1043.46 +imu_odom_: 1691062509.321908937 -0.0311246 -0.201113 9.97185 -0.0713727 0.00426106 0.0255663 0.17 -0.02 pose: 0.0 -0.716574 -3.79785 0 0.00112248 0.00372236 0.998075 0.0618896 uwb: 0.0 1228.9 1043.46 +imu_odom_: 1691062509.335947292 -0.208296 -0.181959 9.91678 -0.0479369 0.00426106 0.0138484 0.17 -0.02 pose: 0.50250056 -0.72924 -3.79156 0 -0.00142995 0.0047417 0.998055 0.0621496 uwb: 0.49695941 1229.59 1042.76 +imu_odom_: 1691062509.360947207 0.00718261 -0.160412 10.1131 -0.0756338 -0.0436758 0.0479369 0.16 -0.02 pose: 0.0 -0.72924 -3.79156 0 -0.00142995 0.0047417 0.998055 0.0621496 uwb: 0.0 1229.59 1042.76 +imu_odom_: 1691062509.377936078 0.955286 -0.275333 9.72764 -0.0426106 -0.0479369 0.0170442 0.16 -0.02 pose: 0.7890013 -0.72924 -3.79156 0 -0.00527492 0.00429124 0.998026 0.0624315 uwb: 0.0 1229.59 1042.76 +imu_odom_: 1691062509.401788975 0.138864 -0.0574608 9.36612 -0.0532632 0.015979 0.0394148 0.16 -0.02 pose: 0.0 -0.72924 -3.79156 0 -0.00527492 0.00429124 0.998026 0.0624315 uwb: 0.49996913 1229.68 1042.78 +imu_odom_: 1691062509.427916952 0.52433 -0.294487 9.45949 -0.0639159 0.0458064 0.0276969 0.17 0 pose: 0.42159395 -0.738721 -3.79473 0 -0.00540177 0.0041472 0.998018 0.0625587 uwb: 0.0 1229.68 1042.78 +imu_odom_: 1691062509.452769880 0.282516 -0.19393 9.73004 -0.0490022 0.0255663 0.0436758 0.17 0 pose: 0.41920252 -0.747512 -3.79036 0 -0.00545769 0.00338417 0.998011 0.0627122 uwb: 0.50132234 1230.06 1044.09 +imu_odom_: 1691062509.475781397 0.811634 -0.0622492 10.3932 -0.0394148 -0.0596548 0.0372843 0.17 0 pose: 0.0 -0.747512 -3.79036 0 -0.00545769 0.00338417 0.998011 0.0627122 uwb: 0.0 1230.06 1044.09 +imu_odom_: 1691062509.492777851 0.457293 0.129287 9.95748 -0.0298274 0.0138484 0.0372843 0.23 -0.02 pose: 0.7956215 -0.751379 -3.78843 0 -0.00585956 0.00267311 0.998012 0.0627007 uwb: 0.49931295 1229.9 1044.9 +imu_odom_: 1691062509.516778901 0.0622492 -0.237026 9.65103 -0.0703074 0.0213053 0.0553937 0.23 -0.02 pose: 0.0 -0.751379 -3.78843 0 -0.00585956 0.00267311 0.998012 0.0627007 uwb: 0.0 1229.9 1044.9 +imu_odom_: 1691062509.542775056 -0.0311246 -0.181959 9.60314 -0.0458064 0.0213053 0.0351537 0.18 0.02 pose: 0.47912274 -0.751379 -3.78843 0 -0.00351242 0.00255069 0.998023 0.0627059 uwb: 0.50049700 1229.69 1045.48 +imu_odom_: 1691062509.566756858 -0.071826 -0.308852 9.88087 -0.0511327 -0.0181095 0.0511327 0.18 0.02 pose: 0.0 -0.751379 -3.78843 0 -0.00351242 0.00255069 0.998023 0.0627059 uwb: 0.0 1229.69 1045.48 +imu_odom_: 1691062509.584815171 0.366313 -0.0622492 10.0748 -0.04048 -0.0426106 0.0308927 0.17 0.02 pose: 0.41119118 -0.760863 -3.7916 0 -0.00675465 0.00282384 0.998015 0.0625506 uwb: 0.50038034 1230.26 1045.8 +imu_odom_: 1691062509.608764892 0.407014 -0.213084 9.98143 -0.0607201 -0.0319579 0.0468716 0.17 0.02 pose: 0.0 -0.760863 -3.7916 0 -0.00675465 0.00282384 0.998015 0.0625506 uwb: 0.0 1230.26 1045.8 +imu_odom_: 1691062509.631837071 0.320823 -0.270545 8.97107 0.00426106 0.0223706 0.0149137 0.17 0.02 pose: 0.49869175 -0.773521 -3.7853 0 -0.00998322 0.00258162 0.997992 0.0624998 uwb: 0.49955209 1230.71 1046.52 +imu_odom_: 1691062509.648774030 0.457293 -0.0766145 11.0708 0.00958738 -0.00319579 0.0276969 0.17 0.02 pose: 0.0 -0.773521 -3.7853 0 -0.00998322 0.00258162 0.997992 0.0624998 uwb: 0.0 1230.71 1046.52 +imu_odom_: 1691062509.672768372 0.047884 0.208296 10.0652 -0.0511327 0.0383495 0.0639159 0.18 0 pose: 0.41008878 -0.783003 -3.78847 0 -0.00621195 0.00184434 0.998021 0.0625432 uwb: 0.0 1230.71 1046.52 +imu_odom_: 1691062509.698823147 0.440533 -0.435745 10.0772 -0.0862864 -0.0127832 0.0543285 0.18 0 pose: 0.0 -0.783003 -3.78847 0 -0.00621195 0.00184434 0.998021 0.0625432 uwb: 0.0 1230.71 1046.52 +imu_odom_: 1691062509.722821864 0.995988 -0.023942 10.4674 -0.0543285 0.00639159 0.0500674 0.18 0.02 pose: 0.41053790 -0.783003 -3.78847 0 -0.00505919 0.00293892 0.998012 0.0627495 uwb: 0.0 1230.71 1046.52 +imu_odom_: 1691062509.740817474 0.0311246 -0.160412 9.40921 -0.105461 0.052198 0.0894822 0.18 0.02 pose: 0.0 -0.783003 -3.78847 0 -0.00505919 0.00293892 0.998012 0.0627495 uwb: 0.99990327 1230.83 1047.38 +imu_odom_: 1691062509.756867850 0.45011 -0.153229 10.1969 -0.11931 0.0319579 0.0980043 0.18 0.02 pose: 0.49947335 -0.795661 -3.78216 0 -0.00426183 0.00173971 0.998045 0.0623239 uwb: 0.0 1230.83 1047.38 +imu_odom_: 1691062509.781761608 0.337582 -0.476446 10.2735 -0.0916127 -0.00106526 0.0681769 0.18 0.02 pose: 0.0 -0.795661 -3.78216 0 -0.00426183 0.00173971 0.998045 0.0623239 uwb: 0.49984664 1231.29 1047.27 +imu_odom_: 1691062509.805759742 0.490811 -0.217872 9.56723 -0.0639159 0.0511327 0.00639159 0.18 0.02 pose: 0.41976829 -0.805141 -3.78535 0 -0.00445738 0.00169708 0.998092 0.0615535 uwb: 0.0 1231.29 1047.27 +imu_odom_: 1691062509.830864355 0.198719 -0.42138 10.094 -0.0617853 0.0170442 0.0830906 0.18 0.02 pose: 0.0 -0.805141 -3.78535 0 -0.00445738 0.00169708 0.998092 0.0615535 uwb: 0.50021120 1231.65 1047.97 +imu_odom_: 1691062509.855866020 0.500388 -0.304064 10.1993 -0.0149137 -0.00532632 0.0266316 0.18 0 pose: 0.41005378 -0.805141 -3.78535 0 -0.00334336 -0.00131312 0.998125 0.0610998 uwb: 0.0 1231.65 1047.97 +imu_odom_: 1691062509.878781004 0.893037 -0.155623 9.87608 -0.0553937 -0.0266316 0.0692422 0.18 0 pose: 0.0 -0.805141 -3.78535 0 -0.00334336 -0.00131312 0.998125 0.0610998 uwb: 0.50026660 1231.6 1047.75 +imu_odom_: 1691062509.895773376 0.833182 -0.31364 9.67497 -0.0628506 0.0298274 0.0532632 0.18 0 pose: 0.48145003 -0.817817 -3.77908 0 -0.00355263 -0.00300031 0.998135 0.060872 uwb: 0.0 1231.6 1047.75 +imu_odom_: 1691062509.920803329 0.25618 -0.299275 10.1083 -0.0607201 0.0351537 0.0681769 0.18 0 pose: 0.0 -0.817817 -3.77908 0 -0.00355263 -0.00300031 0.998135 0.060872 uwb: 0.0 1231.6 1047.75 +imu_odom_: 1691062509.936752215 0.102951 -0.289698 9.81383 -0.0575243 -0.0330232 0.0585895 0.18 0 pose: 0.66012584 -0.827289 -3.78229 0 0.00116758 -0.00305493 0.998167 0.0604332 uwb: 0.49989914 1231.46 1048.99 +imu_odom_: 1691062509.962899439 0.608127 -0.282516 9.60793 -0.0756338 -0.0575243 0.0575243 0.18 0 pose: 0.0 -0.827289 -3.78229 0 0.00116758 -0.00305493 0.998167 0.0604332 uwb: 0.0 1231.46 1048.99 +imu_odom_: 1691062509.988751232 0.294487 -0.371101 9.89524 -0.0266316 0.0170442 0.0351537 0.18 0 pose: 0.41999285 -0.839974 -3.77604 0 -0.00106709 -0.00339854 0.998195 0.0599507 uwb: 0.49986123 1231.52 1049.84 +imu_odom_: 1691062510.13743276 0.191536 -0.196325 10.0987 -0.0276969 -0.0149137 0.056459 0.2 0 pose: 0.42828416 -0.849439 -3.77926 0 -0.00145021 -0.00459548 0.998196 0.0598501 uwb: 0.0 1231.52 1049.84 +imu_odom_: 1691062510.38753697 0.565032 0.122104 9.80426 -0.0298274 -0.0138484 0.0415453 0.2 0 pose: 0.0 -0.849439 -3.77926 0 -0.00145021 -0.00459548 0.998196 0.0598501 uwb: 0.50100161 1231.85 1051.19 +imu_odom_: 1691062510.62714799 0.622492 -0.296881 9.48822 -0.0692422 -0.00319579 0.0660464 0.2 0 pose: 0.8000253 -0.849439 -3.77926 0 -0.00206456 -0.00403837 0.998201 0.0597791 uwb: 0.0 1231.85 1051.19 +imu_odom_: 1691062510.79800208 0 -0.0861913 9.97424 -0.0245011 0.0394148 0.0319579 0.2 0 pose: 0.0 -0.849439 -3.77926 0 -0.00206456 -0.00403837 0.998201 0.0597791 uwb: 0.49878522 1231.68 1052.85 +imu_odom_: 1691062510.93793363 0.521936 -0.143652 9.76355 -0.0426106 -0.0308927 0.0458064 0.2 0 pose: 0.0 -0.849439 -3.77926 0 -0.00206456 -0.00403837 0.998201 0.0597791 uwb: 0.0 1231.68 1052.85 +imu_odom_: 1691062510.118842573 0.593762 -0.205901 10.0987 -0.0319579 -0.0255663 0.0340885 0.18 0 pose: 0.49176252 -0.858903 -3.78249 0 -0.00119965 -0.0007277730.998227 0.0595073 uwb: 0.0 1231.68 1052.85 +imu_odom_: 1691062510.134842791 0.385466 0.141258 9.96227 -0.0468716 -0.015979 0.0639159 0.18 0 pose: 0.0 -0.858903 -3.78249 0 -0.00119965 -0.0007277730.998227 0.0595073 uwb: 0.50041549 1231.86 1053.53 +imu_odom_: 1691062510.151747092 0.0646434 -0.457293 9.60314 -0.0585895 -0.0266316 0.0617853 0.25 -0.02 pose: 0.79829317 -0.871599 -3.77627 0 0.00264469 0.0011484 0.998236 0.0592925 uwb: 0.0 1231.86 1053.53 +imu_odom_: 1691062510.177923779 0.248997 0 9.82102 -0.0426106 -0.0170442 0.0415453 0.25 -0.02 pose: 0.0 -0.871599 -3.77627 0 0.00264469 0.0011484 0.998236 0.0592925 uwb: 0.0 1231.86 1053.53 +imu_odom_: 1691062510.202870623 0.213084 -0.246603 10.1227 -0.0660464 -0.0255663 0.0468716 0.25 0.02 pose: 0.33992626 -0.88106 -3.7795 0 0.000886513 0.00178577 0.998256 0.0589919 uwb: 0.49937433 1231.67 1056.25 +imu_odom_: 1691062510.225821778 0.296881 -0.395043 9.86411 -0.0649811 0.04048 0.0596548 0.25 0.02 pose: 0.0 -0.88106 -3.7795 0 0.000886513 0.00178577 0.998256 0.0589919 uwb: 0.0 1231.67 1056.25 +imu_odom_: 1691062510.251831939 0.737414 -0.100556 10.0509 -0.0692422 -0.00852212 0.0415453 0.21 0 pose: 0.49975638 -0.893763 -3.77329 0 -0.00254109 0.00143202 0.998264 0.0588276 uwb: 0.50098126 1231.99 1056.55 +imu_odom_: 1691062510.267693920 0.560243 0.162806 9.84735 -0.056459 -0.036219 0.0500674 0.21 0 pose: 0.0 -0.893763 -3.77329 0 -0.00254109 0.00143202 0.998264 0.0588276 uwb: 0.0 1231.99 1056.55 +imu_odom_: 1691062510.293702040 0.0790087 -0.244209 10.2615 -0.0639159 0.036219 0.0394148 0.18 -0.02 pose: 0.49136591 -0.903221 -3.77654 0 -0.0004096740.000881952 0.998281 0.0586048 uwb: 0.50000136 1232.19 1057.24 +imu_odom_: 1691062510.306761657 0.134075 -0.150835 9.93833 -0.0308927 0.0468716 0.0245011 0.18 -0.02 pose: 0.0 -0.903221 -3.77654 0 -0.0004096740.000881952 0.998281 0.0586048 uwb: 0.0 1232.19 1057.24 +imu_odom_: 1691062510.323848233 0.85473 -0.1652 9.83059 -0.0553937 -0.0383495 0.0671117 0.18 -0.02 pose: 0.40837114 -0.906472 -3.76708 0 -0.00369045 0.00145856 0.998273 0.0586083 uwb: 0.0 1232.19 1057.24 +imu_odom_: 1691062510.346836134 0.124498 -0.265756 9.6199 -0.0479369 0.00106526 0.0436758 0.18 -0.02 pose: 0.0 -0.906472 -3.76708 0 -0.00369045 0.00145856 0.998273 0.0586083 uwb: 0.49886688 1232.18 1058.53 +imu_odom_: 1691062510.371855596 0.445322 -0.0909797 10.1227 -0.0649811 -0.00958738 0.052198 0.18 -0.02 pose: 0.47137111 -0.915929 -3.77033 0 -0.0048119 0.00114219 0.998282 0.0583829 uwb: 0.0 1232.18 1058.53 +imu_odom_: 1691062510.396841227 0.203507 -0.100556 10.137 -0.0372843 -0.0308927 0.0191748 0.18 -0.02 pose: 0.0 -0.915929 -3.77033 0 -0.0048119 0.00114219 0.998282 0.0583829 uwb: 0.49991095 1231.93 1059.33 +imu_odom_: 1691062510.419896206 0.646434 -0.584185 9.60314 -0.0798948 -0.0372843 0.0511327 0.2 -0.02 pose: 0.8032918 -0.915929 -3.77033 0 -0.00412543 0.00155218 0.998288 0.0583294 uwb: 0.0 1231.93 1059.33 +imu_odom_: 1691062510.435675653 0.565032 -0.23942 9.84496 -0.0575243 0.0213053 0.0351537 0.2 -0.02 pose: 0.0 -0.915929 -3.77033 0 -0.00412543 0.00155218 0.998288 0.0583294 uwb: 0.49870648 1232.13 1060.25 +imu_odom_: 1691062510.452839513 0.531513 -0.385466 9.83059 -0.0553937 -0.00745685 0.0372843 0.25 -0.02 pose: 0.49056391 -0.925384 -3.77359 0 -0.00400729 0.00315351 0.998278 0.0584339 uwb: 0.0 1232.13 1060.25 +imu_odom_: 1691062510.477831852 0.785298 -0.275333 10.0389 -0.04048 -0.036219 0.0298274 0.25 -0.02 pose: 0.0 -0.925384 -3.77359 0 -0.00400729 0.00315351 0.998278 0.0584339 uwb: 0.0 1232.13 1060.25 +imu_odom_: 1691062510.503676362 0.629675 -0.126893 9.88087 -0.052198 -0.0117179 0.0500674 0.21 0.02 pose: 0.73906409 -0.938094 -3.76739 0 0.00235524 -0.0005623350.998283 0.0585215 uwb: 0.50130498 1232.47 1061.2 +imu_odom_: 1691062510.528665785 0.392649 -0.071826 10.2089 -0.0436758 -0.0394148 0.0415453 0.21 0.02 pose: 0.7872517 -0.938094 -3.76739 0 0.00310069 -0.0002223730.998284 0.0584813 uwb: 0.0 1232.47 1061.2 +imu_odom_: 1691062510.552669759 0.529119 -0.0766145 9.61751 -0.0585895 -0.0372843 0.0543285 0.21 0 pose: 0.42961416 -0.94755 -3.77064 0 0.00374775 0.0026752 0.998284 0.0583751 uwb: 0.49876189 1232.52 1061.86 +imu_odom_: 1691062510.568848460 0.88346 -0.347159 9.90002 -0.0532632 0.0117179 0.0436758 0.21 0 pose: 0.0 -0.94755 -3.77064 0 0.00374775 0.0026752 0.998284 0.0583751 uwb: 0.0 1232.52 1061.86 +imu_odom_: 1691062510.592671617 0.35913 -0.220267 9.71806 -0.076699 0.02024 0.0681769 0.18 -0.02 pose: 0.0 -0.94755 -3.77064 0 0.00374775 0.0026752 0.998284 0.0583751 uwb: 0.50052048 1232.75 1062.8 +imu_odom_: 1691062510.609786482 0.466869 -0.184354 10.0748 -0.0681769 -0.0351537 0.0585895 0.18 -0.02 pose: 0.40182675 -0.960261 -3.76444 0 0.00683482 0.00360789 0.998278 0.0581567 uwb: 0.0 1232.75 1062.8 +imu_odom_: 1691062510.635733065 0.430956 -0.0909797 10.1778 -0.0532632 -0.02024 0.0532632 0.18 0.02 pose: 0.0 -0.960261 -3.76444 0 0.00683482 0.00360789 0.998278 0.0581567 uwb: 0.50179494 1232.69 1063.65 +imu_odom_: 1691062510.651742908 -0.0023942 -0.301669 10.0006 -0.0607201 0.00319579 0.0543285 0.18 0.02 pose: 0.40938022 -0.964951 -3.76606 0 0.00342382 0.00107897 0.99833 0.0576565 uwb: 0.0 1232.69 1063.65 +imu_odom_: 1691062510.677681909 0.263362 -0.371101 9.9096 -0.0649811 -0.0213053 0.056459 0.19 0.02 pose: 0.0 -0.964951 -3.76606 0 0.00342382 0.00107897 0.99833 0.0576565 uwb: 0.0 1232.69 1063.65 +imu_odom_: 1691062510.702940516 0.627281 -0.438139 10.0724 -0.072438 -0.0127832 0.0383495 0.19 0.02 pose: 0.41956426 -0.971443 -3.76271 0 0.00119824 0.00306977 0.998347 0.057375 uwb: 0.49717245 1232.39 1064.66 +imu_odom_: 1691062510.717658687 0.586579 -0.167594 10.1299 -0.0532632 0.0138484 0.0436758 0.19 0 pose: 0.0 -0.971443 -3.76271 0 0.00119824 0.00306977 0.998347 0.057375 uwb: 0.0 1232.39 1064.66 +imu_odom_: 1691062510.741725946 0.251391 -0.232238 9.73482 -0.04048 -0.0191748 0.0447411 0.19 0 pose: 0.57972393 -0.982434 -3.76153 0 0.00206243 -0.00096338 0.998362 0.057162 uwb: 0.50056422 1232.71 1065.63 +imu_odom_: 1691062510.767720358 0.347159 -0.181959 9.90242 -0.0777643 -0.00106526 0.0639159 0.25 0 pose: 0.32010645 -0.988726 -3.76371 0 0.00051391 -0.0004484120.998369 0.0570832 uwb: 0.0 1232.71 1065.63 +imu_odom_: 1691062510.792710656 0.169988 -0.371101 9.5792 -0.0543285 0.0479369 0.052198 0.19 0 pose: 0.7946010 -0.991881 -3.76481 0 -0.000156547-8.25449e-050.998375 0.0569867 uwb: 0.50090544 1232.16 1067.45 +imu_odom_: 1691062510.809670660 0.28491 -0.409408 10.1275 -0.052198 -0.00106526 0.0553937 0.2 0.02 pose: 0.0 -0.991881 -3.76481 0 -0.000156547-8.25449e-050.998375 0.0569867 uwb: 0.0 1232.16 1067.45 +imu_odom_: 1691062510.825656005 0.620098 -0.1652 9.73722 -0.0798948 0.0106526 0.052198 0.2 0.02 pose: 0.50033674 -1.00461 -3.75865 0 -0.0045083 -0.00136941 0.998388 0.0565607 uwb: 0.0 1232.16 1067.45 +imu_odom_: 1691062510.851638752 0.64404 -0.0790087 9.94073 -0.0660464 0.0149137 0.0639159 0.25 0 pose: 0.0 -1.00461 -3.75865 0 -0.0045083 -0.00136941 0.998388 0.0565607 uwb: 0.49987012 1231.82 1069.11 +imu_odom_: 1691062510.876696419 0.636858 -0.11971 10.1634 -0.0735032 0.0117179 0.0607201 0.25 0 pose: 0.33056755 -1.00461 -3.75865 0 -0.00278016 -0.00180874 0.998408 0.0563008 uwb: 0.0 1231.82 1069.11 +imu_odom_: 1691062510.900646730 0.181959 -0.122104 9.89284 -0.0660464 0.0468716 0.052198 0.2 0 pose: 0.43934034 -1.01405 -3.76195 0 0.000838168 -0.0003370170.998441 0.0558092 uwb: 0.49993720 1231.68 1070.17 +imu_odom_: 1691062510.926642018 0.639252 -0.318429 9.81383 -0.0351537 -0.0213053 0.0298274 0.26 -0.05 pose: 0.6987974 -1.01405 -3.76195 0 2.75231e-05 -6.20328e-050.998444 0.0557653 uwb: 0.0 1231.68 1070.17 +imu_odom_: 1691062510.941639580 0.517148 -0.289698 10.0533 -0.0490022 -0.0308927 0.0585895 0.26 -0.05 pose: 0.0 -1.01405 -3.76195 0 2.75231e-05 -6.20328e-050.998444 0.0557653 uwb: 0.49868315 1231.96 1070.47 +imu_odom_: 1691062510.967636326 0.416591 -0.0933739 10.1801 -0.0458064 -0.0106526 0.0426106 0.26 -0.05 pose: 0.23997557 -1.02679 -3.75581 0 -0.00124221 0.000368486 0.998447 0.0556933 uwb: 0.0 1231.96 1070.47 +imu_odom_: 1691062510.990651933 0.526724 0.047884 10.2615 -0.0490022 -0.0234358 0.0575243 0.18 0.02 pose: 0.41998714 -1.02679 -3.75581 0 0.00193558 -0.0003241970.998449 0.0556332 uwb: 0.50024050 1232.05 1071.39 +imu_odom_: 1691062511.15646317 0.715866 -0.0454898 10.3597 -0.0426106 -0.0340885 0.0383495 0.2 0.02 pose: 0.40971269 -1.03623 -3.75912 0 0.00292739 0.00369234 0.998453 0.0554048 uwb: 0.0 1232.05 1071.39 +imu_odom_: 1691062511.42702597 0.574608 -0.189142 10.0509 -0.0745685 0.00319579 0.052198 0.2 0.02 pose: 0.0 -1.03623 -3.75912 0 0.00292739 0.00369234 0.998453 0.0554048 uwb: 0.50226455 1231.78 1072.64 +imu_odom_: 1691062511.67693485 0.548272 -0.0933739 10.0269 -0.0383495 -0.00639159 0.0351537 0.19 0 pose: 0.8034960 -1.03623 -3.75912 0 0.00382185 0.00396083 0.998449 0.0554076 uwb: 0.0 1231.78 1072.64 +imu_odom_: 1691062511.84744777 0.371101 -0.418985 9.71806 -0.0372843 0.00319579 0.0543285 0.19 0 pose: 0.0 -1.03623 -3.75912 0 0.00382185 0.00396083 0.998449 0.0554076 uwb: 0.49777338 1231.82 1073.31 +imu_odom_: 1691062511.110747363 0.471658 0.117316 9.86172 -0.0138484 0.015979 0.0394148 0.2 0 pose: 0.51972215 -1.04898 -3.753 0 0.00737928 0.00301892 0.998441 0.0552467 uwb: 0.0 1231.82 1073.31 +imu_odom_: 1691062511.126616057 0.318429 -0.399832 9.64863 -0.0735032 0.0213053 0.0703074 0.2 0 pose: 0.0 -1.04898 -3.753 0 0.00737928 0.00301892 0.998441 0.0552467 uwb: 0.0 1231.82 1073.31 +imu_odom_: 1691062511.152734424 0.179565 -0.0311246 10.0844 -0.0255663 -0.00532632 0.0372843 0.2 -0.02 pose: 0.42095551 -1.05841 -3.75631 0 0.00640609 0.00454001 0.998446 0.0551669 uwb: 0.49971569 1231.7 1074.39 +imu_odom_: 1691062511.176732279 0.196325 -0.184354 10.0197 -0.0415453 -0.0511327 0.0607201 0.2 -0.02 pose: 0.0 -1.05841 -3.75631 0 0.00640609 0.00454001 0.998446 0.0551669 uwb: 0.0 1231.7 1074.39 +imu_odom_: 1691062511.192752917 0.739808 -0.1652 10.0173 -0.0255663 -0.0308927 0.0319579 0.18 0.02 pose: 0.42022932 -1.07116 -3.7502 0 0.00408453 0.00560245 0.998465 0.0549466 uwb: 0.50113014 1231.81 1074.43 +imu_odom_: 1691062511.218671220 0.627281 -0.162806 9.6606 -0.072438 0.00106526 0.0585895 0.18 0.02 pose: 0.0 -1.07116 -3.7502 0 0.00408453 0.00560245 0.998465 0.0549466 uwb: 0.0 1231.81 1074.43 +imu_odom_: 1691062511.244747590 0.407014 -0.0670376 9.89284 -0.056459 -0.0149137 0.04048 0.2 -0.02 pose: 0.48989619 -1.07116 -3.7502 0 0.00146232 0.0056701 0.998482 0.0547638 uwb: 0.49941239 1231.76 1076.42 +imu_odom_: 1691062511.270805296 0.502782 -0.191536 9.7037 -0.0735032 0.0170442 0.0490022 0.2 -0.02 pose: 0.0 -1.07116 -3.7502 0 0.00146232 0.0056701 0.998482 0.0547638 uwb: 0.0 1231.76 1076.42 +imu_odom_: 1691062511.295614202 0.433351 -0.205901 9.71567 -0.0692422 0.0127832 0.0585895 0.2 -0.02 pose: 0.41919983 -1.08059 -3.75352 0 0.00428116 0.00486073 0.998491 0.0545332 uwb: 0.49926365 1232.05 1076.74 +imu_odom_: 1691062511.321668700 0.603339 -0.294487 10.1011 -0.0660464 -0.00852212 0.0447411 0.2 0 pose: 0.51992340 -1.09335 -3.74742 0 0.00322727 0.002783 0.998514 0.054335 uwb: 0.0 1232.05 1076.74 +imu_odom_: 1691062511.346621092 0.493206 -0.071826 10.1778 -0.0553937 -0.00745685 0.0383495 0.2 0 pose: 0.0 -1.09335 -3.74742 0 0.00322727 0.002783 0.998514 0.054335 uwb: 0.49970112 1231.73 1077.99 +imu_odom_: 1691062511.372667424 0.897826 -0.428562 10.0365 -0.04048 0.00106526 0.0287621 0.2 0 pose: 0.68941559 -1.10278 -3.75075 0 0.00445836 0.00198208 0.998523 0.0541159 uwb: 0.0 1231.73 1077.99 +imu_odom_: 1691062511.388696227 0.306458 -0.160412 9.91199 -0.0372843 0.052198 0.0436758 0.2 0 pose: 0.8099414 -1.10278 -3.75075 0 0.00510051 0.00157472 0.998518 0.0541559 uwb: 0.50026106 1232.22 1078.38 +imu_odom_: 1691062511.414871756 0.509965 -0.323217 9.47146 -0.0703074 0.0117179 0.0426106 0.22 0 pose: 0.0 -1.10278 -3.75075 0 0.00510051 0.00157472 0.998518 0.0541559 uwb: 0.0 1232.22 1078.38 +imu_odom_: 1691062511.430752990 0.347159 0.0215478 10.0293 -0.0468716 0.0223706 0.0340885 0.22 0 pose: 0.33975721 -1.11554 -3.74466 0 0.00450919 0.0011689 0.998518 0.0542138 uwb: 0.50101640 1231.98 1080.11 +imu_odom_: 1691062511.456612089 0.344765 -0.122104 10.1299 -0.056459 -0.0245011 0.0330232 0.23 0 pose: 0.0 -1.11554 -3.74466 0 0.00450919 0.0011689 0.998518 0.0542138 uwb: 0.0 1231.98 1080.11 +imu_odom_: 1691062511.482659296 0.560243 -0.131681 9.63666 -0.0777643 -0.0149137 0.0490022 0.23 0 pose: 0.50027856 -1.12497 -3.748 0 0.00313916 0.000361955 0.998523 0.0542397 uwb: 0.49884952 1231.52 1080.85 +imu_odom_: 1691062511.508605887 0.155623 -0.143652 9.66779 -0.056459 0.0117179 0.0383495 0.23 0.02 pose: 0.43935213 -1.13187 -3.75044 0 0.00446607 0.00205155 0.998519 0.0541783 uwb: 0.0 1231.52 1080.85 +imu_odom_: 1691062511.533589193 0.407014 -0.40462 9.97424 -0.072438 -0.0276969 0.0511327 0.23 0.02 pose: 0.6946564 -1.1344 -3.75133 0 0.00372117 0.00214539 0.998522 0.0541844 uwb: 0.50110974 1231.31 1082.59 +imu_odom_: 1691062511.549580084 0.984017 -0.277727 10.2328 -0.0298274 0 0.0287621 0.21 0 pose: 0.0 -1.1344 -3.75133 0 0.00372117 0.00214539 0.998522 0.0541844 uwb: 0.0 1231.31 1082.59 +imu_odom_: 1691062511.566577422 0.134075 -0.0885855 9.7875 -0.0415453 0.0181095 0.0500674 0.21 0 pose: 0.51022055 -1.13773 -3.7419 0 0.00223897 -0.00031351 0.998533 0.0540929 uwb: 0.0 1231.31 1082.59 +imu_odom_: 1691062511.582572104 0.316035 -0.19393 10.2424 -0.0617853 -0.0191748 0.0639159 0.21 0 pose: 0.0 -1.13773 -3.7419 0 0.00223897 -0.00031351 0.998533 0.0540929 uwb: 0.49846455 1231.27 1083.26 +imu_odom_: 1691062511.598702107 0.320823 0.0670376 10.1155 -0.0330232 -0.0298274 0.0436758 0.25 0 pose: 0.32967523 -1.14716 -3.74524 0 0.000734264 0.000561059 0.998542 0.0539688 uwb: 0.0 1231.27 1083.26 +imu_odom_: 1691062511.624640824 0.447716 -0.169988 9.58399 -0.0681769 -0.00639159 0.0543285 0.25 0 pose: 0.0 -1.14716 -3.74524 0 0.000734264 0.000561059 0.998542 0.0539688 uwb: 0.0 1231.27 1083.26 +imu_odom_: 1691062511.640585344 0.658405 -0.402226 9.81383 -0.0330232 0.0340885 0.0394148 0.21 0 pose: 0.32074814 -1.15659 -3.74858 0 0.00045076 0.00230242 0.99855 0.0537747 uwb: 0.50150637 1230.79 1085.14 +imu_odom_: 1691062511.666575389 0.469264 -0.3304 9.9934 -0.072438 -0.00745685 0.0703074 0.21 0 pose: 0.0 -1.15659 -3.74858 0 0.00045076 0.00230242 0.99855 0.0537747 uwb: 0.0 1230.79 1085.14 +imu_odom_: 1691062511.692714754 0.620098 -0.184354 10.2041 -0.0447411 -0.0500674 0.052198 0.23 0.02 pose: 0.42045096 -1.15993 -3.73915 0 0.00308415 0.0002549 0.998562 0.0535142 uwb: 0.49984693 1230.96 1085.9 +imu_odom_: 1691062511.716577581 0.531513 -0.0191536 10.2376 -0.0713727 -0.00745685 0.0585895 0.23 0.02 pose: 0.44999406 -1.16935 -3.7425 0 0.00616587 -0.0008209170.998572 0.0530599 uwb: 0.0 1230.96 1085.9 +imu_odom_: 1691062511.732566138 -0.0047884 -0.0311246 9.64624 -0.0298274 0.0308927 0.0319579 0.23 0.02 pose: 0.0 -1.16935 -3.7425 0 0.00616587 -0.0008209170.998572 0.0530599 uwb: 0.49994608 1230.7 1086.72 +imu_odom_: 1691062511.759574881 0.426168 -0.438139 9.75637 -0.0788296 -0.0213053 0.0532632 0.18 -0.02 pose: 0.7039889 -1.16935 -3.7425 0 0.00622134 -0.0001756550.998575 0.0529978 uwb: 0.0 1230.7 1086.72 +imu_odom_: 1691062511.784563144 0.244209 -0.304064 9.69652 -0.0479369 -0.0671117 0.0394148 0.18 -0.02 pose: 0.0 -1.16935 -3.7425 0 0.00622134 -0.0001756550.998575 0.0529978 uwb: 0.49870663 1230.33 1088.19 +imu_odom_: 1691062511.810674512 0.462081 -0.301669 9.59357 -0.0596548 -0.0117179 0.0468716 0.21 0 pose: 0.40852582 -1.17877 -3.74586 0 0.00440912 0.00123577 0.998592 0.0528569 uwb: 0.0 1230.33 1088.19 +imu_odom_: 1691062511.826553413 0.275333 -0.0311246 10.2472 -0.04048 0.0181095 0.036219 0.21 0 pose: 0.0 -1.17877 -3.74586 0 0.00440912 0.00123577 0.998592 0.0528569 uwb: 0.0 1230.33 1088.19 +imu_odom_: 1691062511.851569966 0.205901 -0.354342 9.96706 -0.0841559 -0.00213053 0.0660464 0.23 0.02 pose: 0.51089132 -1.19155 -3.7398 0 0.0025298 -0.00214626 0.998605 0.0526908 uwb: 0.50003358 1229.99 1089.9 +imu_odom_: 1691062511.874596953 0.397437 -0.110133 10.0173 -0.0479369 0 0.0511327 0.23 0.02 pose: 0.0 -1.19155 -3.7398 0 0.0025298 -0.00214626 0.998605 0.0526908 uwb: 0.0 1229.99 1089.9 +imu_odom_: 1691062511.900558710 0.361524 -0.189142 9.99579 -0.0575243 0.0511327 0.052198 0.19 0 pose: 0.41856698 -1.19155 -3.7398 0 0.00114505 -0.00292511 0.998613 0.0525505 uwb: 0.50048270 1230.11 1090.88 +imu_odom_: 1691062511.926550797 0.529119 -0.0095768110.1083 -0.0692422 0.0170442 0.0607201 0.19 0 pose: 0.0 -1.19155 -3.7398 0 0.00114505 -0.00292511 0.998613 0.0525505 uwb: 0.0 1230.11 1090.88 +imu_odom_: 1691062511.951579015 0.658405 -0.196325 10.2663 -0.0628506 0.0127832 0.04048 0.19 0 pose: 0.48017584 -1.20434 -3.73375 0 -0.00103061 -0.0007385040.99864 0.0521298 uwb: 0.50078601 1229.96 1091.98 +imu_odom_: 1691062511.977670259 0.40462 -0.54109 9.95748 -0.0639159 0.0319579 0.0543285 0.21 0.02 pose: 0.52025879 -1.21375 -3.73712 0 -0.0002668220.00242327 0.998659 0.0517225 uwb: 0.0 1229.96 1091.98 +imu_odom_: 1691062511.993535453 -0.320823 -0.275333 9.69173 -0.0426106 0.0298274 0.0298274 0.21 0.02 pose: 0.0 -1.21375 -3.73712 0 -0.0002668220.00242327 0.998659 0.0517225 uwb: 0.49961945 1229.76 1093.3 +imu_odom_: 1691062512.19540085 -0.059855 -0.500388 9.33499 -0.0681769 0.0149137 0.0511327 0.23 0.02 pose: 0.26166196 -1.22316 -3.74051 0 0.00110807 0.00121902 0.998664 0.0516483 uwb: 0.0 1229.76 1093.3 +imu_odom_: 1691062512.35551395 0.593762 -0.0430956 10.2568 -0.0490022 -0.0170442 0.0340885 0.23 0.02 pose: 0.40826626 -1.22655 -3.7311 0 -0.00196215 -0.0009147510.998668 0.0515496 uwb: 0.49889043 1229.87 1094.28 +imu_odom_: 1691062512.61546114 0.826 0.0311246 10.0461 -0.0639159 -0.00106526 0.0543285 0.23 0.02 pose: 0.0 -1.22655 -3.7311 0 -0.00196215 -0.0009147510.998668 0.0515496 uwb: 0.0 1229.87 1094.28 +imu_odom_: 1691062512.86569090 0.553061 -0.0766145 9.76595 -0.0543285 0.0138484 0.0468716 0.23 0 pose: 0.41975406 -1.23599 -3.73439 0 -0.00179249 -0.0006725310.998675 0.0514315 uwb: 0.49996373 1230.29 1094.69 +imu_odom_: 1691062512.112532896 0.586579 -0.11971 10.0509 -0.0756338 0.0191748 0.0500674 0.22 0 pose: 0.44004344 -1.2454 -3.73777 0 0.00159576 0.00169576 0.998686 0.0511996 uwb: 0.0 1230.29 1094.69 +imu_odom_: 1691062512.128533415 0.641646 -0.282516 9.59357 -0.0490022 0.0138484 0.0276969 0.22 0 pose: 0.0 -1.2454 -3.73777 0 0.00159576 0.00169576 0.998686 0.0511996 uwb: 0.50166690 1230.41 1095.68 +imu_odom_: 1691062512.154537175 0.308852 -0.174777 9.84735 -0.0287621 -0.00745685 0.0490022 0.22 0 pose: 0.7981595 -1.2454 -3.73777 0 0.00225731 0.00187065 0.998686 0.0511568 uwb: 0.0 1230.41 1095.68 +imu_odom_: 1691062512.170539444 0.490811 -0.294487 9.84017 -0.0447411 -0.015979 0.0351537 0.22 0 pose: 0.0 -1.2454 -3.73777 0 0.00225731 0.00187065 0.998686 0.0511568 uwb: 0.0 1230.41 1095.68 +imu_odom_: 1691062512.196551078 0.198719 -0.555455 9.65342 -0.0617853 0.00639159 0.0713727 0.23 -0.02 pose: 0.41054409 -1.2582 -3.73176 0 0.00419829 0.00152303 0.998683 0.0511157 uwb: 0.49833638 1231.17 1096 +imu_odom_: 1691062512.221538182 0.0454898 -0.0023942 10.2927 -0.0223706 -0.0191748 0.0319579 0.23 -0.02 pose: 0.0 -1.2582 -3.73176 0 0.00419829 0.00152303 0.998683 0.0511157 uwb: 0.0 1231.17 1096 +imu_odom_: 1691062512.237520328 0.68953 -0.258574 9.6199 -0.0500674 -0.0319579 0.0500674 0.21 0 pose: 0.42057357 -1.2582 -3.73176 0 0.00243604 -6.77605e-050.998698 0.0509457 uwb: 0.50106030 1231.01 1097.12 +imu_odom_: 1691062512.264574866 0.409408 -0.158017 9.80665 -0.0181095 0.0426106 0.0383495 0.21 0 pose: 0.0 -1.2582 -3.73176 0 0.00243604 -6.77605e-050.998698 0.0509457 uwb: 0.0 1231.01 1097.12 +imu_odom_: 1691062512.290632579 0.244209 -0.40462 9.56484 -0.0788296 0.00106526 0.0628506 0.25 -0.02 pose: 0.50881791 -1.271 -3.72575 0 8.72407e-05 0.000130155 0.998714 0.0506984 uwb: 0.50130819 1230.38 1099.46 +imu_odom_: 1691062512.306504777 0.158017 -0.0430956 9.98622 -0.0394148 -0.036219 0.0415453 0.25 -0.02 pose: 0.0 -1.271 -3.72575 0 8.72407e-05 0.000130155 0.998714 0.0506984 uwb: 0.0 1230.38 1099.46 +imu_odom_: 1691062512.323502412 1.09654 -0.11971 10.3406 -0.072438 -0.0511327 0.0916127 0.22 0.05 pose: 0.43158298 -1.2804 -3.72915 0 -0.0005030690.00247535 0.998716 0.0505886 uwb: 0.0 1230.38 1099.46 +imu_odom_: 1691062512.339681415 1.37427 -0.31364 9.52413 -0.0681769 0.00106526 0.136354 0.22 0.05 pose: 0.0 -1.2804 -3.72915 0 -0.0005030690.00247535 0.998716 0.0505886 uwb: 0.50058492 1230.15 1101.51 +imu_odom_: 1691062512.356679925 1.33596 -0.349553 9.8258 -0.0468716 0.00213053 0.20027 0.22 0.05 pose: 0.0 -1.2804 -3.72915 0 -0.0005030690.00247535 0.998716 0.0505886 uwb: 0.0 1230.15 1101.51 +imu_odom_: 1691062512.372686277 1.6927 -0.186748 9.83299 -0.0703074 0.0213053 0.319579 0.13 0.29 pose: 0.41933410 -1.28981 -3.73255 0 -0.00172373 0.00178309 0.998738 0.0501693 uwb: 0.0 1230.15 1101.51 +imu_odom_: 1691062512.388531061 1.26893 -0.54109 10.1466 -0.0671117 0.0394148 0.395213 0.13 0.29 pose: 0.0 -1.28981 -3.73255 0 -0.00172373 0.00178309 0.998738 0.0501693 uwb: 0.49663320 1229.96 1102.86 +imu_odom_: 1691062512.405503906 1.08697 -0.548272 10.137 -0.036219 0.0511327 0.407996 0.13 0.29 pose: 0.0 -1.28981 -3.73255 0 -0.00172373 0.00178309 0.998738 0.0501693 uwb: 0.0 1229.96 1102.86 +imu_odom_: 1691062512.421501218 1.08218 -0.0407014 9.75158 -0.036219 0.0266316 0.426106 0.14 0.53 pose: 0.50048577 -1.29317 -3.72313 0 0.00325358 0.000938088 0.9989 0.0467794 uwb: 0.0 1229.96 1102.86 +imu_odom_: 1691062512.438520434 0.984017 -0.0766145 10.1227 -0.0639159 0.0170442 0.486826 0.1 0.41 pose: 0.0 -1.29317 -3.72313 0 0.00325358 0.000938088 0.9989 0.0467794 uwb: 0.49865718 1230.27 1103.73 +imu_odom_: 1691062512.454498789 0.328006 -0.457293 9.90242 -0.0713727 0.0543285 0.543285 0.1 0.41 pose: 0.65823366 -1.30262 -3.72642 0 0.00805991 3.46401e-05 0.999365 0.0346965 uwb: 0.0 1230.27 1103.73 +imu_odom_: 1691062512.470496975 0.636858 -0.497994 10.1634 -0.0468716 0.0223706 0.573112 0.08 0.47 pose: 0.0 -1.30262 -3.72642 0 0.00805991 3.46401e-05 0.999365 0.0346965 uwb: 0.0 1230.27 1103.73 +imu_odom_: 1691062512.486509159 0.445322 -0.294487 9.70849 -0.0479369 -0.02024 0.621049 0.08 0.47 pose: 0.0 -1.30262 -3.72642 0 0.00805991 3.46401e-05 0.999365 0.0346965 uwb: 0.50064909 1230.34 1104.73 +imu_odom_: 1691062512.503553457 0.866701 -0.275333 10.2137 -0.0596548 0.00106526 0.622114 0.08 0.47 pose: 0.32015037 -1.30262 -3.72642 0 0.00731262 -0.00168542 0.999613 0.0267761 uwb: 0.0 1230.34 1104.73 +imu_odom_: 1691062512.520556050 0.6608 -0.105345 10.1035 -0.0372843 0.00532632 0.591222 0.1 0.67 pose: 0.42030527 -1.31206 -3.72967 0 0.0076846 -0.00309731 0.999857 0.0147562 uwb: 0.0 1230.34 1104.73 +imu_odom_: 1691062512.536554819 0.725443 -0.134075 10.0628 -0.0532632 0.00745685 0.590156 0.1 0.67 pose: 0.7014518 -1.31206 -3.72971 0 0.00802078 -0.00245525 0.999883 0.0128271 uwb: 0.50113612 1230.46 1105.27 +imu_odom_: 1691062512.552544840 0.778116 -0.3304 9.94791 -0.0596548 0.00106526 0.597613 0.1 0.67 pose: 0.0 -1.31206 -3.72971 0 0.00802078 -0.00245525 0.999883 0.0128271 uwb: 0.0 1230.46 1105.27 +imu_odom_: 1691062512.569606636 0.581791 -0.399832 9.64863 -0.0681769 0 0.607201 0.06 0.55 pose: 0.41976865 -1.31206 -3.72967 0 0.0110516 -0.00151597 0.999937 0.00121825 uwb: 0.0 1230.46 1105.27 +imu_odom_: 1691062512.585492249 0.622492 -0.131681 9.73243 -0.0543285 -0.00213053 0.588026 0.08 0.73 pose: 0.0 -1.31206 -3.72967 0 0.0110516 -0.00151597 0.999937 0.00121825 uwb: 0.50005122 1230.44 1106.72 +imu_odom_: 1691062512.602563085 0.4956 0.0454898 10.0245 -0.0447411 0.0127832 0.54222 0.08 0.73 pose: 0.0 -1.31206 -3.72967 0 0.0110516 -0.00151597 0.999937 0.00121825 uwb: 0.0 1230.44 1106.72 +imu_odom_: 1691062512.619559846 0.553061 0.011971 10.161 -0.056459 0.00532632 0.50387 0.06 0.5 pose: 0.23949450 -1.31206 -3.72971 0 0.0107134 -0.00268296 0.999924 -0.00552258 uwb: 0.0 1230.44 1106.72 +imu_odom_: 1691062512.635490080 0.612916 -0.124498 9.80426 -0.0500674 -0.00319579 0.453803 0.06 0.5 pose: 0.0 -1.31206 -3.72971 0 0.0107134 -0.00268296 0.999924 -0.00552258 uwb: 0.49920546 1230.45 1107.7 +imu_odom_: 1691062512.651486224 0.596156 -0.141258 9.94312 -0.0500674 -0.00639159 0.397344 0.06 0.5 pose: 0.33074272 -1.31206 -3.72971 0 0.00978048 0.000475523 0.999856 -0.013874 uwb: 0.0 1230.45 1107.7 +imu_odom_: 1691062512.668556478 0.830788 -0.035913 9.81623 -0.052198 0.00426106 0.358994 0.04 0.32 pose: 0.0 -1.31206 -3.72971 0 0.00978048 0.000475523 0.999856 -0.013874 uwb: 0.0 1230.45 1107.7 +imu_odom_: 1691062512.685543906 0.711078 -0.126893 9.92157 -0.0596548 0.00532632 0.336624 0.04 0.32 pose: 0.0 -1.31206 -3.72971 0 0.00978048 0.000475523 0.999856 -0.013874 uwb: 0.49989665 1230.18 1109.05 +imu_odom_: 1691062512.701482889 0.560243 -0.0694318 9.87848 -0.0596548 0.015979 0.304666 0.04 0.32 pose: 0.49925796 -1.32147 -3.7331 0 0.0103128 0.00479045 0.999657 -0.0235918 uwb: 0.0 1230.18 1109.05 +imu_odom_: 1691062512.718535352 0.316035 -0.129287 9.77792 -0.056459 0.02024 0.282295 0.04 0.35 pose: 0.41988531 -1.32485 -3.72366 0 0.0111934 0.00567233 0.999481 -0.0296658 uwb: 0.0 1230.18 1109.05 +imu_odom_: 1691062512.735539695 0.318429 -0.217872 9.95748 -0.0543285 -0.00106526 0.286556 0.03 0.26 pose: 0.0 -1.32485 -3.72366 0 0.0111934 0.00567233 0.999481 -0.0296658 uwb: 0.50069575 1230.32 1109.86 +imu_odom_: 1691062512.751534090 0.471658 -0.263362 9.89524 -0.0479369 -0.0149137 0.282295 0.03 0.26 pose: 0.0 -1.32485 -3.72366 0 0.0111934 0.00567233 0.999481 -0.0296658 uwb: 0.0 1230.32 1109.86 +imu_odom_: 1691062512.768528517 0.651223 -0.126893 9.83299 -0.0490022 -0.015979 0.265251 0.03 0.23 pose: 0.25056223 -1.32486 -3.72369 0 0.00855306 0.00516517 0.999415 -0.0327149 uwb: 0.0 1230.32 1109.86 +imu_odom_: 1691062512.784524953 0.64404 -0.0143652 9.87369 -0.0511327 0.00106526 0.247141 0.03 0.23 pose: 0.0 -1.32486 -3.72369 0 0.00855306 0.00516517 0.999415 -0.0327149 uwb: 0.50048868 1231.15 1109.76 +imu_odom_: 1691062512.801671908 0.507571 -0.0933739 9.90242 -0.0553937 0.00852212 0.230097 0.03 0.23 pose: 0.32938659 -1.32486 -3.72369 0 0.00782608 0.00369228 0.99929 -0.0366686 uwb: 0.0 1231.15 1109.76 +imu_odom_: 1691062512.818479103 0.493206 -0.215478 9.98143 -0.0532632 -0.00426106 0.219444 0.02 0.2 pose: 0.42194137 -1.32485 -3.72366 0 0.00762734 0.0057781 0.999115 -0.0409594 uwb: 0.0 1231.15 1109.76 +imu_odom_: 1691062512.834753471 0.581791 -0.268151 9.90242 -0.0532632 -0.0117179 0.223706 0.02 0.2 pose: 0.7955930 -1.32486 -3.72369 0 0.00725127 0.00508222 0.999092 -0.0416778 uwb: 0.50013288 1231.91 1108.88 +imu_odom_: 1691062512.852575864 0.629675 -0.215478 9.91918 -0.0543285 -0.00213053 0.232228 0.01 0.2 pose: 0.0 -1.32486 -3.72369 0 0.00725127 0.00508222 0.999092 -0.0416778 uwb: 0.0 1231.91 1108.88 +imu_odom_: 1691062512.876515398 0.471658 -0.150835 9.93354 -0.0543285 0.00426106 0.233293 0.01 0.17 pose: 0.42948026 -1.32485 -3.72366 0 0.00898955 0.00190076 0.998912 -0.0457119 uwb: 0.0 1231.91 1108.88 +imu_odom_: 1691062512.893504867 0.275333 -0.100556 10.0149 -0.0575243 0.0394148 0.210922 0.01 0.17 pose: 0.0 -1.32485 -3.72366 0 0.00898955 0.00190076 0.998912 -0.0457119 uwb: 0.49888758 1232.33 1109.32 +imu_odom_: 1691062512.909447350 -1.01514 -0.0790087 9.70849 -0.0628506 0.108657 0.18216 0.01 0.17 pose: 0.30893974 -1.32486 -3.72369 0 0.00574752 0.00263528 0.998798 -0.0486121 uwb: 0.0 1232.33 1109.32 +imu_odom_: 1691062512.925444953 -1.64721 -0.0407014 10.0461 -0.0585895 0.0213053 0.168312 0.01 0.17 pose: 0.0 -1.32486 -3.72369 0 0.00574752 0.00263528 0.998798 -0.0486121 uwb: 0.0 1232.33 1109.32 +imu_odom_: 1691062512.942573243 -0.730232 -0.328006 9.79707 -0.0585895 -0.076699 0.155529 0.06 0.17 pose: 0.0 -1.32486 -3.72369 0 0.00574752 0.00263528 0.998798 -0.0486121 uwb: 0.50094072 1232.73 1109.51 +imu_odom_: 1691062512.959574961 0.181959 -0.215478 9.66779 -0.0426106 -0.0788296 0.14168 0.06 0.17 pose: 0.32989697 -1.32486 -3.72369 0 0.00127472 0.00271638 0.998692 -0.0510497 uwb: 0.0 1232.73 1109.51 +imu_odom_: 1691062512.975439284 0.526724 -0.181959 10.082 -0.0490022 -0.0213053 0.145941 0.08 0.11 pose: 0.43115426 -1.33428 -3.72703 0 -0.00180431 0.00205434 0.998566 -0.0534715 uwb: 0.0 1232.73 1109.51 +imu_odom_: 1691062512.991570750 0.342371 -0.138864 9.68933 -0.0639159 0.0191748 0.13955 0.08 0.11 pose: 0.0 -1.33428 -3.72703 0 -0.00180431 0.00205434 0.998566 -0.0534715 uwb: 0.50116528 1232.57 1109.69 +imu_odom_: 1691062513.9569294 -0.172383 -0.158017 9.94791 -0.0660464 0.0351537 0.12144 0.08 0.11 pose: 0.0 -1.33428 -3.72703 0 -0.00180431 0.00205434 0.998566 -0.0534715 uwb: 0.0 1232.57 1109.69 +imu_odom_: 1691062513.26571309 -0.19393 -0.167594 9.95748 -0.0553937 -0.00426106 0.118244 0.14 0.11 pose: 0.7885937 -1.33428 -3.72703 0 -0.0009488840.00207514 0.998544 -0.0538917 uwb: 0.0 1232.57 1109.69 +imu_odom_: 1691062513.43442377 0.107739 -0.0790087 9.73004 -0.0532632 -0.0298274 0.125701 0.1 0.05 pose: 0.0 -1.33428 -3.72703 0 -0.0009488840.00207514 0.998544 -0.0538917 uwb: 0.49620457 1232.42 1109.62 +imu_odom_: 1691062513.59447275 0.349553 -0.251391 9.91678 -0.056459 -0.0127832 0.129962 0.1 0.05 pose: 0.67008015 -1.33428 -3.72703 0 -0.00618729 0.00271286 0.99836 -0.0568516 uwb: 0.0 1232.42 1109.62 +imu_odom_: 1691062513.75439633 0.390255 -0.411803 10.2448 -0.0447411 -0.0319579 0.128897 0.1 0.05 pose: 0.0 -1.33428 -3.72703 0 -0.00618729 0.00271286 0.99836 -0.0568516 uwb: 0.0 1232.42 1109.62 +imu_odom_: 1691062513.92605257 0.0047884 -0.237026 9.7444 -0.0543285 0.0426106 0.109722 0.11 0.05 pose: 0.0 -1.33428 -3.72703 0 -0.00618729 0.00271286 0.99836 -0.0568516 uwb: 0.49999595 1232.25 1110.03 +imu_odom_: 1691062513.108507499 0.011971 -0.059855 10.1083 -0.0607201 0.0394148 0.112918 0.11 0.05 pose: 0.31979466 -1.3437 -3.73039 0 -0.00540365 0.00123697 0.998286 -0.0582624 uwb: 0.0 1232.25 1110.03 +imu_odom_: 1691062513.125433395 0.260968 -0.0263362 10.3118 -0.0607201 -0.0490022 0.109722 0.12 0.08 pose: 0.42059120 -1.3437 -3.73039 0 -0.00874645 0.000812539 0.998169 -0.0598434 uwb: 0.0 1232.25 1110.03 +imu_odom_: 1691062513.141448209 0.826 -0.282516 9.90002 -0.0596548 -0.0415453 0.118244 0.12 0.08 pose: 0.0 -1.3437 -3.73039 0 -0.00874645 0.000812539 0.998169 -0.0598434 uwb: 0.50053840 1232.49 1110.14 +imu_odom_: 1691062513.157552265 0.677559 -0.31364 9.93115 -0.0585895 -0.052198 0.110787 0.12 0.08 pose: 0.0 -1.3437 -3.73039 0 -0.00874645 0.000812539 0.998169 -0.0598434 uwb: 0.0 1232.49 1110.14 +imu_odom_: 1691062513.174437915 1.22104 -0.110133 10.1682 -0.0575243 -0.0788296 0.128897 0.15 0.02 pose: 0.7953016 -1.3437 -3.73039 0 -0.00844576 0.00159118 0.998154 -0.0601289 uwb: 0.0 1232.49 1110.14 +imu_odom_: 1691062513.190464103 1.03669 -0.251391 9.6223 -0.0639159 -0.00958738 0.188552 0.1 0.02 pose: 0.0 -1.3437 -3.73039 0 -0.00844576 0.00159118 0.998154 -0.0601289 uwb: 0.49930476 1232.29 1110.55 +imu_odom_: 1691062513.206429922 0.924162 -0.385466 9.79947 -0.0479369 -0.0415453 0.217314 0.1 0.02 pose: 0.64988420 -1.3531 -3.7338 0 -0.00126573 0.0019189 0.998015 -0.0629326 uwb: 0.0 1232.29 1110.55 +imu_odom_: 1691062513.223488514 1.29287 -0.248997 9.8665 -0.0479369 -0.0330232 0.183225 0.08 0.02 pose: 0.0 -1.3531 -3.7338 0 -0.00126573 0.0019189 0.998015 -0.0629326 uwb: 0.0 1232.29 1110.55 +imu_odom_: 1691062513.239488455 1.47004 0.162806 10.1131 -0.0553937 0.0436758 0.131028 0.08 0.02 pose: 0.0 -1.3531 -3.7338 0 -0.00126573 0.0019189 0.998015 -0.0629326 uwb: 0.0 1232.29 1110.55 +imu_odom_: 1691062513.255426276 0.584185 0.0837971 9.62469 -0.0628506 0.0490022 0.092678 0.08 0.02 pose: 0.32994956 -1.3531 -3.7338 0 0.00239829 0.00145785 0.997842 -0.0655977 uwb: 0.0 1232.29 1110.55 +imu_odom_: 1691062513.271485711 0.610521 -0.011971 10.0054 -0.0575243 0.00958738 0.0287621 0.08 0.05 pose: 0.40982385 -1.36592 -3.72783 0 0.0045282 0.0035471 0.99771 -0.0673933 uwb: 0.0 1232.29 1110.55 +imu_odom_: 1691062513.288434647 0.708684 -0.294487 9.87129 -0.0532632 -0.0468716 0.0223706 0.08 0.05 pose: 0.7061765 -1.36592 -3.72783 0 0.00488923 0.00411277 0.997709 -0.0673539 uwb: 0.100110305 1232.3 1110.8 +imu_odom_: 1691062513.304416506 0.873884 -0.177171 9.84735 -0.0575243 -0.00319579 0.0468716 0.08 0.05 pose: 0.0 -1.36592 -3.72783 0 0.00488923 0.00411277 0.997709 -0.0673539 uwb: 0.0 1232.3 1110.8 +imu_odom_: 1691062513.320483815 0.991199 -0.342371 9.93115 -0.052198 -0.00106526 0.0958738 0.05 0.02 pose: 0.41928465 -1.36592 -3.72783 0 0.00866021 0.00381513 0.997693 -0.0672317 uwb: 0.0 1232.3 1110.8 +imu_odom_: 1691062513.337430710 0.509965 -0.325611 9.77553 -0.0543285 0.0223706 0.0916127 0.06 0.05 pose: 0.0 -1.36592 -3.72783 0 0.00866021 0.00381513 0.997693 -0.0672317 uwb: 0.0 1232.3 1110.8 +imu_odom_: 1691062513.363430394 0.490811 0.023942 9.89045 -0.0426106 -0.0276969 0.0671117 0.06 0.05 pose: 0.24034324 -1.36592 -3.72783 0 0.00967976 0.0025396 0.997641 -0.0679067 uwb: 0.0 1232.3 1110.8 +imu_odom_: 1691062513.389416663 -0.105345 -0.0981623 9.88805 -0.0617853 0.0969391 0.0149137 0.05 0.08 pose: 0.0 -1.36592 -3.72783 0 0.00967976 0.0025396 0.997641 -0.0679067 uwb: 0.100131011 1232.54 1110.91 +imu_odom_: 1691062513.406442884 -1.47722 0.0742203 9.90242 -0.0543285 0.0607201 0.00213053 0.05 0.08 pose: 0.42038413 -1.36592 -3.72783 0 0.00720871 0.00417646 0.997624 -0.0683944 uwb: 0.0 1232.54 1110.91 +imu_odom_: 1691062513.432435860 -0.612916 -0.701501 9.93354 -0.0639159 -0.0937433 0.0820254 0.11 0.05 pose: 0.35953641 -1.3753 -3.73131 0 0.0021061 0.00409115 0.997686 -0.067835 uwb: 0.49999303 1232.74 1110.27 +imu_odom_: 1691062513.458495623 0.833182 -0.059855 9.88566 -0.0372843 -0.0181095 0.0809601 0.11 0.05 pose: 0.7001395 -1.3753 -3.73131 0 0.00182665 0.00371283 0.997678 -0.0679804 uwb: 0.0 1232.74 1110.27 +imu_odom_: 1691062513.482552111 -0.100556 0.011971 9.63906 -0.0628506 0.036219 0.0948085 0.13 0 pose: 0.45051344 -1.3753 -3.73131 0 0.0037105 0.00375143 0.997608 -0.0689176 uwb: 0.49864274 1232.68 1111.48 +imu_odom_: 1691062513.498552927 -0.100556 -0.354342 9.96227 -0.0458064 0.0170442 0.0255663 0.13 0 pose: 0.0 -1.3753 -3.73131 0 0.0037105 0.00375143 0.997608 -0.0689176 uwb: 0.0 1232.68 1111.48 +imu_odom_: 1691062513.525476234 0.00957681 -0.258574 9.76355 -0.0607201 0.0447411 0.0639159 0.12 0.02 pose: 0.40057304 -1.3803 -3.73312 0 -0.0007327490.00345312 0.997579 -0.0694553 uwb: 0.0 1232.68 1111.48 +imu_odom_: 1691062513.551407091 0.399832 -0.356736 9.78271 -0.0511327 -0.00106526 0.0735032 0.13 0.02 pose: 0.0 -1.3803 -3.73312 0 -0.0007327490.00345312 0.997579 -0.0694553 uwb: 0.49996971 1232.08 1112.19 +imu_odom_: 1691062513.577460146 0.533907 0.023942 10.4579 -0.0607201 -0.0426106 0.0671117 0.16 0.02 pose: 0.52854164 -1.3847 -3.73471 0 -0.00291888 8.33955e-05 0.997528 -0.070207 uwb: 0.0 1232.08 1112.19 +imu_odom_: 1691062513.603401794 -0.155623 -0.035913 9.38048 -0.0639159 0.0223706 0.0692422 0.13 0 pose: 0.0 -1.3847 -3.73471 0 -0.00291888 8.33955e-05 0.997528 -0.070207 uwb: 0.50013593 1232.17 1112.23 +imu_odom_: 1691062513.620413433 0.0383072 -0.275333 10.2328 -0.0745685 -0.0127832 0.0777643 0.13 0 pose: 0.34024153 -1.3941 -3.73814 0 -0.00179377 0.00227717 0.997494 -0.0706878 uwb: 0.0 1232.17 1112.23 +imu_odom_: 1691062513.645433499 0.483629 -0.110133 10.0269 -0.0681769 0.0308927 0.0394148 0.14 0.02 pose: 0.34982189 -1.3941 -3.73814 0 -0.00524196 0.00160082 0.997442 -0.0712676 uwb: 0.50059381 1232.73 1112.26 +imu_odom_: 1691062513.671464097 0.416591 -0.275333 9.81623 -0.0798948 -0.00426106 0.0756338 0.14 0.02 pose: 0.7039309 -1.3941 -3.73814 0 -0.0047183 0.00183202 0.997444 -0.0712702 uwb: 0.0 1232.73 1112.26 +imu_odom_: 1691062513.696506620 -0.0047884 -0.174777 9.9503 -0.0553937 -0.0713727 0.0447411 0.16 0.02 pose: 0.44011355 -1.40349 -3.74158 0 -0.00175142 5.25356e-05 0.997422 -0.0717431 uwb: 0.49891980 1233.09 1112.18 +imu_odom_: 1691062513.713438641 0.3304 -0.035913 9.5816 -0.0596548 -0.0575243 0.0511327 0.16 0.02 pose: 0.0 -1.40349 -3.74158 0 -0.00175142 5.25356e-05 0.997422 -0.0717431 uwb: 0.0 1233.09 1112.18 +imu_odom_: 1691062513.729375296 0.847547 -0.138864 10.0844 -0.0607201 -0.0500674 0.0639159 0.16 0.02 pose: 0.0 -1.40349 -3.74158 0 -0.00175142 5.25356e-05 0.997422 -0.0717431 uwb: 0.49953808 1233.99 1111.61 +imu_odom_: 1691062513.746463344 0.502782 -0.37589 9.56484 -0.0490022 0.00639159 0.0319579 0.15 0 pose: 0.48927819 -1.41632 -3.73564 0 -0.00232115 0.00194532 0.9974 -0.0719961 uwb: 0.0 1233.99 1111.61 +imu_odom_: 1691062513.772517857 0.447716 -0.0167594 9.97424 -0.0585895 -0.0117179 0.0585895 0.15 0 pose: 0.0 -1.41632 -3.73564 0 -0.00232115 0.00194532 0.9974 -0.0719961 uwb: 0.0 1233.99 1111.61 +imu_odom_: 1691062513.798497710 0.727837 -0.25618 10.1658 -0.0649811 -0.0735032 0.0543285 0.15 0 pose: 0.33066991 -1.41632 -3.73564 0 -0.0001796810.00138447 0.997396 -0.0721091 uwb: 0.50010094 1233.81 1112.02 +imu_odom_: 1691062513.824501769 0.136469 -0.167594 9.90721 -0.0543285 -0.0255663 0.0532632 0.16 0 pose: 0.45038803 -1.42571 -3.73909 0 0.00369052 0.00252047 0.997359 -0.0724864 uwb: 0.0 1233.81 1112.02 +imu_odom_: 1691062513.840488877 0.37589 -0.299275 9.52174 -0.0575243 -0.04048 0.0628506 0.16 0 pose: 0.0 -1.42571 -3.73909 0 0.00369052 0.00252047 0.997359 -0.0724864 uwb: 0.50190036 1233.59 1112.92 +imu_odom_: 1691062513.866379780 0.0215478 -0.213084 9.68455 -0.0287621 0.0298274 0.02024 0.16 0 pose: 0.6964065 -1.42571 -3.73909 0 0.00306833 0.00248494 0.997358 -0.0725324 uwb: 0.0 1233.59 1112.92 +imu_odom_: 1691062513.891364849 0.378284 -0.440533 9.84017 -0.0681769 0.0245011 0.0628506 0.16 0 pose: 0.0 -1.42571 -3.73909 0 0.00306833 0.00248494 0.997358 -0.0725324 uwb: 0.49757534 1233.75 1113.5 +imu_odom_: 1691062513.915368843 0.215478 -0.339977 9.34457 -0.04048 0.00106526 0.0298274 0.18 -0.02 pose: 0.42950662 -1.43509 -3.74256 0 0.000190582 0.000894191 0.997349 -0.0727669 uwb: 0.0 1233.75 1113.5 +imu_odom_: 1691062513.940362370 0.225055 -0.426168 10.003 -0.0585895 0.0117179 0.0703074 0.18 -0.02 pose: 0.0 -1.43509 -3.74256 0 0.000190582 0.000894191 0.997349 -0.0727669 uwb: 0.50072504 1233.5 1114.89 +imu_odom_: 1691062513.955346238 -0.25618 -0.246603 9.33978 -0.0415453 0.00213053 0.0308927 0.22 0 pose: 0.48962233 -1.43509 -3.74256 0 -0.00247241 -0.00206513 0.997338 -0.0728493 uwb: 0.0 1233.5 1114.89 +imu_odom_: 1691062513.981345630 -0.617704 -0.213084 10.2089 -0.036219 0.0170442 0.0511327 0.22 0 pose: 0.0 -1.43509 -3.74256 0 -0.00247241 -0.00206513 0.997338 -0.0728493 uwb: 0.50079505 1233.89 1114.84 +imu_odom_: 1691062514.7355232 0.464475 0.00957681 11.0373 -0.0319579 0.00319579 0.0287621 0.2 0 pose: 0.48983230 -1.44447 -3.74603 0 -0.00592257 -0.0052391 0.997292 -0.0731141 uwb: 0.0 1233.89 1114.84 +imu_odom_: 1691062514.32402136 0.395043 -0.162806 10.1993 -0.0681769 -0.0138484 0.0575243 0.2 0 pose: 0.0 -1.44447 -3.74603 0 -0.00592257 -0.0052391 0.997292 -0.0731141 uwb: 0.50028183 1233.97 1115.64 +imu_odom_: 1691062514.58405036 0.61531 -0.272939 9.80426 -0.0617853 -0.0106526 0.0351537 0.2 0 pose: 0.43012782 -1.45732 -3.74012 0 -0.00929551 -0.00410387 0.997266 -0.0731982 uwb: 0.0 1233.97 1115.64 +imu_odom_: 1691062514.74343153 0.730232 -0.0454898 9.69173 -0.0500674 -0.015979 0.0479369 0.2 0 pose: 0.0 -1.45732 -3.74012 0 -0.00929551 -0.00410387 0.997266 -0.0731982 uwb: 0.0 1233.97 1115.64 +imu_odom_: 1691062514.100410213 0.426168 -0.205901 10.1849 -0.056459 -0.0149137 0.0319579 0.22 0 pose: 0.51001971 -1.46669 -3.7436 0 -0.00522171 -0.00132449 0.997294 -0.0733231 uwb: 0.49954404 1234.44 1116.12 +imu_odom_: 1691062514.126344286 0.790087 -0.308852 9.91439 -0.0692422 -0.0287621 0.0628506 0.18 -0.02 pose: 0.41028767 -1.47607 -3.74707 0 -0.00119102 -0.0003734260.997308 -0.0733222 uwb: 0.0 1234.44 1116.12 +imu_odom_: 1691062514.152555416 0.847547 -0.323217 9.65582 -0.0394148 0.0607201 0.0213053 0.22 0.02 pose: 0.27043471 -1.47607 -3.74707 0 0.00158008 0.000100847 0.997305 -0.0733436 uwb: 0.49816168 1234.77 1117.31 +imu_odom_: 1691062514.177469041 0.4956 -0.0885855 9.96467 -0.0532632 0.00106526 0.0617853 0.2 0 pose: 0.24943664 -1.48545 -3.75055 0 0.00402819 -0.00042412 0.997288 -0.0734875 uwb: 0.0 1234.77 1117.31 +imu_odom_: 1691062514.194513640 0.610521 -0.248997 9.85693 -0.0703074 0.015979 0.0372843 0.2 0 pose: 0.0 -1.48545 -3.75055 0 0.00402819 -0.00042412 0.997288 -0.0734875 uwb: 0.50239628 1235.43 1118.15 +imu_odom_: 1691062514.219353188 0.691924 -0.423774 9.35893 -0.0660464 0.0170442 0.0617853 0.2 0 pose: 0.26138803 -1.48545 -3.75055 0 0.00516336 3.91085e-05 0.99729 -0.0733868 uwb: 0.0 1235.43 1118.15 +imu_odom_: 1691062514.245617106 0.445322 -0.45011 9.58878 -0.0479369 0.0426106 0.0394148 0.18 0 pose: 0.0 -1.48545 -3.75055 0 0.00516336 3.91085e-05 0.99729 -0.0733868 uwb: 0.49900743 1234.9 1119.68 +imu_odom_: 1691062514.271610090 0.553061 -0.335188 9.58878 -0.0852212 -0.00106526 0.0543285 0.18 0 pose: 0.86089748 -1.50413 -3.74977 0 0.0060557 -0.00341046 0.997244 -0.0738665 uwb: 0.0 1234.9 1119.68 +imu_odom_: 1691062514.288610651 -0.0861913 -0.158017 9.90002 -0.0681769 0.0490022 0.0351537 0.18 0 pose: 0.0 -1.50413 -3.74977 0 0.0060557 -0.00341046 0.997244 -0.0738665 uwb: 0.49970737 1234.65 1121.11 +imu_odom_: 1691062514.304339079 0.0191536 -0.280122 9.84256 -0.0660464 -0.00319579 0.0372843 0.18 0 pose: 0.0 -1.50413 -3.74977 0 0.0060557 -0.00341046 0.997244 -0.0738665 uwb: 0.0 1234.65 1121.11 +imu_odom_: 1691062514.330329147 0.897826 -0.332794 9.64624 -0.0745685 -0.00532632 0.0308927 0.18 0 pose: 0.6894074 -1.50768 -3.74814 0 0.00653488 -0.00400646 0.997235 -0.0739175 uwb: 0.49862247 1234.66 1122.41 +imu_odom_: 1691062514.356396207 0.263362 -0.433351 10.2424 -0.0639159 0.0117179 0.0490022 0.17 0 pose: 0.42986546 -1.51705 -3.75163 0 0.0050613 -0.00548054 0.997229 -0.0740212 uwb: 0.0 1234.66 1122.41 +imu_odom_: 1691062514.382328238 0.76375 -0.440533 9.54089 -0.04048 -0.0394148 0.0276969 0.17 0 pose: 0.0 -1.51705 -3.75163 0 0.0050613 -0.00548054 0.997229 -0.0740212 uwb: 0.49998442 1234.92 1123.6 +imu_odom_: 1691062514.408383341 0.591368 -0.0526724 10.7045 -0.0490022 -0.00213053 0.0340885 0.18 0 pose: 0.41866648 -1.51705 -3.75163 0 0.00610913 -0.00592482 0.997228 -0.0739246 uwb: 0.0 1234.92 1123.6 +imu_odom_: 1691062514.424377454 0.268151 -0.191536 9.60793 -0.0426106 0.0543285 0.0298274 0.18 0 pose: 0.0 -1.51705 -3.75163 0 0.00610913 -0.00592482 0.997228 -0.0739246 uwb: 0.0 1234.92 1123.6 +imu_odom_: 1691062514.449321409 0.514753 -0.208296 9.63427 -0.0607201 0.0372843 0.0415453 0.18 -0.02 pose: 0.51971970 -1.52642 -3.75512 0 0.00722691 -0.0064388 0.997223 -0.073838 uwb: 0.50119473 1235.76 1123.77 +imu_odom_: 1691062514.475314685 0.59855 -0.198719 10.3693 -0.0479369 -0.0415453 0.0351537 0.18 -0.02 pose: 0.0 -1.52642 -3.75512 0 0.00722691 -0.0064388 0.997223 -0.073838 uwb: 0.0 1235.76 1123.77 +imu_odom_: 1691062514.500444123 0.593762 -0.430956 9.8689 -0.0809601 -0.00426106 0.0596548 0.18 -0.02 pose: 0.43003752 -1.53579 -3.75861 0 0.00527515 -0.00311628 0.997262 -0.0736994 uwb: 0.49883245 1236.15 1124.24 +imu_odom_: 1691062514.526325700 0.715866 -0.136469 10.1825 -0.04048 -0.0383495 0.0255663 0.18 -0.02 pose: 0.50996726 -1.54517 -3.7621 0 0.00793841 -0.0007754280.997247 -0.0737225 uwb: 0.0 1236.15 1124.24 +imu_odom_: 1691062514.551374938 0.512359 -0.11971 10.4244 -0.0745685 -0.0255663 0.0511327 0.21 0 pose: 0.0 -1.54517 -3.7621 0 0.00793841 -0.0007754280.997247 -0.0737225 uwb: 0.49985027 1237.2 1124.27 +imu_odom_: 1691062514.568322712 0.258574 -0.007182619.3709 -0.0426106 -0.00426106 0.0298274 0.21 0 pose: 0.68038116 -1.55803 -3.75621 0 0.00903954 0.00104331 0.997229 -0.0738301 uwb: 0.0 1237.2 1124.27 +imu_odom_: 1691062514.593306331 0.263362 -0.160412 9.46667 -0.0841559 0.0287621 0.0543285 0.21 -0.02 pose: 0.8000556 -1.55803 -3.75621 0 0.00833221 0.00147544 0.997238 -0.0737879 uwb: 0.50134929 1237.72 1124.81 +imu_odom_: 1691062514.610311266 0.646434 -0.117316 10.7978 -0.0479369 -0.0149137 0.0415453 0.21 -0.02 pose: 0.0 -1.55803 -3.75621 0 0.00833221 0.00147544 0.997238 -0.0737879 uwb: 0.0 1237.72 1124.81 +imu_odom_: 1691062514.635379752 0.529119 -0.294487 10.24 -0.0490022 -0.0213053 0.0553937 0.22 0 pose: 0.42220699 -1.5674 -3.7597 0 0.00541642 0.00208663 0.997247 -0.0739252 uwb: 0.49985902 1237.66 1125.83 +imu_odom_: 1691062514.652360482 0.397437 -0.289698 9.8258 -0.0426106 -0.0276969 0.0458064 0.22 0 pose: 0.0 -1.5674 -3.7597 0 0.00541642 0.00208663 0.997247 -0.0739252 uwb: 0.0 1237.66 1125.83 +imu_odom_: 1691062514.677437717 0.59855 -0.241814 9.57681 -0.0671117 -0.0287621 0.0607201 0.21 0.02 pose: 0.41721704 -1.57677 -3.76319 0 0.00595187 -0.0002036430.997228 -0.0741741 uwb: 0.0 1237.66 1125.83 +imu_odom_: 1691062514.704501310 1.08697 -0.153229 9.69412 -0.0351537 -0.0117179 0.0458064 0.23 0.02 pose: 0.34119820 -1.58316 -3.76557 0 0.00810863 -0.0007649060.99719 -0.0744669 uwb: 0.50054437 1238.05 1126.57 +imu_odom_: 1691062514.729503885 0.59855 -0.1652 10.0772 -0.0639159 -0.0319579 0.0585895 0.23 0.02 pose: 0.0 -1.58316 -3.76557 0 0.00810863 -0.0007649060.99719 -0.0744669 uwb: 0.49976278 1237.86 1127.81 +imu_odom_: 1691062514.746288925 0.562637 -0.0550666 9.55287 -0.0511327 -0.00319579 0.0468716 0.23 -0.02 pose: 0.7894982 -1.58614 -3.76668 0 0.00890014 -0.0004967030.997182 -0.0744895 uwb: 0.0 1237.86 1127.81 +imu_odom_: 1691062514.772269660 0.35913 -0.428562 9.83777 -0.105461 0.0276969 0.0809601 0.23 -0.02 pose: 0.0 -1.58614 -3.76668 0 0.00890014 -0.0004967030.997182 -0.0744895 uwb: 0.0 1237.86 1127.81 +imu_odom_: 1691062514.798273726 0.459687 -0.263362 10.3597 -0.0649811 0.02024 0.0436758 0.25 0.02 pose: 0.52046337 -1.59551 -3.77018 0 0.0099662 0.00314833 0.997146 -0.0747759 uwb: 0.49835708 1238.92 1127.84 +imu_odom_: 1691062514.824406989 0.653617 -0.0981623 10.477 -0.0649811 -0.0340885 0.0436758 0.25 0.02 pose: 0.0 -1.59551 -3.77018 0 0.0099662 0.00314833 0.997146 -0.0747759 uwb: 0.0 1238.92 1127.84 +imu_odom_: 1691062514.850271359 1.01275 -0.280122 9.6199 -0.0628506 -0.04048 0.0532632 0.23 0.05 pose: 0.41900771 -1.59901 -3.76082 0 0.00709761 0.000778371 0.997131 -0.0753629 uwb: 0.49999317 1239.89 1127.82 +imu_odom_: 1691062514.867271921 -0.0407014 -0.275333 9.47386 -0.0426106 0.00532632 0.0372843 0.23 0.05 pose: 0.0 -1.59901 -3.76082 0 0.00709761 0.000778371 0.997131 -0.0753629 uwb: 0.0 1239.89 1127.82 +imu_odom_: 1691062514.884282106 0.610521 0.105345 10.2639 -0.0500674 -0.0490022 0.0468716 0.2 0 pose: 0.52030005 -1.60837 -3.76433 0 0.00828937 0.0013312 0.997111 -0.0754972 uwb: 0.50124722 1239.93 1129.46 +imu_odom_: 1691062514.900385583 0.675165 -0.19393 9.85932 -0.072438 0.0106526 0.0596548 0.2 0 pose: 0.0 -1.60837 -3.76433 0 0.00828937 0.0013312 0.997111 -0.0754972 uwb: 0.0 1239.93 1129.46 +imu_odom_: 1691062514.926273576 0.447716 -0.169988 9.75877 -0.0500674 -0.0181095 0.0458064 0.25 0.02 pose: 0.69075771 -1.62709 -3.77137 0 0.0106522 0.00233487 0.997062 -0.0758244 uwb: 0.0 1239.93 1129.46 +imu_odom_: 1691062514.952314681 0.397437 -0.411803 9.83777 -0.0585895 0.00745685 0.0490022 0.25 0.02 pose: 0.0 -1.62709 -3.77137 0 0.0106522 0.00233487 0.997062 -0.0758244 uwb: 0.49856122 1239.45 1130.82 +imu_odom_: 1691062514.969254289 0.354342 -0.0215478 10.0078 -0.0276969 -0.0340885 0.0287621 0.21 0.02 pose: 0.7954185 -1.62709 -3.77137 0 0.00990916 0.00237364 0.997067 -0.0758478 uwb: 0.0 1239.45 1130.82 +imu_odom_: 1691062514.985250735 0.469264 -0.179565 10.0149 -0.0703074 -0.0191748 0.052198 0.18 0 pose: 0.0 -1.62709 -3.77137 0 0.00990916 0.00237364 0.997067 -0.0758478 uwb: 0.49986486 1239.34 1131.57 +imu_odom_: 1691062515.2303791 0.663194 -0.198719 10.3645 -0.0490022 -0.0223706 0.0468716 0.25 0 pose: 0.0 -1.62709 -3.77137 0 0.00990916 0.00237364 0.997067 -0.0758478 uwb: 0.0 1239.34 1131.57 +imu_odom_: 1691062515.19343728 0.517148 0.011971 9.37809 -0.0479369 -0.0106526 0.052198 0.25 0 pose: 0.76910967 -1.63645 -3.7749 0 0.0042691 0.00175271 0.997094 -0.0760376 uwb: 0.0 1239.34 1131.57 +imu_odom_: 1691062515.44264359 0.0670376 -0.435745 9.41161 -0.0617853 0.0575243 0.052198 0.18 0 pose: 0.0 -1.63645 -3.7749 0 0.0042691 0.00175271 0.997094 -0.0760376 uwb: 0.50062901 1239.91 1131.89 +imu_odom_: 1691062515.61391788 0.373495 -0.11971 10.2687 -0.0276969 -0.0340885 0.0308927 0.18 0 pose: 0.41098767 -1.64934 -3.76907 0 0.00525085 0.00313027 0.99707 -0.0762439 uwb: 0.0 1239.91 1131.89 +imu_odom_: 1691062515.77386780 0.282516 -0.337582 9.45231 -0.0426106 -0.0255663 0.0468716 0.18 0 pose: 0.0 -1.64934 -3.76907 0 0.00525085 0.00313027 0.99707 -0.0762439 uwb: 0.0 1239.91 1131.89 +imu_odom_: 1691062515.95330801 0.639252 -0.0454898 10.3238 -0.0479369 -0.015979 0.0383495 0.18 0 pose: 0.35042286 -1.65869 -3.7726 0 0.00196019 0.00300858 0.99708 -0.0762807 uwb: 0.49947128 1239.61 1133.91 +imu_odom_: 1691062515.112267206 0.28491 -0.059855 10.173 -0.0245011 0.0340885 0.0447411 0.18 0 pose: 0.0 -1.65869 -3.7726 0 0.00196019 0.00300858 0.99708 -0.0762807 uwb: 0.0 1239.61 1133.91 +imu_odom_: 1691062515.126371204 0.25618 -0.0790087 10.4746 -0.0447411 0.0138484 0.0671117 0.18 0.02 pose: 0.6999650 -1.65869 -3.7726 0 0.00159924 0.0025081 0.99708 -0.076306 uwb: 0.0 1239.61 1133.91 +imu_odom_: 1691062515.143311109 0.663194 -0.251391 9.56484 -0.0596548 -0.0181095 0.0436758 0.18 0.02 pose: 0.0 -1.65869 -3.7726 0 0.00159924 0.0025081 0.99708 -0.076306 uwb: 0.50175482 1240.44 1133.82 +imu_odom_: 1691062515.157238373 0.19393 -0.205901 9.64863 -0.0756338 -0.02024 0.0553937 0.18 0.02 pose: 0.0 -1.65869 -3.7726 0 0.00159924 0.0025081 0.99708 -0.076306 uwb: 0.0 1240.44 1133.82 +imu_odom_: 1691062515.172280285 0.684742 -0.282516 10.2544 -0.0745685 -0.0213053 0.0553937 0.18 0 pose: 0.49884425 -1.66805 -3.77614 0 0.000151578 0.00412731 0.997065 -0.0764473 uwb: 0.0 1240.44 1133.82 +imu_odom_: 1691062515.199292266 0.818817 0.0885855 9.87608 -0.0447411 -0.0340885 0.0447411 0.25 0.02 pose: 0.0 -1.66805 -3.77614 0 0.000151578 0.00412731 0.997065 -0.0764473 uwb: 0.49825805 1240.23 1134.53 +imu_odom_: 1691062515.215248761 0.270545 -0.217872 9.71806 -0.0490022 0.00532632 0.0703074 0.25 0.02 pose: 0.62026270 -1.6774 -3.77968 0 0.00210104 0.00304548 0.997036 -0.0768448 uwb: 0.0 1240.23 1134.53 +imu_odom_: 1691062515.242398396 0.682347 -0.167594 10.1993 -0.0330232 -0.036219 0.0298274 0.25 -0.02 pose: 0.0 -1.6774 -3.77968 0 0.00210104 0.00304548 0.997036 -0.0768448 uwb: 0.50034328 1240.82 1135.41 +imu_odom_: 1691062515.268308853 0.459687 -0.107739 9.9096 -0.0596548 -0.0266316 0.0532632 0.18 -0.02 pose: 0.43111088 -1.68675 -3.78322 0 0.00328797 0.00378335 0.997011 -0.0770993 uwb: 0.0 1240.82 1135.41 +imu_odom_: 1691062515.295368371 0.318429 -0.0502782 9.91918 -0.0415453 -0.0213053 0.0426106 0.25 -0.02 pose: 0.26884242 -1.68675 -3.78322 0 0.0048744 0.00434344 0.997005 -0.0770615 uwb: 0.50018579 1241.52 1135.81 +imu_odom_: 1691062515.321224000 0.842759 -0.0885855 9.72285 -0.052198 -0.00852212 0.0500674 0.2 -0.02 pose: 0.25022705 -1.69965 -3.77742 0 0.0028972 0.00547899 0.996998 -0.0771788 uwb: 0.0 1241.52 1135.81 +imu_odom_: 1691062515.338228357 0.383072 -0.186748 10.1825 -0.0607201 0 0.0447411 0.2 -0.02 pose: 0.0 -1.69965 -3.77742 0 0.0028972 0.00547899 0.996998 -0.0771788 uwb: 0.49813557 1242.41 1135.75 +imu_odom_: 1691062515.364281426 0.754174 -0.373495 10.2376 -0.0788296 0.00319579 0.0426106 0.18 0 pose: 0.28050220 -1.69965 -3.77742 0 0.00196583 0.00635581 0.99699 -0.0772431 uwb: 0.0 1242.41 1135.75 +imu_odom_: 1691062515.391218164 0.758962 -0.306458 10.3094 -0.0415453 -0.0117179 0.0426106 0.18 0 pose: 0.0 -1.69965 -3.77742 0 0.00196583 0.00635581 0.99699 -0.0772431 uwb: 0.50028787 1242.66 1135.89 +imu_odom_: 1691062515.417300689 0.54109 0.0742203 9.78989 -0.04048 0.0298274 0.036219 0.19 0 pose: 0.42925896 -1.70899 -3.78097 0 0.00320701 0.00467443 0.996984 -0.0774052 uwb: 0.0 1242.66 1135.89 +imu_odom_: 1691062515.444231594 -0.0167594 -0.270545 9.63187 -0.072438 -0.0287621 0.0575243 0.19 0 pose: 0.52988640 -1.71834 -3.78453 0 0.0068772 0.00321572 0.996965 -0.0774776 uwb: 0.49956751 1242.99 1136.36 +imu_odom_: 1691062515.469218719 0.134075 0.0454898 9.79947 -0.0490022 -0.0298274 0.0415453 0.18 -0.02 pose: 0.0 -1.71834 -3.78453 0 0.0068772 0.00321572 0.996965 -0.0774776 uwb: 0.0 1242.99 1136.36 +imu_odom_: 1691062515.486253115 0.548272 -0.102951 10.7188 -0.0543285 -0.00213053 0.04048 0.18 -0.02 pose: 0.53038219 -1.72769 -3.78809 0 0.00356397 0.00438933 0.996963 -0.0776707 uwb: 0.50340550 1243.09 1137.53 +imu_odom_: 1691062515.511383727 0.426168 0.169988 10.5656 -0.02024 -0.04048 0.0213053 0.23 -0.02 pose: 0.0 -1.72769 -3.78809 0 0.00356397 0.00438933 0.996963 -0.0776707 uwb: 0.0 1243.09 1137.53 +imu_odom_: 1691062515.535229082 0.366313 -0.244209 9.60793 -0.0575243 -0.0298274 0.0447411 0.23 -0.02 pose: 0.23987676 -1.72769 -3.78809 0 0.00291881 0.00524395 0.99696 -0.077684 uwb: 0.0 1243.09 1137.53 +imu_odom_: 1691062515.559275376 0.588974 0.0191536 9.38527 -0.0383495 -0.00319579 0.0330232 0.23 0 pose: 0.18133295 -1.73703 -3.79164 0 0.00377569 0.00633631 0.996956 -0.0776134 uwb: 0.0 1243.09 1137.53 +imu_odom_: 1691062515.575274451 0.361524 -0.155623 9.96227 -0.0830906 0.0117179 0.0628506 0.23 0 pose: 0.0 -1.73703 -3.79164 0 0.00377569 0.00633631 0.996956 -0.0776134 uwb: 0.0 1243.09 1137.53 +imu_odom_: 1691062515.593220513 0.656011 -0.347159 9.70849 -0.0447411 0 0.0298274 0.19 0 pose: 0.23924972 -1.74059 -3.7823 0 0.00329454 0.00765349 0.99696 -0.0774658 uwb: 0.99800056 1242.63 1139.52 +imu_odom_: 1691062515.618216971 0.490811 -0.234632 9.8689 -0.052198 -0.015979 0.0468716 0.19 0 pose: 0.0 -1.74059 -3.7823 0 0.00329454 0.00765349 0.99696 -0.0774658 uwb: 0.0 1242.63 1139.52 +imu_odom_: 1691062515.635210246 0.577003 -0.42138 9.8665 -0.0671117 0.00213053 0.0394148 0.18 0 pose: 0.48882934 -1.74994 -3.78585 0 0.00359637 0.0075575 0.996955 -0.0775226 uwb: 0.0 1242.63 1139.52 +imu_odom_: 1691062515.661244941 0.3304 -0.215478 10.1993 -0.0607201 -0.0181095 0.056459 0.18 0 pose: 0.0 -1.74994 -3.78585 0 0.00359637 0.0075575 0.996955 -0.0775226 uwb: 0.0 1242.63 1139.52 +imu_odom_: 1691062515.688218426 0.447716 -0.306458 10.3645 -0.0372843 -0.0415453 0.0213053 0.18 0.02 pose: 0.32969018 -1.75928 -3.78941 0 0.00412713 0.00496903 0.996966 -0.0775675 uwb: 0.99955791 1242.9 1141.37 +imu_odom_: 1691062515.713281669 0.663194 -0.397437 9.99579 -0.0553937 -0.0106526 0.0671117 0.18 -0.02 pose: 0.43016888 -1.75928 -3.78941 0 0.0042488 0.00134523 0.996966 -0.0777156 uwb: 0.0 1242.9 1141.37 +imu_odom_: 1691062515.730209616 0.189142 0.0023942 9.70609 -0.0298274 0.0394148 0.04048 0.18 -0.02 pose: 0.0 -1.75928 -3.78941 0 0.0042488 0.00134523 0.996966 -0.0777156 uwb: 0.50114821 1243.72 1141.56 +imu_odom_: 1691062515.755206657 0.143652 -0.138864 9.71806 -0.0660464 -0.0181095 0.0671117 0.18 0 pose: 0.52984849 -1.76863 -3.79297 0 0.00375219 -0.00191123 0.996965 -0.0777377 uwb: 0.0 1243.72 1141.56 +imu_odom_: 1691062515.772200224 0.823605 -0.368707 10.1897 -0.0575243 -0.00958738 0.0372843 0.18 0 pose: 0.0 -1.76863 -3.79297 0 0.00375219 -0.00191123 0.996965 -0.0777377 uwb: 0.0 1243.72 1141.56 +imu_odom_: 1691062515.797325294 0.627281 -0.275333 9.79947 -0.0596548 -0.0234358 0.0628506 0.2 0.02 pose: 0.42006939 -1.77797 -3.79653 0 0.00280518 -0.00142941 0.996941 -0.0780892 uwb: 0.50043368 1243.96 1142.27 +imu_odom_: 1691062515.824271365 0.641646 -0.023942 10.1658 -0.0479369 -0.0532632 0.0479369 0.2 0.02 pose: 0.0 -1.77797 -3.79653 0 0.00280518 -0.00142941 0.996941 -0.0780892 uwb: 0.0 1243.96 1142.27 +imu_odom_: 1691062515.849330817 0.761356 -0.035913 10.0413 -0.0916127 0.00426106 0.0692422 0.2 0 pose: 0.41978359 -1.79088 -3.79076 0 0.00385845 -0.00157953 0.996914 -0.0783942 uwb: 0.49839221 1244.01 1143.16 +imu_odom_: 1691062515.876192020 0.76375 -0.0287304 9.97664 -0.0756338 -0.015979 0.0447411 0.2 0 pose: 0.0 -1.79088 -3.79076 0 0.00385845 -0.00157953 0.996914 -0.0783942 uwb: 0.0 1244.01 1143.16 +imu_odom_: 1691062515.901243597 0.543484 -0.220267 10.2568 -0.0756338 0.0127832 0.0468716 0.18 0.02 pose: 0.52071432 -1.80022 -3.79433 0 0.00802414 0.00128452 0.996857 -0.0788008 uwb: 0.49982416 1243.81 1144.48 +imu_odom_: 1691062515.918247663 0.308852 -0.189142 9.72285 -0.0394148 -0.0511327 0.036219 0.18 0.02 pose: 0.0 -1.80022 -3.79433 0 0.00802414 0.00128452 0.996857 -0.0788008 uwb: 0.0 1243.81 1144.48 +imu_odom_: 1691062515.935187859 0.23942 -0.225055 10.2017 -0.0628506 -0.0149137 0.0490022 0.18 0.02 pose: 0.51931738 -1.80956 -3.79792 0 0.010554 0.00324324 0.996804 -0.0791249 uwb: 0.50027037 1243.45 1146.28 +imu_odom_: 1691062515.952198924 0.301669 -0.141258 9.6199 -0.0383495 -0.0532632 0.0340885 0.18 0.02 pose: 0.0 -1.80956 -3.79792 0 0.010554 0.00324324 0.996804 -0.0791249 uwb: 0.0 1243.45 1146.28 +imu_odom_: 1691062515.978186082 0.4956 -0.351948 9.52413 -0.0713727 -0.0234358 0.0500674 0.18 0 pose: 0.67987681 -1.81889 -3.8015 0 0.00495332 0.00205717 0.996845 -0.0791938 uwb: 0.50098489 1243.56 1146.92 +imu_odom_: 1691062516.3195664 0.76375 -0.169988 10.228 -0.0340885 -0.0330232 0.0436758 0.18 0 pose: 0.7018898 -1.81889 -3.8015 0 0.00506604 0.0013048 0.996842 -0.0792337 uwb: 0.0 1243.56 1146.92 +imu_odom_: 1691062516.29183996 0.610521 -0.0861913 10.0461 -0.0639159 -0.0276969 0.0500674 0.21 -0.02 pose: 0.43977842 -1.83071 -3.79864 0 0.00806489 0.000402063 0.996811 -0.0793866 uwb: 0.50033168 1245.03 1146.94 +imu_odom_: 1691062516.55440928 0.620098 -0.0407014 9.92875 -0.0500674 -0.0213053 0.0340885 0.21 -0.02 pose: 0.0 -1.83071 -3.79864 0 0.00806489 0.000402063 0.996811 -0.0793866 uwb: 0.0 1245.03 1146.94 +imu_odom_: 1691062516.81311146 0.407014 -0.138864 9.77792 -0.0628506 -0.0138484 0.0479369 0.23 0.02 pose: 0.52245264 -1.84115 -3.79935 0 0.00974144 0.00550317 0.99678 -0.0794056 uwb: 0.49672708 1245.01 1148.39 +imu_odom_: 1691062516.98433039 0.318429 -0.215478 10.3262 -0.0500674 -0.0330232 0.0500674 0.23 0.02 pose: 0.0 -1.84115 -3.79935 0 0.00974144 0.00550317 0.99678 -0.0794056 uwb: 0.0 1245.01 1148.39 +imu_odom_: 1691062516.115383447 0.335188 -0.308852 9.85932 -0.0660464 -0.00426106 0.072438 0.18 -0.02 pose: 0.32837789 -1.85048 -3.80294 0 0.00678758 0.00473619 0.996797 -0.0795391 uwb: 0.0 1245.01 1148.39 +imu_odom_: 1691062516.132195618 0.395043 -0.335188 9.66539 -0.0415453 -0.0426106 0.0308927 0.18 -0.02 pose: 0.0 -1.85048 -3.80294 0 0.00678758 0.00473619 0.996797 -0.0795391 uwb: 0.50167038 1244.95 1149.81 +imu_odom_: 1691062516.158309064 0.124498 -0.512359 9.36612 -0.0511327 -0.00319579 0.0383495 0.19 0 pose: 0.43916901 -1.85048 -3.80294 0 0.00439361 0.00167374 0.9968 -0.0798033 uwb: 0.0 1244.95 1149.81 +imu_odom_: 1691062516.184227986 0.294487 0.0167594 9.58399 -0.00745685 0.00639159 0.0276969 0.19 0 pose: 0.7088894 -1.85048 -3.80294 0 0.00389827 0.00117649 0.996803 -0.0798006 uwb: 0.0 1244.95 1149.81 +imu_odom_: 1691062516.209310192 -0.0167594 -0.0742203 10.1394 -0.0671117 -0.0351537 0.0639159 0.19 0 pose: 0.44943474 -1.85981 -3.80654 0 0.000787326 0.00249561 0.996821 -0.0796364 uwb: 0.0 1244.95 1149.81 +imu_odom_: 1691062516.233152054 0.3304 0.201113 10.3741 -0.0660464 -0.00319579 0.0447411 0.19 0 pose: 0.0 -1.85981 -3.80654 0 0.000787326 0.00249561 0.996821 -0.0796364 uwb: 0.99919947 1245.39 1150.67 +imu_odom_: 1691062516.259292330 0.323217 -0.172383 9.80426 -0.0703074 -0.0213053 0.0426106 0.18 0 pose: 0.32082149 -1.86914 -3.81014 0 -0.00145902 0.00334219 0.996792 -0.0799514 uwb: 0.0 1245.39 1150.67 +imu_odom_: 1691062516.276436388 0.533907 -0.0909797 10.3837 -0.0511327 -0.0330232 0.036219 0.18 0 pose: 0.0 -1.86914 -3.81014 0 -0.00145902 0.00334219 0.996792 -0.0799514 uwb: 0.0 1245.39 1150.67 +imu_odom_: 1691062516.302259943 0.869095 -0.31364 9.87129 -0.0607201 -0.0170442 0.0575243 0.17 0.02 pose: 0.49967848 -1.88207 -3.80441 0 -0.00248531 0.00297817 0.996786 -0.0800134 uwb: 0.0 1245.39 1150.67 +imu_odom_: 1691062516.328434050 0.574608 0.0861913 10.1801 -0.0426106 0.0213053 0.0458064 0.19 0 pose: 0.35981960 -1.8889 -3.80705 0 0.00126848 0.00271003 0.996771 -0.0802379 uwb: 0.0 1245.39 1150.67 +imu_odom_: 1691062516.354149990 0.603339 -0.117316 10.1347 -0.0713727 -0.00532632 0.0415453 0.19 0 pose: 0.6969321 -1.8914 -3.80802 0 0.00147215 0.00337939 0.996767 -0.0802596 uwb: 0.0 1245.39 1150.67 +imu_odom_: 1691062516.380188776 0.268151 -0.47884 9.47386 -0.0617853 0.0266316 0.0628506 0.17 -0.02 pose: 0.44920726 -1.89819 -3.81064 0 0.00463243 0.00516277 0.996742 -0.0803564 uwb: 0.150159020 1245.93 1151.59 +imu_odom_: 1691062516.406342176 0.545878 -0.272939 9.81383 -0.0383495 -0.00745685 0.04048 0.23 0.02 pose: 0.0 -1.89819 -3.81064 0 0.00463243 0.00516277 0.996742 -0.0803564 uwb: 0.0 1245.93 1151.59 +imu_odom_: 1691062516.423292585 0.138864 0.0670376 9.62469 -0.0809601 0.0319579 0.0490022 0.19 0 pose: 0.52192186 -1.90756 -3.81427 0 0.00476441 0.00101878 0.996728 -0.080688 uwb: 0.0 1245.93 1151.59 +imu_odom_: 1691062516.440306279 0.462081 -0.337582 10.5082 -0.0809601 -0.0351537 0.0436758 0.19 0 pose: 0.0 -1.90756 -3.81427 0 0.00476441 0.00101878 0.996728 -0.080688 uwb: 0.49917686 1245.78 1153.88 +imu_odom_: 1691062516.465292828 0.723049 -0.383072 9.94073 -0.0649811 -0.0340885 0.0436758 0.19 0 pose: 0.33964103 -1.91005 -3.81524 0 0.00338566 -0.0002095930.996725 -0.0808004 uwb: 0.0 1245.78 1153.88 +imu_odom_: 1691062516.492139165 0.665588 -0.263362 9.77553 -0.0436758 0.0287621 0.0340885 0.19 0 pose: 0.6878621 -1.91005 -3.81524 0 0.00410118 -0.0005509290.996721 -0.0808151 uwb: 0.49945391 1246.48 1154.32 +imu_odom_: 1691062516.508135327 0.248997 -0.124498 9.8258 -0.052198 0.0276969 0.0447411 0.19 -0.02 pose: 0.25126827 -1.91937 -3.81886 0 0.00656782 -0.00141485 0.996705 -0.080833 uwb: 0.0 1246.48 1154.32 +imu_odom_: 1691062516.535154315 0.0550666 -0.476446 9.9934 -0.052198 0.0138484 0.0308927 0.19 -0.02 pose: 0.0 -1.91937 -3.81886 0 0.00656782 -0.00141485 0.996705 -0.080833 uwb: 0.50116293 1247.36 1154.87 +imu_odom_: 1691062516.560151654 0.656011 -0.500388 9.165 -0.0458064 -0.0266316 0.0458064 0.19 -0.02 pose: 0.27855703 -1.91937 -3.81886 0 0.00732049 -0.00106885 0.996703 -0.0807949 uwb: 0.0 1247.36 1154.87 +imu_odom_: 1691062516.587154602 0.507571 0.220267 10.1658 -0.0276969 -0.036219 0.0234358 0.22 -0.02 pose: 0.43000569 -1.93231 -3.81315 0 0.0044979 -0.00274134 0.996722 -0.0807355 uwb: 0.49861399 1247.73 1155.4 +imu_odom_: 1691062516.604296326 0.586579 -0.248997 9.46667 -0.0553937 0.0213053 0.0479369 0.19 -0.02 pose: 0.0 -1.93231 -3.81315 0 0.0044979 -0.00274134 0.996722 -0.0807355 uwb: 0.0 1247.73 1155.4 +imu_odom_: 1691062516.631263110 0.694318 -0.19393 9.82341 -0.0426106 -0.056459 0.0372843 0.19 -0.02 pose: 0.52006119 -1.94164 -3.81677 0 0.00667789 -0.0008609470.996724 -0.0805955 uwb: 0.50048049 1247.77 1157.24 +imu_odom_: 1691062516.647130659 0.486023 0.126893 9.73482 -0.0532632 0.0266316 0.0596548 0.27 -0.02 pose: 0.0 -1.94164 -3.81677 0 0.00667789 -0.0008609470.996724 -0.0805955 uwb: 0.0 1247.77 1157.24 +imu_odom_: 1691062516.674240639 0.373495 -0.107739 10.252 -0.04048 -0.00106526 0.0245011 0.27 -0.02 pose: 0.15989163 -1.94164 -3.81677 0 0.00827826 -0.0005946660.99671 -0.0806221 uwb: 0.0 1247.77 1157.24 +imu_odom_: 1691062516.690278214 0.203507 -0.351948 9.25359 -0.072438 0.0127832 0.0426106 0.25 -0.02 pose: 0.43159804 -1.95096 -3.82039 0 0.00904489 0.00207247 0.996697 -0.080679 uwb: 0.50125625 1247.85 1159.12 +imu_odom_: 1691062516.717123384 0.433351 -0.296881 9.991 -0.0447411 -0.0287621 0.0276969 0.25 -0.02 pose: 0.0 -1.95096 -3.82039 0 0.00904489 0.00207247 0.996697 -0.080679 uwb: 0.0 1247.85 1159.12 +imu_odom_: 1691062516.742122765 0.816423 -0.162806 10.4866 -0.0703074 -0.00532632 0.0511327 0.25 0 pose: 0.42800503 -1.96028 -3.824 0 0.00531798 0.00122029 0.996739 -0.0805123 uwb: 0.49820861 1247.27 1160.88 +imu_odom_: 1691062516.767291880 0.761356 0.0646434 10.1107 -0.0340885 0.00745685 0.0340885 0.21 0 pose: 0.0 -1.96028 -3.824 0 0.00531798 0.00122029 0.996739 -0.0805123 uwb: 0.0 1247.27 1160.88 +imu_odom_: 1691062516.781103368 0.462081 -0.177171 9.80426 -0.0532632 0.0276969 0.0617853 0.21 0 pose: 0.44999177 -1.96961 -3.82761 0 0.00689345 0.00018045 0.996728 -0.0805402 uwb: 0.50045716 1247.86 1161.58 +imu_odom_: 1691062516.806099832 0.246603 -0.107739 9.69652 -0.0383495 -0.00106526 0.0372843 0.21 0 pose: 0.0 -1.96961 -3.82761 0 0.00689345 0.00018045 0.996728 -0.0805402 uwb: 0.0 1247.86 1161.58 +imu_odom_: 1691062516.833089947 0.610521 -0.361524 10.0437 -0.0671117 -0.0223706 0.0607201 0.17 0.02 pose: 0.7006068 -1.96961 -3.82761 0 0.00722806 0.000840199 0.996727 -0.0805173 uwb: 0.49880064 1248.07 1162.02 +imu_odom_: 1691062516.849083193 0.632069 -0.380678 9.82341 -0.0340885 0.0383495 0.0340885 0.17 0.02 pose: 0.0 -1.96961 -3.82761 0 0.00722806 0.000840199 0.996727 -0.0805173 uwb: 0.0 1248.07 1162.02 +imu_odom_: 1691062516.876105098 0.272939 -0.201113 9.51935 -0.0777643 0.0319579 0.0671117 0.19 0 pose: 0.39151212 -1.98254 -3.8219 0 0.00577239 0.00262113 0.996726 -0.0805995 uwb: 0.0 1248.07 1162.02 +imu_odom_: 1691062516.901101270 0.442927 -0.071826 9.92875 -0.0543285 0.0138484 0.0426106 0.19 0 pose: 0.52884539 -1.99187 -3.82552 0 0.00615244 0.000179933 0.996707 -0.0808531 uwb: 0.50060006 1247.72 1164.27 +imu_odom_: 1691062516.926113192 0.402226 -0.351948 9.8689 -0.1012 0.0298274 0.0681769 0.19 0 pose: 0.0 -1.99187 -3.82552 0 0.00615244 0.000179933 0.996707 -0.0808531 uwb: 0.0 1247.72 1164.27 +imu_odom_: 1691062516.947114188 0.948104 0.035913 10.2687 -0.0660464 -0.0181095 0.04048 0.2 0 pose: 0.43003193 -1.99187 -3.82552 0 0.00304939 0.000177334 0.996692 -0.0812154 uwb: 0.49859357 1247.38 1166.23 +imu_odom_: 1691062516.961098909 0.435745 -0.35913 9.18895 -0.092678 0.0287621 0.0511327 0.2 0 pose: 0.0 -1.99187 -3.82552 0 0.00304939 0.000177334 0.996692 -0.0812154 uwb: 0.0 1247.38 1166.23 +imu_odom_: 1691062516.986106164 -0.143652 -0.332794 9.40442 -0.0436758 0.0383495 0.0308927 0.17 0 pose: 0.47943575 -2.00119 -3.82914 0 0.00213226 -0.0009258820.996663 -0.0815981 uwb: 0.49998762 1247.93 1167.23 +imu_odom_: 1691062517.11154834 0.189142 -0.232238 10.2592 -0.0639159 -0.036219 0.0543285 0.17 0 pose: 0.0 -2.00119 -3.82914 0 0.00213226 -0.0009258820.996663 -0.0815981 uwb: 0.0 1247.93 1167.23 +imu_odom_: 1691062517.32069803 0.818817 -0.143652 9.77553 -0.0500674 0.0596548 0.0276969 0.18 0 pose: 0.79043482 -2.02021 -3.82852 0 -0.00198488 -0.00221399 0.996646 -0.0817741 uwb: 0.50037265 1248.47 1167.91 +imu_odom_: 1691062517.46131521 0.529119 -0.0790087 9.80904 -0.0628506 0.0181095 0.0511327 0.18 0 pose: 0.6018577 -2.02346 -3.82709 0 -0.00160615 -0.00202519 0.996651 -0.0817372 uwb: 0.0 1248.47 1167.91 +imu_odom_: 1691062517.71094453 0.253785 -0.311246 9.62469 -0.0628506 0.0287621 0.0436758 0.17 0 pose: 0.0 -2.02346 -3.82709 0 -0.00160615 -0.00202519 0.996651 -0.0817372 uwb: 0.0 1248.47 1167.91 +imu_odom_: 1691062517.88365671 0.531513 -0.184354 10.1011 -0.0426106 -0.0287621 0.0436758 0.17 0 pose: 0.35903518 -2.03277 -3.83073 0 -0.000674843-0.00091895 0.996653 -0.0817406 uwb: 0.49962029 1248.72 1168.71 +imu_odom_: 1691062517.104097611 0.512359 -0.129287 10.1466 -0.0692422 -0.02024 0.0532632 0.17 0 pose: 0.0 -2.03277 -3.83073 0 -0.000674843-0.00091895 0.996653 -0.0817406 uwb: 0.0 1248.72 1168.71 +imu_odom_: 1691062517.130217189 0.751779 -0.248997 9.97424 -0.0458064 -0.0170442 0.04048 0.23 0 pose: 0.51020682 -2.03766 -3.83263 0 0.0005626 -0.0001618720.996639 -0.0819189 uwb: 0.49978068 1249.48 1169.23 +imu_odom_: 1691062517.156227692 0.280122 -0.201113 10.1347 -0.0490022 -0.00639159 0.0468716 0.23 0 pose: 0.7140516 -2.04209 -3.83436 0 0.00132056 -0.0001293740.996638 -0.0819219 uwb: 0.0 1249.48 1169.23 +imu_odom_: 1691062517.181188583 -0.11971 -0.311246 9.85693 -0.0543285 -0.00319579 0.0575243 0.21 -0.02 pose: 0.44989565 -2.0488 -3.83699 0 0.000754622 9.94443e-05 0.99663 -0.082025 uwb: 0.50193300 1248.95 1171.1 +imu_odom_: 1691062517.204066873 -0.0646434 -0.37589 9.85453 -0.04048 0.0213053 0.0394148 0.18 0 pose: 0.0 -2.0488 -3.83699 0 0.000754622 9.94443e-05 0.99663 -0.082025 uwb: 0.0 1248.95 1171.1 +imu_odom_: 1691062517.220057790 0.675165 0.162806 10.8002 -0.036219 -0.0468716 0.0383495 0.18 0 pose: 0.30911224 -2.0514 -3.838 0 -0.00229664 -0.0007403150.996609 -0.0822475 uwb: 0.0 1248.95 1171.1 +imu_odom_: 1691062517.238118768 0.56982 -0.3304 9.61511 -0.052198 -0.00852212 0.0447411 0.18 0 pose: 0.0 -2.0514 -3.838 0 -0.00229664 -0.0007403150.996609 -0.0822475 uwb: 0.49828165 1249.09 1172.8 +imu_odom_: 1691062517.263067411 0.339977 -0.136469 9.42118 -0.0308927 -0.0191748 0.0340885 0.18 -0.02 pose: 0.50979852 -2.06071 -3.84165 0 -0.00108816 -0.0005936670.996608 -0.0822839 uwb: 0.0 1249.09 1172.8 +imu_odom_: 1691062517.288060966 0.509965 -0.0622492 9.95988 -0.072438 -0.0681769 0.0596548 0.18 -0.02 pose: 0.7977232 -2.06071 -3.84165 0 -0.00144062 0.000196878 0.99661 -0.0822629 uwb: 0.50030273 1248.47 1174.96 +imu_odom_: 1691062517.302061148 0.88346 -0.344765 9.48822 -0.0532632 -0.0149137 0.04048 0.18 0 pose: 0.0 -2.06071 -3.84165 0 -0.00144062 0.000196878 0.99661 -0.0822629 uwb: 0.0 1248.47 1174.96 +imu_odom_: 1691062517.327113905 0.497994 -0.260968 9.87129 -0.0596548 -0.00852212 0.0543285 0.18 0 pose: 0.48006581 -2.07367 -3.83598 0 0.00108807 0.00323222 0.996587 -0.0824786 uwb: 0.0 1248.47 1174.96 +imu_odom_: 1691062517.352066922 0.751779 -0.114922 10.3382 -0.0511327 -0.02024 0.0394148 0.23 0 pose: 0.33011324 -2.08036 -3.83861 0 0.00328984 0.000835573 0.996571 -0.0826765 uwb: 0.50018315 1248.49 1175.95 +imu_odom_: 1691062517.366052231 0.605733 -0.196325 9.96706 -0.0713727 -0.0298274 0.0649811 0.23 0 pose: 0.7021235 -2.08298 -3.83963 0 0.00399561 0.00112102 0.996568 -0.0826754 uwb: 0.0 1248.49 1175.95 +imu_odom_: 1691062517.391059784 0.933739 -0.325611 9.55765 -0.0394148 0.0617853 0.0276969 0.17 0 pose: 0.0 -2.08298 -3.83963 0 0.00399561 0.00112102 0.996568 -0.0826754 uwb: 0.49971653 1247.89 1177.8 +imu_odom_: 1691062517.416062963 0.545878 -0.181959 9.83777 -0.052198 0.0170442 0.0660464 0.17 0 pose: 0.38988196 -2.08298 -3.83963 0 0.00783561 0.00159434 0.996533 -0.0828113 uwb: 0.0 1247.89 1177.8 +imu_odom_: 1691062517.439066366 0.383072 0 10.3382 -0.0191748 -0.036219 0.0308927 0.18 -0.02 pose: 0.0 -2.08298 -3.83963 0 0.00783561 0.00159434 0.996533 -0.0828113 uwb: 0.50118931 1248.53 1177.6 +imu_odom_: 1691062517.464052921 0.624887 -0.143652 10.1586 -0.072438 -0.0394148 0.0703074 0.18 -0.02 pose: 0.48936330 -2.09229 -3.84329 0 0.00618141 0.00303745 0.996526 -0.0830009 uwb: 0.0 1248.53 1177.6 +imu_odom_: 1691062517.481052038 0.814029 -0.435745 9.4164 -0.0532632 -0.0149137 0.0351537 0.23 -0.02 pose: 0.0 -2.09229 -3.84329 0 0.00618141 0.00303745 0.996526 -0.0830009 uwb: 0.49941030 1249.03 1177.96 +imu_odom_: 1691062517.498041531 0.88346 0.148441 9.44752 -0.0671117 -0.0415453 0.0575243 0.23 -0.02 pose: 0.49060569 -2.10159 -3.84695 0 0.00869006 0.00383127 0.996479 -0.0832979 uwb: 0.0 1249.03 1177.96 +imu_odom_: 1691062517.513031248 1.69988 -0.318429 9.97903 -0.0809601 -0.0948085 0.0458064 0.23 -0.02 pose: 0.0 -2.10159 -3.84695 0 0.00869006 0.00383127 0.996479 -0.0832979 uwb: 0.0 1249.03 1177.96 +imu_odom_: 1691062517.529097408 1.29766 -0.342371 9.35654 -0.0553937 -0.0298274 -0.0830906 0.15 -0.17 pose: 0.33986569 -2.1109 -3.85061 0 0.0118689 0.00429753 0.996432 -0.0834461 uwb: 0.50064103 1249.35 1178.52 +imu_odom_: 1691062517.546092151 1.70467 0.114922 10.3406 -0.072438 -0.0415453 -0.166181 0.15 -0.17 pose: 0.0 -2.1109 -3.85061 0 0.0118689 0.00429753 0.996432 -0.0834461 uwb: 0.0 1249.35 1178.52 +imu_odom_: 1691062517.562101441 1.55623 0.169988 9.88326 -0.0713727 -0.0127832 -0.241815 0.12 -0.41 pose: 0.40985347 -2.1197 -3.84337 0 0.0167184 0.00438129 0.996585 -0.0807469 uwb: 0.0 1249.35 1178.52 +imu_odom_: 1691062517.580033223 1.32878 0.0407014 9.81383 -0.0607201 0.0692422 -0.367516 0.12 -0.41 pose: 0.0 -2.1197 -3.84337 0 0.0167184 0.00438129 0.996585 -0.0807469 uwb: 0.49817375 1248.75 1180.73 +imu_odom_: 1691062517.597087752 0.550666 0.124498 9.69412 -0.0596548 0.015979 -0.425041 0.12 -0.41 pose: 0.0 -2.1197 -3.84337 0 0.0167184 0.00438129 0.996585 -0.0807469 uwb: 0.0 1248.75 1180.73 +imu_odom_: 1691062517.611026981 0.52433 -0.225055 9.62708 -0.0884169 0.052198 -0.448476 0.1 -0.44 pose: 0.8004353 -2.12384 -3.84505 0 0.0174707 0.00469377 0.996661 -0.0796195 uwb: 0.0 1248.75 1180.73 +imu_odom_: 1691062517.627085267 0.694318 -0.289698 10.1251 -0.0681769 -0.00745685 -0.46339 0.08 -0.47 pose: 0.0 -2.12384 -3.84505 0 0.0174707 0.00469377 0.996661 -0.0796195 uwb: 0.0 1248.75 1180.73 +imu_odom_: 1691062517.642084900 0.397437 -0.397437 9.65582 -0.0745685 0.00319579 -0.475108 0.08 -0.47 pose: 0.0 -2.12384 -3.84505 0 0.0174707 0.00469377 0.996661 -0.0796195 uwb: 0.50172301 1249.66 1180.72 +imu_odom_: 1691062517.658076983 0.821211 -0.21069 9.73482 -0.0543285 -0.00426106 -0.470847 0.08 -0.47 pose: 0.63998083 -2.12384 -3.84505 0 0.0160921 0.00524696 0.997695 -0.0657189 uwb: 0.0 1249.66 1180.72 +imu_odom_: 1691062517.673078657 0.557849 -0.129287 9.663 -0.0692422 -0.00213053 -0.487891 0.07 -0.47 pose: 0.0 -2.12384 -3.84505 0 0.0160921 0.00524696 0.997695 -0.0657189 uwb: 0.0 1249.66 1180.72 +imu_odom_: 1691062517.689020871 0.699107 -0.0502782 9.88087 -0.0596548 -0.0138484 -0.514523 0.07 -0.47 pose: 0.30933971 -2.12384 -3.84505 0 0.0154343 0.00311453 0.9982 -0.0578692 uwb: 0.50049229 1249.86 1181.2 +imu_odom_: 1691062517.704329350 0.80924 -0.110133 9.8665 -0.0671117 -0.0255663 -0.515588 0.07 -0.53 pose: 0.0 -2.12384 -3.84505 0 0.0154343 0.00311453 0.9982 -0.0578692 uwb: 0.0 1249.86 1181.2 +imu_odom_: 1691062517.720046126 0.672771 -0.0885855 9.98382 -0.0500674 0.00532632 -0.531567 0.07 -0.53 pose: 0.47057877 -2.13311 -3.8488 0 0.0156026 0.00502966 0.998843 -0.0452134 uwb: 0.0 1249.86 1181.2 +imu_odom_: 1691062517.737228976 0.723049 -0.155623 9.92875 -0.0543285 -0.0106526 -0.548611 0.07 -0.53 pose: 0.0 -2.13311 -3.8488 0 0.0156026 0.00502966 0.998843 -0.0452134 uwb: 0.49852663 1250.43 1181.62 +imu_odom_: 1691062517.755289663 0.746991 -0.0670376 9.78031 -0.0607201 0.00639159 -0.525175 0.05 -0.47 pose: 0.41142541 -2.13309 -3.84876 0 0.0157603 0.00463649 0.999307 -0.033403 uwb: 0.0 1250.43 1181.62 +imu_odom_: 1691062517.772353232 0.682347 -0.368707 9.98143 -0.0575243 -0.0298274 -0.486826 0.05 -0.47 pose: 0.0 -2.13309 -3.84876 0 0.0157603 0.00463649 0.999307 -0.033403 uwb: 0.0 1250.43 1181.62 +imu_odom_: 1691062517.786344373 0.816423 -0.40462 9.63427 -0.0745685 -0.0234358 -0.451672 0.05 -0.47 pose: 0.0 -2.13309 -3.84876 0 0.0157603 0.00463649 0.999307 -0.033403 uwb: 0.0 1250.43 1181.62 +imu_odom_: 1691062517.803132051 0.670376 -0.217872 9.91439 -0.0575243 -0.00426106 -0.4048 0.04 -0.38 pose: 0.8122759 -2.13311 -3.8488 0 0.0160648 0.005379 0.999373 -0.0311007 uwb: 0.0 1250.43 1181.62 +imu_odom_: 1691062517.820092672 0.509965 -0.169988 9.83299 -0.0639159 -0.00852212 -0.34195 0.04 -0.38 pose: 0.0 -2.13311 -3.8488 0 0.0160648 0.005379 0.999373 -0.0311007 uwb: 0.0 1250.43 1181.62 +imu_odom_: 1691062517.837097913 0.440533 -0.217872 9.87129 -0.0543285 -0.00958738 -0.325971 0.04 -0.38 pose: 0.64794260 -2.13311 -3.8488 0 0.0150828 0.00218428 0.999766 -0.0153518 uwb: 0.99992301 1250.77 1182.19 +imu_odom_: 1691062517.854008371 0.548272 -0.253785 9.87608 -0.0585895 -0.0181095 -0.3036 0.04 -0.32 pose: 0.0 -2.13311 -3.8488 0 0.0150828 0.00218428 0.999766 -0.0153518 uwb: 0.0 1250.77 1182.19 +imu_odom_: 1691062517.871004864 0.620098 -0.258574 9.84017 -0.0617853 -0.0117179 -0.267381 0.04 -0.32 pose: 0.0 -2.13311 -3.8488 0 0.0150828 0.00218428 0.999766 -0.0153518 uwb: 0.0 1250.77 1182.19 +imu_odom_: 1691062517.889123879 0.593762 -0.361524 9.70131 -0.0543285 -0.00639159 -0.233293 0.04 -0.32 pose: 0.33951572 -2.14239 -3.85253 0 0.0119668 0.00150393 0.999885 -0.00914828 uwb: 0.49936656 1250.44 1183.29 +imu_odom_: 1691062517.905013305 0.560243 -0.23942 10.1586 -0.0553937 -0.015979 -0.213053 0.03 -0.29 pose: 0.45026312 -2.14237 -3.8525 0 0.0109508 -0.00256189 0.999934 -0.00241215 uwb: 0.0 1250.44 1183.29 +imu_odom_: 1691062517.921987633 0.730232 -0.203507 9.74679 -0.0596548 -0.0276969 -0.175769 0.03 -0.29 pose: 0.6995570 -2.14239 -3.85253 0 0.0103512 -0.00227541 0.999943 -0.00152726 uwb: 0.0 1250.44 1183.29 +imu_odom_: 1691062517.939997282 0.632069 -0.248997 10.0628 -0.0543285 -0.00532632 -0.148072 0.03 -0.23 pose: 0.0 -2.14239 -3.85253 0 0.0103512 -0.00227541 0.999943 -0.00152726 uwb: 0.49935490 1250.32 1183.88 +imu_odom_: 1691062517.957003107 0.526724 -0.292093 9.79707 -0.0543285 -0.00532632 -0.134223 0.02 -0.2 pose: 0.43877833 -2.14239 -3.85253 0 0.0119225 -0.00308569 0.999919 0.00310407 uwb: 0.0 1250.32 1183.88 +imu_odom_: 1691062517.971005039 0.675165 -0.208296 9.97903 -0.0532632 -0.00319579 -0.126766 0.03 -0.17 pose: 0.0 -2.14239 -3.85253 0 0.0119225 -0.00308569 0.999919 0.00310407 uwb: 0.0 1250.32 1183.88 +imu_odom_: 1691062517.988012322 0.536301 -0.19393 9.90002 -0.0585895 -0.00852212 -0.116114 0.03 -0.17 pose: 0.0 -2.14239 -3.85253 0 0.0119225 -0.00308569 0.999919 0.00310407 uwb: 0.50046312 1250.98 1184.03 +imu_odom_: 1691062518.3997406 0.653617 -0.153229 9.99819 -0.056459 -0.0213053 -0.108657 0.03 -0.17 pose: 0.23004861 -2.14239 -3.85253 0 0.0106765 -0.00290257 0.999926 0.00507786 uwb: 0.0 1250.98 1184.03 +imu_odom_: 1691062518.29997126 0.768539 -0.287304 9.96946 -0.0607201 -0.0106526 -0.0745685 0.02 -0.14 pose: 0.0 -2.14239 -3.85253 0 0.0106765 -0.00290257 0.999926 0.00507786 uwb: 0.49960286 1250.85 1185.28 +imu_odom_: 1691062518.46996540 0.213084 -0.371101 9.74919 -0.0660464 0.0436758 -0.0916127 0.02 -0.14 pose: 0.32061453 -2.14239 -3.85253 0 0.0103571 -0.0007100740.999917 0.00761254 uwb: 0.0 1250.85 1185.28 +imu_odom_: 1691062518.64046407 -0.54109 -0.215478 10.2999 -0.0308927 0.0990696 -0.203466 0.02 -0.14 pose: 0.41934061 -2.14239 -3.85253 0 0.0124788 -0.00142433 0.999869 0.0102103 uwb: 0.0 1250.85 1185.28 +imu_odom_: 1691062518.79990374 -1.53468 0.399832 9.78989 -0.0436758 0.0308927 -0.197074 0.02 -0.14 pose: 0.0 -2.14239 -3.85253 0 0.0124788 -0.00142433 0.999869 0.0102103 uwb: 0.50105820 1250.93 1186.36 +imu_odom_: 1691062518.98103853 -1.18513 -0.500388 9.6223 -0.0713727 -0.0660464 -0.0894822 0.09 -0.14 pose: 0.42992717 -2.14422 -3.84791 0 0.00690209 -0.00084395 0.999866 0.0148194 uwb: 0.0 1250.93 1186.36 +imu_odom_: 1691062518.115256669 0.37589 -0.562637 10.1347 -0.0596548 -0.110787 -0.0820254 0.09 -0.14 pose: 0.0 -2.14422 -3.84791 0 0.00690209 -0.00084395 0.999866 0.0148194 uwb: 0.0 1250.93 1186.36 +imu_odom_: 1691062518.131987190 0.565032 -0.148441 9.29908 -0.0500674 -0.0319579 -0.0649811 0.09 -0.14 pose: 0.0 -2.14422 -3.84791 0 0.00690209 -0.00084395 0.999866 0.0148194 uwb: 0.50024162 1251.11 1187.17 +imu_odom_: 1691062518.149039390 0.201113 -0.141258 9.81144 -0.056459 0.0490022 -0.0394148 0.09 -0.11 pose: 0.8058018 -2.14608 -3.84324 0 0.00635191 -0.00102254 0.999862 0.0153381 uwb: 0.0 1251.11 1187.17 +imu_odom_: 1691062518.165979017 -0.0885855 0.0407014 10.2663 -0.0426106 0.0308927 -0.0905475 0.1 -0.08 pose: 0.0 -2.14608 -3.84324 0 0.00635191 -0.00102254 0.999862 0.0153381 uwb: 0.0 1251.11 1187.17 +imu_odom_: 1691062518.181032607 -0.0454898 -0.114922 9.66779 -0.0340885 -0.0426106 -0.1012 0.1 -0.08 pose: 0.68940233 -2.15538 -3.84693 0 0.00388516 -0.0003924340.99981 0.0190958 uwb: 0.49832845 1251.36 1187.7 +imu_odom_: 1691062518.197973692 0.459687 -0.292093 9.88566 -0.056459 -0.0340885 -0.0490022 0.1 -0.08 pose: 0.0 -2.15538 -3.84693 0 0.00388516 -0.0003924340.99981 0.0190958 uwb: 0.0 1251.36 1187.7 +imu_odom_: 1691062518.212033372 0.268151 -0.56982 9.96467 -0.04048 -0.0298274 -0.0468716 0.1 -0.05 pose: 0.0 -2.15538 -3.84693 0 0.00388516 -0.0003924340.99981 0.0190958 uwb: 0.0 1251.36 1187.7 +imu_odom_: 1691062518.227973840 0.110133 -0.131681 10.0916 -0.0543285 -0.0372843 -0.0426106 0.1 -0.05 pose: 0.31073384 -2.15538 -3.84693 0 0.00200315 -0.0001570140.999776 0.0210518 uwb: 0.0 1251.36 1187.7 +imu_odom_: 1691062518.244968295 0.122104 -0.114922 10.1227 -0.0426106 -0.0383495 -0.036219 0.12 -0.08 pose: 0.39911831 -2.16468 -3.8506 0 0.000648259 -0.00163935 0.99974 0.0227446 uwb: 0.50125069 1251.5 1188.15 +imu_odom_: 1691062518.262970367 0.778116 -0.409408 9.9096 -0.0553937 -0.056459 -0.0436758 0.12 -0.08 pose: 0.0 -2.16468 -3.8506 0 0.000648259 -0.00163935 0.99974 0.0227446 uwb: 0.0 1251.5 1188.15 +imu_odom_: 1691062518.279968906 0.727837 -0.0574608 9.70609 -0.0490022 -0.0181095 -0.056459 0.12 -0.08 pose: 0.0 -2.16468 -3.8506 0 0.000648259 -0.00163935 0.99974 0.0227446 uwb: 0.50102030 1251.74 1187.99 +imu_odom_: 1691062518.296964527 0.409408 -0.0383072 9.84496 -0.0617853 -0.00106526 -0.0298274 0.13 -0.02 pose: 0.7001697 -2.16468 -3.8506 0 0.000136284 -0.00129593 0.999734 0.0230089 uwb: 0.0 1251.74 1187.99 +imu_odom_: 1691062518.314017894 0.976834 -0.167594 9.91199 -0.0479369 -0.0756338 -0.0234358 0.13 -0.08 pose: 0.0 -2.16468 -3.8506 0 0.000136284 -0.00129593 0.999734 0.0230089 uwb: 0.0 1251.74 1187.99 +imu_odom_: 1691062518.331972137 1.37188 -0.141258 9.67976 -0.0596548 -0.0127832 -0.00639159 0.13 -0.08 pose: 0.68995645 -2.17766 -3.845 0 0.00356878 0.000950174 0.999661 0.0257707 uwb: 0.50091530 1252.45 1187.83 +imu_odom_: 1691062518.346072647 1.24738 -0.213084 10.161 -0.0607201 0.0319579 0.036219 0.13 -0.08 pose: 0.0 -2.17766 -3.845 0 0.00356878 0.000950174 0.999661 0.0257707 uwb: 0.0 1252.45 1187.83 +imu_odom_: 1691062518.362949280 1.5682 -0.47884 10.2783 -0.0543285 -0.0458064 0.0777643 0.1 -0.11 pose: 0.0 -2.17766 -3.845 0 0.00356878 0.000950174 0.999661 0.0257707 uwb: 0.0 1252.45 1187.83 +imu_odom_: 1691062518.380084889 1.43413 -0.100556 9.50019 -0.0383495 -0.0181095 0.0319579 0.1 -0.11 pose: 0.34117233 -2.17766 -3.845 0 0.00730438 0.000978608 0.999621 0.0265067 uwb: 0.49737771 1252.08 1189.26 +imu_odom_: 1691062518.397957181 1.10852 0.100556 9.82341 -0.0511327 0.0266316 -0.00639159 0.1 -0.08 pose: 0.41996474 -2.17764 -3.84496 0 0.0117482 0.000708039 0.999586 0.0262554 uwb: 0.0 1252.08 1189.26 +imu_odom_: 1691062518.414956594 0.608127 -0.169988 9.70609 -0.0660464 0.0223706 -0.0287621 0.1 -0.08 pose: 0.0 -2.17764 -3.84496 0 0.0117482 0.000708039 0.999586 0.0262554 uwb: 0.0 1252.08 1189.26 +imu_odom_: 1691062518.429001401 0.746991 -0.265756 10.1778 -0.0617853 -0.0276969 -0.0532632 0.1 -0.08 pose: 0.0 -2.17764 -3.84496 0 0.0117482 0.000708039 0.999586 0.0262554 uwb: 0.49994997 1252.88 1188.83 +imu_odom_: 1691062518.445940153 0.68953 -0.277727 9.63906 -0.0532632 -0.00532632 -0.0713727 0.06 -0.02 pose: 0.7897616 -2.17766 -3.845 0 0.0123099 0.00112838 0.999574 0.0264405 uwb: 0.0 1252.88 1188.83 +imu_odom_: 1691062518.462942483 0.847547 -0.0837971 9.91678 -0.0639159 0.00426106 -0.0308927 0.06 0 pose: 0.0 -2.17766 -3.845 0 0.0123099 0.00112838 0.999574 0.0264405 uwb: 0.0 1252.88 1188.83 +imu_odom_: 1691062518.479976018 0.483629 -0.368707 9.87848 -0.052198 0.0170442 -0.0330232 0.06 0 pose: 0.64968678 -2.18692 -3.84876 0 0.0137367 -0.0001593080.999483 0.0290752 uwb: 0.49980416 1253.29 1189.14 +imu_odom_: 1691062518.496943351 0.682347 -0.148441 9.97424 -0.0532632 -0.0106526 -0.0372843 0.05 -0.05 pose: 0.0 -2.18692 -3.84876 0 0.0137367 -0.0001593080.999483 0.0290752 uwb: 0.0 1253.29 1189.14 +imu_odom_: 1691062518.514096750 0.78051 -0.222661 9.72525 -0.052198 -0.00745685 -0.0127832 0.05 -0.05 pose: 0.0 -2.18692 -3.84876 0 0.0137367 -0.0001593080.999483 0.0290752 uwb: 0.0 1253.29 1189.14 +imu_odom_: 1691062518.539963482 0.543484 -0.378284 10.0245 -0.0553937 -0.0117179 0.0255663 0.04 0 pose: 0.61145567 -2.18692 -3.84876 0 0.0152717 0.00046724 0.999398 0.0311496 uwb: 0.50012787 1253.35 1189.53 +imu_odom_: 1691062518.564938670 -0.387861 -0.0646434 9.59596 -0.056459 0.0894822 0.0351537 0.04 0 pose: 0.7904031 -2.18692 -3.84876 0 0.0147585 -0.0001072790.999404 0.0311967 uwb: 0.0 1253.35 1189.53 +imu_odom_: 1691062518.581954999 -1.07739 -0.184354 10.2855 -0.0585895 0.0649811 0.0191748 0.06 0.02 pose: 0.0 -2.18692 -3.84876 0 0.0147585 -0.0001072790.999404 0.0311967 uwb: 0.49932003 1252.8 1190.15 +imu_odom_: 1691062518.598935455 -1.07739 -0.220267 9.87608 -0.0511327 -0.0596548 0 0.06 0.02 pose: 0.42937889 -2.18692 -3.84876 0 0.00996748 -0.0009150960.999458 0.0313647 uwb: 0.0 1252.8 1190.15 +imu_odom_: 1691062518.623925517 0.622492 -0.280122 10.5584 -0.0649811 -0.0660464 0.0383495 0.08 -0.02 pose: 0.0 -2.18692 -3.84876 0 0.00996748 -0.0009150960.999458 0.0313647 uwb: 0.0 1252.8 1190.15 +imu_odom_: 1691062518.642063494 0.636858 -0.296881 10.0556 -0.0585895 0.0191748 0.0149137 0.08 -0.02 pose: 0.41062643 -2.19623 -3.85242 0 0.00725212 -0.00118528 0.999465 0.0318756 uwb: 0.49991498 1254.39 1188.58 +imu_odom_: 1691062518.665049988 -0.191536 -0.201113 9.73722 -0.0649811 -0.00213053 0.0213053 0.08 -0.02 pose: 0.0 -2.19623 -3.85242 0 0.00725212 -0.00118528 0.999465 0.0318756 uwb: 0.0 1254.39 1188.58 +imu_odom_: 1691062518.690101586 0.402226 -0.31364 10.0892 -0.0394148 -0.0191748 0 0.1 0 pose: 0.42940222 -2.19989 -3.84311 0 0.00969518 -0.00351623 0.99943 0.032158 uwb: 0.0 1254.39 1188.58 +imu_odom_: 1691062518.712959175 0.464475 0.124498 9.89284 -0.0617853 -0.0468716 0.0372843 0.11 0 pose: 0.41160051 -2.19989 -3.84311 0 0.00580829 -0.00365814 0.999439 0.0327845 uwb: 0.0 1254.39 1188.58 +imu_odom_: 1691062518.738920398 0.174777 -0.294487 10.1179 -0.0703074 0.00532632 0.00426106 0.11 0 pose: 0.0 -2.19989 -3.84311 0 0.00580829 -0.00365814 0.999439 0.0327845 uwb: 0.0 1254.39 1188.58 +imu_odom_: 1691062518.755952183 -0.0622492 0.0215478 10.082 -0.056459 -0.00426106 0.015979 0.15 -0.02 pose: 0.6945410 -2.19989 -3.84311 0 0.00588594 -0.00299385 0.99944 0.032796 uwb: 0.0 1254.39 1188.58 +imu_odom_: 1691062518.780934079 -0.117316 -0.181959 10.0245 -0.0617853 0.00532632 0.036219 0.15 -0.02 pose: 0.0 -2.19989 -3.84311 0 0.00588594 -0.00299385 0.99944 0.032796 uwb: 0.150067235 1254.34 1189.23 +imu_odom_: 1691062518.797984821 0.0047884 -0.402226 9.46428 -0.0660464 0.00745685 0.0266316 0.17 -0.02 pose: 0.48896972 -2.2092 -3.84675 0 0.00273883 -0.00163561 0.999438 0.0333591 uwb: 0.0 1254.34 1189.23 +imu_odom_: 1691062518.821976599 0.890643 -0.110133 10.2424 -0.0543285 -0.0426106 0.0255663 0.17 -0.02 pose: 0.0 -2.2092 -3.84675 0 0.00273883 -0.00163561 0.999438 0.0333591 uwb: 0.0 1254.34 1189.23 +imu_odom_: 1691062518.847914783 -0.124498 -0.1652 10.0844 -0.072438 -0.0170442 0.0553937 0.15 -0.02 pose: 0.42111089 -2.21852 -3.85038 0 -0.00144392 -0.00120791 0.999435 0.0335629 uwb: 0.49972833 1254.07 1190.07 +imu_odom_: 1691062518.871910352 0.373495 -0.208296 9.93833 -0.052198 0.0213053 0.02024 0.15 -0.02 pose: 0.0 -2.21852 -3.85038 0 -0.00144392 -0.00120791 0.999435 0.0335629 uwb: 0.0 1254.07 1190.07 +imu_odom_: 1691062518.896922578 0.696713 -0.179565 9.56962 -0.0735032 0.00106526 0.0372843 0.17 0 pose: 0.41873111 -2.22215 -3.84107 0 -0.00035859 -0.00104627 0.99943 0.0337328 uwb: 0.49943085 1253.67 1191.15 +imu_odom_: 1691062518.910978176 0.912191 -0.366313 10.0604 -0.0649811 0.0245011 0.0319579 0.17 0 pose: 0.0 -2.22215 -3.84107 0 -0.00035859 -0.00104627 0.99943 0.0337328 uwb: 0.0 1253.67 1191.15 +imu_odom_: 1691062518.934906959 0.253785 -0.234632 9.55287 -0.0447411 -0.02024 0.00745685 0.14 0 pose: 0.49995581 -2.23143 -3.84478 0 -0.0006336110.00128948 0.999427 0.0338253 uwb: 0.50118362 1245.93 1201.31 +imu_odom_: 1691062518.961027127 0.545878 -0.505177 9.95748 -0.076699 -0.0745685 0.0447411 0.14 0 pose: 0.0 -2.23143 -3.84478 0 -0.0006336110.00128948 0.999427 0.0338253 uwb: 0.0 1245.93 1201.31 +imu_odom_: 1691062518.985913948 1.06303 -0.0526724 10.0963 -0.0553937 -0.0308927 0.0170442 0.16 0 pose: 0.39054116 -2.23143 -3.84478 0 0.00139385 0.000489921 0.99942 0.0340222 uwb: 0.49870175 1245.7 1202.22 +imu_odom_: 1691062519.11905505 0.754174 -0.368707 10.1873 -0.052198 0.00106526 0.0351537 0.16 0 pose: 0.0 -2.23143 -3.84478 0 0.00139385 0.000489921 0.99942 0.0340222 uwb: 0.0 1245.7 1202.22 +imu_odom_: 1691062519.25902778 0.107739 -0.172383 10.2687 -0.0681769 0.00426106 0.0298274 0.18 0 pose: 0.49941628 -2.24443 -3.83921 0 0.00277475 -0.00212144 0.999405 0.0343016 uwb: 0.0 1245.7 1202.22 +imu_odom_: 1691062519.42888780 0.169988 -0.134075 10.003 -0.0447411 0.0308927 0.0319579 0.18 0 pose: 0.0 -2.24443 -3.83921 0 0.00277475 -0.00212144 0.999405 0.0343016 uwb: 0.0 1245.7 1202.22 +imu_odom_: 1691062519.64021323 0.826 -0.35913 10.0652 -0.072438 -0.0117179 0.0351537 0.16 0 pose: 0.49057961 -2.25372 -3.84291 0 0.00625127 -0.00270356 0.999379 0.0345814 uwb: 0.0 1245.7 1202.22 +imu_odom_: 1691062519.87893826 0.265756 -0.497994 9.58878 -0.0617853 0.0255663 0.0138484 0.16 0 pose: 0.0 -2.25372 -3.84291 0 0.00625127 -0.00270356 0.999379 0.0345814 uwb: 0.100196788 1246.1 1202.18 +imu_odom_: 1691062519.104949239 0.234632 -0.253785 9.99819 -0.0479369 0 0.0319579 0.17 0 pose: 0.69916372 -2.26551 -3.84034 0 0.00350649 -0.00435663 0.999371 0.0350272 uwb: 0.0 1246.1 1202.18 +imu_odom_: 1691062519.129889729 0.19393 -0.289698 10.1778 -0.0276969 0.02024 0.0234358 0.17 0 pose: 0.8090101 -2.26671 -3.83732 0 0.0027006 -0.00415123 0.999373 0.0350553 uwb: 0.49942807 1246.19 1202.62 +imu_odom_: 1691062519.146886230 0.438139 -0.0814029 9.991 -0.04048 0.00106526 0.0468716 0.17 0 pose: 0.0 -2.26671 -3.83732 0 0.0027006 -0.00415123 0.999373 0.0350553 uwb: 0.0 1246.19 1202.62 +imu_odom_: 1691062519.170904262 0.447716 -0.162806 9.72764 -0.052198 0.0234358 0.0383495 0.17 0 pose: 0.41937574 -2.276 -3.84102 0 -0.000768415-0.00262325 0.999375 0.0352496 uwb: 0.0 1246.19 1202.62 +imu_odom_: 1691062519.193925176 0.577003 -0.009576819.95988 -0.0383495 -0.00745685 0.0340885 0.18 0 pose: 0.32982761 -2.276 -3.84102 0 0.00049038 0.000336994 0.999379 0.0352338 uwb: 0.49855607 1246.52 1202.89 +imu_odom_: 1691062519.211946501 0.0742203 -0.28491 9.84256 -0.0479369 -0.0436758 0.0458064 0.18 0 pose: 0.7996775 -2.276 -3.84102 0 0.0010379 0.00100154 0.999377 0.0352558 uwb: 0.0 1246.52 1202.89 +imu_odom_: 1691062519.236046775 0.265756 0.0670376 9.90481 -0.0319579 -0.0213053 0.0276969 0.17 0 pose: 0.0 -2.276 -3.84102 0 0.0010379 0.00100154 0.999377 0.0352558 uwb: 0.50112542 1246.5 1203.61 +imu_odom_: 1691062519.259887198 0.591368 -0.414197 9.79707 -0.072438 0.0127832 0.0553937 0.17 0 pose: 0.33045464 -2.28733 -3.83957 0 0.000686672 0.00182535 0.999377 0.0352447 uwb: 0.0 1246.5 1203.61 +imu_odom_: 1691062519.284878725 0.773327 -0.11971 9.70609 -0.0490022 0.0106526 0.0308927 0.23 0 pose: 0.47940697 -2.29544 -3.83797 0 0.000809258 0.00200566 0.999378 0.0351974 uwb: 0.49868731 1246.56 1204.03 +imu_odom_: 1691062519.298869873 0.993594 -0.153229 9.82341 -0.0639159 0.0127832 0.0458064 0.23 0 pose: 0.0 -2.29544 -3.83797 0 0.000809258 0.00200566 0.999378 0.0351974 uwb: 0.0 1246.56 1204.03 +imu_odom_: 1691062519.322228215 1.10373 -0.227449 9.87848 -0.056459 0.0149137 0.0245011 0.17 0 pose: 0.0 -2.29544 -3.83797 0 0.000809258 0.00200566 0.999378 0.0351974 uwb: 0.0 1246.56 1204.03 +imu_odom_: 1691062519.348014461 0.476446 -0.306458 10.2065 -0.0841559 0.0330232 0.0681769 0.17 0 pose: 0.38982675 -2.29828 -3.8391 0 0.00438748 0.0023214 0.999366 0.0352533 uwb: 0.50006093 1245.83 1205.64 +imu_odom_: 1691062519.360892419 0.306458 -0.124498 10.1155 -0.0798948 -0.0276969 0.056459 0.17 0 pose: 0.0 -2.29828 -3.8391 0 0.00438748 0.0023214 0.999366 0.0352533 uwb: 0.0 1245.83 1205.64 +imu_odom_: 1691062519.384885661 0.768539 -0.143652 9.69173 -0.0575243 0.00213053 0.0394148 0.17 -0.02 pose: 0.55097257 -2.31126 -3.83349 0 0.00447295 -0.0004903480.999377 0.0349931 uwb: 0.50245821 1245.74 1206.69 +imu_odom_: 1691062519.409901103 0.514753 -0.328006 9.90481 -0.0617853 0.00319579 0.0372843 0.22 0 pose: 0.30918531 -2.31743 -3.83595 0 0.00621458 0.000241438 0.99937 0.0349406 uwb: 0.0 1245.74 1206.69 +imu_odom_: 1691062519.432929016 0.517148 -0.0981623 10.0772 -0.0372843 0.0468716 0.0394148 0.22 0 pose: 0.8013983 -2.32055 -3.83719 0 0.00609208 -0.0005791560.99937 0.034945 uwb: 0.49861440 1245.6 1208.07 +imu_odom_: 1691062519.445859177 0.675165 -0.433351 9.98382 -0.0788296 -0.00319579 0.0628506 0.22 0 pose: 0.0 -2.32055 -3.83719 0 0.00609208 -0.0005791560.99937 0.034945 uwb: 0.0 1245.6 1208.07 +imu_odom_: 1691062519.462856845 0.117316 -0.232238 9.49062 -0.0500674 -0.00319579 0.0340885 0.18 0 pose: 0.46039494 -2.32985 -3.84088 0 0.00561398 -0.0003537680.999375 0.0348977 uwb: 0.0 1245.6 1208.07 +imu_odom_: 1691062519.488974103 0.0837971 -0.114922 9.77074 -0.0660464 0.0287621 0.0543285 0.18 0 pose: 0.0 -2.32985 -3.84088 0 0.00561398 -0.0003537680.999375 0.0348977 uwb: 0.49864356 1246.09 1208.48 +imu_odom_: 1691062519.513935008 0.0909797 -0.134075 9.91439 -0.036219 -0.0245011 0.0149137 0.19 -0.02 pose: 0.32961179 -2.33354 -3.83159 0 0.00328085 -0.0006782040.999389 0.034794 uwb: 0.0 1246.09 1208.48 +imu_odom_: 1691062519.536873971 0.349553 -0.4956 9.79947 -0.0937433 -0.0106526 0.0490022 0.18 -0.02 pose: 0.0 -2.33354 -3.83159 0 0.00328085 -0.0006782040.999389 0.034794 uwb: 0.49865523 1247.46 1207.76 +imu_odom_: 1691062519.560998743 0.385466 -0.383072 9.81623 -0.0490022 -0.015979 0.0223706 0.18 -0.02 pose: 0.49099676 -2.34283 -3.83529 0 -0.000870835-0.0001521990.999389 0.0349447 uwb: 0.0 1247.46 1207.76 +imu_odom_: 1691062519.586875398 0.42138 -0.368707 9.6606 -0.0671117 -0.00852212 0.0436758 0.25 0 pose: 0.39998750 -2.34903 -3.83775 0 -0.000990153-0.00436517 0.999374 0.0350806 uwb: 0.50009009 1246.69 1209.36 +imu_odom_: 1691062519.599860679 1.07978 -0.42138 9.62948 -0.0276969 0.00639159 0.0191748 0.25 0 pose: 0.8022440 -2.35213 -3.83898 0 -0.000648165-0.00514662 0.999372 0.0350661 uwb: 0.0 1246.69 1209.36 +imu_odom_: 1691062519.616043504 0.481235 0.0167594 9.74679 -0.0372843 0.00852212 0.0394148 0.25 0 pose: 0.0 -2.35213 -3.83898 0 -0.000648165-0.00514662 0.999372 0.0350661 uwb: 0.0 1246.69 1209.36 +imu_odom_: 1691062519.639860304 0.529119 -0.167594 10.556 -0.0671117 -0.0245011 0.0500674 0.17 0.02 pose: 0.38860769 -2.35582 -3.82969 0 0.00142114 -0.00602945 0.999362 0.0351784 uwb: 0.50121875 1246.4 1210.62 +imu_odom_: 1691062519.664840749 0.445322 -0.25618 9.5792 -0.0862864 -0.0426106 0.0596548 0.17 0.02 pose: 0.0 -2.35582 -3.82969 0 0.00142114 -0.00602945 0.999362 0.0351784 uwb: 0.0 1246.4 1210.62 +imu_odom_: 1691062519.687925823 0.969652 -0.308852 10.5393 -0.0436758 -0.0490022 0.0287621 0.24 0 pose: 0.40038414 -2.36511 -3.83338 0 0.002651 -0.00280828 0.99938 0.0349847 uwb: 0.49873980 1245.72 1212.7 +imu_odom_: 1691062519.712844149 0.756568 0.0191536 9.95748 -0.0873517 0.052198 0.0852212 0.18 0.02 pose: 0.0 -2.36511 -3.83338 0 0.002651 -0.00280828 0.99938 0.0349847 uwb: 0.0 1245.72 1212.7 +imu_odom_: 1691062519.735830357 0.682347 -0.565032 10.082 -0.092678 0.0255663 0.0575243 0.18 0.02 pose: 0.47958487 -2.3744 -3.83708 0 0.00500548 -0.00158322 0.999382 0.0347653 uwb: 0.50020383 1245.06 1215.19 +imu_odom_: 1691062519.753902136 0.318429 -0.296881 9.48822 -0.0383495 0.0266316 0.0191748 0.24 0 pose: 0.0 -2.3744 -3.83708 0 0.00500548 -0.00158322 0.999382 0.0347653 uwb: 0.0 1245.06 1215.19 +imu_odom_: 1691062519.777899170 0.0790087 -0.275333 9.56723 -0.0511327 -0.0308927 0.0585895 0.24 0 pose: 0.47969277 -2.38739 -3.83149 0 0.00538548 -0.00318479 0.999394 0.034252 uwb: 0.50136457 1243.13 1218.11 +imu_odom_: 1691062519.801965905 -0.0957681 -0.306458 9.81623 -0.0713727 -0.0117179 0.0639159 0.23 0 pose: 0.0 -2.38739 -3.83149 0 0.00538548 -0.00318479 0.999394 0.034252 uwb: 0.0 1243.13 1218.11 +imu_odom_: 1691062519.818920994 0.679953 -0.172383 9.94312 -0.0607201 -0.0479369 0.04048 0.23 0 pose: 0.42121017 -2.38739 -3.83149 0 0.00137121 -0.0031747 0.999415 0.034014 uwb: 0.0 1243.13 1218.11 +imu_odom_: 1691062519.842845992 0.916979 -0.28491 9.8258 -0.0617853 -0.0266316 0.0468716 0.18 0.05 pose: 0.0 -2.38739 -3.83149 0 0.00137121 -0.0031747 0.999415 0.034014 uwb: 0.49827901 1242.38 1219.78 +imu_odom_: 1691062519.867856476 0.3304 -0.610521 9.34696 -0.0532632 -0.00213053 0.0426106 0.18 0.05 pose: 0.40976619 -2.39668 -3.8352 0 0.00268295 -0.0029291 0.999421 0.0337836 uwb: 0.0 1242.38 1219.78 +imu_odom_: 1691062519.881855207 0.0766145 -0.0095768110.3789 -0.04048 -0.00958738 0.0383495 0.18 0.05 pose: 0.0 -2.39668 -3.8352 0 0.00268295 -0.0029291 0.999421 0.0337836 uwb: 0.50060630 1243.15 1220.09 +imu_odom_: 1691062519.905842616 0.579397 -0.378284 10.1921 -0.0841559 0.015979 0.0681769 0.18 0.02 pose: 0.47963737 -2.40968 -3.82963 0 0.00278092 -0.00479852 0.999417 0.0336807 uwb: 0.0 1243.15 1220.09 +imu_odom_: 1691062519.931862175 0.940921 -0.186748 10.398 -0.0458064 -0.0234358 0.0468716 0.21 0 pose: 0.30933113 -2.41582 -3.83209 0 0.00401482 -0.00596579 0.999418 0.0333477 uwb: 0.49980720 1244.44 1219.68 +imu_odom_: 1691062519.955016660 0.684742 -0.248997 10.1682 -0.076699 -0.0106526 0.0490022 0.21 0 pose: 0.0 -2.41582 -3.83209 0 0.00401482 -0.00596579 0.999418 0.0333477 uwb: 0.0 1244.44 1219.68 +imu_odom_: 1691062519.970867598 -0.0742203 -0.0909797 9.79228 -0.036219 0.0607201 0.0319579 0.18 0 pose: 0.0 -2.41582 -3.83209 0 0.00401482 -0.00596579 0.999418 0.0333477 uwb: 0.0 1244.44 1219.68 +imu_odom_: 1691062519.995802255 0.304064 -0.217872 10.1801 -0.0905475 0.015979 0.0713727 0.18 0 pose: 0.57139614 -2.42269 -3.82408 0 0.00796676 -0.00414428 0.999408 0.0332072 uwb: 0.50162996 1253.15 1210.91 +imu_odom_: 1691062520.19816208 0.447716 -0.244209 10.2208 -0.0660464 0 0.0490022 0.18 0.02 pose: 0.32820025 -2.43197 -3.8278 0 0.00432529 -0.00347287 0.999445 0.0328416 uwb: 0.0 1253.15 1210.91 +imu_odom_: 1691062520.36859668 0.73502 -0.440533 9.60554 -0.0692422 -0.015979 0.0543285 0.18 0.02 pose: 0.7124771 -2.43197 -3.8278 0 0.003777 -0.00303556 0.99945 0.0328086 uwb: 0.49892068 1252.91 1212.22 +imu_odom_: 1691062520.60856125 0.730232 -0.325611 9.67736 -0.0330232 -0.00958738 0.0213053 0.18 0 pose: 0.0 -2.43197 -3.8278 0 0.003777 -0.00303556 0.99945 0.0328086 uwb: 0.0 1252.91 1212.22 +imu_odom_: 1691062520.83856630 0.25618 -0.608127 9.47386 -0.0511327 -0.00852212 0.0511327 0.18 0 pose: 0.40994129 -2.44124 -3.83154 0 0.00466694 -0.00320773 0.99945 0.0326703 uwb: 0.50002899 1252.97 1213.02 +imu_odom_: 1691062520.109820201 0.37589 -0.148441 9.88805 -0.0330232 -0.0138484 0.0351537 0.25 0.02 pose: 0.39935475 -2.4497 -3.82794 0 0.00491107 -0.00513045 0.999441 0.0326778 uwb: 0.0 1252.97 1213.02 +imu_odom_: 1691062520.123803771 0.442927 -0.114922 9.97424 -0.0468716 -0.0234358 0.0447411 0.25 0.02 pose: 0.8027692 -2.45425 -3.826 0 0.00448183 -0.00439125 0.999446 0.0326958 uwb: 0.0 1252.97 1213.02 +imu_odom_: 1691062520.147919800 0.481235 -0.272939 9.89045 -0.0490022 -0.0372843 0.0394148 0.18 0 pose: 0.0 -2.45425 -3.826 0 0.00448183 -0.00439125 0.999446 0.0326958 uwb: 0.49851245 1252.73 1214.33 +imu_odom_: 1691062520.173938782 0.826 -0.299275 9.80186 -0.0703074 -0.0266316 0.0436758 0.18 0 pose: 0.39927892 -2.45425 -3.826 0 0.00375726 -0.00206082 0.999456 0.0327018 uwb: 0.0 1252.73 1214.33 +imu_odom_: 1691062520.198779829 0.447716 -0.035913 9.89763 -0.0266316 -0.00639159 0.0308927 0.18 0.02 pose: 0.42126568 -2.46353 -3.82974 0 0.00731637 -0.00400755 0.999432 0.0326519 uwb: 0.50141136 1253.32 1214.83 +imu_odom_: 1691062520.216970894 0.481235 -0.718261 9.54089 -0.0575243 -0.00319579 0.0447411 0.18 0.02 pose: 0.8912237 -2.46353 -3.82974 0 0.00702595 -0.00304078 0.999436 0.0326947 uwb: 0.0 1253.32 1214.83 +imu_odom_: 1691062520.232795881 0.268151 -0.225055 10.1323 -0.0351537 0.0138484 0.0351537 0.2 0 pose: 0.0 -2.46353 -3.82974 0 0.00702595 -0.00304078 0.999436 0.0326947 uwb: 0.50074934 1252.95 1216.04 +imu_odom_: 1691062520.259135376 0.766145 -0.0790087 10.1323 -0.056459 0.0117179 0.0596548 0.2 0 pose: 0.42076406 -2.47654 -3.8242 0 0.00542052 -0.00288458 0.999445 0.0327283 uwb: 0.0 1252.95 1216.04 +imu_odom_: 1691062520.283782482 0.280122 -0.275333 10.003 -0.0319579 0.0681769 0.0276969 0.19 0 pose: 0.0 -2.47654 -3.8242 0 0.00542052 -0.00288458 0.999445 0.0327283 uwb: 0.49982483 1253.03 1217.25 +imu_odom_: 1691062520.309907330 0.0814029 -0.272939 9.9503 -0.0372843 -0.00319579 0.0553937 0.19 0 pose: 0.42932954 -2.48582 -3.82794 0 0.00541446 -0.00121893 0.999455 0.0325426 uwb: 0.0 1253.03 1217.25 +imu_odom_: 1691062520.334984605 0.287304 -0.167594 10.0389 -0.0287621 -0.00639159 0.0351537 0.18 -0.02 pose: 0.42046951 -2.48582 -3.82794 0 0.000650849 -0.00113945 0.999473 0.0324228 uwb: 0.50004649 1253.98 1217.3 +imu_odom_: 1691062520.360791857 0.191536 -0.222661 9.95509 -0.0479369 -0.0372843 0.0532632 0.21 0 pose: 0.0 -2.48582 -3.82794 0 0.000650849 -0.00113945 0.999473 0.0324228 uwb: 0.0 1253.98 1217.3 +imu_odom_: 1691062520.385846968 0.442927 0.0622492 10.2951 -0.0479369 -0.0213053 0.0340885 0.21 0 pose: 0.33039639 -2.49883 -3.82241 0 -0.00214979 0.000429988 0.999472 0.0324224 uwb: 0.50122471 1254.35 1217.62 +imu_odom_: 1691062520.411842910 0.493206 -0.368707 10.0844 -0.0553937 -0.0532632 0.04048 0.21 -0.02 pose: 0.0 -2.49883 -3.82241 0 -0.00214979 0.000429988 0.999472 0.0324224 uwb: 0.0 1254.35 1217.62 +imu_odom_: 1691062520.424840736 0.632069 0.0622492 10.0389 -0.0617853 -0.04048 0.0543285 0.21 -0.02 pose: 0.50938189 -2.50811 -3.82615 0 -0.00175025 0.0020684 0.999473 0.0323593 uwb: 0.0 1254.35 1217.62 +imu_odom_: 1691062520.439840381 0.344765 -0.390255 10.0149 -0.0841559 0.0213053 0.0692422 0.21 -0.02 pose: 0.0 -2.50811 -3.82615 0 -0.00175025 0.0020684 0.999473 0.0323593 uwb: 0.49876910 1254.63 1218.24 +imu_odom_: 1691062520.457887375 0.76375 -0.107739 9.7851 -0.0671117 -0.0149137 0.0383495 0.18 0 pose: 0.38884403 -2.50811 -3.82615 0 0.000374888 0.000577395 0.999483 0.0321393 uwb: 0.0 1254.63 1218.24 +imu_odom_: 1691062520.476039360 0.395043 -0.347159 9.87129 -0.0553937 0.0308927 0.0394148 0.18 0 pose: 0.0 -2.50811 -3.82615 0 0.000374888 0.000577395 0.999483 0.0321393 uwb: 0.0 1254.63 1218.24 +imu_odom_: 1691062520.491039004 0.129287 -0.275333 10.1442 -0.0543285 -0.0255663 0.0468716 0.19 -0.05 pose: 0.0 -2.50811 -3.82615 0 0.000374888 0.000577395 0.999483 0.0321393 uwb: 0.50092723 1254.4 1219.59 +imu_odom_: 1691062520.507814739 0.457293 -0.292093 10.094 -0.0255663 0.015979 0.0266316 0.19 -0.05 pose: 0.43269799 -2.52113 -3.82063 0 0.00092682 -0.00151741 0.999485 0.032044 uwb: 0.0 1254.4 1219.59 +imu_odom_: 1691062520.532748819 0.672771 -0.402226 9.90002 -0.0777643 0.0170442 0.0617853 0.18 0 pose: 0.6896418 -2.52113 -3.82063 0 0.00031152 -0.00156647 0.999486 0.0320177 uwb: 0.49757046 1252.37 1222.49 +imu_odom_: 1691062520.555802111 0.964863 -0.0694318 10.0652 -0.0585895 -0.00319579 0.0447411 0.21 -0.02 pose: 0.0 -2.52113 -3.82063 0 0.00031152 -0.00156647 0.999486 0.0320177 uwb: 0.0 1252.37 1222.49 +imu_odom_: 1691062520.581880588 0.418985 -0.356736 9.7851 -0.0798948 0.0330232 0.0511327 0.25 -0.02 pose: 0.72866333 -2.53644 -3.82682 0 0.00474437 -0.00313426 0.999479 0.0317775 uwb: 0.50072017 1252.66 1223.13 +imu_odom_: 1691062520.605795677 0.318429 -0.177171 9.71088 -0.0543285 0.0170442 0.0458064 0.25 -0.02 pose: 0.0 -2.53644 -3.82682 0 0.00474437 -0.00313426 0.999479 0.0317775 uwb: 0.0 1252.66 1223.13 +imu_odom_: 1691062520.631799785 0.435745 -0.227449 9.94551 -0.072438 -0.0106526 0.04048 0.19 0 pose: 0.32966146 -2.54342 -3.81886 0 0.00188224 -0.00478744 0.999488 0.0315932 uwb: 0.49911032 1252.47 1224.54 +imu_odom_: 1691062520.652781265 0.342371 -0.248997 9.83059 -0.056459 -0.0127832 0.0319579 0.2 0 pose: 0.43031528 -2.55037 -3.82168 0 0.00156499 -0.00131556 0.999501 0.0315312 uwb: 0.0 1252.47 1224.54 +imu_odom_: 1691062520.667032560 0.481235 -0.363919 9.72764 -0.0777643 -0.0372843 0.0511327 0.2 0 pose: 0.0 -2.55037 -3.82168 0 0.00156499 -0.00131556 0.999501 0.0315312 uwb: 0.0 1252.47 1224.54 +imu_odom_: 1691062520.692889390 0.59855 -0.220267 10.2185 -0.0245011 -0.0255663 0.0308927 0.18 0 pose: 0.6001375 -2.55269 -3.82262 0 0.000991802 -0.00136437 0.999501 0.0315532 uwb: 0.49985400 1253.06 1224.66 +imu_odom_: 1691062520.717897547 0.663194 -0.282516 10.5536 -0.0585895 -0.0372843 0.0607201 0.18 0 pose: 0.0 -2.55269 -3.82262 0 0.000991802 -0.00136437 0.999501 0.0315532 uwb: 0.0 1253.06 1224.66 +imu_odom_: 1691062520.734909802 0.785298 -0.220267 9.6223 -0.04048 -0.0149137 0.0394148 0.18 0 pose: 0.0 -2.55269 -3.82262 0 0.000991802 -0.00136437 0.999501 0.0315532 uwb: 0.50000274 1253.71 1224.85 +imu_odom_: 1691062520.759801886 0.471658 -0.308852 9.88087 -0.0617853 0.0276969 0.0458064 0.18 0 pose: 0.36993407 -2.56195 -3.82638 0 0.00142005 -0.00253573 0.999498 0.0315627 uwb: 0.0 1253.71 1224.85 +imu_odom_: 1691062520.782744938 0.531513 -0.0047884 9.8282 -0.0383495 0.00319579 0.0447411 0.2 0 pose: 0.51121922 -2.56571 -3.81711 0 0.00708653 -0.00223583 0.99948 0.0313856 uwb: 0.49944570 1254.04 1225.93 +imu_odom_: 1691062520.800847344 0.672771 -0.430956 9.68933 -0.0756338 -0.0298274 0.072438 0.2 0 pose: 0.0 -2.56571 -3.81711 0 0.00708653 -0.00223583 0.99948 0.0313856 uwb: 0.0 1254.04 1225.93 +imu_odom_: 1691062520.816735325 0.519542 -0.373495 10.0293 -0.0617853 0.0223706 0.0394148 0.2 0 pose: 0.0 -2.56571 -3.81711 0 0.00708653 -0.00223583 0.99948 0.0313856 uwb: 0.0 1254.04 1225.93 +imu_odom_: 1691062520.841797435 0.550666 -0.335188 9.78989 -0.0617853 -0.0106526 0.0671117 0.18 0 pose: 0.40834894 -2.57498 -3.82088 0 0.00555252 -0.00269147 0.999491 0.0312838 uwb: 0.0 1254.04 1225.93 +imu_odom_: 1691062520.866854879 0.169988 -0.0622492 9.92636 -0.0287621 0.02024 0.0308927 0.19 0 pose: 0.41013377 -2.588 -3.81537 0 0.0067158 -0.00329487 0.999493 0.0309433 uwb: 0.0 1254.04 1225.93 +imu_odom_: 1691062520.883737062 0.56982 -0.205901 9.75158 -0.0745685 -0.0479369 0.056459 0.19 0 pose: 0.34032675 -2.59432 -3.81794 0 0.00750725 -0.00655473 0.999483 0.0305825 uwb: 0.100174657 1254.12 1226.8 +imu_odom_: 1691062520.908772050 0.61531 -0.462081 9.50019 -0.0436758 0.00852212 0.0319579 0.19 0 pose: 0.0 -2.59432 -3.81794 0 0.00750725 -0.00655473 0.999483 0.0305825 uwb: 0.0 1254.12 1226.8 +imu_odom_: 1691062520.935748488 0.730232 -0.0885855 9.991 -0.0713727 -0.0479369 0.0553937 0.18 0.02 pose: 0.7957115 -2.59727 -3.81915 0 0.00678183 -0.00596146 0.99949 0.0306166 uwb: 0.50068226 1253.32 1228.88 +imu_odom_: 1691062520.950740841 0.670376 -0.181959 9.65342 -0.0415453 -0.0138484 0.0287621 0.18 0.02 pose: 0.0 -2.59727 -3.81915 0 0.00678183 -0.00596146 0.99949 0.0306166 uwb: 0.0 1253.32 1228.88 +imu_odom_: 1691062520.967780802 0.557849 -0.134075 9.93594 -0.0543285 0.0181095 0.0543285 0.2 0 pose: 0.43121937 -2.59727 -3.81915 0 0.0068653 -0.00426476 0.999499 0.0305886 uwb: 0.0 1253.32 1228.88 +imu_odom_: 1691062520.992713424 0.536301 -0.117316 10.1442 -0.0585895 0.0319579 0.0426106 0.2 0 pose: 0.0 -2.59727 -3.81915 0 0.0068653 -0.00426476 0.999499 0.0305886 uwb: 0.49766961 1253.56 1229.5 +imu_odom_: 1691062521.17834158 0.6608 -0.191536 10.1538 -0.0617853 0.00319579 0.0553937 0.18 0.02 pose: 0.48889707 -2.6103 -3.81366 0 0.0101072 -0.00327236 0.999479 0.030489 uwb: 0.0 1253.56 1229.5 +imu_odom_: 1691062521.40715971 1.04627 -0.208296 9.5792 -0.0458064 0.00852212 0.0340885 0.18 0.02 pose: 0.35047000 -2.61956 -3.81744 0 0.00927641 -0.00016989 0.999494 0.0304298 uwb: 0.50065025 1254.46 1229.51 +imu_odom_: 1691062521.53721383 0.893037 -0.136469 9.93115 -0.0649811 0.0149137 0.0575243 0.18 0.02 pose: 0.0 -2.61956 -3.81744 0 0.00927641 -0.00016989 0.999494 0.0304298 uwb: 0.0 1254.46 1229.51 +imu_odom_: 1691062521.80706868 0.550666 -0.21069 10.0987 -0.0745685 0.0191748 0.0500674 0.18 0.02 pose: 0.0 -2.61956 -3.81744 0 0.00927641 -0.00016989 0.999494 0.0304298 uwb: 0.50132400 1254.42 1230.69 +imu_odom_: 1691062521.104909813 0.141258 -0.227449 9.62469 -0.0713727 0.00532632 0.0511327 0.19 0.02 pose: 0.48033165 -2.61956 -3.81744 0 0.0112815 0.000872809 0.999479 0.0302332 uwb: 0.0 1254.42 1230.69 +imu_odom_: 1691062521.122763162 0.308852 -0.186748 9.72525 -0.0394148 0.00639159 0.0351537 0.19 0.02 pose: 0.0 -2.61956 -3.81744 0 0.0112815 0.000872809 0.999479 0.0302332 uwb: 0.0 1254.42 1230.69 +imu_odom_: 1691062521.146707130 0.416591 -0.23942 10.1658 -0.0479369 -0.0245011 0.0490022 0.22 0 pose: 0.87920829 -2.64186 -3.81575 0 0.00756798 0.000249676 0.999524 0.0298991 uwb: 0.49946625 1254.59 1231.65 +imu_odom_: 1691062521.164769586 0.385466 -0.196325 9.72285 -0.0383495 -0.0245011 0.0394148 0.22 0 pose: 0.0 -2.64186 -3.81575 0 0.00756798 0.000249676 0.999524 0.0298991 uwb: 0.0 1254.59 1231.65 +imu_odom_: 1691062521.188706555 0.402226 -0.277727 10.0102 -0.04048 0.0255663 0.0383495 0.23 0.02 pose: 0.42014298 -2.65111 -3.81954 0 0.00376048 9.27889e-05 0.999549 0.0298067 uwb: 0.49994162 1254.06 1233.21 +imu_odom_: 1691062521.205763435 0.533907 0.011971 9.68215 -0.072438 -0.0415453 0.0511327 0.23 0.02 pose: 0.0 -2.65111 -3.81954 0 0.00376048 9.27889e-05 0.999549 0.0298067 uwb: 0.0 1254.06 1233.21 +imu_odom_: 1691062521.221757869 0.122104 -0.148441 9.89763 -0.04048 0.00639159 0.0468716 0.23 0 pose: 0.41996508 -2.6549 -3.81029 0 0.00148306 -0.0006034380.999555 0.0297719 uwb: 0.0 1254.06 1233.21 +imu_odom_: 1691062521.246740951 0.52433 -0.356736 9.89763 -0.0788296 0.00639159 0.0458064 0.23 0 pose: 0.0 -2.6549 -3.81029 0 0.00148306 -0.0006034380.999555 0.0297719 uwb: 0.50064740 1253.87 1234.26 +imu_odom_: 1691062521.269779667 0.584185 -0.263362 9.8689 -0.0511327 -0.02024 0.0330232 0.19 0 pose: 0.49962957 -2.66416 -3.81408 0 0.0016772 -0.00174117 0.999559 0.0295842 uwb: 0.0 1253.87 1234.26 +imu_odom_: 1691062521.285705857 0.457293 -0.565032 9.37569 -0.0383495 0.00213053 0.0468716 0.19 0 pose: 0.0 -2.66416 -3.81408 0 0.0016772 -0.00174117 0.999559 0.0295842 uwb: 0.49629612 1255.38 1234 +imu_odom_: 1691062521.309685405 0.294487 -0.148441 9.7444 -0.0117179 0.0330232 0.0276969 0.25 -0.02 pose: 0.7089195 -2.66416 -3.81408 0 0.00243664 -0.00182404 0.999557 0.0296083 uwb: 0.0 1255.38 1234 +imu_odom_: 1691062521.332676584 0.876278 -0.225055 10.0245 -0.0617853 -0.036219 0.0617853 0.26 0 pose: 0.0 -2.66416 -3.81408 0 0.00243664 -0.00182404 0.999557 0.0296083 uwb: 0.0 1255.38 1234 +imu_odom_: 1691062521.349680968 0.905008 -0.349553 9.42597 -0.0575243 0.0394148 0.0255663 0.25 0.02 pose: 0.78846438 -2.68645 -3.81241 0 0.00424494 -0.00154774 0.999555 0.0294858 uwb: 0.0 1255.38 1234 +imu_odom_: 1691062521.374713046 0.0167594 -0.337582 9.80426 -0.0340885 0.0351537 0.0532632 0.25 0.02 pose: 0.0 -2.68645 -3.81241 0 0.00424494 -0.00154774 0.999555 0.0294858 uwb: 0.0 1255.38 1234 +imu_odom_: 1691062521.397684685 0.663194 -0.220267 9.7851 -0.0181095 0.0447411 0.0298274 0.22 -0.02 pose: 0.42036462 -2.693 -3.8151 0 0.00254575 -0.00210669 0.999561 0.0294274 uwb: 0.0 1255.38 1234 +imu_odom_: 1691062521.422680891 0.703895 -0.177171 9.92397 -0.0681769 -0.00852212 0.056459 0.22 -0.02 pose: 0.7021826 -2.69571 -3.81621 0 0.00307489 -0.00187993 0.999559 0.0294633 uwb: 0.0 1255.38 1234 +imu_odom_: 1691062521.445744105 0.675165 -0.162806 9.663 -0.056459 -0.036219 0.0351537 0.18 -0.02 pose: 0.23983339 -2.6995 -3.80696 0 0.00507176 -0.00121914 0.999552 0.0294791 uwb: 0.150117225 1254.99 1235.29 +imu_odom_: 1691062521.461728623 0.61531 -0.435745 9.63666 -0.0649811 0.02024 0.0479369 0.18 -0.02 pose: 0.0 -2.6995 -3.80696 0 0.00507176 -0.00121914 0.999552 0.0294791 uwb: 0.0 1254.99 1235.29 +imu_odom_: 1691062521.487733906 0.737414 -0.383072 9.5792 -0.0511327 0.0351537 0.0266316 0.25 -0.02 pose: 0.23994714 -2.6995 -3.80696 0 0.00751092 -0.00064392 0.999541 0.0293579 uwb: 0.50104986 1254.84 1236.39 +imu_odom_: 1691062521.500675448 0.308852 -0.244209 10.0149 -0.0607201 0.0191748 0.0596548 0.25 -0.02 pose: 0.0 -2.6995 -3.80696 0 0.00751092 -0.00064392 0.999541 0.0293579 uwb: 0.0 1254.84 1236.39 +imu_odom_: 1691062521.517676041 0.462081 -0.23942 10.0389 -0.0713727 -0.0106526 0.0596548 0.17 -0.02 pose: 0.39982731 -2.70875 -3.81076 0 0.00967582 -0.00221798 0.999519 0.029365 uwb: 0.0 1254.84 1236.39 +imu_odom_: 1691062521.540668970 0.383072 0.153229 10.2687 -0.0394148 -0.0287621 0.0415453 0.17 -0.02 pose: 0.0 -2.70875 -3.81076 0 0.00967582 -0.00221798 0.999519 0.029365 uwb: 0.49844551 1253.7 1238.65 +imu_odom_: 1691062521.565726712 0.723049 -0.246603 9.68694 -0.0649811 -0.0287621 0.04048 0.18 0 pose: 0.39001361 -2.718 -3.81456 0 0.0084534 -0.00310078 0.999531 0.029261 uwb: 0.0 1253.7 1238.65 +imu_odom_: 1691062521.591720329 0.90022 -0.155623 9.88326 -0.0436758 0.0447411 0.0426106 0.18 0 pose: 0.0 -2.718 -3.81456 0 0.0084534 -0.00310078 0.999531 0.029261 uwb: 0.50002328 1252.68 1240.62 +imu_odom_: 1691062521.616814818 0.73502 -0.270545 10.2472 -0.0532632 0.0117179 0.0436758 0.2 -0.02 pose: 0.40985099 -2.73105 -3.80911 0 0.00808249 -0.0007775790.999542 0.0291563 uwb: 0.0 1252.68 1240.62 +imu_odom_: 1691062521.643793595 0.502782 -0.320823 9.16979 -0.0607201 0.0330232 0.0585895 0.21 0 pose: 0.50170897 -2.73105 -3.80911 0 0.012394 -0.0008211290.9995 0.0290938 uwb: 0.50174396 1251.91 1242.41 +imu_odom_: 1691062521.668669646 0.162806 -0.459687 9.47146 -0.0500674 0.0447411 0.02024 0.2 0 pose: 0.0 -2.73105 -3.80911 0 0.012394 -0.0008211290.9995 0.0290938 uwb: 0.0 1251.91 1242.41 +imu_odom_: 1691062521.685781646 0.126893 -0.0861913 10.094 -0.0617853 -0.0308927 0.0468716 0.2 0 pose: 0.0 -2.73105 -3.80911 0 0.012394 -0.0008211290.9995 0.0290938 uwb: 0.50087779 1253.24 1242 +imu_odom_: 1691062521.709659120 0.706289 -0.31364 9.84017 -0.0671117 0.0191748 0.0276969 0.23 -0.02 pose: 0.51858327 -2.74411 -3.80367 0 0.00986672 -0.00327029 0.99953 0.0288452 uwb: 0.0 1253.24 1242 +imu_odom_: 1691062521.735701148 0.457293 -0.260968 10.1442 -0.0585895 0.0138484 0.0511327 0.23 -0.02 pose: 0.24080456 -2.75336 -3.80748 0 0.00733768 -0.00355721 0.999547 0.0289727 uwb: 0.50002037 1252.86 1243.76 +imu_odom_: 1691062521.758635749 0.454898 -0.0263362 10.0963 -0.0181095 0.0276969 0.0213053 0.2 0.02 pose: 0.41989509 -2.75336 -3.80748 0 0.00773737 -0.00371463 0.999542 0.0290349 uwb: 0.0 1252.86 1243.76 +imu_odom_: 1691062521.775705461 0.416591 -0.292093 9.31105 -0.0607201 0.0138484 0.0490022 0.2 0.02 pose: 0.0 -2.75336 -3.80748 0 0.00773737 -0.00371463 0.999542 0.0290349 uwb: 0.0 1252.86 1243.76 +imu_odom_: 1691062521.800757954 0.136469 -0.325611 9.74919 -0.0170442 0.0458064 0.0340885 0.18 -0.02 pose: 0.48893511 -2.76641 -3.80203 0 0.00426685 -0.0011601 0.999566 0.0291088 uwb: 0.49859716 1252.5 1245.12 +imu_odom_: 1691062521.824650593 0.071826 -0.189142 9.51935 -0.0479369 0.00532632 0.0543285 0.21 0 pose: 0.0 -2.76641 -3.80203 0 0.00426685 -0.0011601 0.999566 0.0291088 uwb: 0.0 1252.5 1245.12 +imu_odom_: 1691062521.848698093 0.0837971 -0.134075 9.61751 -0.0213053 0 0.0266316 0.21 0 pose: 0.41115754 -2.77566 -3.80584 0 -0.000304482-0.00159945 0.999576 0.0290725 uwb: 0.49737228 1252.63 1246.1 +imu_odom_: 1691062521.864639740 0.6608 0.131681 10.1011 -0.0660464 0.0138484 0.0585895 0.21 0 pose: 0.0 -2.77566 -3.80584 0 -0.000304482-0.00159945 0.999576 0.0290725 uwb: 0.0 1252.63 1246.1 +imu_odom_: 1691062521.889791391 0.648829 -0.447716 9.73004 -0.0575243 0.0255663 0.04048 0.18 0 pose: 0.48874264 -2.78491 -3.80964 0 -0.00380226 0.000621697 0.999571 0.0290191 uwb: 0.50068239 1251.83 1247.48 +imu_odom_: 1691062521.915739220 0.277727 -0.301669 9.91918 -0.0575243 0.00639159 0.0671117 0.18 0.02 pose: 0.33126557 -2.79379 -3.80594 0 -0.00177181 -0.0005321270.99958 0.0289323 uwb: 0.0 1251.83 1247.48 +imu_odom_: 1691062521.940759049 0.347159 -0.0861913 9.62469 -0.0340885 -0.00106526 0.0298274 0.18 0.02 pose: 0.0 -2.79379 -3.80594 0 -0.00177181 -0.0005321270.99958 0.0289323 uwb: 0.50056865 1252.61 1247.81 +imu_odom_: 1691062521.956635660 0.45011 -0.241814 9.79468 -0.0681769 -0.0458064 0.0553937 0.18 0 pose: 0.8027110 -2.79796 -3.8042 0 -0.00244678 -0.00103446 0.999581 0.0288224 uwb: 0.0 1252.61 1247.81 +imu_odom_: 1691062521.982807469 0.181959 -0.0407014 9.90242 -0.0287621 0.0287621 0.0330232 0.18 0 pose: 0.0 -2.79796 -3.8042 0 -0.00244678 -0.00103446 0.999581 0.0288224 uwb: 0.0 1252.61 1247.81 +imu_odom_: 1691062522.7660772 0.335188 -0.0670376 10.4627 -0.0617853 -0.0490022 0.0628506 0.19 0.02 pose: 0.48825268 -2.79796 -3.8042 0 -0.00297499 0.000361983 0.999585 0.0286448 uwb: 0.0 1252.61 1247.81 +imu_odom_: 1691062522.31689614 0.351948 -0.071826 10.5345 -0.0383495 -0.00532632 0.0340885 0.19 0.02 pose: 0.0 -2.79796 -3.8042 0 -0.00297499 0.000361983 0.999585 0.0286448 uwb: 0.100056575 1253.09 1248.72 +imu_odom_: 1691062522.55665085 0.766145 -0.337582 9.85693 -0.0873517 0.0181095 0.0617853 0.18 0 pose: 0.44005910 -2.8072 -3.80801 0 -0.0037649 0.00292083 0.999581 0.0285547 uwb: 0.0 1253.09 1248.72 +imu_odom_: 1691062522.71692187 0.0143652 -0.292093 9.27274 -0.04048 0.0191748 0.04048 0.18 0 pose: 0.0 -2.8072 -3.80801 0 -0.0037649 0.00292083 0.999581 0.0285547 uwb: 0.0 1253.09 1248.72 +imu_odom_: 1691062522.88628624 0.488417 -0.177171 10.0389 -0.0628506 -0.00852212 0.0553937 0.25 0 pose: 0.47991185 -2.82026 -3.80258 0 -0.00178271 0.00651615 0.999576 0.0283247 uwb: 0.49941389 1253.09 1249.59 +imu_odom_: 1691062522.113742368 1.04866 -0.268151 10.3142 -0.0458064 -0.036219 0.0415453 0.25 0 pose: 0.0 -2.82026 -3.80258 0 -0.00178271 0.00651615 0.999576 0.0283247 uwb: 0.0 1253.09 1249.59 +imu_odom_: 1691062522.138616967 0.679953 -0.40462 9.51456 -0.0873517 0.02024 0.0671117 0.21 0.02 pose: 0.41003775 -2.8295 -3.8064 0 -0.00148234 0.00443131 0.999595 0.0280608 uwb: 0.49979302 1251.94 1251.95 +imu_odom_: 1691062522.163676466 0.289698 -0.0861913 9.91918 -0.0543285 0.015979 0.0436758 0.21 0.02 pose: 0.0 -2.8295 -3.8064 0 -0.00148234 0.00443131 0.999595 0.0280608 uwb: 0.0 1251.94 1251.95 +imu_odom_: 1691062522.187609649 0.35913 -0.0215478 10.1682 -0.0436758 0.00532632 0.0553937 0.2 0.02 pose: 0.42046390 -2.8295 -3.8064 0 0.00262858 0.00283224 0.999605 0.0278418 uwb: 0.50046671 1251.56 1253.33 +imu_odom_: 1691062522.210699408 0.466869 -0.124498 9.92397 -0.0181095 0.0117179 0.0330232 0.2 0.02 pose: 0.0 -2.8295 -3.8064 0 0.00262858 0.00283224 0.999605 0.0278418 uwb: 0.0 1251.56 1253.33 +imu_odom_: 1691062522.237619573 0.213084 -0.246603 9.83299 -0.0468716 -0.00852212 0.0436758 0.23 0 pose: 0.48999098 -2.84257 -3.80099 0 0.000807465 0.00327485 0.999616 0.0275035 uwb: 0.50073793 1252.57 1253.46 +imu_odom_: 1691062522.253744958 0.011971 -0.102951 9.62948 -0.0181095 -0.015979 0.0351537 0.23 0 pose: 0.0 -2.84257 -3.80099 0 0.000807465 0.00327485 0.999616 0.0275035 uwb: 0.0 1252.57 1253.46 +imu_odom_: 1691062522.270667396 0.754174 -0.270545 9.85693 -0.076699 -0.02024 0.0575243 0.17 0.02 pose: 0.47088562 -2.8518 -3.80482 0 0.00157154 0.00476445 0.999611 0.0274241 uwb: 0.0 1252.57 1253.46 +imu_odom_: 1691062522.294607579 0.835576 -0.146046 9.72046 -0.0479369 0.0117179 0.0458064 0.17 0.02 pose: 0.0 -2.8518 -3.80482 0 0.00157154 0.00476445 0.999611 0.0274241 uwb: 0.0 1252.57 1253.46 +imu_odom_: 1691062522.320659822 0.464475 -0.272939 9.84496 -0.076699 0.00852212 0.0458064 0.18 0 pose: 0.76828890 -2.86487 -3.79942 0 0.00228175 0.00362225 0.999621 0.0271916 uwb: 0.0 1252.57 1253.46 +imu_odom_: 1691062522.346670360 0.481235 -0.280122 10.2711 -0.0351537 -0.0319579 0.0372843 0.2 -0.02 pose: 0.8018654 -2.86487 -3.79942 0 0.00232208 0.00274128 0.999625 0.0271646 uwb: 0.99847197 1252.44 1255.11 +imu_odom_: 1691062522.372744476 0.746991 -0.21069 10.2615 -0.0383495 0.0149137 0.0276969 0.2 -0.02 pose: 0.0 -2.86487 -3.79942 0 0.00232208 0.00274128 0.999625 0.0271646 uwb: 0.0 1252.44 1255.11 +imu_odom_: 1691062522.398593154 0.718261 0.0335188 10.2376 -0.0511327 0.02024 0.0596548 0.2 0 pose: 0.51192527 -2.87411 -3.80326 0 0.00423961 -0.00133504 0.999621 0.0271701 uwb: 0.49934681 1251.73 1257.06 +imu_odom_: 1691062522.415602793 0.198719 -0.445322 9.51935 -0.0511327 0.00852212 0.0468716 0.2 0 pose: 0.0 -2.87411 -3.80326 0 0.00423961 -0.00133504 0.999621 0.0271701 uwb: 0.0 1251.73 1257.06 +imu_odom_: 1691062522.440588507 0.181959 -0.179565 9.95988 -0.0468716 -0.0266316 0.0426106 0.19 0 pose: 0.26957495 -2.88718 -3.79787 0 0.0063436 -0.0003452160.99961 0.0272089 uwb: 0.50136788 1250.6 1259.51 +imu_odom_: 1691062522.467604038 0.940921 -0.162806 10.1155 -0.0276969 -0.036219 0.0276969 0.19 0 pose: 0.42899146 -2.89641 -3.80171 0 0.00501125 0.000282867 0.999624 0.0269601 uwb: 0.0 1250.6 1259.51 +imu_odom_: 1691062522.492632040 0.667982 -0.232238 9.93354 -0.0703074 0.00426106 0.056459 0.19 0 pose: 0.43928637 -2.89641 -3.80171 0 0.00665972 0.00105627 0.99961 0.0270937 uwb: 0.0 1250.6 1259.51 +imu_odom_: 1691062522.515618850 0.299275 -0.124498 9.96467 -0.0383495 -0.0266316 0.0308927 0.19 0 pose: 0.0 -2.89641 -3.80171 0 0.00665972 0.00105627 0.99961 0.0270937 uwb: 0.0 1250.6 1259.51 +imu_odom_: 1691062522.541739628 0.852336 -0.203507 9.84017 -0.0660464 -0.0458064 0.0479369 0.23 0 pose: 0.48014812 -2.90949 -3.79632 0 0.00699835 0.000974199 0.999611 0.0269804 uwb: 0.100049887 1249.01 1261.94 +imu_odom_: 1691062522.558605197 0.464475 -0.177171 9.58638 -0.0319579 0.04048 0.0372843 0.23 0 pose: 0.0 -2.90949 -3.79632 0 0.00699835 0.000974199 0.999611 0.0269804 uwb: 0.0 1249.01 1261.94 +imu_odom_: 1691062522.574728540 0.25618 -0.0909797 10.4531 -0.0607201 0.00745685 0.0628506 0.18 -0.02 pose: 0.42986347 -2.91872 -3.80016 0 0.00811267 0.00116042 0.999605 0.0268901 uwb: 0.0 1249.01 1261.94 +imu_odom_: 1691062522.599735252 0.500388 -0.102951 9.65103 -0.0703074 0.0106526 0.0287621 0.18 -0.02 pose: 0.0 -2.91872 -3.80016 0 0.00811267 0.00116042 0.999605 0.0268901 uwb: 0.49878686 1249.48 1262.89 +imu_odom_: 1691062522.625646049 0.428562 -0.462081 9.26795 -0.056459 0.00532632 0.0532632 0.2 0 pose: 0.41130055 -2.92762 -3.7965 0 0.00557269 0.00384515 0.999616 0.0268618 uwb: 0.0 1249.48 1262.89 +imu_odom_: 1691062522.650640220 0.428562 -0.143652 9.48822 -0.0255663 0.0298274 0.0223706 0.18 -0.02 pose: 0.0 -2.92762 -3.7965 0 0.00557269 0.00384515 0.999616 0.0268618 uwb: 0.49983093 1248.42 1265 +imu_odom_: 1691062522.676577265 0.0550666 -0.371101 9.81144 -0.0575243 0 0.0607201 0.18 -0.02 pose: 0.33880456 -2.9318 -3.79478 0 0.00401475 0.00191555 0.999632 0.026744 uwb: 0.0 1248.42 1265 +imu_odom_: 1691062522.702637966 0.366313 -0.0407014 9.68215 -0.0468716 0.0127832 0.0330232 0.19 0 pose: 0.42961557 -2.94103 -3.79862 0 -1.3924e-06 0.00194672 0.999644 0.026626 uwb: 0.50162744 1249.37 1265.55 +imu_odom_: 1691062522.719819089 0.737414 -0.0215478 10.0963 -0.072438 -0.0127832 0.0500674 0.19 0 pose: 0.0 -2.94103 -3.79862 0 -1.3924e-06 0.00194672 0.999644 0.026626 uwb: 0.0 1249.37 1265.55 +imu_odom_: 1691062522.744644109 0.56982 -0.0287304 10.0987 -0.0617853 -0.00958738 0.0394148 0.18 0 pose: 0.0 -2.94103 -3.79862 0 -1.3924e-06 0.00194672 0.999644 0.026626 uwb: 0.49926807 1250.09 1265.85 +imu_odom_: 1691062522.769707691 0.440533 -0.129287 10.003 -0.0788296 -0.0117179 0.0426106 0.18 0 pose: 0.51190485 -2.95411 -3.79324 0 0.0016393 0.00524387 0.999631 0.0266116 uwb: 0.0 1250.09 1265.85 +imu_odom_: 1691062522.783693601 0.0861913 -0.277727 9.89284 -0.0543285 -0.00426106 0.0298274 0.19 0 pose: 0.0 -2.95411 -3.79324 0 0.0016393 0.00524387 0.999631 0.0266116 uwb: 0.49963845 1251.09 1266.45 +imu_odom_: 1691062522.807682488 0.189142 -0.462081 9.82102 -0.072438 -0.0245011 0.0468716 0.19 0 pose: 0.47810664 -2.95411 -3.79324 0 0.00130401 0.00342344 0.999639 0.0266025 uwb: 0.0 1251.09 1266.45 +imu_odom_: 1691062522.831570175 0.395043 -0.371101 10.1921 -0.0308927 -0.02024 0.0287621 0.23 0 pose: 0.32104074 -2.96334 -3.79709 0 -0.0006781990.00103834 0.999646 0.0265615 uwb: 0.49891809 1249.9 1268.92 +imu_odom_: 1691062522.855701091 0.632069 -0.205901 10.1227 -0.0596548 0.00106526 0.0628506 0.23 0 pose: 0.0 -2.96334 -3.79709 0 -0.0006781990.00103834 0.999646 0.0265615 uwb: 0.0 1249.9 1268.92 +imu_odom_: 1691062522.871544751 0.277727 -0.141258 9.77792 -0.02024 0.0117179 0.0394148 0.26 0 pose: 0.0 -2.96334 -3.79709 0 -0.0006781990.00103834 0.999646 0.0265615 uwb: 0.0 1249.9 1268.92 +imu_odom_: 1691062522.886557527 0.464475 -0.155623 10.003 -0.0458064 0.00639159 0.0436758 0.26 0 pose: 0.6865800 -2.96334 -3.79709 0 -0.0006155820.000433296 0.999646 0.0265992 uwb: 0.50042005 1249.77 1270.2 +imu_odom_: 1691062522.913620305 0.835576 -0.416591 9.9934 -0.0511327 0.00958738 0.0394148 0.21 0.02 pose: 0.0 -2.96334 -3.79709 0 -0.0006155820.000433296 0.999646 0.0265992 uwb: 0.0 1249.77 1270.2 +imu_odom_: 1691062522.937620274 0.366313 -0.184354 10.1179 -0.0809601 0.015979 0.0671117 0.21 0.02 pose: 0.47124725 -2.97641 -3.79171 0 0.00131542 -0.0004670240.99965 0.0264149 uwb: 0.50036464 1250.3 1270.77 +imu_odom_: 1691062522.953543552 0.579397 -0.186748 10.0844 -0.0607201 -0.0447411 0.0511327 0.21 0 pose: 0.0 -2.97641 -3.79171 0 0.00131542 -0.0004670240.99965 0.0264149 uwb: 0.0 1250.3 1270.77 +imu_odom_: 1691062522.979547966 0.483629 -0.282516 9.73004 -0.0500674 -0.0106526 0.0500674 0.21 0 pose: 0.82930300 -2.98564 -3.79557 0 0.00180806 0.00041799 0.99966 0.0260147 uwb: 0.50004966 1250.42 1271.84 +imu_odom_: 1691062522.995656144 0.316035 -0.454898 9.98622 -0.0628506 0.0287621 0.052198 0.21 -0.02 pose: 0.0 -2.98564 -3.79557 0 0.00180806 0.00041799 0.99966 0.0260147 uwb: 0.0 1250.42 1271.84 +imu_odom_: 1691062523.11812444 0.328006 -0.0742203 10.0676 -0.0319579 0 0.0298274 0.21 -0.02 pose: 0.41956856 -2.99873 -3.7902 0 0.00313499 -0.00251467 0.99966 0.025772 uwb: 0.0 1250.42 1271.84 +imu_odom_: 1691062523.28759676 0.627281 -0.373495 9.72046 -0.0841559 -0.00639159 0.056459 0.21 -0.02 pose: 0.0 -2.99873 -3.7902 0 0.00313499 -0.00251467 0.99966 0.025772 uwb: 0.50170916 1251.34 1272.37 +imu_odom_: 1691062523.44592841 0.155623 -0.19393 10.0102 -0.0681769 0.00852212 0.0351537 0.18 0 pose: 0.0 -2.99873 -3.7902 0 0.00313499 -0.00251467 0.99966 0.025772 uwb: 0.0 1251.34 1272.37 +imu_odom_: 1691062523.70602803 0.390255 -0.304064 10.0389 -0.072438 -0.0245011 0.0596548 0.18 0 pose: 0.50038222 -3.00795 -3.79407 0 0.00215757 -0.00271081 0.999665 0.0256647 uwb: 0.0 1251.34 1272.37 +imu_odom_: 1691062523.93691694 0.706289 -0.213084 9.75637 -0.0383495 -0.0213053 0.0234358 0.18 0.02 pose: 0.34004412 -3.0147 -3.7969 0 -0.000320388-0.00454611 0.999667 0.0254125 uwb: 0.49779249 1252.09 1272.7 +imu_odom_: 1691062523.118588172 0.229843 -0.402226 9.27274 -0.0852212 -0.0372843 0.0607201 0.18 0.02 pose: 0.0 -3.0147 -3.7969 0 -0.000320388-0.00454611 0.999667 0.0254125 uwb: 0.0 1252.09 1272.7 +imu_odom_: 1691062523.132551338 0.373495 -0.0407014 9.8258 -0.0660464 -0.052198 0.0490022 0.19 0 pose: 0.0 -3.0147 -3.7969 0 -0.000320388-0.00454611 0.999667 0.0254125 uwb: 0.50027728 1251.93 1273.97 +imu_odom_: 1691062523.147581325 0.720655 -0.162806 10.2807 -0.0458064 -0.0287621 0.0383495 0.19 0 pose: 0.47985369 -3.02104 -3.78872 0 0.000314996 -0.00530828 0.999665 0.0253333 uwb: 0.0 1251.93 1273.97 +imu_odom_: 1691062523.173589829 1.37667 -0.208296 11.1402 -0.076699 -0.138484 0.0511327 0.25 -0.02 pose: 0.0 -3.02104 -3.78872 0 0.000314996 -0.00530828 0.999665 0.0253333 uwb: 0.0 1251.93 1273.97 +imu_odom_: 1691062523.196540190 2.44209 -0.122104 9.46907 -0.0692422 0.0191748 0.0500674 0.25 -0.02 pose: 0.36980896 -3.03026 -3.79259 0 0.00340278 -0.00341966 0.99967 0.0252349 uwb: 0.49965024 1252.3 1274.85 +imu_odom_: 1691062523.213641408 0.337582 -0.397437 10.3525 -0.0905475 0.0266316 0.0809601 0.18 -0.02 pose: 0.40971122 -3.03948 -3.79647 0 0.00842414 -0.0035587 0.999645 0.0250233 uwb: 0.0 1252.3 1274.85 +imu_odom_: 1691062523.228570779 0.577003 -0.368707 9.55526 -0.0628506 0.0617853 0.0372843 0.18 -0.02 pose: 0.7159775 -3.03948 -3.79647 0 0.00765623 -0.00397494 0.999653 0.024872 uwb: 0.49896198 1251.11 1276.92 +imu_odom_: 1691062523.245512178 0.823605 0.131681 9.60314 -0.052198 0.02024 0.00745685 0.18 -0.02 pose: 0.0 -3.03948 -3.79647 0 0.00765623 -0.00397494 0.999653 0.024872 uwb: 0.0 1251.11 1276.92 +imu_odom_: 1691062523.261513620 -0.0430956 -0.272939 10.2807 -0.0681769 0.00319579 0.0383495 0.18 0.02 pose: 0.41812213 -3.04873 -3.78951 0 0.00762867 -0.00441525 0.999649 0.0249649 uwb: 0.0 1251.11 1276.92 +imu_odom_: 1691062523.286509256 0.205901 -0.411803 10.2376 -0.0500674 -0.0713727 0.0532632 0.18 0.02 pose: 0.0 -3.04873 -3.78951 0 0.00762867 -0.00441525 0.999649 0.0249649 uwb: 0.49946651 1250.7 1278.42 +imu_odom_: 1691062523.309533402 0.706289 0.131681 10.1299 -0.0351537 -0.0255663 0.0426106 0.18 0 pose: 0.40997078 -3.05258 -3.79113 0 0.00442336 -0.00512027 0.99967 0.0247801 uwb: 0.0 1250.7 1278.42 +imu_odom_: 1691062523.334571034 0.509965 -0.282516 10.0772 -0.0490022 0.0266316 0.0490022 0.18 0.02 pose: 0.0 -3.05258 -3.79113 0 0.00442336 -0.00512027 0.99967 0.0247801 uwb: 0.50042601 1250.81 1279.53 +imu_odom_: 1691062523.361583073 0.799663 0.0167594 10.2592 -0.0351537 -0.0234358 0.0351537 0.22 0.02 pose: 0.31098214 -3.06179 -3.79502 0 0.00516301 -0.0034964 0.999675 0.0247144 uwb: 0.0 1250.81 1279.53 +imu_odom_: 1691062523.386525339 0.773327 -0.179565 9.62469 -0.072438 -0.0426106 0.0447411 0.19 0.02 pose: 0.43975603 -3.07218 -3.78854 0 0.00618689 -0.00269909 0.999672 0.0246985 uwb: 0.49979315 1250.04 1281.13 +imu_odom_: 1691062523.410694466 0.560243 -0.112527 9.61033 -0.0234358 -0.00426106 0.0276969 0.19 0.02 pose: 0.0 -3.07218 -3.78854 0 0.00618689 -0.00269909 0.999672 0.0246985 uwb: 0.0 1250.04 1281.13 +imu_odom_: 1691062523.434566702 0.715866 0.059855 9.94312 -0.0340885 -0.015979 0.052198 0.26 0 pose: 0.49111393 -3.08175 -3.79258 0 0.00884715 0.000602561 0.999653 0.0248062 uwb: 0.49971732 1251.13 1281.36 +imu_odom_: 1691062523.451648672 0.792481 -0.567426 9.39245 -0.0266316 0.0426106 0.0340885 0.26 0 pose: 0.5873349 -3.08411 -3.79357 0 0.00917478 0.00117437 0.99965 0.0247729 uwb: 0.0 1251.13 1281.36 +imu_odom_: 1691062523.467642240 0.47884 -0.0814029 10.5728 -0.0372843 0.015979 0.0532632 0.26 0 pose: 0.0 -3.08411 -3.79357 0 0.00917478 0.00117437 0.99965 0.0247729 uwb: 0.0 1251.13 1281.36 +imu_odom_: 1691062523.494773268 0.969652 -0.0335188 9.98622 -0.0585895 -0.0191748 0.04048 0.18 0.02 pose: 0.42978483 -3.08799 -3.78436 0 0.00977012 0.0021533 0.999646 0.024647 uwb: 0.50115511 1251.34 1282.09 +imu_odom_: 1691062523.519523926 0.756568 -0.454898 9.49301 -0.056459 0.0127832 0.0479369 0.18 0 pose: 0.35226970 -3.09458 -3.78714 0 0.0118304 0.00339696 0.999622 0.0245846 uwb: 0.0 1251.34 1282.09 +imu_odom_: 1691062523.546609166 0.201113 -0.129287 9.72285 -0.0245011 0.0191748 0.04048 0.18 0 pose: 0.0 -3.09458 -3.78714 0 0.0118304 0.00339696 0.999622 0.0245846 uwb: 0.50011979 1252.44 1282.33 +imu_odom_: 1691062523.571488146 0.416591 -0.356736 9.66539 -0.0660464 -0.0127832 0.0458064 0.18 -0.02 pose: 0.7936122 -3.0972 -3.78824 0 0.0120588 0.0026566 0.999623 0.0245415 uwb: 0.0 1252.44 1282.33 +imu_odom_: 1691062523.598651547 0.471658 -0.117316 9.7037 -0.0394148 -0.00852212 0.0415453 0.18 -0.02 pose: 0.0 -3.0972 -3.78824 0 0.0120588 0.0026566 0.999623 0.0245415 uwb: 0.49982523 1252.43 1283.32 +imu_odom_: 1691062523.614600493 0.521936 -0.047884 10.3741 -0.0575243 -0.0490022 0.0500674 0.18 0.02 pose: 0.51913767 -3.10642 -3.79213 0 0.00903655 0.00131346 0.99966 0.0244126 uwb: 0.0 1252.43 1283.32 +imu_odom_: 1691062523.641606699 0.545878 0.0311246 10.0197 -0.0681769 -0.04048 0.0607201 0.18 0.02 pose: 0.0 -3.10642 -3.79213 0 0.00903655 0.00131346 0.99966 0.0244126 uwb: 0.50007020 1252.13 1284.47 +imu_odom_: 1691062523.657486235 0.430956 -0.335188 9.94312 -0.0735032 -0.0287621 0.0617853 0.19 0 pose: 0.52163994 -3.11952 -3.78681 0 0.00638504 0.00308955 0.999679 0.0243032 uwb: 0.0 1252.13 1284.47 +imu_odom_: 1691062523.683478115 0.711078 -0.0646434 10.0868 -0.0458064 0.00532632 0.0308927 0.19 0 pose: 0.0 -3.11952 -3.78681 0 0.00638504 0.00308955 0.999679 0.0243032 uwb: 0.50001480 1252.86 1284.79 +imu_odom_: 1691062523.709548738 0.459687 -0.19393 10.2927 -0.0596548 -0.0500674 0.0468716 0.2 0.02 pose: 0.76690964 -3.13146 -3.78425 0 0.00921589 0.0055832 0.999656 0.0239249 uwb: 0.0 1252.86 1284.79 +imu_odom_: 1691062523.736474160 0.806846 -0.0861913 9.96227 -0.0479369 -0.0553937 0.0458064 0.21 0 pose: 0.8081651 -3.13263 -3.7815 0 0.00874568 0.00508789 0.999663 0.0238962 uwb: 0.50036768 1252.27 1286.64 +imu_odom_: 1691062523.752470935 0.354342 -0.481235 9.54568 -0.0735032 0.0117179 0.052198 0.2 0 pose: 0.0 -3.13263 -3.7815 0 0.00874568 0.00508789 0.999663 0.0238962 uwb: 0.0 1252.27 1286.64 +imu_odom_: 1691062523.777461030 0.435745 -0.169988 9.74201 -0.0585895 -0.0170442 0.0500674 0.2 0 pose: 0.44914394 -3.14184 -3.7854 0 0.0110495 0.00448832 0.999647 0.0237423 uwb: 0.49822704 1253.02 1286.98 +imu_odom_: 1691062523.791594806 0.560243 -0.248997 9.57202 -0.0490022 0.0127832 0.0543285 0.18 0 pose: 0.0 -3.14184 -3.7854 0 0.0110495 0.00448832 0.999647 0.0237423 uwb: 0.0 1253.02 1286.98 +imu_odom_: 1691062523.816477285 0.45011 -0.102951 9.92157 -0.0340885 -0.0170442 0.0234358 0.18 0 pose: 0.47013330 -3.15104 -3.7893 0 0.0076537 0.00220435 0.999693 0.0234592 uwb: 0.0 1253.02 1286.98 +imu_odom_: 1691062523.843524321 0.663194 -0.318429 10.1347 -0.0671117 -0.0234358 0.0415453 0.25 0 pose: 0.32989795 -3.15384 -3.78271 0 0.00592784 0.0032628 0.999698 0.0236067 uwb: 0.49984564 1254.87 1286.56 +imu_odom_: 1691062523.868473878 0.672771 0.0502782 9.63666 -0.0660464 0.0383495 0.0298274 0.25 0 pose: 0.7006373 -3.15495 -3.7801 0 0.00642956 0.00267 0.999697 0.0235955 uwb: 0.0 1254.87 1286.56 +imu_odom_: 1691062523.894612453 -0.0191536 -0.426168 9.60075 -0.0916127 0.00639159 0.0660464 0.23 0 pose: 0.44990220 -3.16415 -3.784 0 0.00849221 0.00306695 0.999678 0.0237017 uwb: 0.50070307 1253.59 1288.64 +imu_odom_: 1691062523.911790373 0.507571 -0.462081 10.2304 -0.0266316 -0.0383495 0.0149137 0.23 0 pose: 0.0 -3.16415 -3.784 0 0.00849221 0.00306695 0.999678 0.0237017 uwb: 0.0 1253.59 1288.64 +imu_odom_: 1691062523.938536727 0.744597 0.112527 10.5177 -0.0543285 -0.0340885 0.0543285 0.18 0.02 pose: 0.34152274 -3.17336 -3.78791 0 0.0060256 0.000849375 0.999706 0.0234521 uwb: 0.49931778 1251.95 1290.85 +imu_odom_: 1691062523.963498241 0.462081 -0.208296 10.2544 -0.0458064 0.0191748 0.0490022 0.18 0 pose: 0.0 -3.17336 -3.78791 0 0.0060256 0.000849375 0.999706 0.0234521 uwb: 0.0 1251.95 1290.85 +imu_odom_: 1691062523.990458368 0.708684 -0.189142 9.84256 -0.0553937 -0.0117179 0.0447411 0.18 0 pose: 0.44011766 -3.18647 -3.78261 0 0.00719743 0.00200485 0.9997 0.0233358 uwb: 0.50107053 1251.84 1291.75 +imu_odom_: 1691062524.15442050 0.363919 -0.215478 9.92875 -0.0830906 0.0330232 0.0596548 0.18 0 pose: 0.0 -3.18647 -3.78261 0 0.00719743 0.00200485 0.9997 0.0233358 uwb: 0.0 1251.84 1291.75 +imu_odom_: 1691062524.32496319 0.746991 -0.229843 10.2592 -0.0607201 -0.0234358 0.0447411 0.18 0 pose: 0.51814609 -3.18647 -3.78261 0 0.00728051 0.00111979 0.999706 0.0231004 uwb: 0.0 1251.84 1291.75 +imu_odom_: 1691062524.57447632 0.526724 -0.28491 9.93594 -0.052198 -0.0213053 0.0596548 0.18 0 pose: 0.0 -3.18647 -3.78261 0 0.00728051 0.00111979 0.999706 0.0231004 uwb: 0.0 1251.84 1291.75 +imu_odom_: 1691062524.84444804 0.507571 -0.181959 9.65103 -0.0447411 0.04048 0.0351537 0.18 0 pose: 0.42096281 -3.19568 -3.78652 0 0.00701546 -0.0004164970.999715 0.0227993 uwb: 0.100129842 1251.64 1293.07 +imu_odom_: 1691062524.110453606 0.373495 -0.25618 9.83059 -0.0713727 -0.0191748 0.0553937 0.19 0 pose: 0.43895996 -3.2088 -3.78125 0 0.00529564 0.000658669 0.999728 0.0226936 uwb: 0.0 1251.64 1293.07 +imu_odom_: 1691062524.137466818 0.306458 -0.296881 9.53371 -0.0596548 -0.0436758 0.0479369 0.23 0 pose: 0.0 -3.2088 -3.78125 0 0.00529564 0.000658669 0.999728 0.0226936 uwb: 0.49856547 1249.41 1296.17 +imu_odom_: 1691062524.153553423 0.823605 -0.457293 10.0149 -0.072438 -0.0266316 0.0681769 0.23 0 pose: 0.33045507 -3.2088 -3.78125 0 0.00256478 -0.0008334430.999744 0.0224553 uwb: 0.0 1249.41 1296.17 +imu_odom_: 1691062524.180450854 0.21069 -0.0407014 10.1227 -0.0490022 -0.0117179 0.0436758 0.23 0 pose: 0.0 -3.2088 -3.78125 0 0.00256478 -0.0008334430.999744 0.0224553 uwb: 0.49992452 1248.46 1297.68 +imu_odom_: 1691062524.206435450 0.289698 -0.399832 9.78031 -0.0777643 0.00319579 0.0596548 0.23 0 pose: 0.43009700 -3.21799 -3.78517 0 0.00223904 -0.00212765 0.99975 0.0221254 uwb: 0.0 1248.46 1297.68 +imu_odom_: 1691062524.231431676 0.584185 -0.234632 9.89045 -0.0585895 0.0117179 0.056459 0.25 0 pose: 0.45935439 -3.23112 -3.77991 0 -0.00085358 -0.00301754 0.999757 0.0218208 uwb: 0.0 1248.46 1297.68 +imu_odom_: 1691062524.254423747 0.581791 -0.383072 9.93833 -0.0756338 0.0245011 0.0468716 0.25 0 pose: 0.0 -3.23112 -3.77991 0 -0.00085358 -0.00301754 0.999757 0.0218208 uwb: 0.0 1248.46 1297.68 +imu_odom_: 1691062524.270474772 -0.131681 -0.11971 9.76595 -0.0351537 0.0191748 0.0394148 0.18 0 pose: 0.7053037 -3.23112 -3.77991 0 -0.000215724-0.00290429 0.999759 0.0217635 uwb: 0.0 1248.46 1297.68 +imu_odom_: 1691062524.297424990 0.409408 -0.31364 10.0413 -0.0777643 -0.0117179 0.0532632 0.18 0 pose: 0.0 -3.23112 -3.77991 0 -0.000215724-0.00290429 0.999759 0.0217635 uwb: 0.99992486 1248.56 1298.85 +imu_odom_: 1691062524.323481621 0.792481 0.0622492 9.83538 -0.0532632 0.0138484 0.0479369 0.18 0 pose: 0.48963543 -3.24031 -3.78385 0 0.0019923 -0.003971 0.999758 0.0215357 uwb: 0.0 1248.56 1298.85 +imu_odom_: 1691062524.339470818 0.426168 -0.316035 9.94551 -0.0671117 -0.0245011 0.0511327 0.18 0 pose: 0.0 -3.24031 -3.78385 0 0.0019923 -0.003971 0.999758 0.0215357 uwb: 0.49864713 1250.02 1299.01 +imu_odom_: 1691062524.365417501 0.0311246 0.143652 10.5536 -0.036219 -0.00426106 0.0447411 0.19 0.02 pose: 0.43047031 -3.25344 -3.77861 0 0.000214355 -0.00559653 0.999757 0.0213115 uwb: 0.0 1250.02 1299.01 +imu_odom_: 1691062524.392428088 0.711078 0.059855 9.98143 -0.0351537 -0.0543285 0.0245011 0.19 0.02 pose: 0.0 -3.25344 -3.77861 0 0.000214355 -0.00559653 0.999757 0.0213115 uwb: 0.50076444 1250.04 1300.1 +imu_odom_: 1691062524.418559671 0.40462 -0.143652 10.5058 -0.0479369 0.0117179 0.0447411 0.2 0 pose: 0.42043495 -3.25344 -3.77861 0 0.000507784 -0.00522726 0.999763 0.0211247 uwb: 0.0 1250.04 1300.1 +imu_odom_: 1691062524.445420939 0.691924 0.0047884 10.0963 -0.0575243 -0.00319579 0.0330232 0.23 0 pose: 0.52965727 -3.26263 -3.78256 0 0.00160985 -0.0006503110.999772 0.0212607 uwb: 0.49983411 1249.32 1301.91 +imu_odom_: 1691062524.461413635 0.0694318 -0.320823 9.57681 -0.0671117 -0.00319579 0.0468716 0.23 0 pose: 0.0 -3.26263 -3.78256 0 0.00160985 -0.0006503110.999772 0.0212607 uwb: 0.0 1249.32 1301.91 +imu_odom_: 1691062524.478458280 0.332794 -0.229843 10.3597 -0.0543285 -0.036219 0.0372843 0.23 0 pose: 0.0 -3.26263 -3.78256 0 0.00160985 -0.0006503110.999772 0.0212607 uwb: 0.49930915 1250.48 1302.24 +imu_odom_: 1691062524.504518994 0.912191 -0.0023942 9.80904 -0.0468716 0.0138484 0.0308927 0.18 0 pose: 0.77949997 -3.28088 -3.77951 0 0.000289193 0.00115945 0.999773 0.0212695 uwb: 0.0 1250.48 1302.24 +imu_odom_: 1691062524.531530748 0.52433 -0.344765 9.89524 -0.0394148 -0.0287621 0.0266316 0.25 0 pose: 0.7983953 -3.28495 -3.78127 0 0.0009716 0.0014605 0.999772 0.0213033 uwb: 0.50137689 1250.37 1303.18 +imu_odom_: 1691062524.556583260 0.483629 -0.282516 9.62948 -0.0681769 0.0117179 0.0575243 0.18 -0.02 pose: 0.45088515 -3.29437 -3.77751 0 0.00384711 -0.0001610010.99976 0.0215462 uwb: 0.0 1250.37 1303.18 +imu_odom_: 1691062524.583420613 0.667982 0.0526724 10.2137 -0.036219 -0.0553937 0.0255663 0.23 0.02 pose: 0.0 -3.29437 -3.77751 0 0.00384711 -0.0001610010.99976 0.0215462 uwb: 0.49870546 1250.26 1304.13 +imu_odom_: 1691062524.608562076 0.509965 -0.222661 9.94551 -0.0479369 -0.0372843 0.0468716 0.23 0.02 pose: 0.32009599 -3.29809 -3.77602 0 0.00440185 -0.00215804 0.99976 0.0213638 uwb: 0.0 1250.26 1304.13 +imu_odom_: 1691062524.635408470 0.481235 0.0861913 9.78271 -0.0585895 -0.0170442 0.0500674 0.22 0 pose: 0.0 -3.29809 -3.77602 0 0.00440185 -0.00215804 0.99976 0.0213638 uwb: 0.49987785 1248.34 1306.67 +imu_odom_: 1691062524.660393905 0.703895 0.11971 10.3046 -0.0511327 -0.0468716 0.0266316 0.22 0 pose: 0.52079432 -3.30728 -3.77997 0 0.00415357 -0.0005943620.999763 0.021377 uwb: 0.0 1248.34 1306.67 +imu_odom_: 1691062524.685402380 0.454898 -0.114922 10.1203 -0.0692422 -0.00958738 0.0436758 0.21 0 pose: 0.44774126 -3.31672 -3.7762 0 0.0063231 0.00341269 0.999744 0.02145 uwb: 0.49982536 1248.6 1307.55 +imu_odom_: 1691062524.708398826 0.826 -0.124498 9.99819 -0.0596548 -0.0340885 0.0351537 0.21 0 pose: 0.0 -3.31672 -3.7762 0 0.0063231 0.00341269 0.999744 0.02145 uwb: 0.0 1248.6 1307.55 +imu_odom_: 1691062524.724450726 0.620098 -0.0981623 9.67257 -0.0735032 -0.0138484 0.0511327 0.18 0 pose: 0.31003440 -3.32041 -3.77473 0 0.00476772 0.004182 0.99975 0.0214253 uwb: 0.0 1248.6 1307.55 +imu_odom_: 1691062524.741496828 1.01275 -0.28491 9.76595 -0.0788296 0.0170442 0.0436758 0.18 0 pose: 0.0 -3.32041 -3.77473 0 0.00476772 0.004182 0.99975 0.0214253 uwb: 0.50131564 1249.19 1308.28 +imu_odom_: 1691062524.766385147 0.723049 0 10.0724 -0.0383495 -0.0298274 0.0308927 0.18 0 pose: 0.50099483 -3.3296 -3.77867 0 0.00971413 0.00372407 0.999719 0.0213159 uwb: 0.0 1249.19 1308.28 +imu_odom_: 1691062524.793378236 0.794875 -0.335188 9.33739 -0.0639159 -0.0170442 0.04048 0.18 0 pose: 0.7903169 -3.3296 -3.77867 0 0.01037 0.00435406 0.999709 0.0213532 uwb: 0.49861214 1247.71 1310.31 +imu_odom_: 1691062524.818375629 0.234632 -0.251391 9.99819 -0.0447411 0.0777643 0.0394148 0.2 -0.02 pose: 0.43978239 -3.34159 -3.77609 0 0.0135454 0.00341214 0.999674 0.0213886 uwb: 0.0 1247.71 1310.31 +imu_odom_: 1691062524.834403031 0.11971 -0.215478 9.7875 -0.0532632 -0.0340885 0.0479369 0.2 -0.02 pose: 0.0 -3.34159 -3.77609 0 0.0135454 0.00341214 0.999674 0.0213886 uwb: 0.50022782 1248.84 1310.61 +imu_odom_: 1691062524.860534905 0.4956 0.00957681 10.4698 -0.0490022 0.0447411 0.0298274 0.18 -0.02 pose: 0.41024795 -3.34779 -3.7756 0 0.00873267 0.00284076 0.99973 0.0213236 uwb: 0.0 1248.84 1310.61 +imu_odom_: 1691062524.887409005 0.574608 -0.143652 9.9503 -0.0532632 0.00426106 0.0340885 0.22 0 pose: 0.0 -3.34779 -3.7756 0 0.00873267 0.00284076 0.99973 0.0213236 uwb: 0.50055446 1247.13 1312.36 +imu_odom_: 1691062524.912395898 0.423774 -0.158017 9.48104 -0.0777643 -0.00319579 0.0447411 0.18 0 pose: 0.33022175 -3.35192 -3.77737 0 0.00736597 0.00479471 0.999731 0.0214849 uwb: 0.0 1247.13 1312.36 +imu_odom_: 1691062524.939385196 0.251391 -0.217872 9.56962 -0.0628506 -0.0266316 0.0372843 0.23 0.02 pose: 0.0 -3.35192 -3.77737 0 0.00736597 0.00479471 0.999731 0.0214849 uwb: 0.49931499 1247.36 1313.21 +imu_odom_: 1691062524.964363923 0.572214 -0.40462 9.95988 -0.0703074 -0.0330232 0.0479369 0.23 0.02 pose: 0.44970692 -3.36388 -3.77486 0 0.00619687 0.00300043 0.999746 0.0214676 uwb: 0.0 1247.36 1313.21 +imu_odom_: 1691062524.981439481 1.14682 -0.265756 10.2544 -0.0330232 0.00426106 0.0276969 0.23 -0.02 pose: 0.0 -3.36388 -3.77486 0 0.00619687 0.00300043 0.999746 0.0214676 uwb: 0.49990410 1249.45 1312.48 +imu_odom_: 1691062525.6417335 0.667982 -0.009576819.88566 -0.0617853 -0.00213053 0.0436758 0.23 -0.02 pose: 0.58979941 -3.37424 -3.77607 0 0.00574801 -0.0001897990.999754 0.021432 uwb: 0.0 1249.45 1312.48 +imu_odom_: 1691062525.33416263 0.608127 -0.184354 9.68455 -0.0490022 -0.0181095 0.0458064 0.23 0 pose: 0.35041496 -3.38076 -3.77887 0 0.00808727 0.00180955 0.999735 0.021454 uwb: 0.50233061 1250.96 1312.68 +imu_odom_: 1691062525.49474000 0.354342 -0.47884 9.61272 -0.0500674 0.015979 0.052198 0.23 0 pose: 0.0 -3.38076 -3.77887 0 0.00808727 0.00180955 0.999735 0.021454 uwb: 0.0 1250.96 1312.68 +imu_odom_: 1691062525.76419850 0.399832 -0.0550666 9.94312 -0.036219 0.00639159 0.04048 0.25 0 pose: 0.6962338 -3.38343 -3.78002 0 0.00882255 0.00171181 0.99973 0.0214299 uwb: 0.0 1250.96 1312.68 +imu_odom_: 1691062525.101556945 0.430956 -0.229843 10.0748 -0.0713727 -0.00319579 0.0575243 0.25 0 pose: 0.0 -3.38343 -3.78002 0 0.00882255 0.00171181 0.99973 0.0214299 uwb: 0.49689742 1249.92 1314.75 +imu_odom_: 1691062525.128357267 0.514753 -0.131681 9.8665 -0.0532632 0.0223706 0.0490022 0.21 0 pose: 0.43003587 -3.38738 -3.77083 0 0.00912838 0.000784927 0.999732 0.0212481 uwb: 0.50095997 1249.83 1315.77 +imu_odom_: 1691062525.153349124 0.253785 -0.320823 10.0724 -0.0500674 0.0106526 0.0500674 0.19 0 pose: 0.52020534 -3.39656 -3.77477 0 0.00523669 0.00159581 0.999765 0.020994 uwb: 0.0 1249.83 1315.77 +imu_odom_: 1691062525.180374884 0.533907 -0.201113 9.84256 -0.0649811 -0.04048 0.052198 0.23 0 pose: 0.0 -3.39656 -3.77477 0 0.00523669 0.00159581 0.999765 0.020994 uwb: 0.49961259 1250.84 1315.91 +imu_odom_: 1691062525.196459743 0.723049 -0.0095768110.1227 -0.0607201 -0.0213053 0.0372843 0.23 0 pose: 0.51966872 -3.40971 -3.76954 0 0.0038543 0.00191904 0.999776 0.0207313 uwb: 0.0 1250.84 1315.91 +imu_odom_: 1691062525.223328309 0.610521 -0.220267 10.3669 -0.0532632 0.04048 0.0479369 0.18 -0.02 pose: 0.0 -3.40971 -3.76954 0 0.0038543 0.00191904 0.999776 0.0207313 uwb: 0.0 1250.84 1315.91 +imu_odom_: 1691062525.248471528 0.596156 -0.184354 9.73004 -0.0479369 -0.0372843 0.0372843 0.2 0 pose: 0.62957643 -3.41889 -3.7735 0 0.00877036 0.000223171 0.999752 0.020492 uwb: 0.50064791 1252.92 1315.69 +imu_odom_: 1691062525.275454416 0.342371 -0.433351 9.73961 -0.0713727 -0.0245011 0.0468716 0.2 0 pose: 0.0 -3.41889 -3.7735 0 0.00877036 0.000223171 0.999752 0.020492 uwb: 0.0 1252.92 1315.69 +imu_odom_: 1691062525.300364031 0.677559 -0.011971 9.46428 -0.0447411 -0.04048 0.0543285 0.2 0 pose: 0.8027410 -3.41889 -3.7735 0 0.00950634 0.000781725 0.999744 0.0205054 uwb: 0.49912555 1252.47 1316.83 +imu_odom_: 1691062525.317397014 0.639252 -0.306458 9.90721 -0.0735032 0.0170442 0.0585895 0.2 0 pose: 0.0 -3.41889 -3.7735 0 0.00950634 0.000781725 0.999744 0.0205054 uwb: 0.0 1252.47 1316.83 +imu_odom_: 1691062525.342390622 0.531513 -0.160412 9.21528 -0.052198 0.0671117 0.0319579 0.18 0.02 pose: 0.52116483 -3.43203 -3.76828 0 0.00987354 0.000676222 0.999744 0.0203698 uwb: 0.50051959 1253.01 1317.51 +imu_odom_: 1691062525.368511129 0.316035 -0.19393 9.81623 -0.0894822 0.00532632 0.0617853 0.18 0.02 pose: 0.0 -3.43203 -3.76828 0 0.00987354 0.000676222 0.999744 0.0203698 uwb: 0.0 1253.01 1317.51 +imu_odom_: 1691062525.393336168 0.531513 -0.270545 10.0748 -0.0671117 -0.015979 0.0490022 0.19 0 pose: 0.41930641 -3.44121 -3.77225 0 0.0100471 0.000855437 0.999747 0.0201139 uwb: 0.50048751 1253.26 1318.4 +imu_odom_: 1691062525.420398675 0.52433 -0.277727 9.93594 -0.0500674 0.00745685 0.0308927 0.2 0 pose: 0.50051376 -3.45039 -3.77622 0 0.00547846 0.000501047 0.999787 0.0198699 uwb: 0.0 1253.26 1318.4 +imu_odom_: 1691062525.445365743 0.335188 -0.260968 10.0724 -0.0500674 -0.0532632 0.056459 0.19 0 pose: 0.0 -3.45039 -3.77622 0 0.00547846 0.000501047 0.999787 0.0198699 uwb: 0.49848686 1252.5 1319.72 +imu_odom_: 1691062525.462304818 0.246603 -0.332794 9.7444 -0.0436758 -0.0181095 0.0340885 0.19 0 pose: 0.0 -3.45039 -3.77622 0 0.00547846 0.000501047 0.999787 0.0198699 uwb: 0.0 1252.5 1319.72 +imu_odom_: 1691062525.487370460 0.629675 -0.100556 9.73243 -0.0415453 -0.00532632 0.0458064 0.23 0 pose: 0.52896914 -3.46354 -3.77102 0 0.00538109 -0.00380705 0.999782 0.0198074 uwb: 0.50146742 1251.52 1321.36 +imu_odom_: 1691062525.514309603 0.47884 -0.301669 10.173 -0.0426106 -0.0351537 0.0319579 0.23 -0.02 pose: 0.24023611 -3.46354 -3.77102 0 0.00348616 -0.00356723 0.999794 0.0196732 uwb: 0.0 1251.52 1321.36 +imu_odom_: 1691062525.539493652 0.354342 -0.220267 9.73482 -0.0639159 -0.0394148 0.0447411 0.23 -0.02 pose: 0.34995716 -3.47272 -3.77499 0 0.00436379 -0.00175298 0.999796 0.0196285 uwb: 0.49928303 1250.05 1323.52 +imu_odom_: 1691062525.556465973 0.612916 -0.222661 9.94551 -0.0671117 -0.02024 0.0266316 0.23 0 pose: 0.6946007 -3.47272 -3.77499 0 0.00429804 -0.00238389 0.999795 0.0196513 uwb: 0.0 1250.05 1323.52 +imu_odom_: 1691062525.582310005 0.397437 -0.562637 9.80186 -0.0713727 -0.00319579 0.0447411 0.23 0 pose: 0.0 -3.47272 -3.77499 0 0.00429804 -0.00238389 0.999795 0.0196513 uwb: 0.49952802 1248.62 1325.18 +imu_odom_: 1691062525.609328474 0.634463 -0.21069 9.64624 -0.0191748 0.052198 0.0223706 0.23 -0.02 pose: 0.52064863 -3.48587 -3.7698 0 0.00310155 -0.00287744 0.999797 0.019694 uwb: 0.0 1248.62 1325.18 +imu_odom_: 1691062525.635316285 0.682347 -0.0550666 9.98382 -0.0660464 -0.0170442 0.052198 0.23 -0.02 pose: 0.0 -3.48587 -3.7698 0 0.00310155 -0.00287744 0.999797 0.019694 uwb: 0.50056334 1249.86 1325.03 +imu_odom_: 1691062525.652448134 0.1652 -0.181959 9.93115 -0.0234358 0.0372843 0.0138484 0.25 0 pose: 0.43099537 -3.49505 -3.77377 0 0.00377378 -0.00482544 0.999786 0.0197514 uwb: 0.0 1249.86 1325.03 +imu_odom_: 1691062525.678493398 0.265756 -0.222661 9.83777 -0.0436758 -0.04048 0.056459 0.25 0 pose: 0.0 -3.49505 -3.77377 0 0.00377378 -0.00482544 0.999786 0.0197514 uwb: 0.50129243 1248.2 1326.98 +imu_odom_: 1691062525.705314134 0.533907 0.131681 10.4076 -0.0415453 -0.0383495 0.0340885 0.23 0 pose: 0.52893706 -3.49902 -3.7646 0 0.00591515 -0.0013302 0.999784 0.0198781 uwb: 0.0 1248.2 1326.98 +imu_odom_: 1691062525.721294586 0.320823 -0.167594 9.73961 -0.0692422 0.0308927 0.0468716 0.23 0 pose: 0.0 -3.49902 -3.7646 0 0.00591515 -0.0013302 0.999784 0.0198781 uwb: 0.0 1248.2 1326.98 +imu_odom_: 1691062525.748297306 0.56982 -0.356736 9.62708 -0.0511327 -0.0213053 0.0319579 0.23 0 pose: 0.42924843 -3.5082 -3.76857 0 0.00286523 2.50328e-05 0.9998 0.0198045 uwb: 0.49801732 1247.98 1327.88 +imu_odom_: 1691062525.773290039 0.579397 -0.411803 9.32063 -0.0703074 0.0223706 0.04048 0.2 0 pose: 0.44038620 -3.51737 -3.77255 0 0.0023207 0.00144404 0.999799 0.0198381 uwb: 0.0 1247.98 1327.88 +imu_odom_: 1691062525.800290717 0.0909797 -0.268151 9.80665 -0.0649811 0.0426106 0.0543285 0.21 0.02 pose: 0.0 -3.51737 -3.77255 0 0.0023207 0.00144404 0.999799 0.0198381 uwb: 0.50057792 1249.69 1327.76 +imu_odom_: 1691062525.816347579 0.035913 -0.167594 9.93115 -0.0735032 0.0276969 0.0458064 0.21 0.02 pose: 0.50995709 -3.53052 -3.76734 0 0.0035435 -0.00248614 0.999794 0.0198339 uwb: 0.0 1249.69 1327.76 +imu_odom_: 1691062525.843306845 0.579397 -0.0023942 9.48822 -0.0628506 -0.0276969 0.0383495 0.24 0 pose: 0.0 -3.53052 -3.76734 0 0.0035435 -0.00248614 0.999794 0.0198339 uwb: 0.49943469 1248.63 1329.34 +imu_odom_: 1691062525.869293197 0.0215478 -0.292093 10.1562 -0.052198 0.0340885 0.0276969 0.18 -0.05 pose: 0.62973100 -3.5397 -3.77132 0 0.00123138 -0.0002617860.999806 0.0196489 uwb: 0.0 1248.63 1329.34 +imu_odom_: 1691062525.896342871 0.296881 -0.371101 9.9527 -0.0628506 -0.0308927 0.0681769 0.24 0 pose: 0.8002912 -3.5397 -3.77132 0 0.000287731 -0.0003714440.999806 0.0196962 uwb: 0.49879016 1248.33 1330.74 +imu_odom_: 1691062525.922416424 0.912191 0.131681 9.91678 -0.0426106 0.00745685 0.02024 0.18 0 pose: 0.25072059 -3.54368 -3.76215 0 -0.00206395 -0.00127686 0.999803 0.0197017 uwb: 0.0 1248.33 1330.74 +imu_odom_: 1691062525.949332236 0.814029 -0.107739 10.0437 -0.0809601 0.0149137 0.056459 0.18 0 pose: 0.0 -3.54368 -3.76215 0 -0.00206395 -0.00127686 0.999803 0.0197017 uwb: 0.49991589 1245.36 1334 +imu_odom_: 1691062525.974269848 0.454898 -0.110133 9.991 -0.0596548 -0.00319579 0.0383495 0.18 0 pose: 0.27942386 -3.55285 -3.76612 0 -0.00210538 -0.00262291 0.999804 0.0194969 uwb: 0.0 1245.36 1334 +imu_odom_: 1691062526.1269069 0.529119 -0.241814 10.0437 -0.0692422 -0.0106526 0.0255663 0.18 0 pose: 0.53132560 -3.56202 -3.7701 0 0.00173308 -0.0002514240.999809 0.0194571 uwb: 0.50085790 1243.43 1336.28 +imu_odom_: 1691062526.26265890 0.694318 -0.220267 9.84975 -0.0585895 -0.0234358 0.0383495 0.18 -0.02 pose: 0.0 -3.56202 -3.7701 0 0.00173308 -0.0002514240.999809 0.0194571 uwb: 0.49912561 1241.94 1337.93 +imu_odom_: 1691062526.43308793 0.512359 -0.0790087 9.75398 -0.0671117 0.0245011 0.0319579 0.18 -0.02 pose: 0.51863924 -3.57518 -3.76491 0 0.00523432 -0.0003524670.999793 0.019659 uwb: 0.0 1241.94 1337.93 +imu_odom_: 1691062526.68309989 0.129287 -0.0981623 9.52413 -0.0511327 0 0.0415453 0.21 0 pose: 0.0 -3.57518 -3.76491 0 0.00523432 -0.0003524670.999793 0.019659 uwb: 0.0 1241.94 1337.93 +imu_odom_: 1691062526.95395834 0.555455 -0.316035 9.96467 -0.052198 0.0181095 0.0213053 0.23 0 pose: 0.58989303 -3.58169 -3.76773 0 0.00407218 0.00182892 0.999795 0.0197293 uwb: 0.49982853 1242.28 1338.41 +imu_odom_: 1691062526.120276875 0.112527 -0.296881 9.45231 -0.0532632 0.0127832 0.0447411 0.23 0 pose: 0.0 -3.58169 -3.76773 0 0.00407218 0.00182892 0.999795 0.0197293 uwb: 0.0 1242.28 1338.41 +imu_odom_: 1691062526.147348721 0.172383 -0.0646434 9.71088 -0.0223706 -0.00745685 0.0234358 0.23 0 pose: 0.6958841 -3.58435 -3.76889 0 0.00430544 0.00121883 0.999794 0.0197895 uwb: 0.50253496 1242.93 1338.69 +imu_odom_: 1691062526.163261807 0.550666 -0.0287304 9.94073 -0.0713727 0.0287621 0.0585895 0.23 0 pose: 0.0 -3.58435 -3.76889 0 0.00430544 0.00121883 0.999794 0.0197895 uwb: 0.0 1242.93 1338.69 +imu_odom_: 1691062526.190271242 0.0814029 -0.0143652 9.98622 -0.0287621 -0.00319579 0.0351537 0.23 -0.02 pose: 0.52028130 -3.5975 -3.76369 0 0.00173553 -0.0004452610.999799 0.0199531 uwb: 0.49993352 1242.36 1339.77 +imu_odom_: 1691062526.215321143 0.282516 -0.268151 10.003 -0.052198 -0.00213053 0.0585895 0.23 -0.02 pose: 0.0 -3.5975 -3.76369 0 0.00173553 -0.0004452610.999799 0.0199531 uwb: 0.0 1242.36 1339.77 +imu_odom_: 1691062526.242320078 0.572214 0.299275 10.4004 -0.0383495 -0.0181095 0.0447411 0.23 0.02 pose: 0.43977094 -3.60668 -3.76766 0 0.00016756 0.00247938 0.999797 0.019982 uwb: 0.49991019 1240.94 1341.55 +imu_odom_: 1691062526.258255913 0.220267 -0.244209 9.84017 -0.0628506 0.0255663 0.052198 0.23 0.02 pose: 0.0 -3.60668 -3.76766 0 0.00016756 0.00247938 0.999797 0.019982 uwb: 0.0 1240.94 1341.55 +imu_odom_: 1691062526.275266736 0.248997 -0.277727 10.4387 -0.0617853 -0.0394148 0.0223706 0.25 0.02 pose: 0.51062799 -3.60668 -3.76766 0 -0.00269741 0.00229922 0.999798 0.019778 uwb: 0.0 1240.94 1341.55 +imu_odom_: 1691062526.301316089 0.627281 -0.418985 9.73961 -0.072438 -0.0394148 0.0607201 0.25 0.02 pose: 0.0 -3.60668 -3.76766 0 -0.00269741 0.00229922 0.999798 0.019778 uwb: 0.49850448 1239.27 1343.62 +imu_odom_: 1691062526.318536893 0.131681 -0.237026 9.80186 -0.0383495 -0.0308927 0.0351537 0.25 0.02 pose: 0.42923397 -3.61983 -3.76246 0 -0.00346461 0.00266628 0.999797 0.0196894 uwb: 0.0 1239.27 1343.62 +imu_odom_: 1691062526.343304777 0.349553 -0.0143652 9.78271 -0.0713727 0.0245011 0.056459 0.25 0.02 pose: 0.0 -3.61983 -3.76246 0 -0.00346461 0.00266628 0.999797 0.0196894 uwb: 0.50125173 1240.76 1343.2 +imu_odom_: 1691062526.360279728 0.548272 -0.0646434 9.78271 -0.0628506 -0.0330232 0.04048 0.23 0 pose: 0.43254408 -3.62901 -3.76644 0 -0.00202539 -6.5563e-05 0.999807 0.019524 uwb: 0.0 1240.76 1343.2 +imu_odom_: 1691062526.376271558 0.76375 -0.0957681 10.1778 -0.0372843 -0.0223706 0.0351537 0.23 0 pose: 0.0 -3.62901 -3.76644 0 -0.00202539 -6.5563e-05 0.999807 0.019524 uwb: 0.0 1240.76 1343.2 +imu_odom_: 1691062526.393380664 0.368707 -0.409408 9.27993 -0.0671117 0.0138484 0.0671117 0.23 0 pose: 0.0 -3.62901 -3.76644 0 -0.00202539 -6.5563e-05 0.999807 0.019524 uwb: 0.50022808 1239.02 1345.19 +imu_odom_: 1691062526.419379855 -0.0981623 -0.184354 9.55765 -0.0319579 0.0553937 0.036219 0.25 0.02 pose: 0.41887781 -3.64216 -3.76124 0 -0.00243626 0.00252652 0.999807 0.0193241 uwb: 0.0 1239.02 1345.19 +imu_odom_: 1691062526.443251235 0.287304 -0.241814 9.8258 -0.0852212 0.0245011 0.0660464 0.24 0 pose: 0.68977416 -3.64876 -3.76411 0 -0.00349521 0.00187638 0.999809 0.0191584 uwb: 0.49725626 1239.86 1345.76 +imu_odom_: 1691062526.467308682 0.416591 -0.268151 10.2639 -0.0575243 -0.00958738 0.0543285 0.24 0 pose: 0.0 -3.64876 -3.76411 0 -0.00349521 0.00187638 0.999809 0.0191584 uwb: 0.0 1239.86 1345.76 +imu_odom_: 1691062526.492364415 0.172383 -0.349553 10.0868 -0.0617853 -0.0298274 0.0500674 0.19 0 pose: 0.7029417 -3.65133 -3.76523 0 -0.0040338 0.00122138 0.999809 0.0190676 uwb: 0.50178836 1239.6 1346.68 +imu_odom_: 1691062526.519423429 0.608127 -0.347159 10.0317 -0.0553937 -0.0490022 0.0639159 0.19 0 pose: 0.0 -3.65133 -3.76523 0 -0.0040338 0.00122138 0.999809 0.0190676 uwb: 0.0 1239.6 1346.68 +imu_odom_: 1691062526.535307060 0.423774 -0.344765 9.67736 -0.0585895 0.0117179 0.0511327 0.18 -0.02 pose: 0.48964444 -3.66449 -3.76005 0 -0.00360327 -0.00169218 0.999818 0.0186358 uwb: 0.49821575 1238.38 1348.14 +imu_odom_: 1691062526.562224336 0.68953 -0.208296 9.76595 -0.04048 -0.00745685 0.0458064 0.18 -0.02 pose: 0.0 -3.66449 -3.76005 0 -0.00360327 -0.00169218 0.999818 0.0186358 uwb: 0.0 1238.38 1348.14 +imu_odom_: 1691062526.587259946 0.3304 -0.378284 9.95988 -0.056459 0.0149137 0.0500674 0.25 0.02 pose: 0.51917306 -3.67366 -3.76405 0 -0.00121812 -0.00402203 0.999826 0.0181841 uwb: 0.49988978 1239.96 1348.48 +imu_odom_: 1691062526.614550815 0.505177 -0.222661 9.84256 -0.0660464 -0.0553937 0.0596548 0.22 0 pose: 0.16062407 -3.67366 -3.76405 0 -1.57893e-05-0.00438296 0.999826 0.0181191 uwb: 0.0 1239.96 1348.48 +imu_odom_: 1691062526.630353953 0.512359 0.0790087 9.92397 -0.0543285 -0.0394148 0.0500674 0.22 0 pose: 0.43906517 -3.68289 -3.76044 0 -0.00037085 -0.00527478 0.999825 0.0179278 uwb: 0.50117007 1238.01 1350.87 +imu_odom_: 1691062526.657212318 0.213084 -0.134075 9.95748 -0.0511327 -0.0117179 0.0415453 0.25 0.02 pose: 0.7138783 -3.68683 -3.7589 0 0.000355413 -0.00485311 0.999829 0.0178579 uwb: 0.0 1238.01 1350.87 +imu_odom_: 1691062526.682385874 0.620098 -0.344765 9.84017 -0.0426106 0 0.0415453 0.25 0.02 pose: 0.0 -3.68683 -3.7589 0 0.000355413 -0.00485311 0.999829 0.0178579 uwb: 0.50131007 1239.72 1350.76 +imu_odom_: 1691062526.709279527 0.54109 -0.390255 10.1251 -0.0490022 -0.0181095 0.0692422 0.23 -0.02 pose: 0.42953144 -3.68683 -3.7589 0 0.00237217 -0.00177337 0.999841 0.0175743 uwb: 0.0 1239.72 1350.76 +imu_odom_: 1691062526.734277224 0.581791 0.229843 10.4531 -0.0319579 -0.0415453 0.0372843 0.23 -0.02 pose: 0.0 -3.68683 -3.7589 0 0.00237217 -0.00177337 0.999841 0.0175743 uwb: 0.49977603 1240.61 1351.4 +imu_odom_: 1691062526.751269090 0.339977 -0.445322 9.66779 -0.052198 0.0181095 0.0532632 0.23 0 pose: 0.51865686 -3.69599 -3.76291 0 0.00318137 -0.00251556 0.99984 0.017427 uwb: 0.0 1240.61 1351.4 +imu_odom_: 1691062526.776207875 0.476446 -0.229843 9.67497 -0.0266316 0.0447411 0.0372843 0.23 0 pose: 0.0 -3.69599 -3.76291 0 0.00318137 -0.00251556 0.99984 0.017427 uwb: 0.0 1240.61 1351.4 +imu_odom_: 1691062526.803219935 0.292093 -0.42138 9.41161 -0.0607201 -0.0372843 0.0639159 0.21 0 pose: 0.52014422 -3.70916 -3.75777 0 0.00471266 -0.00198167 0.99984 0.0171131 uwb: 0.0 1240.61 1351.4 +imu_odom_: 1691062526.828265753 0.536301 -0.141258 9.68694 -0.0351537 -0.0319579 0.0394148 0.21 0 pose: 0.0 -3.70916 -3.75777 0 0.00471266 -0.00198167 0.99984 0.0171131 uwb: 0.99921669 1240.22 1352.81 +imu_odom_: 1691062526.845316822 0.620098 -0.110133 9.89045 -0.0735032 -0.0351537 0.0532632 0.23 0 pose: 0.41992771 -3.71832 -3.7618 0 0.00283516 -0.0004400250.999852 0.0169909 uwb: 0.0 1240.22 1352.81 +imu_odom_: 1691062526.870196696 0.275333 0.107739 10.1466 -0.0607201 -0.00319579 0.056459 0.23 0 pose: 0.0 -3.71832 -3.7618 0 0.00283516 -0.0004400250.999852 0.0169909 uwb: 0.0 1240.22 1352.81 +imu_odom_: 1691062526.897199423 0.296881 -0.335188 9.97185 -0.0820254 -0.0692422 0.0575243 0.19 0 pose: 0.52125246 -3.7315 -3.75668 0 0.00458952 0.000418774 0.99985 0.0167042 uwb: 0.49814284 1240.53 1353.93 +imu_odom_: 1691062526.922373270 0.186748 -0.483629 10.2352 -0.056459 0.0245011 0.0383495 0.19 0 pose: 0.61849425 -3.74065 -3.76071 0 0.00292896 0.000595798 0.999864 0.0162013 uwb: 0.0 1240.53 1353.93 +imu_odom_: 1691062526.939368636 0.859518 -0.0574608 9.7444 -0.0660464 -0.0692422 0.0532632 0.19 0 pose: 0.0 -3.74065 -3.76071 0 0.00292896 0.000595798 0.999864 0.0162013 uwb: 0.50186710 1241.78 1354.42 +imu_odom_: 1691062526.955191898 0.931344 -0.0742203 9.07163 -0.0479369 -0.0426106 0.0788296 0.19 0 pose: 0.0 -3.74065 -3.76071 0 0.00292896 0.000595798 0.999864 0.0162013 uwb: 0.0 1241.78 1354.42 +imu_odom_: 1691062526.972353207 0.80924 -0.361524 10.1801 -0.0468716 0.00213053 0.111853 0.22 0.23 pose: 0.8150193 -3.74065 -3.76071 0 0.00223282 1.94351e-05 0.999866 0.0162049 uwb: 0.0 1241.78 1354.42 +imu_odom_: 1691062526.989238333 1.56581 -0.272939 10.7141 -0.0500674 -0.04048 0.183225 0.22 0.23 pose: 0.0 -3.74065 -3.76071 0 0.00223282 1.94351e-05 0.999866 0.0162049 uwb: 0.0 1241.78 1354.42 +imu_odom_: 1691062527.5187583 1.72383 -0.342371 9.18655 -0.0479369 0.00958738 0.271642 0.22 0.23 pose: 0.0 -3.74065 -3.76071 0 0.00223282 1.94351e-05 0.999866 0.0162049 uwb: 0.0 1241.78 1354.42 +imu_odom_: 1691062527.22164872 1.69509 -0.366313 10.3884 -0.0585895 0.0287621 0.361125 0.12 0.29 pose: 0.56960066 -3.75382 -3.7556 0 0.00535364 -0.0004414510.999865 0.0155306 uwb: 0.0 1241.78 1354.42 +imu_odom_: 1691062527.39247151 1.38385 -0.490811 9.44991 -0.0660464 0 0.415453 0.11 0.38 pose: 0.0 -3.75382 -3.7556 0 0.00535364 -0.0004414510.999865 0.0155306 uwb: 0.99996043 1245.02 1353.19 +imu_odom_: 1691062527.57187145 1.14443 -0.248997 9.84496 -0.0458064 0.0340885 0.425041 0.11 0.38 pose: 0.67893686 -3.76299 -3.75959 0 0.0118352 -0.001626 0.999898 0.00786099 uwb: 0.0 1245.02 1353.19 +imu_odom_: 1691062527.74241135 1.00317 0.0143652 10.0197 -0.0447411 0.0181095 0.471912 0.1 0.44 pose: 0.0 -3.76299 -3.75959 0 0.0118352 -0.001626 0.999898 0.00786099 uwb: 0.0 1245.02 1353.19 +imu_odom_: 1691062527.90445867 0.351948 -0.328006 9.50259 -0.0681769 0.0394148 0.552872 0.1 0.44 pose: 0.0 -3.76299 -3.75959 0 0.0118352 -0.001626 0.999898 0.00786099 uwb: 0.49921621 1247.29 1352.49 +imu_odom_: 1691062527.108457314 0.895431 -0.830788 9.98622 -0.0607201 -0.015979 0.599744 0.1 0.44 pose: 0.34045860 -3.76299 -3.75959 0 0.0145754 -0.00147333 0.999892 0.00118648 uwb: 0.0 1247.29 1352.49 +imu_odom_: 1691062527.125372191 0.821211 -0.505177 9.77553 -0.0383495 -0.00639159 0.635963 0.08 0.5 pose: 0.44208086 -3.76844 -3.76189 0 0.0140795 -0.00322281 0.999844 -0.0101928 uwb: 0.0 1247.29 1352.49 +imu_odom_: 1691062527.142196368 0.833182 -0.265756 9.99819 -0.0607201 0.0181095 0.678573 0.08 0.5 pose: 0.6762567 -3.77218 -3.76353 0 0.0144543 -0.00375723 0.999814 -0.0122163 uwb: 0.50103313 1249.42 1352.26 +imu_odom_: 1691062527.159312769 0.603339 -0.158017 9.80665 -0.0511327 0.0191748 0.66366 0.09 0.67 pose: 0.0 -3.77218 -3.76353 0 0.0144543 -0.00375723 0.999814 -0.0122163 uwb: 0.0 1249.42 1352.26 +imu_odom_: 1691062527.176311638 0.416591 -0.160412 9.75637 -0.0308927 -0.00426106 0.639159 0.06 0.55 pose: 0.44092888 -3.77214 -3.76349 0 0.0150727 -0.00289164 0.999546 -0.0259326 uwb: 0.0 1249.42 1352.26 +imu_odom_: 1691062527.192447543 0.517148 -0.0335188 9.93354 -0.0468716 -0.00213053 0.647681 0.06 0.58 pose: 0.0 -3.77214 -3.76349 0 0.0150727 -0.00289164 0.999546 -0.0259326 uwb: 0.49883708 1249.04 1353.68 +imu_odom_: 1691062527.210446741 0.751779 -0.320823 10.1466 -0.052198 0.00745685 0.638093 0.06 0.58 pose: 0.0 -3.77214 -3.76349 0 0.0150727 -0.00289164 0.999546 -0.0259326 uwb: 0.0 1249.04 1353.68 +imu_odom_: 1691062527.227163885 0.672771 -0.325611 10.1514 -0.0490022 0.00426106 0.585895 0.05 0.5 pose: 0.23900841 -3.77218 -3.76353 0 0.0130678 -0.00156521 0.999365 -0.0331162 uwb: 0.49876708 1249.89 1354.23 +imu_odom_: 1691062527.243222213 0.622492 -0.0622492 9.69412 -0.0490022 -0.00745685 0.548611 0.05 0.5 pose: 0.0 -3.77218 -3.76353 0 0.0130678 -0.00156521 0.999365 -0.0331162 uwb: 0.0 1249.89 1354.23 +imu_odom_: 1691062527.260161297 0.56982 -0.0526724 9.71567 -0.0543285 -0.00106526 0.52411 0.05 0.5 pose: 0.35132806 -3.77621 -3.75438 0 0.0137531 -0.00273612 0.998956 -0.0434742 uwb: 0.0 1249.89 1354.23 +imu_odom_: 1691062527.277218786 0.708684 -0.1652 10.003 -0.0511327 -0.00213053 0.499609 0.04 0.35 pose: 0.0 -3.77621 -3.75438 0 0.0137531 -0.00273612 0.998956 -0.0434742 uwb: 0.50069192 1249.81 1355.43 +imu_odom_: 1691062527.294273359 0.737414 -0.342371 9.9096 -0.0490022 -0.0127832 0.46339 0.04 0.35 pose: 0.0 -3.77621 -3.75438 0 0.0137531 -0.00273612 0.998956 -0.0434742 uwb: 0.0 1249.81 1355.43 +imu_odom_: 1691062527.312163192 0.723049 -0.196325 9.84017 -0.056459 -0.00852212 0.430367 0.04 0.35 pose: 0.75926943 -3.78534 -3.75834 0 0.0144937 -0.0006279610.997998 -0.0615611 uwb: 0.0 1249.81 1355.43 +imu_odom_: 1691062527.329376126 0.68953 -0.0430956 9.87129 -0.056459 0.00213053 0.394148 0.04 0.29 pose: 0.0 -3.78534 -3.75834 0 0.0144937 -0.0006279610.997998 -0.0615611 uwb: 0.50117603 1250.81 1355.53 +imu_odom_: 1691062527.355307080 0.521936 -0.172383 9.94551 -0.0543285 0 0.340885 0.03 0.26 pose: 0.8004083 -3.78538 -3.75838 0 0.0149786 -5.24196e-060.997894 -0.0631116 uwb: 0.0 1250.81 1355.53 +imu_odom_: 1691062527.372428147 0.531513 -0.208296 9.88087 -0.0511327 0.00639159 0.30147 0.03 0.26 pose: 0.0 -3.78538 -3.75838 0 0.0149786 -5.24196e-060.997894 -0.0631116 uwb: 0.0 1250.81 1355.53 +imu_odom_: 1691062527.389172997 0.071826 -0.201113 9.83059 -0.0639159 0.0436758 0.213053 0.03 0.23 pose: 0.0 -3.78538 -3.75838 0 0.0149786 -5.24196e-060.997894 -0.0631116 uwb: 0.49937370 1252.92 1355.22 +imu_odom_: 1691062527.406288523 -0.471658 0.253785 10.2089 -0.0458064 0.0649811 0.0980043 0.03 0.23 pose: 0.77172833 -3.78538 -3.75838 0 0.00999302 0.00184765 0.997148 -0.0747837 uwb: 0.0 1252.92 1355.22 +imu_odom_: 1691062527.423141281 -1.35751 0.251391 10.1107 -0.0756338 0.0330232 0.140615 0.11 0.29 pose: 0.0 -3.78538 -3.75838 0 0.00999302 0.00184765 0.997148 -0.0747837 uwb: 0.0 1252.92 1355.22 +imu_odom_: 1691062527.439262895 -0.739808 -0.830788 9.8282 -0.0862864 -0.110787 0.219444 0.11 0.29 pose: 0.26838248 -3.78538 -3.75838 0 0.0065763 0.00227325 0.997075 -0.0761178 uwb: 0.49856002 1250.6 1357.87 +imu_odom_: 1691062527.456132568 0.234632 -0.938527 9.75637 -0.0436758 -0.0862864 0.192813 0.11 0.29 pose: 0.7006672 -3.78538 -3.75838 0 0.00575905 0.00229313 0.997053 -0.0764686 uwb: 0.0 1250.6 1357.87 +imu_odom_: 1691062527.482255421 0.641646 0.299275 9.70849 -0.0575243 0.015979 0.22264 0.1 0.14 pose: 0.33986073 -3.78538 -3.75838 0 0.00425475 0.000561499 0.996864 -0.0790205 uwb: 0.50114979 1251.11 1358.6 +imu_odom_: 1691062527.499143468 0.292093 0.0742203 9.90242 -0.0649811 0.0181095 0.217314 0.14 0.14 pose: 0.0 -3.78538 -3.75838 0 0.00425475 0.000561499 0.996864 -0.0790205 uwb: 0.0 1251.11 1358.6 +imu_odom_: 1691062527.516130380 0.56982 -0.277727 10.2137 -0.0479369 -0.0553937 0.185356 0.14 0.14 pose: 0.41881667 -3.79452 -3.76243 0 0.00412068 0.00273711 0.996564 -0.0826793 uwb: 0.0 1251.11 1358.6 +imu_odom_: 1691062527.532193083 1.05105 -0.366313 9.64863 -0.0607201 -0.0756338 0.154463 0.08 0 pose: 0.0 -3.79452 -3.76243 0 0.00412068 0.00273711 0.996564 -0.0826793 uwb: 0.49880208 1252.4 1358.44 +imu_odom_: 1691062527.548127463 1.69749 -0.126893 9.93594 -0.0394148 -0.0351537 0.0639159 0.08 0 pose: 0.0 -3.79452 -3.76243 0 0.00412068 0.00273711 0.996564 -0.0826793 uwb: 0.0 1252.4 1358.44 +imu_odom_: 1691062527.563123344 1.5275 0.237026 9.65821 -0.0639159 0.0149137 -0.0191748 0.08 0 pose: 0.49970325 -3.79452 -3.76243 0 0.00780811 0.0020007 0.996279 -0.0858054 uwb: 0.0 1252.4 1358.44 +imu_odom_: 1691062527.581193119 1.04387 0.0622492 9.68933 -0.0553937 0.0234358 -0.142745 0.06 -0.23 pose: 0.0 -3.79452 -3.76243 0 0.00780811 0.0020007 0.996279 -0.0858054 uwb: 0.50054317 1252.23 1359.54 +imu_odom_: 1691062527.598252066 0.730232 0.213084 10.0078 -0.0468716 0.04048 -0.290817 0.06 -0.23 pose: 0.42059859 -3.80358 -3.76656 0 0.0112668 0.00384503 0.99641 -0.0838232 uwb: 0.0 1252.23 1359.54 +imu_odom_: 1691062527.612183749 0.586579 0.0694318 10.058 -0.0553937 0.00639159 -0.295078 0.06 -0.23 pose: 0.0 -3.80358 -3.76656 0 0.0112668 0.00384503 0.99641 -0.0838232 uwb: 0.0 1252.23 1359.54 +imu_odom_: 1691062527.630129869 0.562637 -0.512359 9.70849 -0.0756338 0.00639159 -0.278034 0.04 -0.26 pose: 0.0 -3.80358 -3.76656 0 0.0112668 0.00384503 0.99641 -0.0838232 uwb: 0.49981116 1254.46 1359.38 +imu_odom_: 1691062527.646132202 0.579397 -0.47884 10.0078 -0.0511327 0.00319579 -0.30147 0.04 -0.29 pose: 0.48936750 -3.80361 -3.7666 0 0.0104468 0.00498626 0.997053 -0.0758347 uwb: 0.0 1254.46 1359.38 +imu_odom_: 1691062527.663123197 0.445322 0.00957681 9.9503 -0.0596548 -0.0127832 -0.319579 0.04 -0.29 pose: 0.0 -3.80361 -3.7666 0 0.0104468 0.00498626 0.997053 -0.0758347 uwb: 0.0 1254.46 1359.38 +imu_odom_: 1691062527.681118312 0.770933 0.0861913 9.85932 -0.0607201 -0.0340885 -0.353668 0.04 -0.41 pose: 0.0 -3.80361 -3.7666 0 0.0104468 0.00498626 0.997053 -0.0758347 uwb: 0.50009405 1255.82 1359.3 +imu_odom_: 1691062527.696124691 0.732626 -0.0814029 9.81144 -0.0671117 -0.0127832 -0.406931 0.04 -0.41 pose: 0.23074915 -3.80361 -3.7666 0 0.00982154 0.00391489 0.997359 -0.0718579 uwb: 0.0 1255.82 1359.3 +imu_odom_: 1691062527.713131435 0.653617 -0.234632 9.94791 -0.0628506 0.00106526 -0.428236 0.04 -0.41 pose: 0.0 -3.80361 -3.7666 0 0.00982154 0.00391489 0.997359 -0.0718579 uwb: 0.0 1255.82 1359.3 +imu_odom_: 1691062527.731123342 0.509965 -0.311246 9.94312 -0.072438 0.00106526 -0.421845 0.03 -0.44 pose: 0.33921329 -3.80361 -3.7666 0 0.0110105 0.0062117 0.997793 -0.0651931 uwb: 0.49956035 1258.38 1358.25 +imu_odom_: 1691062527.747123050 0.205901 -0.366313 9.76834 -0.0617853 -0.00106526 -0.420779 0.03 -0.44 pose: 0.34065400 -3.80361 -3.7666 0 0.0115737 0.00403444 0.998277 -0.0573898 uwb: 0.0 1258.38 1358.25 +imu_odom_: 1691062527.764120754 0.409408 -0.110133 9.78271 -0.0585895 -0.02024 -0.405866 0.03 -0.44 pose: 0.0 -3.80361 -3.7666 0 0.0115737 0.00403444 0.998277 -0.0573898 uwb: 0.0 1258.38 1358.25 +imu_odom_: 1691062527.781116415 0.684742 -0.292093 9.94791 -0.0660464 -0.02024 -0.337689 0.04 -0.53 pose: 0.42929241 -3.80358 -3.76656 0 0.00806095 0.00289766 0.998828 -0.0476464 uwb: 0.49953701 1258.17 1359.27 +imu_odom_: 1691062527.797114665 0.749385 -0.373495 9.85932 -0.056459 -0.0170442 -0.304666 0.03 -0.35 pose: 0.0 -3.80358 -3.76656 0 0.00806095 0.00289766 0.998828 -0.0476464 uwb: 0.0 1258.17 1359.27 +imu_odom_: 1691062527.814222317 0.782904 -0.318429 10.0006 -0.0447411 -0.00852212 -0.279099 0.03 -0.35 pose: 0.0 -3.80358 -3.76656 0 0.00806095 0.00289766 0.998828 -0.0476464 uwb: 0.0 1258.17 1359.27 +imu_odom_: 1691062527.830114118 0.665588 -0.138864 9.85932 -0.0649811 0.00319579 -0.236489 0.02 -0.29 pose: 0.7002879 -3.80361 -3.7666 0 0.00862155 0.00238901 0.998886 -0.0463317 uwb: 0.50146476 1258.3 1359.46 +imu_odom_: 1691062527.847178607 0.4956 -0.301669 9.98382 -0.056459 0.00639159 -0.215183 0.02 -0.29 pose: 0.0 -3.80361 -3.7666 0 0.00862155 0.00238901 0.998886 -0.0463317 uwb: 0.0 1258.3 1359.46 +imu_odom_: 1691062527.863168691 0.438139 -0.258574 9.87608 -0.0553937 -0.00532632 -0.217314 0.02 -0.29 pose: 0.0 -3.80361 -3.7666 0 0.00862155 0.00238901 0.998886 -0.0463317 uwb: 0.0 1258.3 1359.46 +imu_odom_: 1691062527.880105150 0.557849 -0.105345 9.91199 -0.0553937 -0.0213053 -0.183225 0.02 -0.32 pose: 0.51068645 -3.80361 -3.7666 0 0.0123151 0.000558221 0.999206 -0.037894 uwb: 0.49868834 1259.76 1358.85 +imu_odom_: 1691062527.896378125 0.612916 -0.356736 9.84496 -0.0639159 -0.0127832 -0.162985 0.02 -0.32 pose: 0.0 -3.80361 -3.7666 0 0.0123151 0.000558221 0.999206 -0.037894 uwb: 0.0 1259.76 1358.85 +imu_odom_: 1691062527.914283415 0.605733 -0.217872 9.95509 -0.0490022 -0.00319579 -0.15979 0.02 -0.32 pose: 0.65995989 -3.81684 -3.7616 0 0.00934016 0.000742707 0.99951 -0.0298704 uwb: 0.0 1259.76 1358.85 +imu_odom_: 1691062527.930137011 0.605733 -0.153229 9.87848 -0.0607201 -0.00532632 -0.135289 0.01 -0.17 pose: 0.0 -3.81684 -3.7616 0 0.00934016 0.000742707 0.99951 -0.0298704 uwb: 0.50247967 1261.76 1357.65 +imu_odom_: 1691062527.947271785 0.56982 -0.260968 9.91199 -0.056459 -0.00319579 -0.11931 0.01 -0.17 pose: 0.0 -3.81684 -3.7616 0 0.00934016 0.000742707 0.99951 -0.0298704 uwb: 0.0 1261.76 1357.65 +imu_odom_: 1691062527.972214660 0.514753 -0.217872 9.88805 -0.0553937 -0.00745685 -0.109722 0.01 -0.17 pose: 0.33103277 -3.81684 -3.7616 0 0.0110414 0.00114447 0.999583 -0.0266393 uwb: 0.0 1261.76 1357.65 +imu_odom_: 1691062527.986116304 0.493206 -0.191536 9.90721 -0.0575243 -0.0117179 -0.100135 0.01 -0.14 pose: 0.32872298 -3.81684 -3.7616 0 0.00927328 0.000388953 0.999669 -0.0239967 uwb: 0.49752470 1259.9 1359.04 +imu_odom_: 1691062528.11209375 0.349553 -0.0670376 9.94312 -0.0543285 0.00213053 -0.184291 0.01 -0.14 pose: 0.0 -3.81684 -3.7616 0 0.00927328 0.000388953 0.999669 -0.0239967 uwb: 0.0 1259.9 1359.04 +imu_odom_: 1691062528.38091668 0.486023 0.105345 9.991 -0.0617853 -0.0340885 -0.276969 0.02 -0.35 pose: 0.38979548 -3.81684 -3.7616 0 0.00566635 0.00109861 0.999765 -0.0208872 uwb: 0.50114110 1259.78 1359.53 +imu_odom_: 1691062528.54307778 0.454898 -0.275333 9.67018 -0.0660464 -0.0234358 -0.331297 0.02 -0.35 pose: 0.0 -3.81684 -3.7616 0 0.00566635 0.00109861 0.999765 -0.0208872 uwb: 0.0 1259.78 1359.53 +imu_odom_: 1691062528.81235275 0.512359 -0.222661 9.88087 -0.0575243 -0.0245011 -0.383495 0.02 -0.47 pose: 0.53248670 -3.81684 -3.7616 0 0.00439253 0.00397924 0.999897 -0.0130543 uwb: 0.50122865 1258.44 1360.99 +imu_odom_: 1691062528.106181656 0.526724 -0.177171 9.91439 -0.0649811 -0.0213053 -0.406931 0.02 -0.47 pose: 0.34843215 -3.81681 -3.76157 0 0.0054848 0.00064283 0.999967 -0.0059057 uwb: 0.0 1258.44 1360.99 +imu_odom_: 1691062528.133205103 0.663194 -0.1652 10.0509 -0.0660464 -0.0127832 -0.421845 0.02 -0.58 pose: 0.0 -3.81681 -3.76157 0 0.0054848 0.00064283 0.999967 -0.0059057 uwb: 0.0 1258.44 1360.99 +imu_odom_: 1691062528.158139526 0.42138 -0.162806 9.96467 -0.0575243 0.0191748 -0.471912 0.02 -0.55 pose: 0.8046081 -3.81684 -3.7616 0 0.00597733 0.00129776 0.999973 -0.00410572 uwb: 0.0 1258.44 1360.99 +imu_odom_: 1691062528.185092688 0.505177 -0.102951 9.83538 -0.0617853 -0.00958738 -0.490022 0.02 -0.55 pose: 0.0 -3.81684 -3.7616 0 0.00597733 0.00129776 0.999973 -0.00410572 uwb: 0.99869515 1255.64 1363.06 +imu_odom_: 1691062528.210087481 0.720655 -0.143652 9.95748 -0.0585895 -0.0340885 -0.533697 0.01 -0.61 pose: 0.51819050 -3.81684 -3.7616 0 0.0089234 0.0025155 0.999926 0.0079238 uwb: 0.0 1255.64 1363.06 +imu_odom_: 1691062528.227240049 0.672771 -0.217872 9.80426 -0.0607201 0.00532632 -0.560329 0.01 -0.61 pose: 0.0 -3.81684 -3.7616 0 0.0089234 0.0025155 0.999926 0.0079238 uwb: 0.49859222 1256.37 1362.75 +imu_odom_: 1691062528.253337537 0.509965 -0.196325 9.85214 -0.0607201 -0.00852212 -0.596548 0.01 -0.58 pose: 0.52027864 -3.81684 -3.7616 0 0.00667569 0.00477783 0.99973 0.0217408 uwb: 0.0 1256.37 1362.75 +imu_odom_: 1691062528.270224421 0.543484 -0.155623 10.0006 -0.0607201 -0.00639159 -0.615723 0.01 -0.58 pose: 0.0 -3.81684 -3.7616 0 0.00667569 0.00477783 0.99973 0.0217408 uwb: 0.0 1256.37 1362.75 +imu_odom_: 1691062528.286054689 0.612916 -0.227449 9.94551 -0.0617853 -0.0223706 -0.619984 0.01 -0.64 pose: 0.66979711 -3.81684 -3.7616 0 0.0072553 0.00260298 0.999078 0.0422308 uwb: 0.50119658 1255.49 1363.51 +imu_odom_: 1691062528.303062896 0.371101 -0.138864 9.79468 -0.0649811 -0.0127832 -0.638093 0.01 -0.64 pose: 0.0 -3.81684 -3.7616 0 0.0072553 0.00260298 0.999078 0.0422308 uwb: 0.0 1255.49 1363.51 +imu_odom_: 1691062528.320066144 0.497994 -0.234632 9.76834 -0.0553937 -0.0191748 -0.650877 0.01 -0.64 pose: 0.0 -3.81684 -3.7616 0 0.0072553 0.00260298 0.999078 0.0422308 uwb: 0.0 1255.49 1363.51 +imu_odom_: 1691062528.335160312 0.596156 -0.1652 9.89524 -0.0649811 -0.0213053 -0.66579 0.01 -0.64 pose: 0.50960458 -3.81684 -3.7616 0 0.00612005 0.00181031 0.998222 0.0592707 uwb: 0.49871471 1256.51 1362.94 +imu_odom_: 1691062528.351288346 0.684742 -0.11971 9.75877 -0.0511327 -0.0191748 -0.696683 0.01 -0.64 pose: 0.0 -3.81684 -3.7616 0 0.00612005 0.00181031 0.998222 0.0592707 uwb: 0.0 1256.51 1362.94 +imu_odom_: 1691062528.377118982 0.531513 -0.19393 9.94791 -0.0607201 0.0138484 -0.709466 0.01 -0.7 pose: 0.40219907 -3.8168 -3.76156 0 0.00907913 0.00187575 0.997245 0.0736025 uwb: 0.50076204 1255.59 1363.67 +imu_odom_: 1691062528.394054278 -0.071826 -0.248997 9.77074 -0.0532632 0.04048 -0.716923 0.01 -0.7 pose: 0.0 -3.8168 -3.76156 0 0.00907913 0.00187575 0.997245 0.0736025 uwb: 0.0 1255.59 1363.67 +imu_odom_: 1691062528.410053407 -0.21069 -0.162806 10.1131 -0.0458064 0.0426106 -0.719054 0.01 -0.7 pose: 0.6927930 -3.81684 -3.7616 0 0.00839635 0.00156299 0.997057 0.0761885 uwb: 0.0 1255.59 1363.67 +imu_odom_: 1691062528.428055525 -0.28491 -0.124498 10.173 -0.0628506 -0.0575243 -0.72438 0.04 -0.79 pose: 0.0 -3.81684 -3.7616 0 0.00839635 0.00156299 0.997057 0.0761885 uwb: 0.50103325 1255.65 1363.74 +imu_odom_: 1691062528.445055274 -0.158017 0.00718261 10.1825 -0.0553937 -0.00213053 -0.677508 0.05 -0.53 pose: 0.0 -3.81684 -3.7616 0 0.00839635 0.00156299 0.997057 0.0761885 uwb: 0.0 1255.65 1363.74 +imu_odom_: 1691062528.459107700 -0.533907 -0.512359 9.63187 -0.0713727 -0.0138484 -0.557133 0.05 -0.53 pose: 0.76892002 -3.81684 -3.7616 0 0.000535598 0.00164322 0.994467 0.105032 uwb: 0.0 1255.65 1363.74 +imu_odom_: 1691062528.476198441 -0.162806 -0.706289 9.98143 -0.076699 -0.04048 -0.461259 0.06 -0.5 pose: 0.0 -3.81684 -3.7616 0 0.000535598 0.00164322 0.994467 0.105032 uwb: 0.0 1255.65 1363.74 +imu_odom_: 1691062528.492166656 0.347159 -0.435745 9.84017 -0.0479369 -0.0319579 -0.466586 0.06 -0.5 pose: 0.0 -3.81684 -3.7616 0 0.000535598 0.00164322 0.994467 0.105032 uwb: 0.49989878 1257.69 1362.59 +imu_odom_: 1691062528.509126159 0.464475 0.160412 9.84496 -0.0500674 -0.0298274 -0.451672 0.06 -0.5 pose: 0.31053633 -3.82598 -3.76566 0 -0.00214667 0.00107515 0.99342 0.114506 uwb: 0.0 1257.69 1362.59 +imu_odom_: 1691062528.526080703 0.246603 0.047884 9.91918 -0.0553937 -0.0234358 -0.432497 0.09 -0.44 pose: 0.42964248 -3.82594 -3.76562 0 -0.00187622 0.000338831 0.992136 0.125152 uwb: 0.0 1257.69 1362.59 +imu_odom_: 1691062528.541061422 -0.023942 -0.260968 9.84017 -0.0532632 0.015979 -0.442085 0.09 -0.44 pose: 0.0 -3.82594 -3.76562 0 -0.00187622 0.000338831 0.992136 0.125152 uwb: 0.49701445 1256.99 1362.94 +imu_odom_: 1691062528.557132003 -0.265756 -0.270545 9.72525 -0.0468716 0.00852212 -0.430367 0.09 -0.44 pose: 0.0 -3.82594 -3.76562 0 -0.00187622 0.000338831 0.992136 0.125152 uwb: 0.0 1256.99 1362.94 +imu_odom_: 1691062528.572201089 0.129287 -0.222661 10.1466 -0.0511327 0.00213053 -0.387756 0.1 -0.44 pose: 0.7957422 -3.82598 -3.76566 0 -0.00203943 0.00108628 0.991898 0.127014 uwb: 0.0 1256.99 1362.94 +imu_odom_: 1691062528.588035732 0.059855 -0.476446 9.71567 -0.0703074 -0.00745685 -0.340885 0.09 -0.41 pose: 0.0 -3.82598 -3.76566 0 -0.00203943 0.00108628 0.991898 0.127014 uwb: 0.50105367 1256.16 1363.79 +imu_odom_: 1691062528.605219507 0.0957681 -0.0383072 10.0772 -0.0490022 -0.0351537 -0.333428 0.09 -0.41 pose: 0.0 -3.82598 -3.76566 0 -0.00203943 0.00108628 0.991898 0.127014 uwb: 0.0 1256.16 1363.79 +imu_odom_: 1691062528.623098261 0.629675 -0.0167594 10.0006 -0.0607201 -0.0351537 -0.313188 0.11 -0.35 pose: 0.62196216 -3.83 -3.7565 0 -0.00762676 0.001274 0.989984 0.140969 uwb: 0.0 1256.16 1363.79 +imu_odom_: 1691062528.640116675 0.68953 -0.138864 9.83777 -0.0436758 0.00852212 -0.309992 0.11 -0.35 pose: 0.0 -3.83 -3.7565 0 -0.00762676 0.001274 0.989984 0.140969 uwb: 0.49932716 1256.53 1363.64 +imu_odom_: 1691062528.654111356 0.299275 0.0263362 10.1634 -0.0479369 -0.0511327 -0.296144 0.11 -0.35 pose: 0.33945836 -3.83916 -3.76052 0 -0.00791416 0.00222771 0.989076 0.147175 uwb: 0.0 1256.53 1363.64 +imu_odom_: 1691062528.671238844 1.2402 -0.294487 10.4914 -0.0628506 -0.0713727 -0.282295 0.1 -0.29 pose: 0.40885723 -3.83912 -3.76049 0 -0.00462998 0.00383459 0.98803 0.154148 uwb: 0.0 1256.53 1363.64 +imu_odom_: 1691062528.688092481 1.42455 0.0861913 9.67018 -0.0596548 -0.0639159 -0.230097 0.1 -0.29 pose: 0.6962635 -3.83916 -3.76052 0 -0.0037428 0.00355793 0.987861 0.155254 uwb: 0.50065704 1256.86 1363.44 +imu_odom_: 1691062528.706084975 1.1971 -0.426168 10.0293 -0.0671117 0.0415453 -0.194943 0.1 -0.29 pose: 0.0 -3.83916 -3.76052 0 -0.0037428 0.00355793 0.987861 0.155254 uwb: 0.0 1256.86 1363.44 +imu_odom_: 1691062528.722037150 1.22583 -0.529119 9.72285 -0.0511327 0.0170442 -0.193878 0.07 -0.26 pose: 0.35021991 -3.8432 -3.75138 0 0.000237837 0.00276057 0.987108 0.160034 uwb: 0.0 1256.86 1363.44 +imu_odom_: 1691062528.739085311 1.03669 -0.0550666 9.8665 -0.0415453 0.0191748 -0.199204 0.07 -0.29 pose: 0.0 -3.8432 -3.75138 0 0.000237837 0.00276057 0.987108 0.160034 uwb: 0.50103909 1254.67 1365.06 +imu_odom_: 1691062528.757043100 0.696713 0.0981623 9.91439 -0.0553937 -0.0106526 -0.211988 0.07 -0.29 pose: 0.32940841 -3.85236 -3.75541 0 0.00267883 0.00155412 0.986482 0.163843 uwb: 0.0 1254.67 1365.06 +imu_odom_: 1691062528.774020101 0.560243 -0.134075 9.88566 -0.0500674 0.0127832 -0.221575 0.06 -0.26 pose: 0.0 -3.85236 -3.75541 0 0.00267883 0.00155412 0.986482 0.163843 uwb: 0.0 1254.67 1365.06 +imu_odom_: 1691062528.788017699 0.634463 -0.316035 9.84256 -0.0649811 -0.0298274 -0.213053 0.06 -0.26 pose: 0.0 -3.85236 -3.75541 0 0.00267883 0.00155412 0.986482 0.163843 uwb: 0.49950798 1254.39 1365.34 +imu_odom_: 1691062528.805166184 0.924162 -0.222661 9.97664 -0.0660464 -0.0170442 -0.203466 0.06 -0.26 pose: 0.35046781 -3.85236 -3.75541 0 0.00565384 0.00284863 0.98574 0.168155 uwb: 0.0 1254.39 1365.34 +imu_odom_: 1691062528.822080774 0.727837 -0.311246 9.77553 -0.0596548 0.00426106 -0.178964 0.04 -0.2 pose: 0.41082580 -3.85232 -3.75537 0 0.00898668 0.000837774 0.984844 0.173208 uwb: 0.0 1254.39 1365.34 +imu_odom_: 1691062528.839172098 0.679953 -0.184354 9.7875 -0.0628506 0 -0.170442 0.04 -0.2 pose: 0.6918306 -3.85236 -3.75541 0 0.00937777 0.000286933 0.98471 0.173947 uwb: 0.49989585 1254.05 1365.52 +imu_odom_: 1691062528.855111149 0.574608 -0.21069 9.90002 -0.0511327 0.0106526 -0.15979 0.04 -0.2 pose: 0.0 -3.85236 -3.75541 0 0.00937777 0.000286933 0.98471 0.173947 uwb: 0.0 1254.05 1365.52 +imu_odom_: 1691062528.882057311 0.708684 -0.225055 9.79947 -0.056459 -0.0149137 -0.128897 0.05 -0.2 pose: 0.43026659 -3.85232 -3.75537 0 0.00993053 -0.0009841560.983919 0.178338 uwb: 0.50035082 1253.92 1366.01 +imu_odom_: 1691062528.898129934 0.287304 -0.37589 9.75158 -0.0617853 0.0372843 -0.135289 0.03 -0.14 pose: 0.0 -3.85232 -3.75537 0 0.00993053 -0.0009841560.983919 0.178338 uwb: 0.0 1253.92 1366.01 +imu_odom_: 1691062528.925014852 -1.40061 0.167594 9.79947 -0.0394148 0.0756338 -0.166181 0.03 -0.14 pose: 0.35044739 -3.85236 -3.75541 0 0.0115942 -0.00225098 0.983366 0.181252 uwb: 0.0 1253.92 1366.01 +imu_odom_: 1691062528.942020725 -1.25456 -0.294487 10.1131 -0.0777643 -0.0692422 -0.0735032 0.07 -0.11 pose: 0.0 -3.85236 -3.75541 0 0.0115942 -0.00225098 0.983366 0.181252 uwb: 0.49891595 1252.14 1367.55 +imu_odom_: 1691062528.964069945 0.342371 -0.387861 9.90481 -0.0617853 -0.0862864 -0.0958738 0.07 -0.11 pose: 0.42880255 -3.85638 -3.74625 0 0.00658813 -0.00103718 0.982695 0.185111 uwb: 0.0 1252.14 1367.55 +imu_odom_: 1691062528.987117451 0.732626 0.11971 9.89524 -0.056459 -0.0266316 -0.0862864 0.09 -0.08 pose: 0.31033802 -3.86287 -3.74912 0 0.00500492 -0.00250828 0.982331 0.187071 uwb: 0.49896260 1251.23 1368.29 +imu_odom_: 1691062529.12172324 0.0383072 -0.442927 9.62469 -0.0628506 0.0245011 -0.0596548 0.09 -0.08 pose: 0.6131750 -3.86553 -3.75028 0 0.00548656 -0.00206908 0.982256 0.187453 uwb: 0.0 1251.23 1368.29 +imu_odom_: 1691062529.37061549 0.169988 -0.265756 9.80426 -0.036219 -0.0266316 -0.0894822 0.14 -0.11 pose: 0.41970629 -3.8655 -3.75025 0 0.00401745 -0.00150924 0.981828 0.189723 uwb: 0.50042379 1252.42 1367.96 +imu_odom_: 1691062529.51074607 0.294487 -0.0215478 9.66779 -0.0372843 -0.0181095 -0.0649811 0.14 -0.11 pose: 0.0 -3.8655 -3.75025 0 0.00401745 -0.00150924 0.981828 0.189723 uwb: 0.0 1252.42 1367.96 +imu_odom_: 1691062529.76186938 0.418985 -0.325611 9.96467 -0.0553937 0.0479369 -0.04048 0.11 -0.08 pose: 0.38902283 -3.86553 -3.75028 0 0.00139519 0.000245385 0.98139 0.192018 uwb: 0.0 1252.42 1367.96 +imu_odom_: 1691062529.99991550 0.323217 -0.23942 10.2352 -0.0479369 -0.0138484 -0.052198 0.11 -0.08 pose: 0.0 -3.86553 -3.75028 0 0.00139519 0.000245385 0.98139 0.192018 uwb: 0.50056676 1250.57 1369.39 +imu_odom_: 1691062529.124107926 -0.0215478 -0.162806 9.58878 -0.072438 -0.0255663 -0.0276969 0.13 -0.08 pose: 0.48916943 -3.87866 -3.74508 0 -0.00202929 -0.00112444 0.980985 0.194068 uwb: 0.0 1250.57 1369.39 +imu_odom_: 1691062529.140007318 0.272939 -0.25618 9.89045 -0.0543285 -0.00852212 -0.0255663 0.13 -0.08 pose: 0.0 -3.87866 -3.74508 0 -0.00202929 -0.00112444 0.980985 0.194068 uwb: 0.50140085 1251.04 1369.39 +imu_odom_: 1691062529.164058658 0.304064 -0.196325 10.1754 -0.0639159 0.0436758 -0.0319579 0.2 -0.11 pose: 0.40015768 -3.87869 -3.74512 0 -0.00558538 -0.0006315960.980715 0.195364 uwb: 0.0 1251.04 1369.39 +imu_odom_: 1691062529.191048574 0.679953 -0.217872 9.60075 -0.0798948 -0.0138484 -0.00639159 0.2 -0.11 pose: 0.0 -3.87869 -3.74512 0 -0.00558538 -0.0006315960.980715 0.195364 uwb: 0.49879941 1253.5 1368.16 +imu_odom_: 1691062529.207054123 0.988805 0.0454898 10.1011 -0.0649811 -0.0330232 -0.00958738 0.13 -0.05 pose: 0.51041256 -3.88916 -3.73878 0 -0.00263701 0.000651044 0.980439 0.196804 uwb: 0.0 1253.5 1368.16 +imu_odom_: 1691062529.224970503 0.730232 -0.306458 9.1267 -0.0788296 -0.0106526 0.0415453 0.13 -0.05 pose: 0.0 -3.88916 -3.73878 0 -0.00263701 0.000651044 0.980439 0.196804 uwb: 0.0 1253.5 1368.16 +imu_odom_: 1691062529.242098287 0.799663 -0.447716 9.90242 -0.0479369 0.00639159 0.0543285 0.11 0.14 pose: 0.0 -3.88916 -3.73878 0 -0.00263701 0.000651044 0.980439 0.196804 uwb: 0.50050260 1252.43 1369.35 +imu_odom_: 1691062529.256099971 1.30005 -0.306458 10.3406 -0.036219 -0.0149137 0.0894822 0.11 0.14 pose: 0.41045260 -3.89188 -3.73997 0 0.00123824 -0.0006853960.980379 0.197119 uwb: 0.0 1252.43 1369.35 +imu_odom_: 1691062529.273065602 1.28569 -0.308852 9.61751 -0.0553937 0.00319579 0.24288 0.11 0.14 pose: 0.0 -3.89188 -3.73997 0 0.00123824 -0.0006853960.980379 0.197119 uwb: 0.0 1252.43 1369.35 +imu_odom_: 1691062529.286977168 1.43413 -0.629675 10.1873 -0.0511327 0.00426106 0.334493 0.09 0.32 pose: 0.0 -3.89188 -3.73997 0 0.00123824 -0.0006853960.980379 0.197119 uwb: 0.49977057 1251.62 1370.24 +imu_odom_: 1691062529.302981843 0.785298 -0.694318 9.63906 -0.0479369 0.0117179 0.395213 0.09 0.32 pose: 0.46914828 -3.89188 -3.73997 0 0.00540182 -0.00239783 0.980954 0.19415 uwb: 0.0 1251.62 1370.24 +imu_odom_: 1691062529.320132082 0.842759 -0.342371 10.0341 -0.0383495 0.00852212 0.464455 0.09 0.32 pose: 0.0 -3.89188 -3.73997 0 0.00540182 -0.00239783 0.980954 0.19415 uwb: 0.0 1251.62 1370.24 +imu_odom_: 1691062529.338032131 0.952892 -0.110133 9.79228 -0.0532632 -0.00852212 0.531567 0.07 0.41 pose: 0.41123420 -3.90097 -3.73297 0 0.00789559 -0.00483328 0.98239 0.186615 uwb: 0.0 1251.62 1370.24 +imu_odom_: 1691062529.355143000 0.842759 -0.325611 9.81144 -0.052198 0.0181095 0.549676 0.06 0.38 pose: 0.0 -3.90097 -3.73297 0 0.00789559 -0.00483328 0.98239 0.186615 uwb: 0.0 1251.62 1370.24 +imu_odom_: 1691062529.372149169 0.577003 -0.246603 10.0269 -0.0458064 0.0223706 0.552872 0.06 0.38 pose: 0.25851641 -3.90502 -3.73476 0 0.0102895 -0.00477668 0.983546 0.1803 uwb: 0.0 1251.62 1370.24 +imu_odom_: 1691062529.389977766 0.368707 -0.124498 9.96706 -0.0490022 0.0127832 0.556068 0.07 0.58 pose: 0.0 -3.90502 -3.73476 0 0.0102895 -0.00477668 0.983546 0.1803 uwb: 0.99910078 1250.82 1371.16 +imu_odom_: 1691062529.407093009 0.411803 -0.0981623 9.87608 -0.0490022 -0.0234358 0.56459 0.07 0.58 pose: 0.0 -3.90502 -3.73476 0 0.0102895 -0.00477668 0.983546 0.1803 uwb: 0.0 1250.82 1371.16 +imu_odom_: 1691062529.422030860 0.742203 -0.248997 9.84975 -0.0468716 -0.00958738 0.565655 0.07 0.58 pose: 0.34109746 -3.90502 -3.73476 0 0.00874672 -0.00352144 0.985105 0.171695 uwb: 0.0 1250.82 1371.16 +imu_odom_: 1691062529.438080738 0.80924 -0.311246 9.92157 -0.0553937 0.00426106 0.566721 0.04 0.53 pose: 0.41937391 -3.90499 -3.73473 0 0.00850983 -0.00191548 0.986935 0.160883 uwb: 0.0 1250.82 1371.16 +imu_odom_: 1691062529.455138236 0.565032 -0.280122 9.77792 -0.0500674 0.00745685 0.575243 0.04 0.53 pose: 0.6107254 -3.90502 -3.73476 0 0.00901291 -0.00222497 0.987188 0.159292 uwb: 0.0 1250.82 1371.16 +imu_odom_: 1691062529.472022791 0.407014 -0.191536 9.97185 -0.0436758 0.00852212 0.580569 0.04 0.53 pose: 0.0 -3.90502 -3.73476 0 0.00901291 -0.00222497 0.987188 0.159292 uwb: 0.0 1250.82 1371.16 +imu_odom_: 1691062529.487967096 0.581791 -0.287304 10.0078 -0.0447411 -0.00426106 0.548611 0.04 0.47 pose: 0.43884677 -3.90499 -3.73473 0 0.00692801 -0.00291048 0.989009 0.147662 uwb: 0.99893454 1249.15 1372.87 +imu_odom_: 1691062529.505045592 0.641646 0.0215478 9.76116 -0.0500674 0.00106526 0.502805 0.05 0.61 pose: 0.0 -3.90499 -3.73473 0 0.00692801 -0.00291048 0.989009 0.147662 uwb: 0.0 1249.15 1372.87 +imu_odom_: 1691062529.521191128 0.675165 -0.0167594 10.0173 -0.0532632 0.00958738 0.468716 0.05 0.61 pose: 0.0 -3.90499 -3.73473 0 0.00692801 -0.00291048 0.989009 0.147662 uwb: 0.0 1249.15 1372.87 +imu_odom_: 1691062529.537965151 0.696713 -0.220267 9.77792 -0.0532632 0.00106526 0.416518 0.04 0.55 pose: 0.22944855 -3.90502 -3.73476 0 0.00810267 -0.00350163 0.989822 0.14204 uwb: 0.50178873 1249.16 1372.89 +imu_odom_: 1691062529.554070442 0.632069 -0.126893 9.98622 -0.0458064 0.00852212 0.369647 0.04 0.55 pose: 0.0 -3.90502 -3.73476 0 0.00810267 -0.00350163 0.989822 0.14204 uwb: 0.0 1249.16 1372.89 +imu_odom_: 1691062529.571074569 0.428562 -0.189142 9.90481 -0.0553937 0.00852212 0.367516 0.04 0.55 pose: 0.32991303 -3.90502 -3.73476 0 0.00984261 -0.0013228 0.990788 0.135055 uwb: 0.0 1249.16 1372.89 +imu_odom_: 1691062529.587141363 0.414197 -0.270545 9.95988 -0.0553937 0.00106526 0.366451 0.02 0.29 pose: 0.43115620 -3.90899 -3.72558 0 0.00935742 0.000247368 0.991755 0.127806 uwb: 0.50185581 1247.67 1374.19 +imu_odom_: 1691062529.604010753 0.531513 -0.272939 9.8258 -0.0490022 -0.0170442 0.34408 0.02 0.29 pose: 0.7032339 -3.90899 -3.72558 0 0.00867382 1.11195e-05 0.991908 0.126665 uwb: 0.0 1247.67 1374.19 +imu_odom_: 1691062529.620007552 0.667982 -0.124498 9.8689 -0.0479369 -0.00426106 0.316384 0.02 0.29 pose: 0.0 -3.90899 -3.72558 0 0.00867382 1.11195e-05 0.991908 0.126665 uwb: 0.0 1247.67 1374.19 +imu_odom_: 1691062529.636976100 0.641646 -0.059855 9.94791 -0.0575243 0.00213053 0.299339 0.03 0.35 pose: 0.41900644 -3.90895 -3.72554 0 0.00852661 -0.0008517810.992683 0.120447 uwb: 0.49695916 1247.93 1374.58 +imu_odom_: 1691062529.652967067 0.536301 -0.177171 9.94551 -0.056459 0.00852212 0.282295 0.02 0.23 pose: 0.0 -3.90895 -3.72554 0 0.00852661 -0.0008517810.992683 0.120447 uwb: 0.0 1247.93 1374.58 +imu_odom_: 1691062529.669943197 0.54109 -0.23942 9.90721 -0.0575243 -0.00319579 0.26312 0.02 0.23 pose: 0.0 -3.90895 -3.72554 0 0.00852661 -0.0008517810.992683 0.120447 uwb: 0.0 1247.93 1374.58 +imu_odom_: 1691062529.685999492 0.466869 -0.0957681 9.80426 -0.052198 0.00426106 0.245011 0.01 0.2 pose: 0.23960349 -3.90899 -3.72558 0 0.00863654 0.000705511 0.993043 0.117432 uwb: 0.50101297 1246.32 1375.7 +imu_odom_: 1691062529.702996328 0.507571 -0.148441 9.92636 -0.0553937 0.00106526 0.246076 0.01 0.2 pose: 0.0 -3.90899 -3.72558 0 0.00863654 0.000705511 0.993043 0.117432 uwb: 0.0 1246.32 1375.7 +imu_odom_: 1691062529.718992253 0.493206 -0.205901 9.84496 -0.056459 -0.00532632 0.229032 0.01 0.2 pose: 0.33022509 -3.91815 -3.72959 0 0.00687819 -0.0001338370.993487 0.113739 uwb: 0.0 1246.32 1375.7 +imu_odom_: 1691062529.736004547 0.593762 -0.141258 9.87129 -0.0511327 -0.00106526 0.208792 0.02 0.23 pose: 0.42001843 -3.91815 -3.72959 0 0.00510694 0.000819471 0.993964 0.109581 uwb: 0.49787782 1245.76 1376.27 +imu_odom_: 1691062529.751991431 0.560243 -0.0933739 9.88326 -0.0543285 -0.00106526 0.198139 0.02 0.23 pose: 0.0 -3.91815 -3.72959 0 0.00510694 0.000819471 0.993964 0.109581 uwb: 0.0 1245.76 1376.27 +imu_odom_: 1691062529.768987684 0.536301 -0.181959 9.93354 -0.0553937 0.00213053 0.18003 0.02 0.23 pose: 0.0 -3.91815 -3.72959 0 0.00510694 0.000819471 0.993964 0.109581 uwb: 0.0 1245.76 1376.27 +imu_odom_: 1691062529.785006065 0.526724 -0.158017 9.85214 -0.0543285 -0.00213053 0.156594 0.01 0.14 pose: 0.7005217 -3.91815 -3.72959 0 0.00575581 0.00107457 0.994025 0.108992 uwb: 0.49999515 1245.81 1376.35 +imu_odom_: 1691062529.802009027 0.500388 -0.162806 9.8665 -0.0553937 0.00106526 0.147006 0.01 0.14 pose: 0.0 -3.91815 -3.72959 0 0.00575581 0.00107457 0.994025 0.108992 uwb: 0.0 1245.81 1376.35 +imu_odom_: 1691062529.818058905 0.54109 -0.174777 9.87129 -0.0553937 -0.00639159 0.138484 0.01 0.14 pose: 0.66016437 -3.91815 -3.72959 0 0.00579868 0.00241867 0.994515 0.104405 uwb: 0.0 1245.81 1376.35 +imu_odom_: 1691062529.834089827 0.533907 -0.179565 9.8665 -0.0543285 -0.00426106 0.11931 0 0.08 pose: 0.0 -3.91815 -3.72959 0 0.00579868 0.00241867 0.994515 0.104405 uwb: 0.50025470 1248.23 1375.03 +imu_odom_: 1691062529.851141784 0.553061 -0.162806 9.8665 -0.0553937 -0.00426106 0.104396 0 0.08 pose: 0.0 -3.91815 -3.72959 0 0.00579868 0.00241867 0.994515 0.104405 uwb: 0.0 1248.23 1375.03 +imu_odom_: 1691062529.866935018 0.54109 -0.146046 9.93833 -0.056459 -0.00319579 0.0905475 0 0.08 pose: 0.33101543 -3.91815 -3.72959 0 0.0069405 0.00101068 0.994678 0.102792 uwb: 0.0 1248.23 1375.03 +imu_odom_: 1691062529.883041183 0.555455 -0.196325 9.91439 -0.0553937 -0.00319579 0.0735032 0 0.05 pose: 0.41819568 -3.91815 -3.72959 0 0.00693657 0.00321792 0.994806 0.101504 uwb: 0.49973558 1248.71 1375.05 +imu_odom_: 1691062529.899943236 0.550666 -0.146046 9.90002 -0.0543285 0 0.0585895 0 0.05 pose: 0.7088334 -3.91815 -3.72959 0 0.00713033 0.00253659 0.994819 0.101379 uwb: 0.0 1248.71 1375.05 +imu_odom_: 1691062529.915980574 0.521936 -0.179565 9.87369 -0.056459 -0.00319579 0.0543285 0 0.05 pose: 0.0 -3.91815 -3.72959 0 0.00713033 0.00253659 0.994819 0.101379 uwb: 0.0 1248.71 1375.05 +imu_odom_: 1691062529.930917551 0.47884 -0.21069 9.87369 -0.0553937 -0.00745685 0.0415453 0 0.02 pose: 0.41957222 -3.91815 -3.72959 0 0.00697324 0.00200706 0.994865 0.100947 uwb: 0.50086131 1250.17 1374.4 +imu_odom_: 1691062529.944912235 0.466869 -0.148441 9.85453 -0.0553937 -0.00426106 0.0340885 0 0 pose: 0.0 -3.91815 -3.72959 0 0.00697324 0.00200706 0.994865 0.100947 uwb: 0.0 1250.17 1374.4 +imu_odom_: 1691062529.959907248 0.466869 -0.160412 9.9096 -0.0575243 -0.00106526 0.0383495 0 0 pose: 0.0 -3.91815 -3.72959 0 0.00697324 0.00200706 0.994865 0.100947 uwb: 0.0 1250.17 1374.4 +imu_odom_: 1691062529.974932592 0.447716 -0.229843 9.92875 -0.056459 -0.00213053 0.0383495 0 0 pose: 0.20955280 -3.91815 -3.72959 0 0.00532693 0.00153593 0.994876 0.100949 uwb: 0.0 1250.17 1374.4 +imu_odom_: 1691062529.988915610 0.416591 -0.217872 9.89045 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.0 -3.91815 -3.72959 0 0.00532693 0.00153593 0.994876 0.100949 uwb: 0.49906481 1248.83 1375.23 +imu_odom_: 1691062530.10921091 0.497994 -0.189142 9.93833 -0.0553937 -0.00745685 0.0426106 0 0 pose: 0.0 -3.91815 -3.72959 0 0.00532693 0.00153593 0.994876 0.100949 uwb: 0.0 1248.83 1375.23 +imu_odom_: 1691062530.28914761 -0.292093 -0.160412 9.6606 -0.0607201 0.0681769 0.0500674 0 -0.02 pose: 0.73985237 -3.91815 -3.72959 0 0.00382136 0.000631093 0.994882 0.10097 uwb: 0.49996020 1246.75 1376.35 +imu_odom_: 1691062530.45968181 -0.902614 -0.205901 10.0341 -0.0649811 0.0500674 0.0788296 0 -0.02 pose: 0.0 -3.91815 -3.72959 0 0.00382136 0.000631093 0.994882 0.10097 uwb: 0.0 1246.75 1376.35 +imu_odom_: 1691062530.61908698 -1.06063 -0.356736 9.84735 -0.0660464 -0.0276969 0.100135 0 -0.02 pose: 0.0 -3.91815 -3.72959 0 0.00382136 0.000631093 0.994882 0.10097 uwb: 0.0 1246.75 1376.35 +imu_odom_: 1691062530.80024857 -0.222661 -0.275333 9.96467 -0.0543285 -0.0543285 0.0862864 0.04 0.02 pose: 0.8003506 -3.91815 -3.72959 0 0.00273907 0.000755851 0.99489 0.100929 uwb: 0.50188510 1244.23 1378.24 +imu_odom_: 1691062530.97018781 0.260968 0.035913 9.80904 -0.0553937 -0.0426106 0.0660464 0.05 0.02 pose: 0.0 -3.91815 -3.72959 0 0.00273907 0.000755851 0.99489 0.100929 uwb: 0.0 1244.23 1378.24 +imu_odom_: 1691062530.111030676 0.277727 0.0287304 9.72285 -0.0735032 0.00745685 0.0692422 0.05 0.02 pose: 0.68070189 -3.91815 -3.72959 0 -0.0035576 0.0015022 0.995025 0.0995547 uwb: 0.0 1244.23 1378.24 +imu_odom_: 1691062530.127967439 0.0742203 -0.500388 9.79228 -0.0617853 0.00426106 0.0543285 0.05 0.02 pose: 0.0 -3.91815 -3.72959 0 -0.0035576 0.0015022 0.995025 0.0995547 uwb: 0.49983194 1243.97 1378.57 +imu_odom_: 1691062530.144958447 -0.129287 -0.277727 9.84496 -0.0553937 -0.00958738 0.0585895 0.06 0.02 pose: 0.0 -3.91815 -3.72959 0 -0.0035576 0.0015022 0.995025 0.0995547 uwb: 0.0 1243.97 1378.57 +imu_odom_: 1691062530.161905125 0.0287304 -0.323217 10.1442 -0.0607201 -0.0223706 0.0713727 0.06 0.02 pose: 0.30974906 -3.91815 -3.72959 0 -0.00435125 0.00319244 0.995057 0.0991596 uwb: 0.0 1243.97 1378.57 +imu_odom_: 1691062530.177954716 0.237026 -0.158017 9.76595 -0.0490022 -0.0191748 0.0745685 0.09 0.02 pose: 0.43935433 -3.92353 -3.73193 0 -0.00808451 0.00141672 0.995086 0.0986739 uwb: 0.50007984 1244.58 1378.07 +imu_odom_: 1691062530.195954802 0.462081 -0.122104 10.1921 -0.0543285 -0.0181095 0.0660464 0.09 0.02 pose: 0.0 -3.92353 -3.73193 0 -0.00808451 0.00141672 0.995086 0.0986739 uwb: 0.0 1244.58 1378.07 +imu_odom_: 1691062530.212009934 0.129287 -0.169988 9.91439 -0.0426106 0.0213053 0.0628506 0.09 0.02 pose: 0.0 -3.92353 -3.73193 0 -0.00808451 0.00141672 0.995086 0.0986739 uwb: 0.0 1244.58 1378.07 +imu_odom_: 1691062530.228903534 0.184354 -0.519542 9.62708 -0.0426106 -0.0106526 0.0703074 0.1 0.05 pose: 0.7004635 -3.92732 -3.73358 0 -0.0080866 0.00213334 0.995097 0.0985465 uwb: 0.50111516 1244.66 1378.19 +imu_odom_: 1691062530.246997820 0.342371 -0.474052 9.46907 -0.04048 0.02024 0.0426106 0.11 0.02 pose: 0.0 -3.92732 -3.73358 0 -0.0080866 0.00213334 0.995097 0.0985465 uwb: 0.0 1244.66 1378.19 +imu_odom_: 1691062530.263891129 0.325611 -0.0814029 9.94791 -0.0458064 0.0426106 0.072438 0.11 0.02 pose: 0.68093521 -3.93131 -3.72441 0 -0.00825458 0.00121286 0.99518 0.097709 uwb: 0.0 1244.66 1378.19 +imu_odom_: 1691062530.279956760 0.100556 -0.141258 9.98622 -0.0340885 0.0223706 0.0756338 0.11 0.02 pose: 0.0 -3.93131 -3.72441 0 -0.00825458 0.00121286 0.99518 0.097709 uwb: 0.49818418 1244.43 1378.56 +imu_odom_: 1691062530.298070294 0.579397 -0.263362 10.24 -0.04048 -0.015979 0.0553937 0.11 0 pose: 0.0 -3.93131 -3.72441 0 -0.00825458 0.00121286 0.99518 0.097709 uwb: 0.0 1244.43 1378.56 +imu_odom_: 1691062530.315070343 1.00796 -0.373495 9.76116 -0.0660464 -0.0394148 0.0916127 0.11 0 pose: 0.32891279 -3.93131 -3.72441 0 -0.00815191 0.00214694 0.995219 0.097307 uwb: 0.0 1244.43 1378.56 +imu_odom_: 1691062530.329992741 1.12288 -0.208296 9.65821 -0.0735032 0.00319579 0.149137 0.1 0.02 pose: 0.45175783 -3.94047 -3.72843 0 -0.00546242 0.00154696 0.995312 0.0965473 uwb: 0.49863330 1242.55 1379.99 +imu_odom_: 1691062530.347138611 1.69031 -0.244209 10.2328 -0.0649811 -0.052198 0.158724 0.1 0.02 pose: 0.6147794 -3.94047 -3.72843 0 -0.00487863 0.00142654 0.995348 0.0962116 uwb: 0.0 1242.55 1379.99 +imu_odom_: 1691062530.363070962 1.61848 -0.035913 9.4978 -0.0543285 0.00426106 0.113983 0.1 0.02 pose: 0.0 -3.94047 -3.72843 0 -0.00487863 0.00142654 0.995348 0.0962116 uwb: 0.0 1242.55 1379.99 +imu_odom_: 1691062530.379882611 1.42216 -0.0742203 9.86411 -0.052198 0.0415453 0.0788296 0.09 0 pose: 0.41852825 -3.94451 -3.71928 0 -0.0004113410.000988182 0.99556 0.0941234 uwb: 0.50052605 1243.12 1380.15 +imu_odom_: 1691062530.397996437 0.550666 0.0550666 9.91199 -0.0596548 0.0351537 0.0340885 0.06 0.05 pose: 0.0 -3.94451 -3.71928 0 -0.0004113410.000988182 0.99556 0.0941234 uwb: 0.0 1243.12 1380.15 +imu_odom_: 1691062530.414213721 0.306458 -0.275333 9.85453 -0.0585895 -0.0106526 0.0191748 0.06 0.05 pose: 0.0 -3.94451 -3.71928 0 -0.0004113410.000988182 0.99556 0.0941234 uwb: 0.0 1243.12 1380.15 +imu_odom_: 1691062530.431192772 0.799663 -0.129287 10.1011 -0.0596548 -0.0255663 0.0181095 0.05 0.05 pose: 0.24933269 -3.94451 -3.71928 0 0.00117824 0.00176675 0.995587 0.0938149 uwb: 0.50064854 1240.96 1381.89 +imu_odom_: 1691062530.448867678 0.955286 -0.294487 9.68694 -0.0628506 -0.00639159 0.0617853 0.05 0.05 pose: 0.0 -3.94451 -3.71928 0 0.00117824 0.00176675 0.995587 0.0938149 uwb: 0.0 1240.96 1381.89 +imu_odom_: 1691062530.463154299 0.768539 -0.366313 9.87848 -0.0596548 0.0117179 0.0788296 0.05 0.05 pose: 0.33224624 -3.94451 -3.71928 0 0.00107153 0.00158019 0.995563 0.0940829 uwb: 0.0 1240.96 1381.89 +imu_odom_: 1691062530.479891287 0.555455 -0.215478 9.82341 -0.0500674 0.00319579 0.0681769 0.04 0.02 pose: 0.41925444 -3.95364 -3.72336 0 0.00489768 0.000100902 0.995588 0.0937044 uwb: 0.49919616 1242.64 1380.85 +imu_odom_: 1691062530.495861552 0.588974 -0.114922 9.92636 -0.052198 -0.00213053 0.0617853 0.04 0.02 pose: 0.6951556 -3.95364 -3.72336 0 0.00553904 -8.02295e-050.995594 0.093604 uwb: 0.0 1242.64 1380.85 +imu_odom_: 1691062530.519941771 0.490811 -0.215478 9.78031 -0.0585895 0.00639159 0.0692422 0.04 0.02 pose: 0.0 -3.95364 -3.72336 0 0.00553904 -8.02295e-050.995594 0.093604 uwb: 0.0 1242.64 1380.85 +imu_odom_: 1691062530.545874202 0.363919 -0.277727 9.80904 -0.0649811 0.0351537 0.0266316 0.04 0.02 pose: 0.33768243 -3.95364 -3.72336 0 0.00663949 0.000593885 0.995628 0.093174 uwb: 0.49961905 1241.41 1381.86 +imu_odom_: 1691062530.571035826 -1.37667 -0.011971 10.0078 -0.0553937 0.0660464 0.015979 0.06 0 pose: 0.42000104 -3.95364 -3.72336 0 0.00217632 -0.00116107 0.995654 0.0930972 uwb: 0.0 1241.41 1381.86 +imu_odom_: 1691062530.587873722 -1.13964 -0.579397 9.91439 -0.0735032 -0.0788296 0.0660464 0.06 0 pose: 0.0 -3.95364 -3.72336 0 0.00217632 -0.00116107 0.995654 0.0930972 uwb: 0.49998651 1240.39 1382.47 +imu_odom_: 1691062530.612869694 0.445322 -0.237026 9.80186 -0.0479369 -0.0607201 0.0383495 0.08 0.02 pose: 0.41999520 -3.9536 -3.72332 0 -0.00222331 -0.0009783510.995647 0.0931689 uwb: 0.0 1240.39 1382.47 +imu_odom_: 1691062530.637979698 0.399832 -0.023942 9.83777 -0.0735032 0.015979 0.0735032 0.08 0.02 pose: 0.8182865 -3.95364 -3.72336 0 -0.00117391 -0.00104143 0.995649 0.0931748 uwb: 0.50014984 1241.84 1381.81 +imu_odom_: 1691062530.662931049 -0.361524 -0.277727 9.76834 -0.0596548 0.0415453 0.0287621 0.11 0 pose: 0.23933232 -3.95364 -3.72336 0 0.000888975 -0.0005159810.995659 0.0930673 uwb: 0.0 1241.84 1381.81 +imu_odom_: 1691062530.688869604 0.162806 -0.0909797 9.65821 -0.0553937 -0.0607201 0.0617853 0.12 0 pose: 0.25979969 -3.96681 -3.7182 0 -0.0003294360.00112486 0.995683 0.0928093 uwb: 0.50036273 1242.46 1382.05 +imu_odom_: 1691062530.703855288 0.28491 -0.299275 9.64384 -0.0596548 -0.00532632 0.0649811 0.12 0 pose: 0.0 -3.96681 -3.7182 0 -0.0003294360.00112486 0.995683 0.0928093 uwb: 0.0 1242.46 1382.05 +imu_odom_: 1691062530.729878128 0.143652 0.0766145 9.32302 -0.0735032 0.036219 0.0468716 0.15 0 pose: 0.25024844 -3.96681 -3.7182 0 -0.00285449 0.00152992 0.995678 0.0928124 uwb: 0.49932741 1243.77 1381.89 +imu_odom_: 1691062530.754841436 0.162806 -0.3304 10.5225 -0.0500674 -0.0319579 0.0330232 0.15 0 pose: 0.0 -3.96681 -3.7182 0 -0.00285449 0.00152992 0.995678 0.0928124 uwb: 0.0 1243.77 1381.89 +imu_odom_: 1691062530.772844439 0.610521 -0.31364 10.0173 -0.052198 -0.0234358 0.0511327 0.14 0 pose: 0.40937656 -3.96681 -3.7182 0 -0.00495767 0.00174998 0.995708 0.0923982 uwb: 0.0 1243.77 1381.89 +imu_odom_: 1691062530.796017071 0.0335188 -0.351948 9.93594 -0.0543285 0.00958738 0.0447411 0.14 0 pose: 0.0 -3.96681 -3.7182 0 -0.00495767 0.00174998 0.995708 0.0923982 uwb: 0.50232255 1241.51 1383.49 +imu_odom_: 1691062530.818860149 0.715866 -0.0814029 10.082 -0.04048 -0.0255663 0.0330232 0.18 0.02 pose: 0.50931611 -3.97597 -3.72222 0 -0.00649509 0.000966228 0.995702 0.0923804 uwb: 0.0 1241.51 1383.49 +imu_odom_: 1691062530.844964648 -0.0311246 -0.447716 9.63666 -0.0649811 -0.0330232 0.0681769 0.18 0.02 pose: 0.0 -3.97597 -3.72222 0 -0.00649509 0.000966228 0.995702 0.0923804 uwb: 0.49680180 1241.04 1384.23 +imu_odom_: 1691062530.865886103 0.411803 -0.28491 10.1945 -0.0479369 0.0255663 0.0436758 0.14 0 pose: 0.40991609 -3.97998 -3.71306 0 -0.00692134 -5.34139e-050.995708 0.092296 uwb: 0.0 1241.04 1384.23 +imu_odom_: 1691062530.878840798 0.507571 -0.217872 9.83777 -0.0479369 0.0234358 0.052198 0.14 0 pose: 0.0 -3.97998 -3.71306 0 -0.00692134 -5.34139e-050.995708 0.092296 uwb: 0.50056979 1237.51 1386.81 +imu_odom_: 1691062530.902977887 0.0790087 -0.191536 10.07 -0.0628506 -0.0479369 0.0607201 0.14 0 pose: 0.46985707 -3.98914 -3.71708 0 -0.00672959 -0.00122041 0.995738 0.0919691 uwb: 0.0 1237.51 1386.81 +imu_odom_: 1691062530.920898356 0.395043 -0.411803 9.88326 -0.0660464 -0.00426106 0.0191748 0.14 0 pose: 0.0 -3.98914 -3.71708 0 -0.00672959 -0.00122041 0.995738 0.0919691 uwb: 0.0 1237.51 1386.81 +imu_odom_: 1691062530.943862464 0.158017 -0.234632 9.80426 -0.0692422 -0.0426106 0.0617853 0.14 0 pose: 0.36020879 -3.99317 -3.70793 0 -0.00498941 -0.00122338 0.995766 0.0917787 uwb: 0.50082353 1237.73 1387.17 +imu_odom_: 1691062530.967877355 0.110133 -0.153229 10.1825 -0.0553937 -0.0383495 0.0468716 0.15 0.02 pose: 0.41068019 -4.00232 -3.71196 0 -0.00587666 -0.0022936 0.995765 0.0917137 uwb: 0.0 1237.73 1387.17 +imu_odom_: 1691062530.994836655 0.234632 0.0646434 9.79468 -0.0553937 0.015979 0.036219 0.21 0 pose: 0.39947242 -4.00841 -3.71464 0 -0.00848152 -0.0003499240.995776 0.0914253 uwb: 0.49938573 1237.32 1388.02 +imu_odom_: 1691062531.10850667 0.100556 -0.172383 9.88326 -0.0788296 -0.00852212 0.0692422 0.21 0 pose: 0.0 -4.00841 -3.71464 0 -0.00848152 -0.0003499240.995776 0.0914253 uwb: 0.0 1237.32 1388.02 +imu_odom_: 1691062531.28899753 0.591368 -0.442927 10.0221 -0.0596548 0 0.015979 0.21 0 pose: 0.0 -4.00841 -3.71464 0 -0.00848152 -0.0003499240.995776 0.0914253 uwb: 0.50021989 1239.13 1387.93 +imu_odom_: 1691062531.52886653 0.61531 -0.25618 9.68215 -0.0713727 -0.0266316 0.0532632 0.22 0.02 pose: 0.8018088 -4.01147 -3.71599 0 -0.00850387 0.000457004 0.995775 0.091432 uwb: 0.0 1239.13 1387.93 +imu_odom_: 1691062531.78833964 0.071826 -0.560243 9.58638 -0.0511327 -0.00745685 0.0330232 0.2 -0.02 pose: 0.43017643 -4.0155 -3.70684 0 -0.00950465 0.00194012 0.995775 0.0913083 uwb: 0.49988456 1241.75 1386.86 +imu_odom_: 1691062531.100823414 0.368707 0.0694318 9.7875 -0.052198 0.00426106 0.052198 0.2 -0.02 pose: 0.0 -4.0155 -3.70684 0 -0.00950465 0.00194012 0.995775 0.0913083 uwb: 0.0 1241.75 1386.86 +imu_odom_: 1691062531.124012967 0.555455 -0.356736 9.93354 -0.0553937 -0.0415453 0.0308927 0.16 0.02 pose: 0.41917580 -4.02465 -3.71087 0 -0.00662389 -7.10886e-050.995801 0.0912989 uwb: 0.0 1241.75 1386.86 +imu_odom_: 1691062531.141890568 0.964863 0.0335188 10.0748 -0.0308927 -0.0127832 0.0255663 0.16 0.02 pose: 0.0 -4.02465 -3.71087 0 -0.00662389 -7.10886e-050.995801 0.0912989 uwb: 0.49939169 1240.32 1388.33 +imu_odom_: 1691062531.165831388 0.756568 -0.270545 9.61511 -0.0575243 -0.0255663 0.0511327 0.17 0 pose: 0.0 -4.02465 -3.71087 0 -0.00662389 -7.10886e-050.995801 0.0912989 uwb: 0.0 1240.32 1388.33 +imu_odom_: 1691062531.191872608 0.497994 -0.160412 9.87848 -0.0436758 -0.0106526 0.036219 0.17 0 pose: 0.81059902 -4.03784 -3.70576 0 -0.00265262 7.59268e-05 0.995806 0.0914491 uwb: 0.0 1240.32 1388.33 +imu_odom_: 1691062531.213862058 1.02711 -0.414197 10.0245 -0.0628506 -0.0276969 0.0553937 0.19 0 pose: 0.49982040 -4.04472 -3.7088 0 0.00231972 0.000895395 0.995815 0.0913572 uwb: 0.0 1240.32 1388.33 +imu_odom_: 1691062531.237830292 0.739808 0.0167594 10.1634 -0.0553937 -0.0479369 0.0426106 0.19 0 pose: 0.5933147 -4.04699 -3.7098 0 0.00291961 0.000605432 0.995818 0.0913094 uwb: 0.99907210 1240.98 1388.64 +imu_odom_: 1691062531.255870338 0.514753 -0.260968 10.137 -0.0649811 0.0213053 0.0511327 0.18 -0.02 pose: 0.40024537 -4.05102 -3.70065 0 0.00696912 0.0012335 0.995812 0.0911494 uwb: 0.0 1240.98 1388.64 +imu_odom_: 1691062531.279809700 0.342371 -0.241814 9.80665 -0.0372843 -0.0245011 0.0234358 0.18 -0.02 pose: 0.0 -4.05102 -3.70065 0 0.00696912 0.0012335 0.995812 0.0911494 uwb: 0.49985831 1241.26 1389.1 +imu_odom_: 1691062531.304990287 0.248997 -0.0047884 10.2041 -0.0873517 -0.0394148 0.072438 0.22 0 pose: 0.8006716 -4.05102 -3.70065 0 0.00656366 0.000460624 0.99582 0.0910989 uwb: 0.0 1241.26 1389.1 +imu_odom_: 1691062531.329806030 0.677559 -0.035913 10.4818 -0.0852212 -0.0511327 0.0415453 0.22 0 pose: 0.0 -4.05102 -3.70065 0 0.00656366 0.000460624 0.99582 0.0910989 uwb: 0.50103072 1240.86 1389.96 +imu_odom_: 1691062531.346806375 0.572214 -0.124498 9.89045 -0.0735032 0.0255663 0.0415453 0.17 -0.02 pose: 0.42116770 -4.06017 -3.70469 0 0.00350606 -1.19195e-050.995836 0.0910951 uwb: 0.0 1240.86 1389.96 +imu_odom_: 1691062531.367846241 0.289698 -0.237026 10.094 -0.0287621 0.00639159 0.02024 0.17 -0.02 pose: 0.0 -4.06017 -3.70469 0 0.00350606 -1.19195e-050.995836 0.0910951 uwb: 0.0 1240.86 1389.96 +imu_odom_: 1691062531.384848044 -0.035913 -0.131681 10.0317 -0.04048 -0.0394148 0.0383495 0.18 0 pose: 0.49877633 -4.07336 -3.69959 0 0.00590752 0.0020759 0.99585 0.0907922 uwb: 0.50028119 1242.46 1389.52 +imu_odom_: 1691062531.409800567 0.790087 -0.246603 9.58878 -0.0372843 0.00532632 0.0245011 0.18 0 pose: 0.0 -4.07336 -3.69959 0 0.00590752 0.0020759 0.99585 0.0907922 uwb: 0.0 1242.46 1389.52 +imu_odom_: 1691062531.434791004 0.433351 -0.138864 9.91439 -0.0617853 0.0127832 0.0543285 0.18 0 pose: 0.71969156 -4.08541 -3.69705 0 0.00530512 0.0019783 0.995818 0.0911803 uwb: 0.49959875 1241.3 1390.68 +imu_odom_: 1691062531.459902764 0.0287304 -0.0694318 9.85214 -0.0330232 0.00426106 0.0330232 0.18 0 pose: 0.6998804 -4.08655 -3.69448 0 0.00461947 0.00227732 0.995826 0.091132 uwb: 0.0 1241.3 1390.68 +imu_odom_: 1691062531.484805125 0.143652 -0.169988 9.77792 -0.0543285 -0.00426106 0.0532632 0.16 -0.02 pose: 0.43103393 -4.09288 -3.69728 0 0.000358983 0.00403012 0.995834 0.0910979 uwb: 0.50074782 1244.68 1389.29 +imu_odom_: 1691062531.502049865 1.02472 -0.227449 10.1155 -0.0490022 -0.0213053 0.0287621 0.16 -0.02 pose: 0.0 -4.09288 -3.69728 0 0.000358983 0.00403012 0.995834 0.0910979 uwb: 0.0 1244.68 1389.29 +imu_odom_: 1691062531.526813988 0.512359 -0.141258 9.52653 -0.056459 -0.00106526 0.0458064 0.19 0 pose: 0.32050485 -4.09973 -3.68938 0 -0.00136787 0.0038099 0.995845 0.0909746 uwb: 0.49831262 1243.6 1390.58 +imu_odom_: 1691062531.549799684 0.201113 -0.275333 10.003 -0.0500674 -0.0415453 0.0298274 0.19 0 pose: 0.0 -4.09973 -3.68938 0 -0.00136787 0.0038099 0.995845 0.0909746 uwb: 0.0 1243.6 1390.58 +imu_odom_: 1691062531.575802115 0.648829 -0.114922 10.4267 -0.0500674 -0.04048 0.0500674 0.24 0 pose: 0.43011525 -4.10888 -3.69342 0 0.00154992 0.00317746 0.995846 0.0909824 uwb: 0.0 1243.6 1390.58 +imu_odom_: 1691062531.591782299 0.948104 -0.390255 9.73722 -0.0671117 0.0213053 0.04048 0.24 0 pose: 0.0 -4.10888 -3.69342 0 0.00154992 0.00317746 0.995846 0.0909824 uwb: 0.49964250 1244.39 1391.09 +imu_odom_: 1691062531.615818778 0.603339 0.0383072 10.3022 -0.0479369 -0.0138484 0.0340885 0.18 0 pose: 0.47840811 -4.10888 -3.69342 0 0.00404404 0.00246402 0.995848 0.090911 uwb: 0.0 1244.39 1391.09 +imu_odom_: 1691062531.641784171 0.191536 -0.402226 9.66539 -0.0426106 -0.0266316 0.0351537 0.24 -0.02 pose: 0.0 -4.10888 -3.69342 0 0.00404404 0.00246402 0.995848 0.090911 uwb: 0.50052909 1244.25 1392.39 +imu_odom_: 1691062531.663798702 0.402226 -0.349553 9.44991 -0.0436758 -0.00745685 0.0426106 0.24 -0.02 pose: 0.33013193 -4.12203 -3.68829 0 0.0061325 0.00404698 0.995826 0.0909739 uwb: 0.0 1244.25 1392.39 +imu_odom_: 1691062531.679769262 0.138864 -0.270545 10.3046 -0.0458064 0.0191748 0.0394148 0.24 -0.02 pose: 0.0 -4.12203 -3.68829 0 0.0061325 0.00404698 0.995826 0.0909739 uwb: 0.49980873 1241.52 1394.9 +imu_odom_: 1691062531.703831405 0.0167594 -0.105345 10.4651 -0.0351537 0.0628506 0.0372843 0.18 0 pose: 0.8010215 -4.12207 -3.68832 0 0.0055724 0.00362556 0.995829 0.090992 uwb: 0.0 1241.52 1394.9 +imu_odom_: 1691062531.727767850 0.720655 -0.169988 10.1251 -0.0585895 0.00532632 0.0394148 0.26 0 pose: 0.46957138 -4.13118 -3.69245 0 0.00259345 0.000781459 0.995848 0.0909942 uwb: 0.49997789 1240.81 1396.05 +imu_odom_: 1691062531.744772861 0.572214 -0.0646434 9.32063 -0.0500674 0.00426106 0.036219 0.26 0 pose: 0.0 -4.13118 -3.69245 0 0.00259345 0.000781459 0.995848 0.0909942 uwb: 0.0 1240.81 1396.05 +imu_odom_: 1691062531.769769423 0.134075 -0.521936 9.76595 -0.0713727 -0.02024 0.0490022 0.18 0.02 pose: 0.40109405 -4.13531 -3.68335 0 -0.0008020690.0017008 0.995847 0.0910238 uwb: 0.0 1240.81 1396.05 +imu_odom_: 1691062531.794811771 0.227449 -0.0191536 10.0149 -0.0479369 -0.0149137 0.0340885 0.18 0.02 pose: 0.0 -4.13531 -3.68335 0 -0.0008020690.0017008 0.995847 0.0910238 uwb: 0.50086156 1240.73 1396.71 +imu_odom_: 1691062531.807820424 0.45011 -0.0742203 10.094 -0.052198 -0.0138484 0.0532632 0.18 0.02 pose: 0.0 -4.13531 -3.68335 0 -0.0008020690.0017008 0.995847 0.0910238 uwb: 0.0 1240.73 1396.71 +imu_odom_: 1691062531.831875568 0.548272 -0.131681 9.95748 -0.0447411 -0.0234358 0.0234358 0.18 -0.02 pose: 0.41942661 -4.14442 -3.68748 0 0.00165869 0.0019078 0.995847 0.0910115 uwb: 0.50020537 1244.24 1395.46 +imu_odom_: 1691062531.857833086 0.371101 -0.347159 9.94551 -0.072438 0.00319579 0.0585895 0.23 0 pose: 0.47993339 -4.15766 -3.68251 0 -0.0004669670.00301976 0.99585 0.0909613 uwb: 0.0 1244.24 1395.46 +imu_odom_: 1691062531.880868069 0.658405 -0.0957681 9.96467 -0.0426106 -0.00319579 0.0330232 0.23 0 pose: 0.31044032 -4.15766 -3.68251 0 0.00268786 0.00364354 0.995832 0.0910973 uwb: 0.50082656 1242.13 1397.45 +imu_odom_: 1691062531.897742134 0.481235 -0.181959 9.80426 -0.0671117 0.0394148 0.0628506 0.23 0 pose: 0.0 -4.15766 -3.68251 0 0.00268786 0.00364354 0.995832 0.0910973 uwb: 0.0 1242.13 1397.45 +imu_odom_: 1691062531.919805660 0.574608 -0.229843 9.94551 -0.0511327 0.015979 0.036219 0.18 0 pose: 0.7954803 -4.15766 -3.68251 0 0.00230651 0.00286116 0.995842 0.0910217 uwb: 0.0 1242.13 1397.45 +imu_odom_: 1691062531.944765766 0.634463 -0.172383 9.93115 -0.0585895 0.0287621 0.0458064 0.18 0 pose: 0.48939715 -4.17089 -3.67754 0 0.00398196 0.00129204 0.995858 0.0908284 uwb: 0.49875008 1243.82 1397.1 +imu_odom_: 1691062531.960803403 -0.11971 -0.227449 9.44273 -0.0447411 0.0500674 0.0340885 0.18 0 pose: 0.0 -4.17089 -3.67754 0 0.00398196 0.00129204 0.995858 0.0908284 uwb: 0.0 1243.82 1397.1 +imu_odom_: 1691062531.985869084 0.304064 -0.344765 9.44991 -0.0639159 -0.0149137 0.0553937 0.18 0 pose: 0.0 -4.17089 -3.67754 0 0.00398196 0.00129204 0.995858 0.0908284 uwb: 0.50102488 1239.74 1400.57 +imu_odom_: 1691062532.8878987 0.301669 -0.196325 9.8258 -0.0585895 -0.0479369 0.052198 0.18 0 pose: 0.39052205 -4.18 -3.68167 0 0.00676548 -0.0001597950.995853 0.090727 uwb: 0.0 1239.74 1400.57 +imu_odom_: 1691062532.26734719 0.864307 -0.146046 9.79707 -0.0500674 -0.0383495 0.052198 0.18 0 pose: 0.0 -4.18 -3.68167 0 0.00676548 -0.0001597950.995853 0.090727 uwb: 0.49881138 1239.38 1401.55 +imu_odom_: 1691062532.50860446 0.78051 -0.397437 9.93594 -0.0607201 0.0276969 0.0308927 0.24 0 pose: 0.64957229 -4.19324 -3.67671 0 0.00352753 -0.0007854020.995892 0.0904762 uwb: 0.0 1239.38 1401.55 +imu_odom_: 1691062532.73796276 0.452504 -0.299275 9.52892 -0.0479369 -0.00426106 0.0415453 0.23 0 pose: 0.23976696 -4.19324 -3.67671 0 0.0032362 -0.0003702230.995907 0.0903261 uwb: 0.0 1239.38 1401.55 +imu_odom_: 1691062532.99854418 0.179565 0.0215478 10.1227 -0.0490022 -0.00532632 0.04048 0.23 0 pose: 0.0 -4.19324 -3.67671 0 0.0032362 -0.0003702230.995907 0.0903261 uwb: 0.50195242 1240.7 1401.39 +imu_odom_: 1691062532.122808913 0.507571 0.0766145 10.058 -0.072438 -0.0181095 0.0543285 0.2 0 pose: 0.41996041 -4.20649 -3.67176 0 0.00530891 -0.00224145 0.995893 0.0903497 uwb: 0.0 1240.7 1401.39 +imu_odom_: 1691062532.146771321 0.45011 -0.25618 10.0078 -0.0490022 0.00106526 0.0308927 0.2 0 pose: 0.0 -4.20649 -3.67176 0 0.00530891 -0.00224145 0.995893 0.0903497 uwb: 0.49940347 1241.8 1401.63 +imu_odom_: 1691062532.163738714 0.28491 -0.308852 9.71567 -0.0575243 -0.00745685 0.0394148 0.21 -0.02 pose: 0.48149962 -4.20649 -3.67176 0 0.0026445 -0.0004764640.995914 0.0902689 uwb: 0.0 1241.8 1401.63 +imu_odom_: 1691062532.179715403 0.610521 -0.153229 9.991 -0.0703074 -0.0245011 0.056459 0.21 -0.02 pose: 0.0 -4.20649 -3.67176 0 0.0026445 -0.0004764640.995914 0.0902689 uwb: 0.49880561 1242.43 1401.88 +imu_odom_: 1691062532.202742517 0.538695 -0.126893 9.72764 -0.0500674 -0.0117179 0.0394148 0.21 -0.02 pose: 0.0 -4.20649 -3.67176 0 0.0026445 -0.0004764640.995914 0.0902689 uwb: 0.0 1242.43 1401.88 +imu_odom_: 1691062532.228849362 1.00317 -0.361524 9.78271 -0.056459 -0.0298274 0.0468716 0.23 0.02 pose: 0.48010266 -4.21973 -3.6668 0 0.00164334 -0.00156845 0.995916 0.0902525 uwb: 0.50029299 1239.98 1404.17 +imu_odom_: 1691062532.251891642 0.837971 -0.268151 10.1969 -0.0596548 -0.0276969 0.0500674 0.18 0.02 pose: 0.32943498 -4.22883 -3.67095 0 0.003043 -0.0007830970.995926 0.0901228 uwb: 0.0 1239.98 1404.17 +imu_odom_: 1691062532.267846457 0.675165 -0.102951 10.058 -0.0585895 -0.0319579 0.0596548 0.18 0.02 pose: 0.0 -4.22883 -3.67095 0 0.003043 -0.0007830970.995926 0.0901228 uwb: 0.0 1239.98 1404.17 +imu_odom_: 1691062532.292715869 0.397437 -0.201113 9.80904 -0.0468716 0.0138484 0.0458064 0.18 0 pose: 0.47993351 -4.24207 -3.66598 0 0.00762967 -0.0009037520.995913 0.0899891 uwb: 0.0 1239.98 1404.17 +imu_odom_: 1691062532.315719068 0.203507 -0.275333 9.77792 -0.056459 0.02024 0.0458064 0.18 0 pose: 0.0 -4.24207 -3.66598 0 0.00762967 -0.0009037520.995913 0.0899891 uwb: 0.0 1239.98 1404.17 +imu_odom_: 1691062532.341781876 -0.071826 -0.272939 9.25359 -0.0692422 0.036219 0.0511327 0.23 0.02 pose: 0.39002636 -4.24207 -3.66598 0 0.00984299 -9.92636e-050.995917 0.089734 uwb: 0.99972562 1240.73 1404.63 +imu_odom_: 1691062532.364769327 0.169988 -0.593762 9.8258 -0.0671117 0.0479369 0.0458064 0.23 0.02 pose: 0.0 -4.24207 -3.66598 0 0.00984299 -9.92636e-050.995917 0.089734 uwb: 0.0 1240.73 1404.63 +imu_odom_: 1691062532.381712806 0.0526724 -0.0957681 10.0963 -0.04048 0.0149137 0.0308927 0.18 0.02 pose: 0.48884315 -4.25121 -3.67004 0 0.00437415 -0.0001959970.995972 0.0895629 uwb: 0.50060795 1241.21 1405.44 +imu_odom_: 1691062532.405709627 0.337582 -0.337582 10.1203 -0.0852212 0.00106526 0.0660464 0.18 0.02 pose: 0.0 -4.25121 -3.67004 0 0.00437415 -0.0001959970.995972 0.0895629 uwb: 0.0 1241.21 1405.44 +imu_odom_: 1691062532.430709402 0.826 -0.251391 10.0149 -0.0756338 -0.0170442 0.0447411 0.18 -0.02 pose: 0.49082047 -4.26441 -3.66498 0 -0.000706462-0.00167197 0.995993 0.0894182 uwb: 0.49779653 1241.31 1406.42 +imu_odom_: 1691062532.453882046 0.366313 -0.572214 9.38288 -0.056459 0.0351537 0.0213053 0.18 -0.02 pose: 0.0 -4.26441 -3.66498 0 -0.000706462-0.00167197 0.995993 0.0894182 uwb: 0.0 1241.31 1406.42 +imu_odom_: 1691062532.469697165 0.177171 -0.1652 10.0365 -0.0330232 0.0298274 0.0255663 0.18 0 pose: 0.40916678 -4.26441 -3.66498 0 -0.00185197 -0.00376043 0.996012 0.089122 uwb: 0.0 1241.31 1406.42 +imu_odom_: 1691062532.493878011 0.335188 -0.411803 10.2927 -0.0415453 -0.00852212 0.0340885 0.18 0 pose: 0.0 -4.26441 -3.66498 0 -0.00185197 -0.00376043 0.996012 0.089122 uwb: 0.50087043 1242.07 1406.89 +imu_odom_: 1691062532.519044314 0.761356 0.0694318 10.094 -0.0426106 0.00958738 0.0500674 0.25 0 pose: 0.48074135 -4.27767 -3.66005 0 -0.00175739 -0.00552137 0.995984 0.0893458 uwb: 0.0 1242.07 1406.89 +imu_odom_: 1691062532.534698447 0.203507 -0.246603 9.62948 -0.0607201 0.00426106 0.0575243 0.25 0 pose: 0.0 -4.27767 -3.66005 0 -0.00175739 -0.00552137 0.995984 0.0893458 uwb: 0.49994593 1239.95 1408.99 +imu_odom_: 1691062532.559749551 0.0909797 -0.1652 9.68215 -0.0468716 0.00532632 0.0436758 0.23 0 pose: 0.40172701 -4.28679 -3.66415 0 -0.00270103 -0.00637738 0.995969 0.0894252 uwb: 0.0 1239.95 1408.99 +imu_odom_: 1691062532.576748734 0.68953 -0.19393 10.0533 -0.0617853 0.00213053 0.0553937 0.23 0 pose: 0.0 -4.28679 -3.66415 0 -0.00270103 -0.00637738 0.995969 0.0894252 uwb: 0.49995759 1239.67 1410.16 +imu_odom_: 1691062532.593754332 0.294487 -0.0814029 9.95748 -0.0543285 -0.0138484 0.0340885 0.18 -0.02 pose: 0.40776397 -4.29095 -3.65505 0 -0.0037113 -0.00400959 0.996001 0.089175 uwb: 0.0 1239.67 1410.16 +imu_odom_: 1691062532.618842475 0.198719 -0.392649 9.53611 -0.0607201 -0.00745685 0.0532632 0.18 -0.02 pose: 0.0 -4.29095 -3.65505 0 -0.0037113 -0.00400959 0.996001 0.089175 uwb: 0.0 1239.67 1410.16 +imu_odom_: 1691062532.635708377 0.220267 -0.0861913 10.0413 -0.0628506 -0.0628506 0.0351537 0.18 -0.02 pose: 0.0 -4.29095 -3.65505 0 -0.0037113 -0.00400959 0.996001 0.089175 uwb: 0.50122332 1238.54 1411.53 +imu_odom_: 1691062532.660959547 0.837971 -0.203507 10.1131 -0.0681769 -0.0319579 0.0543285 0.26 -0.02 pose: 0.41966877 -4.30004 -3.65922 0 -0.00364835 -0.00202136 0.996021 0.0890208 uwb: 0.0 1238.54 1411.53 +imu_odom_: 1691062532.687829326 0.629675 -0.179565 9.64863 -0.0596548 -0.00745685 0.0372843 0.23 -0.02 pose: 0.76234427 -4.3133 -3.6543 0 -0.00267241 -0.00158002 0.996052 0.0887166 uwb: 0.0 1238.54 1411.53 +imu_odom_: 1691062532.712682697 0.395043 -0.351948 9.60314 -0.0681769 -0.0266316 0.0458064 0.23 -0.02 pose: 0.0 -4.3133 -3.6543 0 -0.00267241 -0.00158002 0.996052 0.0887166 uwb: 0.0 1238.54 1411.53 +imu_odom_: 1691062532.737818086 0.335188 -0.0574608 9.80426 -0.0394148 -0.0319579 0.0340885 0.22 0.02 pose: 0.7876645 -4.3133 -3.6543 0 -0.00188265 -0.00147286 0.996053 0.0887266 uwb: 0.100143172 1240.22 1411.1 +imu_odom_: 1691062532.760736126 0.500388 -0.263362 10.2161 -0.0532632 -0.0266316 0.0468716 0.22 0.02 pose: 0.0 -4.3133 -3.6543 0 -0.00188265 -0.00147286 0.996053 0.0887266 uwb: 0.0 1240.22 1411.1 +imu_odom_: 1691062532.775704902 0.718261 -0.102951 10.319 -0.0458064 -0.0585895 0.0468716 0.19 0 pose: 0.51913301 -4.32657 -3.64939 0 -0.000213456-0.00299967 0.996054 0.0886931 uwb: 0.0 1240.22 1411.1 +imu_odom_: 1691062532.801818747 0.804452 -0.244209 10.4004 -0.0532632 -0.0255663 0.0426106 0.19 0 pose: 0.0 -4.32657 -3.64939 0 -0.000213456-0.00299967 0.996054 0.0886931 uwb: 0.49611085 1243.87 1409.92 +imu_odom_: 1691062532.817705901 0.390255 -0.0454898 9.56484 -0.0468716 -0.0340885 0.0468716 0.2 -0.02 pose: 0.46995354 -4.33565 -3.65357 0 0.00294805 -0.00163435 0.996059 0.0886324 uwb: 0.0 1243.87 1409.92 +imu_odom_: 1691062532.842819708 0.213084 -0.328006 10.0173 -0.0713727 0.0223706 0.0639159 0.2 -0.02 pose: 0.0 -4.33565 -3.65357 0 0.00294805 -0.00163435 0.996059 0.0886324 uwb: 0.50004508 1246.04 1409.48 +imu_odom_: 1691062532.867790320 0.464475 -0.186748 10.1011 -0.0585895 0.02024 0.0340885 0.17 0.02 pose: 0.75074861 -4.34891 -3.64866 0 0.00339567 -0.00108037 0.996096 0.0882087 uwb: 0.0 1246.04 1409.48 +imu_odom_: 1691062532.884783669 0.435745 -0.189142 10.0844 -0.0543285 -0.00958738 0.0553937 0.17 0.02 pose: 0.7882187 -4.34891 -3.64866 0 0.00322265 -0.0002986360.996095 0.0882331 uwb: 0.50236947 1245 1411 +imu_odom_: 1691062532.909649873 0.751779 -0.162806 10.07 -0.0394148 -0.00745685 0.0213053 0.18 0 pose: 0.0 -4.34891 -3.64866 0 0.00322265 -0.0002986360.996095 0.0882331 uwb: 0.0 1245 1411 +imu_odom_: 1691062532.932651614 0.292093 -0.416591 9.69652 -0.0713727 0.00852212 0.0575243 0.18 0 pose: 0.42043287 -4.36218 -3.64376 0 0.00205609 0.00106387 0.996098 0.0882249 uwb: 0.49749031 1244.33 1412.33 +imu_odom_: 1691062532.957709426 0.648829 -0.0383072 9.8665 -0.0415453 -0.0170442 0.0340885 0.25 0 pose: 0.39906432 -4.36822 -3.64654 0 0.00205211 -0.0006477410.996103 0.0881674 uwb: 0.0 1244.33 1412.33 +imu_odom_: 1691062532.982661081 0.885855 -0.0574608 10.0365 -0.0671117 -0.00958738 0.0575243 0.25 0 pose: 0.8063588 -4.37126 -3.64794 0 0.00275258 -0.0001095450.9961 0.0881906 uwb: 0.50058754 1245.15 1412.88 +imu_odom_: 1691062533.6769310 0.241814 -0.213084 9.75398 -0.0500674 0.036219 0.0415453 0.2 -0.02 pose: 0.23951908 -4.37126 -3.64794 0 0.00492253 0.00113683 0.996092 0.088177 uwb: 0.0 1245.15 1412.88 +imu_odom_: 1691062533.23823908 0.141258 -0.464475 10.0389 -0.0617853 0.00958738 0.0468716 0.2 -0.02 pose: 0.0 -4.37126 -3.64794 0 0.00492253 0.00113683 0.996092 0.088177 uwb: 0.0 1245.15 1412.88 +imu_odom_: 1691062533.48697117 0.521936 0.0574608 10.4148 -0.0298274 -0.015979 0.0394148 0.25 0.02 pose: 0.50130209 -4.38453 -3.64305 0 0.00311303 0.000949699 0.996118 0.087965 uwb: 0.50059342 1245.58 1413.61 +imu_odom_: 1691062533.73652569 0.531513 -0.21069 10.5129 -0.0756338 -0.00213053 0.0468716 0.22 0 pose: 0.0 -4.38453 -3.64305 0 0.00311303 0.000949699 0.996118 0.087965 uwb: 0.0 1245.58 1413.61 +imu_odom_: 1691062533.87925493 0.68953 -0.0430956 9.97903 -0.0351537 -0.0106526 0.0394148 0.22 0 pose: 0.41861313 -4.38453 -3.64305 0 0.00385172 0.00234266 0.996119 0.087905 uwb: 0.50004229 1249.61 1412.15 +imu_odom_: 1691062533.105805436 0.567426 -0.071826 9.8665 -0.0596548 -0.0170442 0.0543285 0.22 0 pose: 0.0 -4.38453 -3.64305 0 0.00385172 0.00234266 0.996119 0.087905 uwb: 0.0 1249.61 1412.15 +imu_odom_: 1691062533.128827014 0.253785 -0.181959 10.3214 -0.0479369 -0.00426106 0.0276969 0.19 0.02 pose: 0.0 -4.38453 -3.64305 0 0.00385172 0.00234266 0.996119 0.087905 uwb: 0.49828953 1250.09 1412.96 +imu_odom_: 1691062533.146639880 0.605733 -0.0766145 9.76355 -0.0596548 -0.00532632 0.0383495 0.19 0.02 pose: 0.56158152 -4.3978 -3.63816 0 0.00650143 0.00322844 0.996115 0.0877581 uwb: 0.0 1250.09 1412.96 +imu_odom_: 1691062533.170646331 0.280122 -0.114922 9.91439 -0.0617853 -0.0127832 0.0458064 0.19 0 pose: 0.0 -4.3978 -3.63816 0 0.00650143 0.00322844 0.996115 0.0877581 uwb: 0.0 1250.09 1412.96 +imu_odom_: 1691062533.195798349 0.392649 0.110133 10.0724 -0.0852212 0.00213053 0.0575243 0.2 0 pose: 0.33823096 -4.40919 -3.63735 0 0.00651445 0.00392051 0.996103 0.0878665 uwb: 0.50100471 1249.4 1414.26 +imu_odom_: 1691062533.209627395 1.06063 -0.294487 9.75398 -0.0692422 -0.00745685 0.0447411 0.18 0.02 pose: 0.0 -4.40919 -3.63735 0 0.00651445 0.00392051 0.996103 0.0878665 uwb: 0.0 1249.4 1414.26 +imu_odom_: 1691062533.226751404 0.56982 -0.306458 9.92875 -0.0468716 -0.0149137 0.0372843 0.18 0.02 pose: 0.56005915 -4.42015 -3.63746 0 0.0040895 0.00589457 0.996132 0.0875717 uwb: 0.49924610 1243.2 1418.66 +imu_odom_: 1691062533.251656110 0.773327 -0.435745 9.97424 -0.072438 -0.00958738 0.0490022 0.18 -0.02 pose: 0.0 -4.42015 -3.63746 0 0.0040895 0.00589457 0.996132 0.0875717 uwb: 0.0 1243.2 1418.66 +imu_odom_: 1691062533.275625523 0.509965 -0.268151 9.16261 -0.0628506 0.0191748 0.056459 0.18 -0.02 pose: 0.31000300 -4.42015 -3.63746 0 0.00575191 0.00337119 0.99614 0.0875222 uwb: 0.0 1243.2 1418.66 +imu_odom_: 1691062533.301802368 -0.248997 -0.138864 9.55047 -0.0340885 0.0426106 0.0298274 0.25 0 pose: 0.41979428 -4.43342 -3.63258 0 0.00601792 -0.0006370250.996172 0.0872105 uwb: 0.49994897 1242.49 1419.97 +imu_odom_: 1691062533.318628028 0.497994 -0.296881 10.0556 -0.056459 -0.0575243 0.04048 0.25 0 pose: 0.8023051 -4.43342 -3.63258 0 0.00505 -0.00038492 0.996174 0.0872498 uwb: 0.0 1242.49 1419.97 +imu_odom_: 1691062533.334755499 1.15161 -0.0526724 9.53611 -0.0575243 -0.0596548 0.0543285 0.23 -0.14 pose: 0.0 -4.43342 -3.63258 0 0.00505 -0.00038492 0.996174 0.0872498 uwb: 0.49964274 1244.25 1420.47 +imu_odom_: 1691062533.350736274 1.86269 -0.287304 10.1514 -0.0532632 -0.122505 0.0340885 0.23 -0.14 pose: 0.42097834 -4.4425 -3.63679 0 0.0047217 -0.00136229 0.996172 0.0872749 uwb: 0.0 1244.25 1420.47 +imu_odom_: 1691062533.368620008 1.91297 -0.0766145 9.47625 -0.0490022 -0.0191748 -0.0830906 0.23 -0.14 pose: 0.0 -4.4425 -3.63679 0 0.0047217 -0.00136229 0.996172 0.0872749 uwb: 0.0 1244.25 1420.47 +imu_odom_: 1691062533.385628235 1.75734 0.0909797 9.90481 -0.0596548 0.0479369 -0.162985 0.18 -0.35 pose: 0.0 -4.4425 -3.63679 0 0.0047217 -0.00136229 0.996172 0.0872749 uwb: 0.50020269 1241.39 1423.17 +imu_odom_: 1691062533.400613931 1.09415 0.0191536 10.1706 -0.0415453 0.00639159 -0.267381 0.18 -0.35 pose: 0.32884012 -4.4467 -3.62771 0 0.00923788 -0.00146467 0.9961 0.0877347 uwb: 0.0 1241.39 1423.17 +imu_odom_: 1691062533.416732069 0.73502 0.0814029 9.53371 -0.0617853 -0.00745685 -0.361125 0.1 -0.41 pose: 0.0 -4.4467 -3.62771 0 0.00923788 -0.00146467 0.9961 0.0877347 uwb: 0.0 1241.39 1423.17 +imu_odom_: 1691062533.429629321 0.873884 0.227449 10.1682 -0.052198 0.0149137 -0.414388 0.1 -0.41 pose: 0.34136902 -4.4467 -3.62771 0 0.0121763 -0.0007533260.995762 0.0911597 uwb: 0.0 1241.39 1423.17 +imu_odom_: 1691062533.445619136 1.00078 0.0957681 10.0389 -0.0596548 -0.0308927 -0.434628 0.1 -0.41 pose: 0.0 -4.4467 -3.62771 0 0.0121763 -0.0007533260.995762 0.0911597 uwb: 0.0 1241.39 1423.17 +imu_odom_: 1691062533.462685984 0.699107 -0.0622492 10.0245 -0.0607201 -0.00745685 -0.461259 0.11 -0.58 pose: 0.14902577 -4.4467 -3.62771 0 0.013154 0.000255827 0.995506 0.0937773 uwb: 0.0 1241.39 1423.17 +imu_odom_: 1691062533.478728587 0.907402 -0.356736 10.0485 -0.0543285 -0.0479369 -0.459129 0.11 -0.58 pose: 0.0 -4.4467 -3.62771 0 0.013154 0.000255827 0.995506 0.0937773 uwb: 0.100098575 1240.73 1424.6 +imu_odom_: 1691062533.494880555 0.64404 -0.225055 9.76834 -0.0649811 -0.0287621 -0.467651 0.11 -0.58 pose: 0.0 -4.4467 -3.62771 0 0.013154 0.000255827 0.995506 0.0937773 uwb: 0.0 1240.73 1424.6 +imu_odom_: 1691062533.511725463 0.981623 -0.146046 10.1562 -0.0617853 -0.0394148 -0.48363 0.07 -0.5 pose: 0.44955044 -4.45575 -3.63198 0 0.0156641 0.00376576 0.994441 0.104055 uwb: 0.0 1240.73 1424.6 +imu_odom_: 1691062533.528737190 0.885855 0.0023942 10.0533 -0.0703074 -0.036219 -0.48363 0.1 -0.73 pose: 0.0 -4.45575 -3.63198 0 0.0156641 0.00376576 0.994441 0.104055 uwb: 0.49858409 1242.15 1424.5 +imu_odom_: 1691062533.544604225 0.905008 -0.373495 9.92397 -0.0607201 -0.0340885 -0.502805 0.1 -0.73 pose: 0.0 -4.45575 -3.63198 0 0.0156641 0.00376576 0.994441 0.104055 uwb: 0.0 1242.15 1424.5 +imu_odom_: 1691062533.561606620 0.802058 -0.220267 9.70849 -0.0671117 -0.0149137 -0.526241 0.09 -0.73 pose: 0.67281350 -4.46 -3.62293 0 0.0186535 0.00236403 0.992464 0.121083 uwb: 0.0 1242.15 1424.5 +imu_odom_: 1691062533.577600227 0.629675 -0.122104 10.1299 -0.0681769 -0.0138484 -0.523045 0.09 -0.73 pose: 0.0 -4.46 -3.62293 0 0.0186535 0.00236403 0.992464 0.121083 uwb: 0.50068973 1239.88 1426.57 +imu_odom_: 1691062533.594599997 0.663194 -0.181959 9.97185 -0.0639159 -0.00213053 -0.484695 0.09 -0.73 pose: 0.32697652 -4.46 -3.62293 0 0.0203088 0.000586393 0.991325 0.12985 uwb: 0.0 1239.88 1426.57 +imu_odom_: 1691062533.610660681 0.730232 -0.521936 9.72525 -0.0671117 0.015979 -0.447411 0.05 -0.44 pose: 0.41996052 -4.46901 -3.62713 0 0.0172733 0.000141399 0.989823 0.141249 uwb: 0.0 1239.88 1426.57 +imu_odom_: 1691062533.627649660 0.658405 -0.328006 10.0006 -0.0543285 0.0138484 -0.395213 0.05 -0.44 pose: 0.8065922 -4.46906 -3.62717 0 0.0170687 -0.0006585670.989549 0.14318 uwb: 0.49999563 1240.69 1427.13 +imu_odom_: 1691062533.643600980 0.610521 -0.380678 9.88087 -0.0575243 -0.00319579 -0.358994 0.05 -0.44 pose: 0.0 -4.46906 -3.62717 0 0.0170687 -0.0006585670.989549 0.14318 uwb: 0.0 1240.69 1427.13 +imu_odom_: 1691062533.661595246 0.507571 -0.184354 9.78989 -0.056459 0.00213053 -0.322775 0.06 -0.5 pose: 0.40935061 -4.46901 -3.62713 0 0.0145984 -0.00384366 0.988289 0.151848 uwb: 0.0 1240.69 1427.13 +imu_odom_: 1691062533.678606390 0.579397 -0.260968 9.88566 -0.0490022 0.00745685 -0.292948 0.04 -0.32 pose: 0.0 -4.46901 -3.62713 0 0.0145984 -0.00384366 0.988289 0.151848 uwb: 0.50007437 1242.61 1427.05 +imu_odom_: 1691062533.693653038 0.593762 -0.328006 9.86411 -0.0649811 0.00532632 -0.270577 0.04 -0.32 pose: 0.0 -4.46901 -3.62713 0 0.0145984 -0.00384366 0.988289 0.151848 uwb: 0.0 1242.61 1427.05 +imu_odom_: 1691062533.710801836 0.632069 -0.21069 9.96946 -0.0479369 0 -0.251402 0.03 -0.26 pose: 0.26005068 -4.46906 -3.62717 0 0.0121193 -0.00307079 0.987616 0.156392 uwb: 0.0 1242.61 1427.05 +imu_odom_: 1691062533.725795405 0.636858 -0.354342 9.73243 -0.0532632 0.00213053 -0.219444 0.03 -0.26 pose: 0.0 -4.46906 -3.62717 0 0.0121193 -0.00307079 0.987616 0.156392 uwb: 0.0 1242.61 1427.05 +imu_odom_: 1691062533.742738013 0.572214 -0.265756 9.89284 -0.0543285 0.00958738 -0.194943 0.03 -0.26 pose: 0.31047838 -4.46906 -3.62717 0 0.0106019 -0.00380803 0.986863 0.161168 uwb: 0.49931027 1242.94 1427.62 +imu_odom_: 1691062533.758735412 0.567426 -0.328006 9.96946 -0.0500674 0.00958738 -0.183225 0.03 -0.23 pose: 0.42084127 -4.46901 -3.62713 0 0.00910328 -0.00405771 0.985993 0.166491 uwb: 0.0 1242.94 1427.62 +imu_odom_: 1691062533.775737807 0.596156 -0.129287 10.0149 -0.0585895 -0.0213053 -0.168312 0.03 -0.23 pose: 0.7890355 -4.46906 -3.62717 0 0.00864373 -0.00469369 0.985848 0.16735 uwb: 0.0 1242.94 1427.62 +imu_odom_: 1691062533.791625256 0.555455 -0.203507 9.84256 -0.0532632 0.0106526 -0.157659 0.03 -0.23 pose: 0.0 -4.46906 -3.62717 0 0.00864373 -0.00469369 0.985848 0.16735 uwb: 0.50054683 1238.03 1431.14 +imu_odom_: 1691062533.817582204 0.641646 -0.253785 9.83299 -0.056459 -0.015979 -0.131028 0.03 -0.23 pose: 0.40996888 -4.47329 -3.61809 0 0.00817345 -0.00217798 0.98514 0.171547 uwb: 0.0 1238.03 1431.14 +imu_odom_: 1691062533.840585701 0.380678 -0.373495 9.7851 -0.0596548 0.0149137 -0.118244 0.02 -0.17 pose: 0.0 -4.47329 -3.61809 0 0.00817345 -0.00217798 0.98514 0.171547 uwb: 0.49945901 1234.54 1433.72 +imu_odom_: 1691062533.856600890 0.150835 -0.213084 9.92636 -0.0500674 0.0170442 -0.15979 0.02 -0.17 pose: 0.33047623 -4.47334 -3.61813 0 0.00987576 -0.00365152 0.984642 0.174266 uwb: 0.0 1234.54 1433.72 +imu_odom_: 1691062533.880654295 0.529119 0.0646434 10.0341 -0.0575243 -0.0415453 -0.235423 0.03 -0.44 pose: 0.0 -4.47334 -3.61813 0 0.00987576 -0.00365152 0.984642 0.174266 uwb: 0.49982939 1231.78 1435.87 +imu_odom_: 1691062533.905573000 0.775721 -0.0814029 9.8258 -0.0575243 -0.00532632 -0.313188 0.03 -0.44 pose: 0.38979314 -4.47334 -3.61813 0 0.00675715 -0.00291956 0.983998 0.178025 uwb: 0.0 1231.78 1435.87 +imu_odom_: 1691062533.928692862 0.45011 -0.351948 9.81144 -0.0660464 -0.00532632 -0.34195 0.03 -0.35 pose: 0.41920807 -4.4733 -3.6181 0 0.00966505 -0.0004483050.982754 0.184663 uwb: 0.50001312 1232.05 1436.39 +imu_odom_: 1691062533.944675970 0.418985 -0.311246 9.85932 -0.056459 -0.0170442 -0.352603 0.03 -0.35 pose: 0.0 -4.4733 -3.6181 0 0.00966505 -0.0004483050.982754 0.184663 uwb: 0.0 1232.05 1436.39 +imu_odom_: 1691062533.968586180 0.603339 -0.0383072 9.97424 -0.0585895 -0.0181095 -0.394148 0.03 -0.53 pose: 0.39102970 -4.48237 -3.62243 0 0.00646637 -0.002558 0.981359 0.192056 uwb: 0.0 1232.05 1436.39 +imu_odom_: 1691062533.994567626 0.577003 -0.179565 10.0078 -0.0511327 -0.00213053 -0.449542 0.03 -0.53 pose: 0.0 -4.48237 -3.62243 0 0.00646637 -0.002558 0.981359 0.192056 uwb: 0.49918487 1231.96 1437.13 +imu_odom_: 1691062534.20629860 0.509965 -0.208296 9.82102 -0.0660464 -0.00106526 -0.46339 0.02 -0.5 pose: 0.32005880 -4.48237 -3.62243 0 0.00853637 -0.0001468160.979942 0.199099 uwb: 0.0 1231.96 1437.13 +imu_odom_: 1691062534.46583315 0.387861 -0.31364 9.85453 -0.056459 -0.0245011 -0.504935 0.02 -0.61 pose: 0.25992528 -4.48237 -3.62243 0 0.00937058 0.000383207 0.978637 0.205382 uwb: 0.50265545 1230.62 1438.32 +imu_odom_: 1691062534.72620179 0.519542 -0.0335188 10.0317 -0.0575243 -0.0138484 -0.552872 0.02 -0.61 pose: 0.0 -4.48237 -3.62243 0 0.00937058 0.000383207 0.978637 0.205382 uwb: 0.0 1230.62 1438.32 +imu_odom_: 1691062534.89690530 0.579397 -0.227449 9.71567 -0.0681769 -0.0213053 -0.551807 0.02 -0.67 pose: 0.24970040 -4.48237 -3.62243 0 0.00704197 -0.0004964030.977317 0.211664 uwb: 0.49812924 1232.71 1437.64 +imu_odom_: 1691062534.113557874 0.737414 -0.272939 10.0197 -0.0660464 -0.0213053 -0.573112 0.02 -0.67 pose: 0.0 -4.48237 -3.62243 0 0.00704197 -0.0004964030.977317 0.211664 uwb: 0.0 1232.71 1437.64 +imu_odom_: 1691062534.139617194 0.454898 -0.126893 9.991 -0.0575243 0.00106526 -0.615723 0.01 -0.73 pose: 0.51943072 -4.48237 -3.62243 0 0.00669385 0.000550964 0.974049 0.226236 uwb: 0.50012115 1231.76 1438.62 +imu_odom_: 1691062534.154614267 0.517148 -0.191536 9.79228 -0.0735032 -0.0181095 -0.632767 0.01 -0.73 pose: 0.0 -4.48237 -3.62243 0 0.00669385 0.000550964 0.974049 0.226236 uwb: 0.0 1231.76 1438.62 +imu_odom_: 1691062534.179582848 0.766145 -0.248997 10.1035 -0.0532632 -0.0170442 -0.66579 0.01 -0.79 pose: 0.42099011 -4.48237 -3.62243 0 0.00878551 -0.00132821 0.971021 0.238829 uwb: 0.49986159 1232.68 1438.5 +imu_odom_: 1691062534.203548476 0.699107 -0.169988 9.85453 -0.0649811 -0.00745685 -0.688161 0.01 -0.79 pose: 0.0 -4.48237 -3.62243 0 0.00878551 -0.00132821 0.971021 0.238829 uwb: 0.0 1232.68 1438.5 +imu_odom_: 1691062534.229550343 0.565032 -0.258574 9.84256 -0.0660464 -0.02024 -0.688161 0.01 -0.7 pose: 0.39938824 -4.48237 -3.62243 0 0.00671475 -0.0007218260.967751 0.251819 uwb: 0.50043905 1230.96 1439.89 +imu_odom_: 1691062534.252614215 0.402226 -0.110133 9.991 -0.0543285 0.00106526 -0.713727 0.01 -0.7 pose: 0.0 -4.48237 -3.62243 0 0.00671475 -0.0007218260.967751 0.251819 uwb: 0.0 1230.96 1439.89 +imu_odom_: 1691062534.277543425 0.471658 -0.205901 9.82341 -0.056459 -0.00852212 -0.716923 0.01 -0.7 pose: 0.49966619 -4.48237 -3.62243 0 0.0102716 -0.00216697 0.963038 0.269163 uwb: 0.49989950 1234.68 1438.58 +imu_odom_: 1691062534.294612318 0.605733 -0.263362 10.1682 -0.0553937 0.0308927 -0.737163 0.01 -0.7 pose: 0.0 -4.48237 -3.62243 0 0.0102716 -0.00216697 0.963038 0.269163 uwb: 0.0 1234.68 1438.58 +imu_odom_: 1691062534.319606272 0.497994 -0.143652 9.82102 -0.0649811 -0.0298274 -0.727576 0.01 -0.7 pose: 0.49040074 -4.48237 -3.62243 0 0.00666728 -0.0013256 0.957995 0.286703 uwb: 0.0 1234.68 1438.58 +imu_odom_: 1691062534.344535190 0.6608 -0.105345 9.85453 -0.0607201 -0.00852212 -0.752077 0.01 -0.7 pose: 0.0 -4.48237 -3.62243 0 0.00666728 -0.0013256 0.957995 0.286703 uwb: 0.49948246 1233.34 1439.75 +imu_odom_: 1691062534.360652458 0.553061 -0.0742203 9.7875 -0.0639159 -0.00958738 -0.761664 0 -0.79 pose: 0.41991979 -4.48237 -3.62243 0 0.00597587 -0.00130164 0.95326 0.302089 uwb: 0.0 1233.34 1439.75 +imu_odom_: 1691062534.386528335 0.416591 -0.241814 9.79228 -0.0585895 -0.0191748 -0.800014 0 -0.79 pose: 0.0 -4.48237 -3.62243 0 0.00597587 -0.00130164 0.95326 0.302089 uwb: 0.50000449 1234.46 1439.07 +imu_odom_: 1691062534.399532331 0.371101 -0.186748 9.88326 -0.056459 0.0127832 -0.819188 0 -0.79 pose: 0.48066867 -4.48237 -3.62243 0 0.00877926 0.00115074 0.947373 0.32001 uwb: 0.0 1234.46 1439.07 +imu_odom_: 1691062534.424521328 0.507571 -0.184354 9.83059 -0.0628506 -0.0213053 -0.815993 0 -0.79 pose: 0.0 -4.48237 -3.62243 0 0.00877926 0.00115074 0.947373 0.32001 uwb: 0.0 1234.46 1439.07 +imu_odom_: 1691062534.449520240 0.553061 -0.335188 9.70131 -0.0607201 -0.0127832 -0.810666 0.01 -1.06 pose: 0.73830464 -4.48222 -3.62231 0 0.00583315 -0.00128212 0.936977 0.349341 uwb: 0.49978285 1233.79 1439.67 +imu_odom_: 1691062534.464528103 0.502782 -0.277727 9.94551 -0.0479369 -0.00852212 -0.833037 0.01 -1.06 pose: 0.7014557 -4.48237 -3.62243 0 0.00579157 -0.00199194 0.935931 0.35213 uwb: 0.0 1233.79 1439.67 +imu_odom_: 1691062534.488526103 0.629675 -0.248997 10.0102 -0.0596548 -0.0255663 -0.833037 0 -0.85 pose: 0.0 -4.48237 -3.62243 0 0.00579157 -0.00199194 0.935931 0.35213 uwb: 0.49998700 1233.84 1439.77 +imu_odom_: 1691062534.514524470 0.514753 -0.198719 9.89284 -0.0585895 0.00426106 -0.869256 0 -0.85 pose: 0.40030982 -4.4866 -3.61337 0 0.00516511 -0.0045814 0.929714 0.368216 uwb: 0.0 1233.84 1439.77 +imu_odom_: 1691062534.539581419 0.311246 -0.306458 9.96706 -0.0671117 -0.015979 -0.834102 0 -0.82 pose: 0.42957603 -4.48628 -3.61311 0 0.00601315 -0.00254927 0.922464 0.386027 uwb: 0.50002783 1235.18 1439.51 +imu_odom_: 1691062534.565670487 0.555455 -0.272939 10.0604 -0.0532632 -0.00958738 -0.84582 0 -1.03 pose: 0.7043430 -4.4866 -3.61337 0 0.00533875 -0.00258199 0.921276 0.388864 uwb: 0.0 1235.18 1439.51 +imu_odom_: 1691062534.590498497 0.35913 -0.0742203 9.91439 -0.0649811 0.00745685 -0.861799 0 -0.91 pose: 0.44102587 -4.48626 -3.6131 0 0.00526709 -0.00472531 0.913548 0.406669 uwb: 0.49878835 1237.25 1438.75 +imu_odom_: 1691062534.606552770 0.533907 -0.272939 9.63187 -0.0649811 0.00319579 -0.853277 0 -0.91 pose: 0.0 -4.48626 -3.6131 0 0.00526709 -0.00472531 0.913548 0.406669 uwb: 0.0 1237.25 1438.75 +imu_odom_: 1691062534.623496548 0.54109 -0.263362 9.91678 -0.0607201 -0.0372843 -0.854342 0 -0.91 pose: 0.0 -4.48626 -3.6131 0 0.00526709 -0.00472531 0.913548 0.406669 uwb: 0.0 1237.25 1438.75 +imu_odom_: 1691062534.639548488 0.464475 -0.237026 9.72285 -0.0596548 -0.0234358 -0.870321 0 -0.91 pose: 0.48892504 -4.4866 -3.61337 0 0.00509231 -0.00471088 0.904408 0.426612 uwb: 0.49981784 1236.84 1438.92 +imu_odom_: 1691062534.655490770 0.428562 -0.169988 9.96467 -0.0575243 0.0149137 -0.888431 0 -0.91 pose: 0.0 -4.4866 -3.61337 0 0.00509231 -0.00471088 0.904408 0.426612 uwb: 0.0 1236.84 1438.92 +imu_odom_: 1691062534.672681569 0.560243 -0.122104 10.0676 -0.0543285 0 -0.887365 0 -0.91 pose: 0.31951642 -4.4866 -3.61337 0 0.00436927 -0.00381661 0.898122 0.439709 uwb: 0.0 1236.84 1438.92 +imu_odom_: 1691062534.688619768 0.47884 -0.213084 9.83538 -0.0660464 -0.0319579 -0.8863 0 -0.91 pose: 0.0 -4.4866 -3.61337 0 0.00436927 -0.00381661 0.898122 0.439709 uwb: 0.50007449 1236.92 1439.06 +imu_odom_: 1691062534.705526508 0.550666 -0.217872 9.83777 -0.0500674 -0.0127832 -0.909736 0 -1.2 pose: 0.0 -4.4866 -3.61337 0 0.00436927 -0.00381661 0.898122 0.439709 uwb: 0.0 1236.92 1439.06 +imu_odom_: 1691062534.721504954 0.632069 -0.107739 9.81862 -0.0553937 0.0117179 -0.909736 0 -1.2 pose: 0.42105135 -4.48655 -3.61333 0 0.00394868 -0.00185231 0.889375 0.457158 uwb: 0.0 1236.92 1439.06 +imu_odom_: 1691062534.737498857 0.500388 -0.169988 10.0269 -0.0639159 0.00213053 -0.884169 0 -1.2 pose: 0.0 -4.48655 -3.61333 0 0.00394868 -0.00185231 0.889375 0.457158 uwb: 0.50232013 1238.22 1438.73 +imu_odom_: 1691062534.751501724 0.234632 -0.260968 9.79707 -0.0585895 -0.0127832 -0.868191 0 -0.88 pose: 0.8001764 -4.4866 -3.61337 0 0.0046671 -0.00226941 0.887629 0.46053 uwb: 0.0 1238.22 1438.73 +imu_odom_: 1691062534.767494460 0.260968 -0.339977 9.82102 -0.0639159 -0.0351537 -0.878843 0 -0.88 pose: 0.0 -4.4866 -3.61337 0 0.0046671 -0.00226941 0.887629 0.46053 uwb: 0.0 1238.22 1438.73 +imu_odom_: 1691062534.784496275 0.557849 -0.107739 9.9527 -0.0500674 -0.00106526 -0.902279 0 -0.88 pose: 0.0 -4.4866 -3.61337 0 0.0046671 -0.00226941 0.887629 0.46053 uwb: 0.49855795 1243.66 1435.97 +imu_odom_: 1691062534.800498052 0.538695 -0.227449 9.97185 -0.0692422 -0.0127832 -0.902279 0 -1.11 pose: 0.46937923 -4.4866 -3.61337 0 0.00526749 -0.0008249540.877301 0.479911 uwb: 0.0 1243.66 1435.97 +imu_odom_: 1691062534.816503621 0.632069 -0.131681 9.83538 -0.0649811 -0.0138484 -0.888431 0 -0.91 pose: 0.0 -4.4866 -3.61337 0 0.00526749 -0.0008249540.877301 0.479911 uwb: 0.0 1243.66 1435.97 +imu_odom_: 1691062534.832496940 0.469264 -0.354342 9.72525 -0.0681769 -0.0149137 -0.8863 0 -0.91 pose: 0.31943185 -4.4866 -3.61337 0 0.00388282 -0.00072092 0.870147 0.492776 uwb: 0.50026989 1246.61 1434.1 +imu_odom_: 1691062534.848489093 0.529119 -0.167594 9.79228 -0.0532632 -0.0138484 -0.898018 0 -0.91 pose: 0.32036218 -4.4866 -3.61337 0 0.00587356 -0.00212127 0.86263 0.505796 uwb: 0.0 1246.61 1434.1 +imu_odom_: 1691062534.864493203 0.694318 -0.1652 10.0772 -0.052198 0.0149137 -0.912932 0 -0.91 pose: 0.0 -4.4866 -3.61337 0 0.00587356 -0.00212127 0.86263 0.505796 uwb: 0.0 1246.61 1434.1 +imu_odom_: 1691062534.880511896 0.653617 -0.0430956 9.81383 -0.0585895 -0.0319579 -0.875647 0 -0.91 pose: 0.31995680 -4.4866 -3.61337 0 0.00599178 -0.00263935 0.855017 0.518558 uwb: 0.50012991 1246.06 1434 +imu_odom_: 1691062534.895523259 0.517148 -0.426168 9.63906 -0.0575243 -0.0117179 -0.836233 0 -0.94 pose: 0.0 -4.4866 -3.61337 0 0.00599178 -0.00263935 0.855017 0.518558 uwb: 0.0 1246.06 1434 +imu_odom_: 1691062534.912553946 0.579397 -0.471658 9.86411 -0.052198 -0.00426106 -0.790426 0 -0.94 pose: 0.40977358 -4.48656 -3.61334 0 0.00954038 -0.00192882 0.844902 0.534832 uwb: 0.0 1246.06 1434 +imu_odom_: 1691062534.928562723 0.651223 -0.392649 10.0006 -0.0639159 -0.0117179 -0.723315 0 -0.94 pose: 0.0 -4.48656 -3.61334 0 0.00954038 -0.00192882 0.844902 0.534832 uwb: 0.0 1246.06 1434 +imu_odom_: 1691062534.944507047 0.533907 -0.356736 9.77074 -0.0585895 0.00213053 -0.657268 0 -0.67 pose: 0.6024726 -4.4866 -3.61337 0 0.00913937 -0.0023523 0.843493 0.537057 uwb: 0.0 1246.06 1434 +imu_odom_: 1691062534.970486749 0.378284 -0.397437 9.90481 -0.0553937 -0.0127832 -0.566721 0 -0.67 pose: 0.0 -4.4866 -3.61337 0 0.00913937 -0.0023523 0.843493 0.537057 uwb: 0.0 1246.06 1434 +imu_odom_: 1691062534.986491734 0.37589 -0.280122 9.9527 -0.0543285 0.00532632 -0.537959 0 -0.61 pose: 0.49090237 -4.4866 -3.61337 0 0.00679616 -0.00633298 0.832846 0.553427 uwb: 0.99898824 1246.89 1433.7 +imu_odom_: 1691062535.2593544 0.311246 -0.272939 9.90481 -0.0511327 -0.00106526 -0.486826 0 -0.61 pose: 0.0 -4.4866 -3.61337 0 0.00679616 -0.00633298 0.832846 0.553427 uwb: 0.0 1246.89 1433.7 +imu_odom_: 1691062535.17536083 0.411803 -0.248997 9.9503 -0.0607201 -0.02024 -0.42291 0 -0.41 pose: 0.0 -4.4866 -3.61337 0 0.00679616 -0.00633298 0.832846 0.553427 uwb: 0.0 1246.89 1433.7 +imu_odom_: 1691062535.34649893 0.59855 -0.423774 9.87129 -0.0628506 -0.0266316 -0.335558 0 -0.41 pose: 0.72956708 -4.4866 -3.61337 0 0.000783509 -0.00432342 0.820968 0.570958 uwb: 0.49985873 1246.13 1434.13 +imu_odom_: 1691062535.51481976 0.656011 -0.521936 9.88805 -0.0575243 -0.00958738 -0.254598 0 -0.2 pose: 0.0 -4.4866 -3.61337 0 0.000783509 -0.00432342 0.820968 0.570958 uwb: 0.0 1246.13 1434.13 +imu_odom_: 1691062535.67531878 0.624887 -0.45011 9.87848 -0.0543285 -0.00319579 -0.175769 0 -0.2 pose: 0.34017054 -4.4866 -3.61337 0 0.000863905 -0.00625831 0.817261 0.576233 uwb: 0.0 1246.13 1434.13 +imu_odom_: 1691062535.84586776 0.577003 -0.342371 9.97185 -0.0532632 -0.00958738 -0.0745685 0 -0.2 pose: 0.0 -4.4866 -3.61337 0 0.000863905 -0.00625831 0.817261 0.576233 uwb: 0.50035459 1245.63 1434.14 +imu_odom_: 1691062535.100589724 0.189142 -0.35913 9.69412 -0.0543285 0.0213053 0.0213053 0 -0.02 pose: 0.41986155 -4.4866 -3.61337 0 0.00261324 -0.00975677 0.814914 0.579494 uwb: 0.0 1245.63 1434.14 +imu_odom_: 1691062535.115466643 0.131681 -0.42138 10.0245 -0.0511327 0.0255663 0.0820254 0 -0.02 pose: 0.7953645 -4.4866 -3.61337 0 0.00185935 -0.00927184 0.814879 0.579553 uwb: 0.0 1245.63 1434.14 +imu_odom_: 1691062535.130468386 0.0766145 -0.287304 9.95509 -0.0553937 0.00106526 0.109722 0 -0.02 pose: 0.0 -4.4866 -3.61337 0 0.00185935 -0.00927184 0.814879 0.579553 uwb: 0.50106327 1244.13 1435.01 +imu_odom_: 1691062535.147473413 0.244209 -0.100556 9.90002 -0.0543285 -0.0266316 0.118244 0 0.05 pose: 0.37927965 -4.4866 -3.61337 0 -0.00154583 -0.00695568 0.815354 0.578919 uwb: 0.0 1244.13 1435.01 +imu_odom_: 1691062535.163486860 0.610521 -0.0383072 9.8282 -0.0585895 -0.0223706 0.116114 0 0.05 pose: 0.0 -4.4866 -3.61337 0 -0.00154583 -0.00695568 0.815354 0.578919 uwb: 0.0 1244.13 1435.01 +imu_odom_: 1691062535.178481019 0.596156 -0.296881 9.87369 -0.056459 0.0117179 0.120375 0 0.05 pose: 0.0 -4.4866 -3.61337 0 -0.00154583 -0.00695568 0.815354 0.578919 uwb: 0.49936300 1242.88 1435.47 +imu_odom_: 1691062535.192469308 0.378284 -0.332794 9.92875 -0.0479369 0.0223706 0.125701 0 0.05 pose: 0.24070624 -4.4866 -3.61337 0 -0.000870146-0.00513306 0.815908 0.578158 uwb: 0.0 1242.88 1435.47 +imu_odom_: 1691062535.207514213 0.275333 -0.270545 9.91199 -0.052198 -0.00532632 0.157659 0 0.08 pose: 0.0 -4.4866 -3.61337 0 -0.000870146-0.00513306 0.815908 0.578158 uwb: 0.0 1242.88 1435.47 +imu_odom_: 1691062535.224576986 0.368707 -0.237026 9.85932 -0.0585895 -0.0170442 0.189617 0 0.08 pose: 0.0 -4.4866 -3.61337 0 -0.000870146-0.00513306 0.815908 0.578158 uwb: 0.0 1242.88 1435.47 +imu_odom_: 1691062535.240560393 0.490811 -0.220267 9.90481 -0.052198 -0.00426106 0.198139 0 0.14 pose: 0.29962363 -4.4866 -3.61337 0 0.000461148 -0.00547186 0.816601 0.577177 uwb: 0.50104286 1241.65 1435.94 +imu_odom_: 1691062535.257594001 0.574608 -0.186748 9.91918 -0.056459 -0.00958738 0.196009 0 0.14 pose: 0.40075613 -4.4866 -3.61337 0 -0.00163388 -0.00249544 0.818064 0.575119 uwb: 0.0 1241.65 1435.94 +imu_odom_: 1691062535.273610947 0.629675 -0.160412 9.86172 -0.0543285 -0.0106526 0.177899 0 0.14 pose: 0.0 -4.4866 -3.61337 0 -0.00163388 -0.00249544 0.818064 0.575119 uwb: 0.0 1241.65 1435.94 +imu_odom_: 1691062535.290525566 0.553061 -0.162806 9.95509 -0.0543285 -0.00106526 0.157659 0 0.14 pose: 0.7892691 -4.4866 -3.61337 0 -0.000840247-0.00253289 0.818423 0.574609 uwb: 0.50050624 1243.86 1434.54 +imu_odom_: 1691062535.307601754 0.466869 -0.189142 9.9096 -0.0532632 0.00106526 0.135289 0 0.14 pose: 0.0 -4.4866 -3.61337 0 -0.000840247-0.00253289 0.818423 0.574609 uwb: 0.0 1243.86 1434.54 +imu_odom_: 1691062535.323455089 0.371101 -0.213084 9.92397 -0.0585895 0.00106526 0.120375 0 0.14 pose: 0.0 -4.4866 -3.61337 0 -0.000840247-0.00253289 0.818423 0.574609 uwb: 0.0 1243.86 1434.54 +imu_odom_: 1691062535.348506794 0.35913 -0.134075 9.90242 -0.052198 -0.00319579 0.0649811 0 0.02 pose: 0.49264942 -4.4866 -3.61337 0 0.00409693 -0.00297272 0.820449 0.571697 uwb: 0.49687821 1244.24 1434.33 +imu_odom_: 1691062535.363507370 0.392649 -0.0287304 10.0197 -0.0532632 0.0127832 0.04048 0 0 pose: 0.0 -4.4866 -3.61337 0 0.00409693 -0.00297272 0.820449 0.571697 uwb: 0.0 1244.24 1434.33 +imu_odom_: 1691062535.380616805 -0.505177 -0.136469 9.70609 -0.0532632 0.0884169 0.076699 0 0 pose: 0.72896353 -4.4866 -3.61337 0 0.00181426 0.00225972 0.82176 0.569826 uwb: 0.50163198 1246.46 1432.96 +imu_odom_: 1691062535.397504593 -1.06542 -0.59855 9.991 -0.0543285 0.00958738 0.11931 0.03 0.05 pose: 0.0 -4.4866 -3.61337 0 0.00181426 0.00225972 0.82176 0.569826 uwb: 0.0 1246.46 1432.96 +imu_odom_: 1691062535.414636484 -0.672771 -0.282516 9.83777 -0.0500674 -0.0500674 0.147006 0.03 0.05 pose: 0.33883191 -4.4866 -3.61337 0 -0.0006655160.0048094 0.822112 0.569304 uwb: 0.0 1246.46 1432.96 +imu_odom_: 1691062535.430637682 0.296881 -0.0766145 9.9096 -0.0511327 -0.0585895 0.164051 0.03 0.05 pose: 0.0 -4.4866 -3.61337 0 -0.0006655160.0048094 0.822112 0.569304 uwb: 0.49989379 1246.86 1432.79 +imu_odom_: 1691062535.447639792 0.378284 -0.0622492 9.84496 -0.0543285 -0.00745685 0.171508 0.07 0.17 pose: 0.42123519 -4.4866 -3.61337 0 -0.00142759 0.006787 0.823393 0.56743 uwb: 0.0 1246.86 1432.79 +imu_odom_: 1691062535.464566660 -0.0023942 -0.318429 9.86172 -0.0479369 0.0298274 0.172573 0.07 0.17 pose: 0.7936729 -4.4866 -3.61337 0 -0.0006198230.00684716 0.823693 0.566994 uwb: 0.0 1246.86 1432.79 +imu_odom_: 1691062535.481715758 -0.0885855 -0.418985 10.1299 -0.0490022 -0.00319579 0.173638 0.07 0.17 pose: 0.0 -4.4866 -3.61337 0 -0.0006198230.00684716 0.823693 0.566994 uwb: 0.49934259 1247.56 1432.26 +imu_odom_: 1691062535.497606715 0.0430956 -0.148441 9.85693 -0.0617853 -0.0383495 0.191748 0.07 0.17 pose: 0.33059303 -4.4866 -3.61337 0 -0.00227572 0.00714301 0.824928 0.565188 uwb: 0.0 1247.56 1432.26 +imu_odom_: 1691062535.513423595 0.351948 -0.299275 9.93115 -0.0532632 -0.0287621 0.2024 0.11 0.17 pose: 0.0 -4.4866 -3.61337 0 -0.00227572 0.00714301 0.824928 0.565188 uwb: 0.0 1247.56 1432.26 +imu_odom_: 1691062535.529444624 0.474052 -0.158017 10.2663 -0.0436758 -0.0106526 0.185356 0.11 0.17 pose: 0.0 -4.4866 -3.61337 0 -0.00227572 0.00714301 0.824928 0.565188 uwb: 0.49998420 1248.95 1431.19 +imu_odom_: 1691062535.545501817 0.143652 0.0454898 9.81623 -0.0394148 0.0138484 0.160855 0.11 0.17 pose: 0.32859530 -4.4866 -3.61337 0 -0.00435077 0.00701184 0.826292 0.563181 uwb: 0.0 1248.95 1431.19 +imu_odom_: 1691062535.562491679 0.184354 -0.181959 9.94073 -0.0553937 -0.0106526 0.172573 0.11 0.14 pose: 0.0 -4.4866 -3.61337 0 -0.00435077 0.00701184 0.826292 0.563181 uwb: 0.0 1248.95 1431.19 +imu_odom_: 1691062535.578486461 -0.0407014 -0.316035 9.77553 -0.0660464 0.00426106 0.164051 0.11 0.14 pose: 0.31954274 -4.49069 -3.60425 0 -0.0028791 0.00602472 0.827606 0.561269 uwb: 0.50003961 1245.41 1432.86 +imu_odom_: 1691062535.595420911 0.00957681 -0.342371 9.79707 -0.0585895 0.0149137 0.142745 0.1 0.08 pose: 0.42038943 -4.49069 -3.60425 0 -0.00628308 0.00728701 0.829073 0.559057 uwb: 0.0 1245.41 1432.86 +imu_odom_: 1691062535.611473729 0.373495 -0.122104 10.3573 -0.0532632 0.0117179 0.132093 0.1 0.08 pose: 0.0 -4.49069 -3.60425 0 -0.00628308 0.00728701 0.829073 0.559057 uwb: 0.0 1245.41 1432.86 +imu_odom_: 1691062535.628421011 0.639252 -0.177171 10.0078 -0.0617853 -0.0798948 0.137419 0.1 0.08 pose: 0.0 -4.49069 -3.60425 0 -0.00628308 0.00728701 0.829073 0.559057 uwb: 0.50008919 1244.48 1432.98 +imu_odom_: 1691062535.644421334 1.01993 -0.241814 9.56244 -0.0490022 -0.0436758 0.128897 0.13 0.08 pose: 0.7945770 -4.49069 -3.60425 0 -0.00714232 0.00724403 0.829295 0.558719 uwb: 0.0 1244.48 1432.98 +imu_odom_: 1691062535.660473277 0.964863 -0.246603 9.79468 -0.0447411 0.0170442 0.134223 0.08 0.05 pose: 0.0 -4.49069 -3.60425 0 -0.00714232 0.00724403 0.829295 0.558719 uwb: 0.0 1244.48 1432.98 +imu_odom_: 1691062535.676472433 1.21386 -0.253785 10.0533 -0.052198 -0.02024 0.152333 0.08 0.05 pose: 0.66051529 -4.4948 -3.59513 0 -0.00263009 0.00394511 0.831077 0.556137 uwb: 0.49856682 1245.55 1432.24 +imu_odom_: 1691062535.692471589 0.837971 -0.244209 9.45949 -0.0500674 0.0191748 0.156594 0.08 0.05 pose: 0.0 -4.4948 -3.59513 0 -0.00263009 0.00394511 0.831077 0.556137 uwb: 0.0 1245.55 1432.24 +imu_odom_: 1691062535.709415955 0.804452 -0.102951 10.1059 -0.0628506 0.0170442 0.148072 0.07 0.02 pose: 0.0 -4.4948 -3.59513 0 -0.00263009 0.00394511 0.831077 0.556137 uwb: 0.0 1245.55 1432.24 +imu_odom_: 1691062535.725465857 0.486023 -0.0215478 9.70131 -0.0415453 0.0127832 0.0916127 0.07 0.02 pose: 0.31957191 -4.4948 -3.59513 0 -0.0001476160.00201675 0.832057 0.554687 uwb: 0.0 1245.55 1432.24 +imu_odom_: 1691062535.741469387 0.773327 0.00718261 10.0461 -0.0575243 -0.0234358 0.056459 0.07 0.02 pose: 0.41024906 -4.4948 -3.59513 0 0.00305165 0.00202931 0.833056 0.553177 uwb: 0.50011252 1243.56 1433.12 +imu_odom_: 1691062535.758459249 0.92895 -0.205901 9.72525 -0.0617853 -0.0170442 0.0553937 0.07 0.02 pose: 0.0 -4.4948 -3.59513 0 0.00305165 0.00202931 0.833056 0.553177 uwb: 0.0 1243.56 1433.12 +imu_odom_: 1691062535.775476817 0.950498 -0.342371 9.93115 -0.0575243 0.00213053 0.0394148 0.07 0.02 pose: 0.0 -4.4948 -3.59513 0 0.00305165 0.00202931 0.833056 0.553177 uwb: 0.49998420 1242.9 1432.84 +imu_odom_: 1691062535.800580726 0.799663 -0.0933739 9.77553 -0.052198 0 0.0287621 0.05 0.05 pose: 0.6971396 -4.4948 -3.59513 0 0.0037918 0.00187381 0.833087 0.553125 uwb: 0.0 1242.9 1432.84 +imu_odom_: 1691062535.816397898 0.3304 -0.0622492 9.84735 -0.0543285 0.0788296 0.0308927 0.04 0.08 pose: 0.0 -4.4948 -3.59513 0 0.0037918 0.00187381 0.833087 0.553125 uwb: 0.0 1242.9 1432.84 +imu_odom_: 1691062535.842408229 -1.43173 -0.35913 10.0485 -0.0500674 0.0479369 0.0788296 0.04 0.08 pose: 0.75026502 -4.49893 -3.58602 0 0.00860827 -0.00110495 0.833098 0.553057 uwb: 0.50000753 1241.75 1433.44 +imu_odom_: 1691062535.869471968 -0.294487 -0.114922 9.83299 -0.0596548 -0.0873517 0.092678 0.09 0.05 pose: 0.34944474 -4.49889 -3.58599 0 0.00491024 0.00142128 0.833374 0.552686 uwb: 0.0 1241.75 1433.44 +imu_odom_: 1691062535.895405306 0.423774 -0.227449 9.55526 -0.0628506 -0.0234358 0.0916127 0.09 0.05 pose: 0.7010184 -4.49893 -3.58602 0 0.00457314 0.00165257 0.833476 0.552535 uwb: 0.50112452 1241.85 1433.62 +imu_odom_: 1691062535.922456213 0.047884 -0.0383072 10.161 -0.0511327 0.00639159 0.0447411 0.13 0.05 pose: 0.45986893 -4.50186 -3.57945 0 0.00204817 0.000146921 0.834145 0.551541 uwb: 0.0 1241.85 1433.62 +imu_odom_: 1691062535.938447786 0.474052 -0.3304 10.0461 -0.0703074 -0.0628506 0.0575243 0.13 0.05 pose: 0.0 -4.50186 -3.57945 0 0.00204817 0.000146921 0.834145 0.551541 uwb: 0.50005711 1244.83 1432.73 +imu_odom_: 1691062535.955389236 0.885855 -0.244209 9.59357 -0.0500674 -0.0575243 0.02024 0.1 0 pose: 0.0 -4.50186 -3.57945 0 0.00204817 0.000146921 0.834145 0.551541 uwb: 0.0 1244.83 1432.73 +imu_odom_: 1691062535.971419889 1.19231 -0.263362 9.73961 -0.0745685 -0.0276969 0.0245011 0.1 0 pose: 0.35028174 -4.503 -3.57689 0 0.000506678 0.00150902 0.834221 0.551428 uwb: 0.0 1244.83 1432.73 +imu_odom_: 1691062535.987436835 1.90818 -0.150835 10.4339 -0.0511327 -0.0713727 -0.076699 0.1 -0.32 pose: 0.0 -4.503 -3.57689 0 0.000506678 0.00150902 0.834221 0.551428 uwb: 0.50144240 1245.41 1432 +imu_odom_: 1691062536.4451487 1.42216 0.184354 9.47146 -0.052198 -0.0117179 -0.209857 0.1 -0.32 pose: 0.47983470 -4.503 -3.57689 0 0.00447362 -0.00244469 0.83387 0.551937 uwb: 0.0 1245.41 1432 +imu_odom_: 1691062536.21451852 1.13485 0.160412 9.75398 -0.072438 0.0106526 -0.287621 0.1 -0.32 pose: 0.0 -4.503 -3.57689 0 0.00447362 -0.00244469 0.83387 0.551937 uwb: 0.0 1245.41 1432 +imu_odom_: 1691062536.37388601 0.612916 -0.102951 9.6199 -0.0617853 0.0372843 -0.360059 0.05 -0.35 pose: 0.43034902 -4.50712 -3.56776 0 0.00878408 -0.00346443 0.830831 0.556445 uwb: 0.49833940 1245.72 1431.66 +imu_odom_: 1691062536.54387507 0.442927 -0.141258 10.0293 -0.0671117 0.0127832 -0.380299 0.05 -0.35 pose: 0.0 -4.50712 -3.56776 0 0.00878408 -0.00346443 0.830831 0.556445 uwb: 0.0 1245.72 1431.66 +imu_odom_: 1691062536.70495741 0.3304 -0.356736 9.96706 -0.0617853 -0.0149137 -0.383495 0.05 -0.35 pose: 0.0 -4.50712 -3.56776 0 0.00878408 -0.00346443 0.830831 0.556445 uwb: 0.0 1245.72 1431.66 +imu_odom_: 1691062536.87542769 0.608127 -0.265756 9.90481 -0.0553937 -0.02024 -0.38456 0.05 -0.55 pose: 0.6943692 -4.50716 -3.56779 0 0.00925221 -0.00303124 0.830053 0.5576 uwb: 0.49981808 1247.23 1430.82 +imu_odom_: 1691062536.103535804 0.651223 -0.047884 9.67976 -0.0628506 -0.0319579 -0.401605 0.03 -0.44 pose: 0.0 -4.50716 -3.56779 0 0.00925221 -0.00303124 0.830053 0.5576 uwb: 0.0 1247.23 1430.82 +imu_odom_: 1691062536.120664200 0.435745 0.0023942 9.69652 -0.0511327 0.00532632 -0.431432 0.03 -0.44 pose: 0.67226860 -4.50716 -3.56779 0 0.00782985 -0.00329718 0.822075 0.569315 uwb: 0.0 1247.23 1430.82 +imu_odom_: 1691062536.136548745 0.428562 -0.0646434 9.86411 -0.056459 -0.00852212 -0.435693 0.03 -0.44 pose: 0.0 -4.50716 -3.56779 0 0.00782985 -0.00329718 0.822075 0.569315 uwb: 0.50011264 1244.89 1431.96 +imu_odom_: 1691062536.153530736 0.457293 -0.234632 9.89284 -0.056459 -0.00639159 -0.434628 0.03 -0.44 pose: 0.0 -4.50716 -3.56779 0 0.00782985 -0.00329718 0.822075 0.569315 uwb: 0.0 1244.89 1431.96 +imu_odom_: 1691062536.169536604 0.500388 -0.241814 9.94312 -0.0553937 -0.0106526 -0.430367 0.03 -0.44 pose: 0.33050854 -4.50716 -3.56779 0 0.00818622 -0.00052896 0.817665 0.575636 uwb: 0.0 1244.89 1431.96 +imu_odom_: 1691062536.186422645 0.35913 -0.150835 9.65821 -0.056459 -0.0138484 -0.435693 0.05 -0.58 pose: 0.40863346 -4.50712 -3.56776 0 0.00531495 -0.00166588 0.812086 0.583512 uwb: 0.49879442 1244.13 1432.37 +imu_odom_: 1691062536.203400262 0.648829 -0.114922 9.93354 -0.052198 -0.0276969 -0.429302 0.05 -0.58 pose: 0.6905778 -4.50716 -3.56779 0 0.00487631 -0.00117001 0.811128 0.584847 uwb: 0.0 1244.13 1432.37 +imu_odom_: 1691062536.219527161 0.548272 -0.23942 9.94551 -0.0607201 -0.0170442 -0.381365 0.05 -0.58 pose: 0.0 -4.50716 -3.56779 0 0.00487631 -0.00117001 0.811128 0.584847 uwb: 0.0 1244.13 1432.37 +imu_odom_: 1691062536.236400954 0.761356 -0.488417 9.9096 -0.0596548 -0.00106526 -0.335558 0.03 -0.38 pose: 0.43084779 -4.50712 -3.56776 0 0.00580176 -0.00270089 0.805388 0.592714 uwb: 0.49968392 1241.91 1433.72 +imu_odom_: 1691062536.253497852 0.490811 -0.316035 9.75398 -0.056459 0.00319579 -0.297209 0.02 -0.32 pose: 0.0 -4.50712 -3.56776 0 0.00580176 -0.00270089 0.805388 0.592714 uwb: 0.0 1241.91 1433.72 +imu_odom_: 1691062536.270387393 0.61531 -0.148441 10.0078 -0.0511327 -0.00532632 -0.273773 0.02 -0.32 pose: 0.0 -4.50712 -3.56776 0 0.00580176 -0.00270089 0.805388 0.592714 uwb: 0.0 1241.91 1433.72 +imu_odom_: 1691062536.286371388 0.545878 -0.124498 9.84735 -0.0585895 -0.02024 -0.249272 0.02 -0.32 pose: 0.24982884 -4.50716 -3.56779 0 0.00507134 -0.00471213 0.8027 0.596343 uwb: 0.50068134 1241.64 1434.12 +imu_odom_: 1691062536.303412583 0.641646 -0.316035 9.93354 -0.0553937 -0.00958738 -0.232228 0.02 -0.26 pose: 0.0 -4.50716 -3.56779 0 0.00507134 -0.00471213 0.8027 0.596343 uwb: 0.0 1241.64 1434.12 +imu_odom_: 1691062536.319475320 0.59855 -0.28491 9.81623 -0.0553937 -0.00852212 -0.213053 0.02 -0.26 pose: 0.33927236 -4.51133 -3.55871 0 0.00643378 -0.0040681 0.799505 0.600611 uwb: 0.0 1241.64 1434.12 +imu_odom_: 1691062536.336396942 0.581791 -0.234632 9.96467 -0.052198 -0.00639159 -0.184291 0.02 -0.32 pose: 0.41038039 -4.51133 -3.55871 0 0.00650917 -0.00672231 0.796195 0.604968 uwb: 0.50074550 1242.01 1433.88 +imu_odom_: 1691062536.352404851 0.622492 -0.260968 9.84256 -0.0553937 -0.00958738 -0.16192 0.02 -0.32 pose: 0.0 -4.51133 -3.55871 0 0.00650917 -0.00672231 0.796195 0.604968 uwb: 0.0 1242.01 1433.88 +imu_odom_: 1691062536.367345352 0.483629 -0.246603 9.87608 -0.0596548 0.00532632 -0.149137 0.02 -0.32 pose: 0.0 -4.51133 -3.55871 0 0.00650917 -0.00672231 0.796195 0.604968 uwb: 0.0 1242.01 1433.88 +imu_odom_: 1691062536.381361059 0.423774 -0.25618 9.88805 -0.0511327 0.00106526 -0.151268 0.01 -0.17 pose: 0.7112844 -4.51133 -3.55871 0 0.00668712 -0.00601869 0.795712 0.605608 uwb: 0.50097882 1244.24 1432.55 +imu_odom_: 1691062536.405362861 0.52433 -0.21069 9.93594 -0.056459 -0.015979 -0.133158 0.01 -0.17 pose: 0.0 -4.51133 -3.55871 0 0.00668712 -0.00601869 0.795712 0.605608 uwb: 0.0 1244.24 1432.55 +imu_odom_: 1691062536.422369350 0.440533 -0.306458 9.96467 -0.0596548 0.0245011 -0.116114 0.01 -0.2 pose: 0.46797958 -4.51133 -3.55871 0 0.00533327 -0.00555417 0.792871 0.609341 uwb: 0.0 1244.24 1432.55 +imu_odom_: 1691062536.438422755 -0.246603 -0.289698 9.77553 -0.0500674 0.0628506 -0.167247 0.03 -0.14 pose: 0.0 -4.51133 -3.55871 0 0.00533327 -0.00555417 0.792871 0.609341 uwb: 0.49771534 1240.65 1434.13 +imu_odom_: 1691062536.454420165 -0.505177 0.134075 9.97424 -0.0383495 0.00745685 -0.282295 0.06 -0.23 pose: 0.0 -4.51133 -3.55871 0 0.00533327 -0.00555417 0.792871 0.609341 uwb: 0.0 1240.65 1434.13 +imu_odom_: 1691062536.471446486 -0.926556 0.433351 9.77074 -0.0447411 0.0298274 -0.285491 0.06 -0.23 pose: 0.72047403 -4.51133 -3.55871 0 0.00137242 -0.00133516 0.788639 0.614853 uwb: 0.0 1240.65 1434.13 +imu_odom_: 1691062536.488385315 -0.804452 -0.462081 9.93833 -0.0596548 -0.0234358 -0.18216 0.09 -0.17 pose: 0.0 -4.51133 -3.55871 0 0.00137242 -0.00133516 0.788639 0.614853 uwb: 0.50108673 1241.65 1433.25 +imu_odom_: 1691062536.505446050 -0.146046 -0.739808 9.90002 -0.056459 -0.0798948 -0.137419 0.09 -0.17 pose: 0.33138638 -4.51133 -3.55871 0 -0.0006199 0.00155589 0.785552 0.618793 uwb: 0.0 1241.65 1433.25 +imu_odom_: 1691062536.522443498 0.629675 -0.299275 9.71567 -0.0468716 -0.0458064 -0.102265 0.09 -0.17 pose: 0.0 -4.51133 -3.55871 0 -0.0006199 0.00155589 0.785552 0.618793 uwb: 0.0 1241.65 1433.25 +imu_odom_: 1691062536.538395121 0.368707 -0.124498 9.663 -0.0479369 0.0234358 -0.102265 0.12 -0.26 pose: 0.33995188 -4.51133 -3.55871 0 -0.00207052 0.00060544 0.783624 0.621232 uwb: 0.49922313 1237.01 1435.59 +imu_odom_: 1691062536.554386115 -0.0287304 0.071826 9.85932 -0.0468716 0.0213053 -0.112918 0.12 -0.26 pose: 0.0 -4.51133 -3.55871 0 -0.00207052 0.00060544 0.783624 0.621232 uwb: 0.0 1237.01 1435.59 +imu_odom_: 1691062536.571388229 0.0263362 -0.191536 10.0149 -0.0532632 0 -0.111853 0.12 -0.26 pose: 0.0 -4.51133 -3.55871 0 -0.00207052 0.00060544 0.783624 0.621232 uwb: 0.0 1237.01 1435.59 +imu_odom_: 1691062536.588342807 0.0742203 -0.0837971 9.92397 -0.0479369 0.0138484 -0.134223 0.1 -0.14 pose: 0.49832488 -4.51539 -3.54957 0 -0.00189863 0.00350917 0.781341 0.624092 uwb: 0.50055010 1239.65 1434.09 +imu_odom_: 1691062536.604400295 0.203507 -0.225055 9.81862 -0.0479369 0.00639159 -0.103331 0.1 -0.14 pose: 0.0 -4.51539 -3.54957 0 -0.00189863 0.00350917 0.781341 0.624092 uwb: 0.0 1239.65 1434.09 +imu_odom_: 1691062536.620340543 -0.124498 -0.272939 9.84256 -0.0809601 0.00426106 -0.0713727 0.15 -0.17 pose: 0.42000456 -4.50622 -3.54545 0 -0.00516056 0.00590271 0.779253 0.626661 uwb: 0.0 1239.65 1434.09 +imu_odom_: 1691062536.636359243 0.292093 -0.208296 10.4627 -0.056459 -0.04048 -0.0852212 0.15 -0.17 pose: 0.0 -4.50622 -3.54545 0 -0.00516056 0.00590271 0.779253 0.626661 uwb: 0.49988516 1241.84 1432.68 +imu_odom_: 1691062536.653333943 0.464475 -0.124498 9.72764 -0.0692422 -0.0298274 -0.0894822 0.15 -0.17 pose: 0.0 -4.50622 -3.54545 0 -0.00516056 0.00590271 0.779253 0.626661 uwb: 0.0 1241.84 1432.68 +imu_odom_: 1691062536.669359351 0.814029 -0.191536 9.9096 -0.0788296 -0.015979 -0.0639159 0.12 -0.11 pose: 0.6949233 -4.50626 -3.54548 0 -0.00586544 0.00615598 0.779006 0.626959 uwb: 0.0 1241.84 1432.68 +imu_odom_: 1691062536.685337513 0.746991 -0.368707 9.72764 -0.0713727 -0.0394148 -0.072438 0.17 -0.17 pose: 0.0 -4.50626 -3.54548 0 -0.00586544 0.00615598 0.779006 0.626959 uwb: 0.50003681 1238.23 1434.2 +imu_odom_: 1691062536.702331753 0.912191 -0.155623 10.2017 -0.0532632 -0.0223706 -0.0852212 0.17 -0.17 pose: 0.64994053 -4.51037 -3.53637 0 -0.00214246 0.00243883 0.776637 0.629941 uwb: 0.0 1238.23 1434.2 +imu_odom_: 1691062536.718379909 1.33118 -0.134075 10.1466 -0.0596548 -0.0213053 -0.056459 0.13 -0.17 pose: 0.0 -4.51037 -3.53637 0 -0.00214246 0.00243883 0.776637 0.629941 uwb: 0.0 1238.23 1434.2 +imu_odom_: 1691062536.735346735 1.25935 -0.47884 9.99819 -0.0532632 -0.015979 -0.0330232 0.13 -0.17 pose: 0.0 -4.51037 -3.53637 0 -0.00214246 0.00243883 0.776637 0.629941 uwb: 0.49936312 1237.82 1434.35 +imu_odom_: 1691062536.752327852 1.26653 -0.323217 9.67976 -0.0415453 -0.036219 -0.0340885 0.13 -0.17 pose: 0.33002441 -4.51447 -3.52725 0 0.000534246 2.80544e-05 0.775442 0.631419 uwb: 0.0 1237.82 1434.35 +imu_odom_: 1691062536.768330511 1.38385 -0.265756 9.58878 -0.0458064 -0.0106526 -0.04048 0.11 -0.17 pose: 0.32988151 -4.51447 -3.52725 0 0.00292712 -0.00256967 0.774611 0.632426 uwb: 0.0 1237.82 1434.35 +imu_odom_: 1691062536.784437287 0.936133 -0.138864 10.0916 -0.0426106 0.0415453 -0.0490022 0.11 -0.17 pose: 0.0 -4.51447 -3.52725 0 0.00292712 -0.00256967 0.774611 0.632426 uwb: 0.50063176 1234.99 1436.39 +imu_odom_: 1691062536.801378740 0.407014 -0.272939 9.78989 -0.052198 0.0319579 -0.0671117 0.11 -0.17 pose: 0.0 -4.51447 -3.52725 0 0.00292712 -0.00256967 0.774611 0.632426 uwb: 0.0 1234.99 1436.39 +imu_odom_: 1691062536.818383480 0.47884 -0.122104 10.0293 -0.0468716 -0.00852212 -0.103331 0.06 -0.11 pose: 0.50109839 -4.51447 -3.52725 0 0.00538874 -0.00450087 0.773238 0.634077 uwb: 0.0 1234.99 1436.39 +imu_odom_: 1691062536.834443010 0.682347 -0.0574608 9.79707 -0.056459 -0.0181095 -0.0948085 0.06 -0.11 pose: 0.0 -4.51447 -3.52725 0 0.00538874 -0.00450087 0.773238 0.634077 uwb: 0.49879150 1232.47 1437.2 +imu_odom_: 1691062536.850320555 0.797269 -0.320823 9.89284 -0.0553937 0.0117179 -0.076699 0.07 -0.08 pose: 0.41998998 -4.51447 -3.52725 0 0.00664685 -0.00258788 0.771471 0.636224 uwb: 0.0 1232.47 1437.2 +imu_odom_: 1691062536.866379501 0.761356 -0.347159 10.0269 -0.0575243 -0.0127832 -0.0639159 0.07 -0.08 pose: 0.0 -4.51447 -3.52725 0 0.00664685 -0.00258788 0.771471 0.636224 uwb: 0.0 1232.47 1437.2 +imu_odom_: 1691062536.883365867 0.56982 -0.174777 9.76116 -0.0458064 0.0255663 -0.0639159 0.07 -0.08 pose: 0.0 -4.51447 -3.52725 0 0.00664685 -0.00258788 0.771471 0.636224 uwb: 0.50000474 1229.57 1438.2 +imu_odom_: 1691062536.909320792 0.349553 -0.0861913 9.75637 -0.0585895 0.00106526 -0.0245011 0.04 -0.02 pose: 0.7015727 -4.51447 -3.52725 0 0.00685246 -0.00320586 0.771212 0.636534 uwb: 0.0 1229.57 1438.2 +imu_odom_: 1691062536.926315908 0.368707 -0.289698 10.0365 -0.0596548 0.02024 0.00426106 0.04 -0.05 pose: 0.0 -4.51447 -3.52725 0 0.00685246 -0.00320586 0.771212 0.636534 uwb: 0.49987641 1228.53 1438.06 +imu_odom_: 1691062536.952309621 -0.991199 -0.196325 10.0772 -0.0447411 0.0692422 -0.00106526 0.04 -0.05 pose: 0.74880116 -4.51854 -3.51811 0 0.00573766 -0.00142259 0.769184 0.639 uwb: 0.0 1228.53 1438.06 +imu_odom_: 1691062536.969422268 -1.03908 -0.248997 10.0245 -0.0585895 -0.0266316 0.0213053 0.05 -0.02 pose: 0.0 -4.51854 -3.51811 0 0.00573766 -0.00142259 0.769184 0.639 uwb: 0.0 1228.53 1438.06 +imu_odom_: 1691062536.986324933 -0.335188 -0.23942 9.93115 -0.052198 -0.0553937 0.00852212 0.05 -0.02 pose: 0.18037150 -4.51854 -3.51811 0 0.00380592 -0.0006643690.768976 0.639267 uwb: 0.49882358 1225.42 1439.59 +imu_odom_: 1691062537.11391812 0.785298 -0.311246 9.8282 -0.0553937 -0.0138484 0.00106526 0.13 -0.02 pose: 0.51948930 -4.51854 -3.51811 0 -0.0003140240.00255776 0.768472 0.639879 uwb: 0.0 1225.42 1439.59 +imu_odom_: 1691062537.34311338 0.217872 -0.215478 9.81862 -0.0468716 0.0266316 0.00213053 0.13 -0.02 pose: 0.0 -4.51854 -3.51811 0 -0.0003140240.00255776 0.768472 0.639879 uwb: 0.50165839 1226.16 1439.13 +imu_odom_: 1691062537.60373301 -0.0335188 -0.287304 9.63427 -0.0585895 -0.0415453 0.0308927 0.11 -0.05 pose: 0.7125968 -4.51854 -3.51811 0 9.894e-05 0.00193642 0.768385 0.639984 uwb: 0.0 1226.16 1439.13 +imu_odom_: 1691062537.77314175 0.299275 -0.512359 9.7851 -0.0617853 -0.0543285 0.00745685 0.14 -0.02 pose: 0.0 -4.51854 -3.51811 0 9.894e-05 0.00193642 0.768385 0.639984 uwb: 0.50005151 1224.56 1439.79 +imu_odom_: 1691062537.103294771 0.462081 -0.0023942 9.83299 -0.0543285 0.00319579 -0.00106526 0.12 -0.02 pose: 0.73865219 -4.52261 -3.50898 0 -0.00331655 0.00217744 0.767737 0.640753 uwb: 0.0 1224.56 1439.79 +imu_odom_: 1691062537.120363384 0.265756 -0.387861 10.003 -0.0511327 0.0351537 0.0106526 0.12 -0.02 pose: 0.0 -4.52261 -3.50898 0 -0.00331655 0.00217744 0.767737 0.640753 uwb: 0.0 1224.56 1439.79 +imu_odom_: 1691062537.146357686 0.169988 -0.0023942 9.83299 -0.0575243 -0.0213053 0.00426106 0.17 -0.05 pose: 0.43033168 -4.51751 -3.49578 0 -0.00222366 0.00209319 0.767233 0.641361 uwb: 0.49957905 1225.66 1439.1 +imu_odom_: 1691062537.173423480 0.146046 -0.117316 9.65821 -0.036219 -0.0266316 0.0117179 0.18 -0.05 pose: 0.36008398 -4.51748 -3.49575 0 -0.00291861 0.00423157 0.766843 0.641814 uwb: 0.0 1225.66 1439.1 +imu_odom_: 1691062537.199272545 0.459687 -0.225055 10.0796 -0.076699 0.0383495 0.0287621 0.18 -0.05 pose: 0.6956234 -4.51751 -3.49578 0 -0.00312651 0.0048557 0.766778 0.641886 uwb: 0.49983862 1228.28 1437.6 +imu_odom_: 1691062537.226334839 -0.0335188 -0.268151 9.74201 -0.0543285 0.00213053 0.0106526 0.18 -0.05 pose: 0.45958625 -4.52163 -3.48667 0 -0.00295448 0.00461063 0.766513 0.642206 uwb: 0.50320707 1228.9 1436.94 +imu_odom_: 1691062537.251281274 0.31364 -0.203507 10.3286 -0.0500674 -0.0255663 0.015979 0.18 -0.05 pose: 0.0 -4.52163 -3.48667 0 -0.00295448 0.00461063 0.766513 0.642206 uwb: 0.0 1228.9 1436.94 +imu_odom_: 1691062537.278452350 0.0885855 -0.320823 10.1035 -0.0276969 -0.00319579 0.00426106 0.18 -0.05 pose: 0.52008729 -4.52452 -3.48025 0 -0.00350465 0.00390424 0.766068 0.642739 uwb: 0.49525692 1228.4 1436.91 +imu_odom_: 1691062537.304425071 0.186748 0.00957681 9.44991 -0.0308927 0.0276969 0.0276969 0.15 -0.02 pose: 0.27171076 -4.52573 -3.47755 0 -0.00595048 0.00467855 0.765741 0.643105 uwb: 0.0 1228.4 1436.91 +imu_odom_: 1691062537.321300034 0.37589 -0.555455 9.98143 -0.0628506 -0.0383495 0.0394148 0.15 -0.02 pose: 0.8004685 -4.52573 -3.47755 0 -0.00568772 0.00557851 0.765711 0.643135 uwb: 0.0 1228.4 1436.91 +imu_odom_: 1691062537.338313819 0.560243 -0.316035 9.56962 -0.0575243 0.00532632 0.00639159 0.15 -0.02 pose: 0.0 -4.52573 -3.47755 0 -0.00568772 0.00557851 0.765711 0.643135 uwb: 0.50204342 1228.59 1436.33 +imu_odom_: 1691062537.364330869 0.806846 -0.311246 9.52653 -0.056459 -0.0276969 0.0500674 0.15 0 pose: 0.43020336 -4.52982 -3.46842 0 -0.00512354 0.00507472 0.765557 0.643328 uwb: 0.0 1228.59 1436.33 +imu_odom_: 1691062537.381281951 0.0263362 -0.509965 9.94791 -0.0500674 0.0138484 0.0276969 0.15 0 pose: 0.0 -4.52982 -3.46842 0 -0.00512354 0.00507472 0.765557 0.643328 uwb: 0.49921742 1227.37 1436.78 +imu_odom_: 1691062537.407341581 0.227449 0.0933739 9.74201 -0.0500674 0.00426106 0.0394148 0.15 0 pose: 0.41844729 -4.52069 -3.46434 0 -0.0036061 0.00210117 0.765533 0.643383 uwb: 0.0 1227.37 1436.78 +imu_odom_: 1691062537.433275514 0.311246 -0.378284 10.4938 -0.072438 -0.00958738 0.0351537 0.19 -0.02 pose: 0.36019481 -4.52478 -3.45521 0 -0.00353085 0.00458135 0.765494 0.643417 uwb: 0.49983861 1227.77 1436.63 +imu_odom_: 1691062537.450291632 0.687136 -0.126893 9.49301 -0.0575243 -0.0340885 0.00958738 0.19 -0.02 pose: 0.0 -4.52478 -3.45521 0 -0.00353085 0.00458135 0.765494 0.643417 uwb: 0.0 1227.77 1436.63 +imu_odom_: 1691062537.476403466 0.699107 -0.31364 9.68455 -0.0660464 -0.036219 0.0447411 0.22 -0.02 pose: 0.7006105 -4.52478 -3.45521 0 -0.00393093 0.00393155 0.765483 0.643432 uwb: 0.0 1227.77 1436.63 +imu_odom_: 1691062537.502379687 0.672771 -0.251391 10.4818 -0.0468716 -0.0575243 0.0223706 0.22 -0.02 pose: 0.0 -4.52478 -3.45521 0 -0.00393093 0.00393155 0.765483 0.643432 uwb: 0.0 1227.77 1436.63 +imu_odom_: 1691062537.528343075 0.25618 -0.155623 9.92875 -0.0543285 0.02024 0.0607201 0.2 0.02 pose: 0.43107828 -4.52886 -3.44608 0 -0.00276192 0.000660945 0.765306 0.64366 uwb: 0.100067756 1227.48 1436.99 +imu_odom_: 1691062537.553320715 0.442927 -0.229843 9.90721 -0.0553937 -0.00852212 0.0266316 0.2 0.02 pose: 0.0 -4.52886 -3.44608 0 -0.00276192 0.000660945 0.765306 0.64366 uwb: 0.0 1227.48 1436.99 +imu_odom_: 1691062537.570353748 0.426168 -0.0814029 9.73243 -0.0458064 -0.0127832 0.0426106 0.18 0 pose: 0.51844535 -4.53293 -3.43695 0 0.000789607 -0.00246393 0.765237 0.643743 uwb: 0.0 1227.48 1436.99 +imu_odom_: 1691062537.596346009 0.270545 -0.385466 9.86172 -0.0351537 0.0308927 0.0245011 0.18 0 pose: 0.0 -4.53293 -3.43695 0 0.000789607 -0.00246393 0.765237 0.643743 uwb: 0.49946531 1228.99 1436.17 +imu_odom_: 1691062537.621410850 0.363919 -0.225055 10.094 -0.0575243 -0.0138484 0.0671117 0.17 0 pose: 0.52102928 -4.53293 -3.43695 0 0.00200482 -0.00170966 0.765269 0.643706 uwb: 0.0 1228.99 1436.17 +imu_odom_: 1691062537.636292443 0.471658 -0.217872 10.6279 -0.0639159 -0.0245011 0.0458064 0.17 0 pose: 0.0 -4.53293 -3.43695 0 0.00200482 -0.00170966 0.765269 0.643706 uwb: 0.49930491 1227.04 1437.09 +imu_odom_: 1691062537.661304497 0.646434 0.0430956 9.69891 -0.0500674 -0.0223706 0.0415453 0.17 0 pose: 0.65856745 -4.53195 -3.41461 0 -0.00147695 0.000575624 0.765389 0.643566 uwb: 0.0 1227.04 1437.09 +imu_odom_: 1691062537.687280427 0.94571 -0.21069 9.98382 -0.0628506 0.00639159 0.0340885 0.17 0 pose: 0.0 -4.53195 -3.41461 0 -0.00147695 0.000575624 0.765389 0.643566 uwb: 0.50057646 1224.45 1438.63 +imu_odom_: 1691062537.713273854 0.229843 -0.138864 9.29908 -0.0511327 0.0340885 0.0479369 0.18 0 pose: 0.16001788 -4.53195 -3.41461 0 5.13205e-05 6.24915e-06 0.765412 0.64354 uwb: 0.0 1224.45 1438.63 +imu_odom_: 1691062537.736405112 0.699107 -0.497994 9.92875 -0.0639159 0.02024 0.0415453 0.18 0 pose: 0.51176383 -4.53603 -3.40548 0 0.00321085 -0.0009366110.765395 0.643552 uwb: 0.49962572 1225.23 1438.26 +imu_odom_: 1691062537.761295260 0.766145 -0.289698 10.2185 -0.056459 -0.0127832 0.0458064 0.18 0 pose: 0.0 -4.53603 -3.40548 0 0.00321085 -0.0009366110.765395 0.643552 uwb: 0.0 1225.23 1438.26 +imu_odom_: 1691062537.777285674 -0.0885855 -0.426168 9.66779 -0.0617853 0.0127832 0.052198 0.18 0 pose: 0.24869150 -4.53603 -3.40548 0 0.00175198 0.000246061 0.765451 0.643492 uwb: 0.50017108 1222.29 1439.1 +imu_odom_: 1691062537.803280268 -0.225055 0.0837971 9.69652 -0.0511327 0.0191748 0.0415453 0.22 0 pose: 0.48102482 -4.54011 -3.39635 0 0.00252542 -0.00321884 0.765535 0.643381 uwb: 0.0 1222.29 1439.1 +imu_odom_: 1691062537.829235491 0.0861913 -0.483629 9.6223 -0.0820254 0.0213053 0.052198 0.22 0 pose: 0.35870743 -4.54305 -3.38978 0 0.000228223 -0.0002367950.765599 0.643319 uwb: 0.49872454 1223.12 1437.89 +imu_odom_: 1691062537.855221919 0.270545 -0.395043 9.6199 -0.0436758 0.0170442 0.0490022 0.22 0 pose: 0.0 -4.54305 -3.38978 0 0.000228223 -0.0002367950.765599 0.643319 uwb: 0.0 1223.12 1437.89 +imu_odom_: 1691062537.880213850 -0.0574608 -0.138864 10.0437 -0.0234358 0.00532632 0.0340885 0.22 -0.02 pose: 0.6972566 -4.54419 -3.38722 0 -0.000597899-0.0002465690.765627 0.643285 uwb: 0.50051814 1225.43 1436.76 +imu_odom_: 1691062537.895214141 0.280122 0.0335188 9.99819 -0.04048 -0.0106526 0.0458064 0.22 -0.02 pose: 0.0 -4.54419 -3.38722 0 -0.000597899-0.0002465690.765627 0.643285 uwb: 0.0 1225.43 1436.76 +imu_odom_: 1691062537.920276649 0.497994 -0.225055 9.85932 -0.056459 0.015979 0.0340885 0.18 0 pose: 0.51981606 -4.53915 -3.37401 0 -0.00574151 1.95621e-05 0.765758 0.643103 uwb: 0.0 1225.43 1436.76 +imu_odom_: 1691062537.946377109 0.629675 -0.263362 9.87129 -0.0490022 0.0415453 0.0575243 0.18 0 pose: 0.0 -4.53915 -3.37401 0 -0.00574151 1.95621e-05 0.765758 0.643103 uwb: 0.50001360 1227.69 1435.5 +imu_odom_: 1691062537.972422449 0.138864 -0.0742203 10.0173 -0.0298274 0.0181095 0.0372843 0.18 -0.02 pose: 0.39993388 -4.53915 -3.37401 0 -0.00489411 0.00270986 0.765755 0.643108 uwb: 0.0 1227.69 1435.5 +imu_odom_: 1691062537.987261754 -0.0861913 -0.28491 9.54808 -0.0479369 0.02024 0.052198 0.18 -0.02 pose: 0.0 -4.53915 -3.37401 0 -0.00489411 0.00270986 0.765755 0.643108 uwb: 0.50108684 1224.57 1436.96 +imu_odom_: 1691062538.11208735 0.270545 -0.399832 9.50498 -0.0596548 0.0319579 0.0479369 0.17 0.02 pose: 0.51151011 -4.54324 -3.36488 0 -0.00235119 0.00111299 0.765875 0.642984 uwb: 0.0 1224.57 1436.96 +imu_odom_: 1691062538.37231916 0.387861 -0.237026 9.99579 -0.0426106 0.0149137 0.0596548 0.17 0.02 pose: 0.0 -4.54324 -3.36488 0 -0.00235119 0.00111299 0.765875 0.642984 uwb: 0.50003698 1224.93 1436.72 +imu_odom_: 1691062538.53220876 0.727837 -0.0981623 10.07 -0.0756338 -0.00745685 0.0468716 0.19 0 pose: 0.40072423 -4.54733 -3.35576 0 -0.00477982 0.00378677 0.765924 0.642902 uwb: 0.0 1224.93 1436.72 +imu_odom_: 1691062538.80258970 0.445322 -0.25618 9.3733 -0.0884169 0.00958738 0.0596548 0.19 0 pose: 0.0 -4.54733 -3.35576 0 -0.00477982 0.00378677 0.765924 0.642902 uwb: 0.49941876 1221.32 1438.14 +imu_odom_: 1691062538.105221450 0.45011 -0.131681 9.98622 -0.0649811 -0.0181095 0.0436758 0.23 0 pose: 0.50917707 -4.54231 -3.34254 0 -0.0035747 0.00134194 0.766156 0.642643 uwb: 0.0 1221.32 1438.14 +imu_odom_: 1691062538.132249920 0.531513 -0.517148 9.82102 -0.0649811 -0.0213053 0.0447411 0.23 0 pose: 0.60852481 -4.54641 -3.33342 0 0.000679651 -0.0005010150.766387 0.642379 uwb: 0.50046284 1223.7 1437.14 +imu_odom_: 1691062538.157228149 0.617704 -0.0430956 10.3884 -0.0127832 -0.0245011 0.0436758 0.23 0 pose: 0.0 -4.54641 -3.33342 0 0.000679651 -0.0005010150.766387 0.642379 uwb: 0.0 1223.7 1437.14 +imu_odom_: 1691062538.184202665 0.672771 0.0263362 10.2472 -0.0553937 -0.0319579 0.0426106 0.23 0.02 pose: 0.7069393 -4.54641 -3.33342 0 0.000465232 -0.00123231 0.766399 0.642364 uwb: 0.50192980 1221.32 1438.14 +imu_odom_: 1691062538.200205624 0.466869 -0.105345 9.68694 -0.0383495 -0.0127832 0.0490022 0.23 0.02 pose: 0.0 -4.54641 -3.33342 0 0.000465232 -0.00123231 0.766399 0.642364 uwb: 0.0 1221.32 1438.14 +imu_odom_: 1691062538.227234094 0.430956 -0.25618 9.86172 -0.04048 -0.0436758 0.0479369 0.24 0 pose: 0.51997950 -4.55052 -3.3243 0 0.00360355 -0.0024329 0.766461 0.642277 uwb: 0.49749976 1217.71 1439.53 +imu_odom_: 1691062538.252263943 0.380678 -0.0574608 9.73243 -0.0436758 -0.0191748 0.056459 0.24 0 pose: 0.0 -4.55052 -3.3243 0 0.00360355 -0.0024329 0.766461 0.642277 uwb: 0.0 1217.71 1439.53 +imu_odom_: 1691062538.269256442 0.574608 -0.0790087 10.2615 -0.0735032 -0.0330232 0.0490022 0.23 0.02 pose: 0.42919438 -4.55463 -3.31518 0 0.00553871 -0.0008147920.766534 0.64218 uwb: 0.0 1217.71 1439.53 +imu_odom_: 1691062538.295258333 0.672771 -0.287304 9.87848 -0.0543285 -0.0191748 0.0383495 0.23 0.02 pose: 0.0 -4.55463 -3.31518 0 0.00553871 -0.0008147920.766534 0.64218 uwb: 0.49903380 1218.46 1439.11 +imu_odom_: 1691062538.321271307 0.770933 -0.426168 9.6199 -0.0436758 0.00745685 0.04048 0.23 0 pose: 0.52067652 -4.54962 -3.30195 0 0.00508351 0.000693949 0.766743 0.641934 uwb: 0.0 1218.46 1439.11 +imu_odom_: 1691062538.344365823 0.316035 -0.373495 9.89524 -0.0671117 0.02024 0.056459 0.23 0 pose: 0.0 -4.54962 -3.30195 0 0.00508351 0.000693949 0.766743 0.641934 uwb: 0.49989414 1215.17 1440.2 +imu_odom_: 1691062538.360249792 0.35913 -0.277727 10.3501 -0.0607201 -0.0266316 0.0511327 0.18 -0.02 pose: 0.42985057 -4.55374 -3.29284 0 0.00674735 -0.00297603 0.766768 0.641882 uwb: 0.0 1215.17 1440.2 +imu_odom_: 1691062538.387247348 0.610521 -0.179565 9.85932 -0.0532632 -0.00958738 0.0330232 0.18 -0.02 pose: 0.0 -4.55374 -3.29284 0 0.00674735 -0.00297603 0.766768 0.641882 uwb: 0.50251891 1214.77 1440.34 +imu_odom_: 1691062538.412332026 0.248997 -0.270545 9.70609 -0.0394148 0.0298274 0.0319579 0.23 0 pose: 0.50023536 -4.55786 -3.28373 0 0.00355603 -0.00419619 0.766952 0.641681 uwb: 0.0 1214.77 1440.34 +imu_odom_: 1691062538.439304792 0.442927 -0.469264 9.64384 -0.0628506 -0.0106526 0.0575243 0.23 -0.02 pose: 0.60047550 -4.56198 -3.27462 0 0.00318852 -0.00294694 0.766867 0.641792 uwb: 0.0 1214.77 1440.34 +imu_odom_: 1691062538.465298809 0.304064 -0.299275 10.0868 -0.0447411 -0.0383495 0.0490022 0.23 -0.02 pose: 0.0 -4.56198 -3.27462 0 0.00318852 -0.00294694 0.766867 0.641792 uwb: 0.0 1214.77 1440.34 +imu_odom_: 1691062538.482190400 0.912191 0.0885855 9.93354 -0.0500674 -0.0234358 0.0596548 0.25 -0.02 pose: 0.6874576 -4.56198 -3.27462 0 0.00266481 -0.00342645 0.766908 0.641742 uwb: 0.99758056 1213.21 1441.05 +imu_odom_: 1691062538.498174402 1.24977 -0.174777 10.24 -0.0735032 -0.0468716 0.0937433 0.25 -0.02 pose: 0.0 -4.56198 -3.27462 0 0.00266481 -0.00342645 0.766908 0.641742 uwb: 0.0 1213.21 1441.05 +imu_odom_: 1691062538.515297556 1.38145 -0.277727 9.37809 -0.0532632 0.0191748 0.129962 0.25 -0.02 pose: 0.0 -4.56198 -3.27462 0 0.00266481 -0.00342645 0.766908 0.641742 uwb: 0.0 1213.21 1441.05 +imu_odom_: 1691062538.533240223 1.15401 -0.325611 9.67497 -0.0639159 -0.0213053 0.172573 0.14 0.23 pose: 0.53051360 -4.55699 -3.26139 0 0.000108655 -0.00368952 0.76716 0.641445 uwb: 0.49977456 1214.32 1440.38 +imu_odom_: 1691062538.547230271 1.35991 -0.287304 9.9096 -0.0671117 -0.0500674 0.226901 0.14 0.23 pose: 0.0 -4.55699 -3.26139 0 0.000108655 -0.00368952 0.76716 0.641445 uwb: 0.0 1214.32 1440.38 +imu_odom_: 1691062538.563234980 1.53947 -0.361524 9.70849 -0.0447411 0.0511327 0.298274 0.14 0.23 pose: 0.0 -4.55699 -3.26139 0 0.000108655 -0.00368952 0.76716 0.641445 uwb: 0.0 1214.32 1440.38 +imu_odom_: 1691062538.579287809 1.25217 -0.411803 10.2424 -0.052198 0.0532632 0.36219 0.11 0.35 pose: 0.50979537 -4.56112 -3.25228 0 0.00440082 -0.0066267 0.768309 0.64003 uwb: 0.49956167 1211.35 1441.13 +imu_odom_: 1691062538.596287307 0.794875 -0.332794 9.65582 -0.0575243 0.0777643 0.411192 0.1 0.38 pose: 0.0 -4.56112 -3.25228 0 0.00440082 -0.0066267 0.768309 0.64003 uwb: 0.0 1211.35 1441.13 +imu_odom_: 1691062538.612226104 0.497994 -0.536301 9.99579 -0.0490022 0.0372843 0.4815 0.1 0.38 pose: 0.63082664 -4.56519 -3.24314 0 0.0078873 -0.0108772 0.773317 0.633877 uwb: 0.0 1211.35 1441.13 +imu_odom_: 1691062538.629231143 0.505177 -0.3304 9.86172 -0.0490022 -0.0106526 0.54222 0.12 0.55 pose: 0.0 -4.56519 -3.24314 0 0.0078873 -0.0108772 0.773317 0.633877 uwb: 0.50057658 1212.43 1440.41 +imu_odom_: 1691062538.646221601 0.933739 -0.23942 9.69173 -0.0426106 0 0.60294 0.12 0.55 pose: 0.0 -4.56519 -3.24314 0 0.0078873 -0.0108772 0.773317 0.633877 uwb: 0.0 1212.43 1440.41 +imu_odom_: 1691062538.662225726 1.05345 -0.567426 9.75158 -0.052198 0.0138484 0.604005 0.12 0.55 pose: 0.33924919 -4.56519 -3.24314 0 0.00557312 -0.0112979 0.778005 0.628132 uwb: 0.0 1212.43 1440.41 +imu_odom_: 1691062538.679224349 0.648829 -0.184354 9.77792 -0.0490022 0.0149137 0.634898 0.07 0.5 pose: 0.41980644 -4.56501 -3.24302 0 0.0067524 -0.0128854 0.785192 0.619082 uwb: 0.50054742 1210.38 1441.08 +imu_odom_: 1691062538.697363874 0.306458 -0.196325 9.8665 -0.0607201 0.036219 0.656203 0.07 0.5 pose: 0.6997357 -4.56519 -3.24314 0 0.00707746 -0.0122595 0.786478 0.617456 uwb: 0.0 1210.38 1441.08 +imu_odom_: 1691062538.713167350 0.407014 -0.215478 10.2496 -0.0447411 0.0330232 0.616788 0.06 0.55 pose: 0.0 -4.56519 -3.24314 0 0.00707746 -0.0122595 0.786478 0.617456 uwb: 0.0 1210.38 1441.08 +imu_odom_: 1691062538.730153432 0.54109 -0.251391 10.1658 -0.0458064 -0.00852212 0.62318 0.06 0.55 pose: 0.43944267 -4.56922 -3.23398 0 0.00503874 -0.00818375 0.794552 0.60712 uwb: 0.50058825 1210.31 1440.93 +imu_odom_: 1691062538.747167512 0.878672 -0.40462 9.9503 -0.0660464 -0.00958738 0.633832 0.05 0.55 pose: 0.0 -4.56922 -3.23398 0 0.00503874 -0.00818375 0.794552 0.60712 uwb: 0.0 1210.31 1440.93 +imu_odom_: 1691062538.764207840 0.837971 -0.335188 9.64624 -0.0490022 0.00958738 0.586961 0.05 0.55 pose: 0.0 -4.56922 -3.23398 0 0.00503874 -0.00818375 0.794552 0.60712 uwb: 0.0 1210.31 1440.93 +imu_odom_: 1691062538.781153384 0.612916 0.0407014 9.78271 -0.052198 0.0127832 0.549676 0.05 0.47 pose: 0.24999519 -4.56927 -3.23401 0 0.00499863 -0.00728402 0.798989 0.601281 uwb: 0.49803930 1212.63 1439.84 +imu_odom_: 1691062538.797146719 0.627281 -0.0311246 9.95988 -0.0543285 0.00852212 0.518784 0.05 0.47 pose: 0.0 -4.56927 -3.23401 0 0.00499863 -0.00728402 0.798989 0.601281 uwb: 0.0 1212.63 1439.84 +imu_odom_: 1691062538.813144719 0.665588 -0.189142 9.93354 -0.0596548 0.00213053 0.469782 0.05 0.47 pose: 0.34049158 -4.56927 -3.23401 0 0.00683654 -0.00866412 0.80457 0.593755 uwb: 0.0 1212.63 1439.84 +imu_odom_: 1691062538.829212131 0.627281 -0.136469 9.85214 -0.0511327 -0.0127832 0.426106 0.04 0.38 pose: 0.40928692 -4.56927 -3.23401 0 0.0097452 -0.00675801 0.810176 0.586067 uwb: 0.49991164 1212.48 1440.51 +imu_odom_: 1691062538.846196463 0.648829 -0.124498 9.7851 -0.056459 0.00745685 0.392017 0.04 0.38 pose: 0.8062724 -4.56927 -3.23401 0 0.0101834 -0.00608575 0.811082 0.584812 uwb: 0.0 1212.48 1440.51 +imu_odom_: 1691062538.863272955 0.639252 -0.112527 9.88566 -0.0532632 -0.00106526 0.356864 0.04 0.38 pose: 0.0 -4.56927 -3.23401 0 0.0101834 -0.00608575 0.811082 0.584812 uwb: 0.0 1212.48 1440.51 +imu_odom_: 1691062538.888265183 0.610521 -0.138864 9.9096 -0.0479369 0.00639159 0.315318 0.04 0.29 pose: 0.42065512 -4.56922 -3.23398 0 0.0127475 -0.00293293 0.81526 0.578947 uwb: 0.50047742 1212.11 1440.72 +imu_odom_: 1691062538.906147772 0.486023 -0.201113 9.90721 -0.0585895 -0.00106526 0.307861 0.03 0.23 pose: 0.0 -4.56922 -3.23398 0 0.0127475 -0.00293293 0.81526 0.578947 uwb: 0.0 1212.11 1440.72 +imu_odom_: 1691062538.923136770 0.342371 -0.184354 9.89284 -0.0511327 0.0138484 0.235423 0.03 0.23 pose: 0.32883467 -4.57339 -3.2249 0 0.00938366 -0.00277327 0.817897 0.575282 uwb: 0.0 1212.11 1440.72 +imu_odom_: 1691062538.938188394 0.225055 0.0742203 9.97185 -0.0532632 0.0138484 0.167247 0.04 0.08 pose: 0.0 -4.57339 -3.2249 0 0.00938366 -0.00277327 0.817897 0.575282 uwb: 0.50050659 1210.67 1441.67 +imu_odom_: 1691062538.956230219 0.251391 0.148441 9.99819 -0.056459 -0.00958738 0.0916127 0.04 0.08 pose: 0.0 -4.57339 -3.2249 0 0.00938366 -0.00277327 0.817897 0.575282 uwb: 0.0 1210.67 1441.67 +imu_odom_: 1691062538.973229426 0.56982 -0.0670376 9.93115 -0.0639159 -0.0287621 0.0266316 0.04 0.08 pose: 0.32997207 -4.57339 -3.2249 0 0.00656446 -0.00108223 0.819859 0.572526 uwb: 0.0 1210.67 1441.67 +imu_odom_: 1691062538.989419618 1.00078 -0.208296 9.89045 -0.0553937 -0.0266316 -0.0681769 0.04 -0.11 pose: 0.34024660 -4.57339 -3.2249 0 0.00683239 0.00147906 0.820421 0.571717 uwb: 0.49924086 1205.57 1443.86 +imu_odom_: 1691062539.7436655 1.02951 0.225055 9.88326 -0.0468716 0.00213053 -0.184291 0.04 -0.11 pose: 0.0 -4.57339 -3.2249 0 0.00683239 0.00147906 0.820421 0.571717 uwb: 0.0 1205.57 1443.86 +imu_odom_: 1691062539.24410200 0.6608 0.122104 9.7444 -0.0713727 0.0223706 -0.24075 0.02 -0.23 pose: 0.0 -4.57339 -3.2249 0 0.00683239 0.00147906 0.820421 0.571717 uwb: 0.0 1205.57 1443.86 +imu_odom_: 1691062539.39252137 0.328006 -0.059855 9.85693 -0.0703074 0.0298274 -0.282295 0.02 -0.23 pose: 0.18006537 -4.57339 -3.2249 0 0.00852874 0.000692149 0.820132 0.57211 uwb: 0.49972212 1207.87 1442.74 +imu_odom_: 1691062539.55243434 0.306458 -0.440533 10.0461 -0.0607201 -0.0106526 -0.297209 0.02 -0.23 pose: 0.0 -4.57339 -3.2249 0 0.00852874 0.000692149 0.820132 0.57211 uwb: 0.0 1207.87 1442.74 +imu_odom_: 1691062539.72123071 0.277727 -0.203507 9.93354 -0.0543285 -0.0117179 -0.3036 0.02 -0.32 pose: 0.34236395 -4.57339 -3.2249 0 0.011513 0.000613607 0.818055 0.575024 uwb: 0.0 1207.87 1442.74 +imu_odom_: 1691062539.89246520 0.237026 -0.117316 9.86411 -0.056459 0.00106526 -0.267381 0.02 -0.32 pose: 0.0 -4.57339 -3.2249 0 0.011513 0.000613607 0.818055 0.575024 uwb: 0.50109874 1207.56 1443.09 +imu_odom_: 1691062539.106244273 0.191536 -0.153229 9.8689 -0.0596548 -0.00639159 -0.255663 0.02 -0.32 pose: 0.0 -4.57339 -3.2249 0 0.011513 0.000613607 0.818055 0.575024 uwb: 0.0 1207.56 1443.09 +imu_odom_: 1691062539.122304397 0.629675 -0.246603 9.97903 -0.052198 -0.0468716 -0.312122 0.02 -0.35 pose: 0.46828029 -4.57339 -3.2249 0 0.00850498 0.00156662 0.813709 0.581208 uwb: 0.0 1207.56 1443.09 +imu_odom_: 1691062539.140260192 0.706289 0.253785 9.8282 -0.0490022 -0.00426106 -0.365386 0.02 -0.35 pose: 0.0 -4.57339 -3.2249 0 0.00850498 0.00156662 0.813709 0.581208 uwb: 0.50186575 1208.9 1442.92 +imu_odom_: 1691062539.158236985 0.505177 -0.131681 9.85693 -0.0713727 0.00532632 -0.376038 0.02 -0.35 pose: 0.68028338 -4.57339 -3.2249 0 0.00606081 0.0020434 0.807112 0.590364 uwb: 0.0 1208.9 1442.92 +imu_odom_: 1691062539.172291489 0.526724 -0.143652 9.99579 -0.0585895 -0.00532632 -0.395213 0.02 -0.35 pose: 0.0 -4.57339 -3.2249 0 0.00606081 0.0020434 0.807112 0.590364 uwb: 0.0 1208.9 1442.92 +imu_odom_: 1691062539.189131463 0.308852 -0.399832 9.93354 -0.052198 -0.0138484 -0.363255 0.02 -0.41 pose: 0.0 -4.57339 -3.2249 0 0.00606081 0.0020434 0.807112 0.590364 uwb: 0.49871310 1207.31 1443.54 +imu_odom_: 1691062539.214239770 0.459687 -0.344765 9.9096 -0.0585895 -0.0106526 -0.266316 0.02 -0.41 pose: 0.34017961 -4.57339 -3.2249 0 0.00682713 5.54206e-05 0.802922 0.596044 uwb: 0.0 1207.31 1443.54 +imu_odom_: 1691062539.231285351 0.361524 -0.368707 9.89763 -0.0543285 0 -0.204531 0.01 -0.32 pose: 0.31906475 -4.57339 -3.2249 0 0.00501166 -0.00155997 0.799219 0.601017 uwb: 0.49940138 1210.1 1442.44 +imu_odom_: 1691062539.248287478 0.612916 -0.292093 9.9934 -0.0575243 -0.0255663 -0.215183 0.01 -0.32 pose: 0.0 -4.57339 -3.2249 0 0.00501166 -0.00155997 0.799219 0.601017 uwb: 0.0 1210.1 1442.44 +imu_odom_: 1691062539.265118703 0.387861 0.189142 9.64624 -0.0511327 0.015979 -0.316384 0.02 -0.41 pose: 0.52085454 -4.57339 -3.2249 0 0.00302216 -0.00463865 0.794997 0.606588 uwb: 0.0 1210.1 1442.44 +imu_odom_: 1691062539.283112119 0.361524 0.342371 9.95509 -0.0585895 -0.00213053 -0.377104 0.02 -0.41 pose: 0.0 -4.57339 -3.2249 0 0.00302216 -0.00463865 0.794997 0.606588 uwb: 0.49854688 1209.71 1442.62 +imu_odom_: 1691062539.297112378 0.385466 -0.110133 9.86411 -0.0692422 -0.00852212 -0.407996 0.02 -0.41 pose: 0.0 -4.57339 -3.2249 0 0.00302216 -0.00463865 0.794997 0.606588 uwb: 0.0 1209.71 1442.62 +imu_odom_: 1691062539.314185665 0.586579 -0.378284 9.94073 -0.056459 -0.0181095 -0.454868 0.01 -0.47 pose: 0.6913658 -4.57339 -3.2249 0 0.00324817 -0.00394279 0.79425 0.60757 uwb: 0.0 1209.71 1442.62 +imu_odom_: 1691062539.331232705 0.497994 -0.3304 9.9096 -0.056459 -0.0106526 -0.467651 0.01 -0.47 pose: 0.0 -4.57339 -3.2249 0 0.00324817 -0.00394279 0.79425 0.60757 uwb: 0.50134079 1210.97 1442.28 +imu_odom_: 1691062539.348105634 0.565032 0.0430956 9.99579 -0.0713727 -0.00213053 -0.459129 0.01 -0.47 pose: 0.65991512 -4.57757 -3.21582 0 0.00339165 -0.00239763 0.785264 0.619147 uwb: 0.0 1210.97 1442.28 +imu_odom_: 1691062539.365105428 0.509965 -0.0790087 9.77553 -0.0500674 0.00319579 -0.487891 0.01 -0.47 pose: 0.0 -4.57757 -3.21582 0 0.00339165 -0.00239763 0.785264 0.619147 uwb: 0.0 1210.97 1442.28 +imu_odom_: 1691062539.382158592 0.469264 0.00957681 10.0461 -0.0468716 -0.0170442 -0.529436 0.01 -0.47 pose: 0.0 -4.57757 -3.21582 0 0.00339165 -0.00239763 0.785264 0.619147 uwb: 0.49744738 1212.23 1441.94 +imu_odom_: 1691062539.398162429 0.517148 -0.1652 9.7851 -0.0660464 -0.00426106 -0.532632 0.01 -0.47 pose: 0.34919134 -4.57757 -3.21582 0 0.00474878 -0.00176039 0.779737 0.626087 uwb: 0.0 1212.23 1441.94 +imu_odom_: 1691062539.415154348 0.519542 -0.296881 9.90002 -0.0660464 -0.00426106 -0.545415 0.01 -0.73 pose: 0.42050647 -4.56851 -3.2116 0 0.00617202 -0.00121066 0.772286 0.635244 uwb: 0.0 1212.23 1441.94 +imu_odom_: 1691062539.431249761 0.59855 -0.131681 9.87848 -0.0553937 -0.0127832 -0.574178 0.01 -0.73 pose: 0.8004398 -4.56851 -3.2116 0 0.00567488 -0.00187664 0.770801 0.637048 uwb: 0.50168202 1208.73 1443.55 +imu_odom_: 1691062539.449244636 0.517148 -0.0407014 9.89045 -0.0585895 -0.0117179 -0.600809 0.01 -0.73 pose: 0.0 -4.56851 -3.2116 0 0.00567488 -0.00187664 0.770801 0.637048 uwb: 0.0 1208.73 1443.55 +imu_odom_: 1691062539.466439246 0.292093 -0.205901 9.8665 -0.0543285 -0.0138484 -0.62531 0.01 -0.61 pose: 0.43077809 -4.56833 -3.21148 0 0.00773822 -0.00126484 0.762223 0.647267 uwb: 0.0 1208.73 1443.55 +imu_odom_: 1691062539.493381688 0.519542 -0.184354 9.90002 -0.0479369 -0.0298274 -0.618919 0.01 -0.64 pose: 0.0 -4.56833 -3.21148 0 0.00773822 -0.00126484 0.762223 0.647267 uwb: 0.49970177 1204.13 1445.79 +imu_odom_: 1691062539.510309737 0.445322 -0.136469 9.9527 -0.0660464 0.0138484 -0.580569 0.01 -0.64 pose: 0.25083809 -4.56851 -3.2116 0 0.00608929 -0.00133845 0.756825 0.653588 uwb: 0.0 1204.13 1445.79 +imu_odom_: 1691062539.526150255 -0.220267 -0.306458 9.87129 -0.0596548 0.0500674 -0.545415 0.01 -0.7 pose: 0.0 -4.56851 -3.2116 0 0.00608929 -0.00133845 0.756825 0.653588 uwb: 0.50117748 1204.76 1445.12 +imu_odom_: 1691062539.543154423 -0.677559 -0.28491 9.85693 -0.0447411 -0.00213053 -0.593352 0.01 -0.7 pose: 0.0 -4.56851 -3.2116 0 0.00608929 -0.00133845 0.756825 0.653588 uwb: 0.0 1204.76 1445.12 +imu_odom_: 1691062539.560096180 -0.610521 0.124498 9.61511 -0.0490022 -0.00852212 -0.58483 0.05 -0.47 pose: 0.26114763 -4.56851 -3.2116 0 0.00543702 -0.00251001 0.751273 0.659964 uwb: 0.0 1204.76 1445.12 +imu_odom_: 1691062539.577082558 -0.634463 -0.351948 9.8689 -0.0756338 0.0298274 -0.487891 0.05 -0.47 pose: 0.42711215 -4.56846 -3.21157 0 0.00203141 0.000671164 0.742587 0.669747 uwb: 0.49864603 1206.36 1444.5 +imu_odom_: 1691062539.594135431 -0.268151 -0.73502 10.1275 -0.0671117 -0.0298274 -0.431432 0.05 -0.47 pose: 0.0 -4.56846 -3.21157 0 0.00203141 0.000671164 0.742587 0.669747 uwb: 0.0 1206.36 1444.5 +imu_odom_: 1691062539.611183053 0.229843 -0.301669 9.74919 -0.0575243 -0.0298274 -0.393083 0.07 -0.44 pose: 0.8009356 -4.56851 -3.2116 0 0.00163955 0.0013671 0.740909 0.671603 uwb: 0.0 1206.36 1444.5 +imu_odom_: 1691062539.628067357 0.208296 0.0383072 10.0197 -0.0628506 -0.0308927 -0.376038 0.07 -0.44 pose: 0.0 -4.56851 -3.2116 0 0.00163955 0.0013671 0.740909 0.671603 uwb: 0.50160911 1206.3 1444.38 +imu_odom_: 1691062539.645068317 0.155623 0.105345 9.5816 -0.0639159 -0.0127832 -0.390952 0.07 -0.44 pose: 0.0 -4.56851 -3.2116 0 0.00163955 0.0013671 0.740909 0.671603 uwb: 0.0 1206.3 1444.38 +imu_odom_: 1691062539.662124106 -0.0143652 -0.114922 9.9096 -0.0660464 -0.00852212 -0.377104 0.09 -0.41 pose: 0.50908388 -4.56851 -3.2116 0 -0.00293092 0.00282507 0.732101 0.681184 uwb: 0.0 1206.3 1444.38 +imu_odom_: 1691062539.678064948 0.23942 -0.45011 10.0748 -0.0479369 -0.0351537 -0.36432 0.09 -0.35 pose: 0.0 -4.56851 -3.2116 0 -0.00293092 0.00282507 0.732101 0.681184 uwb: 0.49689034 1205.15 1444.94 +imu_odom_: 1691062539.695120445 0.11971 -0.258574 10.0245 -0.0447411 -0.0298274 -0.32171 0.09 -0.35 pose: 0.66999135 -4.57262 -3.20249 0 -0.00405351 0.00633572 0.722416 0.691418 uwb: 0.0 1205.15 1444.94 +imu_odom_: 1691062539.712066577 0.363919 -0.311246 9.7037 -0.0585895 -0.0649811 -0.282295 0.1 -0.32 pose: 0.0 -4.57262 -3.20249 0 -0.00405351 0.00633572 0.722416 0.691418 uwb: 0.0 1205.15 1444.94 +imu_odom_: 1691062539.729077453 0.514753 -0.0694318 9.97424 -0.0681769 -0.0468716 -0.274838 0.1 -0.32 pose: 0.0 -4.57262 -3.20249 0 -0.00405351 0.00633572 0.722416 0.691418 uwb: 0.50245487 1205.33 1444.31 +imu_odom_: 1691062539.747089243 0.292093 -0.248997 9.84975 -0.052198 -0.0287621 -0.278034 0.1 -0.32 pose: 0.33992296 -4.57262 -3.20249 0 -0.00574576 0.00515805 0.718118 0.695878 uwb: 0.0 1205.33 1444.31 +imu_odom_: 1691062539.762189866 -0.0263362 0.117316 9.49301 -0.0479369 -0.0969391 -0.279099 0.12 -0.32 pose: 0.44025645 -4.57511 -3.19682 0 -0.00511892 0.00258909 0.713246 0.700891 uwb: 0.0 1205.33 1444.31 +imu_odom_: 1691062539.779198409 0.888249 -0.232238 10.4507 -0.0585895 -0.0894822 -0.275903 0.12 -0.32 pose: 0.6104643 -4.57669 -3.19336 0 -0.00487585 0.0030119 0.712566 0.701581 uwb: 0.50074877 1205.3 1444.24 +imu_odom_: 1691062539.797088876 1.24498 -0.0215478 9.21528 -0.0671117 -0.00319579 -0.223706 0.09 -0.29 pose: 0.0 -4.57669 -3.19336 0 -0.00487585 0.0030119 0.712566 0.701581 uwb: 0.0 1205.3 1444.24 +imu_odom_: 1691062539.814263071 1.01035 -0.778116 9.69652 -0.0490022 0.0181095 -0.178964 0.09 -0.26 pose: 0.43894990 -4.57669 -3.19336 0 -0.00139734 0.000863884 0.708025 0.706185 uwb: 0.0 1205.3 1444.24 +imu_odom_: 1691062539.831060465 1.07978 -0.35913 9.96946 -0.072438 -0.0372843 -0.149137 0.07 -0.26 pose: 0.0 -4.57669 -3.19336 0 -0.00139734 0.000863884 0.708025 0.706185 uwb: 0.49813565 1207.94 1442.83 +imu_odom_: 1691062539.848069300 1.2809 -0.153229 9.95988 -0.0340885 0.0330232 -0.192813 0.07 -0.26 pose: 0.0 -4.57669 -3.19336 0 -0.00139734 0.000863884 0.708025 0.706185 uwb: 0.0 1207.94 1442.83 +imu_odom_: 1691062539.863114219 0.701501 0.0670376 10.0341 -0.0511327 0.0181095 -0.215183 0.06 -0.2 pose: 0.24224341 -4.56756 -3.18928 0 -0.000927702-0.00138124 0.706226 0.707985 uwb: 0.0 1207.94 1442.83 +imu_odom_: 1691062539.880055393 0.497994 0.124498 9.91678 -0.056459 -0.00639159 -0.218379 0.06 -0.2 pose: 0.0 -4.56756 -3.18928 0 -0.000927702-0.00138124 0.706226 0.707985 uwb: 0.50168202 1206.01 1443.76 +imu_odom_: 1691062539.894059734 0.634463 -0.411803 9.991 -0.0628506 -0.0191748 -0.214118 0.06 -0.2 pose: 0.33754025 -4.56756 -3.18928 0 0.00158756 -0.00290899 0.703531 0.710657 uwb: 0.0 1206.01 1443.76 +imu_odom_: 1691062539.911100066 0.797269 -0.25618 9.7875 -0.0671117 0 -0.206661 0.05 -0.17 pose: 0.38992492 -4.57157 -3.18011 0 0.0034225 -0.00312976 0.699972 0.714155 uwb: 0.0 1206.01 1443.76 +imu_odom_: 1691062539.925135030 0.818817 -0.277727 10.1897 -0.0511327 0.00213053 -0.178964 0.05 -0.17 pose: 0.0 -4.57157 -3.18011 0 0.0034225 -0.00312976 0.699972 0.714155 uwb: 0.49820565 1205.41 1443.47 +imu_odom_: 1691062539.941050792 0.588974 -0.146046 9.80186 -0.0639159 -0.00106526 -0.154463 0.05 -0.17 pose: 0.0 -4.57157 -3.18011 0 0.0034225 -0.00312976 0.699972 0.714155 uwb: 0.0 1205.41 1443.47 +imu_odom_: 1691062539.957064836 0.646434 -0.222661 9.83059 -0.0426106 0.00106526 -0.152333 0.04 -0.17 pose: 0.7105850 -4.57162 -3.18014 0 0.00380024 -0.00372211 0.699345 0.714764 uwb: 0.0 1205.41 1443.47 +imu_odom_: 1691062539.975069919 0.677559 -0.112527 9.93115 -0.0553937 -0.00958738 -0.132093 0.04 -0.17 pose: 0.0 -4.57162 -3.18014 0 0.00380024 -0.00372211 0.699345 0.714764 uwb: 0.0 1205.41 1443.47 +imu_odom_: 1691062540.346795 0.500388 -0.272939 9.90002 -0.0500674 0.0170442 -0.106526 0.03 -0.14 pose: 0.46890149 -4.57162 -3.18014 0 0.00686114 -0.00582044 0.695759 0.718219 uwb: 0.50002257 1208.94 1441.95 +imu_odom_: 1691062540.27068469 -0.897826 -0.148441 9.63906 -0.04048 0.102265 -0.125701 0.04 -0.17 pose: 0.0 -4.57162 -3.18014 0 0.00686114 -0.00582044 0.695759 0.718219 uwb: 0.49850610 1206.67 1443.16 +imu_odom_: 1691062540.52054584 -1.17316 -0.196325 9.98382 -0.0553937 -0.0351537 -0.0980043 0.06 -0.11 pose: 0.59075231 -4.57162 -3.18014 0 0.00581558 -0.00520175 0.692303 0.721564 uwb: 0.0 1206.67 1443.16 +imu_odom_: 1691062540.77114484 0.440533 -0.538695 10.1586 -0.0585895 -0.0735032 -0.0468716 0.1 -0.14 pose: 0.0 -4.57162 -3.18014 0 0.00581558 -0.00520175 0.692303 0.721564 uwb: 0.0 1206.67 1443.16 +imu_odom_: 1691062540.100037817 0.430956 0.0047884 9.86172 -0.0351537 -0.00319579 -0.0788296 0.1 -0.14 pose: 0.52104715 -4.57162 -3.18014 0 0.00203964 -0.00195663 0.689663 0.724125 uwb: 0.0 1206.67 1443.16 +imu_odom_: 1691062540.116041367 0.577003 0.114922 10.4483 -0.0479369 -0.0234358 -0.0308927 0.1 -0.14 pose: 0.0 -4.57162 -3.18014 0 0.00203964 -0.00195663 0.689663 0.724125 uwb: 0.0 1206.67 1443.16 +imu_odom_: 1691062540.134109156 0.878672 -0.282516 9.35893 -0.0692422 -0.0245011 0.0511327 0.1 -0.08 pose: 0.48812954 -4.57568 -3.171 0 0.0034799 -0.0013324 0.687909 0.725787 uwb: 0.0 1206.67 1443.16 +imu_odom_: 1691062540.151038085 0.804452 -0.732626 9.56005 -0.0490022 0.0447411 0.052198 0.1 -0.08 pose: 0.0 -4.57568 -3.171 0 0.0034799 -0.0013324 0.687909 0.725787 uwb: 0.0 1206.67 1443.16 +imu_odom_: 1691062540.165092592 1.07978 -0.316035 10.556 -0.0479369 0.00639159 0.0713727 0.07 0.17 pose: 0.42989452 -4.57 -3.1685 0 0.00438947 -0.00413018 0.687861 0.725818 uwb: 0.0 1206.67 1443.16 +imu_odom_: 1691062540.181035480 0.897826 -0.0407014 9.66779 -0.0511327 0.00213053 0.18003 0.07 0.17 pose: 0.0 -4.57 -3.1685 0 0.00438947 -0.00413018 0.687861 0.725818 uwb: 0.150101299 1204.92 1443.44 +imu_odom_: 1691062540.196030240 1.1157 -0.464475 9.8282 -0.0639159 -0.00319579 0.309992 0.07 0.17 pose: 0.0 -4.57 -3.1685 0 0.00438947 -0.00413018 0.687861 0.725818 uwb: 0.0 1204.92 1443.44 +imu_odom_: 1691062540.212034081 0.909797 -0.696713 9.95988 -0.0479369 0.00745685 0.360059 0.05 0.29 pose: 0.6062648 -4.56653 -3.16698 0 0.00470745 -0.00460429 0.687929 0.725748 uwb: 0.0 1204.92 1443.44 +imu_odom_: 1691062540.229034753 0.878672 -0.282516 10.082 -0.0383495 0.00426106 0.406931 0.05 0.29 pose: 0.0 -4.56653 -3.16698 0 0.00470745 -0.00460429 0.687929 0.725748 uwb: 0.50059139 1203.13 1443.64 +imu_odom_: 1691062540.247088544 0.68953 -0.155623 9.79468 -0.0596548 0.0170442 0.50387 0.05 0.29 pose: 0.0 -4.56653 -3.16698 0 0.00470745 -0.00460429 0.687929 0.725748 uwb: 0.0 1203.13 1443.64 +imu_odom_: 1691062540.264091258 0.6608 -0.335188 9.8258 -0.0553937 0.015979 0.539024 0.04 0.38 pose: 0.45995112 -4.56653 -3.16698 0 0.00680157 -0.00786788 0.691104 0.72268 uwb: 0.0 1203.13 1443.64 +imu_odom_: 1691062540.279038189 0.428562 -0.349553 9.9096 -0.0426106 0.0149137 0.539024 0.04 0.35 pose: 0.0 -4.56653 -3.16698 0 0.00680157 -0.00786788 0.691104 0.72268 uwb: 0.49958814 1202.58 1443.45 +imu_odom_: 1691062540.295179685 0.356736 -0.0814029 9.96706 -0.0500674 0.00745685 0.545415 0.04 0.35 pose: 0.66943154 -4.57054 -3.15782 0 0.00717076 -0.0102347 0.701488 0.712572 uwb: 0.0 1202.58 1443.45 +imu_odom_: 1691062540.309151949 0.208296 -0.126893 9.79228 -0.056459 0.0213053 0.528371 0.04 0.35 pose: 0.0 -4.57054 -3.15782 0 0.00717076 -0.0102347 0.701488 0.712572 uwb: 0.0 1202.58 1443.45 +imu_odom_: 1691062540.326090502 0.275333 -0.0814029 9.85214 -0.0553937 0.00106526 0.486826 0.03 0.41 pose: 0.0 -4.57054 -3.15782 0 0.00717076 -0.0102347 0.701488 0.712572 uwb: 0.49983021 1202.5 1443.28 +imu_odom_: 1691062540.342185043 0.433351 -0.169988 9.99819 -0.0575243 -0.00426106 0.466586 0.03 0.41 pose: 0.31157546 -4.57054 -3.15782 0 0.0055603 -0.00757919 0.707048 0.707103 uwb: 0.0 1202.5 1443.28 +imu_odom_: 1691062540.359140803 0.438139 -0.0814029 9.75398 -0.0617853 0.00319579 0.474043 0.04 0.5 pose: 0.40988498 -4.57054 -3.15782 0 0.00401716 -0.00368062 0.713514 0.700619 uwb: 0.0 1202.5 1443.28 +imu_odom_: 1691062540.375130645 0.663194 -0.361524 10.058 -0.0447411 0.00213053 0.455933 0.04 0.5 pose: 0.0 -4.57054 -3.15782 0 0.00401716 -0.00368062 0.713514 0.700619 uwb: 0.0 1202.5 1443.28 +imu_odom_: 1691062540.393131940 0.617704 -0.0790087 9.84735 -0.052198 0.0106526 0.437824 0.04 0.5 pose: 0.0 -4.57054 -3.15782 0 0.00401716 -0.00368062 0.713514 0.700619 uwb: 0.0 1202.5 1443.28 +imu_odom_: 1691062540.408015293 0.59855 -0.011971 9.94551 -0.0628506 0.00319579 0.429302 0.02 0.32 pose: 0.7010484 -4.57054 -3.15782 0 0.00417182 -0.003011 0.714579 0.699536 uwb: 0.0 1202.5 1443.28 +imu_odom_: 1691062540.426086291 0.493206 -0.102951 9.86411 -0.0479369 0.0149137 0.378169 0.04 0.47 pose: 0.0 -4.57054 -3.15782 0 0.00417182 -0.003011 0.714579 0.699536 uwb: 0.100102822 1203.68 1442.79 +imu_odom_: 1691062540.441234746 0.490811 -0.071826 9.93833 -0.0543285 0.00319579 0.34408 0.04 0.47 pose: 0.66970278 -4.57054 -3.15782 0 0.00729862 -0.00179301 0.723833 0.689934 uwb: 0.0 1203.68 1442.79 +imu_odom_: 1691062540.459129884 0.509965 -0.0909797 9.78271 -0.0458064 0.00745685 0.316384 0.03 0.38 pose: 0.0 -4.57054 -3.15782 0 0.00729862 -0.00179301 0.723833 0.689934 uwb: 0.0 1203.68 1442.79 +imu_odom_: 1691062540.474015278 0.497994 -0.25618 9.95748 -0.0596548 0.00319579 0.309992 0.03 0.38 pose: 0.0 -4.57054 -3.15782 0 0.00729862 -0.00179301 0.723833 0.689934 uwb: 0.0 1203.68 1442.79 +imu_odom_: 1691062540.492125356 0.442927 -0.179565 9.92636 -0.052198 -0.00532632 0.294013 0.03 0.38 pose: 0.32976807 -4.57054 -3.15782 0 0.00846907 0.000910284 0.727311 0.686255 uwb: 0.49882404 1199.64 1444.19 +imu_odom_: 1691062540.507104368 0.54109 -0.201113 9.90481 -0.0500674 -0.00106526 0.272708 0.02 0.23 pose: 0.42982744 -4.57054 -3.15782 0 0.00644656 9.20931e-05 0.731227 0.682104 uwb: 0.0 1199.64 1444.19 +imu_odom_: 1691062540.525077374 0.497994 -0.105345 9.80904 -0.0575243 0 0.265251 0.02 0.23 pose: 0.7003193 -4.57054 -3.15782 0 0.0063221 -0.0005812050.731787 0.681504 uwb: 0.0 1199.64 1444.19 +imu_odom_: 1691062540.540061343 0.512359 -0.244209 9.93115 -0.0553937 -0.00213053 0.257794 0.02 0.23 pose: 0.0 -4.57054 -3.15782 0 0.0063221 -0.0005812050.731787 0.681504 uwb: 0.50098511 1197.97 1444.63 +imu_odom_: 1691062540.558053598 0.445322 -0.158017 9.90481 -0.052198 0 0.229032 0.02 0.26 pose: 0.40932794 -4.57256 -3.15325 0 0.00610338 -0.0009747480.734912 0.678135 uwb: 0.0 1197.97 1444.63 +imu_odom_: 1691062540.574048398 0.471658 -0.141258 9.91439 -0.052198 -0.00319579 0.213053 0.01 0.17 pose: 0.0 -4.57256 -3.15325 0 0.00610338 -0.0009747480.734912 0.678135 uwb: 0.0 1197.97 1444.63 +imu_odom_: 1691062540.591002407 0.47884 -0.0957681 9.95748 -0.056459 0 0.196009 0.01 0.17 pose: 0.0 -4.57256 -3.15325 0 0.00610338 -0.0009747480.734912 0.678135 uwb: 0.49868697 1195.88 1445.14 +imu_odom_: 1691062540.606996624 0.500388 -0.148441 9.86411 -0.056459 -0.00319579 0.184291 0.01 0.14 pose: 0.24941786 -4.57459 -3.14867 0 0.00515924 0.000426914 0.736475 0.676445 uwb: 0.0 1195.88 1445.14 +imu_odom_: 1691062540.624054458 0.505177 -0.205901 9.88566 -0.0553937 -0.00639159 0.175769 0.01 0.14 pose: 0.0 -4.57459 -3.14867 0 0.00515924 0.000426914 0.736475 0.676445 uwb: 0.0 1195.88 1445.14 +imu_odom_: 1691062540.640017469 0.531513 -0.172383 9.89763 -0.0532632 -0.00745685 0.164051 0.01 0.14 pose: 0.34001344 -4.57459 -3.14867 0 0.00684161 0.00134403 0.738281 0.674457 uwb: 0.50063514 1200.68 1442.38 +imu_odom_: 1691062540.657149088 0.54109 -0.117316 9.85932 -0.0532632 -0.00319579 0.147006 0.01 0.14 pose: 0.41012996 -4.57459 -3.14867 0 0.0061876 -0.00239399 0.740138 0.672422 uwb: 0.0 1200.68 1442.38 +imu_odom_: 1691062540.673138347 0.486023 -0.0909797 9.90721 -0.0553937 0 0.134223 0.01 0.14 pose: 0.7146973 -4.57459 -3.14867 0 0.00681563 -0.00204278 0.740391 0.672138 uwb: 0.0 1200.68 1442.38 +imu_odom_: 1691062540.690063193 0.464475 -0.160412 9.89284 -0.0553937 -0.00426106 0.112918 0.01 0.14 pose: 0.0 -4.57459 -3.14867 0 0.00681563 -0.00204278 0.740391 0.672138 uwb: 0.49948315 1196.86 1444.22 +imu_odom_: 1691062540.706197106 0.47884 -0.155623 9.88805 -0.0543285 -0.00532632 0.0969391 0 0.05 pose: 0.42898751 -4.57459 -3.14867 0 0.00582579 -2.41443e-060.741671 0.670738 uwb: 0.0 1196.86 1444.22 +imu_odom_: 1691062540.723265731 0.502782 -0.196325 9.9096 -0.056459 -0.00745685 0.0841559 0 0.08 pose: 0.0 -4.57459 -3.14867 0 0.00582579 -2.41443e-060.741671 0.670738 uwb: 0.0 1196.86 1444.22 +imu_odom_: 1691062540.738990470 0.517148 -0.143652 9.89763 -0.0543285 -0.00319579 0.072438 0 0.08 pose: 0.0 -4.57459 -3.14867 0 0.00582579 -2.41443e-060.741671 0.670738 uwb: 0.50020351 1194.07 1445.27 +imu_odom_: 1691062540.756043638 0.526724 -0.1652 9.94791 -0.056459 -0.00532632 0.0607201 0 0.02 pose: 0.22967079 -4.57459 -3.14867 0 0.00435968 -0.00128016 0.742093 0.670282 uwb: 0.0 1194.07 1445.27 +imu_odom_: 1691062540.770986195 0.529119 -0.196325 9.90242 -0.0543285 -0.00532632 0.0447411 0 0.02 pose: 0.0 -4.57459 -3.14867 0 0.00435968 -0.00128016 0.742093 0.670282 uwb: 0.0 1194.07 1445.27 +imu_odom_: 1691062540.785994954 0.469264 -0.141258 9.8689 -0.0532632 -0.00106526 0.0319579 0 0.02 pose: 0.0 -4.57459 -3.14867 0 0.00435968 -0.00128016 0.742093 0.670282 uwb: 0.49887071 1192.13 1446.13 +imu_odom_: 1691062540.799987633 0.390255 -0.169988 9.92636 -0.056459 0.00213053 0.036219 0 0 pose: 0.32957559 -4.57459 -3.14867 0 0.00624316 -0.00220831 0.74246 0.669857 uwb: 0.0 1192.13 1446.13 +imu_odom_: 1691062540.814992018 0.35913 -0.246603 9.90481 -0.056459 -0.00426106 0.0383495 0 0 pose: 0.40007123 -4.57459 -3.14867 0 0.00530972 -0.00207066 0.742526 0.669793 uwb: 0.0 1192.13 1446.13 +imu_odom_: 1691062540.830109268 0.380678 -0.222661 9.8665 -0.0532632 -0.00745685 0.0394148 0 0 pose: 0.0 -4.57459 -3.14867 0 0.00530972 -0.00207066 0.742526 0.669793 uwb: 0.50154506 1190.91 1446.5 +imu_odom_: 1691062540.845148358 0.438139 -0.155623 9.89045 -0.0543285 -0.00852212 0.0436758 0 0 pose: 0.6003445 -4.57459 -3.14867 0 0.00486501 -0.00163933 0.742521 0.669804 uwb: 0.0 1190.91 1446.5 +imu_odom_: 1691062540.859199365 0.464475 -0.148441 9.86411 -0.0553937 -0.00639159 0.0426106 0 0 pose: 0.0 -4.57459 -3.14867 0 0.00486501 -0.00163933 0.742521 0.669804 uwb: 0.0 1190.91 1446.5 +imu_odom_: 1691062540.874127048 0.457293 -0.150835 9.87129 -0.0543285 -0.00213053 0.036219 0 0 pose: 0.0 -4.57459 -3.14867 0 0.00486501 -0.00163933 0.742521 0.669804 uwb: 0.0 1190.91 1446.5 +imu_odom_: 1691062540.889002527 0.428562 -0.172383 9.86411 -0.056459 -0.00213053 0.0372843 0 0 pose: 0.44052778 -4.57459 -3.14867 0 0.00187812 1.94872e-06 0.74252 0.669822 uwb: 0.49931691 1186.66 1448.45 +imu_odom_: 1691062540.903074241 0.392649 -0.205901 9.92397 -0.0575243 -0.00532632 0.0394148 0 0 pose: 0.0 -4.57459 -3.14867 0 0.00187812 1.94872e-06 0.74252 0.669822 uwb: 0.0 1186.66 1448.45 +imu_odom_: 1691062540.918201115 0.416591 -0.172383 9.91439 -0.0553937 -0.00639159 0.0415453 0 0 pose: 0.0 -4.57459 -3.14867 0 0.00187812 1.94872e-06 0.74252 0.669822 uwb: 0.0 1186.66 1448.45 +imu_odom_: 1691062540.933023807 0.428562 -0.1652 9.85932 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.44036445 -4.57459 -3.14867 0 0.00467816 0.00119301 0.742516 0.669811 uwb: 0.49996437 1184.64 1449.08 +imu_odom_: 1691062540.947984446 0.414197 -0.191536 9.88326 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 -4.57459 -3.14867 0 0.00467816 0.00119301 0.742516 0.669811 uwb: 0.0 1184.64 1449.08 +imu_odom_: 1691062540.961987041 0.430956 -0.189142 9.8665 -0.056459 -0.00532632 0.0372843 0 0 pose: 0.0 -4.57459 -3.14867 0 0.00467816 0.00119301 0.742516 0.669811 uwb: 0.0 1184.64 1449.08 +imu_odom_: 1691062540.977200241 0.40462 -0.203507 9.90721 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.43973159 -4.57459 -3.14867 0 0.00164147 0.0014211 0.742522 0.669818 uwb: 0.50004894 1183.73 1449.12 +imu_odom_: 1691062540.991983269 0.433351 -0.169988 9.90002 -0.0553937 -0.00745685 0.04048 0 0 pose: 0.0 -4.57459 -3.14867 0 0.00164147 0.0014211 0.742522 0.669818 uwb: 0.0 1183.73 1449.12 +imu_odom_: 1691062541.14031388 0.486023 -0.181959 9.91439 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 -4.57459 -3.14867 0 0.00164147 0.0014211 0.742522 0.669818 uwb: 0.0 1183.73 1449.12 +imu_odom_: 1691062541.31125972 -0.287304 -0.201113 9.6606 -0.0575243 0.0703074 0.0415453 0 0 pose: 0.89970607 -4.57459 -3.14867 0 0.00381682 -0.00109661 0.742521 0.669811 uwb: 0.50173176 1184.03 1448.72 +imu_odom_: 1691062541.48119649 -1.13246 -0.191536 10.0916 -0.0607201 0.0500674 0.0607201 0.03 0.02 pose: 0.0 -4.57459 -3.14867 0 0.00381682 -0.00109661 0.742521 0.669811 uwb: 0.0 1184.03 1448.72 +imu_odom_: 1691062541.65132283 -1.12288 -0.316035 9.84496 -0.0607201 -0.0394148 0.0820254 0.03 0.02 pose: 0.24177398 -4.57459 -3.14867 0 0.0013479 0.00101392 0.742586 0.669749 uwb: 0.0 1184.03 1448.72 +imu_odom_: 1691062541.81953308 -0.071826 -0.299275 10.0245 -0.0532632 -0.0852212 0.0958738 0.04 0.02 pose: 0.0 -4.57459 -3.14867 0 0.0013479 0.00101392 0.742586 0.669749 uwb: 0.49934328 1181.65 1449.64 +imu_odom_: 1691062541.98939985 0.201113 -0.248997 9.65821 -0.0532632 -0.04048 0.092678 0.04 0.02 pose: 0.0 -4.57459 -3.14867 0 0.0013479 0.00101392 0.742586 0.669749 uwb: 0.0 1181.65 1449.64 +imu_odom_: 1691062541.116952950 0.28491 -0.11971 9.90002 -0.0617853 -0.00852212 0.092678 0.04 0.02 pose: 0.33866322 -4.57459 -3.14867 0 -0.00118059 0.00275929 0.743022 0.669261 uwb: 0.0 1181.65 1449.64 +imu_odom_: 1691062541.134018079 -0.181959 -0.323217 9.59835 -0.0649811 0.0117179 0.0798948 0.06 0 pose: 0.34951229 -4.57459 -3.14867 0 -0.00278262 0.00407859 0.743645 0.668556 uwb: 0.49896414 1180.79 1449.76 +imu_odom_: 1691062541.151008256 -0.117316 -0.0861913 10.0987 -0.0617853 -0.00958738 0.0660464 0.06 0 pose: 0.0 -4.57459 -3.14867 0 -0.00278262 0.00407859 0.743645 0.668556 uwb: 0.0 1180.79 1449.76 +imu_odom_: 1691062541.168952393 -0.0215478 -0.196325 9.72046 -0.0628506 -0.0372843 0.0884169 0.09 0.02 pose: 0.43981919 -4.57459 -3.14867 0 -0.00503792 0.00705107 0.744182 0.66792 uwb: 0.0 1180.79 1449.76 +imu_odom_: 1691062541.182947117 0.275333 -0.292093 9.93115 -0.0596548 -0.0255663 0.0969391 0.09 0.02 pose: 0.0 -4.57459 -3.14867 0 -0.00503792 0.00705107 0.744182 0.66792 uwb: 0.49929953 1182.98 1448.39 +imu_odom_: 1691062541.200946083 0.507571 -0.368707 9.9096 -0.0532632 -0.0298274 0.0820254 0.09 0.02 pose: 0.0 -4.57459 -3.14867 0 -0.00503792 0.00705107 0.744182 0.66792 uwb: 0.0 1182.98 1448.39 +imu_odom_: 1691062541.216949636 0.294487 -0.0790087 9.77074 -0.0585895 -0.0319579 0.0873517 0.11 0.02 pose: 0.7950739 -4.57459 -3.14867 0 -0.00558555 0.00743212 0.744307 0.667773 uwb: 0.0 1182.98 1448.39 +imu_odom_: 1691062541.234027597 0.354342 -0.110133 10.161 -0.056459 -0.0415453 0.0884169 0.11 0.02 pose: 0.0 -4.57459 -3.14867 0 -0.00558555 0.00743212 0.744307 0.667773 uwb: 0.49939286 1186.4 1446.72 +imu_odom_: 1691062541.252220505 0.246603 0.0622492 10.1059 -0.04048 -0.0234358 0.0639159 0.11 0.02 pose: 0.0 -4.57459 -3.14867 0 -0.00558555 0.00743212 0.744307 0.667773 uwb: 0.0 1186.4 1446.72 +imu_odom_: 1691062541.266222229 0.0933739 -0.222661 9.94073 -0.0468716 0.0170442 0.0777643 0.11 0.02 pose: 0.48991158 -4.56962 -3.13544 0 -0.00505531 0.00489984 0.745107 0.666908 uwb: 0.0 1186.4 1446.72 +imu_odom_: 1691062541.283098374 0.287304 -0.397437 9.87369 -0.0692422 0.0138484 0.0852212 0.11 0.02 pose: 0.0 -4.56962 -3.13544 0 -0.00505531 0.00489984 0.745107 0.666908 uwb: 0.50073149 1188.76 1445.78 +imu_odom_: 1691062541.300118882 0.758962 -0.342371 10.2424 -0.0500674 -0.0223706 0.0735032 0.11 0.02 pose: 0.65289853 -4.5737 -3.12631 0 -0.0031165 0.00676534 0.745965 0.665943 uwb: 0.0 1188.76 1445.78 +imu_odom_: 1691062541.316995318 0.995988 -0.047884 9.70609 -0.0692422 -0.00213053 0.145941 0.13 0.02 pose: 0.0 -4.5737 -3.12631 0 -0.0031165 0.00676534 0.745965 0.665943 uwb: 0.0 1188.76 1445.78 +imu_odom_: 1691062541.332938501 1.18513 -0.287304 9.92875 -0.0713727 -0.00639159 0.203466 0.13 0.02 pose: 0.0 -4.5737 -3.12631 0 -0.0031165 0.00676534 0.745965 0.665943 uwb: 0.49887957 1187.54 1446.15 +imu_odom_: 1691062541.351064332 1.75734 -0.464475 10.0245 -0.0394148 -0.0287621 0.140615 0.13 0.02 pose: 0.33910068 -4.5737 -3.12631 0 -0.00227322 0.00406386 0.746565 0.665296 uwb: 0.0 1187.54 1446.15 +imu_odom_: 1691062541.367131171 1.403 0.174777 9.82102 -0.0426106 0.0500674 0.0884169 0.11 0.02 pose: 0.33915318 -4.5737 -3.12631 0 0.000122093 0.00155381 0.748065 0.663624 uwb: 0.0 1187.54 1446.15 +imu_odom_: 1691062541.383989817 0.792481 0.11971 9.77792 -0.0511327 0.0245011 0.0777643 0.11 0.02 pose: 0.0 -4.5737 -3.12631 0 0.000122093 0.00155381 0.748065 0.663624 uwb: 0.50128853 1185.13 1446.95 +imu_odom_: 1691062541.402254469 0.433351 -0.143652 9.66539 -0.0660464 0.00532632 0.0383495 0.06 0.02 pose: 0.42924425 -4.57784 -3.11721 0 0.00363988 0.000639206 0.748872 0.662704 uwb: 0.0 1185.13 1446.95 +imu_odom_: 1691062541.417991461 0.586579 -0.260968 9.991 -0.04048 -0.0298274 -0.00213053 0.06 0.02 pose: 0.0 -4.57784 -3.11721 0 0.00363988 0.000639206 0.748872 0.662704 uwb: 0.0 1185.13 1446.95 +imu_odom_: 1691062541.435105586 0.770933 -0.203507 9.81144 -0.0596548 -0.0394148 0.00958738 0.06 0.02 pose: 0.0 -4.57784 -3.11721 0 0.00363988 0.000639206 0.748872 0.662704 uwb: 0.50159475 1183.11 1447.6 +imu_odom_: 1691062541.452923443 0.94571 -0.306458 9.98382 -0.0532632 -0.00852212 0.0490022 0.04 0.02 pose: 0.8027441 -4.57784 -3.11721 0 0.00358797 0.00143662 0.748867 0.66271 uwb: 0.0 1183.11 1447.6 +imu_odom_: 1691062541.469921494 0.699107 -0.464475 9.75637 -0.0500674 0.00106526 0.0458064 0.04 0.02 pose: 0.0 -4.57784 -3.11721 0 0.00358797 0.00143662 0.748867 0.66271 uwb: 0.0 1183.11 1447.6 +imu_odom_: 1691062541.485929130 0.586579 -0.0167594 9.97424 -0.0415453 -0.00639159 0.0319579 0.04 0.02 pose: 0.50917161 -4.57784 -3.11721 0 0.00572142 -0.00137972 0.748498 0.66311 uwb: 0.49800173 1186.68 1446.28 +imu_odom_: 1691062541.503924888 0.533907 -0.0383072 9.75877 -0.056459 -0.00319579 0.0351537 0.04 0.05 pose: 0.0 -4.57784 -3.11721 0 0.00572142 -0.00137972 0.748498 0.66311 uwb: 0.0 1186.68 1446.28 +imu_odom_: 1691062541.527977172 0.579397 -0.28491 9.991 -0.0532632 -0.00639159 0.0383495 0.03 0.02 pose: 0.0 -4.57784 -3.11721 0 0.00572142 -0.00137972 0.748498 0.66311 uwb: 0.49925870 1187.47 1445.97 +imu_odom_: 1691062541.554032743 -0.670376 -0.282516 9.74919 -0.0511327 0.0916127 0.0607201 0.04 0.05 pose: 0.60990469 -4.57784 -3.11721 0 0.00838095 -0.00143429 0.748479 0.663104 uwb: 0.0 1187.47 1445.97 +imu_odom_: 1691062541.569914681 -1.38145 -0.263362 10.2232 -0.0532632 0.0138484 0.0649811 0.04 0.05 pose: 0.0 -4.57784 -3.11721 0 0.00838095 -0.00143429 0.748479 0.663104 uwb: 0.0 1187.47 1445.97 +imu_odom_: 1691062541.595080161 -0.213084 -0.117316 10.2185 -0.0553937 -0.0820254 0.0607201 0.04 0.05 pose: 0.31078518 -4.57784 -3.11721 0 0.0064198 -0.00287513 0.748539 0.663053 uwb: 0.50013363 1191.03 1444.64 +imu_odom_: 1691062541.619998329 0.332794 -0.0383072 9.89284 -0.056459 -0.0415453 0.04048 0.09 0 pose: 0.41963757 -4.582 -3.10811 0 0.00261609 0.000322976 0.748868 0.662713 uwb: 0.0 1191.03 1444.64 +imu_odom_: 1691062541.645008948 -0.0143652 -0.294487 9.87369 -0.0703074 -0.0106526 0.0713727 0.09 0 pose: 0.43031166 -4.57291 -3.10395 0 0.00266302 0.00331256 0.748992 0.662566 uwb: 0.49931411 1188.37 1445.95 +imu_odom_: 1691062541.669082521 0.263362 -0.0814029 10.1754 -0.052198 -0.0532632 0.0394148 0.09 0 pose: 0.0 -4.57291 -3.10395 0 0.00266302 0.00331256 0.748992 0.662566 uwb: 0.0 1188.37 1445.95 +imu_odom_: 1691062541.686191105 0.438139 -0.225055 9.75637 -0.056459 -0.052198 0.0575243 0.11 0 pose: 0.7012819 -4.57291 -3.10395 0 0.0019859 0.00349853 0.749064 0.662485 uwb: 0.50266217 1190.61 1444.72 +imu_odom_: 1691062541.711059402 0.574608 -0.45011 10.4028 -0.0543285 0.0266316 0.0308927 0.11 0 pose: 0.0 -4.57291 -3.10395 0 0.0019859 0.00349853 0.749064 0.662485 uwb: 0.0 1190.61 1444.72 +imu_odom_: 1691062541.727912508 0.383072 -0.280122 10.3477 -0.0639159 0.00532632 0.0468716 0.12 -0.02 pose: 0.49122397 -4.57708 -3.09486 0 0.000455695 0.00516429 0.749283 0.66223 uwb: 0.49854709 1193.39 1443.69 +imu_odom_: 1691062541.751896255 -0.00957681-0.294487 10.2639 -0.0692422 -0.0213053 0.0532632 0.12 -0.02 pose: 0.0 -4.57708 -3.09486 0 0.000455695 0.00516429 0.749283 0.66223 uwb: 0.0 1193.39 1443.69 +imu_odom_: 1691062541.777958534 0.481235 -0.304064 9.91678 -0.0671117 -0.00532632 0.036219 0.16 -0.02 pose: 0.41933427 -4.57708 -3.09486 0 -0.0003312410.00125693 0.749298 0.662232 uwb: 0.50004905 1189.39 1445.06 +imu_odom_: 1691062541.801020111 0.296881 -0.301669 10.161 -0.056459 0 0.0330232 0.16 -0.02 pose: 0.0 -4.57708 -3.09486 0 -0.0003312410.00125693 0.749298 0.662232 uwb: 0.0 1189.39 1445.06 +imu_odom_: 1691062541.825950528 0.1652 -0.213084 9.77792 -0.0607201 0.00852212 0.0500674 0.13 0 pose: 0.41913011 -4.58125 -3.08577 0 -0.0027793 0.000685171 0.749417 0.662092 uwb: 0.49922371 1192.9 1443.6 +imu_odom_: 1691062541.850900193 0.45011 0.124498 9.82341 -0.056459 -0.0692422 0.0415453 0.13 0 pose: 0.0 -4.58125 -3.08577 0 -0.0027793 0.000685171 0.749417 0.662092 uwb: 0.0 1192.9 1443.6 +imu_odom_: 1691062541.868017526 0.603339 0.0023942 9.89045 -0.0639159 -0.00213053 0.0553937 0.14 0 pose: 0.48994950 -4.58125 -3.08577 0 -0.00487142 0.000297814 0.749371 0.662132 uwb: 0.0 1192.9 1443.6 +imu_odom_: 1691062541.893004813 0.3304 -0.366313 10.2304 -0.0820254 0.0319579 0.04048 0.14 0 pose: 0.0 -4.58125 -3.08577 0 -0.00487142 0.000297814 0.749371 0.662132 uwb: 0.50063525 1195.54 1442.24 +imu_odom_: 1691062541.917885359 0.167594 -0.409408 9.97664 -0.0394148 -0.0330232 0.0213053 0.18 -0.02 pose: 0.49053278 -4.57635 -3.07251 0 -0.00228394 0.00234942 0.749502 0.661993 uwb: 0.0 1195.54 1442.24 +imu_odom_: 1691062541.933877538 0.407014 -0.227449 10.2783 -0.0415453 -0.0138484 0.0447411 0.18 -0.02 pose: 0.0 -4.57635 -3.07251 0 -0.00228394 0.00234942 0.749502 0.661993 uwb: 0.50006072 1196.71 1441.77 +imu_odom_: 1691062541.958878533 0.794875 -0.0095768110.4603 -0.0415453 -0.0458064 0.0330232 0.22 0 pose: 0.75849327 -4.58053 -3.06342 0 -0.00415904 0.0002635 0.749433 0.662068 uwb: 0.0 1196.71 1441.77 +imu_odom_: 1691062541.980942694 0.335188 -0.0814029 9.23204 -0.0575243 -0.02024 0.056459 0.22 0 pose: 0.0 -4.58053 -3.06342 0 -0.00415904 0.0002635 0.749433 0.662068 uwb: 0.49991198 1197.5 1441.44 +imu_odom_: 1691062542.5927649 0.129287 -0.337582 9.6223 -0.0426106 -0.00106526 0.0308927 0.16 0 pose: 0.7002903 -4.58053 -3.06342 0 -0.00333341 5.57288e-05 0.74942 0.662087 uwb: 0.0 1197.5 1441.44 +imu_odom_: 1691062542.30870320 0.00957681 -0.148441 9.95509 -0.0266316 -0.0117179 0.0468716 0.19 0 pose: 0.48056155 -4.58471 -3.05434 0 -0.00105494 0.00166562 0.749484 0.66202 uwb: 0.49913334 1197.98 1441.48 +imu_odom_: 1691062542.44877005 0.237026 -0.414197 9.65103 -0.0223706 -0.00213053 0.0458064 0.19 0 pose: 0.0 -4.58471 -3.05434 0 -0.00105494 0.00166562 0.749484 0.66202 uwb: 0.0 1197.98 1441.48 +imu_odom_: 1691062542.68874756 0.608127 -0.009576819.71088 -0.0458064 0.0191748 0.0468716 0.19 0 pose: 0.0 -4.58471 -3.05434 0 -0.00105494 0.00166562 0.749484 0.66202 uwb: 0.0 1197.98 1441.48 +imu_odom_: 1691062542.92874842 0.347159 -0.272939 10.1538 -0.0628506 -0.0436758 0.072438 0.15 -0.02 pose: 0.63946853 -4.58889 -3.04525 0 -0.00411874 0.00372722 0.749528 0.66195 uwb: 0.49956796 1198.83 1441.33 +imu_odom_: 1691062542.106882693 0.184354 -0.270545 9.68455 -0.0479369 -0.0543285 0.0436758 0.15 -0.02 pose: 0.0 -4.58889 -3.04525 0 -0.00411874 0.00372722 0.749528 0.66195 uwb: 0.0 1198.83 1441.33 +imu_odom_: 1691062542.122971700 0.636858 -0.117316 10.0126 -0.0596548 -0.0543285 0.0383495 0.17 0 pose: 0.53999244 -4.58399 -3.03199 0 -0.00402587 0.00155143 0.749848 0.661596 uwb: 0.0 1198.83 1441.33 +imu_odom_: 1691062542.147863334 0.536301 -0.138864 10.0604 -0.052198 -0.0351537 0.0692422 0.17 0 pose: 0.0 -4.58399 -3.03199 0 -0.00402587 0.00155143 0.749848 0.661596 uwb: 0.50062953 1198.38 1441.35 +imu_odom_: 1691062542.170024617 0.131681 -0.105345 9.94791 -0.04048 0.0223706 0.0447411 0.17 0 pose: 0.8066814 -4.58399 -3.03199 0 -0.00312361 0.00113657 0.749848 0.661601 uwb: 0.0 1198.38 1441.35 +imu_odom_: 1691062542.197013448 0.277727 -0.0430956 10.0652 -0.0713727 -0.0117179 0.0607201 0.17 0 pose: 0.0 -4.58399 -3.03199 0 -0.00312361 0.00113657 0.749848 0.661601 uwb: 0.50117198 1193.63 1443.13 +imu_odom_: 1691062542.221007701 -0.0550666 -0.316035 9.38766 -0.0617853 0.00745685 0.04048 0.23 0.02 pose: 0.64216625 -4.58819 -3.02291 0 -0.0004997070.00302215 0.750193 0.661212 uwb: 0.0 1193.63 1443.13 +imu_odom_: 1691062542.235018176 0.134075 0.105345 10.0796 -0.0639159 -0.00213053 0.0553937 0.23 0.02 pose: 0.0 -4.58819 -3.02291 0 -0.0004997070.00302215 0.750193 0.661212 uwb: 0.49868137 1192.43 1443.54 +imu_odom_: 1691062542.251024941 0.715866 -0.416591 9.74679 -0.0713727 -0.0138484 0.0394148 0.18 0 pose: 0.55852044 -4.59239 -3.01384 0 -0.00240532 0.00678694 0.75038 0.660967 uwb: 0.0 1192.43 1443.54 +imu_odom_: 1691062542.277874367 0.56982 -0.383072 9.60793 -0.0511327 0.0319579 0.0436758 0.18 0 pose: 0.7901162 -4.59239 -3.01384 0 -0.0021904 0.00595785 0.750384 0.660971 uwb: 0.49915382 1189.29 1444.79 +imu_odom_: 1691062542.301848204 0.347159 -0.378284 9.64384 -0.056459 0.0213053 0.0426106 0.17 -0.02 pose: 0.34955029 -4.58628 -3.00326 0 -0.00188929 0.00281394 0.750429 0.660942 uwb: 0.0 1189.29 1444.79 +imu_odom_: 1691062542.319850674 0.0909797 0.0023942 10.0245 -0.0447411 -0.00639159 0.0319579 0.17 -0.02 pose: 0.0 -4.58628 -3.00326 0 -0.00188929 0.00281394 0.750429 0.660942 uwb: 0.0 1189.29 1444.79 +imu_odom_: 1691062542.343927169 0.411803 -0.25618 9.87369 -0.0479369 -0.0308927 0.0468716 0.19 0 pose: 0.41976307 -4.58983 -2.99559 0 -0.00366582 0.00301024 0.750403 0.660963 uwb: 0.50013374 1190.25 1444.87 +imu_odom_: 1691062542.369855882 0.371101 -0.0981623 9.84496 -0.0500674 -0.0138484 0.0319579 0.19 0 pose: 0.0 -4.58983 -2.99559 0 -0.00366582 0.00301024 0.750403 0.660963 uwb: 0.0 1190.25 1444.87 +imu_odom_: 1691062542.395011744 0.354342 -0.342371 9.75637 -0.0703074 0.0372843 0.0490022 0.18 -0.02 pose: 0.50005208 -4.59174 -2.99149 0 -0.0002433150.00251757 0.750402 0.660977 uwb: 0.50106699 1187.45 1445.85 +imu_odom_: 1691062542.412004550 0.316035 -0.304064 10.1849 -0.0383495 -0.015979 0.0372843 0.18 -0.02 pose: 0.0 -4.59174 -2.99149 0 -0.0002433150.00251757 0.750402 0.660977 uwb: 0.0 1187.45 1445.85 +imu_odom_: 1691062542.428845701 0.684742 0.0574608 10.2615 -0.0585895 -0.0149137 0.0500674 0.18 0 pose: 0.42148668 -4.59594 -2.98242 0 -0.00397966 0.000382958 0.750459 0.660905 uwb: 0.50144321 1189.42 1445.07 +imu_odom_: 1691062542.453844660 1.0343 -0.318429 10.2041 -0.0426106 -0.0394148 0.0415453 0.18 0 pose: 0.8058356 -4.59594 -2.98242 0 -0.00314966 0.000362604 0.75049 0.660874 uwb: 0.0 1189.42 1445.07 +imu_odom_: 1691062542.477846495 0.452504 -0.102951 9.9503 -0.0340885 0.00852212 0.0500674 0.18 0 pose: 0.33781754 -4.59258 -2.97323 0 -0.000137332-0.00169373 0.750537 0.660826 uwb: 0.49773353 1186.15 1446.02 +imu_odom_: 1691062542.503843743 0.19393 -0.136469 9.5792 -0.0372843 0.0138484 0.0372843 0.18 0 pose: 0.0 -4.59258 -2.97323 0 -0.000137332-0.00169373 0.750537 0.660826 uwb: 0.0 1186.15 1446.02 +imu_odom_: 1691062542.528847660 0.122104 -0.208296 10.2208 -0.0426106 0.0255663 0.0436758 0.17 0.02 pose: 0.8002945 -4.59108 -2.96914 0 0.000523718 -0.00111748 0.750565 0.660796 uwb: 0.49946297 1185.68 1446.01 +imu_odom_: 1691062542.546838756 0.469264 -0.268151 10.0054 -0.0628506 -0.036219 0.0426106 0.17 0.02 pose: 0.0 -4.59108 -2.96914 0 0.000523718 -0.00111748 0.750565 0.660796 uwb: 0.0 1185.68 1446.01 +imu_odom_: 1691062542.570977954 0.253785 -0.208296 10.3046 -0.0468716 -0.00852212 0.056459 0.2 0.02 pose: 0.51027704 -4.59529 -2.96007 0 -0.0005052150.00310999 0.750605 0.660744 uwb: 0.0 1185.68 1446.01 +imu_odom_: 1691062542.595969330 0.462081 0.0335188 10.2448 -0.0298274 -0.0223706 0.0319579 0.2 0.02 pose: 0.24016125 -4.59529 -2.96007 0 -0.00163118 0.00334653 0.750631 0.660712 uwb: 0.50053037 1182.07 1447.21 +imu_odom_: 1691062542.618827637 0.28491 -0.3304 9.87848 -0.0713727 -0.00639159 0.0532632 0.23 -0.02 pose: 0.40977434 -4.59951 -2.951 0 -0.00234296 0.00388474 0.750754 0.660566 uwb: 0.0 1182.07 1447.21 +imu_odom_: 1691062542.635824525 0.268151 -0.0981623 9.92875 -0.076699 -0.0234358 0.0447411 0.23 -0.02 pose: 0.0 -4.59951 -2.951 0 -0.00234296 0.00388474 0.750754 0.660566 uwb: 0.49943380 1183.51 1446.27 +imu_odom_: 1691062542.657839987 0.344765 -0.100556 10.2759 -0.0639159 -0.0436758 0.0543285 0.18 0 pose: 0.48976296 -4.59466 -2.93771 0 -0.00222845 0.00376506 0.750827 0.660485 uwb: 0.0 1183.51 1446.27 +imu_odom_: 1691062542.682812990 0.818817 -0.294487 9.94073 -0.0553937 -0.00532632 0.036219 0.18 0 pose: 0.0 -4.59466 -2.93771 0 -0.00222845 0.00376506 0.750827 0.660485 uwb: 0.50132947 1182.35 1446.77 +imu_odom_: 1691062542.707828572 0.682347 -0.229843 10.41 -0.0681769 0.0138484 0.0543285 0.2 0 pose: 0.37998311 -4.59887 -2.92865 0 0.000579179 0.00444513 0.750951 0.660342 uwb: 0.0 1182.35 1446.77 +imu_odom_: 1691062542.720930000 0.687136 -0.126893 9.83538 -0.0639159 -0.02024 0.0543285 0.2 0 pose: 0.0 -4.59887 -2.92865 0 0.000579179 0.00444513 0.750951 0.660342 uwb: 0.0 1182.35 1446.77 +imu_odom_: 1691062542.744825386 0.550666 -0.258574 9.58638 -0.0596548 0.0245011 0.0532632 0.18 -0.02 pose: 0.48976588 -4.59887 -2.92865 0 0.00313096 0.000461168 0.751095 0.660186 uwb: 0.49845971 1180.27 1447.26 +imu_odom_: 1691062542.768803014 0.500388 0.0023942 9.99579 -0.0490022 -0.00106526 0.0458064 0.18 -0.02 pose: 0.0 -4.59887 -2.92865 0 0.00313096 0.000461168 0.751095 0.660186 uwb: 0.0 1180.27 1447.26 +imu_odom_: 1691062542.785804861 0.457293 -0.35913 9.87608 -0.056459 -0.0436758 0.0596548 0.23 0.02 pose: 0.39128715 -4.6031 -2.91958 0 0.00424538 -0.00157484 0.751256 0.659996 uwb: 0.50050413 1181.8 1446.56 +imu_odom_: 1691062542.810805861 0.6608 0.0311246 9.87848 -0.0532632 -0.0490022 0.04048 0.23 0.02 pose: 0.0 -4.6031 -2.91958 0 0.00424538 -0.00157484 0.751256 0.659996 uwb: 0.0 1181.8 1446.56 +imu_odom_: 1691062542.835817651 0.548272 -0.148441 10.4339 -0.052198 -0.0394148 0.0511327 0.18 0 pose: 0.40923772 -4.59827 -2.90629 0 0.00527727 -0.00171122 0.751397 0.659827 uwb: 0.49831098 1177.41 1448.07 +imu_odom_: 1691062542.860828276 0.306458 -0.0742203 10.3837 -0.0468716 -0.0340885 0.0319579 0.19 0 pose: 0.41945101 -4.60126 -2.89988 0 0.00825731 -0.00432317 0.751483 0.659686 uwb: 0.0 1177.41 1448.07 +imu_odom_: 1691062542.885867481 1.09654 -0.153229 9.96946 -0.0671117 -0.0234358 0.0458064 0.19 0 pose: 0.0 -4.60126 -2.89988 0 0.00825731 -0.00432317 0.751483 0.659686 uwb: 0.50232980 1172.65 1449.75 +imu_odom_: 1691062542.901865496 0.6608 0.0646434 9.94791 -0.056459 -0.0234358 0.0479369 0.18 0.02 pose: 0.6996489 -4.6025 -2.89723 0 0.00800415 -0.00376317 0.751467 0.659712 uwb: 0.0 1172.65 1449.75 +imu_odom_: 1691062542.927814332 0.550666 -0.28491 9.37809 -0.0703074 -0.0383495 0.052198 0.18 0.02 pose: 0.0 -4.6025 -2.89723 0 0.00800415 -0.00376317 0.751467 0.659712 uwb: 0.49975461 1171.3 1449.74 +imu_odom_: 1691062542.952925281 0.332794 -0.198719 10.1394 -0.0468716 -0.0266316 0.0351537 0.19 0 pose: 0.49032582 -4.6025 -2.89723 0 0.00986618 -0.00396456 0.751471 0.65968 uwb: 0.0 1171.3 1449.74 +imu_odom_: 1691062542.976839331 0.383072 -0.414197 10.3884 -0.0596548 -0.0127832 0.052198 0.19 0 pose: 0.0 -4.6025 -2.89723 0 0.00986618 -0.00396456 0.751471 0.65968 uwb: 0.50005791 1168.87 1450.46 +imu_odom_: 1691062542.993909714 1.03908 -0.222661 9.58878 -0.0426106 -0.00426106 0.0340885 0.25 0 pose: 0.44026841 -4.60674 -2.88817 0 0.00823506 -0.00487004 0.751609 0.65954 uwb: 0.0 1168.87 1450.46 +imu_odom_: 1691062543.17837476 0.667982 -0.253785 10.4124 -0.0436758 -0.00106526 0.04048 0.25 0 pose: 0.0 -4.60674 -2.88817 0 0.00823506 -0.00487004 0.751609 0.65954 uwb: 0.0 1168.87 1450.46 +imu_odom_: 1691062543.42853355 0.536301 -0.0981623 9.8665 -0.0436758 -0.0149137 0.0468716 0.23 0 pose: 0.48931091 -4.60192 -2.87488 0 0.00538451 -0.00496592 0.75169 0.659476 uwb: 0.50008130 1166.85 1451.06 +imu_odom_: 1691062543.56904955 0.45011 -0.366313 9.76116 -0.0575243 -0.00213053 0.0585895 0.23 0 pose: 0.0 -4.60192 -2.87488 0 0.00538451 -0.00496592 0.75169 0.659476 uwb: 0.0 1166.85 1451.06 +imu_odom_: 1691062543.81775889 0.572214 -0.215478 9.80186 -0.0596548 -0.00532632 0.0426106 0.18 0 pose: 0.41162049 -4.60617 -2.86582 0 0.00753465 -0.00671669 0.751683 0.659447 uwb: 0.49871647 1168.33 1450.21 +imu_odom_: 1691062543.106791185 0.514753 -0.122104 10.2161 -0.0596548 0.00426106 0.0553937 0.18 0 pose: 0.0 -4.60617 -2.86582 0 0.00753465 -0.00671669 0.751683 0.659447 uwb: 0.0 1168.33 1450.21 +imu_odom_: 1691062543.119910114 0.612916 -0.447716 9.4164 -0.0553937 -0.0308927 0.0383495 0.18 0 pose: 0.38840582 -4.61041 -2.85677 0 0.00642542 -0.00613159 0.751829 0.659298 uwb: 0.0 1168.33 1450.21 +imu_odom_: 1691062543.135910466 0.529119 -0.21069 9.96467 -0.0553937 0.0213053 0.0490022 0.18 0 pose: 0.0 -4.61041 -2.85677 0 0.00642542 -0.00613159 0.751829 0.659298 uwb: 0.50139958 1165.95 1451.04 +imu_odom_: 1691062543.161957008 0.361524 -0.373495 9.9527 -0.0617853 0.00426106 0.0468716 0.25 -0.02 pose: 0.48115671 -4.61041 -2.85677 0 0.00598778 -0.00589366 0.751977 0.659136 uwb: 0.0 1165.95 1451.04 +imu_odom_: 1691062543.185768989 0.6608 -0.323217 9.4164 -0.0660464 0.0191748 0.0607201 0.25 -0.02 pose: 0.0 -4.61041 -2.85677 0 0.00598778 -0.00589366 0.751977 0.659136 uwb: 0.49892353 1169.6 1450.01 +imu_odom_: 1691062543.211806782 0.701501 -0.390255 9.71567 -0.0532632 -0.00639159 0.0415453 0.21 0 pose: 0.30856301 -4.60561 -2.84347 0 0.00426968 -0.00489711 0.752056 0.659067 uwb: 0.0 1169.6 1450.01 +imu_odom_: 1691062543.224897422 -0.0335188 -0.201113 9.53132 -0.0298274 0.00639159 0.0415453 0.21 0 pose: 0.0 -4.60561 -2.84347 0 0.00426968 -0.00489711 0.752056 0.659067 uwb: 0.0 1169.6 1450.01 +imu_odom_: 1691062543.248782022 0.129287 -0.270545 9.87369 -0.0426106 0.052198 0.0511327 0.18 0 pose: 0.50004928 -4.60986 -2.83442 0 0.00330926 -0.00768566 0.752265 0.658807 uwb: 0.50085129 1169.2 1450.16 +imu_odom_: 1691062543.271780906 0.529119 -0.1652 9.84256 -0.0543285 0.0276969 0.0532632 0.18 0 pose: 0.0 -4.60986 -2.83442 0 0.00330926 -0.00768566 0.752265 0.658807 uwb: 0.0 1169.2 1450.16 +imu_odom_: 1691062543.295778080 0.517148 -0.0742203 9.75158 -0.0649811 -0.00639159 0.0628506 0.25 0.02 pose: 0.38997485 -4.61412 -2.82537 0 0.00230584 -0.00750824 0.752325 0.658745 uwb: 0.49806320 1167.96 1450.42 +imu_odom_: 1691062543.312782847 0.869095 -0.289698 9.64863 -0.0607201 -0.00958738 0.0532632 0.25 0.02 pose: 0.0 -4.61412 -2.82537 0 0.00230584 -0.00750824 0.752325 0.658745 uwb: 0.0 1167.96 1450.42 +imu_odom_: 1691062543.337778019 0.85473 -0.347159 9.69173 -0.0553937 0.0191748 0.0372843 0.18 -0.02 pose: 0.47013848 -4.61838 -2.81632 0 0.00313377 -0.00400069 0.752556 0.658509 uwb: 0.50077546 1167.02 1450.3 +imu_odom_: 1691062543.362761235 0.328006 -0.114922 9.45231 -0.0458064 -0.00852212 0.0468716 0.18 -0.02 pose: 0.0 -4.61838 -2.81632 0 0.00313377 -0.00400069 0.752556 0.658509 uwb: 0.0 1167.02 1450.3 +imu_odom_: 1691062543.385888149 0.289698 -0.0981623 9.90242 -0.0532632 0.00106526 0.0383495 0.19 0 pose: 0.41004274 -4.60934 -2.81206 0 0.00555391 -0.00509916 0.752735 0.658281 uwb: 0.49978971 1168.55 1449.6 +imu_odom_: 1691062543.409766333 0.301669 0.0909797 10.1275 -0.04048 -0.0351537 0.0458064 0.19 0 pose: 0.0 -4.60934 -2.81206 0 0.00555391 -0.00509916 0.752735 0.658281 uwb: 0.0 1168.55 1449.6 +imu_odom_: 1691062543.433990988 0.407014 -0.215478 10.556 -0.0532632 0.00213053 0.0319579 0.23 -0.02 pose: 0.48979223 -4.61361 -2.80301 0 0.00497435 -0.00348788 0.752784 0.658239 uwb: 0.50120710 1164.07 1450.78 +imu_odom_: 1691062543.450784022 0.248997 -0.177171 9.37809 -0.0596548 0.00106526 0.0340885 0.23 -0.02 pose: 0.0 -4.61361 -2.80301 0 0.00497435 -0.00348788 0.752784 0.658239 uwb: 0.0 1164.07 1450.78 +imu_odom_: 1691062543.475766946 0.0790087 -0.37589 9.59117 -0.0713727 0.0170442 0.0543285 0.18 0.02 pose: 0.48057342 -4.61788 -2.79397 0 0.00413271 0.000235079 0.752804 0.658232 uwb: 0.50008719 1166.14 1450.34 +imu_odom_: 1691062543.500820156 0.296881 -0.0263362 9.63187 -0.0372843 -0.0117179 0.0468716 0.18 0.02 pose: 0.0 -4.61788 -2.79397 0 0.00413271 0.000235079 0.752804 0.658232 uwb: 0.0 1166.14 1450.34 +imu_odom_: 1691062543.516819633 0.964863 -0.232238 10.386 -0.0617853 -0.0308927 0.056459 0.18 0.02 pose: 0.40990275 -4.62215 -2.78493 0 0.000307036 0.00142995 0.752775 0.658276 uwb: 0.0 1166.14 1450.34 +imu_odom_: 1691062543.540757312 0.476446 -0.292093 10.0509 -0.0468716 -0.0106526 0.036219 0.18 0.02 pose: 0.0 -4.62215 -2.78493 0 0.000307036 0.00142995 0.752775 0.658276 uwb: 0.49936391 1164.46 1450.61 +imu_odom_: 1691062543.564747194 0.457293 -0.174777 10.137 -0.052198 0.0117179 0.056459 0.25 0 pose: 0.49032302 -4.61739 -2.77162 0 0.000121864 0.00356949 0.752956 0.658062 uwb: 0.0 1164.46 1450.61 +imu_odom_: 1691062543.589834526 0.289698 -0.0622492 10.0796 -0.0308927 0.015979 0.0532632 0.25 0 pose: 0.0 -4.61739 -2.77162 0 0.000121864 0.00356949 0.752956 0.658062 uwb: 0.50051299 1164.46 1450.61 +imu_odom_: 1691062543.605900206 0.567426 -0.246603 9.6199 -0.0511327 -0.0223706 0.0447411 0.19 0 pose: 0.81975592 -4.62167 -2.76258 0 0.00238965 0.00279386 0.753224 0.657754 uwb: 0.0 1164.46 1450.61 +imu_odom_: 1691062543.628758226 0.0861913 -0.325611 8.98065 -0.0596548 0.0319579 0.0458064 0.19 0 pose: 0.0 -4.62167 -2.76258 0 0.00238965 0.00279386 0.753224 0.657754 uwb: 0.49891770 1162.12 1451.56 +imu_odom_: 1691062543.645886941 0.373495 -0.217872 10.2544 -0.0543285 -0.00958738 0.0553937 0.19 -0.02 pose: 0.7022155 -4.62167 -2.76258 0 0.00265491 0.00209223 0.753238 0.65774 uwb: 0.0 1162.12 1451.56 +imu_odom_: 1691062543.670905153 0.672771 0.0981623 10.1682 -0.0447411 -0.0170442 0.0447411 0.19 -0.02 pose: 0.0 -4.62167 -2.76258 0 0.00265491 0.00209223 0.753238 0.65774 uwb: 0.0 1162.12 1451.56 +imu_odom_: 1691062543.687769932 0.512359 -0.275333 9.37809 -0.0894822 0.0138484 0.0639159 0.19 0 pose: 0.39920240 -4.62595 -2.75354 0 -0.0001772840.00156563 0.753344 0.657625 uwb: 0.49899353 1164.45 1450.61 +imu_odom_: 1691062543.703790407 0.143652 0.0502782 10.319 -0.052198 -0.0191748 0.0511327 0.19 0 pose: 0.0 -4.62595 -2.75354 0 -0.0001772840.00156563 0.753344 0.657625 uwb: 0.0 1164.45 1450.61 +imu_odom_: 1691062543.728890862 0.342371 -0.263362 10.1754 -0.0671117 -0.0372843 0.0607201 0.18 0 pose: 0.40966653 -4.6212 -2.74022 0 0.00172887 0.000502724 0.75349 0.657457 uwb: 0.50125667 1162.82 1451.03 +imu_odom_: 1691062543.752729675 0.624887 -0.229843 10.0796 -0.0511327 -0.0351537 0.0447411 0.18 0 pose: 0.0 -4.6212 -2.74022 0 0.00172887 0.000502724 0.75349 0.657457 uwb: 0.0 1162.82 1451.03 +imu_odom_: 1691062543.769730359 0.45011 0.0167594 9.97664 -0.056459 -0.00319579 0.056459 0.18 0 pose: 0.0 -4.6212 -2.74022 0 0.00172887 0.000502724 0.75349 0.657457 uwb: 0.0 1162.82 1451.03 +imu_odom_: 1691062543.793733365 0.447716 -0.0646434 10.0078 -0.0585895 -0.0181095 0.052198 0.25 0 pose: 0.34181310 -4.6212 -2.74022 0 0.000757268 0.000715409 0.753687 0.657233 uwb: 0.49923560 1160 1451.84 +imu_odom_: 1691062543.816745956 0.407014 -0.248997 9.37569 -0.0713727 0.0117179 0.0553937 0.23 0 pose: 0.81808481 -4.62971 -2.72212 0 0.00414674 0.00124505 0.754025 0.656831 uwb: 0.0 1160 1451.84 +imu_odom_: 1691062543.839802002 0.605733 -0.177171 10.0102 -0.0436758 -0.0426106 0.0500674 0.23 0 pose: 0.0 -4.62971 -2.72212 0 0.00414674 0.00124505 0.754025 0.656831 uwb: 0.50260114 1158 1452.42 +imu_odom_: 1691062543.866885039 0.229843 -0.416591 9.96706 -0.0500674 0.015979 0.0447411 0.25 0 pose: 0.7129771 -4.62971 -2.72212 0 0.00343733 0.000903024 0.754065 0.65679 uwb: 0.0 1158 1452.42 +imu_odom_: 1691062543.882873142 0.663194 0.0790087 9.81862 -0.0511327 -0.0511327 0.0415453 0.25 0 pose: 0.0 -4.62971 -2.72212 0 0.00343733 0.000903024 0.754065 0.65679 uwb: 0.49792612 1161.56 1451.16 +imu_odom_: 1691062543.907937434 0.440533 -0.146046 10.1945 -0.0511327 -0.0181095 0.0532632 0.23 -0.02 pose: 0.47106881 -4.62486 -2.70884 0 0.0032468 -0.00140389 0.754244 0.656585 uwb: 0.0 1161.56 1451.16 +imu_odom_: 1691062543.930723710 0.385466 -0.0335188 9.63427 -0.0426106 -0.0298274 0.0330232 0.23 -0.02 pose: 0.0 -4.62486 -2.70884 0 0.0032468 -0.00140389 0.754244 0.656585 uwb: 0.50114585 1160.41 1451.69 +imu_odom_: 1691062543.943761563 0.390255 -0.177171 10.2328 -0.0308927 -0.0149137 0.0426106 0.18 -0.02 pose: 0.42868158 -4.62911 -2.69979 0 0.00332552 -0.0004335830.754322 0.656496 uwb: 0.0 1160.41 1451.69 +imu_odom_: 1691062543.967772736 0.351948 -0.129287 9.94073 -0.0447411 -0.00426106 0.0458064 0.18 -0.02 pose: 0.45888985 -4.63342 -2.69077 0 0.00419662 0.0031342 0.75434 0.656464 uwb: 0.0 1160.41 1451.69 +imu_odom_: 1691062543.984865870 0.457293 -0.260968 9.74919 -0.0660464 0.00532632 0.0490022 0.18 -0.02 pose: 0.0 -4.63342 -2.69077 0 0.00419662 0.0031342 0.75434 0.656464 uwb: 0.49890604 1159.63 1452 +imu_odom_: 1691062544.9731265 0.0933739 -0.21069 9.68694 -0.0596548 0.015979 0.0458064 0.27 0.02 pose: 0.39001277 -4.63342 -2.69077 0 0.00160998 0.0036717 0.754417 0.656383 uwb: 0.0 1159.63 1452 +imu_odom_: 1691062544.33710070 0.545878 -0.167594 9.4571 -0.0490022 0.00319579 0.0479369 0.21 -0.02 pose: 0.34002828 -4.62872 -2.67743 0 -0.00095499 0.0041549 0.754492 0.656295 uwb: 0.50063261 1158.81 1452.21 +imu_odom_: 1691062544.56769912 0.366313 -0.311246 9.52892 -0.0468716 0.0181095 0.0458064 0.21 -0.02 pose: 0.0 -4.62872 -2.67743 0 -0.00095499 0.0041549 0.754492 0.656295 uwb: 0.0 1158.81 1452.21 +imu_odom_: 1691062544.82849415 0.31364 -0.380678 9.51695 -0.0532632 0.0287621 0.0447411 0.24 0 pose: 0.8157810 -4.62872 -2.67743 0 -0.0003439160.00365881 0.754518 0.65627 uwb: 0.49865826 1157.61 1452.56 +imu_odom_: 1691062544.97742114 -0.035913 -0.299275 10.0149 -0.0383495 0.0330232 0.0372843 0.24 0 pose: 0.0 -4.62872 -2.67743 0 -0.0003439160.00365881 0.754518 0.65627 uwb: 0.0 1157.61 1452.56 +imu_odom_: 1691062544.123741416 0.258574 -0.0047884 9.9527 -0.0330232 -0.00852212 0.0532632 0.21 0 pose: 0.46837123 -4.63304 -2.66841 0 -0.00175807 0.00106072 0.754625 0.656153 uwb: 0.0 1157.61 1452.56 +imu_odom_: 1691062544.146850837 0.0885855 -0.232238 9.75637 -0.036219 0.00639159 0.0319579 0.21 0 pose: 0.0 -4.63304 -2.66841 0 -0.00175807 0.00106072 0.754625 0.656153 uwb: 0.49989481 1155.24 1453.4 +imu_odom_: 1691062544.171973463 0.433351 -0.114922 9.75158 -0.0585895 -0.0276969 0.0532632 0.18 0 pose: 0.41297675 -4.63736 -2.65939 0 -0.00441424 0.00225915 0.754675 0.656079 uwb: 0.0 1155.24 1453.4 +imu_odom_: 1691062544.189708505 0.553061 -0.282516 9.79468 -0.0607201 0.0234358 0.0447411 0.18 0 pose: 0.0 -4.63736 -2.65939 0 -0.00441424 0.00225915 0.754675 0.656079 uwb: 0.50011063 1154.03 1453.74 +imu_odom_: 1691062544.213677687 0.402226 -0.0191536 9.92157 -0.0575243 0.02024 0.0543285 0.18 0 pose: 0.49911613 -4.63736 -2.65939 0 -0.00434046 0.00511726 0.754735 0.655996 uwb: 0.0 1154.03 1453.74 +imu_odom_: 1691062544.239711985 0.246603 -0.289698 10.0485 -0.0639159 0.0234358 0.0394148 0.18 0 pose: 0.0 -4.63736 -2.65939 0 -0.00434046 0.00511726 0.754735 0.655996 uwb: 0.49926195 1150.88 1454.89 +imu_odom_: 1691062544.262848529 0.521936 -0.102951 9.89524 -0.056459 0.0372843 0.0575243 0.19 0 pose: 0.41766926 -4.63267 -2.64605 0 -0.00144745 0.00353957 0.754893 0.655836 uwb: 0.0 1150.88 1454.89 +imu_odom_: 1691062544.279696688 0.280122 -0.213084 9.5816 -0.04048 0.00639159 0.0532632 0.19 0 pose: 0.0 -4.63267 -2.64605 0 -0.00144745 0.00353957 0.754893 0.655836 uwb: 0.50006689 1151.25 1454.67 +imu_odom_: 1691062544.292747959 0.620098 -0.160412 10.4459 -0.0436758 -0.00852212 0.0330232 0.18 0 pose: 0.49005190 -4.637 -2.63704 0 -0.00250461 0.00378778 0.755007 0.655701 uwb: 0.0 1151.25 1454.67 +imu_odom_: 1691062544.316745138 0.497994 -0.146046 10.3549 -0.0458064 -0.00213053 0.0607201 0.18 0 pose: 0.0 -4.637 -2.63704 0 -0.00250461 0.00378778 0.755007 0.655701 uwb: 0.0 1151.25 1454.67 +imu_odom_: 1691062544.341829559 0.502782 -0.0383072 10.5082 -0.0372843 -0.0138484 0.0415453 0.23 0 pose: 0.39031325 -4.64134 -2.62802 0 -0.00232988 0.00370213 0.755165 0.65552 uwb: 0.50043435 1148.81 1455.3 +imu_odom_: 1691062544.364804533 0.648829 -0.035913 10.3022 -0.0692422 -0.00532632 0.0575243 0.23 0 pose: 0.0 -4.64134 -2.62802 0 -0.00232988 0.00370213 0.755165 0.65552 uwb: 0.0 1148.81 1455.3 +imu_odom_: 1691062544.388670473 0.246603 -0.268151 9.50498 -0.0532632 -0.02024 0.0415453 0.19 0 pose: 0.39043573 -4.64134 -2.62802 0 0.00134872 0.0024346 0.755331 0.655338 uwb: 0.50018354 1146.03 1456.22 +imu_odom_: 1691062544.415880089 0.955286 -0.208296 9.64624 -0.0671117 -0.0117179 0.0372843 0.19 0 pose: 0.0 -4.64134 -2.62802 0 0.00134872 0.0024346 0.755331 0.655338 uwb: 0.0 1146.03 1456.22 +imu_odom_: 1691062544.433808782 0.31364 -0.0742203 9.71088 -0.0585895 -0.0170442 0.0415453 0.2 0.02 pose: 0.48078644 -4.63667 -2.61467 0 0.0045429 0.00186676 0.755482 0.655151 uwb: 0.50096806 1142.85 1457.23 +imu_odom_: 1691062544.456797171 0.502782 -0.316035 10.307 -0.0777643 -0.0330232 0.0500674 0.2 0.02 pose: 0.0 -4.63667 -2.61467 0 0.0045429 0.00186676 0.755482 0.655151 uwb: 0.0 1142.85 1457.23 +imu_odom_: 1691062544.482668442 0.773327 -0.265756 9.76595 -0.0479369 -0.036219 0.0447411 0.19 0 pose: 0.52128383 -4.64102 -2.60567 0 0.00458079 0.000571347 0.755479 0.655157 uwb: 0.49944277 1142.4 1457.2 +imu_odom_: 1691062544.505669372 1.26414 -0.0694318 10.2185 -0.0649811 -0.0117179 0.0351537 0.19 0 pose: 0.0 -4.64102 -2.60567 0 0.00458079 0.000571347 0.755479 0.655157 uwb: 0.0 1142.4 1457.2 +imu_odom_: 1691062544.523713847 0.366313 -0.153229 9.60554 -0.0511327 -0.00213053 0.036219 0.25 0 pose: 0.40811216 -4.64536 -2.59666 0 0.00403995 -0.00196826 0.755582 0.655039 uwb: 0.0 1142.4 1457.2 +imu_odom_: 1691062544.538706579 -0.0454898 -0.251391 9.97185 -0.0596548 -0.0138484 0.0575243 0.25 0 pose: 0.0 -4.64536 -2.59666 0 0.00403995 -0.00196826 0.755582 0.655039 uwb: 0.49933194 1139.65 1458.22 +imu_odom_: 1691062544.564651052 0.538695 -0.208296 10.1323 -0.0383495 -0.0117179 0.0383495 0.25 -0.02 pose: 0.47883243 -4.64969 -2.58765 0 0.00673349 -0.00415247 0.755552 0.655041 uwb: 0.0 1139.65 1458.22 +imu_odom_: 1691062544.586648733 0.380678 -0.126893 9.92875 -0.0649811 0.0319579 0.0575243 0.25 -0.02 pose: 0.0 -4.64969 -2.58765 0 0.00673349 -0.00415247 0.755552 0.655041 uwb: 0.50075516 1138.43 1458.54 +imu_odom_: 1691062544.599655967 -0.378284 -0.253785 9.73961 -0.0340885 0.0234358 0.0436758 0.18 0.02 pose: 0.33119450 -4.6449 -2.57434 0 0.00518169 -0.00331232 0.755635 0.654964 uwb: 0.0 1138.43 1458.54 +imu_odom_: 1691062544.622656605 -0.047884 -0.174777 9.78031 -0.0447411 0.00852212 0.0351537 0.18 0.02 pose: 0.45860705 -4.6449 -2.57434 0 0.00405604 -0.00229023 0.755771 0.654819 uwb: 0.0 1138.43 1458.54 +imu_odom_: 1691062544.647654408 0.445322 -0.31364 10.2568 -0.0511327 -0.0468716 0.0575243 0.25 0.02 pose: 0.29992464 -4.64917 -2.5653 0 0.00176706 1.86061e-05 0.755753 0.654855 uwb: 0.49962650 1136.03 1459.28 +imu_odom_: 1691062544.670707543 0.486023 -0.169988 10.0173 -0.0585895 -0.0351537 0.0575243 0.25 0.02 pose: 0.0 -4.64917 -2.5653 0 0.00176706 1.86061e-05 0.755753 0.654855 uwb: 0.0 1136.03 1459.28 +imu_odom_: 1691062544.696748257 0.112527 0.071826 10.659 -0.0500674 -0.0426106 0.0340885 0.18 -0.02 pose: 0.8129813 -4.64917 -2.5653 0 0.00145729 -0.0007577520.755801 0.654799 uwb: 0.49987440 1129.96 1460.82 +imu_odom_: 1691062544.722721311 0.577003 -0.181959 10.6805 -0.0628506 -0.0181095 0.0543285 0.18 -0.02 pose: 0.0 -4.64917 -2.5653 0 0.00145729 -0.0007577520.755801 0.654799 uwb: 0.0 1129.96 1460.82 +imu_odom_: 1691062544.738741498 0.682347 -0.167594 9.69891 -0.0458064 -0.00958738 0.04048 0.19 0.02 pose: 0.48878617 -4.65343 -2.55625 0 0.00318734 -0.00109123 0.756013 0.654548 uwb: 0.49938153 1129.66 1461.29 +imu_odom_: 1691062544.763648017 0.452504 -0.172383 9.42118 -0.0948085 -0.02024 0.0639159 0.19 0.02 pose: 0.0 -4.65343 -2.55625 0 0.00318734 -0.00109123 0.756013 0.654548 uwb: 0.0 1129.66 1461.29 +imu_odom_: 1691062544.786670529 0.0550666 -0.0383072 9.81383 -0.0809601 -0.0234358 0.0479369 0.18 0 pose: 0.50018354 -4.64866 -2.54294 0 0.00548441 -0.0021393 0.756102 0.654427 uwb: 0.50010480 1131.71 1460.86 +imu_odom_: 1691062544.802759835 0.526724 -0.225055 10.082 -0.0756338 -0.0127832 0.0468716 0.18 0 pose: 0.0 -4.64866 -2.54294 0 0.00548441 -0.0021393 0.756102 0.654427 uwb: 0.0 1131.71 1460.86 +imu_odom_: 1691062544.826688187 0.52433 -0.196325 10.2376 -0.0649811 -0.0383495 0.0383495 0.25 0 pose: 0.41083901 -4.64866 -2.54294 0 0.00391115 -0.0009528680.756323 0.654186 uwb: 0.49903738 1134.93 1459.95 +imu_odom_: 1691062544.851766191 0.651223 -0.251391 9.89524 -0.0692422 -0.00532632 0.0585895 0.25 0 pose: 0.0 -4.64866 -2.54294 0 0.00391115 -0.0009528680.756323 0.654186 uwb: 0.0 1134.93 1459.95 +imu_odom_: 1691062544.874642007 0.667982 -0.126893 9.80904 -0.0671117 -0.0117179 0.0479369 0.18 0 pose: 0.39927833 -4.65294 -2.5339 0 0.00409013 -0.00223851 0.756399 0.654094 uwb: 0.50043144 1132.84 1460.24 +imu_odom_: 1691062544.890696900 0.435745 -0.158017 9.90721 -0.0458064 0.0138484 0.0447411 0.18 0 pose: 0.0 -4.65294 -2.5339 0 0.00409013 -0.00223851 0.756399 0.654094 uwb: 0.0 1132.84 1460.24 +imu_odom_: 1691062544.906661675 0.536301 -0.0622492 10.0772 -0.076699 0.0181095 0.0415453 0.25 0 pose: 0.47968110 -4.65722 -2.52486 0 0.00705502 -0.00600306 0.756545 0.653876 uwb: 0.0 1132.84 1460.24 +imu_odom_: 1691062544.931633813 0.457293 -0.462081 9.52653 -0.0479369 0.052198 0.0543285 0.25 0 pose: 0.0 -4.65722 -2.52486 0 0.00705502 -0.00600306 0.756545 0.653876 uwb: 0.49920362 1128.88 1461.63 +imu_odom_: 1691062544.948619919 -0.186748 -0.536301 10.1083 -0.0468716 0.00745685 0.0351537 0.21 -0.02 pose: 0.39180937 -4.65247 -2.51154 0 0.00775328 -0.00391942 0.75661 0.653808 uwb: 0.0 1128.88 1461.63 +imu_odom_: 1691062544.972627889 -0.117316 -0.0550666 9.96467 -0.0543285 0.00958738 0.052198 0.21 -0.02 pose: 0.0 -4.65247 -2.51154 0 0.00775328 -0.00391942 0.75661 0.653808 uwb: 0.0 1128.88 1461.63 +imu_odom_: 1691062544.997646107 0.502782 -0.387861 9.61033 -0.0649811 0 0.036219 0.21 0 pose: 0.41795800 -4.65676 -2.50251 0 0.00455906 -0.00360064 0.756749 0.65368 uwb: 0.50064725 1128.39 1461.43 +imu_odom_: 1691062545.12662756 0.588974 -0.0287304 10.2424 -0.0458064 0.00426106 0.0213053 0.21 0 pose: 0.0 -4.65676 -2.50251 0 0.00455906 -0.00360064 0.756749 0.65368 uwb: 0.0 1128.39 1461.43 +imu_odom_: 1691062545.29643032 0.371101 -0.23942 9.77313 -0.0671117 -0.00745685 0.0436758 0.21 0 pose: 0.0 -4.65676 -2.50251 0 0.00455906 -0.00360064 0.756749 0.65368 uwb: 0.49984820 1130.82 1460.77 +imu_odom_: 1691062545.55634756 0.462081 -0.25618 9.43076 -0.0617853 -0.00213053 0.04048 0.18 -0.02 pose: 0.41141063 -4.65676 -2.50251 0 0.00182194 -0.0019516 0.756837 0.653598 uwb: 0.0 1130.82 1460.77 +imu_odom_: 1691062545.78639191 0.0933739 -0.220267 10.0748 -0.0735032 -0.0500674 0.0468716 0.23 0 pose: 0.74853723 -4.65772 -2.48411 0 0.000835912 -0.00469756 0.756755 0.653681 uwb: 0.50184310 1129.98 1460.88 +imu_odom_: 1691062545.102602837 0.325611 -0.411803 10.1394 -0.0511327 0.02024 0.0330232 0.23 0 pose: 0.0 -4.65772 -2.48411 0 0.000835912 -0.00469756 0.756755 0.653681 uwb: 0.0 1129.98 1460.88 +imu_odom_: 1691062545.125606397 0.486023 -0.316035 9.94312 -0.0639159 0.0245011 0.052198 0.26 -0.02 pose: 0.7139107 -4.65631 -2.48015 0 0.000447622 -0.0043156 0.756775 0.653661 uwb: 0.49866711 1132.35 1460.04 +imu_odom_: 1691062545.151671907 0.126893 -0.208296 10.2137 -0.036219 0.0500674 0.0308927 0.26 -0.02 pose: 0.0 -4.65631 -2.48015 0 0.000447622 -0.0043156 0.756775 0.653661 uwb: 0.0 1132.35 1460.04 +imu_odom_: 1691062545.165674226 0.304064 -0.225055 9.43794 -0.0426106 -0.0106526 0.0330232 0.18 -0.02 pose: 0.46912668 -4.66061 -2.47112 0 -0.00258933 -0.00409981 0.756794 0.653635 uwb: 0.0 1132.35 1460.04 +imu_odom_: 1691062545.189594709 0.605733 -0.0766145 9.50737 -0.036219 -0.0458064 0.0426106 0.18 -0.02 pose: 0.0 -4.66061 -2.47112 0 -0.00258933 -0.00409981 0.756794 0.653635 uwb: 0.50255762 1131.95 1460.15 +imu_odom_: 1691062545.206627189 0.512359 -0.0383072 9.8665 -0.052198 -0.0319579 0.0543285 0.25 0 pose: 0.48028783 -4.66061 -2.47112 0 -0.0034905 -0.00166139 0.756777 0.653662 uwb: 0.0 1131.95 1460.15 +imu_odom_: 1691062545.232895099 0.603339 0.117316 9.87608 -0.0585895 -0.0298274 0.0351537 0.25 0 pose: 0.0 -4.66061 -2.47112 0 -0.0034905 -0.00166139 0.756777 0.653662 uwb: 0.49720890 1133.13 1459.71 +imu_odom_: 1691062545.259767291 0.356736 -0.201113 9.98861 -0.0703074 -0.0181095 0.0511327 0.25 0 pose: 0.39910926 -4.66061 -2.47112 0 0.000179658 -0.0008662440.756829 0.653613 uwb: 0.0 1133.13 1459.71 +imu_odom_: 1691062545.275748401 0.979228 -0.23942 9.80426 -0.0585895 -0.0905475 0.0532632 0.25 0 pose: 0.0 -4.66061 -2.47112 0 0.000179658 -0.0008662440.756829 0.653613 uwb: 0.49979285 1134.42 1459.66 +imu_odom_: 1691062545.292744718 1.22104 -0.189142 9.72046 -0.0617853 0.00639159 0.106526 0.19 0.11 pose: 0.43153985 -4.65588 -2.45778 0 0.00306913 0.000282604 0.756857 0.653573 uwb: 0.0 1134.42 1459.66 +imu_odom_: 1691062545.310649500 0.751779 -0.428562 9.75637 -0.0660464 0.0170442 0.164051 0.19 0.11 pose: 0.0 -4.65588 -2.45778 0 0.00306913 0.000282604 0.756857 0.653573 uwb: 0.0 1134.42 1459.66 +imu_odom_: 1691062545.324578033 1.0343 -0.553061 9.39964 -0.0543285 0.00319579 0.204531 0.19 0.11 pose: 0.0 -4.65588 -2.45778 0 0.00306913 0.000282604 0.756857 0.653573 uwb: 0.49875168 1131.97 1460.24 +imu_odom_: 1691062545.341583682 1.18274 -0.19393 9.84975 -0.0607201 0.015979 0.308927 0.12 0.29 pose: 0.83797808 -4.66021 -2.44877 0 0.00448505 -0.00497572 0.758841 0.651241 uwb: 0.0 1131.97 1460.24 +imu_odom_: 1691062545.354578378 1.64482 -0.553061 9.75158 -0.0585895 0.0490022 0.373908 0.12 0.29 pose: 0.0 -4.66021 -2.44877 0 0.00448505 -0.00497572 0.758841 0.651241 uwb: 0.0 1131.97 1460.24 +imu_odom_: 1691062545.370633274 1.25217 -0.557849 9.92636 -0.0596548 -0.00106526 0.419714 0.12 0.29 pose: 0.0 -4.66021 -2.44877 0 0.00448505 -0.00497572 0.758841 0.651241 uwb: 0.0 1131.97 1460.24 +imu_odom_: 1691062545.387582345 0.991199 -0.174777 9.58399 -0.0319579 0.0181095 0.418649 0.14 0.55 pose: 0.8074986 -4.66026 -2.44879 0 0.00504648 -0.00543438 0.759544 0.650413 uwb: 0.50022448 1133.19 1459.92 +imu_odom_: 1691062545.403584745 0.677559 -0.0167594 9.84975 -0.0490022 0.015979 0.50387 0.14 0.55 pose: 0.0 -4.66026 -2.44879 0 0.00504648 -0.00543438 0.759544 0.650413 uwb: 0.0 1133.19 1459.92 +imu_odom_: 1691062545.419575188 0.847547 -0.687136 9.92875 -0.0735032 -0.00426106 0.619984 0.14 0.55 pose: 0.0 -4.66026 -2.44879 0 0.00504648 -0.00543438 0.759544 0.650413 uwb: 0.0 1133.19 1459.92 +imu_odom_: 1691062545.436577046 0.842759 -0.555455 9.98622 -0.0415453 0.00319579 0.624245 0.08 0.44 pose: 0.44989289 -4.66454 -2.43975 0 0.00727863 -0.00856304 0.764539 0.644479 uwb: 0.49993284 1138.06 1458.72 +imu_odom_: 1691062545.452568072 0.727837 0.117316 9.63666 -0.0308927 0.02024 0.638093 0.11 0.67 pose: 0.0 -4.66454 -2.43975 0 0.00727863 -0.00856304 0.764539 0.644479 uwb: 0.0 1138.06 1458.72 +imu_odom_: 1691062545.468570473 0.6608 -0.0909797 9.5792 -0.0607201 0.0191748 0.653007 0.11 0.67 pose: 0.65968562 -4.66882 -2.43072 0 0.00890524 -0.0104839 0.775561 0.631123 uwb: 0.0 1138.06 1458.72 +imu_odom_: 1691062545.485600037 0.447716 -0.225055 9.8282 -0.0458064 0.00745685 0.609331 0.11 0.67 pose: 0.0 -4.66882 -2.43072 0 0.00890524 -0.0104839 0.775561 0.631123 uwb: 0.49992992 1136.41 1459.04 +imu_odom_: 1691062545.501742134 0.519542 -0.203507 10.149 -0.0500674 0.00639159 0.588026 0.09 0.67 pose: 0.0 -4.66882 -2.43072 0 0.00890524 -0.0104839 0.775561 0.631123 uwb: 0.0 1136.41 1459.04 +imu_odom_: 1691062545.518707536 0.782904 -0.31364 10.2161 -0.0436758 0.015979 0.614658 0.09 0.67 pose: 0.32983260 -4.66882 -2.43072 0 0.00965644 -0.00797139 0.781747 0.62347 uwb: 0.0 1136.41 1459.04 +imu_odom_: 1691062545.534704687 0.785298 -0.418985 9.92397 -0.056459 0.00319579 0.631702 0.05 0.55 pose: 0.42113406 -4.65978 -2.42633 0 0.0082841 -0.00758278 0.789109 0.61415 uwb: 0.50008449 1139.34 1458.61 +imu_odom_: 1691062545.551692546 0.766145 -0.222661 9.62708 -0.0575243 0.0117179 0.615723 0.05 0.55 pose: 0.0 -4.65978 -2.42633 0 0.0082841 -0.00758278 0.789109 0.61415 uwb: 0.0 1139.34 1458.61 +imu_odom_: 1691062545.567582956 0.483629 -0.0957681 9.80426 -0.0500674 0.0138484 0.551807 0.05 0.55 pose: 0.0 -4.65978 -2.42633 0 0.0082841 -0.00758278 0.789109 0.61415 uwb: 0.0 1139.34 1458.61 +imu_odom_: 1691062545.584573440 0.553061 0.0909797 10.0341 -0.0585895 -0.00745685 0.504935 0.06 0.58 pose: 0.8046697 -4.65983 -2.42635 0 0.00828365 -0.00839075 0.790569 0.61226 uwb: 0.50218140 1139.36 1458.65 +imu_odom_: 1691062545.600568257 0.715866 -0.0814029 9.80426 -0.0607201 -0.00532632 0.4815 0.04 0.41 pose: 0.0 -4.65983 -2.42635 0 0.00828365 -0.00839075 0.790569 0.61226 uwb: 0.0 1139.36 1458.65 +imu_odom_: 1691062545.617625527 0.773327 -0.270545 9.98622 -0.0511327 -0.00426106 0.445281 0.04 0.41 pose: 0.65833531 -4.65983 -2.42635 0 0.0105359 -0.00645476 0.800856 0.598729 uwb: 0.0 1139.36 1458.65 +imu_odom_: 1691062545.633581557 0.61531 -0.19393 9.75398 -0.0490022 -0.00213053 0.415453 0.04 0.29 pose: 0.0 -4.65983 -2.42635 0 0.0105359 -0.00645476 0.800856 0.598729 uwb: 0.49934664 1140.58 1458.35 +imu_odom_: 1691062545.650623953 0.699107 -0.0861913 9.94312 -0.052198 0.00426106 0.386691 0.04 0.29 pose: 0.0 -4.65983 -2.42635 0 0.0105359 -0.00645476 0.800856 0.598729 uwb: 0.0 1140.58 1458.35 +imu_odom_: 1691062545.666718804 0.584185 -0.117316 9.84975 -0.0575243 -0.00106526 0.357929 0.04 0.29 pose: 0.32988509 -4.6642 -2.41735 0 0.0111672 -0.00731874 0.804854 0.593323 uwb: 0.0 1140.58 1458.35 +imu_odom_: 1691062545.683729702 0.6608 -0.181959 9.96946 -0.0500674 -0.00106526 0.316384 0.04 0.38 pose: 0.41142531 -4.6642 -2.41735 0 0.0114287 -0.00438118 0.808992 0.587692 uwb: 0.49696684 1139.46 1458.96 +imu_odom_: 1691062545.699772058 0.687136 -0.174777 9.86172 -0.0490022 -0.00426106 0.28336 0.04 0.38 pose: 0.8016657 -4.6642 -2.41735 0 0.0114758 -0.00516913 0.809646 0.586784 uwb: 0.0 1139.46 1458.96 +imu_odom_: 1691062545.716604180 0.670376 -0.0574608 9.9503 -0.0553937 0.00106526 0.258859 0.04 0.38 pose: 0.0 -4.6642 -2.41735 0 0.0114758 -0.00516913 0.809646 0.586784 uwb: 0.0 1139.46 1458.96 +imu_odom_: 1691062545.732559334 0.670376 -0.126893 9.82102 -0.056459 -0.00319579 0.230097 0.02 0.2 pose: 0.41868719 -4.6642 -2.41735 0 0.013665 -0.00531713 0.812566 0.582685 uwb: 0.50006699 1138.6 1459.03 +imu_odom_: 1691062545.758555142 0.672771 -0.155623 9.93115 -0.0553937 -0.00319579 0.18003 0.03 0.32 pose: 0.0 -4.6642 -2.41735 0 0.013665 -0.00531713 0.812566 0.582685 uwb: 0.0 1138.6 1459.03 +imu_odom_: 1691062545.771601750 0.646434 -0.19393 9.92157 -0.052198 0.00745685 0.154463 0.03 0.32 pose: 0.23974436 -4.6642 -2.41735 0 0.0135042 -0.0044735 0.813776 0.581005 uwb: 0.0 1138.6 1459.03 +imu_odom_: 1691062545.788603899 0.344765 -0.158017 9.87608 -0.0607201 0.015979 0.108657 0.02 0.05 pose: 0.0 -4.6642 -2.41735 0 0.0135042 -0.0044735 0.813776 0.581005 uwb: 0.50398083 1139.47 1459.01 +imu_odom_: 1691062545.802540307 0.232238 -0.009576819.93833 -0.0543285 0.00213053 0.0447411 0.02 0.05 pose: 0.0 -4.6642 -2.41735 0 0.0135042 -0.0044735 0.813776 0.581005 uwb: 0.0 1139.47 1459.01 +imu_odom_: 1691062545.819538082 0.280122 0.0790087 9.88326 -0.056459 -0.00958738 -0.0223706 0.02 0.05 pose: 0.38975338 -4.6642 -2.41735 0 0.0105957 -0.00565312 0.815145 0.579132 uwb: 0.0 1139.47 1459.01 +imu_odom_: 1691062545.832536861 0.409408 -0.0311246 9.89284 -0.0596548 -0.0149137 -0.0479369 0.02 -0.11 pose: 0.39984128 -4.6642 -2.41735 0 0.00865687 -0.00219197 0.815055 0.579315 uwb: 0.49825590 1136.28 1460.04 +imu_odom_: 1691062545.847535721 0.490811 -0.229843 9.8258 -0.0617853 -0.0117179 -0.0798948 0.02 -0.11 pose: 0.6004910 -4.6642 -2.41735 0 0.00850018 -0.00164455 0.814902 0.579535 uwb: 0.0 1136.28 1460.04 +imu_odom_: 1691062545.864594741 0.560243 -0.220267 9.84017 -0.0585895 -0.0266316 -0.117179 0.02 -0.11 pose: 0.0 -4.6642 -2.41735 0 0.00850018 -0.00164455 0.814902 0.579535 uwb: 0.0 1136.28 1460.04 +imu_odom_: 1691062545.880669760 0.840365 -0.112527 9.8282 -0.052198 -0.0255663 -0.177899 0.02 -0.26 pose: 0.39051749 -4.6642 -2.41735 0 0.00681779 -0.00348385 0.813441 0.581597 uwb: 0.49899375 1134.4 1461.06 +imu_odom_: 1691062545.897549420 0.679953 0.134075 9.74919 -0.0596548 0.0266316 -0.241815 0.02 -0.35 pose: 0.0 -4.6642 -2.41735 0 0.00681779 -0.00348385 0.813441 0.581597 uwb: 0.0 1134.4 1461.06 +imu_odom_: 1691062545.913692391 0.31364 0.0430956 9.90721 -0.0575243 0.0127832 -0.278034 0.02 -0.35 pose: 0.0 -4.6642 -2.41735 0 0.00681779 -0.00348385 0.813441 0.581597 uwb: 0.0 1134.4 1461.06 +imu_odom_: 1691062545.930553095 0.23942 -0.339977 9.83059 -0.0671117 -0.0149137 -0.280165 0.02 -0.35 pose: 0.23089011 -4.6642 -2.41735 0 0.00895401 -0.00361969 0.811829 0.583815 uwb: 0.50095066 1137.17 1460.07 +imu_odom_: 1691062545.946567161 0.31364 -0.387861 9.85214 -0.0607201 -0.0181095 -0.274838 0.02 -0.35 pose: 0.0 -4.6642 -2.41735 0 0.00895401 -0.00361969 0.811829 0.583815 uwb: 0.0 1137.17 1460.07 +imu_odom_: 1691062545.972554219 0.639252 0 9.95509 -0.0553937 -0.00745685 -0.306796 0.02 -0.35 pose: 0.34004590 -4.6642 -2.41735 0 0.0081795 -0.00132817 0.808762 0.588078 uwb: 0.0 1137.17 1460.07 +imu_odom_: 1691062545.987561828 0.73502 0.1652 9.95988 -0.0596548 -0.0117179 -0.320645 0.02 -0.44 pose: 0.32999884 -4.6642 -2.41735 0 0.00658173 -0.00146786 0.805619 0.592395 uwb: 0.50001742 1137.15 1460.03 +imu_odom_: 1691062546.4744796 0.466869 -0.179565 9.75398 -0.0607201 0.00213053 -0.372843 0.02 -0.44 pose: 0.0 -4.6642 -2.41735 0 0.00658173 -0.00146786 0.805619 0.592395 uwb: 0.0 1137.15 1460.03 +imu_odom_: 1691062546.21615710 0.474052 -0.201113 9.9503 -0.0639159 -0.0127832 -0.394148 0.02 -0.35 pose: 0.50056570 -4.6685 -2.40833 0 0.00795149 -0.0004063340.800037 0.599898 uwb: 0.0 1137.15 1460.03 +imu_odom_: 1691062546.38681150 0.428562 -0.248997 9.90481 -0.0681769 -0.00958738 -0.380299 0.02 -0.35 pose: 0.0 -4.6685 -2.40833 0 0.00795149 -0.0004063340.800037 0.599898 uwb: 0.50124819 1133.93 1460.95 +imu_odom_: 1691062546.54706010 0.610521 -0.208296 10.0413 -0.072438 -0.0181095 -0.387756 0.02 -0.35 pose: 0.0 -4.6685 -2.40833 0 0.00795149 -0.0004063340.800037 0.599898 uwb: 0.0 1133.93 1460.95 +imu_odom_: 1691062546.71651293 0.572214 -0.0694318 9.83299 -0.056459 -0.0181095 -0.419714 0.02 -0.61 pose: 0.8807301 -4.66855 -2.40835 0 0.00710716 -0.0006651020.798896 0.601427 uwb: 0.0 1133.93 1460.95 +imu_odom_: 1691062546.87527708 0.519542 -0.126893 10.0054 -0.0735032 -0.00958738 -0.432497 0.01 -0.44 pose: 0.0 -4.66855 -2.40835 0 0.00710716 -0.0006651020.798896 0.601427 uwb: 0.49974338 1130.32 1462.08 +imu_odom_: 1691062546.104947784 0.517148 -0.122104 9.97424 -0.056459 -0.00639159 -0.471912 0.01 -0.44 pose: 0.65993365 -4.66855 -2.40835 0 0.00726143 -0.00120568 0.790079 0.61296 uwb: 0.0 1130.32 1462.08 +imu_odom_: 1691062546.120543347 0.588974 -0.134075 9.91199 -0.0553937 -0.015979 -0.497478 0.01 -0.53 pose: 0.0 -4.66855 -2.40835 0 0.00726143 -0.00120568 0.790079 0.61296 uwb: 0.0 1130.32 1462.08 +imu_odom_: 1691062546.137586038 0.474052 -0.186748 9.74679 -0.0681769 -0.00958738 -0.495348 0.01 -0.53 pose: 0.0 -4.66855 -2.40835 0 0.00726143 -0.00120568 0.790079 0.61296 uwb: 0.49892678 1129.61 1462.65 +imu_odom_: 1691062546.153538863 0.42138 -0.407014 9.71088 -0.0617853 -0.00106526 -0.506001 0.01 -0.53 pose: 0.33058219 -4.66855 -2.40835 0 0.00813347 0.000571795 0.784892 0.619578 uwb: 0.0 1129.61 1462.65 +imu_odom_: 1691062546.170673130 0.387861 -0.19393 9.8689 -0.0788296 -0.02024 -0.517718 0.01 -0.73 pose: 0.40935182 -4.6685 -2.40833 0 0.00547521 -0.00140805 0.778026 0.628207 uwb: 0.0 1129.61 1462.65 +imu_odom_: 1691062546.188662783 0.423774 -0.155623 9.80186 -0.0500674 -0.00745685 -0.556068 0.01 -0.73 pose: 0.8025408 -4.66855 -2.40835 0 0.0047521 -0.00114876 0.776621 0.629949 uwb: 0.49747732 1128.38 1462.92 +imu_odom_: 1691062546.203568030 0.383072 0.0981623 9.81862 -0.0585895 -0.00852212 -0.5827 0.01 -0.73 pose: 0.0 -4.66855 -2.40835 0 0.0047521 -0.00114876 0.776621 0.629949 uwb: 0.0 1128.38 1462.92 +imu_odom_: 1691062546.220638719 0.605733 -0.160412 9.75637 -0.0585895 -0.0117179 -0.592287 0.01 -0.61 pose: 0.42003759 -4.6685 -2.40833 0 0.00390949 0.00212582 0.768659 0.639643 uwb: 0.0 1128.38 1462.92 +imu_odom_: 1691062546.237673827 0.699107 -0.023942 10.0509 -0.0585895 -0.0287621 -0.615723 0.01 -0.64 pose: 0.0 -4.6685 -2.40833 0 0.00390949 0.00212582 0.768659 0.639643 uwb: 0.50131241 1127.98 1463.03 +imu_odom_: 1691062546.253669232 0.342371 -0.292093 9.84735 -0.052198 -0.02024 -0.621049 0.01 -0.64 pose: 0.0 -4.6685 -2.40833 0 0.00390949 0.00212582 0.768659 0.639643 uwb: 0.0 1127.98 1463.03 +imu_odom_: 1691062546.270633472 0.457293 -0.177171 9.9096 -0.0692422 -0.0308927 -0.570982 0 -0.55 pose: 0.25130802 -4.66855 -2.40835 0 0.00591538 0.000558189 0.763495 0.645787 uwb: 0.0 1127.98 1463.03 +imu_odom_: 1691062546.286519802 0.603339 -0.464475 9.87369 -0.0681769 -0.0223706 -0.491087 0 -0.55 pose: 0.0 -4.66855 -2.40835 0 0.00591538 0.000558189 0.763495 0.645787 uwb: 0.49846599 1125.51 1463.56 +imu_odom_: 1691062546.302793433 0.696713 -0.445322 9.96706 -0.0543285 -0.00958738 -0.429302 0 -0.55 pose: 0.32947104 -4.66855 -2.40835 0 0.00464415 -0.00018605 0.756574 0.653891 uwb: 0.0 1125.51 1463.56 +imu_odom_: 1691062546.319673971 0.651223 -0.23942 9.91918 -0.0532632 0.00319579 -0.38243 0.01 -0.58 pose: 0.41147497 -4.66855 -2.40835 0 0.00347986 -0.00380855 0.749491 0.661994 uwb: 0.0 1125.51 1463.56 +imu_odom_: 1691062546.337670916 0.505177 -0.0550666 10.0006 -0.0585895 -0.00426106 -0.343015 0.01 -0.58 pose: 0.7821550 -4.66855 -2.40835 0 0.00400456 -0.00434836 0.748394 0.663228 uwb: 0.50081954 1122.25 1464.21 +imu_odom_: 1691062546.354783310 0.380678 -0.225055 9.80426 -0.0607201 0 -0.330232 0.01 -0.58 pose: 0.0 -4.66855 -2.40835 0 0.00400456 -0.00434836 0.748394 0.663228 uwb: 0.0 1122.25 1464.21 +imu_odom_: 1691062546.371527943 0.378284 -0.229843 9.84017 -0.056459 -0.0170442 -0.32384 0 -0.41 pose: 0.44168327 -4.66855 -2.40835 0 0.00400959 -0.00259264 0.742714 0.669592 uwb: 0.0 1122.25 1464.21 +imu_odom_: 1691062546.387520431 0.418985 -0.265756 9.81144 -0.0617853 -0.0181095 -0.286556 0 -0.29 pose: 0.0 -4.66855 -2.40835 0 0.00400959 -0.00259264 0.742714 0.669592 uwb: 0.50057456 1119.83 1464.91 +imu_odom_: 1691062546.403585829 0.648829 -0.318429 9.92397 -0.0596548 -0.0106526 -0.248207 0 -0.29 pose: 0.0 -4.66855 -2.40835 0 0.00400959 -0.00259264 0.742714 0.669592 uwb: 0.0 1119.83 1464.91 +imu_odom_: 1691062546.420520905 0.565032 -0.339977 9.92397 -0.052198 0 -0.225836 0 -0.26 pose: 0.24779374 -4.66855 -2.40835 0 0.00184074 -0.0020666 0.7398 0.672822 uwb: 0.0 1119.83 1464.91 +imu_odom_: 1691062546.436689253 0.52433 -0.244209 10.0006 -0.0553937 -0.00106526 -0.198139 0 -0.26 pose: 0.0 -4.66855 -2.40835 0 0.00184074 -0.0020666 0.7398 0.672822 uwb: 0.49960922 1118.22 1465.4 +imu_odom_: 1691062546.452501506 0.433351 -0.241814 9.87608 -0.056459 -0.00958738 -0.175769 0 -0.26 pose: 0.32115340 -4.66855 -2.40835 0 0.00176941 -0.00455567 0.736637 0.676271 uwb: 0.0 1118.22 1465.4 +imu_odom_: 1691062546.469651522 0.529119 -0.181959 9.94551 -0.056459 -0.00852212 -0.169377 0 -0.29 pose: 0.40823482 -4.66855 -2.40835 0 0.00228525 -0.00415582 0.733381 0.679802 uwb: 0.0 1118.22 1465.4 +imu_odom_: 1691062546.487771540 0.474052 -0.19393 9.85453 -0.0543285 -0.00319579 -0.154463 0 -0.29 pose: 0.8164522 -4.66855 -2.40835 0 0.00308454 -0.00394352 0.732797 0.680429 uwb: 0.49994170 1116.16 1465.79 +imu_odom_: 1691062546.502774486 0.459687 -0.23942 9.87848 -0.0585895 -0.00532632 -0.120375 0 -0.29 pose: 0.0 -4.66855 -2.40835 0 0.00308454 -0.00394352 0.732797 0.680429 uwb: 0.0 1116.16 1465.79 +imu_odom_: 1691062546.518653525 0.486023 -0.3304 9.9096 -0.0596548 -0.00958738 -0.0745685 0 -0.08 pose: 0.42108458 -4.66855 -2.40835 0 0.00208515 -0.00256 0.730142 0.683288 uwb: 0.0 1116.16 1465.79 +imu_odom_: 1691062546.532617934 0.4956 -0.37589 9.89045 -0.0553937 -0.0117179 -0.036219 0 -0.08 pose: 0.0 -4.66855 -2.40835 0 0.00208515 -0.00256 0.730142 0.683288 uwb: 0.50254606 1112.83 1466.3 +imu_odom_: 1691062546.547620880 0.612916 -0.296881 9.88805 -0.0543285 -0.0106526 0.00852212 0 -0.08 pose: 0.0 -4.66855 -2.40835 0 0.00208515 -0.00256 0.730142 0.683288 uwb: 0.0 1112.83 1466.3 +imu_odom_: 1691062546.563613951 0.634463 -0.220267 9.85693 -0.0532632 -0.00426106 0.0394148 0 -0.08 pose: 0.21959778 -4.66855 -2.40835 0 0.000914485 -0.00446993 0.729366 0.684109 uwb: 0.0 1112.83 1466.3 +imu_odom_: 1691062546.585485070 0.533907 -0.213084 9.91678 -0.0553937 0.00426106 0.0511327 0 -0.05 pose: 0.0 -4.66855 -2.40835 0 0.000914485 -0.00446993 0.729366 0.684109 uwb: 0.49885970 1113.19 1466.02 +imu_odom_: 1691062546.602554301 0.0047884 -0.215478 9.7851 -0.0575243 0.0394148 0.0298274 0 -0.05 pose: 0.29876403 -4.66855 -2.40835 0 0.00219751 -0.00651754 0.728988 0.684492 uwb: 0.0 1113.19 1466.02 +imu_odom_: 1691062546.616485462 -0.426168 -0.105345 9.94551 -0.0436758 0.0266316 -0.0617853 0.01 0.02 pose: 0.47943634 -4.66855 -2.40835 0 0.00288665 -0.00356813 0.729013 0.684484 uwb: 0.0 1113.19 1466.02 +imu_odom_: 1691062546.631489867 -0.6608 0.241814 9.84496 -0.0383495 0.015979 -0.138484 0.01 0.02 pose: 0.0 -4.66855 -2.40835 0 0.00288665 -0.00356813 0.729013 0.684484 uwb: 0.49918342 1111.5 1466.16 +imu_odom_: 1691062546.647558765 -0.737414 0.0670376 9.89763 -0.0703074 0.00532632 -0.0681769 0.01 0.02 pose: 0.0 -4.66855 -2.40835 0 0.00288665 -0.00356813 0.729013 0.684484 uwb: 0.0 1111.5 1466.16 +imu_odom_: 1691062546.664625954 -0.577003 -0.991199 9.79228 -0.0798948 -0.0372843 0.0447411 0.05 0.02 pose: 0.5940750 -4.66855 -2.40835 0 0.00246843 -0.00301892 0.728809 0.684706 uwb: 0.0 1111.5 1466.16 +imu_odom_: 1691062546.680488662 0.105345 -0.677559 9.82341 -0.0458064 -0.052198 0.052198 0.08 0 pose: 0.0 -4.66855 -2.40835 0 0.00246843 -0.00301892 0.728809 0.684706 uwb: 0.49944591 1111.03 1465.98 +imu_odom_: 1691062546.695548187 0.648829 -0.023942 9.84496 -0.0394148 -0.0117179 0.0692422 0.08 0 pose: 0.0 -4.66855 -2.40835 0 0.00246843 -0.00301892 0.728809 0.684706 uwb: 0.0 1111.03 1465.98 +imu_odom_: 1691062546.711541258 0.237026 0.0335188 9.56484 -0.0575243 0.0394148 0.0884169 0.08 0 pose: 0.63012200 -4.66855 -2.40835 0 -0.00191809 0.000108408 0.727084 0.686546 uwb: 0.0 1111.03 1465.98 +imu_odom_: 1691062546.728600573 -0.162806 -0.141258 10.07 -0.052198 0.00958738 0.0330232 0.08 0 pose: 0.0 -4.66855 -2.40835 0 -0.00191809 0.000108408 0.727084 0.686546 uwb: 0.50052789 1109.73 1465.93 +imu_odom_: 1691062546.745622558 -0.126893 -0.0837971 9.81862 -0.0639159 -0.0287621 0.036219 0.08 0 pose: 0.31097217 -4.67285 -2.39932 0 -0.0009331570.000487029 0.727395 0.686218 uwb: 0.0 1109.73 1465.93 +imu_odom_: 1691062546.761621462 0.414197 -0.423774 10.1682 -0.0660464 -0.0447411 0.0596548 0.09 0.02 pose: 0.43018090 -4.67285 -2.39932 0 -0.00285718 0.00413825 0.727478 0.686112 uwb: 0.0 1109.73 1465.93 +imu_odom_: 1691062546.778623323 0.488417 -0.339977 9.63906 -0.0543285 -0.0117179 0.0511327 0.09 0.02 pose: 0.0 -4.67285 -2.39932 0 -0.00285718 0.00413825 0.727478 0.686112 uwb: 0.49947216 1108.01 1465.92 +imu_odom_: 1691062546.794492155 0.268151 0.0622492 9.8665 -0.0458064 0.00106526 0.0458064 0.09 0.02 pose: 0.0 -4.67285 -2.39932 0 -0.00285718 0.00413825 0.727478 0.686112 uwb: 0.0 1108.01 1465.92 +imu_odom_: 1691062546.811745121 0.19393 -0.0191536 10.1754 -0.0660464 -0.00426106 0.0639159 0.14 0 pose: 0.7898544 -4.67285 -2.39932 0 -0.00301093 0.00324616 0.727532 0.686059 uwb: 0.0 1108.01 1465.92 +imu_odom_: 1691062546.827684238 0.474052 -0.335188 10.1993 -0.0415453 -0.02024 0.0383495 0.1 0 pose: 0.0 -4.67285 -2.39932 0 -0.00301093 0.00324616 0.727532 0.686059 uwb: 0.0 1108.01 1465.92 +imu_odom_: 1691062546.844733637 0.311246 -0.126893 9.54329 -0.0458064 0.015979 0.0191748 0.1 0 pose: 0.65994823 -4.66816 -2.38598 0 -0.00183664 0.00298841 0.727832 0.685747 uwb: 0.0 1108.01 1465.92 +imu_odom_: 1691062546.860559889 0.344765 -0.23942 9.74679 -0.0532632 0.0213053 0.0426106 0.11 0 pose: 0.0 -4.66816 -2.38598 0 -0.00183664 0.00298841 0.727832 0.685747 uwb: 0.0 1108.01 1465.92 +imu_odom_: 1691062546.877596456 1.12527 -0.258574 10.3214 -0.0553937 -0.0426106 0.0447411 0.11 0 pose: 0.0 -4.66816 -2.38598 0 -0.00183664 0.00298841 0.727832 0.685747 uwb: 0.99843684 1109.58 1465.29 +imu_odom_: 1691062546.893597402 1.31921 -0.0814029 9.69891 -0.0628506 -0.0287621 0.0745685 0.11 0 pose: 0.33171960 -4.66816 -2.38598 0 -0.00179266 0.00338226 0.727716 0.685868 uwb: 0.0 1109.58 1465.29 +imu_odom_: 1691062546.909467984 1.07021 -0.220267 9.69891 -0.0436758 0.0245011 0.1012 0.11 0 pose: 0.40909517 -4.66816 -2.38598 0 0.000518559 0.000206363 0.727951 0.685629 uwb: 0.0 1109.58 1465.29 +imu_odom_: 1691062546.926463721 1.04866 -0.493206 9.65342 -0.0479369 -0.0106526 0.112918 0.11 0 pose: 0.6893254 -4.66816 -2.38598 0 0.000965671 -0.0001813620.728097 0.685474 uwb: 0.50131242 1108.73 1465.34 +imu_odom_: 1691062546.942605530 0.849942 -0.160412 9.7444 -0.0479369 0.0213053 0.118244 0.11 0 pose: 0.0 -4.66816 -2.38598 0 0.000965671 -0.0001813620.728097 0.685474 uwb: 0.0 1108.73 1465.34 +imu_odom_: 1691062546.958607350 0.761356 0.00718261 9.96227 -0.0490022 0.0234358 0.0958738 0.07 0 pose: 0.42114874 -4.67249 -2.37697 0 0.00346874 -0.00300205 0.729142 0.684347 uwb: 0.0 1108.73 1465.34 +imu_odom_: 1691062546.974663999 0.811634 0.0023942 9.84017 -0.052198 -0.00532632 0.0532632 0.07 0.02 pose: 0.0 -4.67249 -2.37697 0 0.00346874 -0.00300205 0.729142 0.684347 uwb: 0.49932924 1108.27 1465.18 +imu_odom_: 1691062546.991613074 0.742203 -0.191536 9.67736 -0.0660464 0.00852212 0.0372843 0.07 0.02 pose: 0.0 -4.67249 -2.37697 0 0.00346874 -0.00300205 0.729142 0.684347 uwb: 0.0 1108.27 1465.18 +imu_odom_: 1691062547.8607645 0.715866 -0.306458 10.0173 -0.0553937 -0.0117179 0.0181095 0.07 0.05 pose: 0.23008814 -4.67249 -2.37697 0 0.00563956 -0.00304869 0.729472 0.683981 uwb: 0.0 1108.27 1465.18 +imu_odom_: 1691062547.25670172 0.806846 -0.246603 9.80186 -0.056459 -0.00958738 0.0138484 0.07 0.05 pose: 0.0 -4.67249 -2.37697 0 0.00563956 -0.00304869 0.729472 0.683981 uwb: 0.50051045 1109.9 1464.87 +imu_odom_: 1691062547.42500843 0.85473 -0.126893 9.98143 -0.056459 0.00958738 0.0245011 0.07 0.05 pose: 0.33059677 -4.67249 -2.37697 0 0.0076142 -0.00518054 0.729438 0.683985 uwb: 0.0 1109.9 1464.87 +imu_odom_: 1691062547.58493043 0.684742 -0.217872 9.77553 -0.0543285 0.00319579 0.0234358 0.06 0 pose: 0.34008688 -4.67249 -2.37697 0 0.00932355 -0.00788868 0.729162 0.684233 uwb: 0.0 1109.9 1464.87 +imu_odom_: 1691062547.74432747 0.553061 -0.153229 9.92397 -0.0468716 0.00106526 0 0.06 0 pose: 0.0 -4.67249 -2.37697 0 0.00932355 -0.00788868 0.729162 0.684233 uwb: 0.50023928 1106.17 1465.35 +imu_odom_: 1691062547.100570888 0.414197 -0.205901 9.80904 -0.0639159 -0.00106526 0.0649811 0.03 0 pose: 0.41750038 -4.67249 -2.37697 0 0.00985089 -0.00819631 0.728802 0.684604 uwb: 0.0 1106.17 1465.35 +imu_odom_: 1691062547.126450341 -0.311246 -0.395043 9.45949 -0.0458064 0.0756338 0.0607201 0.03 0 pose: 0.0 -4.67249 -2.37697 0 0.00985089 -0.00819631 0.728802 0.684604 uwb: 0.50048425 1106.93 1464.91 +imu_odom_: 1691062547.142456248 -1.00317 0.0502782 10.1538 -0.0351537 0.076699 0.0490022 0.06 0.02 pose: 0.8141776 -4.67249 -2.37697 0 0.00920909 -0.00767228 0.72888 0.684537 uwb: 0.0 1106.93 1464.91 +imu_odom_: 1691062547.169456483 -0.380678 -0.0933739 9.86172 -0.0543285 -0.0532632 0.0511327 0.08 0 pose: 0.0 -4.67249 -2.37697 0 0.00920909 -0.00767228 0.72888 0.684537 uwb: 0.0 1106.93 1464.91 +imu_odom_: 1691062547.194596624 0.294487 -0.198719 9.7444 -0.0617853 -0.0234358 0.0340885 0.08 0 pose: 0.86881960 -4.67676 -2.36793 0 0.00234543 -0.0009006870.729432 0.684049 uwb: 0.49935561 1104.41 1465.15 +imu_odom_: 1691062547.221590734 0.35913 -0.126893 9.87369 -0.0436758 -0.0255663 0.04048 0.12 -0.02 pose: 0.0 -4.67676 -2.36793 0 0.00234543 -0.0009006870.729432 0.684049 uwb: 0.0 1104.41 1465.15 +imu_odom_: 1691062547.246442440 -0.184354 -0.1652 9.91199 -0.0479369 0.00106526 0.036219 0.12 -0.02 pose: 0.32149469 -4.66772 -2.36365 0 0.000821629 0.0012361 0.729386 0.684101 uwb: 0.49980181 1102.33 1465.37 +imu_odom_: 1691062547.263435264 0.502782 -0.220267 10.0293 -0.0543285 -0.0703074 0.0351537 0.12 -0.02 pose: 0.0 -4.66772 -2.36365 0 0.000821629 0.0012361 0.729386 0.684101 uwb: 0.0 1102.33 1465.37 +imu_odom_: 1691062547.288456707 0.229843 -0.0933739 9.81862 -0.0607201 0.0138484 0.0276969 0.12 -0.02 pose: 0.51872356 -4.67199 -2.35461 0 5.64096e-05 0.00411104 0.729342 0.684137 uwb: 0.50024220 1099.85 1465.69 +imu_odom_: 1691062547.315510895 0.114922 -0.011971 9.47146 -0.0532632 -0.0511327 0.0617853 0.14 0.02 pose: 0.34978399 -4.67199 -2.35461 0 -0.00039822 0.00542785 0.729218 0.68426 uwb: 0.0 1099.85 1465.69 +imu_odom_: 1691062547.340487425 0.553061 -0.383072 9.97664 -0.0713727 -0.00319579 0.036219 0.14 0.02 pose: 0.0 -4.67199 -2.35461 0 -0.00039822 0.00542785 0.729218 0.68426 uwb: 0.49874898 1099.84 1465.67 +imu_odom_: 1691062547.357445835 0.265756 -0.148441 9.79707 -0.0532632 -0.00106526 0.0234358 0.15 0 pose: 0.6991246 -4.67199 -2.35461 0 -0.0004512420.00599757 0.729268 0.684202 uwb: 0.0 1099.84 1465.67 +imu_odom_: 1691062547.382446571 0.586579 0.0335188 10.0724 -0.0479369 -0.0117179 0.0490022 0.15 0 pose: 0.0 -4.67199 -2.35461 0 -0.0004512420.00599757 0.729268 0.684202 uwb: 0.50108213 1104.74 1464.74 +imu_odom_: 1691062547.409486177 0.339977 -0.25618 10.1131 -0.0575243 -0.0308927 0.0372843 0.17 -0.02 pose: 0.52056674 -4.67626 -2.34557 0 -0.00118429 0.00553065 0.72935 0.684117 uwb: 0.0 1104.74 1464.74 +imu_odom_: 1691062547.434495954 0.177171 -0.153229 9.30866 -0.04048 0.0340885 0.0426106 0.17 -0.02 pose: 0.0 -4.67626 -2.34557 0 -0.00118429 0.00553065 0.72935 0.684117 uwb: 0.49927977 1106.72 1464.07 +imu_odom_: 1691062547.461480731 -0.112527 -0.517148 9.64624 -0.0639159 0.00958738 0.056459 0.17 0 pose: 0.41996477 -4.67626 -2.34557 0 0.00033036 0.0051844 0.729378 0.684091 uwb: 0.0 1106.72 1464.07 +imu_odom_: 1691062547.477510261 0.318429 -0.0407014 9.8665 -0.0468716 -0.0458064 0.0245011 0.17 0 pose: 0.0 -4.67626 -2.34557 0 0.00033036 0.0051844 0.729378 0.684091 uwb: 0.49934686 1106.64 1463.73 +imu_odom_: 1691062547.504412504 0.105345 -0.0454898 9.92636 -0.092678 -0.0276969 0.0809601 0.15 -0.02 pose: 0.52194912 -4.6715 -2.33225 0 -0.00336018 0.00593299 0.729412 0.68404 uwb: 0.0 1106.64 1463.73 +imu_odom_: 1691062547.529427239 -0.186748 -0.361524 9.95988 -0.056459 0.0490022 0.036219 0.15 0 pose: 0.62716488 -4.67578 -2.32322 0 -0.00421053 0.00854988 0.729816 0.683577 uwb: 0.49993013 1108.29 1463.47 +imu_odom_: 1691062547.556458096 -0.169988 0.153229 9.95988 -0.0735032 0.0479369 0.0649811 0.15 0 pose: 0.0 -4.67578 -2.32322 0 -0.00421053 0.00854988 0.729816 0.683577 uwb: 0.0 1108.29 1463.47 +imu_odom_: 1691062547.581466414 0.349553 -0.237026 10.4531 -0.0479369 -0.0181095 0.0245011 0.17 0 pose: 0.8074698 -4.67578 -2.32322 0 -0.00514736 0.00891491 0.729798 0.683586 uwb: 0.50067966 1112.7 1462.31 +imu_odom_: 1691062547.597449281 0.258574 -0.0287304 9.71088 -0.0532632 -0.0138484 0.036219 0.17 0 pose: 0.0 -4.67578 -2.32322 0 -0.00514736 0.00891491 0.729798 0.683586 uwb: 0.0 1112.7 1462.31 +imu_odom_: 1691062547.623411853 0.727837 -0.0622492 9.80426 -0.0639159 -0.0596548 0.0447411 0.17 0 pose: 0.52019635 -4.68006 -2.31418 0 -0.00755195 0.011936 0.729944 0.683361 uwb: 0.0 1112.7 1462.31 +imu_odom_: 1691062547.647504707 0.349553 0.124498 10.8146 -0.0468716 -0.0276969 0.0447411 0.17 0 pose: 0.0 -4.68006 -2.31418 0 -0.00755195 0.011936 0.729944 0.683361 uwb: 0.49921562 1111.55 1462.86 +imu_odom_: 1691062547.663405331 0.395043 -0.25618 9.76595 -0.072438 -0.00958738 0.056459 0.16 -0.02 pose: 0.40931399 -4.67532 -2.30086 0 -0.00431353 0.0100416 0.729893 0.683474 uwb: 0.0 1111.55 1462.86 +imu_odom_: 1691062547.691402107 0.0742203 -0.316035 9.74919 -0.0490022 0.0394148 0.036219 0.16 -0.02 pose: 0.0 -4.67532 -2.30086 0 -0.00431353 0.0100416 0.729893 0.683474 uwb: 0.50126294 1110.67 1462.73 +imu_odom_: 1691062547.716402551 0.533907 -0.268151 9.69652 -0.0703074 -0.0106526 0.052198 0.17 0 pose: 0.48986265 -4.67532 -2.30086 0 -0.0001723890.00864135 0.730042 0.683347 uwb: 0.0 1110.67 1462.73 +imu_odom_: 1691062547.743403369 0.0407014 -0.0502782 9.70131 -0.0841559 0.0319579 0.0468716 0.2 0 pose: 0.44986975 -4.67962 -2.29183 0 -0.00323296 0.00739579 0.730087 0.683307 uwb: 0.49997972 1113.51 1462.12 +imu_odom_: 1691062547.769380522 0.378284 -0.670376 10.0604 -0.0585895 0.0276969 0.0287621 0.17 -0.02 pose: 0.24054065 -4.67962 -2.29183 0 -0.00301322 0.0063822 0.730185 0.683213 uwb: 0.0 1113.51 1462.12 +imu_odom_: 1691062547.796381632 0.162806 0.122104 10.2951 -0.0340885 0 0.0468716 0.23 0 pose: 0.28072895 -4.67488 -2.2785 0 -0.00468562 0.00762925 0.730192 0.683184 uwb: 0.49910770 1113.97 1462.22 +imu_odom_: 1691062547.813480322 0.711078 -0.584185 9.72764 -0.0266316 -0.0298274 0.0617853 0.23 0 pose: 0.0 -4.67488 -2.2785 0 -0.00468562 0.00762925 0.730192 0.683184 uwb: 0.0 1113.97 1462.22 +imu_odom_: 1691062547.838405814 0.59855 -0.222661 9.90721 -0.00319579 0.0351537 0.00852212 0.17 0 pose: 0.24864831 -4.67488 -2.2785 0 -0.00532355 0.00688005 0.73014 0.683242 uwb: 0.50012554 1114.03 1462.47 +imu_odom_: 1691062547.863387302 0.268151 -0.181959 9.55287 -0.0511327 0.00532632 0.0511327 0.17 0 pose: 0.0 -4.67488 -2.2785 0 -0.00532355 0.00688005 0.73014 0.683242 uwb: 0.0 1114.03 1462.47 +imu_odom_: 1691062547.890477070 0.241814 -0.148441 9.46667 -0.0458064 -0.0639159 0.0298274 0.24 -0.02 pose: 0.43996850 -4.67918 -2.26947 0 -0.00326738 0.00677227 0.730257 0.683132 uwb: 0.49934102 1115.7 1462.3 +imu_odom_: 1691062547.915524469 0.725443 -0.371101 9.59117 -0.0511327 -0.0181095 0.04048 0.24 -0.02 pose: 0.0 -4.67918 -2.26947 0 -0.00326738 0.00677227 0.730257 0.683132 uwb: 0.0 1115.7 1462.3 +imu_odom_: 1691062547.932522543 0.814029 -0.0885855 9.74919 -0.0340885 0.0436758 0.0234358 0.21 0 pose: 0.50046384 -4.68348 -2.26044 0 -0.00423571 0.0068835 0.730131 0.68326 uwb: 0.49979598 1117.69 1461.68 +imu_odom_: 1691062547.957522695 0.61531 -0.260968 10.0604 -0.0628506 0.0223706 0.0585895 0.21 0 pose: 0.0 -4.68348 -2.26044 0 -0.00423571 0.0068835 0.730131 0.68326 uwb: 0.0 1117.69 1461.68 +imu_odom_: 1691062547.974376989 0.526724 -0.213084 9.67736 -0.0511327 0.036219 0.04048 0.22 0 pose: 0.52085547 -4.67874 -2.24711 0 -0.0015078 0.00576493 0.730053 0.683365 uwb: 0.0 1117.69 1461.68 +imu_odom_: 1691062547.999490299 0.40462 -0.363919 9.60075 -0.0735032 -0.0149137 0.0692422 0.22 0 pose: 0.0 -4.67874 -2.24711 0 -0.0015078 0.00576493 0.730053 0.683365 uwb: 0.50024220 1116.49 1462.03 +imu_odom_: 1691062548.26360758 0.459687 -0.0837971 9.7851 -0.036219 0.0330232 0.0319579 0.22 0 pose: 0.42037597 -4.67874 -2.24711 0 0.000267536 0.00284154 0.73018 0.683249 uwb: 0.50179377 1114.55 1462.85 +imu_odom_: 1691062548.51489238 0.574608 -0.268151 9.96706 -0.0713727 0.00745685 0.0649811 0.22 0 pose: 0.41816534 -4.68304 -2.23808 0 -0.0003162380.000283719 0.730422 0.682996 uwb: 0.0 1114.55 1462.85 +imu_odom_: 1691062548.78409860 0.713472 -0.011971 9.76355 -0.0575243 -0.0149137 0.0585895 0.23 0 pose: 0.0 -4.68304 -2.23808 0 -0.0003162380.000283719 0.730422 0.682996 uwb: 0.49927697 1118.6 1461.93 +imu_odom_: 1691062548.103400685 0.339977 -0.222661 10.0485 -0.0841559 0.0287621 0.0553937 0.18 0 pose: 0.52180633 -4.67831 -2.22475 0 0.00267289 -0.00114117 0.730634 0.682763 uwb: 0.0 1118.6 1461.93 +imu_odom_: 1691062548.130512916 0.531513 -0.0814029 9.97424 -0.0798948 0.0117179 0.0607201 0.18 0 pose: 0.0 -4.67831 -2.22475 0 0.00267289 -0.00114117 0.730634 0.682763 uwb: 0.49987775 1118.19 1462.03 +imu_odom_: 1691062548.147476871 0.553061 -0.244209 10.3046 -0.0660464 -0.02024 0.0500674 0.18 0.02 pose: 0.71946104 -4.68262 -2.21573 0 0.0041938 -0.0001935180.731086 0.682273 uwb: 0.0 1118.19 1462.03 +imu_odom_: 1691062548.173356622 0.885855 -0.071826 10.0365 -0.0596548 -0.0490022 0.0458064 0.18 0.02 pose: 0.7931795 -4.68262 -2.21573 0 0.00423759 -0.00106106 0.731116 0.68224 uwb: 0.0 1118.19 1462.03 +imu_odom_: 1691062548.199640298 0.6608 -0.294487 9.54808 -0.056459 0.0458064 0.0383495 0.18 0.02 pose: 0.34911911 -4.68039 -2.20358 0 0.00698388 -0.00365053 0.731189 0.682129 uwb: 0.0 1118.19 1462.03 +imu_odom_: 1691062548.224483260 0.150835 -0.277727 9.6199 -0.0639159 0.00319579 0.052198 0.18 0.02 pose: 0.0 -4.68039 -2.20358 0 0.00698388 -0.00365053 0.731189 0.682129 uwb: 0.99946969 1116.57 1462.37 +imu_odom_: 1691062548.250413465 0.205901 -0.232238 9.91199 -0.0479369 0.0394148 0.0394148 0.18 0 pose: 0.32176016 -4.67792 -2.20239 0 0.006005 -0.00551796 0.731215 0.682098 uwb: 0.0 1116.57 1462.37 +imu_odom_: 1691062548.265383171 0.323217 -0.234632 9.9503 -0.0532632 -0.0149137 0.0543285 0.18 0 pose: 0.0 -4.67792 -2.20239 0 0.006005 -0.00551796 0.731215 0.682098 uwb: 0.0 1116.57 1462.37 +imu_odom_: 1691062548.289363747 0.390255 -0.318429 9.72046 -0.0479369 0.0234358 0.0266316 0.17 0 pose: 0.59850533 -4.68481 -2.18804 0 0.000892773 -0.00144402 0.731397 0.68195 uwb: 0.49910490 1118.66 1462.13 +imu_odom_: 1691062548.315534265 0.134075 -0.35913 10.1562 -0.0500674 0.0245011 0.0468716 0.17 0 pose: 0.0 -4.68481 -2.18804 0 0.000892773 -0.00144402 0.731397 0.68195 uwb: 0.0 1118.66 1462.13 +imu_odom_: 1691062548.331557091 0.328006 -0.122104 9.53611 -0.0479369 -0.0191748 0.0500674 0.17 0.02 pose: 0.50151094 -4.68314 -2.17459 0 -0.00413317 -0.0006712060.731357 0.681982 uwb: 0.50067976 1117.05 1462.57 +imu_odom_: 1691062548.358541874 0.296881 -0.131681 9.40442 -0.0809601 0.0372843 0.0639159 0.17 0.02 pose: 0.6985124 -4.68188 -2.17102 0 -0.00369442 -0.0001020580.731385 0.681954 uwb: 0.0 1117.05 1462.57 +imu_odom_: 1691062548.383361505 0.0502782 -0.294487 9.67736 -0.0415453 0.0532632 0.0319579 0.23 -0.02 pose: 0.16996619 -4.68188 -2.17102 0 -0.003085 0.00143496 0.731488 0.681846 uwb: 0.49932071 1115.34 1462.61 +imu_odom_: 1691062548.408348831 -0.0143652 -0.296881 9.55526 -0.0681769 -0.00426106 0.0553937 0.23 0 pose: 0.0 -4.68188 -2.17102 0 -0.003085 0.00143496 0.731488 0.681846 uwb: 0.0 1115.34 1462.61 +imu_odom_: 1691062548.431420358 0.536301 -0.296881 9.87608 -0.056459 0.00426106 0.0383495 0.23 0 pose: 0.50848411 -4.68622 -2.16201 0 -0.00630114 0.00528861 0.731599 0.681686 uwb: 0.50063019 1112.12 1463.47 +imu_odom_: 1691062548.457348522 0.620098 -0.557849 9.59117 -0.0617853 0.00319579 0.0553937 0.19 0 pose: 0.0 -4.68622 -2.16201 0 -0.00630114 0.00528861 0.731599 0.681686 uwb: 0.0 1112.12 1463.47 +imu_odom_: 1691062548.474339600 0.481235 -0.160412 10.0963 -0.0479369 -0.0106526 0.0308927 0.19 0 pose: 0.49023898 -4.69055 -2.15299 0 -0.00664726 0.003427 0.731724 0.68156 uwb: 0.0 1112.12 1463.47 +imu_odom_: 1691062548.491341177 0.639252 -0.378284 9.69412 -0.0777643 -0.0458064 0.0468716 0.19 0 pose: 0.0 -4.69055 -2.15299 0 -0.00664726 0.003427 0.731724 0.68156 uwb: 0.50044353 1112.62 1463.76 +imu_odom_: 1691062548.508353837 1.09415 -0.280122 9.69173 -0.0841559 -0.0596548 0.04048 0.16 -0.08 pose: 0.42988069 -4.68154 -2.14866 0 -0.00437286 0.000411464 0.731795 0.681511 uwb: 0.0 1112.62 1463.76 +imu_odom_: 1691062548.525406159 1.68552 -0.579397 9.67497 -0.0394148 0.00106526 -0.0990696 0.16 -0.08 pose: 0.0 -4.68154 -2.14866 0 -0.00437286 0.000411464 0.731795 0.681511 uwb: 0.49798208 1109.81 1464.56 +imu_odom_: 1691062548.542483855 1.75734 -0.0335188 10.1035 -0.0607201 0.0319579 -0.185356 0.19 -0.44 pose: 0.43029773 -4.68588 -2.13965 0 -0.00147456 -0.00355234 0.73101 0.682356 uwb: 0.0 1109.81 1464.56 +imu_odom_: 1691062548.558531762 1.21147 0.148441 9.62708 -0.0511327 -0.0415453 -0.255663 0.19 -0.44 pose: 0.0 -4.68588 -2.13965 0 -0.00147456 -0.00355234 0.73101 0.682356 uwb: 0.0 1109.81 1464.56 +imu_odom_: 1691062548.575522549 1.35512 0.141258 9.94791 -0.0490022 -0.0138484 -0.378169 0.19 -0.44 pose: 0.0 -4.68588 -2.13965 0 -0.00147456 -0.00355234 0.73101 0.682356 uwb: 0.50099474 1108.57 1464.75 +imu_odom_: 1691062548.592476880 1.34554 0.344765 10.1011 -0.0596548 -0.0170442 -0.427171 0.1 -0.44 pose: 0.7017788 -4.68588 -2.13965 0 -0.000982825-0.00385542 0.730469 0.682934 uwb: 0.0 1108.57 1464.75 +imu_odom_: 1691062548.607471083 0.948104 0.059855 10.0102 -0.0798948 0.0255663 -0.420779 0.1 -0.44 pose: 0.0 -4.68588 -2.13965 0 -0.000982825-0.00385542 0.730469 0.682934 uwb: 0.0 1108.57 1464.75 +imu_odom_: 1691062548.623469119 0.852336 -0.466869 9.72285 -0.0628506 0.0170442 -0.46339 0.1 -0.44 pose: 0.67057305 -4.69028 -2.13067 0 0.00558651 -0.00578232 0.721755 0.692101 uwb: 0.0 1108.57 1464.75 +imu_odom_: 1691062548.638529526 0.751779 -0.141258 10.0556 -0.0543285 0.00106526 -0.477238 0.1 -0.44 pose: 0.0 -4.69028 -2.13067 0 0.00558651 -0.00578232 0.721755 0.692101 uwb: 0.49965026 1102.85 1465.83 +imu_odom_: 1691062548.655494064 0.651223 -0.21069 10.0628 -0.0628506 0.0298274 -0.441019 0.08 -0.47 pose: 0.0 -4.69028 -2.13067 0 0.00558651 -0.00578232 0.721755 0.692101 uwb: 0.0 1102.85 1465.83 +imu_odom_: 1691062548.671499100 0.608127 -0.189142 9.77553 -0.0575243 0.0138484 -0.456998 0.08 -0.47 pose: 0.31008280 -4.69028 -2.13067 0 0.00690028 -0.00750406 0.716407 0.697608 uwb: 0.0 1102.85 1465.83 +imu_odom_: 1691062548.687311943 0.972046 -0.071826 9.79707 -0.0543285 0.00745685 -0.498544 0.07 -0.55 pose: 0.41009568 -4.68125 -2.12626 0 0.00846971 -0.00672628 0.709287 0.704837 uwb: 0.50117848 1101.93 1465.55 +imu_odom_: 1691062548.703307063 0.713472 0.023942 9.90721 -0.0692422 0.00426106 -0.527306 0.07 -0.55 pose: 0.0 -4.68125 -2.12626 0 0.00846971 -0.00672628 0.709287 0.704837 uwb: 0.0 1101.93 1465.55 +imu_odom_: 1691062548.720301349 0.610521 0.220267 10.1131 -0.0660464 -0.0319579 -0.543285 0.07 -0.55 pose: 0.0 -4.68125 -2.12626 0 0.00846971 -0.00672628 0.709287 0.704837 uwb: 0.0 1101.93 1465.55 +imu_odom_: 1691062548.736311926 0.933739 -0.241814 9.95988 -0.0660464 -0.0234358 -0.539024 0.06 -0.58 pose: 0.6822679 -4.68129 -2.12628 0 0.00906685 -0.00698421 0.707985 0.706134 uwb: 0.50001190 1103.2 1465.51 +imu_odom_: 1691062548.752309087 0.718261 -0.354342 9.82341 -0.0671117 -0.0181095 -0.514523 0.08 -0.7 pose: 0.0 -4.68129 -2.12628 0 0.00906685 -0.00698421 0.707985 0.706134 uwb: 0.0 1103.2 1465.51 +imu_odom_: 1691062548.768310623 0.873884 -0.380678 9.84017 -0.0692422 -0.0415453 -0.455933 0.08 -0.7 pose: 0.0 -4.68129 -2.12628 0 0.00906685 -0.00698421 0.707985 0.706134 uwb: 0.0 1103.2 1465.51 +imu_odom_: 1691062548.785313366 0.857124 -0.385466 9.90002 -0.0692422 0.00852212 -0.388822 0.06 -0.5 pose: 0.64996560 -4.68573 -2.11732 0 0.012635 -0.00768866 0.694772 0.719078 uwb: 0.49868493 1102.33 1465.42 +imu_odom_: 1691062548.801364773 0.531513 -0.342371 9.79228 -0.056459 0.00958738 -0.343015 0.06 -0.5 pose: 0.0 -4.68573 -2.11732 0 0.012635 -0.00768866 0.694772 0.719078 uwb: 0.0 1102.33 1465.42 +imu_odom_: 1691062548.818305689 0.509965 -0.105345 9.88326 -0.0596548 -0.0127832 -0.314253 0.06 -0.5 pose: 0.31994031 -4.68573 -2.11732 0 0.0119461 -0.0109743 0.689043 0.724539 uwb: 0.0 1102.33 1465.42 +imu_odom_: 1691062548.834389176 0.483629 -0.0885855 9.83777 -0.0607201 -0.0127832 -0.28123 0.04 -0.32 pose: 0.42993319 -4.68569 -2.1173 0 0.00979598 -0.00986624 0.683105 0.730188 uwb: 0.49988067 1099.47 1465.94 +imu_odom_: 1691062548.851482912 0.641646 -0.356736 10.0197 -0.0585895 -0.0117179 -0.245011 0.04 -0.32 pose: 0.8002080 -4.68573 -2.11732 0 0.00966069 -0.00910774 0.682168 0.731074 uwb: 0.0 1099.47 1465.94 +imu_odom_: 1691062548.868421786 0.663194 -0.347159 9.76595 -0.0585895 -0.00426106 -0.225836 0.04 -0.32 pose: 0.0 -4.68573 -2.11732 0 0.00966069 -0.00910774 0.682168 0.731074 uwb: 0.0 1099.47 1465.94 +imu_odom_: 1691062548.884289458 0.584185 -0.217872 9.95509 -0.056459 -0.00532632 -0.201335 0.03 -0.26 pose: 0.42114017 -4.68573 -2.11732 0 0.00717518 -0.0107815 0.677816 0.735118 uwb: 0.50077309 1100.63 1465.38 +imu_odom_: 1691062548.900441190 0.577003 -0.191536 9.87608 -0.0617853 0.00426106 -0.175769 0.03 -0.2 pose: 0.0 -4.68573 -2.11732 0 0.00717518 -0.0107815 0.677816 0.735118 uwb: 0.0 1100.63 1465.38 +imu_odom_: 1691062548.917471348 0.636858 -0.244209 9.83538 -0.0553937 -0.00532632 -0.162985 0.03 -0.2 pose: 0.0 -4.68573 -2.11732 0 0.00717518 -0.0107815 0.677816 0.735118 uwb: 0.0 1100.63 1465.38 +imu_odom_: 1691062548.934317188 0.656011 -0.208296 9.84496 -0.052198 -0.00319579 -0.160855 0.04 -0.23 pose: 0.22884585 -4.68573 -2.11732 0 0.00677285 -0.00853349 0.67586 0.736949 uwb: 0.50057186 1097.72 1465.71 +imu_odom_: 1691062548.950419632 0.586579 -0.21069 9.82102 -0.0628506 -0.00106526 -0.140615 0.04 -0.23 pose: 0.0 -4.68573 -2.11732 0 0.00677285 -0.00853349 0.67586 0.736949 uwb: 0.0 1097.72 1465.71 +imu_odom_: 1691062548.967354715 0.447716 -0.203507 9.97185 -0.0543285 -0.00319579 -0.135289 0.04 -0.23 pose: 0.34123311 -4.68573 -2.11732 0 0.00776341 -0.00931168 0.67326 0.739306 uwb: 0.0 1097.72 1465.71 +imu_odom_: 1691062548.984312837 0.624887 -0.244209 9.94073 -0.0585895 -0.0234358 -0.122505 0.02 -0.14 pose: 0.41925033 -4.69021 -2.10838 0 0.00649494 -0.00679458 0.670442 0.741903 uwb: 0.49863827 1096.45 1465.69 +imu_odom_: 1691062549.322539 0.787692 -0.25618 9.8665 -0.0607201 -0.0106526 -0.0990696 0.02 -0.14 pose: 0.8002372 -4.69021 -2.10838 0 0.00652698 -0.00765612 0.66996 0.742329 uwb: 0.0 1096.45 1465.69 +imu_odom_: 1691062549.27296537 0.68953 -0.208296 10.0102 -0.0511327 0.036219 -0.0841559 0.01 -0.14 pose: 0.24965452 -4.69021 -2.10838 0 0.00747421 -0.010006 0.668582 0.743533 uwb: 0.50055732 1094.78 1465.84 +imu_odom_: 1691062549.43343572 0.600945 -0.237026 9.84017 -0.0511327 0.015979 -0.0713727 0.01 -0.14 pose: 0.0 -4.69021 -2.10838 0 0.00747421 -0.010006 0.668582 0.743533 uwb: 0.0 1094.78 1465.84 +imu_odom_: 1691062549.60292366 0.663194 -0.23942 10.0556 -0.0628506 -0.0149137 -0.0447411 0.01 -0.02 pose: 0.0 -4.69021 -2.10838 0 0.00747421 -0.010006 0.668582 0.743533 uwb: 0.0 1094.78 1465.84 +imu_odom_: 1691062549.76402104 0.711078 -0.253785 9.85453 -0.0575243 -0.0106526 -0.0255663 0.01 -0.02 pose: 0.50090151 -4.69021 -2.10838 0 0.00802879 -0.0100131 0.666448 0.745441 uwb: 0.0 1094.78 1465.84 +imu_odom_: 1691062549.93435474 0.246603 -0.189142 9.68694 -0.0415453 0.0436758 0.0500674 0.02 0.14 pose: 0.0 -4.69021 -2.10838 0 0.00802879 -0.0100131 0.666448 0.745441 uwb: 0.0 1094.78 1465.84 +imu_odom_: 1691062549.110335855 -0.110133 -0.61531 10.0389 -0.056459 0.0234358 0.207727 0.02 0.14 pose: 0.0 -4.69021 -2.10838 0 0.00802879 -0.0100131 0.666448 0.745441 uwb: 0.0 1094.78 1465.84 +imu_odom_: 1691062549.126333603 0.146046 -0.842759 9.92636 -0.0617853 -0.0415453 0.285491 0.02 0.14 pose: 0.34035534 -4.69021 -2.10838 0 0.00804094 -0.0115602 0.665775 0.746019 uwb: 0.100046148 1094.71 1465.52 +imu_odom_: 1691062549.143334892 0.624887 -0.0981623 9.87369 -0.0340885 -0.02024 0.28336 0.01 0.2 pose: 0.41885379 -4.69016 -2.10836 0 0.0042454 -0.0101494 0.668381 0.743738 uwb: 0.0 1094.71 1465.52 +imu_odom_: 1691062549.159396509 0.61531 0.225055 9.97185 -0.0553937 0.00532632 0.315318 0.01 0.2 pose: 0.7074951 -4.69021 -2.10838 0 0.00490202 -0.00972753 0.669018 0.743167 uwb: 0.0 1094.71 1465.52 +imu_odom_: 1691062549.176333637 0.454898 -0.260968 9.83777 -0.0628506 0 0.309992 0.01 0.2 pose: 0.0 -4.69021 -2.10838 0 0.00490202 -0.00972753 0.669018 0.743167 uwb: 0.49853047 1092.65 1465.79 +imu_odom_: 1691062549.193283306 0.320823 -0.222661 9.89763 -0.0447411 0.00106526 0.287621 0.02 0.29 pose: 0.42925083 -4.69021 -2.10838 0 0.00543119 -0.00713505 0.67325 0.739361 uwb: 0.0 1092.65 1465.79 +imu_odom_: 1691062549.218388751 0.371101 -0.248997 9.91918 -0.0628506 -0.00426106 0.339819 0.02 0.29 pose: 0.0 -4.69021 -2.10838 0 0.00543119 -0.00713505 0.67325 0.739361 uwb: 0.0 1092.65 1465.79 +imu_odom_: 1691062549.233254927 0.287304 -0.222661 9.68455 -0.0490022 0.0181095 0.356864 0.02 0.29 pose: 0.23975624 -4.68124 -2.10397 0 0.00378839 -0.00533114 0.675595 0.737244 uwb: 0.49905251 1089.77 1466.18 +imu_odom_: 1691062549.249252383 -0.469264 -0.232238 9.67976 -0.0660464 0.0884169 0.376038 0.05 0.41 pose: 0.0 -4.68124 -2.10397 0 0.00378839 -0.00533114 0.675595 0.737244 uwb: 0.0 1089.77 1466.18 +imu_odom_: 1691062549.264322417 -0.952892 -0.301669 10.3262 -0.0458064 0.0490022 0.329167 0.05 0.41 pose: 0.0 -4.68124 -2.10397 0 0.00378839 -0.00533114 0.675595 0.737244 uwb: 0.0 1089.77 1466.18 +imu_odom_: 1691062549.281266544 -0.916979 0.117316 9.67736 -0.0575243 -0.0372843 0.273773 0.05 0.41 pose: 0.39952373 -4.68124 -2.10396 0 0.000600471 -0.00217669 0.680206 0.733017 uwb: 0.50122816 1089.31 1465.96 +imu_odom_: 1691062549.297482441 -0.158017 0.248997 9.94791 -0.0681769 -0.0585895 0.257794 0.06 0.26 pose: 0.31096654 -4.68124 -2.10396 0 -0.00188981 0.000688265 0.683514 0.729935 uwb: 0.0 1089.31 1465.96 +imu_odom_: 1691062549.314479355 0.316035 -0.292093 10.1083 -0.0490022 -0.0149137 0.231162 0.06 0.26 pose: 0.0 -4.68124 -2.10396 0 -0.00188981 0.000688265 0.683514 0.729935 uwb: 0.0 1089.31 1465.96 +imu_odom_: 1691062549.331422607 0.438139 -0.512359 10.0772 -0.0553937 0.0106526 0.206661 0.08 0.2 pose: 0.0 -4.68124 -2.10396 0 -0.00188981 0.000688265 0.683514 0.729935 uwb: 0.50089277 1086.37 1465.99 +imu_odom_: 1691062549.348342528 0.141258 -0.378284 10.0628 -0.0500674 -0.0266316 0.224771 0.08 0.2 pose: 0.43121067 -4.68349 -2.09915 0 -0.00339716 0.00180664 0.68683 0.726808 uwb: 0.0 1086.37 1465.99 +imu_odom_: 1691062549.364590214 0.0574608 -0.208296 9.52413 -0.0585895 -0.00532632 0.223706 0.08 0.2 pose: 0.0 -4.68349 -2.09915 0 -0.00339716 0.00180664 0.68683 0.726808 uwb: 0.0 1086.37 1465.99 +imu_odom_: 1691062549.381382979 0.426168 -0.263362 9.66779 -0.0330232 -0.015979 0.197074 0.12 0.17 pose: 0.7955128 -4.68562 -2.09498 0 -0.0037749 0.00113062 0.68731 0.726354 uwb: 0.50011991 1085.93 1465.88 +imu_odom_: 1691062549.398369977 0.402226 -0.117316 10.1011 -0.052198 -0.0213053 0.170442 0.12 0.17 pose: 0.0 -4.68562 -2.09498 0 -0.0037749 0.00113062 0.68731 0.726354 uwb: 0.0 1085.93 1465.88 +imu_odom_: 1691062549.413248693 0.292093 0.0143652 9.39724 -0.0468716 0.00213053 0.171508 0.12 0.17 pose: 0.0 -4.68562 -2.09498 0 -0.0037749 0.00113062 0.68731 0.726354 uwb: 0.0 1085.93 1465.88 +imu_odom_: 1691062549.428378222 0.169988 -0.229843 10.082 -0.052198 0.02024 0.178964 0.11 0.14 pose: 0.49115775 -4.68562 -2.09498 0 -0.00581803 0.00177597 0.690467 0.723339 uwb: 0.50126316 1082.62 1466.14 +imu_odom_: 1691062549.445258480 -0.0167594 -0.301669 9.91199 -0.0479369 0 0.171508 0.15 0.17 pose: 0.0 -4.68562 -2.09498 0 -0.00581803 0.00177597 0.690467 0.723339 uwb: 0.0 1082.62 1466.14 +imu_odom_: 1691062549.462276976 0.110133 -0.366313 9.96946 -0.0479369 0 0.151268 0.15 0.17 pose: 0.63832629 -4.69004 -2.08601 0 -0.0042102 0.00430082 0.693634 0.720302 uwb: 0.0 1082.62 1466.14 +imu_odom_: 1691062549.478253142 0.220267 -0.129287 10.2735 -0.0490022 -0.00426106 0.145941 0.12 0.14 pose: 0.0 -4.69004 -2.08601 0 -0.0042102 0.00430082 0.693634 0.720302 uwb: 0.49725307 1083.03 1466.1 +imu_odom_: 1691062549.494338966 0.703895 0.0143652 10.0437 -0.0436758 -0.076699 0.154463 0.12 0.14 pose: 0.0 -4.69004 -2.08601 0 -0.0042102 0.00430082 0.693634 0.720302 uwb: 0.0 1083.03 1466.1 +imu_odom_: 1691062549.511255970 1.25456 -0.071826 9.70131 -0.0607201 -0.0351537 0.169377 0.12 0.14 pose: 0.33887963 -4.68108 -2.08157 0 -0.00627206 0.00556519 0.695039 0.718923 uwb: 0.0 1083.03 1466.1 +imu_odom_: 1691062549.528250260 1.29526 -0.21069 9.76355 -0.0532632 0 0.185356 0.12 0.08 pose: 0.41985120 -4.68108 -2.08157 0 -0.00222926 0.00410749 0.696862 0.71719 uwb: 0.50091027 1080.91 1465.97 +imu_odom_: 1691062549.545369956 1.21147 -0.399832 9.52892 -0.052198 -0.0575243 0.176834 0.12 0.08 pose: 0.7059786 -4.68108 -2.08157 0 -0.00175098 0.00360817 0.697234 0.716832 uwb: 0.0 1080.91 1465.97 +imu_odom_: 1691062549.562362787 1.69988 -0.0981623 10.0963 -0.0447411 -0.0266316 0.153398 0.12 0.08 pose: 0.0 -4.68108 -2.08157 0 -0.00175098 0.00360817 0.697234 0.716832 uwb: 0.0 1080.91 1465.97 +imu_odom_: 1691062549.578287042 1.13485 -0.0023942 9.71328 -0.0607201 0.052198 0.148072 0.07 0.05 pose: 0.44047031 -4.68552 -2.07261 0 0.00161124 -7.26298e-050.699292 0.714834 uwb: 0.50027741 1081.69 1465.64 +imu_odom_: 1691062549.595356575 0.59855 -0.124498 9.95509 -0.0500674 0.0308927 0.109722 0.09 0.05 pose: 0.0 -4.68552 -2.07261 0 0.00161124 -7.26298e-050.699292 0.714834 uwb: 0.0 1081.69 1465.64 +imu_odom_: 1691062549.612358156 0.392649 -0.143652 9.81383 -0.0500674 -0.00958738 0.052198 0.09 0.05 pose: 0.0 -4.68552 -2.07261 0 0.00161124 -7.26298e-050.699292 0.714834 uwb: 0.0 1081.69 1465.64 +imu_odom_: 1691062549.627371902 0.766145 0.153229 9.9934 -0.0511327 -0.0223706 0.0426106 0.06 0.11 pose: 0.22931836 -4.68552 -2.07261 0 0.00320907 -0.0007716040.700084 0.714053 uwb: 0.50010825 1080.85 1465.6 +imu_odom_: 1691062549.643294990 0.672771 -0.337582 9.73243 -0.0671117 0.00532632 0.0681769 0.06 0.11 pose: 0.0 -4.68552 -2.07261 0 0.00320907 -0.0007716040.700084 0.714053 uwb: 0.0 1080.85 1465.6 +imu_odom_: 1691062549.659255408 0.612916 -0.435745 9.90242 -0.0553937 0.00745685 0.0585895 0.06 0.11 pose: 0.0 -4.68552 -2.07261 0 0.00320907 -0.0007716040.700084 0.714053 uwb: 0.0 1080.85 1465.6 +imu_odom_: 1691062549.676515675 0.536301 -0.11971 9.73004 -0.0490022 0.00745685 0.0809601 0.04 0.05 pose: 0.73960785 -4.68548 -2.07259 0 0.00428475 -0.00262423 0.700703 0.713436 uwb: 0.50009659 1082.48 1465.31 +imu_odom_: 1691062549.693390100 0.533907 -0.25618 10.0748 -0.0596548 0.00426106 0.122505 0.04 0.05 pose: 0.7139404 -4.68552 -2.07261 0 0.00496014 -0.00238689 0.700805 0.713332 uwb: 0.0 1082.48 1465.31 +imu_odom_: 1691062549.720386263 0.701501 -0.0885855 9.85453 -0.0511327 -0.0106526 0.103331 0.05 0.05 pose: 0.26995288 -4.68782 -2.06784 0 0.00488704 -0.0034213 0.701456 0.712688 uwb: 0.0 1082.48 1465.31 +imu_odom_: 1691062549.745340346 -0.102951 -0.215478 9.56962 -0.0639159 0.076699 0.117179 0.03 0.08 pose: 0.0 -4.68782 -2.06784 0 0.00488704 -0.0034213 0.701456 0.712688 uwb: 0.49866462 1083.7 1465.14 +imu_odom_: 1691062549.762341927 -1.06063 -0.337582 10.2615 -0.0639159 0.0735032 0.118244 0.06 0.05 pose: 0.0 -4.68782 -2.06784 0 0.00488704 -0.0034213 0.701456 0.712688 uwb: 0.0 1083.7 1465.14 +imu_odom_: 1691062549.788342132 -0.718261 -0.222661 9.69173 -0.0575243 -0.0713727 0.0958738 0.06 0.05 pose: 0.51950246 -4.68089 -2.05924 0 0.00491996 -0.00189477 0.702755 0.711413 uwb: 0.50007034 1082.94 1465.56 +imu_odom_: 1691062549.814288966 0.543484 -0.215478 9.25359 -0.0553937 -0.0458064 0.0948085 0.11 0.05 pose: 0.24925211 -4.68089 -2.05924 0 0.00268811 -5.68813e-050.703394 0.710796 uwb: 0.0 1082.94 1465.56 +imu_odom_: 1691062549.840250090 0.11971 -0.31364 9.75158 -0.0490022 0.00852212 0.0830906 0.1 0.02 pose: 0.44023409 -4.68085 -2.05922 0 0.0034599 -0.00190337 0.704261 0.70993 uwb: 0.49881628 1080.53 1466.15 +imu_odom_: 1691062549.866288208 -0.332794 -0.167594 10.0078 -0.0351537 -0.0351537 0.0873517 0.13 0.05 pose: 0.7004957 -4.68089 -2.05924 0 0.00281722 -0.00154331 0.704371 0.709825 uwb: 0.0 1080.53 1466.15 +imu_odom_: 1691062549.891330660 0.744597 -0.280122 10.1323 -0.0372843 -0.0127832 0.0788296 0.11 0.05 pose: 0.44994285 -4.68407 -2.05265 0 -0.0001880020.00127226 0.705108 0.709099 uwb: 0.49995368 1082.51 1465.5 +imu_odom_: 1691062549.909349489 0.399832 0 9.5792 -0.0372843 0.0276969 0.0798948 0.11 0.05 pose: 0.0 -4.68407 -2.05265 0 -0.0001880020.00127226 0.705108 0.709099 uwb: 0.0 1082.51 1465.5 +imu_odom_: 1691062549.926277576 0.0287304 -0.268151 9.50498 -0.052198 -0.00319579 0.106526 0.11 0.05 pose: 0.43061281 -4.68524 -2.05023 0 0.00236688 0.00100952 0.705711 0.708496 uwb: 0.50113775 1079.64 1465.88 +imu_odom_: 1691062549.949251991 0.464475 -0.0957681 9.56962 -0.0372843 -0.0372843 0.0798948 0.12 0.05 pose: 0.0 -4.68524 -2.05023 0 0.00236688 0.00100952 0.705711 0.708496 uwb: 0.0 1079.64 1465.88 +imu_odom_: 1691062549.974249529 0.361524 -0.167594 9.99819 -0.0436758 0.0340885 0.0916127 0.12 0.05 pose: 0.39902502 -4.68197 -2.04074 0 0.0036419 0.00187683 0.706436 0.707765 uwb: 0.50040572 1077.62 1466.29 +imu_odom_: 1691062550.247984 -0.0981623 -0.399832 10.1011 -0.0436758 0.0266316 0.0692422 0.17 0.02 pose: 0.0 -4.68197 -2.04074 0 0.0036419 0.00187683 0.706436 0.707765 uwb: 0.0 1077.62 1466.29 +imu_odom_: 1691062550.26212905 0.52433 -0.158017 9.93354 -0.0607201 0.0213053 0.104396 0.14 0.02 pose: 0.50995993 -4.68065 -2.03686 0 -0.00159066 0.00437033 0.707158 0.707041 uwb: 0.50055743 1075.64 1467.02 +imu_odom_: 1691062550.52474426 0.562637 -0.272939 9.97664 -0.0671117 0.00106526 0.0852212 0.14 0.02 pose: 0.0 -4.68065 -2.03686 0 -0.00159066 0.00437033 0.707158 0.707041 uwb: 0.0 1075.64 1467.02 +imu_odom_: 1691062550.77210950 0.442927 -0.124498 10.0628 -0.0543285 0.00319579 0.0820254 0.15 0.05 pose: 0.33022083 -4.68507 -2.02789 0 0.000298999 0.00220193 0.707878 0.706332 uwb: 0.49865890 1074.85 1467.27 +imu_odom_: 1691062550.103349690 -0.0670376 -0.162806 9.68455 -0.0575243 0.00426106 0.0745685 0.15 0.05 pose: 0.26120950 -4.68507 -2.02789 0 0.00141619 0.000599311 0.708293 0.705917 uwb: 0.0 1074.85 1467.27 +imu_odom_: 1691062550.120262324 0.433351 -0.0311246 10.3358 -0.0479369 -0.0255663 0.0681769 0.15 0.05 pose: 0.0 -4.68507 -2.02789 0 0.00141619 0.000599311 0.708293 0.705917 uwb: 0.0 1074.85 1467.27 +imu_odom_: 1691062550.146249701 0.538695 0 9.87848 -0.0617853 -0.0287621 0.0745685 0.15 0.05 pose: 0.25829891 -4.68507 -2.02789 0 0.00243752 0.00186446 0.708655 0.705548 uwb: 0.49953674 1072.78 1467.4 +imu_odom_: 1691062550.172192749 -0.00718261-0.184354 9.80186 -0.0671117 -0.0330232 0.072438 0.16 0.02 pose: 0.0 -4.68507 -2.02789 0 0.00243752 0.00186446 0.708655 0.705548 uwb: 0.0 1072.78 1467.4 +imu_odom_: 1691062550.189208333 0.610521 -0.0263362 10.3597 -0.0649811 0.00213053 0.0703074 0.16 0.02 pose: 0.42019251 -4.68044 -2.01453 0 0.00358306 0.00350131 0.70913 0.70506 uwb: 0.49916635 1071.16 1467.75 +imu_odom_: 1691062550.215188419 0.663194 -0.0191536 10.2975 -0.0639159 0.00213053 0.0500674 0.16 0.02 pose: 0.0 -4.68044 -2.01453 0 0.00358306 0.00350131 0.70913 0.70506 uwb: 0.0 1071.16 1467.75 +imu_odom_: 1691062550.241196212 0.622492 -0.0670376 9.94551 -0.0713727 -0.0181095 0.0617853 0.21 0.02 pose: 0.52150033 -4.68483 -2.00554 0 0.0042045 0.00388819 0.709735 0.704445 uwb: 0.50000628 1072.79 1467.47 +imu_odom_: 1691062550.267184173 0.533907 -0.23942 9.34217 -0.0639159 -0.00958738 0.052198 0.17 0.02 pose: 0.0 -4.68483 -2.00554 0 0.0042045 0.00388819 0.709735 0.704445 uwb: 0.0 1072.79 1467.47 +imu_odom_: 1691062550.284198007 0.234632 -0.0885855 10.2951 -0.056459 -0.00319579 0.052198 0.17 0.02 pose: 0.42807852 -4.68483 -2.00554 0 0.00774791 0.00171844 0.709998 0.704159 uwb: 0.50135950 1073.21 1467.5 +imu_odom_: 1691062550.310257420 0.110133 -0.296881 9.80665 -0.0543285 0.0308927 0.052198 0.2 0.02 pose: 0.0 -4.68483 -2.00554 0 0.00774791 0.00171844 0.709998 0.704159 uwb: 0.0 1073.21 1467.5 +imu_odom_: 1691062550.336333749 -0.205901 -0.102951 10.0628 -0.0383495 0.0585895 0.0458064 0.21 0 pose: 0.52019377 -4.68025 -1.99216 0 0.00711898 -0.00124452 0.710314 0.703848 uwb: 0.50129243 1071.62 1467.99 +imu_odom_: 1691062550.361274422 0.418985 -0.143652 10.6398 -0.0543285 0.00213053 0.0532632 0.21 0 pose: 0.62116328 -4.68466 -1.98318 0 0.00162777 0.00354963 0.710534 0.703652 uwb: 0.0 1071.62 1467.99 +imu_odom_: 1691062550.387286589 0.153229 0.011971 9.61272 -0.0468716 0.00852212 0.0490022 0.2 0 pose: 0.0 -4.68466 -1.98318 0 0.00162777 0.00354963 0.710534 0.703652 uwb: 0.49959215 1069.59 1468.43 +imu_odom_: 1691062550.404226929 0.318429 -0.390255 10.1083 -0.0617853 -0.0170442 0.0553937 0.2 0 pose: 0.8003250 -4.68466 -1.98318 0 0.00209803 0.00293237 0.710576 0.703611 uwb: 0.0 1069.59 1468.43 +imu_odom_: 1691062550.429230888 0.76375 -0.114922 9.73722 -0.052198 -0.0330232 0.052198 0.23 0 pose: 0.0 -4.68466 -1.98318 0 0.00209803 0.00293237 0.710576 0.703611 uwb: 0.49986630 1070.08 1468.88 +imu_odom_: 1691062550.451159188 0.363919 -0.155623 10.2807 -0.0681769 0.0223706 0.0703074 0.23 0 pose: 0.49860932 -4.6801 -1.96979 0 0.00185532 0.00392136 0.710777 0.703404 uwb: 0.0 1070.08 1468.88 +imu_odom_: 1691062550.477162022 0.486023 -0.198719 9.89763 -0.04048 0.0319579 0.0319579 0.18 0.02 pose: 0.0 -4.6801 -1.96979 0 0.00185532 0.00392136 0.710777 0.703404 uwb: 0.49960964 1069.24 1468.89 +imu_odom_: 1691062550.494164482 0.177171 -0.0454898 9.991 -0.0596548 -0.0234358 0.0585895 0.18 0.02 pose: 0.41051581 -4.68453 -1.96082 0 0.00270311 0.00189566 0.711013 0.703171 uwb: 0.0 1069.24 1468.89 +imu_odom_: 1691062550.520158276 0.411803 0.0263362 10.5082 -0.0585895 -0.0553937 0.0394148 0.19 0 pose: 0.0 -4.68453 -1.96082 0 0.00270311 0.00189566 0.711013 0.703171 uwb: 0.0 1069.24 1468.89 +imu_odom_: 1691062550.546167818 0.464475 -0.131681 10.4674 -0.0617853 -0.0308927 0.0585895 0.19 0 pose: 0.48918635 -4.68896 -1.95186 0 0.00189004 0.00161737 0.711165 0.703021 uwb: 0.49932968 1068.84 1469.04 +imu_odom_: 1691062550.571157779 0.713472 -0.1652 10.0365 -0.0426106 0.0127832 0.0340885 0.18 0.02 pose: 0.0 -4.68896 -1.95186 0 0.00189004 0.00161737 0.711165 0.703021 uwb: 0.0 1068.84 1469.04 +imu_odom_: 1691062550.588154697 0.354342 -0.237026 9.96706 -0.0543285 -0.0255663 0.0617853 0.18 0.02 pose: 0.43049041 -4.67999 -1.94743 0 0.00435755 0.0028591 0.71127 0.702899 uwb: 0.49980505 1069.26 1469.05 +imu_odom_: 1691062550.606170614 0.260968 -0.402226 9.84017 -0.0170442 0.0276969 0.0330232 0.19 0 pose: 0.0 -4.67999 -1.94743 0 0.00435755 0.0028591 0.71127 0.702899 uwb: 0.0 1069.26 1469.05 +imu_odom_: 1691062550.630159949 0.47884 0.035913 9.9503 -0.0490022 0.00639159 0.0639159 0.19 0 pose: 0.51962215 -4.68443 -1.93846 0 0.00579193 -0.0007891610.711423 0.70274 uwb: 0.50130992 1068.46 1469.26 +imu_odom_: 1691062550.656218488 0.509965 -0.241814 10.1131 -0.056459 -0.0223706 0.0468716 0.18 0 pose: 0.0 -4.68443 -1.93846 0 0.00579193 -0.0007891610.711423 0.70274 uwb: 0.0 1068.46 1469.26 +imu_odom_: 1691062550.672218281 0.158017 -0.272939 9.56244 -0.0532632 0.0468716 0.0628506 0.18 0 pose: 0.77039085 -4.6799 -1.92506 0 0.00432237 -0.00132913 0.711734 0.702435 uwb: 0.0 1068.46 1469.26 +imu_odom_: 1691062550.699148247 0.162806 -0.263362 9.85214 -0.0511327 0.0340885 0.0394148 0.18 -0.02 pose: 0.6943130 -4.6799 -1.92506 0 0.00358536 -0.0008767330.711793 0.70238 uwb: 0.49993046 1069.7 1469.22 +imu_odom_: 1691062550.724144915 0.270545 -0.323217 9.71806 -0.0830906 0.0319579 0.0607201 0.2 0 pose: 0.35986629 -4.68435 -1.91611 0 -7.0166e-05 0.00140578 0.711868 0.702312 uwb: 0.49742233 1066.42 1469.65 +imu_odom_: 1691062550.741208328 -0.0981623 -0.371101 9.83299 -0.0745685 0.0223706 0.0532632 0.2 0 pose: 0.0 -4.68435 -1.91611 0 -7.0166e-05 0.00140578 0.711868 0.702312 uwb: 0.0 1066.42 1469.65 +imu_odom_: 1691062550.766143168 0.342371 -0.0047884 10.5896 -0.0511327 -0.0138484 0.0372843 0.18 0 pose: 0.42060081 -4.68382 -1.90467 0 -0.00491802 0.00215425 0.712125 0.702032 uwb: 0.0 1066.42 1469.65 +imu_odom_: 1691062550.793167626 0.507571 -0.0622492 10.137 -0.0639159 -0.00745685 0.04048 0.18 0 pose: 0.0 -4.68382 -1.90467 0 -0.00491802 0.00215425 0.712125 0.702032 uwb: 0.50005003 1067.61 1469.22 +imu_odom_: 1691062550.818161087 0.107739 -0.122104 10.2927 -0.0575243 -0.0213053 0.0490022 0.2 0 pose: 0.51959298 -4.68303 -1.8963 0 -0.0001393450.00303249 0.712134 0.702037 uwb: 0.0 1067.61 1469.22 +imu_odom_: 1691062550.845315034 0.486023 -0.294487 9.83299 -0.0543285 0.0245011 0.0351537 0.2 0 pose: 0.0 -4.68303 -1.8963 0 -0.0001393450.00303249 0.712134 0.702037 uwb: 0.0 1067.61 1469.22 +imu_odom_: 1691062550.861459190 0.500388 -0.102951 9.95748 -0.0511327 -0.0117179 0.0383495 0.2 -0.02 pose: 0.32038666 -4.68431 -1.89375 0 -0.00137236 0.00431162 0.712199 0.701963 uwb: 0.0 1067.61 1469.22 +imu_odom_: 1691062550.888150009 1.02951 -0.205901 10.1418 -0.0415453 -0.0234358 0.04048 0.2 -0.02 pose: 0.36252898 -4.68876 -1.88479 0 0.000359212 0.00215968 0.712168 0.702006 uwb: 0.100115580 1067.59 1469.06 +imu_odom_: 1691062550.913152802 0.881066 -0.138864 10.058 -0.056459 -0.00958738 0.04048 0.19 0 pose: 0.0 -4.68876 -1.88479 0 0.000359212 0.00215968 0.712168 0.702006 uwb: 0.0 1067.59 1469.06 +imu_odom_: 1691062550.940220715 0.395043 -0.407014 9.31105 -0.0607201 0.00639159 0.052198 0.23 -0.02 pose: 0.6688526 -4.68876 -1.88479 0 0.000894274 0.00165806 0.712171 0.702003 uwb: 0.49901470 1067.19 1469.23 +imu_odom_: 1691062550.956138848 -0.172383 -0.356736 9.98382 -0.0479369 -0.00106526 0.04048 0.19 0 pose: 0.0 -4.68876 -1.88479 0 0.000894274 0.00165806 0.712171 0.702003 uwb: 0.0 1067.19 1469.23 +imu_odom_: 1691062550.983123059 0.203507 -0.0263362 10.1562 -0.0479369 0.00639159 0.04048 0.19 0 pose: 0.52124952 -4.68427 -1.87138 0 0.00377506 -0.00178295 0.712219 0.701945 uwb: 0.50012586 1064.33 1469.71 +imu_odom_: 1691062551.8244552 0.842759 -0.23942 10.0293 -0.0671117 0.0127832 0.0436758 0.23 0 pose: 0.0 -4.68427 -1.87138 0 0.00377506 -0.00178295 0.712219 0.701945 uwb: 0.0 1064.33 1469.71 +imu_odom_: 1691062551.35129611 0.395043 -0.0550666 10.252 -0.036219 0.0298274 0.04048 0.23 0 pose: 0.42899719 -4.68873 -1.86243 0 0.000482727 -0.0009167990.712326 0.701848 uwb: 0.50013465 1063.92 1469.69 +imu_odom_: 1691062551.61196904 0.21069 -0.320823 9.85932 -0.0372843 -0.0245011 0.0266316 0.23 0 pose: 0.51947344 -4.67978 -1.85797 0 0.00196157 4.19056e-05 0.71237 0.701801 uwb: 0.0 1063.92 1469.69 +imu_odom_: 1691062551.87117501 0.634463 -0.462081 10.0604 -0.0458064 -0.0287621 0.0628506 0.25 0.02 pose: 0.0 -4.67978 -1.85797 0 0.00196157 4.19056e-05 0.71237 0.701801 uwb: 0.50000638 1065.55 1469.4 +imu_odom_: 1691062551.112390069 0.543484 -0.126893 9.98861 -0.036219 -0.015979 0.0394148 0.25 0.02 pose: 0.53139878 -4.68424 -1.84902 0 0.000606627 0.00158487 0.712309 0.701864 uwb: 0.0 1065.55 1469.4 +imu_odom_: 1691062551.129279082 0.586579 0.023942 9.82341 -0.0426106 -0.0383495 0.0500674 0.19 0 pose: 0.0 -4.68424 -1.84902 0 0.000606627 0.00158487 0.712309 0.701864 uwb: 0.50112046 1067.6 1469.15 +imu_odom_: 1691062551.155179265 0.509965 -0.0383072 9.77792 -0.0426106 -0.0308927 0.0340885 0.19 0 pose: 0.61019473 -4.68223 -1.83066 0 0.00541559 -0.0005247180.712512 0.701639 uwb: 0.0 1067.6 1469.15 +imu_odom_: 1691062551.182114194 0.579397 -0.263362 9.77313 -0.0703074 -0.0191748 0.0681769 0.25 0 pose: 0.8053998 -4.68422 -1.82666 0 0.00620731 -0.0001293990.712491 0.701653 uwb: 0.49995973 1065.99 1469.62 +imu_odom_: 1691062551.207186112 0.263362 -0.366313 9.77553 -0.0596548 0.0127832 0.04048 0.18 0 pose: 0.44781114 -4.68422 -1.82666 0 0.00704914 -0.00207524 0.712729 0.701401 uwb: 0.0 1065.99 1469.62 +imu_odom_: 1691062551.234109667 0.919373 -0.131681 9.89045 -0.0596548 -0.0468716 0.0394148 0.23 0 pose: 0.0 -4.68422 -1.82666 0 0.00704914 -0.00207524 0.712729 0.701401 uwb: 0.49678665 1065.18 1469.76 +imu_odom_: 1691062551.250173333 0.76375 -0.011971 10.1394 -0.0553937 0.0170442 0.0426106 0.23 0 pose: 0.32075419 -4.68869 -1.81772 0 0.00500501 -0.00229421 0.712748 0.701398 uwb: 0.0 1065.18 1469.76 +imu_odom_: 1691062551.277168049 0.56982 -0.205901 10.422 -0.0713727 0.00532632 0.0607201 0.19 0 pose: 0.0 -4.68869 -1.81772 0 0.00500501 -0.00229421 0.712748 0.701398 uwb: 0.50134211 1065.2 1469.94 +imu_odom_: 1691062551.302330084 0.536301 -0.0837971 10.0006 -0.0692422 0.00213053 0.0436758 0.19 0 pose: 0.42948141 -4.68422 -1.8043 0 0.00766706 -0.00432045 0.712801 0.701311 uwb: 0.0 1065.2 1469.94 +imu_odom_: 1691062551.319257012 0.430956 -0.287304 9.68215 -0.0692422 0.00958738 0.0447411 0.19 0 pose: 0.0 -4.68422 -1.8043 0 0.00766706 -0.00432045 0.712801 0.701311 uwb: 0.0 1065.2 1469.94 +imu_odom_: 1691062551.344095615 0.440533 -0.158017 9.81862 -0.0585895 -0.00958738 0.0436758 0.18 0.02 pose: 0.52168709 -4.68422 -1.8043 0 0.00625141 -0.00345255 0.713004 0.701123 uwb: 0.0 1065.2 1469.94 +imu_odom_: 1691062551.370098164 0.565032 -0.268151 9.84496 -0.072438 0.0276969 0.0436758 0.18 0.02 pose: 0.0 -4.68422 -1.8043 0 0.00625141 -0.00345255 0.713004 0.701123 uwb: 0.0 1065.2 1469.94 +imu_odom_: 1691062551.395081714 0.553061 -0.280122 9.44273 -0.0596548 0.0138484 0.0436758 0.19 0 pose: 0.34789152 -4.6887 -1.79536 0 0.0042292 -0.00126501 0.713065 0.701084 uwb: 0.100139808 1065.62 1469.93 +imu_odom_: 1691062551.419135799 0.40462 -0.497994 9.59835 -0.0500674 0.04048 0.0330232 0.19 0 pose: 0.7030625 -4.6887 -1.79536 0 0.00408286 -0.00193182 0.713077 0.701071 uwb: 0.0 1065.62 1469.93 +imu_odom_: 1691062551.434078100 0.0430956 -0.325611 9.97424 -0.0340885 0.0149137 0.0372843 0.18 0 pose: 0.0 -4.6887 -1.79536 0 0.00408286 -0.00193182 0.713077 0.701071 uwb: 0.49823028 1068.12 1469.79 +imu_odom_: 1691062551.458143268 0.344765 -0.191536 10.3142 -0.0532632 0.0138484 0.0458064 0.18 0 pose: 0.50978807 -4.68424 -1.78194 0 0.0024871 -0.00620283 0.713131 0.700999 uwb: 0.0 1068.12 1469.79 +imu_odom_: 1691062551.485079364 0.703895 -0.474052 9.91199 -0.0511327 0.00639159 0.0436758 0.23 0 pose: 0.0 -4.68424 -1.78194 0 0.0024871 -0.00620283 0.713131 0.700999 uwb: 0.50123421 1072.26 1469.46 +imu_odom_: 1691062551.501079743 -0.047884 -0.306458 9.81862 -0.056459 0.0276969 0.04048 0.23 0 pose: 0.39040133 -4.68872 -1.773 0 -0.000596583-0.00450151 0.713117 0.70103 uwb: 0.0 1072.26 1469.46 +imu_odom_: 1691062551.518148409 0.687136 0.011971 10.5919 -0.0532632 -0.0553937 0.0415453 0.25 0 pose: 0.0 -4.68872 -1.773 0 -0.000596583-0.00450151 0.713117 0.70103 uwb: 0.0 1072.26 1469.46 +imu_odom_: 1691062551.544089421 0.893037 -0.155623 10.3669 -0.0617853 -0.0234358 0.056459 0.25 0 pose: 0.51942102 -4.68427 -1.75958 0 -0.00121039 -0.0045813 0.713195 0.70095 uwb: 0.49950476 1074.72 1469.09 +imu_odom_: 1691062551.571140716 0.826 -0.213084 10.0389 -0.0671117 -0.0117179 0.0426106 0.25 0 pose: 0.0 -4.68427 -1.75958 0 -0.00121039 -0.0045813 0.713195 0.70095 uwb: 0.0 1074.72 1469.09 +imu_odom_: 1691062551.596063312 0.885855 -0.260968 9.89524 -0.0628506 -0.015979 0.0447411 0.25 0 pose: 0.33101417 -4.68427 -1.75958 0 0.000870639 -0.00451717 0.713254 0.70089 uwb: 0.50004138 1075.53 1468.92 +imu_odom_: 1691062551.623061820 0.73502 -0.25618 9.93354 -0.0735032 -0.0149137 0.0458064 0.23 -0.02 pose: 0.0 -4.68427 -1.75958 0 0.000870639 -0.00451717 0.713254 0.70089 uwb: 0.0 1075.53 1468.92 +imu_odom_: 1691062551.648115947 0.521936 -0.423774 9.93833 -0.056459 -0.0383495 0.0276969 0.18 -0.02 pose: 0.53097007 -4.68875 -1.75064 0 0.00523788 -0.00797897 0.713367 0.700725 uwb: 0.49934728 1068.61 1469.81 +imu_odom_: 1691062551.675074792 0.804452 -0.258574 10.1011 -0.0500674 -0.00958738 0.0458064 0.18 -0.02 pose: 0.51787532 -4.6843 -1.73722 0 0.0075867 -0.0115884 0.713386 0.700635 uwb: 0.49974974 1066.51 1469.81 +imu_odom_: 1691062551.700191914 0.56982 0.0287304 10.4986 -0.0330232 0.0117179 0.036219 0.19 0 pose: 0.0 -4.6843 -1.73722 0 0.0075867 -0.0115884 0.713386 0.700635 uwb: 0.0 1066.51 1469.81 +imu_odom_: 1691062551.727071431 0.442927 -0.418985 9.4954 -0.0735032 0.052198 0.0436758 0.19 0 pose: 0.69118676 -4.68879 -1.72828 0 0.00939364 -0.0104577 0.713324 0.700693 uwb: 0.50007638 1064.42 1469.91 +imu_odom_: 1691062551.752117393 0.493206 -0.418985 9.67736 -0.056459 0.0372843 0.056459 0.2 0 pose: 0.7891261 -4.68879 -1.72828 0 0.00839791 -0.010292 0.713348 0.700684 uwb: 0.0 1064.42 1469.91 +imu_odom_: 1691062551.769056569 0.847547 -0.217872 9.86172 -0.0639159 -0.0447411 0.0394148 0.2 0 pose: 0.0 -4.68879 -1.72828 0 0.00839791 -0.010292 0.713348 0.700684 uwb: 0.0 1064.42 1469.91 +imu_odom_: 1691062551.794061409 0.191536 0.0335188 9.30866 -0.0713727 -0.00532632 0.0436758 0.22 0 pose: 0.44034218 -4.68435 -1.71486 0 0.00312755 -0.00979355 0.713576 0.700502 uwb: 0.50054593 1061.95 1470.12 +imu_odom_: 1691062551.821057875 0.380678 -0.0742203 9.73243 -0.0798948 -0.0426106 0.0490022 0.23 0 pose: 0.41944016 -4.68884 -1.70592 0 0.00440394 -0.00849176 0.713601 0.700488 uwb: 0.0 1061.95 1470.12 +imu_odom_: 1691062551.838050713 0.794875 -0.483629 9.48343 -0.0777643 0.0191748 0.0372843 0.23 0 pose: 0.0 -4.68884 -1.70592 0 0.00440394 -0.00849176 0.713601 0.700488 uwb: 0.50109713 1063.99 1469.78 +imu_odom_: 1691062551.863115632 0.481235 -0.143652 9.72285 -0.0372843 -0.00852212 0.036219 0.23 0 pose: 0.43989304 -4.68636 -1.69841 0 0.00427447 -0.00808389 0.713674 0.700419 uwb: 0.0 1063.99 1469.78 +imu_odom_: 1691062551.886058851 0.126893 -0.25618 9.95748 -0.0447411 -0.02024 0.0500674 0.27 0 pose: 0.0 -4.68636 -1.69841 0 0.00427447 -0.00808389 0.713674 0.700419 uwb: 0.49971183 1059.44 1470.14 +imu_odom_: 1691062551.911063399 0.215478 -0.143652 9.64624 -0.0426106 -0.00852212 0.0266316 0.19 0 pose: 0.48008138 -4.68744 -1.68647 0 0.00331565 -0.00404194 0.713743 0.700389 uwb: 0.0 1059.44 1470.14 +imu_odom_: 1691062551.928050405 0.61531 -0.311246 9.69652 -0.052198 -0.0117179 0.0468716 0.19 0 pose: 0.0 -4.68744 -1.68647 0 0.00331565 -0.00404194 0.713743 0.700389 uwb: 0.49877273 1060.71 1470.24 +imu_odom_: 1691062551.954037205 0.263362 -0.215478 9.40203 -0.0394148 0.02024 0.0340885 0.18 -0.02 pose: 0.41991554 -4.6889 -1.68356 0 0.00266475 -0.00347486 0.713677 0.700461 uwb: 0.0 1060.71 1470.24 +imu_odom_: 1691062551.981049420 0.229843 -0.521936 9.28232 -0.0585895 0.0266316 0.0532632 0.18 -0.02 pose: 0.8069746 -4.6889 -1.68356 0 0.00209091 -0.00276728 0.713664 0.700479 uwb: 0.49980516 1059.46 1470.25 +imu_odom_: 1691062552.6046386 0.385466 -0.167594 9.75398 -0.0436758 -0.0266316 0.0383495 0.2 0 pose: 0.17917054 -4.68572 -1.67394 0 0.000816821 -0.00119625 0.713634 0.700517 uwb: 0.0 1059.46 1470.25 +imu_odom_: 1691062552.32057106 0.0143652 -0.378284 9.87608 -0.0479369 -0.0127832 0.0394148 0.2 0 pose: 0.35054838 -4.68446 -1.67014 0 -0.00154337 -0.0009114810.713763 0.700385 uwb: 0.50296952 1062.76 1469.9 +imu_odom_: 1691062552.57121154 0.280122 -0.023942 9.99579 -0.0468716 0.0170442 0.0394148 0.17 -0.02 pose: 0.0 -4.68446 -1.67014 0 -0.00154337 -0.0009114810.713763 0.700385 uwb: 0.0 1062.76 1469.9 +imu_odom_: 1691062552.74044002 0.325611 -0.0861913 10.228 -0.072438 -0.00426106 0.0575243 0.17 -0.02 pose: 0.23994593 -4.68896 -1.6612 0 -0.0008766260.000584713 0.713757 0.700393 uwb: 0.49693549 1063.56 1469.67 +imu_odom_: 1691062552.99039223 0.277727 -0.186748 9.84256 -0.056459 0.0340885 0.0213053 0.21 0.02 pose: 0.51033355 -4.68896 -1.6612 0 -0.001118 0.00424511 0.713798 0.700338 uwb: 0.0 1063.56 1469.67 +imu_odom_: 1691062552.126031903 0.667982 -0.320823 9.73482 -0.0319579 -0.0394148 0.0245011 0.23 0 pose: 0.34919232 -4.68453 -1.64777 0 -0.00329404 0.00572844 0.713687 0.700433 uwb: 0.50138888 1062.75 1469.85 +imu_odom_: 1691062552.142194731 0.565032 -0.0383072 10.07 -0.0298274 -0.00852212 0.0330232 0.23 0 pose: 0.0 -4.68453 -1.64777 0 -0.00329404 0.00572844 0.713687 0.700433 uwb: 0.0 1062.75 1469.85 +imu_odom_: 1691062552.169043923 0.385466 -0.229843 10.0269 -0.0511327 -0.00426106 0.0585895 0.26 -0.02 pose: 0.7065914 -4.68453 -1.64777 0 -0.0028422 0.00506264 0.713653 0.700476 uwb: 0.0 1062.75 1469.85 +imu_odom_: 1691062552.194076474 0.452504 -0.124498 9.38288 -0.0543285 0.0149137 0.052198 0.26 -0.02 pose: 0.0 -4.68453 -1.64777 0 -0.0028422 0.00506264 0.713653 0.700476 uwb: 0.49830621 1058.61 1470.12 +imu_odom_: 1691062552.221019867 0.392649 -0.395043 9.76595 -0.0479369 0.0585895 0.0351537 0.23 -0.02 pose: 0.43942943 -4.68903 -1.63884 0 -0.0001284350.00230781 0.713573 0.700577 uwb: 0.0 1058.61 1470.12 +imu_odom_: 1691062552.237101326 0.126893 0.153229 10.2831 -0.0479369 0.00745685 0.0553937 0.23 -0.02 pose: 0.0 -4.68903 -1.63884 0 -0.0001284350.00230781 0.713573 0.700577 uwb: 0.50012898 1057.8 1470.36 +imu_odom_: 1691062552.264019054 0.00957681 -0.320823 9.79468 -0.0607201 0.0490022 0.052198 0.23 0.02 pose: 0.51081185 -4.68459 -1.62541 0 0.000742885 0.000888422 0.7138 0.700348 uwb: 0.0 1057.8 1470.36 +imu_odom_: 1691062552.290174137 0.0694318 -0.222661 10.2185 -0.0500674 0.0170442 0.0617853 0.23 0.02 pose: 0.44108595 -4.68459 -1.62541 0 -0.0017694 0.00223656 0.713894 0.700248 uwb: 0.50184384 1058.26 1470.66 +imu_odom_: 1691062552.315091489 0.143652 -0.0885855 9.83538 -0.0468716 -0.0138484 0.0340885 0.24 0 pose: 0.0 -4.68459 -1.62541 0 -0.0017694 0.00223656 0.713894 0.700248 uwb: 0.0 1058.26 1470.66 +imu_odom_: 1691062552.338030047 0.373495 -0.232238 9.56723 -0.0660464 0.0138484 0.0585895 0.24 0 pose: 0.51823707 -4.68909 -1.61648 0 -0.00576919 0.00612172 0.714146 0.699946 uwb: 0.49996275 1057.44 1470.81 +imu_odom_: 1691062552.363016519 0.222661 -0.272939 9.37809 -0.0585895 -0.0319579 0.0426106 0.18 0.02 pose: 0.0 -4.68909 -1.61648 0 -0.00576919 0.00612172 0.714146 0.699946 uwb: 0.0 1057.44 1470.81 +imu_odom_: 1691062552.380065648 0.684742 -0.160412 10.2376 -0.0628506 -0.00639159 0.0458064 0.18 0.02 pose: 0.24124084 -4.6936 -1.60756 0 -0.00525807 0.00738025 0.714155 0.699929 uwb: 0.49864160 1057.43 1470.74 +imu_odom_: 1691062552.405045120 0.414197 -0.19393 10.343 -0.0575243 0.02024 0.036219 0.21 0.02 pose: 0.48911948 -4.68918 -1.59412 0 -0.00628438 0.00449845 0.714304 0.699793 uwb: 0.0 1057.43 1470.74 +imu_odom_: 1691062552.430001552 1.0343 -0.131681 10.0533 -0.0798948 0.0191748 0.0532632 0.23 0 pose: 0.0 -4.68918 -1.59412 0 -0.00628438 0.00449845 0.714304 0.699793 uwb: 0.49812540 1054.11 1470.85 +imu_odom_: 1691062552.444007100 0.260968 -0.433351 9.39964 -0.0745685 0.0607201 0.0447411 0.23 0 pose: 0.34947521 -4.68918 -1.59412 0 -0.00351721 0.00290624 0.714312 0.699812 uwb: 0.0 1054.11 1470.85 +imu_odom_: 1691062552.468017736 0.521936 -0.474052 9.03093 -0.0585895 0.0213053 0.0458064 0.23 0 pose: 0.0 -4.68918 -1.59412 0 -0.00351721 0.00290624 0.714312 0.699812 uwb: 0.0 1054.11 1470.85 +imu_odom_: 1691062552.493009165 0.521936 -0.42138 9.53611 -0.0479369 0.0511327 0.0372843 0.18 0 pose: 0.6975214 -4.68918 -1.59412 0 -0.00307951 0.00247982 0.714348 0.69978 uwb: 0.50174760 1048.71 1470.94 +imu_odom_: 1691062552.514052630 0.78051 -0.0814029 9.67976 -0.0585895 0.0149137 0.0436758 0.18 0.02 pose: 0.0 -4.68918 -1.59412 0 -0.00307951 0.00247982 0.714348 0.69978 uwb: 0.0 1048.71 1470.94 +imu_odom_: 1691062552.527998683 0.612916 -0.0837971 10.0844 -0.0692422 0.0319579 0.0500674 0.18 0.02 pose: 0.38994061 -4.68477 -1.58069 0 -0.00382714 0.00046549 0.714472 0.699654 uwb: 0.50023397 1047.06 1471.14 +imu_odom_: 1691062552.552995071 0.0814029 -0.213084 9.6223 -0.0436758 0.0500674 0.0351537 0.18 0.02 pose: 0.0 -4.68477 -1.58069 0 -0.00382714 0.00046549 0.714472 0.699654 uwb: 0.0 1047.06 1471.14 +imu_odom_: 1691062552.569995787 0.253785 -0.102951 10.0485 -0.056459 -0.0127832 0.0458064 0.17 0.02 pose: 0.48053935 -4.68929 -1.57176 0 -0.003847 -0.00314825 0.714478 0.69964 uwb: 0.0 1047.06 1471.14 +imu_odom_: 1691062552.595116123 0.651223 -0.0670376 9.81623 -0.0532632 -0.04048 0.0490022 0.17 0.02 pose: 0.0 -4.68929 -1.57176 0 -0.003847 -0.00314825 0.714478 0.69964 uwb: 0.49903532 1044.61 1471.56 +imu_odom_: 1691062552.619137549 0.799663 -0.169988 10.6566 -0.0660464 -0.00532632 0.0543285 0.18 0 pose: 0.35954563 -4.68929 -1.57176 0 -0.00187742 -0.0025088 0.714537 0.69959 uwb: 0.0 1044.61 1471.56 +imu_odom_: 1691062552.634132057 0.519542 -0.126893 9.76595 -0.0511327 0.00213053 0.0340885 0.18 0 pose: 0.0 -4.68929 -1.57176 0 -0.00187742 -0.0025088 0.714537 0.69959 uwb: 0.50137429 1048.68 1471.07 +imu_odom_: 1691062552.658248850 0.287304 0.0263362 9.97185 -0.0681769 -0.0330232 0.052198 0.18 0 pose: 0.67306424 -4.6894 -1.5494 0 0.000475499 -0.0004119820.714677 0.699454 uwb: 0.0 1048.68 1471.07 +imu_odom_: 1691062552.683133539 0.308852 -0.0981623 9.63427 -0.0596548 -0.0319579 0.0383495 0.18 0 pose: 0.0 -4.6894 -1.5494 0 0.000475499 -0.0004119820.714677 0.699454 uwb: 0.49987234 1046.26 1471.81 +imu_odom_: 1691062552.708093179 0.423774 -0.217872 9.77074 -0.076699 -0.0106526 0.0468716 0.17 0 pose: 0.62815420 -4.69393 -1.54049 0 0.00336107 0.00129927 0.714824 0.699295 uwb: 0.0 1046.26 1471.81 +imu_odom_: 1691062552.734984951 0.646434 -0.339977 9.56484 -0.0596548 -0.0383495 0.0372843 0.2 0 pose: 0.42948442 -4.68827 -1.52953 0 0.00142495 0.000384208 0.71488 0.699245 uwb: 0.49858619 1045.45 1472.03 +imu_odom_: 1691062552.759986588 0.761356 -0.562637 9.46428 -0.0372843 0.0255663 0.0298274 0.2 0 pose: 0.6953632 -4.68953 -1.52704 0 0.00165044 -0.0003892490.714875 0.69925 uwb: 0.0 1045.45 1472.03 +imu_odom_: 1691062552.784969268 0.37589 0.0814029 10.0676 -0.0426106 0.015979 0.056459 0.22 -0.02 pose: 0.44939777 -4.68953 -1.52704 0 0.00202164 -0.00467939 0.714772 0.699339 uwb: 0.49949028 1042.13 1472.14 +imu_odom_: 1691062552.799062309 0.567426 0.0622492 10.6398 -0.0607201 -0.00319579 0.0479369 0.22 -0.02 pose: 0.0 -4.68953 -1.52704 0 0.00202164 -0.00467939 0.714772 0.699339 uwb: 0.0 1042.13 1472.14 +imu_odom_: 1691062552.822997409 0.54109 -0.1652 9.74919 -0.0649811 0.00852212 0.0532632 0.18 0 pose: 0.39075721 -4.68929 -1.51571 0 0.00420998 -0.00148981 0.714953 0.699158 uwb: 0.0 1042.13 1472.14 +imu_odom_: 1691062552.847024668 1.08218 -0.277727 9.88326 -0.0660464 0.0138484 0.0383495 0.18 0 pose: 0.0 -4.68929 -1.51571 0 0.00420998 -0.00148981 0.714953 0.699158 uwb: 0.49943488 1038.45 1472.77 +imu_odom_: 1691062552.863988055 0.0933739 -0.169988 9.45231 -0.0543285 0.0191748 0.0383495 0.18 -0.02 pose: 0.0 -4.68929 -1.51571 0 0.00420998 -0.00148981 0.714953 0.699158 uwb: 0.0 1038.45 1472.77 +imu_odom_: 1691062552.889991775 0.167594 -0.35913 9.74201 -0.0745685 0.0585895 0.0468716 0.18 -0.02 pose: 0.55038773 -4.68967 -1.50468 0 0.00662859 -0.00407962 0.715046 0.699034 uwb: 0.50098349 1039.72 1473.11 +imu_odom_: 1691062552.915092571 0.390255 -0.215478 9.98622 -0.0426106 0.0319579 0.0287621 0.19 -0.02 pose: 0.35890693 -4.69293 -1.49828 0 0.00263007 -0.0020866 0.715127 0.698987 uwb: 0.0 1039.72 1473.11 +imu_odom_: 1691062552.931962048 0.646434 -0.225055 10.0173 -0.0777643 0.0266316 0.0383495 0.19 -0.02 pose: 0.7004378 -4.6942 -1.49577 0 0.00202413 -0.00152705 0.715102 0.699016 uwb: 0.49964485 1036.43 1473.47 +imu_odom_: 1691062552.956169834 0.553061 -0.304064 9.75877 -0.0703074 0.00106526 0.04048 0.18 0 pose: 0.34965895 -4.68897 -1.49311 0 0.00126631 -0.00129141 0.715028 0.699093 uwb: 0.0 1036.43 1473.47 +imu_odom_: 1691062552.981175846 -0.296881 -0.220267 9.6223 -0.0788296 -0.00319579 0.0447411 0.18 0 pose: 0.0 -4.68897 -1.49311 0 0.00126631 -0.00129141 0.715028 0.699093 uwb: 0.50079976 1035.2 1473.7 +imu_odom_: 1691062552.998036574 0.497994 -0.160412 10.2592 -0.0596548 -0.0617853 0.0245011 0.18 0 pose: 0.7019543 -4.68529 -1.49124 0 0.00131421 -0.00201128 0.71503 0.69909 uwb: 0.0 1035.2 1473.7 +imu_odom_: 1691062553.22016007 0.881066 -0.318429 10.1538 -0.056459 -0.0191748 0.0319579 0.18 0 pose: 0.0 -4.68529 -1.49124 0 0.00131421 -0.00201128 0.71503 0.69909 uwb: 0.0 1035.2 1473.7 +imu_odom_: 1691062553.46974778 0.560243 -0.332794 9.46428 -0.0436758 -0.0490022 0.0511327 0.18 0 pose: 0.48986025 -4.68982 -1.48232 0 0.000293075 -0.00221759 0.715047 0.699073 uwb: 0.50145891 1031.07 1474.01 +imu_odom_: 1691062553.71090993 0.577003 -0.0885855 9.63666 -0.0426106 -0.0394148 0.0319579 0.18 0 pose: 0.0 -4.68982 -1.48232 0 0.000293075 -0.00221759 0.715047 0.699073 uwb: 0.0 1031.07 1474.01 +imu_odom_: 1691062553.97091511 0.751779 -0.124498 10.1442 -0.0553937 -0.0234358 0.0394148 0.23 -0.02 pose: 0.41010483 -4.69435 -1.47341 0 0.00291269 -0.0051908 0.714948 0.699152 uwb: 0.49914917 1030.67 1474.28 +imu_odom_: 1691062553.113074690 0.672771 -0.347159 9.4571 -0.0617853 0.0138484 0.02024 0.23 -0.02 pose: 0.0 -4.69435 -1.47341 0 0.00291269 -0.0051908 0.714948 0.699152 uwb: 0.0 1030.67 1474.28 +imu_odom_: 1691062553.139090082 0.126893 -0.203507 9.63427 -0.0628506 0.00958738 0.0553937 0.23 -0.05 pose: 0.49007616 -4.68996 -1.45996 0 0.00601026 -0.00624011 0.714935 0.699138 uwb: 0.49927165 1026.94 1474.38 +imu_odom_: 1691062553.164092307 0.548272 -0.373495 9.4547 -0.0553937 -0.0649811 0.0255663 0.23 -0.05 pose: 0.0 -4.68996 -1.45996 0 0.00601026 -0.00624011 0.714935 0.699138 uwb: 0.0 1026.94 1474.38 +imu_odom_: 1691062553.189979668 0.258574 -0.189142 9.8689 -0.0458064 0.00639159 0.0330232 0.23 0 pose: 0.41998571 -4.68996 -1.45996 0 0.00683781 -0.00782999 0.714857 0.699194 uwb: 0.50070946 1028.19 1474.55 +imu_odom_: 1691062553.214948938 0.483629 -0.0933739 10.2879 -0.0266316 -0.036219 0.0287621 0.2 -0.02 pose: 0.51124066 -4.68557 -1.44652 0 0.00372102 -0.00790977 0.71485 0.699223 uwb: 0.0 1028.19 1474.55 +imu_odom_: 1691062553.230970322 0.428562 -0.440533 9.43315 -0.0628506 0.00532632 0.0639159 0.2 -0.02 pose: 0.0 -4.68557 -1.44652 0 0.00372102 -0.00790977 0.71485 0.699223 uwb: 0.49796218 1025.27 1474.22 +imu_odom_: 1691062553.256076372 0.538695 -0.213084 9.92157 -0.036219 -0.00213053 0.0383495 0.19 0.02 pose: 0.25898152 -4.6901 -1.4376 0 0.00326174 -0.00552772 0.714792 0.699307 uwb: 0.0 1025.27 1474.22 +imu_odom_: 1691062553.280074764 0.270545 -0.208296 9.73961 -0.04048 0.0553937 0.0458064 0.19 0.02 pose: 0.40947782 -4.6901 -1.4376 0 0.00370986 -0.00463685 0.714859 0.699244 uwb: 0.49937956 1024.01 1473.95 +imu_odom_: 1691062553.297997366 0.299275 -0.169988 9.50259 -0.0394148 -0.036219 0.036219 0.19 0.02 pose: 0.0 -4.6901 -1.4376 0 0.00370986 -0.00463685 0.714859 0.699244 uwb: 0.0 1024.01 1473.95 +imu_odom_: 1691062553.321941512 0.584185 -0.162806 9.80904 -0.0596548 -0.00319579 0.0703074 0.23 -0.02 pose: 0.50026033 -4.68571 -1.42416 0 0.00315534 -0.00175393 0.714897 0.699221 uwb: 0.0 1024.01 1473.95 +imu_odom_: 1691062553.347027730 0.402226 -0.0646434 9.56723 -0.0553937 0.0181095 0.0447411 0.23 0 pose: 0.33961193 -4.69023 -1.41524 0 0.00472378 -0.00229587 0.715137 0.698965 uwb: 0.50051697 1020.7 1474.13 +imu_odom_: 1691062553.372136405 -0.35913 -0.296881 9.93594 -0.0617853 0.0447411 0.0553937 0.23 0 pose: 0.0 -4.69023 -1.41524 0 0.00472378 -0.00229587 0.715137 0.698965 uwb: 0.0 1020.7 1474.13 +imu_odom_: 1691062553.387944015 0.622492 0.0167594 10.4244 -0.0490022 -0.0553937 0.0298274 0.18 0 pose: 0.7011670 -4.69023 -1.41524 0 0.00473637 -0.0015428 0.715148 0.698955 uwb: 0.50175936 1014.51 1474.41 +imu_odom_: 1691062553.413056773 0.445322 -0.160412 10.1347 -0.0617853 -0.0426106 0.0639159 0.18 0 pose: 0.0 -4.69023 -1.41524 0 0.00473637 -0.0015428 0.715148 0.698955 uwb: 0.0 1014.51 1474.41 +imu_odom_: 1691062553.438051999 0.596156 -0.0837971 10.1754 -0.056459 -0.0213053 0.0330232 0.19 0 pose: 0.49976745 -4.69477 -1.40633 0 0.00299932 0.00198156 0.715291 0.698817 uwb: 0.49927749 1012.02 1474.53 +imu_odom_: 1691062553.462915111 0.440533 -0.237026 9.75637 -0.0681769 0.00319579 0.0458064 0.19 0 pose: 0.0 -4.69477 -1.40633 0 0.00299932 0.00198156 0.715291 0.698817 uwb: 0.0 1012.02 1474.53 +imu_odom_: 1691062553.476925620 0.351948 -0.0981623 10.1514 -0.056459 0.00852212 0.0351537 0.19 0 pose: 0.42014319 -4.6904 -1.39288 0 0.00400686 -0.00103673 0.715459 0.698643 uwb: 0.0 1012.02 1474.53 +imu_odom_: 1691062553.501062542 0.555455 -0.356736 9.99579 -0.076699 0.00745685 0.0607201 0.19 0 pose: 0.0 -4.6904 -1.39288 0 0.00400686 -0.00103673 0.715459 0.698643 uwb: 0.0 1012.02 1474.53 +imu_odom_: 1691062553.526923071 0.45011 -0.172383 10.0173 -0.0500674 0.00958738 0.0426106 0.22 0 pose: 0.47987160 -4.6904 -1.39288 0 0.00306284 -0.00119176 0.715468 0.698637 uwb: 0.100009193 1011.6 1474.47 +imu_odom_: 1691062553.542909750 0.42138 -0.292093 9.90721 -0.0553937 -0.0372843 0.0458064 0.22 0 pose: 0.0 -4.6904 -1.39288 0 0.00306284 -0.00119176 0.715468 0.698637 uwb: 0.0 1011.6 1474.47 +imu_odom_: 1691062553.569902144 0.787692 -0.0143652 10.343 -0.04048 -0.0703074 0.0351537 0.22 0 pose: 0.73978344 -4.69058 -1.37052 0 0.00183421 -0.00127885 0.715698 0.698407 uwb: 0.0 1011.6 1474.47 +imu_odom_: 1691062553.594901453 0.708684 -0.112527 10.2544 -0.0681769 -0.00106526 0.0500674 0.22 0 pose: 0.8126037 -4.69058 -1.37052 0 0.0028549 -0.00162934 0.715683 0.698418 uwb: 0.49998909 1008.29 1474.61 +imu_odom_: 1691062553.612025829 0.186748 -0.332794 10.1538 -0.0458064 -0.0340885 0.04048 0.23 0.02 pose: 0.0 -4.69058 -1.37052 0 0.0028549 -0.00162934 0.715683 0.698418 uwb: 0.0 1008.29 1474.61 +imu_odom_: 1691062553.636902649 0.407014 -0.184354 9.85453 -0.0553937 -0.0255663 0.0468716 0.23 0.02 pose: 0.43865666 -4.69377 -1.36426 0 0.00732589 -0.00363681 0.715724 0.698336 uwb: 0.49946123 1008.29 1474.44 +imu_odom_: 1691062553.662961203 0.411803 0 9.83538 -0.0479369 -0.00532632 0.0447411 0.23 0 pose: 0.42001196 -4.69205 -1.35211 0 0.00427522 -0.00171876 0.715807 0.698283 uwb: 0.0 1008.29 1474.44 +imu_odom_: 1691062553.688110125 0.720655 0.0215478 10.5225 -0.0596548 0.0308927 0.0511327 0.23 0 pose: 0.0 -4.69205 -1.35211 0 0.00427522 -0.00171876 0.715807 0.698283 uwb: 0.49998034 1008.3 1474.98 +imu_odom_: 1691062553.713028357 0.574608 -0.280122 9.84017 -0.0681769 0.02024 0.0426106 0.22 0 pose: 0.51207476 -4.69077 -1.34816 0 0.00742019 0.000431822 0.71594 0.698123 uwb: 0.0 1008.3 1474.98 +imu_odom_: 1691062553.738985420 0.366313 -0.363919 9.74201 -0.0500674 0.00106526 0.0447411 0.19 -0.02 pose: 0.0 -4.69077 -1.34816 0 0.00742019 0.000431822 0.71594 0.698123 uwb: 0.50027491 1007.46 1474.67 +imu_odom_: 1691062553.764907778 0.723049 -0.31364 9.9934 -0.0703074 -0.0255663 0.0436758 0.19 -0.02 pose: 0.32826995 -4.69532 -1.33926 0 0.00541829 -0.00191165 0.716002 0.698074 uwb: 0.0 1007.46 1474.67 +imu_odom_: 1691062553.780914872 0.248997 -0.222661 9.38527 -0.0340885 0.00852212 0.0234358 0.19 0.02 pose: 0.0 -4.69532 -1.33926 0 0.00541829 -0.00191165 0.716002 0.698074 uwb: 0.49848130 1007.47 1475.02 +imu_odom_: 1691062553.806896433 0.296881 -0.148441 10.2759 -0.0500674 -0.00106526 0.0511327 0.19 0.02 pose: 0.51080904 -4.69098 -1.3258 0 0.00407158 -0.00437449 0.716039 0.698034 uwb: 0.0 1007.47 1475.02 +imu_odom_: 1691062553.829049894 0.471658 0.126893 9.9096 -0.015979 -0.0245011 0.0319579 0.19 0 pose: 0.34878409 -4.69439 -1.31912 0 0.00229056 -0.00125553 0.716103 0.69799 uwb: 0.50031865 1006.23 1475.37 +imu_odom_: 1691062553.844931289 0.299275 -0.342371 9.38527 -0.0543285 0.0191748 0.0468716 0.19 0 pose: 0.6006962 -4.69553 -1.3169 0 0.00286125 -0.0008076730.716085 0.698007 uwb: 0.0 1006.23 1475.37 +imu_odom_: 1691062553.870035590 0.490811 0.136469 10.1442 -0.0458064 -0.0543285 0.0447411 0.19 -0.02 pose: 0.0 -4.69553 -1.3169 0 0.00286125 -0.0008076730.716085 0.698007 uwb: 0.0 1006.23 1475.37 +imu_odom_: 1691062553.886935401 0.842759 -0.344765 9.56005 -0.0628506 0.00319579 0.052198 0.19 -0.02 pose: 0.39037232 -4.69553 -1.3169 0 0.00340617 0.000673125 0.716092 0.697998 uwb: 0.49943498 1006.22 1475.18 +imu_odom_: 1691062553.912017828 0.667982 -0.316035 10.1227 -0.0575243 0.0458064 0.0394148 0.19 0 pose: 0.0 -4.69553 -1.3169 0 0.00340617 0.000673125 0.716092 0.697998 uwb: 0.0 1006.22 1475.18 +imu_odom_: 1691062553.935881773 0.454898 -0.134075 9.57441 -0.0788296 0.0372843 0.0511327 0.19 0 pose: 0.41974072 -4.69119 -1.30344 0 0.00552927 -0.0007299590.716199 0.697874 uwb: 0.50002409 1003.73 1474.69 +imu_odom_: 1691062553.962000698 0.395043 -0.337582 9.07881 -0.0862864 -0.0287621 0.0426106 0.23 0 pose: 0.41967074 -4.69441 -1.29715 0 0.00446982 0.000285981 0.716298 0.697781 uwb: 0.0 1003.73 1474.69 +imu_odom_: 1691062553.986877808 0.342371 -0.366313 9.34457 -0.0713727 0.00745685 0.0394148 0.23 0 pose: 0.7064749 -4.69575 -1.29454 0 0.0038258 -0.0001738890.716307 0.697774 uwb: 0.50115858 999.59 1474.68 +imu_odom_: 1691062554.11920282 0.37589 -0.328006 9.84735 -0.0500674 -0.00319579 0.036219 0.22 -0.02 pose: 0.43931286 -4.6989 -1.28839 0 -0.000587751-0.00197532 0.716334 0.697755 uwb: 0.0 999.59 1474.68 +imu_odom_: 1691062554.37935096 0.629675 -0.112527 10.5441 -0.0511327 -0.0223706 0.0287621 0.22 -0.02 pose: 0.0 -4.6989 -1.28839 0 -0.000587751-0.00197532 0.716334 0.697755 uwb: 0.49890131 997.516 1474.62 +imu_odom_: 1691062554.54934361 0.837971 -0.143652 9.56244 -0.0607201 0.00958738 0.0319579 0.22 0.02 pose: 0.51057288 -4.6947 -1.27466 0 -0.00016939 -0.00297712 0.716203 0.697885 uwb: 0.0 997.516 1474.62 +imu_odom_: 1691062554.79860473 0.234632 -0.392649 9.79947 -0.0500674 -0.0191748 0.0372843 0.22 0.02 pose: 0.0 -4.6947 -1.27466 0 -0.00016939 -0.00297712 0.716203 0.697885 uwb: 0.0 997.516 1474.62 +imu_odom_: 1691062554.105139472 0.342371 -0.169988 9.92875 -0.0511327 -0.0223706 0.0490022 0.19 0 pose: 0.25014187 -4.69598 -1.27218 0 0.000488691 -0.00358007 0.716149 0.697939 uwb: 0.0 997.516 1474.62 +imu_odom_: 1691062554.129922970 0.52433 -0.189142 9.50019 -0.036219 -0.00639159 0.0330232 0.19 0 pose: 0.0 -4.69598 -1.27218 0 0.000488691 -0.00358007 0.716149 0.697939 uwb: 0.99985299 997.516 1474.53 +imu_odom_: 1691062554.146860116 0.414197 -0.296881 9.48583 -0.0681769 0.0138484 0.0490022 0.19 0 pose: 0.49950216 -4.70054 -1.26328 0 8.02183e-05 -0.00110509 0.71621 0.697884 uwb: 0.0 997.516 1474.53 +imu_odom_: 1691062554.171878678 0.701501 -0.37589 9.4164 -0.0607201 -0.00958738 0.0276969 0.19 0 pose: 0.0 -4.70054 -1.26328 0 8.02183e-05 -0.00110509 0.71621 0.697884 uwb: 0.0 997.516 1474.53 +imu_odom_: 1691062554.195858701 0.277727 -0.174777 9.32302 -0.0639159 -0.00213053 0.0553937 0.19 0 pose: 0.41980497 -4.69164 -1.25872 0 0.000300209 -0.00309466 0.716192 0.697897 uwb: 0.50028667 994.619 1474.48 +imu_odom_: 1691062554.217852055 -0.0383072 -0.263362 9.84496 -0.0607201 0.0447411 0.0468716 0.19 0 pose: 0.40978705 -4.6962 -1.24982 0 -7.43706e-05-0.00257594 0.716255 0.697834 uwb: 0.0 994.619 1474.48 +imu_odom_: 1691062554.231858775 0.299275 -0.294487 9.96946 -0.0532632 -0.00852212 0.0223706 0.19 0 pose: 0.0 -4.6962 -1.24982 0 -7.43706e-05-0.00257594 0.716255 0.697834 uwb: 0.49931259 995.036 1474.25 +imu_odom_: 1691062554.254918374 0.203507 -0.385466 9.67018 -0.0330232 -0.0500674 0.0330232 0.19 0 pose: 0.0 -4.6962 -1.24982 0 -7.43706e-05-0.00257594 0.716255 0.697834 uwb: 0.0 995.036 1474.25 +imu_odom_: 1691062554.272850021 0.586579 -0.0574608 10.3262 -0.0330232 -0.015979 0.0330232 0.18 -0.02 pose: 0.7018672 -4.6962 -1.24982 0 -0.00072546 -0.00199223 0.716274 0.697816 uwb: 0.0 995.036 1474.25 +imu_odom_: 1691062554.296847251 0.548272 -0.246603 10.0149 -0.0596548 0.0106526 0.0617853 0.18 -0.02 pose: 0.0 -4.6962 -1.24982 0 -0.00072546 -0.00199223 0.716274 0.697816 uwb: 0.49999503 993.382 1474.35 +imu_odom_: 1691062554.322911060 0.430956 -0.0287304 9.85214 -0.0490022 0.00639159 0.052198 0.19 0 pose: 0.36993991 -4.69186 -1.23636 0 -0.00401209 -0.0002797090.716209 0.697874 uwb: 0.0 993.382 1474.35 +imu_odom_: 1691062554.348012741 0.861913 -0.390255 9.75637 -0.0628506 0.0149137 0.0426106 0.19 0.02 pose: 0.41026827 -4.69642 -1.22746 0 -0.00256937 -0.0006998340.716198 0.697892 uwb: 0.49909093 994.206 1474.74 +imu_odom_: 1691062554.373883483 0.227449 -0.201113 9.84975 -0.0628506 0.0298274 0.0681769 0.19 0.02 pose: 0.0 -4.69642 -1.22746 0 -0.00256937 -0.0006998340.716198 0.697892 uwb: 0.50112078 989.664 1474.4 +imu_odom_: 1691062554.386868579 0.584185 -0.213084 10.5153 -0.0756338 -0.0340885 0.0585895 0.19 0.02 pose: 0.0 -4.69642 -1.22746 0 -0.00256937 -0.0006998340.716198 0.697892 uwb: 0.0 989.664 1474.4 +imu_odom_: 1691062554.410847727 0.567426 -0.102951 9.80904 -0.0553937 -0.0287621 0.0436758 0.2 -0.02 pose: 0.49994253 -4.70098 -1.21856 0 0.000764029 -0.0005517040.716444 0.697644 uwb: 0.0 989.664 1474.4 +imu_odom_: 1691062554.428902739 -0.225055 -0.299275 9.88566 -0.0660464 0.04048 0.052198 0.2 -0.02 pose: 0.0 -4.70098 -1.21856 0 0.000764029 -0.0005517040.716444 0.697644 uwb: 0.49970922 989.662 1474.5 +imu_odom_: 1691062554.452840765 -0.0287304 -0.0670376 9.95748 -0.0596548 0.04048 0.0340885 0.22 -0.02 pose: 0.87972831 -4.69666 -1.2051 0 0.00206748 -0.0007611250.716873 0.6972 uwb: 0.0 989.662 1474.5 +imu_odom_: 1691062554.476837412 0.610521 -0.306458 10.3765 -0.0777643 -0.0106526 0.0553937 0.23 0.02 pose: 0.0 -4.69666 -1.2051 0 0.00206748 -0.0007611250.716873 0.6972 uwb: 0.50044124 992.974 1474.65 +imu_odom_: 1691062554.500841933 0.775721 -0.114922 9.81862 -0.0660464 0.00319579 0.0372843 0.23 0.02 pose: 0.33975490 -4.69969 -1.19922 0 -0.0005346770.00236886 0.71687 0.697203 uwb: 0.0 992.974 1474.65 +imu_odom_: 1691062554.525847372 0.572214 -0.294487 9.69412 -0.0607201 -0.0255663 0.0372843 0.25 0 pose: 0.8136246 -4.70124 -1.19621 0 -0.00029745 0.00152172 0.716916 0.697158 uwb: 0.49950799 991.732 1474.58 +imu_odom_: 1691062554.547894387 0.023942 -0.148441 9.49301 -0.0639159 0.00852212 0.0415453 0.25 0 pose: 0.0 -4.70124 -1.19621 0 -0.00029745 0.00152172 0.716916 0.697158 uwb: 0.0 991.732 1474.58 +imu_odom_: 1691062554.562877527 0.258574 -0.196325 9.87129 -0.076699 -0.0532632 0.0511327 0.18 0 pose: 0.46934923 -4.69692 -1.18274 0 0.00226712 -0.00209092 0.716977 0.69709 uwb: 0.0 991.732 1474.58 +imu_odom_: 1691062554.588985958 0.304064 -0.19393 10.0916 -0.0436758 -0.0149137 0.0372843 0.18 0 pose: 0.0 -4.69692 -1.18274 0 0.00226712 -0.00209092 0.716977 0.69709 uwb: 0.49987545 992.14 1474.99 +imu_odom_: 1691062554.610841073 0.155623 -0.349553 10.2927 -0.0532632 -0.00213053 0.0436758 0.19 0.05 pose: 0.45993791 -4.69692 -1.18274 0 0.000928668 -0.00186489 0.717006 0.697063 uwb: 0.0 992.14 1474.99 +imu_odom_: 1691062554.626823380 0.555455 -0.0263362 10.5848 -0.0330232 -0.0628506 0.0287621 0.19 0.05 pose: 0.0 -4.69692 -1.18274 0 0.000928668 -0.00186489 0.717006 0.697063 uwb: 0.50003003 993.796 1475.37 +imu_odom_: 1691062554.651968224 0.761356 0.0694318 10.0892 -0.0543285 -0.0479369 0.0532632 0.25 0 pose: 0.41933251 -4.69262 -1.16927 0 -0.00131268 0.00105037 0.717032 0.697038 uwb: 0.0 993.796 1475.37 +imu_odom_: 1691062554.676818800 0.723049 -0.0814029 9.28232 -0.0490022 0.0234358 0.0330232 0.25 0 pose: 0.0 -4.69262 -1.16927 0 -0.00131268 0.00105037 0.717032 0.697038 uwb: 0.50003003 994.207 1475.65 +imu_odom_: 1691062554.693943180 0.059855 -0.23942 10.0341 -0.0607201 0.0149137 0.0458064 0.21 0 pose: 0.38988828 -4.6972 -1.16038 0 0.000204179 0.000961438 0.717034 0.697038 uwb: 0.0 994.207 1475.65 +imu_odom_: 1691062554.717963450 0.608127 0.0694318 10.5201 -0.0607201 -0.0511327 0.0447411 0.21 0 pose: 0.0 -4.6972 -1.16038 0 0.000204179 0.000961438 0.717034 0.697038 uwb: 0.0 994.207 1475.65 +imu_odom_: 1691062554.741915184 0.770933 -0.1652 10.5991 -0.0649811 -0.0394148 0.056459 0.2 0 pose: 0.49146157 -4.70178 -1.15149 0 0.00356623 9.89515e-05 0.717073 0.696989 uwb: 0.49984629 992.549 1475.4 +imu_odom_: 1691062554.765905123 0.363919 -0.237026 9.69652 -0.036219 0.00852212 0.0330232 0.2 0 pose: 0.0 -4.70178 -1.15149 0 0.00356623 9.89515e-05 0.717073 0.696989 uwb: 0.0 992.549 1475.4 +imu_odom_: 1691062554.790812569 0.371101 -0.169988 9.97664 -0.0639159 -0.0117179 0.0479369 0.25 0 pose: 0.42003245 -4.69289 -1.14691 0 0.00595249 -0.0001204990.717177 0.696866 uwb: 0.50249149 992.131 1475.53 +imu_odom_: 1691062554.803867951 0.35913 -0.0071826110.1251 -0.0458064 -0.0266316 0.0351537 0.25 0 pose: 0.0 -4.69289 -1.14691 0 0.00595249 -0.0001204990.717177 0.696866 uwb: 0.0 992.131 1475.53 +imu_odom_: 1691062554.818805303 0.521936 -0.153229 9.47386 -0.072438 -0.00213053 0.0458064 0.25 0 pose: 0.0 -4.69289 -1.14691 0 0.00595249 -0.0001204990.717177 0.696866 uwb: 0.0 992.131 1475.53 +imu_odom_: 1691062554.844796202 0.258574 -0.155623 9.56484 -0.0372843 0.0191748 0.0266316 0.17 0 pose: 0.48082828 -4.69748 -1.13802 0 0.00416884 -0.0003331550.71725 0.696803 uwb: 0.49648365 989.647 1475.18 +imu_odom_: 1691062554.868842428 0.19393 -0.172383 10.1634 -0.0479369 0.00745685 0.0553937 0.2 0 pose: 0.70736168 -4.6991 -1.11985 0 0.00233524 0.0027424 0.717189 0.69687 uwb: 0.0 989.647 1475.18 +imu_odom_: 1691062554.894851117 0.459687 0.0263362 9.96227 -0.0340885 -0.0117179 0.0330232 0.2 0 pose: 0.0 -4.6991 -1.11985 0 0.00233524 0.0027424 0.717189 0.69687 uwb: 0.50108869 990.059 1475.35 +imu_odom_: 1691062554.917948630 0.184354 -0.241814 9.54808 -0.0660464 -0.0117179 0.0585895 0.17 0 pose: 0.8082001 -4.69776 -1.11566 0 0.00166711 0.00327001 0.717231 0.696825 uwb: 0.0 990.059 1475.35 +imu_odom_: 1691062554.935818740 0.416591 0.0407014 10.1442 -0.0532632 -0.0245011 0.0415453 0.17 0 pose: 0.0 -4.69776 -1.11566 0 0.00166711 0.00327001 0.717231 0.696825 uwb: 0.49980838 989.223 1475.59 +imu_odom_: 1691062554.960873174 0.658405 -0.282516 10.3525 -0.0639159 -0.00745685 0.0585895 0.19 0 pose: 0.49022791 -4.69776 -1.11566 0 0.00243643 0.00511774 0.7173 0.696741 uwb: 0.0 989.223 1475.59 +imu_odom_: 1691062554.984812951 0.746991 0.0646434 10.2927 -0.0617853 -0.0543285 0.0426106 0.19 0 pose: 0.0 -4.69776 -1.11566 0 0.00243643 0.00511774 0.7173 0.696741 uwb: 0.50065123 987.964 1476.05 +imu_odom_: 1691062555.7835512 0.579397 0.0502782 10.7835 -0.0788296 -0.0266316 0.0585895 0.27 -0.02 pose: 0.42934753 -4.70235 -1.10678 0 0.00283261 0.00490136 0.71748 0.696557 uwb: 0.0 987.964 1476.05 +imu_odom_: 1691062555.24945897 0.538695 -0.244209 9.44752 -0.0905475 -0.036219 0.0468716 0.27 -0.02 pose: 0.0 -4.70235 -1.10678 0 0.00283261 0.00490136 0.71748 0.696557 uwb: 0.50068626 988.794 1476.03 +imu_odom_: 1691062555.40791135 0.665588 -0.593762 9.92636 -0.0639159 0.0436758 0.04048 0.18 0 pose: 0.47110491 -4.69806 -1.0933 0 0.00656567 0.00211716 0.717662 0.696357 uwb: 0.0 988.794 1476.03 +imu_odom_: 1691062555.63960396 0.37589 -0.37589 9.80904 -0.0479369 0.0340885 0.0394148 0.18 0 pose: 0.0 -4.69806 -1.0933 0 0.00656567 0.00211716 0.717662 0.696357 uwb: 0.0 988.794 1476.03 +imu_odom_: 1691062555.80907753 0.122104 -0.146046 10.0796 -0.0383495 -0.00426106 0.0436758 0.18 0 pose: 0.0 -4.69806 -1.0933 0 0.00656567 0.00211716 0.717662 0.696357 uwb: 0.50045301 988.373 1476.23 +imu_odom_: 1691062555.105049059 0.505177 -0.126893 10.3022 -0.0532632 -0.00852212 0.0298274 0.24 0 pose: 0.40890343 -4.70266 -1.08442 0 0.00687624 -0.0005071130.717823 0.696191 uwb: 0.0 988.373 1476.23 +imu_odom_: 1691062555.129837229 0.64404 -0.112527 10.2783 -0.0575243 -0.0149137 0.0426106 0.21 0 pose: 0.72212478 -4.69839 -1.07094 0 0.00534758 -0.0002752330.717782 0.696247 uwb: 0.49770282 987.119 1476.43 +imu_odom_: 1691062555.143782999 0.366313 -0.287304 9.48343 -0.0617853 -0.0117179 0.0415453 0.21 0 pose: 0.0 -4.69839 -1.07094 0 0.00534758 -0.0002752330.717782 0.696247 uwb: 0.0 987.119 1476.43 +imu_odom_: 1691062555.167854311 0.895431 -0.189142 10.1466 -0.04048 -0.036219 0.04048 0.21 0 pose: 0.0 -4.69839 -1.07094 0 0.00534758 -0.0002752330.717782 0.696247 uwb: 0.0 987.119 1476.43 +imu_odom_: 1691062555.191762011 0.948104 -0.21069 10.1394 -0.0607201 -0.0170442 0.036219 0.17 0.02 pose: 0.7833814 -4.69839 -1.07094 0 0.00602681 -0.0007406390.717789 0.696235 uwb: 0.50027803 986.276 1476.76 +imu_odom_: 1691062555.208758363 0.296881 -0.1652 9.50977 -0.0468716 -0.0191748 0.0426106 0.17 0.02 pose: 0.0 -4.69839 -1.07094 0 0.00602681 -0.0007406390.717789 0.696235 uwb: 0.0 986.276 1476.76 +imu_odom_: 1691062555.232776597 0.071826 -0.486023 9.78271 -0.0553937 0.0394148 0.0447411 0.26 -0.02 pose: 0.38960838 -4.70299 -1.06206 0 0.00676849 -0.0024344 0.717819 0.696192 uwb: 0.49999221 983.351 1477 +imu_odom_: 1691062555.249767991 0.354342 0.00718261 10.3693 -0.0340885 -0.0372843 0.0266316 0.26 -0.02 pose: 0.0 -4.70299 -1.06206 0 0.00676849 -0.0024344 0.717819 0.696192 uwb: 0.0 983.351 1477 +imu_odom_: 1691062555.274842845 0.536301 -0.205901 10.2663 -0.0639159 -0.00532632 0.0553937 0.21 0 pose: 0.47924475 -4.70299 -1.06206 0 0.00909781 -0.00524437 0.717792 0.696178 uwb: 0.50153209 982.933 1477.03 +imu_odom_: 1691062555.300842499 0.754174 -0.167594 9.55287 -0.0500674 -0.00852212 0.0223706 0.23 -0.02 pose: 0.40019209 -4.69871 -1.04858 0 0.00594037 -0.00309652 0.717838 0.696177 uwb: 0.0 982.933 1477.03 +imu_odom_: 1691062555.324764490 0.459687 -0.294487 9.56005 -0.0511327 0.0106526 0.036219 0.23 -0.02 pose: 0.0 -4.69871 -1.04858 0 0.00594037 -0.00309652 0.717838 0.696177 uwb: 0.49915811 982.932 1477.05 +imu_odom_: 1691062555.349769933 0.349553 -0.0311246 9.83538 -0.0287621 0.0127832 0.0298274 0.18 0 pose: 0.43011171 -4.70331 -1.03971 0 0.00558566 -0.00487387 0.717887 0.69612 uwb: 0.0 982.932 1477.05 +imu_odom_: 1691062555.372775292 0.349553 -0.158017 10.4244 -0.052198 -0.015979 0.0596548 0.18 0 pose: 0.0 -4.70331 -1.03971 0 0.00558566 -0.00487387 0.717887 0.69612 uwb: 0.0 982.932 1477.05 +imu_odom_: 1691062555.388850636 0.0837971 -0.237026 9.63187 -0.0458064 -0.0298274 0.0394148 0.18 0 pose: 0.50045301 -4.69904 -1.02623 0 0.00469939 -0.00454198 0.717734 0.696287 uwb: 0.49785739 985.829 1477.45 +imu_odom_: 1691062555.414796336 0.493206 -0.304064 9.81383 -0.0479369 0.0308927 0.0479369 0.18 0 pose: 0.0 -4.69904 -1.02623 0 0.00469939 -0.00454198 0.717734 0.696287 uwb: 0.0 985.829 1477.45 +imu_odom_: 1691062555.439798571 0.241814 -0.162806 10.0365 -0.0426106 0.0319579 0.0415453 0.18 -0.02 pose: 0.47071129 -4.69904 -1.02623 0 0.0030062 -0.0004268870.71784 0.696202 uwb: 0.50036552 984.155 1477.61 +imu_odom_: 1691062555.464764643 0.174777 -0.215478 10.1706 -0.0713727 -0.0117179 0.0660464 0.18 -0.02 pose: 0.0 -4.69904 -1.02623 0 0.0030062 -0.0004268870.71784 0.696202 uwb: 0.0 984.155 1477.61 +imu_odom_: 1691062555.480852237 0.486023 -0.153229 10.1801 -0.056459 -0.0298274 0.0436758 0.18 0 pose: 0.42001504 -4.70364 -1.01735 0 0.000877711 -0.00128207 0.717926 0.696118 uwb: 0.49983765 983.719 1478.16 +imu_odom_: 1691062555.506783646 0.538695 -0.318429 9.9934 -0.072438 0.0340885 0.0575243 0.18 0 pose: 0.0 -4.70364 -1.01735 0 0.000877711 -0.00128207 0.717926 0.696118 uwb: 0.0 983.719 1478.16 +imu_odom_: 1691062555.531906038 0.299275 -0.0742203 10.2185 -0.0575243 0.0340885 0.0383495 0.19 0 pose: 0.49857192 -4.69937 -1.00387 0 -0.00135114 0.00174477 0.718177 0.695857 uwb: 0.50029552 985.795 1478.63 +imu_odom_: 1691062555.548761527 0.244209 -0.3304 9.94551 -0.076699 0.00532632 0.0585895 0.19 0 pose: 0.0 -4.69937 -1.00387 0 -0.00135114 0.00174477 0.718177 0.695857 uwb: 0.0 985.795 1478.63 +imu_odom_: 1691062555.573897335 0.737414 -0.191536 9.8258 -0.0607201 -0.0383495 0.0298274 0.18 0 pose: 0.43161659 -4.70398 -0.994993 0 -0.000476874-0.0001268290.718351 0.695681 uwb: 0.50198997 984.955 1478.72 +imu_odom_: 1691062555.596884319 0.0454898 -0.289698 9.59357 -0.0777643 0.00639159 0.0426106 0.18 0 pose: 0.0 -4.70398 -0.994993 0 -0.000476874-0.0001268290.718351 0.695681 uwb: 0.0 984.955 1478.72 +imu_odom_: 1691062555.622950176 0.577003 -0.260968 9.62708 -0.0681769 -0.056459 0.0351537 0.25 0.02 pose: 0.42000337 -4.70398 -0.994993 0 -0.00158922 0.000989675 0.718424 0.695603 uwb: 0.0 984.955 1478.72 +imu_odom_: 1691062555.647911873 0.723049 -0.270545 10.0604 -0.0703074 0.00106526 0.0436758 0.19 0 pose: 0.48273864 -4.69972 -0.981506 0 -0.00165368 -2.52391e-060.718378 0.695651 uwb: 0.49871482 983.293 1478.41 +imu_odom_: 1691062555.673777371 0.574608 -0.320823 9.34217 -0.0660464 0.015979 0.04048 0.19 0 pose: 0.0 -4.69972 -0.981506 0 -0.00165368 -2.52391e-060.718378 0.695651 uwb: 0.49982306 981.21 1478.26 +imu_odom_: 1691062555.687895210 0.0933739 -0.280122 9.59596 -0.0713727 0.0170442 0.0468716 0.19 0 pose: 0.0 -4.69972 -0.981506 0 -0.00165368 -2.52391e-060.718378 0.695651 uwb: 0.0 981.21 1478.26 +imu_odom_: 1691062555.705968015 0.584185 -0.0574608 10.5967 -0.0394148 -0.0596548 0.0351537 0.18 -0.02 pose: 0.74699023 -4.70434 -0.972634 0 0.000918563 -0.00577705 0.718396 0.69561 uwb: 0.0 981.21 1478.26 +imu_odom_: 1691062555.722893207 0.220267 -0.148441 9.26795 -0.0617853 0.0308927 0.0500674 0.18 -0.02 pose: 0.0 -4.70434 -0.972634 0 0.000918563 -0.00577705 0.718396 0.69561 uwb: 0.0 981.21 1478.26 +imu_odom_: 1691062555.746874110 0.543484 -0.292093 9.95509 -0.0532632 -0.00639159 0.04048 0.26 0.02 pose: 0.42984632 -4.70009 -0.959147 0 0.00137298 -0.00307896 0.718455 0.695565 uwb: 0.49935060 980.367 1478.41 +imu_odom_: 1691062555.763793760 0.797269 -0.529119 9.44513 -0.0671117 0 0.0436758 0.26 0.02 pose: 0.0 -4.70009 -0.959147 0 0.00137298 -0.00307896 0.718455 0.695565 uwb: 0.0 980.367 1478.41 +imu_odom_: 1691062555.788846741 0.483629 -0.191536 10.2759 -0.0372843 0.02024 0.0394148 0.18 0 pose: 0.7884851 -4.70009 -0.959147 0 0.00155057 -0.00384991 0.718456 0.69556 uwb: 0.49949934 979.948 1478.44 +imu_odom_: 1691062555.813751860 0.770933 0.0526724 10.2879 -0.0553937 0.0181095 0.052198 0.23 0 pose: 0.0 -4.70009 -0.959147 0 0.00155057 -0.00384991 0.718456 0.69556 uwb: 0.0 979.948 1478.44 +imu_odom_: 1691062555.836723387 0.519542 -0.1652 9.78031 -0.0458064 -0.0330232 0.0415453 0.18 0 pose: 0.66023821 -4.70932 -0.941408 0 0.00338251 -0.0042842 0.718506 0.695499 uwb: 0.50069215 979.517 1478.73 +imu_odom_: 1691062555.861717165 0.263362 0.00957681 9.93594 -0.072438 -0.0426106 0.0500674 0.18 0 pose: 0.0 -4.70932 -0.941408 0 0.00338251 -0.0042842 0.718506 0.695499 uwb: 0.0 979.517 1478.73 +imu_odom_: 1691062555.878825800 0.428562 -0.378284 9.75398 -0.0596548 -0.00213053 0.0500674 0.18 0.02 pose: 0.49004136 -4.70045 -0.936788 0 0.00641643 -0.00159515 0.718605 0.695387 uwb: 0.50098964 979.52 1478.66 +imu_odom_: 1691062555.894763197 0.507571 -0.126893 9.81862 -0.0543285 -0.0234358 0.0394148 0.18 0.02 pose: 0.0 -4.70045 -0.936788 0 0.00641643 -0.00159515 0.718605 0.695387 uwb: 0.0 979.52 1478.66 +imu_odom_: 1691062555.918869215 0.873884 -0.356736 9.52653 -0.0671117 -0.00958738 0.0298274 0.25 0 pose: 0.48957182 -4.70508 -0.92792 0 0.00629384 -0.0008625050.718719 0.695272 uwb: 0.0 979.52 1478.66 +imu_odom_: 1691062555.935764950 0.490811 -0.143652 9.62708 -0.0447411 0.0340885 0.0298274 0.25 0 pose: 0.0 -4.70508 -0.92792 0 0.00629384 -0.0008625050.718719 0.695272 uwb: 0.49953433 979.095 1478.8 +imu_odom_: 1691062555.961740398 0.648829 -0.351948 9.58638 -0.052198 -0.00852212 0.04048 0.18 -0.02 pose: 0.8193118 -4.70508 -0.92792 0 0.00650674 -0.00169905 0.718692 0.695296 uwb: 0.0 979.095 1478.8 +imu_odom_: 1691062555.987787589 0.397437 -0.23942 9.62469 -0.0628506 0.00426106 0.056459 0.25 0 pose: 0.0 -4.70508 -0.92792 0 0.00650674 -0.00169905 0.718692 0.695296 uwb: 0.50109171 976.982 1479.25 +imu_odom_: 1691062556.715526 0.380678 -0.222661 10.0389 -0.0713727 -0.0149137 0.0575243 0.18 -0.02 pose: 0.66968743 -4.70083 -0.914431 0 0.00507541 -0.00367194 0.718652 0.695342 uwb: 0.0 976.982 1479.25 +imu_odom_: 1691062556.25727390 0.150835 -0.201113 9.94551 -0.0500674 0.00745685 0.0447411 0.18 -0.02 pose: 0.0 -4.70083 -0.914431 0 0.00507541 -0.00367194 0.718652 0.695342 uwb: 0.49757746 977.812 1479.43 +imu_odom_: 1691062556.48703297 -0.0215478 -0.361524 9.78031 -0.0575243 -0.0106526 0.052198 0.25 0 pose: 0.55802332 -4.70873 -0.899284 0 0.000525207 -0.0002774380.718897 0.695116 uwb: 0.0 977.812 1479.43 +imu_odom_: 1691062556.65693819 0.823605 0.0191536 10.2975 -0.0660464 -0.056459 0.0458064 0.25 0 pose: 0.6987177 -4.71008 -0.896699 0 -9.72922e-05-2.70674e-060.718928 0.695084 uwb: 0.0 977.812 1479.43 +imu_odom_: 1691062556.89823173 0.459687 -0.0550666 10.2328 -0.0745685 -0.0170442 0.0596548 0.18 0 pose: 0.0 -4.71008 -0.896699 0 -9.72922e-05-2.70674e-060.718928 0.695084 uwb: 0.50051143 978.636 1479.77 +imu_odom_: 1691062556.106722412 0.409408 -0.299275 9.46667 -0.0873517 -0.0223706 0.0415453 0.18 0 pose: 0.41042008 -4.70122 -0.892069 0 0.00106204 9.87824e-05 0.719091 0.694915 uwb: 0.0 978.636 1479.77 +imu_odom_: 1691062556.131845976 0.342371 -0.117316 10.0389 -0.076699 0.0287621 0.0383495 0.2 0.02 pose: 0.0 -4.70122 -0.892069 0 0.00106204 9.87824e-05 0.719091 0.694915 uwb: 0.0 978.636 1479.77 +imu_odom_: 1691062556.157775932 0.270545 -0.414197 9.74919 -0.0543285 -0.00213053 0.0383495 0.2 0.02 pose: 0.42029218 -4.70585 -0.883208 0 0.00087887 0.000290365 0.71921 0.694792 uwb: 0.0 978.636 1479.77 +imu_odom_: 1691062556.181840833 0.177171 -0.23942 9.96467 -0.0660464 -0.052198 0.0426106 0.19 0 pose: 0.41990139 -4.70906 -0.877078 0 -0.00183567 0.00110129 0.719187 0.694813 uwb: 0.99990297 978.636 1479.77 +imu_odom_: 1691062556.207689712 -0.0023942 -0.177171 10.5896 -0.0426106 0.00106526 0.0308927 0.19 0 pose: 0.8032133 -4.71049 -0.874348 0 -0.00234896 0.00144555 0.719195 0.694803 uwb: 0.0 978.636 1479.77 +imu_odom_: 1691062556.231752863 0.28491 -0.342371 10.0126 -0.0490022 -0.02024 0.0340885 0.19 -0.02 pose: 0.41881647 -4.70496 -0.863338 0 -0.00484407 0.0043779 0.719124 0.694851 uwb: 0.49994857 976.549 1479.58 +imu_odom_: 1691062556.256701150 0.320823 -0.332794 9.4978 -0.0468716 -0.0394148 0.0500674 0.19 -0.02 pose: 0.0 -4.70496 -0.863338 0 -0.00484407 0.0043779 0.719124 0.694851 uwb: 0.0 976.549 1479.58 +imu_odom_: 1691062556.281764927 0.61531 -0.153229 9.65342 -0.036219 -0.0245011 0.0330232 0.19 -0.02 pose: 0.32028498 -4.70626 -0.860851 0 -0.00630402 0.00160218 0.719092 0.694884 uwb: 0.50031896 978.201 1480.15 +imu_odom_: 1691062556.297965681 0.706289 0.071826 9.9096 -0.0532632 -0.0138484 0.0426106 0.19 -0.02 pose: 0.0 -4.70626 -0.860851 0 -0.00630402 0.00160218 0.719092 0.694884 uwb: 0.0 978.201 1480.15 +imu_odom_: 1691062556.322773979 0.711078 -0.385466 9.69891 -0.0607201 0.04048 0.0223706 0.18 0 pose: 0.49163675 -4.7109 -0.851989 0 -0.00311312 -0.0009101510.719104 0.694895 uwb: 0.0 978.201 1480.15 +imu_odom_: 1691062556.338768250 0.0861913 -0.136469 9.89524 -0.052198 0.0372843 0.036219 0.18 0 pose: 0.0 -4.7109 -0.851989 0 -0.00311312 -0.0009101510.719104 0.694895 uwb: 0.0 978.201 1480.15 +imu_odom_: 1691062556.363832611 0.402226 -0.519542 10.3501 -0.0703074 -0.0191748 0.0553937 0.18 0.02 pose: 0.40860023 -4.70667 -0.838494 0 -0.00196113 -0.00208567 0.718954 0.695052 uwb: 0.0 978.201 1480.15 +imu_odom_: 1691062556.387756648 0.509965 -0.179565 10.0772 -0.0479369 -0.0181095 0.0276969 0.18 0 pose: 0.34090703 -4.70667 -0.838494 0 -0.00403924 -0.00330689 0.719074 0.694914 uwb: 0.100016836 974.835 1480.27 +imu_odom_: 1691062556.412670521 0.821211 -0.172383 9.43794 -0.0351537 0.0213053 0.02024 0.18 0 pose: 0.0 -4.70667 -0.838494 0 -0.00403924 -0.00330689 0.719074 0.694914 uwb: 0.0 974.835 1480.27 +imu_odom_: 1691062556.436702466 -0.452504 -0.124498 10.2927 -0.0372843 -0.0170442 0.0458064 0.18 0 pose: 0.7939099 -4.70667 -0.838494 0 -0.00318768 -0.00325079 0.719042 0.694952 uwb: 0.49999524 970.614 1480.64 +imu_odom_: 1691062556.453766483 0.263362 -0.186748 9.89284 -0.0532632 0.00213053 0.0660464 0.18 0 pose: 0.0 -4.70667 -0.838494 0 -0.00318768 -0.00325079 0.719042 0.694952 uwb: 0.0 970.614 1480.64 +imu_odom_: 1691062556.476687852 0.790087 -0.179565 9.93354 -0.0415453 -0.00852212 0.0532632 0.18 0 pose: 0.48935027 -4.70244 -0.825001 0 0.000245366 -0.00330607 0.718821 0.695187 uwb: 0.49867117 969.739 1481.15 +imu_odom_: 1691062556.502677304 1.02711 -0.201113 10.0293 -0.0458064 -0.02024 0.056459 0.18 0 pose: 0.0 -4.70244 -0.825001 0 0.000245366 -0.00330607 0.718821 0.695187 uwb: 0.0 969.739 1481.15 +imu_odom_: 1691062556.515671738 0.414197 0.0287304 10.1586 -0.0458064 -0.0191748 0.0415453 0.18 0 pose: 0.0 -4.70244 -0.825001 0 0.000245366 -0.00330607 0.718821 0.695187 uwb: 0.0 969.739 1481.15 +imu_odom_: 1691062556.539728764 0.146046 -0.105345 9.63906 -0.076699 0.0149137 0.0788296 0.17 0 pose: 0.40045464 -4.70707 -0.816136 0 -0.000669543-0.00077509 0.719053 0.694954 uwb: 0.50032187 969.32 1481.1 +imu_odom_: 1691062556.565711508 0.505177 -0.126893 9.84496 -0.0649811 0.00426106 0.04048 0.21 -0.02 pose: 0.78976563 -4.70581 -0.804188 0 0.00203819 -0.0002405040.719607 0.694378 uwb: 0.0 969.32 1481.1 +imu_odom_: 1691062556.578663945 0.222661 -0.292093 9.67497 -0.0649811 0.0191748 0.0607201 0.21 -0.02 pose: 0.0 -4.70581 -0.804188 0 0.00203819 -0.0002405040.719607 0.694378 uwb: 0.49953735 964.308 1480.5 +imu_odom_: 1691062556.602667309 -0.150835 -0.332794 10.0724 -0.052198 0.0149137 0.0394148 0.21 -0.02 pose: 0.0 -4.70581 -0.804188 0 0.00203819 -0.0002405040.719607 0.694378 uwb: 0.0 964.308 1480.5 +imu_odom_: 1691062556.628676592 0.435745 -0.289698 9.90002 -0.0692422 -0.0213053 0.0585895 0.17 0 pose: 0.8008218 -4.70285 -0.802635 0 0.00278754 -0.0002704190.719608 0.694375 uwb: 0.50001565 962.619 1480.51 +imu_odom_: 1691062556.643753063 0.356736 -0.248997 10.2783 -0.076699 -0.0298274 0.0617853 0.17 0 pose: 0.0 -4.70285 -0.802635 0 0.00278754 -0.0002704190.719608 0.694375 uwb: 0.0 962.619 1480.51 +imu_odom_: 1691062556.667759636 0.533907 -0.126893 10.228 -0.0692422 -0.0181095 0.0426106 0.17 0.02 pose: 0.38994676 -4.7075 -0.79378 0 0.00231506 0.000526757 0.719708 0.694273 uwb: 0.0 962.619 1480.51 +imu_odom_: 1691062556.693638263 1.09654 -0.258574 10.3286 -0.0735032 -0.0298274 0.0308927 0.25 0.02 pose: 0.48156633 -4.71214 -0.784927 0 -0.000683922-0.00103547 0.719927 0.694049 uwb: 0.50053769 960.914 1480.71 +imu_odom_: 1691062556.716641876 0 -0.296881 9.90002 -0.0639159 -0.0287621 0.0468716 0.25 0.02 pose: 0.0 -4.71214 -0.784927 0 -0.000683922-0.00103547 0.719927 0.694049 uwb: 0.0 960.914 1480.71 +imu_odom_: 1691062556.739671153 -0.0861913 -0.392649 9.58638 -0.0543285 -0.00213053 0.0394148 0.18 0 pose: 0.40815110 -4.70329 -0.780271 0 0.0015378 -0.00183371 0.719995 0.693976 uwb: 0.50202798 958.793 1480.79 +imu_odom_: 1691062556.756777166 0.35913 -0.0790087 10.0963 -0.0479369 -0.02024 0.0340885 0.18 0 pose: 0.0 -4.70329 -0.780271 0 0.0015378 -0.00183371 0.719995 0.693976 uwb: 0.0 958.793 1480.79 +imu_odom_: 1691062556.772778145 0.306458 -0.361524 9.84017 -0.0660464 -0.0117179 0.0511327 0.18 0 pose: 0.0 -4.70329 -0.780271 0 0.0015378 -0.00183371 0.719995 0.693976 uwb: 0.0 958.793 1480.79 +imu_odom_: 1691062556.789654927 0.560243 -0.0454898 10.0341 -0.0308927 -0.0862864 0.0340885 0.2 0 pose: 0.48128635 -4.70795 -0.771422 0 0.000424372 -0.00202354 0.720001 0.69397 uwb: 0.49841744 956.231 1481.03 +imu_odom_: 1691062556.805824184 0.622492 -0.102951 9.8689 -0.0617853 -0.0394148 0.0511327 0.2 0 pose: 0.0 -4.70795 -0.771422 0 0.000424372 -0.00202354 0.720001 0.69397 uwb: 0.0 956.231 1481.03 +imu_odom_: 1691062556.831701645 0.272939 -0.222661 10.0173 -0.0458064 -0.00319579 0.052198 0.25 0 pose: 0.81992148 -4.70611 -0.753444 0 0.00244124 -0.0011848 0.720065 0.693901 uwb: 0.49927779 955.379 1481.07 +imu_odom_: 1691062556.854650429 0.438139 -0.299275 9.81383 -0.0458064 0.0276969 0.0458064 0.25 0 pose: 0.0 -4.70611 -0.753444 0 0.00244124 -0.0011848 0.720065 0.693901 uwb: 0.0 955.379 1481.07 +imu_odom_: 1691062556.880795617 0.486023 -0.143652 10.173 -0.0468716 0.00426106 0.0372843 0.18 0 pose: 0.7865313 -4.70842 -0.749066 0 0.00182893 -0.0006902430.720101 0.693867 uwb: 0.50179467 956.185 1481.52 +imu_odom_: 1691062556.896640859 0.131681 -0.373495 9.06684 -0.0649811 -0.0319579 0.052198 0.18 -0.02 pose: 0.0 -4.70842 -0.749066 0 0.00182893 -0.0006902430.720101 0.693867 uwb: 0.0 956.185 1481.52 +imu_odom_: 1691062556.922779923 0.25618 -0.332794 9.19373 -0.0415453 -0.0276969 0.0458064 0.18 0.02 pose: 0.82951362 -4.71308 -0.740219 0 0.000452133 -0.0005541270.720277 0.693687 uwb: 0.49893948 953.217 1481.5 +imu_odom_: 1691062556.947721502 0.191536 0.0191536 10.0173 -0.0511327 0.00639159 0.0426106 0.18 -0.02 pose: 0.0 -4.71308 -0.740219 0 0.000452133 -0.0005541270.720277 0.693687 uwb: 0.0 953.217 1481.5 +imu_odom_: 1691062556.971653413 0.217872 -0.246603 10.2017 -0.0500674 -0.015979 0.0394148 0.18 -0.02 pose: 0.34033833 -4.7089 -0.726708 0 -0.00170239 0.000542794 0.720342 0.693616 uwb: 0.0 953.217 1481.5 +imu_odom_: 1691062556.994835220 0.768539 -0.28491 10.1466 -0.0841559 -0.02024 0.0436758 0.26 -0.02 pose: 0.40978721 -4.7089 -0.726708 0 -0.00352866 0.00328529 0.720351 0.693593 uwb: 0.49767376 948.171 1481.06 +imu_odom_: 1691062557.20696060 0.653617 -0.373495 10.0389 -0.0532632 -0.0447411 0.036219 0.26 -0.02 pose: 0.7016633 -4.7089 -0.726708 0 -0.00312949 0.0026176 0.720363 0.693585 uwb: 0.0 948.171 1481.06 +imu_odom_: 1691062557.36635214 0.294487 -0.0861913 9.92157 -0.0447411 -0.00213053 0.0511327 0.17 0 pose: 0.0 -4.7089 -0.726708 0 -0.00312949 0.0026176 0.720363 0.693585 uwb: 0.50143890 946.878 1481.22 +imu_odom_: 1691062557.53642655 0.483629 -0.426168 9.73482 -0.0617853 -0.0149137 0.0383495 0.17 0 pose: 0.48977320 -4.70472 -0.713198 0 -0.000799157-0.0009743630.720387 0.693571 uwb: 0.0 946.878 1481.22 +imu_odom_: 1691062557.79630362 0.378284 -0.732626 9.35415 0.00745685 -0.0298274 0.0181095 0.18 -0.02 pose: 0.0 -4.70472 -0.713198 0 -0.000799157-0.0009743630.720387 0.693571 uwb: 0.50140980 948.152 1481.25 +imu_odom_: 1691062557.102617647 0.234632 0.19393 10.0317 -0.00319579 -0.0862864 0.0596548 0.18 -0.02 pose: 0.35107960 -4.70939 -0.704353 0 -0.0015962 -0.00223199 0.720346 0.69361 uwb: 0.0 948.152 1481.25 +imu_odom_: 1691062557.119622464 1.02951 -0.0814029 9.93833 -0.0777643 -0.0553937 0.0958738 0.25 -0.02 pose: 0.0 -4.70939 -0.704353 0 -0.0015962 -0.00223199 0.720346 0.69361 uwb: 0.0 948.152 1481.25 +imu_odom_: 1691062557.144611877 0.981623 -0.270545 9.51695 -0.105461 -0.0106526 0.0671117 0.25 -0.02 pose: 0.47898830 -4.71405 -0.695509 0 0.000484035 -0.00186043 0.720543 0.693408 uwb: 0.49857503 945.165 1481.32 +imu_odom_: 1691062557.170682410 0.634463 -0.0790087 9.47864 -0.0873517 0.0170442 0.0127832 0.23 0 pose: 0.33957721 -4.71405 -0.695509 0 0.00265143 -0.00490767 0.720944 0.692971 uwb: 0.0 945.165 1481.32 +imu_odom_: 1691062557.185630562 0.603339 -0.282516 10.0868 -0.109722 0.0138484 0.0415453 0.23 0 pose: 0.0 -4.71405 -0.695509 0 0.00265143 -0.00490767 0.720944 0.692971 uwb: 0.49947329 942.232 1480.9 +imu_odom_: 1691062557.212609854 0.414197 -0.493206 9.82102 -0.0447411 0.015979 0.0394148 0.18 -0.02 pose: 0.7085754 -4.71405 -0.695509 0 0.00322161 -0.0048391 0.720874 0.693042 uwb: 0.0 942.232 1480.9 +imu_odom_: 1691062557.236620806 0.45011 -0.124498 9.94073 -0.0415453 -0.00532632 0.0394148 0.18 -0.02 pose: 0.0 -4.71405 -0.695509 0 0.00322161 -0.0048391 0.720874 0.693042 uwb: 0.50063403 939.672 1480.92 +imu_odom_: 1691062557.262657800 0.483629 -0.483629 10.228 -0.076699 -0.00745685 0.0458064 0.19 0 pose: 0.42041476 -4.70989 -0.681992 0 0.0036059 -0.00650507 0.720698 0.693209 uwb: 0.0 939.672 1480.92 +imu_odom_: 1691062557.278638367 -0.107739 -0.342371 9.62469 -0.0628506 0.0298274 0.0255663 0.19 0 pose: 0.0 -4.70989 -0.681992 0 0.0036059 -0.00650507 0.720698 0.693209 uwb: 0.49982910 939.66 1481.01 +imu_odom_: 1691062557.294648099 0.213084 -0.215478 10.5632 -0.0447411 -0.00745685 0.0276969 0.23 0 pose: 0.50942997 -4.71457 -0.673152 0 0.00203796 -0.00510343 0.720729 0.693195 uwb: 0.0 939.66 1481.01 +imu_odom_: 1691062557.320618890 0.775721 -0.3304 10.2687 -0.0500674 0.00213053 0.0298274 0.23 0 pose: 0.0 -4.71457 -0.673152 0 0.00203796 -0.00510343 0.720729 0.693195 uwb: 0.0 939.66 1481.01 +imu_odom_: 1691062557.345600429 0.59855 -0.325611 9.74919 -0.0447411 -0.0436758 0.0511327 0.23 0 pose: 0.40919527 -4.71041 -0.659637 0 -0.00117817 -0.00463431 0.720676 0.693256 uwb: 0.50058153 935.892 1480.45 +imu_odom_: 1691062557.359694359 1.00317 -0.225055 9.90481 -0.0617853 0.00319579 0.0383495 0.23 0 pose: 0.0 -4.71041 -0.659637 0 -0.00117817 -0.00463431 0.720676 0.693256 uwb: 0.0 935.892 1480.45 +imu_odom_: 1691062557.374746335 0.68953 -0.11971 9.81862 -0.0607201 -0.00532632 0.0372843 0.23 0 pose: 0.0 -4.71041 -0.659637 0 -0.00117817 -0.00463431 0.720676 0.693256 uwb: 0.49798300 933.403 1479.93 +imu_odom_: 1691062557.401603721 -0.160412 -0.426168 10.0006 -0.0553937 0.0319579 0.0330232 0.18 0 pose: 0.42015519 -4.71041 -0.659637 0 0.000592665 -0.00636727 0.720567 0.693356 uwb: 0.0 933.403 1479.93 +imu_odom_: 1691062557.425705373 0.234632 -0.220267 9.90481 -0.0447411 0.0106526 0.036219 0.18 0 pose: 0.73986571 -4.71215 -0.641315 0 0.00175961 -0.00684647 0.720546 0.693371 uwb: 0.50144771 935.928 1480.2 +imu_odom_: 1691062557.450584545 0.560243 -0.416591 10.3597 -0.0660464 -0.0415453 0.0500674 0.18 0 pose: 0.0 -4.71215 -0.641315 0 0.00175961 -0.00684647 0.720546 0.693371 uwb: 0.0 935.928 1480.2 +imu_odom_: 1691062557.473652033 0.299275 -0.265756 10.1299 -0.0458064 -0.0213053 0.0213053 0.18 0 pose: 0.8007927 -4.71091 -0.637281 0 0.00131073 -0.00610175 0.720542 0.693383 uwb: 0.50024323 935.515 1480.1 +imu_odom_: 1691062557.489597019 0.471658 -0.28491 9.88566 -0.0468716 0.00319579 0.0266316 0.18 0 pose: 0.0 -4.71091 -0.637281 0 0.00131073 -0.00610175 0.720542 0.693383 uwb: 0.0 935.515 1480.1 +imu_odom_: 1691062557.515600766 0.677559 -0.0909797 9.90002 -0.0191748 -0.00958738 0.0330232 0.25 0.02 pose: 0.47981949 -4.71558 -0.62844 0 -0.000183175-0.00687235 0.720574 0.693344 uwb: 0.0 935.515 1480.1 +imu_odom_: 1691062557.540637426 0.213084 -0.186748 10.0365 -0.0447411 0.0255663 0.056459 0.25 0.02 pose: 0.0 -4.71558 -0.62844 0 -0.000183175-0.00687235 0.720574 0.693344 uwb: 0.49950537 932.958 1480.05 +imu_odom_: 1691062557.567698378 0.296881 -0.0933739 9.50259 -0.0426106 0.0106526 0.0490022 0.21 0.02 pose: 0.40121883 -4.71558 -0.62844 0 0.00145276 -0.00459589 0.720389 0.693553 uwb: 0.0 932.958 1480.05 +imu_odom_: 1691062557.583570162 0.399832 -0.220267 9.98622 -0.0394148 -0.00213053 0.0500674 0.21 0.02 pose: 0.0 -4.71558 -0.62844 0 0.00145276 -0.00459589 0.720389 0.693553 uwb: 0.50129314 934.155 1480.67 +imu_odom_: 1691062557.610654154 0.679953 -0.009576819.84735 -0.0692422 -0.0245011 0.056459 0.23 -0.02 pose: 0.50954955 -4.7114 -0.614929 0 0.00167607 -0.0012564 0.720523 0.693428 uwb: 0.0 934.155 1480.67 +imu_odom_: 1691062557.636568075 0.246603 -0.320823 9.75398 -0.0617853 0.0245011 0.052198 0.23 -0.02 pose: 0.0 -4.7114 -0.614929 0 0.00167607 -0.0012564 0.720523 0.693428 uwb: 0.49877335 931.201 1480.37 +imu_odom_: 1691062557.661588402 0.19393 -0.227449 9.85214 -0.0543285 0.0127832 0.0585895 0.25 0 pose: 0.42918737 -4.71608 -0.606086 0 0.000899156 -2.44966e-050.720689 0.693258 uwb: 0.0 931.201 1480.37 +imu_odom_: 1691062557.684566063 0.25618 -0.232238 9.98143 -0.0490022 0.0117179 0.036219 0.25 0 pose: 0.52083905 -4.71192 -0.592569 0 -0.00062709 0.000624426 0.720961 0.692975 uwb: 0.49819298 931.161 1480.65 +imu_odom_: 1691062557.700635582 -0.0957681 -0.220267 9.64145 -0.0553937 -0.00426106 0.0415453 0.2 0 pose: 0.0 -4.71192 -0.592569 0 -0.00062709 0.000624426 0.720961 0.692975 uwb: 0.0 931.161 1480.65 +imu_odom_: 1691062557.723555789 0.45011 -0.339977 10.398 -0.0756338 -0.0245011 0.0596548 0.2 0 pose: 0.0 -4.71192 -0.592569 0 -0.00062709 0.000624426 0.720961 0.692975 uwb: 0.50044737 929.039 1480.51 +imu_odom_: 1691062557.748728354 0.679953 -0.122104 10.1945 -0.0756338 -0.0106526 0.0490022 0.25 0 pose: 0.63904770 -4.7166 -0.583734 0 -0.00506897 0.00370439 0.721096 0.692807 uwb: 0.0 929.039 1480.51 +imu_odom_: 1691062557.771841338 0.943315 -0.234632 9.74919 -0.056459 -0.0149137 0.0351537 0.25 0 pose: 0.0 -4.7166 -0.583734 0 -0.00506897 0.00370439 0.721096 0.692807 uwb: 0.0 929.039 1480.51 +imu_odom_: 1691062557.787578091 0.605733 -0.248997 9.60793 -0.0617853 -0.0138484 0.0330232 0.18 0 pose: 0.48183765 -4.72129 -0.5749 0 -0.00196235 0.000127246 0.721288 0.692633 uwb: 0.49939455 929.862 1480.75 +imu_odom_: 1691062557.810668618 0.770933 -0.31364 9.96227 -0.0756338 -0.0585895 0.052198 0.18 0 pose: 0.0 -4.72129 -0.5749 0 -0.00196235 0.000127246 0.721288 0.692633 uwb: 0.0 929.862 1480.75 +imu_odom_: 1691062557.827564069 1.01754 -0.167594 9.96227 -0.0479369 -0.0308927 0.0372843 0.25 0 pose: 0.38914773 -4.71245 -0.57021 0 0.00084538 -0.00305566 0.721253 0.692664 uwb: 0.50096067 929.808 1481.12 +imu_odom_: 1691062557.852564856 0.23942 -0.306458 9.74201 -0.0617853 0.015979 0.0532632 0.25 0 pose: 0.0 -4.71245 -0.57021 0 0.00084538 -0.00305566 0.721253 0.692664 uwb: 0.0 929.808 1481.12 +imu_odom_: 1691062557.878550813 0.320823 -0.215478 9.81144 -0.0383495 0.0149137 0.0351537 0.23 0 pose: 0.57888471 -4.71714 -0.561377 0 0.00120169 -0.0043974 0.721425 0.692478 uwb: 0.50059320 926.437 1480.74 +imu_odom_: 1691062557.904654593 0.354342 -0.260968 10.6901 -0.0436758 0.0213053 0.04048 0.18 0 pose: 0.0 -4.71714 -0.561377 0 0.00120169 -0.0043974 0.721425 0.692478 uwb: 0.0 926.437 1480.74 +imu_odom_: 1691062557.930616344 0.703895 -0.347159 9.80665 -0.0607201 -0.0170442 0.04048 0.22 0.02 pose: 0.25985957 -4.71424 -0.551877 0 -0.000143809-0.00182153 0.721394 0.692523 uwb: 0.49992825 926.85 1480.85 +imu_odom_: 1691062557.945609117 0.399832 -0.311246 9.61751 -0.0585895 0.0170442 0.0447411 0.22 0.02 pose: 0.0 -4.71424 -0.551877 0 -0.000143809-0.00182153 0.721394 0.692523 uwb: 0.0 926.85 1480.85 +imu_odom_: 1691062557.961550604 0.454898 -0.0191536 10.2328 -0.04048 -0.0266316 0.0340885 0.18 0 pose: 0.33093583 -4.71301 -0.547854 0 -0.0021469 -0.0007783930.721405 0.69251 uwb: 0.0 926.85 1480.85 +imu_odom_: 1691062557.976571958 0.167594 -0.366313 9.03093 -0.0553937 0.0127832 0.0447411 0.18 0 pose: 0.0 -4.71301 -0.547854 0 -0.0021469 -0.0007783930.721405 0.69251 uwb: 0.49994284 926.808 1481.13 +imu_odom_: 1691062558.3542209 0.596156 -0.196325 9.50737 -0.0372843 -0.0394148 0.0372843 0.18 0 pose: 0.64927562 -4.72018 -0.534357 0 -0.00267705 -0.00150885 0.721434 0.692477 uwb: 0.0 926.808 1481.13 +imu_odom_: 1691062558.28679490 0.217872 -0.105345 10.2831 -0.0607201 -0.02024 0.0458064 0.18 0 pose: 0.7988971 -4.72239 -0.530193 0 -0.00179829 -0.00188543 0.721427 0.692486 uwb: 0.50019952 926.356 1481.27 +imu_odom_: 1691062558.55547380 0.354342 -0.179565 9.57681 -0.0596548 -0.0276969 0.04048 0.21 -0.02 pose: 0.44118561 -4.71356 -0.5255 0 -0.000204176-0.0005236880.721467 0.692449 uwb: 0.0 926.356 1481.27 +imu_odom_: 1691062558.71597944 0.68953 -0.387861 9.90242 -0.0777643 -0.0149137 0.0479369 0.21 -0.02 pose: 0.0 -4.71356 -0.5255 0 -0.000204176-0.0005236880.721467 0.692449 uwb: 0.0 926.356 1481.27 +imu_odom_: 1691062558.97604904 0.814029 -0.347159 9.90481 -0.0383495 -0.0543285 0.0298274 0.25 -0.02 pose: 0.42918454 -4.71826 -0.51667 0 4.50814e-05 0.000149425 0.721522 0.692391 uwb: 0.49829223 925.487 1481.33 +imu_odom_: 1691062558.120543490 0.335188 -0.378284 9.75398 -0.0500674 0.00213053 0.0500674 0.25 -0.02 pose: 0.0 -4.71826 -0.51667 0 4.50814e-05 0.000149425 0.721522 0.692391 uwb: 0.0 925.487 1481.33 +imu_odom_: 1691062558.136703712 0.19393 -0.0670376 9.991 -0.0117179 -0.0149137 0.036219 0.19 0 pose: 0.48945546 -4.71688 -0.504615 0 -0.000397285-0.00262123 0.72152 0.692389 uwb: 0.50068954 925.861 1481.7 +imu_odom_: 1691062558.158592092 0.385466 -0.0574608 9.88566 -0.0490022 0.00745685 0.0553937 0.19 0 pose: 0.0 -4.71688 -0.504615 0 -0.000397285-0.00262123 0.72152 0.692389 uwb: 0.0 925.861 1481.7 +imu_odom_: 1691062558.174597744 0.837971 -0.268151 9.47625 -0.076699 0.0245011 0.0458064 0.2 0 pose: 0.0 -4.71688 -0.504615 0 -0.000397285-0.00262123 0.72152 0.692389 uwb: 0.0 925.861 1481.7 +imu_odom_: 1691062558.200601787 0.196325 -0.217872 10.0006 -0.0426106 0.0415453 0.0575243 0.2 0 pose: 0.46013952 -4.71882 -0.494318 0 0.001254 0.000464133 0.721642 0.692266 uwb: 0.0 925.861 1481.7 +imu_odom_: 1691062558.224520001 0.265756 -0.349553 10.0102 -0.0596548 0.056459 0.04048 0.19 0 pose: 0.34044345 -4.72207 -0.488207 0 -0.0007761930.00197259 0.721819 0.692078 uwb: 0.100125368 925.354 1482.19 +imu_odom_: 1691062558.250568375 0.0383072 -0.306458 9.94312 -0.0809601 0.0138484 0.0639159 0.19 0 pose: 0.8013763 -4.72352 -0.485492 0 -0.00174471 0.00194623 0.72182 0.692076 uwb: 0.0 925.354 1482.19 +imu_odom_: 1691062558.276514965 0.42138 -0.246603 9.64863 -0.0628506 -0.00745685 0.0308927 0.19 0 pose: 0.24038662 -4.72352 -0.485492 0 -0.00449452 0.00228087 0.721885 0.691995 uwb: 0.49886385 922.81 1481.93 +imu_odom_: 1691062558.301643205 0.651223 -0.320823 10.319 -0.0596548 -0.0394148 0.04048 0.2 0 pose: 0.25969047 -4.7147 -0.480786 0 -0.00571709 0.00257835 0.722007 0.691858 uwb: 0.0 922.81 1481.93 +imu_odom_: 1691062558.315503532 0.349553 -0.117316 10.1131 -0.056459 -0.0127832 0.0394148 0.2 0 pose: 0.0 -4.7147 -0.480786 0 -0.00571709 0.00257835 0.722007 0.691858 uwb: 0.0 922.81 1481.93 +imu_odom_: 1691062558.338591438 0.459687 -0.335188 9.89284 -0.0511327 -0.0298274 0.0447411 0.2 0 pose: 0.0 -4.7147 -0.480786 0 -0.00571709 0.00257835 0.722007 0.691858 uwb: 0.49986128 922.754 1482.28 +imu_odom_: 1691062558.364641270 0.696713 -0.131681 9.65342 -0.0575243 -0.00319579 0.036219 0.18 0 pose: 0.24912716 -4.7194 -0.471963 0 -0.00389919 0.000675763 0.721961 0.691923 uwb: 0.0 922.754 1482.28 +imu_odom_: 1691062558.387541942 0.328006 -0.234632 9.91199 -0.0596548 0.00852212 0.0447411 0.19 -0.02 pose: 0.39046895 -4.7194 -0.471963 0 -0.00182586 -0.0006886320.72198 0.691911 uwb: 0.0 922.754 1482.28 +imu_odom_: 1691062558.411574480 0.356736 -0.177171 10.2017 -0.0330232 0.0553937 0.0447411 0.19 -0.02 pose: 0.42058400 -4.71773 -0.459737 0 0.00072368 -0.0032155 0.721969 0.691917 uwb: 0.0 922.754 1482.28 +imu_odom_: 1691062558.428579592 -0.141258 -0.471658 9.52174 -0.0500674 -0.015979 0.0511327 0.19 -0.02 pose: 0.0 -4.71773 -0.459737 0 0.00072368 -0.0032155 0.721969 0.691917 uwb: 0.100071122 924.822 1482.87 +imu_odom_: 1691062558.453580384 0.162806 -0.105345 9.89284 -0.0436758 0.00426106 0.0372843 0.26 0.02 pose: 0.6937600 -4.71529 -0.458433 0 0.000241823 -0.00265854 0.721983 0.691905 uwb: 0.0 924.822 1482.87 +imu_odom_: 1691062558.469562996 0.921768 -0.189142 10.1107 -0.0692422 0.00639159 0.0468716 0.26 0.02 pose: 0.0 -4.71529 -0.458433 0 0.000241823 -0.00265854 0.721983 0.691905 uwb: 0.0 924.822 1482.87 +imu_odom_: 1691062558.495560623 0.591368 -0.260968 9.73243 -0.0639159 -0.0287621 0.0447411 0.23 -0.02 pose: 0.47979042 -4.72 -0.44961 0 -0.00164511 0.00190797 0.722088 0.691797 uwb: 0.49939464 925.139 1483.6 +imu_odom_: 1691062558.522569377 0.387861 -0.426168 10.2975 -0.0745685 -0.036219 0.056459 0.2 0 pose: 0.41017526 -4.72471 -0.440789 0 -0.00258538 0.00425265 0.722118 0.691752 uwb: 0.49863346 922.169 1483.23 +imu_odom_: 1691062558.547743113 1.1157 -0.184354 10.4651 -0.0543285 -0.0276969 0.0319579 0.2 0 pose: 0.0 -4.72471 -0.440789 0 -0.00258538 0.00425265 0.722118 0.691752 uwb: 0.0 922.169 1483.23 +imu_odom_: 1691062558.574520885 1.08457 -0.349553 10.0916 -0.0319579 0.0170442 0.0223706 0.23 0.02 pose: 0.43022571 -4.7206 -0.427258 0 -0.0009998240.000351745 0.722243 0.691638 uwb: 0.50061954 922.09 1483.72 +imu_odom_: 1691062558.590501164 0.301669 -0.0526724 9.7037 -0.0330232 0.015979 0.04048 0.23 0.02 pose: 0.0 -4.7206 -0.427258 0 -0.0009998240.000351745 0.722243 0.691638 uwb: 0.0 922.09 1483.72 +imu_odom_: 1691062558.617515459 0.42138 -0.304064 9.72046 -0.0266316 0.00106526 0.0511327 0.23 0 pose: 0.51075413 -4.7206 -0.427258 0 0.000488141 -0.00356238 0.722236 0.691637 uwb: 0.0 922.09 1483.72 +imu_odom_: 1691062558.642558247 0.416591 -0.0430956 9.84735 -0.0351537 -0.0234358 0.052198 0.23 0 pose: 0.0 -4.7206 -0.427258 0 0.000488141 -0.00356238 0.722236 0.691637 uwb: 0.49943840 922.479 1483.99 +imu_odom_: 1691062558.667491670 0.28491 -0.246603 9.69891 -0.04048 -0.0394148 0.036219 0.21 0 pose: 0.42897457 -4.71649 -0.413726 0 0.00113229 -0.00305126 0.72215 0.691729 uwb: 0.0 922.479 1483.99 +imu_odom_: 1691062558.681487028 0.581791 0.100556 10.1275 -0.0649811 -0.036219 0.0617853 0.21 0 pose: 0.0 -4.71649 -0.413726 0 0.00113229 -0.00305126 0.72215 0.691729 uwb: 0.49981169 921.985 1484.37 +imu_odom_: 1691062558.706553439 0.0933739 -0.328006 9.7851 -0.0671117 0.0308927 0.0532632 0.18 0 pose: 0.51973090 -4.7212 -0.404905 0 0.000787895 -0.0009712820.722337 0.69154 uwb: 0.0 921.985 1484.37 +imu_odom_: 1691062558.732502654 0.320823 -0.248997 9.83777 -0.0543285 -0.0117179 0.0639159 0.18 0 pose: 0.0 -4.7212 -0.404905 0 0.000787895 -0.0009712820.722337 0.69154 uwb: 0.50002460 919.822 1484.35 +imu_odom_: 1691062558.755494027 0.428562 -0.301669 9.80186 -0.0468716 0 0.0340885 0.2 0 pose: 0.82958685 -4.72294 -0.386216 0 -0.00417696 0.00158757 0.722753 0.691092 uwb: 0.0 919.822 1484.35 +imu_odom_: 1691062558.780478488 0.325611 -0.25618 9.52174 -0.0671117 0.00958738 0.0575243 0.2 0 pose: 0.0 -4.72294 -0.386216 0 -0.00417696 0.00158757 0.722753 0.691092 uwb: 0.0 919.822 1484.35 +imu_odom_: 1691062558.796492013 0.557849 -0.497994 9.72285 -0.0788296 -0.0138484 0.0543285 0.2 0 pose: 0.30023466 -4.72183 -0.38255 0 -0.00382947 0.000117018 0.72275 0.691099 uwb: 0.0 919.822 1484.35 +imu_odom_: 1691062558.822497515 0.555455 -0.0143652 10.1347 -0.056459 -0.00958738 0.0500674 0.2 0 pose: 0.0 -4.72183 -0.38255 0 -0.00382947 0.000117018 0.72275 0.691099 uwb: 0.0 919.822 1484.35 +imu_odom_: 1691062558.848541222 0.409408 -0.270545 10.1011 -0.052198 0.0213053 0.0351537 0.19 0 pose: 0.41963907 -4.72656 -0.373738 0 -0.00418436 -7.65562e-050.722971 0.690866 uwb: 0.0 919.822 1484.35 +imu_odom_: 1691062558.864484754 -0.0622492 -0.363919 9.68215 -0.0628506 0.00639159 0.0436758 0.19 0 pose: 0.0 -4.72656 -0.373738 0 -0.00418436 -7.65562e-050.722971 0.690866 uwb: 0.0 919.822 1484.35 +imu_odom_: 1691062558.890591165 0.371101 -0.155623 9.61033 -0.0511327 -0.0490022 0.0383495 0.19 0 pose: 0.51132284 -4.72248 -0.360196 0 -0.00251886 -0.0017609 0.723006 0.690834 uwb: 0.150157866 918.578 1484 +imu_odom_: 1691062558.915536253 0.653617 -0.246603 10.2089 -0.0543285 -0.0223706 0.0511327 0.17 0 pose: 0.34968854 -4.72248 -0.360196 0 -0.00111147 0.000291071 0.723017 0.69083 uwb: 0.0 918.578 1484 +imu_odom_: 1691062558.931534322 0.553061 -0.517148 9.22007 -0.056459 0.0617853 0.0372843 0.17 0 pose: 0.0 -4.72248 -0.360196 0 -0.00111147 0.000291071 0.723017 0.69083 uwb: 0.49792768 918.919 1484.55 +imu_odom_: 1691062558.957543032 0.0909797 -0.225055 9.32302 -0.0575243 0.0213053 0.0553937 0.18 0.02 pose: 0.6889479 -4.72248 -0.360196 0 -0.000603246-0.0002622950.723044 0.690802 uwb: 0.0 918.919 1484.55 +imu_odom_: 1691062558.983467749 0.287304 -0.371101 10.0509 -0.0436758 -0.0191748 0.04048 0.18 0.02 pose: 0.0 -4.72248 -0.360196 0 -0.000603246-0.0002622950.723044 0.690802 uwb: 0.50023458 916.78 1484.33 +imu_odom_: 1691062559.9482001 0.320823 -0.184354 9.92636 -0.052198 -0.00319579 0.0436758 0.19 0 pose: 0.42082022 -4.72722 -0.351388 0 -0.000852636-0.0021778 0.723147 0.69069 uwb: 0.0 916.78 1484.33 +imu_odom_: 1691062559.35590166 0.277727 0.0407014 9.61511 -0.0511327 0.0223706 0.0490022 0.19 0 pose: 0.0 -4.72722 -0.351388 0 -0.000852636-0.0021778 0.723147 0.69069 uwb: 0.49997213 913.337 1484.09 +imu_odom_: 1691062559.60615753 0.679953 -0.0909797 10.3406 -0.0617853 0.0372843 0.056459 0.19 0 pose: 0.50911802 -4.72315 -0.337844 0 -0.00422237 -0.0004110860.723263 0.690559 uwb: 0.0 913.337 1484.09 +imu_odom_: 1691062559.86480105 0.64404 -0.493206 9.68455 -0.0735032 0.0426106 0.0426106 0.2 -0.02 pose: 0.52022969 -4.72789 -0.32904 0 -0.00171704 0.00358031 0.723428 0.690389 uwb: 0.50250949 914.495 1484.94 +imu_odom_: 1691062559.102458345 0 -0.131681 10.0126 -0.0607201 -0.00639159 0.0500674 0.2 -0.02 pose: 0.0 -4.72789 -0.32904 0 -0.00171704 0.00358031 0.723428 0.690389 uwb: 0.0 914.495 1484.94 +imu_odom_: 1691062559.128529764 0.402226 -0.110133 9.92875 -0.0585895 -0.0276969 0.0479369 0.23 0 pose: 0.59960908 -4.72384 -0.315491 0 -0.00198422 0.00188746 0.723626 0.690187 uwb: 0.49922268 909.404 1484.2 +imu_odom_: 1691062559.154573476 0.244209 -0.28491 9.3709 -0.0394148 0.0223706 0.0298274 0.23 0 pose: 0.8070635 -4.72384 -0.315491 0 -0.00116375 0.00208291 0.723651 0.690162 uwb: 0.0 909.404 1484.2 +imu_odom_: 1691062559.179512445 0.234632 -0.198719 10.094 -0.0585895 0.0127832 0.052198 0.23 0 pose: 0.44044496 -4.72859 -0.306691 0 -0.00204065 0.00308836 0.723611 0.690198 uwb: 0.49828941 910.521 1485.27 +imu_odom_: 1691062559.193502847 0.553061 -0.476446 9.79228 -0.052198 -0.00639159 0.0394148 0.23 0 pose: 0.0 -4.72859 -0.306691 0 -0.00204065 0.00308836 0.723611 0.690198 uwb: 0.0 910.521 1485.27 +imu_odom_: 1691062559.218593762 0.368707 -0.280122 9.64624 -0.04048 0.0127832 0.0553937 0.18 -0.02 pose: 0.38929371 -4.72645 -0.299537 0 -0.00398952 0.00352348 0.723708 0.690085 uwb: 0.0 910.521 1485.27 +imu_odom_: 1691062559.235434973 0.732626 -0.0622492 10.2544 -0.076699 -0.00106526 0.0479369 0.18 -0.02 pose: 0.0 -4.72645 -0.299537 0 -0.00398952 0.00352348 0.723708 0.690085 uwb: 0.49991387 907.48 1485.11 +imu_odom_: 1691062559.260509556 0.225055 -0.550666 9.47625 -0.052198 0.0681769 0.0553937 0.2 -0.02 pose: 0.41932126 -4.72454 -0.293141 0 -0.00239806 0.000648126 0.723895 0.689906 uwb: 0.0 907.48 1485.11 +imu_odom_: 1691062559.287508399 0.0454898 -0.294487 10.0126 -0.0468716 0.00106526 0.0415453 0.2 -0.02 pose: 0.0 -4.72454 -0.293141 0 -0.00239806 0.000648126 0.723895 0.689906 uwb: 0.49983513 903.229 1484.37 +imu_odom_: 1691062559.312506571 0.366313 -0.244209 9.97185 -0.0756338 -0.0213053 0.0607201 0.19 0 pose: 0.52073426 -4.7293 -0.284345 0 -0.00734905 0.00224557 0.724033 0.689722 uwb: 0.0 903.229 1484.37 +imu_odom_: 1691062559.339448835 0.28491 -0.126893 10.2089 -0.0692422 0.00532632 0.0287621 0.19 0 pose: 0.0 -4.7293 -0.284345 0 -0.00734905 0.00224557 0.724033 0.689722 uwb: 0.50194370 900.68 1483.91 +imu_odom_: 1691062559.355438158 0.565032 -0.342371 9.64145 -0.0798948 0.0138484 0.04048 0.2 -0.02 pose: 0.31961147 -4.72526 -0.27079 0 -0.00474913 0.00154646 0.724205 0.689567 uwb: 0.0 900.68 1483.91 +imu_odom_: 1691062559.382487455 0.416591 -0.31364 9.96946 -0.0447411 0.02024 0.0383495 0.2 -0.02 pose: 0.0 -4.72526 -0.27079 0 -0.00474913 0.00154646 0.724205 0.689567 uwb: 0.49974180 897.62 1483.77 +imu_odom_: 1691062559.407434007 0.35913 -0.371101 10.3573 -0.0490022 -0.00958738 0.0330232 0.24 0.02 pose: 0.28127209 -4.72526 -0.27079 0 -0.00369657 0.00243629 0.72414 0.689638 uwb: 0.0 897.62 1483.77 +imu_odom_: 1691062559.434555339 0.435745 -0.395043 9.5385 -0.0490022 -0.0149137 0.0458064 0.23 0.02 pose: 0.15846126 -4.72526 -0.27079 0 -0.00349536 0.000984797 0.724139 0.689645 uwb: 0.49937433 901.737 1485.2 +imu_odom_: 1691062559.459503349 0.167594 -0.220267 9.81144 -0.036219 0.0223706 0.0415453 0.23 0.02 pose: 0.43991126 -4.73003 -0.261997 0 -0.00508312 -0.00242052 0.724059 0.689715 uwb: 0.0 901.737 1485.2 +imu_odom_: 1691062559.486482360 -0.122104 -0.42138 9.55287 -0.0490022 -0.00319579 0.0458064 0.23 -0.02 pose: 0.7058925 -4.73003 -0.261997 0 -0.00507343 -0.00313589 0.724071 0.6897 uwb: 0.49862480 900.847 1485.23 +imu_odom_: 1691062559.502532053 0.347159 -0.0574608 10.0149 -0.04048 -0.0245011 0.0351537 0.23 -0.02 pose: 0.0 -4.73003 -0.261997 0 -0.00507343 -0.00313589 0.724071 0.6897 uwb: 0.0 900.847 1485.23 +imu_odom_: 1691062559.529454485 0.897826 -0.184354 10.0772 -0.0649811 -0.00958738 0.0426106 0.23 -0.02 pose: 0.52137878 -4.72599 -0.248442 0 -0.00642317 -0.00197587 0.724148 0.689612 uwb: 0.49997803 897.346 1485.06 +imu_odom_: 1691062559.545562215 0.560243 -0.442927 9.68933 -0.0458064 0.0234358 0.0266316 0.23 -0.02 pose: 0.0 -4.72599 -0.248442 0 -0.00642317 -0.00197587 0.724148 0.689612 uwb: 0.0 897.346 1485.06 +imu_odom_: 1691062559.572559891 0.706289 -0.361524 9.991 -0.0735032 -0.00532632 0.056459 0.26 0.02 pose: 0.78931405 -4.7311 -0.228463 0 -0.00419127 -0.00289409 0.724129 0.689646 uwb: 0.50228493 897.287 1485.33 +imu_odom_: 1691062559.597575562 0.787692 -0.335188 9.60314 -0.0532632 -0.0458064 0.0234358 0.26 0.02 pose: 0.7895357 -4.72673 -0.226094 0 -0.00375216 -0.00357262 0.724172 0.6896 uwb: 0.0 897.287 1485.33 +imu_odom_: 1691062559.624423626 0.114922 -0.507571 9.64384 -0.0500674 0.0127832 0.04048 0.21 -0.02 pose: 0.44117990 -4.73015 -0.21977 0 -0.000549139-0.00734908 0.72412 0.689635 uwb: 0.50039216 897.2 1485.75 +imu_odom_: 1691062559.650450423 0.385466 -0.0885855 9.62469 -0.0308927 -0.00852212 0.04048 0.18 -0.02 pose: 0.0 -4.73015 -0.21977 0 -0.000549139-0.00734908 0.72412 0.689635 uwb: 0.0 897.2 1485.75 +imu_odom_: 1691062559.677399978 0.351948 -0.438139 9.36133 -0.0468716 0.0127832 0.0490022 0.25 0 pose: 0.52874861 -4.73492 -0.210968 0 -0.00161903 -0.00390786 0.724162 0.689617 uwb: 0.49724825 894.617 1485.39 +imu_odom_: 1691062559.702428773 0.474052 -0.0526724 9.95509 -0.0340885 -0.0213053 0.0511327 0.19 0 pose: 0.26949555 -4.73001 -0.205126 0 -0.0042628 -0.00452717 0.724247 0.689512 uwb: 0.0 894.617 1485.39 +imu_odom_: 1691062559.719464510 0.711078 -0.174777 10.1466 -0.0479369 -0.00745685 0.04048 0.19 0 pose: 0.8145295 -4.72746 -0.203744 0 -0.00346536 -0.00407361 0.724283 0.689482 uwb: 0.0 894.617 1485.39 +imu_odom_: 1691062559.745597757 0.486023 -0.177171 9.54808 -0.072438 -0.00532632 0.0639159 0.18 0.02 pose: 0.33919237 -4.73009 -0.198895 0 -0.000178452-0.0037666 0.724355 0.689417 uwb: 0.50141583 893.673 1485.64 +imu_odom_: 1691062559.772594850 0.811634 -0.28491 10.0365 -0.0575243 -0.052198 0.0458064 0.18 0.02 pose: 0.0 -4.73009 -0.198895 0 -0.000178452-0.0037666 0.724355 0.689417 uwb: 0.49864231 892.804 1485.54 +imu_odom_: 1691062559.788467807 0.979228 -0.0383072 9.97185 -0.0639159 0.00106526 0.0575243 0.19 0 pose: 0.8088133 -4.73223 -0.194954 0 0.000511898 -0.00348158 0.724422 0.689348 uwb: 0.0 892.804 1485.54 +imu_odom_: 1691062559.815433694 0.387861 -0.361524 10.1203 -0.0553937 0.0351537 0.0330232 0.19 0 pose: 0.0 -4.73223 -0.194954 0 0.000511898 -0.00348158 0.724422 0.689348 uwb: 0.0 892.804 1485.54 +imu_odom_: 1691062559.840402994 0.466869 -0.318429 9.68694 -0.0639159 0.00852212 0.0543285 0.2 0 pose: 0.52995017 -4.737 -0.186165 0 0.00483328 -0.00575135 0.724658 0.689068 uwb: 0.50005677 894.402 1486.37 +imu_odom_: 1691062559.857394110 0.56982 -0.497994 9.68933 -0.0735032 -0.0287621 0.052198 0.2 0 pose: 0.0 -4.737 -0.186165 0 0.00483328 -0.00575135 0.724658 0.689068 uwb: 0.0 894.402 1486.37 +imu_odom_: 1691062559.882446819 0.514753 -0.0837971 10.1634 -0.0575243 -0.0117179 0.0500674 0.2 0.02 pose: 0.42911172 -4.72821 -0.181389 0 0.00162939 -0.00553029 0.724706 0.689035 uwb: 0.50015301 890.499 1485.9 +imu_odom_: 1691062559.909480951 0.47884 -0.260968 10.2663 -0.0511327 -0.00319579 0.0330232 0.2 0.02 pose: 0.0 -4.72821 -0.181389 0 0.00162939 -0.00553029 0.724706 0.689035 uwb: 0.0 890.499 1485.9 +imu_odom_: 1691062559.934423711 0.409408 -0.323217 10.0197 -0.0735032 0.0127832 0.0607201 0.18 0.02 pose: 0.86022119 -4.73151 -0.160407 0 0.0011264 -0.00335983 0.724901 0.688844 uwb: 0.49987013 888.372 1485.44 +imu_odom_: 1691062559.961524337 0.308852 -0.232238 9.9527 -0.0511327 0 0.036219 0.23 0 pose: 0.8015514 -4.72899 -0.159039 0 0.000237172 -0.00350644 0.724961 0.688781 uwb: 0.0 888.372 1485.44 +imu_odom_: 1691062559.986385438 0.136469 -0.411803 10.1299 -0.0532632 -0.00745685 0.0447411 0.23 0 pose: 0.0 -4.72899 -0.159039 0 0.000237172 -0.00350644 0.724961 0.688781 uwb: 0.50032800 885.313 1485.13 +imu_odom_: 1691062560.13446111 0.565032 -0.174777 10.1538 -0.0458064 -0.0415453 0.0447411 0.21 -0.02 pose: 0.24064915 -4.72899 -0.159039 0 -0.00189452 -0.00312646 0.72508 0.688655 uwb: 0.0 885.313 1485.13 +imu_odom_: 1691062560.29391982 0.830788 -0.0526724 10.0317 -0.0692422 -0.0106526 0.0543285 0.21 -0.02 pose: 0.0 -4.72899 -0.159039 0 -0.00189452 -0.00312646 0.72508 0.688655 uwb: 0.49921396 885.232 1485.47 +imu_odom_: 1691062560.56390830 0.56982 -0.287304 9.98382 -0.0532632 -0.0191748 0.0426106 0.23 0.02 pose: 0.51909522 -4.73378 -0.150259 0 -0.00418165 -0.0009005760.725119 0.688611 uwb: 0.0 885.232 1485.47 +imu_odom_: 1691062560.82442130 1.01754 -0.402226 10.0437 -0.0479369 -0.0149137 0.0372843 0.23 0.02 pose: 0.0 -4.73378 -0.150259 0 -0.00418165 -0.0009005760.725119 0.688611 uwb: 0.50059641 883.059 1485.22 +imu_odom_: 1691062560.99446956 0.225055 -0.0742203 9.48583 -0.0543285 0.0127832 0.0458064 0.25 0 pose: 0.42924011 -4.72979 -0.13669 0 -1.99927e-05-0.00284847 0.725241 0.688489 uwb: 0.0 883.059 1485.22 +imu_odom_: 1691062560.125374308 0.35913 -0.277727 10.0269 -0.0713727 0.0340885 0.056459 0.25 0 pose: 0.0 -4.72979 -0.13669 0 -1.99927e-05-0.00284847 0.725241 0.688489 uwb: 0.49956691 885.908 1486.41 +imu_odom_: 1691062560.152529185 0.129287 -0.107739 10.0628 -0.0436758 0 0.0447411 0.25 0.02 pose: 0.52990361 -4.73458 -0.127913 0 0.00253845 -0.00613495 0.725239 0.688466 uwb: 0.0 885.908 1486.41 +imu_odom_: 1691062560.177517738 0.215478 -0.251391 10.2424 -0.0436758 0.00745685 0.0394148 0.19 0 pose: 0.43006839 -4.73937 -0.119136 0 -0.000587546-0.00269255 0.72544 0.68828 uwb: 0.50217712 884.655 1486.01 +imu_odom_: 1691062560.193473233 0.294487 -0.023942 9.991 -0.0596548 0.00745685 0.0458064 0.23 0.02 pose: 0.0 -4.73937 -0.119136 0 -0.000587546-0.00269255 0.72544 0.68828 uwb: 0.0 884.655 1486.01 +imu_odom_: 1691062560.219357422 0.0766145 -0.253785 9.36851 -0.036219 0.0298274 0.0245011 0.23 0.02 pose: 0.51978068 -4.73539 -0.105565 0 -0.00280928 0.00175479 0.725493 0.688221 uwb: 0.0 884.655 1486.01 +imu_odom_: 1691062560.243356722 0.462081 -0.11971 9.98861 -0.0245011 0 0.0447411 0.23 -0.02 pose: 0.0 -4.73539 -0.105565 0 -0.00280928 0.00175479 0.725493 0.688221 uwb: 0.49633550 883.844 1485.65 +imu_odom_: 1691062560.267351939 0.533907 0.0622492 10.0365 -0.02024 -0.0298274 0.0340885 0.23 -0.02 pose: 0.42004754 -4.73539 -0.105565 0 -0.00395216 0.00438362 0.725384 0.68832 uwb: 0.0 883.844 1485.65 +imu_odom_: 1691062560.284424719 0.526724 -0.428562 9.30387 -0.0511327 0.0138484 0.0500674 0.19 0 pose: 0.40977004 -4.73424 -0.093541 0 0.000735343 0.00441625 0.725381 0.688333 uwb: 0.50151800 884.138 1486.3 +imu_odom_: 1691062560.300417252 0.519542 -0.0311246 10.5752 -0.0639159 -0.0127832 0.0468716 0.19 0 pose: 0.0 -4.73424 -0.093541 0 0.000735343 0.00441625 0.725381 0.688333 uwb: 0.0 884.138 1486.3 +imu_odom_: 1691062560.326375810 1.00796 -0.316035 9.64624 -0.0671117 0.00319579 0.0532632 0.18 0 pose: 0.33065313 -4.73393 -0.0873812 0 0.00188054 0.00272678 0.72549 0.688225 uwb: 0.49955817 884.917 1486.8 +imu_odom_: 1691062560.351633549 0.905008 -0.344765 10.0461 -0.0628506 0.0319579 0.0426106 0.18 0 pose: 0.0 -4.73393 -0.0873812 0 0.00188054 0.00272678 0.72549 0.688225 uwb: 0.0 884.917 1486.8 +imu_odom_: 1691062560.377472533 0.275333 -0.23942 9.54808 -0.0841559 0.0511327 0.056459 0.18 0 pose: 0.51216297 -4.73974 -0.0767566 0 0.00375655 -0.00156677 0.725648 0.688054 uwb: 0.50126718 885.746 1487.09 +imu_odom_: 1691062560.400563657 0.40462 -0.280122 9.60554 -0.0894822 -0.0340885 0.0447411 0.18 0 pose: 0.0 -4.73974 -0.0767566 0 0.00375655 -0.00156677 0.725648 0.688054 uwb: 0.0 885.746 1487.09 +imu_odom_: 1691062560.416360790 0.608127 -0.579397 9.91678 -0.0575243 0.0266316 0.0351537 0.17 0.02 pose: 0.31855579 -4.74101 -0.0744464 0 0.000242704 -0.0006128120.725813 0.687891 uwb: 0.0 885.746 1487.09 +imu_odom_: 1691062560.432367032 1.26174 -0.40462 10.4818 -0.0713727 -0.0948085 0.0905475 0.17 0.02 pose: 0.0 -4.74101 -0.0744464 0 0.000242704 -0.0006128120.725813 0.687891 uwb: 0.49922278 879.78 1485.8 +imu_odom_: 1691062560.448342942 1.27372 -0.225055 9.66539 -0.0543285 -0.0447411 0.108657 0.17 0.02 pose: 0.0 -4.74101 -0.0744464 0 0.000242704 -0.0006128120.725813 0.687891 uwb: 0.0 879.78 1485.8 +imu_odom_: 1691062560.464332268 1.8579 -0.296881 10.1969 -0.0479369 -0.0468716 0.149137 0.15 0.2 pose: 0.23987926 -4.73224 -0.0696409 0 -0.00132984 -0.00268292 0.72583 0.687868 uwb: 0.0 879.78 1485.8 +imu_odom_: 1691062560.480355133 1.53468 -0.363919 9.34936 -0.0575243 -0.0809601 0.209857 0.15 0.2 pose: 0.0 -4.73224 -0.0696409 0 -0.00132984 -0.00268292 0.72583 0.687868 uwb: 0.49961357 878.372 1486.03 +imu_odom_: 1691062560.497465534 1.63763 -0.414197 10.082 -0.0415453 0 0.269512 0.15 0.41 pose: 0.72878079 -4.737 -0.0608772 0 0.0042351 -0.00944391 0.727967 0.685535 uwb: 0.0 878.372 1486.03 +imu_odom_: 1691062560.514517315 0.859518 -0.320823 9.83299 -0.0553937 0.0266316 0.372843 0.15 0.41 pose: 0.0 -4.737 -0.0608772 0 0.0042351 -0.00944391 0.727967 0.685535 uwb: 0.0 878.372 1486.03 +imu_odom_: 1691062560.530389984 0.80924 -0.622492 9.93594 -0.0596548 0.02024 0.46339 0.15 0.41 pose: 0.0 -4.737 -0.0608772 0 0.0042351 -0.00944391 0.727967 0.685535 uwb: 0.50102804 876.184 1485.77 +imu_odom_: 1691062560.546511424 0.806846 -0.560243 10.1849 -0.0415453 -0.0117179 0.488956 0.1 0.41 pose: 0.7153418 -4.73704 -0.0608714 0 0.00471131 -0.00994771 0.728524 0.684932 uwb: 0.0 876.184 1485.77 +imu_odom_: 1691062560.563452089 0.818817 -0.117316 9.69173 -0.0468716 -0.00958738 0.499609 0.09 0.47 pose: 0.0 -4.73704 -0.0608714 0 0.00471131 -0.00994771 0.728524 0.684932 uwb: 0.0 876.184 1485.77 +imu_odom_: 1691062560.580464207 1.06063 -0.0526724 10.2208 -0.036219 -0.0106526 0.515588 0.09 0.47 pose: 0.66995349 -4.73291 -0.047367 0 0.00613743 -0.0145646 0.737196 0.675494 uwb: 0.50015895 872.339 1484.92 +imu_odom_: 1691062560.596452366 0.948104 -0.414197 9.71328 -0.0585895 -0.0117179 0.540089 0.09 0.47 pose: 0.0 -4.73291 -0.047367 0 0.00613743 -0.0145646 0.737196 0.675494 uwb: 0.0 872.339 1484.92 +imu_odom_: 1691062560.613448735 0.758962 -0.572214 9.84496 -0.0617853 0.0149137 0.54435 0.08 0.5 pose: 0.0 -4.73291 -0.047367 0 0.00613743 -0.0145646 0.737196 0.675494 uwb: 0.0 872.339 1484.92 +imu_odom_: 1691062560.631450106 0.667982 -0.294487 9.98861 -0.0511327 -0.0117179 0.558199 0.08 0.5 pose: 0.33954241 -4.73291 -0.0473673 0 0.00910311 -0.0151823 0.742603 0.669498 uwb: 0.49848491 869.72 1484.54 +imu_odom_: 1691062560.645455385 0.761356 -0.0766145 9.68933 -0.0596548 -0.0191748 0.597613 0.07 0.58 pose: 0.42991965 -4.73762 -0.0385498 0 0.00783739 -0.0155263 0.749913 0.661308 uwb: 0.0 869.72 1484.54 +imu_odom_: 1691062560.660316927 0.881066 -0.308852 9.90481 -0.0340885 0.00106526 0.610397 0.07 0.58 pose: 0.5890605 -4.73762 -0.0385498 0 0.0083012 -0.0152146 0.750993 0.660083 uwb: 0.0 869.72 1484.54 +imu_odom_: 1691062560.677450952 0.593762 -0.395043 9.8665 -0.0426106 0.0394148 0.614658 0.07 0.58 pose: 0.0 -4.73762 -0.0385498 0 0.0083012 -0.0152146 0.750993 0.660083 uwb: 0.50004229 869.671 1484.72 +imu_odom_: 1691062560.694664012 0.885855 -0.263362 10.0173 -0.0500674 0.0149137 0.630637 0.05 0.5 pose: 0.40110241 -4.73758 -0.0385558 0 0.00817013 -0.0149003 0.758495 0.651457 uwb: 0.0 869.671 1484.72 +imu_odom_: 1691062560.709604298 1.00078 -0.277727 9.63427 -0.0500674 0.00745685 0.626375 0.05 0.47 pose: 0.0 -4.73758 -0.0385558 0 0.00817013 -0.0149003 0.758495 0.651457 uwb: 0.0 869.671 1484.72 +imu_odom_: 1691062560.724594163 0.395043 -0.160412 9.55047 -0.0607201 0.0596548 0.56246 0.05 0.47 pose: 0.0 -4.73758 -0.0385558 0 0.00817013 -0.0149003 0.758495 0.651457 uwb: 0.50110678 870.021 1485.1 +imu_odom_: 1691062560.741434795 0.0430956 0.0742203 10.2783 -0.0426106 0.00532632 0.465521 0.05 0.47 pose: 0.24225323 -4.73762 -0.0385498 0 0.010182 -0.0156822 0.76309 0.646022 uwb: 0.0 870.021 1485.1 +imu_odom_: 1691062560.758432914 0.481235 -0.0957681 9.84735 -0.0532632 -0.0191748 0.411192 0.06 0.53 pose: 0.0 -4.73762 -0.0385498 0 0.010182 -0.0156822 0.76309 0.646022 uwb: 0.0 870.021 1485.1 +imu_odom_: 1691062560.773420154 0.785298 -0.184354 10.0365 -0.0639159 -0.00532632 0.38243 0.06 0.53 pose: 0.0 -4.73762 -0.0385498 0 0.010182 -0.0156822 0.76309 0.646022 uwb: 0.49911195 868.223 1485.03 +imu_odom_: 1691062560.789325779 0.727837 -0.349553 9.73004 -0.0458064 0.0170442 0.347276 0.03 0.32 pose: 0.71743879 -4.74017 -0.0338793 0 0.0103005 -0.0112828 0.773063 0.634145 uwb: 0.0 868.223 1485.03 +imu_odom_: 1691062560.806431514 0.636858 -0.19393 9.90721 -0.0575243 0.02024 0.331297 0.03 0.32 pose: 0.0 -4.74017 -0.0338793 0 0.0103005 -0.0112828 0.773063 0.634145 uwb: 0.0 868.223 1485.03 +imu_odom_: 1691062560.822582410 0.368707 -0.167594 9.92875 -0.0553937 0.0127832 0.324906 0.03 0.32 pose: 0.0 -4.74017 -0.0338793 0 0.0103005 -0.0112828 0.773063 0.634145 uwb: 0.49979731 866.853 1485.05 +imu_odom_: 1691062560.839319508 0.56982 -0.244209 9.94551 -0.052198 0 0.297209 0.04 0.35 pose: 0.6968809 -4.74239 -0.0297599 0 0.0100218 -0.0118787 0.773746 0.633306 uwb: 0.0 866.853 1485.05 +imu_odom_: 1691062560.865375183 0.620098 -0.186748 9.87129 -0.0490022 0.00213053 0.264186 0.03 0.26 pose: 0.0 -4.74239 -0.0297599 0 0.0100218 -0.0118787 0.773746 0.633306 uwb: 0.0 866.853 1485.05 +imu_odom_: 1691062560.882314390 0.471658 -0.287304 9.95988 -0.0532632 -0.00852212 0.256729 0.03 0.26 pose: 0.66946352 -4.74239 -0.02976 0 0.0078387 -0.00760224 0.779596 0.626188 uwb: 0.50098138 865.509 1484.97 +imu_odom_: 1691062560.898319465 0.452504 -0.220267 9.8665 -0.0500674 0.00958738 0.192813 0.03 0.26 pose: 0.0 -4.74239 -0.02976 0 0.0078387 -0.00760224 0.779596 0.626188 uwb: 0.0 865.509 1484.97 +imu_odom_: 1691062560.915518817 0.356736 0.0670376 9.96706 -0.0500674 0 0.109722 0.03 0.26 pose: 0.0 -4.74239 -0.02976 0 0.0078387 -0.00760224 0.779596 0.626188 uwb: 0.0 865.509 1484.97 +imu_odom_: 1691062560.932309870 0.289698 0.0407014 9.9096 -0.0575243 -0.0127832 0.052198 0.03 0.26 pose: 0.24990012 -4.74239 -0.02976 0 0.00838708 -0.00615344 0.781328 0.624034 uwb: 0.49959316 867.087 1485.87 +imu_odom_: 1691062560.949321404 0.746991 -0.196325 9.97903 -0.0596548 -0.0287621 -0.015979 0.02 -0.05 pose: 0.51112763 -4.74239 -0.02976 0 0.00605998 -0.00244522 0.783194 0.621743 uwb: 0.0 867.087 1485.87 +imu_odom_: 1691062560.965331728 0.919373 -0.234632 9.85932 -0.0532632 -0.0330232 -0.0969391 0.02 -0.05 pose: 0.0 -4.74239 -0.02976 0 0.00605998 -0.00244522 0.783194 0.621743 uwb: 0.0 867.087 1485.87 +imu_odom_: 1691062560.982346762 0.962469 0.0502782 9.89763 -0.052198 0 -0.185356 0.02 -0.26 pose: 0.41893638 -4.74239 -0.02976 0 0.00854054 -0.00428794 0.782239 0.622905 uwb: 0.49936859 868.262 1486.58 +imu_odom_: 1691062560.998292342 0.411803 -0.0191536 9.81383 -0.0596548 0.0223706 -0.221575 0.02 -0.26 pose: 0.0 -4.74239 -0.02976 0 0.00854054 -0.00428794 0.782239 0.622905 uwb: 0.0 868.262 1486.58 +imu_odom_: 1691062561.15284047 0.0933739 -0.397437 10.0006 -0.0692422 0.0106526 -0.264186 0.02 -0.26 pose: 0.0 -4.74239 -0.02976 0 0.00854054 -0.00428794 0.782239 0.622905 uwb: 0.0 868.262 1486.58 +imu_odom_: 1691062561.31336662 0.258574 -0.344765 9.92636 -0.0585895 -0.015979 -0.278034 0.01 -0.26 pose: 0.7208540 -4.74239 -0.02976 0 0.00925467 -0.00435666 0.781727 0.623537 uwb: 0.49831580 866.975 1486.28 +imu_odom_: 1691062561.48564891 0.407014 -0.277727 9.8665 -0.056459 -0.00532632 -0.264186 0.02 -0.41 pose: 0.0 -4.74239 -0.02976 0 0.00925467 -0.00435666 0.781727 0.623537 uwb: 0.0 866.975 1486.28 +imu_odom_: 1691062561.66582014 0.591368 -0.134075 9.97903 -0.0639159 -0.0213053 -0.246076 0.02 -0.41 pose: 0.66047515 -4.74239 -0.0297601 0 0.00550199 -0.00236727 0.77584 0.630901 uwb: 0.0 866.975 1486.28 +imu_odom_: 1691062561.80431850 0.500388 -0.229843 9.86172 -0.0500674 0 -0.275903 0.02 -0.35 pose: 0.0 -4.74239 -0.0297601 0 0.00550199 -0.00236727 0.77584 0.630901 uwb: 0.50133728 866.021 1486.43 +imu_odom_: 1691062561.97415681 0.423774 -0.0454898 9.9527 -0.0500674 -0.0245011 -0.307861 0.02 -0.35 pose: 0.0 -4.74239 -0.0297601 0 0.00550199 -0.00236727 0.77584 0.630901 uwb: 0.0 866.021 1486.43 +imu_odom_: 1691062561.111295264 0.363919 -0.169988 9.74201 -0.0692422 -0.00745685 -0.324906 0.02 -0.35 pose: 0.33849256 -4.74239 -0.02976 0 0.00583297 -0.00286994 0.772667 0.634779 uwb: 0.0 866.021 1486.43 +imu_odom_: 1691062561.127299759 0.555455 -0.229843 10.07 -0.0649811 -0.00532632 -0.36432 0.02 -0.35 pose: 0.38858225 -4.74239 -0.02976 0 0.00435947 -0.0006686470.768373 0.639987 uwb: 0.50113313 865.527 1486.56 +imu_odom_: 1691062561.144283007 0.579397 -0.129287 9.81623 -0.0575243 -0.0191748 -0.38243 0.02 -0.35 pose: 0.7117840 -4.74239 -0.02976 0 0.00449044 -0.00138719 0.767453 0.641088 uwb: 0.0 865.527 1486.56 +imu_odom_: 1691062561.160284877 0.694318 -0.316035 9.88087 -0.056459 -0.00639159 -0.338754 0.02 -0.35 pose: 0.0 -4.74239 -0.02976 0 0.00449044 -0.00138719 0.767453 0.641088 uwb: 0.0 865.527 1486.56 +imu_odom_: 1691062561.177406072 0.529119 -0.550666 9.89524 -0.0628506 -0.00639159 -0.270577 0.02 -0.41 pose: 0.41871773 -4.74239 -0.02976 0 0.00668643 -0.0040076 0.762029 0.647496 uwb: 0.49885831 865.877 1486.95 +imu_odom_: 1691062561.194287246 0.526724 -0.423774 9.96946 -0.0532632 -0.0127832 -0.223706 0.01 -0.26 pose: 0.0 -4.74239 -0.02976 0 0.00668643 -0.0040076 0.762029 0.647496 uwb: 0.0 865.877 1486.95 +imu_odom_: 1691062561.210283283 0.4956 -0.301669 9.97424 -0.0596548 -0.00532632 -0.173638 0.01 -0.26 pose: 0.0 -4.74239 -0.02976 0 0.00668643 -0.0040076 0.762029 0.647496 uwb: 0.0 865.877 1486.95 +imu_odom_: 1691062561.226405309 0.452504 -0.225055 9.96227 -0.0596548 0.00426106 -0.145941 0.01 -0.17 pose: 0.25019764 -4.74717 -0.0209779 0 0.00492496 -0.00581777 0.759644 0.650294 uwb: 0.50036028 864.126 1486.66 +imu_odom_: 1691062561.243407514 0.433351 -0.308852 9.85932 -0.0553937 -0.0106526 -0.128897 0.01 -0.17 pose: 0.0 -4.74717 -0.0209779 0 0.00492496 -0.00581777 0.759644 0.650294 uwb: 0.0 864.126 1486.66 +imu_odom_: 1691062561.260475631 0.543484 -0.232238 9.88805 -0.0628506 -0.00958738 -0.107592 0.01 -0.17 pose: 0.31985074 -4.74717 -0.0209779 0 0.00248929 -0.00575531 0.757357 0.652971 uwb: 0.0 864.126 1486.66 +imu_odom_: 1691062561.276280350 0.548272 -0.311246 9.84496 -0.0575243 -0.00319579 -0.0916127 0.01 -0.14 pose: 0.43185916 -4.74717 -0.0209779 0 0.00226451 -0.00511949 0.755047 0.655647 uwb: 0.49976532 864.126 1486.66 +imu_odom_: 1691062561.293269723 0.47884 -0.227449 9.88566 -0.0543285 -0.00213053 -0.0820254 0.01 -0.14 pose: 0.0 -4.74717 -0.0209779 0 0.00226451 -0.00511949 0.755047 0.655647 uwb: 0.0 864.126 1486.66 +imu_odom_: 1691062561.309280341 0.442927 -0.258574 9.86172 -0.0553937 -0.00319579 -0.0745685 0.01 -0.14 pose: 0.0 -4.74717 -0.0209779 0 0.00226451 -0.00511949 0.755047 0.655647 uwb: 0.0 864.126 1486.66 +imu_odom_: 1691062561.326361582 0.517148 -0.222661 9.88566 -0.0553937 -0.00639159 -0.0671117 0.01 -0.14 pose: 0.6925355 -4.74717 -0.0209779 0 0.00228114 -0.00581481 0.754747 0.655986 uwb: 0.49849085 862.762 1486.62 +imu_odom_: 1691062561.351403802 0.466869 -0.28491 9.87608 -0.0575243 -0.00319579 -0.0532632 0 -0.08 pose: 0.0 -4.74717 -0.0209779 0 0.00228114 -0.00581481 0.754747 0.655986 uwb: 0.0 862.762 1486.62 +imu_odom_: 1691062561.378453110 0.363919 -0.325611 9.79468 -0.0607201 -0.00426106 -0.0841559 0.01 -0.11 pose: 0.66908452 -4.74717 -0.0209779 0 0.00210671 -0.00429491 0.752247 0.658864 uwb: 0.50027570 863.974 1487.2 +imu_odom_: 1691062561.404334970 0.289698 0.213084 9.96227 -0.0511327 -0.00532632 -0.211988 0.01 -0.11 pose: 0.23997555 -4.74717 -0.0209779 0 -0.000225536-0.00457111 0.75145 0.659774 uwb: 0.0 863.974 1487.2 +imu_odom_: 1691062561.431569471 0.462081 -0.23942 9.9934 -0.0585895 -0.0213053 -0.322775 0.01 -0.35 pose: 0.46027977 -4.74717 -0.0209779 0 -0.000950043-0.00167704 0.748485 0.663149 uwb: 0.49939493 866.88 1488.3 +imu_odom_: 1691062561.448417980 0.490811 -0.179565 9.7444 -0.0596548 -0.00639159 -0.357929 0.01 -0.35 pose: 0.6961227 -4.74717 -0.0209779 0 -0.000295072-0.00205149 0.747647 0.664093 uwb: 0.0 866.88 1488.3 +imu_odom_: 1691062561.475271595 0.490811 -0.198719 9.89284 -0.056459 0.00106526 -0.370712 0.01 -0.55 pose: 0.0 -4.74717 -0.0209779 0 -0.000295072-0.00205149 0.747647 0.664093 uwb: 0.50063734 866.392 1488.41 +imu_odom_: 1691062561.501538424 0.430956 -0.141258 9.97664 -0.0639159 -0.0149137 -0.4048 0.01 -0.55 pose: 0.37121783 -4.74713 -0.020984 0 0.00312715 -0.00243609 0.742955 0.66933 uwb: 0.0 866.392 1488.41 +imu_odom_: 1691062561.528336335 0.545878 -0.225055 9.74201 -0.0681769 -0.00213053 -0.452737 0.01 -0.64 pose: 0.53120444 -4.74714 -0.0209829 0 0.00454012 -8.28612e-050.735299 0.677727 uwb: 0.0 866.392 1488.41 +imu_odom_: 1691062561.554269525 0.562637 -0.179565 9.84496 -0.0585895 -0.0117179 -0.500674 0.01 -0.53 pose: 0.0 -4.74714 -0.0209829 0 0.00454012 -8.28612e-050.735299 0.677727 uwb: 0.0 866.392 1488.41 +imu_odom_: 1691062561.581321749 0.45011 -0.241814 9.78989 -0.0639159 -0.0213053 -0.533697 0.01 -0.53 pose: 0.34803804 -4.74717 -0.0209786 0 0.00539032 -0.00324432 0.729336 0.684127 uwb: 0.100242958 868.983 1488.99 +imu_odom_: 1691062561.597458358 0.565032 -0.248997 9.86411 -0.0617853 -0.0149137 -0.553937 0 -0.55 pose: 0.0 -4.74717 -0.0209786 0 0.00539032 -0.00324432 0.729336 0.684127 uwb: 0.0 868.983 1488.99 +imu_odom_: 1691062561.614291410 0.447716 -0.248997 9.81144 -0.0479369 -0.0127832 -0.567786 0 -0.55 pose: 0.53018661 -4.74717 -0.0209785 0 0.00457159 -0.00457309 0.719009 0.69497 uwb: 0.0 868.983 1488.99 +imu_odom_: 1691062561.640432249 0.440533 -0.217872 10.1562 -0.0607201 -0.0255663 -0.583765 0 -0.61 pose: 0.24930521 -4.74713 -0.0209844 0 0.00334091 -0.0045345 0.713775 0.700352 uwb: 0.49879998 870.604 1489.76 +imu_odom_: 1691062561.667314737 0.392649 -0.308852 10.0365 -0.0543285 0.00532632 -0.626375 0 -0.61 pose: 0.8075012 -4.74717 -0.0209785 0 0.00294325 -0.00393451 0.712013 0.702149 uwb: 0.0 870.604 1489.76 +imu_odom_: 1691062561.693364292 0.42138 -0.304064 9.95509 -0.052198 0.0117179 -0.64555 0 -0.67 pose: 0.44948315 -4.73825 -0.0161905 0 -0.000688425-0.00265784 0.70171 0.712458 uwb: 0.50068400 872.303 1490.25 +imu_odom_: 1691062561.720300734 0.366313 -0.136469 9.79468 -0.0490022 -0.0138484 -0.672182 0 -0.67 pose: 0.0 -4.73825 -0.0161905 0 -0.000688425-0.00265784 0.70171 0.712458 uwb: 0.0 872.303 1490.25 +imu_odom_: 1691062561.746308584 0.486023 -0.148441 9.79707 -0.0628506 -0.0138484 -0.687096 0 -0.79 pose: 0.52985997 -4.73825 -0.0161901 0 -0.00146984 -0.00159128 0.688409 0.725319 uwb: 0.49745260 871.013 1489.94 +imu_odom_: 1691062561.773334852 0.47884 -0.248997 9.83059 -0.0553937 -0.00426106 -0.710531 0 -1 pose: 0.26007850 -4.73825 -0.0161909 0 0.00114562 -0.00144829 0.681523 0.731795 uwb: 0.50120604 870.574 1489.87 +imu_odom_: 1691062561.799280874 0.280122 -0.0814029 9.93833 -0.0511327 -0.00745685 -0.739294 0 -1 pose: 0.7969729 -4.73841 -0.0161699 0 0.00121536 -0.00223949 0.679332 0.733827 uwb: 0.0 870.574 1489.87 +imu_odom_: 1691062561.816284829 0.344765 -0.275333 9.80426 -0.0649811 -0.0170442 -0.756338 0 -1.06 pose: 0.45002561 -4.73825 -0.0161899 0 0.00137697 -0.00151769 0.666572 0.745438 uwb: 0.0 870.574 1489.87 +imu_odom_: 1691062561.832393440 0.76375 -0.136469 10.0317 -0.0607201 -0.0276969 -0.765925 0 -1.06 pose: 0.0 -4.73825 -0.0161899 0 0.00137697 -0.00151769 0.666572 0.745438 uwb: 0.49937160 870.164 1489.69 +imu_odom_: 1691062561.858405081 0.675165 -0.328006 9.81383 -0.0553937 -0.0181095 -0.794687 0 -1.06 pose: 0.7063594 -4.73841 -0.0161699 0 0.000707897 -0.00137169 0.664475 0.747309 uwb: 0.0 870.164 1489.69 +imu_odom_: 1691062561.883382557 0.483629 -0.28491 9.8689 -0.0639159 -0.0127832 -0.775513 0 -1.06 pose: 0.0 -4.73841 -0.0161699 0 0.000707897 -0.00137169 0.664475 0.747309 uwb: 0.49996365 868.474 1489.16 +imu_odom_: 1691062561.900287936 0.481235 -0.248997 9.79468 -0.0479369 -0.015979 -0.790426 0 -0.97 pose: 0.33064153 -4.73841 -0.0161701 0 0.00145569 -0.00292116 0.654422 0.756122 uwb: 0.0 868.474 1489.16 +imu_odom_: 1691062561.925271536 0.471658 -0.107739 10.0556 -0.0490022 -0.0223706 -0.80747 0 -0.97 pose: 0.0 -4.73841 -0.0161701 0 0.00145569 -0.00292116 0.654422 0.756122 uwb: 0.50113021 868.413 1489.39 +imu_odom_: 1691062561.949228844 0.536301 -0.141258 9.76116 -0.0639159 -0.0245011 -0.801079 0 -1 pose: 0.50841254 -4.73841 -0.0161698 0 0.000290689 -0.00521419 0.63844 0.769654 uwb: 0.0 868.413 1489.39 +imu_odom_: 1691062561.972266894 0.612916 -0.28491 9.83059 -0.0660464 -0.0234358 -0.812797 0 -1 pose: 0.0 -4.73841 -0.0161698 0 0.000290689 -0.00521419 0.63844 0.769654 uwb: 0.49969241 864.665 1488.03 +imu_odom_: 1691062561.986284716 0.40462 -0.112527 9.7444 -0.0575243 -0.00319579 -0.820254 0 -1 pose: 0.0 -4.73841 -0.0161698 0 0.000290689 -0.00521419 0.63844 0.769654 uwb: 0.0 864.665 1488.03 +imu_odom_: 1691062562.3426326 0.452504 -0.146046 9.87848 -0.0585895 -0.0276969 -0.822384 0 -0.88 pose: 0.41974139 -4.73841 -0.0161697 0 0.00384133 -0.00295668 0.624732 0.780824 uwb: 0.0 864.665 1488.03 +imu_odom_: 1691062562.27216819 0.488417 -0.23942 9.97903 -0.0585895 -0.0276969 -0.84582 0 -0.88 pose: 0.0 -4.73841 -0.0161697 0 0.00384133 -0.00295668 0.624732 0.780824 uwb: 0.49958746 866.893 1488.25 +imu_odom_: 1691062562.51285831 0.610521 -0.208296 9.69173 -0.0617853 -0.0127832 -0.870321 0 -0.88 pose: 0.78042217 -4.73841 -0.0161697 0 0.00431484 -0.00297577 0.598299 0.801256 uwb: 0.0 866.893 1488.25 +imu_odom_: 1691062562.76344971 0.438139 -0.232238 9.72764 -0.0532632 -0.00852212 -0.873517 0 -1.17 pose: 0.41019600 -4.73825 -0.0161887 0 0.00445621 -0.00582223 0.583409 0.812145 uwb: 0.50003373 865.215 1487.69 +imu_odom_: 1691062562.100213916 0.481235 -0.311246 9.9934 -0.0585895 -0.00745685 -0.862864 0 -1.17 pose: 0.0 -4.73825 -0.0161887 0 0.00445621 -0.00582223 0.583409 0.812145 uwb: 0.0 865.215 1487.69 +imu_odom_: 1691062562.117224582 0.349553 -0.153229 9.84496 -0.0553937 -0.00213053 -0.873517 0 -0.91 pose: 0.6955104 -4.73841 -0.0161678 0 0.00397692 -0.00534437 0.580831 0.813997 uwb: 0.0 865.215 1487.69 +imu_odom_: 1691062562.141215434 0.229843 -0.0670376 9.91199 -0.0607201 -0.0276969 -0.859668 0 -0.91 pose: 0.0 -4.73841 -0.0161678 0 0.00397692 -0.00534437 0.580831 0.813997 uwb: 0.49984708 863.244 1486.53 +imu_odom_: 1691062562.164350605 0.612916 -0.205901 9.98622 -0.0639159 -0.0266316 -0.869256 0 -0.88 pose: 0.49084114 -4.73841 -0.016169 0 0.000624295 -0.00435891 0.562569 0.826739 uwb: 0.0 863.244 1486.53 +imu_odom_: 1691062562.190207972 0.332794 -0.0909797 9.97903 -0.0575243 -0.0170442 -0.891626 0 -0.88 pose: 0.0 -4.73841 -0.016169 0 0.000624295 -0.00435891 0.562569 0.826739 uwb: 0.50010956 864.044 1486.95 +imu_odom_: 1691062562.206213344 0.263362 -0.265756 9.56244 -0.0681769 -0.0213053 -0.864995 0 -0.88 pose: 0.39898232 -4.73841 -0.0161696 0 0.00129876 -0.00177742 0.547569 0.836758 uwb: 0.0 864.044 1486.95 +imu_odom_: 1691062562.233195288 0.488417 -0.265756 9.94312 -0.0628506 -0.0223706 -0.878843 0 -0.88 pose: 0.0 -4.73841 -0.0161696 0 0.00129876 -0.00177742 0.547569 0.836758 uwb: 0.49851427 863.308 1486.31 +imu_odom_: 1691062562.258189975 0.371101 -0.227449 9.98622 -0.0543285 -0.0213053 -0.904409 0 -0.94 pose: 0.50168152 -4.73841 -0.0161688 0 0.00210821 -0.0005983910.528114 0.849171 uwb: 0.0 863.308 1486.31 +imu_odom_: 1691062562.275199766 0.447716 -0.225055 9.90481 -0.0671117 -0.0266316 -0.913997 0 -0.94 pose: 0.0 -4.73841 -0.0161688 0 0.00210821 -0.0005983910.528114 0.849171 uwb: 0.50010664 866.197 1487.45 +imu_odom_: 1691062562.300187745 0.462081 -0.306458 9.73243 -0.0543285 -0.0181095 -0.915062 0 -0.94 pose: 0.42878241 -4.73841 -0.0161691 0 0.000431066 -0.0024711 0.51127 0.859416 uwb: 0.0 866.197 1487.45 +imu_odom_: 1691062562.316182910 0.452504 -0.260968 9.84975 -0.0585895 -0.0298274 -0.915062 0 -0.94 pose: 0.0 -4.73841 -0.0161691 0 0.000431066 -0.0024711 0.51127 0.859416 uwb: 0.0 866.197 1487.45 +imu_odom_: 1691062562.340193302 0.349553 -0.282516 9.85214 -0.0468716 -0.0468716 -0.910801 0 -1 pose: 0.42099845 -4.73841 -0.0161688 0 0.000240775 -0.00301798 0.49399 0.869462 uwb: 0.50008915 866.222 1487.36 +imu_odom_: 1691062562.367204992 0.768539 -0.107739 9.57441 -0.0756338 -0.0298274 -0.90654 0 -1 pose: 0.0 -4.73841 -0.0161688 0 0.000240775 -0.00301798 0.49399 0.869462 uwb: 0.0 866.222 1487.36 +imu_odom_: 1691062562.391195844 0.610521 -0.371101 10.0221 -0.0575243 0.02024 -0.902279 0 -0.94 pose: 0.40830907 -4.73841 -0.0161693 0 -0.000901417-0.00248841 0.476972 0.878914 uwb: 0.49989374 864.236 1486.27 +imu_odom_: 1691062562.416203072 0.507571 -0.260968 10.2089 -0.0703074 -0.0191748 -0.871386 0 -0.94 pose: 0.0 -4.73841 -0.0161693 0 -0.000901417-0.00248841 0.476972 0.878914 uwb: 0.0 864.236 1486.27 +imu_odom_: 1691062562.430219147 0.426168 -0.335188 9.73004 -0.056459 0.00106526 -0.896953 0 -1.03 pose: 0.93002646 -4.73826 -0.0161881 0 0.00186683 -0.00555142 0.438247 0.898835 uwb: 0.50003665 862.646 1485.41 +imu_odom_: 1691062562.455325242 0.344765 -0.0383072 9.88566 -0.0628506 -0.0191748 -0.917193 0 -1.03 pose: 0.0 -4.73826 -0.0161881 0 0.00186683 -0.00555142 0.438247 0.898835 uwb: 0.0 862.646 1485.41 +imu_odom_: 1691062562.480203855 0.545878 -0.328006 9.85214 -0.0639159 -0.0308927 -0.927845 0 -1.26 pose: 0.39122170 -4.73825 -0.0161894 0 0.00176542 -0.00316284 0.421482 0.906829 uwb: 0.50093491 861.851 1484.99 +imu_odom_: 1691062562.502337232 0.557849 -0.213084 9.85693 -0.0607201 -0.0266316 -0.942759 0 -1.26 pose: 0.0 -4.73825 -0.0161894 0 0.00176542 -0.00316284 0.421482 0.906829 uwb: 0.0 861.851 1484.99 +imu_odom_: 1691062562.526342665 0.61531 -0.129287 9.83538 -0.0681769 -0.0223706 -0.923584 0 -0.94 pose: 0.30901334 -4.73841 -0.0161696 0 0.00101706 -0.00592748 0.40784 0.913033 uwb: 0.49980333 861.159 1484.21 +imu_odom_: 1691062562.543459490 0.399832 -0.201113 10.0173 -0.052198 0.00532632 -0.92678 0 -0.94 pose: 0.0 -4.73841 -0.0161696 0 0.00101706 -0.00592748 0.40784 0.913033 uwb: 0.0 861.159 1484.21 +imu_odom_: 1691062562.568190240 0.476446 -0.308852 10.094 -0.0596548 -0.00958738 -0.939563 0 -1 pose: 0.47245596 -4.73841 -0.0161714 0 0.00454903 -0.00698712 0.386783 0.922133 uwb: 0.0 861.159 1484.21 +imu_odom_: 1691062562.585195073 0.505177 -0.215478 9.83538 -0.0692422 -0.0181095 -0.931041 0 -1 pose: 0.0 -4.73841 -0.0161714 0 0.00454903 -0.00698712 0.386783 0.922133 uwb: 0.50009789 860.443 1483.51 +imu_odom_: 1691062562.609180675 0.378284 -0.208296 9.75637 -0.0681769 -0.0127832 -0.935302 0 -0.94 pose: 0.51722901 -4.73836 -0.0161773 0 0.00206897 -0.00425292 0.363453 0.9316 uwb: 0.0 860.443 1483.51 +imu_odom_: 1691062562.633170360 0.560243 -0.21069 10.0461 -0.0585895 -0.0106526 -0.920388 0 -0.94 pose: 0.7117841 -4.73841 -0.0161712 0 0.00178757 -0.0036297 0.36022 0.932859 uwb: 0.50071618 860.976 1483.25 +imu_odom_: 1691062562.658179338 0.493206 -0.0837971 10.1011 -0.0575243 -0.0298274 -0.940628 0 -0.94 pose: 0.40857446 -4.73837 -0.0161763 0 0.00194518 -0.00448654 0.341738 0.939782 uwb: 0.0 860.976 1483.25 +imu_odom_: 1691062562.682170189 0.390255 -0.174777 9.78031 -0.0500674 -0.0426106 -0.975782 0 -0.94 pose: 0.0 -4.73837 -0.0161763 0 0.00194518 -0.00448654 0.341738 0.939782 uwb: 0.49861051 860.633 1482.86 +imu_odom_: 1691062562.699279722 0.373495 -0.205901 9.8665 -0.072438 -0.0266316 -0.960868 0 -0.94 pose: 0.32018036 -4.73841 -0.0161708 0 0.00413061 -0.00326345 0.32682 0.945072 uwb: 0.0 860.633 1482.86 +imu_odom_: 1691062562.724174084 0.797269 -0.47884 9.96227 -0.0575243 -0.00213053 -0.949151 0 -0.94 pose: 0.0 -4.73841 -0.0161708 0 0.00413061 -0.00326345 0.32682 0.945072 uwb: 0.49933379 860.659 1482.77 +imu_odom_: 1691062562.748218015 0.500388 -0.198719 10.1179 -0.0511327 0.0127832 -0.94489 0 -0.97 pose: 0.41997187 -4.73841 -0.0161708 0 0.00195974 -0.00171902 0.306818 0.951765 uwb: 0.0 860.659 1482.77 +imu_odom_: 1691062562.764173516 0.23942 -0.306458 9.73004 -0.0671117 -0.015979 -0.916127 0 -0.97 pose: 0.0 -4.73841 -0.0161708 0 0.00195974 -0.00171902 0.306818 0.951765 uwb: 0.0 860.659 1482.77 +imu_odom_: 1691062562.789323649 0.531513 -0.169988 9.68933 -0.056459 -0.00213053 -0.951281 0 -0.94 pose: 0.48012618 -4.73841 -0.0161708 0 0.0023717 -0.00444114 0.284303 0.958721 uwb: 0.49992582 860.322 1482.35 +imu_odom_: 1691062562.812156386 0.476446 -0.047884 9.95748 -0.0671117 -0.00426106 -0.933172 0 -0.94 pose: 0.0 -4.73841 -0.0161708 0 0.0023717 -0.00444114 0.284303 0.958721 uwb: 0.0 860.322 1482.35 +imu_odom_: 1691062562.828155634 -0.0263362 -0.19393 9.8665 -0.0735032 0.0298274 -0.893757 0 -0.94 pose: 0.40020138 -4.73841 -0.0161708 0 0.00418081 -0.00503267 0.265434 0.964107 uwb: 0.50055578 864.18 1483.18 +imu_odom_: 1691062562.845151427 -0.217872 -0.670376 10.0556 -0.0553937 0.0394148 -0.901214 0 -0.94 pose: 0.0 -4.73841 -0.0161708 0 0.00418081 -0.00503267 0.265434 0.964107 uwb: 0.0 864.18 1483.18 +imu_odom_: 1691062562.862220421 -0.0742203 -0.0766145 9.91439 -0.04048 0.0117179 -0.939563 0.03 -0.79 pose: 0.49933088 -4.73816 -0.0162072 0 0.00329269 -0.00082068 0.2425 0.970145 uwb: 0.0 864.18 1483.18 +imu_odom_: 1691062562.877214667 -0.548272 0.0335188 9.97664 -0.0532632 0.0383495 -0.871386 0.03 -0.79 pose: 0.0 -4.73816 -0.0162072 0 0.00329269 -0.00082068 0.2425 0.970145 uwb: 0.49986457 865.094 1483.17 +imu_odom_: 1691062562.893206624 -0.926556 -0.414197 10.0772 -0.076699 -0.0106526 -0.702009 0.03 -0.79 pose: 0.0 -4.73816 -0.0162072 0 0.00329269 -0.00082068 0.2425 0.970145 uwb: 0.0 865.094 1483.17 +imu_odom_: 1691062562.910145254 -0.47884 -0.885855 9.8665 -0.0671117 -0.0916127 -0.608266 0.09 -1 pose: 0.8015226 -4.73841 -0.0161722 0 0.00326605 6.71773e-05 0.238689 0.971091 uwb: 0.0 865.094 1483.17 +imu_odom_: 1691062562.927144546 0.531513 -0.0885855 10.1418 -0.0649811 -0.0990696 -0.570982 0.07 -0.73 pose: 0.0 -4.73841 -0.0161722 0 0.00326605 6.71773e-05 0.238689 0.971091 uwb: 0.50011831 867.298 1483.42 +imu_odom_: 1691062562.944207708 0.73502 0.184354 9.74679 -0.0639159 -0.0415453 -0.534763 0.07 -0.73 pose: 0.65047199 -4.73841 -0.0161726 0 0.00140065 0.00348623 0.214181 0.976787 uwb: 0.0 867.298 1483.42 +imu_odom_: 1691062562.960209872 0.713472 0.122104 10.3453 -0.0596548 -0.0351537 -0.533697 0.08 -0.53 pose: 0.0 -4.73841 -0.0161726 0 0.00140065 0.00348623 0.214181 0.976787 uwb: 0.0 867.298 1483.42 +imu_odom_: 1691062562.977203915 0.0885855 -0.258574 9.78271 -0.0426106 0.00426106 -0.551807 0.08 -0.53 pose: 0.0 -4.73841 -0.0161726 0 0.00140065 0.00348623 0.214181 0.976787 uwb: 0.49922588 871.092 1484.47 +imu_odom_: 1691062562.994143712 0.155623 -0.227449 9.91439 -0.0553937 0.00532632 -0.526241 0.08 -0.53 pose: 0.33935005 -4.73841 -0.0161726 0 0.00398248 0.000456497 0.204507 0.978857 uwb: 0.0 871.092 1484.47 +imu_odom_: 1691062563.9145833 0.289698 -0.308852 9.57202 -0.0543285 0.00532632 -0.480434 0.09 -0.53 pose: 0.41994855 -4.72955 -0.0114559 0 0.00285658 0.00290931 0.19261 0.981267 uwb: 0.0 871.092 1484.47 +imu_odom_: 1691062563.26144836 0.227449 -0.486023 9.90481 -0.0447411 0.0298274 -0.459129 0.09 -0.53 pose: 0.7063303 -4.72959 -0.011449 0 0.00215879 0.00310463 0.190805 0.981621 uwb: 0.50055873 869.408 1483.99 +imu_odom_: 1691062563.40138749 0.430956 -0.169988 9.94791 -0.0436758 0.0149137 -0.445281 0.09 -0.53 pose: 0.0 -4.72959 -0.011449 0 0.00215879 0.00310463 0.190805 0.981621 uwb: 0.0 869.408 1483.99 +imu_odom_: 1691062563.57202206 0.117316 -0.205901 10.1107 -0.0351537 0.0372843 -0.40267 0.1 -0.44 pose: 0.38931734 -4.72955 -0.0114559 0 0.000450267 0.00284734 0.181274 0.983428 uwb: 0.0 869.408 1483.99 +imu_odom_: 1691062563.71134582 0.603339 -0.349553 9.87848 -0.0607201 0.0234358 -0.392017 0.11 -0.41 pose: 0.0 -4.72955 -0.0114559 0 0.000450267 0.00284734 0.181274 0.983428 uwb: 0.0 869.408 1483.99 +imu_odom_: 1691062563.87254281 0.354342 -0.0143652 10.0413 -0.0436758 -0.056459 -0.409062 0.11 -0.41 pose: 0.0 -4.72955 -0.0114559 0 0.000450267 0.00284734 0.181274 0.983428 uwb: 0.50216865 871.128 1484.33 +imu_odom_: 1691062563.102242989 0.926556 0.0143652 10.0269 -0.0479369 -0.0798948 -0.380299 0.11 -0.41 pose: 0.23006852 -4.72959 -0.0114493 0 -5.65203e-050.00440334 0.176296 0.984327 uwb: 0.0 871.128 1484.33 +imu_odom_: 1691062563.118136957 1.30723 -0.0885855 9.86172 -0.0649811 -0.0490022 -0.32171 0.1 -0.41 pose: 0.0 -4.72959 -0.0114493 0 -5.65203e-050.00440334 0.176296 0.984327 uwb: 0.0 871.128 1484.33 +imu_odom_: 1691062563.135254367 1.38145 -0.433351 10.3645 -0.0458064 -0.0575243 -0.287621 0.1 -0.41 pose: 0.0 -4.72959 -0.0114493 0 -5.65203e-050.00440334 0.176296 0.984327 uwb: 0.49975385 872.373 1484.76 +imu_odom_: 1691062563.153187504 1.10852 -0.227449 9.77792 -0.0543285 -0.0223706 -0.259925 0.07 -0.35 pose: 0.72108766 -4.72074 -0.00679207 0 0.00260532 -0.00247989 0.162357 0.986726 uwb: 0.0 872.373 1484.76 +imu_odom_: 1691062563.169186463 1.10373 -0.160412 9.93354 -0.0447411 0.0276969 -0.246076 0.07 -0.35 pose: 0.0 -4.72074 -0.00679207 0 0.00260532 -0.00247989 0.162357 0.986726 uwb: 0.0 872.373 1484.76 +imu_odom_: 1691062563.186128596 0.94571 -0.162806 10.0676 -0.0617853 0.00426106 -0.236489 0.07 -0.35 pose: 0.0 -4.72074 -0.00679207 0 0.00260532 -0.00247989 0.162357 0.986726 uwb: 0.49723114 871.659 1484.03 +imu_odom_: 1691062563.203123809 0.754174 -0.0981623 9.97903 -0.0532632 0.0234358 -0.26312 0.05 -0.32 pose: 0.7999188 -4.72074 -0.00679207 0 0.00268749 -0.00334632 0.161176 0.986916 uwb: 0.0 871.659 1484.03 +imu_odom_: 1691062563.220178808 0.627281 -0.0526724 10.1083 -0.0511327 -0.00213053 -0.279099 0.05 -0.26 pose: 0.0 -4.72074 -0.00679207 0 0.00268749 -0.00334632 0.161176 0.986916 uwb: 0.0 871.659 1484.03 +imu_odom_: 1691062563.238127401 0.672771 -0.174777 9.65821 -0.0671117 -0.0138484 -0.257794 0.05 -0.26 pose: 0.66943183 -4.71193 -0.00206079 0 0.00492351 -0.00870895 0.151485 0.988409 uwb: 0.50080959 871.248 1483.88 +imu_odom_: 1691062563.256177487 0.837971 -0.378284 9.96467 -0.0596548 0.00532632 -0.24288 0.04 -0.26 pose: 0.0 -4.71193 -0.00206079 0 0.00492351 -0.00870895 0.151485 0.988409 uwb: 0.0 871.248 1483.88 +imu_odom_: 1691062563.272170322 0.744597 -0.306458 9.91918 -0.0617853 -0.00958738 -0.223706 0.04 -0.26 pose: 0.0 -4.71193 -0.00206079 0 0.00492351 -0.00870895 0.151485 0.988409 uwb: 0.49932805 870.543 1483.13 +imu_odom_: 1691062563.290174327 0.603339 -0.148441 9.86411 -0.0500674 0.0106526 -0.211988 0.04 -0.26 pose: 0.35991388 -4.71193 -0.00206111 0 0.00471677 -0.0112649 0.146159 0.989186 uwb: 0.0 870.543 1483.13 +imu_odom_: 1691062563.307186163 0.502782 -0.177171 9.9503 -0.0607201 0.00426106 -0.203466 0.04 -0.26 pose: 0.33946970 -4.71193 -0.00206111 0 0.00330624 -0.0123737 0.141709 0.989826 uwb: 0.0 870.543 1483.13 +imu_odom_: 1691062563.324160086 0.512359 -0.105345 9.9096 -0.0585895 -0.00958738 -0.198139 0.04 -0.26 pose: 0.0 -4.71193 -0.00206111 0 0.00330624 -0.0123737 0.141709 0.989826 uwb: 0.50019715 870.984 1483.17 +imu_odom_: 1691062563.351114036 0.687136 -0.301669 9.85693 -0.0660464 -0.0127832 -0.160855 0.03 -0.23 pose: 0.44024990 -4.71193 -0.00206111 0 0.00432921 -0.00823522 0.136394 0.990611 uwb: 0.0 870.984 1483.17 +imu_odom_: 1691062563.367167533 0.557849 -0.392649 9.91199 -0.0543285 0.0340885 -0.135289 0.03 -0.23 pose: 0.0 -4.71193 -0.00206111 0 0.00432921 -0.00823522 0.136394 0.990611 uwb: 0.0 870.984 1483.17 +imu_odom_: 1691062563.385110877 -0.907402 -0.31364 9.64384 -0.0383495 0.118244 -0.106526 0.04 -0.17 pose: 0.7125133 -4.71193 -0.00206111 0 0.00379941 -0.00877312 0.135692 0.990705 uwb: 0.49969844 873.904 1484.06 +imu_odom_: 1691062563.410114026 -1.54187 -0.198719 9.91439 -0.0415453 -0.0276969 -0.100135 0.06 -0.17 pose: 0.0 -4.71193 -0.00206111 0 0.00379941 -0.00877312 0.135692 0.990705 uwb: 0.0 873.904 1484.06 +imu_odom_: 1691062563.437111432 0.486023 0.0766145 10.2448 -0.0681769 -0.0894822 -0.0852212 0.09 -0.14 pose: 0.78828807 -4.7119 -0.0020669 0 0.000315144 -0.00468267 0.129343 0.991589 uwb: 0.50025547 875.607 1484.46 +imu_odom_: 1691062563.462111081 0.349553 -0.260968 10.1801 -0.0511327 0.0340885 -0.0788296 0.09 -0.11 pose: 0.0 -4.7119 -0.0020669 0 0.000315144 -0.00468267 0.129343 0.991589 uwb: 0.0 875.607 1484.46 +imu_odom_: 1691062563.489220186 -0.323217 -0.114922 9.98861 -0.0660464 -0.0266316 -0.0873517 0.09 -0.11 pose: 0.35022550 -4.69841 -0.00620807 0 0.00249514 -0.00458117 0.127189 0.991865 uwb: 0.49986468 874.439 1483.74 +imu_odom_: 1691062563.505256767 0.0383072 -0.232238 9.81144 -0.0585895 -0.0692422 -0.072438 0.11 -0.11 pose: 0.44083610 -4.69837 -0.00621371 0 0.00132314 -0.0004813270.124484 0.992221 uwb: 0.0 874.439 1483.74 +imu_odom_: 1691062563.532212468 0.509965 -0.25618 9.80186 -0.0607201 -0.0298274 -0.0809601 0.11 -0.11 pose: 0.7875240 -4.69841 -0.00620813 0 0.00115892 2.96639e-05 0.124045 0.992276 uwb: 0.49978301 874.011 1483.66 +imu_odom_: 1691062563.558158208 0.241814 -0.351948 10.2592 -0.036219 0.0138484 -0.0692422 0.11 -0.11 pose: 0.35117042 -4.69218 -0.00289579 0 -1.43561e-05-0.00230574 0.121979 0.99253 uwb: 0.0 874.011 1483.66 +imu_odom_: 1691062563.585161738 0.0311246 -0.196325 9.83059 -0.0479369 -0.0138484 -0.0553937 0.11 -0.11 pose: 0.0 -4.69218 -0.00289579 0 -1.43561e-05-0.00230574 0.121979 0.99253 uwb: 0.49997550 873.964 1483.84 +imu_odom_: 1691062563.610084977 0.574608 -0.244209 9.4571 -0.0553937 0.015979 -0.052198 0.13 -0.11 pose: 0.32920094 -4.68958 -0.00152391 0 -0.00140511 0.000632331 0.120255 0.992742 uwb: 0.0 873.964 1483.84 +imu_odom_: 1691062563.637086757 0.550666 -0.179565 9.76116 -0.076699 -0.00639159 -0.0308927 0.17 -0.11 pose: 0.44952415 -4.68334 0.00179207 0 -0.00117081 0.000309627 0.118175 0.992992 uwb: 0.49927555 873.203 1483.3 +imu_odom_: 1691062563.653235912 0.663194 -0.150835 9.78989 -0.072438 0.0170442 -0.0276969 0.17 -0.11 pose: 0.0 -4.68334 0.00179207 0 -0.00117081 0.000309627 0.118175 0.992992 uwb: 0.0 873.203 1483.3 +imu_odom_: 1691062563.680165657 0.380678 -0.153229 10.2161 -0.0532632 0.00532632 -0.0490022 0.19 -0.11 pose: 0.43150935 -4.68074 0.00316449 0 0.000297239 -0.00347621 0.116685 0.993163 uwb: 0.50025839 874.077 1483.41 +imu_odom_: 1691062563.705103186 0.220267 -0.519542 9.72764 -0.0628506 -0.0234358 -0.0245011 0.19 -0.11 pose: 0.8023686 -4.68074 0.00316449 0 0.000675995 -0.00272558 0.116331 0.993207 uwb: 0.0 874.077 1483.41 +imu_odom_: 1691062563.732262454 0.31364 0 10.0844 -0.0479369 -0.0372843 -0.0213053 0.17 -0.11 pose: 0.43843588 -4.67185 0.00780454 0 -0.000756817-0.0001518090.114703 0.9934 uwb: 0.49989384 873.708 1483.09 +imu_odom_: 1691062563.749087638 0.335188 -0.275333 9.76355 -0.0692422 0.00958738 -0.0117179 0.17 -0.11 pose: 0.0 -4.67185 0.00780454 0 -0.000756817-0.0001518090.114703 0.9934 uwb: 0.0 873.708 1483.09 +imu_odom_: 1691062563.773081702 0.6608 -0.347159 9.59835 -0.0543285 -0.00106526 -0.0255663 0.22 -0.08 pose: 0.7061556 -4.67189 0.0078104 0 -9.45245e-056.80638e-05 0.114489 0.993424 uwb: 0.50057045 873.81 1482.7 +imu_odom_: 1691062563.797078100 0.25618 -0.179565 10.2975 -0.0330232 -0.0170442 -0.0149137 0.22 -0.08 pose: 0.0 -4.67189 0.0078104 0 -9.45245e-056.80638e-05 0.114489 0.993424 uwb: 0.0 873.81 1482.7 +imu_odom_: 1691062563.822094665 0.0215478 -0.373495 9.75877 -0.04048 -0.00106526 0.00213053 0.15 -0.02 pose: 0.43966661 -4.65837 0.00368198 0 -9.98258e-050.000846204 0.113223 0.993569 uwb: 0.49874476 870.966 1481.56 +imu_odom_: 1691062563.849070780 0.241814 -0.0909797 10.1873 -0.0500674 -0.02024 0.0170442 0.15 -0.02 pose: 0.0 -4.65837 0.00368198 0 -9.98258e-050.000846204 0.113223 0.993569 uwb: 0.0 870.966 1481.56 +imu_odom_: 1691062563.865131859 0.543484 -0.167594 9.84017 -0.0585895 -0.0191748 0.00958738 0.17 -0.02 pose: 0.49043002 -4.64953 0.00835427 0 -0.0002817280.00222035 0.111874 0.99372 uwb: 0.0 870.966 1481.56 +imu_odom_: 1691062563.892068895 0.816423 -0.232238 10.2831 -0.0490022 0.00106526 -0.00213053 0.17 -0.02 pose: 0.0 -4.64953 0.00835427 0 -0.0002817280.00222035 0.111874 0.99372 uwb: 0.49969552 872.311 1481.58 +imu_odom_: 1691062563.917096542 0.608127 -0.234632 9.75637 -0.0585895 -0.0223706 0.0213053 0.16 0 pose: 0.52017470 -4.64953 0.00835427 0 0.00129991 0.00431144 0.111145 0.993794 uwb: 0.0 872.311 1481.58 +imu_odom_: 1691062563.941243719 0.40462 0.0311246 10.4267 -0.056459 0.0298274 0.0127832 0.16 0 pose: 0.42945619 -4.64067 0.0129966 0 0.00139823 -2.11479e-050.110402 0.993886 uwb: 0.50203159 871.921 1481.36 +imu_odom_: 1691062563.956349959 0.323217 -0.227449 10.1442 -0.0703074 0.0170442 0.0383495 0.16 0 pose: 0.41106225 -4.63441 0.0162632 0 0.00345418 -0.0007786070.109923 0.993934 uwb: 0.0 871.921 1481.36 +imu_odom_: 1691062563.981058840 0.550666 -0.380678 9.88326 -0.0649811 0.0106526 0.0138484 0.16 0 pose: 0.0 -4.63441 0.0162632 0 0.00345418 -0.0007786070.109923 0.993934 uwb: 0.0 871.921 1481.36 +imu_odom_: 1691062563.998339863 0.0622492 0.0909797 10.2711 -0.0319579 0 0.00745685 0.21 0 pose: 0.7114051 -4.6318 0.0176198 0 0.00289775 -0.0001984760.109918 0.993936 uwb: 0.0 871.921 1481.36 +imu_odom_: 1691062564.23078496 0.323217 -0.220267 9.72046 -0.0553937 -0.0255663 0.0138484 0.21 0 pose: 0.0 -4.6318 0.0176198 0 0.00289775 -0.0001984760.109918 0.993936 uwb: 0.99922484 871.616 1480.81 +imu_odom_: 1691062564.47261549 -0.0814029 -0.0263362 9.69652 -0.0468716 -0.0340885 0.0245011 0.21 -0.05 pose: 0.40016647 -4.62716 0.00876386 0 0.000784155 -0.0003934590.109482 0.993988 uwb: 0.0 871.616 1480.81 +imu_odom_: 1691062564.62260759 0.59855 -0.129287 10.0676 -0.0745685 -0.0330232 0.0340885 0.21 -0.05 pose: 0.0 -4.62716 0.00876386 0 0.000784155 -0.0003934590.109482 0.993988 uwb: 0.0 871.616 1480.81 +imu_odom_: 1691062564.78117399 0.445322 -0.342371 9.22246 -0.0681769 0.0138484 0.0138484 0.16 -0.02 pose: 0.41843504 -4.61833 0.0134649 0 0.000432266 0.00291449 0.108948 0.994043 uwb: 0.50030806 870.111 1479.73 +imu_odom_: 1691062564.93057113 0.600945 -0.158017 9.90481 -0.0617853 0.0617853 0.0138484 0.16 -0.02 pose: 0.0 -4.61833 0.0134649 0 0.000432266 0.00291449 0.108948 0.994043 uwb: 0.0 870.111 1479.73 +imu_odom_: 1691062564.117068097 0.727837 -0.335188 9.51695 -0.0735032 0.0181095 0.0276969 0.16 -0.02 pose: 0.0 -4.61833 0.0134649 0 0.000432266 0.00291449 0.108948 0.994043 uwb: 0.0 870.111 1479.73 +imu_odom_: 1691062564.143109210 0.502782 -0.153229 9.96227 -0.0543285 -0.00532632 0.0351537 0.16 0.02 pose: 0.39079313 -4.6095 0.0181551 0 0.000709713 0.00229825 0.108693 0.994072 uwb: 0.49982102 868.128 1478.77 +imu_odom_: 1691062564.157117416 0.31364 -0.186748 9.56005 -0.0830906 -0.02024 0.0490022 0.16 0.02 pose: 0.0 -4.6095 0.0181551 0 0.000709713 0.00229825 0.108693 0.994072 uwb: 0.0 868.128 1478.77 +imu_odom_: 1691062564.181161939 0.172383 -0.280122 9.72285 -0.0585895 -0.0308927 0.0191748 0.16 0 pose: 0.79761497 -4.60067 0.0228359 0 0.00135871 -0.00231099 0.108214 0.994124 uwb: 0.50243998 867.474 1477.88 +imu_odom_: 1691062564.205102929 0.141258 -0.339977 9.82341 -0.0798948 -0.0394148 0.0447411 0.16 0 pose: 0.0 -4.60067 0.0228359 0 0.00135871 -0.00231099 0.108214 0.994124 uwb: 0.0 867.474 1477.88 +imu_odom_: 1691062564.230117457 0.457293 -0.189142 9.44752 -0.052198 0.0532632 0.00639159 0.18 -0.02 pose: 0.39167389 -4.59183 0.0275143 0 -0.0002461280.000752521 0.108023 0.994148 uwb: 0.49732456 868.856 1477.75 +imu_odom_: 1691062564.254124066 0.847547 -0.531513 9.59117 -0.0809601 0.0255663 0.0553937 0.21 0 pose: 0.41891337 -4.58089 0.0219868 0 -6.6382e-06 0.000476166 0.107652 0.994188 uwb: 0.0 868.856 1477.75 +imu_odom_: 1691062564.269036366 0.217872 -0.433351 9.35654 -0.056459 0.04048 0.0234358 0.21 0 pose: 0.0 -4.58089 0.0219868 0 -6.6382e-06 0.000476166 0.107652 0.994188 uwb: 0.0 868.856 1477.75 +imu_odom_: 1691062564.285039411 0.577003 0.222661 10.6829 -0.0394148 -0.036219 0.0234358 0.21 0 pose: 0.0 -4.58089 0.0219868 0 -6.6382e-06 0.000476166 0.107652 0.994188 uwb: 0.49979477 869.36 1477.55 +imu_odom_: 1691062564.302035502 0.397437 -0.186748 9.52892 -0.0735032 0.0223706 0.0436758 0.18 0 pose: 0.6977563 -4.57831 0.0233476 0 -0.00044368 -4.22286e-050.107707 0.994183 uwb: 0.0 869.36 1477.55 +imu_odom_: 1691062564.320092590 0.821211 -0.366313 9.51935 -0.0596548 -0.0181095 0.0213053 0.18 0 pose: 0.0 -4.57831 0.0233476 0 -0.00044368 -4.22286e-050.107707 0.994183 uwb: 0.0 869.36 1477.55 +imu_odom_: 1691062564.337080806 0.663194 -0.0837971 10.1562 -0.0447411 0.0106526 0.0276969 0.18 0.02 pose: 0.54947911 -4.56947 0.0280162 0 -0.000398226-0.0002431810.107608 0.994193 uwb: 0.50009516 866.504 1476.54 +imu_odom_: 1691062564.361367393 0.308852 -0.117316 9.98622 -0.0585895 0.02024 0.0223706 0.2 -0.02 pose: 0.0 -4.56947 0.0280162 0 -0.000398226-0.0002431810.107608 0.994193 uwb: 0.0 866.504 1476.54 +imu_odom_: 1691062564.386106027 0.253785 -0.21069 9.73243 -0.0681769 -0.0117179 0.0436758 0.18 0 pose: 0.69324462 -4.56062 0.0326802 0 0.00189006 -0.0002754220.10715 0.994241 uwb: 0.0 866.504 1476.54 +imu_odom_: 1691062564.410174173 0.701501 -0.0383072 9.64863 -0.0447411 0.0149137 0.0127832 0.18 0 pose: 0.0 -4.56062 0.0326802 0 0.00189006 -0.0002754220.10715 0.994241 uwb: 0.0 866.504 1476.54 +imu_odom_: 1691062564.435045213 1.0343 -0.368707 9.58638 -0.072438 -0.0234358 0.04048 0.24 0 pose: 0.31829646 -4.54711 0.0284921 0 0.00139313 0.00144211 0.107103 0.994246 uwb: 0.100001535 866.329 1475.56 +imu_odom_: 1691062564.452174001 0.387861 -0.416591 9.85453 -0.036219 -0.0234358 0.0117179 0.24 0 pose: 0.0 -4.54711 0.0284921 0 0.00139313 0.00144211 0.107103 0.994246 uwb: 0.0 866.329 1475.56 +imu_odom_: 1691062564.469228420 0.962469 -0.0837971 10.4914 -0.0351537 -0.0585895 0.0245011 0.18 -0.05 pose: 0.49866029 -4.54711 0.0284921 0 0.000955329 -0.00246999 0.106787 0.994278 uwb: 0.0 866.329 1475.56 +imu_odom_: 1691062564.486046608 1.49877 -0.40462 9.79947 -0.0884169 -0.0735032 0.0181095 0.18 -0.05 pose: 0.0 -4.54711 0.0284921 0 0.000955329 -0.00246999 0.106787 0.994278 uwb: 0.49968978 866.972 1474.87 +imu_odom_: 1691062564.503065738 1.82438 -0.105345 9.51695 -0.0479369 -0.00958738 -0.13955 0.13 -0.29 pose: 0.42983540 -4.53826 0.0331451 0 0.000617978 -0.00670369 0.106353 0.994306 uwb: 0.0 866.972 1474.87 +imu_odom_: 1691062564.520164195 1.31921 0.323217 9.91199 -0.0500674 0.0372843 -0.235423 0.13 -0.29 pose: 0.0 -4.53826 0.0331451 0 0.000617978 -0.00670369 0.106353 0.994306 uwb: 0.0 866.972 1474.87 +imu_odom_: 1691062564.538160622 0.94571 0.148441 10.0892 -0.0617853 -0.0213053 -0.311057 0.13 -0.29 pose: 0.0 -4.53826 0.0331451 0 0.000617978 -0.00670369 0.106353 0.994306 uwb: 0.50132299 863.084 1472.83 +imu_odom_: 1691062564.555129006 0.905008 -0.0191536 9.73961 -0.0500674 -0.015979 -0.414388 0.11 -0.38 pose: 0.8065101 -4.53826 0.0331451 0 0.000809254 -0.00751435 0.105634 0.994376 uwb: 0.0 863.084 1472.83 +imu_odom_: 1691062564.568017010 0.833182 0.00957681 10.1897 -0.0543285 -0.0287621 -0.436758 0.1 -0.44 pose: 0.0 -4.53826 0.0331451 0 0.000809254 -0.00751435 0.105634 0.994376 uwb: 0.0 863.084 1472.83 +imu_odom_: 1691062564.586135344 0.799663 -0.220267 9.66539 -0.0798948 -0.0255663 -0.42291 0.1 -0.44 pose: 0.0 -4.53826 0.0331451 0 0.000809254 -0.00751435 0.105634 0.994376 uwb: 0.49874777 863.319 1472.02 +imu_odom_: 1691062564.603159724 1.15401 -0.347159 10.3118 -0.0596548 -0.0138484 -0.466586 0.09 -0.5 pose: 0.66911406 -4.52945 0.0378659 0 0.00501377 -0.0126297 0.0940959 0.99547 uwb: 0.0 863.319 1472.02 +imu_odom_: 1691062564.620131608 0.90022 -0.150835 9.70131 -0.0777643 -0.00213053 -0.478304 0.09 -0.5 pose: 0.0 -4.52945 0.0378659 0 0.00501377 -0.0126297 0.0940959 0.99547 uwb: 0.0 863.319 1472.02 +imu_odom_: 1691062564.638193362 0.964863 -0.0814029 9.99819 -0.056459 0.0532632 -0.4815 0.09 -0.5 pose: 0.32133830 -4.52945 0.0378659 0 0.00434885 -0.0156714 0.08651 0.996118 uwb: 0.49874194 865.162 1471.81 +imu_odom_: 1691062564.652075870 0.823605 -0.282516 9.87608 -0.072438 0.00532632 -0.507066 0.07 -0.5 pose: 0.45036417 -4.5206 0.0425933 0 0.00504397 -0.0193844 0.0749137 0.996989 uwb: 0.0 865.162 1471.81 +imu_odom_: 1691062564.669074585 0.538695 -0.0191536 10.07 -0.0639159 0.00745685 -0.525175 0.07 -0.5 pose: 0.6062971 -4.52064 0.0425999 0 0.00444751 -0.0195464 0.0732726 0.99711 uwb: 0.0 865.162 1471.81 +imu_odom_: 1691062564.686115880 0.804452 -0.282516 9.9503 -0.0596548 -0.0138484 -0.516653 0.07 -0.5 pose: 0.0 -4.52064 0.0425999 0 0.00444751 -0.0195464 0.0732726 0.99711 uwb: 0.50053263 864.938 1471.04 +imu_odom_: 1691062564.702999105 0.622492 -0.0191536 9.63187 -0.0575243 -0.0213053 -0.532632 0.07 -0.67 pose: 0.41859547 -4.51583 0.0338012 0 0.00289171 -0.0187797 0.0616497 0.997917 uwb: 0.0 864.938 1471.04 +imu_odom_: 1691062564.720998156 0.667982 -0.148441 9.71328 -0.0490022 -0.036219 -0.536893 0.05 -0.55 pose: 0.0 -4.51583 0.0338012 0 0.00289171 -0.0187797 0.0616497 0.997917 uwb: 0.0 864.938 1471.04 +imu_odom_: 1691062564.737102693 0.840365 -0.328006 9.91678 -0.0820254 -0.0170442 -0.502805 0.05 -0.55 pose: 0.0 -4.51583 0.0338012 0 0.00289171 -0.0187797 0.0616497 0.997917 uwb: 0.49941856 863.474 1469.96 +imu_odom_: 1691062564.755118951 0.845153 -0.493206 9.94312 -0.0553937 -0.0234358 -0.449542 0.05 -0.44 pose: 0.24904287 -4.51587 0.0338078 0 0.00426194 -0.0170413 0.0544918 0.99836 uwb: 0.0 863.474 1469.96 +imu_odom_: 1691062564.772085877 0.806846 -0.335188 9.89045 -0.0628506 0.00106526 -0.417584 0.05 -0.44 pose: 0.0 -4.51587 0.0338078 0 0.00426194 -0.0170413 0.0544918 0.99836 uwb: 0.50176628 862.838 1469.09 +imu_odom_: 1691062564.788990100 0.646434 -0.189142 9.74919 -0.0553937 0.00639159 -0.378169 0.05 -0.44 pose: 0.34096881 -4.51587 0.0338082 0 0.00219578 -0.0175646 0.045332 0.998815 uwb: 0.0 862.838 1469.09 +imu_odom_: 1691062564.815073792 0.505177 -0.177171 10.0485 -0.056459 -0.00639159 -0.333428 0.05 -0.47 pose: 0.43873052 -4.51587 0.0338082 0 0.000356928 -0.0169472 0.0355217 0.999225 uwb: 0.0 862.838 1469.09 +imu_odom_: 1691062564.832024095 0.0790087 -0.418985 9.4978 -0.0607201 0.015979 -0.34408 0.05 -0.47 pose: 0.7042600 -4.51587 0.0338082 0 0.000475925 -0.0162576 0.0342076 0.999282 uwb: 0.49963728 864.316 1468.59 +imu_odom_: 1691062564.849141217 -0.876278 -0.134075 10.2496 -0.0213053 0.0703074 -0.388822 0.08 -0.41 pose: 0.0 -4.51587 0.0338082 0 0.000475925 -0.0162576 0.0342076 0.999282 uwb: 0.0 864.316 1468.59 +imu_odom_: 1691062564.866143724 -1.16119 0.011971 10.0772 -0.0426106 -0.00213053 -0.305731 0.08 -0.23 pose: 0.53108517 -4.50704 0.0385006 0 0.000544338 -0.010281 0.02375 0.999665 uwb: 0.0 864.316 1468.59 +imu_odom_: 1691062564.883019949 -1.02951 -0.782904 9.64624 -0.0798948 -0.0255663 -0.199204 0.08 -0.23 pose: 0.0 -4.50704 0.0385006 0 0.000544338 -0.010281 0.02375 0.999665 uwb: 0.50053555 863.642 1467.85 +imu_odom_: 1691062564.899983667 0.220267 -0.797269 9.66779 -0.0490022 -0.0511327 -0.162985 0.08 -0.23 pose: 0.0 -4.50704 0.0385006 0 0.000544338 -0.010281 0.02375 0.999665 uwb: 0.0 863.642 1467.85 +imu_odom_: 1691062564.918014799 0.411803 -0.208296 9.94791 -0.0500674 -0.0447411 -0.153398 0.1 -0.2 pose: 0.23916492 -4.50704 0.0385005 0 0.000526704 -0.00799465 0.0199897 0.999768 uwb: 0.0 863.642 1467.85 +imu_odom_: 1691062564.935041803 0.42138 0.277727 10.1586 -0.0319579 -0.0117179 -0.155529 0.1 -0.2 pose: 0.0 -4.50704 0.0385005 0 0.000526704 -0.00799465 0.0199897 0.999768 uwb: 0.49943605 863.424 1467.08 +imu_odom_: 1691062564.952020978 0.0287304 0.201113 10.1586 -0.0490022 -0.00106526 -0.140615 0.1 -0.2 pose: 0.34962769 -4.50704 0.0385005 0 -0.00113568 -0.00616497 0.0163199 0.999847 uwb: 0.0 863.424 1467.08 +imu_odom_: 1691062564.970133771 0.792481 -0.548272 9.83059 -0.056459 -0.0532632 -0.153398 0.14 -0.23 pose: 0.34964228 -4.49819 0.0431418 0 0.0015688 -0.00451158 0.0129688 0.999904 uwb: 0.0 863.424 1467.08 +imu_odom_: 1691062564.984189806 0.490811 -0.215478 10.0389 -0.0532632 -0.0649811 -0.158724 0.14 -0.23 pose: 0.0 -4.49819 0.0431418 0 0.0015688 -0.00451158 0.0129688 0.999904 uwb: 0.50022641 864.528 1466.33 +imu_odom_: 1691062565.2026120 0.521936 -0.0023942 9.83059 -0.0436758 0.0223706 -0.135289 0.12 -0.14 pose: 0.41205100 -4.49584 0.0386935 0 -5.2573e-05 -0.00474291 0.00902045 0.999948 uwb: 0.0 864.528 1466.33 +imu_odom_: 1691062565.18095663 0.486023 -0.0383072 10.3477 -0.0479369 0 -0.106526 0.12 -0.14 pose: 0.0 -4.49584 0.0386935 0 -5.2573e-05 -0.00474291 0.00902045 0.999948 uwb: 0.0 864.528 1466.33 +imu_odom_: 1691062565.35092923 0.011971 -0.514753 10.0102 -0.0500674 0.0692422 -0.109722 0.12 -0.14 pose: 0.0 -4.49584 0.0386935 0 -5.2573e-05 -0.00474291 0.00902045 0.999948 uwb: 0.49945067 863.977 1465.19 +imu_odom_: 1691062565.53092853 0.172383 -0.174777 10.0221 -0.0426106 -0.0703074 -0.111853 0.13 -0.14 pose: 0.7944360 -4.49351 0.0343043 0 0.000786573 -0.00472805 0.00832233 0.999954 uwb: 0.0 863.977 1465.19 +imu_odom_: 1691062565.69972872 0.399832 -0.1652 9.73961 -0.0543285 -0.0308927 -0.1012 0.13 -0.14 pose: 0.0 -4.49351 0.0343043 0 0.000786573 -0.00472805 0.00832233 0.999954 uwb: 0.0 863.977 1465.19 +imu_odom_: 1691062565.86984423 0.565032 -0.19393 10.0437 -0.0458064 0.00213053 -0.0894822 0.14 -0.14 pose: 0.50964073 -4.48467 0.0389809 0 0.00252314 -0.00199355 0.00439664 0.999985 uwb: 0.49930490 859.788 1462.98 +imu_odom_: 1691062565.104014639 0.725443 -0.418985 10.0556 -0.0628506 -0.0351537 -0.0841559 0.13 -0.11 pose: 0.0 -4.48467 0.0389809 0 0.00252314 -0.00199355 0.00439664 0.999985 uwb: 0.0 859.788 1462.98 +imu_odom_: 1691062565.120953570 0.957681 -0.325611 9.39485 -0.0553937 0.02024 -0.0703074 0.12 -0.11 pose: 0.0 -4.48467 0.0389809 0 0.00252314 -0.00199355 0.00439664 0.999985 uwb: 0.0 859.788 1462.98 +imu_odom_: 1691062565.137962788 0.727837 -0.397437 9.91918 -0.0468716 0.0276969 -0.0255663 0.12 -0.11 pose: 0.67945002 -4.47585 0.0436985 0 0.00100518 -0.00362251 -8.39852e-050.999993 uwb: 0.50056189 858.699 1462.21 +imu_odom_: 1691062565.155018960 1.45567 -0.385466 9.71088 -0.0575243 -0.0884169 -0.00745685 0.1 -0.14 pose: 0.0 -4.47585 0.0436985 0 0.00100518 -0.00362251 -8.39852e-050.999993 uwb: 0.0 858.699 1462.21 +imu_odom_: 1691062565.169959260 1.30484 -0.102951 9.61511 -0.0447411 0.00426106 -0.0383495 0.1 -0.14 pose: 0.0 -4.47585 0.0436985 0 0.00100518 -0.00362251 -8.39852e-050.999993 uwb: 0.0 858.699 1462.21 +imu_odom_: 1691062565.186975477 1.20428 -0.287304 9.83299 -0.0575243 0.0372843 -0.0117179 0.1 -0.14 pose: 0.34987274 -4.47115 0.0348698 0 -0.000411218-0.00662749 -0.00136323 0.999977 uwb: 0.49902493 858.912 1461.51 +imu_odom_: 1691062565.204072479 0.414197 -0.28491 10.0987 -0.0596548 0.0351537 -0.052198 0.08 -0.11 pose: 0.40944962 -4.47115 0.0348698 0 -0.00045728 -0.0106412 -0.00259348 0.99994 uwb: 0.0 858.912 1461.51 +imu_odom_: 1691062565.221126318 0.430956 -0.0933739 9.90002 -0.0532632 -0.0372843 -0.105461 0.08 -0.11 pose: 0.7109971 -4.47115 0.0348698 0 -0.000675307-0.0098207 -0.00291748 0.999947 uwb: 0.0 858.912 1461.51 +imu_odom_: 1691062565.239069086 0.603339 0.0454898 9.61751 -0.0607201 -0.015979 -0.100135 0.08 -0.11 pose: 0.0 -4.47115 0.0348698 0 -0.000675307-0.0098207 -0.00291748 0.999947 uwb: 0.50164389 859.466 1461.14 +imu_odom_: 1691062565.253132123 0.849942 -0.318429 10.1562 -0.056459 -0.00319579 -0.0703074 0.07 -0.08 pose: 0.44983638 -4.46235 0.0396129 0 0.00196551 -0.00822034 -0.00588538 0.999947 uwb: 0.0 859.466 1461.14 +imu_odom_: 1691062565.268999849 0.845153 -0.47884 9.76355 -0.0596548 -0.00745685 -0.052198 0.05 -0.02 pose: 0.0 -4.46235 0.0396129 0 0.00196551 -0.00822034 -0.00588538 0.999947 uwb: 0.0 859.466 1461.14 +imu_odom_: 1691062565.283952690 0.684742 -0.196325 9.79947 -0.0500674 0.0170442 -0.0468716 0.05 -0.02 pose: 0.0 -4.46235 0.0396129 0 0.00196551 -0.00822034 -0.00588538 0.999947 uwb: 0.49973945 858.862 1460.24 +imu_odom_: 1691062565.301069524 0.584185 -0.0909797 9.9934 -0.0479369 0.00852212 -0.02024 0.05 -0.02 pose: 0.21012896 -4.46235 0.0396129 0 0.000783026 -0.00992943 -0.0069637 0.999926 uwb: 0.0 858.862 1460.24 +imu_odom_: 1691062565.325954275 0.562637 -0.260968 9.97664 -0.0532632 -0.00852212 -0.015979 0.05 0 pose: 0.0 -4.46235 0.0396129 0 0.000783026 -0.00992943 -0.0069637 0.999926 uwb: 0.49966946 854.317 1457.91 +imu_odom_: 1691062565.349941641 -0.296881 -0.246603 9.44034 -0.052198 0.0830906 -0.00745685 0.04 -0.05 pose: 0.65872293 -4.46232 0.0396068 0 2.60581e-06 -0.00970298 -0.00921543 0.99991 uwb: 0.0 854.317 1457.91 +imu_odom_: 1691062565.367083264 -1.04148 -0.196325 10.0628 -0.0532632 0.0468716 0.0149137 0.04 -0.05 pose: 0.7009938 -4.46235 0.0396127 0 -2.16537e-06-0.00869602 -0.00938004 0.999918 uwb: 0.0 854.317 1457.91 +imu_odom_: 1691062565.392062217 -0.787692 -0.160412 9.77553 -0.072438 -0.056459 0.0138484 0.08 -0.08 pose: 0.0 -4.46235 0.0396127 0 -2.16537e-06-0.00869602 -0.00938004 0.999918 uwb: 0.49981820 857.738 1458.23 +imu_odom_: 1691062565.418061338 0.517148 -0.143652 9.71567 -0.0692422 -0.02024 0.0117179 0.08 -0.08 pose: 0.34119051 -4.46235 0.0396127 0 4.5776e-05 -0.00410534 -0.00999025 0.999942 uwb: 0.0 857.738 1458.23 +imu_odom_: 1691062565.444000380 0.225055 -0.411803 9.44273 -0.0617853 0.0127832 0.00213053 0.11 -0.05 pose: 0.50978074 -4.45012 0.0379304 0 0.00160334 -0.00431286 -0.01068 0.999932 uwb: 0.49894618 853.329 1456.91 +imu_odom_: 1691062565.469947296 -0.0383072 -0.0383072 10.1514 -0.0511327 -0.0127832 -0.00213053 0.11 -0.05 pose: 0.0 -4.45012 0.0379304 0 0.00160334 -0.00431286 -0.01068 0.999932 uwb: 0.0 853.329 1456.91 +imu_odom_: 1691062565.494977578 0.153229 -0.0622492 9.97903 -0.0575243 0.00852212 0.00106526 0.12 -0.02 pose: 0.51885958 -4.44882 0.0354916 0 0.000810666 0.000185525 -0.0117041 0.999931 uwb: 0.49961405 850.949 1456.09 +imu_odom_: 1691062565.512090037 0.397437 -0.277727 9.7037 -0.0596548 -0.0266316 0.0181095 0.12 -0.02 pose: 0.0 -4.44882 0.0354916 0 0.000810666 0.000185525 -0.0117041 0.999931 uwb: 0.0 850.949 1456.09 +imu_odom_: 1691062565.536077986 0.280122 -0.162806 10.1394 -0.0553937 0.00213053 -0.00106526 0.13 -0.02 pose: 0.42142741 -4.43998 0.0401649 0 0.000403547 0.0016817 -0.0123741 0.999922 uwb: 0.49986778 854.585 1457.11 +imu_odom_: 1691062565.554148202 -0.0502782 -0.368707 9.43076 -0.0756338 0.0223706 0.0181095 0.13 -0.02 pose: 0.8018440 -4.43998 0.0401649 0 0.000767987 0.00242165 -0.0125367 0.999918 uwb: 0.0 854.585 1457.11 +imu_odom_: 1691062565.579060659 0.45011 -0.107739 10.1562 -0.0500674 -0.04048 0.00745685 0.14 -0.02 pose: 0.34039725 -4.43998 0.0401649 0 0.000557065 0.00578198 -0.0130587 0.999898 uwb: 0.49996694 853.45 1456.53 +imu_odom_: 1691062565.605234474 0.351948 -0.351948 10.3262 -0.0436758 -0.00532632 0.00426106 0.14 -0.02 pose: 0.0 -4.43998 0.0401649 0 0.000557065 0.00578198 -0.0130587 0.999898 uwb: 0.0 853.45 1456.53 +imu_odom_: 1691062565.629928491 0.0263362 -0.268151 9.27514 -0.076699 0.00852212 0.0276969 0.13 -0.02 pose: 0.8000940 -4.43998 0.0401649 0 0.000976287 0.00494381 -0.0131848 0.9999 uwb: 0.50129974 853.253 1455.77 +imu_odom_: 1691062565.656047769 0.399832 -0.150835 9.78031 -0.0607201 -0.0181095 0.0106526 0.13 -0.02 pose: 0.51857670 -4.42648 0.0359617 0 -0.0007954950.00391094 -0.0139734 0.999894 uwb: 0.0 853.253 1455.77 +imu_odom_: 1691062565.680051758 0.445322 -0.181959 10.2376 -0.0532632 0.00106526 0.0223706 0.17 -0.05 pose: 0.0 -4.42648 0.0359617 0 -0.0007954950.00391094 -0.0139734 0.999894 uwb: 0.49984445 852.268 1454.74 +imu_odom_: 1691062565.704020750 0.402226 -0.363919 10.2089 -0.0585895 0.00958738 0.0106526 0.18 -0.02 pose: 0.66044946 -4.41758 0.0405871 0 0.000948037 0.00109944 -0.0146414 0.999892 uwb: 0.0 852.268 1454.74 +imu_odom_: 1691062565.720920310 0.703895 -0.148441 9.59835 -0.0479369 0.0394148 0.00213053 0.18 -0.02 pose: 0.8003858 -4.41762 0.0405937 0 0.000139305 0.00106475 -0.0147579 0.999891 uwb: 0.0 852.268 1454.74 +imu_odom_: 1691062565.744924882 0.859518 -0.593762 10.0221 -0.076699 -0.0181095 0.0436758 0.15 0 pose: 0.0 -4.41762 0.0405937 0 0.000139305 0.00106475 -0.0147579 0.999891 uwb: 0.50119475 854.423 1454.86 +imu_odom_: 1691062565.770979998 0.464475 -0.260968 9.60554 -0.0532632 0.00213053 0.0117179 0.15 0 pose: 0.40883425 -4.40408 0.0364788 0 -0.00154757 -0.000940935-0.0152932 0.999881 uwb: 0.0 854.423 1454.86 +imu_odom_: 1691062565.784916171 0.167594 -0.263362 9.32542 -0.0543285 0.00958738 0.0276969 0.15 0 pose: 0.0 -4.40408 0.0364788 0 -0.00154757 -0.000940935-0.0152932 0.999881 uwb: 0.50125017 853.554 1453.47 +imu_odom_: 1691062565.807967362 0.37589 -0.426168 10.1682 -0.0383495 -0.0127832 0.015979 0.16 -0.02 pose: 0.48088763 -4.40408 0.0364788 0 -0.00203785 -0.00407125 -0.0156675 0.999867 uwb: 0.0 853.554 1453.47 +imu_odom_: 1691062565.831925563 0.526724 0.181959 10.386 -0.0340885 -0.0436758 0.0394148 0.19 0 pose: 0.30939558 -4.39526 0.0411734 0 -0.00386603 -0.00219986 -0.0159751 0.999862 uwb: 0.49689301 852.483 1452.73 +imu_odom_: 1691062565.850006861 0.445322 -0.447716 9.89524 -0.0490022 0.00106526 0.04048 0.19 0 pose: 0.0 -4.39526 0.0411734 0 -0.00386603 -0.00219986 -0.0159751 0.999862 uwb: 0.0 852.483 1452.73 +imu_odom_: 1691062565.872909897 0.160412 -0.270545 9.59596 -0.0298274 0.0213053 0.0234358 0.19 0 pose: 0.0 -4.39526 0.0411734 0 -0.00386603 -0.00219986 -0.0159751 0.999862 uwb: 0.49941865 851.552 1451.56 +imu_odom_: 1691062565.899023925 0.174777 -0.220267 10.173 -0.0458064 -0.0127832 0.04048 0.16 0 pose: 0.7948153 -4.39526 0.0411734 0 -0.003001 -0.0024979 -0.0159772 0.999865 uwb: 0.0 851.552 1451.56 +imu_odom_: 1691062565.922079199 0.679953 -0.150835 9.95988 -0.0639159 0.0213053 0.0287621 0.17 0 pose: 0.40989875 -4.38173 0.0370302 0 -0.00289882 -0.00208441 -0.0160211 0.999865 uwb: 0.0 851.552 1451.56 +imu_odom_: 1691062565.937911052 0.177171 -0.153229 9.991 -0.0649811 0.0266316 0.0607201 0.17 0 pose: 0.0 -4.38173 0.0370302 0 -0.00289882 -0.00208441 -0.0160211 0.999865 uwb: 0.49968988 850.917 1450.83 +imu_odom_: 1691062565.954944185 0.162806 -0.320823 9.79707 -0.0745685 0.0127832 0.0415453 0.17 0 pose: 0.0 -4.38173 0.0370302 0 -0.00289882 -0.00208441 -0.0160211 0.999865 uwb: 0.0 850.917 1450.83 +imu_odom_: 1691062565.979063956 0.514753 -0.059855 9.79228 -0.0596548 0.0266316 0.0319579 0.21 -0.02 pose: 0.48333161 -4.38173 0.0370302 0 -0.00182183 0.00163896 -0.0161614 0.999866 uwb: 0.50003109 850.273 1450.15 +imu_odom_: 1691062566.5038871 0.737414 -0.407014 9.72285 -0.0575243 0.0308927 0.0276969 0.2 -0.02 pose: 0.39746017 -4.36821 0.0328816 0 -0.00119462 0.00266201 -0.0160787 0.999866 uwb: 0.0 850.273 1450.15 +imu_odom_: 1691062566.29915169 0.579397 -0.0263362 9.81623 -0.0319579 0.015979 0.0447411 0.2 -0.02 pose: 0.34079388 -4.36821 0.0328816 0 -1.27464e-050.00233513 -0.0161577 0.999867 uwb: 0.50027903 850.466 1449.57 +imu_odom_: 1691062566.56937963 0.23942 0.00718261 10.1897 -0.0607201 -0.00958738 0.0308927 0.18 0 pose: 0.7973818 -4.36821 0.0328816 0 -0.0003904770.00176852 -0.016206 0.999867 uwb: 0.0 850.466 1449.57 +imu_odom_: 1691062566.71040375 0.581791 -0.122104 9.94791 -0.056459 -0.0106526 0.0330232 0.18 0 pose: 0.0 -4.36821 0.0328816 0 -0.0003904770.00176852 -0.016206 0.999867 uwb: 0.0 850.466 1449.57 +imu_odom_: 1691062566.95895675 0.418985 -0.148441 10.0437 -0.0873517 0.0351537 0.0532632 0.19 0 pose: 0.51043991 -4.35938 0.0375665 0 0.00149848 -0.000418002-0.0162889 0.999866 uwb: 0.49970747 852.144 1449.75 +imu_odom_: 1691062566.120009910 0.35913 -0.232238 10.0341 -0.0660464 0.0149137 0.0468716 0.19 0 pose: 0.0 -4.35938 0.0375665 0 0.00149848 -0.000418002-0.0162889 0.999866 uwb: 0.0 852.144 1449.75 +imu_odom_: 1691062566.143893455 0.648829 -0.198719 9.7851 -0.0639159 -0.0181095 0.0490022 0.17 -0.02 pose: 0.39823893 -4.34586 0.0334146 0 0.00351534 -0.00097567 -0.0163671 0.999859 uwb: 0.50255099 853.979 1449.46 +imu_odom_: 1691062566.168963405 0.397437 0.0311246 10.0437 -0.0479369 0.036219 0.0181095 0.17 -0.02 pose: 0.0 -4.34586 0.0334146 0 0.00351534 -0.00097567 -0.0163671 0.999859 uwb: 0.0 853.979 1449.46 +imu_odom_: 1691062566.184936417 0.368707 -0.339977 9.36612 -0.0820254 -0.0330232 0.0383495 0.19 -0.02 pose: 0.49058778 -4.33702 0.0380977 0 0.0024002 -0.000857313-0.0161204 0.999867 uwb: 0.50007202 855.868 1448.99 +imu_odom_: 1691062566.209997034 0.263362 -0.189142 9.88566 -0.0490022 -0.0426106 0.04048 0.19 -0.02 pose: 0.0 -4.33702 0.0380977 0 0.0024002 -0.000857313-0.0161204 0.999867 uwb: 0.0 855.868 1448.99 +imu_odom_: 1691062566.233937158 0.304064 -0.162806 9.96227 -0.0798948 0 0.0500674 0.18 0 pose: 0.48047067 -4.33234 0.0292633 0 0.00393744 -0.00140637 -0.0163164 0.999858 uwb: 0.49737432 855.756 1447.99 +imu_odom_: 1691062566.251000916 0.742203 -0.294487 9.47864 -0.0372843 -0.0308927 0.0213053 0.18 0 pose: 0.0 -4.33234 0.0292633 0 0.00393744 -0.00140637 -0.0163164 0.999858 uwb: 0.0 855.756 1447.99 +imu_odom_: 1691062566.275884214 0.4956 -0.227449 9.76355 -0.0500674 0.00319579 0.0298274 0.19 0 pose: 0.40936804 -4.3235 0.0339462 0 0.0024593 0.00134493 -0.01629 0.999863 uwb: 0.50350758 852.996 1445.85 +imu_odom_: 1691062566.300891460 0.622492 0.0742203 10.252 -0.0287621 -0.0426106 0.0234358 0.19 0 pose: 0.0 -4.3235 0.0339462 0 0.0024593 0.00134493 -0.01629 0.999863 uwb: 0.0 852.996 1445.85 +imu_odom_: 1691062566.325878875 0.383072 -0.141258 10.1825 -0.0543285 0.00426106 0.0511327 0.17 0 pose: 0.42947393 -4.31467 0.0386292 0 0.00165389 0.000637847 -0.0163922 0.999864 uwb: 0.49637398 856.288 1446.31 +imu_odom_: 1691062566.343881141 0.102951 -0.280122 10.3789 -0.0479369 -0.0234358 0.0276969 0.17 0 pose: 0.0 -4.31467 0.0386292 0 0.00165389 0.000637847 -0.0163922 0.999864 uwb: 0.0 856.288 1446.31 +imu_odom_: 1691062566.367924507 0.612916 -0.337582 9.92875 -0.072438 0.00426106 0.0458064 0.19 -0.05 pose: 0.50054740 -4.30115 0.0344712 0 0.00339043 -0.00204499 -0.0166312 0.999854 uwb: 0.0 856.288 1446.31 +imu_odom_: 1691062566.391873088 0.294487 0.0383072 9.96467 -0.0426106 -0.04048 0.0255663 0.19 -0.05 pose: 0.0 -4.30115 0.0344712 0 0.00339043 -0.00204499 -0.0166312 0.999854 uwb: 0.50011285 855.015 1444.93 +imu_odom_: 1691062566.416990868 0.416591 -0.213084 10.1083 -0.0628506 -0.0308927 0.052198 0.22 -0.02 pose: 0.65934426 -4.29231 0.0391494 0 0.00186536 -0.000401704-0.016623 0.99986 uwb: 0.0 855.015 1444.93 +imu_odom_: 1691062566.438871406 0.694318 -0.0526724 9.44752 -0.0458064 0.0170442 0.0213053 0.18 -0.02 pose: 0.42106002 -4.28763 0.0303108 0 0.000927588 -0.000804391-0.0165852 0.999862 uwb: 0.50049491 857.349 1444.3 +imu_odom_: 1691062566.454976533 -0.11971 -0.282516 10.1538 -0.0575243 0.0245011 0.0596548 0.18 -0.02 pose: 0.0 -4.28763 0.0303108 0 0.000927588 -0.000804391-0.0165852 0.999862 uwb: 0.0 857.349 1444.3 +imu_odom_: 1691062566.480862209 0.550666 -0.184354 10.3621 -0.0276969 -0.0319579 0.0255663 0.23 0.02 pose: 0.5889444 -4.28763 0.0303108 0 0.00122121 -0.00126946 -0.0166387 0.99986 uwb: 0.49923792 860.354 1444.25 +imu_odom_: 1691062566.505029815 0.833182 -0.349553 10.0293 -0.0649811 -0.0106526 0.0671117 0.23 0.02 pose: 0.0 -4.28763 0.0303108 0 0.00122121 -0.00126946 -0.0166387 0.99986 uwb: 0.0 860.354 1444.25 +imu_odom_: 1691062566.530856287 0.88346 0.0502782 10.0317 -0.0372843 -0.00745685 0.0351537 0.21 0.02 pose: 0.40102121 -4.27879 0.0349882 0 0.00179244 -0.00162334 -0.016679 0.999858 uwb: 0.0 860.354 1444.25 +imu_odom_: 1691062566.543858912 0.0885855 -0.0909797 9.83059 -0.0468716 0.0234358 0.052198 0.21 0.02 pose: 0.0 -4.27879 0.0349882 0 0.00179244 -0.00162334 -0.016679 0.999858 uwb: 0.0 860.354 1444.25 +imu_odom_: 1691062566.567852698 0.311246 -0.112527 9.92875 -0.0308927 0.0181095 0.0298274 0.17 0 pose: 0.49949165 -4.26528 0.0308256 0 0.00122744 -0.00656513 -0.01648 0.999842 uwb: 0.0 860.354 1444.25 +imu_odom_: 1691062566.584908582 0.356736 -0.0981623 9.93115 -0.0830906 0.0170442 0.0596548 0.17 0 pose: 0.0 -4.26528 0.0308256 0 0.00122744 -0.00656513 -0.01648 0.999842 uwb: 0.99993406 860.994 1443.56 +imu_odom_: 1691062566.610917040 0.105345 -0.342371 9.50498 -0.0671117 0.0213053 0.0458064 0.2 0 pose: 0.38936131 -4.25644 0.0355058 0 0.00294242 -0.00576664 -0.0164869 0.999843 uwb: 0.0 860.994 1443.56 +imu_odom_: 1691062566.635909996 0.308852 -0.428562 9.82102 -0.072438 0.00852212 0.0585895 0.2 0 pose: 0.0 -4.25644 0.0355058 0 0.00294242 -0.00576664 -0.0164869 0.999843 uwb: 0.0 860.994 1443.56 +imu_odom_: 1691062566.661860709 0.11971 -0.31364 9.96706 -0.0287621 -0.0170442 0.0266316 0.2 0.02 pose: 0.42280988 -4.25176 0.0266688 0 0.00338145 -0.00133778 -0.01638 0.999859 uwb: 0.0 860.994 1443.56 +imu_odom_: 1691062566.686000025 0.253785 -0.517148 9.90721 -0.0681769 -0.0117179 0.0468716 0.2 0.02 pose: 0.0 -4.25176 0.0266688 0 0.00338145 -0.00133778 -0.01638 0.999859 uwb: 0.100060483 862.773 1443.3 +imu_odom_: 1691062566.711902325 0.4956 -0.129287 9.9096 -0.0372843 -0.052198 0.0383495 0.18 0 pose: 0.49778553 -4.24292 0.0313505 0 -0.0002825710.00202855 -0.0161482 0.999868 uwb: 0.0 862.773 1443.3 +imu_odom_: 1691062566.727849380 0.632069 -0.196325 9.83538 -0.0692422 -0.0138484 0.0617853 0.18 0 pose: 0.0 -4.24292 0.0313505 0 -0.0002825710.00202855 -0.0161482 0.999868 uwb: 0.49919710 863.823 1442.64 +imu_odom_: 1691062566.749960317 0.711078 -0.191536 10.5177 -0.0458064 0.0575243 0.0308927 0.19 0 pose: 0.49995828 -4.23409 0.0360362 0 -0.00254803 0.00338611 -0.0161888 0.99986 uwb: 0.0 863.823 1442.64 +imu_odom_: 1691062566.774913901 1.09176 -0.0311246 9.81383 -0.0692422 -0.0223706 0.056459 0.19 0 pose: 0.0 -4.23409 0.0360362 0 -0.00254803 0.00338611 -0.0161888 0.99986 uwb: 0.50071946 859.961 1440.23 +imu_odom_: 1691062566.791907665 0.263362 -0.550666 9.59835 -0.0553937 0.036219 0.036219 0.19 0 pose: 0.40920472 -4.2294 0.0272017 0 -0.000992645-0.000567368-0.0160545 0.99987 uwb: 0.0 859.961 1440.23 +imu_odom_: 1691062566.815837873 0.138864 -0.514753 9.35893 -0.0596548 0.0245011 0.0479369 0.19 0 pose: 0.0 -4.2294 0.0272017 0 -0.000992645-0.000567368-0.0160545 0.99987 uwb: 0.0 859.961 1440.23 +imu_odom_: 1691062566.833838097 0.339977 -0.292093 9.89045 -0.0415453 -0.0234358 0.0372843 0.23 0 pose: 0.48174224 -4.22057 0.0318893 0 -0.000875495-0.00360886 -0.0159254 0.999866 uwb: 0.49945957 856.822 1438.15 +imu_odom_: 1691062566.859161777 0.21069 -0.275333 9.90002 -0.0809601 -0.00639159 0.0649811 0.23 0 pose: 0.0 -4.22057 0.0318893 0 -0.000875495-0.00360886 -0.0159254 0.999866 uwb: 0.0 856.822 1438.15 +imu_odom_: 1691062566.884842720 0.387861 -0.325611 9.90002 -0.0372843 -0.0117179 0.0372843 0.23 -0.02 pose: 0.40882558 -4.20705 0.0277475 0 -0.00326692 -1.73538e-05-0.0158368 0.999869 uwb: 0.49996412 856.225 1437.39 +imu_odom_: 1691062566.909010908 0.270545 -0.306458 10.0628 -0.0415453 -0.00319579 0.0511327 0.23 -0.02 pose: 0.0 -4.20705 0.0277475 0 -0.00326692 -1.73538e-05-0.0158368 0.999869 uwb: 0.0 856.225 1437.39 +imu_odom_: 1691062566.934824257 0.263362 -0.136469 10.1562 -0.0170442 -0.015979 0.036219 0.18 0 pose: 0.43163792 -4.19822 0.0324418 0 -0.00401482 0.00273742 -0.015527 0.999868 uwb: 0.49980371 856.856 1436.76 +imu_odom_: 1691062566.947819299 0.52433 -0.445322 9.58878 -0.0511327 -0.0340885 0.056459 0.18 0 pose: 0.0 -4.19822 0.0324418 0 -0.00401482 0.00273742 -0.015527 0.999868 uwb: 0.0 856.856 1436.76 +imu_odom_: 1691062566.964046624 0.742203 -0.0550666 10.1562 -0.0479369 -0.0340885 0.0468716 0.18 0 pose: 0.49850006 -4.19352 0.0236139 0 -0.00371818 0.00394585 -0.0154144 0.999866 uwb: 0.0 856.856 1436.76 +imu_odom_: 1691062566.989816810 0.905008 0.265756 10.4627 -0.0596548 0.0223706 0.0490022 0.18 0 pose: 0.0 -4.19352 0.0236139 0 -0.00371818 0.00394585 -0.0154144 0.999866 uwb: 0.49879462 859.825 1436.71 +imu_odom_: 1691062567.14872471 0.792481 -0.0885855 9.68215 -0.0703074 0.0106526 0.0426106 0.19 0 pose: 0.72902660 -4.17883 0.0314331 0 -8.05045e-050.000108683 -0.0151534 0.999885 uwb: 0.0 859.825 1436.71 +imu_odom_: 1691062567.40986509 0.447716 -0.387861 9.991 -0.0798948 -0.00213053 0.0649811 0.19 0 pose: 0.9081772 -4.17587 0.0330143 0 0.000121339 -0.000690984-0.0151397 0.999885 uwb: 0.50095282 858.238 1435.11 +imu_odom_: 1691062567.63814018 0.248997 -0.229843 10.0437 -0.0330232 -0.00426106 0.0276969 0.19 -0.02 pose: 0.42087927 -4.16476 0.0276033 0 -0.00245734 -0.00207296 -0.0147791 0.999886 uwb: 0.0 858.238 1435.11 +imu_odom_: 1691062567.86827012 0.0335188 -0.241814 10.1706 -0.0628506 -0.0383495 0.0575243 0.19 -0.02 pose: 0.0 -4.16476 0.0276033 0 -0.00245734 -0.00207296 -0.0147791 0.999886 uwb: 0.50132909 856.682 1433.43 +imu_odom_: 1691062567.112829350 0.730232 -0.0742203 10.1849 -0.0234358 -0.052198 0.036219 0.19 0 pose: 0.30849451 -4.16234 0.0288968 0 -0.00179104 0.000834546 -0.0148359 0.999888 uwb: 0.0 856.682 1433.43 +imu_odom_: 1691062567.125891181 0.416591 -0.320823 9.68933 -0.0532632 0 0.0649811 0.19 0 pose: 0.0 -4.16234 0.0288968 0 -0.00179104 0.000834546 -0.0148359 0.999888 uwb: 0.50031418 855.102 1431.87 +imu_odom_: 1691062567.149812644 0.351948 0.0454898 10.2759 -0.0319579 -0.0330232 0.0458064 0.2 0 pose: 0.47136566 -4.15352 0.0336059 0 -0.00090134 -0.000863489-0.014665 0.999892 uwb: 0.0 855.102 1431.87 +imu_odom_: 1691062567.174811729 0.42138 -0.0095768110.3477 -0.0735032 -0.0500674 0.0596548 0.2 0 pose: 0.0 -4.15352 0.0336059 0 -0.00090134 -0.000863489-0.014665 0.999892 uwb: 0.49949758 856.926 1431.43 +imu_odom_: 1691062567.190817408 0.701501 -0.208296 9.71567 -0.0628506 0.0181095 0.0426106 0.23 0 pose: 0.38904348 -4.14881 0.0247858 0 0.00176164 -0.000867635-0.0144222 0.999894 uwb: 0.0 856.926 1431.43 +imu_odom_: 1691062567.216888574 0.507571 -0.301669 9.70849 -0.0830906 0.0223706 0.0511327 0.23 0 pose: 0.0 -4.14881 0.0247858 0 0.00176164 -0.000867635-0.0144222 0.999894 uwb: 0.0 856.926 1431.43 +imu_odom_: 1691062567.241921198 0.572214 -0.35913 9.75398 -0.052198 -0.0447411 0.036219 0.18 -0.02 pose: 0.41112381 -4.13999 0.0295022 0 0.00200622 -0.00287514 -0.0141732 0.999893 uwb: 0.50005461 856.423 1430.42 +imu_odom_: 1691062567.268078983 0.538695 -0.323217 9.93115 -0.0681769 -0.036219 0.0458064 0.21 -0.02 pose: 0.42931943 -4.12645 0.0254073 0 -0.00193924 -0.00518543 -0.0140986 0.999885 uwb: 0.0 856.423 1430.42 +imu_odom_: 1691062567.283957213 0.402226 0.0430956 10.0054 -0.0319579 0.00852212 0.0351537 0.21 -0.02 pose: 0.0 -4.12645 0.0254073 0 -0.00193924 -0.00518543 -0.0140986 0.999885 uwb: 0.49882096 854.767 1429.12 +imu_odom_: 1691062567.310011464 0.177171 -0.268151 9.9096 -0.0841559 0.00532632 0.052198 0.22 0 pose: 0.7057770 -4.12645 0.0254073 0 -0.00263151 -0.00558474 -0.0140739 0.999882 uwb: 0.0 854.767 1429.12 +imu_odom_: 1691062567.334800858 0.335188 0.0047884 9.91918 -0.0394148 -0.0138484 0.0287621 0.22 0 pose: 0.0 -4.12645 0.0254073 0 -0.00263151 -0.00558474 -0.0140739 0.999882 uwb: 0.49864306 852.448 1427.34 +imu_odom_: 1691062567.357936634 0.31364 -0.213084 9.64863 -0.0745685 -0.00639159 0.0458064 0.21 0 pose: 0.43163508 -4.11764 0.0301302 0 -0.00293393 -0.00515187 -0.0139957 0.999884 uwb: 0.0 852.448 1427.34 +imu_odom_: 1691062567.375779374 0.545878 -0.227449 9.7851 -0.0223706 0.0245011 0.0223706 0.21 0 pose: 0.0 -4.11764 0.0301302 0 -0.00293393 -0.00515187 -0.0139957 0.999884 uwb: 0.50055041 853.281 1427.35 +imu_odom_: 1691062567.399822161 0.277727 -0.323217 10.0054 -0.0596548 -0.0138484 0.0532632 0.18 -0.02 pose: 0.49663072 -4.1041 0.0260404 0 -0.000695109-0.00167459 -0.0139953 0.9999 uwb: 0.0 853.281 1427.35 +imu_odom_: 1691062567.425819833 0.584185 -0.0047884 9.63666 -0.0415453 -0.00532632 0.0308927 0.18 -0.02 pose: 0.0 -4.1041 0.0260404 0 -0.000695109-0.00167459 -0.0139953 0.9999 uwb: 0.49946550 855.079 1426.97 +imu_odom_: 1691062567.450846624 0.323217 -0.332794 10.0293 -0.0596548 -0.0607201 0.04048 0.19 -0.02 pose: 0.42225583 -4.1041 0.0260404 0 -0.000840004-0.000959594-0.0140422 0.999901 uwb: 0.0 855.079 1426.97 +imu_odom_: 1691062567.475779506 -0.0861913 0.0143652 9.77553 -0.0713727 0.0138484 0.0490022 0.19 -0.02 pose: 0.0 -4.1041 0.0260404 0 -0.000840004-0.000959594-0.0140422 0.999901 uwb: 0.50224777 856.104 1426.4 +imu_odom_: 1691062567.491849930 0.339977 -0.292093 10.0341 -0.0671117 -0.0436758 0.0479369 0.18 0 pose: 0.49799853 -4.09056 0.0219492 0 -0.000123637-0.0010327 -0.0140434 0.999901 uwb: 0.0 856.104 1426.4 +imu_odom_: 1691062567.515781600 0.0837971 -0.234632 10.1083 -0.0479369 -0.00213053 0.0276969 0.18 0 pose: 0.0 -4.09056 0.0219492 0 -0.000123637-0.0010327 -0.0140434 0.999901 uwb: 0.0 856.104 1426.4 +imu_odom_: 1691062567.532780617 0.45011 -0.23942 9.90721 -0.072438 -0.0447411 0.0532632 0.26 -0.02 pose: 0.48993751 -4.08175 0.0266735 0 -0.00119204 0.00212181 -0.0138867 0.999901 uwb: 0.49950341 855.692 1425.17 +imu_odom_: 1691062567.557780577 0.596156 -0.0215478 9.90242 -0.0436758 -0.00106526 0.0351537 0.26 -0.02 pose: 0.0 -4.08175 0.0266735 0 -0.00119204 0.00212181 -0.0138867 0.999901 uwb: 0.0 855.692 1425.17 +imu_odom_: 1691062567.583823162 0.268151 -0.114922 9.84496 -0.0681769 0.0170442 0.0639159 0.24 0 pose: 0.74955842 -4.06821 0.0225854 0 2.30746e-05 0.000809068 -0.0139269 0.999903 uwb: 0.50098495 853.077 1423.13 +imu_odom_: 1691062567.596758128 0.416591 -0.3304 10.0604 -0.0500674 -0.02024 0.0436758 0.24 0 pose: 0.8133350 -4.06821 0.0225854 0 0.00050228 0.00151399 -0.0138275 0.999903 uwb: 0.0 853.077 1423.13 +imu_odom_: 1691062567.614979713 0.526724 -0.304064 9.54329 -0.0490022 0.00639159 0.0585895 0.18 0 pose: 0.0 -4.06821 0.0225854 0 0.00050228 0.00151399 -0.0138275 0.999903 uwb: 0.0 853.077 1423.13 +imu_odom_: 1691062567.637880716 0.423774 -0.191536 9.8258 -0.0266316 0.0298274 0.0340885 0.18 0 pose: 0.39295734 -4.0594 0.0273123 0 2.66509e-05 0.00170424 -0.0135055 0.999907 uwb: 0.49963757 850.18 1420.76 +imu_odom_: 1691062567.661916212 0.507571 -0.0837971 9.84975 -0.0884169 0.0138484 0.072438 0.18 0.02 pose: 0.0 -4.0594 0.0273123 0 2.66509e-05 0.00170424 -0.0135055 0.999907 uwb: 0.0 850.18 1420.76 +imu_odom_: 1691062567.687907176 0.593762 -0.234632 10.0006 -0.0649811 -0.00106526 0.0511327 0.18 0.02 pose: 0.40588589 -4.04586 0.0232359 0 0.00178419 -0.000948944-0.0133458 0.999909 uwb: 0.49915635 850.192 1419.57 +imu_odom_: 1691062567.711932756 0.380678 -0.19393 10.058 -0.0830906 0.04048 0.0511327 0.19 0 pose: 0.0 -4.04586 0.0232359 0 0.00178419 -0.000948944-0.0133458 0.999909 uwb: 0.0 850.192 1419.57 +imu_odom_: 1691062567.735750685 0.186748 -0.0909797 10.307 -0.0532632 0.00106526 0.0479369 0.19 0 pose: 0.49101659 -4.04586 0.0232359 0 0.00127309 -0.00333705 -0.0128821 0.999911 uwb: 0.50008378 849.732 1418.56 +imu_odom_: 1691062567.760809266 0.407014 0.0167594 9.84256 -0.0575243 -0.015979 0.0415453 0.19 0 pose: 0.0 -4.04586 0.0232359 0 0.00127309 -0.00333705 -0.0128821 0.999911 uwb: 0.0 849.732 1418.56 +imu_odom_: 1691062567.784928754 0.591368 -0.174777 9.81862 -0.0660464 0.0245011 0.0394148 0.19 0 pose: 0.40850776 -4.03705 0.0279794 0 0.00192459 0.000984168 -0.0126897 0.999917 uwb: 0.49809769 855.039 1419.8 +imu_odom_: 1691062567.801752201 0.368707 -0.292093 9.95748 -0.0617853 -0.00745685 0.0394148 0.19 0 pose: 0.0 -4.03705 0.0279794 0 0.00192459 0.000984168 -0.0126897 0.999917 uwb: 0.0 855.039 1419.8 +imu_odom_: 1691062567.826742537 0.280122 0.0383072 10.4148 -0.04048 -0.0106526 0.0426106 0.19 0 pose: 0.32043439 -4.02351 0.0239253 0 0.00418107 -7.39603e-05-0.0126594 0.999911 uwb: 0.50120368 859.667 1420.63 +imu_odom_: 1691062567.852748084 0.263362 0.148441 10.0604 -0.0596548 -0.0170442 0.0458064 0.19 0 pose: 0.42991730 -4.02351 0.0239253 0 0.00291762 -0.000388444-0.0126424 0.999916 uwb: 0.0 859.667 1420.63 +imu_odom_: 1691062567.876731958 0.191536 0.023942 10.0413 -0.0585895 0.0170442 0.0394148 0.19 0.02 pose: 0.41962230 -4.01129 0.0223393 0 0.00668243 0.00134105 -0.0125444 0.999898 uwb: 0.50078081 861.477 1420.09 +imu_odom_: 1691062567.893754598 0.749385 -0.339977 9.64624 -0.0585895 -0.0106526 0.0426106 0.19 0.02 pose: 0.6999732 -4.00996 0.0198723 0 0.00703092 0.00201722 -0.012548 0.999895 uwb: 0.0 861.477 1420.09 +imu_odom_: 1691062567.919743229 0.543484 -0.0143652 10.647 -0.04048 0.0213053 0.0532632 0.18 0.02 pose: 0.34006782 -4.00116 0.024622 0 0.00689594 0.00219267 -0.0125237 0.999895 uwb: 0.0 861.477 1420.09 +imu_odom_: 1691062567.942733183 0.751779 -0.260968 9.99819 -0.0532632 -0.0255663 0.0383495 0.18 0.02 pose: 0.0 -4.00116 0.024622 0 0.00689594 0.00219267 -0.0125237 0.999895 uwb: 0.49898428 861.443 1418.96 +imu_odom_: 1691062567.968734063 0.864307 -0.169988 10.094 -0.0596548 -0.0298274 0.0458064 0.25 0 pose: 0.48978585 -3.99543 0.0277166 0 0.00665572 -0.00220962 -0.0123259 0.999899 uwb: 0.0 861.443 1418.96 +imu_odom_: 1691062567.981857139 0.42138 -0.160412 9.59596 -0.0447411 -0.0138484 0.0426106 0.25 0 pose: 0.0 -3.99543 0.0277166 0 0.00665572 -0.00220962 -0.0123259 0.999899 uwb: 0.50125911 859.432 1417.7 +imu_odom_: 1691062568.5851805 0.272939 -0.0814029 9.70609 -0.052198 -0.0106526 0.0639159 0.18 0 pose: 0.0 -3.99543 0.0277166 0 0.00665572 -0.00220962 -0.0123259 0.999899 uwb: 0.0 859.432 1417.7 +imu_odom_: 1691062568.29863098 0.742203 -0.126893 10.1754 -0.0490022 0.00213053 0.0468716 0.18 0 pose: 0.47142398 -3.9876 0.0205761 0 0.00542741 -0.00334276 -0.0121187 0.999906 uwb: 0.49878891 863.273 1418.33 +imu_odom_: 1691062568.43739783 0.430956 0 9.70131 -0.0426106 -0.00106526 0.0394148 0.18 0 pose: 0.0 -3.9876 0.0205761 0 0.00542741 -0.00334276 -0.0121187 0.999906 uwb: 0.0 863.273 1418.33 +imu_odom_: 1691062568.67953477 0.337582 -0.0766145 9.71806 -0.0788296 -0.0138484 0.0543285 0.18 0 pose: 0.46873510 -3.97881 0.0253328 0 0.00620965 -0.00383589 -0.0118362 0.999903 uwb: 0.0 863.273 1418.33 +imu_odom_: 1691062568.92874115 0.114922 -0.205901 9.66779 -0.0852212 0.00106526 0.0585895 0.22 0 pose: 0.31204386 -3.96957 0.0225839 0 0.00672334 -0.00123083 -0.0116811 0.999908 uwb: 0.50038718 864.617 1417.93 +imu_odom_: 1691062568.114797825 -0.0143652 -0.347159 9.97424 -0.076699 -0.0255663 0.0532632 0.22 0 pose: 0.7997738 -3.96525 0.0213023 0 0.00632395 -0.000458289-0.0116098 0.999913 uwb: 0.0 864.617 1417.93 +imu_odom_: 1691062568.130937955 0.409408 -0.0814029 10.1754 -0.0287621 -0.0340885 0.0255663 0.19 0 pose: 0.0 -3.96525 0.0213023 0 0.00632395 -0.000458289-0.0116098 0.999913 uwb: 0.49938393 867.352 1418.19 +imu_odom_: 1691062568.147862897 0.998382 -0.481235 9.3302 -0.0713727 0.0170442 0.0553937 0.19 0 pose: 0.46923091 -3.95646 0.0260701 0 0.00472186 0.00206923 -0.011375 0.999922 uwb: 0.0 867.352 1418.19 +imu_odom_: 1691062568.172774202 0.667982 -0.227449 9.64384 -0.0138484 0.0884169 0.0245011 0.18 0 pose: 0.0 -3.95646 0.0260701 0 0.00472186 0.00206923 -0.011375 0.999922 uwb: 0.50062924 868.387 1417.45 +imu_odom_: 1691062568.197878575 0.3304 -0.0909797 9.80186 -0.0703074 0.04048 0.0639159 0.18 0 pose: 0.33081987 -3.95646 0.0260701 0 0.00420739 -0.000345285-0.011343 0.999927 uwb: 0.0 868.387 1417.45 +imu_odom_: 1691062568.222866582 0.409408 -0.296881 9.77074 -0.0649811 -0.0191748 0.0415453 0.18 0 pose: 0.41922282 -3.94532 0.0207398 0 0.00493464 0.00165562 -0.0111624 0.999924 uwb: 0.49941601 866.833 1416.05 +imu_odom_: 1691062568.247744056 0.531513 -0.21069 10.1155 -0.0798948 -0.00213053 0.0585895 0.18 0 pose: 0.6869077 -3.9429 0.0220529 0 0.00422853 0.00146333 -0.0111563 0.999928 uwb: 0.0 866.833 1416.05 +imu_odom_: 1691062568.271727352 0.407014 -0.169988 9.7444 -0.0692422 0.0127832 0.0426106 0.26 -0.02 pose: 0.42996404 -3.93673 0.0254093 0 0.00133844 -0.00139504 -0.0108984 0.999939 uwb: 0.49993513 869.633 1416.05 +imu_odom_: 1691062568.288863736 0.308852 -0.447716 10.1083 -0.0745685 0.00319579 0.0468716 0.26 -0.02 pose: 0.0 -3.93673 0.0254093 0 0.00133844 -0.00139504 -0.0108984 0.999939 uwb: 0.0 869.633 1416.05 +imu_odom_: 1691062568.314866079 0.560243 0.11971 9.88326 -0.0319579 -0.00426106 0.0255663 0.18 0 pose: 0.41119680 -3.92934 0.0180439 0 0.000902691 0.00119863 -0.0108063 0.99994 uwb: 0.0 869.633 1416.05 +imu_odom_: 1691062568.339854086 0.325611 -0.0742203 9.90721 -0.0628506 0.00319579 0.0394148 0.18 0 pose: 0.0 -3.92934 0.0180439 0 0.000902691 0.00119863 -0.0108063 0.99994 uwb: 0.49926435 872.396 1416.11 +imu_odom_: 1691062568.355855977 0.203507 -0.177171 9.79707 -0.0468716 0.00639159 0.0308927 0.21 0 pose: 0.50990350 -3.92055 0.0228231 0 0.00507487 0.00179865 -0.0109931 0.999925 uwb: 0.0 872.396 1416.11 +imu_odom_: 1691062568.380860899 -0.0311246 -0.208296 9.96467 -0.0617853 -0.0106526 0.0490022 0.21 0 pose: 0.0 -3.92055 0.0228231 0 0.00507487 0.00179865 -0.0109931 0.999925 uwb: 0.49941017 873.869 1415.19 +imu_odom_: 1691062568.406691756 0.21069 -0.380678 9.991 -0.0458064 0.00532632 0.0213053 0.21 0 pose: 0.41006813 -3.90864 0.0218427 0 0.00399522 0.00575728 -0.0109662 0.999915 uwb: 0.0 873.869 1415.19 +imu_odom_: 1691062568.431714469 0.35913 -0.433351 10.2975 -0.0468716 -0.0330232 0.0330232 0.21 0 pose: 0.0 -3.90864 0.0218427 0 0.00399522 0.00575728 -0.0109662 0.999915 uwb: 0.49996722 872.362 1413.65 +imu_odom_: 1691062568.455771259 0.694318 0.023942 9.95988 -0.0436758 0.00213053 0.0426106 0.21 -0.02 pose: 0.33896839 -3.90699 0.0188142 0 0.000940015 0.00630665 -0.0112513 0.999916 uwb: 0.0 872.362 1413.65 +imu_odom_: 1691062568.480705895 0.639252 -0.445322 9.9096 -0.056459 0.00745685 0.0276969 0.26 0.02 pose: 0.0 -3.90699 0.0188142 0 0.000940015 0.00630665 -0.0112513 0.999916 uwb: 0.50168791 869.725 1411.96 +imu_odom_: 1691062568.496699911 0.268151 -0.225055 10.1155 -0.0798948 -0.0138484 0.0415453 0.26 0.02 pose: 0.48062542 -3.8982 0.0235862 0 0.000360578 0.00301472 -0.0113194 0.999931 uwb: 0.0 869.725 1411.96 +imu_odom_: 1691062568.522760583 0.397437 -0.531513 9.44991 -0.0500674 -0.036219 0.0149137 0.19 0 pose: 0.0 -3.8982 0.0235862 0 0.000360578 0.00301472 -0.0113194 0.999931 uwb: 0.49883855 872.838 1412.09 +imu_odom_: 1691062568.547702511 0.756568 -0.488417 9.72046 -0.0788296 -0.0756338 0.0500674 0.19 0 pose: 0.42021149 -3.88464 0.0195689 0 -0.00165811 0.00299234 -0.0115139 0.999928 uwb: 0.0 872.838 1412.09 +imu_odom_: 1691062568.571703597 0.0263362 -0.507571 9.69891 -0.036219 0.0276969 0.0287621 0.21 -0.02 pose: 0.42861082 -3.87834 0.0229898 0 -0.0048666 -0.00068318 -0.0116165 0.99992 uwb: 0.49922644 872.055 1410.82 +imu_odom_: 1691062568.588722156 0.737414 -0.11971 10.149 -0.052198 -0.0138484 0.0383495 0.21 -0.02 pose: 0.0 -3.87834 0.0229898 0 -0.0048666 -0.00068318 -0.0116165 0.99992 uwb: 0.0 872.055 1410.82 +imu_odom_: 1691062568.614755705 0.895431 -0.203507 10.0604 -0.0351537 0.0447411 0.02024 0.18 -0.02 pose: 0.7070894 -3.87585 0.024336 0 -0.00511232 6.27074e-05 -0.011652 0.999919 uwb: 0.0 872.055 1410.82 +imu_odom_: 1691062568.639890992 0.562637 -0.21069 9.56723 -0.0703074 0.00532632 0.0639159 0.18 -0.02 pose: 0.0 -3.87585 0.024336 0 -0.00511232 6.27074e-05 -0.011652 0.999919 uwb: 0.50024719 870.562 1409.34 +imu_odom_: 1691062568.655686691 0.610521 -0.191536 10.0102 -0.052198 0.00319579 0.0447411 0.2 0 pose: 0.41944447 -3.87109 0.0155439 0 -0.00460915 -0.000313465-0.0118359 0.999919 uwb: 0.0 870.562 1409.34 +imu_odom_: 1691062568.679675528 0.529119 -0.220267 9.69412 -0.0575243 -0.0149137 0.0543285 0.2 0 pose: 0.0 -3.87109 0.0155439 0 -0.00460915 -0.000313465-0.0118359 0.999919 uwb: 0.50062049 870.51 1408.26 +imu_odom_: 1691062568.704786317 0.490811 -0.263362 9.86411 -0.0330232 0.0170442 0.0340885 0.18 0 pose: 0.50017719 -3.8623 0.0203059 0 -0.00257734 -0.00422872 -0.0117122 0.999919 uwb: 0.0 870.51 1408.26 +imu_odom_: 1691062568.729677207 0.457293 -0.0790087 9.98382 -0.0852212 0.0276969 0.072438 0.18 0 pose: 0.0 -3.8623 0.0203059 0 -0.00257734 -0.00422872 -0.0117122 0.999919 uwb: 0.50104629 869.044 1406.71 +imu_odom_: 1691062568.754673672 0.562637 -0.19393 9.95509 -0.0628506 -0.0276969 0.052198 0.18 0 pose: 0.41010605 -3.8535 0.0250703 0 -0.000844937-0.00605775 -0.0115458 0.999915 uwb: 0.0 869.044 1406.71 +imu_odom_: 1691062568.770789595 0.407014 -0.452504 9.6199 -0.0788296 0 0.0543285 0.18 0 pose: 0.0 -3.8535 0.0250703 0 -0.000844937-0.00605775 -0.0115458 0.999915 uwb: 0.0 869.044 1406.71 +imu_odom_: 1691062568.788690668 0.0454898 -0.246603 10.0149 -0.0447411 -0.0255663 0.0426106 0.18 0 pose: 0.50055050 -3.83995 0.02105 0 0.000336096 -0.00463369 -0.0111362 0.999927 uwb: 0.49859358 867.575 1405.19 +imu_odom_: 1691062568.813741962 0.181959 -0.282516 10.1035 -0.0575243 -0.0298274 0.0500674 0.18 0 pose: 0.0 -3.83995 0.02105 0 0.000336096 -0.00463369 -0.0111362 0.999927 uwb: 0.0 867.575 1405.19 +imu_odom_: 1691062568.829684065 0.452504 0.102951 9.70131 -0.0607201 -0.015979 0.0436758 0.25 -0.02 pose: 0.75940736 -3.82778 0.0196125 0 -0.00142023 -0.00199162 -0.0107386 0.999939 uwb: 0.49880647 865.083 1403.25 +imu_odom_: 1691062568.854660407 0.457293 -0.268151 9.99579 -0.0585895 0.00745685 0.0415453 0.25 -0.02 pose: 0.7015773 -3.82638 0.0170448 0 -0.000737584-0.00206233 -0.0107256 0.99994 uwb: 0.0 865.083 1403.25 +imu_odom_: 1691062568.877680404 0.272939 -0.447716 9.27753 -0.0649811 0.00958738 0.0415453 0.22 0 pose: 0.33902672 -3.8202 0.0204101 0 -0.00236058 -0.00248436 -0.0106793 0.999937 uwb: 0.50033468 864.94 1402.51 +imu_odom_: 1691062568.903727077 0.301669 -0.371101 9.79707 -0.0649811 -0.0458064 0.0553937 0.22 0 pose: 0.0 -3.8202 0.0204101 0 -0.00236058 -0.00248436 -0.0106793 0.999937 uwb: 0.0 864.94 1402.51 +imu_odom_: 1691062568.918673802 0.280122 0.059855 10.2568 -0.0479369 -0.052198 0.0553937 0.2 0 pose: 0.49066670 -3.81403 0.0152622 0 -0.0056818 0.000918606 -0.0104311 0.999929 uwb: 0.0 864.94 1402.51 +imu_odom_: 1691062568.935738441 0.739808 -0.241814 10.0245 -0.0500674 0.00852212 0.0394148 0.2 0 pose: 0.0 -3.81403 0.0152622 0 -0.0056818 0.000918606 -0.0104311 0.999929 uwb: 0.50015678 865.321 1401.38 +imu_odom_: 1691062568.961727369 0.342371 -0.361524 9.88326 -0.0596548 -0.0149137 0.0426106 0.18 0.02 pose: 0.32011364 -3.80404 0.0178323 0 -0.00388793 -0.000645755-0.0103163 0.999939 uwb: 0.0 865.321 1401.38 +imu_odom_: 1691062568.987851910 0.648829 -0.306458 10.0269 -0.056459 -0.0234358 0.056459 0.18 0.02 pose: 0.0 -3.80404 0.0178323 0 -0.00388793 -0.000645755-0.0103163 0.999939 uwb: 0.50241410 864.684 1399.8 +imu_odom_: 1691062569.12719470 0.730232 -0.270545 10.1203 -0.0479369 -0.00532632 0.0351537 0.2 0 pose: 0.52113469 -3.79781 0.0212288 0 -0.00555472 -0.00174522 -0.0100607 0.999932 uwb: 0.0 864.684 1399.8 +imu_odom_: 1691062569.38775189 0.37589 -0.107739 10.1682 -0.0500674 -0.0394148 0.0479369 0.2 0 pose: 0.0 -3.79781 0.0212288 0 -0.00555472 -0.00174522 -0.0100607 0.999932 uwb: 0.50001391 864.615 1398.85 +imu_odom_: 1691062569.61647619 0.835576 -0.205901 10.1514 -0.0213053 -0.0255663 0.0234358 0.19 -0.02 pose: 0.31843964 -3.79047 0.0138461 0 -0.00439245 -0.00400616 -0.010101 0.999931 uwb: 0.0 864.615 1398.85 +imu_odom_: 1691062569.78640225 0.131681 -0.19393 9.50259 -0.0639159 -0.0117179 0.0585895 0.19 -0.02 pose: 0.0 -3.79047 0.0138461 0 -0.00439245 -0.00400616 -0.010101 0.999931 uwb: 0.49935485 866.276 1398.52 +imu_odom_: 1691062569.103667318 0.543484 -0.371101 10.0461 -0.0511327 -0.00958738 0.0351537 0.19 0 pose: 0.58944351 -3.77679 0.0213131 0 -0.00172682 -0.00433688 -0.010049 0.999939 uwb: 0.0 866.276 1398.52 +imu_odom_: 1691062569.129668207 0.397437 -0.577003 9.4978 -0.056459 -0.0117179 0.0596548 0.19 0 pose: 0.0 -3.77679 0.0213131 0 -0.00172682 -0.00433688 -0.010049 0.999939 uwb: 0.49804246 867.284 1397.82 +imu_odom_: 1691062569.152644754 0.617704 -0.246603 9.94073 -0.0575243 0.00319579 0.0458064 0.19 0.02 pose: 0.32093614 -3.77291 0.0234324 0 -0.00464304 -0.00515823 -0.0100201 0.999926 uwb: 0.0 867.284 1397.82 +imu_odom_: 1691062569.169637944 0.593762 -0.100556 10.0149 -0.0745685 -0.00745685 0.0692422 0.19 0.02 pose: 0.0 -3.77291 0.0234324 0 -0.00464304 -0.00515823 -0.0100201 0.999926 uwb: 0.0 867.284 1397.82 +imu_odom_: 1691062569.194642871 0.19393 -0.435745 9.32063 -0.0596548 0.0660464 0.0223706 0.18 -0.02 pose: 0.49971940 -3.75935 0.0194555 0 -0.00439277 -0.00656486 -0.00965174 0.999922 uwb: 0.49991481 865.087 1396.31 +imu_odom_: 1691062569.219659172 -0.0263362 -0.414197 9.35415 -0.04048 0.0266316 0.0607201 0.21 0.02 pose: 0.0 -3.75935 0.0194555 0 -0.00439277 -0.00656486 -0.00965174 0.999922 uwb: 0.0 865.087 1396.31 +imu_odom_: 1691062569.243648305 0.136469 -0.047884 9.79228 -0.0149137 0.0181095 0.0255663 0.21 0.02 pose: 0.41945038 -3.75935 0.0194555 0 -0.00480883 -0.00278128 -0.00964139 0.999938 uwb: 0.50246377 865.773 1395.42 +imu_odom_: 1691062569.259644949 0.471658 -0.335188 9.62948 -0.0628506 -0.02024 0.0639159 0.21 0.02 pose: 0.0 -3.75935 0.0194555 0 -0.00480883 -0.00278128 -0.00964139 0.999938 uwb: 0.0 865.773 1395.42 +imu_odom_: 1691062569.283698535 0.339977 -0.325611 9.85214 -0.0308927 0.00745685 0.0351537 0.19 0 pose: 0.49001351 -3.74577 0.015484 0 -0.00341044 0.000441672 -0.00951977 0.999949 uwb: 0.49687588 866.045 1394.62 +imu_odom_: 1691062569.306670999 0.481235 -0.0287304 10.0724 -0.0426106 -0.0319579 0.0585895 0.27 -0.02 pose: 0.0 -3.74577 0.015484 0 -0.00341044 0.000441672 -0.00951977 0.999949 uwb: 0.0 866.045 1394.62 +imu_odom_: 1691062569.323664480 0.876278 -0.0837971 9.82341 -0.0543285 0 0.0383495 0.27 -0.02 pose: 0.32046367 -3.73968 0.0188209 0 -0.00468355 0.00203171 -0.00946961 0.999942 uwb: 0.49950068 866.691 1393.85 +imu_odom_: 1691062569.348647826 0.399832 -0.282516 9.32302 -0.0873517 0.0298274 0.0490022 0.27 -0.02 pose: 0.0 -3.73968 0.0188209 0 -0.00468355 0.00203171 -0.00946961 0.999942 uwb: 0.0 866.691 1393.85 +imu_odom_: 1691062569.371708657 0.162806 -0.196325 9.94551 -0.0490022 0.0543285 0.0298274 0.18 0 pose: 0.7011400 -3.737 0.0202869 0 -0.00399601 0.00165631 -0.00940263 0.999946 uwb: 0.50202339 867.269 1393.27 +imu_odom_: 1691062569.397676008 0.071826 -0.244209 9.89763 -0.0703074 -0.00319579 0.0543285 0.25 0 pose: 0.41054067 -3.72343 0.0163213 0 -0.00269751 -0.000243582-0.00922509 0.999954 uwb: 0.0 867.269 1393.27 +imu_odom_: 1691062569.412834760 0.821211 -0.380678 10.3214 -0.0532632 -0.0255663 0.0330232 0.25 0 pose: 0.0 -3.72343 0.0163213 0 -0.00269751 -0.000243582-0.00922509 0.999954 uwb: 0.0 867.269 1393.27 +imu_odom_: 1691062569.435740146 0.469264 -0.280122 9.64863 -0.0809601 -0.00319579 0.0532632 0.25 0 pose: 0.0 -3.72343 0.0163213 0 -0.00269751 -0.000243582-0.00922509 0.999954 uwb: 0.50028811 867.973 1392.32 +imu_odom_: 1691062569.452606471 0.486023 -0.280122 10.1323 -0.0713727 -0.0596548 0.0436758 0.21 0 pose: 0.47862775 -3.72343 0.0163213 0 -0.0033138 0.00438146 -0.00918736 0.999943 uwb: 0.0 867.973 1392.32 +imu_odom_: 1691062569.477616356 0.476446 -0.0933739 10.3238 -0.0479369 -0.0181095 0.0234358 0.21 0 pose: 0.0 -3.72343 0.0163213 0 -0.0033138 0.00438146 -0.00918736 0.999943 uwb: 0.50055350 869.708 1391.69 +imu_odom_: 1691062569.502679612 0.979228 -0.0861913 10.3645 -0.0468716 -0.015979 0.0319579 0.18 0 pose: 0.81067259 -3.70108 0.0171733 0 -0.00298712 -0.00024625 -0.00898823 0.999955 uwb: 0.0 869.708 1391.69 +imu_odom_: 1691062569.525713029 0.428562 -0.0047884 10.0604 -0.0607201 0.0234358 0.052198 0.18 -0.02 pose: 0.41985576 -3.70108 0.0171733 0 -0.000585825-0.00354675 -0.00922563 0.999951 uwb: 0.50123596 867.889 1390.31 +imu_odom_: 1691062569.550613256 0.351948 -0.146046 9.42358 -0.0436758 0.00852212 0.0308927 0.18 -0.02 pose: 0.0 -3.70108 0.0171733 0 -0.000585825-0.00354675 -0.00922563 0.999951 uwb: 0.0 867.889 1390.31 +imu_odom_: 1691062569.566610192 0.189142 -0.246603 9.81623 -0.0543285 -0.0127832 0.04048 0.23 0 pose: 0.7075562 -3.70108 0.0171733 0 9.13303e-05 -0.00331297 -0.00918352 0.999952 uwb: 0.0 867.889 1390.31 +imu_odom_: 1691062569.592628580 0.675165 -0.37589 10.1107 -0.0543285 -0.0149137 0.0170442 0.23 0 pose: 0.0 -3.70108 0.0171733 0 9.13303e-05 -0.00331297 -0.00918352 0.999952 uwb: 0.49628676 868.063 1389.79 +imu_odom_: 1691062569.615672205 0.411803 -0.213084 9.71567 -0.076699 -0.0266316 0.0553937 0.21 0 pose: 0.47862775 -3.6875 0.0132139 0 0.00241073 0.000328398 -0.00920085 0.999955 uwb: 0.0 868.063 1389.79 +imu_odom_: 1691062569.632612024 0.502782 -0.196325 10.1323 -0.0649811 -0.0276969 0.04048 0.21 0 pose: 0.0 -3.6875 0.0132139 0 0.00241073 0.000328398 -0.00920085 0.999955 uwb: 0.50062058 870.658 1389.95 +imu_odom_: 1691062569.648618000 0.445322 -0.196325 9.70609 -0.0458064 0.0245011 0.0319579 0.21 0 pose: 0.0 -3.6875 0.0132139 0 0.00241073 0.000328398 -0.00920085 0.999955 uwb: 0.0 870.658 1389.95 +imu_odom_: 1691062569.674818374 0.416591 -0.488417 9.46907 -0.0713727 0.0330232 0.0479369 0.18 0 pose: 0.42005116 -3.67874 0.0180222 0 0.000107443 -0.000666233-0.00943444 0.999955 uwb: 0.50231212 872.537 1389.97 +imu_odom_: 1691062569.689615780 0.390255 -0.294487 9.93115 -0.0298274 -0.00532632 0.0266316 0.18 0 pose: 0.0 -3.67874 0.0180222 0 0.000107443 -0.000666233-0.00943444 0.999955 uwb: 0.0 872.537 1389.97 +imu_odom_: 1691062569.716631005 0.620098 -0.304064 10.2927 -0.0617853 -0.0138484 0.0713727 0.18 0.02 pose: 0.82025890 -3.66516 0.014056 0 -0.00233425 -0.000759373-0.00929279 0.999954 uwb: 0.0 872.537 1389.97 +imu_odom_: 1691062569.740588057 0.90022 0.0023942 10.2185 -0.0383495 -0.0138484 0.0426106 0.19 0 pose: 0.0 -3.66516 0.014056 0 -0.00233425 -0.000759373-0.00929279 0.999954 uwb: 0.49733960 874.74 1390.14 +imu_odom_: 1691062569.766639401 0.835576 -0.191536 9.98622 -0.056459 0.0287621 0.0436758 0.19 0 pose: 0.34982050 -3.65639 0.0188627 0 -0.00334621 -0.00303351 -0.00892013 0.99995 uwb: 0.0 874.74 1390.14 +imu_odom_: 1691062569.782712164 0.198719 -0.177171 9.36851 -0.0479369 0.015979 0.0308927 0.19 0 pose: 0.0 -3.65639 0.0188627 0 -0.00334621 -0.00303351 -0.00892013 0.99995 uwb: 0.49995272 876.318 1389.9 +imu_odom_: 1691062569.808639851 0.0670376 -0.423774 9.7444 -0.0841559 0.0181095 0.0777643 0.18 0 pose: 0.7979074 -3.65639 0.0188627 0 -0.00284851 -0.00374441 -0.00891126 0.999949 uwb: 0.0 876.318 1389.9 +imu_odom_: 1691062569.825753781 0.761356 -0.148441 9.96946 -0.0649811 0.00426106 0.0426106 0.18 0 pose: 0.0 -3.65639 0.0188627 0 -0.00284851 -0.00374441 -0.00891126 0.999949 uwb: 0.49975148 877.92 1389.57 +imu_odom_: 1691062569.850735960 0.696713 -0.0885855 9.97185 -0.0777643 -0.0191748 0.0607201 0.19 0 pose: 0.48996685 -3.64281 0.0149113 0 -0.00126898 -0.00655611 -0.00887808 0.999938 uwb: 0.0 877.92 1389.57 +imu_odom_: 1691062569.872585305 0.567426 -0.0215478 10.331 -0.0255663 -0.00745685 0.0287621 0.19 0 pose: 0.77129196 -3.63041 0.0131211 0 -0.000670116-0.00657443 -0.00814431 0.999945 uwb: 0.49920320 878.922 1388.75 +imu_odom_: 1691062569.895628638 0.627281 -0.222661 10.2951 -0.0617853 -0.0287621 0.0458064 0.19 0 pose: 0.0 -3.63041 0.0131211 0 -0.000670116-0.00657443 -0.00814431 0.999945 uwb: 0.0 878.922 1388.75 +imu_odom_: 1691062569.921611738 0.577003 -0.0047884 9.98861 -0.0479369 -0.0138484 0.0394148 0.18 0.02 pose: 0.5906363 -3.62923 0.0109655 0 1.90867e-06 -0.0066744 -0.00817957 0.999944 uwb: 0.50006063 876.19 1386.8 +imu_odom_: 1691062569.944600242 0.320823 -0.141258 9.71567 -0.0617853 -0.0245011 0.0436758 0.18 0.02 pose: 0.0 -3.62923 0.0109655 0 1.90867e-06 -0.0066744 -0.00817957 0.999944 uwb: 0.0 876.19 1386.8 +imu_odom_: 1691062569.960598344 0.124498 -0.265756 10.2208 -0.056459 0.052198 0.036219 0.25 0.02 pose: 0.47005927 -3.62047 0.0157916 0 0.00143367 -0.00924353 -0.00820018 0.999923 uwb: 0.0 876.19 1386.8 +imu_odom_: 1691062569.986730473 0.560243 -0.593762 10.2615 -0.0735032 0.0287621 0.0585895 0.25 0.02 pose: 0.0 -3.62047 0.0157916 0 0.00143367 -0.00924353 -0.00820018 0.999923 uwb: 0.50137303 877.094 1386.3 +imu_odom_: 1691062570.11581705 0.373495 -0.181959 10.1921 -0.0351537 -0.0117179 0.0394148 0.21 0 pose: 0.47964267 -3.61171 0.0206169 0 0.00312777 -0.0063282 -0.00819279 0.999942 uwb: 0.0 877.094 1386.3 +imu_odom_: 1691062570.34697079 0.565032 -0.217872 9.9503 -0.052198 -0.0266316 0.0383495 0.21 0 pose: 0.0 -3.61171 0.0206169 0 0.00312777 -0.0063282 -0.00819279 0.999942 uwb: 0.50018607 876.799 1384.9 +imu_odom_: 1691062570.50584068 0.292093 0.059855 9.71328 -0.0213053 -0.00532632 0.036219 0.17 0.02 pose: 0.83084562 -3.59813 0.0166885 0 0.000461275 -0.00526585 -0.00796054 0.999954 uwb: 0.0 876.799 1384.9 +imu_odom_: 1691062570.76578254 0.131681 -0.457293 9.52653 -0.0639159 0.0383495 0.056459 0.17 0.02 pose: 0.7012568 -3.59813 0.0166885 0 0.00113247 -0.00483601 -0.00797482 0.999956 uwb: 0.49985073 872.082 1382.34 +imu_odom_: 1691062570.92573443 0.0622492 -0.356736 10.0533 -0.0351537 0.00426106 0.036219 0.19 0 pose: 0.0 -3.59813 0.0166885 0 0.00113247 -0.00483601 -0.00797482 0.999956 uwb: 0.0 872.082 1382.34 +imu_odom_: 1691062570.118581628 0.311246 -0.227449 9.9527 -0.0426106 -0.0511327 0.0479369 0.19 0 pose: 0.34868607 -3.58837 0.0138687 0 0.000269594 -0.00169209 -0.00777011 0.999968 uwb: 0.0 872.082 1382.34 +imu_odom_: 1691062570.143705258 0.550666 0.023942 10.1586 -0.0117179 -0.0266316 0.0394148 0.17 0 pose: 0.42003374 -3.57826 0.0162286 0 -0.0002369340.00184529 -0.00768696 0.999969 uwb: 0.50007822 869.038 1380.36 +imu_odom_: 1691062570.169575788 0.328006 -0.0622492 10.2879 -0.0287621 -0.0213053 0.0490022 0.17 0 pose: 0.0 -3.57826 0.0162286 0 -0.0002369340.00184529 -0.00768696 0.999969 uwb: 0.0 869.038 1380.36 +imu_odom_: 1691062570.194573720 0.6608 0.0766145 10.0078 -0.04048 0.0223706 0.0383495 0.17 0 pose: 0.50994160 -3.56603 0.0147843 0 0.0047705 0.00127502 -0.00756857 0.999959 uwb: 0.49816503 870.076 1379.5 +imu_odom_: 1691062570.220748434 0.356736 -0.253785 9.85932 -0.0543285 0 0.0394148 0.21 0 pose: 0.0 -3.56603 0.0147843 0 0.0047705 0.00127502 -0.00756857 0.999959 uwb: 0.0 870.076 1379.5 +imu_odom_: 1691062570.236571845 -0.0502782 -0.337582 9.70609 -0.0809601 -0.0287621 0.056459 0.21 0 pose: 0.33072666 -3.5622 0.0136799 0 0.00561139 -0.00018215 -0.0075728 0.999956 uwb: 0.50127688 872.338 1379.37 +imu_odom_: 1691062570.262598695 0.490811 -0.35913 9.92397 -0.0660464 -0.0170442 0.0383495 0.23 -0.02 pose: 0.41997541 -3.55344 0.0185167 0 0.00232889 0.00124079 -0.00745515 0.999969 uwb: 0.49887956 871.647 1378.15 +imu_odom_: 1691062570.288605422 0.826 -0.0383072 10.0461 -0.0681769 -0.0191748 0.0458064 0.23 -0.02 pose: 0.0 -3.55344 0.0185167 0 0.00232889 0.00124079 -0.00745515 0.999969 uwb: 0.0 871.647 1378.15 +imu_odom_: 1691062570.314631106 0.466869 -0.263362 9.48343 -0.0213053 0.0948085 0.0245011 0.23 0 pose: 0.43959427 -3.54994 0.0121757 0 0.00142244 -0.00241119 -0.00738352 0.999969 uwb: 0.0 871.647 1378.15 +imu_odom_: 1691062570.330557758 0.0766145 -0.387861 10.1442 -0.0543285 0.00958738 0.0553937 0.23 0 pose: 0.0 -3.54994 0.0121757 0 0.00142244 -0.00241119 -0.00738352 0.999969 uwb: 0.50081024 868.933 1376.39 +imu_odom_: 1691062570.356767469 0.505177 -0.42138 9.52413 -0.0426106 0.0149137 0.0372843 0.22 0 pose: 0.7143516 -3.54861 0.00976547 0 0.000851167 -0.00222515 -0.00743467 0.99997 uwb: 0.0 868.933 1376.39 +imu_odom_: 1691062570.381610539 0.275333 -0.213084 9.8689 -0.0426106 -0.00106526 0.0575243 0.22 0 pose: 0.0 -3.54861 0.00976547 0 0.000851167 -0.00222515 -0.00743467 0.99997 uwb: 0.50053319 868.548 1375.39 +imu_odom_: 1691062570.397564022 0.720655 -0.124498 9.96946 -0.0532632 0.0106526 0.0372843 0.2 0 pose: 0.42841849 -3.53985 0.0146046 0 -0.00194308 -0.000463258-0.00745161 0.99997 uwb: 0.0 868.548 1375.39 +imu_odom_: 1691062570.423556167 0.361524 -0.229843 9.42837 -0.0873517 0.02024 0.0553937 0.2 0 pose: 0.0 -3.53985 0.0146046 0 -0.00194308 -0.000463258-0.00745161 0.99997 uwb: 0.49993531 867.783 1374.42 +imu_odom_: 1691062570.449568144 0.00718261 -0.282516 9.91439 -0.0511327 -0.02024 0.0340885 0.23 -0.02 pose: 0.49992657 -3.52626 0.0106929 0 -0.0019701 0.000554376 -0.00725333 0.999972 uwb: 0.0 867.783 1374.42 +imu_odom_: 1691062570.475613368 0.675165 -0.289698 9.90002 -0.0703074 -0.0607201 0.0447411 0.23 -0.02 pose: 0.0 -3.52626 0.0106929 0 -0.0019701 0.000554376 -0.00725333 0.999972 uwb: 0.49889706 866.967 1373.61 +imu_odom_: 1691062570.501548934 0.730232 -0.0383072 10.0102 -0.0458064 -0.02024 0.0415453 0.21 -0.02 pose: 0.42976005 -3.51751 0.0155363 0 -0.0012919 0.00329794 -0.00707775 0.999969 uwb: 0.0 866.967 1373.61 +imu_odom_: 1691062570.518543293 0.186748 -0.411803 9.94791 -0.0809601 0.0223706 0.052198 0.21 -0.02 pose: 0.0 -3.51751 0.0155363 0 -0.0012919 0.00329794 -0.00707775 0.999969 uwb: 0.0 866.967 1373.61 +imu_odom_: 1691062570.534548398 0.25618 -0.339977 9.70609 -0.0287621 -0.0287621 0.0298274 0.17 -0.02 pose: 0.51022449 -3.50877 0.0203814 0 -0.00161823 0.000970981 -0.00705545 0.999973 uwb: 0.49943952 867.671 1372.66 +imu_odom_: 1691062570.559538456 0.620098 -0.21069 9.991 -0.0426106 0 0.0351537 0.17 -0.02 pose: 0.0 -3.50877 0.0203814 0 -0.00161823 0.000970981 -0.00705545 0.999973 uwb: 0.0 867.671 1372.66 +imu_odom_: 1691062570.585682839 0.545878 0.143652 10.1083 -0.0276969 -0.00213053 0.0308927 0.19 0 pose: 0.58980235 -3.49517 0.016481 0 -0.00232429 0.00120978 -0.00702302 0.999972 uwb: 0.50052151 868.753 1371.67 +imu_odom_: 1691062570.611680233 0.136469 -0.0383072 10.1945 -0.0628506 0.0308927 0.052198 0.19 0 pose: 0.0 -3.49517 0.016481 0 -0.00232429 0.00120978 -0.00702302 0.999972 uwb: 0.0 868.753 1371.67 +imu_odom_: 1691062570.637588968 -0.00718261-0.268151 9.8282 -0.0500674 0.0127832 0.0372843 0.19 0 pose: 0.44120706 -3.49182 0.0104265 0 0.000987185 -0.00133698 -0.00718315 0.999973 uwb: 0.50052152 868.711 1370.76 +imu_odom_: 1691062570.663526284 0.696713 -0.407014 10.0054 -0.052198 -0.0394148 0.0223706 0.19 0 pose: 0.8048194 -3.49033 0.00773338 0 0.0013419 -0.000486699-0.00713349 0.999974 uwb: 0.0 868.711 1370.76 +imu_odom_: 1691062570.689585215 0.550666 -0.227449 10.0892 -0.0639159 -0.00639159 0.0553937 0.19 0 pose: 0.0 -3.49033 0.00773338 0 0.0013419 -0.000486699-0.00713349 0.999974 uwb: 0.49997323 866.824 1368.91 +imu_odom_: 1691062570.705524408 0.260968 -0.124498 9.9934 -0.0692422 0.00958738 0.0330232 0.17 0.02 pose: 0.50862921 -3.48158 0.0125779 0 0.00124541 0.00342568 -0.00711936 0.999968 uwb: 0.0 866.824 1368.91 +imu_odom_: 1691062570.731576340 0.4956 -0.574608 9.50498 -0.0777643 0.015979 0.056459 0.17 0.02 pose: 0.0 -3.48158 0.0125779 0 0.00124541 0.00342568 -0.00711936 0.999968 uwb: 0.49984781 864.677 1366.82 +imu_odom_: 1691062570.757579567 0.296881 -0.339977 10.3046 -0.0266316 0.015979 0.0276969 0.2 -0.02 pose: 0.51943459 -3.46799 0.0086748 0 0.000187138 -0.000497123-0.00710111 0.999975 uwb: 0.0 864.677 1366.82 +imu_odom_: 1691062570.783516592 0.845153 -0.342371 10.1825 -0.0713727 -0.00852212 0.0703074 0.23 0 pose: 0.43034626 -3.45924 0.0135209 0 -0.00259879 0.000683315 -0.00695767 0.999972 uwb: 0.50037862 863.251 1364.79 +imu_odom_: 1691062570.809513403 0.73502 -0.136469 10.0389 -0.0479369 0.00426106 0.0447411 0.17 0 pose: 0.0 -3.45924 0.0135209 0 -0.00259879 0.000683315 -0.00695767 0.999972 uwb: 0.0 863.251 1364.79 +imu_odom_: 1691062570.834576663 0.232238 -0.260968 10.2999 -0.0607201 0.0436758 0.0500674 0.23 0 pose: 0.51007575 -3.45049 0.0183697 0 -0.00360944 -0.000917883-0.0066566 0.999971 uwb: 0.49836918 861.427 1362.89 +imu_odom_: 1691062570.849505603 0.308852 -0.217872 9.48343 -0.0479369 0.00745685 0.0340885 0.23 0 pose: 0.0 -3.45049 0.0183697 0 -0.00360944 -0.000917883-0.0066566 0.999971 uwb: 0.0 861.427 1362.89 +imu_odom_: 1691062570.876576829 0.476446 -0.31364 9.94551 -0.0745685 -0.0170442 0.0703074 0.19 0 pose: 0.25951024 -3.44564 0.00962632 0 -0.00271432 -0.00168148 -0.00657693 0.999973 uwb: 0.50051277 859.853 1361.33 +imu_odom_: 1691062570.902643926 0.42138 -0.0981623 10.1011 -0.052198 -0.00106526 0.04048 0.19 0 pose: 0.40989621 -3.4369 0.014481 0 -0.00235489 0.0011938 -0.00639499 0.999976 uwb: 0.0 859.853 1361.33 +imu_odom_: 1691062570.928569577 0.560243 -0.258574 9.73482 -0.0479369 -0.00213053 0.036219 0.23 0 pose: 0.26054556 -3.4369 0.014481 0 -0.00276249 -0.000602908-0.00610397 0.999977 uwb: 0.50243178 860.72 1360.96 +imu_odom_: 1691062570.944510811 0.011971 -0.275333 10.1011 -0.0511327 -0.0223706 0.0543285 0.23 0 pose: 0.0 -3.4369 0.014481 0 -0.00276249 -0.000602908-0.00610397 0.999977 uwb: 0.0 860.72 1360.96 +imu_odom_: 1691062570.970531829 0.328006 -0.0646434 10.1179 -0.0607201 -0.0276969 0.0447411 0.23 0.02 pose: 0.26087513 -3.4233 0.0106054 0 -0.000937317-0.00132796 -0.00610914 0.99998 uwb: 0.0 860.72 1360.96 +imu_odom_: 1691062570.996536223 0.612916 -0.129287 10.2639 -0.0628506 -0.0106526 0.0543285 0.23 0.02 pose: 0.0 -3.4233 0.0106054 0 -0.000937317-0.00132796 -0.00610914 0.99998 uwb: 0.49717636 859.751 1359.72 +imu_odom_: 1691062571.22688192 0.888249 -0.071826 10.2017 -0.0479369 0.0308927 0.0330232 0.23 0.02 pose: 0.42915343 -3.4233 0.0106054 0 -0.000658945-0.00138745 -0.00600172 0.999981 uwb: 0.49970495 858.816 1358.42 +imu_odom_: 1691062571.47605052 0.665588 -0.0550666 9.81862 -0.0756338 -0.0149137 0.0511327 0.23 0.02 pose: 0.0 -3.4233 0.0106054 0 -0.000658945-0.00138745 -0.00600172 0.999981 uwb: 0.0 858.816 1358.42 +imu_odom_: 1691062571.63615117 0.490811 -0.462081 10.1227 -0.0490022 0.0127832 0.0415453 0.21 0.02 pose: 0.51256056 -3.41456 0.0154697 0 0.00177677 -0.0037815 -0.00578656 0.999975 uwb: 0.0 858.816 1358.42 +imu_odom_: 1691062571.89493234 0.349553 -0.430956 9.42118 -0.0585895 -0.0223706 0.0500674 0.21 0.02 pose: 0.0 -3.41456 0.0154697 0 0.00177677 -0.0037815 -0.00578656 0.999975 uwb: 0.50012497 860.661 1358.31 +imu_odom_: 1691062571.115491799 0.0861913 -0.217872 9.76355 -0.02024 0.0223706 0.0340885 0.18 0 pose: 0.50801684 -3.40096 0.0116025 0 0.00282928 -0.00725309 -0.00569475 0.999953 uwb: 0.0 860.661 1358.31 +imu_odom_: 1691062571.141501739 0.435745 -0.354342 9.65821 -0.0735032 0.0181095 0.0596548 0.19 0 pose: 0.41873892 -3.39222 0.0164726 0 -3.2105e-05 -0.00491079 -0.00555152 0.999973 uwb: 0.50109614 861.66 1357.59 +imu_odom_: 1691062571.166479844 0.31364 -0.296881 9.52174 -0.0383495 0 0.0415453 0.19 0 pose: 0.27002111 -3.38735 0.00773967 0 -0.000556252-0.0025559 -0.00551908 0.999981 uwb: 0.0 861.66 1357.59 +imu_odom_: 1691062571.181549359 0.134075 -0.181959 10.1179 -0.0287621 -0.0308927 0.0500674 0.19 0 pose: 0.0 -3.38735 0.00773967 0 -0.000556252-0.0025559 -0.00551908 0.999981 uwb: 0.49879800 861.688 1356.59 +imu_odom_: 1691062571.208490808 0.433351 0.059855 10.4651 -0.036219 -0.0245011 0.0490022 0.19 0 pose: 0.25014852 -3.37862 0.0126133 0 -0.00262225 -0.00140554 -0.00532499 0.999981 uwb: 0.0 861.688 1356.59 +imu_odom_: 1691062571.233490495 0.608127 -0.0502782 10.082 -0.0287621 -0.0394148 0.0490022 0.17 -0.02 pose: 0.41108036 -3.37862 0.0126133 0 -0.00136192 0.00134692 -0.00517887 0.999985 uwb: 0.50108739 861.391 1355.51 +imu_odom_: 1691062571.259478270 0.407014 0.00957681 10.1514 -0.0500674 0.04048 0.0479369 0.17 -0.02 pose: 0.0 -3.37862 0.0126133 0 -0.00136192 0.00134692 -0.00517887 0.999985 uwb: 0.0 861.391 1355.51 +imu_odom_: 1691062571.275484544 0.0502782 -0.25618 10.0628 -0.0703074 -0.0340885 0.0511327 0.19 -0.05 pose: 0.51946969 -3.36501 0.00876342 0 0.00322142 -0.00141377 -0.00493551 0.999982 uwb: 0.49859093 858.989 1353.45 +imu_odom_: 1691062571.301486901 0.40462 -0.28491 9.80904 -0.0713727 -0.0458064 0.0660464 0.19 -0.05 pose: 0.0 -3.36501 0.00876342 0 0.00322142 -0.00141377 -0.00493551 0.999982 uwb: 0.0 858.989 1353.45 +imu_odom_: 1691062571.326495045 0.732626 -0.1652 10.0317 -0.0543285 -0.0191748 0.0308927 0.19 0.02 pose: 0.25912239 -3.35628 0.0136462 0 0.00469198 -8.62366e-05-0.00482136 0.999977 uwb: 0.50158902 860.278 1352.9 +imu_odom_: 1691062571.352549898 0.500388 -0.4956 9.27993 -0.0798948 0.0223706 0.0585895 0.19 0.02 pose: 0.33993391 -3.35628 0.0136462 0 0.00154214 -0.000195061-0.00443815 0.999989 uwb: 0.0 860.278 1352.9 +imu_odom_: 1691062571.378500342 -0.047884 -0.21069 9.75158 -0.00745685 0.0532632 0.0276969 0.19 0 pose: 0.8070069 -3.35628 0.0136462 0 0.00158914 -0.00106224 -0.00447206 0.999988 uwb: 0.50171734 860.011 1351.78 +imu_odom_: 1691062571.403635643 0.318429 -0.323217 9.73004 -0.0830906 0.0234358 0.0639159 0.23 0 pose: 0.0 -3.35628 0.0136462 0 0.00158914 -0.00106224 -0.00447206 0.999988 uwb: 0.0 860.011 1351.78 +imu_odom_: 1691062571.418482051 0.289698 -0.332794 9.83299 -0.0372843 0.0340885 0.0340885 0.23 0 pose: 0.49950377 -3.34267 0.00981495 0 -0.00100809 -0.00199766 -0.00432824 0.999988 uwb: 0.0 860.011 1351.78 +imu_odom_: 1691062571.445685979 0.445322 0.227449 10.0916 -0.0692422 -0.0117179 0.0596548 0.19 0 pose: 0.0 -3.34267 0.00981495 0 -0.00100809 -0.00199766 -0.00432824 0.999988 uwb: 0.49810680 860.665 1351.03 +imu_odom_: 1691062571.461584053 0.440533 -0.454898 9.61272 -0.0628506 0.00319579 0.0351537 0.19 0 pose: 0.50001123 -3.33395 0.0147085 0 -0.00312616 0.0028675 -0.00414909 0.999982 uwb: 0.0 860.665 1351.03 +imu_odom_: 1691062571.487611200 0.399832 -0.332794 9.87848 -0.0735032 -0.0181095 0.0468716 0.23 -0.02 pose: 0.0 -3.33395 0.0147085 0 -0.00312616 0.0028675 -0.00414909 0.999982 uwb: 0.49865508 861.387 1350.1 +imu_odom_: 1691062571.513500983 0.742203 -0.282516 9.9503 -0.0436758 -0.0511327 0.0308927 0.23 -0.02 pose: 0.43005468 -3.32034 0.0108869 0 -0.00184269 0.00274749 -0.00390956 0.999987 uwb: 0.0 861.387 1350.1 +imu_odom_: 1691062571.537465918 0.581791 -0.311246 9.85214 -0.0639159 -0.0181095 0.0415453 0.23 0 pose: 0.0 -3.32034 0.0108869 0 -0.00184269 0.00274749 -0.00390956 0.999987 uwb: 0.50038745 862.231 1349.75 +imu_odom_: 1691062571.562463563 0.493206 -0.0646434 9.69652 -0.0617853 0.0234358 0.0447411 0.23 0 pose: 0.42122956 -3.32034 0.0108869 0 -0.00501049 -6.69162e-05-0.00387894 0.99998 uwb: 0.0 862.231 1349.75 +imu_odom_: 1691062571.578451172 0.0766145 -0.438139 9.991 -0.0809601 0.0127832 0.0479369 0.19 0 pose: 0.0 -3.32034 0.0108869 0 -0.00501049 -6.69162e-05-0.00387894 0.99998 uwb: 0.50118947 862.804 1349.19 +imu_odom_: 1691062571.603519103 0.191536 -0.342371 10.1203 -0.0436758 -0.0266316 0.0340885 0.19 0 pose: 0.49835177 -3.30672 0.00707105 0 -0.00425365 -0.00484379 -0.00394113 0.999971 uwb: 0.0 862.804 1349.19 +imu_odom_: 1691062571.628465418 0.557849 -0.356736 10.4435 -0.0543285 -0.0245011 0.0394148 0.19 -0.02 pose: 0.0 -3.30672 0.00707105 0 -0.00425365 -0.00484379 -0.00394113 0.999971 uwb: 0.49822054 861.845 1348.06 +imu_odom_: 1691062571.654528146 0.536301 0.0670376 10.386 -0.0468716 0.0330232 0.0490022 0.19 -0.02 pose: 0.83993347 -3.28859 0.00933551 0 -0.0047893 -0.00328673 -0.00389936 0.999976 uwb: 0.0 861.845 1348.06 +imu_odom_: 1691062571.670509630 0.205901 -0.189142 9.92875 -0.0692422 -0.00745685 0.0500674 0.18 -0.02 pose: 0.0 -3.28859 0.00933551 0 -0.0047893 -0.00328673 -0.00389936 0.999976 uwb: 0.0 861.845 1348.06 +imu_odom_: 1691062571.696443451 -0.129287 -0.241814 9.90242 -0.0490022 0.00958738 0.0372843 0.18 -0.02 pose: 0.33054591 -3.28438 0.00815631 0 -0.00198163 -0.00258639 -0.0037518 0.999988 uwb: 0.0 861.845 1348.06 +imu_odom_: 1691062571.721445470 0.402226 -0.390255 9.9934 -0.0500674 -0.0553937 0.0266316 0.23 0.02 pose: 0.0 -3.28438 0.00815631 0 -0.00198163 -0.00258639 -0.0037518 0.999988 uwb: 0.100010995 861.389 1346.56 +imu_odom_: 1691062571.747440536 0.806846 -0.366313 9.56005 -0.0777643 -0.0138484 0.0511327 0.2 -0.02 pose: 0.41931053 -3.27567 0.01306 0 -0.00236534 0.000774122 -0.00377503 0.99999 uwb: 0.0 861.389 1346.56 +imu_odom_: 1691062571.763454393 0.59855 -0.105345 10.0173 -0.0703074 0.00426106 0.0330232 0.2 -0.02 pose: 0.0 -3.27567 0.01306 0 -0.00236534 0.000774122 -0.00377503 0.99999 uwb: 0.0 861.389 1346.56 +imu_odom_: 1691062571.789444501 0.533907 -0.246603 10.2663 -0.0777643 0.0106526 0.052198 0.22 0 pose: 0.51002919 -3.26205 0.00924793 0 -0.00435435 -0.00298082 -0.00377965 0.999979 uwb: 0.49966126 860.16 1345.25 +imu_odom_: 1691062571.814444771 0.897826 -0.426168 10.0341 -0.0319579 0.056459 0.0223706 0.22 0 pose: 0.34990520 -3.25593 0.0126894 0 -0.00248285 -0.0053975 -0.00366474 0.999976 uwb: 0.0 860.16 1345.25 +imu_odom_: 1691062571.830573827 0.64404 -0.0885855 10.3813 -0.0500674 0.00958738 0.052198 0.22 0 pose: 0.8035947 -3.25334 0.0141518 0 -0.00270145 -0.0058942 -0.0037341 0.999972 uwb: 0.49873674 858.653 1343.8 +imu_odom_: 1691062571.856559852 0.517148 -0.308852 9.28711 -0.0468716 0.0553937 0.0447411 0.21 -0.02 pose: 0.0 -3.25334 0.0141518 0 -0.00270145 -0.0058942 -0.0037341 0.999972 uwb: 0.0 858.653 1343.8 +imu_odom_: 1691062571.882507380 -0.23942 -0.0167594 9.6606 -0.0596548 0.0287621 0.0596548 0.23 0 pose: 0.40976504 -3.24843 0.00543664 0 -0.00238801 -0.00704938 -0.00376489 0.999965 uwb: 0.50157444 859.803 1343.56 +imu_odom_: 1691062571.907439697 0.232238 -0.0622492 9.39006 -0.0479369 0.00639159 0.0383495 0.23 0 pose: 0.44050428 -3.23972 0.0103402 0 -0.00315413 -0.00297407 -0.00344175 0.999985 uwb: 0.0 859.803 1343.56 +imu_odom_: 1691062571.933425139 0.512359 -0.474052 9.88566 -0.0884169 0.0149137 0.072438 0.21 0 pose: 0.7002945 -3.23972 0.0103402 0 -0.00264819 -0.00242525 -0.00344593 0.999988 uwb: 0.49958251 860.642 1343.21 +imu_odom_: 1691062571.959425162 1.69749 -0.289698 9.32542 -0.0692422 0.155529 0.036219 0.21 0 pose: 0.43914814 -3.22983 0.00758167 0 -0.00421149 -0.00168952 -0.00302922 0.999985 uwb: 0.0 860.642 1343.21 +imu_odom_: 1691062571.976422733 -0.799663 -0.311246 10.6901 -0.0873517 0.0138484 0.0511327 0.23 0.02 pose: 0.0 -3.22983 0.00758167 0 -0.00421149 -0.00168952 -0.00302922 0.999985 uwb: 0.50070826 861.859 1342.79 +imu_odom_: 1691062572.2411966 -0.153229 -0.122104 11.0038 -0.0468716 -0.1012 0.0575243 0.23 0.02 pose: 0.33008802 -3.22609 0.00654219 0 -0.0045002 -0.00145056 -0.00304989 0.999984 uwb: 0.0 861.859 1342.79 +imu_odom_: 1691062572.28432701 0.301669 0.0742203 10.2592 -0.0660464 -0.00958738 0.04048 0.18 -0.02 pose: 0.0 -3.22609 0.00654219 0 -0.0045002 -0.00145056 -0.00304989 0.999984 uwb: 0.0 861.859 1342.79 +imu_odom_: 1691062572.54570385 0.289698 -0.215478 10.1993 -0.0628506 -0.0287621 0.0490022 0.2 0 pose: 0.43062340 -3.21739 0.0114581 0 -0.00304736 0.000979483 -0.00273389 0.999991 uwb: 0.0 861.859 1342.79 +imu_odom_: 1691062572.71451301 0.342371 -0.234632 9.60793 -0.0713727 0.0319579 0.0415453 0.2 0 pose: 0.0 -3.21739 0.0114581 0 -0.00304736 0.000979483 -0.00273389 0.999991 uwb: 0.100003425 862.509 1342.04 +imu_odom_: 1691062572.87684477 0.0790087 -0.464475 10.1969 -0.036219 -0.036219 0.036219 0.2 0 pose: 0.52134505 -3.20376 0.00767476 0 -0.00124468 0.00320928 -0.00258918 0.999991 uwb: 0.0 862.509 1342.04 +imu_odom_: 1691062572.113422901 0.270545 -0.64404 10.1658 -0.0543285 0.00426106 0.0596548 0.19 0 pose: 0.0 -3.20376 0.00767476 0 -0.00124468 0.00320928 -0.00258918 0.999991 uwb: 0.0 862.509 1342.04 +imu_odom_: 1691062572.139470176 0.533907 -0.0191536 10.2113 -0.04048 -0.0255663 0.0394148 0.19 0.02 pose: 0.34003896 -3.20376 0.00767476 0 -0.00368735 0.00393189 -0.00253257 0.999982 uwb: 0.50052461 861.625 1340.79 +imu_odom_: 1691062572.156454042 0.0814029 -0.361524 9.991 -0.0639159 -0.0255663 0.0447411 0.19 0.02 pose: 0.0 -3.20376 0.00767476 0 -0.00368735 0.00393189 -0.00253257 0.999982 uwb: 0.0 861.625 1340.79 +imu_odom_: 1691062572.182469528 0.912191 -0.275333 10.0317 -0.056459 -0.052198 0.0532632 0.18 0.02 pose: 0.50910768 -3.19505 0.0125993 0 -0.00336099 0.00309123 -0.00234061 0.999987 uwb: 0.50063252 860.22 1339.15 +imu_odom_: 1691062572.208467515 0.790087 -0.258574 10.2256 -0.0532632 0.0127832 0.0383495 0.18 0.02 pose: 0.35924078 -3.18143 0.00882583 0 -0.00366123 0.000706167 -0.00214147 0.999991 uwb: 0.0 860.22 1339.15 +imu_odom_: 1691062572.225406176 0.102951 -0.232238 9.79468 -0.0372843 0.00852212 0.0383495 0.2 -0.02 pose: 0.0 -3.18143 0.00882583 0 -0.00366123 0.000706167 -0.00214147 0.999991 uwb: 0.49869017 869.968 1341.82 +imu_odom_: 1691062572.251523154 0.184354 -0.31364 9.38288 -0.0468716 -0.0117179 0.0330232 0.2 -0.02 pose: 0.6953367 -3.18143 0.00882583 0 -0.00360322 7.17799e-05 -0.00214848 0.999991 uwb: 0.0 869.968 1341.82 +imu_odom_: 1691062572.276547634 0.61531 -0.280122 9.86172 -0.0596548 -0.0308927 0.0575243 0.19 -0.02 pose: 0.0 -3.18143 0.00882583 0 -0.00360322 7.17799e-05 -0.00214848 0.999991 uwb: 0.49896140 870.477 1341.39 +imu_odom_: 1691062572.302438296 0.821211 -0.277727 9.97903 -0.0436758 -0.0138484 0.0340885 0.19 -0.02 pose: 0.43008976 -3.17273 0.0137573 0 -0.00314452 0.000783507 -0.00219373 0.999992 uwb: 0.0 870.477 1341.39 +imu_odom_: 1691062572.327395407 0.538695 -0.445322 9.84735 -0.0735032 -0.036219 0.0607201 0.19 -0.02 pose: 0.0 -3.17273 0.0137573 0 -0.00314452 0.000783507 -0.00219373 0.999992 uwb: 0.50072293 870.461 1340.53 +imu_odom_: 1691062572.344511971 0.244209 -0.229843 9.68694 -0.0553937 -0.0181095 0.0394148 0.19 -0.02 pose: 0.94963536 -3.1591 0.00998886 0 -0.00578722 -0.00441255 -0.00184514 0.999972 uwb: 0.0 870.461 1340.53 +imu_odom_: 1691062572.369383631 0.593762 -0.23942 9.95988 -0.0809601 -0.0127832 0.0671117 0.18 -0.02 pose: 0.0 -3.1591 0.00998886 0 -0.00578722 -0.00441255 -0.00184514 0.999972 uwb: 0.0 870.461 1340.53 +imu_odom_: 1691062572.385413822 0.646434 -0.308852 9.85453 -0.0671117 -0.0415453 0.036219 0.18 -0.02 pose: 0.7032986 -3.1591 0.00998886 0 -0.00552951 -0.00380636 -0.0018428 0.999976 uwb: 0.49937553 872.173 1340.52 +imu_odom_: 1691062572.402386606 0.385466 -0.179565 10.0772 -0.056459 0.0138484 0.0372843 0.19 0 pose: 0.0 -3.1591 0.00998886 0 -0.00552951 -0.00380636 -0.0018428 0.999976 uwb: 0.0 872.173 1340.52 +imu_odom_: 1691062572.428513499 0.411803 -0.351948 9.6199 -0.0553937 0.0298274 0.0394148 0.19 0 pose: 0.41979183 -3.14546 0.00623074 0 -0.00433942 -0.00602853 -0.00152634 0.999971 uwb: 0.50041670 872.762 1339.86 +imu_odom_: 1691062572.454501279 0.129287 -0.272939 10.3262 -0.0490022 0.00532632 0.0585895 0.2 -0.02 pose: 0.0 -3.14546 0.00623074 0 -0.00433942 -0.00602853 -0.00152634 0.999971 uwb: 0.0 872.762 1339.86 +imu_odom_: 1691062572.479383146 0.476446 -0.363919 9.95988 -0.0649811 0.00852212 0.0372843 0.2 -0.02 pose: 0.33011724 -3.13677 0.0111731 0 -0.00384948 -0.00491753 -0.00156285 0.999979 uwb: 0.50097958 872.23 1338.55 +imu_odom_: 1691062572.494370128 0.378284 0.102951 9.8665 -0.0490022 0.0138484 0.0394148 0.19 0 pose: 0.0 -3.13677 0.0111731 0 -0.00384948 -0.00491753 -0.00156285 0.999979 uwb: 0.0 872.23 1338.55 +imu_odom_: 1691062572.522385414 0.526724 -0.1652 9.7875 -0.0511327 -0.0117179 0.0351537 0.19 0 pose: 0.51981684 -3.12807 0.0161163 0 -0.00505677 -0.000817076-0.0013058 0.999986 uwb: 0.49856185 871.604 1337.51 +imu_odom_: 1691062572.547386272 0.462081 -0.237026 9.4571 -0.0873517 0.00958738 0.0479369 0.18 0.02 pose: 0.0 -3.12807 0.0161163 0 -0.00505677 -0.000817076-0.0013058 0.999986 uwb: 0.0 871.604 1337.51 +imu_odom_: 1691062572.573435005 -0.0837971 -0.244209 10.0221 -0.0447411 -0.00958738 0.0319579 0.23 0 pose: 0.40034502 -3.12313 0.00742521 0 -0.00420277 -0.00209697 -0.00135468 0.999988 uwb: 0.49997048 871.22 1336.74 +imu_odom_: 1691062572.590643145 0.605733 -0.519542 9.56005 -0.0671117 0.0191748 0.0458064 0.23 0 pose: 0.0 -3.12313 0.00742521 0 -0.00420277 -0.00209697 -0.00135468 0.999988 uwb: 0.0 871.22 1336.74 +imu_odom_: 1691062572.616438439 0.37589 -0.131681 9.94791 -0.00745685 0.0223706 0.0223706 0.25 -0.02 pose: 0.54029897 -3.11444 0.0123706 0 -0.0003002 -0.00202775 -0.00134408 0.999997 uwb: 0.0 871.22 1336.74 +imu_odom_: 1691062572.641579869 0.627281 -0.0622492 10.1394 -0.0255663 0.0149137 0.00426106 0.25 -0.02 pose: 0.60973056 -3.1008 0.00862458 0 0.00119613 0.000273309 -0.00158057 0.999998 uwb: 0.49922680 869.819 1335.09 +imu_odom_: 1691062572.667512528 0.272939 -0.213084 9.63666 -0.0660464 -0.0319579 0.0788296 0.21 0 pose: 0.0 -3.1008 0.00862458 0 0.00119613 0.000273309 -0.00158057 0.999998 uwb: 0.0 869.819 1335.09 +imu_odom_: 1691062572.693597133 0.493206 -0.323217 9.98143 -0.0553937 -0.0372843 0.02024 0.21 0 pose: 0.6976991 -3.1008 0.00862458 0 0.00163976 -0.000269518-0.00170291 0.999997 uwb: 0.50136746 869.874 1334.07 +imu_odom_: 1691062572.719574705 0.366313 0.0215478 10.5465 -0.0543285 0.0415453 0.0447411 0.23 0 pose: 0.0 -3.1008 0.00862458 0 0.00163976 -0.000269518-0.00170291 0.999997 uwb: 0.0 869.874 1334.07 +imu_odom_: 1691062572.736364337 0.244209 -0.3304 9.89045 -0.0713727 -0.00852212 0.0468716 0.23 0 pose: 0.52132463 -3.08716 0.00486929 0 0.00120322 -0.000151087-0.00159673 0.999998 uwb: 0.50037879 870.173 1333.3 +imu_odom_: 1691062572.761472811 -0.0407014 -0.158017 9.8665 -0.0436758 0.0138484 0.0319579 0.17 -0.02 pose: 0.0 -3.08716 0.00486929 0 0.00120322 -0.000151087-0.00159673 0.999998 uwb: 0.0 870.173 1333.3 +imu_odom_: 1691062572.783487529 0.282516 -0.344765 9.68694 -0.0607201 -0.0436758 0.0458064 0.17 -0.02 pose: 0.50971722 -3.07847 0.00980983 0 0.00168307 0.000306824 -0.00168291 0.999997 uwb: 0.49891765 870.429 1332.65 +imu_odom_: 1691062572.809338236 0.526724 -0.0287304 9.98382 -0.0692422 -0.0234358 0.0436758 0.18 -0.02 pose: 0.0 -3.07847 0.00980983 0 0.00168307 0.000306824 -0.00168291 0.999997 uwb: 0.0 870.429 1332.65 +imu_odom_: 1691062572.826533836 0.548272 -0.0023942 10.343 -0.0735032 -0.0266316 0.0426106 0.18 -0.02 pose: 0.40840605 -3.06978 0.0147491 0 0.000717987 0.00378398 -0.0017303 0.999991 uwb: 0.50193034 872.307 1332.14 +imu_odom_: 1691062572.852415749 0.454898 -0.117316 9.96706 -0.0532632 -0.0181095 0.04048 0.23 0 pose: 0.0 -3.06978 0.0147491 0 0.000717987 0.00378398 -0.0017303 0.999991 uwb: 0.0 872.307 1332.14 +imu_odom_: 1691062572.878353365 0.811634 -0.117316 10.0221 -0.036219 -0.00532632 0.0276969 0.25 0.02 pose: 0.48996712 -3.06484 0.00605384 0 0.00123888 0.00132455 -0.00161515 0.999997 uwb: 0.49716487 873.823 1331.66 +imu_odom_: 1691062572.895407809 0.507571 -0.059855 10.0963 -0.0383495 -0.0117179 0.0532632 0.25 0.02 pose: 0.0 -3.06484 0.00605384 0 0.00123888 0.00132455 -0.00161515 0.999997 uwb: 0.0 873.823 1331.66 +imu_odom_: 1691062572.921369924 0.380678 -0.158017 9.51456 -0.0607201 0.0394148 0.0468716 0.25 0 pose: 0.43072846 -3.05614 0.0109947 0 0.00382732 -0.00223323 -0.001621 0.999989 uwb: 0.49962635 874.174 1330.73 +imu_odom_: 1691062572.946339576 0.543484 -0.299275 9.34457 -0.0649811 -0.00213053 0.0585895 0.25 0 pose: 0.43001393 -3.04251 0.00724072 0 0.00557069 -0.0039147 -0.00158984 0.999976 uwb: 0.0 874.174 1330.73 +imu_odom_: 1691062572.963343857 0.263362 -0.378284 10.07 -0.0532632 -0.0266316 0.0553937 0.2 0 pose: 0.0 -3.04251 0.00724072 0 0.00557069 -0.0039147 -0.00158984 0.999976 uwb: 0.0 874.174 1330.73 +imu_odom_: 1691062572.989347094 0.52433 -0.203507 10.1107 -0.0916127 -0.0127832 0.0692422 0.2 0 pose: 0.50932058 -3.03382 0.0121851 0 0.00194326 -0.00269324 -0.00122173 0.999994 uwb: 0.50100582 871.643 1328.67 +imu_odom_: 1691062573.15343041 0.328006 -0.136469 10.1921 -0.0543285 0.00958738 0.0468716 0.25 0 pose: 0.0 -3.03382 0.0121851 0 0.00194326 -0.00269324 -0.00122173 0.999994 uwb: 0.0 871.643 1328.67 +imu_odom_: 1691062573.40439562 0.328006 -0.366313 10.058 -0.0617853 -0.00852212 0.0575243 0.25 0 pose: 0.61979812 -3.02252 0.00711055 0 0.00133306 -0.00221212 -0.0006645760.999996 uwb: 0.50007551 871.163 1327.35 +imu_odom_: 1691062573.66336645 0.395043 0.0191536 10.2592 -0.0276969 0.0223706 0.0319579 0.2 0 pose: 0.0 -3.02252 0.00711055 0 0.00133306 -0.00221212 -0.0006645760.999996 uwb: 0.0 871.163 1327.35 +imu_odom_: 1691062573.92479875 0.325611 -0.189142 10.2232 -0.0596548 -0.00532632 0.0447411 0.2 0 pose: 0.7006739 -3.02018 0.0084491 0 0.000727627 -0.0018372 -0.0006010130.999998 uwb: 0.50037888 872.074 1326.72 +imu_odom_: 1691062573.117539358 0.469264 -0.196325 9.74679 -0.0681769 -0.0127832 0.0436758 0.2 0 pose: 0.0 -3.02018 0.0084491 0 0.000727627 -0.0018372 -0.0006010130.999998 uwb: 0.0 872.074 1326.72 +imu_odom_: 1691062573.131503840 -0.155623 -0.311246 9.93115 -0.0671117 -0.0255663 0.0575243 0.2 0 pose: 0.52157846 -3.01149 0.0134078 0 0.00191813 0.000535719 -0.0005181770.999998 uwb: 0.49960602 872.226 1325.49 +imu_odom_: 1691062573.156406418 0.469264 -0.177171 10.0796 -0.0340885 -0.0468716 0.0372843 0.19 0 pose: 0.0 -3.01149 0.0134078 0 0.00191813 0.000535719 -0.0005181770.999998 uwb: 0.0 872.226 1325.49 +imu_odom_: 1691062573.183346418 0.407014 -0.179565 9.991 -0.0415453 -0.0287621 0.056459 0.25 0 pose: 0.48885312 -3.00653 0.00472447 0 0.000955162 0.000198107 -0.0003688690.999999 uwb: 0.50163003 873.97 1325.24 +imu_odom_: 1691062573.208330948 0.0957681 0.0454898 9.92636 -0.0553937 0.0223706 0.04048 0.25 0 pose: 0.0 -3.00653 0.00472447 0 0.000955162 0.000198107 -0.0003688690.999999 uwb: 0.0 873.97 1325.24 +imu_odom_: 1691062573.225335816 0.122104 -0.320823 10.2041 -0.0607201 -0.0234358 0.0468716 0.24 0 pose: 0.40027802 -2.99785 0.00968686 0 0.00174821 -0.00141778 -0.0002659950.999997 uwb: 0.49759368 863.249 1319.85 +imu_odom_: 1691062573.241359886 0.339977 -0.383072 9.73961 -0.0340885 0.036219 0.0351537 0.24 0 pose: 0.0 -2.99785 0.00968686 0 0.00174821 -0.00141778 -0.0002659950.999997 uwb: 0.0 863.249 1319.85 +imu_odom_: 1691062573.268463790 0.237026 -0.512359 9.48343 -0.0735032 0.0117179 0.0585895 0.26 -0.02 pose: 0.51948445 -2.9842 0.0059719 0 0.00304233 0.00316605 -7.08242e-050.99999 uwb: 0.0 863.249 1319.85 +imu_odom_: 1691062573.284468903 0.387861 -0.246603 9.88326 -0.0372843 -0.0170442 0.04048 0.26 -0.02 pose: 0.0 -2.9842 0.0059719 0 0.00304233 0.00316605 -7.08242e-050.99999 uwb: 0.49974309 861.376 1318.07 +imu_odom_: 1691062573.311379156 0.277727 -0.201113 10.2376 -0.0479369 -0.0415453 0.0490022 0.25 0 pose: 0.69099718 -2.97552 0.0109395 0 -0.00164828 0.00335132 0.000171025 0.999993 uwb: 0.0 861.376 1318.07 +imu_odom_: 1691062573.327317774 0.605733 -0.122104 9.74919 -0.0287621 0.00106526 0.0287621 0.25 0 pose: 0.8027200 -2.97552 0.0109395 0 -0.00111093 0.00382538 0.000211713 0.999992 uwb: 0.49944270 860.283 1316.79 +imu_odom_: 1691062573.354377932 0.749385 -0.28491 9.88566 -0.0585895 -0.00426106 0.052198 0.26 -0.02 pose: 0.0 -2.97552 0.0109395 0 -0.00111093 0.00382538 0.000211713 0.999992 uwb: 0.0 860.283 1316.79 +imu_odom_: 1691062573.379318132 0.490811 -0.234632 10.0892 -0.0447411 -0.0138484 0.036219 0.26 -0.02 pose: 0.34821671 -2.96188 0.00723577 0 0.00082463 0.00345532 0.000222676 0.999994 uwb: 0.50058886 860.445 1315.68 +imu_odom_: 1691062573.406311212 0.519542 -0.201113 9.63906 -0.0660464 -0.0106526 0.0458064 0.23 -0.02 pose: 0.52000358 -2.95574 0.0107519 0 -0.000213593-0.00174478 0.000351854 0.999998 uwb: 0.0 860.445 1315.68 +imu_odom_: 1691062573.431432523 0.610521 -0.0981623 9.8689 -0.0681769 -0.00745685 0.0681769 0.23 -0.02 pose: 0.0 -2.95574 0.0107519 0 -0.000213593-0.00174478 0.000351854 0.999998 uwb: 0.50014848 859.337 1314.47 +imu_odom_: 1691062573.458460891 0.617704 -0.308852 9.39485 -0.0713727 0.0213053 0.0223706 0.23 0.02 pose: 0.52114391 -2.94209 0.00705802 0 0.00176098 -0.00635133 0.000785214 0.999978 uwb: 0.0 859.337 1314.47 +imu_odom_: 1691062573.483348887 0.363919 -0.768539 9.26077 -0.0692422 0.0245011 0.0585895 0.2 0 pose: 0.0 -2.94209 0.00705802 0 0.00176098 -0.00635133 0.000785214 0.999978 uwb: 0.50060927 859.644 1313.78 +imu_odom_: 1691062573.510491288 0.411803 0.0885855 10.1011 -0.00532632 -0.0223706 0.0266316 0.2 0 pose: 0.33921658 -2.93955 0.00851483 0 -0.00130886 -0.00733367 0.00063866 0.999972 uwb: 0.0 859.644 1313.78 +imu_odom_: 1691062573.526328998 0.703895 -0.35913 9.61751 -0.0713727 -0.00426106 0.0628506 0.19 0 pose: 0.45137107 -2.92733 0.00730581 0 0.000112986 -0.00590205 0.000637372 0.999982 uwb: 0.50104674 859.765 1312.77 +imu_odom_: 1691062573.543302368 0.387861 -0.136469 9.88566 -0.0649811 -0.0106526 0.0415453 0.19 0 pose: 0.8012035 -2.9259 0.0048231 0 -0.000442865-0.00653494 0.000733179 0.999978 uwb: 0.0 859.765 1312.77 +imu_odom_: 1691062573.569370646 0.837971 -0.572214 9.48583 -0.0852212 -0.00106526 0.052198 0.18 -0.02 pose: 0.24799045 -2.92111 0.00757779 0 -0.000164178-0.0057693 0.000837868 0.999983 uwb: 0.0 859.765 1312.77 +imu_odom_: 1691062573.596394348 0.462081 -0.172383 10.0652 -0.0330232 -0.00639159 0.0351537 0.18 -0.02 pose: 0.0 -2.92111 0.00757779 0 -0.000164178-0.0057693 0.000837868 0.999983 uwb: 0.49999100 861.101 1311.98 +imu_odom_: 1691062573.621284385 0.727837 -0.225055 9.94551 -0.072438 -0.00319579 0.0458064 0.19 -0.02 pose: 0.53091980 -2.91101 0.0133799 0 -0.000243505-0.00562678 0.00094362 0.999984 uwb: 0.49729911 862.797 1311.83 +imu_odom_: 1691062573.648286214 0.486023 -0.0430956 9.67018 -0.0447411 0.0149137 0.0276969 0.19 -0.02 pose: 0.0 -2.91101 0.0133799 0 -0.000243505-0.00562678 0.00094362 0.999984 uwb: 0.0 862.797 1311.83 +imu_odom_: 1691062573.673309533 0.225055 -0.222661 9.84735 -0.0660464 -0.00639159 0.0436758 0.2 0 pose: 0.32046973 -2.90358 0.00612159 0 0.000185019 -0.00777151 0.000972123 0.999969 uwb: 0.50021264 863.485 1311 +imu_odom_: 1691062573.700332652 0.469264 -0.184354 10.1059 -0.0628506 -0.0426106 0.0479369 0.21 0 pose: 0.44868212 -2.89749 0.00962208 0 0.00160665 -0.00440189 0.000888106 0.999989 uwb: 0.0 863.485 1311 +imu_odom_: 1691062573.725285684 0.268151 -0.37589 9.8689 -0.0479369 0.0223706 0.0266316 0.21 0 pose: 0.0 -2.89749 0.00962208 0 0.00160665 -0.00440189 0.000888106 0.999989 uwb: 0.50124506 861.317 1308.62 +imu_odom_: 1691062573.742376003 0.464475 -0.11971 9.8689 -0.0585895 -0.00106526 0.0308927 0.23 -0.02 pose: 0.0 -2.89749 0.00962208 0 0.00160665 -0.00440189 0.000888106 0.999989 uwb: 0.0 861.317 1308.62 +imu_odom_: 1691062573.767261958 0.445322 -0.112527 10.2161 -0.0447411 -0.0127832 0.0319579 0.23 -0.02 pose: 0.59125213 -2.88125 0.0074201 0 0.000184964 -0.0005053190.000805941 1 uwb: 0.0 861.317 1308.62 +imu_odom_: 1691062573.784268283 0.64404 -0.225055 9.73243 -0.0500674 -0.0234358 0.0458064 0.21 -0.02 pose: 0.0 -2.88125 0.0074201 0 0.000184964 -0.0005053190.000805941 1 uwb: 0.49911315 861.645 1307.89 +imu_odom_: 1691062573.810394015 0.773327 -0.349553 10.4579 -0.0511327 0.00852212 0.0330232 0.21 -0.02 pose: 0.34827212 -2.88125 0.0074201 0 0.00357125 -0.00174534 0.0006659 0.999992 uwb: 0.0 861.645 1307.89 +imu_odom_: 1691062573.837287644 0.531513 -0.275333 9.56962 -0.0500674 0.0308927 0.0553937 0.25 0.02 pose: 0.7028904 -2.88125 0.0074201 0 0.00333954 -0.00247029 0.000690356 0.999991 uwb: 0.50067635 861.129 1306.88 +imu_odom_: 1691062573.862333711 0.158017 -0.0622492 9.57681 -0.0415453 0.0213053 0.0234358 0.25 0.02 pose: 0.0 -2.88125 0.0074201 0 0.00333954 -0.00247029 0.000690356 0.999991 uwb: 0.0 861.129 1306.88 +imu_odom_: 1691062573.879327788 0.471658 -0.215478 9.63427 -0.0756338 -0.0372843 0.0490022 0.2 0.05 pose: 0.43119808 -2.87258 0.0124007 0 0.000963165 -0.00557137 0.000711539 0.999984 uwb: 0.49860276 861.172 1306.07 +imu_odom_: 1691062573.905269200 0.112527 -0.275333 9.90242 -0.0287621 0.00852212 0.0245011 0.2 0.05 pose: 0.0 -2.87258 0.0124007 0 0.000963165 -0.00557137 0.000711539 0.999984 uwb: 0.0 861.172 1306.07 +imu_odom_: 1691062573.932273654 0.545878 -0.201113 9.94551 -0.0841559 -0.0138484 0.0447411 0.25 -0.02 pose: 0.51883992 -2.85893 0.00871063 0 -0.000179713-0.00379015 0.000709508 0.999993 uwb: 0.50198292 860.524 1304.67 +imu_odom_: 1691062573.957271600 0.409408 -0.0861913 10.1107 -0.04048 0.0106526 0.0319579 0.19 0 pose: 0.42982736 -2.85026 0.0136911 0 -0.000783077-0.00267393 0.000585322 0.999996 uwb: 0.0 860.524 1304.67 +imu_odom_: 1691062573.984382212 0.268151 -0.186748 10.1179 -0.0553937 -0.00639159 0.0490022 0.21 -0.02 pose: 0.0 -2.85026 0.0136911 0 -0.000783077-0.00267393 0.000585322 0.999996 uwb: 0.50129756 859.92 1303.2 +imu_odom_: 1691062574.10282504 0.517148 -0.296881 9.663 -0.0607201 -0.00639159 0.052198 0.19 0 pose: 0.52140930 -2.84528 0.00501886 0 0.00177176 -0.00245903 0.000562333 0.999995 uwb: 0.0 859.92 1303.2 +imu_odom_: 1691062574.37270339 1.0319 -0.114922 10.0796 -0.0447411 -0.00213053 0.0308927 0.19 0 pose: 0.0 -2.84528 0.00501886 0 0.00177176 -0.00245903 0.000562333 0.999995 uwb: 0.49795534 860.051 1302.22 +imu_odom_: 1691062574.63259586 0.639252 -0.134075 9.70131 -0.0862864 0.0436758 0.0692422 0.18 0.02 pose: 0.72852011 -2.82687 0.00736661 0 0.000333877 -0.00489496 0.000701414 0.999988 uwb: 0.0 860.051 1302.22 +imu_odom_: 1691062574.80312286 0.253785 -0.411803 9.80904 -0.0692422 0.0181095 0.0394148 0.18 0.02 pose: 0.8019911 -2.82295 0.00630758 0 0.000581149 -0.00541487 0.000818223 0.999985 uwb: 0.50011649 859.235 1301.22 +imu_odom_: 1691062574.106245537 0.3304 -0.337582 10.0652 -0.0617853 -0.00213053 0.0575243 0.18 0 pose: 0.0 -2.82295 0.00630758 0 0.000581149 -0.00541487 0.000818223 0.999985 uwb: 0.0 859.235 1301.22 +imu_odom_: 1691062574.133320282 0.684742 -0.117316 10.0006 -0.0308927 -0.0308927 0.0298274 0.18 0 pose: 0.35022036 -2.81813 0.00908003 0 -4.37104e-05-0.00505173 0.00108344 0.999987 uwb: 0.50049270 857.952 1299.86 +imu_odom_: 1691062574.149246071 0.507571 -0.31364 9.15543 -0.0830906 0 0.0511327 0.2 0.02 pose: 0.53007996 -2.81429 0.0112926 0 6.50935e-05 -0.0056081 0.0011851 0.999984 uwb: 0.0 857.952 1299.86 +imu_odom_: 1691062574.176248196 0.440533 -0.232238 9.73722 -0.0415453 -0.02024 0.0383495 0.2 0.02 pose: 0.0 -2.81429 0.0112926 0 6.50935e-05 -0.0056081 0.0011851 0.999984 uwb: 0.49927655 857.5 1298.78 +imu_odom_: 1691062574.201247312 0.158017 -0.232238 9.94791 -0.0639159 -0.0415453 0.0543285 0.23 0 pose: 0.24040192 -2.80063 0.00761695 0 -0.00151394 -0.00489801 0.00128061 0.999986 uwb: 0.0 857.5 1298.78 +imu_odom_: 1691062574.228268395 0.457293 0.0837971 10.0078 -0.0479369 -0.0170442 0.0372843 0.21 0.02 pose: 0.0 -2.80063 0.00761695 0 -0.00151394 -0.00489801 0.00128061 0.999986 uwb: 0.49863786 859.641 1298.99 +imu_odom_: 1691062574.253242430 0.608127 -0.035913 10.1562 -0.0436758 -0.0383495 0.0532632 0.21 0.02 pose: 0.51011403 -2.80063 0.00761695 0 -0.000326136-0.00128616 0.0014487 0.999998 uwb: 0.0 859.641 1298.99 +imu_odom_: 1691062574.280264095 0.316035 -0.205901 9.44034 -0.0649811 0.0181095 0.04048 0.21 0 pose: 0.44870553 -2.78843 0.00648332 0 0.00348121 -0.00394757 0.00159463 0.999985 uwb: 0.50053645 858.825 1297.35 +imu_odom_: 1691062574.305368204 0.349553 -0.35913 9.81862 -0.0394148 -0.0127832 0.036219 0.21 0 pose: 0.0 -2.78843 0.00648332 0 0.00348121 -0.00394757 0.00159463 0.999985 uwb: 0.0 858.825 1297.35 +imu_odom_: 1691062574.322442777 0.773327 -0.237026 10.1323 -0.0532632 -0.00639159 0.0553937 0.23 0.02 pose: 0.52125774 -2.77831 0.00894382 0 0.000314629 -0.0002918580.00156008 0.999999 uwb: 0.50199175 858.791 1296.09 +imu_odom_: 1691062574.348296409 0.826 -0.241814 10.1155 -0.0458064 0.015979 0.0298274 0.23 0.02 pose: 0.0 -2.77831 0.00894382 0 0.000314629 -0.0002918580.00156008 0.999999 uwb: 0.0 858.791 1296.09 +imu_odom_: 1691062574.375238456 0.368707 -0.241814 9.89284 -0.0692422 -0.0106526 0.0490022 0.25 0 pose: 0.42928205 -2.77208 0.0125352 0 0.000119126 -0.00433069 0.0015708 0.999989 uwb: 0.49785041 858.195 1294.68 +imu_odom_: 1691062574.391441015 0.270545 -0.442927 9.59357 -0.0458064 0.0181095 0.0319579 0.25 0 pose: 0.0 -2.77208 0.0125352 0 0.000119126 -0.00433069 0.0015708 0.999989 uwb: 0.0 858.195 1294.68 +imu_odom_: 1691062574.418432349 0.435745 -0.385466 9.88087 -0.0628506 0 0.056459 0.24 0 pose: 0.43144606 -2.76001 0.00795248 0 -0.0019239 -0.0006282930.0016407 0.999997 uwb: 0.0 858.195 1294.68 +imu_odom_: 1691062574.443637366 0.56982 -0.272939 10.0628 -0.0426106 0.00106526 0.0394148 0.19 0 pose: 0.0 -2.76001 0.00795248 0 -0.0019239 -0.0006282930.0016407 0.999997 uwb: 0.49976360 858.841 1293.99 +imu_odom_: 1691062574.460220228 0.514753 0.00718261 10.1323 -0.052198 0.00639159 0.0511327 0.23 0 pose: 0.34913836 -2.75599 0.0102752 0 -0.00445949 -0.00173327 0.00186466 0.999987 uwb: 0.0 858.841 1293.99 +imu_odom_: 1691062574.485298672 0.40462 -0.28491 9.43555 -0.0660464 0.00213053 0.0394148 0.23 0 pose: 0.0 -2.75599 0.0102752 0 -0.00445949 -0.00173327 0.00186466 0.999987 uwb: 0.50180802 858.941 1293.13 +imu_odom_: 1691062574.512511656 0.61531 -0.591368 9.63666 -0.0937433 -0.0415453 0.0617853 0.21 0.02 pose: 0.58943821 -2.74233 0.00661775 0 -0.0034142 -0.00113629 0.00194994 0.999992 uwb: 0.0 858.941 1293.13 +imu_odom_: 1691062574.537232544 0.320823 -0.325611 9.83059 -0.0298274 -0.00319579 0.0276969 0.18 0 pose: 0.7060986 -2.74233 0.00661775 0 -0.00415125 -0.0016377 0.00202804 0.999988 uwb: 0.49687924 857.129 1291.02 +imu_odom_: 1691062574.564206088 0.811634 -0.227449 10.0221 -0.0617853 -0.052198 0.0500674 0.23 0 pose: 0.44872886 -2.73367 0.011623 0 -0.00575846 -0.0005864830.00211984 0.999981 uwb: 0.0 857.129 1291.02 +imu_odom_: 1691062574.580217620 0.476446 -0.3304 9.40203 -0.0308927 0.0735032 0.0223706 0.23 0 pose: 0.0 -2.73367 0.011623 0 -0.00575846 -0.0005864830.00211984 0.999981 uwb: 0.0 857.129 1291.02 +imu_odom_: 1691062574.597232698 0.418985 -0.208296 10.0556 -0.0575243 -0.0223706 0.0628506 0.19 0 pose: 0.0 -2.73367 0.011623 0 -0.00575846 -0.0005864830.00211984 0.999981 uwb: 0.0 857.129 1291.02 +imu_odom_: 1691062574.623218154 0.493206 -0.361524 9.62708 -0.0511327 0.0308927 0.0330232 0.19 0 pose: 0.34116482 -2.73367 0.011623 0 -0.00579544 -0.00364604 0.00218926 0.999974 uwb: 0.100271485 856.987 1290.03 +imu_odom_: 1691062574.650277150 0.277727 0.0766145 10.2376 -0.0841559 0.00319579 0.0607201 0.18 0 pose: 0.33880543 -2.72001 0.00797395 0 -0.00564434 -0.00325131 0.00228482 0.999976 uwb: 0.0 856.987 1290.03 +imu_odom_: 1691062574.676348057 0.304064 -0.0981623 9.85693 -0.0660464 -0.00532632 0.0436758 0.18 0.02 pose: 0.45047581 -2.71382 0.0115562 0 -0.00504906 -0.00267117 0.00250621 0.999981 uwb: 0.49948362 855.712 1288.16 +imu_odom_: 1691062574.703329767 0.232238 -0.0766145 10.1969 -0.072438 -0.0490022 0.0426106 0.18 0.02 pose: 0.0 -2.71382 0.0115562 0 -0.00504906 -0.00267117 0.00250621 0.999981 uwb: 0.0 855.712 1288.16 +imu_odom_: 1691062574.728202019 0.344765 -0.177171 10.1155 -0.0575243 -0.0532632 0.0351537 0.2 0 pose: 0.7957790 -2.71135 0.0129837 0 -0.00444094 -0.00221643 0.002523 0.999984 uwb: 0.49857369 854.286 1286.62 +imu_odom_: 1691062574.755204144 0.976834 -0.328006 10.0628 -0.0468716 -0.0308927 0.0255663 0.2 0 pose: 0.0 -2.71135 0.0129837 0 -0.00444094 -0.00221643 0.002523 0.999984 uwb: 0.0 854.286 1286.62 +imu_odom_: 1691062574.780208218 0.430956 -0.102951 10.0556 -0.0692422 0.0234358 0.0468716 0.19 0.02 pose: 0.53017037 -2.69769 0.00934389 0 -0.0007664310.00043292 0.00259068 0.999996 uwb: 0.50016023 855.146 1286.16 +imu_odom_: 1691062574.807256715 0.395043 -0.222661 10.0006 -0.0436758 0.0170442 0.02024 0.23 0 pose: 0.51984035 -2.68903 0.0143554 0 0.000814965 -0.00168843 0.00239423 0.999995 uwb: 0.0 855.146 1286.16 +imu_odom_: 1691062574.823233833 0.227449 -0.641646 9.60554 -0.0713727 0.015979 0.0394148 0.23 0 pose: 0.0 -2.68903 0.0143554 0 0.000814965 -0.00168843 0.00239423 0.999995 uwb: 0.50184885 855.205 1285.42 +imu_odom_: 1691062574.850320535 0.509965 -0.215478 9.79707 -0.0213053 0.0138484 0.0234358 0.25 0 pose: 0.59997821 -2.67944 0.0083548 0 -0.00137709 0.00113374 0.00218972 0.999996 uwb: 0.0 855.205 1285.42 +imu_odom_: 1691062574.875186079 0.550666 -0.344765 9.95748 -0.0692422 0.0245011 0.0553937 0.25 0 pose: 0.7071777 -2.67537 0.0107098 0 -0.00111664 0.000504218 0.00213162 0.999997 uwb: 0.49729920 855.642 1284.56 +imu_odom_: 1691062574.902278906 0.00957681 0.0143652 9.7851 -0.0490022 0.0532632 0.0287621 0.21 0 pose: 0.44880469 -2.66916 0.0142975 0 -0.00231184 -0.00268305 0.00216497 0.999991 uwb: 0.0 855.642 1284.56 +imu_odom_: 1691062574.928283318 0.258574 -0.366313 9.62708 -0.052198 -0.0511327 0.0340885 0.21 0 pose: 0.0 -2.66916 0.0142975 0 -0.00231184 -0.00268305 0.00216497 0.999991 uwb: 0.50075227 854.755 1283.24 +imu_odom_: 1691062574.953305766 0.205901 -0.232238 9.64145 -0.0713727 -0.0266316 0.0458064 0.25 0 pose: 0.53097239 -2.6617 0.00705881 0 -0.00260873 0.00163725 0.0019482 0.999993 uwb: 0.0 854.755 1283.24 +imu_odom_: 1691062574.967364743 0.497994 -0.275333 9.991 -0.0607201 -0.0468716 0.0447411 0.25 0 pose: 0.0 -2.6617 0.00705881 0 -0.00260873 0.00163725 0.0019482 0.999993 uwb: 0.0 854.755 1283.24 +imu_odom_: 1691062574.983257284 0.23942 0.0287304 9.62708 -0.0415453 -0.00745685 0.0213053 0.17 0 pose: 0.39081425 -2.65305 0.0120617 0 -0.00249336 0.00211554 0.00206773 0.999993 uwb: 0.50104975 855.508 1282.99 +imu_odom_: 1691062575.9214743 0.418985 -0.232238 9.72046 -0.0830906 -0.00426106 0.0490022 0.17 0 pose: 0.6897374 -2.65305 0.0120617 0 -0.00181041 0.0023756 0.00200665 0.999994 uwb: 0.0 855.508 1282.99 +imu_odom_: 1691062575.34252069 0.490811 -0.122104 10.1011 -0.04048 0.0287621 0.0308927 0.18 0 pose: 0.34952626 -2.64311 0.00940492 0 -0.00127661 0.000114236 0.00204787 0.999997 uwb: 0.49866996 856.46 1282.34 +imu_odom_: 1691062575.59321184 0.0215478 -0.244209 9.64624 -0.0692422 0.00532632 0.0607201 0.18 0 pose: 0.0 -2.64311 0.00940492 0 -0.00127661 0.000114236 0.00204787 0.999997 uwb: 0.0 856.46 1282.34 +imu_odom_: 1691062575.76179069 0.387861 -0.203507 10.1778 -0.04048 -0.0298274 0.0394148 0.18 0 pose: 0.7129524 -2.63938 0.00840734 0 -0.000655333-0.0001998520.00201626 0.999998 uwb: 0.0 856.46 1282.34 +imu_odom_: 1691062575.100197683 0.639252 -0.222661 9.81383 -0.072438 -0.0372843 0.052198 0.18 0 pose: 0.0 -2.63938 0.00840734 0 -0.000655333-0.0001998520.00201626 0.999998 uwb: 0.0 856.46 1282.34 +imu_odom_: 1691062575.124183634 0.529119 -0.0311246 9.81623 -0.0490022 -0.0245011 0.0383495 0.2 0 pose: 0.49853294 -2.63073 0.0134119 0 0.000577375 0.000851081 0.00219955 0.999997 uwb: 0.100182843 855.594 1280.99 +imu_odom_: 1691062575.150168219 0.378284 -0.232238 10.0365 -0.0745685 -0.015979 0.0671117 0.23 0 pose: 0.16114485 -2.63073 0.0134119 0 0.000671981 -0.0009790270.00223829 0.999997 uwb: 0.0 855.594 1280.99 +imu_odom_: 1691062575.174179834 0.433351 -0.205901 10.1011 -0.0543285 -0.00852212 0.0330232 0.23 0 pose: 0.41871588 -2.61962 0.00828472 0 0.00266868 -0.00413914 0.00233108 0.999985 uwb: 0.49736054 855.366 1279.63 +imu_odom_: 1691062575.191212122 0.325611 -0.538695 9.80186 -0.0841559 0.00426106 0.0468716 0.23 0 pose: 0.0 -2.61962 0.00828472 0 0.00266868 -0.00413914 0.00233108 0.999985 uwb: 0.0 855.366 1279.63 +imu_odom_: 1691062575.216175953 0.244209 -0.11971 10.1682 -0.0532632 -0.015979 0.0426106 0.18 0 pose: 0.7115816 -2.61706 0.00976412 0 0.00220788 -0.0035876 0.00242868 0.999988 uwb: 0.0 855.366 1279.63 +imu_odom_: 1691062575.242360314 0.21069 -0.0909797 10.2161 -0.0585895 -0.00532632 0.0372843 0.23 0.02 pose: 0.50018073 -2.61706 0.00976412 0 -0.00139234 -0.0001678660.00263672 0.999996 uwb: 0.50078735 855.115 1278.33 +imu_odom_: 1691062575.267161117 0.596156 -0.251391 10.1706 -0.0596548 -0.0170442 0.0426106 0.23 0.02 pose: 0.0 -2.61706 0.00976412 0 -0.00139234 -0.0001678660.00263672 0.999996 uwb: 0.0 855.115 1278.33 +imu_odom_: 1691062575.293172242 1.02951 -0.0287304 10.3597 -0.0191748 -0.056459 0.0266316 0.21 0 pose: 0.42942504 -2.6034 0.00612701 0 -0.0002461410.00242002 0.00270839 0.999993 uwb: 0.50104692 855.452 1277.68 +imu_odom_: 1691062575.319178700 0.699107 -0.167594 9.8258 -0.072438 -0.02024 0.0532632 0.21 0 pose: 0.0 -2.6034 0.00612701 0 -0.0002461410.00242002 0.00270839 0.999993 uwb: 0.0 855.452 1277.68 +imu_odom_: 1691062575.336235778 0.289698 -0.471658 9.73961 -0.0607201 0.0127832 0.0340885 0.23 -0.02 pose: 0.50930918 -2.59474 0.0111427 0 0.000738632 0.000188424 0.00267722 0.999996 uwb: 0.50022739 854.603 1276.36 +imu_odom_: 1691062575.362221238 0.536301 -0.476446 9.5816 -0.0649811 -0.0415453 0.0511327 0.23 -0.02 pose: 0.0 -2.59474 0.0111427 0 0.000738632 0.000188424 0.00267722 0.999996 uwb: 0.0 854.603 1276.36 +imu_odom_: 1691062575.387171946 0.201113 -0.268151 9.89763 -0.0191748 0.0245011 0.0340885 0.18 0.02 pose: 0.51018412 -2.58108 0.00750549 0 0.000912868 -0.00434927 0.00272506 0.999986 uwb: 0.49849212 855.949 1276.14 +imu_odom_: 1691062575.401223051 0.459687 -0.0837971 10.3286 -0.0479369 0.0213053 0.0575243 0.18 0.02 pose: 0.0 -2.58108 0.00750549 0 0.000912868 -0.00434927 0.00272506 0.999986 uwb: 0.0 855.949 1276.14 +imu_odom_: 1691062575.426169968 0.591368 -0.126893 10.1203 -0.0426106 0.0308927 0.0319579 0.18 0.02 pose: 0.75013694 -2.57243 0.0125219 0 -0.000708682-0.00188111 0.00292163 0.999994 uwb: 0.50032655 855.861 1275.13 +imu_odom_: 1691062575.451149548 0.653617 -0.37589 9.7851 -0.0639159 0.0149137 0.0500674 0.18 0.02 pose: 0.0 -2.57243 0.0125219 0 -0.000708682-0.00188111 0.00292163 0.999994 uwb: 0.0 855.861 1275.13 +imu_odom_: 1691062575.474210696 0.890643 -0.179565 9.80186 -0.0287621 0.0149137 0.0287621 0.18 -0.02 pose: 0.7062446 -2.57243 0.0125219 0 -0.000265797-0.0023412 0.00289354 0.999993 uwb: 0.49873418 855.687 1274.3 +imu_odom_: 1691062575.490206190 0.0383072 -0.289698 9.63666 -0.0617853 -0.0213053 0.0660464 0.18 -0.02 pose: 0.0 -2.57243 0.0125219 0 -0.000265797-0.0023412 0.00289354 0.999993 uwb: 0.0 855.687 1274.3 +imu_odom_: 1691062575.516253770 0.653617 -0.306458 9.88566 -0.0458064 -0.0117179 0.036219 0.23 -0.02 pose: 0.48989737 -2.55876 0.00889154 0 -0.000820711-0.00561085 0.002927 0.99998 uwb: 0.0 855.687 1274.3 +imu_odom_: 1691062575.541132442 0.4956 -0.500388 9.94551 -0.0553937 -0.0298274 0.0617853 0.23 -0.02 pose: 0.40898664 -2.55011 0.0139121 0 -0.000981116-0.00640097 0.00303559 0.999974 uwb: 0.50212016 855.365 1273.17 +imu_odom_: 1691062575.558198269 0.565032 -0.169988 9.83299 -0.0553937 0.00213053 0.036219 0.21 0.02 pose: 0.42958544 -2.53912 0.00873045 0 -0.00419331 -0.00773945 0.00330701 0.999956 uwb: 0.0 855.365 1273.17 +imu_odom_: 1691062575.583199431 0.411803 -0.349553 9.7851 -0.0990696 -0.0319579 0.0671117 0.21 0.02 pose: 0.0 -2.53912 0.00873045 0 -0.00419331 -0.00773945 0.00330701 0.999956 uwb: 0.50028281 854.63 1271.68 +imu_odom_: 1691062575.608135557 0.416591 -0.579397 9.44752 -0.0607201 0.0426106 0.0245011 0.18 0 pose: 0.24035238 -2.53644 0.0102881 0 -0.00300903 -0.00733804 0.00336364 0.999963 uwb: 0.0 854.63 1271.68 +imu_odom_: 1691062575.633128845 0.146046 -0.246603 9.93833 -0.0415453 -0.0276969 0.0575243 0.18 0 pose: 0.0 -2.53644 0.0102881 0 -0.00300903 -0.00733804 0.00336364 0.999963 uwb: 0.50041113 854.941 1271.1 +imu_odom_: 1691062575.650122344 1.02951 -0.244209 10.2496 -0.0266316 -0.0319579 0.0223706 0.18 0 pose: 0.49030276 -2.5278 0.015316 0 -0.00655969 -0.00413466 0.00350569 0.999964 uwb: 0.0 854.941 1271.1 +imu_odom_: 1691062575.675254163 0.751779 -0.301669 9.61511 -0.0671117 0.0234358 0.0681769 0.18 0 pose: 0.0 -2.5278 0.015316 0 -0.00655969 -0.00413466 0.00350569 0.999964 uwb: 0.50022448 855.565 1270.5 +imu_odom_: 1691062575.702123012 0.536301 -0.0526724 10.1275 -0.0692422 -0.0298274 0.0436758 0.18 0 pose: 0.43936134 -2.52277 0.00667314 0 -0.00538764 -0.0051393 0.00364192 0.999966 uwb: 0.0 855.565 1270.5 +imu_odom_: 1691062575.727301202 0.399832 -0.581791 10.0485 -0.0809601 -0.00319579 0.056459 0.18 -0.02 pose: 0.43988922 -2.51413 0.0117055 0 -0.0028794 -0.00695794 0.00391313 0.999964 uwb: 0.49797007 855.124 1269.62 +imu_odom_: 1691062575.752176374 0.131681 -0.308852 9.92875 -0.0681769 -0.00745685 0.0553937 0.18 -0.02 pose: 0.8198398 -2.51413 0.0117055 0 -0.00373308 -0.00661572 0.00398775 0.999963 uwb: 0.0 855.124 1269.62 +imu_odom_: 1691062575.774163106 0.272939 -0.0861913 10.0533 -0.0649811 -0.0245011 0.0415453 0.18 0 pose: 0.41854964 -2.50172 0.0102811 0 -0.00558051 -0.00346009 0.0043515 0.999969 uwb: 0.49950704 856.051 1269.02 +imu_odom_: 1691062575.790111354 0.641646 -0.232238 9.75637 -0.052198 -0.0468716 0.0298274 0.18 0 pose: 0.0 -2.50172 0.0102811 0 -0.00558051 -0.00346009 0.0043515 0.999969 uwb: 0.0 856.051 1269.02 +imu_odom_: 1691062575.817238891 0.665588 -0.258574 10.003 -0.0649811 -0.0117179 0.0415453 0.23 0 pose: 0.37934980 -2.49589 0.0107689 0 -0.00349768 -0.00413724 0.00429252 0.999976 uwb: 0.0 856.051 1269.02 +imu_odom_: 1691062575.833244593 0.153229 -0.102951 9.76355 -0.036219 0.0223706 0.0330232 0.23 0 pose: 0.0 -2.49589 0.0107689 0 -0.00349768 -0.00413724 0.00429252 0.999976 uwb: 0.49908124 857.066 1268.82 +imu_odom_: 1691062575.860128607 0.320823 -0.383072 9.70849 -0.0777643 -0.0117179 0.0511327 0.26 -0.02 pose: 0.43133239 -2.49181 0.0131506 0 -0.00242553 -0.00525139 0.00425602 0.999974 uwb: 0.0 857.066 1268.82 +imu_odom_: 1691062575.885230970 0.155623 -0.258574 10.4267 -0.0394148 0 0.0276969 0.26 -0.02 pose: 0.0 -2.49181 0.0131506 0 -0.00242553 -0.00525139 0.00425602 0.999974 uwb: 0.50112857 856.64 1267.36 +imu_odom_: 1691062575.909119803 0.387861 -0.349553 9.87608 -0.0649811 -0.0223706 0.0394148 0.22 0 pose: 0.51986377 -2.47814 0.00955932 0 -0.00368935 -0.0005766430.00428401 0.999984 uwb: 0.0 856.64 1267.36 +imu_odom_: 1691062575.924186703 0.476446 -0.25618 9.53611 -0.0191748 -0.00106526 0.0276969 0.22 0 pose: 0.0 -2.47814 0.00955932 0 -0.00368935 -0.0005766430.00428401 0.999984 uwb: 0.49991825 856.01 1266.3 +imu_odom_: 1691062575.948243231 0.725443 -0.433351 10.0963 -0.0703074 -0.00745685 0.0543285 0.19 0 pose: 0.38955733 -2.4695 0.0146023 0 -0.00470184 -0.00095107 0.00419122 0.99998 uwb: 0.0 856.01 1266.3 +imu_odom_: 1691062575.973127736 0.560243 0.0287304 9.78031 -0.04048 0.0255663 0.0308927 0.19 0 pose: 0.0 -2.4695 0.0146023 0 -0.00470184 -0.00095107 0.00419122 0.99998 uwb: 0.50001742 856.623 1265.72 +imu_odom_: 1691062575.998108775 0.373495 -0.430956 9.81862 -0.0681769 -0.00958738 0.0458064 0.19 0 pose: 0.48941033 -2.45825 0.0095923 0 -0.00319623 -0.00348485 0.00423791 0.99998 uwb: 0.0 856.623 1265.72 +imu_odom_: 1691062576.24111445 -0.0742203 -0.0335188 9.72764 -0.0671117 0.0308927 0.052198 0.19 0.02 pose: 0.0 -2.45825 0.0095923 0 -0.00319623 -0.00348485 0.00423791 0.99998 uwb: 0.49977537 857.127 1264.78 +imu_odom_: 1691062576.50098076 0.442927 -0.40462 9.79947 -0.0735032 0.00639159 0.0266316 0.19 0.02 pose: 0.33170980 -2.45582 0.011009 0 -0.00513335 -0.00136625 0.00438077 0.999976 uwb: 0.0 857.127 1264.78 +imu_odom_: 1691062576.67154282 0.380678 -0.169988 10.4196 -0.0468716 -0.00426106 0.0330232 0.22 0 pose: 0.0 -2.45582 0.011009 0 -0.00513335 -0.00136625 0.00438077 0.999976 uwb: 0.0 857.127 1264.78 +imu_odom_: 1691062576.83097866 0.486023 -0.246603 9.56962 -0.0745685 0.00319579 0.0468716 0.22 0 pose: 0.50867932 -2.44214 0.00741937 0 -0.00623675 -0.0003607640.00430031 0.999971 uwb: 0.49973169 857.406 1264.27 +imu_odom_: 1691062576.100094577 0.356736 -0.423774 9.98622 -0.0340885 0.0117179 0.02024 0.22 0 pose: 0.0 -2.44214 0.00741937 0 -0.00623675 -0.0003607640.00430031 0.999971 uwb: 0.0 857.406 1264.27 +imu_odom_: 1691062576.125112367 0.141258 -0.414197 10.5919 -0.0660464 -0.0298274 0.072438 0.18 0 pose: 0.42927929 -2.43765 0.010047 0 -0.0056248 -0.0003593760.00416054 0.999975 uwb: 0.49889467 858.478 1263.93 +imu_odom_: 1691062576.142102661 0.902614 -0.356736 8.73644 -0.0340885 0.126766 0.0500674 0.18 0 pose: 0.8236604 -2.43351 0.0124615 0 -0.00591126 0.000323297 0.00430094 0.999973 uwb: 0.0 858.478 1263.93 +imu_odom_: 1691062576.166234146 0.993594 -0.481235 9.01417 -0.0543285 -0.00319579 0.0660464 0.18 0 pose: 0.0 -2.43351 0.0124615 0 -0.00591126 0.000323297 0.00430094 0.999973 uwb: 0.0 858.478 1263.93 +imu_odom_: 1691062576.193114957 0.390255 -0.009576819.44513 -0.0490022 0.04048 0.0266316 0.21 0 pose: 0.40809720 -2.43351 0.0124615 0 -0.00657186 0.000451561 0.00474589 0.999967 uwb: 0.50007291 858.487 1262.81 +imu_odom_: 1691062576.218284693 0.430956 -0.471658 9.48822 -0.0958738 0.0170442 0.072438 0.2 0 pose: 0.43974056 -2.41983 0.0088835 0 -0.00421125 -0.0003104830.00478163 0.99998 uwb: 0.0 858.487 1262.81 +imu_odom_: 1691062576.243088125 0.469264 -0.323217 9.50498 -0.0596548 -0.00319579 0.0415453 0.2 0 pose: 0.0 -2.41983 0.0088835 0 -0.00421125 -0.0003104830.00478163 0.99998 uwb: 0.50126865 859.474 1262.62 +imu_odom_: 1691062576.264141309 0.442927 -0.102951 10.2999 -0.0809601 0.00319579 0.0585895 0.22 -0.02 pose: 0.32175604 -2.4112 0.0139388 0 -0.00694221 -0.00100368 0.0051953 0.999962 uwb: 0.0 859.474 1262.62 +imu_odom_: 1691062576.278151879 0.428562 -0.301669 9.58878 -0.0447411 0 0.0276969 0.22 -0.02 pose: 0.0 -2.4112 0.0139388 0 -0.00694221 -0.00100368 0.0051953 0.999962 uwb: 0.50122782 859.117 1261.09 +imu_odom_: 1691062576.303223623 0.299275 -0.555455 9.03572 -0.0788296 0.00532632 0.0500674 0.17 0.02 pose: 0.52861318 -2.40385 0.0120226 0 -0.00457168 -0.00100107 0.00531845 0.999975 uwb: 0.0 859.117 1261.09 +imu_odom_: 1691062576.320188252 0.304064 -0.160412 9.9527 -0.0596548 -0.0234358 0.0394148 0.17 0.02 pose: 0.6938498 -2.39751 0.0103731 0 -0.00528367 -0.0006771720.00535655 0.999971 uwb: 0.0 859.117 1261.09 +imu_odom_: 1691062576.346187716 0.497994 -0.181959 10.228 -0.0628506 -0.0255663 0.0532632 0.18 0.02 pose: 0.0 -2.39751 0.0103731 0 -0.00528367 -0.0006771720.00535655 0.999971 uwb: 0.49892675 859.077 1260.08 +imu_odom_: 1691062576.371115680 1.32399 -0.0047884 10.386 -0.0468716 -0.0223706 0.0298274 0.24 0 pose: 0.43163285 -2.39751 0.0103731 0 -0.00503962 0.000190729 0.005515 0.999972 uwb: 0.49832888 859.243 1259.23 +imu_odom_: 1691062576.396097598 0.713472 -0.208296 9.72046 -0.0681769 -0.00639159 0.0511327 0.18 0.02 pose: 0.42862018 -2.38889 0.0154379 0 -0.00279094 -0.00367344 0.00550371 0.999974 uwb: 0.0 859.243 1259.23 +imu_odom_: 1691062576.420089385 0.289698 -0.124498 9.70131 -0.0340885 -0.00958738 0.0319579 0.18 0 pose: 0.0 -2.38889 0.0154379 0 -0.00279094 -0.00367344 0.00550371 0.999974 uwb: 0.0 859.243 1259.23 +imu_odom_: 1691062576.437089595 0.220267 -0.35913 10.082 -0.0617853 -0.00319579 0.0468716 0.18 0 pose: 0.31987202 -2.3752 0.0118811 0 -0.00190239 -0.00553175 0.00561148 0.999967 uwb: 0.49995042 859.31 1258.57 +imu_odom_: 1691062576.462072679 0.823605 -0.335188 9.54329 -0.0511327 -0.00319579 0.0266316 0.18 0 pose: 0.0 -2.3752 0.0118811 0 -0.00190239 -0.00553175 0.00561148 0.999967 uwb: 0.0 859.31 1258.57 +imu_odom_: 1691062576.487211502 0.658405 -0.555455 9.50737 -0.0671117 -0.0276969 0.0617853 0.18 0 pose: 0.41981253 -2.3752 0.0118811 0 -0.00183082 -0.00333955 0.00555978 0.999977 uwb: 0.50066203 860.369 1258.23 +imu_odom_: 1691062576.501182116 0.720655 -0.201113 9.94312 -0.0553937 -0.0255663 0.0394148 0.18 0 pose: 0.0 -2.3752 0.0118811 0 -0.00183082 -0.00333955 0.00555978 0.999977 uwb: 0.0 860.369 1258.23 +imu_odom_: 1691062576.526053792 0.222661 -0.251391 10.2137 -0.0372843 -0.00532632 0.0436758 0.18 0 pose: 0.48129397 -2.36152 0.00832385 0 -0.00424426 -0.00707956 0.00573085 0.99995 uwb: 0.50099451 859.852 1257.04 +imu_odom_: 1691062576.552341108 1.01514 -0.112527 9.91439 -0.0223706 -0.0170442 0.0266316 0.23 0 pose: 0.32840260 -2.35536 0.0119432 0 -0.00334201 -0.00540176 0.00578498 0.999963 uwb: 0.0 859.852 1257.04 +imu_odom_: 1691062576.578077509 0.543484 -0.3304 9.73004 -0.0458064 -0.00106526 0.0532632 0.23 0 pose: 0.0 -2.35536 0.0119432 0 -0.00334201 -0.00540176 0.00578498 0.999963 uwb: 0.50011374 858.731 1255.37 +imu_odom_: 1691062576.605206217 0.418985 -0.0742203 9.64863 -0.0415453 0.00958738 0.0383495 0.23 -0.02 pose: 0.7188437 -2.3529 0.0133925 0 -0.0029922 -0.00612859 0.00573569 0.99996 uwb: 0.0 858.731 1255.37 +imu_odom_: 1691062576.630098017 0.191536 -0.229843 9.85214 -0.0703074 -0.0127832 0.0479369 0.23 -0.02 pose: 0.0 -2.3529 0.0133925 0 -0.0029922 -0.00612859 0.00573569 0.99996 uwb: 0.50007291 859.387 1254.71 +imu_odom_: 1691062576.647093561 0.25618 -0.0814029 10.0078 -0.0426106 0.00852212 0.0415453 0.21 0 pose: 0.52841486 -2.3529 0.0133925 0 -0.003722 -0.00709511 0.00579485 0.999951 uwb: 0.0 859.387 1254.71 +imu_odom_: 1691062576.671100805 0.713472 -0.308852 10.0365 -0.0809601 -0.00958738 0.056459 0.21 0 pose: 0.0 -2.3529 0.0133925 0 -0.003722 -0.00709511 0.00579485 0.999951 uwb: 0.49970543 857.509 1252.88 +imu_odom_: 1691062576.698065318 0.572214 -0.251391 10.2352 -0.0500674 0 0.036219 0.21 0 pose: 0.50972924 -2.33921 0.00984227 0 -0.00148216 -0.00303802 0.00588869 0.999977 uwb: 0.0 857.509 1252.88 +imu_odom_: 1691062576.722125350 0.802058 -0.339977 9.53132 -0.0628506 0.0372843 0.04048 0.21 0 pose: 0.0 -2.33921 0.00984227 0 -0.00148216 -0.00303802 0.00588869 0.999977 uwb: 0.49878677 858.609 1252.47 +imu_odom_: 1691062576.740042488 0.234632 -0.0095768110.1418 -0.0191748 -0.0287621 0.0308927 0.2 0 pose: 0.41995252 -2.33059 0.014913 0 -0.00174738 -0.00533565 0.00608476 0.999966 uwb: 0.0 858.609 1252.47 +imu_odom_: 1691062576.763115306 0.0790087 -0.363919 9.7875 -0.0660464 -0.0468716 0.0639159 0.2 0 pose: 0.0 -2.33059 0.014913 0 -0.00174738 -0.00533565 0.00608476 0.999966 uwb: 0.0 858.609 1252.47 +imu_odom_: 1691062576.787256998 0.622492 -0.244209 9.71088 -0.052198 -0.0287621 0.0426106 0.23 0 pose: 0.51084040 -2.3169 0.0113702 0 -0.00195454 -0.0084246 0.00602473 0.999944 uwb: 0.50009624 857.43 1250.97 +imu_odom_: 1691062576.804186338 0.715866 0.136469 10.2208 -0.100135 -0.0500674 0.0617853 0.23 0 pose: 0.0 -2.3169 0.0113702 0 -0.00195454 -0.0084246 0.00602473 0.999944 uwb: 0.0 857.43 1250.97 +imu_odom_: 1691062576.830203009 0.342371 -0.0885855 9.89524 -0.127832 -0.02024 0.072438 0.18 -0.02 pose: 0.40975082 -2.30828 0.0164453 0 -0.00183646 -0.00690591 0.00627868 0.999955 uwb: 0.50129198 857.176 1249.38 +imu_odom_: 1691062576.855060978 0.282516 -0.368707 10.1131 -0.0660464 -0.0245011 0.0223706 0.18 -0.02 pose: 0.42096160 -2.3032 0.00783116 0 -0.000356753-0.0089381 0.00661147 0.999938 uwb: 0.0 857.176 1249.38 +imu_odom_: 1691062576.878025596 0.636858 -0.0454898 9.84256 -0.0458064 0.0276969 0.0330232 0.18 0 pose: 0.41853805 -2.29459 0.0129144 0 -0.00151098 -0.00566157 0.00667258 0.999961 uwb: 0.49931463 856.876 1248.4 +imu_odom_: 1691062576.895101633 0.694318 -0.392649 9.80904 -0.0671117 -0.0500674 0.0436758 0.18 0 pose: 0.0 -2.29459 0.0129144 0 -0.00151098 -0.00566157 0.00667258 0.999961 uwb: 0.0 856.876 1248.4 +imu_odom_: 1691062576.920101633 0.572214 -0.0981623 9.81623 -0.0458064 -0.0809601 0.0372843 0.18 -0.02 pose: 0.5994156 -2.29459 0.0129144 0 -0.000971445-0.00587868 0.00664957 0.99996 uwb: 0.0 856.876 1248.4 +imu_odom_: 1691062576.945095509 0.426168 -0.134075 10.4818 -0.0671117 -0.0756338 0.0479369 0.18 -0.02 pose: 0.0 -2.29459 0.0129144 0 -0.000971445-0.00587868 0.00664957 0.99996 uwb: 0.49920090 857.095 1247.52 +imu_odom_: 1691062576.970245122 -0.0143652 -0.407014 10.5273 -0.0468716 0.00639159 0.0234358 0.25 0.02 pose: 0.40996371 -2.28598 0.0179981 0 -8.9105e-05 -0.00835314 0.00661425 0.999943 uwb: 0.49934380 857.018 1246.65 +imu_odom_: 1691062576.996030810 0.696713 -0.146046 10.1945 -0.0330232 -0.036219 0.0308927 0.19 -0.02 pose: 0.50011958 -2.27228 0.0144695 0 0.00204214 -0.00700521 0.00661639 0.999951 uwb: 0.0 857.018 1246.65 +imu_odom_: 1691062577.13015273 0.557849 -0.366313 9.74919 -0.0479369 -0.00852212 0.0447411 0.19 -0.02 pose: 0.0 -2.27228 0.0144695 0 0.00204214 -0.00700521 0.00661639 0.999951 uwb: 0.0 857.018 1246.65 +imu_odom_: 1691062577.38091980 0.356736 -0.488417 10.3717 -0.0596548 0 0.04048 0.18 -0.02 pose: 0.60951810 -2.26472 0.0125183 0 0.000632582 -0.00818122 0.00641963 0.999946 uwb: 0.50013419 856.076 1245.31 +imu_odom_: 1691062577.55014907 0.603339 -0.0287304 9.67257 -0.036219 0.0287621 0.0308927 0.18 -0.02 pose: 0.8076785 -2.25859 0.0109357 0 -3.51082e-05-0.00768307 0.00642818 0.99995 uwb: 0.0 856.076 1245.31 +imu_odom_: 1691062577.80015203 0.21069 -0.325611 9.91678 -0.056459 -0.00319579 0.0415453 0.18 0.02 pose: 0.0 -2.25859 0.0109357 0 -3.51082e-05-0.00768307 0.00642818 0.99995 uwb: 0.49979301 856.945 1244.81 +imu_odom_: 1691062577.105161029 0.11971 -0.342371 9.42358 -0.0756338 -0.0106526 0.0500674 0.18 0.02 pose: 0.41940139 -2.25859 0.0109357 0 4.69079e-05 -0.00613511 0.00637139 0.999961 uwb: 0.0 856.945 1244.81 +imu_odom_: 1691062577.119071567 0.347159 -0.560243 9.79228 -0.0703074 -0.00639159 0.0500674 0.18 0.02 pose: 0.0 -2.25859 0.0109357 0 4.69079e-05 -0.00613511 0.00637139 0.999961 uwb: 0.0 856.945 1244.81 +imu_odom_: 1691062577.142229840 0.397437 -0.344765 9.64624 -0.0426106 -0.00106526 0.0330232 0.19 0 pose: 0.48008664 -2.24997 0.0160147 0 -0.00218307 -0.00205222 0.00655941 0.999974 uwb: 0.50322567 856.238 1243.57 +imu_odom_: 1691062577.167010819 0.371101 -0.593762 9.46188 -0.0639159 0.0138484 0.0447411 0.23 0 pose: 0.0 -2.24997 0.0160147 0 -0.00218307 -0.00205222 0.00655941 0.999974 uwb: 0.0 856.238 1243.57 +imu_odom_: 1691062577.192171228 0.557849 -0.225055 9.96467 -0.0511327 -0.02024 0.0532632 0.23 0 pose: 0.31188979 -2.23909 0.0108279 0 -0.00490151 -0.0006788420.00653471 0.999966 uwb: 0.49781567 854.918 1241.94 +imu_odom_: 1691062577.217051658 0.397437 -0.318429 9.84496 -0.0447411 -0.00213053 0.0415453 0.18 -0.02 pose: 0.7818680 -2.23628 0.0124846 0 -0.00570885 -0.0004946690.00655557 0.999962 uwb: 0.0 854.918 1241.94 +imu_odom_: 1691062577.242153446 0.447716 -0.217872 9.72764 -0.0607201 -0.00426106 0.056459 0.18 -0.02 pose: 0.0 -2.23628 0.0124846 0 -0.00570885 -0.0004946690.00655557 0.999962 uwb: 0.49884809 855.193 1241 +imu_odom_: 1691062577.259168533 0.426168 -0.380678 10.1347 -0.0628506 0.0340885 0.0447411 0.2 0.02 pose: 0.50052796 -2.22767 0.017568 0 -0.00555618 -0.00137415 0.00677243 0.999961 uwb: 0.0 855.193 1241 +imu_odom_: 1691062577.284030298 0.481235 -0.114922 9.78989 -0.076699 0.0149137 0.0681769 0.2 0.02 pose: 0.0 -2.22767 0.017568 0 -0.00555618 -0.00137415 0.00677243 0.999961 uwb: 0.49995634 854.926 1239.55 +imu_odom_: 1691062577.309011637 0.505177 -0.411803 10.0173 -0.0777643 0.0319579 0.0426106 0.2 -0.02 pose: 0.49211112 -2.22258 0.00895797 0 -0.00378268 -0.0007578640.00702324 0.999968 uwb: 0.0 854.926 1239.55 +imu_odom_: 1691062577.333005469 0.483629 -0.217872 9.8689 -0.0788296 0.0234358 0.052198 0.2 -0.02 pose: 0.0 -2.22258 0.00895797 0 -0.00378268 -0.0007578640.00702324 0.999968 uwb: 0.50067087 854.998 1238.49 +imu_odom_: 1691062577.350286535 0 -0.246603 9.71806 -0.04048 -0.0106526 0.0394148 0.22 0 pose: 0.41831647 -2.21397 0.0140482 0 -0.00341634 -0.00141301 0.00740767 0.999966 uwb: 0.0 854.998 1238.49 +imu_odom_: 1691062577.366123089 0.344765 -0.0670376 10.4962 -0.0436758 0.00639159 0.0351537 0.22 0 pose: 0.0 -2.21397 0.0140482 0 -0.00341634 -0.00141301 0.00740767 0.999966 uwb: 0.0 854.998 1238.49 +imu_odom_: 1691062577.384067937 0.447716 -0.426168 9.96467 -0.0532632 -0.052198 0.0447411 0.25 0 pose: 0.48862014 -2.20027 0.0105421 0 -0.00316157 -0.00190419 0.00757476 0.999965 uwb: 0.50180244 855.329 1237.94 +imu_odom_: 1691062577.407115677 0.339977 -0.28491 9.82341 -0.0511327 -0.0213053 0.0351537 0.25 0 pose: 0.0 -2.20027 0.0105421 0 -0.00316157 -0.00190419 0.00757476 0.999965 uwb: 0.0 855.329 1237.94 +imu_odom_: 1691062577.431063138 0.00957681 -0.411803 9.92875 -0.0660464 -0.0181095 0.0500674 0.23 0 pose: 0.34121458 -2.20027 0.0105421 0 -0.00221692 -0.00063703 0.00756341 0.999969 uwb: 0.49944304 854.979 1236.65 +imu_odom_: 1691062577.456983862 0.35913 -0.332794 9.84735 -0.0415453 -0.0426106 0.0372843 0.23 0 pose: 0.0 -2.20027 0.0105421 0 -0.00221692 -0.00063703 0.00756341 0.999969 uwb: 0.0 854.979 1236.65 +imu_odom_: 1691062577.473130725 0.73502 -0.150835 9.79468 -0.0639159 -0.0266316 0.0532632 0.18 -0.02 pose: 0.40881763 -2.19167 0.0156416 0 -0.00368375 0.00169426 0.00759039 0.999963 uwb: 0.49784776 854.116 1235.29 +imu_odom_: 1691062577.490155728 0.581791 -0.366313 9.77074 -0.0553937 0.0127832 0.0330232 0.18 -0.02 pose: 0.0 -2.19167 0.0156416 0 -0.00368375 0.00169426 0.00759039 0.999963 uwb: 0.0 854.116 1235.29 +imu_odom_: 1691062577.514011030 0.414197 -0.373495 10.0461 -0.0639159 0.00532632 0.0468716 0.18 0 pose: 0.48035787 -2.17797 0.0121396 0 -0.00619353 0.000844844 0.00767806 0.999951 uwb: 0.0 854.116 1235.29 +imu_odom_: 1691062577.538040151 0.905008 -0.347159 9.5385 -0.0447411 -0.0117179 0.0287621 0.18 0 pose: 0.0 -2.17797 0.0121396 0 -0.00619353 0.000844844 0.00767806 0.999951 uwb: 0.50066211 854.445 1234.3 +imu_odom_: 1691062577.562983577 0.672771 -0.59855 9.59835 -0.076699 -0.0308927 0.0681769 0.25 0 pose: 0.35108089 -2.16937 0.0172411 0 -0.00686168 -0.00124404 0.00770902 0.999946 uwb: 0.0 854.445 1234.3 +imu_odom_: 1691062577.576085094 0.703895 -0.213084 9.88087 -0.052198 -0.0298274 0.0372843 0.25 0 pose: 0.0 -2.16937 0.0172411 0 -0.00686168 -0.00124404 0.00770902 0.999946 uwb: 0.49992134 854.894 1233.58 +imu_odom_: 1691062577.599977143 0.198719 -0.328006 9.74201 -0.0458064 0.0127832 0.04048 0.17 0.02 pose: 0.46889043 -2.16427 0.00864041 0 -0.0086295 -0.00345027 0.00772227 0.999927 uwb: 0.0 854.894 1233.58 +imu_odom_: 1691062577.626060313 0.730232 -0.304064 10.3358 -0.00745685 -0.0298274 0.0223706 0.17 0.02 pose: 0.0 -2.16427 0.00864041 0 -0.0086295 -0.00345027 0.00772227 0.999927 uwb: 0.49956262 854.43 1232.51 +imu_odom_: 1691062577.650998489 0.488417 -0.363919 9.84017 -0.0490022 -0.0213053 0.0607201 0.18 0.02 pose: 0.38974412 -2.15567 0.0137432 0 -0.00899007 -0.00518109 0.00795604 0.999915 uwb: 0.0 854.43 1232.51 +imu_odom_: 1691062577.667976245 0.481235 -0.158017 9.93354 -0.0479369 0.00532632 0.0447411 0.18 0.02 pose: 0.0 -2.15567 0.0137432 0 -0.00899007 -0.00518109 0.00795604 0.999915 uwb: 0.0 854.43 1232.51 +imu_odom_: 1691062577.692035989 0.56982 -0.220267 9.99819 -0.072438 0.0191748 0.0553937 0.18 -0.02 pose: 0.50987515 -2.14707 0.0188489 0 -0.00734212 -0.005485 0.00783439 0.999927 uwb: 0.49978427 854.716 1231.6 +imu_odom_: 1691062577.716981165 0.888249 -0.169988 10.082 -0.0575243 -0.00745685 0.0394148 0.18 -0.02 pose: 0.0 -2.14707 0.0188489 0 -0.00734212 -0.005485 0.00783439 0.999927 uwb: 0.0 854.716 1231.6 +imu_odom_: 1691062577.739968826 0.488417 -0.397437 9.59596 -0.092678 -0.0191748 0.0681769 0.18 0 pose: 0.41020002 -2.14196 0.0102501 0 -0.00539744 -0.00437864 0.00811253 0.999943 uwb: 0.50251989 852.746 1229.38 +imu_odom_: 1691062577.764015446 -0.0646434 -0.457293 9.34457 -0.0532632 0.0330232 0.0255663 0.18 0 pose: 0.0 -2.14196 0.0102501 0 -0.00539744 -0.00437864 0.00811253 0.999943 uwb: 0.0 852.746 1229.38 +imu_odom_: 1691062577.782097950 0.73502 -0.0837971 10.2999 -0.0585895 -0.0266316 0.0479369 0.19 0.02 pose: 0.47959376 -2.13337 0.0153594 0 -0.00423108 -0.00731493 0.00831526 0.99993 uwb: 0.49619413 852.768 1228.46 +imu_odom_: 1691062577.805090861 1.1133 -0.270545 9.9934 -0.0298274 -0.0245011 0.0255663 0.19 0.02 pose: 0.0 -2.13337 0.0153594 0 -0.00423108 -0.00731493 0.00831526 0.99993 uwb: 0.0 852.768 1228.46 +imu_odom_: 1691062577.831025584 0.452504 -0.42138 9.75398 -0.0628506 -0.00213053 0.0681769 0.23 0 pose: 0.48008372 -2.11966 0.0118784 0 -0.00591893 -0.00457857 0.00843001 0.999936 uwb: 0.50296027 853.223 1228.2 +imu_odom_: 1691062577.856107831 0.804452 0.0742203 10.137 -0.0596548 -0.0223706 0.0458064 0.23 0 pose: 0.0 -2.11966 0.0118784 0 -0.00591893 -0.00457857 0.00843001 0.999936 uwb: 0.0 853.223 1228.2 +imu_odom_: 1691062577.874149213 0.308852 -0.572214 9.74679 -0.0553937 0.0340885 0.0596548 0.19 0.02 pose: 0.41055583 -2.11107 0.0169925 0 -0.00533097 -0.00737401 0.00841478 0.999923 uwb: 0.49956553 852.709 1227.25 +imu_odom_: 1691062577.898149754 0.272939 -0.42138 9.87369 -0.0330232 0.036219 0.0298274 0.19 0.02 pose: 0.0 -2.11107 0.0169925 0 -0.00533097 -0.00737401 0.00841478 0.999923 uwb: 0.0 852.709 1227.25 +imu_odom_: 1691062577.921245615 0.488417 -0.387861 9.92157 -0.0777643 -0.00958738 0.0532632 0.22 0 pose: 0.50979057 -2.09736 0.0135227 0 -0.00528826 -0.00707226 0.00883041 0.999922 uwb: 0.49983385 852.432 1225.94 +imu_odom_: 1691062577.948025813 0.509965 -0.186748 9.82102 -0.0319579 -0.0213053 0.0308927 0.22 0 pose: 0.41979510 -2.09736 0.0135227 0 -0.00740175 -0.00379367 0.00889448 0.999926 uwb: 0.0 852.432 1225.94 +imu_odom_: 1691062577.964004689 0.0837971 -0.258574 9.9934 -0.0575243 -0.00106526 0.0532632 0.19 0.05 pose: 0.42019757 -2.08501 0.012353 0 -0.0059845 -0.0049431 0.00887207 0.999931 uwb: 0.0 852.432 1225.94 +imu_odom_: 1691062577.988095640 0.351948 -0.0814029 9.94073 -0.0372843 0.0213053 0.0426106 0.19 0.05 pose: 0.0 -2.08501 0.012353 0 -0.0059845 -0.0049431 0.00887207 0.999931 uwb: 0.49964136 852.713 1225.08 +imu_odom_: 1691062578.13179639 0.383072 -0.399832 9.80186 -0.0756338 -0.00426106 0.0607201 0.25 0.02 pose: 0.6938791 -2.08365 0.0100579 0 -0.00587497 -0.0042475 0.00892298 0.999934 uwb: 0.0 852.713 1225.08 +imu_odom_: 1691062578.39095118 0.368707 -0.186748 9.71806 -0.0447411 0.00639159 0.0394148 0.25 0.02 pose: 0.0 -2.08365 0.0100579 0 -0.00587497 -0.0042475 0.00892298 0.999934 uwb: 0.50117253 851.72 1223.18 +imu_odom_: 1691062578.65154377 0.282516 -0.466869 10.1394 -0.0575243 -0.0298274 0.0458064 0.21 0 pose: 0.40995796 -2.07506 0.0151817 0 -0.00413569 -0.00165075 0.00910909 0.999949 uwb: 0.0 851.72 1223.18 +imu_odom_: 1691062578.81143755 0.749385 0.205901 9.87129 -0.0319579 -0.00745685 0.0394148 0.21 0 pose: 0.0 -2.07506 0.0151817 0 -0.00413569 -0.00165075 0.00910909 0.999949 uwb: 0.49722955 851.244 1222.21 +imu_odom_: 1691062578.107062733 0.351948 -0.11971 10.1155 -0.056459 0.0170442 0.0575243 0.18 -0.02 pose: 0.50144671 -2.06647 0.020311 0 -0.00390828 0.000406817 0.00931982 0.999949 uwb: 0.0 851.244 1222.21 +imu_odom_: 1691062578.127989059 0.864307 -0.217872 10.0892 -0.0383495 -0.00319579 0.0351537 0.18 -0.02 pose: 0.26890153 -2.06134 0.0117269 0 -0.00480913 0.000710161 0.00938059 0.999944 uwb: 0.50145255 851.111 1221.16 +imu_odom_: 1691062578.140926675 0.469264 -0.253785 9.85214 -0.0479369 0.04048 0.056459 0.18 -0.02 pose: 0.39962508 -2.05276 0.0168576 0 -0.00146312 0.000605128 0.00959896 0.999953 uwb: 0.0 851.111 1221.16 +imu_odom_: 1691062578.165098123 0.117316 -0.0383072 9.80426 -0.0319579 0.0426106 0.0223706 0.18 -0.02 pose: 0.0 -2.05276 0.0168576 0 -0.00146312 0.000605128 0.00959896 0.999953 uwb: 0.0 851.111 1221.16 +imu_odom_: 1691062578.182141211 0.260968 -0.222661 9.59835 -0.0735032 -0.0394148 0.052198 0.23 0 pose: 0.52140391 -2.04355 0.0145421 0 1.13917e-05 0.000776007 0.00946343 0.999955 uwb: 0.49889776 850.845 1219.9 +imu_odom_: 1691062578.208054356 0.225055 -0.550666 9.51695 -0.0479369 0.0138484 0.0223706 0.23 0 pose: 0.0 -2.04355 0.0145421 0 1.13917e-05 0.000776007 0.00946343 0.999955 uwb: 0.0 850.845 1219.9 +imu_odom_: 1691062578.232935957 0.308852 -0.42138 10.0676 -0.0575243 0.00213053 0.0607201 0.21 0.02 pose: 0.7890427 -2.03905 0.0134097 0 -0.0001181930.00142386 0.00951319 0.999954 uwb: 0.50084010 850.945 1219.34 +imu_odom_: 1691062578.256002950 0.368707 -0.289698 10.2472 -0.0287621 0.0223706 0.0276969 0.18 0.02 pose: 0.0 -2.03905 0.0134097 0 -0.0001181930.00142386 0.00951319 0.999954 uwb: 0.0 850.945 1219.34 +imu_odom_: 1691062578.279924459 0.397437 -0.301669 10.0365 -0.0628506 0.00106526 0.0649811 0.18 0 pose: 0.66976609 -2.03046 0.0185416 0 -0.00460412 0.00334781 0.00955393 0.999938 uwb: 0.49995351 850.34 1218.58 +imu_odom_: 1691062578.297054456 0.593762 -0.363919 9.46907 -0.0490022 0.0436758 0.0426106 0.18 0 pose: 0.0 -2.03046 0.0185416 0 -0.00460412 0.00334781 0.00955393 0.999938 uwb: 0.0 850.34 1218.58 +imu_odom_: 1691062578.321097581 0.299275 -0.280122 9.38527 -0.0585895 0.0298274 0.0596548 0.18 -0.02 pose: 0.57089297 -2.02083 0.0126481 0 -0.00505921 -0.00116617 0.00976346 0.999939 uwb: 0.0 850.34 1218.58 +imu_odom_: 1691062578.346937816 0.246603 -0.0837971 9.36133 -0.0490022 0.04048 0.0319579 0.18 -0.02 pose: 0.8176821 -2.01675 0.0150952 0 -0.00489906 -0.0002268970.00984866 0.999939 uwb: 0.0 850.34 1218.58 +imu_odom_: 1691062578.359909846 0.521936 -0.0646434 10.0102 -0.0745685 0.0287621 0.0692422 0.18 0.02 pose: 0.0 -2.01675 0.0150952 0 -0.00489906 -0.0002268970.00984866 0.999939 uwb: 0.0 850.34 1218.58 +imu_odom_: 1691062578.383982718 0.301669 -0.447716 9.91439 -0.0788296 0.0319579 0.0426106 0.18 0.02 pose: 0.47709154 -2.00817 0.020236 0 -0.00191661 0.00318821 0.010012 0.999943 uwb: 0.99987784 849.033 1216.82 +imu_odom_: 1691062578.408957645 0.56982 -0.35913 10.0341 -0.076699 -0.00958738 0.0575243 0.23 0 pose: 0.0 -2.00817 0.020236 0 -0.00191661 0.00318821 0.010012 0.999943 uwb: 0.0 849.033 1216.82 +imu_odom_: 1691062578.422922431 0.347159 -0.459687 9.53132 -0.056459 0.00319579 0.04048 0.23 0 pose: 0.38974127 -2.00303 0.0116594 0 -0.0043985 0.00296733 0.0102143 0.999934 uwb: 0.50083719 848.954 1215.72 +imu_odom_: 1691062578.446929975 0.40462 -0.299275 9.92157 -0.0553937 -0.0415453 0.052198 0.18 0.02 pose: 0.0 -2.00303 0.0116594 0 -0.0043985 0.00296733 0.0102143 0.999934 uwb: 0.0 848.954 1215.72 +imu_odom_: 1691062578.472924489 0.691924 -0.201113 10.3789 -0.0543285 -0.0223706 0.04048 0.18 0.02 pose: 0.39075035 -1.99445 0.0168042 0 -0.00575274 0.000921809 0.0104148 0.999929 uwb: 0.49963270 849.12 1214.69 +imu_odom_: 1691062578.485922767 0.646434 -0.134075 9.86411 -0.0458064 -0.036219 0.0415453 0.18 0 pose: 0.0 -1.99445 0.0168042 0 -0.00575274 0.000921809 0.0104148 0.999929 uwb: 0.0 849.12 1214.69 +imu_odom_: 1691062578.509920687 0.471658 -0.0742203 9.71328 -0.0639159 0.00426106 0.0394148 0.18 0 pose: 0.47938095 -1.98588 0.0219531 0 -0.00314638 -0.0036114 0.0105177 0.999933 uwb: 0.0 849.12 1214.69 +imu_odom_: 1691062578.535981696 0.380678 -0.134075 9.58399 -0.0671117 -0.0106526 0.0532632 0.21 0.02 pose: 0.0 -1.98588 0.0219531 0 -0.00314638 -0.0036114 0.0105177 0.999933 uwb: 0.50000600 849.385 1213.52 +imu_odom_: 1691062578.560970914 0.411803 -0.342371 9.59835 -0.0671117 0.00745685 0.0383495 0.21 0.02 pose: 0.39000666 -1.98073 0.0133814 0 0.000110709 -0.00340204 0.0105622 0.999938 uwb: 0.0 849.385 1213.52 +imu_odom_: 1691062578.579030963 0.610521 -0.244209 10.2232 -0.036219 -0.0234358 0.0383495 0.2 0 pose: 0.0 -1.98073 0.0133814 0 0.000110709 -0.00340204 0.0105622 0.999938 uwb: 0.50056304 849.558 1212.48 +imu_odom_: 1691062578.602900268 0.624887 -0.277727 9.86411 -0.056459 0.00852212 0.0383495 0.2 0 pose: 0.51125179 -1.97216 0.0185324 0 -0.00131541 -0.00236161 0.0106642 0.999939 uwb: 0.0 849.558 1212.48 +imu_odom_: 1691062578.625910390 0.727837 -0.265756 10.0389 -0.0468716 -0.0266316 0.0543285 0.18 0 pose: 0.0 -1.97216 0.0185324 0 -0.00131541 -0.00236161 0.0106642 0.999939 uwb: 0.49864986 849.94 1211.94 +imu_odom_: 1691062578.650920898 0.895431 -0.107739 10.1538 -0.0543285 -0.0490022 0.0394148 0.18 0 pose: 0.17978390 -1.97216 0.0185324 0 -0.00140516 -0.00418363 0.0106516 0.999934 uwb: 0.0 849.94 1211.94 +imu_odom_: 1691062578.673967184 0.351948 -0.289698 10.2208 -0.0372843 0.00106526 0.0415453 0.25 0 pose: 0.46891092 -1.95844 0.0151147 0 -0.00147852 -0.00909217 0.0108037 0.999899 uwb: 0.49879860 850.26 1211.1 +imu_odom_: 1691062578.686910341 0.47884 -0.25618 10.2304 -0.0415453 -0.0245011 0.0372843 0.25 0 pose: 0.0 -1.95844 0.0151147 0 -0.00147852 -0.00909217 0.0108037 0.999899 uwb: 0.0 850.26 1211.1 +imu_odom_: 1691062578.703946137 0.610521 -0.361524 9.4571 -0.0330232 0.0372843 0.0287621 0.19 0 pose: 0.52987326 -1.94987 0.0202701 0 -0.00120732 -0.00756534 0.0108163 0.999912 uwb: 0.0 850.26 1211.1 +imu_odom_: 1691062578.730125554 0.593762 -0.385466 9.81383 -0.0585895 0.0287621 0.0543285 0.19 0 pose: 0.0 -1.94987 0.0202701 0 -0.00120732 -0.00756534 0.0108163 0.999912 uwb: 0.50189585 849.752 1209.87 +imu_odom_: 1691062578.755929333 0.629675 -0.272939 10.082 -0.0340885 -0.0266316 0.0394148 0.23 0 pose: 0.8001543 -1.94987 0.0202701 0 -0.00181999 -0.00778619 0.0107783 0.99991 uwb: 0.0 849.752 1209.87 +imu_odom_: 1691062578.779915004 0.47884 -0.294487 9.80665 -0.0692422 -0.0436758 0.0458064 0.19 0 pose: 0.0 -1.94987 0.0202701 0 -0.00181999 -0.00778619 0.0107783 0.99991 uwb: 0.49870819 850.672 1209.74 +imu_odom_: 1691062578.803893967 0.462081 -0.282516 9.78271 -0.0735032 -0.0511327 0.0607201 0.21 0.02 pose: 0.69054280 -1.93614 0.0168562 0 -0.00339534 -0.0100814 0.0109517 0.999883 uwb: 0.0 850.672 1209.74 +imu_odom_: 1691062578.828905641 0.754174 -0.275333 10.1562 -0.0543285 -0.02024 0.0245011 0.21 0.02 pose: 0.23950674 -1.92758 0.0220148 0 -0.00373909 -0.00820075 0.011096 0.999898 uwb: 0.50098592 851.106 1208.75 +imu_odom_: 1691062578.851890390 0.497994 -0.189142 10.2879 -0.0468716 -0.0213053 0.0415453 0.25 0 pose: 0.24005503 -1.92242 0.0134493 0 -0.00373915 -0.00784233 0.0112066 0.999899 uwb: 0.0 851.106 1208.75 +imu_odom_: 1691062578.868884481 0.632069 -0.28491 9.71088 -0.0585895 0.0340885 0.0436758 0.25 0 pose: 0.0 -1.92242 0.0134493 0 -0.00373915 -0.00784233 0.0112066 0.999899 uwb: 0.0 851.106 1208.75 +imu_odom_: 1691062578.893874574 0.102951 -0.136469 9.91678 -0.0415453 0.0436758 0.056459 0.18 0 pose: 0.24064414 -1.91385 0.0186119 0 -0.00304387 -0.00922127 0.011076 0.999892 uwb: 0.49899983 850.819 1207.61 +imu_odom_: 1691062578.916977730 0.430956 -0.0646434 9.9934 -0.0628506 0.00852212 0.0458064 0.21 0 pose: 0.23918010 -1.91385 0.0186119 0 -0.00220585 -0.00879351 0.0111035 0.999897 uwb: 0.0 850.819 1207.61 +imu_odom_: 1691062578.943936711 0.730232 -0.414197 9.4164 -0.0884169 0.00745685 0.0596548 0.21 0 pose: 0.0 -1.91385 0.0186119 0 -0.00220585 -0.00879351 0.0111035 0.999897 uwb: 0.50179378 850.87 1206.4 +imu_odom_: 1691062578.959875926 0.426168 -0.442927 9.94073 -0.052198 0.0287621 0.0372843 0.2 0 pose: 0.41116835 -1.90529 0.0237737 0 -0.00119653 -0.00603672 0.0113529 0.999917 uwb: 0.0 850.87 1206.4 +imu_odom_: 1691062578.984884975 0.399832 0.023942 9.74201 -0.0617853 -0.0319579 0.0575243 0.2 0 pose: 0.0 -1.90529 0.0237737 0 -0.00119653 -0.00603672 0.0113529 0.999917 uwb: 0.49716831 850.005 1204.57 +imu_odom_: 1691062578.997979787 0.440533 -0.368707 9.44991 -0.0756338 -0.00106526 0.0500674 0.2 0 pose: 0.0 -1.90529 0.0237737 0 -0.00119653 -0.00603672 0.0113529 0.999917 uwb: 0.0 850.005 1204.57 +imu_odom_: 1691062579.21904799 0.577003 -0.059855 9.67976 -0.0351537 0.00426106 0.0276969 0.18 0 pose: 0.89933943 -1.89156 0.0203753 0 -0.00175965 -0.00514031 0.0119138 0.999914 uwb: 0.50019268 850.264 1203.47 +imu_odom_: 1691062579.44907342 0.466869 -0.184354 9.88805 -0.0596548 0.0245011 0.0394148 0.18 0 pose: 0.0 -1.89156 0.0203753 0 -0.00175965 -0.00514031 0.0119138 0.999914 uwb: 0.0 850.264 1203.47 +imu_odom_: 1691062579.71955279 -0.00718261-0.23942 9.87608 -0.0660464 0.0276969 0.0511327 0.23 0 pose: 0.38955758 -1.87783 0.0169924 0 0.00043334 -0.00481844 0.0117966 0.999919 uwb: 0.50041439 850.572 1203.05 +imu_odom_: 1691062579.88014654 0.248997 -0.306458 9.92157 -0.0607201 -0.0340885 0.0543285 0.23 0 pose: 0.0 -1.87783 0.0169924 0 0.00043334 -0.00481844 0.0117966 0.999919 uwb: 0.0 850.572 1203.05 +imu_odom_: 1691062579.104889466 0.294487 -0.136469 9.80665 -0.0415453 0.0266316 0.0245011 0.19 0 pose: 0.50175887 -1.86927 0.0221645 0 0.000299035 0.000308562 0.012004 0.999928 uwb: 0.0 850.572 1203.05 +imu_odom_: 1691062579.128915096 0.402226 -0.0646434 10.0916 -0.0649811 -0.0234358 0.0394148 0.19 0 pose: 0.0 -1.86927 0.0221645 0 0.000299035 0.000308562 0.012004 0.999928 uwb: 0.50021607 849.605 1201.04 +imu_odom_: 1691062579.146866365 0.275333 -0.430956 9.71567 -0.0298274 0.0351537 0.0223706 0.18 -0.02 pose: 0.33794245 -1.86927 0.0221645 0 0.00184984 0.00200172 0.0119373 0.999925 uwb: 0.0 849.605 1201.04 +imu_odom_: 1691062579.170847666 0.641646 -0.514753 9.83777 -0.072438 -0.00852212 0.0553937 0.18 -0.02 pose: 0.0 -1.86927 0.0221645 0 0.00184984 0.00200172 0.0119373 0.999925 uwb: 0.49992442 850.148 1200.68 +imu_odom_: 1691062579.196844517 0.869095 -0.347159 9.89763 -0.0468716 -0.0607201 0.0308927 0.18 0.02 pose: 0.41067553 -1.85554 0.018782 0 0.00105403 0.00177116 0.0118457 0.999928 uwb: 0.0 850.148 1200.68 +imu_odom_: 1691062579.209842214 0.531513 -0.416591 9.35175 -0.0490022 0.0191748 0.0532632 0.18 0.02 pose: 0.0 -1.85554 0.018782 0 0.00105403 0.00177116 0.0118457 0.999928 uwb: 0.0 850.148 1200.68 +imu_odom_: 1691062579.224858379 0.23942 -0.397437 9.95988 -0.0575243 0.0223706 0.0372843 0.17 0.02 pose: 0.54893228 -1.84698 0.023955 0 -0.00194777 -0.00294173 0.0119482 0.999922 uwb: 0.49918365 850.746 1200.24 +imu_odom_: 1691062579.250861938 0.0742203 -0.270545 9.30626 -0.0735032 -0.0234358 0.0511327 0.17 0.02 pose: 0.0 -1.84698 0.023955 0 -0.00194777 -0.00294173 0.0119482 0.999922 uwb: 0.0 850.746 1200.24 +imu_odom_: 1691062579.263957628 0.411803 -0.526724 9.78031 -0.0735032 0.00319579 0.0479369 0.18 0 pose: 0.8027500 -1.84698 0.023955 0 -0.00240344 -0.00216699 0.0119413 0.999923 uwb: 0.0 850.746 1200.24 +imu_odom_: 1691062579.286843221 0.617704 -0.390255 9.59357 -0.0500674 0.00958738 0.0319579 0.17 0 pose: 0.0 -1.84698 0.023955 0 -0.00240344 -0.00216699 0.0119413 0.999923 uwb: 0.49955696 850.182 1198.82 +imu_odom_: 1691062579.312855822 0.624887 -0.550666 9.52174 -0.0660464 0.0372843 0.04048 0.21 -0.02 pose: 0.68973507 -1.83325 0.0205759 0 -0.00526618 -0.00122808 0.012048 0.999913 uwb: 0.0 850.182 1198.82 +imu_odom_: 1691062579.333833189 0.605733 -0.280122 9.19852 -0.0458064 -0.00532632 0.0458064 0.21 -0.02 pose: 0.0 -1.83325 0.0205759 0 -0.00526618 -0.00122808 0.012048 0.999913 uwb: 0.50062437 850.666 1198.18 +imu_odom_: 1691062579.346842552 0.497994 -0.366313 9.67018 -0.0660464 0.00958738 0.0607201 0.18 0.02 pose: 0.0 -1.83325 0.0205759 0 -0.00526618 -0.00122808 0.012048 0.999913 uwb: 0.0 850.666 1198.18 +imu_odom_: 1691062579.363843645 0.61531 -0.191536 9.94312 -0.0490022 0.0149137 0.0383495 0.18 0.02 pose: 0.32005301 -1.83325 0.0205759 0 -0.00710909 -0.00294431 0.0120641 0.999898 uwb: 0.0 850.666 1198.18 +imu_odom_: 1691062579.385965715 0.42138 -0.296881 9.61511 -0.0553937 -0.0415453 0.052198 0.18 -0.02 pose: 0.44995123 -1.81952 0.0171974 0 -0.00618944 -0.00560033 0.0122116 0.999891 uwb: 0.50059812 851.652 1197.94 +imu_odom_: 1691062579.410856361 0.634463 -0.280122 10.0724 -0.0447411 -0.04048 0.0415453 0.18 -0.02 pose: 0.7034453 -1.81952 0.0171974 0 -0.00592246 -0.00507989 0.0122594 0.999894 uwb: 0.0 851.652 1197.94 +imu_odom_: 1691062579.435883205 0.622492 -0.299275 9.94791 -0.0830906 -0.00958738 0.0713727 0.19 0 pose: 0.39978263 -1.81096 0.022378 0 -0.00452623 -0.00680718 0.0123736 0.99989 uwb: 0.50232174 850.831 1196.52 +imu_odom_: 1691062579.451888918 0.308852 -0.023942 10.4722 -0.0713727 0.0234358 0.0607201 0.19 0 pose: 0.0 -1.81096 0.022378 0 -0.00452623 -0.00680718 0.0123736 0.99989 uwb: 0.0 850.831 1196.52 +imu_odom_: 1691062579.475832013 0.277727 -0.117316 9.64145 -0.0745685 0.0383495 0.0511327 0.18 0 pose: 0.41032557 -1.79723 0.0190136 0 -0.00368088 -0.00801283 0.0129183 0.999878 uwb: 0.49754753 850.519 1195.51 +imu_odom_: 1691062579.499822646 0.131681 -0.270545 9.90481 -0.0415453 -0.0287621 0.0383495 0.18 0 pose: 0.0 -1.79723 0.0190136 0 -0.00368088 -0.00801283 0.0129183 0.999878 uwb: 0.0 850.519 1195.51 +imu_odom_: 1691062579.523812404 0.852336 -0.225055 9.60793 -0.0649811 -0.0106526 0.0479369 0.18 0 pose: 0.30961215 -1.79723 0.0190136 0 -0.00265703 -0.00482681 0.0130491 0.9999 uwb: 0.49855369 849.743 1194.41 +imu_odom_: 1691062579.540946778 0.632069 -0.0837971 9.67018 -0.0532632 -0.0213053 0.0447411 0.18 0 pose: 0.0 -1.79723 0.0190136 0 -0.00265703 -0.00482681 0.0130491 0.9999 uwb: 0.0 849.743 1194.41 +imu_odom_: 1691062579.565826342 0.502782 -0.237026 10.1347 -0.0543285 0.0106526 0.036219 0.21 0 pose: 0.48972855 -1.78868 0.0242074 0 -0.0017263 -0.00630172 0.0131534 0.999892 uwb: 0.0 849.743 1194.41 +imu_odom_: 1691062579.589967172 0.174777 -0.584185 9.9096 -0.0340885 -0.036219 0.0298274 0.23 0 pose: 0.34003354 -1.77745 0.0193317 0 -0.00107578 -0.0042057 0.0131331 0.999904 uwb: 0.49986902 848.87 1192.74 +imu_odom_: 1691062579.613827731 0.433351 -0.371101 9.85693 -0.0585895 -0.0543285 0.0468716 0.23 0 pose: 0.0 -1.77745 0.0193317 0 -0.00107578 -0.0042057 0.0131331 0.999904 uwb: 0.0 848.87 1192.74 +imu_odom_: 1691062579.629964684 0.481235 0.179565 9.87608 -0.0479369 -0.0447411 0.0447411 0.19 0.02 pose: 0.7018412 -1.77494 0.0208585 0 -0.00152912 -0.00385604 0.0131021 0.999906 uwb: 0.50168887 849.424 1192.04 +imu_odom_: 1691062579.655818921 0.335188 -0.186748 9.72285 -0.0628506 0.0138484 0.0383495 0.19 0.02 pose: 0.0 -1.77494 0.0208585 0 -0.00152912 -0.00385604 0.0131021 0.999906 uwb: 0.0 849.424 1192.04 +imu_odom_: 1691062579.680824767 0.208296 -0.371101 9.95509 -0.0394148 -0.00426106 0.036219 0.19 0 pose: 0.48993270 -1.7664 0.0260531 0 -0.00415099 -0.00320452 0.0131422 0.9999 uwb: 0.50091893 849.229 1191.25 +imu_odom_: 1691062579.704894727 0.241814 -0.272939 9.91678 -0.0692422 0.0191748 0.0639159 0.19 0 pose: 0.0 -1.7664 0.0260531 0 -0.00415099 -0.00320452 0.0131422 0.9999 uwb: 0.0 849.229 1191.25 +imu_odom_: 1691062579.721854990 0.342371 -0.172383 10.0341 -0.0436758 -0.0532632 0.0468716 0.26 0.02 pose: 0.42057102 -1.7612 0.0175086 0 -0.00228657 -0.0003123290.0131351 0.999911 uwb: 0.49998567 849.482 1190.25 +imu_odom_: 1691062579.746845379 0.328006 -0.296881 10.1586 -0.04048 -0.00106526 0.04048 0.26 0.02 pose: 0.0 -1.7612 0.0175086 0 -0.00228657 -0.0003123290.0131351 0.999911 uwb: 0.0 849.482 1190.25 +imu_odom_: 1691062579.772815982 0.916979 -0.105345 10.1275 -0.0149137 -0.0298274 0.0181095 0.23 -0.02 pose: 0.48019471 -1.75266 0.0227036 0 -0.00245118 0.00358097 0.0134381 0.9999 uwb: 0.49876952 849.107 1188.68 +imu_odom_: 1691062579.798920742 0.531513 -0.332794 9.58399 -0.0447411 -0.00639159 0.056459 0.23 -0.02 pose: 0.0 -1.75266 0.0227036 0 -0.00245118 0.00358097 0.0134381 0.9999 uwb: 0.0 849.107 1188.68 +imu_odom_: 1691062579.815946917 0.565032 -0.42138 9.53132 -0.0415453 -0.00213053 0.0266316 0.23 0.02 pose: 0.42943408 -1.73892 0.0193624 0 -0.00327281 0.00281498 0.0133934 0.999901 uwb: 0.0 849.107 1188.68 +imu_odom_: 1691062579.840875186 0.493206 -0.588974 9.65821 -0.0660464 -0.0127832 0.0607201 0.23 0.02 pose: 0.0 -1.73892 0.0193624 0 -0.00327281 0.00281498 0.0133934 0.999901 uwb: 0.49865285 848.761 1188.1 +imu_odom_: 1691062579.857811534 0.47884 -0.162806 9.69173 -0.052198 0.00745685 0.0330232 0.23 0.02 pose: 0.52137484 -1.73037 0.0245604 0 -0.00389027 -0.00204441 0.0133563 0.999901 uwb: 0.0 848.761 1188.1 +imu_odom_: 1691062579.882803672 0.45011 -0.320823 9.72046 -0.092678 -0.0170442 0.0639159 0.23 0.02 pose: 0.0 -1.73037 0.0245604 0 -0.00389027 -0.00204441 0.0133563 0.999901 uwb: 0.50003525 848.908 1186.91 +imu_odom_: 1691062579.907817101 0.28491 -0.538695 9.53132 -0.056459 0.0596548 0.0234358 0.23 0.02 pose: 0.75808183 -1.71663 0.0212224 0 -0.00634951 -0.0008975250.0138214 0.999884 uwb: 0.0 848.908 1186.91 +imu_odom_: 1691062579.930950884 0.229843 -0.411803 9.75877 -0.036219 0.00745685 0.0575243 0.23 0.02 pose: 0.7050785 -1.71663 0.0212224 0 -0.00695186 -0.0002952560.0137659 0.999881 uwb: 0.49988068 848.807 1186.04 +imu_odom_: 1691062579.954801236 -0.0526724 -0.129287 9.80904 -0.00319579 0.0149137 0.0223706 0.2 0 pose: 0.41096427 -1.71091 0.0247106 0 -0.00881566 0.00362626 0.0138489 0.999859 uwb: 0.0 848.807 1186.04 +imu_odom_: 1691062579.979783166 0.150835 -0.476446 9.79947 -0.0830906 0.0234358 0.0617853 0.2 -0.02 pose: 0.0 -1.71091 0.0247106 0 -0.00881566 0.00362626 0.0138489 0.999859 uwb: 0.50119016 850.005 1186.55 +imu_odom_: 1691062579.994797289 0.521936 -0.459687 9.62469 -0.0415453 0.00852212 0.0319579 0.2 -0.02 pose: 0.0 -1.71091 0.0247106 0 -0.00881566 0.00362626 0.0138489 0.999859 uwb: 0.0 850.005 1186.55 +imu_odom_: 1691062580.17781170 0.318429 -0.162806 9.73482 -0.04048 0.00319579 0.056459 0.2 -0.02 pose: 0.31851312 -1.70289 0.0178887 0 -0.00757212 0.00654836 0.0137511 0.999855 uwb: 0.0 850.005 1186.55 +imu_odom_: 1691062580.42786436 0.347159 -0.301669 10.0102 -0.0308927 0.00213053 0.0298274 0.18 0 pose: 0.38993674 -1.69435 0.0230935 0 -0.00853498 0.00654148 0.0139275 0.999845 uwb: 0.49847790 849.637 1185.68 +imu_odom_: 1691062580.58780486 0.486023 -0.100556 9.35893 -0.0745685 -0.0127832 0.0458064 0.18 0 pose: 0.0 -1.69435 0.0230935 0 -0.00853498 0.00654148 0.0139275 0.999845 uwb: 0.0 849.637 1185.68 +imu_odom_: 1691062580.83779628 -0.0837971 -0.196325 9.48822 -0.0479369 0.0181095 0.0266316 0.18 0 pose: 0.56984616 -1.68306 0.02379 0 -0.00401578 0.00327813 0.013991 0.999889 uwb: 0.0 849.637 1185.68 +imu_odom_: 1691062580.106780716 0.105345 -0.356736 10.0341 -0.0447411 0.0298274 0.0415453 0.18 0 pose: 0.0 -1.68306 0.02379 0 -0.00401578 0.00327813 0.013991 0.999889 uwb: 0.0 849.637 1185.68 +imu_odom_: 1691062580.122778557 0.505177 -0.356736 10.1897 -0.052198 -0.0415453 0.0351537 0.18 -0.02 pose: 0.8019044 -1.6806 0.0197646 0 -0.00382708 0.00415435 0.0139423 0.999887 uwb: 0.100053147 849.378 1184.68 +imu_odom_: 1691062580.148865531 0.818817 -0.52433 9.25119 -0.0756338 -0.0276969 0.0426106 0.18 -0.02 pose: 0.0 -1.6806 0.0197646 0 -0.00382708 0.00415435 0.0139423 0.999887 uwb: 0.0 849.378 1184.68 +imu_odom_: 1691062580.173794095 0.0670376 -0.351948 9.63906 -0.0255663 -0.0127832 0.0234358 0.25 0 pose: 0.48065267 -1.67206 0.0249714 0 -0.00438675 0.00756208 0.0138389 0.999866 uwb: 0.49947829 850.997 1185.32 +imu_odom_: 1691062580.198921560 0.459687 -0.296881 10.2496 -0.036219 0.00106526 0.0319579 0.25 0 pose: 0.16124414 -1.67206 0.0249714 0 -0.0049207 0.00577996 0.0138253 0.999876 uwb: 0.0 850.997 1185.32 +imu_odom_: 1691062580.221917983 0.483629 -0.0742203 9.82341 -0.015979 0.00106526 0.0266316 0.21 0 pose: 0.49948704 -1.65832 0.02164 0 -0.00551017 0.00560296 0.0136226 0.999876 uwb: 0.50178228 849.856 1183.11 +imu_odom_: 1691062580.238773257 0.335188 -0.0191536 9.76834 -0.0798948 0.00958738 0.0713727 0.21 0 pose: 0.0 -1.65832 0.02164 0 -0.00551017 0.00560296 0.0136226 0.999876 uwb: 0.0 849.856 1183.11 +imu_odom_: 1691062580.262777601 0.90022 -0.162806 10.3118 -0.0308927 0.092678 0.0319579 0.18 -0.02 pose: 0.48863497 -1.64978 0.0268429 0 -0.0019359 0.0028138 0.013523 0.999903 uwb: 0.0 849.856 1183.11 +imu_odom_: 1691062580.287877944 0.545878 -0.1652 10.3525 -0.0788296 0.104396 0.0649811 0.27 -0.02 pose: 0.32976189 -1.64978 0.0268429 0 -0.0005232320.00173185 0.013573 0.999906 uwb: 0.49681267 850.047 1182.23 +imu_odom_: 1691062580.302762871 0.500388 -0.529119 9.87369 -0.0490022 -0.0617853 0.0138484 0.27 -0.02 pose: 0.0 -1.64978 0.0268429 0 -0.0005232320.00173185 0.013573 0.999906 uwb: 0.0 850.047 1182.23 +imu_odom_: 1691062580.325795749 0.191536 -0.138864 10.4172 -0.0735032 -0.0639159 0.0447411 0.27 -0.02 pose: 0.0 -1.64978 0.0268429 0 -0.0005232320.00173185 0.013573 0.999906 uwb: 0.50158979 849.691 1181.05 +imu_odom_: 1691062580.352923309 0.184354 -0.035913 9.91918 -0.0308927 -0.015979 0.0255663 0.18 -0.02 pose: 0.8038876 -1.64978 0.0268429 0 -0.0003577150.00140768 0.0136751 0.999905 uwb: 0.0 849.691 1181.05 +imu_odom_: 1691062580.378767927 0.37589 -0.162806 9.66779 -0.0830906 -0.0308927 0.0458064 0.2 0 pose: 0.39054634 -1.63604 0.0235081 0 -0.00111406 0.000207871 0.0137187 0.999905 uwb: 0.50023074 849.277 1179.62 +imu_odom_: 1691062580.395876640 0.940921 -0.363919 9.77313 -0.0458064 0.0330232 0.02024 0.2 0 pose: 0.0 -1.63604 0.0235081 0 -0.00111406 0.000207871 0.0137187 0.999905 uwb: 0.0 849.277 1179.62 +imu_odom_: 1691062580.420781580 0.474052 -0.294487 10.0317 -0.0713727 -0.00532632 0.0628506 0.18 0 pose: 0.51066284 -1.6275 0.0287124 0 0.00196762 0.00223186 0.0136027 0.999903 uwb: 0.50119024 848.814 1178.58 +imu_odom_: 1691062580.443813875 0.538695 -0.229843 9.8282 -0.0351537 -0.0319579 0.0447411 0.18 0 pose: 0.0 -1.6275 0.0287124 0 0.00196762 0.00223186 0.0136027 0.999903 uwb: 0.0 848.814 1178.58 +imu_odom_: 1691062580.467914170 0.3304 -0.201113 9.73722 -0.0703074 -0.0213053 0.0585895 0.25 0 pose: 0.42898210 -1.61375 0.0253749 0 0.0014658 -0.00110197 0.0135973 0.999906 uwb: 0.0 848.814 1178.58 +imu_odom_: 1691062580.483755107 0.948104 -0.201113 9.91199 -0.0468716 -0.0149137 0.0372843 0.25 0 pose: 0.0 -1.61375 0.0253749 0 0.0014658 -0.00110197 0.0135973 0.999906 uwb: 0.50078778 849.648 1178.54 +imu_odom_: 1691062580.509971571 0.672771 -0.244209 9.8258 -0.0798948 0.0287621 0.0703074 0.19 0.02 pose: 0.48097348 -1.61375 0.0253749 0 -0.000163333-0.00369333 0.0139336 0.999896 uwb: 0.0 849.648 1178.54 +imu_odom_: 1691062580.536928227 0.260968 -0.222661 10.2544 -0.0639159 0.015979 0.0426106 0.19 0.02 pose: 0.0 -1.61375 0.0253749 0 -0.000163333-0.00369333 0.0139336 0.999896 uwb: 0.49737262 849.546 1177.41 +imu_odom_: 1691062580.561948367 0.11971 -0.251391 10.1538 -0.0809601 0.0223706 0.0532632 0.18 0.02 pose: 0.39837989 -1.60001 0.0220479 0 -0.000184845-0.00456826 0.0141893 0.999889 uwb: 0.0 849.546 1177.41 +imu_odom_: 1691062580.577954083 0.251391 -0.435745 10.0556 -0.0351537 -0.00319579 0.0276969 0.18 0.02 pose: 0.0 -1.60001 0.0220479 0 -0.000184845-0.00456826 0.0141893 0.999889 uwb: 0.0 849.546 1177.41 +imu_odom_: 1691062580.602884688 0.646434 -0.282516 10.0173 -0.0543285 -0.0255663 0.0415453 0.18 0 pose: 0.53005426 -1.59148 0.0272625 0 -0.000904648-0.00222117 0.0145647 0.999891 uwb: 0.0 849.546 1177.41 +imu_odom_: 1691062580.629891216 0.3304 -0.148441 10.0796 -0.0426106 -0.0276969 0.0330232 0.18 0 pose: 0.0 -1.59148 0.0272625 0 -0.000904648-0.00222117 0.0145647 0.999891 uwb: 0.100184969 849.71 1176.27 +imu_odom_: 1691062580.654882192 0.694318 -0.198719 9.59357 -0.0639159 0.00106526 0.0372843 0.18 0 pose: 0.41132888 -1.58295 0.0324821 0 -0.00240794 -0.0001667160.0145956 0.999891 uwb: 0.0 849.71 1176.27 +imu_odom_: 1691062580.670734794 0.0766145 -0.31364 9.97185 -0.0415453 0.0149137 0.0340885 0.18 0 pose: 0.0 -1.58295 0.0324821 0 -0.00240794 -0.0001667160.0145956 0.999891 uwb: 0.49872002 851.187 1176.72 +imu_odom_: 1691062580.695766600 0.665588 -0.493206 10.1251 -0.0830906 0.0351537 0.0500674 0.18 -0.02 pose: 0.52127285 -1.57773 0.0239527 0 -0.000370858-0.00124042 0.0145124 0.999894 uwb: 0.0 851.187 1176.72 +imu_odom_: 1691062580.720783240 0.397437 -0.399832 10.4698 -0.0319579 0.00639159 0.0330232 0.18 -0.02 pose: 0.40831329 -1.5692 0.0291712 0 -0.00127873 -0.00157904 0.0144933 0.999893 uwb: 0.49858878 850.386 1175.17 +imu_odom_: 1691062580.736807037 0.198719 -0.169988 10.0078 -0.0447411 -0.0245011 0.052198 0.2 0 pose: 0.41915370 -1.55785 0.0243885 0 -0.00478624 -0.0013084 0.0145086 0.999882 uwb: 0.0 850.386 1175.17 +imu_odom_: 1691062580.753945790 0.560243 -0.241814 10.0652 -0.0426106 -0.0234358 0.0351537 0.2 0 pose: 0.0 -1.55785 0.0243885 0 -0.00478624 -0.0013084 0.0145086 0.999882 uwb: 0.0 850.386 1175.17 +imu_odom_: 1691062580.778826233 0.23942 -0.433351 9.39964 -0.0798948 0.00958738 0.0607201 0.18 0 pose: 0.7018997 -1.55545 0.02586 0 -0.00439085 -0.0007738630.0145557 0.999884 uwb: 0.50074695 850.035 1173.12 +imu_odom_: 1691062580.803812542 0.306458 -0.414197 9.92157 -0.0340885 -0.015979 0.04048 0.18 0 pose: 0.0 -1.55545 0.02586 0 -0.00439085 -0.0007738630.0145557 0.999884 uwb: 0.0 850.035 1173.12 +imu_odom_: 1691062580.817742919 0.280122 -0.198719 9.79947 -0.04048 -0.00852212 0.036219 0.19 0 pose: 0.33995776 -1.55545 0.02586 0 -0.0038222 -0.00121866 0.014658 0.999885 uwb: 0.0 850.035 1173.12 +imu_odom_: 1691062580.842797181 0.323217 -0.3304 9.76116 -0.02024 -0.0372843 0.0234358 0.19 0 pose: 0.0 -1.55545 0.02586 0 -0.0038222 -0.00121866 0.014658 0.999885 uwb: 0.50119316 850.519 1172.26 +imu_odom_: 1691062580.858788897 0.237026 -0.0574608 9.5816 -0.052198 -0.00958738 0.0585895 0.25 0 pose: 0.48021521 -1.5417 0.0225529 0 -0.00616208 0.00203669 0.0148562 0.999869 uwb: 0.0 850.519 1172.26 +imu_odom_: 1691062580.883731169 0.476446 -0.153229 9.77313 -0.056459 0.00106526 0.0426106 0.25 0 pose: 0.0 -1.5417 0.0225529 0 -0.00616208 0.00203669 0.0148562 0.999869 uwb: 0.49982826 850.741 1171.7 +imu_odom_: 1691062580.909740857 0.553061 -0.203507 10.0437 -0.0756338 0.0213053 0.0596548 0.21 -0.02 pose: 0.39918483 -1.53317 0.0277761 0 -0.0052282 0.00456048 0.0147264 0.999867 uwb: 0.0 850.741 1171.7 +imu_odom_: 1691062580.932741363 0.694318 -0.126893 10.2879 -0.0351537 -0.00213053 0.0330232 0.21 -0.02 pose: 0.0 -1.53317 0.0277761 0 -0.0052282 0.00456048 0.0147264 0.999867 uwb: 0.49890084 850.366 1170.02 +imu_odom_: 1691062580.949765207 0.354342 -0.402226 9.73722 -0.0266316 -0.0330232 0.0394148 0.18 0.02 pose: 0.42133811 -1.53317 0.0277761 0 -0.00254434 0.00233851 0.0149358 0.999882 uwb: 0.0 850.366 1170.02 +imu_odom_: 1691062580.975724149 0.624887 0.208296 10.477 -0.0649811 -0.0543285 0.0553937 0.18 0.02 pose: 0.0 -1.53317 0.0277761 0 -0.00254434 0.00233851 0.0149358 0.999882 uwb: 0.49983701 850.118 1169.1 +imu_odom_: 1691062581.1829497 0.837971 -0.514753 9.21768 -0.109722 0.0106526 0.0649811 0.22 0 pose: 0.47893489 -1.51942 0.0244758 0 -0.00156273 -0.0010494 0.0150335 0.999885 uwb: 0.0 850.118 1169.1 +imu_odom_: 1691062581.26698278 0.0861913 -0.122104 9.62948 -0.0181095 0.0351537 0.00852212 0.22 0 pose: 0.0 -1.51942 0.0244758 0 -0.00156273 -0.0010494 0.0150335 0.999885 uwb: 0.50009078 850.115 1168.22 +imu_odom_: 1691062581.49690913 0.533907 -0.148441 9.97424 -0.0692422 0.0276969 0.0671117 0.2 0 pose: 0.43060073 -1.51089 0.0297033 0 -0.000679332-0.00298484 0.0153275 0.999878 uwb: 0.0 850.115 1168.22 +imu_odom_: 1691062581.66826460 0.471658 -0.483629 9.62948 -0.0372843 -0.00319579 0.0372843 0.2 0 pose: 0.0 -1.51089 0.0297033 0 -0.000679332-0.00298484 0.0153275 0.999878 uwb: 0.0 850.115 1168.22 +imu_odom_: 1691062581.92989557 0.430956 0.160412 10.3813 -0.0607201 -0.0181095 0.0660464 0.25 0 pose: 0.49899421 -1.49714 0.0264146 0 -0.000736207-0.00186955 0.0152687 0.999881 uwb: 0.50171237 849.969 1166.91 +imu_odom_: 1691062581.118715480 0.591368 0.059855 10.2113 -0.0671117 -0.0213053 0.0447411 0.23 0.02 pose: 0.60264746 -1.48862 0.0316499 0 0.00125567 -0.00289585 0.0158231 0.99987 uwb: 0.0 849.969 1166.91 +imu_odom_: 1691062581.133695194 0.656011 -0.383072 9.23444 -0.0852212 0.0223706 0.0468716 0.23 0.02 pose: 0.0 -1.48862 0.0316499 0 0.00125567 -0.00289585 0.0158231 0.99987 uwb: 0.49676317 849.797 1165.64 +imu_odom_: 1691062581.157742997 0.177171 -0.23942 9.58878 -0.0543285 -0.00426106 0.0298274 0.23 0.02 pose: 0.0 -1.48862 0.0316499 0 0.00125567 -0.00289585 0.0158231 0.99987 uwb: 0.0 849.797 1165.64 +imu_odom_: 1691062581.182759934 0.268151 -0.418985 9.96706 -0.0713727 -0.04048 0.0436758 0.21 0 pose: 0.6772267 -1.48862 0.0316499 0 0.0018239 -0.00325632 0.015839 0.999868 uwb: 0.50120491 849.555 1164.17 +imu_odom_: 1691062581.205704739 0.150835 -0.198719 9.76355 -0.0490022 -0.0191748 0.0383495 0.18 0 pose: 0.39942113 -1.47486 0.0283744 0 0.00188927 -0.00440458 0.0159161 0.999862 uwb: 0.0 849.555 1164.17 +imu_odom_: 1691062581.222687756 0.677559 -0.438139 9.96706 -0.0692422 -0.0181095 0.0458064 0.18 0 pose: 0.0 -1.47486 0.0283744 0 0.00188927 -0.00440458 0.0159161 0.999862 uwb: 0.50069161 848.158 1161.97 +imu_odom_: 1691062581.246688604 0.397437 -0.186748 9.73961 -0.0298274 -0.0223706 0.0213053 0.18 0 pose: 0.0 -1.47486 0.0283744 0 0.00188927 -0.00440458 0.0159161 0.999872 uwb: 0.0 848.158 1161.97 +imu_odom_: 1691062581.270812235 0.612916 -0.277727 9.8282 -0.0490022 -0.00852212 0.036219 0.18 0 pose: 0.6117234 -1.47486 0.0283744 0 -0.000564855-0.0009931070.0158761 0.999873 uwb: 0.49936755 848.276 1161.56 +imu_odom_: 1691062581.287809834 0.799663 -0.339977 9.32063 -0.0479369 0.0106526 0.0298274 0.18 0 pose: 0.0 -1.47486 0.0283744 0 -0.000564855-0.0009931070.0158761 0.999873 uwb: 0.0 848.276 1161.56 +imu_odom_: 1691062581.312771358 0.454898 -0.237026 9.42358 -0.0756338 0.015979 0.0617853 0.27 0 pose: 0.40822295 -1.4611 0.0251004 0 -0.000751022-0.0007165930.0158546 0.999874 uwb: 0.0 848.276 1161.56 +imu_odom_: 1691062581.328702415 0.830788 -0.28491 10.331 -0.056459 -0.0138484 0.0330232 0.27 0 pose: 0.0 -1.4611 0.0251004 0 -0.000751022-0.0007165930.0158546 0.999874 uwb: 0.49984293 848.028 1160.42 +imu_odom_: 1691062581.354689360 0.462081 -0.440533 9.4954 -0.0479369 0.0181095 0.0500674 0.23 -0.02 pose: 0.90050354 -1.44407 0.0355794 0 -0.00207382 -0.0024761 0.0158387 0.999869 uwb: 0.0 848.028 1160.42 +imu_odom_: 1691062581.381723015 0.289698 -0.0694318 9.78031 -0.0436758 -0.02024 0.0255663 0.21 -0.02 pose: 0.34939543 -1.43883 0.027063 0 -0.00463508 -0.00309973 0.0159524 0.999857 uwb: 0.50017541 848.409 1159.74 +imu_odom_: 1691062581.406683372 0.490811 -0.462081 9.77074 -0.076699 0.00639159 0.0479369 0.21 -0.02 pose: 0.0 -1.43883 0.027063 0 -0.00463508 -0.00309973 0.0159524 0.999857 uwb: 0.0 848.409 1159.74 +imu_odom_: 1691062581.430709885 0.596156 -0.260968 9.34457 -0.0500674 -0.0191748 0.0308927 0.23 0 pose: 0.8073874 -1.43883 0.027063 0 -0.00394173 -0.00267751 0.0158966 0.999862 uwb: 0.49854803 848.286 1158.48 +imu_odom_: 1691062581.455731196 0.409408 -0.653617 9.65103 -0.0596548 0.00639159 0.0383495 0.23 0 pose: 0.0 -1.43883 0.027063 0 -0.00394173 -0.00267751 0.0158966 0.999862 uwb: 0.0 848.286 1158.48 +imu_odom_: 1691062581.470701578 0.533907 -0.23942 9.85932 -0.0266316 -0.00745685 0.0266316 0.18 0 pose: 0.50934469 -1.43031 0.0323054 0 -0.00474584 -0.00298126 0.0158373 0.999859 uwb: 0.50108825 848.528 1157.39 +imu_odom_: 1691062581.497802602 0.459687 -0.335188 10.1873 -0.0607201 -0.00958738 0.0660464 0.18 0 pose: 0.0 -1.43031 0.0323054 0 -0.00474584 -0.00298126 0.0158373 0.999859 uwb: 0.0 848.528 1157.39 +imu_odom_: 1691062581.513677664 -0.071826 -0.0742203 9.84735 -0.0319579 0.00106526 0.0436758 0.19 0 pose: 0.49083697 -1.41655 0.0290299 0 -0.00594496 -0.00438987 0.0157024 0.999849 uwb: 0.0 848.528 1157.39 +imu_odom_: 1691062581.529803247 0.622492 -0.186748 9.91918 -0.0575243 -0.0245011 0.0543285 0.19 0 pose: 0.0 -1.41655 0.0290299 0 -0.00594496 -0.00438987 0.0157024 0.999849 uwb: 0.50078202 847.82 1155.12 +imu_odom_: 1691062581.546694105 1.02232 -0.153229 9.95748 -0.0607201 0.0127832 0.0415453 0.19 0 pose: 0.0 -1.41655 0.0290299 0 -0.00594496 -0.00438987 0.0157024 0.999849 uwb: 0.0 847.82 1155.12 +imu_odom_: 1691062581.573705303 0.371101 -0.0143652 9.85693 -0.0735032 -0.00319579 0.0628506 0.18 0.02 pose: 0.42908716 -1.40804 0.0342707 0 -0.00586026 -0.00160887 0.0160431 0.999853 uwb: 0.49944338 847.527 1154.07 +imu_odom_: 1691062581.599739494 0.21069 -0.428562 9.77313 -0.0692422 0.0351537 0.0436758 0.19 0.05 pose: 0.68015187 -1.39681 0.0294456 0 -0.00184666 -0.0028459 0.0164902 0.999858 uwb: 0.0 847.527 1154.07 +imu_odom_: 1691062581.615740546 0.457293 -0.117316 10.003 -0.0575243 0.00319579 0.0372843 0.19 0.05 pose: 0.0 -1.39681 0.0294456 0 -0.00184666 -0.0028459 0.0164902 0.999858 uwb: 0.0 847.527 1154.07 +imu_odom_: 1691062581.641739156 0.533907 -0.191536 9.65103 -0.0415453 -0.0287621 0.0340885 0.18 0.02 pose: 0.7992506 -1.39428 0.0310052 0 -0.0023818 -0.00204812 0.0165087 0.999859 uwb: 0.50047580 847.826 1153.5 +imu_odom_: 1691062581.667683812 0.560243 -0.373495 9.45949 -0.0756338 -0.00958738 0.0426106 0.18 0.02 pose: 0.0 -1.39428 0.0310052 0 -0.0023818 -0.00204812 0.0165087 0.999859 uwb: 0.0 847.826 1153.5 +imu_odom_: 1691062581.693750959 0.146046 -0.248997 9.47386 -0.0458064 0.00639159 0.0372843 0.2 0.02 pose: 0.42122152 -1.38577 0.0362581 0 -0.00162065 -0.00143125 0.0165062 0.999861 uwb: 0.49931505 846.916 1151.75 +imu_odom_: 1691062581.720921686 0.107739 -0.464475 9.8282 -0.0649811 -0.0479369 0.0490022 0.2 0.02 pose: 0.0 -1.38577 0.0362581 0 -0.00162065 -0.00143125 0.0165062 0.999861 uwb: 0.50171237 847.109 1150.77 +imu_odom_: 1691062581.736669299 1.08218 -0.0502782 10.5848 -0.0308927 -0.0511327 0.0287621 0.18 -0.02 pose: 0.51982347 -1.37201 0.0330012 0 -0.00295292 -0.00391511 0.016491 0.999852 uwb: 0.0 847.109 1150.77 +imu_odom_: 1691062581.762791275 0.952892 -0.047884 10.0197 -0.0660464 -0.0394148 0.0543285 0.18 -0.02 pose: 0.0 -1.37201 0.0330012 0 -0.00295292 -0.00391511 0.016491 0.999852 uwb: 0.0 847.109 1150.77 +imu_odom_: 1691062581.779720338 0.363919 -0.447716 9.92875 -0.0479369 0.00745685 0.036219 0.25 0.02 pose: 0.53035473 -1.37201 0.0330012 0 -0.00391366 -0.00121861 0.016569 0.999854 uwb: 0.50035623 847.227 1150.65 +imu_odom_: 1691062581.806655709 0.565032 -0.42138 9.56244 -0.0479369 -0.0223706 0.0532632 0.25 0.02 pose: 0.0 -1.37201 0.0330012 0 -0.00391366 -0.00121861 0.016569 0.999854 uwb: 0.0 847.227 1150.65 +imu_odom_: 1691062581.832642945 0.0957681 -0.0957681 10.0676 -0.02024 0.00532632 0.0340885 0.23 0 pose: 0.57849350 -1.35825 0.0297462 0 -0.0043723 -0.00431902 0.0167368 0.999841 uwb: 0.49782767 846.038 1149.2 +imu_odom_: 1691062581.858707175 0.624887 -0.337582 9.59596 -0.0639159 -0.00639159 0.056459 0.25 0 pose: 0.45955814 -1.34974 0.035003 0 -0.00422597 -0.00323789 0.0168132 0.999844 uwb: 0.0 846.038 1149.2 +imu_odom_: 1691062581.884656789 0.232238 -0.146046 9.67497 -0.0415453 0.00426106 0.0426106 0.25 0 pose: 0.0 -1.34974 0.035003 0 -0.00422597 -0.00323789 0.0168132 0.999844 uwb: 0.50055746 845.65 1147.5 +imu_odom_: 1691062581.911770938 0.0047884 -0.440533 10.2352 -0.0266316 -0.0181095 0.0234358 0.23 0 pose: 0.7012290 -1.34974 0.035003 0 -0.00442032 -0.00392838 0.0168699 0.99984 uwb: 0.0 845.65 1147.5 +imu_odom_: 1691062581.927693246 0.481235 0.117316 10.3765 -0.0447411 -0.0340885 0.0532632 0.23 0 pose: 0.0 -1.34974 0.035003 0 -0.00442032 -0.00392838 0.0168699 0.99984 uwb: 0.50050788 845.379 1146.22 +imu_odom_: 1691062581.952832964 0.6608 0.011971 10.4004 -0.0340885 -0.0351537 0.0426106 0.25 0 pose: 0.52200788 -1.33597 0.0317566 0 -0.0036233 -0.00279765 0.0170134 0.999845 uwb: 0.0 845.379 1146.22 +imu_odom_: 1691062581.974643566 0.694318 0.00718261 10.2041 -0.0351537 -0.0170442 0.04048 0.25 0 pose: 0.0 -1.33597 0.0317566 0 -0.0036233 -0.00279765 0.0170134 0.999845 uwb: 0.49760018 845.318 1145.25 +imu_odom_: 1691062582.834369 0.220267 -0.1652 9.68933 -0.0575243 0.00106526 0.0319579 0.18 0 pose: 0.43941720 -1.32747 0.0370175 0 -0.00160021 -0.00211209 0.0169811 0.999852 uwb: 0.0 845.318 1145.25 +imu_odom_: 1691062582.17681483 0.248997 -0.0646434 9.7851 -0.0873517 -0.02024 0.0490022 0.18 0 pose: 0.0 -1.32747 0.0370175 0 -0.00160021 -0.00211209 0.0169811 0.999852 uwb: 0.0 845.318 1145.25 +imu_odom_: 1691062582.42783583 0.469264 -0.339977 9.90242 -0.0703074 -0.0777643 0.0415453 0.2 0 pose: 0.46863118 -1.3137 0.033774 0 0.0017471 -0.00425777 0.0169761 0.999845 uwb: 0.50171532 845.31 1144 +imu_odom_: 1691062582.68711620 0.550666 -0.150835 10.1251 -0.0500674 -0.0308927 0.0351537 0.2 0 pose: 0.0 -1.3137 0.033774 0 0.0017471 -0.00425777 0.0169761 0.999845 uwb: 0.0 845.31 1144 +imu_odom_: 1691062582.94744940 1.0343 -0.366313 10.0245 -0.0308927 -0.0117179 0.0223706 0.19 -0.02 pose: 0.43155159 -1.3137 0.033774 0 0.0015226 -0.00157549 0.0169859 0.999853 uwb: 0.49940846 844.726 1142.28 +imu_odom_: 1691062582.111744000 0.181959 -0.023942 10.094 -0.0436758 0.0447411 0.0490022 0.19 -0.02 pose: 0.0 -1.3137 0.033774 0 0.0015226 -0.00157549 0.0169859 0.999853 uwb: 0.0 844.726 1142.28 +imu_odom_: 1691062582.137680203 0.612916 -0.289698 9.7875 -0.0617853 0.00852212 0.0383495 0.21 0.02 pose: 0.50879940 -1.29994 0.0305301 0 0.00127228 -0.00585797 0.0168758 0.99984 uwb: 0.50045255 844.951 1141.58 +imu_odom_: 1691062582.164648826 0.4956 -0.0550666 10.094 -0.0383495 -0.00319579 0.0543285 0.23 0.02 pose: 0.60984243 -1.29143 0.0357868 0 -0.000220694-0.00730979 0.0167985 0.999832 uwb: 0.0 844.951 1141.58 +imu_odom_: 1691062582.189628727 0.31364 -0.306458 9.84496 -0.0351537 0.00958738 0.0319579 0.23 0.02 pose: 0.0 -1.29143 0.0357868 0 -0.000220694-0.00730979 0.0167985 0.999832 uwb: 0.49865602 845.3 1141.01 +imu_odom_: 1691062582.213619372 0.620098 -0.380678 9.991 -0.0703074 -0.00852212 0.0458064 0.23 0 pose: 0.7021040 -1.29143 0.0357868 0 0.000504643 -0.0070794 0.016846 0.999833 uwb: 0.0 845.3 1141.01 +imu_odom_: 1691062582.229631509 0.268151 -0.229843 9.53132 -0.0543285 0.0447411 0.0234358 0.23 0 pose: 0.0 -1.29143 0.0357868 0 0.000504643 -0.0070794 0.016846 0.999833 uwb: 0.50062462 845.422 1140.16 +imu_odom_: 1691062582.246710188 0.490811 -0.306458 9.95748 -0.0681769 -0.052198 0.04048 0.18 -0.02 pose: 0.51980314 -1.27767 0.0325393 0 0.000796092 -0.00460331 0.016916 0.999846 uwb: 0.0 845.422 1140.16 +imu_odom_: 1691062582.272703261 1.20668 -0.399832 9.89045 -0.0468716 -0.0351537 0.0319579 0.18 -0.02 pose: 0.0 -1.27767 0.0325393 0 0.000796092 -0.00460331 0.016916 0.999846 uwb: 0.50018423 845.531 1139.33 +imu_odom_: 1691062582.297822277 0.56982 -0.339977 10.0389 -0.0628506 0.0117179 0.04048 0.22 0.02 pose: 0.40998746 -1.26916 0.0377982 0 -0.00156287 -0.00401498 0.0168534 0.999849 uwb: 0.0 845.531 1139.33 +imu_odom_: 1691062582.321821671 0.428562 -0.136469 9.56962 -0.0276969 -0.0245011 0.0234358 0.22 0.02 pose: 0.0 -1.26916 0.0377982 0 -0.00156287 -0.00401498 0.0168534 0.999849 uwb: 0.50002675 846.074 1139.08 +imu_odom_: 1691062582.346654001 0.857124 -0.208296 9.78989 -0.0468716 0.00958738 0.0330232 0.18 0.02 pose: 0.41950964 -1.26916 0.0377982 0 -0.00350254 -0.0075618 0.0167651 0.999825 uwb: 0.0 846.074 1139.08 +imu_odom_: 1691062582.370601190 0.454898 -0.110133 9.39006 -0.0170442 0.00958738 0.0276969 0.18 0.02 pose: 0.0 -1.26916 0.0377982 0 -0.00350254 -0.0075618 0.0167651 0.999825 uwb: 0.50073836 845.928 1138 +imu_odom_: 1691062582.395884985 0.459687 -0.332794 10.0365 -0.0617853 0.00426106 0.0458064 0.18 0 pose: 0.49084579 -1.2554 0.0345492 0 -0.00282742 -0.00746108 0.01656 0.999831 uwb: 0.0 845.928 1138 +imu_odom_: 1691062582.412766221 0.071826 -0.225055 9.85453 -0.0436758 0.00852212 0.0319579 0.18 0 pose: 0.0 -1.2554 0.0345492 0 -0.00282742 -0.00746108 0.01656 0.999831 uwb: 0.0 845.928 1138 +imu_odom_: 1691062582.436606378 0.172383 -0.117316 9.84975 -0.0596548 0.0138484 0.052198 0.18 0 pose: 0.48909301 -1.2554 0.0345492 0 -0.000610745-0.00697009 0.0163673 0.999842 uwb: 0.49916057 846.486 1137.98 +imu_odom_: 1691062582.461603778 0.543484 0.0143652 10.0389 -0.0447411 -0.0308927 0.0276969 0.18 0 pose: 0.0 -1.2554 0.0345492 0 -0.000610745-0.00697009 0.0163673 0.999842 uwb: 0.0 846.486 1137.98 +imu_odom_: 1691062582.476605368 0.802058 -0.397437 9.59357 -0.0713727 -0.0319579 0.0490022 0.24 0 pose: 0.83978631 -1.24164 0.0312887 0 0.00139163 -0.00287017 0.0163715 0.999861 uwb: 0.49832938 846.736 1137.52 +imu_odom_: 1691062582.503591198 0.227449 -0.179565 9.92875 -0.04048 -0.036219 0.0245011 0.24 0 pose: 0.0 -1.24164 0.0312887 0 0.00139163 -0.00287017 0.0163715 0.999861 uwb: 0.0 846.736 1137.52 +imu_odom_: 1691062582.528644593 0.497994 -0.244209 10.0724 -0.0681769 -0.0447411 0.0490022 0.18 0 pose: 0.6126859 -1.24164 0.0312887 0 0.0010351 -0.00348543 0.0164017 0.999859 uwb: 0.50146747 846.837 1136.7 +imu_odom_: 1691062582.553614287 0.744597 0.00718261 9.90481 -0.0447411 -0.0170442 0.0330232 0.2 0 pose: 0.16892027 -1.23313 0.0365394 0 0.000647783 -0.00370446 0.0163845 0.999859 uwb: 0.0 846.837 1136.7 +imu_odom_: 1691062582.568597212 0.462081 -0.277727 9.54808 -0.0671117 0.0106526 0.0639159 0.2 0 pose: 0.0 -1.23313 0.0365394 0 0.000647783 -0.00370446 0.0163845 0.999859 uwb: 0.0 846.837 1136.7 +imu_odom_: 1691062582.593725561 0.416591 -0.215478 10.0437 -0.0447411 -0.0223706 0.0436758 0.2 0 pose: 0.0 -1.23313 0.0365394 0 0.000647783 -0.00370446 0.0163845 0.999859 uwb: 0.49942888 847.165 1135.93 +imu_odom_: 1691062582.619574562 0.383072 -0.272939 9.98382 -0.0649811 -0.0298274 0.052198 0.18 -0.02 pose: 0.50027173 -1.22788 0.0280286 0 -0.000407278-0.00497233 0.016341 0.999854 uwb: 0.0 847.165 1135.93 +imu_odom_: 1691062582.635589906 0.797269 -0.3304 9.65821 -0.036219 0.0117179 0.0351537 0.18 -0.02 pose: 0.0 -1.22788 0.0280286 0 -0.000407278-0.00497233 0.016341 0.999854 uwb: 0.49932096 846.865 1134.77 +imu_odom_: 1691062582.661703429 0.512359 -0.179565 9.93354 -0.0873517 0.036219 0.0713727 0.26 0 pose: 0.91941682 -1.2056 0.0300207 0 -0.00171395 -0.00201413 0.0166642 0.999858 uwb: 0.0 846.865 1134.77 +imu_odom_: 1691062582.687644881 0.483629 -0.25618 9.81144 -0.0649811 0.00745685 0.0458064 0.23 0.05 pose: 0.35111910 -1.19935 0.0338841 0 -0.000135358-0.00384679 0.0170472 0.999847 uwb: 0.50242990 846.868 1133.59 +imu_odom_: 1691062582.712732107 0.447716 -0.407014 9.83777 -0.0798948 0.0117179 0.0479369 0.23 0.05 pose: 0.0 -1.19935 0.0338841 0 -0.000135358-0.00384679 0.0170472 0.999847 uwb: 0.0 846.868 1133.59 +imu_odom_: 1691062582.738644104 0.112527 -0.316035 9.98622 -0.0543285 -0.00958738 0.056459 0.2 0 pose: 0.6881051 -1.1971 0.0352777 0 -0.000846851-0.00392631 0.0170711 0.999846 uwb: 0.0 846.868 1133.59 +imu_odom_: 1691062582.754637575 0.665588 -0.248997 10.4986 -0.0596548 -0.0170442 0.0394148 0.2 0 pose: 0.0 -1.1971 0.0352777 0 -0.000846851-0.00392631 0.0170711 0.999846 uwb: 0.0 846.868 1133.59 +imu_odom_: 1691062582.781601532 0.347159 0.0502782 9.87129 -0.0596548 0.0106526 0.0426106 0.23 0 pose: 0.52068390 -1.18333 0.0320381 0 -0.00556053 -0.00259421 0.0173231 0.999831 uwb: 0.99920190 846.476 1132.52 +imu_odom_: 1691062582.805567970 0.337582 -0.335188 9.81623 -0.0660464 0.0276969 0.04048 0.23 0 pose: 0.0 -1.18333 0.0320381 0 -0.00556053 -0.00259421 0.0173231 0.999831 uwb: 0.0 846.476 1132.52 +imu_odom_: 1691062582.830621366 0.45011 -0.215478 9.53371 -0.0681769 0.00319579 0.0585895 0.2 0 pose: 0.41992086 -1.18333 0.0320381 0 -0.00429254 -0.00216495 0.0174868 0.999836 uwb: 0.0 846.476 1132.52 +imu_odom_: 1691062582.855557229 0.474052 -0.332794 9.38048 -0.0639159 0.0138484 0.0340885 0.2 0 pose: 0.0 -1.18333 0.0320381 0 -0.00429254 -0.00216495 0.0174868 0.999836 uwb: 0.0 846.476 1132.52 +imu_odom_: 1691062582.871610488 0.42138 -0.059855 10.1562 -0.0351537 -0.0255663 0.0383495 0.19 0.02 pose: 0.50070628 -1.16956 0.0288085 0 -0.00362565 0.000362731 0.0175961 0.999839 uwb: 0.100051137 846.885 1131.47 +imu_odom_: 1691062582.888700541 0.658405 -0.158017 9.75637 -0.0532632 -0.0436758 0.052198 0.19 0.02 pose: 0.0 -1.16956 0.0288085 0 -0.00362565 0.000362731 0.0175961 0.999839 uwb: 0.0 846.885 1131.47 +imu_odom_: 1691062582.915568838 0.687136 -0.0670376 10.2448 -0.0575243 -0.0149137 0.0468716 0.25 0.02 pose: 0.49854228 -1.16106 0.0340796 0 -0.00360591 -0.00204175 0.0176861 0.999835 uwb: 0.0 846.885 1131.47 +imu_odom_: 1691062582.931620347 0.588974 -0.418985 9.55765 -0.0628506 -0.02024 0.0575243 0.25 0.02 pose: 0.0 -1.16106 0.0340796 0 -0.00360591 -0.00204175 0.0176861 0.999835 uwb: 0.49817773 846.272 1129.47 +imu_odom_: 1691062582.957550717 0.679953 -0.208296 10.6255 -0.0330232 -0.0298274 0.04048 0.23 0.02 pose: 0.69050535 -1.14729 0.0308586 0 -0.00155495 -0.00670195 0.0180227 0.999814 uwb: 0.0 846.272 1129.47 +imu_odom_: 1691062582.982719020 0.543484 -0.258574 10.1107 -0.0383495 -0.0255663 0.0426106 0.23 0.02 pose: 0.7073828 -1.14729 0.0308586 0 -0.00125625 -0.00746439 0.0180239 0.999809 uwb: 0.50061295 846.482 1128.83 +imu_odom_: 1691062583.7561558 0.526724 0.0814029 9.91199 -0.0511327 -0.0127832 0.0575243 0.21 0 pose: 0.44024845 -1.1388 0.0361371 0 -0.00163138 -0.0076614 0.018082 0.999806 uwb: 0.0 846.482 1128.83 +imu_odom_: 1691062583.22569567 0.430956 -0.215478 10.0556 -0.0468716 0.0170442 0.0511327 0.21 0 pose: 0.0 -1.1388 0.0361371 0 -0.00163138 -0.0076614 0.018082 0.999806 uwb: 0.49978763 847.161 1128.72 +imu_odom_: 1691062583.38610870 0.373495 -0.258574 10.2352 -0.0436758 0 0.0340885 0.18 0 pose: 0.0 -1.1388 0.0361371 0 -0.00163138 -0.0076614 0.018082 0.999806 uwb: 0.0 847.161 1128.72 +imu_odom_: 1691062583.64885093 0.651223 -0.423774 9.94791 -0.0703074 -0.0149137 0.0607201 0.18 0 pose: 0.46931667 -1.12503 0.0329282 0 0.000513894 -0.00520928 0.0183567 0.999818 uwb: 0.0 847.161 1128.72 +imu_odom_: 1691062583.90555612 0.342371 -0.289698 9.91918 -0.0585895 0.0213053 0.0383495 0.21 0 pose: 0.35234406 -1.12503 0.0329282 0 -0.00202114 -0.00613742 0.0186197 0.999806 uwb: 0.50030972 847.148 1127.82 +imu_odom_: 1691062583.115537851 0.924162 -0.246603 10.0916 -0.0852212 0 0.0490022 0.21 0 pose: 0.6903217 -1.12503 0.0329282 0 -0.00217167 -0.00537261 0.0186175 0.99981 uwb: 0.0 847.148 1127.82 +imu_odom_: 1691062583.140595625 0.861913 -0.059855 10.3406 -0.0532632 -0.0191748 0.036219 0.21 0 pose: 0.43749541 -1.11654 0.0382168 0 -0.00279505 -0.00574254 0.0187206 0.999804 uwb: 0.49844612 847.38 1127.17 +imu_odom_: 1691062583.165554241 0.861913 -0.258574 9.59357 -0.0617853 0.0213053 0.04048 0.18 0 pose: 0.0 -1.11654 0.0382168 0 -0.00279505 -0.00574254 0.0187206 0.999804 uwb: 0.0 847.38 1127.17 +imu_odom_: 1691062583.180539209 0.0814029 -0.169988 9.72285 -0.00958738 0.0916127 0.0245011 0.18 0 pose: 0.31019856 -1.10276 0.0350206 0 -0.0014346 -0.00854943 0.0186668 0.999788 uwb: 0.50003266 847.487 1126.63 +imu_odom_: 1691062583.206543953 0.253785 -0.440533 9.53371 -0.0798948 0.00639159 0.0575243 0.18 0.02 pose: 0.0 -1.10276 0.0350206 0 -0.0014346 -0.00854943 0.0186668 0.999788 uwb: 0.0 847.487 1126.63 +imu_odom_: 1691062583.230611012 0.555455 -0.387861 9.73482 -0.056459 -0.00958738 0.0458064 0.18 0.02 pose: 0.41999675 -1.10276 0.0350206 0 -0.00159094 -0.00730208 0.0186375 0.999798 uwb: 0.50177378 846.794 1124.74 +imu_odom_: 1691062583.246537700 0.368707 -0.112527 9.94551 -0.0415453 0.0117179 0.056459 0.18 0.02 pose: 0.0 -1.10276 0.0350206 0 -0.00159094 -0.00730208 0.0186375 0.999798 uwb: 0.0 846.794 1124.74 +imu_odom_: 1691062583.272711888 0.320823 -0.047884 10.1442 -0.0372843 -0.0266316 0.0351537 0.23 -0.05 pose: 0.49064756 -1.08899 0.0318228 0 -0.00452096 -0.00617615 0.01895 0.999791 uwb: 0.50094843 846.672 1123.95 +imu_odom_: 1691062583.299547234 0.342371 -0.0287304 9.97424 -0.0703074 -0.0213053 0.0394148 0.23 0.02 pose: 0.35089750 -1.0831 0.0354948 0 -0.00150421 -0.0041679 0.0189635 0.99981 uwb: 0.0 846.672 1123.95 +imu_odom_: 1691062583.315694113 0.397437 -0.215478 9.77074 -0.0553937 -0.0532632 0.0298274 0.23 0.02 pose: 0.0 -1.0831 0.0354948 0 -0.00150421 -0.0041679 0.0189635 0.99981 uwb: 0.0 846.672 1123.95 +imu_odom_: 1691062583.342542291 0.790087 -0.31364 9.88805 -0.0660464 -0.02024 0.0458064 0.25 0.02 pose: 0.7990175 -1.0805 0.0371173 0 -0.000902626-0.00378635 0.0189607 0.999813 uwb: 0.49897399 846.776 1122.98 +imu_odom_: 1691062583.367814716 0.964863 -0.100556 9.73004 -0.056459 0 0.0447411 0.25 0.02 pose: 0.0 -1.0805 0.0371173 0 -0.000902626-0.00378635 0.0189607 0.999813 uwb: 0.0 846.776 1122.98 +imu_odom_: 1691062583.393595185 0.414197 -0.107739 10.0509 -0.0617853 0.036219 0.0266316 0.23 0 pose: 0.42991849 -1.0805 0.0371173 0 -1.04833e-05-0.00252974 0.0189004 0.999818 uwb: 0.49890108 846.895 1121.57 +imu_odom_: 1691062583.418809572 0.368707 -0.241814 9.77313 -0.072438 0.00213053 0.0340885 0.23 0 pose: 0.0 -1.0805 0.0371173 0 -1.04833e-05-0.00252974 0.0189004 0.999818 uwb: 0.0 846.895 1121.57 +imu_odom_: 1691062583.444527337 0.462081 -0.428562 9.62708 -0.0383495 0.0245011 0.0308927 0.21 -0.02 pose: 0.50929237 -1.06673 0.0339263 0 0.000493328 -0.00621426 0.0189731 0.999801 uwb: 0.49960978 846.858 1120.3 +imu_odom_: 1691062583.469526200 0.792481 -0.426168 9.84735 -0.072438 -0.0106526 0.0468716 0.21 -0.02 pose: 0.52104270 -1.05824 0.0392208 0 -0.000435974-0.00200796 0.0187403 0.999822 uwb: 0.0 846.858 1120.3 +imu_odom_: 1691062583.495640893 0.502782 -0.217872 9.82341 -0.0383495 -0.02024 0.0340885 0.18 0 pose: 0.0 -1.05824 0.0392208 0 -0.000435974-0.00200796 0.0187403 0.999822 uwb: 0.49970602 846.962 1119.36 +imu_odom_: 1691062583.511521501 0.155623 -0.0622492 9.87129 -0.0500674 0.0117179 0.0490022 0.18 0 pose: 0.25823633 -1.04447 0.0360254 0 -0.00246421 -0.00270127 0.0186953 0.999819 uwb: 0.0 846.962 1119.36 +imu_odom_: 1691062583.538535041 0.344765 -0.0263362 10.0054 -0.0468716 -0.0213053 0.0266316 0.19 0 pose: 0.49970602 -1.03598 0.0413153 0 -0.000262379-0.0044733 0.0187034 0.999815 uwb: 0.50115550 846.527 1117.98 +imu_odom_: 1691062583.564630486 0.634463 -0.217872 10.2256 -0.0543285 -0.056459 0.0479369 0.19 -0.02 pose: 0.36013387 -1.03598 0.0413153 0 0.00244617 -0.00223059 0.018562 0.999822 uwb: 0.0 846.527 1117.98 +imu_odom_: 1691062583.581522807 0.591368 -0.0335188 9.67976 -0.0543285 -0.0191748 0.0276969 0.19 -0.02 pose: 0.0 -1.03598 0.0413153 0 0.00244617 -0.00223059 0.018562 0.999822 uwb: 0.49726204 846.06 1116.43 +imu_odom_: 1691062583.607521717 0.387861 -0.347159 9.68215 -0.0713727 0.015979 0.0447411 0.19 -0.02 pose: 0.7013751 -1.03598 0.0413153 0 0.00227665 -0.00309275 0.0185929 0.99982 uwb: 0.0 846.06 1116.43 +imu_odom_: 1691062583.633518295 0.40462 -0.225055 9.89045 -0.0394148 -0.00426106 0.0436758 0.19 -0.02 pose: 0.0 -1.03598 0.0413153 0 0.00227665 -0.00309275 0.0185929 0.99982 uwb: 0.50139172 846.331 1115.8 +imu_odom_: 1691062583.659514872 0.469264 -0.208296 9.86411 -0.052198 -0.0223706 0.0436758 0.17 -0.02 pose: 0.43145837 -1.02221 0.0381157 0 0.00266593 -0.00588983 0.0185904 0.999806 uwb: 0.0 846.331 1115.8 +imu_odom_: 1691062583.676556515 0.749385 -0.138864 10.0652 -0.0500674 0.00426106 0.0458064 0.17 -0.02 pose: 0.0 -1.02221 0.0381157 0 0.00266593 -0.00588983 0.0185904 0.999806 uwb: 0.49972061 846.622 1115.16 +imu_odom_: 1691062583.701566752 0.464475 -0.347159 10.2304 -0.0660464 0.0319579 0.0468716 0.2 0 pose: 0.51951741 -1.01372 0.0434039 0 0.000386636 -0.00294001 0.0187156 0.99982 uwb: 0.0 846.622 1115.16 +imu_odom_: 1691062583.727568578 0.562637 -0.11971 9.85453 -0.0809601 0.00745685 0.0649811 0.2 0 pose: 0.0 -1.01372 0.0434039 0 0.000386636 -0.00294001 0.0187156 0.99982 uwb: 0.50147046 846.512 1113.79 +imu_odom_: 1691062583.753640108 0.220267 -0.335188 9.8665 -0.0649811 0 0.0447411 0.19 0.02 pose: 0.42897939 -0.999943 0.0402085 0 0.000319407 -0.00614203 0.0188354 0.999804 uwb: 0.0 846.512 1113.79 +imu_odom_: 1691062583.778496357 0.442927 -0.588974 9.67736 -0.0703074 -0.00852212 0.0553937 0.23 0 pose: 0.51109181 -0.999943 0.0402085 0 0.000266264 -0.00537051 0.0192451 0.9998 uwb: 0.50008225 846.383 1113.05 +imu_odom_: 1691062583.803662915 0.586579 -0.169988 10.07 -0.0213053 -0.0308927 0.0298274 0.23 0 pose: 0.0 -0.999943 0.0402085 0 0.000266264 -0.00537051 0.0192451 0.9998 uwb: 0.0 846.383 1113.05 +imu_odom_: 1691062583.818616386 0.600945 -0.213084 9.62948 -0.056459 -0.0383495 0.0458064 0.23 0 pose: 0.25981412 -0.991462 0.0455078 0 -0.00136429 -0.00357488 0.019355 0.999805 uwb: 0.0 846.383 1113.05 +imu_odom_: 1691062583.833483530 0.430956 0.011971 10.0604 -0.0511327 -0.0106526 0.04048 0.19 0 pose: 0.48871103 -0.977682 0.0423295 0 -0.00090198 -0.00627227 0.0193866 0.999792 uwb: 0.49781033 846.492 1112.56 +imu_odom_: 1691062583.858495225 0.557849 -0.272939 9.90242 -0.0607201 0.00532632 0.0436758 0.19 0 pose: 0.0 -0.977682 0.0423295 0 -0.00090198 -0.00627227 0.0193866 0.999792 uwb: 0.0 846.492 1112.56 +imu_odom_: 1691062583.885764537 0.328006 -0.447716 9.84496 -0.0245011 -0.0585895 0.0287621 0.18 0 pose: 0.31029189 -0.977682 0.0423295 0 1.81567e-05 -0.00688663 0.0194294 0.999788 uwb: 0.50319992 846.426 1111.78 +imu_odom_: 1691062583.910518127 0.591368 -0.181959 9.8282 -0.0596548 -0.0245011 0.0500674 0.19 0.02 pose: 0.45229343 -0.966296 0.0376557 0 -0.0031479 -0.00615709 0.0193519 0.999789 uwb: 0.0 846.426 1111.78 +imu_odom_: 1691062583.937646283 0.593762 -0.0933739 9.79228 -0.0372843 -0.0255663 0.0340885 0.19 0.02 pose: 0.0 -0.966296 0.0376557 0 -0.0031479 -0.00615709 0.0193519 0.999789 uwb: 0.49726787 847.159 1111.86 +imu_odom_: 1691062583.963613696 0.555455 -0.268151 9.991 -0.0596548 -0.00319579 0.0447411 0.19 0 pose: 0.7863310 -0.963901 0.0391529 0 -0.00251848 -0.00668687 0.0193878 0.999787 uwb: 0.0 847.159 1111.86 +imu_odom_: 1691062583.990466832 0.723049 -0.234632 9.90002 -0.0468716 -0.0149137 0.056459 0.19 0 pose: 0.0 -0.963901 0.0391529 0 -0.00251848 -0.00668687 0.0193878 0.999787 uwb: 0.50041472 847.349 1111.52 +imu_odom_: 1691062584.6472848 0.514753 -0.308852 9.39245 -0.0660464 0.0276969 0.0553937 0.18 0 pose: 0.52156183 -0.955422 0.0444544 0 0.000906038 -0.00857626 0.0193988 0.999775 uwb: 0.0 847.349 1111.52 +imu_odom_: 1691062584.33469477 0.371101 -0.162806 9.5792 -0.0447411 0.00106526 0.0426106 0.18 0 pose: 0.0 -0.955422 0.0444544 0 0.000906038 -0.00857626 0.0193988 0.999775 uwb: 0.50221419 847.075 1110.29 +imu_odom_: 1691062584.59589133 -0.0167594 -0.435745 9.83777 -0.0298274 0.0266316 0.0255663 0.26 0 pose: 0.52696892 -0.941643 0.0412802 0 -0.00127467 -0.0102585 0.0197526 0.999751 uwb: 0.0 847.075 1110.29 +imu_odom_: 1691062584.86508768 0.562637 -0.385466 9.87848 -0.0511327 -0.02024 0.0575243 0.25 -0.02 pose: 0.43021895 -0.941643 0.0412802 0 -0.000887092-0.00607796 0.019806 0.999785 uwb: 0.49872618 846.907 1109 +imu_odom_: 1691062584.111543507 0.220267 -0.208296 9.91918 -0.02024 0.0245011 0.036219 0.25 -0.02 pose: 0.0 -0.941643 0.0412802 0 -0.000887092-0.00607796 0.019806 0.999785 uwb: 0.0 846.907 1109 +imu_odom_: 1691062584.128694811 0.536301 -0.162806 10.0748 -0.0660464 0.015979 0.0585895 0.21 0.02 pose: 0.25167145 -0.933169 0.0465883 0 -0.00191808 -0.0045237 0.0197523 0.999793 uwb: 0.49914906 846.419 1107.94 +imu_odom_: 1691062584.154511448 0.679953 -0.251391 9.83538 -0.0671117 0 0.0415453 0.21 0.02 pose: 0.0 -0.933169 0.0465883 0 -0.00191808 -0.0045237 0.0197523 0.999793 uwb: 0.0 846.419 1107.94 +imu_odom_: 1691062584.171462101 0.543484 -0.160412 10.2017 -0.0713727 -0.00958738 0.0628506 0.23 0 pose: 0.51870381 -0.919386 0.0434218 0 -0.00202311 -0.00321739 0.0199644 0.999793 uwb: 0.49957195 846.065 1106.39 +imu_odom_: 1691062584.196591624 0.797269 -0.316035 9.43315 -0.0713727 0.0458064 0.0234358 0.23 0 pose: 0.0 -0.919386 0.0434218 0 -0.00202311 -0.00321739 0.0199644 0.999793 uwb: 0.0 846.065 1106.39 +imu_odom_: 1691062584.223473054 0.138864 -0.47884 9.39485 -0.0436758 0.0213053 0.056459 0.23 0.02 pose: 0.43092765 -0.919386 0.0434218 0 -0.000842769-0.00636235 0.0201561 0.999776 uwb: 0.49970027 846.187 1106.11 +imu_odom_: 1691062584.249462344 0.19393 0.0023942 10.161 -0.00639159 -0.00319579 0.0276969 0.23 0.02 pose: 0.0 -0.919386 0.0434218 0 -0.000842769-0.00636235 0.0201561 0.999776 uwb: 0.0 846.187 1106.11 +imu_odom_: 1691062584.276472972 0.677559 -0.0957681 10.2615 -0.052198 -0.052198 0.0543285 0.23 -0.02 pose: 0.41842777 -0.905601 0.0402656 0 -0.00129877 -0.00761557 0.0201266 0.999768 uwb: 0.50014065 846.347 1105.21 +imu_odom_: 1691062584.301579164 0.54109 -0.0622492 10.0078 -0.0468716 0.00532632 0.0415453 0.18 0 pose: 0.53003419 -0.89713 0.0455799 0 0.000402211 -0.00434513 0.0202018 0.999786 uwb: 0.0 846.347 1105.21 +imu_odom_: 1691062584.328581626 0.665588 -0.0670376 9.89524 -0.052198 -0.00106526 0.036219 0.22 0 pose: 0.0 -0.89713 0.0455799 0 0.000402211 -0.00434513 0.0202018 0.999786 uwb: 0.49902365 846.491 1104.32 +imu_odom_: 1691062584.344568978 0.186748 -0.323217 9.83777 -0.0585895 0.0117179 0.0543285 0.22 0 pose: 0.52037201 -0.883345 0.0424274 0 0.0044568 -0.00711305 0.0203432 0.999758 uwb: 0.0 846.491 1104.32 +imu_odom_: 1691062584.371464699 0.758962 -0.184354 10.4052 -0.0735032 -0.0138484 0.0255663 0.19 -0.02 pose: 0.0 -0.883345 0.0424274 0 0.0044568 -0.00711305 0.0203432 0.999758 uwb: 0.50218216 846.162 1102.99 +imu_odom_: 1691062584.396532977 0.826 -0.560243 9.79707 -0.0745685 -0.015979 0.0479369 0.2 -0.02 pose: 0.62948194 -0.874876 0.0477449 0 0.00366299 -0.0100421 0.0202546 0.999738 uwb: 0.0 846.162 1102.99 +imu_odom_: 1691062584.423455528 -0.318429 -0.0622492 8.44914 -0.0191748 0.108657 0.0255663 0.2 -0.02 pose: 0.0 -0.874876 0.0477449 0 0.00366299 -0.0100421 0.0202546 0.999738 uwb: 0.49936196 845.635 1101.98 +imu_odom_: 1691062584.439512583 0.263362 -0.222661 9.15543 -0.0639159 0.203466 0.0596548 0.19 0 pose: 0.8064545 -0.874876 0.0477449 0 0.00288765 -0.0104941 0.0202957 0.999735 uwb: 0.0 845.635 1101.98 +imu_odom_: 1691062584.466549751 -0.37589 -0.426168 9.73722 -0.036219 0.0276969 0.0255663 0.19 0 pose: 0.0 -0.874876 0.0477449 0 0.00288765 -0.0104941 0.0202957 0.999735 uwb: 0.0 845.635 1101.98 +imu_odom_: 1691062584.491627362 1.29287 -0.442927 9.07402 -0.0340885 -0.0479369 0.0426106 0.18 0 pose: 0.51996371 -0.861089 0.0445912 0 0.0018595 -0.00561289 0.0202765 0.999777 uwb: 0.49908199 845.305 1100.65 +imu_odom_: 1691062584.516446867 0.667982 -0.0670376 10.1873 -0.0255663 0.0298274 0.0372843 0.18 0 pose: 0.0 -0.861089 0.0445912 0 0.0018595 -0.00561289 0.0202765 0.999777 uwb: 0.0 845.305 1100.65 +imu_odom_: 1691062584.530440248 0.225055 -0.0909797 10.1969 -0.0553937 0.0170442 0.0490022 0.2 -0.02 pose: 0.42967066 -0.852619 0.0499071 0 0.00101682 -0.00191208 0.0201818 0.999794 uwb: 0.49988109 845.768 1099.97 +imu_odom_: 1691062584.555551689 -0.0646434 0.0790087 10.1131 -0.0447411 0.0255663 0.0276969 0.2 -0.02 pose: 0.0 -0.852619 0.0499071 0 0.00101682 -0.00191208 0.0201818 0.999794 uwb: 0.0 845.768 1099.97 +imu_odom_: 1691062584.582609272 0.42138 -0.28491 9.95748 -0.0777643 0.00213053 0.0511327 0.24 0 pose: 0.47944850 -0.847304 0.0414365 0 0.00275994 -0.00484631 0.0202046 0.99978 uwb: 0.50088726 846.099 1099.56 +imu_odom_: 1691062584.607492356 0.414197 0.0742203 10.2831 -0.0426106 -0.0308927 0.0330232 0.24 0 pose: 0.0 -0.847304 0.0414365 0 0.00275994 -0.00484631 0.0202046 0.99978 uwb: 0.0 846.099 1099.56 +imu_odom_: 1691062584.624495213 0.512359 -0.203507 10.0556 -0.0692422 0.0181095 0.0575243 0.23 -0.02 pose: 0.40003378 -0.838834 0.0467516 0 0.00324666 -0.00122959 0.020122 0.999792 uwb: 0.50040604 845.826 1098.79 +imu_odom_: 1691062584.640486357 0.160412 -0.181959 10.0556 -0.0713727 0.00745685 0.0308927 0.23 -0.02 pose: 0.0 -0.838834 0.0467516 0 0.00324666 -0.00122959 0.020122 0.999792 uwb: 0.0 845.826 1098.79 +imu_odom_: 1691062584.667492319 0.0766145 -0.493206 10.0126 -0.0617853 0.00106526 0.0628506 0.25 0 pose: 0.52063157 -0.825047 0.0435951 0 0.00319803 -0.00176226 0.0202218 0.999789 uwb: 0.0 845.826 1098.79 +imu_odom_: 1691062584.683631034 0.201113 -0.337582 9.84496 -0.0298274 -0.0458064 0.04048 0.25 0 pose: 0.0 -0.825047 0.0435951 0 0.00319803 -0.00176226 0.0202218 0.999789 uwb: 0.50014649 845.648 1097.58 +imu_odom_: 1691062584.700503818 0.35913 -0.162806 9.83299 -0.0447411 -0.00532632 0.0383495 0.23 0 pose: 0.33999007 -0.825047 0.0435951 0 0.00170578 -0.0001878640.0203347 0.999792 uwb: 0.0 845.648 1097.58 +imu_odom_: 1691062584.717490052 0.840365 -0.37589 9.8689 -0.076699 -0.0223706 0.0713727 0.23 0 pose: 0.0 -0.825047 0.0435951 0 0.00170578 -0.0001878640.0203347 0.999792 uwb: 0.0 845.648 1097.58 +imu_odom_: 1691062584.744496305 0.723049 -0.138864 10.3765 -0.0468716 0.00532632 0.0479369 0.27 0.02 pose: 0.41977809 -0.816578 0.0489126 0 0.0002702 0.002202 0.0205561 0.999786 uwb: 0.49905865 845.563 1096.5 +imu_odom_: 1691062584.761679107 0.215478 -0.23942 9.39485 -0.0681769 -0.00958738 0.0617853 0.27 0.02 pose: 0.34010964 -0.802792 0.0457693 0 0.000738141 -0.0001585110.0208527 0.999782 uwb: 0.0 845.563 1096.5 +imu_odom_: 1691062584.786463615 0.306458 -0.174777 9.4571 -0.0436758 0.00639159 0.0383495 0.24 0 pose: 0.0 -0.802792 0.0457693 0 0.000738141 -0.0001585110.0208527 0.999782 uwb: 0.49971777 845.524 1095.41 +imu_odom_: 1691062584.809459761 0.277727 -0.339977 9.72285 -0.0958738 0.0255663 0.072438 0.24 0 pose: 0.44132476 -0.802792 0.0457693 0 0.000941956 0.00032251 0.0211219 0.999776 uwb: 0.0 845.524 1095.41 +imu_odom_: 1691062584.835597498 0.40462 -0.323217 9.42837 -0.0681769 0.0276969 0.0394148 0.18 0.02 pose: 0.40835439 -0.790721 0.0453701 0 -0.00107312 0.003558 0.0214827 0.999762 uwb: 0.49978193 845.554 1094.27 +imu_odom_: 1691062584.859421038 0.462081 -0.593762 10.1849 -0.0788296 -0.00426106 0.0500674 0.18 0.02 pose: 0.8022549 -0.788998 0.0426408 0 -0.00175635 0.00318705 0.0214793 0.999763 uwb: 0.0 845.554 1094.27 +imu_odom_: 1691062584.883490435 0.138864 -0.201113 10.2376 -0.0553937 -0.0138484 0.0543285 0.18 0 pose: 0.41938728 -0.780541 0.0479777 0 -0.00581729 0.001521 0.021589 0.999749 uwb: 0.50112640 845.409 1093.26 +imu_odom_: 1691062584.908447305 0.21069 -0.0837971 9.96227 -0.0617853 -0.00532632 0.0436758 0.18 0 pose: 0.0 -0.780541 0.0479777 0 -0.00581729 0.001521 0.021589 0.999749 uwb: 0.0 845.409 1093.26 +imu_odom_: 1691062584.935464932 0.509965 -0.186748 10.3573 -0.0628506 -0.0255663 0.0500674 0.21 0 pose: 0.49026267 -0.774587 0.0517382 0 -0.00259182 0.00475676 0.0218462 0.999747 uwb: 0.49975568 845.512 1092.46 +imu_odom_: 1691062584.961449848 1.10852 0.0335188 10.4746 -0.0340885 -0.0255663 0.0276969 0.18 -0.02 pose: 0.0 -0.774587 0.0517382 0 -0.00259182 0.00475676 0.0218462 0.999747 uwb: 0.0 845.512 1092.46 +imu_odom_: 1691062584.978451247 0.287304 -0.21069 9.42358 -0.0735032 -0.0149137 0.0585895 0.23 0 pose: 0.35031719 -0.766743 0.044866 0 -0.00127593 0.00113698 0.0219394 0.999758 uwb: 0.49780167 845.078 1091.07 +imu_odom_: 1691062585.4784970 0.383072 -0.354342 9.37569 -0.0703074 0.0106526 0.0394148 0.23 0 pose: 0.0 -0.766743 0.044866 0 -0.00127593 0.00113698 0.0219394 0.999758 uwb: 0.0 845.078 1091.07 +imu_odom_: 1691062585.31392842 0.505177 -0.395043 9.67497 -0.0617853 -0.0255663 0.0511327 0.18 0.02 pose: 0.42997105 -0.75829 0.0502102 0 -0.00130818 0.000947941 0.0219919 0.999757 uwb: 0.50033317 844.673 1089.86 +imu_odom_: 1691062585.47453982 0.402226 -0.301669 9.62708 -0.0585895 0.0255663 0.0426106 0.18 0.02 pose: 0.0 -0.75829 0.0502102 0 -0.00130818 0.000947941 0.0219919 0.999757 uwb: 0.0 844.673 1089.86 +imu_odom_: 1691062585.64398805 0.462081 -0.0861913 10.2496 -0.0639159 -0.0181095 0.0500674 0.2 0 pose: 0.51933090 -0.744494 0.0471044 0 -0.0048441 -0.0004387910.0221477 0.999743 uwb: 0.0 844.673 1089.86 +imu_odom_: 1691062585.82468792 0.59855 -0.428562 10.4076 -0.0106526 -0.0181095 0.036219 0.2 0 pose: 0.0 -0.744494 0.0471044 0 -0.0048441 -0.0004387910.0221477 0.999743 uwb: 0.50056653 844.493 1088.88 +imu_odom_: 1691062585.105420611 0.222661 -0.258574 9.88805 0.0170442 -0.0628506 0.0330232 0.19 0.02 pose: 0.44059573 -0.7392 0.0504549 0 -0.00357582 -0.00166559 0.0222184 0.999745 uwb: 0.0 844.493 1088.88 +imu_odom_: 1691062585.131407281 0.481235 -0.124498 10.0413 -0.0255663 -0.0607201 0.0532632 0.19 0.02 pose: 0.0 -0.7392 0.0504549 0 -0.00357582 -0.00166559 0.0222184 0.999745 uwb: 0.50029239 844.789 1087.81 +imu_odom_: 1691062585.156474104 0.459687 0.201113 10.0556 -0.1012 -0.0245011 0.0830906 0.25 0 pose: 0.5968499 -0.736044 0.0524532 0 -0.00329439 -0.00124137 0.0222019 0.999747 uwb: 0.0 844.789 1087.81 +imu_odom_: 1691062585.179448964 0.383072 -0.0430956 10.082 -0.0660464 -0.0426106 0.0500674 0.18 0 pose: 0.0 -0.736044 0.0524532 0 -0.00329439 -0.00124137 0.0222019 0.999747 uwb: 0.50016698 844.719 1086.96 +imu_odom_: 1691062585.205416385 0.603339 -0.0287304 9.77792 -0.0585895 0.0181095 0.0319579 0.18 0.02 pose: 0.74136553 -0.722249 0.0493601 0 0.00264909 -0.00212381 0.0229 0.999732 uwb: 0.0 844.719 1086.96 +imu_odom_: 1691062585.222508780 0.344765 -0.292093 10.0509 -0.0639159 -0.0213053 0.0479369 0.18 0.02 pose: 0.0 -0.722249 0.0493601 0 0.00264909 -0.00212381 0.0229 0.999732 uwb: 0.50144438 844.723 1085.89 +imu_odom_: 1691062585.248419622 0.25618 -0.232238 9.8689 -0.0745685 -0.0266316 0.0649811 0.25 0.02 pose: 0.49931246 -0.713808 0.0547218 0 0.00485028 -0.00316246 0.0229197 0.999721 uwb: 0.0 844.723 1085.89 +imu_odom_: 1691062585.275443670 0.469264 -0.198719 10.2496 -0.0511327 -0.0127832 0.0276969 0.25 -0.02 pose: 0.35914532 -0.709958 0.0486591 0 0.00258402 -0.0006628780.0232821 0.999725 uwb: 0.49881375 844.524 1084.59 +imu_odom_: 1691062585.291622927 0.316035 -0.201113 9.89284 -0.056459 -0.00958738 0.0447411 0.25 -0.02 pose: 0.0 -0.709958 0.0486591 0 0.00258402 -0.0006628780.0232821 0.999725 uwb: 0.0 844.524 1084.59 +imu_odom_: 1691062585.318579313 0.325611 -0.497994 9.78031 -0.0575243 0.0298274 0.0298274 0.25 0.02 pose: 0.7071498 -0.708445 0.0462813 0 0.00220705 -0.00128064 0.0232418 0.999727 uwb: 0.0 844.524 1084.59 +imu_odom_: 1691062585.344526319 0.174777 -0.292093 10.3262 -0.0415453 0.00745685 0.0617853 0.25 0.02 pose: 0.0 -0.708445 0.0462813 0 0.00220705 -0.00128064 0.0232418 0.999727 uwb: 0.49951661 844.231 1083.35 +imu_odom_: 1691062585.371403671 0.248997 -0.129287 10.1778 -0.0266316 0.0170442 0.0383495 0.25 0 pose: 0.42934701 -0.700008 0.051648 0 0.000357761 -0.00112631 0.023136 0.999732 uwb: 0.50100108 844.025 1082.76 +imu_odom_: 1691062585.396375127 0.399832 -0.0047884 10.1969 -0.0394148 -0.00213053 0.0617853 0.25 0 pose: 0.0 -0.700008 0.051648 0 0.000357761 -0.00112631 0.023136 0.999732 uwb: 0.0 844.025 1082.76 +imu_odom_: 1691062585.413497561 0.746991 -0.31364 9.73482 -0.0553937 0.0106526 0.0308927 0.23 -0.02 pose: 0.53000801 -0.686203 0.0485745 0 -0.00135076 0.00306152 0.0233295 0.999722 uwb: 0.0 844.025 1082.76 +imu_odom_: 1691062585.439393821 0.316035 -0.486023 9.97424 -0.0713727 0.0117179 0.0479369 0.23 -0.02 pose: 0.0 -0.686203 0.0485745 0 -0.00135076 0.00306152 0.0233295 0.999722 uwb: 0.49986950 844.162 1081.64 +imu_odom_: 1691062585.466435076 0.624887 -0.153229 9.91199 -0.0490022 -0.0607201 0.0308927 0.25 0 pose: 0.52074540 -0.677767 0.0539441 0 0.00270693 0.00303338 0.02358 0.999714 uwb: 0.0 844.162 1081.64 +imu_odom_: 1691062585.492384998 0.792481 -0.258574 10.1155 -0.0649811 -0.0149137 0.0436758 0.2 -0.02 pose: 0.42958032 -0.677767 0.0539441 0 -0.0002013880.00179057 0.0236109 0.99972 uwb: 0.49735262 844.576 1081.25 +imu_odom_: 1691062585.519419837 0.177171 -0.201113 9.74679 -0.0671117 0.0426106 0.0468716 0.25 0 pose: 0.0 -0.677767 0.0539441 0 -0.0002013880.00179057 0.0236109 0.99972 uwb: 0.50125773 843.9 1080.05 +imu_odom_: 1691062585.544638899 0.423774 -0.208296 10.0389 -0.0607201 0.0138484 0.0276969 0.2 0 pose: 0.52943932 -0.66396 0.0508824 0 -3.57441e-05-0.00255756 0.0236044 0.999718 uwb: 0.0 843.9 1080.05 +imu_odom_: 1691062585.561633010 0.574608 -0.217872 9.83059 -0.0468716 -0.0319579 0.0298274 0.2 0 pose: 0.0 -0.66396 0.0508824 0 -3.57441e-05-0.00255756 0.0236044 0.999718 uwb: 0.0 843.9 1080.05 +imu_odom_: 1691062585.587377615 0.363919 -0.308852 10.3741 -0.0383495 -0.0308927 0.0383495 0.18 0 pose: 0.62229884 -0.652524 0.0515434 0 0.000766912 -0.00406372 0.0234455 0.999717 uwb: 0.50072110 843.707 1078.78 +imu_odom_: 1691062585.614368124 0.648829 0.0957681 9.92157 -0.0671117 0.015979 0.0596548 0.18 0 pose: 0.7962180 -0.650154 0.0478209 0 0.000297401 -0.00358228 0.0234426 0.999719 uwb: 0.0 843.707 1078.78 +imu_odom_: 1691062585.630403600 0.399832 -0.311246 9.97664 -0.0671117 -0.0234358 0.0458064 0.2 0 pose: 0.44772934 -0.641718 0.053191 0 0.0014269 -0.00357805 0.0236993 0.999712 uwb: 0.50019614 843.502 1077.52 +imu_odom_: 1691062585.657355612 0.663194 -0.227449 9.77553 -0.056459 -0.0415453 0.0500674 0.2 0 pose: 0.0 -0.641718 0.053191 0 0.0014269 -0.00357805 0.0236993 0.999712 uwb: 0.0 843.502 1077.52 +imu_odom_: 1691062585.683500936 0.94571 -0.316035 10.0604 -0.0351537 0.0276969 0.0170442 0.18 0.02 pose: 0.42987488 -0.629512 0.0526447 0 -0.00013366 -0.00613359 0.0238936 0.999696 uwb: 0.49846378 843.184 1076.65 +imu_odom_: 1691062585.710377704 0.651223 -0.177171 10.0221 -0.0649811 -0.00639159 0.0575243 0.18 0.02 pose: 0.0 -0.629512 0.0526447 0 -0.00013366 -0.00613359 0.0238936 0.999696 uwb: 0.0 843.184 1076.65 +imu_odom_: 1691062585.735353243 0.347159 -0.0814029 9.77792 -0.0479369 -0.0138484 0.0287621 0.2 0 pose: 0.33047960 -0.62791 0.0501337 0 -6.96183e-05-0.00887049 0.0236614 0.999681 uwb: 0.50007365 843.215 1075.79 +imu_odom_: 1691062585.762353960 0.433351 -0.42138 9.45949 -0.0692422 0.0106526 0.04048 0.23 0 pose: 0.28045678 -0.619477 0.0555084 0 0.00123356 -0.00989272 0.0237827 0.999667 uwb: 0.0 843.215 1075.79 +imu_odom_: 1691062585.779465020 0.227449 -0.177171 10.319 -0.0245011 -0.0170442 0.0276969 0.23 0 pose: 0.0 -0.619477 0.0555084 0 0.00123356 -0.00989272 0.0237827 0.999667 uwb: 0.49963327 842.991 1074.39 +imu_odom_: 1691062585.806402158 0.68953 -0.328006 9.94551 -0.0617853 -0.0234358 0.0660464 0.26 0 pose: 0.23926495 -0.619477 0.0555084 0 0.00129644 -0.00805347 0.0236913 0.999686 uwb: 0.0 842.991 1074.39 +imu_odom_: 1691062585.831346199 0.756568 -0.138864 9.95509 -0.0532632 0.0266316 0.0458064 0.26 0 pose: 0.0 -0.619477 0.0555084 0 0.00129644 -0.00805347 0.0236913 0.999686 uwb: 0.50078235 843.121 1073.49 +imu_odom_: 1691062585.858347208 0.191536 -0.445322 9.99579 -0.0575243 0.0340885 0.04048 0.23 0 pose: 0.44035658 -0.60567 0.052449 0 -0.000486604-0.00608856 0.0237062 0.9997 uwb: 0.0 843.121 1073.49 +imu_odom_: 1691062585.874463761 0.0790087 0.0335188 10.0173 -0.0426106 -0.0234358 0.0394148 0.23 0 pose: 0.0 -0.60567 0.052449 0 -0.000486604-0.00608856 0.0237062 0.9997 uwb: 0.50129564 843.084 1072.51 +imu_odom_: 1691062585.901325655 0.545878 -0.241814 10.161 -0.0681769 -0.0223706 0.0639159 0.23 0.02 pose: 0.52070456 -0.597237 0.0578236 0 -0.000620887-0.0090276 0.0240454 0.99967 uwb: 0.0 843.084 1072.51 +imu_odom_: 1691062585.927452897 0.466869 -0.0263362 9.77074 -0.0660464 0.0170442 0.0479369 0.23 0.02 pose: 0.0 -0.597237 0.0578236 0 -0.000620887-0.0090276 0.0240454 0.99967 uwb: 0.49768801 842.861 1071.45 +imu_odom_: 1691062585.954448073 0.232238 -0.232238 9.59117 -0.0415453 -0.0287621 0.0298274 0.25 0 pose: 0.88971038 -0.583428 0.0547751 0 0.000515141 -0.00710675 0.0244787 0.999675 uwb: 0.0 842.861 1071.45 +imu_odom_: 1691062585.980393329 0.464475 -0.543484 9.30147 -0.0756338 -0.00319579 0.052198 0.18 0.02 pose: 0.6906136 -0.583428 0.0547751 0 0.000494063 -0.00650259 0.0244456 0.99968 uwb: 0.50019906 842.836 1070.47 +imu_odom_: 1691062586.7348842 0.471658 -0.208296 9.88326 -0.0468716 -0.0255663 0.0415453 0.18 0.02 pose: 0.0 -0.583428 0.0547751 0 0.000494063 -0.00650259 0.0244456 0.99968 uwb: 0.0 842.836 1070.47 +imu_odom_: 1691062586.23352823 0.464475 -0.172383 9.99819 -0.0735032 0.00213053 0.0585895 0.18 0 pose: 0.28064343 -0.575003 0.0601616 0 -0.000445518-0.00470051 0.024403 0.999691 uwb: 0.50279764 843.261 1069.79 +imu_odom_: 1691062586.50430829 0.76375 -0.179565 10.4507 -0.0639159 0.0426106 0.0372843 0.18 0 pose: 0.0 -0.575003 0.0601616 0 -0.000445518-0.00470051 0.024403 0.999691 uwb: 0.0 843.261 1069.79 +imu_odom_: 1691062586.66352275 0.296881 -0.402226 9.82102 -0.0628506 -0.0330232 0.0585895 0.2 0.02 pose: 0.52934018 -0.561191 0.0571233 0 0.000874115 -0.00356874 0.0246154 0.99969 uwb: 0.0 843.261 1069.79 +imu_odom_: 1691062586.93385952 0.440533 -0.253785 10.1227 -0.0383495 -0.00745685 0.0415453 0.2 0.02 pose: 0.0 -0.561191 0.0571233 0 0.000874115 -0.00356874 0.0246154 0.99969 uwb: 0.49772016 843.225 1068.82 +imu_odom_: 1691062586.118531815 0.462081 -0.361524 9.74201 -0.0468716 0.00106526 0.0596548 0.18 0 pose: 0.43126026 -0.561191 0.0571233 0 0.000901655 -0.00487579 0.0247398 0.999682 uwb: 0.0 843.225 1068.82 +imu_odom_: 1691062586.145378839 0.25618 0.0407014 9.94312 -0.0383495 -0.00532632 0.0500674 0.18 0 pose: 0.0 -0.561191 0.0571233 0 0.000901655 -0.00487579 0.0247398 0.999682 uwb: 0.49999208 843.229 1067.52 +imu_odom_: 1691062586.170394921 0.263362 -0.474052 9.56484 -0.0692422 0.0255663 0.0617853 0.2 0 pose: 0.43010535 -0.547376 0.0540944 0 -0.00201754 -0.00253136 0.0249348 0.999684 uwb: 0.49901506 843.294 1067 +imu_odom_: 1691062586.197375227 0.253785 -0.107739 9.53132 -0.0436758 -0.0276969 0.0458064 0.21 0.02 pose: 0.50879973 -0.538956 0.0594898 0 -0.00178272 -0.0007763460.025329 0.999677 uwb: 0.0 843.294 1067 +imu_odom_: 1691062586.213319421 0.802058 -0.263362 10.2687 -0.0415453 -0.0735032 0.0351537 0.21 0.02 pose: 0.0 -0.538956 0.0594898 0 -0.00178272 -0.0007763460.025329 0.999677 uwb: 0.0 843.294 1067 +imu_odom_: 1691062586.230437775 1.41737 -0.0742203 9.92397 -0.0298274 -0.0308927 0.0255663 0.21 0.02 pose: 0.0 -0.538956 0.0594898 0 -0.00178272 -0.0007763460.025329 0.999677 uwb: 0.50141238 843.486 1066.11 +imu_odom_: 1691062586.248481516 1.58017 -0.399832 10.2711 -0.056459 -0.00319579 -0.00319579 0.21 -0.11 pose: 0.67986369 -0.525137 0.0564824 0 -0.000910867-0.00101375 0.0255366 0.999673 uwb: 0.0 843.486 1066.11 +imu_odom_: 1691062586.262478692 1.81959 -0.196325 9.96706 -0.04048 0.00532632 -0.129962 0.21 -0.11 pose: 0.0 -0.525137 0.0564824 0 -0.000910867-0.00101375 0.0255366 0.999673 uwb: 0.0 843.486 1066.11 +imu_odom_: 1691062586.278313228 1.46765 0.282516 9.83777 -0.0511327 0.0394148 -0.214118 0.21 -0.11 pose: 0.0 -0.525137 0.0564824 0 -0.000910867-0.00101375 0.0255366 0.999673 uwb: 0.49934171 843.221 1065.42 +imu_odom_: 1691062586.293360616 1.26414 0.301669 9.89524 -0.0649811 0.0266316 -0.280165 0.12 -0.35 pose: 0.49010533 -0.516724 0.0618878 0 -0.000292853-0.00570153 0.0230147 0.999719 uwb: 0.0 843.221 1065.42 +imu_odom_: 1691062586.310319732 0.950498 -0.134075 9.85214 -0.072438 0.0181095 -0.358994 0.12 -0.35 pose: 0.0 -0.516724 0.0618878 0 -0.000292853-0.00570153 0.0230147 0.999719 uwb: 0.0 843.221 1065.42 +imu_odom_: 1691062586.324322158 0.90022 -0.0909797 9.5816 -0.0703074 0.0319579 -0.429302 0.1 -0.41 pose: 0.0 -0.516724 0.0618878 0 -0.000292853-0.00570153 0.0230147 0.999719 uwb: 0.49925129 843.301 1064.75 +imu_odom_: 1691062586.340360261 0.981623 -0.23942 9.88566 -0.0756338 0.00745685 -0.426106 0.1 -0.41 pose: 0.40948902 -0.51673 0.0618821 0 0.00116722 -0.00875122 0.0160861 0.999832 uwb: 0.0 843.301 1064.75 +imu_odom_: 1691062586.357304503 0.711078 -0.371101 9.64384 -0.0628506 -0.00639159 -0.434628 0.1 -0.41 pose: 0.0 -0.51673 0.0618821 0 0.00116722 -0.00875122 0.0160861 0.999832 uwb: 0.0 843.301 1064.75 +imu_odom_: 1691062586.375326663 0.751779 -0.136469 9.85693 -0.0543285 -0.0351537 -0.455933 0.08 -0.5 pose: 0.6089824 -0.516724 0.0618879 0 0.00132482 -0.00921837 0.0146573 0.999849 uwb: 0.49996291 843.351 1063.93 +imu_odom_: 1691062586.392307069 0.976834 -0.0885855 9.85932 -0.0607201 -0.0191748 -0.461259 0.08 -0.5 pose: 0.0 -0.516724 0.0618879 0 0.00132482 -0.00921837 0.0146573 0.999849 uwb: 0.0 843.351 1063.93 +imu_odom_: 1691062586.409358636 0.857124 -0.0981623 10.1275 -0.0543285 -0.02024 -0.479369 0.08 -0.5 pose: 0.0 -0.516724 0.0618879 0 0.00132482 -0.00921837 0.0146573 0.999849 uwb: 0.0 843.351 1063.93 +imu_odom_: 1691062586.426366165 0.826 -0.102951 9.80665 -0.0628506 -0.0245011 -0.496413 0.06 -0.5 pose: 0.48919832 -0.502882 0.0589945 0 0.000210724 -0.0128886 0.00307558 0.999912 uwb: 0.50181485 843.195 1063.03 +imu_odom_: 1691062586.442359647 0.797269 -0.222661 10.0533 -0.0511327 -0.00852212 -0.515588 0.06 -0.53 pose: 0.0 -0.502882 0.0589945 0 0.000210724 -0.0128886 0.00307558 0.999912 uwb: 0.0 843.195 1063.03 +imu_odom_: 1691062586.460370724 0.775721 -0.263362 9.80426 -0.0500674 -0.0138484 -0.534763 0.06 -0.53 pose: 0.68045865 -0.502882 0.0589945 0 0.00274355 -0.0189153 -0.0146052 0.999711 uwb: 0.0 843.195 1063.03 +imu_odom_: 1691062586.477359588 0.639252 -0.196325 9.60075 -0.0596548 0.0138484 -0.534763 0.06 -0.58 pose: 0.0 -0.502882 0.0589945 0 0.00274355 -0.0189153 -0.0146052 0.999711 uwb: 0.49751018 842.813 1062.08 +imu_odom_: 1691062586.491448924 0.797269 -0.0454898 10.1323 -0.0511327 0.00106526 -0.509196 0.06 -0.58 pose: 0.0 -0.502882 0.0589945 0 0.00274355 -0.0189153 -0.0146052 0.999711 uwb: 0.0 842.813 1062.08 +imu_odom_: 1691062586.507439198 0.708684 -0.383072 9.95509 -0.0681769 -0.00852212 -0.461259 0.06 -0.58 pose: 0.34048014 -0.502882 0.0589945 0 0.000351979 -0.018475 -0.024242 0.999535 uwb: 0.0 842.813 1062.08 +imu_odom_: 1691062586.522294392 0.435745 -0.462081 9.71328 -0.0490022 0.0138484 -0.423975 0.05 -0.5 pose: 0.40015931 -0.502882 0.0589945 0 0.000289361 -0.01746 -0.0349588 0.999236 uwb: 0.50033913 842.983 1061.53 +imu_odom_: 1691062586.538276208 0.622492 -0.237026 9.99579 -0.0447411 -0.00106526 -0.389887 0.05 -0.5 pose: 0.7075874 -0.502882 0.0589945 0 -0.000104644-0.0168482 -0.0365898 0.999188 uwb: 0.0 842.983 1061.53 +imu_odom_: 1691062586.554340559 0.617704 -0.141258 9.96227 -0.0628506 -0.0117179 -0.338754 0.05 -0.5 pose: 0.0 -0.502882 0.0589945 0 -0.000104644-0.0168482 -0.0365898 0.999188 uwb: 0.0 842.983 1061.53 +imu_odom_: 1691062586.571399126 0.579397 -0.280122 9.94791 -0.0617853 -0.0106526 -0.30147 0.04 -0.38 pose: 0.39825487 -0.498187 0.0620755 0 0.000472154 -0.0135777 -0.0448593 0.998901 uwb: 0.50247104 842.527 1060.29 +imu_odom_: 1691062586.588398198 0.545878 -0.40462 9.59835 -0.0617853 0.00426106 -0.271642 0.04 -0.38 pose: 0.0 -0.498187 0.0620755 0 0.000472154 -0.0135777 -0.0448593 0.998901 uwb: 0.0 842.527 1060.29 +imu_odom_: 1691062586.606405192 0.47884 -0.237026 9.96227 -0.0479369 0.00213053 -0.252468 0.04 -0.32 pose: 0.0 -0.498187 0.0620755 0 0.000472154 -0.0135777 -0.0448593 0.998901 uwb: 0.0 842.527 1060.29 +imu_odom_: 1691062586.623286439 0.565032 -0.158017 9.83777 -0.0575243 -0.0138484 -0.224771 0.03 -0.29 pose: 0.42121020 -0.494497 0.0644443 0 -0.0020496 -0.0106352 -0.0515511 0.998612 uwb: 0.49767059 842.557 1059.02 +imu_odom_: 1691062586.638337326 0.486023 -0.260968 9.87369 -0.0585895 -0.0117179 -0.20027 0.03 -0.26 pose: 0.0 -0.494497 0.0644443 0 -0.0020496 -0.0106352 -0.0515511 0.998612 uwb: 0.0 842.557 1059.02 +imu_odom_: 1691062586.655394143 0.672771 -0.328006 10.003 -0.0532632 -0.00958738 -0.190682 0.03 -0.26 pose: 0.32832441 -0.494497 0.0644444 0 -0.000505477-0.00874714 -0.0559607 0.998395 uwb: 0.0 842.557 1059.02 +imu_odom_: 1691062586.673295270 0.586579 -0.1652 9.75398 -0.0575243 -0.00958738 -0.170442 0.03 -0.23 pose: 0.0 -0.494497 0.0644444 0 -0.000505477-0.00874714 -0.0559607 0.998395 uwb: 0.49967709 842.568 1058.24 +imu_odom_: 1691062586.698391845 0.608127 -0.258574 9.91199 -0.0617853 -0.0106526 -0.143811 0.03 -0.23 pose: 0.33992893 -0.489019 0.0560785 0 -0.0013104 -0.0092919 -0.0598258 0.998165 uwb: 0.0 842.568 1058.24 +imu_odom_: 1691062586.715278925 0.457293 -0.237026 9.86411 -0.0617853 0.0170442 -0.129962 0.02 -0.17 pose: 0.35104932 -0.489024 0.0560736 0 -0.00275838 -0.0103209 -0.0631587 0.997946 uwb: 0.0 842.568 1058.24 +imu_odom_: 1691062586.732270122 -0.0885855 -0.344765 9.89524 -0.0479369 0.0490022 -0.18216 0.02 -0.17 pose: 0.6941718 -0.489019 0.0560785 0 -0.00264138 -0.00956538 -0.0637463 0.997917 uwb: 0.50103325 842.232 1057.74 +imu_odom_: 1691062586.749424348 -1.38145 0.263362 9.79228 -0.0181095 0.111853 -0.233293 0.02 -0.17 pose: 0.0 -0.489019 0.0560785 0 -0.00264138 -0.00956538 -0.0637463 0.997917 uwb: 0.0 842.232 1057.74 +imu_odom_: 1691062586.767417343 -1.54187 -0.227449 10.0652 -0.0639159 -0.00532632 -0.125701 0.07 -0.17 pose: 0.34005142 -0.489019 0.0560785 0 -0.00209772 -0.0052766 -0.0674264 0.997708 uwb: 0.0 842.232 1057.74 +imu_odom_: 1691062586.781387689 -0.430956 -0.593762 10.0772 -0.0873517 -0.129962 -0.092678 0.07 -0.17 pose: 0.0 -0.489019 0.0560785 0 -0.00209772 -0.0052766 -0.0674264 0.997708 uwb: 0.49947877 842.467 1057.96 +imu_odom_: 1691062586.798386468 0.471658 -0.37589 9.9096 -0.0532632 -0.0905475 -0.105461 0.07 -0.17 pose: 0.0 -0.489019 0.0560785 0 -0.00209772 -0.0052766 -0.0674264 0.997708 uwb: 0.0 842.467 1057.96 +imu_odom_: 1691062586.814256293 0.56982 -0.289698 9.68694 -0.0532632 0.00958738 -0.0841559 0.08 -0.11 pose: 0.49051072 -0.489019 0.0560785 0 -0.00288063 -0.00195482 -0.0717042 0.99742 uwb: 0.0 842.467 1057.96 +imu_odom_: 1691062586.831436184 0.0023942 -0.0814029 9.87608 -0.0649811 0.00319579 -0.072438 0.08 -0.11 pose: 0.0 -0.489019 0.0560785 0 -0.00288063 -0.00195482 -0.0717042 0.99742 uwb: 0.50072119 841.865 1056.93 +imu_odom_: 1691062586.848385092 0.21069 -0.356736 10.0317 -0.0575243 0.0127832 -0.0841559 0.1 -0.11 pose: 0.43046407 -0.480635 0.0615292 0 -0.00331857 -0.00248347 -0.0743676 0.997222 uwb: 0.0 841.865 1056.93 +imu_odom_: 1691062586.863383484 -0.0023942 -0.3304 9.92397 -0.0607201 0.015979 -0.102265 0.1 -0.11 pose: 0.0 -0.480635 0.0615292 0 -0.00331857 -0.00248347 -0.0743676 0.997222 uwb: 0.0 841.865 1056.93 +imu_odom_: 1691062586.879384257 0.035913 0.0790087 9.93833 -0.0575243 -0.0127832 -0.0777643 0.1 -0.11 pose: 0.0 -0.480635 0.0615292 0 -0.00331857 -0.00248347 -0.0743676 0.997222 uwb: 0.50048787 841.205 1056.08 +imu_odom_: 1691062586.894446518 0.414197 -0.323217 9.9096 -0.0585895 0.00426106 -0.0607201 0.11 -0.11 pose: 0.47948073 -0.475153 0.0531654 0 -0.00258248 0.00190151 -0.077394 0.996995 uwb: 0.0 841.205 1056.08 +imu_odom_: 1691062586.911381428 0.390255 -0.117316 10.3501 -0.0490022 0.0223706 -0.0873517 0.11 -0.11 pose: 0.0 -0.475153 0.0531654 0 -0.00258248 0.00190151 -0.077394 0.996995 uwb: 0.0 841.205 1056.08 +imu_odom_: 1691062586.925432267 0.105345 -0.102951 9.5792 -0.0596548 -0.00745685 -0.0639159 0.11 -0.11 pose: 0.0 -0.475153 0.0531654 0 -0.00258248 0.00190151 -0.077394 0.996995 uwb: 0.49802930 841.314 1055.88 +imu_odom_: 1691062586.941299758 0.337582 -0.380678 9.63427 -0.072438 0.0127832 -0.0553937 0.12 -0.14 pose: 0.46048010 -0.470645 0.0561243 0 -0.00135253 0.00231952 -0.0799444 0.996796 uwb: 0.0 841.314 1055.88 +imu_odom_: 1691062586.956370186 0.328006 -0.0861913 9.78031 -0.0660464 -0.00745685 -0.0671117 0.13 -0.08 pose: 0.6831476 -0.466791 0.0586488 0 -0.00206956 0.00255146 -0.0802689 0.996768 uwb: 0.0 841.314 1055.88 +imu_odom_: 1691062586.973389672 0.4956 -0.265756 9.42597 -0.0511327 -0.0458064 -0.0628506 0.13 -0.08 pose: 0.0 -0.466791 0.0586488 0 -0.00206956 0.00255146 -0.0802689 0.996768 uwb: 0.50196359 841.602 1055.63 +imu_odom_: 1691062586.987425346 0.80924 -0.023942 9.89763 -0.0532632 -0.00852212 -0.056459 0.13 -0.08 pose: 0.16176926 -0.466791 0.0586488 0 -0.00234461 0.00288311 -0.0810755 0.996701 uwb: 0.0 841.602 1055.63 +imu_odom_: 1691062587.3310919 1.07739 -0.325611 9.68455 -0.0553937 0.0511327 -0.0298274 0.13 -0.11 pose: 0.0 -0.466791 0.0586488 0 -0.00234461 0.00288311 -0.0810755 0.996701 uwb: 0.0 841.602 1055.63 +imu_odom_: 1691062587.18240193 1.04866 -0.442927 9.88566 -0.076699 0.0340885 -0.0106526 0.13 -0.11 pose: 0.0 -0.466791 0.0586488 0 -0.00234461 0.00288311 -0.0810755 0.996701 uwb: 0.0 841.602 1055.63 +imu_odom_: 1691062587.35324719 0.730232 -0.325611 9.78989 -0.056459 0.00852212 -0.0138484 0.09 -0.11 pose: 0.69799524 -0.461357 0.0502541 0 -0.0023592 -0.00262814 -0.0839677 0.996462 uwb: 0.49787768 841.243 1054.66 +imu_odom_: 1691062587.58294336 1.66397 0.148441 9.86172 -0.0351537 -0.0287621 -0.0415453 0.09 -0.11 pose: 0.0 -0.461357 0.0502541 0 -0.0023592 -0.00262814 -0.0839677 0.996462 uwb: 0.0 841.243 1054.66 +imu_odom_: 1691062587.74237366 1.01993 -0.0335188 9.93594 -0.0585895 0.00852212 -0.00852212 0.09 -0.11 pose: 0.0 -0.461357 0.0502541 0 -0.0023592 -0.00262814 -0.0839677 0.996462 uwb: 0.50085833 841.589 1055.01 +imu_odom_: 1691062587.92296859 1.23301 -0.426168 10.2783 -0.0532632 -0.0127832 0.015979 0.1 0 pose: 0.7128372 -0.461357 0.0502541 0 -0.00259324 -0.00325729 -0.0841583 0.996444 uwb: 0.0 841.589 1055.01 +imu_odom_: 1691062587.109235563 0.950498 -0.500388 9.52653 -0.0553937 -0.00426106 0.00213053 0.07 0.05 pose: 0.0 -0.461357 0.0502541 0 -0.00259324 -0.00325729 -0.0841583 0.996444 uwb: 0.0 841.589 1055.01 +imu_odom_: 1691062587.126329129 0.167594 0.0167594 9.74919 -0.0415453 0.0660464 0.0894822 0.07 0.05 pose: 0.74941222 -0.453 0.0557469 0 -0.00279228 -0.0104443 -0.0861004 0.996228 uwb: 0.49780482 841.64 1055.3 +imu_odom_: 1691062587.143440778 0.0861913 -0.54109 10.1275 -0.076699 0 0.248207 0.07 0.23 pose: 0.0 -0.453 0.0557469 0 -0.00279228 -0.0104443 -0.0861004 0.996228 uwb: 0.0 841.64 1055.3 +imu_odom_: 1691062587.160303946 0.409408 -0.869095 9.991 -0.0532632 -0.0276969 0.3036 0.07 0.23 pose: 0.0 -0.453 0.0557469 0 -0.00279228 -0.0104443 -0.0861004 0.996228 uwb: 0.0 841.64 1055.3 +imu_odom_: 1691062587.175238470 0.833182 -0.344765 9.98622 -0.0255663 -0.0319579 0.311057 0.07 0.23 pose: 0.33041555 -0.453 0.0557469 0 -0.0025796 -0.00849751 -0.0851129 0.996332 uwb: 0.50205116 841.531 1054.26 +imu_odom_: 1691062587.191238662 0.952892 0.0981623 9.72525 -0.0468716 -0.00852212 0.381365 0.04 0.32 pose: 0.41887128 -0.44753 0.0473741 0 -0.0049316 -0.00887319 -0.0798068 0.996759 uwb: 0.0 841.531 1054.26 +imu_odom_: 1691062587.206243763 0.878672 -0.196325 10.0389 -0.0649811 -0.00426106 0.44315 0.04 0.32 pose: 0.7126621 -0.447524 0.04738 0 -0.00443559 -0.00941486 -0.0785991 0.996852 uwb: 0.0 841.531 1054.26 +imu_odom_: 1691062587.223238463 0.751779 -0.526724 9.87608 -0.0532632 0.0127832 0.460194 0.04 0.32 pose: 0.0 -0.447524 0.04738 0 -0.00443559 -0.00941486 -0.0785991 0.996852 uwb: 0.50005340 841.391 1054 +imu_odom_: 1691062587.237403337 0.397437 -0.246603 9.77074 -0.0436758 0.0213053 0.485761 0.03 0.44 pose: 0.40873372 -0.44753 0.0473744 0 -0.00522145 -0.0119806 -0.0705032 0.997426 uwb: 0.0 841.391 1054 +imu_odom_: 1691062587.254221592 0.351948 -0.141258 9.991 -0.0479369 0.0117179 0.536893 0.03 0.44 pose: 0.0 -0.44753 0.0473744 0 -0.00522145 -0.0119806 -0.0705032 0.997426 uwb: 0.0 841.391 1054 +imu_odom_: 1691062587.268232186 0.418985 -0.332794 9.81862 -0.0500674 -0.00532632 0.557133 0.03 0.44 pose: 0.0 -0.44753 0.0473744 0 -0.00522145 -0.0119806 -0.0705032 0.997426 uwb: 0.0 841.391 1054 +imu_odom_: 1691062587.284232961 0.469264 -0.241814 10.0173 -0.0426106 0.00106526 0.540089 0.03 0.44 pose: 0.44993723 -0.43912 0.0527842 0 -0.00416714 -0.00753121 -0.0595542 0.998188 uwb: 0.49901514 841.726 1053.57 +imu_odom_: 1691062587.301230285 0.308852 -0.153229 9.82341 -0.0436758 0.0127832 0.525175 0.05 0.67 pose: 0.0 -0.43912 0.0527842 0 -0.00416714 -0.00753121 -0.0595542 0.998188 uwb: 0.0 841.726 1053.57 +imu_odom_: 1691062587.318227901 0.196325 -0.114922 9.65582 -0.0543285 0 0.518784 0.05 0.67 pose: 0.0 -0.43912 0.0527842 0 -0.00416714 -0.00753121 -0.0595542 0.998188 uwb: 0.0 841.726 1053.57 +imu_odom_: 1691062587.335294053 0.457293 -0.361524 9.9503 -0.0553937 -0.00745685 0.50387 0.05 0.67 pose: 0.23012489 -0.439113 0.0527902 0 -0.00285926 -0.00545164 -0.053858 0.99853 uwb: 0.50015255 841.703 1053.58 +imu_odom_: 1691062587.351338284 0.577003 -0.198719 9.9503 -0.056459 -0.015979 0.467651 0.05 0.67 pose: 0.0 -0.439113 0.0527902 0 -0.00285926 -0.00545164 -0.053858 0.99853 uwb: 0.0 841.703 1053.58 +imu_odom_: 1691062587.369337990 0.708684 0.011971 9.9096 -0.0447411 0.00106526 0.430367 0.05 0.67 pose: 0.34064059 -0.439113 0.0527902 0 -0.00219973 -0.00291042 -0.0457263 0.998947 uwb: 0.0 841.703 1053.58 +imu_odom_: 1691062587.384378672 0.708684 -0.191536 9.7851 -0.0543285 0.00106526 0.410127 0.03 0.35 pose: 0.44029256 -0.439113 0.0527902 0 -0.000962725-0.00543022 -0.0364766 0.999319 uwb: 0.49994549 841.813 1053.24 +imu_odom_: 1691062587.402323257 0.550666 -0.23942 9.93594 -0.0426106 0.00319579 0.367516 0.03 0.35 pose: 0.6953384 -0.439113 0.0527902 0 -0.000861026-0.00609837 -0.0351902 0.999362 uwb: 0.0 841.813 1053.24 +imu_odom_: 1691062587.426217970 0.486023 -0.0861913 9.75158 -0.0553937 -0.00639159 0.334493 0.02 0.32 pose: 0.0 -0.439113 0.0527902 0 -0.000861026-0.00609837 -0.0351902 0.999362 uwb: 0.0 841.813 1053.24 +imu_odom_: 1691062587.443223168 0.531513 -0.186748 10.0197 -0.0511327 0.0181095 0.333428 0.03 0.38 pose: 0.33112424 -0.439113 0.0527902 0 -0.00142195 -0.00764422 -0.0297045 0.999528 uwb: 0.0 841.813 1053.24 +imu_odom_: 1691062587.460215243 -0.153229 -0.318429 9.9527 -0.072438 0.0617853 0.378169 0.04 0.23 pose: 0.0 -0.439113 0.0527902 0 -0.00142195 -0.00764422 -0.0297045 0.999528 uwb: 0.0 841.813 1053.24 +imu_odom_: 1691062587.477210234 -0.993594 -0.442927 10.0652 -0.0607201 0.0575243 0.379234 0.04 0.23 pose: 0.41819758 -0.439113 0.0527902 0 0.00147242 -0.0050738 -0.0233971 0.999712 uwb: 0.100034886 841.811 1052.93 +imu_odom_: 1691062587.494214266 -0.914585 -0.222661 9.94312 -0.0458064 -0.0628506 0.328101 0.06 0.26 pose: 0.0 -0.439113 0.0527902 0 0.00147242 -0.0050738 -0.0233971 0.999712 uwb: 0.0 841.811 1052.93 +imu_odom_: 1691062587.511281876 -0.0670376 0.011971 9.81383 -0.0436758 -0.0820254 0.304666 0.06 0.26 pose: 0.0 -0.439113 0.0527902 0 0.00147242 -0.0050738 -0.0233971 0.999712 uwb: 0.0 841.811 1052.93 +imu_odom_: 1691062587.527272153 0.629675 -0.023942 10.1873 -0.052198 -0.0351537 0.312122 0.06 0.26 pose: 0.33998731 -0.439113 0.0527902 0 0.000966406 -0.00112152 -0.0178362 0.99984 uwb: 0.49999507 842.013 1052.55 +imu_odom_: 1691062587.545209446 0.476446 -0.237026 10.0197 -0.0639159 0.0127832 0.3036 0.1 0.32 pose: 0.42049866 -0.43222 0.0512695 0 0.00267564 -0.00119898 -0.0120997 0.999922 uwb: 0.0 842.013 1052.55 +imu_odom_: 1691062587.562262475 0.117316 -0.519542 9.80665 -0.0649811 0.00426106 0.289752 0.1 0.32 pose: 0.7996596 -0.425276 0.0498722 0 0.00196878 -0.00156769 -0.011042 0.999936 uwb: 0.0 842.013 1052.55 +imu_odom_: 1691062587.576263736 -0.325611 -0.215478 9.66779 -0.0692422 0.0245011 0.299339 0.1 0.32 pose: 0.0 -0.425276 0.0498722 0 0.00196878 -0.00156769 -0.011042 0.999936 uwb: 0.50087874 842.102 1051.91 +imu_odom_: 1691062587.592260137 0.00718261 -0.0790087 10.343 -0.0585895 -0.0170442 0.290817 0.09 0.2 pose: 0.40994987 -0.425283 0.0498662 0 -0.0002739780.000862823 -0.00577464 0.999983 uwb: 0.0 842.102 1051.91 +imu_odom_: 1691062587.607239282 0.373495 -0.234632 9.88566 -0.0436758 -0.0319579 0.26099 0.1 0.23 pose: 0.0 -0.425283 0.0498662 0 -0.0002739780.000862823 -0.00577464 0.999983 uwb: 0.0 842.102 1051.91 +imu_odom_: 1691062587.623307428 0.550666 -0.28491 10.058 -0.0500674 0.00319579 0.266316 0.1 0.23 pose: 0.0 -0.425283 0.0498662 0 -0.0002739780.000862823 -0.00577464 0.999983 uwb: 0.49742860 842.533 1052.38 +imu_odom_: 1691062587.638383691 0.275333 -0.438139 9.76834 -0.0681769 0.0298274 0.266316 0.1 0.23 pose: 0.23002865 -0.425276 0.0498722 0 -0.0002964120.00181163 -0.00299003 0.999994 uwb: 0.0 842.533 1052.38 +imu_odom_: 1691062587.655274273 0.0383072 -0.1652 10.1418 -0.0511327 0.0255663 0.225836 0.11 0.23 pose: 0.0 -0.425276 0.0498722 0 -0.0002964120.00181163 -0.00299003 0.999994 uwb: 0.0 842.533 1052.38 +imu_odom_: 1691062587.669262119 0.35913 -0.107739 9.75877 -0.0543285 -0.00639159 0.24288 0.11 0.23 pose: 0.0 -0.425276 0.0498722 0 -0.0002964120.00181163 -0.00299003 0.999994 uwb: 0.0 842.533 1052.38 +imu_odom_: 1691062587.685199899 0.562637 -0.306458 10.1418 -0.072438 -0.0298274 0.253533 0.11 0.17 pose: 0.31036208 -0.425276 0.0498722 0 -0.00198445 0.000333449 0.000503933 0.999998 uwb: 0.50098083 842.532 1052.23 +imu_odom_: 1691062587.701203008 0.682347 -0.574608 9.75398 -0.0351537 -0.0394148 0.186421 0.11 0.17 pose: 0.38959310 -0.416924 0.0553548 0 -0.0007820560.00269476 0.00442322 0.999986 uwb: 0.0 842.532 1052.23 +imu_odom_: 1691062587.718218997 1.06063 -0.172383 10.0221 -0.04048 -0.0543285 0.218379 0.11 0.17 pose: 0.0 -0.416924 0.0553548 0 -0.0007820560.00269476 0.00442322 0.999986 uwb: 0.0 842.532 1052.23 +imu_odom_: 1691062587.735324813 1.29287 -0.380678 9.92636 -0.0681769 0.0245011 0.308927 0.1 0.11 pose: 0.6947552 -0.416917 0.0553609 0 -0.0010703 0.00195024 0.00516554 0.999984 uwb: 0.49997173 842.283 1051.7 +imu_odom_: 1691062587.752267308 1.47243 -0.68953 10.1778 -0.0585895 -0.0468716 0.32384 0.1 0.11 pose: 0.0 -0.416917 0.0553609 0 -0.0010703 0.00195024 0.00516554 0.999984 uwb: 0.0 842.283 1051.7 +imu_odom_: 1691062587.768259626 1.32399 -0.337582 9.67018 -0.036219 -0.0298274 0.233293 0.1 0.11 pose: 0.0 -0.416917 0.0553609 0 -0.0010703 0.00195024 0.00516554 0.999984 uwb: 0.0 842.283 1051.7 +imu_odom_: 1691062587.786401654 1.4461 0.426168 10.1059 -0.0479369 0.0213053 0.168312 0.1 0.11 pose: 0.49000041 -0.411434 0.046998 0 -0.00223008 -0.00306755 0.00975637 0.999945 uwb: 0.50000965 842.419 1051.35 +imu_odom_: 1691062587.803401603 0.826 -0.0454898 9.60075 -0.0649811 0.0319579 0.143811 0.06 0.08 pose: 0.0 -0.411434 0.046998 0 -0.00223008 -0.00306755 0.00975637 0.999945 uwb: 0.0 842.419 1051.35 +imu_odom_: 1691062587.819333842 0.521936 -0.399832 10.1873 -0.056459 0.02024 0.0980043 0.06 0.08 pose: 0.68204239 -0.403067 0.0524743 0 -0.00146064 -0.00922081 0.016583 0.999819 uwb: 0.49878183 842.761 1050.94 +imu_odom_: 1691062587.836469989 0.64404 -0.296881 9.84256 -0.0511327 -0.0319579 0.0798948 0.06 0.08 pose: 0.0 -0.403067 0.0524743 0 -0.00146064 -0.00922081 0.016583 0.999819 uwb: 0.0 842.761 1050.94 +imu_odom_: 1691062587.853271911 0.837971 -0.102951 9.86411 -0.0511327 -0.00532632 0.104396 0.06 0.05 pose: 0.0 -0.403067 0.0524743 0 -0.00146064 -0.00922081 0.016583 0.999819 uwb: 0.0 842.761 1050.94 +imu_odom_: 1691062587.870176784 0.646434 -0.205901 9.98143 -0.0617853 0.00319579 0.129962 0.06 0.05 pose: 0.33011806 -0.403067 0.0524743 0 -0.00263116 -0.00968746 0.0177198 0.999793 uwb: 0.49989591 843.124 1050.82 +imu_odom_: 1691062587.887191024 0.670376 -0.282516 9.86411 -0.0490022 -0.00639159 0.107592 0.04 0.08 pose: 0.43751027 -0.403067 0.0524743 0 -0.000341696-0.0121606 0.019196 0.999742 uwb: 0.0 843.124 1050.82 +imu_odom_: 1691062587.904183390 0.732626 -0.143652 9.90721 -0.0490022 -0.0117179 0.103331 0.04 0.08 pose: 0.8134253 -0.403067 0.0524743 0 -0.00102894 -0.0125658 0.0194812 0.999731 uwb: 0.0 843.124 1050.82 +imu_odom_: 1691062587.920182707 0.600945 -0.162806 9.82341 -0.0553937 0.0138484 0.110787 0.04 0.08 pose: 0.0 -0.403067 0.0524743 0 -0.00102894 -0.0125658 0.0194812 0.999731 uwb: 0.50170702 843.827 1050.59 +imu_odom_: 1691062587.947183141 0.407014 -0.232238 9.83538 -0.0532632 0.00106526 0.123571 0.05 0.11 pose: 0.41871670 -0.403067 0.0524743 0 0.000698746 -0.0126181 0.0208704 0.999702 uwb: 0.0 843.827 1050.59 +imu_odom_: 1691062587.972290219 -0.430956 -0.289698 9.65103 -0.0543285 0.0745685 0.128897 0.04 0.08 pose: 0.0 -0.403067 0.0524743 0 0.000698746 -0.011783 0.0212159 0.999705 uwb: 0.50105665 843.812 1049.84 +imu_odom_: 1691062587.997192272 -1.1133 -0.296881 9.87848 -0.0532632 -0.0255663 0.125701 0.07 0.08 pose: 0.18796187 -0.403067 0.0524743 0 0.000365797 -0.00986978 0.0220075 0.999709 uwb: 0.0 843.812 1049.84 +imu_odom_: 1691062588.19340037 -0.158017 -0.227449 9.83777 -0.0575243 -0.0511327 0.113983 0.07 0.08 pose: 0.32014383 -0.389207 0.0496617 0 5.72217e-05 -0.00576569 0.0234286 0.999709 uwb: 0.49982886 843.684 1049.28 +imu_odom_: 1691062588.36165002 0.483629 -0.0742203 10.1035 -0.0479369 -0.0426106 0.108657 0.07 0.08 pose: 0.0 -0.389207 0.0496617 0 5.72217e-05 -0.00576569 0.0234286 0.999709 uwb: 0.0 843.684 1049.28 +imu_odom_: 1691062588.61166218 0.363919 0.0454898 9.95748 -0.0713727 0.0181095 0.11931 0.09 0.05 pose: 0.46977783 -0.389207 0.0496617 0 0.000543439 -0.00272388 0.0252629 0.999677 uwb: 0.0 843.684 1049.28 +imu_odom_: 1691062588.83153580 -0.110133 -0.368707 9.90481 -0.0639159 0.0319579 0.0873517 0.1 0.05 pose: 0.0 -0.389207 0.0496617 0 0.000543439 -0.00272388 0.0252629 0.999677 uwb: 0.49744909 843.434 1049.36 +imu_odom_: 1691062588.97151636 0.0670376 -0.158017 10.2855 -0.0649811 -0.0255663 0.0916127 0.1 0.05 pose: 0.34990911 -0.389207 0.0496617 0 0.00362098 -0.00176831 0.0265928 0.999638 uwb: 0.0 843.434 1049.36 +imu_odom_: 1691062588.114262704 0.447716 -0.143652 10.1155 -0.072438 -0.0255663 0.120375 0.1 0.05 pose: 0.0 -0.389207 0.0496617 0 0.00362098 -0.00176831 0.0265928 0.999638 uwb: 0.0 843.434 1049.36 +imu_odom_: 1691062588.139150178 0.268151 -0.222661 10.058 -0.072438 0.00745685 0.0894822 0.12 0.02 pose: 0.6018957 -0.389207 0.0496617 0 0.00335023 -0.00110935 0.0267354 0.999636 uwb: 0.50107131 843.133 1048.56 +imu_odom_: 1691062588.166202237 0.0814029 -0.395043 9.62708 -0.0468716 -0.0340885 0.0852212 0.12 0.02 pose: 0.0 -0.389207 0.0496617 0 0.00335023 -0.00110935 0.0267354 0.999636 uwb: 0.0 843.133 1048.56 +imu_odom_: 1691062588.191210744 0.620098 0.0023942 9.9503 -0.0617853 -0.00319579 0.0948085 0.13 0.05 pose: 0.53985710 -0.380861 0.0551709 0 0.00246813 0.0006963 0.0283399 0.999595 uwb: 0.50054635 842.972 1047.71 +imu_odom_: 1691062588.216173171 0.304064 -0.349553 10.4651 -0.056459 -0.00639159 0.0681769 0.17 0.02 pose: 0.53081904 -0.375313 0.0468515 0 0.00039097 0.00347134 0.0296172 0.999555 uwb: 0.0 842.972 1047.71 +imu_odom_: 1691062588.241285211 -0.134075 -0.217872 9.56484 -0.0553937 -0.015979 0.0798948 0.17 0.02 pose: 0.0 -0.375313 0.0468515 0 0.00039097 0.00347134 0.0296172 0.999555 uwb: 0.49807613 843.273 1047.47 +imu_odom_: 1691062588.265274712 0.758962 -0.363919 9.81862 -0.0660464 -0.0117179 0.0735032 0.14 0.02 pose: 0.67032422 -0.366999 0.0524088 0 -0.0010232 0.00520195 0.0309487 0.999507 uwb: 0.0 843.273 1047.47 +imu_odom_: 1691062588.282200878 0.512359 -0.31364 10.2376 -0.0543285 0.0436758 0.052198 0.14 0.02 pose: 0.0 -0.366999 0.0524088 0 -0.0010232 0.00520195 0.0309487 0.999507 uwb: 0.50012347 843.273 1046.72 +imu_odom_: 1691062588.298139535 0.713472 -0.234632 10.2735 -0.0532632 0.015979 0.0617853 0.14 0.02 pose: 0.0 -0.366999 0.0524088 0 -0.0010232 0.00520195 0.0309487 0.999507 uwb: 0.0 843.273 1046.72 +imu_odom_: 1691062588.316165200 -0.138864 -0.105345 10.4315 -0.0596548 0.036219 0.0756338 0.14 0.05 pose: 0.6994216 -0.366999 0.0524088 0 -0.00123294 0.00449733 0.0310659 0.999506 uwb: 0.0 843.273 1046.72 +imu_odom_: 1691062588.340292649 0.0263362 -0.316035 9.80665 -0.0575243 -0.00532632 0.0585895 0.14 0.05 pose: 0.0 -0.366999 0.0524088 0 -0.00123294 0.00449733 0.0310659 0.999506 uwb: 0.49980557 843.076 1045.89 +imu_odom_: 1691062588.366135259 0.160412 -0.143652 9.89524 -0.0543285 -0.0500674 0.0735032 0.15 0.02 pose: 0.41871968 -0.353143 0.0495576 0 -0.00222577 0.000883822 0.031539 0.9995 uwb: 0.0 843.076 1045.89 +imu_odom_: 1691062588.390155966 0.639252 -0.335188 9.81623 -0.0553937 -0.00213053 0.0426106 0.17 0.02 pose: 0.33018229 -0.353143 0.0495576 0 -0.00191698 0.00296081 0.0320208 0.999481 uwb: 0.50143879 843.081 1044.7 +imu_odom_: 1691062588.416151980 0.354342 -0.124498 9.91918 -0.0575243 0.00213053 0.0660464 0.17 0.02 pose: 0.42965635 -0.3448 0.0550716 0 -0.0008148780.00614135 0.0326362 0.999448 uwb: 0.0 843.081 1044.7 +imu_odom_: 1691062588.432418738 0.248997 -0.634463 9.76355 -0.072438 0.0191748 0.076699 0.17 0.02 pose: 0.0 -0.3448 0.0550716 0 -0.0008148780.00614135 0.0326362 0.999448 uwb: 0.50126380 842.758 1044.35 +imu_odom_: 1691062588.459138614 0.435745 -0.251391 9.61511 -0.0490022 -0.0149137 0.0617853 0.15 0 pose: 0.8066300 -0.3448 0.0550716 0 -0.00102557 0.00537095 0.0326466 0.999452 uwb: 0.0 842.758 1044.35 +imu_odom_: 1691062588.483148238 0.0837971 -0.502782 9.50259 -0.0426106 0.0308927 0.0500674 0.17 0 pose: 0.48126866 -0.33094 0.0522606 0 0.000412184 0.00358409 0.0331327 0.999444 uwb: 0.49709036 842.657 1043.63 +imu_odom_: 1691062588.509198207 0.768539 -0.0263362 10.0293 -0.036219 0.0245011 0.0351537 0.17 0 pose: 0.0 -0.33094 0.0522606 0 0.000412184 0.00358409 0.0331327 0.999444 uwb: 0.0 842.657 1043.63 +imu_odom_: 1691062588.523146392 0.0885855 -0.282516 9.49062 -0.0617853 0.00319579 0.0820254 0.18 0.02 pose: 0.44826327 -0.33094 0.0522606 0 -0.00164946 0.00183148 0.033651 0.999431 uwb: 0.50120256 842.5 1042.79 +imu_odom_: 1691062588.546216046 0.3304 -0.0909797 9.98143 -0.0458064 0.00319579 0.0468716 0.18 0.02 pose: 0.0 -0.33094 0.0522606 0 -0.00164946 0.00183148 0.033651 0.999431 uwb: 0.0 842.5 1042.79 +imu_odom_: 1691062588.564188632 0.746991 0.0694318 9.73482 -0.0479369 -0.0245011 0.0511327 0.21 0.02 pose: 0.47994167 -0.322616 0.0578018 0 -0.00123017 0.00202138 0.0338002 0.999426 uwb: 0.0 842.5 1042.79 +imu_odom_: 1691062588.580194368 0.80924 -0.306458 10.0556 -0.072438 -0.0234358 0.076699 0.21 0.02 pose: 0.0 -0.322616 0.0578018 0 -0.00123017 0.00202138 0.0338002 0.999426 uwb: 0.50006805 842.559 1042.19 +imu_odom_: 1691062588.598184744 1.53708 -0.323217 9.97903 -0.0713727 -0.0862864 0.0308927 0.21 0.02 pose: 0.0 -0.322616 0.0578018 0 -0.00123017 0.00202138 0.0338002 0.999426 uwb: 0.0 842.559 1042.19 +imu_odom_: 1691062588.616185911 1.37188 0.0837971 9.42837 -0.0703074 -0.0308927 -0.092678 0.12 -0.23 pose: 0.39104847 -0.308749 0.0550253 0 0.00146939 0.00250599 0.0341093 0.999414 uwb: 0.0 842.559 1042.19 +imu_odom_: 1691062588.630124763 1.66158 0.167594 10.3286 -0.0756338 -0.00319579 -0.157659 0.12 -0.23 pose: 0.0 -0.308749 0.0550253 0 0.00146939 0.00250599 0.0341093 0.999414 uwb: 0.49872066 842.538 1041.46 +imu_odom_: 1691062588.647241955 1.03669 0.0047884 9.68933 -0.0575243 -0.00852212 -0.259925 0.12 -0.23 pose: 0.0 -0.308749 0.0550253 0 0.00146939 0.00250599 0.0341093 0.999414 uwb: 0.0 842.538 1041.46 +imu_odom_: 1691062588.664249198 1.04148 -0.011971 9.50977 -0.0575243 0.0330232 -0.365386 0.1 -0.38 pose: 0.51936616 -0.308749 0.0550254 0 0.0014562 -0.00351672 0.0338627 0.999419 uwb: 0.0 842.538 1041.46 +imu_odom_: 1691062588.681180613 0.792481 -0.169988 9.80904 -0.0703074 0.0117179 -0.399474 0.14 -0.58 pose: 0.0 -0.308749 0.0550254 0 0.0014562 -0.00351672 0.0338627 0.999419 uwb: 0.50102465 842.466 1041.18 +imu_odom_: 1691062588.698182606 0.577003 -0.361524 10.0509 -0.0543285 -0.00319579 -0.430367 0.14 -0.58 pose: 0.65063823 -0.300483 0.060653 0 0.0031399 -0.00946664 0.0242872 0.999655 uwb: 0.0 842.466 1041.18 +imu_odom_: 1691062588.713174295 0.567426 -0.416591 9.81623 -0.0575243 0.0181095 -0.460194 0.14 -0.58 pose: 0.0 -0.300483 0.060653 0 0.0031399 -0.00946664 0.0242872 0.999655 uwb: 0.0 842.466 1041.18 +imu_odom_: 1691062588.730127583 0.545878 -0.136469 9.84735 -0.052198 0.0149137 -0.468716 0.08 -0.5 pose: 0.0 -0.300483 0.060653 0 0.0031399 -0.00946664 0.0242872 0.999655 uwb: 0.49888398 842.428 1040.75 +imu_odom_: 1691062588.744231798 0.950498 0.0742203 9.88805 -0.052198 0.00106526 -0.464455 0.08 -0.5 pose: 0.33964614 -0.294849 0.0523914 0 0.000725851 -0.00994555 0.0163837 0.999816 uwb: 0.0 842.428 1040.75 +imu_odom_: 1691062588.760292363 0.811634 -0.208296 10.0892 -0.0553937 0.00852212 -0.472977 0.06 -0.5 pose: 0.39012979 -0.290438 0.055392 0 0.00234081 -0.00983401 0.00652255 0.999928 uwb: 0.0 842.428 1040.75 +imu_odom_: 1691062588.774129723 0.751779 -0.150835 9.95509 -0.0575243 -0.0298274 -0.510262 0.06 -0.5 pose: 0.7058669 -0.286569 0.0579995 0 0.00223467 -0.0104801 0.00471665 0.999931 uwb: 0.50131338 842.425 1040.16 +imu_odom_: 1691062588.790317444 0.778116 -0.0550666 10.07 -0.056459 -0.0436758 -0.533697 0.06 -0.5 pose: 0.0 -0.286569 0.0579995 0 0.00223467 -0.0104801 0.00471665 0.999931 uwb: 0.0 842.425 1040.16 +imu_odom_: 1691062588.807318854 0.667982 -0.0383072 9.89284 -0.0607201 -0.0287621 -0.526241 0.07 -0.79 pose: 0.39026977 -0.286578 0.0579933 0 0.00353511 -0.014326 -0.00604239 0.999873 uwb: 0.0 842.425 1040.16 +imu_odom_: 1691062588.825133369 0.677559 -0.225055 9.71328 -0.0617853 -0.0394148 -0.536893 0.07 -0.79 pose: 0.0 -0.286578 0.0579933 0 0.00353511 -0.014326 -0.00604239 0.999873 uwb: 0.50116756 842.055 1039.38 +imu_odom_: 1691062588.839330034 0.699107 -0.155623 10.0748 -0.056459 -0.0138484 -0.550742 0.07 -0.79 pose: 0.0 -0.286578 0.0579933 0 0.00353511 -0.014326 -0.00604239 0.999873 uwb: 0.0 842.055 1039.38 +imu_odom_: 1691062588.857161173 0.888249 -0.186748 10.1682 -0.0671117 -0.00852212 -0.498544 0.04 -0.5 pose: 0.41098528 -0.286569 0.0579996 0 0.00292233 -0.0148493 -0.0178334 0.999726 uwb: 0.0 842.055 1039.38 +imu_odom_: 1691062588.873114704 0.56982 -0.383072 9.80426 -0.0575243 -0.0117179 -0.454868 0.04 -0.44 pose: 0.0 -0.286569 0.0579996 0 0.00292233 -0.0148493 -0.0178334 0.999726 uwb: 0.49860400 842.06 1038.5 +imu_odom_: 1691062588.891442221 0.579397 -0.263362 10.0724 -0.0585895 0.00213053 -0.413323 0.04 -0.44 pose: 0.32693628 -0.286569 0.0579996 0 0.00140859 -0.0165765 -0.0266549 0.999506 uwb: 0.0 842.06 1038.5 +imu_odom_: 1691062588.909284442 0.54109 -0.246603 9.7444 -0.0628506 0.015979 -0.358994 0.04 -0.41 pose: 0.0 -0.286569 0.0579996 0 0.00140859 -0.0165765 -0.0266549 0.999506 uwb: 0.0 842.06 1038.5 +imu_odom_: 1691062588.925269179 0.572214 -0.339977 10.0533 -0.0617853 0.00213053 -0.329167 0.04 -0.41 pose: 0.0 -0.286569 0.0579996 0 0.00140859 -0.0165765 -0.0266549 0.999506 uwb: 0.50001264 841.707 1037.86 +imu_odom_: 1691062588.943382629 0.464475 -0.251391 9.87848 -0.056459 0.00106526 -0.319579 0.04 -0.41 pose: 0.35287513 -0.286569 0.0579996 0 -0.000219307-0.0134735 -0.0345897 0.999311 uwb: 0.0 841.707 1037.86 +imu_odom_: 1691062588.960144307 0.545878 -0.141258 9.96467 -0.0649811 -0.0191748 -0.275903 0.03 -0.32 pose: 0.33879163 -0.286569 0.0579996 0 -0.00181904 -0.010648 -0.0409205 0.999104 uwb: 0.0 841.707 1037.86 +imu_odom_: 1691062588.974146154 0.608127 -0.299275 9.78989 -0.0671117 -0.00958738 -0.239684 0.03 -0.32 pose: 0.0 -0.286569 0.0579996 0 -0.00181904 -0.010648 -0.0409205 0.999104 uwb: 0.49867692 841.613 1037.15 +imu_odom_: 1691062588.991211143 0.629675 -0.433351 9.9527 -0.0596548 -0.00213053 -0.207727 0.03 -0.32 pose: 0.0 -0.286569 0.0579996 0 -0.00181904 -0.010648 -0.0409205 0.999104 uwb: 0.0 841.613 1037.15 +imu_odom_: 1691062589.4146446 0.557849 -0.299275 9.91918 -0.0628506 -0.00639159 -0.183225 0.03 -0.23 pose: 0.32875906 -0.286569 0.0579996 0 -0.000946429-0.00926681 -0.0462211 0.998888 uwb: 0.0 841.613 1037.15 +imu_odom_: 1691062589.21230978 0.459687 -0.179565 9.8258 -0.0543285 0.00532632 -0.165116 0.03 -0.23 pose: 0.0 -0.286569 0.0579996 0 -0.000946429-0.00926681 -0.0462211 0.998888 uwb: 0.50233707 841.343 1036.19 +imu_odom_: 1691062589.38208475 0.416591 -0.244209 9.83538 -0.0585895 -0.0117179 -0.151268 0.02 -0.23 pose: 0.15162008 -0.286569 0.0579996 0 -0.00246822 -0.0096061 -0.0482082 0.998788 uwb: 0.0 841.343 1036.19 +imu_odom_: 1691062589.56206437 0.608127 -0.217872 9.81862 -0.0585895 -0.00852212 -0.134223 0.02 -0.23 pose: 0.0 -0.286569 0.0579996 0 -0.00246822 -0.0096061 -0.0482082 0.998788 uwb: 0.0 841.343 1036.19 +imu_odom_: 1691062589.73216598 0.600945 -0.335188 9.87369 -0.0575243 -0.0127832 -0.107592 0.02 -0.23 pose: 0.0 -0.286569 0.0579996 0 -0.00246822 -0.0096061 -0.0482082 0.998788 uwb: 0.49865074 841.598 1035.26 +imu_odom_: 1691062589.87104415 0.636858 -0.323217 9.90242 -0.0575243 -0.00745685 -0.0862864 0.02 -0.17 pose: 0.46905172 -0.272687 0.0553035 0 -0.00277455 -0.00672518 -0.0532691 0.998554 uwb: 0.0 841.598 1035.26 +imu_odom_: 1691062589.104149574 0.586579 -0.251391 9.85453 -0.052198 0 -0.0671117 0.02 -0.17 pose: 0.0 -0.272687 0.0553035 0 -0.00277455 -0.00672518 -0.0532691 0.998554 uwb: 0.0 841.598 1035.26 +imu_odom_: 1691062589.120082693 0.562637 -0.181959 9.88326 -0.0543285 -0.00426106 -0.0532632 0.02 -0.17 pose: 0.0 -0.272687 0.0553035 0 -0.00277455 -0.00672518 -0.0532691 0.998554 uwb: 0.49946152 841.402 1034.15 +imu_odom_: 1691062589.137090813 0.565032 -0.21069 9.89045 -0.0585895 -0.00213053 -0.0394148 0.01 -0.11 pose: 0.50873289 -0.272687 0.0553035 0 -0.00388679 -0.00877243 -0.0573955 0.998305 uwb: 0.0 841.402 1034.15 +imu_odom_: 1691062589.153088094 0.76375 -0.277727 9.92157 -0.0575243 -0.00852212 -0.0415453 0.01 -0.11 pose: 0.0 -0.272687 0.0553035 0 -0.00388679 -0.00877243 -0.0573955 0.998305 uwb: 0.0 841.402 1034.15 +imu_odom_: 1691062589.170107005 0.596156 -0.167594 9.91439 -0.0532632 0.00319579 -0.0372843 0.01 -0.11 pose: 0.65002587 -0.272687 0.0553035 0 -3.9628e-05 -0.00850601 -0.0605352 0.99813 uwb: 0.49926903 841.103 1033.2 +imu_odom_: 1691062589.186084454 0.54109 -0.234632 9.89284 -0.0575243 -0.00426106 -0.00958738 0 -0.05 pose: 0.0 -0.272687 0.0553035 0 -3.9628e-05 -0.00850601 -0.0605352 0.99813 uwb: 0.0 841.103 1033.2 +imu_odom_: 1691062589.202079985 0.529119 -0.3304 9.90481 -0.0553937 -0.00852212 0.0138484 0 -0.05 pose: 0.0 -0.272687 0.0553035 0 -3.9628e-05 -0.00850601 -0.0605352 0.99813 uwb: 0.0 841.103 1033.2 +imu_odom_: 1691062589.217082758 0.584185 -0.304064 9.91199 -0.0543285 -0.00639159 0.0383495 0 -0.05 pose: 0.32000394 -0.272687 0.0553035 0 0.000830076 -0.00932442 -0.0617074 0.99805 uwb: 0.0 841.103 1033.2 +imu_odom_: 1691062589.231137103 0.536301 -0.282516 9.87129 -0.0553937 0.00532632 0.056459 0 0 pose: 0.0 -0.272687 0.0553035 0 0.000830076 -0.00932442 -0.0617074 0.99805 uwb: 0.50126387 840.791 1032.39 +imu_odom_: 1691062589.245080624 0.399832 -0.213084 9.89524 -0.0511327 0.00852212 0.0479369 0 0 pose: 0.40987126 -0.272687 0.0553035 0 -0.002818 -0.00841277 -0.0621375 0.998028 uwb: 0.0 840.791 1032.39 +imu_odom_: 1691062589.259074890 0.304064 -0.114922 9.88326 -0.052198 0 0.0394148 0 0 pose: 0.0 -0.272687 0.0553035 0 -0.002818 -0.00841277 -0.0621375 0.998028 uwb: 0.0 840.791 1032.39 +imu_odom_: 1691062589.273084906 0.318429 -0.141258 9.89284 -0.0575243 -0.00958738 0.0383495 0 0 pose: 0.6005250 -0.272687 0.0553035 0 -0.0031241 -0.00786696 -0.0620832 0.998035 uwb: 0.49860117 840.548 1032.15 +imu_odom_: 1691062589.288082721 0.447716 -0.246603 9.85932 -0.056459 -0.0138484 0.0330232 0 0 pose: 0.0 -0.272687 0.0553035 0 -0.0031241 -0.00786696 -0.0620832 0.998035 uwb: 0.0 840.548 1032.15 +imu_odom_: 1691062589.302141733 0.526724 -0.280122 9.91439 -0.0553937 -0.0106526 0.0351537 0 0 pose: 0.0 -0.272687 0.0553035 0 -0.0031241 -0.00786696 -0.0620832 0.998035 uwb: 0.0 840.548 1032.15 +imu_odom_: 1691062589.316137458 0.505177 -0.251391 9.88087 -0.056459 -0.00319579 0.0436758 0 0 pose: 0.0 -0.272687 0.0553035 0 -0.0031241 -0.00786696 -0.0620832 0.998035 uwb: 0.0 840.548 1032.15 +imu_odom_: 1691062589.330142515 0.469264 -0.208296 9.89524 -0.0543285 0.00213053 0.0458064 0 0 pose: 0.41992716 -0.272687 0.0553035 0 -0.0016576 -0.00418873 -0.0619608 0.998068 uwb: 0.50095473 840.398 1031.89 +imu_odom_: 1691062589.345141789 0.378284 -0.174777 9.90242 -0.0543285 -0.00106526 0.04048 0 0 pose: 0.0 -0.272687 0.0553035 0 -0.0016576 -0.00418873 -0.0619608 0.998068 uwb: 0.0 840.398 1031.89 +imu_odom_: 1691062589.359133430 0.387861 -0.167594 9.93833 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 -0.272687 0.0553035 0 -0.0016576 -0.00418873 -0.0619608 0.998068 uwb: 0.0 840.398 1031.89 +imu_odom_: 1691062589.373078409 0.440533 -0.232238 9.9096 -0.0553937 -0.0106526 0.0372843 0 0 pose: 0.43007056 -0.272687 0.0553035 0 -0.00235041 -0.00412345 -0.0620332 0.998063 uwb: 0.49994564 840.526 1031.43 +imu_odom_: 1691062589.395068108 0.493206 -0.253785 9.85453 -0.0575243 -0.00426106 0.0383495 0 0 pose: 0.0 -0.272687 0.0553035 0 -0.00235041 -0.00412345 -0.0620332 0.998063 uwb: 0.0 840.526 1031.43 +imu_odom_: 1691062589.412196094 0.201113 -0.31364 9.81862 -0.0628506 0.0266316 0.0234358 0 0 pose: 0.86980328 -0.272687 0.0553035 0 -0.00190726 -0.00377814 -0.0620048 0.998067 uwb: 0.0 840.526 1031.43 +imu_odom_: 1691062589.429074141 -0.23942 -0.059855 10.1514 -0.036219 0.0351537 -0.0756338 0 0 pose: 0.0 -0.272687 0.0553035 0 -0.00190726 -0.00377814 -0.0620048 0.998067 uwb: 0.50074475 840.967 1031.2 +imu_odom_: 1691062589.444134951 -1.45567 0.203507 9.46188 -0.0372843 0.0660464 -0.0585895 0 0 pose: 0.0 -0.272687 0.0553035 0 -0.00190726 -0.00377814 -0.0620048 0.998067 uwb: 0.0 840.967 1031.2 +imu_odom_: 1691062589.461075410 -1.17316 -0.612916 10.0748 -0.0617853 -0.0394148 0.0479369 0.04 0.05 pose: 0.7011424 -0.272687 0.0553035 0 -0.00204781 -0.00297695 -0.06206 0.998066 uwb: 0.0 840.967 1031.2 +imu_odom_: 1691062589.478068073 -0.105345 -0.773327 9.9503 -0.0607201 -0.0937433 0.0639159 0.05 0.02 pose: 0.0 -0.272687 0.0553035 0 -0.00204781 -0.00297695 -0.06206 0.998066 uwb: 0.0 840.967 1031.2 +imu_odom_: 1691062589.495128106 0.677559 -0.253785 10.0078 -0.0383495 -0.0383495 0.0671117 0.05 0.02 pose: 0.66075547 -0.272687 0.0553035 0 -0.0018084 0.00359536 -0.0636866 0.997962 uwb: 0.0 840.967 1031.2 +imu_odom_: 1691062589.512120478 0.306458 -0.047884 9.80665 -0.0596548 0.0319579 0.0862864 0.07 0.02 pose: 0.0 -0.272687 0.0553035 0 -0.0018084 0.00359536 -0.0636866 0.997962 uwb: 0.0 840.967 1031.2 +imu_odom_: 1691062589.529182844 -0.342371 -0.0790087 9.84017 -0.0585895 0.0351537 0.0649811 0.07 0.02 pose: 0.0 -0.272687 0.0553035 0 -0.0018084 0.00359536 -0.0636866 0.997962 uwb: 0.99905135 841.064 1031.33 +imu_odom_: 1691062589.546165008 -0.414197 -0.337582 9.7037 -0.052198 0.00319579 0.0447411 0.07 0.02 pose: 0.34969918 -0.272687 0.0553035 0 -0.00170911 0.00215558 -0.0631493 0.998 uwb: 0.0 841.064 1031.33 +imu_odom_: 1691062589.563116841 0.162806 -0.227449 10.1897 -0.0649811 -0.0181095 0.0575243 0.08 0.02 pose: 0.33997575 -0.272687 0.0553035 0 -0.0004255080.00531825 -0.0626984 0.998018 uwb: 0.0 841.064 1031.33 +imu_odom_: 1691062589.580116503 0.423774 -0.438139 9.72764 -0.0490022 -0.00639159 0.0479369 0.08 0.02 pose: 0.0 -0.272687 0.0553035 0 -0.0004255080.00531825 -0.0626984 0.998018 uwb: 0.49958984 840.97 1030.34 +imu_odom_: 1691062589.598065177 0.253785 -0.059855 9.96467 -0.072438 -0.00213053 0.0511327 0.1 0 pose: 0.42993931 -0.261283 0.056291 0 -0.00172225 0.00680692 -0.0624609 0.998023 uwb: 0.0 840.97 1030.34 +imu_odom_: 1691062589.615109170 0.035913 -0.282516 9.98382 -0.0649811 -0.00852212 0.0468716 0.1 0 pose: 0.0 -0.261283 0.056291 0 -0.00172225 0.00680692 -0.0624609 0.998023 uwb: 0.0 840.97 1030.34 +imu_odom_: 1691062589.631167696 0.347159 -0.234632 9.7851 -0.0500674 -0.0117179 0.0298274 0.1 0 pose: 0.0 -0.261283 0.056291 0 -0.00172225 0.00680692 -0.0624609 0.998023 uwb: 0.50027228 840.677 1029.82 +imu_odom_: 1691062589.649161574 0.287304 -0.433351 10.0413 -0.0426106 -0.0223706 0.0490022 0.11 0 pose: 0.7943520 -0.2588 0.0526215 0 -0.0009948990.00684097 -0.0624093 0.998027 uwb: 0.0 840.677 1029.82 +imu_odom_: 1691062589.666151612 -0.0047884 -0.488417 10.0293 -0.0351537 0.015979 0.0372843 0.11 0 pose: 0.0 -0.2588 0.0526215 0 -0.0009948990.00684097 -0.0624093 0.998027 uwb: 0.0 840.677 1029.82 +imu_odom_: 1691062589.680205958 1.0343 -0.227449 10.1442 -0.0553937 -0.0340885 0.036219 0.11 0 pose: 0.0 -0.2588 0.0526215 0 -0.0009948990.00684097 -0.0624093 0.998027 uwb: 0.49928362 840.764 1029.37 +imu_odom_: 1691062589.697122210 0.847547 0.023942 9.59596 -0.0617853 -0.00319579 0.0649811 0.1 0 pose: 0.51109813 -0.2588 0.0526215 0 -0.00129621 0.00675881 -0.0623319 0.998032 uwb: 0.0 840.764 1029.37 +imu_odom_: 1691062589.713031414 0.691924 -0.37589 9.81862 -0.0553937 0.02024 0.0681769 0.09 0 pose: 0.0 -0.2588 0.0526215 0 -0.00129621 0.00675881 -0.0623319 0.998032 uwb: 0.0 840.764 1029.37 +imu_odom_: 1691062589.730033702 0.957681 -0.354342 10.0437 -0.0585895 -0.015979 0.0777643 0.09 0 pose: 0.64877180 -0.250519 0.0582282 0 -0.00259387 0.00447733 -0.0620335 0.998061 uwb: 0.50070683 840.568 1028.83 +imu_odom_: 1691062589.746033024 1.28329 -0.0143652 9.96227 -0.052198 -0.00319579 0.0660464 0.08 -0.02 pose: 0.0 -0.250519 0.0582282 0 -0.00259387 0.00447733 -0.0620335 0.998061 uwb: 0.0 840.568 1028.83 +imu_odom_: 1691062589.763028020 1.1995 -0.196325 9.63666 -0.0436758 0.00319579 0.0575243 0.08 -0.02 pose: 0.0 -0.250519 0.0582282 0 -0.00259387 0.00447733 -0.0620335 0.998061 uwb: 0.0 840.568 1028.83 +imu_odom_: 1691062589.779046007 0.916979 -0.160412 10.0796 -0.0639159 0.0213053 0.0585895 0.08 -0.02 pose: 0.33994075 -0.244907 0.0499513 0 -0.00304354 0.00119431 -0.0614876 0.998102 uwb: 0.49944110 840.844 1028.21 +imu_odom_: 1691062589.796156495 0.64404 -0.363919 10.0509 -0.0585895 0.0213053 0.0287621 0.08 -0.02 pose: 0.41004916 -0.244907 0.0499513 0 -0.00251123 -0.00259777 -0.0610903 0.998126 uwb: 0.0 840.844 1028.21 +imu_odom_: 1691062589.812068615 0.373495 -0.138864 9.8258 -0.0479369 -0.015979 -0.0340885 0.08 -0.02 pose: 0.0 -0.244907 0.0499513 0 -0.00251123 -0.00259777 -0.0610903 0.998126 uwb: 0.0 840.844 1028.21 +imu_odom_: 1691062589.829048738 0.737414 0.00718261 9.76116 -0.0585895 -0.00532632 -0.0351537 0.08 -0.02 pose: 0.0 -0.244907 0.0499513 0 -0.00251123 -0.00259777 -0.0610903 0.998126 uwb: 0.50162260 840.677 1027.81 +imu_odom_: 1691062589.845170842 0.816423 -0.213084 10.0149 -0.0671117 -0.00213053 -0.00532632 0.04 0 pose: 0.8052012 -0.244907 0.0499513 0 -0.00294892 -0.00317508 -0.0611345 0.99812 uwb: 0.0 840.677 1027.81 +imu_odom_: 1691062589.862058222 0.550666 -0.392649 9.83538 -0.0490022 0.0340885 -0.00745685 0.06 0.02 pose: 0.0 -0.244907 0.0499513 0 -0.00294892 -0.00317508 -0.0611345 0.99812 uwb: 0.0 840.677 1027.81 +imu_odom_: 1691062589.878121122 0.3304 -0.225055 10.1203 -0.0479369 0.00426106 0.0479369 0.06 0.02 pose: 0.65083664 -0.244907 0.0499513 0 -0.00178976 -0.00588176 -0.0629332 0.997999 uwb: 0.49830952 840.416 1026.99 +imu_odom_: 1691062589.901083164 0.545878 -0.28491 9.95748 -0.0585895 -0.0255663 0.0777643 0.05 0 pose: 0.0 -0.244907 0.0499513 0 -0.00178976 -0.00588176 -0.0629332 0.997999 uwb: 0.0 840.416 1026.99 +imu_odom_: 1691062589.927180091 -0.0023942 -0.0981623 9.60793 -0.0479369 0.0692422 0.0575243 0.05 0 pose: 0.32901575 -0.236621 0.0555487 0 -0.00264882 -0.0048622 -0.0629575 0.998001 uwb: 0.49988148 840.252 1026.45 +imu_odom_: 1691062589.940058526 -0.837971 -0.150835 9.96467 -0.0490022 0.113983 0.0585895 0.05 0.02 pose: 0.42096833 -0.236621 0.0555487 0 -0.00240357 -0.00301092 -0.0624187 0.998043 uwb: 0.0 840.252 1026.45 +imu_odom_: 1691062589.956245084 -1.41497 -0.292093 9.94791 -0.056459 -0.00319579 0.0681769 0.05 0.02 pose: 0.5887135 -0.236621 0.0555487 0 -0.00227831 -0.00208124 -0.0623626 0.998049 uwb: 0.0 840.252 1026.45 +imu_odom_: 1691062589.981019988 -0.0981623 -0.215478 9.95988 -0.0575243 -0.0841559 0.0436758 0.09 0.05 pose: 0.0 -0.236621 0.0555487 0 -0.00227831 -0.00208124 -0.0623626 0.998049 uwb: 0.50021687 840.417 1026.28 +imu_odom_: 1691062590.3019602 0.727837 -0.260968 9.76355 -0.0596548 -0.0511327 0.0500674 0.09 0.05 pose: 0.31252326 -0.236621 0.0555487 0 -0.00198176 0.00112864 -0.0620427 0.998071 uwb: 0.0 840.417 1026.28 +imu_odom_: 1691062590.28029867 -0.289698 -0.110133 9.76116 -0.0585895 0.0245011 0.0490022 0.1 0.02 pose: 0.38700050 -0.231009 0.0472718 0 -0.00207086 -0.000588095-0.0618917 0.998081 uwb: 0.50115016 840.231 1026.02 +imu_odom_: 1691062590.53076003 -0.100556 -0.184354 9.7851 -0.0490022 -0.0149137 0.0447411 0.1 0.02 pose: 0.8048222 -0.231009 0.0472718 0 -0.00186762 0.000306061 -0.0618526 0.998083 uwb: 0.0 840.231 1026.02 +imu_odom_: 1691062590.78021231 0.328006 -0.25618 10.003 -0.0511327 -0.00426106 0.0436758 0.1 0.02 pose: 0.42008179 -0.225395 0.0510815 0 -0.0008895070.00451146 -0.0617006 0.998084 uwb: 0.50006530 840.278 1026.01 +imu_odom_: 1691062590.95030520 0.454898 0.0167594 9.84496 -0.0330232 0.0149137 0.0298274 0.1 0.02 pose: 0.0 -0.225395 0.0510815 0 -0.0008895070.00451146 -0.0617006 0.998084 uwb: 0.0 840.278 1026.01 +imu_odom_: 1691062590.120047784 0.160412 0.0550666 9.48343 -0.0596548 -0.0266316 0.0692422 0.12 0 pose: 0.41954517 -0.222735 0.0528878 0 -0.00122112 0.00266795 -0.061742 0.998088 uwb: 0.49848458 840.209 1025.74 +imu_odom_: 1691062590.145025384 -0.0694318 -0.301669 9.91199 -0.056459 0.00213053 0.0447411 0.12 0 pose: 0.0 -0.222735 0.0528878 0 -0.00122112 0.00266795 -0.061742 0.998088 uwb: 0.0 840.209 1025.74 +imu_odom_: 1691062590.170171554 0.531513 -0.0646434 10.149 -0.0511327 -0.0117179 0.056459 0.14 0 pose: 0.49994864 -0.217125 0.056698 0 0.000418516 0.00617224 -0.0613023 0.9981 uwb: 0.50315964 840.307 1025.29 +imu_odom_: 1691062590.187097725 -0.102951 -0.237026 9.76355 -0.0500674 0.0415453 0.0532632 0.14 0 pose: 0.0 -0.217125 0.056698 0 0.000418516 0.00617224 -0.0613023 0.9981 uwb: 0.0 840.307 1025.29 +imu_odom_: 1691062590.210997699 0.220267 -0.304064 10.2663 -0.0426106 -0.0830906 0.0479369 0.14 0.02 pose: 0.42072341 -0.214464 0.0585084 0 0.0015938 0.00590858 -0.06097 0.998121 uwb: 0.0 840.307 1025.29 +imu_odom_: 1691062590.234011656 0.52433 -0.114922 9.8689 -0.0468716 0.0500674 0.0607201 0.14 0.02 pose: 0.0 -0.214464 0.0585084 0 0.0015938 0.00590858 -0.06097 0.998121 uwb: 0.50049109 840.613 1025.24 +imu_odom_: 1691062590.260114712 0.725443 -0.265756 9.59357 -0.0607201 -0.0276969 0.0394148 0.2 0 pose: 0.46913931 -0.203332 0.0539942 0 0.000644069 0.00468987 -0.0606406 0.998148 uwb: 0.0 840.613 1025.24 +imu_odom_: 1691062590.273002774 0.0646434 -0.169988 9.60554 -0.0436758 0.0106526 0.036219 0.2 0 pose: 0.0 -0.203332 0.0539942 0 0.000644069 0.00468987 -0.0606406 0.998148 uwb: 0.49601436 840.588 1025.39 +imu_odom_: 1691062590.297088817 0.608127 -0.181959 10.307 -0.056459 0.0234358 0.0703074 0.14 0.02 pose: 0.38991118 -0.200571 0.0558774 0 0.000386972 0.00318032 -0.060665 0.998153 uwb: 0.0 840.588 1025.39 +imu_odom_: 1691062590.314026362 0.42138 -0.308852 10.3453 -0.0607201 0.00852212 0.0447411 0.14 0.02 pose: 0.8079718 -0.200571 0.0558774 0 0.000426302 0.00248469 -0.0605407 0.998163 uwb: 0.0 840.588 1025.39 +imu_odom_: 1691062590.338996087 0.737414 0.181959 10.0197 -0.052198 -0.056459 0.0639159 0.16 0.02 pose: 0.32943870 -0.193745 0.054589 0 -0.00114278 0.00068099 -0.0602523 0.998182 uwb: 0.50003613 840.573 1024.68 +imu_odom_: 1691062590.365055105 0.957681 -0.246603 10.2352 -0.0660464 -0.0181095 0.0415453 0.16 0.02 pose: 0.0 -0.193745 0.054589 0 -0.00114278 0.00068099 -0.0602523 0.998182 uwb: 0.0 840.573 1024.68 +imu_odom_: 1691062590.390057786 0.3304 0.047884 9.76595 -0.0617853 -0.0490022 0.0511327 0.16 0 pose: 0.9059352 -0.186673 0.0532585 0 -0.000479015-0.000173929-0.0601423 0.99819 uwb: 0.50049984 840.726 1023.95 +imu_odom_: 1691062590.415043844 -0.0909797 -0.339977 9.35175 -0.0798948 -0.0500674 0.0575243 0.15 0.02 pose: 0.49998947 -0.186673 0.0532584 0 0.000813725 -0.00421993 -0.0598779 0.998196 uwb: 0.0 840.726 1023.95 +imu_odom_: 1691062590.438049636 -0.0191536 -0.126893 10.2663 -0.0596548 0.0213053 0.0351537 0.15 0.02 pose: 0.0 -0.186673 0.0532584 0 0.000813725 -0.00421993 -0.0598779 0.998196 uwb: 0.50025487 840.782 1023.51 +imu_odom_: 1691062590.454986889 0.21069 -0.0981623 10.1538 -0.0820254 -0.015979 0.0788296 0.15 0.02 pose: 0.0 -0.186673 0.0532584 0 0.000813725 -0.00421993 -0.0598779 0.998196 uwb: 0.0 840.782 1023.51 +imu_odom_: 1691062590.467985484 0.435745 -0.474052 10.0293 -0.0820254 0.00426106 0.072438 0.17 0 pose: 0.72902371 -0.172799 0.0505191 0 0.00197449 0.00130369 -0.0594692 0.998227 uwb: 0.0 840.782 1023.51 +imu_odom_: 1691062590.492041487 0.816423 -0.059855 9.94312 -0.0575243 -0.00639159 0.0415453 0.17 0 pose: 0.0 -0.172799 0.0505191 0 0.00197449 0.00130369 -0.0594692 0.998227 uwb: 0.49944409 840.472 1022.7 +imu_odom_: 1691062590.517068083 0.244209 -0.311246 10.2089 -0.0660464 0.0149137 0.0458064 0.15 0.05 pose: 0.46054455 -0.163556 0.0486991 0 0.00138673 -0.000487167-0.0590558 0.998254 uwb: 0.0 840.472 1022.7 +imu_odom_: 1691062590.540975931 0.141258 -0.0143652 10.0389 -0.0308927 -0.0223706 0.0415453 0.15 0.05 pose: 0.0 -0.163556 0.0486991 0 0.00138673 -0.000487167-0.0590558 0.998254 uwb: 0.50004779 840.512 1022.13 +imu_odom_: 1691062590.564028094 0.40462 -0.442927 9.84496 -0.052198 -0.0266316 0.0532632 0.18 0.02 pose: 0.8015849 -0.158923 0.0477909 0 0.000906633 0.000260949 -0.0590316 0.998256 uwb: 0.0 840.512 1022.13 +imu_odom_: 1691062590.580972347 0.593762 -0.0933739 9.89763 -0.0447411 0.0181095 0.04048 0.18 0.02 pose: 0.0 -0.158923 0.0477909 0 0.000906633 0.000260949 -0.0590316 0.998256 uwb: 0.49977949 840.768 1022.24 +imu_odom_: 1691062590.605137134 0.699107 -0.253785 9.70849 -0.0681769 0.0170442 0.0628506 0.2 0 pose: 0.48947276 -0.158923 0.0477909 0 0.00109489 0.00304162 -0.0589011 0.998259 uwb: 0.0 840.768 1022.24 +imu_odom_: 1691062590.630966628 0.766145 -0.143652 10.4555 -0.0255663 -0.0330232 0.0276969 0.18 0.02 pose: 0.40033163 -0.145043 0.0450752 0 0.000249082 0.000528824 -0.058701 0.998275 uwb: 0.49989030 840.644 1021.69 +imu_odom_: 1691062590.644245784 0.469264 -0.0790087 9.72764 -0.0628506 -0.0117179 0.0692422 0.18 0.02 pose: 0.41928853 -0.145043 0.0450752 0 0.000583399 -0.00382486 -0.0586666 0.99827 uwb: 0.0 840.644 1021.69 +imu_odom_: 1691062590.669121309 0.588974 -0.11971 10.3813 -0.0394148 -0.036219 0.0426106 0.18 0.02 pose: 0.0 -0.145043 0.0450752 0 0.000583399 -0.00382486 -0.0586666 0.99827 uwb: 0.0 840.644 1021.69 +imu_odom_: 1691062590.694107950 0.68953 -0.0670376 10.1418 -0.0490022 0.0138484 0.0458064 0.16 -0.02 pose: 0.6016625 -0.145043 0.0450752 0 0.00116094 -0.00384829 -0.0585799 0.998275 uwb: 0.0 840.644 1021.69 +imu_odom_: 1691062590.708107760 0.112527 -0.035913 9.67736 -0.0553937 -0.015979 0.0553937 0.16 -0.02 pose: 0.0 -0.145043 0.0450752 0 0.00116094 -0.00384829 -0.0585799 0.998275 uwb: 0.0 840.644 1021.69 +imu_odom_: 1691062590.731998984 0.0383072 -0.059855 10.2161 -0.0426106 0.0117179 0.0426106 0.17 0 pose: 0.40041038 -0.131162 0.0423682 0 0.00332291 -0.00724352 -0.0584107 0.998261 uwb: 0.99981270 840.704 1020.69 +imu_odom_: 1691062590.755958745 0.76375 -0.335188 10.2855 -0.0692422 -0.0287621 0.0553937 0.17 0 pose: 0.0 -0.131162 0.0423682 0 0.00332291 -0.00724352 -0.0584107 0.998261 uwb: 0.0 840.704 1020.69 +imu_odom_: 1691062590.772965993 0.332794 -0.454898 9.68215 -0.0500674 0.0330232 0.0213053 0.24 0 pose: 0.38987909 -0.12287 0.0479584 0 0.00460919 -0.00655008 -0.0582468 0.99827 uwb: 0.50038902 840.646 1019.85 +imu_odom_: 1691062590.796958709 0.416591 -0.629675 9.36133 -0.0447411 0.04048 0.052198 0.24 0 pose: 0.0 -0.12287 0.0479584 0 0.00460919 -0.00655008 -0.0582468 0.99827 uwb: 0.0 840.646 1019.85 +imu_odom_: 1691062590.822970772 0.371101 -0.299275 9.77553 -0.0149137 0.0617853 0.0266316 0.22 -0.02 pose: 0.47976684 -0.117277 0.0396687 0 0.00252855 -0.00625205 -0.0580969 0.998288 uwb: 0.50019945 840.631 1019.15 +imu_odom_: 1691062590.843965675 0.627281 -0.428562 9.86411 -0.0585895 0.0170442 0.0660464 0.22 -0.02 pose: 0.0 -0.117277 0.0396687 0 0.00252855 -0.00625205 -0.0580969 0.998288 uwb: 0.0 840.631 1019.15 +imu_odom_: 1691062590.868024887 0.347159 0.0502782 10.2951 -0.0223706 0.00426106 0.0426106 0.18 -0.02 pose: 0.41109040 -0.108989 0.0452631 0 -0.000581173-0.00349127 -0.0580607 0.998307 uwb: 0.0 840.631 1019.15 +imu_odom_: 1691062590.885027177 0.442927 -0.100556 9.81383 -0.0639159 -0.00532632 0.0703074 0.18 -0.02 pose: 0.0 -0.108989 0.0452631 0 -0.000581173-0.00349127 -0.0580607 0.998307 uwb: 0.49916703 840.731 1018.15 +imu_odom_: 1691062590.909017852 0.392649 -0.0646434 9.73243 -0.0436758 -0.00639159 0.0340885 0.18 0 pose: 0.45873927 -0.103392 0.0369756 0 -0.00192306 -0.00236674 -0.0578827 0.998319 uwb: 0.0 840.731 1018.15 +imu_odom_: 1691062590.926996859 0.40462 -0.177171 9.86411 -0.0628506 0.00426106 0.0756338 0.18 0 pose: 0.0 -0.103392 0.0369756 0 -0.00192306 -0.00236674 -0.0578827 0.998319 uwb: 0.50143019 841.068 1016.85 +imu_odom_: 1691062590.951042655 0.746991 -0.265756 10.2687 -0.0735032 -0.0319579 0.0351537 0.18 0 pose: 0.42048426 -0.0951063 0.0425738 0 0.00242686 -0.00175933 -0.0576256 0.998334 uwb: 0.0 841.068 1016.85 +imu_odom_: 1691062590.977075717 1.27372 -0.174777 9.61272 -0.0788296 0.00213053 0.0436758 0.18 0 pose: 0.0 -0.0951063 0.0425738 0 0.00242686 -0.00175933 -0.0576256 0.998334 uwb: 0.50262010 841.467 1015.83 +imu_odom_: 1691062591.1948325 0.4956 -0.225055 9.89524 -0.036219 0 0.0266316 0.18 -0.02 pose: 0.42016637 -0.0812199 0.0398964 0 0.00201896 -0.00123821 -0.0573668 0.99835 uwb: 0.0 841.467 1015.83 +imu_odom_: 1691062591.28988730 0.773327 0.0167594 10.0533 -0.076699 -0.052198 0.0671117 0.19 0 pose: 0.50153519 -0.0812199 0.0398964 0 0.000248134 -0.00511655 -0.0573905 0.998339 uwb: 0.49535818 841.334 1014.16 +imu_odom_: 1691062591.44973766 0.632069 -0.296881 9.61751 -0.0713727 0.0149137 0.0426106 0.19 0 pose: 0.0 -0.0812199 0.0398964 0 0.000248134 -0.00511655 -0.0573905 0.998339 uwb: 0.0 841.334 1014.16 +imu_odom_: 1691062591.70970085 0.277727 -0.61531 9.68933 -0.0639159 0.0149137 0.0500674 0.25 0.02 pose: 0.24783365 -0.0673331 0.0372213 0 -0.000718468-0.00521915 -0.0573829 0.998338 uwb: 0.50049700 841.512 1013.17 +imu_odom_: 1691062591.96219209 0.502782 -0.260968 9.35415 -0.0266316 0.00639159 0.02024 0.25 0.02 pose: 0.43130434 -0.0673331 0.0372213 0 -0.001754 -0.00746492 -0.057048 0.998342 uwb: 0.0 841.512 1013.17 +imu_odom_: 1691062591.119987363 0.677559 -0.490811 9.72525 -0.0681769 0.00532632 0.0468716 0.19 -0.02 pose: 0.25019309 -0.0590565 0.0428335 0 -0.00281991 -0.00547303 -0.0570116 0.998355 uwb: 0.50068075 841.543 1012.06 +imu_odom_: 1691062591.144076035 0.909797 -0.21069 10.0341 -0.0298274 -0.0500674 0.0340885 0.19 -0.02 pose: 0.0 -0.0590565 0.0428335 0 -0.00281991 -0.00547303 -0.0570116 0.998355 uwb: 0.0 841.543 1012.06 +imu_odom_: 1691062591.161078327 0.301669 -0.191536 9.34696 -0.0490022 0.0340885 0.0596548 0.26 -0.02 pose: 0.25931574 -0.0534445 0.0345566 0 -0.00252209 -0.00414963 -0.0571546 0.998354 uwb: 0.0 841.543 1012.06 +imu_odom_: 1691062591.185924399 0.222661 -0.0694318 9.89763 -0.0415453 0.0127832 0.0287621 0.26 -0.02 pose: 0.0 -0.0534445 0.0345566 0 -0.00252209 -0.00414963 -0.0571546 0.998354 uwb: 0.0 841.543 1012.06 +imu_odom_: 1691062591.212004420 0.488417 -0.179565 9.98861 -0.0894822 0.015979 0.0447411 0.21 0.02 pose: 0.47038470 -0.0451667 0.0401671 0 -0.00305395 -0.00717163 -0.0570959 0.998338 uwb: 0.0 841.543 1012.06 +imu_odom_: 1691062591.227997914 0.167594 -0.440533 9.34217 -0.0436758 0.0266316 0.0308927 0.21 0.02 pose: 0.0 -0.0451667 0.0401671 0 -0.00305395 -0.00717163 -0.0570959 0.998338 uwb: 0.99864918 841.625 1010.52 +imu_odom_: 1691062591.253932695 0.0526724 -0.390255 9.95509 -0.0532632 0.00532632 0.0447411 0.18 -0.02 pose: 0.42975571 -0.0395551 0.03189 0 -0.000378188-0.00391292 -0.0571168 0.99836 uwb: 0.0 841.625 1010.52 +imu_odom_: 1691062591.276929157 0.31364 -0.169988 10.1849 -0.0276969 0.00852212 0.0319579 0.18 -0.02 pose: 0.0 -0.0395551 0.03189 0 -0.000378188-0.00391292 -0.0571168 0.99836 uwb: 0.50316555 842.024 1009.25 +imu_odom_: 1691062591.300950167 0.591368 -0.220267 10.1179 -0.0745685 -0.0138484 0.0628506 0.18 0 pose: 0.41930900 -0.0312776 0.0375009 0 -3.00347e-05-0.0017934 -0.0571244 0.998365 uwb: 0.0 842.024 1009.25 +imu_odom_: 1691062591.318045203 0.600945 -0.399832 9.34936 -0.0458064 0.0447411 0.0415453 0.18 0 pose: 0.0 -0.0312776 0.0375009 0 -3.00347e-05-0.0017934 -0.0571244 0.998365 uwb: 0.0 842.024 1009.25 +imu_odom_: 1691062591.342921606 -0.150835 -0.035913 9.67736 -0.0500674 0.0234358 0.0585895 0.18 0 pose: 0.82045147 -0.0145617 0.0306637 0 -0.000793591-0.00122728 -0.0568642 0.998381 uwb: 0.49746391 841.925 1007.87 +imu_odom_: 1691062591.365957441 0.56982 -0.184354 9.63666 -0.0276969 0.0255663 0.0383495 0.18 0 pose: 0.8934530 -0.0117756 0.026558 0 -0.000432827-0.000274401-0.0567793 0.998387 uwb: 0.0 841.925 1007.87 +imu_odom_: 1691062591.383931784 0.526724 -0.246603 10.2496 -0.072438 -0.0426106 0.0596548 0.25 0 pose: 0.0 -0.0117756 0.026558 0 -0.000432827-0.000274401-0.0567793 0.998387 uwb: 0.50056116 842.138 1006.2 +imu_odom_: 1691062591.407897382 0.217872 -0.430956 10.0676 -0.0553937 0.0191748 0.0319579 0.25 0 pose: 0.47014264 -0.0035019 0.0321745 0 0.000315271 -0.0014172 -0.0565603 0.998398 uwb: 0.0 842.138 1006.2 +imu_odom_: 1691062591.432899484 0.1652 -0.335188 10.3094 -0.0671117 -0.0106526 0.0703074 0.23 0 pose: 0.33903385 0.0003898180.026447 0 -0.0017162 -0.000356733-0.056547 0.998398 uwb: 0.49807053 842.571 1004.95 +imu_odom_: 1691062591.448918351 0.21069 -0.196325 9.72285 -0.0415453 -0.0149137 0.0415453 0.23 0 pose: 0.7082295 0.00211831 0.0239033 0 -0.00195369 0.000304074 -0.0564371 0.998404 uwb: 0.0 842.571 1004.95 +imu_odom_: 1691062591.474930710 0.311246 -0.110133 9.31823 -0.0692422 0.00213053 0.0628506 0.18 0.05 pose: 0.0 0.00211831 0.0239033 0 -0.00195369 0.000304074 -0.0564371 0.998404 uwb: 0.50227603 842.937 1004.38 +imu_odom_: 1691062591.499911521 0.464475 -0.102951 10.1754 -0.0660464 0.0276969 0.0415453 0.18 0.05 pose: 0.33938674 0.0103882 0.0295254 0 -0.00171969 0.00331332 -0.0561379 0.998416 uwb: 0.0 842.937 1004.38 +imu_odom_: 1691062591.522912650 0.596156 -0.213084 10.1179 -0.0852212 0.0234358 0.0607201 0.19 0 pose: 0.50993170 0.0202037 0.0276675 0 0.001924 0.00216833 -0.0557944 0.998438 uwb: 0.49889588 842.83 1003.98 +imu_odom_: 1691062591.548969631 0.876278 -0.105345 10.1323 -0.0607201 0.052198 0.0245011 0.24 -0.02 pose: 0.0 0.0202037 0.0276675 0 0.001924 0.00216833 -0.0557944 0.998438 uwb: 0.0 842.83 1003.98 +imu_odom_: 1691062591.573925361 0.505177 -0.0407014 10.07 -0.0894822 0.0106526 0.0692422 0.24 -0.02 pose: 0.31173592 0.0242837 0.0268954 0 0.00123545 -0.000329819-0.0556074 0.998452 uwb: 0.49855173 843.229 1002.46 +imu_odom_: 1691062591.589906898 0.251391 -0.502782 9.69173 -0.0745685 0.00639159 0.0490022 0.24 -0.02 pose: 0.0 0.0242837 0.0268954 0 0.00123545 -0.000329819-0.0556074 0.998452 uwb: 0.0 843.229 1002.46 +imu_odom_: 1691062591.615893008 0.634463 -0.158017 10.4938 -0.102265 -0.0298274 0.056459 0.21 0 pose: 0.48826835 0.0381801 0.0242707 0 0.00262843 -0.00227256 -0.0553432 0.998461 uwb: 0.0 843.229 1002.46 +imu_odom_: 1691062591.641120260 0.40462 -0.287304 9.77792 -0.107592 -0.0490022 0.0394148 0.22 0 pose: 0.35981060 0.0381801 0.0242707 0 0.00117799 -0.00457085 -0.0550738 0.998471 uwb: 0.50016453 843.306 1000.55 +imu_odom_: 1691062591.665948833 0.354342 -0.574608 9.99819 -0.0575243 -0.0426106 0.0149137 0.22 0 pose: 0.0 0.0381801 0.0242707 0 0.00117799 -0.00457085 -0.0550738 0.998471 uwb: 0.0 843.306 1000.55 +imu_odom_: 1691062591.682054902 0.73502 -0.191536 10.1754 -0.0394148 0.0266316 0.0319579 0.18 0 pose: 0.7093670 0.0381801 0.0242707 0 0.000470105 -0.00422969 -0.0550738 0.998473 uwb: 0.50101614 843.237 998.905 +imu_odom_: 1691062591.698047230 0.311246 -0.265756 9.48583 -0.0575243 0.00213053 0.0596548 0.18 0 pose: 0.0 0.0381801 0.0242707 0 0.000470105 -0.00422969 -0.0550738 0.998473 uwb: 0.0 843.237 998.905 +imu_odom_: 1691062591.723889851 0.213084 -0.356736 10.0676 -0.0308927 0.00426106 0.0223706 0.18 -0.02 pose: 0.50071574 0.052078 0.02166 0 -0.00343288 -0.00347018 -0.0554 0.998452 uwb: 0.50063407 843.8 997.682 +imu_odom_: 1691062591.746974099 0.201113 -0.402226 9.79707 -0.0596548 -0.0308927 0.0532632 0.18 -0.02 pose: 0.0 0.052078 0.02166 0 -0.00343288 -0.00347018 -0.0554 0.998452 uwb: 0.0 843.8 997.682 +imu_odom_: 1691062591.772903047 0.474052 -0.423774 9.7444 -0.0351537 0.02024 0.0319579 0.18 0 pose: 0.33066656 0.0603355 0.0273004 0 -0.00312974 -0.00174782 -0.0553406 0.998461 uwb: 0.50007704 844.184 996.328 +imu_odom_: 1691062591.798027640 0.237026 -0.481235 9.75158 -0.0532632 0.0287621 0.0490022 0.18 0 pose: 0.0 0.0603355 0.0273004 0 -0.00312974 -0.00174782 -0.0553406 0.998461 uwb: 0.0 844.184 996.328 +imu_odom_: 1691062591.820918819 0.586579 -0.275333 9.93833 -0.0543285 0.0106526 0.0308927 0.18 -0.02 pose: 0.48781339 0.0659759 0.019043 0 -0.00508472 0.00138446 -0.0553544 0.998453 uwb: 0.49994580 844.385 995.109 +imu_odom_: 1691062591.846027371 1.13006 -0.237026 10.1347 -0.0745685 -0.0287621 0.0511327 0.18 -0.02 pose: 0.0 0.0659759 0.019043 0 -0.00508472 0.00138446 -0.0553544 0.998453 uwb: 0.0 844.385 995.109 +imu_odom_: 1691062591.861943871 0.651223 -0.483629 9.25359 -0.0617853 0.0468716 0.02024 0.23 0 pose: 0.50395299 0.0742337 0.024683 0 -0.0075991 0.00227356 -0.0553401 0.998436 uwb: 0.0 844.385 995.109 +imu_odom_: 1691062591.885938633 0.260968 -0.701501 9.22486 -0.052198 0.0436758 0.0383495 0.23 0 pose: 0.0 0.0742337 0.024683 0 -0.0075991 0.00227356 -0.0553401 0.998436 uwb: 0.49929543 844.566 994.028 +imu_odom_: 1691062591.903945349 0.122104 -0.579397 10.0628 -0.0266316 -0.00426106 0.0234358 0.19 0.05 pose: 0.47734335 0.0881312 0.0220657 0 -0.00749941 -0.00225151 -0.0553612 0.998436 uwb: 0.0 844.566 994.028 +imu_odom_: 1691062591.927874783 0.749385 -0.237026 9.89763 -0.0585895 -0.0276969 0.0532632 0.19 0.05 pose: 0.0 0.0881312 0.0220657 0 -0.00749941 -0.00225151 -0.0553612 0.998436 uwb: 0.49953166 844.796 993.087 +imu_odom_: 1691062591.955025430 0.474052 -0.0143652 10.5441 -0.0191748 -0.00319579 0.0394148 0.23 -0.02 pose: 0.40941350 0.0881312 0.0220657 0 -0.0102225 -0.000113352-0.0555117 0.998406 uwb: 0.0 844.796 993.087 +imu_odom_: 1691062591.979027774 0.37589 -0.0191536 10.1083 -0.0426106 -0.00319579 0.0628506 0.23 -0.02 pose: 0.0 0.0881312 0.0220657 0 -0.0102225 -0.000113352-0.0555117 0.998406 uwb: 0.50075365 844.828 992.409 +imu_odom_: 1691062592.5227661 0.234632 0.150835 10.2137 -0.0468716 -0.0298274 0.0500674 0.2 -0.05 pose: 0.41974355 0.102028 0.0194439 0 -0.00861877 -0.00177272 -0.0554416 0.998423 uwb: 0.0 844.828 992.409 +imu_odom_: 1691062592.29885626 0.292093 -0.454898 9.83299 -0.076699 0.00639159 0.0553937 0.19 0 pose: 0.51013877 0.115926 0.0168282 0 -0.0030923 -0.00139802 -0.0551306 0.998473 uwb: 0.49962793 844.648 991.72 +imu_odom_: 1691062592.46872172 0.263362 -0.0861913 9.94073 -0.0532632 -0.0490022 0.0287621 0.19 0 pose: 0.0 0.115926 0.0168282 0 -0.0030923 -0.00139802 -0.0551306 0.998473 uwb: 0.0 844.648 991.72 +imu_odom_: 1691062592.71926482 0.555455 -0.342371 9.663 -0.0735032 -0.0639159 0.0468716 0.19 0 pose: 0.25961906 0.115926 0.0168282 0 -0.00204545 -0.000477721-0.0549725 0.998486 uwb: 0.49874429 845.011 991.197 +imu_odom_: 1691062592.97923388 0.670376 0.0263362 9.61272 -0.0543285 -0.0330232 0.0447411 0.18 0.02 pose: 0.42948163 0.12418 0.0224746 0 -0.00269988 1.42278e-05 -0.0548913 0.998489 uwb: 0.0 845.011 991.197 +imu_odom_: 1691062592.111865165 0.567426 -0.174777 9.8689 -0.0713727 -0.00532632 0.0575243 0.18 0.02 pose: 0.0 0.12418 0.0224746 0 -0.00269988 1.42278e-05 -0.0548913 0.998489 uwb: 0.0 845.011 991.197 +imu_odom_: 1691062592.135880345 0.857124 -0.150835 9.51456 -0.0447411 0 0.0287621 0.18 -0.02 pose: 0.48016070 0.129827 0.0142222 0 -0.00137984 -0.00437106 -0.0547255 0.998491 uwb: 0.50104246 844.975 989.837 +imu_odom_: 1691062592.152859600 0.320823 -0.474052 9.4164 -0.0809601 0.0117179 0.0415453 0.18 -0.02 pose: 0.0 0.129827 0.0142222 0 -0.00137984 -0.00437106 -0.0547255 0.998491 uwb: 0.0 844.975 989.837 +imu_odom_: 1691062592.168906760 0.423774 -0.265756 10.4842 -0.0511327 -0.0330232 0.0426106 0.23 0 pose: 0.38972464 0.143728 0.0116223 0 -0.00107226 -0.00681203 -0.0547796 0.998475 uwb: 0.50128452 845.359 988.777 +imu_odom_: 1691062592.184902589 0.306458 -0.162806 10.094 -0.0575243 -0.00745685 0.0458064 0.23 0 pose: 0.0 0.143728 0.0116223 0 -0.00107226 -0.00681203 -0.0547796 0.998475 uwb: 0.0 845.359 988.777 +imu_odom_: 1691062592.200844465 0.222661 -0.42138 10.1442 -0.0649811 -0.00532632 0.0458064 0.23 0 pose: 0.0 0.143728 0.0116223 0 -0.00107226 -0.00681203 -0.0547796 0.998475 uwb: 0.0 845.359 988.777 +imu_odom_: 1691062592.217912672 0.663194 -0.282516 9.75637 -0.052198 0.04048 0.02024 0.18 -0.02 pose: 0.49994296 0.15198 0.0172719 0 -0.00183195 -0.0026209 -0.054661 0.9985 uwb: 0.0 845.359 988.777 +imu_odom_: 1691062592.233962747 0.0766145 -0.059855 9.74919 -0.0468716 0.0351537 0.0372843 0.18 -0.02 pose: 0.0 0.15198 0.0172719 0 -0.00183195 -0.0026209 -0.054661 0.9985 uwb: 0.49761855 845.706 987.99 +imu_odom_: 1691062592.249852710 0.557849 -0.411803 10.1179 -0.0735032 -0.0394148 0.0447411 0.25 -0.02 pose: 0.41104385 0.157631 0.00902213 0 -0.00165625 -0.0015603 -0.054821 0.998494 uwb: 0.0 845.706 987.99 +imu_odom_: 1691062592.266847423 0.610521 -0.0430956 10.2424 -0.0287621 0.00745685 0.0223706 0.25 -0.02 pose: 0.0 0.157631 0.00902213 0 -0.00165625 -0.0015603 -0.054821 0.998494 uwb: 0.0 845.706 987.99 +imu_odom_: 1691062592.282848210 0.0574608 -0.0861913 9.20092 -0.0681769 -0.0127832 0.0436758 0.25 -0.02 pose: 0.0 0.157631 0.00902213 0 -0.00165625 -0.0015603 -0.054821 0.998494 uwb: 0.50106287 845.664 987.308 +imu_odom_: 1691062592.298901202 0.713472 -0.0622492 10.3525 -0.0628506 -0.0511327 0.0468716 0.18 0 pose: 0.6894186 0.157631 0.00902213 0 -0.00230265 -0.00205486 -0.0548028 0.998492 uwb: 0.0 845.664 987.308 +imu_odom_: 1691062592.314900240 0.481235 -0.136469 9.54089 -0.0490022 -0.0394148 0.0223706 0.18 0 pose: 0.0 0.157631 0.00902213 0 -0.00230265 -0.00205486 -0.0548028 0.998492 uwb: 0.0 845.664 987.308 +imu_odom_: 1691062592.330842699 0.720655 -0.454898 9.73243 -0.0841559 0.00213053 0.0394148 0.18 0 pose: 0.0 0.157631 0.00902213 0 -0.00230265 -0.00205486 -0.0548028 0.998492 uwb: 0.50071581 845.84 986.373 +imu_odom_: 1691062592.347838870 0.373495 -0.445322 9.82102 -0.0500674 0.00532632 0.0394148 0.23 0 pose: 0.49059575 0.165883 0.0146714 0 -0.000691103-0.00298327 -0.0548748 0.998489 uwb: 0.0 845.84 986.373 +imu_odom_: 1691062592.363956315 0.517148 -0.174777 9.74679 -0.036219 0.00745685 0.0266316 0.18 0 pose: 0.0 0.165883 0.0146714 0 -0.000691103-0.00298327 -0.0548748 0.998489 uwb: 0.0 845.84 986.373 +imu_odom_: 1691062592.379907815 0.320823 -0.347159 9.34936 -0.0756338 0.0191748 0.0543285 0.18 0 pose: 0.65940838 0.179784 0.0120654 0 -0.000737136-0.004647 -0.0550311 0.998474 uwb: 0.49989921 845.82 985.286 +imu_odom_: 1691062592.396859947 0.392649 -0.31364 10.1562 -0.052198 -0.00532632 0.0447411 0.18 0.02 pose: 0.0 0.179784 0.0120654 0 -0.000737136-0.004647 -0.0550311 0.998474 uwb: 0.0 845.82 985.286 +imu_odom_: 1691062592.413891699 0.687136 -0.227449 9.77074 -0.0447411 -0.00852212 0.036219 0.18 0.02 pose: 0.0 0.179784 0.0120654 0 -0.000737136-0.004647 -0.0550311 0.998474 uwb: 0.0 845.82 985.286 +imu_odom_: 1691062592.429826575 0.794875 -0.0550666 9.88805 -0.0511327 -0.0916127 0.076699 0.18 0.02 pose: 0.32045905 0.18543 0.00381178 0 -0.00153936 -0.00289623 -0.0549428 0.998484 uwb: 0.50004212 845.879 984.204 +imu_odom_: 1691062592.447013481 1.16837 -0.213084 9.65342 -0.0447411 -0.0447411 0.122505 0.21 -0.02 pose: 0.41923324 0.193683 0.00945875 0 -0.00119118 -0.00607603 -0.0546574 0.998486 uwb: 0.0 845.879 984.204 +imu_odom_: 1691062592.462834616 2.05901 -0.521936 9.99819 -0.0532632 -0.0639159 0.129962 0.21 -0.02 pose: 0.7210037 0.193683 0.00945875 0 -0.00118223 -0.00694539 -0.0543589 0.998497 uwb: 0.0 845.879 984.204 +imu_odom_: 1691062592.479005432 1.80762 -0.272939 9.78031 -0.0575243 -0.00213053 0.0830906 0.21 -0.02 pose: 0.0 0.193683 0.00945875 0 -0.00118223 -0.00694539 -0.0543589 0.998497 uwb: 0.49780228 845.99 982.721 +imu_odom_: 1691062592.493898554 1.52511 -0.047884 9.85932 -0.036219 0.0340885 0.02024 0.12 -0.02 pose: 0.41968820 0.201622 0.00800113 0 -0.00172957 -0.0117462 -0.0528783 0.99853 uwb: 0.0 845.99 982.721 +imu_odom_: 1691062592.509845679 0.732626 0.220267 9.94791 -0.0692422 0.0585895 0.0213053 0.13 0 pose: 0.0 0.201622 0.00800113 0 -0.00172957 -0.0117462 -0.0528783 0.99853 uwb: 0.0 845.99 982.721 +imu_odom_: 1691062592.525987914 0.560243 -0.241814 10.3262 -0.0649811 0.052198 0.0255663 0.13 0 pose: 0.0 0.201622 0.00800113 0 -0.00172957 -0.0117462 -0.0528783 0.99853 uwb: 0.50012961 846.355 980.863 +imu_odom_: 1691062592.542818722 0.799663 -0.493206 10.2592 -0.0532632 -0.0127832 -0.0138484 0.13 0 pose: 0.21909799 0.207593 0.00690722 0 -0.000690047-0.0128694 -0.0530992 0.998506 uwb: 0.0 846.355 980.863 +imu_odom_: 1691062592.559949633 0.849942 -0.213084 9.39485 -0.0511327 -0.0255663 0.00319579 0.13 0.02 pose: 0.0 0.207593 0.00690722 0 -0.000690047-0.0128694 -0.0530992 0.998506 uwb: 0.0 846.355 980.863 +imu_odom_: 1691062592.575826472 0.842759 -0.325611 9.80665 -0.0596548 0.0394148 0.0415453 0.13 0.02 pose: 0.0 0.207593 0.00690722 0 -0.000690047-0.0128694 -0.0530992 0.998506 uwb: 0.50240152 846.474 979.925 +imu_odom_: 1691062592.591941001 0.677559 -0.260968 10.2256 -0.0553937 -0.00426106 0.0479369 0.08 0 pose: 0.74911241 0.207593 0.00690722 0 -0.00261167 -0.0146094 -0.0540234 0.998429 uwb: 0.0 846.474 979.925 +imu_odom_: 1691062592.607942080 0.723049 -0.198719 9.65103 -0.052198 -0.0213053 0.04048 0.08 0 pose: 0.0 0.207593 0.00690722 0 -0.00261167 -0.0146094 -0.0540234 0.998429 uwb: 0.0 846.474 979.925 +imu_odom_: 1691062592.624941750 0.718261 -0.153229 9.80904 -0.052198 0.015979 0.0628506 0.08 0 pose: 0.0 0.207593 0.00690722 0 -0.00261167 -0.0146094 -0.0540234 0.998429 uwb: 0.50131369 846.724 979.14 +imu_odom_: 1691062592.640840463 0.758962 -0.385466 9.98143 -0.0639159 0.00958738 0.0671117 0.09 0.02 pose: 0.6999761 0.207593 0.00690722 0 -0.00284212 -0.0139485 -0.0539896 0.99844 uwb: 0.0 846.724 979.14 +imu_odom_: 1691062592.656874789 0.684742 -0.260968 10.0293 -0.056459 0.00213053 0.0340885 0.06 0 pose: 0.0 0.207593 0.00690722 0 -0.00284212 -0.0139485 -0.0539896 0.99844 uwb: 0.0 846.724 979.14 +imu_odom_: 1691062592.673875626 0.696713 -0.11971 9.75398 -0.0596548 -0.0117179 0.0287621 0.06 0 pose: 0.66059537 0.221503 0.0043346 0 -0.00261419 -0.0146374 -0.053553 0.998454 uwb: 0.49620990 846.916 978.621 +imu_odom_: 1691062592.689863290 0.768539 -0.23942 9.89045 -0.056459 0.00426106 0.0394148 0.06 0 pose: 0.0 0.221503 0.0043346 0 -0.00261419 -0.0146374 -0.053553 0.998454 uwb: 0.0 846.916 978.621 +imu_odom_: 1691062592.706941121 0.754174 -0.241814 9.99579 -0.0639159 -0.00106526 0.0490022 0.05 0.05 pose: 0.0 0.221503 0.0043346 0 -0.00261419 -0.0146374 -0.053553 0.998454 uwb: 0.0 846.916 978.621 +imu_odom_: 1691062592.722822335 0.653617 -0.174777 9.82341 -0.0436758 0.0149137 0.0511327 0.05 0.05 pose: 0.32933671 0.221503 0.0043346 0 -0.00163357 -0.015139 -0.0536822 0.998442 uwb: 0.50118245 847.096 977.693 +imu_odom_: 1691062592.739862544 0.37589 -0.25618 10.0365 -0.0649811 0.0245011 0.100135 0.06 0.08 pose: 0.41002894 0.221503 0.0043346 0 -0.00125038 -0.0161255 -0.0535187 0.998436 uwb: 0.0 847.096 977.693 +imu_odom_: 1691062592.755830667 0.356736 -0.385466 10.0078 -0.0532632 -0.0117179 0.116114 0.06 0.08 pose: 0.0 0.221503 0.0043346 0 -0.00125038 -0.0161255 -0.0535187 0.998436 uwb: 0.0 847.096 977.693 +imu_odom_: 1691062592.771846037 0.608127 -0.215478 9.88326 -0.0479369 -0.0266316 0.116114 0.06 0.08 pose: 0.0 0.221503 0.0043346 0 -0.00125038 -0.0161255 -0.0535187 0.998436 uwb: 0.50122327 846.868 977.114 +imu_odom_: 1691062592.788812168 0.852336 -0.184354 9.95988 -0.056459 -0.0117179 0.13955 0.03 0.08 pose: 0.7068298 0.221503 0.0043346 0 -0.00131313 -0.0153152 -0.0533049 0.99846 uwb: 0.0 846.868 977.114 +imu_odom_: 1691062592.805802506 0.778116 -0.323217 9.86172 -0.0585895 0.00532632 0.147006 0.04 0.14 pose: 0.0 0.221503 0.0043346 0 -0.00131313 -0.0153152 -0.0533049 0.99846 uwb: 0.0 846.868 977.114 +imu_odom_: 1691062592.821810293 0.677559 -0.299275 9.90002 -0.0532632 0.0127832 0.138484 0.04 0.14 pose: 0.66925137 0.221503 0.00433454 0 -0.00150969 -0.0138491 -0.0504989 0.998627 uwb: 0.49869764 847.276 976.493 +imu_odom_: 1691062592.837809914 0.493206 -0.21069 9.84256 -0.0553937 0.00319579 0.154463 0.04 0.14 pose: 0.0 0.221503 0.00433454 0 -0.00150969 -0.0138491 -0.0504989 0.998627 uwb: 0.0 847.276 976.493 +imu_odom_: 1691062592.854867330 0.545878 -0.287304 9.87129 -0.0585895 -0.00745685 0.166181 0.03 0.14 pose: 0.0 0.221503 0.00433454 0 -0.00150969 -0.0138491 -0.0504989 0.998627 uwb: 0.0 847.276 976.493 +imu_odom_: 1691062592.870807748 0.658405 -0.323217 9.93594 -0.052198 -0.0106526 0.155529 0.03 0.14 pose: 0.32060196 0.221503 0.00433454 0 -0.00345826 -0.0132618 -0.0487913 0.998715 uwb: 0.49983504 847.401 975.693 +imu_odom_: 1691062592.886811160 0.696713 -0.174777 9.90721 -0.0553937 -0.00532632 0.16192 0.01 0.11 pose: 0.41931782 0.221488 0.00432896 0 -0.00474212 -0.0117404 -0.04626 0.998849 uwb: 0.0 847.401 975.693 +imu_odom_: 1691062592.903798582 0.68953 -0.181959 9.87369 -0.0553937 0 0.169377 0.01 0.11 pose: 0.7061881 0.221503 0.00433453 0 -0.00412726 -0.0120815 -0.0458374 0.998867 uwb: 0.0 847.401 975.693 +imu_odom_: 1691062592.919806952 0.636858 -0.244209 9.93594 -0.0532632 0.00426106 0.167247 0.01 0.11 pose: 0.0 0.221503 0.00433453 0 -0.00412726 -0.0120815 -0.0458374 0.998867 uwb: 0.50062249 848.046 974.707 +imu_odom_: 1691062592.935804532 0.500388 -0.227449 9.84256 -0.056459 0.00639159 0.16192 0.01 0.14 pose: 0.41937323 0.221503 0.00433453 0 -0.00204689 -0.0115878 -0.0431965 0.998997 uwb: 0.0 848.046 974.707 +imu_odom_: 1691062592.951866273 0.466869 -0.248997 9.91439 -0.0553937 0.00106526 0.150202 0.01 0.11 pose: 0.0 0.221503 0.00433453 0 -0.00204689 -0.0115878 -0.0431965 0.998997 uwb: 0.0 848.046 974.707 +imu_odom_: 1691062592.967863561 0.474052 -0.189142 9.89284 -0.0553937 -0.00319579 0.133158 0.01 0.11 pose: 0.0 0.221503 0.00433453 0 -0.00204689 -0.0115878 -0.0431965 0.998997 uwb: 0.0 848.046 974.707 +imu_odom_: 1691062592.983800770 0.481235 -0.184354 9.87848 -0.0543285 -0.00426106 0.116114 0 0.08 pose: 0.23060045 0.221503 0.00433453 0 -0.00179869 -0.00919873 -0.0418286 0.999081 uwb: 0.49789853 848.229 974.057 +imu_odom_: 1691062592.999793392 0.567426 -0.225055 9.90002 -0.0543285 -0.0106526 0.1012 0 0.08 pose: 0.0 0.221503 0.00433453 0 -0.00179869 -0.00919873 -0.0418286 0.999081 uwb: 0.0 848.229 974.057 +imu_odom_: 1691062593.15791848 0.624887 -0.246603 9.88326 -0.056459 -0.00319579 0.0873517 0 0.08 pose: 0.31950537 0.221503 0.00433448 0 -0.00051113 -0.00637988 -0.040324 0.999166 uwb: 0.0 848.229 974.057 +imu_odom_: 1691062593.31866133 0.567426 -0.213084 9.85693 -0.0543285 -0.00532632 0.0735032 0 0.02 pose: 0.40974314 0.221503 0.00433448 0 -0.00106997 -0.00872493 -0.0391023 0.999197 uwb: 0.50017338 848.366 973.126 +imu_odom_: 1691062593.47791387 0.47884 -0.189142 9.88566 -0.056459 -0.00106526 0.0585895 0 0.02 pose: 0.6008754 0.221503 0.00433448 0 -0.000501908-0.00852407 -0.0390052 0.999203 uwb: 0.0 848.366 973.126 +imu_odom_: 1691062593.63818425 0.433351 -0.213084 9.87369 -0.0553937 0 0.0468716 0 0.02 pose: 0.0 0.221503 0.00433448 0 -0.000501908-0.00852407 -0.0390052 0.999203 uwb: 0.0 848.366 973.126 +imu_odom_: 1691062593.78817125 0.464475 -0.260968 9.88805 -0.0553937 -0.00426106 0.0383495 0 0.02 pose: 0.42017823 0.221503 0.00433448 0 0.000485723 -0.00496599 -0.0386363 0.999241 uwb: 0.50131959 848.464 972.051 +imu_odom_: 1691062593.93820198 0.426168 -0.229843 9.89763 -0.0543285 -0.00532632 0.0340885 0 0 pose: 0.0 0.221503 0.00433448 0 0.000485723 -0.00496599 -0.0386363 0.999241 uwb: 0.0 848.464 972.051 +imu_odom_: 1691062593.108862353 0.45011 -0.237026 9.9096 -0.0575243 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 0.000485723 -0.00496599 -0.0386363 0.999241 uwb: 0.0 848.464 972.051 +imu_odom_: 1691062593.122806465 0.452504 -0.28491 9.88087 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.21120028 0.221503 0.00433448 0 -0.000783121-0.00354306 -0.0386561 0.999246 uwb: 0.49890478 848.982 971.874 +imu_odom_: 1691062593.136775950 0.435745 -0.220267 9.88566 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000783121-0.00354306 -0.0386561 0.999246 uwb: 0.0 848.982 971.874 +imu_odom_: 1691062593.151835895 0.462081 -0.217872 9.89763 -0.056459 -0.00532632 0.0415453 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000783121-0.00354306 -0.0386561 0.999246 uwb: 0.0 848.982 971.874 +imu_odom_: 1691062593.165778257 0.399832 -0.25618 9.88087 -0.0553937 -0.00213053 0.0383495 0 0 pose: 0.29894740 0.221503 0.00433448 0 -0.00261614 -0.00201146 -0.038669 0.999247 uwb: 0.0 848.982 971.874 +imu_odom_: 1691062593.180890698 0.418985 -0.263362 9.84256 -0.0553937 -0.00319579 0.0383495 0 0 pose: 0.42951377 0.221503 0.00433448 0 -0.00096181 -0.00222023 -0.0386641 0.999249 uwb: 0.49960180 849.063 970.934 +imu_odom_: 1691062593.194864558 0.42138 -0.232238 9.89045 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00096181 -0.00222023 -0.0386641 0.999249 uwb: 0.0 849.063 970.934 +imu_odom_: 1691062593.208859708 0.45011 -0.251391 9.91199 -0.0553937 -0.00745685 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00096181 -0.00222023 -0.0386641 0.999249 uwb: 0.0 849.063 970.934 +imu_odom_: 1691062593.222781364 0.454898 -0.232238 9.87848 -0.056459 -0.00745685 0.0383495 0 0 pose: 0.43086992 0.221503 0.00433448 0 -0.00148443 -0.00140556 -0.0386743 0.99925 uwb: 0.50139251 848.833 970.616 +imu_odom_: 1691062593.237923261 0.435745 -0.215478 9.90721 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00148443 -0.00140556 -0.0386743 0.99925 uwb: 0.0 848.833 970.616 +imu_odom_: 1691062593.252051109 0.47884 -0.237026 9.9096 -0.0553937 -0.00319579 0.0372843 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00148443 -0.00140556 -0.0386743 0.99925 uwb: 0.0 848.833 970.616 +imu_odom_: 1691062593.266953857 0.399832 -0.246603 9.90242 -0.056459 -0.00426106 0.0383495 0 0 pose: 0.43085826 0.221503 0.00433448 0 -0.000305613-0.00198828 -0.0386923 0.999249 uwb: 0.0 848.833 970.616 +imu_odom_: 1691062593.281948765 0.416591 -0.251391 9.91678 -0.0543285 -0.00532632 0.0415453 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000305613-0.00198828 -0.0386923 0.999249 uwb: 0.49861896 848.618 970.848 +imu_odom_: 1691062593.296050074 0.452504 -0.234632 9.90721 -0.056459 -0.00852212 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000305613-0.00198828 -0.0386923 0.999249 uwb: 0.0 848.618 970.848 +imu_odom_: 1691062593.310922783 0.440533 -0.23942 9.86411 -0.0543285 -0.00639159 0.0394148 0 0 pose: 0.44106290 0.221503 0.00433448 0 -0.00198852 -0.000845349-0.0386892 0.999249 uwb: 0.0 848.618 970.848 +imu_odom_: 1691062593.325951230 0.423774 -0.229843 9.8689 -0.056459 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00198852 -0.000845349-0.0386892 0.999249 uwb: 0.49991970 848.767 970.329 +imu_odom_: 1691062593.339908758 0.428562 -0.248997 9.8689 -0.0553937 -0.00319579 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00198852 -0.000845349-0.0386892 0.999249 uwb: 0.0 848.767 970.329 +imu_odom_: 1691062593.353973319 0.414197 -0.248997 9.91918 -0.0532632 -0.00426106 0.0394148 0 0 pose: 0.43866266 0.221503 0.00433448 0 -0.00140703 -0.00121576 -0.0386867 0.99925 uwb: 0.0 848.767 970.329 +imu_odom_: 1691062593.367970219 0.442927 -0.232238 9.89045 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00140703 -0.00121576 -0.0386867 0.99925 uwb: 0.0 848.767 970.329 +imu_odom_: 1691062593.381915498 0.440533 -0.260968 9.91918 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00140703 -0.00121576 -0.0386867 0.99925 uwb: 0.49980888 848.936 970.088 +imu_odom_: 1691062593.396934904 0.442927 -0.25618 9.88087 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.42016656 0.221503 0.00433448 0 -0.0016997 -0.00157327 -0.0386899 0.999249 uwb: 0.0 848.936 970.088 +imu_odom_: 1691062593.412039179 0.430956 -0.227449 9.89763 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0016997 -0.00157327 -0.0386899 0.999249 uwb: 0.0 848.936 970.088 +imu_odom_: 1691062593.425878007 0.42138 -0.244209 9.90242 -0.0543285 0 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0016997 -0.00157327 -0.0386899 0.999249 uwb: 0.50251242 848.705 969.905 +imu_odom_: 1691062593.440759465 0.430956 -0.260968 9.84017 -0.0553937 -0.00639159 0.0372843 0 0 pose: 0.43979717 0.221503 0.00433448 0 -0.00116992 -0.00094845 -0.0386836 0.99925 uwb: 0.0 848.705 969.905 +imu_odom_: 1691062593.455756706 0.42138 -0.225055 9.92636 -0.0553937 -0.00213053 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00116992 -0.00094845 -0.0386836 0.99925 uwb: 0.0 848.705 969.905 +imu_odom_: 1691062593.469767897 0.445322 -0.260968 9.87129 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00116992 -0.00094845 -0.0386836 0.99925 uwb: 0.49637913 848.969 969.683 +imu_odom_: 1691062593.483756339 0.440533 -0.241814 9.8665 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.43845851 0.221503 0.00433448 0 -0.00199031 -0.00168425 -0.0387045 0.999247 uwb: 0.0 848.969 969.683 +imu_odom_: 1691062593.497814193 0.447716 -0.232238 9.89763 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00199031 -0.00168425 -0.0387045 0.999247 uwb: 0.0 848.969 969.683 +imu_odom_: 1691062593.511810509 0.435745 -0.241814 9.87369 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00199031 -0.00168425 -0.0387045 0.999247 uwb: 0.0 848.969 969.683 +imu_odom_: 1691062593.525778828 0.447716 -0.253785 9.90481 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.41987784 0.221503 0.00433448 0 -0.000851665-0.00250869 -0.0387083 0.999247 uwb: 0.50127002 848.614 969.749 +imu_odom_: 1691062593.539746855 0.457293 -0.253785 9.91439 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000851665-0.00250869 -0.0387083 0.999247 uwb: 0.0 848.614 969.749 +imu_odom_: 1691062593.553749005 0.433351 -0.217872 9.90481 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000851665-0.00250869 -0.0387083 0.999247 uwb: 0.0 848.614 969.749 +imu_odom_: 1691062593.567804817 0.416591 -0.23942 9.88805 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.49989053 0.221503 0.00433448 0 -0.00054166 -0.00197993 -0.0386957 0.999249 uwb: 0.0 848.614 969.749 +imu_odom_: 1691062593.581812800 0.440533 -0.232238 9.85932 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00054166 -0.00197993 -0.0386957 0.999249 uwb: 0.50000135 848.641 969.617 +imu_odom_: 1691062593.596936323 0.423774 -0.222661 9.90002 -0.056459 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00054166 -0.00197993 -0.0386957 0.999249 uwb: 0.0 848.641 969.617 +imu_odom_: 1691062593.610827647 0.457293 -0.258574 9.92397 -0.0543285 -0.00319579 0.04048 0 0 pose: 0.6005254 0.221503 0.00433448 0 -0.000836074-0.00145654 -0.0386985 0.99925 uwb: 0.0 848.641 969.617 +imu_odom_: 1691062593.624893376 0.397437 -0.220267 9.91918 -0.056459 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000836074-0.00145654 -0.0386985 0.99925 uwb: 0.49873271 848.758 969.641 +imu_odom_: 1691062593.639893533 0.459687 -0.225055 9.9096 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000836074-0.00145654 -0.0386985 0.99925 uwb: 0.0 848.758 969.641 +imu_odom_: 1691062593.653861852 0.433351 -0.225055 9.88087 -0.0532632 -0.00319579 0.0394148 0 0 pose: 0.71209408 0.221503 0.00433448 0 -0.000674609-0.00106834 -0.0387021 0.99925 uwb: 0.0 848.758 969.641 +imu_odom_: 1691062593.668896715 0.409408 -0.241814 9.87369 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000674609-0.00106834 -0.0387021 0.99925 uwb: 0.50116502 848.735 969.636 +imu_odom_: 1691062593.683732677 0.409408 -0.241814 9.90481 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000674609-0.00106834 -0.0387021 0.99925 uwb: 0.0 848.735 969.636 +imu_odom_: 1691062593.697858483 0.414197 -0.229843 9.83777 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.28939603 0.221503 0.00433448 0 -0.00101412 -0.000388685-0.0387074 0.99925 uwb: 0.0 848.735 969.636 +imu_odom_: 1691062593.711854217 0.454898 -0.251391 9.87848 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00101412 -0.000388685-0.0387074 0.99925 uwb: 0.0 848.735 969.636 +imu_odom_: 1691062593.725727168 0.445322 -0.227449 9.89284 -0.0553937 -0.00319579 0.0383495 0 0 pose: 0.43837394 0.221503 0.00433448 0 -0.00190115 -0.00108508 -0.0387089 0.999248 uwb: 0.50171623 848.48 969.447 +imu_odom_: 1691062593.739786771 0.45011 -0.213084 9.87369 -0.056459 -0.00426106 0.0415453 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00190115 -0.00108508 -0.0387089 0.999248 uwb: 0.0 848.48 969.447 +imu_odom_: 1691062593.753725051 0.459687 -0.23942 9.89284 -0.056459 -0.00532632 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00190115 -0.00108508 -0.0387089 0.999248 uwb: 0.0 848.48 969.447 +imu_odom_: 1691062593.767743824 0.433351 -0.232238 9.88805 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.49984387 0.221503 0.00433448 0 -0.000710636-0.00281239 -0.0387166 0.999246 uwb: 0.0 848.48 969.447 +imu_odom_: 1691062593.781799053 0.430956 -0.222661 9.87369 -0.056459 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000710636-0.00281239 -0.0387166 0.999246 uwb: 0.49803276 848.167 968.832 +imu_odom_: 1691062593.795790120 0.42138 -0.253785 9.89045 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000710636-0.00281239 -0.0387166 0.999246 uwb: 0.0 848.167 968.832 +imu_odom_: 1691062593.809790228 0.45011 -0.241814 9.88566 -0.0543285 -0.00426106 0.0383495 0 0 pose: 0.6006421 0.221503 0.00433448 0 -0.000824416-0.00222231 -0.0387165 0.999247 uwb: 0.0 848.167 968.832 +imu_odom_: 1691062593.823790920 0.423774 -0.232238 9.92636 -0.0543285 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000824416-0.00222231 -0.0387165 0.999247 uwb: 0.49898644 848.147 968.69 +imu_odom_: 1691062593.837731532 0.447716 -0.253785 9.88805 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000824416-0.00222231 -0.0387165 0.999247 uwb: 0.0 848.147 968.69 +imu_odom_: 1691062593.852784477 0.440533 -0.244209 9.93354 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.70072285 0.221503 0.00433448 0 -0.001375 -0.00148877 -0.0387289 0.999248 uwb: 0.0 848.147 968.69 +imu_odom_: 1691062593.866724507 0.430956 -0.25618 9.89045 -0.0543285 -0.00745685 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.001375 -0.00148877 -0.0387289 0.999248 uwb: 0.0 848.147 968.69 +imu_odom_: 1691062593.880788193 0.423774 -0.244209 9.90721 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.001375 -0.00148877 -0.0387289 0.999248 uwb: 0.0 848.147 968.69 +imu_odom_: 1691062593.894837298 0.454898 -0.251391 9.91199 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.28986558 0.221503 0.00433448 0 -0.00122743 -0.00131584 -0.0387285 0.999248 uwb: 0.0 848.147 968.69 +imu_odom_: 1691062593.909941280 0.430956 -0.253785 9.88566 -0.0532632 -0.00639159 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00122743 -0.00131584 -0.0387285 0.999248 uwb: 0.0 848.147 968.69 +imu_odom_: 1691062593.923738696 0.440533 -0.263362 9.89045 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.41987200 0.221503 0.00433448 0 -0.00201251 -0.00138465 -0.0387183 0.999247 uwb: 0.100232713 848.381 968.738 +imu_odom_: 1691062593.938924631 0.445322 -0.23942 9.89284 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00201251 -0.00138465 -0.0387183 0.999247 uwb: 0.0 848.381 968.738 +imu_odom_: 1691062593.953927413 0.438139 -0.232238 9.89284 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00201251 -0.00138465 -0.0387183 0.999247 uwb: 0.0 848.381 968.738 +imu_odom_: 1691062593.967740577 0.433351 -0.23942 9.92157 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.44106290 0.221503 0.00433448 0 -0.000958746-0.00149708 -0.0387294 0.999248 uwb: 0.0 848.381 968.738 +imu_odom_: 1691062593.982866725 0.409408 -0.222661 9.91678 -0.056459 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000958746-0.00149708 -0.0387294 0.999248 uwb: 0.49949389 848.178 968.42 +imu_odom_: 1691062593.996793338 0.457293 -0.217872 9.89284 -0.0543285 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000958746-0.00149708 -0.0387294 0.999248 uwb: 0.0 848.178 968.42 +imu_odom_: 1691062594.11754708 0.411803 -0.25618 9.92397 -0.056459 0 0.0394148 0 0 pose: 0.28934354 0.221503 0.00433448 0 -0.00114718 -0.00134386 -0.0387292 0.999248 uwb: 0.0 848.178 968.42 +imu_odom_: 1691062594.26744952 0.411803 -0.232238 9.91918 -0.0553937 -0.00319579 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00114718 -0.00134386 -0.0387292 0.999248 uwb: 0.49763032 848.249 968.435 +imu_odom_: 1691062594.41881310 0.454898 -0.237026 9.90481 -0.0543285 -0.00852212 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00114718 -0.00134386 -0.0387292 0.999248 uwb: 0.0 848.249 968.435 +imu_odom_: 1691062594.55831257 0.459687 -0.229843 9.90481 -0.0553937 -0.00532632 0.0415453 0 0 pose: 0.14939495 0.221503 0.00433448 0 -0.000536533-0.00117608 -0.0387339 0.999249 uwb: 0.0 848.249 968.435 +imu_odom_: 1691062594.70777462 0.464475 -0.251391 9.90242 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000536533-0.00117608 -0.0387339 0.999249 uwb: 0.50003934 847.859 968.907 +imu_odom_: 1691062594.155748425 0.454898 -0.277727 9.84017 -0.0553937 -0.00106526 0.0394148 0 0 pose: 0.87959152 0.221503 0.00433448 0 -0.0021513 -0.00257994 -0.0387284 0.999244 uwb: 0.50204878 847.773 968.613 +imu_odom_: 1691062594.169686998 0.409408 -0.237026 9.89763 -0.052198 0 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0021513 -0.00257994 -0.0387284 0.999244 uwb: 0.49921400 847.656 968.589 +imu_odom_: 1691062594.183750687 0.399832 -0.222661 9.90481 -0.0553937 -0.00213053 0.0394148 0 0 pose: 0.42984631 0.221503 0.00433448 0 -0.000831735-0.00230313 -0.0387367 0.999246 uwb: 0.0 847.656 968.589 +imu_odom_: 1691062594.197734757 0.418985 -0.213084 9.93833 -0.0543285 -0.00745685 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000831735-0.00230313 -0.0387367 0.999246 uwb: 0.0 847.656 968.589 +imu_odom_: 1691062594.212791204 0.454898 -0.234632 9.90721 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000831735-0.00230313 -0.0387367 0.999246 uwb: 0.0 847.656 968.589 +imu_odom_: 1691062594.226716653 0.428562 -0.248997 9.9096 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.42049910 0.221503 0.00433448 0 -0.00246336 -0.00190391 -0.0387247 0.999245 uwb: 0.49936565 847.698 968.736 +imu_odom_: 1691062594.241715938 0.440533 -0.263362 9.90002 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00246336 -0.00190391 -0.0387247 0.999245 uwb: 0.0 847.698 968.736 +imu_odom_: 1691062594.255772919 0.438139 -0.251391 9.88326 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00246336 -0.00190391 -0.0387247 0.999245 uwb: 0.0 847.698 968.736 +imu_odom_: 1691062594.269724907 0.438139 -0.229843 9.90002 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.42018996 0.221503 0.00433448 0 -8.48264e-05-0.00143293 -0.0387234 0.999249 uwb: 0.49933648 848.292 968.582 +imu_odom_: 1691062594.284757731 0.452504 -0.253785 9.86411 -0.056459 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -8.48264e-05-0.00143293 -0.0387234 0.999249 uwb: 0.0 848.292 968.582 +imu_odom_: 1691062594.299694896 0.428562 -0.253785 9.90002 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -8.48264e-05-0.00143293 -0.0387234 0.999249 uwb: 0.0 848.292 968.582 +imu_odom_: 1691062594.313751585 0.447716 -0.23942 9.88805 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.43956391 0.221503 0.00433448 0 -0.00244222 -0.00191311 -0.0387317 0.999245 uwb: 0.0 848.292 968.582 +imu_odom_: 1691062594.328969895 0.435745 -0.232238 9.88805 -0.056459 -0.00319579 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00244222 -0.00191311 -0.0387317 0.999245 uwb: 0.50180380 848.556 967.672 +imu_odom_: 1691062594.342697026 0.423774 -0.222661 9.93594 -0.0543285 0 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00244222 -0.00191311 -0.0387317 0.999245 uwb: 0.0 848.556 967.672 +imu_odom_: 1691062594.356696552 0.407014 -0.234632 9.87608 -0.056459 -0.00213053 0.0394148 0 0 pose: 0.87086262 0.221503 0.00433448 0 -0.00094046 -0.00112349 -0.0387318 0.999249 uwb: 0.0 848.556 967.672 +imu_odom_: 1691062594.370690830 0.411803 -0.232238 9.89284 -0.056459 -0.00639159 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00094046 -0.00112349 -0.0387318 0.999249 uwb: 0.49918191 848.617 967.961 +imu_odom_: 1691062594.384697939 0.454898 -0.21069 9.92157 -0.0553937 -0.00639159 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00094046 -0.00112349 -0.0387318 0.999249 uwb: 0.0 848.617 967.961 +imu_odom_: 1691062594.399824381 0.435745 -0.251391 9.89045 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.41943168 0.221503 0.00433448 0 -0.000387716-0.00195154 -0.0387324 0.999248 uwb: 0.0 848.617 967.961 +imu_odom_: 1691062594.414820749 0.411803 -0.220267 9.84975 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000387716-0.00195154 -0.0387324 0.999248 uwb: 0.0 848.617 967.961 +imu_odom_: 1691062594.428680870 0.435745 -0.213084 9.90481 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000387716-0.00195154 -0.0387324 0.999248 uwb: 0.50102511 848.533 968.357 +imu_odom_: 1691062594.442744267 0.440533 -0.237026 9.92636 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.43953474 0.221503 0.00433448 0 -0.000207707-0.00121129 -0.0387268 0.999249 uwb: 0.0 848.533 968.357 +imu_odom_: 1691062594.457734219 0.445322 -0.234632 9.88566 -0.0543285 -0.00639159 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000207707-0.00121129 -0.0387268 0.999249 uwb: 0.0 848.533 968.357 +imu_odom_: 1691062594.471694083 0.426168 -0.246603 9.90242 -0.056459 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000207707-0.00121129 -0.0387268 0.999249 uwb: 0.49785785 848.678 968.25 +imu_odom_: 1691062594.485797435 0.433351 -0.237026 9.88805 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.43030711 0.221503 0.00433448 0 -0.000786272-0.00264966 -0.0387102 0.999247 uwb: 0.0 848.678 968.25 +imu_odom_: 1691062594.500680937 0.428562 -0.23942 9.92157 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000786272-0.00264966 -0.0387102 0.999247 uwb: 0.0 848.678 968.25 +imu_odom_: 1691062594.514741417 0.457293 -0.244209 9.90002 -0.056459 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000786272-0.00264966 -0.0387102 0.999247 uwb: 0.0 848.678 968.25 +imu_odom_: 1691062594.528738028 0.433351 -0.253785 9.88566 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.43007380 0.221503 0.00433448 0 -0.00159494 -0.00262149 -0.0387093 0.999246 uwb: 0.50037474 848.317 967.759 +imu_odom_: 1691062594.543795641 0.447716 -0.234632 9.87848 -0.0575243 -0.00319579 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00159494 -0.00262149 -0.0387093 0.999246 uwb: 0.0 848.317 967.759 +imu_odom_: 1691062594.557792544 0.454898 -0.217872 9.91199 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00159494 -0.00262149 -0.0387093 0.999246 uwb: 0.0 848.317 967.759 +imu_odom_: 1691062594.572717751 0.462081 -0.246603 9.88805 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.43003880 0.221503 0.00433448 0 -0.000113033-0.00277508 -0.0386999 0.999247 uwb: 0.50021725 848.626 967.687 +imu_odom_: 1691062594.587884148 0.418985 -0.241814 9.90721 -0.0543285 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000113033-0.00277508 -0.0386999 0.999247 uwb: 0.0 848.626 967.687 +imu_odom_: 1691062594.602749859 0.457293 -0.217872 9.89284 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000113033-0.00277508 -0.0386999 0.999247 uwb: 0.0 848.626 967.687 +imu_odom_: 1691062594.616757552 0.435745 -0.19393 9.84975 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.44081798 0.221503 0.00433448 0 -0.000874667-0.00205142 -0.0387 0.999248 uwb: 0.0 848.626 967.687 +imu_odom_: 1691062594.631667302 0.438139 -0.246603 9.90721 -0.0543285 -0.00639159 0.0415453 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000874667-0.00205142 -0.0387 0.999248 uwb: 0.50117676 848.631 967.55 +imu_odom_: 1691062594.645733615 0.442927 -0.237026 9.86411 -0.0553937 -0.00319579 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000874667-0.00205142 -0.0387 0.999248 uwb: 0.0 848.631 967.55 +imu_odom_: 1691062594.660659114 0.409408 -0.237026 9.90242 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.43837400 0.221503 0.00433448 0 -0.00124597 -0.0019986 -0.0386807 0.999249 uwb: 0.0 848.631 967.55 +imu_odom_: 1691062594.674799214 0.462081 -0.241814 9.87129 -0.0575243 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00124597 -0.0019986 -0.0386807 0.999249 uwb: 0.50048848 848.659 967.417 +imu_odom_: 1691062594.689795290 0.428562 -0.237026 9.90481 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00124597 -0.0019986 -0.0386807 0.999249 uwb: 0.0 848.659 967.417 +imu_odom_: 1691062594.703662702 0.414197 -0.244209 9.91199 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.43134828 0.221503 0.00433448 0 -0.00133232 -0.00173694 -0.0386709 0.99925 uwb: 0.0 848.659 967.417 +imu_odom_: 1691062594.718656737 0.433351 -0.222661 9.89763 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00133232 -0.00173694 -0.0386709 0.99925 uwb: 0.49906234 848.792 967.031 +imu_odom_: 1691062594.733657480 0.428562 -0.25618 9.89284 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00133232 -0.00173694 -0.0386709 0.99925 uwb: 0.0 848.792 967.031 +imu_odom_: 1691062594.747713003 0.438139 -0.222661 9.88805 -0.056459 -0.00958738 0.04048 0 0 pose: 0.44003346 0.221503 0.00433448 0 -0.0016461 -0.00112337 -0.0386582 0.999251 uwb: 0.0 848.792 967.031 +imu_odom_: 1691062594.762711121 0.457293 -0.234632 9.90242 -0.056459 -0.00852212 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0016461 -0.00112337 -0.0386582 0.999251 uwb: 0.0 848.792 967.031 +imu_odom_: 1691062594.776710065 0.445322 -0.246603 9.92636 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0016461 -0.00112337 -0.0386582 0.999251 uwb: 0.49841780 848.815 967.037 +imu_odom_: 1691062594.790857164 0.45011 -0.253785 9.90002 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.28858531 0.221503 0.00433448 0 -0.00114644 -0.00225768 -0.0386524 0.99925 uwb: 0.0 848.815 967.037 +imu_odom_: 1691062594.805747082 0.440533 -0.222661 9.88087 -0.0553937 -0.00426106 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00114644 -0.00225768 -0.0386524 0.99925 uwb: 0.0 848.815 967.037 +imu_odom_: 1691062594.820800612 0.447716 -0.227449 9.86411 -0.0543285 -0.00639159 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00114644 -0.00225768 -0.0386524 0.99925 uwb: 0.50000435 849.183 967.255 +imu_odom_: 1691062594.834825512 0.426168 -0.246603 9.91439 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.14992869 0.221503 0.00433448 0 -0.00140772 -0.00265759 -0.0386484 0.999248 uwb: 0.0 849.183 967.255 +imu_odom_: 1691062594.849654477 0.409408 -0.232238 9.9096 -0.0553937 -0.00319579 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00140772 -0.00265759 -0.0386484 0.999248 uwb: 0.0 849.183 967.255 +imu_odom_: 1691062594.863660420 0.457293 -0.234632 9.87369 -0.0553937 -0.00426106 0.0372843 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00140772 -0.00265759 -0.0386484 0.999248 uwb: 0.0 849.183 967.255 +imu_odom_: 1691062594.877720900 0.428562 -0.229843 9.89763 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.43169825 0.221503 0.00433448 0 -0.000761274-0.00226946 -0.0386648 0.999249 uwb: 0.50157924 849.136 967.245 +imu_odom_: 1691062594.922670342 0.42138 -0.225055 9.88326 -0.0553937 -0.00639159 0.0394148 0 0 pose: 0.86915358 0.221503 0.00433448 0 -0.000921111-0.00132656 -0.0386934 0.99925 uwb: 0.49981186 849.141 967.108 +imu_odom_: 1691062594.937643962 0.435745 -0.237026 9.87369 -0.0543285 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000921111-0.00132656 -0.0386934 0.99925 uwb: 0.0 849.141 967.108 +imu_odom_: 1691062594.951641447 0.433351 -0.251391 9.88566 -0.0553937 -0.00532632 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000921111-0.00132656 -0.0386934 0.99925 uwb: 0.0 849.141 967.108 +imu_odom_: 1691062594.966698477 0.42138 -0.244209 9.85453 -0.0543285 -0.00426106 0.0394148 0 0 pose: 0.44904819 0.221503 0.00433448 0 -0.00197705 -0.00146106 -0.0386943 0.999248 uwb: 0.0 849.141 967.108 +imu_odom_: 1691062594.981704762 0.423774 -0.25618 9.87129 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00197705 -0.00146106 -0.0386943 0.999248 uwb: 0.49839447 849.089 967.234 +imu_odom_: 1691062594.995693789 0.409408 -0.232238 9.85453 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00197705 -0.00146106 -0.0386943 0.999248 uwb: 0.0 849.089 967.234 +imu_odom_: 1691062595.10649037 0.423774 -0.25618 9.90002 -0.0532632 -0.00426106 0.0394148 0 0 pose: 0.43993722 0.221503 0.00433448 0 -0.00217027 -0.000845842-0.0386972 0.999248 uwb: 0.0 849.089 967.234 +imu_odom_: 1691062595.24638358 0.426168 -0.248997 9.87369 -0.0553937 -0.00319579 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00217027 -0.000845842-0.0386972 0.999248 uwb: 0.50053517 848.786 967.168 +imu_odom_: 1691062595.38631179 0.428562 -0.234632 9.90721 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00217027 -0.000845842-0.0386972 0.999248 uwb: 0.0 848.786 967.168 +imu_odom_: 1691062595.53634841 0.426168 -0.205901 9.90721 -0.0575243 -0.00426106 0.04048 0 0 pose: 0.42996301 0.221503 0.00433448 0 -0.000905798-0.00143427 -0.0387063 0.999249 uwb: 0.0 848.786 967.168 +imu_odom_: 1691062595.68690999 0.430956 -0.244209 9.89763 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000905798-0.00143427 -0.0387063 0.999249 uwb: 0.50062271 848.872 966.773 +imu_odom_: 1691062595.82643573 0.428562 -0.213084 9.91439 -0.0543285 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000905798-0.00143427 -0.0387063 0.999249 uwb: 0.0 848.872 966.773 +imu_odom_: 1691062595.97634694 0.462081 -0.232238 9.91918 -0.0553937 -0.00639159 0.0383495 0 0 pose: 0.44008894 0.221503 0.00433448 0 -0.000233384-0.00127567 -0.038701 0.99925 uwb: 0.0 848.872 966.773 +imu_odom_: 1691062595.111639472 0.411803 -0.234632 9.89763 -0.056459 -0.00426106 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000233384-0.00127567 -0.038701 0.99925 uwb: 0.0 848.872 966.773 +imu_odom_: 1691062595.125635793 0.42138 -0.237026 9.88087 -0.0585895 -0.00532632 0.04048 0 0 pose: 0.0 0.221503 0.00433448 0 -0.000233384-0.00127567 -0.038701 0.99925 uwb: 0.49875327 848.864 967.599 +imu_odom_: 1691062595.140638580 0.438139 -0.260968 9.91199 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.42993095 0.221503 0.00433448 0 -0.00137705 -0.000775448-0.0386943 0.99925 uwb: 0.0 848.864 967.599 +imu_odom_: 1691062595.155700570 0.440533 -0.253785 9.87129 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00137705 -0.000775448-0.0386943 0.99925 uwb: 0.0 848.864 967.599 +imu_odom_: 1691062595.169684350 0.440533 -0.234632 9.90002 -0.0553937 -0.00426106 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00137705 -0.000775448-0.0386943 0.99925 uwb: 0.50184470 848.789 967.721 +imu_odom_: 1691062595.184630850 0.426168 -0.23942 9.89763 -0.0543285 -0.00532632 0.0383495 0 0 pose: 0.44057890 0.221503 0.00433448 0 -0.0015101 -0.00168593 -0.0386891 0.999249 uwb: 0.0 848.789 967.721 +imu_odom_: 1691062595.198627462 0.445322 -0.258574 9.9096 -0.056459 -0.00532632 0.0383495 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0015101 -0.00168593 -0.0386891 0.999249 uwb: 0.0 848.789 967.721 +imu_odom_: 1691062595.213690036 0.418985 -0.244209 9.87608 -0.056459 -0.00532632 0.0426106 0 0 pose: 0.0 0.221503 0.00433448 0 -0.0015101 -0.00168593 -0.0386891 0.999249 uwb: 0.0 848.789 967.721 +imu_odom_: 1691062595.228738028 0.426168 -0.220267 9.89524 -0.0553937 -0.00426106 0.04048 0 0 pose: 0.36927177 0.221503 0.00433448 0 -0.00194447 -0.00180531 -0.0387064 0.999247 uwb: 0.49946197 848.705 968.117 +imu_odom_: 1691062595.243732648 0.433351 -0.217872 9.83538 -0.0553937 -0.00532632 0.0394148 0 0 pose: 0.0 0.221503 0.00433448 0 -0.00194447 -0.00180531 -0.0387064 0.999247 uwb: 0.0 848.705 968.117 +imu_odom_: 1691062595.257635643 0.45011 -0.258574 9.87848 -0.0553937 -0.00532632 0.04048 0 0 pose: 0.6045503 0.221503 0.00433448 0 -0.00173401 -0.00124216 -0.0386966 0.999249 uwb: 0.0 848.705 968.117 diff --git a/Code/RK3588/Robot_ROS_Driver/devel/.built_by b/Code/RK3588/Robot_ROS_Driver/devel/.built_by new file mode 100644 index 0000000..2e212dd --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/devel/.built_by @@ -0,0 +1 @@ +catkin_make \ No newline at end of file diff --git a/Code/RK3588/Robot_ROS_Driver/devel/.catkin b/Code/RK3588/Robot_ROS_Driver/devel/.catkin new file mode 100644 index 0000000..780709a --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/devel/.catkin @@ -0,0 +1 @@ +/home/luoruidi/Desktop/ros_learn/C++_Merge_Ros/merge_ros/src \ No newline at end of file diff --git a/Code/RK3588/Robot_ROS_Driver/devel/.rosinstall b/Code/RK3588/Robot_ROS_Driver/devel/.rosinstall new file mode 100644 index 0000000..eaa4d0d --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/devel/.rosinstall @@ -0,0 +1,2 @@ +- setup-file: + local-name: /home/luoruidi/Desktop/ros_learn/C++_Merge_Ros/merge_ros/devel/setup.sh diff --git a/Code/RK3588/Robot_ROS_Driver/devel/_setup_util.py b/Code/RK3588/Robot_ROS_Driver/devel/_setup_util.py new file mode 100644 index 0000000..f613583 --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/devel/_setup_util.py @@ -0,0 +1,304 @@ +#!/usr/bin/python3 +# -*- coding: utf-8 -*- + +# Software License Agreement (BSD License) +# +# Copyright (c) 2012, Willow Garage, Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above +# copyright notice, this list of conditions and the following +# disclaimer in the documentation and/or other materials provided +# with the distribution. +# * Neither the name of Willow Garage, Inc. nor the names of its +# contributors may be used to endorse or promote products derived +# from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +# POSSIBILITY OF SUCH DAMAGE. + +"""This file generates shell code for the setup.SHELL scripts to set environment variables.""" + +from __future__ import print_function + +import argparse +import copy +import errno +import os +import platform +import sys + +CATKIN_MARKER_FILE = '.catkin' + +system = platform.system() +IS_DARWIN = (system == 'Darwin') +IS_WINDOWS = (system == 'Windows') + +PATH_TO_ADD_SUFFIX = ['bin'] +if IS_WINDOWS: + # while catkin recommends putting dll's into bin, 3rd party packages often put dll's into lib + # since Windows finds dll's via the PATH variable, prepend it with path to lib + PATH_TO_ADD_SUFFIX.extend([['lib', os.path.join('lib', 'x86_64-linux-gnu')]]) + +# subfolder of workspace prepended to CMAKE_PREFIX_PATH +ENV_VAR_SUBFOLDERS = { + 'CMAKE_PREFIX_PATH': '', + 'LD_LIBRARY_PATH' if not IS_DARWIN else 'DYLD_LIBRARY_PATH': ['lib', os.path.join('lib', 'x86_64-linux-gnu')], + 'PATH': PATH_TO_ADD_SUFFIX, + 'PKG_CONFIG_PATH': [os.path.join('lib', 'pkgconfig'), os.path.join('lib', 'x86_64-linux-gnu', 'pkgconfig')], + 'PYTHONPATH': 'lib/python3/dist-packages', +} + + +def rollback_env_variables(environ, env_var_subfolders): + """ + Generate shell code to reset environment variables. + + by unrolling modifications based on all workspaces in CMAKE_PREFIX_PATH. + This does not cover modifications performed by environment hooks. + """ + lines = [] + unmodified_environ = copy.copy(environ) + for key in sorted(env_var_subfolders.keys()): + subfolders = env_var_subfolders[key] + if not isinstance(subfolders, list): + subfolders = [subfolders] + value = _rollback_env_variable(unmodified_environ, key, subfolders) + if value is not None: + environ[key] = value + lines.append(assignment(key, value)) + if lines: + lines.insert(0, comment('reset environment variables by unrolling modifications based on all workspaces in CMAKE_PREFIX_PATH')) + return lines + + +def _rollback_env_variable(environ, name, subfolders): + """ + For each catkin workspace in CMAKE_PREFIX_PATH remove the first entry from env[NAME] matching workspace + subfolder. + + :param subfolders: list of str '' or subfoldername that may start with '/' + :returns: the updated value of the environment variable. + """ + value = environ[name] if name in environ else '' + env_paths = [path for path in value.split(os.pathsep) if path] + value_modified = False + for subfolder in subfolders: + if subfolder: + if subfolder.startswith(os.path.sep) or (os.path.altsep and subfolder.startswith(os.path.altsep)): + subfolder = subfolder[1:] + if subfolder.endswith(os.path.sep) or (os.path.altsep and subfolder.endswith(os.path.altsep)): + subfolder = subfolder[:-1] + for ws_path in _get_workspaces(environ, include_fuerte=True, include_non_existing=True): + path_to_find = os.path.join(ws_path, subfolder) if subfolder else ws_path + path_to_remove = None + for env_path in env_paths: + env_path_clean = env_path[:-1] if env_path and env_path[-1] in [os.path.sep, os.path.altsep] else env_path + if env_path_clean == path_to_find: + path_to_remove = env_path + break + if path_to_remove: + env_paths.remove(path_to_remove) + value_modified = True + new_value = os.pathsep.join(env_paths) + return new_value if value_modified else None + + +def _get_workspaces(environ, include_fuerte=False, include_non_existing=False): + """ + Based on CMAKE_PREFIX_PATH return all catkin workspaces. + + :param include_fuerte: The flag if paths starting with '/opt/ros/fuerte' should be considered workspaces, ``bool`` + """ + # get all cmake prefix paths + env_name = 'CMAKE_PREFIX_PATH' + value = environ[env_name] if env_name in environ else '' + paths = [path for path in value.split(os.pathsep) if path] + # remove non-workspace paths + workspaces = [path for path in paths if os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE)) or (include_fuerte and path.startswith('/opt/ros/fuerte')) or (include_non_existing and not os.path.exists(path))] + return workspaces + + +def prepend_env_variables(environ, env_var_subfolders, workspaces): + """Generate shell code to prepend environment variables for the all workspaces.""" + lines = [] + lines.append(comment('prepend folders of workspaces to environment variables')) + + paths = [path for path in workspaces.split(os.pathsep) if path] + + prefix = _prefix_env_variable(environ, 'CMAKE_PREFIX_PATH', paths, '') + lines.append(prepend(environ, 'CMAKE_PREFIX_PATH', prefix)) + + for key in sorted(key for key in env_var_subfolders.keys() if key != 'CMAKE_PREFIX_PATH'): + subfolder = env_var_subfolders[key] + prefix = _prefix_env_variable(environ, key, paths, subfolder) + lines.append(prepend(environ, key, prefix)) + return lines + + +def _prefix_env_variable(environ, name, paths, subfolders): + """ + Return the prefix to prepend to the environment variable NAME. + + Adding any path in NEW_PATHS_STR without creating duplicate or empty items. + """ + value = environ[name] if name in environ else '' + environ_paths = [path for path in value.split(os.pathsep) if path] + checked_paths = [] + for path in paths: + if not isinstance(subfolders, list): + subfolders = [subfolders] + for subfolder in subfolders: + path_tmp = path + if subfolder: + path_tmp = os.path.join(path_tmp, subfolder) + # skip nonexistent paths + if not os.path.exists(path_tmp): + continue + # exclude any path already in env and any path we already added + if path_tmp not in environ_paths and path_tmp not in checked_paths: + checked_paths.append(path_tmp) + prefix_str = os.pathsep.join(checked_paths) + if prefix_str != '' and environ_paths: + prefix_str += os.pathsep + return prefix_str + + +def assignment(key, value): + if not IS_WINDOWS: + return 'export %s="%s"' % (key, value) + else: + return 'set %s=%s' % (key, value) + + +def comment(msg): + if not IS_WINDOWS: + return '# %s' % msg + else: + return 'REM %s' % msg + + +def prepend(environ, key, prefix): + if key not in environ or not environ[key]: + return assignment(key, prefix) + if not IS_WINDOWS: + return 'export %s="%s$%s"' % (key, prefix, key) + else: + return 'set %s=%s%%%s%%' % (key, prefix, key) + + +def find_env_hooks(environ, cmake_prefix_path): + """Generate shell code with found environment hooks for the all workspaces.""" + lines = [] + lines.append(comment('found environment hooks in workspaces')) + + generic_env_hooks = [] + generic_env_hooks_workspace = [] + specific_env_hooks = [] + specific_env_hooks_workspace = [] + generic_env_hooks_by_filename = {} + specific_env_hooks_by_filename = {} + generic_env_hook_ext = 'bat' if IS_WINDOWS else 'sh' + specific_env_hook_ext = environ['CATKIN_SHELL'] if not IS_WINDOWS and 'CATKIN_SHELL' in environ and environ['CATKIN_SHELL'] else None + # remove non-workspace paths + workspaces = [path for path in cmake_prefix_path.split(os.pathsep) if path and os.path.isfile(os.path.join(path, CATKIN_MARKER_FILE))] + for workspace in reversed(workspaces): + env_hook_dir = os.path.join(workspace, 'etc', 'catkin', 'profile.d') + if os.path.isdir(env_hook_dir): + for filename in sorted(os.listdir(env_hook_dir)): + if filename.endswith('.%s' % generic_env_hook_ext): + # remove previous env hook with same name if present + if filename in generic_env_hooks_by_filename: + i = generic_env_hooks.index(generic_env_hooks_by_filename[filename]) + generic_env_hooks.pop(i) + generic_env_hooks_workspace.pop(i) + # append env hook + generic_env_hooks.append(os.path.join(env_hook_dir, filename)) + generic_env_hooks_workspace.append(workspace) + generic_env_hooks_by_filename[filename] = generic_env_hooks[-1] + elif specific_env_hook_ext is not None and filename.endswith('.%s' % specific_env_hook_ext): + # remove previous env hook with same name if present + if filename in specific_env_hooks_by_filename: + i = specific_env_hooks.index(specific_env_hooks_by_filename[filename]) + specific_env_hooks.pop(i) + specific_env_hooks_workspace.pop(i) + # append env hook + specific_env_hooks.append(os.path.join(env_hook_dir, filename)) + specific_env_hooks_workspace.append(workspace) + specific_env_hooks_by_filename[filename] = specific_env_hooks[-1] + env_hooks = generic_env_hooks + specific_env_hooks + env_hooks_workspace = generic_env_hooks_workspace + specific_env_hooks_workspace + count = len(env_hooks) + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_COUNT', count)) + for i in range(count): + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_%d' % i, env_hooks[i])) + lines.append(assignment('_CATKIN_ENVIRONMENT_HOOKS_%d_WORKSPACE' % i, env_hooks_workspace[i])) + return lines + + +def _parse_arguments(args=None): + parser = argparse.ArgumentParser(description='Generates code blocks for the setup.SHELL script.') + parser.add_argument('--extend', action='store_true', help='Skip unsetting previous environment variables to extend context') + parser.add_argument('--local', action='store_true', help='Only consider this prefix path and ignore other prefix path in the environment') + return parser.parse_known_args(args=args)[0] + + +if __name__ == '__main__': + try: + try: + args = _parse_arguments() + except Exception as e: + print(e, file=sys.stderr) + sys.exit(1) + + if not args.local: + # environment at generation time + CMAKE_PREFIX_PATH = r'/home/luoruidi/Desktop/ros_learn/communicat_01/src/commu_01/devel;/opt/ros/noetic'.split(';') + else: + # don't consider any other prefix path than this one + CMAKE_PREFIX_PATH = [] + # prepend current workspace if not already part of CPP + base_path = os.path.dirname(__file__) + # CMAKE_PREFIX_PATH uses forward slash on all platforms, but __file__ is platform dependent + # base_path on Windows contains backward slashes, need to be converted to forward slashes before comparison + if os.path.sep != '/': + base_path = base_path.replace(os.path.sep, '/') + + if base_path not in CMAKE_PREFIX_PATH: + CMAKE_PREFIX_PATH.insert(0, base_path) + CMAKE_PREFIX_PATH = os.pathsep.join(CMAKE_PREFIX_PATH) + + environ = dict(os.environ) + lines = [] + if not args.extend: + lines += rollback_env_variables(environ, ENV_VAR_SUBFOLDERS) + lines += prepend_env_variables(environ, ENV_VAR_SUBFOLDERS, CMAKE_PREFIX_PATH) + lines += find_env_hooks(environ, CMAKE_PREFIX_PATH) + print('\n'.join(lines)) + + # need to explicitly flush the output + sys.stdout.flush() + except IOError as e: + # and catch potential "broken pipe" if stdout is not writable + # which can happen when piping the output to a file but the disk is full + if e.errno == errno.EPIPE: + print(e, file=sys.stderr) + sys.exit(2) + raise + + sys.exit(0) diff --git a/Code/RK3588/Robot_ROS_Driver/devel/cmake.lock b/Code/RK3588/Robot_ROS_Driver/devel/cmake.lock new file mode 100644 index 0000000..e69de29 diff --git a/Code/RK3588/Robot_ROS_Driver/devel/env.sh b/Code/RK3588/Robot_ROS_Driver/devel/env.sh new file mode 100644 index 0000000..8aa9d24 --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/devel/env.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/templates/env.sh.in + +if [ $# -eq 0 ] ; then + /bin/echo "Usage: env.sh COMMANDS" + /bin/echo "Calling env.sh without arguments is not supported anymore. Instead spawn a subshell and source a setup file manually." + exit 1 +fi + +# ensure to not use different shell type which was set before +CATKIN_SHELL=sh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(cd "`dirname "$0"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" +exec "$@" diff --git a/Code/RK3588/Robot_ROS_Driver/devel/local_setup.bash b/Code/RK3588/Robot_ROS_Driver/devel/local_setup.bash new file mode 100644 index 0000000..7da0d97 --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/devel/local_setup.bash @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# generated from catkin/cmake/templates/local_setup.bash.in + +CATKIN_SHELL=bash + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" --extend --local diff --git a/Code/RK3588/Robot_ROS_Driver/devel/local_setup.sh b/Code/RK3588/Robot_ROS_Driver/devel/local_setup.sh new file mode 100644 index 0000000..c58f94e --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/devel/local_setup.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/template/local_setup.sh.in + +# since this file is sourced either use the provided _CATKIN_SETUP_DIR +# or fall back to the destination set at configure time +: ${_CATKIN_SETUP_DIR:=/home/luoruidi/Desktop/ros_learn/C++_Merge_Ros/merge_ros/devel} +CATKIN_SETUP_UTIL_ARGS="--extend --local" +. "$_CATKIN_SETUP_DIR/setup.sh" +unset CATKIN_SETUP_UTIL_ARGS diff --git a/Code/RK3588/Robot_ROS_Driver/devel/local_setup.zsh b/Code/RK3588/Robot_ROS_Driver/devel/local_setup.zsh new file mode 100644 index 0000000..e692acc --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/devel/local_setup.zsh @@ -0,0 +1,8 @@ +#!/usr/bin/env zsh +# generated from catkin/cmake/templates/local_setup.zsh.in + +CATKIN_SHELL=zsh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd -q "`dirname "$0"`" > /dev/null && pwd) +emulate -R zsh -c 'source "$_CATKIN_SETUP_DIR/setup.sh" --extend --local' diff --git a/Code/RK3588/Robot_ROS_Driver/devel/setup.bash b/Code/RK3588/Robot_ROS_Driver/devel/setup.bash new file mode 100644 index 0000000..ff47af8 --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/devel/setup.bash @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# generated from catkin/cmake/templates/setup.bash.in + +CATKIN_SHELL=bash + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd "`dirname "${BASH_SOURCE[0]}"`" > /dev/null && pwd) +. "$_CATKIN_SETUP_DIR/setup.sh" diff --git a/Code/RK3588/Robot_ROS_Driver/devel/setup.sh b/Code/RK3588/Robot_ROS_Driver/devel/setup.sh new file mode 100644 index 0000000..8690e57 --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/devel/setup.sh @@ -0,0 +1,96 @@ +#!/usr/bin/env sh +# generated from catkin/cmake/template/setup.sh.in + +# Sets various environment variables and sources additional environment hooks. +# It tries it's best to undo changes from a previously sourced setup file before. +# Supported command line options: +# --extend: skips the undoing of changes from a previously sourced setup file +# --local: only considers this workspace but not the chained ones +# In plain sh shell which doesn't support arguments for sourced scripts you can +# set the environment variable `CATKIN_SETUP_UTIL_ARGS=--extend/--local` instead. + +# since this file is sourced either use the provided _CATKIN_SETUP_DIR +# or fall back to the destination set at configure time +: ${_CATKIN_SETUP_DIR:=/home/luoruidi/Desktop/ros_learn/C++_Merge_Ros/merge_ros/devel} +_SETUP_UTIL="$_CATKIN_SETUP_DIR/_setup_util.py" +unset _CATKIN_SETUP_DIR + +if [ ! -f "$_SETUP_UTIL" ]; then + echo "Missing Python script: $_SETUP_UTIL" + return 22 +fi + +# detect if running on Darwin platform +_UNAME=`uname -s` +_IS_DARWIN=0 +if [ "$_UNAME" = "Darwin" ]; then + _IS_DARWIN=1 +fi +unset _UNAME + +# make sure to export all environment variables +export CMAKE_PREFIX_PATH +if [ $_IS_DARWIN -eq 0 ]; then + export LD_LIBRARY_PATH +else + export DYLD_LIBRARY_PATH +fi +unset _IS_DARWIN +export PATH +export PKG_CONFIG_PATH +export PYTHONPATH + +# remember type of shell if not already set +if [ -z "$CATKIN_SHELL" ]; then + CATKIN_SHELL=sh +fi + +# invoke Python script to generate necessary exports of environment variables +# use TMPDIR if it exists, otherwise fall back to /tmp +if [ -d "${TMPDIR:-}" ]; then + _TMPDIR="${TMPDIR}" +else + _TMPDIR=/tmp +fi +_SETUP_TMP=`mktemp "${_TMPDIR}/setup.sh.XXXXXXXXXX"` +unset _TMPDIR +if [ $? -ne 0 -o ! -f "$_SETUP_TMP" ]; then + echo "Could not create temporary file: $_SETUP_TMP" + return 1 +fi +CATKIN_SHELL=$CATKIN_SHELL "$_SETUP_UTIL" $@ ${CATKIN_SETUP_UTIL_ARGS:-} >> "$_SETUP_TMP" +_RC=$? +if [ $_RC -ne 0 ]; then + if [ $_RC -eq 2 ]; then + echo "Could not write the output of '$_SETUP_UTIL' to temporary file '$_SETUP_TMP': may be the disk if full?" + else + echo "Failed to run '\"$_SETUP_UTIL\" $@': return code $_RC" + fi + unset _RC + unset _SETUP_UTIL + rm -f "$_SETUP_TMP" + unset _SETUP_TMP + return 1 +fi +unset _RC +unset _SETUP_UTIL +. "$_SETUP_TMP" +rm -f "$_SETUP_TMP" +unset _SETUP_TMP + +# source all environment hooks +_i=0 +while [ $_i -lt $_CATKIN_ENVIRONMENT_HOOKS_COUNT ]; do + eval _envfile=\$_CATKIN_ENVIRONMENT_HOOKS_$_i + unset _CATKIN_ENVIRONMENT_HOOKS_$_i + eval _envfile_workspace=\$_CATKIN_ENVIRONMENT_HOOKS_${_i}_WORKSPACE + unset _CATKIN_ENVIRONMENT_HOOKS_${_i}_WORKSPACE + # set workspace for environment hook + CATKIN_ENV_HOOK_WORKSPACE=$_envfile_workspace + . "$_envfile" + unset CATKIN_ENV_HOOK_WORKSPACE + _i=$((_i + 1)) +done +unset _i + +unset _CATKIN_ENVIRONMENT_HOOKS_COUNT diff --git a/Code/RK3588/Robot_ROS_Driver/devel/setup.zsh b/Code/RK3588/Robot_ROS_Driver/devel/setup.zsh new file mode 100644 index 0000000..9f780b7 --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/devel/setup.zsh @@ -0,0 +1,8 @@ +#!/usr/bin/env zsh +# generated from catkin/cmake/templates/setup.zsh.in + +CATKIN_SHELL=zsh + +# source setup.sh from same directory as this file +_CATKIN_SETUP_DIR=$(builtin cd -q "`dirname "$0"`" > /dev/null && pwd) +emulate -R zsh -c 'source "$_CATKIN_SETUP_DIR/setup.sh"' diff --git a/Code/RK3588/Robot_ROS_Driver/src/.idea/.gitignore b/Code/RK3588/Robot_ROS_Driver/src/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Code/RK3588/Robot_ROS_Driver/src/.idea/deployment.xml b/Code/RK3588/Robot_ROS_Driver/src/.idea/deployment.xml new file mode 100644 index 0000000..538ef7e --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/.idea/deployment.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Code/RK3588/Robot_ROS_Driver/src/.idea/misc.xml b/Code/RK3588/Robot_ROS_Driver/src/.idea/misc.xml new file mode 100644 index 0000000..79b3c94 --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Code/RK3588/Robot_ROS_Driver/src/.idea/modules.xml b/Code/RK3588/Robot_ROS_Driver/src/.idea/modules.xml new file mode 100644 index 0000000..f669a0e --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Code/RK3588/Robot_ROS_Driver/src/.idea/src.iml b/Code/RK3588/Robot_ROS_Driver/src/.idea/src.iml new file mode 100644 index 0000000..f08604b --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/.idea/src.iml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Code/RK3588/Robot_ROS_Driver/src/.idea/vcs.xml b/Code/RK3588/Robot_ROS_Driver/src/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Code/RK3588/Robot_ROS_Driver/src/CMakeLists.txt b/Code/RK3588/Robot_ROS_Driver/src/CMakeLists.txt new file mode 100644 index 0000000..2016816 --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/CMakeLists.txt @@ -0,0 +1 @@ +/opt/ros/noetic/share/catkin/cmake/toplevel.cmake \ No newline at end of file diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/CMakeLists.txt b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/CMakeLists.txt new file mode 100644 index 0000000..f131752 --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/CMakeLists.txt @@ -0,0 +1,56 @@ +cmake_minimum_required(VERSION 3.0.2) +project(ros_merge_test) + +find_package(catkin REQUIRED COMPONENTS + roscpp + rospy + std_msgs + message_generation + geometry_msgs +) + +# 寻找OpenCV库 +find_package(OpenCV REQUIRED) +# 查找 Boost 库 +find_package(Boost REQUIRED) + +# catkin_package( +# # INCLUDE_DIRS include +# # LIBRARIES ros_merge_test +# # CATKIN_DEPENDS roscpp rospy std_msgs +# # DEPENDS system_lib +# CATKIN_DEPENDS message_runtime std_msgs geometry_msgs +# ) + + +include_directories( +# include + ${OpenCV_INCLUDE_DIRS} + ${catkin_INCLUDE_DIRS} + include +) + +add_library(${PROJECT_NAME} SHARED + src/system.cpp + src/uwb.cpp + src/mapping.cpp + src/align.cpp + # src/read_sensor_data.cpp + include/senddata.h src/senddata.cpp) + + +add_message_files( + DIRECTORY msg + FILES + RawImu.msg + +) +generate_messages(DEPENDENCIES std_msgs geometry_msgs) + +catkin_package(CATKIN_DEPENDS message_runtime std_msgs geometry_msgs) +add_executable(${PROJECT_NAME}_node src/main.cpp) + + +target_link_libraries(${PROJECT_NAME}_node ${catkin_LIBRARIES} ${OpenCV_LIBS} ${Boost_LIBRARIES} pthread ${PROJECT_NAME}) + + diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/01.png b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/01.png new file mode 100644 index 0000000..03cb282 Binary files /dev/null and b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/01.png differ diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/02.png b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/02.png new file mode 100644 index 0000000..b12fc6e Binary files /dev/null and b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/02.png differ diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/03.png b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/03.png new file mode 100644 index 0000000..d631b20 Binary files /dev/null and b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/03.png differ diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/04.png b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/04.png new file mode 100644 index 0000000..9cadab1 Binary files /dev/null and b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/04.png differ diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/05.png b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/05.png new file mode 100644 index 0000000..8da3fb1 Binary files /dev/null and b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/05.png differ diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/06.png b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/06.png new file mode 100644 index 0000000..c243e7b Binary files /dev/null and b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/06.png differ diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/07.png b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/07.png new file mode 100644 index 0000000..60777ba Binary files /dev/null and b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/07.png differ diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/08.png b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/08.png new file mode 100644 index 0000000..b27412e Binary files /dev/null and b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/08.png differ diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/09.png b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/09.png new file mode 100644 index 0000000..41d492a Binary files /dev/null and b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/09.png differ diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/10.png b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/10.png new file mode 100644 index 0000000..71af52a Binary files /dev/null and b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/10.png differ diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/11.png b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/11.png new file mode 100644 index 0000000..2ca7060 Binary files /dev/null and b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/11.png differ diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/12.png b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/12.png new file mode 100644 index 0000000..c1b634f Binary files /dev/null and b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/12.png differ diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/13.png b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/13.png new file mode 100644 index 0000000..32adf52 Binary files /dev/null and b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/13.png differ diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/output_image.png b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/output_image.png new file mode 100644 index 0000000..2a5e92e Binary files /dev/null and b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/Map/output_image.png differ diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/align.h b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/align.h new file mode 100644 index 0000000..860f32f --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/align.h @@ -0,0 +1,41 @@ +#include +#include +#include +#include +#include +#include +#include "ros_merge_test/RawImu.h" +#include "type.h" +#include "uwb.h" +#include + +#ifndef ALIGN_H +#define AlIGN_H +namespace uwb_slam{ + class Align + { + public: + Align(){}; + void Run(); + void wheel_odomCB(const nav_msgs::Odometry& wheel_odom); + void imuCB(const ros_merge_test::RawImu& imu); + void odomCB(const nav_msgs::Odometry& odom); + + public: + ros::NodeHandle nh_; + ros::Subscriber wheel_odom_sub_; + ros::Subscriber imu_sub_; + ros::Subscriber odom_sub_; + Imu_odom_pose_data imu_odom_; + Uwb_data uwb_data_; + ros::Time tmp ; + + ros::Time odom_tmp_ ; + bool write_data_ = false; + cv::Mat img1; + std::queue> data_queue; + std::shared_ptr uwb_; + + }; +}; +#endif diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/avoid.h b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/avoid.h new file mode 100644 index 0000000..e69de29 diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/mapping.h b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/mapping.h new file mode 100644 index 0000000..e4bccc4 --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/mapping.h @@ -0,0 +1,34 @@ +#include +#include +#include +#include "uwb.h" + +#ifndef MAPPING_H +#define MAPPING_H + + +namespace uwb_slam{ + class Mapping + { + public: + const double PIXEL_SCALE = 5.0; + const int AREA_SIZE = 2000; + Mapping() {}; + void Run(); + bool check_uwb_point(); + void feed_uwb_data(const cv::Point2d & data); + void process(); + std::mutex mMutexMap; + std::shared_ptr uwb_; + + private: + std::queue mv_uwb_point_; + bool read_uwb_ = false; + cv::Mat img; + cv::Point2d cur_point = {-1,-1}; + + }; + +} + +#endif diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/read_sensor_data.h b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/read_sensor_data.h new file mode 100644 index 0000000..61a7df3 --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/read_sensor_data.h @@ -0,0 +1,34 @@ +#include +#include "nav_msgs/Odometry.h" +#include "geometry_msgs/Twist.h" +#include "sensor_msgs/Imu.h" +#include "geometry_msgs/PoseStamped.h" +#include "geometry_msgs/PoseWithCovarianceStamped.h" +#include +#include "type.h" +#include "uwb.h" + + +#ifndef READ_SENSOR_DATA_H +#define READ_SENSOR_DATA_H + +namespace uwb_slam{ + typedef boost::shared_ptr OdomConstPtr; + typedef boost::shared_ptr ImuConstPtr; + class Read_sensor_data + { + public: + Read_sensor_data(); + + void Run(int argc, char* argv[]); + //void set_uwb(Uwb * uwb); + void imu_call_back(const ImuConstPtr& imu); + void odom_call_back(const OdomConstPtr& odom); + + private: + ros::Subscriber imu_sub_; + ros::Subscriber odom_sub_; + + }; +} +#endif \ No newline at end of file diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/senddata.h b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/senddata.h new file mode 100644 index 0000000..efef283 --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/senddata.h @@ -0,0 +1,37 @@ +#include +#include +#include +#include +#include +#include +#include "uwb.h" +#ifndef SENDDATA_H +#define SENDDATA_H + + +namespace uwb_slam{ + + class Senddata + { + public: + Senddata(){}; + void publishOdometry( std::shared_ptruwb); + void Run(std::shared_ptruwb); + void odomCB(const nav_msgs::Odometry& odom); + + + std::mutex mMutexSend; + private: + ros::Publisher position_pub_; + ros::Subscriber odom_sub_; + ros::NodeHandle nh_; + nav_msgs::Odometry odom_;//odom的消息类型 + nav_msgs::Odometry sub_odom_;//odom的消息类型 + + + + }; + +} + +#endif \ No newline at end of file diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/system.h b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/system.h new file mode 100644 index 0000000..9495710 --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/system.h @@ -0,0 +1,31 @@ +#ifndef SYSTEM_H +#define SYSTEM_H + +#include +#include +#include "mapping.h" +#include "uwb.h" +#include "senddata.h" +#include "align.h" +#include + +namespace uwb_slam{ + class System{ + + public: + System() { + } + void Run(); + public: + + std::shared_ptrMapping_; + std::shared_ptrUwb_; + std::shared_ptrSender_; + std::shared_ptrAlign_; + + // Uwb* Uwb_ ; + // Senddata* Sender_; + // Mapping* Mapping_; + }; +} +#endif diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/type.h b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/type.h new file mode 100644 index 0000000..8d28092 --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/type.h @@ -0,0 +1,62 @@ +#include +#include +#ifndef TYPE_H +#define TYPE_H + +namespace uwb_slam{ +struct Imu_data +{ + ros::Time imu_t_; + double a_[3]; + double w_[3]; + Imu_data(){}; + Imu_data(double ax,double ay,double az, double wx, double wy, double wz) + :a_{ax,ay,az},w_{wz,wy,wz}{}; +}; + + + +struct Imu_odom_pose_data +{ + Imu_data imu_data_; + double pose_[3]; + double quat_[4]; + double vxy_; + double angle_v_; + Imu_odom_pose_data(){}; + Imu_odom_pose_data( Imu_data imu_data,double x,double y,double z, double qw, double qx, double qy, double qz,double vxy, double angle_v):imu_data_(imu_data),pose_{x,y,z},quat_{qw,qx,qy,qz},vxy_(vxy),angle_v_(angle_v){}; +}; + +/*struct Odom_data +{ + Imu_data imu_data_; + ros::Time odom_t_; + double pose_[3]; + double quat_[4]; + double vxy_,; + double angle_v_; + + Odom_data(double x,double y,double z, + double qw, double qx, double qy,double qz, + ros::Time odom_t,double vxy, double angle_v) + :pose_{x,y,z},quat_{qw,qx,qy,qz},odom_t_(odom_t),vxy_(vxy),angle_v_(angle_v){}; +}; +*/ + +struct Uwb_data +{ + float x_,y_; + ros::Time uwb_t_; + Uwb_data(){}; + Uwb_data(float x,float y,float t):x_(x),y_(y),uwb_t_(t){}; +}; + +/*struct Imu_odom_pose_data +{ + Imu_data imu_data_; + Odom_data odom_data; + Imu_odom_pose_data(Imu_data i_data, Odom_data o_data):imu_data_(i_data),odom_data(o_data){}; +}; +*/ +} +#endif \ No newline at end of file diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/uwb.h b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/uwb.h new file mode 100644 index 0000000..911b97e --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/include/uwb.h @@ -0,0 +1,54 @@ +#include +#include +#include +#include +#include +#include +#include "type.h" +#include +#include +#ifndef UWB_H +#define UWB_H + + +namespace uwb_slam{ + + class Uwb + { + public: + Uwb(); + void Run(); + bool checknewdata(); + void feed_imu_odom_pose_data(); + void Serread(); + + + + public: + int pre_seq = -1; + int cur_seq = -1; + uint8_t tmpdata[13]; + float x, y, theta, distance; + + // std::queue v_buffer_imu_odom_pose_data_; + + + Uwb_data uwb_data_; + // ros_merge_test::RawImu sub_imu_; + // std::queue imu_odom_queue_; + // std::queue uwb_data_queue_; + std::mutex mMutexUwb; + //boost::asio::io_service io; + //boost::asio::serial_port s_port; + + // Imu_odom_pose_data imu_odom_pose_data_; + }; + +}; + + + + + + +#endif diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/msg/RawImu.msg b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/msg/RawImu.msg new file mode 100644 index 0000000..3c5ad41 --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/msg/RawImu.msg @@ -0,0 +1,7 @@ +Header header +bool accelerometer +bool gyroscope +bool magnetometer +geometry_msgs/Vector3 raw_linear_acceleration +geometry_msgs/Vector3 raw_angular_velocity +geometry_msgs/Vector3 raw_magnetic_field diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/package.xml b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/package.xml new file mode 100644 index 0000000..dee5884 --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/package.xml @@ -0,0 +1,73 @@ + + + ros_merge_test + 0.0.0 + The ros_merge_test package + + + + + luoruidi + + + + + + TODO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + catkin + roscpp + rospy + std_msgs + geometry_msgs + message_generation + + roscpp + rospy + std_msgs + roscpp + rospy + std_msgs + message_runtime + geometry_msgs + + + + + + + + diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/src/align.cpp b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/src/align.cpp new file mode 100644 index 0000000..a370d59 --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/src/align.cpp @@ -0,0 +1,137 @@ +#include "align.h" + +namespace uwb_slam{ + void Align::Run() + { + tmp = ros::Time::now(); + ros::Time tmp1 = ros::Time::now(); + ros::Time tmp2 = ros::Time::now(); + wheel_odom_sub_= nh_.subscribe("wheel_odom",10,&Align::wheel_odomCB,this); + imu_sub_= nh_.subscribe("raw_imu",10,&Align::imuCB,this); + odom_sub_= nh_.subscribe("odom",10,&Align::odomCB,this); + + std::ofstream outfile("data.txt",std::ofstream::out); + if(outfile.is_open()) + { + img1 = cv::Mat(200, 200, CV_8UC1, cv::Scalar(255,255,255)); + cv::imshow("Image1",img1); + int key2 = cv::waitKey(0); + // if(key2 =='w'){ + // bool write_data_ = true; + // } + + // int count=0; + // while(write_data_){ + while(1){ + + int key3 = cv::waitKey(1); + if(key3 == 'w'){ + break; + } + if(tmp!=imu_odom_.imu_data_.imu_t_){ + // outfile <<"imu_odom_: "<< "imu_timestamp "<<"imu_linear_acc_x_y_z "<<"imu_angular_x_y_z "<< + // "odom_vxy "<<"odom_angle_v_ "<<"\n"; + // if(tmp1!=uwb_->uwb_data_.uwb_t_&& tmp2!=odom_tmp_){ + outfile << std::left << std::setw(12)<<"imu_odom_: "<< std::setw(10)<< imu_odom_.imu_data_.imu_t_.sec << '.' <uwb_data_.uwb_t_-tmp1).sec<<'.'<uwb_data_.uwb_t_-tmp1).nsec << std::setw(9) + <uwb_data_.x_ << std::setw(9)<uwb_data_.y_<<"\n"; + tmp1 = uwb_->uwb_data_.uwb_t_; + tmp2 = odom_tmp_; + // } + // else if(tmp1!=uwb_->uwb_data_.uwb_t_){ + // outfile <<"imu_odom_: "<< imu_odom_.imu_data_.imu_t_ <<"*" + // <uwb_data_.uwb_t_<<"*"<uwb_data_.x_<<"*"<uwb_data_.y_<<"\n"; + // tmp1 = uwb_->uwb_data_.uwb_t_; + // } + // else if(tmp2!=odom_tmp_){ + // outfile <<"imu_odom_: "<< imu_odom_.imu_data_.imu_t_ <<"*" + // <uwb_data_.uwb_t_; + + // if(count>300) + // break; + } + + } + + outfile.close(); + std::cout<< "Data written to file." << std::endl; + } + else{ + std::cout<<"file can not open"< +#include +#include +#include "senddata.h" + + + +int main(int argc, char** argv) +{ + ros::init(argc, argv, "locate_info_pub_node"); // Initialize the ROS node + + std::shared_ptrsystem = std::make_shared(); + std::shared_ptrmp = std::make_shared(); + std::shared_ptruwb = std::make_shared(); + std::shared_ptrsender = std::make_shared(); + std::shared_ptralign = std::make_shared(); + + // uwb_slam::System* system = new uwb_slam::System(); + // uwb_slam::Mapping* mp = new uwb_slam::Mapping(); + // uwb_slam::Uwb* uwb = new uwb_slam::Uwb(); + // uwb_slam::Senddata* sender = new uwb_slam::Senddata(); + + + system->Mapping_ = mp; + system->Mapping_->uwb_ = uwb; + system->Uwb_ = uwb; + system->Sender_ = sender; + system->Align_ = align; + + + mp->uwb_ = system->Uwb_; + align->uwb_=system->Uwb_; + + + // control data fllow in system + std::thread rose_trd ([&system]() { + system->Run(); + }); + // uwb serried read + std::thread uwb_trd([&uwb]() { + uwb->Run(); + }); + // build map + /*std::thread map_trd ([&mp]() { + mp->Run(); + });*/ + + std::thread sender_trd ([&sender, uwb]() { + sender->Run(uwb); + }); + + std::thread align_trd ([&align]() { + align->Run(); + }); + + ros::spin(); // Start the ROS node's main loop + //System->run() +} diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/src/mapping.cpp b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/src/mapping.cpp new file mode 100644 index 0000000..af74e6f --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/src/mapping.cpp @@ -0,0 +1,120 @@ +#include "mapping.h" +#include +#include // 包含 usleep() 函数所在的头文件 +#include +#include + +namespace uwb_slam +{ + bool Mapping::check_uwb_point() + { + //std::unique_lock lock(mMutexMap); + return !mv_uwb_point_.empty(); + } + + void Mapping::feed_uwb_data(const cv::Point2d & data) + { + //std::unique_lock lock(mMutexMap); + mv_uwb_point_.push(data); + + } + + + void Mapping::process() + { + { + //std::unique_lock lock(mMutexMap); + //std::cout << "SIZE: " <(pix_y,pix_x)= 0; + + //cv::imshow("Image",img); + } + + + void Mapping::Run() + { + + //int key = cv::waitKey(0);//等待用户按下按键 + //std::cout << key << std::endl; + int realWidth = AREA_SIZE / PIXEL_SCALE; + int realHeight = AREA_SIZE / PIXEL_SCALE; + + img = cv::Mat(realHeight, realWidth, CV_8UC1, cv::Scalar(255,255,255)); + + for (int j=0;j(j,i)= 128; + + for (int j=199+8;j<210;j+=1) + for (int i=199+8;i<210;i+=1) + img.at(j,i)= 0; + + + + cv::imshow("Image",img); + + /* + std::cout << "waiting" <feed_uwb_data(cv::Point2d(uwb_->x,uwb_->y)); + read_uwb_ = true; + std::cout << "non" << key << std::endl; + cv::destroyAllWindows(); + } + */ + while(1){ + int key = cv::waitKey(0); + if (key == 'q' ) { + read_uwb_ = true; + std::cout << "non" << key << std::endl; + //cv::destroyAllWindows(); + } + while( read_uwb_ )//按下空格键 + { + int key2 = cv::waitKey(1); + if (key2 == 'q' ) { + //TODO: save + // std::cout << << std::endl; + std::string pngimage="/home/firefly/Project_Ros/src/ros_merge_test/Map/output_image.png";//保存的图片文件路径 + cv::imwrite(pngimage,img); + read_uwb_ = false; + break; + } + + this->feed_uwb_data(cv::Point2d(uwb_->x ,uwb_->y)); + + + //uwb xieru + //std::cout << "cur_SEQ: " <cur_seq << std::endl; + + if(check_uwb_point()) + { + //std::cout << " start process" << std::endl; + process(); + //std::cout << " end process" << std::endl; + + } + } + // std::cout << "out" << key << std::endl; + + } + + + + //std::string pngimage="../Map/pngimage.png";//保存的图片文件路径 + //cv::imwrite(pngimage,img); + + /*ros 发送图片给导航 */ + } +} // namespace uwb_slam + diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/src/read_sensor_data.cpp b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/src/read_sensor_data.cpp new file mode 100644 index 0000000..e74d0cd --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/src/read_sensor_data.cpp @@ -0,0 +1,30 @@ +#include + +namespace uwb_slam { + + + //void Read_sensor_data::set_uwb(){} + + + void Read_sensor_data::imu_call_back(const ImuConstPtr& imu){ + Imu_data d1= Imu_data(imu->linear_acceleration.x,imu->linear_acceleration.y,imu->linear_acceleration.z, + imu->angular_velocity.x,imu->angular_velocity.y,imu->angular_velocity.z); + + } + void Read_sensor_data::odom_call_back(const OdomConstPtr& odom){ + Odom_data d1 = Odom_data(odom->pose.pose.position.x, odom->pose.pose.position.y, odom->pose.pose.position.z, + odom->pose.pose.orientation.w,odom->pose.pose.orientation.x, odom->pose.pose.orientation.y, odom->pose.pose.orientation.z, + odom->header.stamp,odom->twist.twist.linear.x,odom->twist.twist.linear.y,odom->twist.twist.angular.z); + + } + void Read_sensor_data::Run(int argc, char* argv[]){ + + ros::init(argc, argv, "imu_odom"); + // 创建一个节点句柄 + ros::NodeHandle nh; + //imu_sub_ = nh.subscribe("imu/data_raw", 1000, this->imu_call_back); + //odom_sub_ =nh.subscribe("odom", 1000,odom_call_back); + ros::spin(); + } + +} diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/src/senddata.cpp b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/src/senddata.cpp new file mode 100644 index 0000000..a98fe71 --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/src/senddata.cpp @@ -0,0 +1,63 @@ +#include "senddata.h" + +namespace uwb_slam +{ + void Senddata::Run(std::shared_ptruwb){ + + ros::Rate loop_rate(10); + position_pub_=nh_.advertise("uwb_odom",50); + odom_sub_=nh_.subscribe("odom",10,&Senddata::odomCB,this); + while(ros::ok()){ + publishOdometry(uwb); + ros::spinOnce(); + loop_rate.sleep(); + } + + + } + void Senddata::odomCB(const nav_msgs::Odometry& odom){ + sub_odom_ = odom; + return; + } + + void Senddata::publishOdometry(std::shared_ptruwb) + { + + std::mutex mMutexSend; + ros::Time current_time = ros::Time::now(); + + // 设置 Odometry 消息的头部信息 + odom_.header.stamp = current_time; + odom_.header.frame_id = "odom"; // 设置坐标系为 "map" + odom_.child_frame_id = "base_link"; // 设置坐标系为 "base_link" + + // 填充 Odometry 消息的位置信息 + odom_.pose.pose.position.x = uwb->x; + odom_.pose.pose.position.y = uwb->y; + odom_.pose.pose.position.z = 0.0; + + + // 填充 Odometry 消息的姿态信息(使用四元数来表示姿态) + // tf2::Quaternion quat; + // quat.setRPY(0, 0, uwb->theta); // 设置了 yaw 角度,其他 roll 和 pitch 设置为 0 + // odom.pose.pose.orientation.x = quat.x(); + // odom.pose.pose.orientation.y = quat.y(); + // odom.pose.pose.orientation.z = quat.z(); + // odom.pose.pose.orientation.w = quat.w(); + + odom_.pose.pose.orientation.x = sub_odom_.pose.pose.orientation.x; + odom_.pose.pose.orientation.y = sub_odom_.pose.pose.orientation.y; + odom_.pose.pose.orientation.z = sub_odom_.pose.pose.orientation.z; + odom_.pose.pose.orientation.w = sub_odom_.pose.pose.orientation.w; + + // 发布 Odometry 消息 + position_pub_.publish(odom_); + + + } + + + + + +} // namespace uwb_slam \ No newline at end of file diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/src/system.cpp b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/src/system.cpp new file mode 100644 index 0000000..1787a24 --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/src/system.cpp @@ -0,0 +1,13 @@ +#include "../include/system.h" + +namespace uwb_slam{ + + void System::Run() + { + while(1){ + + } + + } + +} \ No newline at end of file diff --git a/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/src/uwb.cpp b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/src/uwb.cpp new file mode 100644 index 0000000..81ce00e --- /dev/null +++ b/Code/RK3588/Robot_ROS_Driver/src/ros_merge_test/src/uwb.cpp @@ -0,0 +1,116 @@ +#include "uwb.h" +#include + +#define PI acos(-1) + +namespace uwb_slam{ + + // + Uwb::Uwb(){ + //int pre_seq = -1; + } + + void Uwb::Run() { + + while(1){ + this->Serread(); + // std::cout<<"s"<x<(tmpdata[i]) ; + // } + memcpy(&this->distance, &tmpdata[3], sizeof(distance)); + memcpy(&this->theta, &tmpdata[7], sizeof(theta)); + /*this->x = cosf(theta/180*PI)*distance+1000; + this->y = sinf(theta/180*PI)*distance+1000; + this->theta = theta;*/ + this->uwb_data_.x_ = cosf(theta/180*PI)*distance+1000; + this->uwb_data_.y_ = sinf(theta/180*PI)*distance+1000; + this->uwb_data_.uwb_t_ = ros::Time::now(); + + // uwb_data_queue_.push(uwb_data_); + + //std::cout << "uwb_data_: " << uwb_data_.uwb_t_<< std::endl; + // cur_seq = static_cast(tmpdata[3]); + //std::cout << "****** cur _ sequence: " << cur_seq << "x: " << x << " y: " << y <(tmpdata[3]); + + std::cout << "theta: " << theta << " distance: " << distance << std::endl; + //std::cout std::endl; + } catch (const std::exception& ex) { + std::cerr << "Exception: " << ex.what() << std::endl; + } + } + + + void fusion() + { + + } + + + + +}; + +// bool Uwb::checknewdata() +// { +// std::unique_lock lock(mMutexUwb); +// return !v_buffer_imu_odom_pose_data_.empty(); +// } + +// void Uwb::Run() { +// while(1) +// { +// if(checknewdata()) +// { +// { +// std::unique_lock lock(mMutexUwb); +// Imu_odom_pose_data imu_odom_pose_data = v_buffer_imu_odom_pose_data_.front(); +// v_buffer_imu_odom_pose_data_.pop(); +// } + + + +// } +// } + + + +// } + +// void Uwb::feed_imu_odom_pose_data(const Imu_odom_pose_data& imu_odom_pose_data){ +// std::unique_lock lock(mMutexUwb); +// v_buffer_imu_odom_pose_data_.push(imu_odom_pose_data); +// } +